diff --git a/.gitignore b/.gitignore index 989e17ae..6c37d0a8 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,28 @@ copy_binary_osx.sh run.sh */__pycache__/* __pycache__/* +__pycache__ *.pyc visualization/plots/* -test_output/* \ No newline at end of file +test_output/* + +# Cache +*/.pytest_cache + +# Environment files +.env +financial_loss_functions/exploration/.ipynb_checkpoints + +# Dataset directories +financial_loss_functions/data/raw/2023_sp_500_select_50/ +financial_loss_functions/data/raw/macro/ +financial_loss_functions/data/processed/ +# financial_loss_functions/scripts/generate_synthetic_data.py + +# Artifacts & Results +financial_loss_functions/artifacts +financial_loss_functions/docs/docs_out/latex + +# Local secrets +financial_loss_functions/data_collectors/fred_config.py +financial_loss_functions/project_structure.txt diff --git a/financial_loss_functions/.env.example b/financial_loss_functions/.env.example new file mode 100644 index 00000000..c26804f6 --- /dev/null +++ b/financial_loss_functions/.env.example @@ -0,0 +1,4 @@ +FRED_KEY = "" # API key from Fred API + +# Name of raw CRSP dataset directory +CRSP_DIR = "sample" # change to specific name if using equivalent dataset \ No newline at end of file diff --git a/financial_loss_functions/README.md b/financial_loss_functions/README.md new file mode 100644 index 00000000..56097f9b --- /dev/null +++ b/financial_loss_functions/README.md @@ -0,0 +1,167 @@ +# Financially Guided Neural Networks for Robust Portfolio Optimization + +## Description +This repository contains the implementation for the capstone project "Financially Guided Neural Networks for Robust Portfolio Optimization," developed by Rahul Kenneth Fernandes and Atharva Atul Vaidya under the guidance of Dr. Travis Desell at Rochester Institute of Technology. The project introduces an end-to-end deep learning framework that embeds financial principles of portfolio construction theory directly into neural network training objectives to create stable, diversified portfolios. Our models output normalized allocation weights and optimize differentiable surrogates for key metrics like Sharpe/Sortino ratios, Conditional Value-at-Risk (CVaR), Maximum Drawdown (MDD), risk parity, and concentration penalties—enabling gradient-based optimization without intermediate forecasting. The goal is to develop a custom loss function to train neural networks to generate robust, diversified portfolios that generalize across market regimes. + +**Authors:** Rahul Kenneth fernandes, Atharva Atul Vaidya +**Advisors:** Dr. Travis Desell +**Institution:** Rochester Institute of Technology + +## Prerequisites +- Python 3.13.5 +- Free [Fred API Key](https://fred.stlouisfed.org) + +## Hardware Recommendations +- RAM: 16GB +- GPU: CUDA compatible NVIDIA GPU or MPS MacOS GPU + +## Installation + +### Clone Git Repository +```bash +git clone -b loss-functions https://github.com/travisdesell/exact.git +cd exact/financial_loss_functions +``` + +### Install Dependencies +1. Create and activate a virtual environment (optional but recommended) You can use either venv or conda. + +venv: +```bash +# Create and activate a virtual environment (optional but recommended) +python -m venv +source /bin/activate # On Windows, use: \Scripts\activate +``` +OR + +conda +```bash +conda create -n python=3.13.5 +conda activate +``` + +2. Install python dependecies +```bash +# Install the required packages +pip install -r requirements.txt +``` + +### Setting Up Environment Variables +1. Create your local environment file: +```bash +cp .env.example .env +``` +2. Update the .env file in root directory with your Fred API key + +## Usage +### 1. Run macro-economic data collection +```bash +python -m scripts.run_macro_collection +``` + +### 2. Run data processing +```bash +python -m scripts.run_processing +``` + +### 3. Run prelimnary training +```bash +python -m scripts.run_training +``` + +### 4. Run feature selection analysis +```bash +python -m scripts.run_feature_selection --crsp-dir 2023_sp_500_select_50 +``` + +### Run tests +```bash +pytest tests +``` + +## Directory Structure +```text +financial_loss_functions # Root directory for this project +├── config +│   └── paths.json +├── data +│   ├── processed +│   └── raw +│   ├── macro # gitignored since, data can be acquired +│   │   ├── Consumption_Orders_Inventories.csv +│   │   ├── Housing.csv +│   │   ├── Labor_Market.csv +│   │   ├── Money_Credit.csv +│   │   ├── Output_Income.csv +│   │   ├── Prices.csv +│   │   ├── Rates_FX.csv +│   │   └── Stock_Market.csv +│   └── sample # Contains synthetic CRSP-like sample data +│   ├── combined_predictors_test.csv +│   ├── combined_predictors_train.csv +│   └── combined_predictors_validation.csv +├── exploration +│   ├── crsp_exp.ipynb # Exploration of the CRSP dataset +│   └── fred_series_analysis.ipynb # Exploration of the macro-economic data +├── pytest.ini +├── README.md # This file +├── requirements.txt # Python dependecies +├── scripts +│   ├── run_macro_collection.py # Data collection +│   ├── run_processing.py # Data cleaning and processing +│   ├── run_training.py # All model training +│   └── utils.py +├── src +│   ├── __init__.py +│   ├── data_collection +│   │   ├── const.py # Contains fixed series IDs for FRED API +│   │   └── macro_api.py # Collects data from FRED API +│   ├── data_processing +│   │   ├── loading.py +│   │   ├── pipeline.py # Runs processing pipeline +│   │   └── preprocess.py +│   ├── models +│   │   ├── cov_models.py # Covariance-based classicial models +│   │   ├── examm.py # Python wrapper to run EXAMM model +│   │   └── pipeline.py # Runs training pipeline for all models +│   └── utils.py +├── tests +│ ├── cov_models_tests.py +│ ├── integration +│ │   └── test_macro_data_coll.py +│ └── unit +│ ├── test_cov_models.py +│ ├── test_loading.py +│ ├── test_macro_api.py +│ ├── test_preprocess.py +│ └── test_utils.py +├── .env # Environment variables +└── .env.example # Template for storing environment variables +``` + +## Using CRSP Equivalent Datasets +Currently, a sythetic CRSP-like dataset is stored in `data/raw/sample`. If any other CRSP equivalent dataset is being used, place the directory in `data/raw/` and update the CRSP_DIR environment variable in the .env file with the name of the equivalent data directory. + +.env +```bash +CRSP_DIR = "" # Add directory name here if using CRSP like dataset +``` + +Since we use pre-split data (train, val, test), the new files must follow the structure shown below and the config/paths.json must be updated to reflect the correct file names. + +- data/ + - raw/ + - `/` + - `.csv` + - `.csv` + - `.csv` + +## Contact + +**Rahul Keneth Fernandes** +Email: rf4074@rit.edu +Github: [@rahulkfernandes](https://github.com/rahulkfernandes) + +**Atharva Atul Vaidya** +Email: aav6986@rit.edu +Github: [@v-atharva](https://github.com/v-atharva) diff --git a/financial_loss_functions/config/features.json b/financial_loss_functions/config/features.json new file mode 100644 index 00000000..cbe69a23 --- /dev/null +++ b/financial_loss_functions/config/features.json @@ -0,0 +1,3 @@ +{ + "common_features": ["sprtrn"] +} \ No newline at end of file diff --git a/financial_loss_functions/config/hparams.json b/financial_loss_functions/config/hparams.json new file mode 100644 index 00000000..e03b678e --- /dev/null +++ b/financial_loss_functions/config/hparams.json @@ -0,0 +1,41 @@ +{ + "rolling_windows": { + "in_size": 200, + "out_size": 50, + "stride": 1 + }, + "BaseLSTM": { + "model": { + "hidden_size": 256, + "num_layers": 2, + "dropout": 0.2 + }, + "optimizer": { + "lr": 1e-4, + "weight_decay": 3e-4 + }, + "train" : { + "train_batch_size": 256, + "val_batch_size": 1, + "clip_grad_norm": 0.5, + "epochs": 100 + } + }, + "AttentionLSTM": { + "model": { + "hidden_size": 128, + "num_layers": 3, + "dropout": 0.2 + }, + "optimizer": { + "lr": 1e-3, + "weight_decay": 3e-4 + }, + "train": { + "train_batch_size": 256, + "val_batch_size": 1, + "clip_grad_norm": 0.5, + "epochs": 100 + } + } +} \ No newline at end of file diff --git a/financial_loss_functions/config/paths.json b/financial_loss_functions/config/paths.json new file mode 100644 index 00000000..9a61c3f1 --- /dev/null +++ b/financial_loss_functions/config/paths.json @@ -0,0 +1,29 @@ +{ + "data": { + "data_dir": "data/", + "raw_dir": "data/raw/", + "processed_dir": "data/processed/", + "raw_macro_dir": "data/raw/macro/", + "crsp_dir": "" + }, + "raw_files": { + "train": "combined_predictors_train.csv", + "val": "combined_predictors_validation.csv", + "test": "combined_predictors_test.csv" + }, + "processed_paths": { + "returns_train": "data/processed/ret_train.csv", + "returns_val": "data/processed/ret_val.csv", + "returns_test": "data/processed/ret_test.csv", + "cov_train": "data/processed/cov_train.csv", + "corr_train": "data/processed/corr_train.csv", + "processed_train": "data/processed/processed_train.csv", + "processed_val": "data/processed/processed_val.csv", + "processed_test": "data/processed/processed_test.csv" + }, + "artifacts": { + "artifact_dir": "artifacts/", + "results": "artifacts/results/", + "plots": "artifacts/results/plots/" + } +} \ No newline at end of file diff --git a/financial_loss_functions/config/sector_classification.json b/financial_loss_functions/config/sector_classification.json new file mode 100644 index 00000000..798cc55c --- /dev/null +++ b/financial_loss_functions/config/sector_classification.json @@ -0,0 +1,302 @@ +{ + "AKAM": { + "company": "Akamai Technologies, Inc.", + "sector": "Information Technology", + "secondary_sector": null, + "key_business": "CDN, cybersecurity, and cloud computing" + }, + "ATO": { + "company": "Atmos Energy Corporation", + "sector": "Utilities", + "secondary_sector": null, + "key_business": "Natural gas utility" + }, + "BXP": { + "company": "BXP, Inc.", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Office REIT (Class A workplaces)" + }, + "CAG": { + "company": "Conagra Brands, Inc.", + "sector": "Consumer Staples", + "secondary_sector": null, + "key_business": "Branded food products" + }, + "CINF": { + "company": "Cincinnati Financial Corporation", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Property and casualty insurance" + }, + "CHRW": { + "company": "C.H. Robinson Worldwide, Inc.", + "sector": "Industrials", + "secondary_sector": null, + "key_business": "Third-party logistics (3PL)" + }, + "COO": { + "company": "The Cooper Companies, Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Contact lenses and women's health devices" + }, + "CPB": { + "company": "The Campbell's Company", + "sector": "Consumer Staples", + "secondary_sector": null, + "key_business": "Packaged foods (soups, snacks, sauces)" + }, + "CPT": { + "company": "Camden Property Trust", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Multifamily residential REIT" + }, + "DECK": { + "company": "Deckers Outdoor Corporation", + "sector": "Consumer Discretionary", + "secondary_sector": null, + "key_business": "Footwear (UGG, HOKA, Teva)" + }, + "DPZ": { + "company": "Domino's Pizza, Inc.", + "sector": "Consumer Discretionary", + "secondary_sector": null, + "key_business": "Quick-service restaurant (pizza delivery)" + }, + "DVA": { + "company": "DaVita Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Kidney dialysis services" + }, + "ED": { + "company": "Consolidated Edison, Inc.", + "sector": "Utilities", + "secondary_sector": null, + "key_business": "Electric, gas, and steam utility" + }, + "EIX": { + "company": "Edison International", + "sector": "Utilities", + "secondary_sector": null, + "key_business": "Electric utility (Southern California Edison)" + }, + "EMN": { + "company": "Eastman Chemical Company", + "sector": "Materials", + "secondary_sector": null, + "key_business": "Specialty chemicals and materials" + }, + "ESS": { + "company": "Essex Property Trust, Inc.", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Multifamily residential REIT" + }, + "ETR": { + "company": "Entergy Corporation", + "sector": "Utilities", + "secondary_sector": null, + "key_business": "Electric utility" + }, + "EXPD": { + "company": "Expeditors International of Washington, Inc.", + "sector": "Industrials", + "secondary_sector": null, + "key_business": "Freight forwarding and logistics" + }, + "EXR": { + "company": "Extra Space Storage Inc.", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Self-storage REIT" + }, + "FDS": { + "company": "FactSet Research Systems Inc.", + "sector": "Financials", + "secondary_sector": "Information Technology", + "key_business": "Financial data and analytics software" + }, + "FFIV": { + "company": "F5, Inc.", + "sector": "Information Technology", + "secondary_sector": null, + "key_business": "Application security and delivery" + }, + "FRT": { + "company": "Federal Realty Investment Trust", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Retail REIT (mixed-use properties)" + }, + "HBAN": { + "company": "Huntington Bancshares Incorporated", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Regional banking" + }, + "HOLX": { + "company": "Hologic, Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Women's health diagnostics and imaging" + }, + "HSIC": { + "company": "Henry Schein, Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Healthcare distribution" + }, + "IEX": { + "company": "Indian Energy Exchange", + "sector": "Utilities", + "secondary_sector": "Financials", + "key_business": "Power trading exchange" + }, + "IRM": { + "company": "Iron Mountain Incorporated", + "sector": "Real Estate", + "secondary_sector": "Information Technology", + "key_business": "Records management and data centers" + }, + "IVZ": { + "company": "Invesco Ltd.", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Asset management" + }, + "JBHT": { + "company": "J.B. Hunt Transport Services, Inc.", + "sector": "Industrials", + "secondary_sector": null, + "key_business": "Transportation and logistics" + }, + "JKHY": { + "company": "Jack Henry & Associates, Inc.", + "sector": "Financials", + "secondary_sector": null, + "key_business": "FinTech and payment processing" + }, + "KIM": { + "company": "Kimco Realty Corporation", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Retail REIT (grocery-anchored shopping centers)" + }, + "KMB": { + "company": "Kimberly-Clark Corporation", + "sector": "Consumer Staples", + "secondary_sector": null, + "key_business": "Personal care products (Huggies, Kleenex, Kotex)" + }, + "KMX": { + "company": "CarMax, Inc.", + "sector": "Consumer Discretionary", + "secondary_sector": null, + "key_business": "Used vehicle retail" + }, + "LH": { + "company": "Labcorp Holdings Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Clinical laboratory services" + }, + "LNT": { + "company": "Alliant Energy Corporation", + "sector": "Utilities", + "secondary_sector": null, + "key_business": "Electric and gas utility" + }, + "MHK": { + "company": "Mohawk Industries, Inc.", + "sector": "Consumer Discretionary", + "secondary_sector": null, + "key_business": "Flooring manufacturer" + }, + "NDSN": { + "company": "Nordson Corporation", + "sector": "Industrials", + "secondary_sector": "Health Care", + "key_business": "Precision dispensing and medical devices" + }, + "NTRS": { + "company": "Northern Trust Corporation", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Asset servicing and wealth management" + }, + "NVR": { + "company": "NVR, Inc.", + "sector": "Consumer Discretionary", + "secondary_sector": "Financials", + "key_business": "Home construction and mortgage banking" + }, + "PKG": { + "company": "Packaging Corporation of America", + "sector": "Industrials", + "secondary_sector": null, + "key_business": "Containerboard and corrugated packaging" + }, + "PODD": { + "company": "Insulet Corporation", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Diabetes medical devices (Omnipod)" + }, + "REG": { + "company": "Regency Centers Corporation", + "sector": "Real Estate", + "secondary_sector": null, + "key_business": "Retail REIT (grocery-anchored)" + }, + "RHI": { + "company": "Robert Half Inc.", + "sector": "Industrials", + "secondary_sector": null, + "key_business": "Staffing and consulting services" + }, + "STLD": { + "company": "Steel Dynamics, Inc.", + "sector": "Materials", + "secondary_sector": null, + "key_business": "Steel production and metals recycling" + }, + "TECH": { + "company": "Bio-Techne Corporation", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Life sciences reagents and instruments" + }, + "TFX": { + "company": "Teleflex Incorporated", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Medical devices (vascular and surgical)" + }, + "TRMB": { + "company": "Trimble Inc.", + "sector": "Industrials", + "secondary_sector": "Information Technology", + "key_business": "Geospatial and construction technology" + }, + "TRV": { + "company": "The Travelers Companies, Inc.", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Property and casualty insurance" + }, + "UHS": { + "company": "Universal Health Services, Inc.", + "sector": "Health Care", + "secondary_sector": null, + "key_business": "Hospital and behavioral health services" + }, + "WRB": { + "company": "W. R. Berkley Corporation", + "sector": "Financials", + "secondary_sector": null, + "key_business": "Commercial lines property and casualty insurance" + } +} diff --git a/financial_loss_functions/data/raw/sample/combined_predictors_test.csv b/financial_loss_functions/data/raw/sample/combined_predictors_test.csv new file mode 100644 index 00000000..1bf7dba5 --- /dev/null +++ b/financial_loss_functions/data/raw/sample/combined_predictors_test.csv @@ -0,0 +1,262 @@ +date,TICK001_RET,TICK001_ILLIQUIDITY,TICK001_VOL_CHANGE,TICK001_TURNOVER,TICK001_BA_SPREAD,TICK002_RET,TICK002_ILLIQUIDITY,TICK002_VOL_CHANGE,TICK002_TURNOVER,TICK002_BA_SPREAD,TICK003_RET,TICK003_ILLIQUIDITY,TICK003_VOL_CHANGE,TICK003_TURNOVER,TICK003_BA_SPREAD,TICK004_RET,TICK004_ILLIQUIDITY,TICK004_VOL_CHANGE,TICK004_TURNOVER,TICK004_BA_SPREAD,TICK005_RET,TICK005_ILLIQUIDITY,TICK005_VOL_CHANGE,TICK005_TURNOVER,TICK005_BA_SPREAD,TICK006_RET,TICK006_ILLIQUIDITY,TICK006_VOL_CHANGE,TICK006_TURNOVER,TICK006_BA_SPREAD,TICK007_RET,TICK007_ILLIQUIDITY,TICK007_VOL_CHANGE,TICK007_TURNOVER,TICK007_BA_SPREAD,TICK008_RET,TICK008_ILLIQUIDITY,TICK008_VOL_CHANGE,TICK008_TURNOVER,TICK008_BA_SPREAD,TICK009_RET,TICK009_ILLIQUIDITY,TICK009_VOL_CHANGE,TICK009_TURNOVER,TICK009_BA_SPREAD,TICK010_RET,TICK010_ILLIQUIDITY,TICK010_VOL_CHANGE,TICK010_TURNOVER,TICK010_BA_SPREAD,TICK011_RET,TICK011_ILLIQUIDITY,TICK011_VOL_CHANGE,TICK011_TURNOVER,TICK011_BA_SPREAD,TICK012_RET,TICK012_ILLIQUIDITY,TICK012_VOL_CHANGE,TICK012_TURNOVER,TICK012_BA_SPREAD,TICK013_RET,TICK013_ILLIQUIDITY,TICK013_VOL_CHANGE,TICK013_TURNOVER,TICK013_BA_SPREAD,TICK014_RET,TICK014_ILLIQUIDITY,TICK014_VOL_CHANGE,TICK014_TURNOVER,TICK014_BA_SPREAD,TICK015_RET,TICK015_ILLIQUIDITY,TICK015_VOL_CHANGE,TICK015_TURNOVER,TICK015_BA_SPREAD,TICK016_RET,TICK016_ILLIQUIDITY,TICK016_VOL_CHANGE,TICK016_TURNOVER,TICK016_BA_SPREAD,TICK017_RET,TICK017_ILLIQUIDITY,TICK017_VOL_CHANGE,TICK017_TURNOVER,TICK017_BA_SPREAD,TICK018_RET,TICK018_ILLIQUIDITY,TICK018_VOL_CHANGE,TICK018_TURNOVER,TICK018_BA_SPREAD,TICK019_RET,TICK019_ILLIQUIDITY,TICK019_VOL_CHANGE,TICK019_TURNOVER,TICK019_BA_SPREAD,TICK020_RET,TICK020_ILLIQUIDITY,TICK020_VOL_CHANGE,TICK020_TURNOVER,TICK020_BA_SPREAD,TICK021_RET,TICK021_ILLIQUIDITY,TICK021_VOL_CHANGE,TICK021_TURNOVER,TICK021_BA_SPREAD,TICK022_RET,TICK022_ILLIQUIDITY,TICK022_VOL_CHANGE,TICK022_TURNOVER,TICK022_BA_SPREAD,TICK023_RET,TICK023_ILLIQUIDITY,TICK023_VOL_CHANGE,TICK023_TURNOVER,TICK023_BA_SPREAD,TICK024_RET,TICK024_ILLIQUIDITY,TICK024_VOL_CHANGE,TICK024_TURNOVER,TICK024_BA_SPREAD,TICK025_RET,TICK025_ILLIQUIDITY,TICK025_VOL_CHANGE,TICK025_TURNOVER,TICK025_BA_SPREAD,TICK026_RET,TICK026_ILLIQUIDITY,TICK026_VOL_CHANGE,TICK026_TURNOVER,TICK026_BA_SPREAD,TICK027_RET,TICK027_ILLIQUIDITY,TICK027_VOL_CHANGE,TICK027_TURNOVER,TICK027_BA_SPREAD,TICK028_RET,TICK028_ILLIQUIDITY,TICK028_VOL_CHANGE,TICK028_TURNOVER,TICK028_BA_SPREAD,TICK029_RET,TICK029_ILLIQUIDITY,TICK029_VOL_CHANGE,TICK029_TURNOVER,TICK029_BA_SPREAD,TICK030_RET,TICK030_ILLIQUIDITY,TICK030_VOL_CHANGE,TICK030_TURNOVER,TICK030_BA_SPREAD,TICK031_RET,TICK031_ILLIQUIDITY,TICK031_VOL_CHANGE,TICK031_TURNOVER,TICK031_BA_SPREAD,TICK032_RET,TICK032_ILLIQUIDITY,TICK032_VOL_CHANGE,TICK032_TURNOVER,TICK032_BA_SPREAD,TICK033_RET,TICK033_ILLIQUIDITY,TICK033_VOL_CHANGE,TICK033_TURNOVER,TICK033_BA_SPREAD,TICK034_RET,TICK034_ILLIQUIDITY,TICK034_VOL_CHANGE,TICK034_TURNOVER,TICK034_BA_SPREAD,TICK035_RET,TICK035_ILLIQUIDITY,TICK035_VOL_CHANGE,TICK035_TURNOVER,TICK035_BA_SPREAD,TICK036_RET,TICK036_ILLIQUIDITY,TICK036_VOL_CHANGE,TICK036_TURNOVER,TICK036_BA_SPREAD,TICK037_RET,TICK037_ILLIQUIDITY,TICK037_VOL_CHANGE,TICK037_TURNOVER,TICK037_BA_SPREAD,TICK038_RET,TICK038_ILLIQUIDITY,TICK038_VOL_CHANGE,TICK038_TURNOVER,TICK038_BA_SPREAD,TICK039_RET,TICK039_ILLIQUIDITY,TICK039_VOL_CHANGE,TICK039_TURNOVER,TICK039_BA_SPREAD,TICK040_RET,TICK040_ILLIQUIDITY,TICK040_VOL_CHANGE,TICK040_TURNOVER,TICK040_BA_SPREAD,TICK041_RET,TICK041_ILLIQUIDITY,TICK041_VOL_CHANGE,TICK041_TURNOVER,TICK041_BA_SPREAD,TICK042_RET,TICK042_ILLIQUIDITY,TICK042_VOL_CHANGE,TICK042_TURNOVER,TICK042_BA_SPREAD,TICK043_RET,TICK043_ILLIQUIDITY,TICK043_VOL_CHANGE,TICK043_TURNOVER,TICK043_BA_SPREAD,TICK044_RET,TICK044_ILLIQUIDITY,TICK044_VOL_CHANGE,TICK044_TURNOVER,TICK044_BA_SPREAD,TICK045_RET,TICK045_ILLIQUIDITY,TICK045_VOL_CHANGE,TICK045_TURNOVER,TICK045_BA_SPREAD,TICK046_RET,TICK046_ILLIQUIDITY,TICK046_VOL_CHANGE,TICK046_TURNOVER,TICK046_BA_SPREAD,TICK047_RET,TICK047_ILLIQUIDITY,TICK047_VOL_CHANGE,TICK047_TURNOVER,TICK047_BA_SPREAD,TICK048_RET,TICK048_ILLIQUIDITY,TICK048_VOL_CHANGE,TICK048_TURNOVER,TICK048_BA_SPREAD,TICK049_RET,TICK049_ILLIQUIDITY,TICK049_VOL_CHANGE,TICK049_TURNOVER,TICK049_BA_SPREAD,TICK050_RET,TICK050_ILLIQUIDITY,TICK050_VOL_CHANGE,TICK050_TURNOVER,TICK050_BA_SPREAD,sprtrn +2022-12-30,-0.026662029852353088,0.20371809020201853,0.017048909861551654,0.00013840449598086747,0.00959257335353895,0.020962701634813088,0.08519532804003839,-0.025044201311918247,5.903940881840984e-05,0.02722968959866159,-0.007695055682729044,0.026970215097781754,-0.0077705477956645265,0.00013198499526518204,0.02233599862633225,0.010913211203769741,0.010970367855114405,-0.05407288508850025,0.0003357370159346687,0.006342290684335573,0.0003528553470710539,0.0007145955752063974,0.008481665651223847,0.00025836528077583854,0.012534513787066024,0.000502608577136717,0.0011229119643312426,-0.048307820847393566,9.773068129862651e-05,0.001692674787270783,-0.02232406331673576,0.07702920448393577,0.003953133034066213,8.503695255236709e-05,0.00989414941824801,-0.0019306119267151708,0.017972443652147247,-0.0018144250188533023,3.683718783784572e-05,0.006356318463737322,-0.003863628343766845,0.0035998384153885453,0.0020728242899839258,0.0008276698264773394,0.00039104864299670575,-0.02846129985965714,0.06570579817745105,0.04383401522993399,0.00015146522068148452,0.013311691799050503,-0.003351898942631894,0.0026581562280343046,-0.0075460430896114785,0.0006163604627552104,0.0032503787383429115,-0.00018591093414026678,0.002651806142271576,-0.005797064013017253,2.0892285417524385e-05,0.000365281788095194,0.04568339262734263,0.1312862987217328,0.042309554400063294,0.0001033689207696972,0.002113118656396289,0.0015652105040028532,0.00933326342767373,-0.006054821191893989,4.7206418072371496e-05,0.0016164866278164391,-0.0018572411933866866,0.00142179782070932,-0.0034755301245383424,0.0025477302055861937,0.0018712933430938452,0.04062882467091707,0.25675965511465093,-0.008414592758699064,0.00013021457060530966,0.014188043181483975,-0.07922722341718753,0.5151142729323733,0.14968919736831038,0.0002381656279467923,0.01497754393919134,0.00894805116037331,0.062154181707050705,-0.008277235457910464,4.055263337982135e-05,0.0018967577034816581,0.036538073921752755,0.1940945893616563,-0.044881566389587756,0.00031025517094926717,0.005668614618723527,-0.013395038348843384,0.16027303512427415,-0.0006192244546488819,3.468276643433606e-05,0.02520598915434444,0.0009082868127075711,0.009200975746960018,-0.0800674713659969,3.298153253532019e-05,0.006139876658382958,-0.01879436801581446,0.04770687350031964,-0.05724865971847624,0.00012690230972475978,0.001879180447827144,0.06462767959480699,0.36362599988807387,-0.001884515255453014,4.1054050370541705e-05,0.023607837831348615,-0.03449558701965476,0.09438238739237378,0.03637683398375346,8.103076957574879e-05,0.001246127472682604,-0.007757877127804923,0.03072503409460895,0.00893000147289807,0.00011545137746924164,0.003414364851547995,0.060964307715116704,0.052291948115980404,0.10254614416920153,0.0006663714567330632,0.008980700744630362,-0.007772901453044605,0.03592318466493662,-0.024139513163202855,9.107398501648064e-05,0.0053344272856648625,-0.03506035976566237,0.11488006054138472,0.003232956002655155,0.0019588035712304218,0.03044765068325373,0.044684045332950006,0.3858246694087291,0.02051395297248225,2.9781370962745214e-05,0.001858267826223582,-0.015723150529055433,0.04818164696191844,0.006792456576692357,0.0010669134766039836,0.01680318627407962,-0.020336963261242264,0.14373670991970797,0.02061965328729269,9.422020558610256e-05,0.007472438793922512,-0.001910085473928774,0.0027691599960114003,-0.07067014605291798,0.00016279840253320671,0.0016066313961200123,0.002065406644539713,0.0031062378796714906,-0.005256601103346042,0.00038165835329480725,0.0018235406464208641,-0.03275809874892955,0.14264979836487315,0.04890871422980534,0.0017799092776611498,0.007505868118996284,-0.005043350749189801,0.019480708186035835,0.0026162533955345654,8.306246257560342e-05,0.007568217057400064,-0.009786284980697177,0.013521256975628927,0.002917392255429633,0.0017991939558665336,0.011016223019826233,-0.021317685305408576,0.07411905127565373,-0.021024594634001446,0.00011395312290676965,0.007796933781162122,0.04632184269279848,0.10871757637827653,0.049944638211050565,0.00017272151603939847,0.0298215815620434,0.05567549017248115,0.2315600740846506,0.09995831762047838,5.868326844676505e-05,0.018523929234893585,-0.006736222244176816,0.019350672781620143,-0.0007661281413883887,0.0032994260273582435,0.04712751876880938,0.01582735880399202,0.09098037547202885,0.01332240995431233,8.65368920880162e-05,0.012288581980473372,-0.029774518869912857,0.15082914120274424,0.03594605693938198,0.0001431595348231689,0.016633138719293047,0.015369798829122455,0.08122038803814427,-0.01621087093061831,8.95059325692461e-05,0.008259007773199458,0.028564175497405035,0.13897374920679317,0.028269497565184112,5.16578484226385e-05,0.0015262866544730068,-0.00027370460232768436,0.0005444453172446489,-0.005266300663503876,0.0002451078538801911,0.03061243198460936,0.041889397204545625,0.2067807803222692,0.26173513398738824,5.037421794744515e-05,0.005163910452524482,-0.021749330793056333,0.23907703197583927,0.013974082107039189,2.3471418035757563e-05,0.017473217958347716,0.0043370231444871945,0.013377018660251348,-0.03742484193499646,0.00011332908214487704,0.00039360959791178893,-0.011631095447503646,0.047120867510242095,0.018049974687051402,0.0003890767802063605,0.0020312177036692788,-0.0002513613711335274,0.0012465707100374993,-0.0028035759568354793,0.00011549240214197831,0.003950500210912146,0.0014277098809009686 +2023-01-02,0.004045744107407678,0.026260721436294685,-0.06089027957742842,0.0001629214779994384,0.014001905334191236,0.007931810637789092,0.025290113905543726,0.0006006414823322604,7.525443138362632e-05,0.00837954603991748,0.006944414284274789,0.025764564126088123,-0.0024272245836314123,0.00012468379906426655,0.00044016612193714926,-0.019599007733422498,0.021011059261192417,0.02895271481068193,0.00031481396767326524,0.006626171055501247,-0.001049373181664979,0.0024459802089229297,-0.0016190477998305807,0.00022447852215066647,0.0043100246721673174,-0.008552492315559962,0.024407940879024724,-0.010495910540705816,7.650825378196927e-05,0.007650215450854391,-0.03176053124333381,0.11114873782074736,0.037003186713664926,8.384421017049271e-05,0.010089268298310269,-0.006475531871179534,0.051712588790706865,-0.08605594453295504,4.2941556291398404e-05,0.011505641457286633,0.0025610301632168395,0.0020004588146241204,-0.04514432425611071,0.000987256190405278,0.0023960925762631377,0.06208600155444565,0.12278077712653855,0.12224526267151054,0.00017681748131734173,0.027837234497772676,-0.019260828661449125,0.013770700316938257,0.02859244929510628,0.0006836649246451018,0.013322629061221135,0.008748465950273539,0.1280208242819722,-0.01638993482090242,2.0364515221296027e-05,0.0009611149671123131,-0.04748497446373519,0.13417179810551427,0.08352717221034243,0.00010513468228954516,0.029958189930754865,-0.025961520367538352,0.1377904346424908,-0.016074689602060478,5.303625749078848e-05,0.0011633293009382674,0.0006316365334252758,0.0004859619885920988,0.0006825060689487501,0.002535058077613783,0.016234961514908046,-0.04410723960587739,0.24714259563857863,0.018834702199470327,0.00014686367216423893,0.006298333952517888,0.02459000797914256,0.14285883983932737,-0.02043081860669399,0.00026653839774617657,0.013021141008246698,-0.050493402093738926,0.3706664928743989,0.05040721340073092,3.8371807778618086e-05,0.0018556127224106534,0.013381881325639722,0.06756921264664083,-0.02640405885545069,0.00032640373767050705,0.008877204690242675,-0.013738860697252102,0.1953320941960985,0.0011887454535238309,2.9188202130675556e-05,0.01800882176407156,0.004790392914132218,0.04882193781062722,0.0020927037842846537,3.2782180119386615e-05,0.0029376023059658886,-0.010559923843920842,0.03471212937446469,0.012184850197194083,9.799463196971778e-05,0.011043545965364903,-0.033304013081050354,0.2684890423560623,0.017068340706712624,2.8652490597861214e-05,0.0062478268664904225,-0.019712501300446706,0.05460633012810013,0.004503199843777927,8.003429559844988e-05,0.011742285790456608,0.019475106993662117,0.06381559562323698,0.16312664575209604,0.00013954093248423136,0.0027549319067274366,-0.025952849470806064,0.02518296786487868,-0.010598486615492784,0.0005890520854532509,0.03077291748533094,0.01651273750073288,0.07971139248556373,-0.008290209140357418,8.719361631912931e-05,0.00633970099238251,-0.019579751382240124,0.07734271124125779,0.001465266555043776,0.0016248263576377124,0.027467052797510313,0.003363554931763571,0.03406279264383188,0.0016976266931528364,2.5392208133874414e-05,0.01535982598005439,0.008037112914327873,0.02396018923440932,-0.0038545281669121324,0.00109668296078019,0.0034970028553537548,0.0536421195147488,0.4468300798425382,0.1282536768012162,7.994460688202839e-05,0.003842533114379305,-0.015737726491586407,0.02131482828341429,-0.010189379403216774,0.00017426314249290018,0.0175079953510222,0.003592157747456984,0.004367849220707813,0.0008786694014223329,0.00047205399346009127,0.020331532789831318,0.021202394645605954,0.08940867623227586,0.009823899134859636,0.0018380426739051901,0.01722689241334492,-0.06851449269245491,0.2451614217766368,0.2286277857336475,8.966453188524355e-05,0.0007668254529955352,-0.0002787603482732465,0.0003637005902913594,-0.00042402503212359395,0.0019053035836817656,0.010598835474699708,0.013511655143357615,0.042350452230862395,8.375009113417279e-05,0.00012640566465067985,0.021245622288509427,-0.03924162176215746,0.10757218534493843,0.02699840275995229,0.00014787928158485373,0.014403247230160754,0.05703791001764225,0.26037867267571585,0.07965236131258609,5.346531377959715e-05,0.004560510932935262,-0.026842597897531923,0.0757073937424002,0.011396194652502915,0.003360503158856305,0.01753619931622997,-0.006421658083792238,0.031068857098981585,-0.0044373913121107745,0.00010281641843017236,0.003486569089232738,-0.028179884582413404,0.16155325661984996,0.04860235931702619,0.0001264981800779249,0.008155748265273268,0.01773909690799053,0.09363922676848427,-0.07853762333846451,8.96029660886184e-05,0.0004096006211939531,-0.04007833090940013,0.17779716209164514,0.01891313824643744,5.66542111624468e-05,0.021926688081526147,-0.028982906689632153,0.04535334817343112,-0.011325180266618098,0.00031157455160241984,0.008432250355266317,-4.264930357444866e-05,0.00017080019588029414,-0.024302309532500056,6.209232977546117e-05,0.004335623314103783,-0.002813121256510919,0.03236667987138428,-6.977487962173758e-05,2.2424438922481644e-05,0.002321132011119766,0.012755638428404267,0.038831608026403466,-0.050373894661543094,0.00011482218040646129,0.005156337423282046,0.013015448811962359,0.047930966929677556,-0.0003012169543771281,0.0004280267673118795,0.0017374118276385882,0.006487731111504874,0.027844786333891484,-0.09126290862233269,0.0001334506668345629,0.004496858215790099,-0.004803209178246204 +2023-01-03,0.017196266152947757,0.11142710355360766,0.057404170378282146,0.0001632036624702133,0.013143279218765224,0.02877859852969704,0.09812711581711292,0.01604037757542372,7.037058042576635e-05,0.013230570439925558,0.01289561729383885,0.03832104950345291,-0.05951061881768302,0.0001556689319978803,0.0023225733649438122,0.007253245317765888,0.008953447542762612,-0.015902778122013246,0.0002734071886171916,0.00932241762097728,-0.03156347145058486,0.0819047510095633,0.10538512948870062,0.00020163849169390618,0.015832655654953683,0.029892042533177565,0.08916636060931035,0.13139271676349543,7.319834981146827e-05,0.013884243333359038,-0.007611597064580328,0.029086630784884503,-0.00941574556271791,7.678426421199492e-05,0.00602889736586892,0.0006003006595012927,0.00531394028916072,-0.014923728135887177,3.873921043488463e-05,0.006290111173430698,0.020183937551168776,0.014372162281456428,0.022152396862858727,0.0010830002779789302,0.007473947967612672,-0.033579237007481874,0.07373683076716564,0.04602058231960793,0.0001592385603874741,0.0015673021109442265,-0.033050973424081274,0.028618096301104696,0.0743453825364195,0.0005645051032895901,0.001270454368904773,-0.01038876959744692,0.1340981518309422,-0.036014470263171186,2.308681971999667e-05,0.004114855721192372,0.03483949731138035,0.10120024317073797,-0.007583003981242136,0.00010226837656094022,0.00383271333304427,-0.015126568098223924,0.10518241222483753,0.013063670465803683,4.048173323179437e-05,0.000609201703104737,0.02196695931461388,0.01668883326702853,0.00024397154848857707,0.0025672427877817283,0.008563220843743034,0.021420885287171263,0.14605757670978467,0.005939080369099707,0.00012068837294762701,0.028964336253293647,0.02821824196070573,0.16187731467375605,0.013464030381644317,0.00026993064569230825,0.0204165605756119,-0.02355126766491759,0.13531599792856222,0.023192640040382722,4.9025959215489785e-05,0.006319548412051829,-0.04006001674373541,0.19608584961142536,-0.05434038618844272,0.00033670663900697313,0.001533796371920936,-0.0013709227397897625,0.017693634011233406,-0.1278588218588111,3.2153345836368456e-05,0.017151483538312483,0.013189255405153099,0.13742456983928025,0.019005257727208808,3.2065469347487794e-05,0.001314903561729066,-0.024138486058042457,0.061027290689912146,0.0438167883022069,0.0001274115191908746,0.019440111266191114,0.01237847017771433,0.08478374427059047,-0.059355905229554376,3.3724596214739455e-05,0.017382188559130873,-0.0035942743638558133,0.0102405022268967,-0.03644561628065894,7.781572198455724e-05,0.011627448080084275,-0.01066434838266662,0.040350882354993546,0.020493999263118574,0.00012084533330017267,0.003809516156294105,0.007478788983084614,0.0067296032560177485,0.0017554065073338203,0.0006352100780557843,0.010928394388347145,0.014669682055220214,0.05399720511899551,-0.007605128874658483,0.0001143498051353142,0.0022835808596945078,-0.006178987575016124,0.023739722125159,-0.0180423059248799,0.0016705553340160884,0.04257735642953377,0.0033845792644004095,0.02714685182453494,-0.020897525676610757,3.206028747832711e-05,0.014874614141298195,-0.030634133056845776,0.10771872292674149,-0.13812229588708677,0.0009297917067470663,0.01223399560459711,0.03935482491816243,0.3290989933365948,0.035629173086940885,7.963373288137844e-05,0.003288687852462101,-0.0014274563891443492,0.002409205299091995,-0.037769037149558655,0.0001398409692191974,0.0077769242778427195,0.011082798001550001,0.014220111621214516,-0.11291115846093025,0.0004473529711581717,0.015269221467595922,-0.004948095971938775,0.02370344046848896,-0.017129720319538584,0.001617994603605723,0.0029192435001814195,-0.0022819445595257865,0.009134645716125152,-0.024285963806453786,8.015004144339822e-05,0.013457350779829106,-0.07901663725622382,0.13101626479664094,0.09638052090380227,0.0014992377925998307,0.0024794099040248334,-0.01159078116564198,0.044434554308373696,-0.021927101498383703,0.00010334938925327541,0.013055442182208618,0.036847847618700275,0.11765818977926627,0.02625805362313196,0.00012695515452714823,0.013718029846413663,0.018374079196424167,0.06962877804737476,-0.03016010740662167,6.440665366821506e-05,0.022400211910822383,0.01957116648779606,0.05432446043397631,-0.026987413593886442,0.0034145961622831455,0.01823745465719253,-0.020507334123028614,0.10237977456064457,0.0025947627759310946,9.964043369473098e-05,0.00944497252067098,-0.013795132434361168,0.07418466288466227,8.168966621824032e-06,0.0001348567009056539,0.016952925837770957,-0.028526073682769677,0.1697462109837416,0.009859393373800658,7.948599397969475e-05,0.003686525822686612,0.03931998127552346,0.18026218026745908,-0.016387596397419994,5.4822151782177286e-05,0.01295833141449806,0.03511583048349815,0.05646643351850424,0.007655553172302718,0.0003032089244267816,0.009397667590733428,0.025913730004710506,0.1104042519156446,0.07146842742909622,5.836580852374989e-05,0.007551395984650923,0.03084449508052159,0.3144589047458773,0.03230789090237867,2.530725571063402e-05,0.022884304045405802,-0.0007635330972178106,0.0024903255752622244,-0.06278405951253406,0.00010717184397831071,0.008555699034372288,0.020367900968237297,0.0741044858976949,-0.05101158362033684,0.0004332411968626581,0.010926006655052122,-0.023892805780460755,0.13073176709671136,0.0005515152942119335,0.00010467857869678615,0.023544231199204853,0.0025111775379666143 +2023-01-04,-0.03647586466368006,0.27474028511580884,0.02055692720027434,0.00014040088165771935,0.005112705947909677,0.014996568240219065,0.056017489854670074,0.0002246355756881321,6.423604156859022e-05,0.014091826149450093,0.030604133117634543,0.09804001690346914,0.027213879509964005,0.00014440223308808368,0.02022679243792102,-0.012842524993911942,0.013756288580804089,-0.010610072626835288,0.000315077214972082,0.0049184944801821595,0.022310179099780638,0.04758744019002168,0.005315925263065743,0.00024530617744881675,0.012645035103161254,-0.01081928212956718,0.03017788673250464,0.01430053865369958,7.828099938625212e-05,0.0018972030210224625,0.010841061193364024,0.04348486593666923,0.0010865769777100942,7.315154709973988e-05,0.012700462601336213,0.006605185388180537,0.06030107420309973,-0.014192185403843212,3.756285356825722e-05,0.00934125350544605,-0.007490605555716136,0.004827219950974829,0.004207993407949763,0.0011966430621325904,0.003276665168297785,0.01261677364546733,0.026844485422220864,-0.010864017676376753,0.00016434447731515514,0.01925610563544678,-0.00916787923671203,0.007119215232850429,-0.00035396013564008457,0.0006294498279610477,0.003775182646584618,5.7471786612610876e-05,0.0008290729971121199,-0.0007757102287925254,2.065783085696886e-05,0.005431212550085404,-0.0035956696330057994,0.00957760396285673,-0.0221947064598028,0.0001115254399919397,0.009994751225892273,0.007582748642941514,0.03605726886829039,0.012025304252437983,5.9196448237729086e-05,0.005677699656588524,-0.04340331169566543,0.04762018118629096,0.04858473760139795,0.0017776849544865378,0.005483634375188567,-0.02480631216715809,0.17941866695412384,-0.11825627469618262,0.00011377495876580362,0.039618963492895315,-0.027227443172448067,0.16792598519555413,0.015563086006129047,0.00025107136706555363,0.01614047418038751,-0.011262816680811624,0.06497257110172269,0.007716471302130296,4.882900990905054e-05,0.00484019705441198,0.02408024668946502,0.1357116682311505,0.03850048147123107,0.0002924358082243892,0.011757104567580931,-0.016379899618323947,0.22130560097231158,0.0009935081324370357,3.0714896885559044e-05,0.02080552900669316,0.036283711001611034,0.38238551068625914,0.19861118956306797,3.1702388264578924e-05,0.008930358124590686,-0.016342702000404927,0.04602760212420474,-0.0017583075968689427,0.00011437425210152436,0.008997505195450657,-0.09656391219074081,0.7571856088658954,0.15363604749875265,2.9458109855434037e-05,0.03008079508316639,-0.007267464540611428,0.021577881257996145,0.0014166386231105293,7.467092046264739e-05,0.010036955312985079,0.0023953730094524914,0.008511567017046098,-0.004673520918653628,0.00012868034729283606,0.0040954135991580895,-0.05256075636925074,0.04472729112733201,0.016176509749067775,0.0006716833321143958,0.013658752933763653,-0.028768006886773438,0.11450892420917119,-0.019429178398480587,0.00010574417384741827,0.01934448734801194,-0.05594813150447257,0.1633325899715461,-0.022278310690829955,0.002198527553897994,0.005960659502843407,0.012826425986114127,0.09660411287224589,-0.00233885945096356,3.414225786034896e-05,0.020748360736639535,0.01982292300535245,0.064648388841082,0.016169874903220215,0.0010024927903407867,0.003056345928802426,0.017555017320914884,0.1415954551588393,0.001467060584719691,8.256150322047951e-05,0.003477510924977429,-0.0015079149747113264,0.00230311080779707,-0.03021022853840936,0.0001545280794581783,0.0020872426605054147,0.02997193034246618,0.04396803705197166,0.01950888508607654,0.0003912745056137153,0.01327272158508566,-0.03612674731407032,0.14444372734436622,0.058187839784399814,0.0019385656622473361,0.016652038830996328,-0.017698552915255877,0.0763976990826184,-0.021214520381820465,7.432721326597967e-05,0.008839129300677796,0.041840227254013256,0.05199945545228719,-0.00124641307827749,0.0020001954309399397,0.0405438877121623,0.029674648294693486,0.09817704887092686,0.03283934162920884,0.00011975444531173493,0.00916560404597216,0.050114190749564386,0.14838416499180399,0.04295845489498336,0.0001369094862195543,0.013720896743270245,-0.009771492913881815,0.036407764365491355,0.015168035456674927,6.550596287506292e-05,0.0025503486261822307,-0.007584615925645061,0.02412902617553583,-0.053398554325617686,0.0029792836757953156,0.00012440404132064016,0.014664811068709706,0.066085029880424,-0.020495638395793915,0.00011038598878646398,0.0039021261488172265,-0.013368663210530013,0.07554659174091304,0.0034231486025432093,0.00012833168328752032,0.0006746610003355879,0.0004554066343092703,0.0023775956729678903,-0.004504259706833284,9.059621423816075e-05,0.00101325750014724,-0.00419448678147267,0.01858151915699461,-0.0009179397946189248,5.6734209436203056e-05,0.0007039779714361125,-0.04713400481506749,0.0799798536755003,0.009788930134313006,0.0002873314276158632,0.012209689203265962,-0.0042186551279665375,0.01979839039382158,-0.005006319157509141,5.2985680431843236e-05,0.008470333926299426,-0.018607393865500393,0.22041119113145272,-0.005892986901152249,2.1781269792275174e-05,0.0010979534048112627,-0.0029749133986784046,0.010321438032981923,-0.014748250490527293,0.00010074954250416919,0.0029836993592618367,0.03738050647732949,0.16417754292295011,0.06580487001665865,0.00035888838292409,0.004322999322426581,-0.053759679085336645,0.2348349071320938,0.08234450034238186,0.0001311190549291143,0.0007561145505952925,-0.005765073619876856 +2023-01-05,0.0008735557232308412,0.006169556835132607,-0.023331966735154197,0.00014973496586844192,0.010226953414031514,0.05077781976895689,0.1666332491611633,0.05522386606669849,7.311776599450273e-05,0.01612141842621846,0.04090754953719441,0.12330971486710057,0.049036356668799734,0.00015346289120503226,0.0009634577295295496,-0.0022768929780481776,0.0022160654006881985,-0.042521732467803934,0.00034675912696792037,0.0007636517413155586,-0.031208734930514057,0.07388029901686166,0.07853910917845944,0.00022102698133624516,0.014372776747325608,0.0007221693967191274,0.002025987930112035,-0.006421847381805562,7.783034696983546e-05,0.002815409680304775,0.03995614568035363,0.15875542877014054,-0.05465238683383242,7.384904063880876e-05,0.012607261091200982,-0.011777305741645431,0.09296474595842404,-0.05270525102435038,4.34436471035658e-05,0.0029927796513659743,0.009849964569164999,0.0077932456360066986,-0.008587429245970675,0.0009746778349456309,0.004613853136401512,0.0005011496771730112,0.0012555774047283495,-0.0024580792793937093,0.00013956799827207514,0.013843467104828045,0.02833329333344962,0.021525407594777373,0.052156388374647096,0.0006433836679860702,0.0006976095882572884,-0.008899834264981605,0.14962342584832705,-0.019821670824494243,1.7725770180943077e-05,0.012943327106973674,-0.034358279179905,0.09048259193724177,-0.008841684005826557,0.00011280215831108184,0.0016762407416244858,0.0012818057378998036,0.007021679675234007,0.004265826262165552,5.1385787470563885e-05,0.015074448738785742,0.015186776008569368,0.013040021333045382,0.012817493816650528,0.0022714870135133814,0.0078723823181006,-0.01094886288441027,0.059654740285519904,-0.016718994257641905,0.00015103450115236535,0.04908297420582994,0.0023938757466387467,0.012510341037068481,-0.006938238497676829,0.0002963061651187437,0.008992684833364536,-0.038402642005899885,0.23581566667294124,-0.03135227542174615,4.587218268931212e-05,0.00011335495452727317,0.021153883523409075,0.1115570635571369,0.01070272973634837,0.00031252145824142745,0.0041612074461085564,-0.021150954890610547,0.24687967955458873,-0.01626591130944799,3.5552886407593364e-05,0.02075667335373151,-0.0078052825194315665,0.08621348015425741,-0.06025375867241647,3.024789522145638e-05,0.003417536510303596,-0.003920182444352657,0.012927579309936287,-0.037663930783739745,9.768138853257219e-05,0.02484130733255344,-0.03285201546856942,0.22172934516168932,-0.0024708635747919664,3.42240357075208e-05,0.017331380205216365,0.013706940537203893,0.0443099670564376,0.01938198975784759,6.8583000873646e-05,0.013150699695644547,0.018901354660805985,0.07955991527603413,0.10647440727704556,0.00010862935849172076,0.008778134172128181,-0.010164098363449513,0.01066375432964088,-0.05140771971409772,0.0005447964756214235,0.032798740237256145,-0.006374856854001668,0.022866598303662288,-0.04272255900163914,0.0001173423776062947,0.0019078756649682088,-0.05612671242707936,0.22308946184825068,0.03140350997016107,0.0016147664718954733,0.034995276168692385,-0.01557329502540278,0.13481691726939313,0.0005662934005186626,2.97042310316248e-05,0.0007703149022449821,0.07553544495677894,0.20986340414371724,0.17817132237898634,0.0011767530929148002,0.015201569144775978,0.020626905239702766,0.1621257593002385,-0.012101751691226886,8.472424230535998e-05,0.009006018911411912,-0.004845983584768099,0.0071021950774758005,-0.017210365627142944,0.00016104035823547887,0.014066404484051317,0.007359167334980943,0.009954970906361759,0.0004592992443296091,0.0004243191152478972,0.010636885923708086,0.028210688292556116,0.13413154218017842,-0.006328566401338928,0.0016301707845198929,0.0014456135601256556,0.02844265829407074,0.11208289524862067,0.013502045548535327,8.141814687662969e-05,0.006882365985190089,-0.03948736530416398,0.06259822631040181,-0.04425185871397723,0.0015680984351624128,0.00947174293199274,0.013249577577744896,0.04085548905706317,0.007131573055810123,0.00012848950478657536,0.01847020589602765,-0.009758744627020761,0.024544338726160162,-0.018217851904295135,0.00016117697237806673,0.007138961725481091,0.023976466219304184,0.11636140510636199,-0.05231428405245693,5.029098513642288e-05,0.013106308219229194,0.08397748515072902,0.2431094274771379,0.03604277954714961,0.0032740033706897083,0.0284728678146042,-0.003789931234705336,0.017639165884043104,-0.00079897738986149,0.00010687936289757869,0.021252755868391114,0.009508895956720451,0.05085180130644274,-0.0037699263645711665,0.00013560775883246279,0.011104673813804098,0.029745680295951295,0.17867577456849612,0.007987948496824028,7.874208879097571e-05,0.01304335429320005,0.00687300877041891,0.028742431768675067,-0.0026024933917316467,6.009948962652138e-05,0.00361549290285119,-0.0957705129860497,0.15614844498787278,0.05986826530289359,0.0002990360477184899,0.020043134458711743,0.009279873001788955,0.04058874408939044,0.004359381787400712,5.6852660803363096e-05,0.002737510140647418,0.0110201428661467,0.12912497554049465,0.0035561469810432497,2.2019540806413043e-05,0.003093552734346875,-0.007054565024862202,0.023628274791191523,-0.08521951346047897,0.00010436315324784263,0.004005151516600733,0.036961095267777466,0.16278629177634107,0.06413397020093042,0.0003578944576132138,0.01697462524694958,0.012712678165205132,0.058254497551409,-0.029434977763469775,0.00012499118563996642,0.014367766073917506,0.0033961511312413373 +2023-01-06,-0.004803695188900511,0.03980518674007948,-0.05837394341434612,0.00012762106377992423,0.004803287738601131,0.01509040981898761,0.05817928499139641,-0.046245354103808034,6.223621627448915e-05,0.01739701637772853,0.009190762867031414,0.02840133297145814,-0.07238326281245332,0.00014969594697911414,0.008970582845909632,0.030385090137468828,0.03002456537308802,0.07403232097768177,0.00034154792870527933,0.012009230495276864,-0.03497216774594993,0.09176000759051016,0.07713383550148135,0.00019941916080317454,0.015242569442032998,0.0028985312941138064,0.006687610255226993,-0.07806090695147319,9.463543404372326e-05,0.012042364084362087,-0.03805896246415109,0.13835724119722118,0.04334770360931397,8.071326323338347e-05,0.0025040731658431126,-0.0028639185925725353,0.02211902043484457,-0.03447968446084769,4.440106565023365e-05,0.00136463230464394,0.02536258545980514,0.01907868548192903,0.049836163175819966,0.0010251557724197708,0.005837492309639114,-0.011029070782360807,0.025449367876639983,0.002897010966600893,0.00015153878844653812,0.008404719226303536,-0.0011290268387633981,0.0007838414738796319,-0.017783830003361378,0.0007040449463145118,0.0039510029284553355,-0.005927599866937517,0.08976331253212236,0.003539951693071381,1.96789896846077e-05,0.009979547234234004,-0.005759743438633928,0.014926661094132333,0.004230026750747641,0.00011462820828821509,0.020005413234434537,-0.010245674334108041,0.058587217161597205,-0.0827203111835758,4.9226560897047733e-05,0.00793784373933446,-0.04497217964305339,0.03362549935043754,-0.037257219313586505,0.002608544001461762,0.00441337549321164,0.07763466218826114,0.45397250551539947,0.08876464879505025,0.0001407272575715174,0.0031515334824062206,-0.015517949379794924,0.10377636513722649,0.0036200460326972403,0.00023154963871716044,0.004287271701894101,0.022959334797908078,0.13595721934933128,-0.0030304807243013198,4.756833861799695e-05,0.00891148584013991,0.06094245006018309,0.30871468394218476,0.12478275697973489,0.00032534896573397206,0.031783081380721244,0.057205093219921954,0.7820864623600768,0.03658877887564148,3.0353596768013683e-05,0.018089914906441667,-0.009901444715110707,0.11271469348128088,0.0055249999267515,2.9349434763906096e-05,0.012075598035640072,-0.007086507546264897,0.01887164130909497,-0.13000290969117478,0.00012096099103897934,0.00021841306903596226,-0.04842711009220878,0.30749194227578347,0.016156381518500306,3.637870117969827e-05,0.0060550643505847285,0.02293023027151741,0.05616338816502122,0.04597667877989295,9.051748918431896e-05,0.015553413161309083,-0.004457346083066637,0.018254932402559598,0.0018670161895391192,0.0001116463994840308,0.0007604986571289722,0.01471726278956814,0.015367232409338485,-0.04331059280572451,0.00054740271435968,0.010661918464042068,-0.010034947690057567,0.034880971166611346,-0.04043714535736082,0.00012109119186115999,0.015150941250380846,-0.016530553252304066,0.06424508540560474,-0.010212848704953422,0.0016514546526620645,0.012492862813058817,0.01950272415105447,0.16212863549763534,-0.09335954796915735,3.093269402786017e-05,0.019027460139436098,-0.04783232764461922,0.1332026862077465,0.04062328796933043,0.0011740316420512829,0.005916904588097928,-0.007567252448112158,0.05583338941823992,0.0038130348885125143,9.025470953579132e-05,0.017807594938417194,0.010269652127797303,0.013575807438672245,-0.02616291458374851,0.0001785399667942246,0.004895432621592583,0.04514113037268064,0.06853732998079234,0.1083240244922744,0.0003780499302287523,0.022644390782687696,-0.03440538991860721,0.15203313343357736,0.05214642137446099,0.0017540363075398435,0.01207363147451407,0.06200227387730067,0.2697010099071498,0.1391086276531078,7.375906705167003e-05,0.01619164313607785,0.05706665498655092,0.07842054576725249,-0.006589656458048195,0.0018089632668875694,0.02192014824739383,0.029827084370284352,0.09038394733872969,-0.016620969045956144,0.00013074814465030085,0.014857581074717663,0.026792588690711442,0.061203770288732154,0.005903417383736004,0.00017745852876227463,0.00563212028796449,-0.0016475613363413956,0.006795746757999762,-0.004285598036809267,5.917228361140248e-05,0.009372244169086674,0.0018333018883713702,0.005473150362483439,-0.0004326312336275031,0.0031747875179873332,0.03556656988848418,-0.02640146589804172,0.11714999300033008,-0.009682092270306763,0.00011210535150705188,0.009383757244801299,0.013217563145320455,0.07767682929007112,0.01346953333023701,0.00012340157098205158,0.004274501353350332,0.029802261650998006,0.17224322446376442,0.004055441726087773,8.183814465837375e-05,0.003604309093782414,0.02199195512730833,0.10684884200977529,-0.011208789963409363,5.17298734296491e-05,0.014668264106155075,0.0011606232256748828,0.002275228534048063,-0.020317485212056143,0.0002487113618677755,0.01807231153867223,0.03595638910549806,0.13218166015215807,0.059645360525007594,6.764243691411025e-05,0.0072074857668970775,0.030955871421114507,0.34926186846281343,0.024750048979823216,2.2867734774720295e-05,0.019544895211031758,-0.0062086754866356834,0.019934776006177376,0.0004994990965654232,0.00010886707766596169,0.00221830979475516,-0.016284266117828516,0.07422724874829695,0.03065726237682114,0.00034580621814644214,0.012621204773729005,0.028431094747450193,0.14322370077391597,-0.12837771286317806,0.00011369738791467383,0.0003014280511528251,0.006245595254628167 +2023-01-09,0.008202925951399348,0.05930611461391713,0.022965713255134808,0.0001462702159277658,0.002139086016106337,0.05664875349310591,0.19994168971545792,0.06968061066600845,6.798256186663568e-05,0.0076645931522736875,0.049918217319018514,0.13382960565129678,0.0746984537856864,0.00017254567335069171,0.023029367488264414,-0.024416341608594967,0.02638622940972231,0.0458987337996116,0.00031229937481486733,0.004224738549213747,0.028457035981669376,0.053015995357192196,0.019047331898428454,0.00028085393672838205,0.016050708550906324,0.017807289950861376,0.05313323528313171,0.029510611011416873,7.317762481893072e-05,0.0025942045447926356,-0.001058157076033799,0.003959453560384328,-0.04631524275366265,7.841601027792086e-05,0.022057395929363146,0.0044063683672716965,0.04210478189391439,-0.008747603163154585,3.588789563857191e-05,0.009420798254467979,-0.023778947678342797,0.021796423453232395,0.06161539567801463,0.0008413025035398203,0.0024376151337839255,-0.012775001273713898,0.036615282814957184,-6.692178096621034e-05,0.00012200017272513305,0.0018853809937988402,-0.004417751246064907,0.0034320666426910914,-0.006248510004507177,0.0006291727490729804,0.004481007155247829,-0.011379549089858469,0.15989651784326256,-0.04380048742051879,2.1208445479826636e-05,0.008134040308561503,0.06070151097535062,0.18780414113062532,0.08874840065405709,9.601639037446196e-05,0.0244560412169117,-0.0029169631753636883,0.01712260481607428,-0.002695994294468701,4.795378937283719e-05,0.006440322279324312,-0.03979612525511226,0.03891606559413461,0.017282080306541544,0.0019945036477945974,0.00452655773398414,-0.014279510705905262,0.1128814926953939,-0.03689979007444693,0.00010409807306429662,0.007034900606774875,-0.014027608989134634,0.07688885006701644,-0.038727602200307056,0.00028250654762713176,0.005555252990572246,-0.0409675979072962,0.22929181712233537,0.0073995144074383,5.032837408057938e-05,0.014550010240807697,-0.019188326093993763,0.11069023158915278,-0.000691371137308776,0.0002857028691591633,0.012501585613717132,0.032922708487894636,0.4071355535578203,0.002925479472951396,3.3557280534487436e-05,0.009441422567784416,0.007714543231094575,0.0730104449285589,-0.006518201937067233,3.53026194450495e-05,0.01333476555383707,-0.015705446974324175,0.04174889277072048,0.01507803091830771,0.00012117920380681612,0.007830785146809663,-0.04409786038505442,0.34097484150709234,0.023129456435383455,2.9873599755345665e-05,0.0075121989894386815,-0.009044943777154544,0.028997673314415273,-0.06814866068733863,6.915444514341929e-05,0.0003682911706010595,-0.0019606824061489826,0.007486307867008151,-0.012066090574916765,0.00011975348595059586,0.001542882631277591,0.025550815080864066,0.023757171819012723,0.022228735124545724,0.0006147316611304032,0.012985348407890902,0.022569353148643397,0.08687528225180119,0.015322771973069449,0.00010934750864454344,0.021120976437334966,0.06726456968787613,0.19784102533451814,0.07057571988132261,0.002182173054386933,0.01825123646318786,0.01507764230516492,0.1636165970648623,-0.048966255496420134,2.369672210423725e-05,0.03086778507345568,-0.03610311061531535,0.1158176178913804,0.009490297650291801,0.0010191574031434608,0.012977849805766176,-0.0034679423729183493,0.02832411008610623,-0.003373528502436159,8.153446797853709e-05,0.006669064635570976,0.03143010970901318,0.04671219578150771,0.09423866181951757,0.00015880384035313322,0.0020521681923900146,0.0009887649811116416,0.0012770303412392625,-0.0011636691795355529,0.00044442223041171345,0.00520832346912594,0.01709148492831828,0.0677142043288501,-0.0016096398613711603,0.001956367132089291,0.023076061050574734,0.026213822510136403,0.11396779462180077,-0.014973334854272963,7.37969784845527e-05,0.01917523615437081,0.02635162087518743,0.03600598689539959,-0.027518908188150823,0.001819322984914793,0.014486478348290015,0.025104667091476577,0.0767570186224576,0.015449935050964024,0.00012958430551005985,0.0006623079540828378,0.006064273334886593,0.013861203424665704,-0.029200869425239553,0.0001773528643242597,0.01704813039379683,0.04869952829044279,0.20245667682081842,0.031949196769781134,5.8709255855372895e-05,0.020422124619087927,0.07657797440185185,0.28676390049348144,-0.020148736977770927,0.002531030936228359,0.020749531122221176,-0.01263568875224496,0.0621928835365329,-0.04487314615265489,0.00010106453851684237,0.008828749464371328,-0.04993118610094212,0.3153030150866381,0.10351757974824873,0.00011484300384029344,0.012193485824495722,-0.049688973158850194,0.27250691864475884,0.013538397706356672,8.624445611060204e-05,0.01675309547764357,-0.00446385809797894,0.020818222402893067,0.00021047142340573124,5.3890738044243546e-05,0.004115803615078846,-0.04289272130932529,0.08707784912350698,-0.0389497276674597,0.00024016255855232785,0.021998690432979796,0.016040963476716342,0.07354377440403606,0.012119013358130265,5.423740606326654e-05,0.01023759974041059,-0.03772008806960071,0.35898047578997533,0.05037203856964099,2.711022704087637e-05,0.0044462045085655495,-0.0022543003155991548,0.006990490718719496,-0.030532057586684737,0.00011272313870916557,0.010046329344182056,-0.0027560319936018943,0.010247794301945324,-0.016112189966991763,0.00042391796943072184,0.019787256869633018,-6.925606466732438e-06,2.745630152169439e-05,-0.028768218378662176,0.0001444732925412763,0.015102618799492607,0.0032695962858447732 +2023-01-10,-8.328947838041643e-06,5.507117574720467e-05,0.003384705651918214,0.00015993826391029706,0.0004897117865172434,0.026003666095980673,0.09487831336853564,-0.0028991759906441014,6.576247529184439e-05,0.03272538601752641,0.0021511471518337218,0.006415226880354294,-0.032021339841945835,0.0001551155382344902,0.0034887147465579743,-0.004678598857838031,0.005679919887250844,-0.01568727963091839,0.0002779978624144987,0.013314941029923123,0.043809439273472514,0.10792136735141111,0.03621435054386475,0.00021240171924002298,0.011504527140238321,-0.014122018472899732,0.03527425655758092,0.022159840504540507,8.741493636833035e-05,0.003639758889968101,0.03743331846423902,0.16753232968219584,0.012230166453779147,6.556160191388785e-05,0.000526878319863346,0.01203519688750084,0.12134872796805272,-0.001086084264486997,3.401077949716234e-05,0.0015603551419733253,-0.02085997277919013,0.019372506854518978,-0.06789523226849216,0.0008303720083156399,0.0015497910437304984,0.038234887968414476,0.08553394156802517,0.03895140922550991,0.0001563087257901723,0.0015505756643639798,0.012552896437607219,0.011419247135920673,0.015735252847522786,0.0005373173102403002,0.017795824348979073,0.01602823035218336,0.21743763250252618,0.0372676160802532,2.196714688676324e-05,0.0026662594729576277,0.08109960753147306,0.221172496458512,0.11330957171248197,0.00010892778445702245,0.0018230001873300748,0.008751450900080945,0.045968080424493546,0.01874041719926439,5.3590216354247343e-05,0.0031308546030277113,-0.035980923868952894,0.028810087708246675,0.01567189673287251,0.002435850906640578,0.0034715319959689557,0.057180563635704965,0.35842960984090483,0.04724513727599706,0.00013127942329236239,0.03434791883219461,-0.00894195314636664,0.051562859013898885,-0.04031237054041313,0.0002685366904005553,0.01612420118381054,0.04046248131086443,0.28695109532279395,0.01764717803774045,3.97196653678258e-05,0.010052663511017232,0.009632124697672854,0.05144006374991338,-0.009342572244744675,0.0003086081603248763,0.00946638394751878,0.037907318387227974,0.5545512298263601,0.023046079115210828,2.836688326390841e-05,0.0564936419829449,0.003570788141091599,0.03689167780963478,-0.0006260068481728703,3.233831489991463e-05,0.001972394425500718,0.03945437145017098,0.10953235436164606,0.1347033999555586,0.00011603138121407576,0.004689245272140162,0.05014011923048863,0.3712265299633367,-0.021335552789548955,3.119886052811262e-05,0.010964171179246862,-0.013149989011774338,0.03448030511759896,0.00383329790448188,8.455351606556028e-05,0.007461248305407532,0.0017477773070405864,0.006580281300761798,-0.030515108277298992,0.00012144796221286638,0.0006404259531174663,0.020115329910903562,0.02101131353817607,-0.0008774313936464168,0.0005472043204521731,0.011742977688399174,0.021587626063842246,0.08594242739536145,-0.030549291350994514,0.000105726359877607,0.005577858862613357,-0.043816048602386075,0.15183487014411032,-0.07190365467749432,0.0018521700700492173,0.026255321804296447,0.007105482571518102,0.07161221290920061,-0.014727905870277268,2.551459503433371e-05,0.022582853389497178,0.06707699920036525,0.1984220878227268,0.08551308820828218,0.001105235638186663,0.014809667879777217,0.00981980251023575,0.07028477706134244,3.224421362328802e-05,9.30394480351195e-05,0.006185442118137908,0.030520011707773742,0.04262498255771288,0.06563618366074954,0.00016899189185169044,0.007374811668379244,-0.03394560268770593,0.0447586934584021,0.021796384649411308,0.0004353214197800039,0.0027089534482416583,0.0057550982265904055,0.02166229315503498,-0.00021334003634705808,0.0020592005843003015,0.018919957553522257,0.02070891323133737,0.0818788757842396,0.0002608698997320341,8.114762392066418e-05,0.00034016048735103425,0.015081935696662371,0.020604566664736423,-0.027509916964893733,0.0018195784778300532,0.013655248054132506,0.015186467281235896,0.05108958519853883,-0.03576742838959673,0.00011777155754510429,0.002357156396518902,0.02562858627452603,0.06835163830944815,-0.016526561789831612,0.00015199737852512183,0.007196101677890857,0.006766392072095919,0.027017861720712626,-0.0034870204743061334,6.11251741383065e-05,0.004305775428039555,0.0044139068573000526,0.01704760832654858,-0.00955081558252172,0.0024540181110295285,0.0008688068642898326,-0.0013591410000766881,0.006756981741798054,-0.07423205422558393,0.00010005812007770087,0.002796058220263415,-0.028253974311113296,0.13008956280362993,0.024088589865782998,0.00015750628065408818,0.009655232052525381,-0.0023952632412485263,0.013178308283989963,-0.0060535331554319545,8.596908125510954e-05,0.012397754740042281,0.07212500694304787,0.37073868934647597,0.008271978297653701,4.889510156757198e-05,0.017351052915053344,0.005703277532426467,0.010143957684848243,-0.04739551965059994,0.0002741236279052159,0.009098153158699154,-0.010883735926595767,0.043195939630454254,-0.02815332846633639,6.265409283422062e-05,0.004385512615886907,0.028513775005856976,0.3215010596770102,0.017767869003350346,2.288250653910643e-05,0.021894891821774762,0.0013773914907427296,0.004378613023127751,-0.017585434747455324,0.00010995875040477913,0.0012949125937138058,-0.014637534526415141,0.05113971086506048,0.02595649558286937,0.0004511673208660023,0.007233505442780815,0.004333310351118672,0.02473000884627757,-0.02171572623982621,0.00010036154041647098,0.008485295618535331,0.013229137743634947 +2023-01-11,-0.033383179195423,0.21152556633217282,0.05839532134678244,0.00016689810710388426,0.004895686806966909,-0.05199030622336552,0.18411244082502679,0.07823783952535543,6.775631313345866e-05,0.010628902418100722,0.03116644559577098,0.1117115742673644,-0.07209757964362452,0.00012905840933876344,0.009258963023272,-0.022235808643325954,0.021878862178658778,0.006919794401981338,0.0003430015256000211,0.00592420450138609,-0.016070571210538533,0.041985195267933706,0.022271611868776194,0.0002002778444265751,0.0012669919807948554,-0.022980036293044136,0.05381236787798305,0.08462328045010152,9.324280880992302e-05,0.0016077776135591546,-0.0376364646014569,0.11711479813148291,-0.037133180700600225,9.42946172614781e-05,0.0023547720865976776,-0.0018299683670473428,0.01604266282569225,-0.02564083888952968,3.9117018114850696e-05,0.009451229279686724,-3.656610794645598e-05,2.7496849138229524e-05,-0.020904545901740984,0.0010255116365989647,0.0036065457976252246,0.01616652368445587,0.03384465353186365,-0.0016839757151408598,0.0001670276830083424,0.012686646786800164,0.010845411770568336,0.00834394051211658,-0.019435516507181814,0.0006353297684727376,0.0025961894011200686,-0.007125098391975352,0.08609819487032397,0.00027386776560098914,2.4661506862893057e-05,0.0075729990367603825,-0.02492494878215591,0.07377137922212133,0.018067708487238467,0.00010036849437595314,0.005290219502410276,0.004636331300829217,0.02811815816391339,-0.007879401617683558,4.641404413089936e-05,0.002771106044380699,0.013390285531716806,0.01199481696271622,0.009744045671159675,0.0021773045760793445,0.00471134595239991,0.06894341015319169,0.4215721008580999,0.059067816625492285,0.0001345776706029748,0.022787230896780208,-0.004727481744536723,0.026414277205042774,-0.13938338195919311,0.0002771400947751847,0.008567485460381902,0.01803713986784618,0.14104562326922196,-0.026728607750857,3.602209893744456e-05,0.0012297727173717283,-0.030434943408322687,0.1606320367055933,0.014386090823524541,0.0003122677543311311,0.017373679143250668,0.0619848665324662,0.9170752603725321,0.04542432830732068,2.804858287542843e-05,0.008283529558339836,0.01593721463060949,0.1659088874671089,-0.021208199210464282,3.2094046640747343e-05,0.005686208958394376,0.023174446711345633,0.06312317481598742,0.006892874000569795,0.00011826147630167322,0.02016374011705372,-0.015583461755815799,0.10953198342888536,-0.040336612064581875,3.2863617224852744e-05,0.029606903688548625,-0.000820877828897137,0.002272951666673816,0.00034986817436525225,8.006924022556638e-05,0.0037410709271583804,0.006407470421045164,0.025335598021946622,0.013451740244607277,0.00011563892501108508,0.0043033199567279155,-0.006615679128292418,0.006380327489911959,-0.0005315736075344025,0.0005926619199858331,0.006529486233733007,-0.016987826752218087,0.0550980374866903,-0.014263820287932286,0.00012977400332590762,0.01352916948962857,0.006430374619133272,0.024721036256426444,-0.025432806410824925,0.0016695090508300862,0.005680498617071857,0.013341382862180425,0.10635107456838701,-0.029523107657638034,3.225827651833691e-05,0.00726391951973572,-0.022175143441988114,0.07377890221681915,-0.0018367637672884877,0.0009826650696292166,0.00409667991024475,0.006679260991061404,0.052039439219923836,-0.017402902437634475,8.547152427102934e-05,0.01464014077054955,-0.00609601435526204,0.010047655133705452,-0.04954096221311323,0.00014319460209266877,0.010250324190743048,0.012230408645247852,0.018735148958733624,-0.0511504645901532,0.0003747034841973139,0.0026218700677229125,-0.05984574435991756,0.2691686918508947,0.1282536470638859,0.001723292787619763,0.0019031454655455788,0.010393753257422596,0.03743896466037961,-0.008656073414607111,8.907153625804119e-05,0.0012374479545835706,-0.031717309535718115,0.04059424923339549,-0.0133571707393757,0.0019422673900809427,0.007504436430026272,0.021664541625022012,0.072453475766338,0.006794905315353316,0.00011846943487670175,0.013165236648081821,0.05577787832265882,0.1372731789951365,-0.12402880530698175,0.00016471633685567993,0.02411826116796127,0.011869282356221563,0.04069974840347052,-0.004119720736758137,7.117814439658871e-05,0.012262752559603548,-0.01374403047365848,0.04314671818723392,0.006632468718517702,0.0030191479748562684,0.005162913772030398,-0.04127911345414928,0.2103039670041846,0.011068155723003034,9.763903246248208e-05,0.0025322162560006928,-0.013062388352026371,0.07550323630184741,-3.613330018085869e-05,0.00012546361841811918,0.012899740031159936,-0.01314549755007406,0.06756506215690558,-0.012910677055484569,9.202451699592968e-05,0.003885479669690035,-0.061692433130571864,0.27268549024403044,0.08566309273317978,5.6861362824241974e-05,0.0012386497164562447,0.06237200724495682,0.13028465600237657,0.03969446032208574,0.00023341343189287926,0.020193675187744484,-0.007208473912433376,0.030656650562278856,0.005056904642575953,5.84699878156181e-05,0.010223360277391149,0.012046544885526205,0.11891180377151636,-0.0065201456387237915,2.6137787428796952e-05,0.0017889544174479052,-0.0033862620682380516,0.009248737976158473,-0.02059397472668172,0.0001279814583460175,0.0013262160941430916,-0.029037174145397356,0.11179389448906665,0.08011113389512405,0.00040941545657611914,0.009111989825066193,0.01171323719749875,0.05937418576289697,-0.0008807105911091987,0.00011299287710131136,0.012514435750871784,-0.002163314787629863 +2023-01-12,-0.028953541239908925,0.2139590694023013,-0.00963622420379857,0.00014310591092652307,0.0009071783686147295,0.07527591549668997,0.25539678087225565,0.04614780363117722,7.07214495570561e-05,0.010480162613903455,0.012046649055297782,0.0383183941982824,-0.010614761372699235,0.0001454307226693591,0.03143780005112531,0.002952310580916075,0.0029710109848370358,0.0020554791246864515,0.0003353711049762795,0.003256187950313151,0.024640428181791636,0.05400062840489599,0.008497201954082687,0.00023875210480481663,0.005096547357845034,0.020147807650186898,0.049940620377842374,0.03635608187626676,8.808878155361602e-05,0.003464272661576403,0.04026414581874907,0.1547776715363999,-0.07649021495446502,7.633083909230967e-05,0.005041487405021991,-0.021091231397284284,0.2052145028650293,-0.09916095162881655,3.5244593108219395e-05,0.008644339763178306,0.018336336630453483,0.018655779139454532,0.026861202254913383,0.0007579559532946541,0.00047152428273271253,-0.0037780581838764444,0.007772819645933409,-0.05215894022975769,0.0001699620409425088,0.004372303053023357,-0.0250085012091204,0.019030325631154827,0.028160725679751617,0.0006423412363771028,0.005256913112356753,-0.0018312732563159435,0.023180034938890617,-0.07162906863825354,2.354300290783277e-05,0.0021453585811096344,-0.0010835294791555876,0.00267172774056245,-0.007744856300904195,0.00012047573085605367,0.016630779010410657,0.00829213894715609,0.04001502408678584,0.015435854402154444,5.833179037492135e-05,0.000452801278573596,0.014791640152071892,0.01377386835673715,-0.009107400191764094,0.0020945145301441404,3.4611281914069926e-05,-0.011873615165502442,0.07968078314946102,-0.002676795492532972,0.00012262569526901715,0.0038330007324101243,-0.01838966232230097,0.09941494534597425,0.00260845861975372,0.0002864377861623886,0.00912849294252391,-0.022954146335324884,0.1265086837082033,0.009651089826104273,5.110951561005917e-05,0.013928097832744157,-0.062373324399911056,0.40732975551814266,0.0694099428507661,0.00025237106636890423,0.012784724178248663,0.044713878220569256,0.6698848324919658,-0.0008454141811677678,2.7699531671377494e-05,0.005518674191610671,-0.0043747707935729695,0.05284538514486124,-0.03307227378291791,2.765858421269462e-05,0.008146104485242998,0.017008605614488904,0.044868541683818736,0.008840281114547915,0.00012210951676575166,0.0021695579101321505,-0.017013789479087105,0.10850950721570102,-0.06825337974885944,3.621809801018774e-05,0.033408913310473555,0.015846957755527573,0.04909035505904078,0.003422773876498406,7.156935598367582e-05,0.004784434184052665,0.027178158391678184,0.1201005670291824,0.16335578029817574,0.0001034721714245432,0.0033624543996874923,0.02951571499640229,0.02746473955043206,0.026706354615004913,0.0006142616253826328,0.027491005155761576,0.009974950260299306,0.034866780036926226,-0.01076776423401552,0.00012041619665855325,0.008610492997915655,-0.00904393034885708,0.034384644691426075,-0.013972622167250861,0.0016881531470629833,0.02201108155915347,0.0617049592313667,0.5066740639696057,0.12235531579061082,3.1316526877922465e-05,0.006338895235778977,-0.00590327529956534,0.01638839349212405,-0.030117510127464144,0.001177681692445028,0.016068740197174962,-0.012611410797964897,0.09120904923835614,0.011709966169216327,9.207704792982158e-05,0.019059099780016294,0.005657713821548911,0.00834099736560027,-0.00575987823210525,0.00016009153856663135,0.006592973511668607,0.016352434531756208,0.020135787914644827,0.006125256560090966,0.0004661414305396703,0.00823653249204051,-0.0016808342672425438,0.006366258743658124,-0.049756309593021825,0.002046401987692792,0.01861332296411544,-0.00023537108943170635,0.001020756394137557,-0.036831101577355384,7.398120126105946e-05,0.003251607895291664,-0.025258065397692736,0.036385087125983775,0.01144997285344467,0.0017256545305623107,0.027767256478289617,-0.0059067348802567515,0.0188502777896264,-0.021690441919203513,0.00012414972450368967,0.003715920701030071,-0.03494934864936401,0.08779008919455157,0.010264149571542279,0.00016138158332525834,0.003239514092360077,-0.057649693527338244,0.2625331391823408,0.15532609009950113,5.3595311119421984e-05,0.006448691560447946,-0.055506147985825906,0.18798019960682033,0.04351540527564483,0.002798640023772277,0.013111951465490615,-0.025638296736616828,0.12317288349854992,0.01025632236634406,0.00010354154284265969,0.0055788759330275255,-0.011142143421850884,0.05544935645707996,0.0006882806038452628,0.000145724649256217,0.012642815632543136,0.02174043484070117,0.1089818706940387,0.016247872521888775,9.435451067730925e-05,0.007886882284014875,0.053305259631563774,0.21659698134442137,0.049715664801561,6.18536109265425e-05,0.006740719754013959,-0.012993512133998391,0.025566143025098513,-0.08408481525711883,0.0002477939714275186,4.477220289749069e-05,0.01132595369355355,0.046773704561936406,-0.00019178804358618967,6.021260121770832e-05,0.005205941363127114,0.008339489833853424,0.0913260206414915,-0.0011628531000545438,2.3560051452338556e-05,0.0038215750413278116,-0.02127478697395826,0.06667919688401042,-0.11476174727810787,0.00011152797693161463,0.008105851595674729,0.004220670908480562,0.014974505653221159,1.1390639920507174e-05,0.00044428020923398487,0.012583816008921438,-0.028071826382898606,0.1276437611451077,0.0019427388666228974,0.00012596296436109895,0.0016130330397588896,0.0006844145325114314 +2023-01-13,0.0009730520681158389,0.006027210702228076,0.0044541026996997865,0.00017072860427311474,0.009155806205239612,-0.0165088450624892,0.06155697824520675,0.01604804619369165,6.435020362837838e-05,0.0004145849358671923,-0.016775791847010748,0.05913695748759149,0.019213229948349116,0.00013122641256622773,0.007110688836996589,0.018745057064408748,0.018080822566735776,0.03436407040242448,0.0003498939545527388,0.005577442277069494,0.019605453486925082,0.04450959393033421,-0.00041507295129216695,0.0002304735187337769,0.020262322230833397,0.0012998592059459747,0.0033476938226311894,-0.0045248315225475495,8.47807634792169e-05,0.005538359155578154,-0.014071111254300397,0.04582547099261646,-0.0916724671939639,9.009720421847532e-05,0.01179244440930925,0.00203050291433572,0.020028650971489644,-0.08670721497762969,3.476566437819193e-05,0.006912950178682111,0.007259570846321358,0.005932636049250789,-0.009845627835449412,0.0009436436637902604,0.004973156036872782,0.04851243267969149,0.11885783712791158,0.0036825306509770477,0.00014272074905704668,0.003229913876452767,0.03256172899633712,0.022389501902336264,0.036968895937439836,0.0007108654121642768,0.0011532216402101757,-0.0051376408159277106,0.08300057497023126,-0.024780375495977187,1.844613688104852e-05,0.00018292506246200932,-0.005821595439202751,0.015993760709869964,-0.00014458422000523843,0.00010812906944676923,0.0013539636891309666,-0.01593104561841045,0.08044151154747561,-0.010387811354609325,5.5747561702876364e-05,0.003810453186141446,0.019940374059891824,0.01817475395895011,0.0134279108066284,0.002139871690264956,0.0002751188810481027,0.011457094019586812,0.08549696048990839,-0.002281058622034269,0.00011027470621502366,0.002287460779701582,0.009564494513783484,0.052339012063267555,0.00901302659392551,0.00028297282697993835,0.0065651299529049375,-0.018055466360246575,0.10398302120357027,0.004315641287715925,4.891107800460927e-05,0.009179719185055486,-0.060223636926482825,0.3287693258029566,0.0501268690368423,0.0003018995707681884,0.0017835479426968177,-0.03902377159576812,0.4690380255199018,-0.02087909416097624,3.452640967549381e-05,0.007968766514003375,-0.010591313168086782,0.10283955144911174,-0.01871251568879648,3.4408944039530705e-05,0.019887391660813162,0.03279066085980495,0.09152214722214079,0.040990794665921745,0.00011541087259681438,0.013370921298892403,-0.02791294424220127,0.1753527264640091,-0.001809027118960103,3.676931178942828e-05,0.014172944977935755,-3.7334122926811456e-05,0.00010082376669940506,-0.00010974259128744882,8.20957012868339e-05,0.006038428087413114,0.0035166508803120143,0.013016112437037574,0.0010871008350603168,0.00012353686028397935,0.0005359271593625159,0.008644427686132066,0.007726517889829656,0.003086968272352098,0.0006394815110647401,0.006267043864731278,0.013029124429144173,0.04768816877373432,0.009836966889248403,0.00011499808143440407,0.0008372434021810819,-0.04233914707976557,0.11059472132992336,-0.032424620082116704,0.002457122908328238,0.0024357717877152175,-0.07051734423499262,0.6398979386122198,0.09875724234448448,2.833788490502621e-05,0.016868441402152844,-0.04990368172737775,0.1277515104975196,0.04652503897741384,0.0012771379602068682,0.0072439365593981305,0.01610662794250654,0.1515579895027243,-0.028412316418153817,7.077036483671882e-05,0.012335858593024187,0.0027743043642835547,0.0036073247259929865,-0.009916297699628448,0.00018151572420504284,0.014769540909325002,0.018086580760660137,0.026559692430791485,0.007579999425198168,0.0003908745050160585,0.015337723708074786,-0.01160819061455249,0.05679469444699157,0.0013795112897213916,0.0015841894059047616,0.015675085124377156,0.014499459565784656,0.06484237903743316,-0.004817604663310775,7.17436131925862e-05,0.010694548525392655,0.024268535917036045,0.033480832610708874,0.010804232593373365,0.001801874416126786,0.010421580230698857,0.03219022337012486,0.10505665254642248,0.02243662493332937,0.00012139937983825485,0.002916258051251123,0.020520908829883288,0.05622851024900876,-0.010326733597212177,0.00014794503324890273,0.011143564974419469,-0.044491457988347916,0.2104696303431106,0.053524340456503776,5.1594228719549574e-05,0.00919912945058265,0.06989230290155159,0.24211888263590853,-0.1300444259840601,0.002736016721834395,0.019209403682250478,-0.01006185014838467,0.05316738931697222,-0.025848788275358515,9.413975856004429e-05,0.011849207641951305,0.0058822997208984144,0.03417261192399545,0.0060058118884655865,0.00012483310103099556,0.009856821562041467,-0.005946326809353395,0.030998587010603883,-0.012158150251650866,9.073097438622217e-05,0.005398298014729717,0.01414575354647769,0.06034104983300055,-0.01908341205273955,5.891971267823153e-05,0.004305909004028856,0.05244614165515158,0.08807255182608162,0.043574236789384616,0.0002903369818485495,0.026895526958975742,-0.025349066672823453,0.12714619989111448,0.04101535412553219,4.9576169149926244e-05,0.0009601084326814756,-0.0027268244587422795,0.02794052005777396,-0.0808769780269533,2.517989883426374e-05,0.0007840180807524998,0.025969812844533056,0.0848272510187798,0.1227343059568204,0.00010701444198481785,0.005416117917748169,-0.02067139398517261,0.08488375285492217,0.036306926194642423,0.000383860268874599,0.004039491953987376,-0.03001840750665442,0.1461306194390437,0.035298146255682804,0.00011765712166269342,0.007345956482060011,-0.0008270649906287732 +2023-01-16,0.024124517268519136,0.19317284044795982,0.07255452441869216,0.00013206847102606182,0.012788936117466343,0.04313245442477467,0.12414721353049532,-0.00844931421516589,8.336384210910262e-05,0.004000444831192097,0.004752488658315297,0.016580898410207084,-0.009161224019563296,0.00013258983653441085,0.0020967476341939364,0.0032449455498986834,0.0035000338178042614,8.733181383633874e-05,0.00031289817454606574,0.006483399553479323,-0.002038569280163832,0.00396197104951862,0.0018984974920460392,0.0002692228701659552,0.013041413901029968,0.011760474913338106,0.032156889286069495,0.009071370936358793,7.9854164347036e-05,0.0013368094995968069,0.022565768112721436,0.08926023136899648,0.02163385566238099,7.41791697130469e-05,0.013873562992597241,0.015898451020699454,0.15315675887697253,-0.07270155232225199,3.559731654961354e-05,0.004886388019353827,0.019864633842640995,0.014290055192623899,0.03184064822509787,0.0010719917541310066,0.005473577608182271,-0.002843757770923787,0.008061631258858127,0.0036500461334824795,0.00012334784251812907,0.007277563255551671,0.00371011980574739,0.002677862626583083,-0.005058543700010268,0.0006772109910954002,0.008537778150980847,0.0049324474796112,0.05639111755067666,-0.029264433894951886,2.6066010002431233e-05,0.007987636301807197,-0.0004420220217095403,0.00120797203672991,-0.017565655881133305,0.00010870213235984364,0.0028652697361133224,-0.009640887575927048,0.05708143926009578,0.0031308021190447045,4.7542708731046113e-05,0.009918081797925688,-0.0024123911913312064,0.0017457829832315426,-0.0023936132849109743,0.002695134544720137,0.009273869803263397,-0.017806153169505727,0.119043082373668,-0.0456252232743043,0.00012308866152137984,0.013249812010424277,0.05479431676911852,0.37553880666565836,0.049736698320768165,0.00022593781585227216,0.019812032424268308,-0.0007614436775329222,0.004318313737709602,-0.044758502231554184,4.9668900818733585e-05,0.0059801645160059615,-0.00033589890616285206,0.0018074206712554984,0.001753994155324275,0.00030629235151384657,0.022168020512246877,0.023913237644627935,0.29712657126924974,0.0008880886958395913,3.339851211585047e-05,0.010949625531970727,0.012372511626899828,0.13906930779484733,0.012460833913183667,2.9724070772583535e-05,0.0022687967114865255,-0.010848105770203812,0.02806433327138515,-0.030067822545004945,0.00012451507591351553,0.0008781349137046944,0.026889060277171122,0.1786503203715688,0.00490295094539486,3.4766758546247976e-05,0.0011081414641313054,0.01604907817470173,0.04849203545622096,0.024596276512603526,7.337651154743856e-05,0.02280599660849435,0.0005192700748775719,0.0019662486180840487,-0.0012484316716056905,0.00012075453794381921,0.011067262939784595,-0.058380507917174175,0.058082009078074516,0.019223710722604044,0.0005745155661224456,0.017871520515798173,-0.002620898594793671,0.00948529414293393,-0.14465850514446574,0.00011630152889088562,0.005604945353936748,-0.01396867071529029,0.044135002578146815,-0.06441992394265222,0.0020313796535374614,0.044653238540751504,-0.035390106019200396,0.3420306490311788,0.021842591976503838,2.6607191443350608e-05,0.01538773859045552,0.051976322057786684,0.17646242709155952,0.047262009509265006,0.0009629961841518138,0.018876123294946874,0.054660745070323376,0.4618263387698346,0.06027495781618094,7.881747044131857e-05,0.007929910213755382,-0.00040824868324616624,0.0006595558520534822,-0.014319935956213916,0.00014608936483479298,0.005480838902435072,-0.0021803484701875477,0.003580031054644412,0.0006678523665500143,0.00034957714356289015,0.013373785465559217,-0.041987263033674845,0.1514577004835818,0.03486439457754935,0.0021487037814112734,0.010637856408875022,-0.02093658077297985,0.07937179482978063,0.017614805218803826,8.46310884231807e-05,0.010517840404960873,-0.006453761360177867,0.008190106254076696,-0.0031476076523467055,0.0019588471913123597,0.011145975059955716,0.02244596578719193,0.07348549740081115,0.004697078025777798,0.00012101875897109242,0.004941014548907528,-0.035002705096538536,0.0908275431397648,0.04904415158145471,0.0001562228003070789,0.03093638071636126,0.0323554846699837,0.12365357915156139,0.017470964445240027,6.386385691452304e-05,0.03386042412780659,0.002834434403495894,0.009710256603610882,-0.0049670813487544055,0.0027666470726765004,0.029148843453953657,-0.019403080835589306,0.11000138026234106,-0.05291521730398572,8.7743131312939e-05,0.006809004925679111,0.025642233709994376,0.16688248998144994,0.035882731515889534,0.0001114309588247804,0.0009586228611286533,-0.004205551050324356,0.02368806702094485,-0.06237506766131926,8.39734477692617e-05,0.0035191952400893877,0.002889922740734181,0.011762277983765852,-0.03234413615542083,6.175074311147148e-05,0.013571617700979803,0.003123418029367226,0.006244202793059662,0.0001771686392469598,0.00024388354982134521,0.004374737065567487,0.01084815093076336,0.04595843926221951,-0.014679170515227451,5.869550223662179e-05,0.010216716033920183,-0.006040632276004751,0.06650431222588973,-0.021984260119602108,2.3434941721972456e-05,0.020758071578511686,-0.010582180280846726,0.030270159925482484,0.004204367319143707,0.00012219949329790188,0.009743566545715484,-0.026526326778887076,0.09795653375157107,0.012799968635931656,0.0004268464534759912,0.007102950049724869,-0.018343616534793338,0.09976930711114337,-0.022738629413918146,0.0001053076212981523,0.005379961253373448,0.0029892639841185573 +2023-01-17,-0.051003231548165245,0.39759713906448135,0.08626297522283455,0.00013565663088655185,0.0036454201444739223,0.0008121996537312326,0.0026043232176567927,-0.00286856115721974,7.483046498481202e-05,0.008518536918418931,0.014240984810847691,0.05468253716656206,-0.0005802601198961626,0.00012047267980113413,0.0027534389770400014,-0.0018072900298750278,0.0022446033461885626,-0.08876067853157911,0.00027174158428117134,0.0031346545616330224,0.03274939983308561,0.07671129144872686,-0.03771563615170885,0.00022337873313892827,0.004157051921227142,0.012434034020256633,0.02780458674636704,-0.02677074436702972,9.764327703471418e-05,0.0030990732448151577,-0.0070358379392212195,0.02553601259582006,0.0006343949840429442,8.084489453877251e-05,0.015730081862627556,-0.031686037428603014,0.24774445792918898,0.15843244241909957,4.3859391023466076e-05,0.014670333222419325,-0.027551450140565304,0.02129514966481301,0.05674220239934313,0.0009977197112205295,0.002412541379401806,0.020839809529574278,0.051999848382554725,0.0024591306677240713,0.00014013723823344933,0.003096666275176341,0.015947880249480108,0.012613320922534695,0.009072066439491808,0.0006180133811828001,0.02780525348549282,0.03099580370912142,0.4180152502358719,0.17053234830028907,2.2097012692391997e-05,0.0008768551767175615,0.05254650888660143,0.15213091401453058,0.03733396441297043,0.00010260710413206883,0.022948239044799854,0.024962264120492454,0.14019005507747317,0.08465502698085603,5.01220223730082e-05,0.0028852683634633543,-0.010625905506585568,0.008234408884534057,-7.712797678252061e-05,0.0025168451356969404,0.012598016558855986,0.0012205651391354203,0.007856441077303027,-0.06599584824300561,0.00012784601983295614,0.017898203316464394,0.01708501712553128,0.09877235466999619,0.010574469728328845,0.0002678478984270529,0.009638442653986435,0.030481058807202817,0.19809380578046884,0.03335503404428691,4.334311389463452e-05,0.009875539182653771,-0.025627309749883653,0.14975657381499125,-0.003582309073751772,0.0002820355995589203,0.03528400865032549,-0.07179118298154799,0.8327328814698319,0.045861042178084684,3.577631678235404e-05,0.022498478941600005,0.0022603213554728114,0.024984530645391644,-0.01989050641157405,3.022600167286461e-05,0.003929687638537018,0.007177229196202654,0.023052676337647904,0.00040858884196219076,0.00010029013552017568,0.005196048841597587,0.06614938594231273,0.44858887206213416,0.01578986225146479,3.406196490048608e-05,0.013797772393890606,0.016287383509107006,0.0392080391152902,0.027244415172061786,9.209871739952745e-05,0.0075526661277534836,0.004983728376764305,0.017213332550881765,-0.053919551357751075,0.0001323847625624437,0.004334988991265477,-0.008328796032952845,0.006721192826039246,-2.8064172540361214e-05,0.000708290526097062,0.0008268880704433768,0.0002618624761499884,0.0008816694185288902,-0.0009087905058075956,0.000125012517798226,0.027599287528494942,1.5807954006266254e-05,5.263434368789094e-05,-0.046904681315851654,0.0019276386538443339,0.005347534117908188,-0.01352442619856926,0.1244794186131106,-0.03750040887918653,2.793852617961618e-05,0.006788100227451481,0.02591647623850682,0.07301226724540172,0.009512059485578653,0.0011605166799725332,0.008633494764206426,0.014857884593674951,0.10902218201919898,0.0015056353692970042,9.07544133963406e-05,0.001061085189830588,-0.016020093643271425,0.02128710078788859,0.012700318518213509,0.00017762084026415716,0.01758226913254539,-0.026326981301160388,0.04181053470172231,0.041339357886482186,0.0003614258883478358,0.010118266009461738,0.01631253925773508,0.06895628042021008,0.00873365238929849,0.0018335724879107672,0.006988489697660685,-0.004591991667486398,0.01521755315226279,-0.028627966937959038,9.681588827108811e-05,0.012273506865009864,0.027322932058993405,0.04449554540593418,0.01790501246297487,0.001526468896503481,0.008168087007518808,0.0005309562620999061,0.0018580579110816758,-0.00702974304438776,0.00011321801543274148,0.015486748428314854,-0.015211791929988,0.04720691084163663,-0.003172281792446717,0.00013062766710645186,0.0002520595936963257,0.00534923109032123,0.021020154328796305,-0.02772539663085576,6.211112347110151e-05,0.010500419136162925,0.03933775156676074,0.13887397184942493,-0.032043288186121566,0.0026847678254357113,0.026515209835739403,-0.03106846412283841,0.15281532999734332,-0.18300147541834375,0.00010113312601094115,0.0009272172374667996,-0.02716852220902647,0.15301898048127616,0.018330173781491287,0.00012876015671456332,0.0012173060232201411,-0.00877672053235217,0.04782399676647188,-0.022184280061861426,8.680307297538222e-05,0.010671731264826307,0.028065466621867874,0.12184333925946808,-0.023844828200818433,5.78919088087655e-05,0.011848894026584749,0.00303220582362132,0.006462085391114774,-0.0617436356907111,0.00022877858999264573,0.017470492536279993,0.0017249154004698943,0.007074444539593024,-0.008643551616599705,6.063031565993739e-05,0.0007187975740491179,-0.008363241049015742,0.08129495412202543,-0.022823860113360336,2.654252955122751e-05,0.0037568448593883075,-0.002967370743579063,0.010059866164332803,-0.001721224764645515,0.00010310710002001572,0.004364395329828106,0.007274883742888966,0.032269112246406356,-0.00848750039398553,0.000355358747604617,0.008245970219399167,-0.03309700533602522,0.18531573905750426,-0.08076174646546748,0.0001022935357151186,0.007232963305067778,0.000968355019364379 +2023-01-18,0.008300639179666053,0.053205077833765366,-0.032032013349193915,0.00016498521877521537,0.021438898511943565,0.0306141997549115,0.08618687434833908,-0.04970698881344684,8.52299644522655e-05,0.017916799059252836,-0.001538018098048058,0.005276570001994186,-0.004501247207056745,0.00013483633713355555,0.01831944949264649,0.02368788304042385,0.023567071818238035,0.05748897648728486,0.0003392254920366686,0.008377918250838567,-0.0037959232309791656,0.008882077995532709,-0.009980271813440796,0.00022361483418905569,0.027120665992136538,0.014920162029300776,0.04113668447345445,0.001688560988695941,7.91937655848116e-05,0.006286757254269595,0.014520763921022105,0.04856512402856256,0.010211584167758346,8.773135109605516e-05,0.0032531621983273905,-0.03140894267894442,0.2555016284905433,0.10259585622868836,4.2155889641089236e-05,0.010385030163963273,0.007481612237538392,0.005786480010942333,-0.021006013893012786,0.0009970697143865358,0.004139228032945653,-0.03674271841803693,0.08756130254210157,0.0262113944061057,0.00014673068922249082,0.007282105166732821,-0.00997608609492863,0.007108193060026845,0.006693229088486844,0.0006860019211198572,0.01847935223892158,0.03453932879139378,0.45346423358013543,0.16446402738304927,2.2698316358012973e-05,0.007229781950317936,-0.012426363109074424,0.037959895255309864,0.004920332077631051,9.724562511427439e-05,0.012494764558232601,-0.005570229603795238,0.027171148765436987,0.0024507852620176333,5.770678976395309e-05,0.00914711816600756,0.010478960450120886,0.008986199305092224,-0.01577429233542265,0.002274390995198373,0.011953671082396372,0.026203614532703732,0.18447402911824762,0.007153881203796855,0.00011689019323003091,0.014864286571222135,-0.0065164839784208695,0.035047058727101815,-0.040904571960248506,0.0002879187760456266,0.015673066803858264,-0.0027852563857446206,0.016340323698423982,1.9282921930651788e-05,4.801373366005191e-05,0.01750279068078246,0.01436347988484851,0.07136884601736804,-0.0197924326228013,0.00033169414338406124,0.00402796236140329,-0.029994309637558152,0.37318613648143806,-0.014637370535281746,3.3353667884316006e-05,0.017788366679858288,0.01642287101508881,0.1627566016695682,0.029414445794349993,3.371259457091913e-05,0.00040379640974969,0.00040042965963718125,0.0010964838648761855,-0.0029013996436132055,0.00011763776060453224,0.019081859210814917,0.025133435787651728,0.17512392768570037,0.0016658843722374293,3.315116145495929e-05,0.02547655260085191,0.00902128368348751,0.0263205119891799,0.0007793329637215007,7.598911546173251e-05,0.002431889437378467,-0.018712053958286047,0.08490253584075928,0.08026966215230716,0.00010077420830002626,0.006561572395932243,-0.03629592772989133,0.02694315636313049,0.0023067345173454967,0.0007699898341150774,0.028618179960905214,0.027052098810728262,0.10451393475120162,0.04382147106458973,0.00010894637281607683,0.023810155122041606,0.010698269973716472,0.033724175303646395,-0.004222113943446161,0.0020360638341192366,0.028393199832951715,0.026327155188798197,0.23211834769450024,-0.010752937262329136,2.9165985685115973e-05,0.01501613915828691,0.008765416079449901,0.0298764974796564,-0.019954613516836348,0.0009592109404975488,0.0015639330170676487,0.04935670745255938,0.37230061442483864,-0.020654378234172748,8.828320085166043e-05,0.011865871097472684,0.009462312559565198,0.0127623252372287,-0.011433296478648594,0.00017498985359794725,0.010130101834242407,-0.029769793292403802,0.04339022617275505,-0.0679852524478079,0.0003938109784700702,0.009284222337238312,-0.002763672946556295,0.011544026506320422,-0.003453262673814411,0.001855579958326644,0.0017893296670739504,-0.0077696727627106065,0.030749874864072418,0.00022150372579255248,8.106805352037742e-05,0.004724279829202932,0.019846211400881723,0.026159499791481654,-0.0022163095264707507,0.0018859291338849697,0.0203583077911888,0.02945784879225432,0.09663579513182373,0.008500819241615772,0.000120775554663806,0.003070218539403681,-0.014208967590871155,0.041188814737835165,-0.016076388339506472,0.00013984392507224188,0.0013432704652584701,-0.03996246274308311,0.20849284220247988,-0.0019403298789603064,4.678159444582038e-05,0.0031228775521286267,0.03232550514248105,0.10382329648636913,0.0034468776321435884,0.002950995614905288,0.0017148146974011581,0.03830603464739964,0.19309418900314362,0.16208004612364804,9.868214105430458e-05,0.00719228302382529,0.06903168129599785,0.3947495451298603,0.15474917586554762,0.00012681995568636077,0.012045813315409111,-0.003310406750827577,0.017856868643408883,-0.12712085346919294,8.768488844014804e-05,0.005726301865503375,-0.06572875666800883,0.2953045389923173,0.10924930010125676,5.594131741082083e-05,0.011742154071921794,-0.03435737585490788,0.06905136909114175,0.012115605674473945,0.00024259234141657069,0.03346777530305996,-0.011179397682026497,0.04266769131196901,-0.05373023133176369,6.515288285305649e-05,0.0018693353883554571,0.005120208927279846,0.04130878310779715,-0.002995092257275911,3.1979860606846115e-05,0.011944970804580958,-0.012188843787707768,0.038762930044303597,0.008391499403976238,0.00010991447206746837,0.004118761351744928,0.0174860158104063,0.06622127844255953,0.002600053361421524,0.0004162184013679307,0.00900247239598182,0.038392279192728765,0.20418616131857228,0.09060051343835888,0.00010769347397296128,0.005784543360408077,0.004079466368796156 +2023-01-19,0.027850618664063215,0.16215141550923537,0.08588928233209099,0.00018163548026634338,0.004804669536251549,-0.0197975000643247,0.06776690309581206,0.024276558883068313,7.009761479467157e-05,0.006723637798526966,0.011579113027353807,0.03655689282007888,-0.005559390443682524,0.00014652212962321733,0.005228983627264044,0.006082658207211293,0.006389262984857881,-0.008274621987330876,0.0003212998372831283,0.0020587425549330155,0.012805670397506153,0.027923747704740383,-0.0030250935596998862,0.00023995311173808447,0.009648676999338312,-0.005275574424160489,0.012908944026393492,-0.015313919849255975,8.923305796725025e-05,0.002633445555031886,0.051157620595247116,0.17347509532614844,0.09517339799425026,8.652927343954176e-05,0.01119595021455563,-0.015751031519317883,0.10694691752667926,-0.03617830191561871,5.0505577737855215e-05,0.002112955657226729,-0.047131804518267977,0.03931389070346038,0.17833341478825823,0.0009245125871956541,0.009777059200023993,-0.035260367271214246,0.0800373873646981,0.0569924099516501,0.00015404791134540987,0.03863050358301137,-0.0334566470045388,0.02040225386235338,0.07406391304565534,0.000801546321416119,0.014393905306814024,-0.0014646397847062496,0.019129285930912378,-0.04003595261678432,2.281680640839877e-05,0.0029507135369535396,-0.025030075558314185,0.06997197805391758,0.02487199528253658,0.00010626470654193241,0.01802022646689759,-0.006394023514386778,0.03381167252089915,-0.08528440847760187,5.323158446970744e-05,0.00361677160493019,-0.005233965418950889,0.0035597006356368724,-0.016815766026879068,0.0028677437726004123,0.011236649169103914,-0.0026056614607881017,0.015910992838686473,-0.10279635173335261,0.00013476366612359022,0.03023686668639424,0.04442617764017301,0.23813131284714403,0.07726158594140707,0.00028888877974269034,0.013211519180900798,0.03396804100575772,0.18269136961891833,0.036332806249825315,5.23737204051491e-05,0.028803025629385012,0.0183595031838781,0.0841464480489332,0.009969048358709709,0.0003595935918886781,0.008237150137505672,0.03934351017554029,0.5146945076991765,0.017755742160837976,3.172150631195979e-05,0.00924531012626758,0.0019440977670324296,0.021930513667736646,-0.014739716063941113,2.9617677948035202e-05,0.003400085373944727,-0.052669200602668456,0.14402978036773426,0.16733835698574345,0.00011779508888011555,0.0002133261381227396,0.03194605576159318,0.20330490490805295,0.00719055474569285,3.6296250617566264e-05,0.01655391044922689,-0.0006891455965245773,0.0018357812197236922,-0.025561262762467677,8.322761415524872e-05,0.019073609537052855,0.012830601433378592,0.05490425389694513,0.007482292279110752,0.00010685371249237309,8.701935388219528e-05,-0.0378698611598534,0.039612028834388295,0.017746419439438586,0.0005464396289571454,0.00858844720474483,-0.010992740227093855,0.03662998255525418,-0.008180077304368224,0.00012631509771718368,0.002250091287820256,-0.01784000219140469,0.06326972116318534,-0.09304002113221665,0.0018097482177355118,0.0009983035602967498,0.0015322414403689322,0.01278451258252813,-0.02910345591371466,3.081947414066174e-05,0.012773768439125862,-0.0005533293853103203,0.0014201429013080255,-0.016651446565304602,0.0012738636852474353,0.005118546086932529,0.010568049294612046,0.06487783669991415,-0.04783384403826686,0.00010847361491211362,0.02320532758059692,0.008336139686734955,0.01156460761203469,-0.061453052055414126,0.000170129438227021,0.0012844834770073148,-0.013196334325253736,0.01834710454028537,0.0022945623834130305,0.0004128475275063637,0.012655853011348136,0.006688078219061399,0.029286515123539497,0.0032011625499574494,0.0017700436968468044,0.01543202558351033,-0.022590787960202415,0.08585742310809201,0.001485499312296781,8.441971858116727e-05,0.007764209344831095,0.017951220965524307,0.025524097761910412,-0.0035740519416760093,0.0017483194342751596,0.012875820227555474,0.005831142818883334,0.022539191441825483,-0.10123600581994788,0.00010250177419634576,0.01995612476618598,-0.07135289740636336,0.17913849665924428,0.1123449657187669,0.0001614667351331204,0.008361222860958998,0.02176198366606637,0.08541950502503375,-0.004073033477137439,6.218066387613437e-05,0.028788225933903712,-0.0009154162067825484,0.0026562741518432052,0.002388335111597338,0.0032663578207233297,0.019871562929179534,0.003501377061784039,0.01905462335182694,-0.0007800881221460779,9.140692188345911e-05,0.019152265778283255,0.00829887104691995,0.042080537070101495,0.003636829963736811,0.00014302057727494223,0.013297544819145192,0.04231611327713766,0.23988471573747072,0.10057446453873126,8.343569579477896e-05,0.0023637469939866364,0.0057826818374436964,0.022967965517419666,-0.00023193368421521343,6.327820710268218e-05,0.002396299073349745,-0.008603939797654982,0.015724717514080205,-0.0005455050358551273,0.0002667742481997933,0.008281958108245079,-0.0032684098069185943,0.01361396733706263,-0.001904982669224511,5.969887904243926e-05,0.002891204025847281,-0.014460709516438505,0.15956399253393755,-0.031213778804244443,2.3382233501062728e-05,0.003269877260277326,0.02267547142950151,0.06715209770816882,0.1017384162967891,0.00011803361426339026,0.0033338301414654976,0.007898066724636095,0.02887031606003206,-0.009001104220787245,0.00043121834751397753,0.00887223287324741,0.012243668333036301,0.05735482734251552,0.005686865903497939,0.00012226815977517148,0.03010670341198974,0.0011360984483198922 +2023-01-20,-0.0032536363718680067,0.02131087616810216,0.0014016192668869214,0.0001614560386266838,0.000756356282048934,0.018070244435424192,0.0643061891863907,-0.006788067124487059,6.742512806449239e-05,0.010864271633353476,0.024915871409736223,0.0836195618606612,-0.14076802526646798,0.000137836868436409,0.005438229352489074,0.014710853344123392,0.013432538470186538,-0.05947433101965562,0.00036961333310538835,0.004694607811250438,-0.030365725905138148,0.06711952548659796,0.047172085951593376,0.00023671869740628896,0.013831189316845637,-0.009164061587634996,0.025048758727838422,-0.02362339469551093,7.988192637272528e-05,0.007627153457868929,-0.003957451408119871,0.014983558079297297,-0.010020780427892824,7.749799926607442e-05,0.003255169680861143,-0.004590895437201033,0.04249752851211958,-0.02396589986422337,3.7045233956739604e-05,0.00566223240913198,0.024263859740253444,0.020981885306439584,0.013411278163068276,0.0008917850032634152,0.0034908459779641483,0.020142690688215913,0.058346571433487315,0.0045939029428918735,0.00012071577559533123,0.005387787757970441,-0.0017217906224358541,0.001121976562313193,-0.0015240617703427127,0.0007501030159447862,0.009670828186914551,0.00616599434259199,0.0887702550048789,-0.01227795043553746,2.069943273722947e-05,0.00019044465562113584,-0.014156734555497314,0.03527105686048636,-0.018570644637777408,0.00011923277555005491,0.018035167923587808,0.0012301172799057103,0.006929227613359349,-0.010324588990506303,4.997162936139157e-05,0.005781642039781246,0.0032585625740672686,0.0033036656419224144,-0.06076168516407259,0.001923769127897444,0.021459658837178666,0.015941578654607946,0.12285461394511166,-0.015534350413965118,0.00010678050304798569,0.004702316678328424,0.041758635668799476,0.2548433219993707,0.033602932246946694,0.00025373552447525554,0.01883574412417559,-0.000860810020058122,0.005043364956291667,-0.03972664282145742,4.807816385206459e-05,0.0028943413057196136,-0.001498546763984807,0.00788659074684077,-0.01167661462699635,0.0003131610948575856,0.015633263897607184,-0.023925981155144025,0.32597721432218846,-0.017921392020617342,3.045879679178584e-05,0.022917382398627142,0.003343253370572709,0.03512840541965393,-0.04797505992249389,3.179746982386934e-05,0.004144505879525697,0.02070174056592721,0.05270277217151304,0.006326975752230003,0.00012653077199056872,0.003869152473700496,0.04305331669656263,0.28482381238254884,-0.05276797943882083,3.491585607966546e-05,0.011025766731619185,-0.0160431401111239,0.04879191682188976,0.014236165397918384,7.289854810310639e-05,0.0026202911014874533,0.023851706947640577,0.09813649743255388,0.06982266157070094,0.00011113158456657718,0.0012220951704618348,-0.0002698732473875525,0.0001989165791345304,-0.0006773663210591124,0.0007754689522618062,0.005908520695900988,0.02423642394945303,0.08364331909920882,-0.15209737034240667,0.0001219616501503447,0.012549196856029923,0.0352758377456673,0.11920166737039066,-0.007856296508002712,0.001899390146938347,0.00866717762741942,0.021251852851219444,0.2013119703871365,-0.006564649682603433,2.714622196481922e-05,0.023506201561066253,-0.019455343769355826,0.04519715770150352,0.007058274998458744,0.001407340074336396,0.012966883620426134,0.024186257288211836,0.14550626779263562,-0.00759883778843663,0.0001106910763342133,0.010437191583386414,-0.007144744181757223,0.008462557018134666,0.0006126331129064366,0.0001992647423033447,0.00032634184449354146,-0.049073930122793936,0.06882974740240232,0.15120082341018004,0.00040924047327269795,0.0026542688501675757,-0.01868167277597574,0.06618165170422319,-0.020372793660590482,0.0021879051989415715,0.006738075999653202,0.015107731550163827,0.07078482537876088,-0.0023313803708697447,6.847774723944289e-05,0.0033324059240901448,0.027990640520262115,0.03813726936313025,-0.01379748757308733,0.001824485575961553,0.01717963364403504,0.048790324613628824,0.15438961201582715,0.03573167442586954,0.00012520788175002432,0.01912765425842983,-0.01107059153788802,0.026133738984703878,0.004824547987585516,0.0001717234694186466,0.034253358862390317,0.03181730530563939,0.16281413915967924,0.009659383307411767,4.7696356302540395e-05,0.016034209757972696,0.07830165139349615,0.26657834420321663,0.03386033791121222,0.0027839671943572296,0.028947919338974542,-0.01593120621666594,0.08026689954823922,-0.014721018684984702,9.873081955295873e-05,0.003281822989829077,-0.03437253249978943,0.18910683803901368,0.014608157020567314,0.00013181507545908584,0.013236530654136927,-0.04817012553242798,0.24854337060563775,0.06960215164595256,9.166937980880877e-05,0.006875308699403611,-0.02626594275730359,0.12385128569986276,0.02018487006358558,5.330155375193888e-05,0.0013263233438251718,0.011093920674720195,0.0190896980924179,-0.0038371070672584408,0.00028334489361972774,0.013708668944948927,0.006259879793826074,0.02809155627258597,-0.019684162134923158,5.541209495818362e-05,0.009269269648860497,0.017469437086746326,0.16852694289575787,-0.07810825733641566,2.6744892328765996e-05,0.0009008156029955,0.014649719403256297,0.047750256440056225,-0.08045331956479089,0.00010724142167100531,0.006926972111866404,-0.0075445596922009495,0.026938034602147862,0.006790485109478347,0.00044146468052837435,0.006423067920738078,-0.014347442286667953,0.06631320995942205,-0.020644822333225017,0.0001239213772679184,0.008623097173377618,0.004306908368425777 +2023-01-23,0.01303760047430381,0.09007649650068345,0.01735785485258771,0.0001530638969737835,0.007660820610394789,-0.007255197187462883,0.02049921838005505,-0.12461767557603913,8.492243632436716e-05,0.003178202232170688,-0.0012779184824521434,0.004755680119796009,-0.06769498985599148,0.00012430474894772545,0.002030879785627993,0.01287061106276788,0.013468263118724174,-0.003164364548328563,0.0003225190935988103,0.012576902232779942,-0.029324032114149905,0.06461947698114344,0.0022083470496962933,0.00023744226157667336,0.002446938035039461,-0.028491214017259535,0.09215088953569224,0.09967498338544781,6.750845409506934e-05,0.004896860690571102,0.03164818261999293,0.11086447468787476,-0.019863145310214714,8.37618436049861e-05,0.017701429295561778,-0.052201716841795254,0.3967500345059639,0.2715789606722889,4.511972332375327e-05,0.013625755189811245,0.02190198336423331,0.014655012900708125,0.028220704574094257,0.0011525028985169797,0.008107299130495309,0.008996984072431978,0.021497997834390516,-0.010206935751209316,0.00014633924943329202,0.021419617699727903,-0.018733180579424743,0.016610027790969532,-0.009431944748361239,0.0005512714721891476,0.0009810691817893158,0.012694441343705043,0.15862710743392508,0.013551193462991086,2.384838519349206e-05,0.0047721606455184825,-0.005865153689199187,0.017838091205574277,-0.035027037497195934,9.767469291419122e-05,0.010561916758870745,0.0025106976058385188,0.014894930674440728,-0.04685077278808462,4.7447981375781876e-05,0.0036191601093051255,-0.0035598122716819893,0.003216442871106626,-0.09441907768025906,0.0021586102073037727,0.0020125213511909762,-0.02624522561441464,0.1692209725898388,0.010052117538310477,0.00012762866644698299,0.031121647966704184,0.03213331958958984,0.2017474831826516,0.013521569669749402,0.0002466355635688438,0.004312048599523907,0.021683029019989933,0.13659363663337093,-0.02258092503160936,4.471471214886557e-05,0.0020335899560992056,-0.05109140553676562,0.3128082017172075,-0.0051906690697645225,0.000269188514754833,0.005358949719431213,0.018341033089409625,0.21937214145453235,-0.0026924670367384053,3.4695452097222274e-05,0.034261685663546045,-0.022085084707771915,0.2292961892932311,0.07852511543887479,3.217984450497973e-05,0.006936473145658291,-0.009682023728495423,0.025641308360379447,-0.018413568619199894,0.00012163224339384408,0.008582386912782873,0.008659807137862206,0.05604291020565806,-0.0002760475139128149,3.569274232807762e-05,0.028781171428487795,0.0028110310773953586,0.008918195076849164,-0.004842028506775748,6.988211835596964e-05,0.015708646650778233,0.024823518024706084,0.11856541578883663,0.06523496249511804,9.573128695088492e-05,0.005912962316461075,-0.03413298402520485,0.03483299452653015,-0.039492583476438935,0.0005600915328965186,0.020924616581167232,0.021766548478223315,0.06883455518580564,-0.01670962460840217,0.00013309724534904898,0.012216983966185696,-0.020639574555838956,0.06743148546529652,-0.06950303542838027,0.001964523320682863,0.03639955747127807,-0.003736036927876349,0.040509150358074716,-0.017917882613075847,2.3715933351366195e-05,0.005516872749845129,-0.006935712476317661,0.019723194373766805,-0.06462656860600492,0.001149701494636871,0.006256032156837625,0.00789765739696665,0.07260420608509548,-0.0059431950571474145,7.243728301112576e-05,0.02611987349781527,0.045269636537347405,0.07377761131703156,0.1248863280672966,0.0001448197534766967,0.0007758438556169766,0.027527703636639454,0.0452619422184099,0.02692426570489342,0.00034909265557983235,0.009205160480618918,0.01472815742335308,0.05870209319933745,-0.120677543535411,0.00194466667122735,0.010684991943137994,0.015224907053651102,0.05202204703557994,0.00198134607259472,9.389826830768397e-05,0.0022790733875817384,-0.024698559382863167,0.0342874322515556,-0.042893073694547784,0.0017906629661850432,0.012641508961275104,0.0048749192434994985,0.016873131162699062,-0.002958878763641035,0.00011446897123336636,0.0008536620865830236,0.038854662328761815,0.0964740215294679,-0.05610345092737777,0.0001632650150168626,0.022490479863339585,-0.02979416532162364,0.1200498606215107,0.03810389678557437,6.0573614331961974e-05,0.012660202471137026,-0.0018127671789096949,0.006032256707670745,0.0040547233824858135,0.002848264207679674,0.022907102622935504,0.02666241058178251,0.1265661971162059,0.0035470104714106117,0.00010479058176651112,0.008588633546363515,-0.0030568924311489033,0.01903251261244707,-0.027142552677646863,0.0001164782440184006,0.01742354567208121,0.012108807765392965,0.08682545165178372,-0.038526326575355374,6.596339991933864e-05,0.002624313280217998,-0.0455669792463702,0.17957872420207807,0.04495091330490725,6.377386705391588e-05,0.028274459791775588,-0.03186298136789231,0.05839077949639729,-0.07201194533168977,0.0002660550647094248,0.014919484998408583,0.008755015004170351,0.0396620196841408,-0.0013174356719464436,5.489040622410935e-05,0.0009627419754937583,-0.014906972998747391,0.14719229903516337,0.009318451307791359,2.6129774487690662e-05,0.01143741586154816,0.013087619014952851,0.04097097835409554,0.01665110158736657,0.0001116588816944851,0.005644454564793503,-0.007251510478320405,0.025928140001007453,-0.04374560633845141,0.00044084415472507246,0.009518127790846598,0.06333037467644415,0.325978443265721,0.17586044285989727,0.00011127432589597306,0.012914027256880258,0.0008773479577371669 +2023-01-24,-0.015996131522921796,0.13709207669853277,-0.0028175202172883245,0.00012339262263059677,0.005312087666221497,0.04553722640528888,0.1625273640515964,-0.02478425884702104,6.722806475499027e-05,0.00847851152269596,-0.08735447571384114,0.3391513665404962,0.40308410896749375,0.00011914855911023864,0.030370868471478754,-0.05049158234061078,0.053229681612591555,0.2667420512836608,0.00032013486088463205,0.004259976648976188,0.028684724093353355,0.06294628976631785,2.739795691374599e-05,0.0002384395604694899,0.0006267327020195196,-0.014126901662861421,0.03904467249881214,0.01767006816490245,7.900087063585612e-05,0.00017102409213797074,0.008656804812938282,0.029823843778299993,0.0005241152549119889,8.516945435399121e-05,0.014303423242699707,0.01361232869822225,0.112482189827393,0.009980807863334978,4.1499921889896185e-05,0.004157782849919246,-0.004053702230001022,0.0029741222942179634,-0.027742896489399045,0.0010510849265806604,0.007196430632503218,0.06001446017860377,0.15742517722522897,-0.0015822899576611214,0.00013330412837141826,0.00862441045110685,0.02051323848806057,0.011732006747821253,0.029736103512330893,0.0008546460373882945,0.0011485322087671464,0.016220164091153174,0.2605563417140237,0.016866111372277885,1.855138698102033e-05,0.004083521730525903,0.024991245690054488,0.061676840783962524,-0.006835555127842566,0.00012036960124408224,0.006607466162293171,-0.013436022088093616,0.07482808303516242,-0.05093895274702217,5.054380208112238e-05,0.006882083532961695,-0.003156716003795708,0.0022798839544840273,-0.004761865504629428,0.0027005097059493396,0.004990533603078647,-0.03408361803593978,0.18422357665123182,-0.06431473599852809,0.00015224834755821909,0.007929378606868261,0.015338877319795758,0.08163697488811684,0.003827669757232064,0.00029094768276043446,0.019617584294209154,0.04940054359860956,0.2889838886443723,0.06990803885277151,4.815252363910613e-05,2.8226322779763323e-05,-0.03318436392643695,0.18462642717080097,0.013440138926865445,0.0002962282272334552,0.03032878898745046,0.06549225810988157,0.8154800205108378,0.002021407671910766,3.33278172224756e-05,0.051142471719356694,-0.009658280604491412,0.09939819567720035,0.013384921067229525,3.246407455309788e-05,0.0020677458961986857,0.0032047279938664805,0.009470093524564339,-0.003199625720135629,0.0001090083238440599,0.012557661063425297,-0.06434668733710897,0.4394734883530584,-0.01846666288384455,3.382095673055194e-05,0.011555815122018783,-0.008852729204041477,0.025822715726907093,-0.001873481509389245,7.600683488990204e-05,0.007529082380903919,0.004393405419449761,0.016001037816049394,-0.11150988285794876,0.00012554566615026477,0.0017775238036609549,0.019144778427542395,0.021399090674532766,-0.010769580874517102,0.0005113645137751905,0.009718723948364564,0.004345252450361736,0.013657947481432281,-0.043446660699869806,0.00013391079359809148,0.006281164467031506,-0.04255594053929047,0.1543947291366573,-0.016786828327978134,0.0017690776597327742,0.009067634969662806,-0.021163409209981054,0.19081746057985194,0.003753856634559672,2.852001258350664e-05,0.014385297993674268,0.02010385109649845,0.06453405136778831,-0.0241579089969552,0.0010185013248084835,0.02309676892012864,0.010742941816665795,0.0910466901466782,-0.003982102848810737,7.857505695803974e-05,0.004042984129871032,0.01650157550188252,0.024783628637417697,-0.2521410432258584,0.00015714693111159778,0.002110663946462363,-0.0050823022070187705,0.007145381252379088,-0.0177884414053606,0.000408262032568022,0.027779634827132027,-0.01876923521810129,0.07511122402786932,0.005110207446992114,0.0019368325660027244,0.022016312152206483,-0.013634794459044027,0.0520066417404103,-0.024149621327494625,8.411629882296276e-05,0.001932372274476642,-0.02445308024215611,0.04162944331709376,0.004102743279361712,0.001460192661240415,0.013986517190399487,0.0017024139798838664,0.005405179657766017,-0.009991458564940865,0.0001247874987680115,0.0033418922197594953,0.00720482050912108,0.01767568536289973,-0.0009035515085794132,0.00016523699172797443,0.014297889145176934,0.03542706709272195,0.1214646505722722,0.015026904809750741,7.118675882412464e-05,0.008354540842710874,-0.07234613273619776,0.2234405189738698,0.03945476047189811,0.0030688202228189186,0.019599827278810975,0.01351007966206304,0.0663514608710068,-0.00692852218030805,0.00010128566674212552,0.0033281131416157098,-0.015006529716182741,0.0847631278170613,-0.059076621777454846,0.00012839085259932288,0.038510717190110524,-0.01874671087855907,0.1034229663836217,-0.07591230999933564,8.573473112382366e-05,0.02345303334078297,0.011021479952491548,0.05671524598615518,0.0015169656783243595,4.8841330916784665e-05,0.0020397154787607672,0.03619541454567832,0.07073008899465236,0.014456124135022745,0.0002495047077743093,0.023726376063046065,-0.01602578653151787,0.06496253411731177,0.02112029199088033,6.134381358936058e-05,0.008772248396361638,-0.032377019962188225,0.4021199811057525,0.03385436439008989,2.0773635400481084e-05,0.000661776891494444,-0.008879781526348442,0.029822617493941675,0.009579415224716125,0.00010407956945557858,5.290459884053843e-05,-0.008253669292424513,0.03482557996440045,0.0006019317383761238,0.0003735740294997273,0.011292516962875827,-0.004677922783130515,0.019419477689652135,-0.005139495930590903,0.00013797083730813172,0.0008077461136161491,-0.0009626367337998861 +2023-01-25,-0.0024738644077754862,0.02083873836854347,-0.019729189757682147,0.00012554258133604573,0.005925294859986582,0.01267986704215272,0.043482341758328484,-0.024745340298043136,6.997006882666278e-05,0.007346675620885571,0.04887474982343514,0.13192671979566184,0.047719418142298825,0.00017137559969531544,0.006958210774482896,-0.0011007689820571995,0.0011079887156128993,-0.0007483121279755825,0.00033529625468994444,0.005462847779514755,0.013626323950865368,0.03022453847160513,-0.07225568449425383,0.00023589395074136531,0.024183628809135778,0.001036375677348201,0.002832102456251823,-0.01864673417767682,7.990151080017355e-05,0.00627011994534281,-0.025125180391338157,0.09399303392912478,0.003883130739862159,7.84338215320637e-05,0.00968502876521318,-0.0043581787716591375,0.03999952703919797,-0.0017489647458851375,3.736360733035686e-05,0.009112400121194903,-0.03794343756352329,0.028937943605110233,0.08879962991686434,0.0010111458292234679,0.0027208447512567947,-0.019121181712367288,0.03912496181443,0.01466020442088583,0.00017089237614708566,0.0247834609864995,-0.02416572451637378,0.015726016998097787,0.0019212754535758792,0.0007511132752586883,0.0003990946173687195,0.008798299154072322,0.10172590036259384,-0.027615909571202676,2.5774483521397357e-05,0.00694228290272789,0.0042244940883838025,0.011238265248099557,-0.007671917139585358,0.00011166741593774447,0.02547409983326336,-0.0329671472886377,0.18921496657253906,0.15051173869366277,4.904420526254717e-05,0.009255080285164556,0.04726812295269533,0.040788425984926,0.09395116809474767,0.0022602390960695983,0.00017017204264358214,-0.013515816334981752,0.08354648334504117,0.004735319110813105,0.0001331270213901031,0.013823053679567925,0.015767333699226692,0.08460678123193807,0.0038973408410535584,0.0002885767366425295,0.008005533568772788,0.006962871592320774,0.036416600909088284,-0.06828119826683024,5.385796445566163e-05,0.003130502505228952,0.005515311596686439,0.032873927629214636,-0.013489024310482534,0.0002765064499549999,0.031436643247309486,-0.0019070270222495006,0.027382987092964713,-0.07211182849348834,2.8900559897199467e-05,0.007293267536917992,0.013156747086083042,0.13615944494978588,0.013746419633527983,3.228363756265344e-05,0.003533054345427246,-0.018009139970763057,0.048169609616764995,0.002082115104906352,0.000120432195217393,0.012765411359284997,0.04606767475358637,0.36512869672151355,0.01554297143039421,2.9143566685678734e-05,0.004136501120603672,0.026106105278482297,0.06497131287247424,-0.17429530759798118,8.90836134450872e-05,0.013001959579109042,-0.008840181760295706,0.03601704933110133,0.03399171933726062,0.00011222811264891099,0.009769636539630196,0.023385336540246934,0.02233768891823069,0.011162586657426575,0.0005983853427947313,0.028734997316830355,-0.01729193235286443,0.059400600522657665,0.03407975103346147,0.00012252894703050372,0.006019225011076322,0.07467717136741024,0.25336030422542877,0.18835309654268803,0.0018917705579617004,0.016992454547828578,0.020454254964201172,0.21862123868402383,-0.09189444187786153,2.4058774956218174e-05,0.0037823717322971497,-0.036116482566958964,0.10693099622750325,0.010969272338072173,0.0011042644830429357,0.021857864777329587,-0.01413241454167217,0.11741899834295742,0.0319515941953084,8.015002090386806e-05,0.024809286967031777,0.030950619113861263,0.04418714394030753,0.042188613939945524,0.0001653174871893249,0.006982519272415823,0.03968342918094317,0.06070272126026491,0.0385139998562189,0.0003752363882906489,0.005975405104082596,0.032826769618433865,0.15991485677208434,0.01892405985308317,0.0015910714210513911,0.006825990582253516,-0.010241066612457873,0.03774551626852827,0.0019303048018227064,8.705028384162878e-05,0.027014721992303484,0.030793225916820245,0.04145237806863968,0.020230615362764746,0.001846642938045933,0.007393634916122342,-0.006182417195369735,0.0196307242068193,-0.0043852261192540015,0.00012477800082752506,0.011609310131654137,0.0037890220753024214,0.010410386688671638,-0.009960820500948268,0.00014754369319403004,0.0024946731008598086,0.015016619220600382,0.06556326469179613,-0.015499884128200301,5.5901765300102145e-05,0.019229684803745244,-0.026954186009998223,0.08811098463637053,-0.006254001135911098,0.002899440657720202,0.015251988234321895,-0.012538068604958534,0.06438213684148399,-0.008894356955463156,9.687368622019436e-05,0.012827950489431,-0.04888838425958489,0.25910533083417026,0.034474066591435835,0.0001368327705115831,0.004021980667357429,-0.0021737390108950787,0.014458767257801042,-0.00037374144974455103,7.110904257502861e-05,0.0010609911559572652,0.0029202576056554957,0.012474003494330699,-0.007938228741160826,5.883864966835709e-05,0.037313111439304915,0.0017903869715255388,0.003569488341504123,0.0015061433143351275,0.00024455150233069047,0.012460895164953639,-0.013970484487021316,0.05671610159233372,0.0017791862059643015,6.125188684289666e-05,0.005640401162482563,-0.00635223414365333,0.0728484708372106,-0.001165223772147648,2.2497659701425616e-05,0.005919806834956692,0.016722655691195035,0.046570070978244595,-0.058408553513771555,0.00012551837632997548,0.009534352531134263,0.009149221575513468,0.03149434264964391,-0.04710007742250537,0.00045790940984303586,0.010047843262863738,-0.017693627214749347,0.09214031472729332,-0.002299196452136529,0.00010998639754632637,0.0043193173378104285,0.0028250847969645883 +2023-01-26,-0.03725923993579792,0.25309034434747285,0.04025720740918839,0.00015568436461153105,0.0002675769917670184,0.027008223963978555,0.08466031225318305,-0.003811086934784458,7.654673778117453e-05,0.012443786093913821,-0.009359975929714137,0.030207702843360457,0.0007788853052037937,0.00014333565519865216,0.015878895872541498,-0.018767843557381893,0.02090735276385722,0.021599210961628205,0.00030295852935167006,0.015968548768544533,-0.00328006839934979,0.007710822193585912,-0.017166295107995916,0.00022257684587904388,0.002575078844031461,-0.009916608879275788,0.027064199427914777,-0.011209996761092765,8.000455969506958e-05,0.00799332970355471,-0.004727366216960248,0.01947822594549657,-0.009466414980398671,7.121306910700515e-05,0.005148716626878474,-0.055863769878355216,0.492137522966922,0.15364562830917483,3.8926232787465905e-05,0.0038585886929705365,-0.0020087815044279506,0.0016626729876825096,-0.042896323014362546,0.0009316883102384189,0.0017154633947239783,0.019198335435921258,0.05733615221338573,-0.012144944913562892,0.00011708382918480947,0.009384567500236661,0.0007544478954158333,0.00047163658826825247,0.0009616608707447903,0.0007818908313847254,0.02562017124547316,0.014435276448066236,0.18728959998732206,-0.0035335543113420246,2.2968584567709354e-05,0.0011778945534330093,0.021617513803864945,0.0745814113238073,0.00026777587272789526,8.610456667142795e-05,0.004179203779640379,-0.004588098491615178,0.02449771730799257,-0.00023087470096056883,5.2719214620414486e-05,0.000304506908728822,0.020013423300976576,0.01731758587245025,-0.007779985510353243,0.002254016048588129,0.012659321593756533,0.006313432678934246,0.03585394499765894,-0.05681336350328782,0.0001449041133192852,0.006412144093517061,0.024351243883327697,0.15284736422504233,-0.04678365668275321,0.0002467012944482941,0.012726533167681645,-0.03670270638599343,0.21604102413088752,0.03391524185924053,4.7854503873806245e-05,0.006048896392022453,0.008699617763250232,0.03870939521665755,-0.027757595221792976,0.00037039967139246337,0.013776655303988482,-0.00989375754500666,0.13874087094485843,-0.1593458613156476,2.9592869448564933e-05,0.012397108797659326,0.03144171304569916,0.32001419160217204,0.058834012540392916,3.282605331539316e-05,0.0027843449752092474,-0.0014376136546609905,0.004436234714746472,-0.03666343799346656,0.0001043879644396635,0.011826640048392638,-0.009293973729115564,0.07279300686934678,-0.01617569573358938,2.949199539568518e-05,0.026626154327792494,0.016642064405889466,0.05620760611646472,0.026890841292898322,6.564316185067603e-05,0.015978500798456963,-0.005151459206442357,0.020895951650641585,0.014713330405592277,0.00011272408167842782,0.00822212202581432,-0.08982973507488722,0.08247046708975043,0.07320617162936145,0.0006225829542963537,0.005860707252008173,0.009867502230236866,0.03231746557556932,0.0010723300121622938,0.00012851562937662848,0.0058977562870303705,0.0018515830788743423,0.005440460530795347,-0.0027279690265779523,0.002184372568369648,0.0052407960286247135,-0.01016261182181283,0.08032307567158291,-0.0020323260519827706,3.253472968654374e-05,0.009607725023426212,0.05315098820814142,0.15083043873004476,0.04408979244299863,0.0011521091320135267,0.021968180500852627,-0.014298235453038778,0.12354286806340477,-0.02183641206330587,7.707089606791123e-05,0.0016688845032290687,-0.012918419196354461,0.02152660983495231,0.02574789706975359,0.00014163778288984392,0.0030977149288697408,0.03444945057786286,0.05217771206324218,0.031439435577607665,0.00037896681509681877,0.0027157623005511495,0.010081339657841932,0.046772211858597784,0.001232253565102117,0.0016706315548811854,0.0009001616427807674,0.014899659509458709,0.06005479410445033,-0.02446675423610456,7.960109316980852e-05,0.004516885339808711,0.014473809524562382,0.01953084957692641,0.003198206768915884,0.0018422090421923998,0.0015393255207040923,-0.008907485152150094,0.028191755808364725,-0.10287201660632654,0.00012518405597714637,0.007180987936259503,0.020596470176283507,0.05052580377325939,-0.00460454968214934,0.00016524941943349032,0.035111676047644445,-0.019546507271605614,0.08627001747025721,0.019896046786802558,5.529975464860501e-05,0.0037105047219606314,0.1138418609511328,0.37031269723162197,0.035703339822338274,0.0029137443277578714,0.04735721081386587,0.03921266709409102,0.20720097020583508,0.11364685708182591,9.414021122456105e-05,0.006515935236092935,-0.008128682550972693,0.04636098773335983,-0.007328151443292573,0.00012715348497360047,0.0049444211843645836,-0.01840279508350181,0.10308891148755246,0.013239639994757987,8.443461647384792e-05,0.016651669224478555,0.025880213722199827,0.12176428389614627,0.008741736885655844,5.341894841057225e-05,0.018195838494837222,0.07941173429481585,0.1494529743121773,0.10182090372569512,0.0002590654588128044,0.02100216941703379,-0.019553501623292717,0.08598128107515263,0.03079549815707576,5.6550312090234887e-05,0.001160018699768235,0.009974547174362766,0.10410180248211469,-0.17226899776810578,2.4721010832200343e-05,0.015225601339747265,0.01737324761472011,0.05554207348112821,0.022466773669552104,0.0001093371842635443,0.00112590930783252,-0.015996017210291914,0.05780231196567358,-0.015122983389655191,0.0004362090022208079,0.00351664322883909,0.003981858121528258,0.019920255923619436,-0.024548270612496717,0.00011448871048566958,0.012791099564894354,0.0047130210596820635 +2023-01-27,-0.0540184699635236,0.3852605259926258,0.10468908399965647,0.00014827719084774808,0.011904082839352058,-0.062315053976829994,0.23757559507268444,0.17749115334363708,6.293636797271101e-05,0.007046661058728912,-0.024853643520660083,0.08997947498784423,0.02749038605218128,0.00012777438949636437,0.009887850564861075,-0.014379193897137604,0.01609580544119353,0.01071555975110806,0.00030150164255132766,0.0002802395817278439,0.04669125333301559,0.09687304843105517,0.06091943699148699,0.0002521914378100031,0.017968702905636912,-0.01622124393618094,0.04661927185178209,-0.012352596380242256,7.59740728972593e-05,0.009396952283409404,-0.006718543217575578,0.026360988683746835,-0.0029867360646428525,7.478306755253985e-05,0.04518760576678873,-0.026461698349750186,0.24298186173808292,0.017395670026290617,3.734586075140684e-05,0.004735462966789261,0.020661895790353883,0.018181160976698113,0.013295746643685064,0.0008763817827649286,3.213288257147948e-05,-0.006369180881113124,0.013610161364646071,-0.0017322019833917388,0.00016363725847376247,0.0008184253931813508,0.01064325722461103,0.009076378929731458,-0.023488339351569312,0.0005731737566222819,0.0007150666228968507,0.006127265418236276,0.07811319319220664,-0.09065299271128656,2.337572508627529e-05,0.001186789625253022,0.034292754626340814,0.1058324849033661,0.002546752826518484,9.625746421817728e-05,0.021615501917273856,-0.0006294398980380595,0.003576843163887397,-0.02272653068209029,4.953545864416329e-05,0.007037694075282053,0.009753755795531744,0.008367434492646658,-0.02395670439778245,0.0022735396339118854,0.015016108220256962,0.050910198806546826,0.3386709556022813,0.019268592427705872,0.00012370263411797008,0.04482633303989387,0.042666231487017724,0.2733854119546688,0.03415534321189991,0.0002416669052762703,0.005591140691674635,-0.0070181059892660295,0.04700101557601607,-0.00351397726908351,4.206042306058859e-05,0.002022207793671335,0.009148949298107535,0.052545140522496855,-0.019815811248263007,0.0002869627135682136,0.006924736276062305,-0.010479813711028432,0.13664433026603934,0.0027964783467133393,3.182674156105766e-05,0.030977168070062514,0.022223038718560944,0.2125040473055776,-0.023190666652614943,3.493960139395097e-05,0.008438744781228337,0.0699027336109919,0.2177409719120857,0.19437937139533223,0.00010341338601655758,0.017198867050137446,-0.06889623422248026,0.4578646301636606,0.049346960838758586,3.475767875027005e-05,0.031321771253800444,-0.002065471371859141,0.00635343361508089,0.001121244621365195,7.207556669255023e-05,0.002313751285750535,-0.00014502242932136586,0.0005560458075710533,0.00350594106428449,0.00011925406750582106,0.0007993450981300506,0.03628496158110673,0.03695667025914013,0.011076500540480275,0.000561189315567268,0.003421751228889624,0.005317854221571059,0.01953412829902399,-0.004757497464404253,0.00011458516675172236,0.0031796909990142886,-0.036062096678719305,0.13859558190227284,0.011918358465691118,0.0016700164990621417,0.011558096559892877,0.0323026731196447,0.27954360907661674,0.010478384760382908,2.971468221854282e-05,0.009910605537235263,0.05135465145577443,0.1405061479992018,0.03343521411988135,0.0011949664938528258,0.027651250300082208,0.01119981681600591,0.08735953698951693,-0.030321376643297714,8.537411978072879e-05,0.004798813500239335,0.001921262962471423,0.002964554928115662,-0.007968640779207297,0.00015295817577260705,0.005803007008494788,0.00712730623636503,0.010395144915882655,-0.026426924512854815,0.0003935489745258449,0.01255027346772253,-0.018731736298963443,0.09578917596614121,0.0041307514144441025,0.0015156954231256479,0.005308871728467928,-0.008878045934842616,0.03190772774485162,0.004065969889822573,8.927130436267134e-05,0.0008958718971120504,-0.033746848587667654,0.053275180750250145,0.030949252057413137,0.0015746552406475825,0.012131917052485626,-0.008424458898600039,0.02889706652520575,-0.08376826770260241,0.00011550593354785303,0.007896168737778365,-0.03743486630639546,0.1063275606712728,0.0278045753469777,0.0001427219635285094,0.009399028646852372,-0.01513782024236341,0.057894327696839366,-0.011437117064861385,6.38177155352368e-05,0.007836901255442548,-0.005206595307797218,0.015636768295778203,0.0023721225457294984,0.0031559119633909013,0.042026748704983144,0.00795126458149586,0.034647084870630444,0.004906892359766324,0.00011415897896939357,0.005406455670188128,0.014516344547886348,0.0757443170101867,-0.002771530690633842,0.00013898502137639441,0.0034330504151178893,-0.015129982110824438,0.08836608189168121,0.007531964944730298,8.09844270982421e-05,0.019619731422375365,0.036042163549272414,0.18073891679524937,0.006852021338165447,5.01194818869731e-05,0.03958915959279737,-0.022248578507836743,0.040177666907524945,0.003351732110034489,0.0002699895460522326,0.013553029201511312,0.011427308801237327,0.04983372978556853,-0.0713485755013084,5.7021015359322025e-05,0.01332860976105913,0.012596159365450343,0.1354164356769854,0.006948179198299378,2.399927121236412e-05,0.005744986093873523,-0.02442074287721557,0.07770878848916571,0.07985128358183735,0.00010984940208276628,0.0029655434589196793,0.027911305080134893,0.12578202069043637,0.02379122395507137,0.0003497756298230464,0.009333140550589477,0.006615726813551226,0.02707921523468181,-0.01535414984164554,0.00013993078973279592,0.014043874222015347,0.000632772831671149 +2023-01-30,0.022131860652979347,0.17010046821362837,0.023586866161152457,0.00013759384342236673,0.006817589040051614,-0.002425493007972243,0.007609637918737782,0.005427190883788651,7.647976783399804e-05,0.014141995592576456,-0.033720032273599966,0.10734887597302994,0.03984051080533111,0.0001453073841939299,0.019915196628431858,0.026266897526968147,0.02783688290895808,0.04254534912116591,0.00031846083791207356,0.009631277657029065,0.046434620667081525,0.10854309748326499,0.05959655941243175,0.00022383987959235556,0.0207730685891441,0.0008681171041928601,0.0021938446953990273,0.000156002290313714,8.640108031551925e-05,0.003850153195860403,-0.045056608055906514,0.1725004284832092,0.05513672613341817,7.664047207432714e-05,0.008241239071907951,-0.007162032321259487,0.060587951902734,-0.0037734440843366713,4.053672130213659e-05,0.0005328424555199754,0.008643094035534926,0.006439686676072907,0.0027040368106031835,0.001035021300348672,0.008395200643379334,0.023984977408608926,0.05762726094131027,-0.027464881009886217,0.00014553693428861737,0.004321911877830485,0.007635409808071562,0.005829811457375565,0.0063111827011505025,0.000640180144742015,0.0028459311231971095,-0.006355923434071388,0.07971513210113086,0.015847906770620354,2.3760779067793953e-05,0.007396239714626624,-0.00889424591756556,0.019924050978784948,-0.02779716284461399,0.0001326119089281293,0.013253189057610141,-0.023540474054553225,0.14280549677717966,0.048571367561147334,4.6401508367812675e-05,0.002386607374901162,-0.011054929622979286,0.009808311589434435,0.0045088531336131095,0.0021982885644921,0.004670543378546839,-0.006299388400656846,0.04048847460744932,-0.019610768863824287,0.00012803216194937845,0.02967167749019615,-0.024288988505915737,0.14259414225642858,-0.19916302137198966,0.0002637642768575772,0.01533973320820097,0.0663011299021711,0.3339519739696452,0.12394178111989279,5.592395412697618e-05,0.022642326065896643,0.025505009721513573,0.13644343261946806,-0.0188407047082215,0.0003080772749011218,0.020097864512185426,-0.014583325622339135,0.1930030735130881,0.0008827178600157021,3.135613887164484e-05,0.03137792531139703,0.026106079408681277,0.2667907550171505,0.0428333766238326,3.26928353828222e-05,0.0021135114405792634,-0.06887507110853423,0.19715284419990403,0.14860202202067227,0.00011253348519375865,0.00268527820473536,0.02171725172581788,0.1589734305299849,-0.04880187148625442,3.155532774741531e-05,0.018722648227064896,-0.00139065884147074,0.004055164131195776,-0.1496091265449213,7.603079765399844e-05,0.012460744425311851,-0.0027114229608702295,0.011720986700936355,-0.015727604391628697,0.00010577467311125258,0.013978638302753891,-0.0009091784098922685,0.000897666040047108,-0.08986183545678708,0.0005789084381984211,0.017900864658257465,-0.03467589615769741,0.11807665319220792,0.12535040353225363,0.00012360887902373896,0.012259531469213913,0.05252364059810944,0.18925226265268766,0.05762096753693289,0.0017812829670078587,0.007086433396943065,-0.036180696571245195,0.292728514479028,-0.004069992795177926,3.178294163372133e-05,0.013814279769722937,0.029002681568569708,0.09329269878520967,0.0004908511195712543,0.00101639323907448,0.01782823382658588,0.021838732154294462,0.14928132568787292,-0.06008826936892542,9.741987812449923e-05,0.0008867966536243185,-0.035237984309519285,0.051389160916401506,0.13354768973771516,0.00016183964516038727,0.002357540669630449,0.05101824328160816,0.07467783569206342,0.07930317599256645,0.00039213688212903655,0.003859268857483451,0.018924412166372067,0.06314730876454627,-0.008169963046335849,0.002322832495684225,0.0022409416383701074,-0.010170938298509244,0.03970759944702383,0.003371513703044223,8.218219901521186e-05,0.007128327364791893,0.08600252700302378,0.11099559611235214,0.14143771738757394,0.0019261169633840894,0.012457132890111097,-0.007728512084477458,0.02207806774416082,-0.055103156305073404,0.00013869182573859022,0.0035909833382949683,0.028768519865537193,0.06738678947142993,-0.025806145248110403,0.00017306256195062525,0.0005928141204452521,0.03290758013848001,0.12291560280449498,-0.04124867025431301,6.534356986352865e-05,0.0033917562698148585,0.03638207032894891,0.11851432937588563,-0.0007006309218319335,0.0029096088139135353,0.00453403232954352,-0.049023657120785984,0.257457891458103,0.0757293970604983,9.47196465260219e-05,0.0027972613749928984,-0.00517701384415032,0.027652752516238128,-0.01612395426130016,0.00013576935159056235,0.005361761674936851,0.026887837213412088,0.15543686610733895,0.023046908501151278,8.181831615644553e-05,0.005506553902877675,0.0022998272882436836,0.011023390626165015,-0.011379571353861735,5.24357422762487e-05,0.006129085301666492,-0.07275675245403981,0.14370601449213416,0.07120017032463578,0.00024684694398909664,0.0017513436378809818,-0.03165406487391553,0.12639150267626087,-0.04463970951038428,6.227675667237486e-05,0.006136401010336243,0.01046280403598166,0.11464215714340899,-0.027960444151926576,2.3546969833240048e-05,0.009609445369488103,0.0017942554555683496,0.005614416310913155,-0.0012582442859997692,0.00011170911916407402,0.004050889631712365,-0.019110073511140857,0.07352025954026285,0.01569417778395941,0.00040971635184642853,0.0025172970747455977,0.038747549808225056,0.18296826528226592,0.05461090246497098,0.00012129426596850908,0.007683558445984612,0.0030655678275102634 +2023-01-31,-0.022527325264619744,0.15400164364884456,0.004193236377167364,0.00015469306969539853,0.01144601248923064,0.01186972348522999,0.037719094816758156,-0.000717337855766188,7.550746089940613e-05,0.020264403517462903,-0.010505136880634543,0.028137861838509668,0.006745870026692425,0.00017270615967510377,0.01406015649703275,-0.0063605794736455905,0.007318628573467625,-0.020743838222315625,0.00029331537794197664,0.0039012092204556295,0.010895678734928731,0.022670023114250627,-0.0014523100675747083,0.00025147805846194207,0.010510886452700964,0.019409150830147007,0.048506459184520206,0.036463496329432764,8.736826293740847e-05,0.004869543237176463,0.014529991830511605,0.05341898512293495,-0.03334595166179867,7.981041930040962e-05,0.010562461976066835,-0.04212234742320303,0.3313194081257947,0.05730681527854187,4.3597772765695966e-05,0.00040030284418192066,0.0331910858716494,0.028407478702078017,0.05407337522584044,0.0009010181880822145,0.0037226733898004885,0.02178119410002931,0.06320300020466604,-0.0883176692801733,0.0001205052247766794,0.005379555909936568,-0.008352149602961715,0.005768602970865215,-0.01862507232152837,0.0007077045270829079,0.0015581945410523756,0.01436084238473277,0.19841964511800572,0.011217612519253146,2.1568405332353366e-05,0.01053335508460705,-0.0020817059906291175,0.00593393000812226,-0.07121365372917794,0.00010421446670065362,0.01022974730940914,0.003114578437459187,0.015369162916651528,-0.0584154062280344,5.7044118934820425e-05,0.00040532586486099814,-0.000326576674588833,0.00025224535388619775,-0.0001087815750831552,0.002525137080330022,0.01571274584852632,0.016757387803096248,0.11483311481146495,-0.058643501550247404,0.00012008569696134831,0.008021929426164604,-0.00478230113576596,0.029176557394846665,0.0012460545747138637,0.0002538113881321929,0.012862489576709891,-0.017964762815452538,0.11077956378175331,-0.06008139527698447,4.567965266466899e-05,0.01440585139692479,-0.009556526239984793,0.04661972311089411,-0.00879208559714722,0.00033784474981628714,0.011565402806542245,-0.01764176598768096,0.21600893102193838,0.003118241774246921,3.3892263995309114e-05,0.000685840305012154,-0.0011206093855593603,0.01009985419860512,0.006579247037355486,3.7069852693796926e-05,0.02106417651463729,0.025718368153273233,0.08070705295684898,0.015736814362599275,0.00010264898880115796,0.003849823124926206,0.08005338381214995,0.5329589279493113,0.0742652149277224,3.469591365590961e-05,0.011369303217389236,-0.021434224923485533,0.06789606554603349,0.011580794252092314,6.999073554442803e-05,0.011177888961609223,-0.005275949072473654,0.021073153927236233,-0.024517618296394,0.00011447737198259332,0.0012162392965525957,0.01663155598451004,0.014895998422438312,0.005251514212203235,0.0006381735874722335,0.0109358493112924,0.01163557505523284,0.04879751566091103,-0.008595100078340792,0.00010036358104888005,0.00536756953085106,-0.06356479529881066,0.23159963212559748,0.051958110117238,0.0017615621175832317,0.014165615530861734,0.041910621597327634,0.3558603870830857,0.047778232904314336,3.0284935328328427e-05,0.005087871505308365,0.016052232191938628,0.04880091700883035,0.0012357868408168693,0.0010754215131610204,0.0048847579716316475,0.020700212389770194,0.14835515229310942,-0.09258017080317309,9.291756303799434e-05,0.01563650738172446,-0.017913317570929743,0.024223353949866567,0.006426114656994687,0.00017453685110568255,0.005763218225732575,0.006325250388924079,0.008105627111571385,-0.0003824564312494014,0.00044791438996969325,0.011397998538344535,0.0017758509492901752,0.007157373913917193,-0.02482459853319435,0.0019231056633002043,0.007516231193686042,0.01123646646471498,0.04019439262005733,-0.2116934036124984,8.96921965557346e-05,0.007182787617872725,0.003423240291021827,0.004584835494205909,-0.0005751936506778669,0.0018560549053836487,0.004680083252221221,-0.03218114760619673,0.12259638067666227,0.14489069348901512,0.00010400157464695289,0.007300974166039341,-0.05185687963593398,0.1368864785575706,0.02626892841522274,0.00015356993674633994,0.030447774200813082,0.006023143332978243,0.024706026876702265,-0.0724905591406265,5.950236308644951e-05,0.03586783175930884,0.037469764756109726,0.12205613293511053,-0.018276127485291536,0.002909641070045572,0.008958247545901365,0.0030864668660997912,0.015943592489996973,0.00369546284494796,9.629771992351901e-05,0.007664131013317246,0.01710830343673105,0.10273109329813128,0.0021950982516044395,0.00012077187775796078,0.018133656810364607,0.04458344070734573,0.2598050639441302,0.06987263466331536,8.116609814537463e-05,4.092840071498341e-05,-0.0395544210880577,0.1644559211673377,-0.0008908884838119699,6.04495278150116e-05,0.005596671823966342,0.02238807396553812,0.04459200281433874,0.0007334135904308993,0.00024478745007744406,0.006149022805172448,0.00463595998004285,0.01826657267368007,0.002053638412548713,6.310982633480315e-05,0.00800099880334847,0.009454121283374705,0.11239659766083494,0.0025103011172638383,2.170197655128363e-05,0.0036862764848353607,-0.008907630874485628,0.028501746602632976,-0.007553492558794749,0.0001092445303158156,0.0002720718191394582,0.02002107612601256,0.06680151807517047,0.013829899031325336,0.00047242084911514086,0.0007384427744845823,0.034228328795474015,0.13817083334792515,0.03442951398372497,0.00014188651252860748,0.009119897647445203,0.004290627554593261 +2023-02-01,-0.010261503822469584,0.06980277521924286,-0.027813128109510116,0.00015546223445696744,0.011578265073937395,0.006483369851346404,0.019236665814326617,-0.003946395975587652,8.086889769376551e-05,0.007774293019174308,-0.017174951655980923,0.05381628393143112,0.010244057413455025,0.0001476314963945795,0.021217866397795656,0.03364105267633691,0.03612262912040058,0.07002151480217464,0.000314309915015809,0.0029480500406024283,-0.035286206715932494,0.06925727431028976,0.00988417305108216,0.00026658600769580984,0.011126920501739843,-0.0006587131658753314,0.0018271841469923364,-0.101141109238779,7.871559184280065e-05,0.007826791551341989,0.020866020475179613,0.06559117428273327,0.004015786305916575,9.334349937943492e-05,0.010028400280462405,0.02302652575373509,0.2074060799807306,0.05773718830119953,3.807198736451435e-05,0.004251321209536546,-0.0035086622204487986,0.0028893946718076143,-0.015924543494550476,0.0009364389722620807,0.012035285676300767,-0.0003144717739021927,0.0006287709936672988,-0.059329144487670314,0.00017488439468465585,0.005442716966427439,-0.03043368740981061,0.024939908182424732,-0.011472520543068094,0.0005964637897501732,0.007323484474426333,0.002850763494516619,0.033188565408907224,-0.036841586701311275,2.5597378955335013e-05,0.0040485551566970205,0.0159989925533396,0.04931798159757524,-0.018648633038971768,9.636922799447143e-05,0.011080133272074215,0.004016161059320586,0.020947135777721167,-0.01375763885541837,5.396948718741934e-05,0.001194065239587549,0.021890360497707338,0.020149965396042115,-0.00015510908889526228,0.002118856678700078,0.0013636604894672719,-0.0357236695688618,0.24398125275501464,0.04127754129710667,0.00012049019701329319,0.009374101352986152,0.03307235008288194,0.18440514724028262,0.008296257859506334,0.0002777155829357287,0.014116742699423854,-0.06353906614490212,0.40740802606747994,0.09659673339890573,4.393111267255869e-05,0.0077105024448124535,0.00471444903421294,0.027901556250316338,-0.027523349888788733,0.0002784769958489928,0.035116191809339746,-0.003998680459997523,0.049530234781102606,0.0008203669333606042,3.350244825662816e-05,0.015452048047159446,0.007880575304860554,0.0847538674107352,-0.00466808329450604,3.106562588311697e-05,0.00548917815205569,0.056778483547217755,0.16532345565681977,0.05832408783742975,0.00011062978552004555,0.016623367241742067,0.050254710147207636,0.36682136895939255,0.025600825698460866,3.164568648908867e-05,0.007714831360315203,-0.007019873195703753,0.022758419829544813,0.007618005242254161,6.838558161016598e-05,0.0032122209210710515,-0.006520915514531558,0.02294089562803022,-0.017450935944428925,0.0001299711016409418,0.00331573961608528,0.03478393840588785,0.03980462692197918,0.032356741962434515,0.0004994830523212616,0.001953092789640965,-0.014156464870379748,0.04568780971429571,0.00846958348942449,0.0001304188860043116,0.0047864809385588895,0.011037145408502064,0.03508203899376133,0.005706800630887971,0.002019254744282872,0.03157793713704693,0.025213534037321017,0.21960637931352872,0.01293797151141656,2.952371240136373e-05,0.014877912680479567,0.031176979220878257,0.08249563146487457,-0.019287165935303135,0.0012355899070221202,0.018121005568931408,0.02495641610402104,0.17564019688358679,-0.03968379934222395,9.462021839014544e-05,0.005039258673597729,0.026513518497849782,0.04141922052658313,0.029010005104975103,0.0001510813405365852,0.002430473348206841,0.025660698243038505,0.03178140204752514,0.011081002282723226,0.00046344620591268014,0.019911940630619244,0.01731750595346151,0.07513854524110544,0.019222678888629798,0.0017863761192946676,0.010151399065193275,0.023253502564950717,0.10766004882817598,0.01576582281542191,6.929855451358534e-05,0.002550042494533279,0.007928515597712045,0.009546168029486712,-0.14419507777897167,0.0020646193925670203,0.0033061679394406716,-0.029297980602282492,0.0848095573875407,0.06589968040435902,0.00013687020790854822,0.005725684625178576,0.023980354974858453,0.06911038405412324,-0.015670658124108977,0.0001406606685502146,0.007726326650847713,0.0017263143101762105,0.006573536252078155,-0.00692941426580637,6.409656166937742e-05,0.0040738124956316134,-0.04916016562596293,0.17791118903809094,0.050184795542585044,0.0026189555842127477,0.018051018035232885,-0.015912534145852565,0.08128688937401608,-0.005043636463626114,9.737767805226436e-05,0.00870163979179532,-0.02719925553900084,0.16544373314194696,0.013959541594947849,0.00011922504102611749,0.025574808759168025,-0.0026165903592478305,0.01431336062369707,-0.030002372659416365,8.646549303757113e-05,0.007376127208873011,-0.021583855734281746,0.09121300796699719,-0.0162363131640199,5.947297266235098e-05,0.022260220730386217,0.09908270291206492,0.21954832433510918,0.11026642386241683,0.00022003770806594346,0.008023998478480973,-0.031366736354477294,0.13164162003320126,0.013228884869948655,5.925029148403199e-05,0.012468948034564411,-0.01869015122189841,0.21309489943667118,-0.03598196018554215,2.2629296145824155e-05,0.0037697212850029797,-0.03985866481036949,0.13488275454723372,0.1856109180124357,0.00010329404498059915,0.0026211016411769247,0.02651551782614484,0.09168835969945958,0.016752942434236015,0.000455841520551287,0.0009031661491856521,0.029433945586232968,0.18864351628992362,0.00010692004469158134,8.936725032336391e-05,0.013197604360400976,0.004440304684594872 +2023-02-02,-0.03182739579642187,0.1992725209733118,-0.010197634696440118,0.000168904131882273,0.014233240000799124,0.027734751087700613,0.0854722688223548,0.00449428260091389,7.785913363593192e-05,0.015500635364292865,-0.022310978630641264,0.09829331009383507,-0.004617574634561199,0.00010500062019316549,0.0005015881523650701,-0.024582983688810844,0.021250091233656558,0.025922691530858598,0.00039042862416310137,0.006473946886428457,-0.0025279794932897017,0.006099987370313504,-0.005821714847894317,0.00021684149016251573,0.021083909774539014,-0.01610531917829505,0.04471157525020942,0.01603242717165136,7.864952518048645e-05,0.014692893078836991,0.02578429221070643,0.08679720372543946,0.012564312624268941,8.716443822150704e-05,0.0021515939031765564,0.004414598931792103,0.035207290743783905,-0.0036875909770014707,4.2998891689395496e-05,0.010722045767292916,0.036288597096351044,0.028321382918003454,0.053798587101244244,0.0009880991133463942,0.007176485775554314,-0.020098337751074766,0.04152229465235251,0.028272730732096827,0.00016925467789740778,0.000993275967999065,-0.025719495147667623,0.017871858887281752,0.0377899880726432,0.0007034238205624974,0.030921032875510724,0.005201957040149811,0.07394270047894717,-0.005317140927614784,2.0964969900500742e-05,0.008560909987071813,-0.019690261813976193,0.06050319993597988,0.016865914732744687,9.667722680886532e-05,0.006046577482044217,0.01235789328066809,0.0751941577939184,0.019424513543602726,4.62617608681725e-05,0.008817640381308873,0.0026099691218056,0.0016905230857204366,-0.08567821866662206,0.003011183597097728,0.007258933534759064,0.034167434263843215,0.2131232283830469,-0.008432492179849154,0.00013192700070739587,4.694428080245718e-05,0.004279416181191529,0.021122170195940038,-0.058369419265174256,0.000313728677450585,0.009286179714320756,-0.0331351942952617,0.2109253326671604,0.02288806427867389,4.425086196523399e-05,0.0274521242691596,0.01574661208098382,0.0921179269224582,-0.01072267403851496,0.0002817278496396751,0.022274324656049484,0.01466746795292619,0.20984575194140112,-0.008406042841969077,2.900582332587809e-05,0.014145375512383259,0.006155149251010293,0.0645335530552197,-0.11013619701974207,3.186652599285956e-05,0.005066447585703687,-0.052688938551421316,0.14009145670612783,0.06390275800095886,0.00012115199057150952,0.011135813756389109,-0.05721303971625751,0.43194246717963247,-0.06750767747154114,3.059577749330084e-05,0.008147823064315374,0.030977357703788597,0.08208800317166008,0.08717882268449438,8.366466214416922e-05,0.002771702515998565,-0.007674031198712637,0.03490323466224597,0.02155617664871383,0.00010053249917208792,0.012300166467461314,-0.04261706102092932,0.041550365758082644,-0.01804671916579538,0.0005862518235841692,0.0033870950503688945,0.009539069600254831,0.034474604137988404,-0.07469293887608183,0.00011646427798296202,0.017463356844040302,-0.06727191572683772,0.20644184503261212,0.019076041862321154,0.002091487331262441,0.0063003011966832915,-0.006676562355710667,0.06869206648147995,0.0009308469880031558,2.4993583202071118e-05,0.009597410369134533,0.06307711183564213,0.1753400036893043,0.04501882248107077,0.0011761482267187591,0.013351925349486746,-0.03256254524634603,0.27517576399290566,0.13860585959298857,7.880137697742023e-05,0.0004894024223205439,0.020394737567879694,0.032879976381086196,0.00947475983616544,0.00014639694389862042,0.00391780026622545,0.02958061594312351,0.04013968888858772,-0.0005874192636978474,0.0004229968415714395,0.0077701882138858005,-0.03211510649771753,0.13918563755288657,-0.01008589797420015,0.0017884025670595678,0.01318851954551755,0.024644146071071286,0.10186273048288677,-0.017571648278649186,7.762271540703878e-05,0.015495679673479982,0.022523601201169686,0.03443701657359684,-0.021055530340556,0.001625883790757627,0.01765819333071116,-0.004670909091332074,0.014962851025751242,-0.018501931631595962,0.0001236810317016979,0.002079941815183207,0.008930139321285583,0.0201150486568692,-0.05349506527687513,0.00017996892525730867,0.0092829331569871,-0.02749870700275823,0.12132039032691204,0.021977977197697465,5.5321302891693194e-05,0.0047422709258569465,-0.001356907762749363,0.003819626909002487,-0.00270856003653193,0.0033670335259550262,0.001492902863437117,-0.03149587106779761,0.1473160273106079,0.0068947352877811886,0.00010635164113606827,0.00992553024705536,0.029521382446027804,0.15870748214576308,0.03671433664548085,0.00013489631115606008,0.0034333077697652936,-0.0038601102550609805,0.023683691484298285,0.0007713319347604296,7.709017172199322e-05,0.005085012597715431,-0.029477821486317765,0.1373879934110364,0.017195376108529482,5.392547742761837e-05,0.0008962911650296522,0.018952381807637354,0.03855124424306462,-0.02329785932793502,0.00023969269117922077,0.019725573427062073,-0.024773693564444903,0.09869020803080222,0.03916953558549561,6.242105043377925e-05,0.0009570040767912509,0.008531164942034283,0.09679183381491177,-0.02262904744504801,2.2740546954831123e-05,0.0009017451433534977,-0.021582445727225723,0.06676144187252835,0.034882972223560606,0.00011300142346894695,0.02007053927512147,0.011930313478628071,0.052151239528106505,-0.0755788689620848,0.0003605912557670069,0.0032066054491668022,-0.025102389403348784,0.1275057322906849,-0.07944084017965823,0.00011276054038425478,0.005529538379968591,-0.0033451542945734884 +2023-02-03,-0.032372441008525904,0.21973774153220146,0.017334473842714353,0.00015579638470420698,0.003436269416987866,-0.010502904851365296,0.0310675631602604,-0.021512664635794765,8.111716572164115e-05,0.01260898841515261,-0.020693401881863596,0.052918661197685714,-0.03360140171308364,0.0001808923698065112,0.025136951583191357,-0.018866575224684674,0.01783907574761127,0.018774474897047002,0.0003569345418726478,0.005487674594656237,-0.020100251387634566,0.03563742071775265,-0.023284713900361034,0.0002951161640127079,0.02377234302334301,0.018397589156704995,0.054978913864488596,0.0459013125882692,7.306535524340123e-05,0.017963330572807933,0.045448488510204436,0.18177017451675545,0.01293470734146704,7.336462050523018e-05,0.01583800047090665,0.016084789740448326,0.1229681866424656,0.03526174508819153,4.48560713558153e-05,0.0007074716143186269,-0.03303645094611301,0.02685219731393125,0.05303376385328119,0.0009487643167871587,0.005032617631555443,-0.00896286619237913,0.018703409092006722,0.00744043940710975,0.00016756681930924568,0.01613792629390729,-0.012776285472261603,0.007948843119898867,-0.06111805297693495,0.0007856426278018666,0.006085349916347482,-0.015038240721383753,0.21972764895941982,0.03481773075416115,2.039553552056809e-05,0.0037503765070367465,0.0016015919694851216,0.004572062025771274,-0.048290481015121296,0.00010406167374992082,0.019735342650757045,-0.014749337631141947,0.08615799704240193,0.0185379460655256,4.8187982225061144e-05,0.0017332204380458153,-0.011477178935263574,0.01120537558795353,-0.004113539450487126,0.001997706612314243,0.010466265646433158,-0.01430941009290573,0.10313637808287433,0.003385257777115957,0.00011417261866763869,0.01044943681847289,0.0036938775788103654,0.023648402056108683,-0.0010038103646266379,0.00024187385676106499,0.013183788689205406,-0.008608906604260348,0.04898890522770345,-0.03262539667120591,4.9500686052202986e-05,0.012209691945254068,0.028720502719063852,0.13828942740441372,0.011863528915632754,0.0003422865755667315,0.0061581320085387905,-0.009792384731409911,0.1446026899643561,-0.009774503045645385,2.810232987356295e-05,0.010985377470549477,-0.005864357230331523,0.0490926289960379,-0.0065098307591022935,3.9910377607706695e-05,0.004443044686227908,-0.018274965517742065,0.04733453430005257,0.008073366775845562,0.00012436587028642954,0.017140602971502838,-0.0029582305619581238,0.01924797386585535,-0.015762867065739664,3.550090098779087e-05,0.024594276340248064,0.006050071105120767,0.018764324875004297,-0.010555575583087186,7.148335338511771e-05,8.690905712258057e-05,-0.013520680220808204,0.05653128794142456,-0.0026279449657568227,0.00010935993840425882,0.006170620586854918,0.0011721431443113442,0.001275736903667933,-8.112089305411767e-05,0.0005251641776663938,0.007645567186804196,0.027303233698837647,0.11199856369905593,0.03894342710372188,0.00010260951675402689,0.0014587365499297926,-0.0861839716263066,0.3428952639107583,0.05551441146820449,0.0016131850623069483,0.01277625920880605,-0.03797854586426337,0.3704488574243014,0.03639630996807364,2.6362844498593278e-05,0.001293028372811879,-0.02156522648276499,0.06686276163600613,-0.05409882094081526,0.0010544864003047406,0.04255698309235381,0.0043629028712484945,0.034854184450552474,-0.004712450802932357,8.335780357271764e-05,0.02397025911734312,-0.034298222815026244,0.05513387440555177,0.0921045322284742,0.00014682448664588745,0.003477661585069512,-0.0014016241085168452,0.00220572030135771,0.0026968845741269327,0.00036474137612180733,0.0061104694475710136,-0.05344061378811935,0.1801969494797938,0.04844054869104822,0.0022986579122748385,0.012745755084210624,-0.007063842359549832,0.026787057679857635,-0.01549437434164877,8.460701173123112e-05,0.008751936863888879,-0.026422759091929548,0.033026800273458404,-0.02830556353606247,0.0019887896759902667,0.005596700661444719,-0.0027329185294053733,0.009517641511555937,0.0026346032005963435,0.00011376623322647338,0.008398412844330705,0.018956830869906616,0.0484569779896943,0.006333225362187634,0.00015858780405416558,0.02046885562803601,0.018760600368471953,0.07351625992364443,-0.00592286974878732,6.228410853371155e-05,0.008682754960198677,0.0403435589434821,0.13667577365400213,-0.043149183625394105,0.002797697303755885,0.003989370467901254,-0.03999856883295441,0.23154393502449064,0.040984540457615105,8.593134576973706e-05,0.0144498614538664,0.020210284851809295,0.11940288672498424,0.012325532869632026,0.00012274912146845377,0.009033224040045985,0.004694021526776271,0.02746383749031144,-0.03408773507573801,8.084116343090268e-05,0.010246049456344506,-0.0073064551264020025,0.037396873412735204,-0.00035811673355871064,4.910422057996639e-05,0.002627140425923094,-0.007959425615489598,0.017790022169972698,-0.12206585897583831,0.0002181396606484929,0.02477924725953903,-0.024873160677013752,0.125299236233931,0.017488714079397047,4.936247507941579e-05,0.012271969704144549,0.08248709415892984,1.0586965618697455,0.41054906740721414,2.010230173196767e-05,0.000586443479565286,-0.0050078706196527755,0.0168052887053602,-0.001239074365591594,0.00010416362536924967,0.0018933672861130037,0.011523493053147005,0.048929040179942436,-0.09213388077328775,0.0003712320116875979,0.002176502783761326,0.046630915977713114,0.2172088847246513,0.05520794610078444,0.000122961218086746,0.006865503585783087,-0.005488643331058363 +2023-02-06,-0.0037357704346481467,0.0227349216203913,0.0005840445136338759,0.0001737694007104848,0.04080499066360503,0.0014459201732606541,0.004924872375189451,0.0013612453501694955,7.044657172013816e-05,0.00640855544495587,0.015024112434615442,0.06026499152795915,0.004413132083396194,0.00011532432721570072,0.0012425119246671182,0.013701443577667808,0.013942758152324259,-0.042396776297470906,0.0003316541902134873,0.01031530069809913,0.0023736696312569904,0.005747762596204388,-0.06198128651990397,0.0002160823149370154,0.010754791391300209,-0.010959784855498896,0.02874482316317022,0.009148985113088346,8.325093646693384e-05,0.00346049977446182,0.03029217777298511,0.09292516226663206,-0.051599963344243105,9.56504514024022e-05,0.023930397914423304,-0.024463105835585447,0.18290173379293034,0.006855969864304612,4.586616049258467e-05,0.010828428050087198,-0.011434238815926352,0.008127843148199951,-0.020866950428351617,0.0010848675807834224,0.015173226801451552,-0.03042699336158261,0.07128126634757909,0.0377505919721732,0.00014926071565068394,0.0018864790189638664,-0.024047251464939832,0.01821237622919665,0.028457849020972974,0.0006453914234292172,0.0210506227136682,-0.008016883373577402,0.10441598222388375,0.007940584345042773,2.288028221646605e-05,0.0025321295677426226,0.03429064585606536,0.08809550726904773,0.01259213741910372,0.000115630643415239,0.006943231187414882,0.004433070427915694,0.02273997076551028,0.0004964119617213065,5.4875254480944434e-05,0.0033779835402904736,-0.04201913936708123,0.03006959556121591,-0.013622987444220936,0.002725477108505508,0.031021622645257794,-0.007812878158893439,0.047172503037408636,-0.11661841992650933,0.00013629321565094584,0.03479115411108315,0.031895990240795966,0.18282628870517084,-0.019536613889976493,0.0002701504394491209,0.0013235360384491162,0.016199126586906237,0.10296929648659861,-0.005715394807393189,4.431439348446319e-05,0.025173353450643598,-0.0023413837843907267,0.011309357665750561,-0.12396534188579118,0.0003412097830182453,0.0015230458995458517,-0.010042157810837568,0.15694859146320822,-0.045490083542621074,2.6552159653820843e-05,0.008549356736963462,0.0018428164801644533,0.020792724211054988,-0.03198738531591817,2.9610954249571826e-05,0.009663025228343603,0.015958131771146775,0.05040760820315107,0.0018465226084921822,0.00010197852159858463,0.009432304525554623,-0.024380141492777466,0.19437621388730472,-0.02514940301479899,2.8972467161348867e-05,0.0021198951953099337,-0.0014374573648849485,0.004494306848671406,-0.04475611653212834,7.091035083744548e-05,0.008205788003890081,0.004382841010629471,0.016204312887325528,-0.005837665771003,0.00012367265718981243,0.006697589601483021,0.022802573108035115,0.02308190033465871,0.007952643492804175,0.0005646610829655567,0.013077389161378999,-0.03820336104398112,0.12898362240838843,0.1274155907224092,0.00012466743161736765,0.00315086710099804,-0.024433241554440484,0.08655230063945459,0.002322834089570912,0.0018118475245345327,0.002612480543757822,-0.016985761759931287,0.1705252421320803,0.0005152332691393761,2.561406745172543e-05,0.00027454344646694407,0.03395999728992841,0.08268444801554788,-0.05244844148649391,0.0013428116028398544,0.019013285703827626,0.019560828435069327,0.1509063005041686,-0.014223815022244518,8.631882397119597e-05,0.0007183536506310438,-0.013050619639829966,0.018656957806811286,0.015109593168970484,0.0001650956723507537,0.004297707412961139,-0.011299715102781955,0.017724218754401867,-0.04287017608813217,0.0003659353003099418,0.009699638392322449,0.0008887440904328403,0.0026463003058682702,-0.02803105222925047,0.0026030825457524437,0.013647950096032027,0.0048755265875259305,0.01909489885674401,-0.23146025409862445,8.192086647901735e-05,0.009699506151720333,-0.044079376251556016,0.06064489691625385,0.005446824083692827,0.0018068344814295035,0.008268717864259735,-0.051401449223924776,0.14954736989240058,0.1360565094363921,0.00013617977767619013,0.014839338587015067,-0.0057252247927685705,0.016859126487233263,-0.016589651495629024,0.00013766319677198805,0.01971561778776567,-0.032099024657168566,0.13564328538738465,0.030907440819174688,5.775737690829283e-05,0.0034767227772815037,0.04715802268583671,0.16674600469027648,0.009038527130521399,0.0026805147920897564,0.0076133821398107395,-0.021885955856169023,0.1155282690187057,-0.005372408770880416,9.423621261370862e-05,0.005498182708264313,0.020434123790135966,0.10731233388787836,0.0088065415152385,0.00013809156901807267,0.020629610395504903,0.00502289827467155,0.030461816246110114,-0.039118386495112165,7.799150257657953e-05,0.010888889102775997,-0.03689844184791963,0.17267466664223577,0.011146225275989045,5.370649319834207e-05,0.0033762213877571792,-0.0055272415073844144,0.009137079288857276,0.0019250394423232138,0.00029493780346312654,0.025480388264592067,0.015281628428690101,0.06674495924833741,-0.10649818910865665,5.6933192756676064e-05,0.006666865667564354,-0.029508357481463406,0.35487317238566213,0.011079067372210526,2.1453746897062166e-05,0.0016516765050657235,0.011580946088250624,0.03681629451534217,0.015129105004551514,0.00010995447997543257,0.006528551291479484,-0.0010663102366500633,0.004120706722361062,-0.02051261125014137,0.00040788698061025304,0.002689275969307155,-0.017501728742595656,0.09996856444089773,0.0012577155026836076,0.00010027421916702761,0.004482953457951532,-0.003966540801993041 +2023-02-07,-0.016610227836658116,0.11420633200766028,-0.015019670245573429,0.0001538055439788412,0.014261194903185,0.03407578654319539,0.12513139503048643,-0.03764961208039001,6.534165485918418e-05,0.0037993333785123987,0.05925202338545249,0.20165764508808381,0.028156140594860327,0.00013592073012928986,0.03060464613813215,-0.005770727184343752,0.005185639734256767,-0.031109349240646757,0.0003755744656860512,0.002941644117510347,-0.022628070342360605,0.05475355256188375,0.015312800486760392,0.0002162384849076938,0.017341293869283063,0.02136621636310752,0.05008293491996167,0.016392523807636488,9.315037135884922e-05,0.0034749158474258668,-0.019296836146532718,0.0716921524466559,0.024184906810020616,7.897767504527171e-05,0.004845170845617957,0.009747634205949979,0.09515372216135588,0.008880902174712785,3.5129507108190016e-05,0.01262455843588902,-0.020608665497326546,0.019519032498944853,-0.005982959319128944,0.0008142098830967499,0.010019889856951458,0.010570997138851589,0.026732635362344465,-0.010761050632087333,0.00013827258024233464,0.0029378105553281007,-0.0010067026782103455,0.0006219506297574966,0.0010605525430930824,0.0007911697435995199,0.0162088328862624,-0.003405502497026764,0.05167140860562131,-0.031787092013598334,1.964055209162506e-05,0.002955737488776338,0.004109844020683026,0.011971338875770515,-0.08350286996727009,0.00010198437830321313,0.014656367212948992,0.006846001890649499,0.04099944366049301,0.012807064963941402,4.700249040598673e-05,0.006567244565823043,-0.010675893994526515,0.008331442744175084,-0.08539199954392215,0.0024992345229935876,0.0022443521102995492,0.0031781034168826823,0.019862957147386562,-0.011343607899839575,0.00013166678382806738,0.029902477009563486,-0.03348106527685832,0.20458308662109184,0.06653171456538659,0.0002534181830807981,0.007007153829917637,0.038904567739294425,0.2742149823918218,-0.016685288656375405,3.9964130687171173e-05,0.01697854479995928,-0.003446094083353244,0.02064073667852573,-0.004604352163136757,0.00027516218166841124,0.026455538330727935,0.003654006616168149,0.04843656710567324,-0.017738471575015485,3.1305900838397875e-05,0.010128285140316122,0.004879709805429291,0.0542311478007365,-0.0006154069040938559,3.0062625597646875e-05,2.7925768812153305e-05,-0.011230607790534804,0.039245070304790804,-0.0030800957419418497,9.218089170250509e-05,0.028651237131481835,-0.04853101819008013,0.32008547120327474,0.006004930364343351,3.5022393013452705e-05,0.03497815364640228,0.006468671772040165,0.01987957093971489,-0.018328134194048124,7.21415535656105e-05,0.008989748191751554,0.01325447860159898,0.042548073104792215,0.016600373342706986,0.00014243979736648727,0.00596393168034598,0.004189412562221504,0.0034379830264055725,-0.017639535690684247,0.0006965061633194263,0.004517697021026134,-0.022492261635687013,0.07357227267709453,0.014314751362486366,0.0001286781960854548,0.008851301491016114,-0.05527777540034745,0.20402777481240703,-0.06481216056593282,0.0017389233478021194,0.015664521831900292,-0.00625389740157627,0.060715794369238026,-0.004713664703643712,2.6486908178665795e-05,0.006305401534799101,-0.04812269233319843,0.1460192728853523,0.026098680294688446,0.0010774844350201842,0.008502832041635695,-0.0509742795476697,0.39325388779065834,0.19820781453835165,8.63184661997378e-05,0.015254414422968524,-0.006558995885224311,0.007929104874234896,-0.037215759554716794,0.00019523540723082324,0.006411986182200595,-0.008084314484082757,0.011631771502950153,0.005313674482366483,0.00039893418323960994,0.0007587169805323461,-0.021850090414409468,0.07916286747359018,-0.012984174078234451,0.0021393510890891057,0.028859974394350785,-0.008707750427058535,0.03533220532393824,-0.04574263346072174,7.907252333535403e-05,0.00045900163102120936,0.008035288899903226,0.010055235301394379,-0.012138322626788114,0.001986490304990394,0.015324376931678324,0.003607231884713953,0.010481342658798286,-0.024887828092262056,0.0001363556626656389,0.020997377465414177,-0.05432937305090693,0.13559482853163618,0.06310962191277227,0.00016242465136833518,0.018652361649523053,0.06456613856486104,0.30661882945456587,0.04765208610739349,5.1394887232833165e-05,0.006771003898996115,-0.036406627822159573,0.10556133993413873,-0.015290700823375991,0.003268839654635998,0.03163545246054635,-0.0024383216850263722,0.013097125898438085,0.0012915672873064327,9.260950640492587e-05,0.0016690630777820123,-0.052490047831714466,0.29160351476091617,0.0074494472604949465,0.00013054041787657382,0.00823650582950856,0.0004917449704356118,0.0030071726054898486,-0.11421081554238115,7.734464829654401e-05,0.009452197374939198,0.017580174537647108,0.08200125287980821,0.008451486780024562,5.388279179322871e-05,0.03469621509477514,-0.022426386407347162,0.047162905020959184,-0.02466166617122061,0.00023183988198050503,0.009111175512005487,0.013627432743987195,0.051431461502141076,-0.010002763703460942,6.588697331234924e-05,0.007786380322872999,0.022200503029623255,0.24302088885666667,-0.05142164966710789,2.356950683494918e-05,0.006501145305661059,0.011821819714815683,0.03969059559744709,0.01484069183402338,0.00010411317254709312,0.00029424738828116935,0.014886352524015569,0.06914687173433308,0.018702784769849594,0.00033934678046974924,0.003625097817948147,-0.03752311027920512,0.16831983466800543,0.05285225951864431,0.00012768366199314118,0.005855474442061156,-0.004958057830370495 +2023-02-08,0.009047624760016495,0.06298038131600806,0.012834834323066653,0.00015192032422173615,0.005649448133080784,-0.06561746264792452,0.17899423016209207,0.11416555671109291,8.796115583169085e-05,0.0013815654304939913,0.023595732050656303,0.08810916787696157,0.014772575192096894,0.00012388238577044032,0.014576336814603349,0.005673796741073634,0.006466344544888361,0.0011317577345263804,0.0002961302603865191,0.003510506284120322,-0.02896322638219345,0.06187647976337266,-0.019982815705667293,0.0002449171025687806,0.011134747483068185,-0.0036297897446451225,0.008507722504962513,-0.01789541092096136,9.315687103215054e-05,0.0014339267885693395,-0.012518321676236815,0.04314307470000842,-0.017147801655944185,8.513827946977994e-05,0.006814059074206843,-0.015713787230409323,0.1370887126962589,-0.024363824994001415,3.930771373426304e-05,0.004191409585980347,0.01414133705296204,0.01165868442353085,-0.011477521010652022,0.0009353749031139162,0.012791832135923612,-0.0774886215099335,0.182041696517849,0.17548895953993365,0.00014884318245836996,0.015744993548962753,-0.01286754462880059,0.008786534822924234,-0.01942248109469053,0.0007158176569863652,0.013164166046243899,0.007520661239255854,0.10521624729857769,-0.01644459608356445,2.130080458916995e-05,0.0018173732404488574,0.041278598691024855,0.1256195774370344,-0.16922093907755792,9.761547126672101e-05,0.016632210130518313,0.018970602814352647,0.10626399904779461,0.04621099744523253,5.025239837046139e-05,0.0017205079579206742,0.014737083589576622,0.013372312330818202,-0.09050102453017905,0.002149453269880676,0.010029198429214597,-0.020292318825283907,0.15037262527315157,-0.07021476607737734,0.00011104908974414404,0.004330552808896247,0.03455006074303617,0.1812605045583022,-0.003924403772528692,0.00029515752678948014,0.008085685389547001,-0.028463559537012146,0.16280004979832705,-0.008152073923203714,4.924879772414353e-05,0.013195814727739251,0.00783140375135477,0.04712046270013118,-0.0019091619971698187,0.00027391566877184753,0.012853592034339497,-0.044304738034383534,0.49011750983396,0.015616533196959383,3.7512860838897896e-05,0.018192490074271702,-0.010823570354116307,0.11747225847777837,0.03786846590608542,3.078342477329608e-05,0.000741461474328783,-0.017029772082225066,0.05325274252709977,-0.02207481737755062,0.00010301242536596994,0.021216588476174948,-0.00451304113377842,0.03273546341372907,-0.026807466398605696,3.184514089131468e-05,0.022194269675659455,-0.004018385283886776,0.011881079744536411,-0.031412379147874155,7.498476697048681e-05,0.00022110902908363582,0.005378248623887041,0.01894747750278941,0.0007898858381787142,0.00012978905499150668,0.006141752650162472,0.058149471534582484,0.05435849346702033,0.07019479463503335,0.0006114401057930411,0.03415254658437199,-0.025487868845679985,0.09169121406629163,0.013295576365067173,0.00011700160237298007,0.005109021697163185,0.07433811742238153,0.24266673068479283,0.0987081252923513,0.0019661674140800762,0.014483972059617897,0.032429721864428135,0.3016627577842155,0.025510964016130906,2.7644180640417384e-05,0.007426118729832213,0.009386308270362964,0.032334428956664676,-0.06506502869607175,0.0009490757739146298,0.01103540497772511,0.006857463850917104,0.06006201784570669,7.687137469138662e-05,7.603074595347316e-05,0.013467547709864984,-0.00584614186307807,0.009365547372706947,-0.04560110582054963,0.00014732673731734745,0.014712683240597733,0.05874612207637937,0.08918871332588776,0.04002284338138011,0.0003780708716623939,0.011144352219022068,0.015509559402785027,0.06015008142606503,0.014222444541322996,0.0019985433922787006,0.01037816540143745,-0.005421243369763097,0.020151956385541955,-0.03961477798512895,8.63121748471433e-05,0.011070386784514991,-0.03820388200592604,0.05745235332623144,0.04085387294623545,0.001653015265164568,0.0018184211632912943,-0.0367061241852145,0.12662227383675945,0.053117962081410675,0.00011485355915683095,0.005838341486711003,0.019451082646321814,0.04631609622914448,-0.007146437676199525,0.00017024415400969004,0.00543076220293406,0.06728591898355478,0.26584624752527597,0.09985988138969024,6.177426386568173e-05,0.001562152571137641,0.004889609804131601,0.015727107404824976,-7.372130842823377e-05,0.0029467507897545826,0.01446917241090773,-0.010712120315714828,0.04769687484886805,-0.0023122925510418854,0.00011171875521589762,0.01195114745879893,0.005432177711453735,0.029883361995352183,-0.01866072292061015,0.00013182728200247497,0.007393615069978515,-0.013281748094599475,0.09093255770882765,0.010031853207569608,6.908512231865539e-05,0.0030345457656974074,0.01913606585077844,0.08321723301109138,-0.10516279390665167,5.779453586670971e-05,0.01395998169736396,-0.057681957757204375,0.11214520373294908,0.062330719991130185,0.00025077756547687473,0.008881432955272585,0.019629129901319167,0.09537939920599144,0.05941428567222145,5.117535246312027e-05,0.012886070863712986,0.04427368232118024,0.4834713863468028,0.041912675858026396,2.3626867947462376e-05,0.005644768221565029,-0.014400177304279633,0.0452736741174878,0.01333612341453784,0.0001111811248342976,0.008506346069905982,0.014969558381768257,0.07008587036394646,-0.004810936178172414,0.0003366716041403827,0.008178730462277881,-0.0757132900454763,0.29978447222212273,0.15713436256163885,0.0001446554432018468,0.022311229284405522,-0.0006070758426404293 +2023-02-09,0.010775079971210962,0.0666591515105199,-0.0038724543073266286,0.00017094141898401128,0.008746608783755841,0.01702159455869184,0.06679729737261116,-0.0676615108555654,6.114372272011324e-05,0.01778579064761695,0.032497385694678076,0.11666775172360981,0.0021283023479435783,0.0001288530789782514,0.005811783062081001,-0.0017295047615575028,0.0014148930658136548,-0.03200739799884835,0.0004125399391147703,0.005472213484480343,-0.05495392522814657,0.11856378907422792,0.10679704249400876,0.00024251824719632553,0.0031291638474212034,0.0016242141864849947,0.00463947077529764,-0.05933100087021449,7.644016149116814e-05,0.008084938760206628,0.026624088080165306,0.10779941475002193,-0.06049290817968639,7.24683200264031e-05,0.013925360273020375,-0.004594187282411144,0.03715220852893595,-0.0023482565166335766,4.240554743122113e-05,0.021902213022217582,-0.019176689428880702,0.01285293005157665,0.017655157266891052,0.0011505785608774367,0.0030757077769902417,-0.015674993967594204,0.03509564804154956,-0.0009753074617382738,0.00015617661394471235,0.020199524736003706,-0.0220215783481467,0.019426775920746358,-0.00585244534975613,0.0005540794846816957,0.004734351639729227,0.022718989021866403,0.2926150470631888,0.01500482550311486,2.3137430974608542e-05,7.585398902833847e-05,-0.029190409056630014,0.10310552839396538,0.014121852993891985,8.410256989135447e-05,0.015852457598866335,0.01077570105977851,0.06109275074146682,0.015102337129780225,4.964981939079613e-05,0.001629127263055761,-0.03220286547619016,0.026600485745512437,0.08265282388978575,0.0023611736236535175,0.010286152299172326,-0.04228833629954845,0.2518744494015663,-0.11419153945142083,0.00013816199422605232,0.004255663140871274,-0.03247115990620513,0.16925552316790238,0.07425150227045106,0.0002970730019059719,0.008336737417961449,0.04530361951202238,0.2653032721927081,0.03875644937556911,4.8100683831900485e-05,0.01612651515799355,-0.0004337558791576071,0.002227662261512535,-0.01965044683255137,0.0003209096923321679,0.005822801751293145,-0.007252612551127645,0.09815761270130696,-0.09037426696384489,3.0662017073993226e-05,0.005652784962299569,0.007372106043069704,0.06567477109763847,-0.017169501716485205,3.7503751721775454e-05,0.01371330622188184,0.019433648390961858,0.057165354430928475,-0.003392707827411932,0.00010950758366700009,0.007554973666762396,-0.00590105149450661,0.04449330901162774,-0.003658570157342554,3.063564826748548e-05,0.00856379591361478,-0.0004272476750109602,0.001183748853688297,-0.0005270821306350927,8.001981056456113e-05,0.009712369211332793,0.01760353425084658,0.066895735419797,0.032151810819388005,0.00012032338263657449,0.0028518956426562443,-0.02951311700757603,0.022448139464517056,0.012939812000225929,0.0007514676496986058,0.0003630230452246776,-0.020832748457389725,0.07856492052397822,0.008695703214796924,0.00011161020443153174,0.016839380991641936,-0.02274405600489482,0.07789814747319525,-0.001993137839401473,0.001873958466277776,0.0050649306707555835,-0.005339833189066868,0.053498223201700154,-0.0033418797806278404,2.5666729123907583e-05,0.006815097137755932,0.00996189600906132,0.03158947046623674,-0.022489665724639292,0.0010310291110918325,0.0030581595091434596,0.000945875150099173,0.0083316408215171,0.0022798905358359847,7.560124020428072e-05,0.0022161255654835578,-0.012349355478470731,0.019514184254702832,0.007436517381725939,0.0001493617099751951,0.022273253247841872,0.0037627268356698533,0.004977163250683458,0.00022399200592226957,0.0004339350382249198,0.017998925811767756,0.019857193257527998,0.07778610312665309,-0.10018624292712792,0.0019786372853741055,0.01185114806411899,0.03349832338832867,0.11394901462995118,0.11476942639188323,9.431979915473263e-05,0.0037286841021722064,-0.003371031392520636,0.004802860588922702,-0.028472617171008616,0.001744777322751244,0.0009161816621558053,-0.02086866720107866,0.05331310374199709,-0.009317542075145754,0.00015508749566758482,0.0057486947835941075,0.009705273350984396,0.0236891871130718,-0.08046444769317129,0.0001660802499125747,0.018235957022563316,0.03906000192819185,0.17103402055986264,0.02335864533943412,5.573957852333253e-05,0.028299725674369138,-0.04249645594563873,0.15220232665670672,0.02537212358396406,0.0026463633879487843,0.012756416355681945,0.009534846023837808,0.06128505528000547,-0.03289415480985155,7.739264199183253e-05,0.012918980441995189,0.01049085714935349,0.0598531707610492,-0.0006368727277104669,0.0001271114273311884,0.009020471346971863,-0.013144752193406065,0.058879978714418024,-1.0982126701668523e-06,0.00010559259366143242,0.004541511695194915,0.043104979506504416,0.21278592823914383,-0.03166536300998618,5.091338047092143e-05,0.001243113472578046,-0.027833668068254262,0.0483341357323237,-0.03513851884279726,0.0002807668829191666,0.010239197392753108,-0.01320909263321539,0.05668258889746405,0.005309599616571567,5.794789758488912e-05,0.0011067392116539889,-0.0023317746359826394,0.022216476857862495,1.8201053813954233e-05,2.7079626550352067e-05,0.007937636486160953,-0.030513700325795312,0.10699979058258582,0.062152931349299355,9.968295725999539e-05,0.0077500090885209505,0.005587263412583868,0.023122354745276866,-0.0893581042356692,0.00038088604202330713,0.008789113519139776,0.013927612231872315,0.0714344316519219,0.001290116445729887,0.00011167111926646675,0.014669372088691157,-0.0019174603889560628 +2023-02-10,0.007724331352390643,0.05861595069124958,-0.007209704668351674,0.00013935792341700744,0.0005895443244523758,-0.009580304376139883,0.03722091836877115,-0.11058663078295193,6.175935467386896e-05,0.015820110255538773,-0.011712475920320013,0.037954342815851486,-0.0008039889972397806,0.0001427527356310619,0.004744393075575306,-0.002263526059461046,0.002487397276505717,0.0002599861953953647,0.000307120071788595,0.005993757248409352,0.004268491190909198,0.009556209386586481,-0.0194547542077079,0.0002337149559426702,0.001818892373381277,0.02253562928053801,0.049681849881653334,0.01246409281465464,9.904183344169428e-05,0.0020268813972454066,0.012321817722282193,0.047520078574922214,-0.039572628363540606,7.608297482534357e-05,0.012967863421377552,0.008357187503133613,0.08088028255097397,0.014134512393550978,3.5433667119784515e-05,0.009106471147780104,0.018766638839306005,0.014240047085933821,0.0006839406891354212,0.001016295160347938,0.004696144396447859,0.02553534296792688,0.06374697497675819,0.017194105119951328,0.00014006963628058317,0.005917428696710447,-0.02426371692519725,0.019387611006577925,-0.0019446988136277046,0.0006117266364253406,0.01478509086811378,0.010537715589430622,0.12943641981953571,-0.011550652900887212,2.4261227504637728e-05,0.009756201251806318,0.011070760092221178,0.03414635962184111,-0.000664914815310399,9.6312813009248e-05,5.3347099937178354e-05,0.013451269357774714,0.07963277891989264,0.016153113596871282,4.754810535242952e-05,0.007870777795778775,0.03357885254081171,0.026154348567242993,0.054456787320475805,0.0025040610703207,0.01133087416221966,0.018477410408952732,0.09822078211004939,0.015434872389062767,0.00015480672568236496,0.0036762505925186442,-0.012777027812071951,0.07917657554354111,-0.012117368104174929,0.00024988567354451816,0.015425841275963982,0.024249037102615174,0.14368213793609685,-0.00817112222689075,4.753928794805328e-05,0.007328103513903417,-0.010542266347147056,0.054187341682419045,-0.12863275464414742,0.00032064387313349445,0.005251709516919016,0.027216864080411855,0.36150372634139855,-0.03646978779517018,3.124320204984066e-05,0.008176187629297591,0.008414858776645912,0.08375423111807778,-0.010189390871731298,3.3567715428652293e-05,0.014926076961498455,-0.06756583475583942,0.1524910472837151,0.0840904397210709,0.0001427268087441617,0.006846474977024356,-0.04392230515553787,0.31970526945628275,0.02424409245799873,3.1734211111286186e-05,0.002299858917004624,-9.024603711688068e-05,0.0002929908114193489,-0.020409464301291324,6.828912090889399e-05,0.009471571149237246,0.011226268117220911,0.03641161786584637,-0.08373719201335549,0.00014097562531998993,0.0033173616050667185,0.0012023124122050202,0.001221782311983497,-0.02168951718483686,0.000562469604656179,0.008893336968306265,0.002018522420924938,0.009023360922753649,-0.007210565565869036,9.415670626851386e-05,0.011838408636773948,-0.01680525472466936,0.05270854970830479,0.00024881601690130204,0.002046365511069849,0.0028661603327624994,0.024429583174675404,0.25654014883737625,-0.08572414486709794,2.448741321766972e-05,0.01242680789750097,0.02270781516421632,0.05602519150167619,-0.0033704274295684768,0.0013251445983645867,0.025165419838748267,0.014457032203381215,0.11396274779720225,-0.018792603334380466,8.447766077391467e-05,0.0065377268022914605,-0.013308998078800892,0.020134540557732426,0.008420248408185373,0.0001560087742307451,0.001120616211196729,0.016997391917339517,0.025786337001196088,0.00036953583374832634,0.00037835244770608855,0.012374220622077338,-0.025911460175037596,0.0997356028319669,0.023769256083834442,0.0020136872088297075,0.0022727950451637423,0.0027338238370297175,0.011221496976168569,-0.00035308480801798746,7.816459816524437e-05,0.014083670378575523,0.007038751107465088,0.00884258894580144,-0.022232488338824713,0.001978761097327203,0.009680641190917924,0.001693655878446062,0.005568772832179642,0.0005621864136929249,0.00012049851875991321,0.0011997669632839811,-0.004544609700101311,0.012263028287074672,-0.022973553717071257,0.00015023088897820938,0.006053376486340296,0.009261725445844023,0.039247549307079695,-0.08484550408577388,5.7596127434099035e-05,0.030086927608077265,-0.0425739727984504,0.14895056265521345,-0.01694996419125236,0.0027090691344337278,0.018791420472638404,0.029644813744743002,0.1833522967336784,0.03588654668692261,8.042719868876067e-05,0.029321074366970047,0.029667641383155054,0.19368141120489393,0.021487936021916038,0.00011108511380458789,0.023421765498221073,-0.015288488989565429,0.09242622472091543,-0.017175454129340555,7.823805575222942e-05,0.011579738628272126,-0.03940032749995984,0.20429033358046494,-0.04598366422194236,4.847294530628234e-05,0.007383617719314896,-0.008661955244386427,0.014765606516489485,-0.0015308363394537945,0.00028601844332024165,0.010344945345821442,0.016788351717861087,0.071512606985745,0.018174578705424296,5.8376738120978636e-05,0.004917632412165622,0.03544503197663568,0.3389134043741375,0.035291229275855034,2.6983477081678595e-05,0.024563187210601894,0.013253942357374978,0.03998494989771204,-0.008719479987614506,0.00011586639261447765,0.012089622961995394,-0.0036238485403029606,0.012521552097224976,0.004837556308972772,0.00045618378479537363,0.012396113126625793,0.0014668531295144783,0.007128285460613522,-0.016999373592679584,0.00011786187466293584,0.015439756595853768,0.002584026412795092 +2023-02-13,0.0058189253185991965,0.030218621826683948,0.0046061508458456165,0.00020363607313287865,0.018780355271277197,-0.026247153757115296,0.08355917006036444,0.014029144109681469,7.537001890365356e-05,0.030492811159265863,0.002495770647301715,0.010235583404236475,-0.00633255223960615,0.00011279485121495015,0.021592400331899225,-0.005115573327378104,0.004393700154465096,-0.021740269121486425,0.00039294498930445145,0.012396770466921603,-0.055834993904461734,0.11601133994934865,0.07590935862096332,0.00025182787592002216,0.015960949682864902,-0.019242223360889446,0.05367704309308597,0.04445665604437971,7.82732573747859e-05,0.0024852078711235202,-0.0006581602578778782,0.0021868376452320658,-0.01790616512060096,8.830900027188017e-05,0.011839743251746478,-0.001686984325068547,0.016694423884342557,-0.003840794178124682,3.465279149084455e-05,0.004392438562919857,0.013283644350443708,0.011244967937382867,0.00513792298406806,0.0009109694328172456,0.0002919015059074608,0.024871612929959798,0.06407941514477232,-0.04532122631417668,0.00013572107703672872,0.009112568499232919,-0.027185831740772246,0.01782553027127092,-0.11266919267382146,0.0007454603087138662,0.016976061977574793,-0.0009853005371756446,0.013074546147902403,-0.014645921793365331,2.2457679866911553e-05,0.005604241615848741,0.01880299184387317,0.05678115676567358,0.00018414039114280704,9.837251158085045e-05,0.008843987304687566,0.0016176845102409845,0.009906328103401762,-0.028583467484353836,4.596665882696895e-05,0.010344977416388531,0.004170886866349831,0.0033204669776588833,-0.019219138562090586,0.002449921770897079,0.00500852293679081,0.036026931875350963,0.21631784307376123,0.05147792196288441,0.00013705252531173294,0.00850366029005049,-0.05618103940202975,0.2850718892325662,0.16241377677542698,0.00030517124383513,0.015237716168500944,0.03601632025209839,0.23880964390433213,0.005546860216109933,4.248234038264691e-05,0.011414240884716018,-0.02200643078482495,0.12665858858201504,-0.15315965921743627,0.0002863530237955626,0.0022193730125429625,-0.04561731128041568,0.5893184887736006,0.01332953807625541,3.2122537798136985e-05,0.0007439323644094079,-0.010438545376033797,0.100580090141192,-0.0007101286620961365,3.4674457256778245e-05,0.0037398585889339736,0.02125572052483057,0.06485643495585795,-0.013381658248081069,0.00010557121370093837,0.003970195584577608,-0.015352388911417334,0.105867259614908,-0.00792355032487611,3.3497058226680376e-05,0.017764549001482777,0.026234826936381996,0.07777436817839434,0.0721280562111655,7.47857914740749e-05,0.008228853701540225,0.00983450380421963,0.041185284670616586,0.008811693274326557,0.00010918399379043294,0.007419775249727307,-0.000651834920636837,0.0005552781362806698,-0.003515498900698185,0.0006709692400031451,0.0214645846542875,-0.009492614665726297,0.03513088409353053,-0.010727495012484102,0.00011373202758545597,0.010556714870689462,-0.0035215733728556744,0.009980137019620666,-0.012101640602043323,0.0022647455359477383,0.0007737827135850138,-0.018628399638455098,0.20719374067931864,-0.14753525047964428,2.3119642293439246e-05,0.010252828495210621,-0.04215336107627517,0.11086019521145783,-0.021176500031509636,0.0012431623231026752,0.0015557167093067771,-0.014169735381162903,0.11161797322581216,0.021076242026611045,8.453824950915927e-05,0.009930702323153665,0.009887962399619926,0.01335558854021606,0.005756190102069506,0.00017473872469151252,0.005839912118352601,-0.038979981953875684,0.05513158874387566,0.06464663672240666,0.0004058308331839689,0.020384036948624472,0.040499276160076224,0.12004404549278354,0.08275008118015328,0.002614911406982326,0.010977537769658038,-0.012743000837288273,0.042959906452826074,0.002089109754673127,9.516971199835911e-05,0.003480618882241514,0.045483424661268514,0.061518480737852946,0.03424461595832527,0.0018379121447582483,0.004758910636240959,-0.017009946502480177,0.0593469423403698,-0.051487044812595216,0.00011355875852720906,0.009693673498717574,0.019802491665793908,0.05500479171812283,-0.000983456752654261,0.00014594179743340622,0.014398939085118316,-0.011160532735038486,0.04637607470557748,-0.059529957791513356,5.873606715663983e-05,0.008762766951716208,-0.06807345590211739,0.2345051845805369,0.01995727854962103,0.002751334590436716,0.016755840569569195,-0.012685052745773117,0.07111746396232402,0.0015094437502376195,8.872716122665448e-05,0.027891020498428603,-0.032552558320863685,0.20056013384909632,0.031657411974931306,0.00011770673121636228,0.004735505584300758,-0.014796968061829206,0.08483307917105912,0.008589115950342074,8.250042852025781e-05,0.0003057436713185103,-0.03905466972053941,0.19328880198720588,0.018295949917692875,5.078245238621956e-05,0.02341771071617149,0.05681613181055834,0.11328623919875148,0.006819037854266993,0.0002445253543663266,0.022257759214770512,-0.002674131422815885,0.010514054640539398,-0.03689873318578782,6.324510144032044e-05,0.0032191737346216214,0.036623006357783816,0.4499839541405263,0.029224290975629817,2.0998498916213682e-05,0.0044403342058559805,-0.0010762589865646746,0.003324489362739854,-0.05953524976316818,0.00011316205032335666,0.0036039471547761777,-0.021035049822197786,0.08772769394604198,0.00178212352393297,0.00037795039406008366,0.00976213695169887,-0.009566923564462152,0.04356064668738277,-0.019229164026513153,0.00012579106139603777,0.0025362913201101905,-0.004550451023913392 +2023-02-14,0.03684255061537227,0.24418233017248417,0.04088696706632526,0.0001595592693641363,0.02299803139820847,0.009737290287391294,0.027881810508754143,-0.04570243256969151,8.379684599039199e-05,0.04358492454027867,0.01198070985744069,0.04030569251091403,0.003063880879185995,0.00013750337813997392,0.026707122192643776,0.0034185145177692334,0.002937411176544783,9.315445166023509e-05,0.0003927720196897905,0.005363782452198212,-0.0076131326389260985,0.016738709649041367,0.00012262060401913111,0.00023797930533761978,0.009112802896820283,-0.014918793317373552,0.044428313326676495,0.0029644296822562304,7.331968849163649e-05,0.006163911541975721,-0.02795031177328702,0.11249094908516251,0.0436388760965799,7.290527137632429e-05,0.011616337632634212,0.019177882284677095,0.1669298004595075,0.008807254298000704,3.939720287106363e-05,0.007634398481394288,0.004626746138123814,0.0035454126391813207,-0.01589756107315787,0.0010063607014603071,0.006231263557096968,-0.04428135129936829,0.0996699573957297,0.048934794110540844,0.00015535258324029312,0.013849804476127646,-0.0006781336140082153,0.0005507753027225747,-0.010273745958426535,0.0006018179993390099,0.002439828214685957,-0.010637941424851752,0.15394384857937407,0.05226572262356918,2.0592925314018392e-05,0.0005933708986844428,0.010378767632345631,0.028303401865517025,-0.002485848973030539,0.0001089326801114747,0.01745252332940871,-0.006292111909482679,0.03484096433198674,-0.006886200900065179,5.083561589911727e-05,0.00647465379717409,0.03206404394158961,0.03286679550588352,0.05195626302049073,0.0019027595261787568,0.006922921910197851,-0.05099833260381773,0.4062701778308806,0.08229356363642652,0.00010329829197817438,0.013956146641174857,-0.016200181931673784,0.08441438499289994,-0.04128674676623834,0.00029717458369315147,0.024347590870292465,0.03344086250203147,0.2084655860846662,0.011762922707191224,4.518601635112245e-05,0.014945799850490105,-0.05629696784471735,0.29775106170670085,0.17587509333433118,0.0003116150991892896,0.006973230326234363,0.020505445389501414,0.2713352734724392,-0.004984058831267748,3.136123686178766e-05,0.00034268125273011034,-0.010900988646893133,0.11746803073768435,0.025780040798641584,3.1004726751922676e-05,6.407650402160021e-06,0.022461223330285694,0.05359215750578366,0.011653164894510435,0.0001350065752936335,0.018021522505110035,-0.009860186202338889,0.05782427882438275,-0.006676662528095032,3.9388302753926865e-05,0.017281306258697143,-0.03329955676451072,0.10254374983057345,0.1456941311555208,7.199571356094155e-05,0.004962839105656399,-0.012209415117183106,0.042200586499445254,0.03944007026817846,0.00013228937624164733,0.001557392029434706,0.06103459742119307,0.05367596285026025,0.0200168805463726,0.0006499378091020297,0.05153164107425768,-0.03239662828300261,0.1013822651402003,0.05344591672689815,0.00013450047920768166,0.01000388557692966,0.0010934256498816696,0.004629715089292329,0.001286173521132572,0.0015158428047733407,0.004000117431927063,-0.00552068919852868,0.05725566901838933,-0.055222957114132144,2.4794593909328492e-05,0.018901591387670634,-0.00902141035747894,0.024754573377082853,-0.03312211766042165,0.0011914896160215782,0.03440056876699331,0.025205032899302652,0.19534689692543455,-0.08543084889378387,8.592239914862245e-05,0.006913024797972422,-0.0016521465844321613,0.0027229487826072704,0.00010652996779032428,0.00014320378292619775,0.002034232763243802,0.017166519152051002,0.021037412870919377,0.0017670120514705434,0.0004683751291805584,0.004670312971411742,0.0052042107519261775,0.020464122441757885,-0.06947672230315662,0.001971115582114676,0.005539963590348865,-0.01780709045785422,0.06878007628772448,-0.012830007142003596,8.306549971495196e-05,0.0036013192762434708,-0.023768678284811204,0.02895387546698307,0.017938406131690333,0.0020406828848063747,0.029934173425016853,-0.023177132901179887,0.0779883688251799,-0.026484927889092208,0.00011774593174369011,0.005164096021464674,-0.04756544146988124,0.12871367174251092,0.02468710130906907,0.00014980531725056193,0.007874262289717951,-0.018552764131250364,0.07839508371414748,0.004595769339558518,5.776086921191241e-05,0.01707408672920318,0.05329235477145336,0.1814925786394581,0.02472522579500691,0.0027830697905124185,0.024439491277482815,-0.00590019261573052,0.0301159274696171,-0.009482799119065249,9.745643437999859e-05,0.007235748665738722,2.078048784056819e-06,1.4846184659587942e-05,-0.019682331179302164,0.00010150832584417836,0.03199942918496877,-0.017978560725891567,0.1059663399628325,0.01339158219221504,8.024827133459385e-05,0.0016776519873605046,0.009374404509513285,0.039179715534015586,0.004619081044845694,6.013534487989083e-05,0.015529137188863012,-0.003780200497494176,0.009001845217722486,0.00033784441849576984,0.00020474470911756087,0.01903760545862007,0.024056187700600428,0.10966739614790821,0.04938011426254048,5.454609286630651e-05,0.002659300796148733,-0.00039801208792764005,0.003719881312298989,-0.0043620624581467825,2.7605680941358612e-05,0.014328576321251233,0.010908780250979131,0.03715553720832373,0.008481945946997348,0.00010262699508931408,0.00015343685014139975,0.011976374888625381,0.04766372544957199,-0.09292580239973858,0.00039606399941924847,0.002817412968678998,-0.0009236375742953068,0.004718697044469813,-0.009472108355834574,0.00011211179161009545,0.01279986133301039,-0.0017122213832475152 +2023-02-15,-0.024440839195945502,0.16189695463406026,-0.07057491406763464,0.00015964819696561922,0.01882631431969926,0.035407690015953716,0.11703630638187659,0.032419143392106574,7.259179139162767e-05,0.0011500511960425587,-0.020028242332748813,0.059535898166162296,0.003916225755964663,0.0001556184667972737,0.007035560184896556,0.011571802632255183,0.014471152034495999,0.009414082146176632,0.00026987693411510043,0.0009791017415141134,0.01711628851437488,0.031392487247678555,-0.027390609856721072,0.0002852867780231659,0.0062784890699874455,-0.004539460332966144,0.01399435502632906,-0.023328047026164696,7.082687457963593e-05,0.0072139288703535085,-0.016993787657288296,0.06229541879314337,0.014311218517283642,8.004310600154776e-05,0.007644590085773367,0.0032803625627437394,0.029678563314342914,-0.01448483944453958,3.790334928937954e-05,0.01236075259845383,-0.00040150186857881024,0.0003348453481873977,-0.03551629915449635,0.000924672810302003,0.010195778798926724,0.016622911751601032,0.03854610957828975,-0.004622539998566995,0.00015079551818619522,0.006400952922964618,-0.012373249420883695,0.008136635472820057,-0.07614360075146062,0.0007432985165989992,0.018860998964523867,0.016146892868523357,0.22078336413086647,-0.0794785409261132,2.1794424557393817e-05,0.0009397579602545274,-0.009108314869942178,0.024630822290828094,-0.1024612765531694,0.00010985255504547583,0.013764981802636592,0.016247496998863804,0.09819935071483295,-0.050646837084579274,4.657358483355272e-05,0.0081842220212467,-0.003712225940173708,0.003027030873015799,-0.00836782663323158,0.002391886256087876,0.0017951916773297635,0.010463752144520251,0.0541475170643718,0.0047734992267782946,0.00015902338909782096,0.00039116678157979207,0.02094645196737228,0.12064677707876685,0.0026963320440206865,0.0002688456273822197,0.0030546114477503347,-0.013622249209404781,0.07795118175925667,0.00045376181012454965,4.922515287110936e-05,0.008571151888588412,0.015010911391484449,0.09116927792569668,-0.010072450558541649,0.0002713597020105926,0.009030824469040091,0.028691425859193025,0.42951597974333655,-0.10594598065817268,2.772062621827126e-05,0.0033649977124857243,0.0007443486866187777,0.008500078691326114,0.0010309854962675233,2.9257363611894556e-05,0.0183527862298834,0.031019563618014213,0.08176044107020145,0.018662108739768285,0.00012221238345090163,0.013255996486233525,-0.037005239130954076,0.2465038640939074,-0.04617791089140774,3.46762287808586e-05,0.009443661753019162,-0.01067588017604277,0.03500899863188818,-0.007474763521572022,6.760851303334121e-05,0.011351755597127065,-0.008955726805265421,0.03257113381612749,0.019312845760024535,0.00012572352690767163,0.0028695393869653573,0.01616742346679323,0.018469303277070803,0.0031982537777408616,0.0005003407352525984,0.012795863246421268,-0.03433425469715131,0.1334153490783971,0.048222467210152456,0.00010831979681278747,9.835810772263094e-05,0.0027053192890164075,0.01144825278603856,0.0007531153637619259,0.0015166958322003926,0.011143772245227194,-0.0033100708663428863,0.02930504234275112,-0.010176640672881739,2.904538475956791e-05,0.0031089303746234436,0.015129727190640867,0.04001272074488836,-0.006608462506958418,0.0012362442477876563,0.0021443331998563025,0.010031844827941437,0.07793608412685012,-0.0028731296537262215,8.57171786807001e-05,0.010081481520885114,-0.03774125479335198,0.047952444770901145,0.06480428590882696,0.00018575947186186124,0.014666046072455103,0.024137714156890065,0.030820966396208287,-0.026485047122806943,0.00044952495044892613,0.0006440030312520259,-0.012815140449159426,0.049656784541764074,-0.005548286654686191,0.0020002999193432943,0.011231647060818218,0.0024574850600484087,0.009209083671567414,-0.002928645529917936,8.561795251201832e-05,0.01301404724593545,-0.007185467903351656,0.00916108428895043,-0.0105654334884965,0.0019497789014782292,0.0004943151190187631,0.013792790772498922,0.05143478659679567,0.019250404611095572,0.00010624567071827076,0.006982707150488818,0.021212079464678492,0.045309023733559925,0.014250446452348025,0.00018978370330324787,0.009496425719053911,0.0004341616487531578,0.0017381920379091105,0.0011341470030712653,6.0963181932482994e-05,0.004376512271617937,0.004644490993621457,0.01724913876669602,-0.011822196833332526,0.0025520475795427384,0.01635073420376672,0.014191990464887755,0.06768974413431594,-0.021941672407387217,0.00010429440455154152,0.014124190001991757,0.033923884262818414,0.19319797826619547,0.011718277978553853,0.0001273396875372077,0.019152537168566013,-0.014208479934250978,0.0741182137188259,0.0051297439917898065,9.06716195275305e-05,0.014097672831142279,-0.0566160063059531,0.22656558580705768,0.022673820729326548,6.280477766643265e-05,0.003469723360715953,0.06701880101037,0.12720184851874947,0.05826950746297431,0.0002568813798312156,0.006471124874096495,-0.002774763094748615,0.009666484864271442,-0.002176417323756034,7.137920559521457e-05,0.003501432634771391,0.004758013368174877,0.056441274838305557,-0.009357709857041634,2.175004344457211e-05,0.010623177514969993,-0.011065246763966995,0.03477273431062058,0.006738533934294139,0.00011123237898473912,0.022434526461494252,-0.039663481625987304,0.14557824597121935,0.21062699856180733,0.0004294596067210151,0.0026810723271724138,-0.03391705470961732,0.1659473404847663,0.0013867254295450901,0.00011706299503092792,0.005869413463698585,0.0010934256753919887 +2023-02-16,-0.0009812253891165767,0.0064065750603003015,-0.008090455489627332,0.00016196808303847705,0.010743398992367462,0.029981840277204026,0.09139326218804229,-0.0009825665796075924,7.871448049211846e-05,0.034823481489513086,-0.013136616280935707,0.047650723271158775,0.003261376800932752,0.0001275296658905776,0.02614343971061754,0.028733923530585542,0.026039954129945923,0.017695887935257972,0.000372411062346322,0.0007544777149641366,-0.017407409854374323,0.039461707078337294,0.0041144088995898834,0.00023081076403745038,0.0017045421439073787,-0.001862994314852212,0.005581586676293646,-0.037944242646531456,7.287869647454899e-05,0.00375382390999748,0.01847211025164662,0.06495717053311546,0.003328736254106415,8.344095537561061e-05,0.007847068024298217,-0.011022569727151647,0.09735402069718734,-0.025350794658708625,3.8826440440614024e-05,0.00708461762218353,-0.016485578821363298,0.011816910824649984,0.011536559496929508,0.0010758334135879976,0.0076225109919512354,-0.03121495052148437,0.06728367955232355,-0.008813949387943873,0.00016222388711329975,0.01836399325170807,0.0007402142733440433,0.000510067480530421,0.01740106954274381,0.0007093395541060354,0.01736480349826553,0.005018959566405149,0.07093491889460081,-0.16345315105788066,2.1085136159413265e-05,0.001639759211066396,-0.046849460671223406,0.11425333211225484,0.13455844755564847,0.00012181107018070657,0.028178442111990554,-0.016994016586430793,0.09933766223794278,0.03498518689993106,4.815528093072388e-05,0.004307979191999227,-0.05493918898312882,0.05349801299060887,0.16889490405713978,0.002002938270372481,0.008642239257189167,0.009878646882122179,0.08089855686750715,-0.021945952144740665,0.00010048674878092588,0.00086776520862278,0.007263263225962579,0.03818841673059547,-0.006218030444777421,0.00029451563986121503,0.03665944855966687,0.06157023485157721,0.3645795492742004,0.05744200233754658,4.757069127826482e-05,0.04400985890395965,0.012792650202687996,0.06608013334578028,-0.0023489863049241384,0.0003190629833073624,0.003105006860562233,0.07234113682043518,1.0273007155073326,0.12470918936777822,2.9222540551222164e-05,0.00018176798335448052,0.0039581731712970665,0.045760170341909365,-0.02372983203829987,2.8899402745781538e-05,0.0014358176255768332,0.014495068036263594,0.04139638935854814,0.004344333976563024,0.00011279258522594086,0.002363158109646421,-0.0692129651632737,0.4336609958067087,0.043171366235131965,3.6866292854809876e-05,0.027613550403071833,-0.03427072394116848,0.10438818645912075,0.10507298713000188,7.27862438866056e-05,0.007069971611387827,-0.004200574977399325,0.014661657777113911,-0.06672866599294709,0.0001310008936545458,0.00773443443032783,0.001259024320962358,0.0012885469670225747,-0.028273302846115417,0.0005584823184920984,0.027647063131700594,-0.05102268842256205,0.19794558992553582,0.03685039107664089,0.00010849344929439881,0.0010784120465319944,0.03161899755384984,0.1082860097730826,0.01633633583864314,0.001874109322294287,0.0011871803876247551,0.07818752809095902,0.7242073844395156,0.2138269558624759,2.776238224798396e-05,0.02592073124264581,0.01559789084928907,0.04268634936459079,0.0012466701451149679,0.0011946704790265817,0.022469934611250228,0.0022257557210046664,0.017639891044438014,-0.10423806455974148,8.402475276448156e-05,0.010327695080157663,0.017242111625091715,0.020269375025482764,0.011736021918710947,0.00020076845667886268,0.015185387936423902,0.0015307129096688284,0.0024613511331952817,-0.04761441541755664,0.0003569637248491805,0.004493281419949599,0.024874877377150842,0.09837877288828452,0.029141535127537244,0.0019597915849362325,0.01591909242298625,0.007215201309365523,0.02776182900779089,-0.005433690538916525,8.338554050105509e-05,0.0067915233723344366,0.06936924443472163,0.0822206436916265,0.09670463474174228,0.00209731316784165,0.004327029854171402,0.05512849219512519,0.19725896193963172,0.11707022067716663,0.00011072747781220321,0.008233879360813292,-0.005490659427973206,0.014788174525143643,-0.0028430307841084495,0.00015051171873195694,0.02905707079781508,-0.02889725485458874,0.11427095206681154,-0.02464571778963626,6.172124352364324e-05,0.014485532635909404,-0.040128288345839716,0.15451271143031983,0.010714271167266868,0.002461526296678748,0.003639579460336425,0.019208968991716046,0.10300060146017184,-0.05222147289057852,9.276942514586202e-05,0.0008285009471502096,-0.02401566464090829,0.11232085441390614,-0.13124371989333686,0.000155058292187074,0.013689105661941441,-0.008317449145776116,0.04893810140952111,0.001429466811535745,8.038809487032975e-05,0.01841893294658251,0.05621068468284264,0.3037236119870167,0.021269463657953666,4.651443115960612e-05,0.011769690148009895,0.054833490385209606,0.10496054118438222,0.008909793103864281,0.00025471189343273374,0.015804633239331737,0.012660325955352299,0.044732033524075294,0.01463651267204848,7.037859967862738e-05,0.004237330320737299,0.023559365273562383,0.23392987303436358,0.007004055238264329,2.598419017106136e-05,0.011294945747957693,-0.02329788391182825,0.06705174867239075,0.027166645970630756,0.00012145498172705186,0.009853581145923915,0.0032928782349427544,0.012612697181606554,-0.019520069534981765,0.00041152447882410236,0.01998727548416292,-0.0014528236955003646,0.007086216571075448,-0.032154316840035425,0.00011742762825723317,0.015382161976065718,0.004918033398804238 +2023-02-17,0.026531707563702295,0.15132266131941996,-0.004156986146193456,0.00018541625928153487,0.012588947476106003,-0.0038529377495177632,0.015846147890174585,-0.014642854204441103,5.8341664313951175e-05,0.026758352788448122,0.024597237916469967,0.0942388928969897,0.012741090194675671,0.00012074061146295858,0.0057259556330676534,-0.0033209387288455476,0.0035855118793235875,-0.0015585678506177308,0.0003125917800296012,0.007084333448697649,-0.026248174805506688,0.0644672966890621,-0.0004250594870961017,0.00021303816991188388,0.019397796810484813,0.038044964722031824,0.0989935830099394,0.1874978389087204,8.391447503620568e-05,0.0032502735397312455,-0.06222500983887699,0.2540695017247273,0.07406362598681313,7.186249530725422e-05,0.011856559767876883,0.019996364364437386,0.18197328033538085,0.03318522936566607,3.768270168092967e-05,0.002858139508208079,0.01180134543553715,0.009022947267054575,-0.11099223413505756,0.001008620730557013,0.009911764019593419,-0.010047759832655241,0.020402577989009695,-0.02723817660302675,0.0001722051302220379,0.0014256149444071792,-0.0010398598191186947,0.0007383038418162873,-0.04939656820353908,0.0006884367204211206,0.011395184416191093,-0.037148171808691864,0.495919517182223,0.361717405490712,2.2322818819642394e-05,0.006083096270932548,0.03621629752434668,0.11488235862590544,0.007061697671684737,9.364869800771801e-05,0.0024014875871692836,0.019596523554371994,0.09912941664807064,0.050480151409169685,5.564655740517236e-05,0.011111925534287375,-0.011433725671060673,0.00872625336598125,0.004541024554524119,0.002555541406306324,0.006864225508269829,-0.013216100103901477,0.10297788258760573,0.0037869062970903545,0.0001056115628926598,0.00319449737941786,-0.008431770149428502,0.05476652758324888,-0.0362448231973087,0.0002384030379391064,0.0009406853789776446,0.04476131595229721,0.2594103683038873,0.0123673255277615,4.8604499088019906e-05,0.01804682435851755,0.0064454557040334575,0.03419383056647311,-0.017029796541649014,0.0003106652521002954,0.012039793767612106,0.013926694587630068,0.18927569854198412,-0.031402153987434074,3.053398059257183e-05,0.006466969724875531,-0.007437766796426986,0.08049116854607241,0.01604286244722831,3.087280103604863e-05,0.003353956405897213,0.02439626865502512,0.07038441927208515,-0.04272252014681075,0.00011165280325993838,0.016811210749769243,-0.030935864480611183,0.20139029345433246,-0.018292596475980787,3.548265412936681e-05,0.05022151175463119,-0.006607608085650919,0.017658273692513732,0.0022436534649289777,8.296089227680597e-05,0.021905605838516404,-0.00238834094013848,0.007445897320331478,-0.01779549019741785,0.00014666546918129498,0.001159413541173291,0.07711038049443869,0.06445329712291095,0.06292946904863059,0.000683822314843205,0.008908992199256754,0.011643910586564592,0.03823754271368395,0.020053418715186896,0.00012817251194921085,0.002331747020149972,0.037583630754799785,0.12347761422160163,0.023414089982090873,0.001953573150165367,0.017430435103234276,0.035510359045835674,0.31257438708159785,0.02716363002877859,2.9213518742769422e-05,0.0028861569049161025,0.0005916390629580057,0.0018680982401377394,-0.0005377861896047294,0.0010354482513652442,0.025250181214947806,-0.0003386170179184454,0.002447903390843492,-0.0015483797026058458,9.211707727319964e-05,0.002997630987010533,-0.003657443346295605,0.005039116303336301,-0.004443184323498149,0.00017130443700061655,0.009184907548354168,-0.025487529621787842,0.03779229530721308,0.024640185050177996,0.00038710464966643733,0.0018050652767118702,0.019932636297722225,0.07473328669260938,0.014773431670073243,0.0020672880829183254,0.0041559485617532555,-0.01516651321854282,0.0725919697167308,-0.0333858292915162,6.703282733664395e-05,0.008355357616470242,0.010217093234681222,0.014156366661452693,-0.0028742401990314906,0.0017941251972412528,0.011860822359439012,0.01904855994836442,0.07208204866382104,0.018397168383515208,0.00010470105654411286,0.0035725445031723774,0.0369186244718629,0.1046995219259884,-0.09636506035662698,0.00014294243929606208,0.0018320943278332255,0.05113964124990587,0.22465816132511565,0.0445678980514604,5.555835800749523e-05,0.01068190245591573,0.07126388643385463,0.23300119114298465,0.04701936302450974,0.002898874540026807,0.01942461947796053,-0.0030814810509954974,0.0175137542916859,-0.0018046702760747102,8.752272274390878e-05,0.009993744310665355,0.03983733446892897,0.23132210592826918,0.060424441234832794,0.00012489179827175113,0.04491612573510884,0.05301315403819661,0.2611298439604672,0.057820617121129646,9.60231244182021e-05,0.0032072776659638987,-0.011881266572397567,0.05266942443991389,-0.002327936250004797,5.669588807073434e-05,0.01504780798714852,0.00862656420118024,0.016465700973079846,-0.003903818869299747,0.00025543889614562773,0.018197746604924916,0.0289275289984231,0.12451619080976985,0.07237442684819106,5.776967006389355e-05,0.004626688231835099,-0.03172050612133704,0.3154256316085977,0.03852295427590554,2.59462388831357e-05,0.007442917725997521,-0.027893331971367764,0.0838578072202007,-0.009474279256687807,0.00011626951428277051,0.0009492297953012129,0.004997158264361366,0.01880543048765628,-0.002306788954051388,0.00041885894591727786,0.006091624871564081,-0.013627749481840874,0.07148800738958157,0.0008493256683095478,0.0001091849414021301,0.002872548815944554,0.008673745595433881 +2023-02-20,0.029586190973105747,0.1880756912909791,0.05603161130796594,0.0001663577252814476,0.007615743201322981,0.025273586116279806,0.08949874234069356,0.0074057224383918254,6.77579820053843e-05,0.013460361026700153,0.031545245193705565,0.10664693334897006,0.009436630700566119,0.00013683044525063668,0.013831932807190228,-0.006692832042659402,0.007434243274303933,-0.01312980171727783,0.0003038372482552411,0.008359828867599435,-0.0014616259962741682,0.0034827864985890215,-0.015504837077462889,0.00021958727980917419,0.017613233227966204,-0.012594294498578056,0.03476640599444254,0.005859284309658474,7.90971411360359e-05,0.004682033197395104,-0.07461857337167338,0.3285535286500068,0.16779512383484188,6.66393359703433e-05,0.031445658511253874,0.025002410867728708,0.1748901007815529,0.043603858937085176,4.902473718897601e-05,0.04072515815582571,-0.007210532775460524,0.00652654233577096,-0.024336553426763715,0.0008519791808941603,9.42804550604472e-05,0.02170228847920782,0.047105930182340584,0.0019176476074181086,0.00016109862527376227,0.009541350000206157,-0.0032138544616723487,0.0024941806289498023,-0.002760065802654985,0.0006298290127114126,0.0073739895220790285,0.013686125620488172,0.1925088563205032,0.013515394655528255,2.1186177056730534e-05,0.002449868266159984,-0.04530244272860271,0.12588565449281497,0.0989505507594562,0.0001069046056135426,0.0053603604238004286,0.00998891487092864,0.05909843804805241,0.011702143006785888,4.757777492615991e-05,0.0015661990414476753,-0.01798886236351197,0.01369929990245125,0.01250015510133461,0.002561110391335976,0.009455736282413028,-0.013398820540954691,0.10481426207919671,-0.010010354963095025,0.00010519577488041963,0.0012510473112320945,0.016114177711957552,0.07544573013908884,-0.04094046314953806,0.00033073618680453114,0.01519742428435468,0.0028513837016402852,0.01464198251692493,-0.0015104118784898535,5.48550651138212e-05,0.022625707171303043,0.011075756078943491,0.07101735607291708,0.008709255965501863,0.0002570370276238227,0.010567683119362938,-0.028699121459848292,0.3249786057474116,0.007883148774382256,3.664747543841012e-05,0.012722356160101221,0.021370857936195607,0.20229054631794233,0.046295350624371734,3.529621036222479e-05,0.006449745203383459,0.00045270678019044874,0.0011424991879876384,-0.006476751003090543,0.00012763913569261277,0.009706582257488385,-0.06267575322785668,0.4296817116323995,-0.01282696239628215,3.369341790777416e-05,0.0029779272742354794,-0.001538311976387407,0.004338718776042493,-0.018682678864071364,7.860683353914804e-05,0.004159678571077151,-0.01124629928288294,0.046088017204476084,-0.07617272792429979,0.00011157585099149288,0.007864390230702359,0.03087767234447636,0.028462270271356917,0.006877124321234465,0.0006200840743835228,0.017678215707407977,-0.015506965482690059,0.06615638321846107,-0.05226181961132192,9.865999179791325e-05,0.00799750092099655,-0.00616248624036325,0.023037060809974513,-0.021539764200333843,0.0017169121286205852,0.02995951571338803,0.018085948816228038,0.17377912515724783,-0.0025140236351708584,2.6762451063276613e-05,0.0065573357001966134,0.010819139909679726,0.03465080567125783,-0.022618215396484002,0.0010208235249706613,0.013851031839704701,-0.0034986367687059304,0.02936224813073564,-0.026145049210179665,7.934785569619921e-05,0.020149593853480256,0.019030661745811698,0.030872671018862898,0.018388026357724272,0.00014548729568888302,0.00520882053272158,-0.00662670412759194,0.009281880256015194,-0.11437050367096181,0.0004097939410152719,0.015423868877085802,-0.006722570056973154,0.027682036508788612,-0.014468753797628063,0.0018822947929955538,0.022125448761718052,-0.009079611493951636,0.03296413161100484,-0.007890358342271881,8.837226718944518e-05,0.003417269654913889,-0.0028885694352320276,0.004057423325066022,-0.010778498773192929,0.0017697408753952531,0.008759038666746355,0.026473512965037735,0.07729602857525225,-0.07695391365583969,0.00013569705758977027,0.010037358838243282,0.0028199277469386904,0.007255389092842522,-0.005560046086120703,0.00015755698048337428,0.0034496299250221926,0.014594803636771412,0.05613163912434672,-0.012756724099329552,6.34606413423996e-05,0.018823545410109246,-0.036893637302709274,0.11323717714591426,-0.04155949985879635,0.0030880227945443615,0.017357103890089338,-0.010550792840527283,0.050747396848888494,-0.005517307823749699,0.00010342175357161055,0.007555313793480559,-0.045061676010673554,0.2391357061043886,0.02684825010049048,0.00013665442473263255,0.03287561566776427,-0.010348571744083167,0.06827173924512688,-0.10698668827243143,7.169488076494307e-05,0.0009197692521703039,-0.011970765451043863,0.050452767596404026,-0.009255999617940103,5.963267919635371e-05,0.0013660606683895623,0.03862496006196532,0.08234578467221773,0.010462328074511272,0.00022869468167961265,0.02100311433103658,-0.008666117146116065,0.033325562661063804,-0.00010174221930551742,6.466383246802132e-05,0.009696764197996373,0.042998633723108935,0.4195728305587389,0.034548113857659456,2.6441043089801617e-05,0.004133619968485014,-0.003974540092060363,0.014205972342983866,-0.03186146997205007,9.779685345278983e-05,0.009016672622698021,0.027193984504866,0.1025095280038592,0.04289343698969565,0.0004181543151144694,0.015639311170001,-0.01580035085338467,0.08009791278036857,0.0010436288277300635,0.00011298409922416403,0.012718656574299027,-0.0011365781597695722 +2023-02-21,-0.0326456637331353,0.2637509110765097,0.01707858718620073,0.00013089351135975763,0.013475717632189016,0.025052496106047706,0.10178660376615611,0.006711359053775861,5.905693531353145e-05,0.0029827381722447796,0.001397748234900531,0.004820448610457343,0.00013471424880760464,0.00013413394558927508,0.02256482473473698,-0.008965567497930288,0.008927982409431143,-0.010684444657962573,0.0003389161895040133,0.00048059818380761024,-0.02000333833037822,0.04302920140087563,-0.010814307206446067,0.00024324110460367275,0.004102153225373726,-0.01856442956431942,0.053202714383168884,-0.040190563790050704,7.618940087601318e-05,0.00020078522301411215,0.021993707106461285,0.07403775004474528,-0.014453685699488409,8.716358414369574e-05,0.005536089287611987,0.0020576309172928024,0.018706942197497425,-0.10758934507855042,3.771927069501938e-05,0.009777687426661087,0.01456411487683897,0.011803631482268326,-0.01568371023019493,0.0009515097447603817,0.004213993902233451,-0.026607842073552854,0.07060146737823011,0.012565370640745636,0.00013178252152785865,0.019064073689839475,0.011470092866838678,0.00815304010279722,0.041300552797092965,0.000687656755585715,0.003755699986779857,0.005674628806577702,0.08272072175215073,-0.011002416027396166,2.044306138634726e-05,0.006559536720667638,-0.04288427538707246,0.1188441160195457,0.0786448120539764,0.00010719423504887853,0.012195591935491135,-0.004779528361617941,0.025144155807865703,0.0026509550765849697,5.350690147777109e-05,0.009013615257984619,-0.022708656168283298,0.022070875450200873,0.018389197029798975,0.002006757280681897,0.021910865055358438,0.04230878005968468,0.2854310374578349,0.05040194274668943,0.00012197797373284639,0.009449732165345759,0.016572793069772145,0.09338334990424205,-0.02272176983574627,0.00027481123921439164,0.008879168436437187,0.04816562837040138,0.2806675712755796,0.023813414476620613,4.833992251484894e-05,0.02966431501546023,-0.007154869818109475,0.04034805695739622,-0.13262736080977205,0.0002922576705833426,0.009886897097259092,-0.001412697632298557,0.016602970123287805,-0.006674375604709547,3.530967027875249e-05,0.014939553158435023,0.04073232129667099,0.4340476705908305,0.06649213748390387,3.135331314648475e-05,0.004200709497834378,-0.048771056753054945,0.1465583683337071,0.04561120421794968,0.00010719494366645352,0.007235498927807186,0.012586950358921522,0.09171197710285561,0.003090865710823232,3.1702012986598995e-05,0.03956803045036336,0.009299923224997467,0.025259947120628498,0.007612058523399755,8.162520941812965e-05,0.012953569093282494,0.01534248436751357,0.06075683747273034,-0.09148370939019437,0.00011546467175159953,0.00798027070068681,-0.018589079010975278,0.019385740519014753,-0.020205458190673178,0.000548088941190926,0.003627812600648956,-0.027181074180898136,0.10556420810408877,-0.045235460628440596,0.0001083767019528873,0.01409065707750254,0.01026287977691408,0.034924184943174306,0.0012507695093742519,0.0018860888026655995,0.00735137186407094,0.014294573313830815,0.13802858474820798,-0.0018179816836553127,2.6630808807345135e-05,0.03841456351066087,0.0035860029600382434,0.011150343963264657,-0.007189056596655696,0.0010514621623122754,0.0014154192544484486,0.004904853437264893,0.033504868031910454,-0.0016404492068441089,9.748634012848767e-05,0.004244967202612331,0.006405998702154961,0.00922217789836494,-0.11054024254234657,0.00016394521174425747,0.000287694832162269,-0.007919688198881046,0.0113327525212655,0.003273447829438412,0.0004011221019712471,0.010186433857586724,-0.03528930849542415,0.1258540754483306,0.04603266210911134,0.0021733326571673965,0.003836707971685258,0.01337516233025309,0.05259633217493095,-0.005703110214843376,8.158944379724369e-05,0.004587936163344946,-0.04839250485782005,0.06032159286314726,0.039948267554279535,0.001994263281443726,0.0022663843859200986,0.002399412858921775,0.007794923347312966,-0.0021443558131276144,0.00012195768434390457,0.019398944593639812,-0.007111167834135931,0.019373685073625496,-0.042851644177882696,0.00014879525054431388,0.00017860550760013388,0.003820422472450316,0.014989249009189007,-0.03928275049130894,6.22078858008244e-05,0.006551292484063595,-0.03815375579231578,0.11353954574888915,0.013740306670326474,0.0031849909395041437,0.0386152148720631,-0.040002309823072214,0.22136985794576025,0.016470153833469822,8.988912512154503e-05,0.0016097974358127206,0.007690953463720429,0.03912588756772105,0.002714946797518912,0.00014255313259365135,0.0001831668548882663,0.03287893756335131,0.22361092136975183,0.057101243126717625,6.954620928320389e-05,0.01285753402351137,0.010740014391534339,0.04824195430641718,-0.03761158431535401,5.595351385695442e-05,0.0022436868835607826,0.011221006325766853,0.02254115480922902,-0.02405959341208708,0.00024270852982894033,0.002777215695314644,0.005049646814191105,0.023280843967124182,-0.004463345539267399,5.393574218364964e-05,0.007414686060819316,0.013456392660097507,0.133457364729279,-0.019777391580994116,2.6014614338513043e-05,0.003721647711843224,-0.01487813313967204,0.040465879806414466,-0.02679242668051912,0.00012851931971751414,0.011109740429681632,-0.014169561804706068,0.06599822853727035,0.01570426596411914,0.000338416953853753,0.0014973151401576955,-0.0992468104287626,0.4754199855968192,0.10301561463510792,0.00011956688633556621,0.02260077930839025,-0.003909347343283917 +2023-02-22,-0.006944721359092111,0.04153026010838799,-0.003904575802121578,0.0001768384738176448,0.016421253709885817,-0.002477317203510848,0.00771869539606488,-0.0473118167314045,7.701019844636585e-05,0.019670103917210545,-0.03581400277700656,0.126726602822322,-0.1656892307052724,0.0001307321111806921,0.00020161146736336695,0.0261821748691093,0.03039059556159697,-0.13438309303124263,0.00029075980202282833,0.007226686972445718,0.004716963046507951,0.010131833015280211,-0.03636603850950412,0.00024359716112831148,0.015584094021887386,-0.013279600082552004,0.03888582563272395,-0.0020880528632192846,7.456592535358639e-05,0.003767234307083412,-0.017081785877516846,0.047286822228303556,0.00029371499423198964,0.00010599441916227374,0.00299940503556907,0.031710976851354745,0.25963442606600795,0.04763791169902702,4.1883788525420217e-05,0.008131421135575247,0.027046761934690768,0.021528712592567587,0.03827153575980284,0.0009688175670423826,0.012971566320212678,0.04004221913004644,0.09480755984112771,-0.05889156961317876,0.00014768522722091422,0.015184386719688732,-0.02513797062760312,0.015562972357618067,-0.0796924647903558,0.0007895179832891878,0.011794882727745752,-0.024558362270892673,0.3624794318241856,0.06962112024090832,2.0190116390305137e-05,0.00037614410787174606,0.018907006881784143,0.05884394563461685,-0.008103897333801333,9.544914325928898e-05,0.0012673953214616266,-0.02118528734846075,0.10601692334808373,0.03244568022317152,5.6249799740401625e-05,0.0031197157640966114,0.009510605428327334,0.00982194699829341,0.004538756512303422,0.0018885720175187525,0.006679004579906845,0.08493322437670661,0.6770092704857981,0.16515748555800192,0.0001032369353881242,0.010175195365067937,-0.03831805702880201,0.19144351353759403,0.05422414791161214,0.00030993530872861196,0.006155042898828282,0.0904028633734151,0.5146586541108805,0.08387058933245131,4.947933594158695e-05,0.01348327507099492,0.05732519276040203,0.32172279497570283,0.10899549104570859,0.000293663856775015,0.004685990976606175,-0.019944250281458673,0.29638164350115315,-0.11708374003833466,2.792522267268513e-05,0.009870270002551342,0.051305985671282035,0.517716160367418,0.16568408964906545,3.310991173672991e-05,0.006752370225097259,-0.01310173795691916,0.030725904077099006,0.002716434784427846,0.00013735579738153884,0.012544084830143312,-0.00019266640447501886,0.0014041933314907196,-0.0327941001285912,3.169359197812417e-05,0.004243676300178722,-0.017375341501170902,0.06294239780965154,0.01795348124229009,6.120225837021646e-05,0.009126648778592934,0.015639054181955325,0.06058258378675619,0.06085278778026591,0.00011803513151642529,0.007557912938746909,-0.002367036938402875,0.0026929175555004017,0.001319495598414757,0.0005024091486601689,0.02789880492725183,-0.016332972751330967,0.055996292963040074,-0.0167376519490637,0.0001227699190747108,0.002589120079296349,0.04604085699434493,0.15341140395840105,0.012696390678897669,0.0019262157479381207,0.060791576205552325,0.04041500998838162,0.36041441113482275,0.0029946135567369917,2.8835184720358646e-05,0.017223100433160332,-0.02420016534124687,0.06714641930116338,0.029105969563008885,0.0011783294844708735,0.01716344221249749,-0.006842110812383645,0.054402339857716725,-0.0001975646839815116,8.37525748412092e-05,7.431231247444149e-05,0.028604661706080482,0.039994164463344924,0.03642684831149372,0.00016880510407942827,0.0017887670219384703,-0.03480368967722258,0.04956973861133126,0.07014622043262135,0.0004030069842376314,0.005945282013157915,-0.03261383964087355,0.13597344580568657,0.027131338375320942,0.001859080387078018,0.012667114521804699,-0.018590118271376854,0.07325358293278135,0.019352051787317682,8.142235355204198e-05,0.007627667949855508,-0.01752066379473501,0.019981568197510326,-0.006605570462160195,0.0021797072974938593,0.003247844957108813,-0.012916968335149076,0.04252156943458455,-0.0009505096242492999,0.00012035588920923201,0.017301676780196187,0.018348245879161073,0.052953339307684005,0.009306075799859068,0.0001404628819921403,0.011258210070607167,0.0008828996887445745,0.0037752213979205533,-0.017883311806556845,5.707985521305859e-05,0.008995545187694636,-0.04654577696935725,0.12065918560880978,-0.030335225694038716,0.0036562674186906307,0.04271658593476788,0.006719885245744449,0.03797830140513666,-0.010321691684491393,8.801706663097443e-05,0.023784291389971627,0.0007173652351507366,0.0036395230317942994,-0.006076895697562563,0.00014294094155621053,0.032361338775122796,-0.019366380701202168,0.0960142494334046,0.0012937243149122495,9.540287715778913e-05,0.0058632500635584115,-0.024986151567618246,0.12038115300743382,0.006319692275335506,5.216608760054352e-05,0.006818516102480922,0.01731938777264309,0.028141834572958154,-0.007262036234365017,0.00030006098063549506,0.02633342157180979,0.018593518529880407,0.07768026996714936,0.01089443418778388,5.9520316316798776e-05,0.002204266523091204,-0.018153932827730014,0.21137962116952339,-0.03398749642442905,2.21584253307448e-05,0.003156956927292859,0.01033364708113559,0.036343219456448944,0.025028553428183827,9.93891996196579e-05,0.0030378204122429673,0.0011012730629271325,0.005188122815294083,-0.010363973054510419,0.00033458983220824626,0.008960270090939772,-0.04133070701005851,0.2056909925667095,0.020320260011190996,0.00011508781810749023,0.011024353381557168,0.0014008323368506037 +2023-02-23,0.031754128109056055,0.22608248237246445,0.055558693295550486,0.00014853194340263095,0.00482639273315573,-0.019930090735856745,0.07837179250755633,0.01389194046905513,6.101828857582736e-05,0.017795193602774782,-0.00930104606897081,0.034922516437565165,-0.08158223336944209,0.00012320362027697657,0.0004036216663770967,0.012430745210604081,0.01240669180015077,0.009581256506893331,0.00033814971628106657,0.003293823438469059,-0.024980829289678357,0.05517849801499496,-0.006388116347963146,0.00023688346621366705,0.027615776823923757,0.0034747441101540297,0.010420696261915576,0.001468240763264569,7.280694860511532e-05,0.006659080757166091,0.014832536107474878,0.0522214697182581,-0.0030549942107014408,8.334051484202735e-05,0.002184073046179564,-0.005614834187361428,0.04628079360790101,0.00043977703504501276,4.160396789505107e-05,0.01049647686686051,-0.003865802900229126,0.0030619174417533756,-0.10303224035050441,0.0009736234321826734,0.001486192631708461,0.007577725965226363,0.017238246178424472,-0.0037011554468319397,0.000153711975304462,0.0014120564576854205,0.011563258773253905,0.008807459117192487,0.03363979268163436,0.0006417324006820739,0.005260677565527765,0.008648576356863497,0.13740905893322763,-0.00026803387801462,1.8756510659826892e-05,0.006274101858066604,-0.011727799364209287,0.030145549841552804,0.0062682896343272,0.00011556979843479184,0.009767827541278072,-0.001297783168372987,0.007223846752815089,-0.13892364360278328,5.0570288510366394e-05,0.002916235098006427,-0.024022783643846215,0.020990720958670862,-0.08347967161070574,0.0022321272383854797,0.001673134412603305,0.05118893980902084,0.4205878317308265,0.03777893697490741,0.0001001547471538692,0.012321359158612618,0.039820156142937976,0.23958497373267426,0.04121228560155549,0.0002573662615046651,0.00983747655099929,0.03411993513368451,0.2240004635612877,0.004644397548928638,4.290621807238095e-05,0.019451563539158723,0.026147346687399046,0.13350014995627343,0.02349595702824957,0.00032279937052255656,0.018902590310201802,-0.006755398856492266,0.07832177109564555,0.0007345503349317187,3.5793051692080366e-05,0.00776876768878609,-0.004450111672242066,0.05696243984533864,0.014301805907428326,2.6101414023162704e-05,0.0016752277803182866,-0.005933426055518625,0.015869851294189902,-0.005019742637655461,0.00012043575316785855,0.017463237896542638,0.048598363974213486,0.34650960564525746,0.004726767593112372,3.2396548786563704e-05,0.04191557534494256,-0.012907296916211012,0.04004171707835486,-0.056411227904766964,7.14660847666596e-05,0.0047488250451640165,-0.00836509289886088,0.02856685462028213,-0.0020516187467545166,0.00013389271233552624,0.0005753305682996816,0.03141748476770491,0.03661189399188394,0.00517222815274693,0.0004904839248612819,0.005564249578792493,-0.00153437898073514,0.005218025569534277,0.006839776252659353,0.000123769160915624,0.0019446357314989132,-0.008313660978665009,0.03260129889455064,-0.079178399164822,0.0016367282624214184,0.0277917527495982,-0.0462353510000906,0.42025604486875623,0.0839809374902809,2.82906147891104e-05,0.006056881762132017,-0.0054788898151258494,0.01494604163827114,-0.05045067077106895,0.001198498923986547,0.005018288797585331,0.005440400461873183,0.041605901764935616,-0.016800745717025983,8.707662195853547e-05,0.010443365426458793,-0.02837687530577267,0.051452065865613676,-0.03022521997217992,0.00013016887192503467,0.0047045671698018095,-0.0016338963009273203,0.0025578565697350186,-0.03478449076154485,0.0003666504440747619,0.0296005871581905,-0.0027301145483452044,0.01322134752931955,-0.04874338036355335,0.0016004993032314068,0.005541316978760537,-0.023519746119923104,0.09358927811523778,0.05012805956055015,8.063004505627904e-05,2.3799315556200656e-05,-0.0003993347740759976,0.0005762799808767287,-0.016752955485312776,0.0017225855068907859,0.028511509470515003,-0.050286491139786754,0.1841042744553594,0.07932822124503762,0.00010821899522890586,0.00264603793369,0.04261438047363022,0.11910270639816747,0.05482674042620528,0.00014504238250830326,0.003371706040896382,-0.008898250018161882,0.03881948008854588,0.006385831266778541,5.5945970838228535e-05,0.046070402833065516,0.0054834632240938945,0.015375139185697472,-0.007185128305716714,0.00338028981690636,0.015200256004382257,0.029540606748040227,0.1573404450505973,0.053559941033163784,9.3394135768893e-05,0.008401459084899622,0.0021351971374573672,0.011606825313427138,-0.08129306300738028,0.00013340905710856158,0.0027654933635811976,0.01573789208619694,0.09523527908946039,0.012526932111382222,7.816231305082836e-05,0.0044381613924549075,-0.000621142612657026,0.0020777956930908793,-0.001080454587048661,7.51338905103855e-05,0.009332938980364993,-0.009861194029447509,0.016540360606201517,0.004830098589428875,0.0002906791787593922,0.013994789346878771,0.016704890418325038,0.07269965811215,0.003263258050446407,5.7138079433156085e-05,0.02171293107359679,-0.003996147834979353,0.04461222744713937,-0.002761571103050106,2.3111009924676047e-05,0.014585110882874258,-0.0037514917194658346,0.013066472883090976,-0.0465657305761834,0.00010035859790601368,0.0031493056339878256,-0.0009997383518357157,0.004968007411464699,-0.0011093469117461241,0.0003171992038733343,0.004775990996858477,0.03225532635508346,0.14548862055258793,0.031543366908118514,0.00012698259857228097,0.0070608459320677395,0.002427691461679367 +2023-02-24,0.012061755124728521,0.0821142615670168,-0.03521840786369948,0.00015533828263816565,0.008250256126410635,-0.01826331385270516,0.06990844646886467,-0.008951624217446628,6.268454211561638e-05,0.01602006824239671,-0.04306950732021197,0.13632845865662988,0.06405181639590214,0.0001461438633204272,0.015732176748810833,-0.03325142764179259,0.03833793944215388,0.07044676799841651,0.00029271797065405985,0.007212791432445021,-0.002354810215454493,0.005780688210134242,0.0003971190052976678,0.00021314450354183376,0.0012889170660958988,0.007203013883321879,0.02118191354842716,-0.0031966498767806834,7.424988758931299e-05,0.004173137760994004,0.050126702206981455,0.1731288841970884,0.06569896690659383,8.49551006692997e-05,0.016527700603304645,-0.003061450263034331,0.03146717283038231,-0.1682403975083644,3.336323059884393e-05,0.00532540989176592,0.02400598910053497,0.019300117653167814,0.023968306588893856,0.0009591895413768833,0.004886185660887168,0.013287991963916345,0.028978570535996995,-0.0069156569465026446,0.0001603408880228558,0.00813907446944369,0.007072631615984111,0.0048743307987712025,0.020288889415084874,0.0007092353877622511,0.00010565541238728975,0.0022071092667929042,0.026187714872152323,-0.02182143484143848,2.511591588351774e-05,0.0013304263650224277,0.004802762707928774,0.011405886795541307,-0.013942971156408914,0.00012508726900847187,0.00846066239034237,-0.008691579478384176,0.045485302929248364,0.00997374241801456,5.3788499933316e-05,0.0002015538563299985,-0.03693371859955767,0.0320674175343722,0.013718532389676364,0.002246373783215438,0.008633219481508145,0.021745220783173765,0.15302906500566596,0.004024871858743387,0.00011693432270184986,0.004294172372678864,0.02123146590635863,0.14094884323257423,-0.003978234836134672,0.00023325270913759178,0.03263520494237979,-0.06612291058767314,0.44317354910815554,0.060693249873627,4.202803511713619e-05,0.03865865734886408,0.059639069832246205,0.35939781100742557,0.13389744137735912,0.0002734904974314916,0.01014870828905547,-0.05103722905701412,0.5682275299090316,0.07768003941996189,3.7273059941246994e-05,0.002427298043021463,-0.005615182800273869,0.06116886837772394,-0.03158581169759592,3.067009788582748e-05,0.0033354482620090863,-0.0068310246366258915,0.01998674168415616,0.0007556237692855353,0.00011009474957618986,0.020765006629836033,-0.08848477686716166,0.5573162696372566,0.07875621498064217,3.667407886978341e-05,0.004772795151882492,0.010030456560453023,0.027883202882161708,-0.020272232814689914,7.975454192724636e-05,0.00650976912202104,-0.0024144034080840226,0.010672170933454525,-0.005477686539704215,0.00010344408404454488,0.0029950407805400038,-0.028573668175594317,0.025222294165080514,-0.17111100195828832,0.0006475256430585394,0.009211954316870588,-0.013176777745542791,0.05452449842227415,-0.03196272088887953,0.0001017193439845363,0.01806327181148421,-0.016004069083372482,0.053166246555166954,0.0004567658627163142,0.001932028778378647,0.03025840576422066,-0.07118882861491757,0.6449678492957579,0.13686101206000637,2.8382848293501758e-05,0.016397208623473086,-0.0469901218479083,0.12275794189393109,0.027698687692696802,0.0012514924741375021,0.008765093000201864,0.001035454530127453,0.008079391697190469,-0.020430332964886024,8.534498610987899e-05,0.01239636269365619,-0.0036352270297222667,0.004080176954160879,-0.004704761295079758,0.00021027997981792082,0.009483353534233642,0.004697939359397529,0.006722729620766178,-0.03214505374219696,0.00040111201911805405,0.012233290721312217,0.019192650920601132,0.08513732022281097,0.013543885649110153,0.0017472913594460445,0.004977093120310205,0.01651705454856132,0.06241550757874068,0.005127344473140503,8.490445269870301e-05,0.0044508583350932555,0.05816916220646657,0.09173730340090033,0.060519751781331635,0.0015762461203502832,0.0222889453849558,-0.0031470205536386644,0.010764097325614766,0.00117368436806372,0.00011583451910484279,0.012589475734970318,-0.007280868350201019,0.020088836482208005,-0.00778545820084836,0.00014692265600632293,0.030093925045766374,0.01796971659064344,0.06924917588157598,-0.019123385382012602,6.333452873927028e-05,0.01805039189426902,0.03236609469243102,0.10178097977880605,-0.1419089973081322,0.003013989473047223,0.0023080610777737047,0.020154893568760227,0.12387794927874467,-0.058360289436926706,8.09332671548131e-05,0.0028135598965276015,0.034960016626330394,0.2158050192142106,0.034070230926529,0.00011748187618167165,0.006913897282243996,-0.0015360817031829647,0.009699288246744122,-0.02033471683997628,7.490712845882232e-05,0.008454455513052492,-0.004694332546999881,0.02269281713111917,-0.026269966476961674,5.1991558171964e-05,0.01609427658115908,0.03591793120936877,0.0767600179004353,-0.05631695364700628,0.00022814220835314943,0.0136545022245495,-0.008903373894597832,0.04255688403319894,-0.023358030193098255,5.202345194244433e-05,0.009677307445783365,-0.006040410774067494,0.06562505676188048,0.01057226971070448,2.3748056141191888e-05,0.0063805442433139984,0.02355226616170031,0.06872263830477161,0.03086533361823407,0.00011979586870192862,0.010048757149767797,0.01543377283190598,0.05060365905583774,-0.021443361577730958,0.0004807487387612529,0.003191156520914483,-0.004162842211027398,0.019054402912061775,-0.0023925041122945267,0.00012513142816622966,0.001127263819020695,-0.000933376847836111 +2023-02-27,0.004814947476637013,0.03765395665087702,-0.12097511169371937,0.0001352282785926485,0.011619163110644717,0.024181900744094553,0.07737874908580648,-0.12447510983766595,7.498583920519777e-05,0.0019855830247475495,0.0016274066070931647,0.0051122093421508375,-0.01798426322774,0.0001472599503510212,0.004741957086047707,-0.03402922751632848,0.03508503551930738,0.07537480147356197,0.0003273392071980913,0.003315422513107535,-0.008251210496001275,0.016653282663487864,-0.12015366647405247,0.00025924810182055016,0.007916453627128043,-0.00999824332922379,0.02430133561798748,-0.01618019248960656,8.983390913989757e-05,0.002988244280550785,-0.03235661165850444,0.1302926105859991,0.021604154472206517,7.28673718648601e-05,0.007671909692823499,8.113473085288282e-05,0.00060830343374973,-0.058530980106301436,4.573884002447166e-05,0.008293786241225684,0.0046665514749169535,0.003660605871905607,-0.017590956235104167,0.000983077769259323,0.003657929282526378,0.030338913188175838,0.06584059461038837,0.031630799380101146,0.00016112694071104876,0.005046246691217329,-0.0031183146777605717,0.0018690363129419336,-0.04393486365929032,0.0008155048682135132,0.004939061696611573,-0.01457523011716302,0.17937499090359085,0.022768617782272106,2.421454526140653e-05,0.006110771593856461,-0.04117869400594103,0.11568811021485806,0.012700413274385449,0.00010573892230160644,0.004985781747412711,-0.021096513854921083,0.1265733433550398,0.06933743431099786,4.691700294583528e-05,0.00045598999346163296,-0.017485356253187194,0.014807986302639369,-0.009830670765697283,0.0023030398555206285,0.0016692145573394828,0.04659747074661827,0.32909707298711477,-0.007535723417908549,0.00011651730539060021,0.018109102338297076,-0.051865551079181484,0.280499323376761,0.02619170786408541,0.00028632245598266427,0.01595574166415777,-0.055562095194115826,0.3105845221827309,0.05965833567785644,5.039178717087802e-05,0.02692342515563991,-0.022766334085104603,0.11078990461392739,0.03515922219686395,0.00033867233622713374,0.004644209633670963,-0.0020726411156442876,0.026279027666203058,-0.0011330645159642004,3.272992787506456e-05,0.005520634385891987,-0.010054722886032885,0.1125788483405313,0.0006593625584099615,2.9839738519223786e-05,0.0060698585642471325,-0.01999395094319659,0.05585265992171503,-0.09400341191377538,0.00011531279988178652,0.018780377615587377,0.05095884349149181,0.2825715619911657,0.016159363424925334,4.165656804666988e-05,0.0004689682927180286,0.007431445090850732,0.022418877054589934,0.010221284921633196,7.349144730360237e-05,0.0028537380157584056,-0.0090126529345526,0.03088968929413547,0.020552197960974992,0.00013340979073447063,0.0007884117944532384,0.03165855264005568,0.034254159991398275,-0.005186519530071314,0.0005282667733404373,0.0010759937289096261,0.016538281149647567,0.05587428666706191,0.033927149725285564,0.00012458460742974662,0.0005997869889205,-0.021666617158071687,0.06957652795268475,-0.009535771126159043,0.001998699628316222,0.0017660252083398107,0.009983209801381423,0.09377814231945944,-0.015714381080174745,2.7374788216433294e-05,0.007959193678930124,-0.008005521189873563,0.01951926994662976,-0.059961725509923985,0.0013409028408493421,0.0034724804665479773,-0.002986433158764039,0.022902815321387198,-0.0027756882957641147,8.683395278614439e-05,0.0016825160052132795,0.01456916799779844,0.019399304074424494,0.0187244251148146,0.00017725316027863167,0.012530950771199218,-0.02732978523391316,0.037629454349212804,0.04096937052372165,0.000416881105530922,0.005812973969795528,-0.05488164074157423,0.2549419702384727,0.09462979611453252,0.0016685379539606682,0.007741731539904916,-0.021011925734390695,0.07563310638825847,0.03549532253803619,8.91341832906046e-05,0.0035118752908142453,-0.028783448776260743,0.0381944359607377,-0.006485113635588478,0.0018733542930110436,0.008139167921990254,0.02847358352940597,0.10801728218863908,0.04958553520517884,0.00010443953250968741,0.0008557538898702145,0.025000924410811948,0.08161103808415494,-0.036032064774661074,0.0001241845423174521,0.0071784234222457026,0.04445679016972429,0.19838579010003546,0.015493671933598338,5.469422419697949e-05,0.010602509955407262,-0.04072455694082374,0.13184865992133063,0.01926730836234568,0.0029275121487361546,0.005922330154366025,0.04285067676951065,0.2151320226919466,0.09640581826652152,9.908164209579383e-05,0.007996962230561813,-0.008574119153172834,0.04328172202536214,0.00048344160118397503,0.00014366327662772085,0.0072858411527985546,0.01063489752864555,0.05983905537216675,-0.012866162589834461,8.406152787171253e-05,0.0062189100505942105,-0.03906108986095238,0.17567018363457143,-0.027384619370138818,5.5884799377220046e-05,0.011499321660306901,-0.00721430900261393,0.015128971840583483,-0.010902304249080869,0.00023249559001241232,0.014136152093837298,-0.00959179650448168,0.041908935023411746,0.0012517076471915132,5.6912505782526036e-05,0.013562652738397372,-0.032915813188413225,0.35211028745739265,0.06041710303603767,2.4118881316527995e-05,0.0004159009773816839,-0.0008291585543755757,0.00262144471015448,-0.025465119331582364,0.0001105619902543767,0.013426583630940762,-0.014577595367206849,0.05423149727762713,-0.02191068389881342,0.00042370371038932787,0.011785111979861599,-0.019419108458674884,0.0888058874287467,-0.0023591707104018236,0.00012524469077830044,0.00044599885749565106,-0.006135074247650086 +2023-02-28,-0.004751545368795417,0.03102015669162247,-0.024563701668226943,0.00016198599841431277,0.007044692561699361,-0.0011742296887135746,0.0035570806521076316,-0.000630646924800345,7.920815017830454e-05,0.0014553474754511635,0.006938476231509521,0.025734105387054503,-0.0393533034367048,0.000124724632866486,0.006533236224519861,-0.014392266564651783,0.013215859704248855,-0.03621075192246931,0.00036753747788960595,0.0030557614892342292,-8.882741169978705e-05,0.0001650268976359008,-0.16360840488478184,0.00028163721721213896,0.0008842982832545062,0.00044658723499625626,0.001003212243306415,-2.9998457959627926e-05,9.719864740109477e-05,0.004440805973340184,-0.05326704855178069,0.16950926968256932,0.01680891737489116,9.220511976549355e-05,0.03369837187097241,-0.0031056665430318933,0.02532578751546828,-0.004964790665046111,4.2052370217458364e-05,0.0004363243592090168,0.011624813857556062,0.009252762826549008,0.0023994246407884425,0.0009688562918046653,0.004536337532941146,0.02515719513654724,0.05983335750389607,0.0017541687637594341,0.00014702146000529574,0.016971482584666665,-0.013652214595734843,0.009741867134772026,-0.03966484024831196,0.0006849916261124484,0.0054747464857603945,0.025619062472350695,0.3829567955179539,0.06810145656892251,1.993591814097864e-05,0.002671016444430095,0.009568380228277648,0.028263398902126785,0.003447004061887784,0.00010056921836763108,0.007663173506245249,-0.007859590203148812,0.0401906547511549,-0.07031026290588847,5.504737824746334e-05,0.005222081528513503,0.017816876930847787,0.014477683293474475,0.029290685516148104,0.0024002444862697117,2.135187944599646e-05,0.01905788286867366,0.129015508608445,-0.0026438583232606954,0.00012155836285174852,0.029267017596351294,0.05880827120406371,0.35894469873260076,0.08331256725812008,0.000253699201833167,0.01355208437912391,0.01035568664581852,0.06493098052511896,-0.039673026514956515,4.492498030185222e-05,0.0014870324527719114,-0.0036292638840602315,0.01962497936487172,-0.011192585541702337,0.0003047867939534815,0.0022081443814004585,0.05111391249536378,0.7196288797742968,0.08118506702946779,2.9475472283771388e-05,0.014594608499082982,0.014078447061197295,0.14427768665307872,-0.032243433300928076,3.26014781157297e-05,0.003955906650615178,-0.013611953005877867,0.034508974492155446,-0.097140524977367,0.000127060670674453,0.02520922043779813,-0.047740657911976354,0.3451812263871247,0.0001303339903373714,3.194725942259569e-05,0.04074316922397596,-0.004443225790608083,0.012858502826284722,0.00010305434712363166,7.660998210790228e-05,0.0018462035203871607,-0.00801233729367105,0.03843875413688172,0.012962555025437542,9.531001019196993e-05,0.004562917761539226,0.04620088839654581,0.037744103742616976,0.02205402389294197,0.0006996434470526192,0.0021623520482822265,0.005592826474201329,0.01893957443985632,-0.010745812829486785,0.0001242931336584535,0.0072836421603155455,-0.03339805038448483,0.11414092369449196,-0.045926796019637194,0.001878014354538892,0.0052238174819706044,-0.010518757222192004,0.09405937313873666,-0.02915368160818081,2.8757064184133024e-05,0.03735253296144303,-0.012972592616615146,0.033126006079408424,-0.016975453297456554,0.0012803507863125478,0.006134497483848166,-0.013323489968263286,0.09959601105008502,-0.013875677122416486,8.908440789847661e-05,0.0003514438231130522,0.002685982991240776,0.003412422863696777,-0.06531338727914707,0.00018577437178233063,0.003952635459703642,0.013459779411385275,0.016754518556258514,-0.08932808335118746,0.00046111569376387437,0.013520565698553706,-0.0009893200276567887,0.003986042110983967,-0.01932911926327505,0.0019237350578928559,0.012931750498555035,-0.01854248366489637,0.07161620332247824,0.02132446648490473,8.307053012883081e-05,0.010418712291898554,0.037436864027986676,0.04502849795899269,-0.11562358230934354,0.0020667559360798868,0.0013760253279182374,-0.03848367042697514,0.1365319380630916,0.03351377531892576,0.00011167559322981284,0.016905445811433686,-0.00014702440161900825,0.00031658302678871366,-0.02064396064582277,0.0001882617839205543,0.011488850129384987,0.0003366568959234833,0.0014648217131157525,-0.010829314248927564,5.60940336776597e-05,0.02728804308811938,-0.007747449190012562,0.026794896791794823,-0.02605218172734609,0.0027404678158704644,0.0015237669617910355,0.008284381987278515,0.04293617675725969,-0.0904543055268887,9.597924211096798e-05,0.0013511657281089135,0.01138372921096224,0.06296473855396921,-9.542914943640058e-06,0.0001311136587053348,0.007417225568081083,-0.0022064778191191307,0.012459685531660053,-0.03457707958861809,8.376087073164737e-05,0.005799944367078562,-0.01997603082675307,0.08665316469207118,-0.0018904077747129806,5.7939156203644775e-05,0.013223314503045354,0.08825857936938211,0.19508102214738163,-0.029552269468928017,0.00022058262684266573,0.025698952759144533,-0.015199205983684034,0.05823202997096009,-0.0599642147148715,6.490428151858123e-05,0.006993429023730084,-0.007968649090008927,0.08825754159598419,0.008116398822286357,2.3295077622975582e-05,0.010128044148916864,0.003945649280449212,0.01387730229376283,0.003404306688528014,9.938535537653976e-05,0.0026420453704115443,-0.025302985820699415,0.10590088724951814,0.026570121214442004,0.00037661719489109495,0.0034369757372767016,-0.04642215000124697,0.21295329293267357,-0.024623470667805084,0.00012485693985599542,0.016592657637242433,0.0012439746873589995 +2023-03-01,-0.008599852676651384,0.06315992528390854,-0.023733068566426298,0.00014399121217289885,0.007277511677596191,-0.030104284246298872,0.10303560002101499,0.042366549326737855,7.010540910732155e-05,0.004019580219235168,-0.0085677098053047,0.03134002820084611,-0.0015500452770728032,0.00012646273492354995,0.014967328175742785,0.00431213253094002,0.004353776440842625,0.0002350533750520603,0.00033426725234363125,0.0052198808199146966,0.04004498392684607,0.09003451868949895,0.13553971200681125,0.0002327216828696151,0.011080369290143615,0.028048494340779554,0.06261971690793348,0.03950718236767376,9.780142731699618e-05,0.006984174067065409,-0.008893686592479562,0.03404133201972014,-0.004992695092637025,7.665934970979018e-05,0.019807157805898156,-0.007398586884596086,0.06322934337367796,-0.17570010013944184,4.0126263523926606e-05,0.012131513503056315,-0.021199114874473894,0.018911325963675476,-0.020826939795375195,0.0008644513054408577,0.01337066358277532,0.022736383619014693,0.05646519547917219,0.0012948128198192591,0.00014079992993009188,0.012410588000969844,0.000978207742550287,0.0007526100472818556,0.01726094827621348,0.0006353096358272017,0.0073223942744262,0.006444916357836901,0.07983399460982912,-0.0157362685395485,2.405759528071339e-05,0.004479973595856273,0.027124321678871112,0.06578584895450018,0.02702822526980654,0.0001224834584215064,0.013004998275743935,0.011446403262951209,0.05909744163997789,0.015835645639212928,5.45207950302593e-05,0.007472015800199835,-0.008737324497866145,0.007520829026880253,-0.002039374223226849,0.0022658738227290236,0.00023977754063524083,-0.025941671584422617,0.16253132041522467,0.02396478664963015,0.00013134483555945548,0.029966089946934612,-0.009683785106125617,0.0584690678919985,0.002155650412448406,0.0002564644684992872,0.0013558596048388542,-0.030756274917706043,0.21915743094876156,0.011690471737628518,3.953106269213391e-05,0.02292779030186558,-0.0036278883957624754,0.017761027412240324,-0.005355349817506174,0.0003366453665109423,0.006819721085143069,0.053064897201724526,0.6986716135135068,0.06154244253466419,3.151842156114048e-05,0.016727464844722453,-0.010797226313433038,0.09572108985087963,0.019119368855990394,3.768654104716523e-05,0.0032457094310498575,0.018493304895647218,0.0439060641238738,-0.00956676779993429,0.00013567904508015336,0.00036417210569813087,-0.002880244363003567,0.019715876537534986,-0.12414492659485947,3.374470388684274e-05,0.003908981964751068,-0.035183425111674826,0.10171289051618093,0.063743262749606,7.669013489531485e-05,0.0066304852266838915,0.012131521488129005,0.04460331528022775,0.02683393695685223,0.00012436458563856644,0.000589183510445008,0.022055914642856167,0.019221787435982404,0.0011988698414421074,0.0006558535346269104,0.0015945258885797751,-0.0074438080070448045,0.02923653040773168,-0.032367514469562784,0.00010716558523200317,0.009720915220940488,0.01338647556137697,0.05331605236947787,-0.04343432127469434,0.001611489344802732,0.024775351413456013,-0.022990964908236267,0.24652082081335022,-0.019039991295103868,2.3982021542908108e-05,0.002392013358694653,-0.030210638096387177,0.07756216355814276,0.019758804292289323,0.0012734481098161576,0.0014058486503339624,0.010548730688276237,0.07318530673894162,-0.023514786526732532,9.598468647617278e-05,0.004025309860566979,-0.012364242985399336,0.015757540734861193,-0.010559168626627324,0.00018519296252330914,0.01206576926102896,0.008978062006065317,0.0104195070760216,0.0014163898990979188,0.0004945831774519976,0.001192910568225353,-0.007060280688860869,0.02542106679618838,-0.0019101897557662348,0.002152675344079699,0.015506725295532422,0.014034219769077781,0.051424973119847395,0.006737353573644818,8.75597615394279e-05,0.005866096554803501,0.06605295219170332,0.10252225785441893,0.09246633104388127,0.0016015896831204613,0.017507076073133194,-0.007079213717452985,0.024871213599660526,-0.020229443073817365,0.00011277272710328501,0.0086953272032823,0.03465723277334763,0.07543393175186813,-0.08611608395405623,0.00018624624043811507,0.004002619363289149,-0.005960116726140263,0.022577890585767226,0.0069721742209890684,6.442958384657469e-05,0.03991918115937423,-0.0017954665767587745,0.006275646997694523,-0.031056738851563268,0.002711670248500076,0.015981674820223037,0.030489477217566924,0.1964067647346598,0.04413260832622207,7.722076624100261e-05,0.010832697451823796,0.008641479738018033,0.039831615027089394,-0.005746803573371074,0.00015733342050844507,0.012523777251618694,-0.008640119368394785,0.062430628177936154,-0.12393549327066353,6.545920649930656e-05,0.005185992505421644,-0.0264965896515103,0.119076059929274,-0.01756511404066164,5.5925891894515834e-05,0.014000686215536661,0.02576631162591974,0.054139749225743904,0.0007054507730704433,0.00023204136376596418,0.03305545515309533,-0.02636863275451015,0.09983456171708537,0.057437416412279424,6.567817429672739e-05,0.00047014862252368455,0.03416751619413155,0.32242084208099725,0.018791226623403826,2.7341452750607646e-05,0.0004968953065393933,0.0051136934813301406,0.014145269558113542,0.008982201052127608,0.0001263666373949501,0.00817118052085684,0.040306928106263386,0.1584441202396017,0.08876630995476083,0.000400988155231039,0.010096498314828253,0.03524707611173914,0.16189170605867118,0.0019263969788907546,0.00012470110231704753,0.013385012271787913,0.0049141452271998206 +2023-03-02,0.006968399736305965,0.047472763494446076,-0.004265619647073871,0.00015522980998376604,0.008463227598858054,-0.0485070865265761,0.1543469367126874,0.08847310704473142,7.540804862651142e-05,0.010024991311362036,0.006534934099901194,0.021492055877279807,-0.012180440386211903,0.0001406567103056279,0.0054311992443237134,-0.00033864620915572,0.0003684105462598298,-0.0965228806873997,0.0003102287341410474,0.007156753623424144,0.005061908175356894,0.009523812841996555,-0.01495340074990841,0.0002781001241305525,0.004605078594393662,0.0006493137417132369,0.001630869520291563,-0.00017983815796507026,8.693248970425572e-05,0.012682578527375995,-0.02190132958291651,0.07186093452470678,-0.006017505810579958,8.942675567038128e-05,0.025347456884710018,-0.017001448805901383,0.13278481248384758,0.0013837425240541506,4.390724036757861e-05,0.0047547498540517485,-0.010331399621374387,0.008975674119854915,0.009095814070763238,0.0008876400125236296,0.007115866378333553,-0.0178008094892112,0.03805340115341491,0.007377044619272919,0.00016357169694939994,0.0028452812997946724,0.008040158794509727,0.006192646425085037,-0.024280301062366543,0.000634618459048895,0.0011542909710607389,-0.004619283796712356,0.06080887115751024,0.0025298957629151476,2.263760580020866e-05,0.009221657936245048,-0.05014714505368575,0.13518597734676252,0.06185962742994324,0.00011019594300907451,0.0029987846590688524,-0.0005068339909444704,0.002413183315004462,-0.0007936861682911586,5.9120382836177246e-05,0.0032228424514885307,-0.02425053092152359,0.020341114683158513,-0.030393225391537868,0.002325249048554753,0.0017754652603481486,0.014772849078293923,0.08381920975106653,-0.04102027982430449,0.00014503499583622364,0.027486304772137368,-0.03789501612430074,0.209713914334951,0.007443732225373364,0.00027980990345543097,0.008344164832493435,-0.024569134020857846,0.1399173400099601,-0.057872123437315376,4.946286467567792e-05,0.027880278155033394,0.04410452058823862,0.27496340719038614,0.05334502825518234,0.0002643595551908511,0.017318542805260847,0.02741135174666158,0.31055983124237496,0.012381316777013809,3.6628185234609575e-05,0.01626190385760846,0.009804619476294945,0.0931014652125696,0.0015342464614879281,3.518486882746071e-05,0.004744564423719537,0.007158320582980269,0.019517072417280974,-0.10265743300242958,0.00011814605547252431,0.02056363832130516,-0.012774631336396352,0.08862236180214443,-0.08470286581741644,3.329641162782154e-05,0.037023273570504084,-0.00038863831319873064,0.001305641320124054,-0.00044050381873637575,6.599318801880372e-05,0.009732575841261032,-0.009106658642883717,0.03874646757136849,0.009372321515668027,0.00010746710214151842,0.0071798711973519525,-0.019337153191965162,0.02424908986502677,0.016693872241096273,0.0004557982529258808,0.015098988793076735,-0.024919562518190903,0.09156362291420242,0.009693367207518405,0.00011455220535006327,0.004282916092676404,0.053645830985030354,0.2024896177962684,0.05582798601043705,0.001700405069355656,0.027382110166623196,0.021533334071518553,0.1943995815096665,-0.0037230351142881314,2.8483814434545566e-05,0.018031556208974904,-0.0029759728236758366,0.008322278817000097,-0.03587819108248087,0.00116911698249254,0.0020562973027241508,0.024124408578518608,0.1842138171378709,-0.0032162049312546583,8.72087610594461e-05,0.0021120005409325784,-0.008640409603608082,0.012892990101821584,-0.05660030560493148,0.00015817071141359718,0.0052172404001056,0.035655067447754846,0.040444273029374596,0.02599434751837499,0.0005060205363260958,0.003193953142404187,0.02407278010767389,0.09868523763811934,0.012757224745189382,0.0018907077253282922,0.014719030474568039,0.03695816559041143,0.1571098188803294,0.07168391085828253,7.547401423776533e-05,0.009595405153221093,-0.044496756148122436,0.06616966159125934,0.04450793191338932,0.0016716549164140328,0.025274967501264796,0.018401488691665528,0.054262827543595224,0.0013958363966227246,0.0001343589419696978,0.0038061027430315447,0.029523231423581927,0.07266595776814314,0.008947878775511875,0.00016469987320465667,0.0037911190253298354,-0.014870004641657206,0.058624936077169246,0.015194946235416465,6.190741170752936e-05,0.0006181870903281031,-0.03196708393038275,0.1094875998149514,-0.017545218216583006,0.0027672993684409457,0.034036971663134345,0.004261966830983972,0.022773002093212723,-0.012986547245407777,9.309585612035616e-05,0.012593547436248836,0.023601650248982347,0.15217212466965419,-0.0224598257552454,0.00011247812039263955,0.0169435685786357,-0.0325971748274518,0.1910135066130512,0.0730131269182927,8.071692024805132e-05,0.0043241405206683545,0.0009014025627064856,0.0038195779786060957,-0.0009543909656571311,5.9313124516790934e-05,0.024948041505559727,-0.01716331392027844,0.03295907134965179,-0.10291949484908826,0.0002538958331175421,0.013743929692548685,0.002725787216911908,0.010125317632736898,-0.0786527678770597,6.694184384668691e-05,0.013816686308150937,0.009588179604296372,0.07804582362909743,-0.023704423262145835,3.1696972122855585e-05,0.0026135253743082604,-0.01264686418823837,0.043958019768663835,-0.11136571416833148,0.000100566584205344,0.011164313059205783,0.005785083321855584,0.02239517258787367,-0.039789871934931755,0.00040717694132326855,0.005211488786732631,0.0004717916497138097,0.0021503229599851327,-0.03352021717943998,0.0001256661627206366,0.007499112557545828,-0.001722982248133946 +2023-03-03,-0.005555172992127889,0.039327616018234354,-0.06384340327547791,0.0001493779691446747,0.0007248521410050189,0.024008387139790456,0.0766411907403396,-0.006322423896699632,7.516423965149414e-05,0.003878597455368793,0.01169832341404667,0.042953279799924485,-0.02186631983223518,0.00012598664103964917,0.003860485460522474,0.009333708228392877,0.009279003112226906,-0.03669753963861297,0.000339485130321125,0.00023270128517438593,0.012486631675756654,0.025819893379170056,0.023054671944733766,0.0002530396796324419,0.000732484641458655,0.004749385581919794,0.013422120521076176,-0.02727241975729756,7.726148214212319e-05,0.007919555645428619,-0.00089809063882057,0.003115355042969356,-0.020705332920311598,8.458677680060029e-05,0.01132519439602667,-0.02363422155003398,0.20615917394112263,0.07285464228540112,3.931309641325841e-05,0.005829892198734355,-0.010517342464704428,0.008954220372004839,-0.08909660462833918,0.0009057806185979945,0.007914519243667862,-0.0303755165781678,0.06916462868102106,0.013228518468495582,0.00015356827612072769,0.004066792689512495,-0.023873745295625873,0.021540026411254156,-0.009171346752828383,0.0005417497042831267,0.006751785976515955,-0.008204815886374646,0.1234273692638095,0.004859918521122359,1.9809803012601617e-05,0.005065719073067738,0.008300433185894145,0.02639508250410632,-0.004255748928137786,9.341761430752189e-05,0.008536948856610877,-0.0035365093752569177,0.017321791097620463,-0.0179245071706233,5.747034912132508e-05,0.005089933944493092,-0.012276384594693874,0.011309113265141512,-0.007260651603576118,0.002117214718211138,0.029562840151674135,-0.051543795815481866,0.3397846214534285,0.06199490953014497,0.0001248316717859568,0.004373672473679763,-0.04570671385708248,0.238321566789866,0.042455692018748936,0.00029697841482096126,0.009483294702304022,0.008730222027311349,0.04706649878698431,-0.030698447699785837,5.224856317067531e-05,0.0015339566654849113,-0.06722148724384078,0.35548575622388556,0.1648359442263859,0.0003116540107902074,0.017975292834815228,-0.0304786750891144,0.45231514839684767,0.022505321154216038,2.7963091427889568e-05,0.010500555455236824,0.009561926490184237,0.10520465347596629,0.0020237973265292176,3.0366319662077346e-05,0.022176006694933355,-0.024146000465877625,0.07177925664277286,-0.06963727418821847,0.00010836000192782641,0.004435014928713454,-0.05179636037289546,0.3773376060357048,-0.007125362529640743,3.170746561064062e-05,0.009385411834545287,0.0031655557375385515,0.00959255678604421,-0.10294969529013785,7.316324648515419e-05,0.003683167056056113,0.002670749770169897,0.01054826327486724,-0.014069939055128816,0.00011577127985467828,0.002343477893157236,-0.01057776927943744,0.009730706790302223,-0.06498901946644486,0.0006213342084779869,0.016194658424529367,0.02069989543796369,0.06943520456991095,0.038088194897115506,0.00012547998017568035,0.018858227531209998,-0.015328129980918056,0.050205988769830415,-0.06575736930495173,0.0019595340959102127,0.02849931343419943,-0.06476769587302786,0.6372653420645669,0.09036394306706111,2.6134869907833814e-05,0.0012128553524034134,-0.013503741688009944,0.040022720334056204,-0.1678231028217043,0.0011031099130180825,0.0008899844016398454,0.030576368877409756,0.23203441762276988,-0.028013118134990935,8.775242844255701e-05,0.003731928849868722,-0.027297573556576686,0.04035216433932433,-0.005064660976359408,0.0001596623795634074,0.011535246712017309,-0.030873211439742358,0.046389129683525106,0.008694189145121801,0.00038200539494856673,0.009600762339672978,-0.06490104136799323,0.242880935770112,0.09277764340630684,0.0020711358162834475,0.003540813685140009,-0.057559183079539285,0.2733171231230136,0.16925182293956642,6.756754679995935e-05,0.0010057393629381442,-0.023826893395612038,0.03236519541125629,0.0024051193553332323,0.0018300644303904277,0.02568445835119683,-7.31771286325856e-06,2.5054303665414853e-05,0.0007344849726983188,0.00011572017026959664,0.008540235456042327,0.0022031692868211016,0.006265621486188722,0.0009296036629988253,0.0001425424075251359,0.004071643662825826,-0.007114630993891759,0.031993422905295325,-0.031268096146540254,5.4275720610648726e-05,0.013595340408041293,0.022567651782980737,0.084617287194343,0.01439481221146122,0.002527815265106815,0.0042189653392426555,-0.006253868990077378,0.03310095194032113,-0.051012917631548305,9.398290527169322e-05,0.003308512085224572,-0.01622065640014408,0.08760329146575328,-0.007623163465400456,0.00013427921238627472,0.00217161636867715,0.0004968771286412727,0.003050395088807173,0.000449389392899174,7.704449488789751e-05,0.015007715828136776,0.017694425856715282,0.08056054800774337,0.006064859822770812,5.520284472078016e-05,0.00926410675135195,-0.044629633399979975,0.09161026667347662,0.05814202813435263,0.0002375245840103828,0.01204186967384602,0.006285388595042044,0.023276924478579642,-0.06444934072321028,6.714611833769407e-05,0.008167211836532955,0.005795856478998559,0.05868858723863502,0.0005679831806523823,2.5479755301153077e-05,0.00856674148809683,0.005310908947054067,0.014241724715464282,-0.030362481064217264,0.00013035125997471508,0.007967736447260546,0.029108861905642828,0.09799491849548767,0.04570369896569342,0.0004682196550421151,0.006544334728153035,-0.029587684327780726,0.14337051709500195,0.0023242637425271388,0.00011820148178177787,0.018785698202659174,-0.012050985362079608 +2023-03-06,-0.0006949762496414992,0.003944840874823103,-0.08540884384665141,0.0001863060926144036,0.011632505772487842,-0.015714573464815074,0.05408957494077296,0.004241717674447611,6.971071795906706e-05,0.0012884220106772965,0.006981475439796261,0.022864017499319034,-0.02596049819944515,0.0001412511119085052,0.0019703805653887487,-0.002843378330416277,0.003434611308933358,-0.032623331481586804,0.0002793990403109399,0.007853173496291953,-0.015035886285995545,0.02715831592357393,-0.003959839895455738,0.0002896836399346006,0.0006716889646995981,0.02724211021886534,0.07835161364003834,0.03558516262654552,7.591708785568923e-05,0.010709551269009231,0.01704596541055618,0.05898605275864645,-0.04948632908838674,8.479341433001096e-05,0.009854588969735605,0.002607815189302845,0.0207281831237482,-0.025209141254729246,4.314338219077739e-05,0.010001234492858354,0.024438954639170552,0.020091725981106298,-0.05509659726493033,0.0009380158253811687,0.015975942440222112,-0.007383107888683924,0.016973629332586365,-0.0004895026348246199,0.00015209901000002543,0.001195108589510344,0.010823501015542917,0.008949747627716081,0.044582268126338594,0.0005911277284429227,0.008430973963866929,-0.0011182670216397569,0.016421054990739228,-0.024975497914685955,2.0293981094084327e-05,0.0020795524597203288,0.029254762207624293,0.08399796282101751,0.027010252753510367,0.00010346152055504719,0.0045994450945490975,-0.02090913489360493,0.11214130849133674,0.03386296953431355,5.248464493959454e-05,0.0008177860341653924,0.02383583889382169,0.02238789174229043,0.05108585625685761,0.002076539591166966,0.0009358240303890904,-0.028264849369502597,0.17764363058777977,0.014874621821886177,0.00013093300719828221,0.019366442411988604,-0.0561574546072829,0.3071629462884219,0.05421818561992816,0.0002831045321906175,0.022693484511574342,-0.012288304500292177,0.0816792790937109,0.002724011788250117,4.2378055412374674e-05,0.030639057237603285,0.017707242842292244,0.09461423339406971,-0.011406423776678689,0.00030844751516656354,0.002447225091436296,0.021509110032042592,0.2971132800646336,0.004394624112045514,3.004212222050871e-05,0.03894108919496476,0.018062170844123645,0.21626956997526062,0.00377517474910348,2.790334303313752e-05,0.01472812921599228,0.01768588592508901,0.04890276049453429,0.006383049026259961,0.00011649739122332872,0.001464744257487966,0.010285860173774248,0.08766153582797559,0.013023885031206916,2.71034088934515e-05,0.003584329536487356,0.0018010139693967555,0.0057182797845658625,-0.007576169710835439,6.982791313017132e-05,0.0031958448531770427,-0.029509272268301957,0.11831618166804604,0.14620089387361093,0.000114041507485892,0.0034472072029511844,0.024638789789480718,0.02548735006201627,-0.0022906161739701205,0.0005525483034323119,0.006169677508735077,0.012897869087842236,0.048597379560573,-0.05660980137576951,0.000111709760710899,0.0016487531456625764,0.02438268014655959,0.06998574506872998,-0.13811932437556357,0.002236098991940326,0.01472098331526778,0.031092929568592758,0.2860444145836595,-0.009176771897261746,2.7951837729125e-05,0.005299925432226337,0.037198284434020956,0.1064118774784264,0.07307971020982265,0.0011428890583508214,0.004500884972840635,0.008708944506618339,0.061781438590885224,0.002342838596235771,9.387136861220376e-05,0.004799765998748823,0.028288082652756757,0.043770685505534215,0.007588206838025171,0.00015253361051769504,0.0013437879501373802,0.009926637206617918,0.012612033887048247,0.004334114027400371,0.00045177368935822083,0.01079016586407212,0.005298285607649743,0.022316240868698167,-0.06556099313227333,0.0018401984747508455,0.0032271201906346873,0.023578030905156398,0.09739587724027982,0.0391270395061347,7.767071970875027e-05,0.030538783846864884,0.04074132202731144,0.06411034463096492,0.014613372022187307,0.0015797348452401003,0.009605952547903049,0.009004115936124575,0.025601539870789405,0.00593531303844134,0.00013934488354267225,0.018529002320522875,0.022693976484901613,0.057868564998157776,0.004154660562806787,0.0001589747913219116,0.008337506543698699,-0.0016765249034477606,0.006624576995843891,0.0009076137636704504,6.176831891999875e-05,0.01215072387469041,-0.07977057083688895,0.25705977325307416,0.03641762477945315,0.00294121408922572,0.012897432061979026,-0.04169857069627487,0.2351518944169532,0.007640668236464397,8.820907294362649e-05,0.01837282856318289,0.013922716236396593,0.07390568257587414,-0.006652536328283015,0.0001366176855761911,0.0108941307616808,0.0006852301728883722,0.004140344303941411,-0.0028431942686546123,7.827962185045538e-05,0.005841031283490585,-0.03310160398716129,0.14225251824165028,0.01972409343097384,5.848391944937247e-05,0.01477033512642226,-0.027382189221041478,0.04871845382310137,0.01814483516106793,0.00027403375685834376,0.012292927317259046,0.02066333018676339,0.07829524282817962,-0.058935033936129574,6.562651102524496e-05,0.0040491382259745835,0.007203791931139309,0.08251276583903669,-0.1771077685179522,2.2525337199412e-05,0.0037554898939758967,-0.024217621209867077,0.08255509799441527,0.05194925057359936,0.00010254076410594704,0.004045234362549252,0.03235877219668269,0.1313294923062896,0.052003634546697104,0.0003883807894402289,0.009142810738521285,-0.025716851319033538,0.1343686164638452,-0.08577388046584135,0.00010962049139851881,0.021982808759613375,0.0028191168799078627 +2023-03-07,0.002112260510265634,0.011921222091185537,-0.0042929751356303334,0.0001873757071049794,0.01596054556584712,0.009559899159557461,0.035929474692112946,0.0031631678045050226,6.384295351009163e-05,0.014469756479767731,-0.03600183800032971,0.10364127410497193,0.06218321534017918,0.00016069010500330903,0.019589912794430144,0.024905490128387463,0.02842409456065578,0.04367629034291818,0.0002957170123818634,0.009133997579816366,0.005633338519413507,0.01211628110933356,0.004332595534929259,0.00024327320746552356,0.017063361242353477,-0.009868259093045527,0.024615362520459948,-0.0025260933616830876,8.753486112839455e-05,0.007175502070059847,0.010314827685017534,0.03583084073380138,-0.028302653662027544,8.44685100892331e-05,0.005559111084510892,0.028438882388604807,0.297839359369863,0.005864986176868536,3.274379786104122e-05,0.01520696281456437,-0.004588683792612093,0.003905422909360843,-0.014455112560371896,0.0009060764620275882,0.010638226653243023,0.01361261847448957,0.03453861903216579,-0.017010140154444728,0.00013781566654583538,0.04493309482065677,0.030313165530021488,0.021467000725162583,0.12241758985190948,0.0006902148172933992,0.004378621244391541,-0.0007274590992293535,0.009761454539077306,-0.008360966190814178,2.220837764752929e-05,0.012104016270415234,-0.04282207239017446,0.12503766690865561,0.005759822972698937,0.00010173674946994096,0.011521099697626136,-0.002765400791856425,0.011555585457345932,-0.0020839302503826906,6.736401246323583e-05,0.0020114943486759873,0.009153102148152136,0.007303257538691457,-0.03959751752745813,0.002444413457334706,0.0018857935405400554,0.03706620837724269,0.2508702184679754,0.014944955871174713,0.00012158532574559075,0.007525021455007222,-0.017030313305451603,0.08686221191703604,-0.03228276193773332,0.0003035987543312242,0.029656263729563818,0.030181811903806244,0.21434433079872892,0.004588418594670655,3.9663794823806004e-05,0.02475406189861991,0.005119552071669488,0.027263238361671896,-0.0006161656794829386,0.00030948623056233136,0.006085459526017286,-0.00642633767800158,0.0818138661226697,-0.001861457408492711,3.2596191284971164e-05,0.035845578980418104,0.014258601256573496,0.1435146930879649,0.004350075110045322,3.3194204603689935e-05,0.001419766474638955,0.00499169985452471,0.015835786567892706,-0.010713133326401995,0.00010153869556097976,0.0042005843887524055,0.002348420713972433,0.014258622222766066,0.009376529159583617,3.804439794654579e-05,0.0015087900349154688,-0.024556969463255293,0.069368021972931,0.03740164509402557,7.848611668378555e-05,0.005822571027496064,0.018515349941034348,0.0693530284212927,0.05153972690528359,0.00012207172740533986,0.004084590540881938,0.01598684993915754,0.01561752388859353,-0.0016800068945504972,0.0005850948573622916,0.01246701299125982,-0.04296348910290377,0.18496697369429316,0.017092266782704976,9.776679124423653e-05,0.0038958498064995384,0.04019688266772028,0.13201979157118957,0.009358568251512865,0.001954215736187732,0.020943614689738627,0.04505706660573858,0.45179649155421214,0.026300796781593132,2.5644973535706383e-05,0.0049775582876982905,0.04086157384217645,0.1276847366880477,0.02378935013767678,0.0010462786772327546,0.012436146935770264,0.019062589284959266,0.15716676960857376,-0.0013335925420178594,8.076939080392527e-05,0.006608155426448672,-0.011470151745547502,0.01823674163328703,-0.002503282978592718,0.00014844559145621883,0.013211187551381724,0.010573514070559053,0.015710313946716254,-0.001838673056401807,0.0003863121767384072,0.006182415101660121,-0.022153852947403824,0.08639333657568038,0.008922005941219403,0.0019875559487549234,0.041931771024240456,0.0069213352650223745,0.02286785142026943,0.0017925306005253186,9.710797443265076e-05,0.013522022511760042,0.008507181114785179,0.011651160152208908,-0.04227423997940116,0.0018150713375683844,0.012707630256680234,0.039804212008265435,0.14649408427756536,-0.025220338416790226,0.00010765271318654298,0.009025903057426798,0.0012410705849292905,0.002834025477885661,-0.005478135756137427,0.00017752237856031824,0.0009194376366364492,-0.06671140634277453,0.25612393581356596,0.11352572418071229,6.357170423801897e-05,0.01161213062977073,-0.04058092133646195,0.12552378657359498,-0.04910693085536953,0.0030641775691457613,0.007084944894419537,0.03532670677400635,0.22356981993496347,0.014524362584029808,7.860144808900864e-05,0.005236178849932891,-0.007868812242546529,0.046261125991490994,-0.008567138584441924,0.0001233541508145022,0.01570523365269168,-0.016474166974824178,0.10988311180672007,0.0080698165058943,7.091224133401455e-05,0.015023690968295785,0.04373926651579987,0.18321772477911843,0.044192866493904394,6.000002136894805e-05,0.00281808332921605,0.0376918680657704,0.06569389104989304,0.010173152618672797,0.00027973838963092965,0.019531473139964905,0.0036975320717827563,0.015184413990480344,-0.011191381926754987,6.055197175412988e-05,0.008542677841112258,-0.006316730411960507,0.06611346292932,-0.05329586023195921,2.4650953488806708e-05,0.023611543380243467,-0.023513685253339342,0.08443591814408381,0.012564440570923832,9.734248634903226e-05,0.00526111199151855,0.014672585970599075,0.06877369076461341,0.0045758421465340576,0.0003362887215721659,0.012761912915369517,0.006612314975225873,0.025275379540388415,0.014893923217209752,0.00014983995815144664,0.017705949878517004,0.0043580699437842174 +2023-03-08,-0.015417029394974148,0.10559477503771732,-0.003824231481917289,0.00015439913220870532,0.008263704256289618,0.035760820464687634,0.11384911357405003,0.0038066646852270127,7.536823541668247e-05,0.01803731232473904,-0.008053519642507355,0.02701147554779381,-0.1476424980287383,0.00013792234033003616,0.0019864487284021407,0.013873644850336202,0.015199778164441173,0.011941421915344171,0.0003080499761830878,0.0005533335619310911,-0.006505706620085445,0.014470783349590906,-0.008902074122558964,0.0002352340605621277,0.00960537547802651,-0.010806169549722583,0.02979719659507912,-0.022843176154163387,7.918503460592654e-05,0.0029111168477299557,0.0013827191947030392,0.004818514331173994,-0.0011096363322966208,8.419972865012344e-05,0.020672891930680247,0.019315207690577003,0.15451863955992604,0.023858304353020526,4.2866410743948354e-05,0.0011711743169239269,0.01216314225031753,0.009041318455583702,-0.05286460146817878,0.0010374300086437816,0.0025267365146101582,-0.0352218773893722,0.06751170621949679,0.02789943712358258,0.000182429598908154,0.010430357988069676,-0.0008258277154884076,0.0005490364009904515,0.00013185108591441498,0.0007352121462405306,0.0005489194666454087,0.008076437789471239,0.09914334963512857,0.0031359024118564264,2.4276107602203202e-05,0.0016242592839277945,0.00483871359485291,0.014829136079464686,0.00036237257968581955,9.69315381126919e-05,0.008822406807286782,0.02022679425586463,0.10196704808618663,0.051610704284530205,5.5837893807622446e-05,0.0037541337542264758,0.010284610543635341,0.008275126978057691,0.010809391246568925,0.002424019764387433,0.010413897439930974,-0.0068579547893743,0.04012211594435807,0.0033271000189811517,0.00014065750089319913,0.012559018933111812,-0.026540942787701773,0.15351172539963479,-0.00628169553667973,0.00026772136138090665,0.03187019061686766,0.03452911773242194,0.17888989760138288,-0.0032721347446604578,5.437016139419128e-05,0.012458480041300518,0.03315160375962561,0.17402249153138388,0.020539625411583145,0.00031396842043646003,0.02123350380038956,-0.010948240310857449,0.15029011253290048,0.004415306246964836,3.0230417362988527e-05,0.019685050413541096,0.006540376397006685,0.06764829769038642,-0.0002094800434702909,3.230186362230472e-05,0.0020589158378722726,-0.04176642119529497,0.10987426236327945,0.055943136311709295,0.0001224486629102584,0.012985612407456656,0.07549175214876888,0.5001549085276117,0.13362349626810444,3.4864813478230514e-05,0.001652725409546387,-0.01715089947307472,0.05177084081275825,-0.004665820761566168,7.344784625031017e-05,0.022983939688086943,0.0012947464109536982,0.00488354961389406,-0.02525676517484739,0.00012122653924846842,0.006802024404325796,0.08796565394025094,0.0840389682930186,0.13023909316097407,0.0005982848214084979,0.0009949055278293457,0.016407966457741275,0.056096442892401,0.04427689041323518,0.00012311343403104656,0.00666688126791784,0.05470301968507889,0.19268346382133875,-0.051397584379555994,0.0018221579930603603,0.007354510662584154,-0.03423537583619437,0.3728147505927258,0.024915130454441145,2.3613709062039707e-05,0.021431974383496595,-0.07909294258204809,0.27592626285395405,0.13817087556961657,0.000937164791725921,0.018988145311988947,-0.009607053541951224,0.07922557414063307,-0.282484112609666,8.075147413066648e-05,0.0006558802971565576,0.008266003787991454,0.010900908999421812,0.00632831150786036,0.00017896918981520556,0.008648111099936639,-0.002307367765204782,0.003029846860461607,-0.0032203700327827892,0.00043711937495716544,0.01989953914279283,0.0045336484912732455,0.017492501874626264,-0.0067976720244448405,0.0020088442064063803,0.01066248197811763,-0.012061260011897026,0.04513457410682413,0.0027563811323577376,8.573806968587304e-05,0.006492381593969842,-0.004618981954585118,0.006245232761574082,0.0016530883518703662,0.001838547387613563,0.006478854156586384,-0.007487941679797944,0.02604510212043314,0.001637658566407525,0.00011390752751247122,0.008425805880807446,0.026339545771497677,0.07170043305951963,-0.16980328551210241,0.00014891789152831,0.013222613038178338,0.010561506600588027,0.03646883458217206,-0.0872418244243013,7.068347863457678e-05,0.0005283770073233095,-0.03364517448557321,0.11225065315834794,-0.0016384918316578927,0.0028408739610996663,0.0028682083873330546,0.02902766406316766,0.14589526307637238,0.02145089283843921,9.897179971494906e-05,0.007292260076155096,0.025463478943414563,0.14805847243608097,-0.11035104626278645,0.00012472262962704507,0.006086975532541042,-0.03241407775149579,0.18190828033156914,0.051273466962627294,8.428104270901519e-05,0.0006003034828562937,0.02685654601609652,0.1341755688916235,0.012953762742937025,5.0306500519372255e-05,0.018421461745671993,-0.03593130376605629,0.06829455557196797,0.017719314145800188,0.0002565170794941699,0.010207035069053388,0.015998402972563913,0.07152808911549913,0.005280252320841066,5.5617874099202856e-05,0.007329515894927227,-0.02731653362407521,0.27978359163643124,0.045015958870924425,2.5190374984942387e-05,0.017413868914025955,-0.002105029529151331,0.006284860880263054,-0.030766219004115063,0.00011707697379885827,0.002052011378668785,0.015831988028225524,0.061311076106095715,0.001238153402985683,0.00040702818651841414,0.011191578897423098,-0.007359766563893861,0.03877837145883716,-0.008511100572194438,0.00010870418622826471,0.0009417242633566402,0.002180174423702968 +2023-03-09,0.012618912143400376,0.08627901336495122,0.003879402351810218,0.00015466901881225337,0.004912197400985401,-0.037674881645145,0.1193659861826493,-0.0975163511518463,7.573241965514025e-05,0.01815352313316417,0.011490294730858773,0.04325161997205158,-0.025881949007315084,0.00012289267418973116,0.0059362492899310195,0.0016204710804840071,0.0015719151451145715,-0.0018373853287549859,0.0003479205192774665,0.009781105224075961,0.0009147817297691568,0.0018961060530494301,-0.01854393820007105,0.0002524367788506965,0.012829407029618569,-0.006592700437988292,0.017020740968653802,0.003273969903865272,8.45729773388343e-05,0.013796412188336805,0.033612013909077545,0.12043397881125321,0.04007823608871987,8.189084553498094e-05,0.005262229364027829,0.009194519076048274,0.07836824206693922,-0.03727449497089407,4.0233473441074104e-05,0.010400864340743415,0.00011379157579019246,0.00010396601842503831,-0.010723721817029519,0.0008440408886383065,0.010543989902593302,0.016621709302048843,0.03833719804008192,-0.16693763397709918,0.0001516062832215205,0.009584935574094771,0.02279367945212105,0.01742411432064388,0.063130391829457,0.000639422748424503,0.00099308970318802,-0.0016986539504095046,0.021160933151260525,-0.0036081932415862918,2.3921746710507226e-05,0.0033399021795188256,0.0018306139253615626,0.0055841606202914834,-0.05978636101226567,9.738451325168914e-05,0.011439477803253934,0.00011634054048611969,0.0005641110980724091,-0.049449454444052784,5.805347905955468e-05,0.0009599276570834525,0.008791505302858745,0.007722556035272826,-0.009294938283614143,0.0022203689564465586,0.007146542311297874,-0.03169799485416637,0.17898845675686392,0.013854223391614729,0.00014573332535427932,0.0013827083780655412,-0.040039127530502885,0.19809630232238434,-0.02772286616714024,0.0003129799150421166,0.03349462118680349,-0.034823756747170684,0.18273022391697888,0.008974349588684432,5.36816912745748e-05,0.014205654595204313,-0.017632325919471913,0.09323175090896832,0.011680960595534175,0.0003116969637761072,0.027529420308236963,0.04806031854158022,0.7539810005914678,-0.013040896700934381,2.6451875740894838e-05,0.019454916982497017,-0.003022913394321906,0.031083472413632147,-0.018947859232919376,3.249210776951288e-05,0.011994925198481558,0.0036716847565328456,0.011104617049765547,-0.005221592258517722,0.00010650857055550042,0.02508476212361377,0.005213109881346296,0.03437345262982389,0.0039460024698607914,3.503209405852248e-05,0.025408014659538528,0.013096976497892088,0.042852044427269004,0.036896375261023906,6.776054400321354e-05,0.015540617272379393,0.009496219026256546,0.03177081978470718,0.009457607439486185,0.00013666927713768727,0.007640100113442645,-0.026879058458833673,0.02652625064570924,0.004528763501950729,0.0005791802503203212,0.01005309171222957,0.009886659333734081,0.03209003298775373,0.01079454178735968,0.00012967773471170348,0.0015800907743849242,0.03160554167326613,0.10628530014536,-0.10268333463317687,0.0019085749054728958,0.010061819026576225,0.05248459931735147,0.5419228670972499,0.027216261425568496,2.490442988836799e-05,0.023734697715524146,-0.0100403758789892,0.024606675068238,-0.006445920194523124,0.0013340383269066418,0.008619185402700574,0.003180158607126316,0.022823428063114316,0.00035197199381723106,9.278837052146146e-05,0.0030637182253643192,0.00929660557659624,0.014596097884595325,0.006755513769254066,0.00015032562730274624,0.006747395577398732,0.02274019437687098,0.03011741181886083,-0.13426818368436333,0.0004333915495052488,0.00556012892232959,0.06936797662338995,0.27093679159378786,0.15202104265864372,0.001984455590412466,0.013812019880694868,-0.0307160289378563,0.11416806270309342,0.038361111327253124,8.631987580565643e-05,0.019737527270351784,0.019862006256187385,0.02345691111426713,-0.035334744637810195,0.0021048903835047005,0.001648987796678164,0.003526611995636379,0.01100987538906374,-0.05127397626344175,0.0001269086760124368,0.011388551616414005,-0.0030338780512654422,0.006319466797965127,0.007196164223609127,0.000194615783816709,0.015372649349426736,-0.03032514968935537,0.11740173738165254,-0.0974256302033288,6.304379590556502e-05,0.0002945249548962725,-0.020687922255055176,0.06054422544265345,-0.008233370808774619,0.0032386364980989926,0.04280067578283924,-0.024701915862142786,0.1357741313500348,0.03184223517054601,9.050116626158614e-05,0.013222819628412825,-0.010656219355034855,0.06454978351298901,0.012094019847827167,0.00011972067204656636,0.003777673154249215,0.012639053396681631,0.0734746635446153,0.01331757912938006,8.136275418622192e-05,0.016743606625002603,-0.025580843797197123,0.12252407874435173,-0.003872646065130719,5.247359450943374e-05,6.779142035283911e-05,-0.05249425614432477,0.10305008363679517,-0.011048613798024137,0.00024836639379199687,0.020903752839844844,0.004118731245799954,0.01488344777079017,-0.025503405299933616,6.881360061533211e-05,0.00020112423057809937,-0.010541827803674342,0.10428491317121114,-0.06310146903049299,2.60810889019442e-05,0.018646834708060965,-0.014426216345334628,0.04047937115599267,5.031045941478852e-05,0.00012457406845491436,0.007439482957808,0.003721056244350166,0.015194859266286128,-0.006619481969384643,0.00038600908247851196,0.017403473530270108,0.012343886838079922,0.051100941183922,-0.08069409631078701,0.0001383549904100449,0.006616524005576783,-1.773349894152739e-05 +2023-03-10,0.06780383593865034,0.4843222893364211,0.27133751541381784,0.00014804931141526486,0.011546485099095454,-0.0012603992203536003,0.003882721501203856,-0.010428339163906657,7.789012696025908e-05,0.00890244934587024,0.04594045775546,0.14727566768748715,0.06209196948778758,0.00014429840226107214,0.03130716316314802,0.020458236955178323,0.020616022236156224,0.03148673289250726,0.00033491236868090854,0.003179179760224109,0.01600851679720109,0.03769741897694759,-0.10910237261650597,0.0002221965195171604,0.004412803457552466,-0.007427979307269004,0.016475448916801704,0.00561162701717128,9.844194098452763e-05,7.943821009212017e-05,0.021271418462937428,0.07116457704501113,-0.007641634491309567,8.770461248708216e-05,0.01829049953645927,0.02964610449139997,0.25228988157289667,0.05484725029798081,4.02964155620658e-05,0.0012567375099026223,-0.00469165159929414,0.004631729512677528,-0.05528146395276267,0.0007811372554712217,0.003066664987832063,0.010839645879587129,0.025855088200087976,-0.010234634576734028,0.00014659898291226366,0.0031478220725340614,0.00849502900130593,0.0056550337950828965,-0.02954612556781493,0.0007342670155515749,0.003351298840692138,-0.003787167228950955,0.05283744976597027,-0.05709826277117119,2.135971354399742e-05,0.005738563251258976,0.01167057654848312,0.03514123799637686,-0.007918694964548084,9.865663358415348e-05,0.005495622391949602,-0.005109989521665432,0.029468573093485582,-0.017817131726415837,4.881156369642643e-05,0.010756470087979827,-0.042505494444219596,0.0400246709337524,0.02946329647571208,0.0020712869789871412,0.002943297037859935,-0.022978578822308415,0.16022730547540237,-0.028219234060428002,0.00011801541650798465,0.0028083806023156523,-0.01109598633077233,0.05793185072713539,-0.009574086935457509,0.0002965901625344402,0.01020100098483121,0.010407870265398704,0.05616590947406079,-0.01759381291436906,5.219753935829865e-05,0.012741025133414251,-0.0549058708391136,0.3724306209197162,0.07736203705606541,0.0002429742277426956,0.017410125677682353,-0.0115762693394032,0.1722317644971234,0.0032076978156993733,2.789238191310872e-05,0.007207856233726075,0.013829876704763527,0.1531947085560314,0.004290657068481562,3.0161730328116408e-05,0.0080614928377586,0.015447648065032338,0.045860374267177866,-0.005852874605989125,0.00010850444445903184,0.017797087219053275,-0.012273986771490745,0.09036092500784669,-0.0007710462582356255,3.1375984292558074e-05,0.005027557492089586,0.02354897106060149,0.06909711432521905,0.07310105796037276,7.55595578319975e-05,0.005913775627519791,0.003555123957147011,0.015439793868817865,-0.04802202984906558,0.00010528387130263944,0.0055149998356758085,0.024121220001428557,0.022476233366050247,-0.04533967840062348,0.0006134106310488875,0.009294233963178388,0.008285315664556182,0.029622651576074667,0.008677201126744753,0.00011772566113028772,0.002684025970438111,0.013362240942639644,0.04706683606073317,-0.03753288961180502,0.0018221472426233202,0.010601780096325729,0.029556611373409494,0.2577778167913957,0.008271700159415673,2.948433217563125e-05,0.016170981337822576,-0.0035422535419828314,0.010792086158688733,-0.008236795627283147,0.0010731131311180941,0.0050097361820682605,0.005054217450559685,0.0347835161827773,-0.0031320467164159664,9.676227808480298e-05,7.09574019854579e-05,0.021223838193631276,0.031070918432823693,0.022623787249400694,0.00016121862819428912,0.003080601009937964,-0.02516515711458269,0.040513240126869514,0.03193377157817756,0.00035653862219022615,0.0036707258825170075,0.0416545966482797,0.16410073414633722,0.03444252048920578,0.001967445680172427,0.010074614401812105,-0.014241832334432691,0.050502656602248085,-0.06930512437712623,9.047779645934793e-05,0.004573268683106046,-0.06282351521201922,0.09156830571606428,0.0934833391130042,0.0017055099067501747,0.010112945947007033,0.03583787439695596,0.11802396204056219,0.019402896045142642,0.0001203062222892535,0.005093760589804516,-0.025465763960912,0.055300881057937214,0.06935310159878556,0.0001866745163754605,0.005909581217013877,0.013444254905283013,0.05507395620323275,-0.050835520727858234,5.958053358806207e-05,0.0021535349135854646,0.06481879321370385,0.21923367218014705,0.09247229253444508,0.0028022813774828295,0.002772367898843411,-0.004239760491589088,0.02057053197035666,0.004181160401998955,0.00010252655649727796,0.0030676112627808405,0.022246971553897835,0.10301272996916021,0.012925138848571284,0.00015661768028865352,0.002980511164676111,-0.005566280217722349,0.03236591363187967,-0.005209373109499691,8.134406913581484e-05,0.0073000274768694915,-0.026989284507043958,0.13017264894966493,-0.05952670688189667,5.210975409302718e-05,0.005762494327000672,-0.011997288324873243,0.02203630748311882,-0.016082511990070533,0.0002654444604977019,0.018183285649782523,0.01910190371040127,0.07266497777529679,-0.01573464277995817,6.536810308205514e-05,0.004820547001028095,0.012242903716319972,0.1404712515251103,0.002188987411300877,2.248683160842545e-05,0.001596825673577106,0.0008053618735044573,0.0022906644645299735,-0.071385413458041,0.00012289622753833968,0.006570653726506127,-0.019809636220852574,0.06841457015117113,0.034399685049601406,0.0004564107538532839,0.0012859330466780856,-0.06393112938782393,0.30170484568463835,0.050532908042836874,0.00012136735495808005,0.035454382376468904,0.0023336065689054577 +2023-03-13,-0.040874884981164546,0.2518170145649317,0.10212112476931595,0.00017165563182418902,0.01546805500960097,-0.004878164151926642,0.01592790435441159,-0.0028391946651967824,7.348662427638553e-05,0.0034276307799415975,-0.008603529299630838,0.02919823566541647,-0.002965882968040996,0.00013630671048542916,0.003543286219134231,-0.028838614637684036,0.028687499503210822,0.07676197610115554,0.0003392731997026825,0.004444304408994942,-0.012000045808203503,0.025979583457828668,-0.0006578181581285074,0.0002416843297324004,0.011666966392224934,-0.025977363336758902,0.0683884485339251,0.006359054049382126,8.293905011294237e-05,0.004748575353029621,-0.005867986714436736,0.02325856949542963,-0.008239839315746844,7.402799328732666e-05,0.012069633634338911,0.00043427581839014615,0.004101397597071597,0.002288062338011417,3.6310513376876e-05,0.0006932061071995008,-0.023768109148442716,0.0162053770060132,0.06167726555434125,0.0011310460328248133,0.0014114900051848608,-0.00459532928947262,0.010598846382672429,-0.019461743393979467,0.0001516072345917188,0.01611445546752432,0.004844521762365207,0.003245278842182501,-0.05718507979760043,0.0007296645567761158,0.0017713919189966205,0.003062091511326067,0.03866382562542731,-0.014113012246520134,2.36013112058199e-05,0.004352393766425401,-0.008610979893759696,0.022361240229950518,-0.007772077756316284,0.00011439517992493281,0.02177500204656159,0.009413071117672603,0.053784877307135645,-0.015878999734288034,4.9264374834150265e-05,0.005465711607907183,-0.005613655657446715,0.0040737084550719034,-0.07427293660925768,0.002687687661424044,0.007627380173414106,-0.04702660756159866,0.3535634050710421,0.04912625443129348,0.00010945319676474417,0.018274234185689055,0.055294611498994305,0.3494254846091329,0.09746659340099734,0.00024503970830572723,0.0009461958371558669,-0.016373885587707276,0.10629169082445108,0.00805811990219997,4.339237207801165e-05,0.013956599899293886,0.06001441911983954,0.27614226164043115,0.06355191501700241,0.00035818676687917423,0.013346689351554232,-0.013083098060221838,0.19887935613474136,-0.0016806835987526378,2.7299275570528508e-05,0.008733328905702855,0.023061665053430207,0.2251732366174231,0.02182975839622332,3.421807697066724e-05,0.004511952077608784,-0.024023846569706155,0.06214304600421997,-0.15182842573752728,0.0001245296491531536,0.011384412794629956,-0.02910269610296249,0.19058346257845554,-0.010425152699909013,3.527283666620093e-05,0.005666409881012532,0.012510304780867482,0.03158263310327583,0.021746754696836425,8.782070869493195e-05,0.004238541805138984,0.003783667543263379,0.014411498622517808,-0.02094169981146725,0.00012004730660258841,0.005713261854882775,-0.007882516062831349,0.008593386122214903,0.008942990907730281,0.0005242954631026306,0.01592587140531,0.013355611778086002,0.05118429255155022,0.01964901779979254,0.00010982800391187176,0.00048754277003914604,-0.018164495097674316,0.06011850423837991,0.002831182354089978,0.0019392524047303966,0.02881474833021714,-0.008729013480796577,0.08436075815283493,-0.0030474787381967483,2.6607672437702283e-05,0.03988692647969223,0.002971181920890838,0.00870015694524576,-0.02570108235190808,0.0011165377895750533,0.006671934829940077,0.014976770890019891,0.10678663981587194,0.001591675793641206,9.339570576871479e-05,0.006466927825522685,0.03944108380422568,0.05548164593587612,0.08223297889848237,0.00016778181580882152,0.01017901100050424,0.053753619827979104,0.06507702562218869,0.13510203542388488,0.00047411526034428557,0.012870679496223909,0.004020609210083571,0.014166761596661083,-0.015828337342393254,0.0021997413511064983,0.018062749474410864,-0.002376957089522519,0.010010032888416636,-0.0036204160521483343,7.618618161324025e-05,0.0025040430361504794,0.015257862197453953,0.026515293322229808,0.0018107635298502563,0.0014304558040450135,0.01167125372226277,0.013982474576468682,0.04683131142715192,0.0028730104559478204,0.00011829428272251752,0.012759677619781858,-0.028057608827136343,0.07852303733391161,0.05722957204631649,0.00014484847995979927,0.007185963208009458,-0.043817346423496564,0.1982674539900572,0.06041846384840679,5.3939705190946415e-05,0.0018807631153581012,0.027039023916500662,0.09006405549456965,0.007160684476982276,0.002845493310546074,0.029322282822872917,-0.046444057386764416,0.2523943717730786,0.0795225012783634,9.15358160174461e-05,0.03048828249541699,-0.014158010314310512,0.07875645677727208,-0.014961036012900884,0.00013036975207205375,0.004570184024128839,-0.008929416633739874,0.04542636858911116,-0.006827058568159734,9.297448154655424e-05,0.002499075931908584,-0.058417302016111665,0.2381661287800182,0.043347354579304304,6.164656646671919e-05,0.020238453762346172,0.0035686617482454334,0.007554631354047304,-0.005694998131700399,0.0002303146178370815,0.004599651122947501,-0.011966774352875874,0.0477502340069574,0.01849722951834665,6.231835396088565e-05,0.008132590086524102,-0.015813201212532664,0.164852121686402,-0.03832405228546028,2.474893651085969e-05,0.0005719419012138068,-0.00779589687457703,0.026253128028221356,-0.04214865639247454,0.00010379919696191049,0.0038718357161500296,0.0030927860854003536,0.013777701915634658,-0.002861395272335036,0.00035383522797357116,0.008296498352758086,-0.007475486292671848,0.031190225016968724,-0.005983994067702438,0.00013727540622871578,0.020037920109074323,-0.003991717796584998 +2023-03-14,0.007797603698124802,0.05545078997216919,0.0003530889375450073,0.00014870994236143348,0.005928066688437839,0.010982006691749473,0.041579964269659105,-0.02714046147161968,6.337356212353392e-05,0.02190932367197676,0.015645917089077775,0.05295253822438176,0.013223836837330277,0.00013668203827596582,0.0009193729577348926,-0.0012490683097651583,0.0013144246178849626,-0.0024502861318397373,0.0003207143274661915,0.01783050943834606,-0.009509442261024723,0.01877123851414896,-0.19665902385361958,0.00026506958010075004,0.00701225535270064,0.0021243341184777075,0.00455094326012355,-0.027903063950810415,0.00010192204835538253,0.0024460492451493917,0.02014230250360087,0.07604014425652696,0.016131941110694343,7.772416000616315e-05,0.020047983910311856,-0.023508134472632863,0.20859696988236998,0.07490231921019404,3.8646376925804705e-05,0.020553354889181304,-0.03124449227921078,0.028142368268712487,0.09995335511688493,0.000856165289081043,0.0033528077849933413,0.002156345547746386,0.00516649077788361,-0.023469543822952788,0.00014594344189103109,0.0042917389391410096,-0.011800596694582367,0.00933705135035796,-0.07428464938715436,0.0006177582853351622,0.008329120091574068,-0.004066501829555743,0.05464100904232721,0.0014803565165579437,2.2178136428045635e-05,0.011500176717460868,-0.04677457816738387,0.13565809846202653,0.02798824287097312,0.0001024271743877726,0.006603941244976059,0.016190703068344824,0.08851957208044225,0.04501866274122166,5.148588953758659e-05,0.003730908567106502,0.021620178420876185,0.015442874009342335,0.03551588406365162,0.0027305750519776343,0.0131764282116838,0.012891874185990875,0.08987866662944095,-0.01741140298525259,0.00011803520138649268,0.015581211070872973,-0.024897892782291292,0.13245352415073217,-0.04153838026134697,0.00029107660872449396,0.022482733433788833,0.02556077519377309,0.1572681966391066,-0.007337969885857551,4.578192714075466e-05,0.005183724774421017,-0.0002841855951898189,0.0016446853676959478,-0.0131671883529793,0.0002847777401893907,0.06254947854348569,0.01974116133086717,0.2735749183833329,-0.05908019139339182,2.994516087875041e-05,0.028574654785681032,0.004698804932121329,0.050496997614638016,-0.029749138103314705,3.108877200058743e-05,0.007419370035013915,0.0038082609287144226,0.009890793616391884,-0.024729266111172467,0.00012402759230690653,0.016664039436894842,-0.025925289229407882,0.20328319094557462,0.002492149196867278,2.9458763717218357e-05,0.008433399815825495,-0.007385656728576432,0.025290342763042872,-0.0784911485928828,6.474582744331152e-05,0.014017468601696774,-0.00786821722695996,0.029487332823735068,-0.013217951855150454,0.00012200831951220779,0.003674845680177355,-0.08291514543144522,0.07334970927301229,0.20110987206420627,0.0006461167968561789,0.03797697096975565,0.004433024844134099,0.016286589690024507,0.007184074398017817,0.00011456607090627391,0.013634478599826996,-0.028251616996136396,0.09242438076649313,0.04627618956719768,0.001961895789383478,0.02149750795751227,-0.005580255467820787,0.051958773678429764,-0.0072876576980266455,2.761705625523358e-05,0.012527065805347808,-0.00515232920589383,0.01479207633308812,-0.04301113472903643,0.0011387954801698166,0.016553693959112846,-0.026351518409578667,0.19775990192501205,0.09713848759188767,8.873461107141673e-05,0.0012089515876834449,-0.013198627035006644,0.01766354146292908,0.012861567364607123,0.0001763584856419874,0.0026904376074039634,-0.013533323263295618,0.015498897197630685,-0.05945917809132834,0.0005011959718274297,0.008588469249935048,-0.04483104421734389,0.2051669851010663,0.004211814667776533,0.0016936424063424189,0.006247751631228816,0.020835052462629105,0.07907065712147963,0.035289154126638876,8.454143606606333e-05,0.00523154372860248,-0.03952497530756599,0.04544184077125769,0.00018761703726462517,0.002162185166135361,0.021530507593121657,-0.01885586118078187,0.06007947852833768,0.0032072965301048204,0.00012434726980114596,0.012042887759706602,0.007108258330683642,0.019022914672389393,-0.007209853973905146,0.00015147693846539564,0.01054904991310262,0.020595659001762488,0.07783688808072639,0.01737383520664194,6.458090894481763e-05,0.004653101075106124,-0.03421136771664254,0.09009687274797423,-0.04049592959676724,0.0035989745698587817,0.018625390394070036,-0.022712961903857853,0.11752667364879331,0.014739548090425516,9.613419603230525e-05,0.005845786721048131,-0.014657136224981293,0.09029339301468961,-0.04833961586591035,0.00011772099808020201,0.005083292054078926,0.04804344547485228,0.2801386860126269,0.1338008138684023,8.11166033931948e-05,0.002026453190908524,-0.019382767470514466,0.0813417663492925,-0.021172610641050034,5.988934752845562e-05,0.02355889740688739,0.025749904588974536,0.03687251368059452,-0.03399793914986754,0.0003404883625155368,0.04983225097530323,-0.020984937094728262,0.07778244348693616,0.06550529676569618,6.708732346086622e-05,0.013190944248452411,0.01004443817929813,0.10788909079008692,-0.06837928580536465,2.40203539384171e-05,0.0055168372633387025,-0.002230487010639685,0.00734645027564835,-0.0012058743108769997,0.00010612827848581785,0.010282866177109926,0.020097836568636996,0.09425884682671339,-0.02446600646696751,0.0003360896659082859,0.0020710001548600665,-0.025718190998962318,0.11676243944747577,0.001207457870816642,0.00012615633202358272,0.027729974905377243,-0.006869214270582219 +2023-03-15,-0.017319416962503914,0.12430639835384165,-0.028580952338369426,0.0001473419347967493,0.008846875449525254,0.035745061959609276,0.11238026795315102,0.043106512348950056,7.631967591641156e-05,1.3055708738400314e-05,0.02529280122812271,0.08041155146849918,0.024932823137550218,0.0001455042551109009,0.002870195091537796,0.0026778731933569727,0.0030407241683770743,-0.00022246082318473536,0.0002972219219096494,0.006788638690198928,-0.011663235810228758,0.024230274414708645,0.005891426524215331,0.0002518595923074483,0.007467459465384747,0.003256820574713087,0.009807036973874188,-0.018513483875217045,7.251081060445707e-05,0.001847699594394285,-0.04931831482535901,0.1569682949352677,0.033385452204564466,9.219049419107632e-05,0.023769412495467896,-0.008322553909627285,0.07406594634225959,-0.007118181977254423,3.853334006960308e-05,0.003989598927709206,-0.004382001148565645,0.0032581206772959947,-0.0005248041435950641,0.0010371703850778624,0.003415888737253637,0.0022558870793036867,0.006068034146409591,-0.09646435076522689,0.00012999637056578274,0.012929103643036914,-0.005591491728534202,0.00434743379563726,0.0053280407562909535,0.0006286646896370877,0.019169460554952618,-0.0002264963012615821,0.0032226354269449266,-0.013574733496309667,2.0944631637954944e-05,0.002211798481243375,-0.01263128978121211,0.03526656813465928,-0.011213198124658187,0.00010639850773158585,0.005865209967643963,0.017696936790482377,0.10773186751505172,0.04026841427358259,4.6239776864861824e-05,0.005893101663378104,-0.05552451158143448,0.0419919747701802,0.020691251729855916,0.00257894108373956,0.001256829004569107,-0.016266028616522547,0.1120384924803889,-0.04858323872213558,0.00011947206855375393,0.000935919395757731,-0.011501752878480492,0.0650362456687245,-0.0014067313493612258,0.0002738525576146854,0.0009038831518647973,-0.006798194577109808,0.03901419832293484,-0.007402723628928146,4.9083085901368834e-05,0.03895939520858969,0.030327076336723133,0.17444923244675584,-0.0707658804214397,0.000286515610440775,0.005955159151365228,-0.05262501541237936,0.5825296199158787,0.0800773035538249,3.7489051659702625e-05,0.010135741971462671,0.00579743889155474,0.06913541417767079,-0.03636808112684212,2.8016721930755937e-05,0.0060364576479181205,-0.028237437003783922,0.08723829236022801,0.0003110658834492901,0.00010426555875277127,0.01892205530518068,-0.08441443998179714,0.5724302578969424,0.07013699185951894,3.406328575378549e-05,0.025760075647963038,-0.004945466048975055,0.013056582580444124,-0.07391672955275784,8.397598123059154e-05,0.0034876590533688724,-0.010847959595196481,0.04314089541966308,-0.00516582493866296,0.00011497608049928498,0.0017796542172607338,0.047276778180818886,0.05349457392526885,-0.018923302683361204,0.000505142257939022,0.022709890770289613,0.02952404886706983,0.1193018931165143,0.026565195801743803,0.00010416326617878553,0.005092933260690234,0.007506485314897327,0.030145752744323597,-0.0025341927246678698,0.001598194682193379,0.012429594671202023,0.0011045864394471716,0.010070590521129739,-0.001631011130499047,2.8205055914059514e-05,0.022945314739851015,-0.021427986559938935,0.0624858075307693,0.008201820045490431,0.0011211694315678901,0.01377754958434252,-0.013819752826699219,0.11190036483911621,-0.01893728596744928,8.224214261608726e-05,0.0011393732918137294,0.030170500314880985,0.050787031958325374,0.043145551288927504,0.00014020873318653824,0.0017434994525090362,0.026020910780850615,0.038793553447928196,0.016794062184875478,0.00038500542147536904,0.0064642940584544745,-0.018279293600593754,0.07227924913891565,0.0031679659891357564,0.001960180738578557,0.0018590583601488047,-0.021701891223714215,0.06744045672176319,0.006069097018659906,0.00010324462471314949,0.004144844705405729,0.002601628604494925,0.0034216216278433395,-0.011347391234275094,0.0018901249213835979,0.01459550835501538,0.0051273192522577945,0.017210160964986773,-0.031795073406106135,0.00011803789713013272,0.0044125492759085165,0.03927968918235357,0.09323244286994713,-0.1128525657067955,0.00017078957387525647,0.003225929599174916,0.023306576663506964,0.12195818192876161,0.010531084579514691,4.664246252327641e-05,0.0016284082226944825,-0.026373970905843983,0.08031692329878244,-0.05822986835341238,0.003112336293304546,0.01741558185299888,-0.025821124446329526,0.1489137303114193,0.024610198414880866,8.625434441013408e-05,0.03286267674189097,-0.01946533709491466,0.11236944412291125,0.027254199027396377,0.00012562453899328876,0.008213485136245396,-0.03885209757532361,0.2047838799664429,0.05427707223623646,8.973614370379627e-05,0.012737226105272175,-0.00704216926752674,0.028387291221710523,-0.010164280072680736,6.234905873033126e-05,0.014485015979983765,0.0441873990203777,0.07166244862939798,0.016619453888242944,0.00030063268060818483,0.019905646427937698,0.01224576735591053,0.05340777963445462,-0.03694361463621649,5.7015883356492496e-05,0.004593054410273372,0.007034961517821842,0.08390899406609637,0.0028389765687771916,2.1631393463194636e-05,0.010283537134464293,-0.0062086581290200765,0.01975954948356235,-0.0403151444383895,0.0001098321974483116,0.002968129751657148,-0.010355098535217386,0.036887373716211036,0.01140051065136981,0.0004424910297579127,0.015277410253678063,-0.0205790088892548,0.10398838660071022,-0.006666486396727758,0.00011334736034777884,0.01791847045336719,-0.00401186096725185 +2023-03-16,0.013667727169032683,0.08528218583112647,-0.02796216221259292,0.00016948238303293565,0.0059898037148714426,-0.03826635182555369,0.12892351598969434,0.017732124504041206,7.12189301941382e-05,0.01529466616432357,-0.006384263820331527,0.01986387496398742,-0.018522873183586603,0.00014867709162362858,0.0018914833538946577,0.010873136986474121,0.009833022833114715,-0.0010832384474066432,0.00037319487259561564,0.006288167583926289,-0.012133749440345998,0.027445406005362633,-0.03425667436778898,0.00023132530056894836,0.0030657454721163607,-0.002521289510074002,0.006486282157785588,-0.0013606749169273657,8.487379470041204e-05,0.005038308167167408,0.03379005171875971,0.12241696556143962,0.030848463805343857,8.099106346718424e-05,0.008603196703780529,-0.0014636186158613485,0.014239202119605531,0.0018976819850858675,3.524851981542311e-05,0.009388841236627225,-0.0033859045405337184,0.0026444018927307142,0.000825175415795697,0.0009873975313736546,0.003718736986549143,0.012702664525804493,0.02915304372283626,-0.004973766721935309,0.00015236064799259674,0.0022659151471567432,-0.016635982551418373,0.01394252379515849,0.01710416610934997,0.0005832186725621182,0.005852403205847109,0.01771553244839316,0.2127508404185454,0.007308076144211889,2.4814510631918785e-05,0.0038948366096311993,-0.01773729398629044,0.04534381836801492,0.0018068760331816894,0.00011620379544876401,0.00485826339775306,0.004132048663763501,0.022669192673601915,-0.03320554005799352,5.1308721395893363e-05,0.0032583298736174873,-0.04966798324059293,0.03951365615835397,0.05798125833217455,0.0024516150690272642,0.0005046658563709454,-0.009262016439412081,0.062243406835705076,0.0027033210229384648,0.00012245155369490997,0.003121661623639454,0.020847666604088873,0.12800997928538993,-0.00011863955696321787,0.00025218651365615895,0.00989460565110561,0.032817775953062366,0.17932463329639506,0.00272905562529797,5.155017575905457e-05,0.014233122880885107,-0.009661994312077081,0.052062103652565944,0.006931444084528095,0.00030586647106692593,0.0018996377610122574,-0.00600396263337655,0.06928931352626097,-0.011106220032207273,3.5958531988632214e-05,0.001484710384219092,-0.018134407551876924,0.16670463243958936,0.06441066767343599,3.634439238354762e-05,0.0087399835868611,-0.01901166838044136,0.052584841944349925,-0.06208628922635587,0.0001164615090653699,0.0009229681376093032,-0.023984808732188116,0.1857544647664096,-0.004866658717234348,2.9825612725871356e-05,0.005859149806273777,-0.01477551395758317,0.04590851724492839,0.006934529256177535,7.135537825301737e-05,0.005799925647709192,-0.02052838230611422,0.07817394462848276,0.055725530626581324,0.00012007187593468898,0.001976143908208055,-0.007201048050710737,0.0071675142352998515,0.005824855056226262,0.0005742522507763024,0.0018739158990430467,-0.005577928512303763,0.024777366758334224,-0.04928617694703138,9.47553638669695e-05,0.007724489778799193,0.01834102069070619,0.055501151289203694,-0.0003215963795826211,0.0021210000730815404,0.000567791671547092,0.006470242892502133,0.06739678679330578,-0.0012874830194313945,2.4686731185624533e-05,0.0016836750246593069,0.02913160894149229,0.09066676686991389,0.028351147544703418,0.0010504795732595481,0.029249004354185745,0.006453576704771641,0.043010634117068465,-0.005423746091562583,9.991950502795799e-05,0.005151094287108468,0.024015404602958996,0.03062674688900292,-0.08826282085906331,0.0001850693180993154,0.01022433223201595,0.00997654171038295,0.0137162535649431,-0.020662974064266135,0.00041749226282992145,0.017428335992862757,0.028982020976037772,0.11590160471246877,0.022605698739687933,0.00193815969779906,0.01949235006015465,-0.006117604125488714,0.025539477644959445,-0.002893149389551377,7.685280621212798e-05,0.005754808610602416,-0.008218498346650971,0.010543117226377725,0.00036789584687327623,0.0019377628635315648,0.0278663209971268,0.039207863908798816,0.15579303152163387,0.03921716777668432,9.97105680397816e-05,0.017424586784493105,-0.01001032448957361,0.025426189844598917,0.017436816081093286,0.00015959792710936794,0.015037954961964278,-0.025764413944928934,0.09911311943986986,0.020380440840584352,6.344582486334275e-05,0.018837501522828454,0.01792962138088635,0.05296303902662844,0.01030899495596507,0.0032086051749210943,0.003660348781613818,-0.007829737910279948,0.03575207866135268,-0.004652014011124959,0.00010893978113303427,0.019789763126981635,-0.010901006539814819,0.05506515657216503,-0.044428009026183116,0.00014356563828956388,0.031884750756088875,0.031541044102364274,0.2073808569012792,0.03426241011111203,7.193762568455534e-05,0.004002514454656775,0.007294002208609773,0.03545784786414427,-0.06196672847439908,5.1701234496141504e-05,0.001661302764351875,0.02175209730874115,0.04047295485365165,-0.05640042103599794,0.0002620388102575235,0.02567993431057099,-0.016002295344406513,0.06657691895618563,0.03477584172455318,5.976858366798067e-05,0.010973344479473873,0.02948075267780557,0.3680464525246024,0.04884686483195306,2.066651353247687e-05,0.0006246729845391642,0.0033733855648729752,0.009043735387103886,0.008824949836373372,0.0001303848404855787,0.0032727322834959485,-0.00010699956824392291,0.00045373884350024494,-0.13036736297704343,0.00037170982151013234,0.0040359607283522855,-0.014944589838086742,0.06966784974443953,-0.00752859509728376,0.00012286364335434367,0.022891886163679705,0.002009423867186351 +2023-03-17,0.0013699819947928203,0.009948432605955649,-0.0008087297622734195,0.00014562863576163436,0.01982969283745024,0.01645821161453562,0.058183891434864105,-0.02437692485515136,6.787196211394404e-05,0.02164295979308456,0.03325807299254434,0.11048918326687648,0.036544761393780295,0.00013924336926565855,0.002090698154779779,-0.030007587903252964,0.03376728607056894,0.002335963316817064,0.0002999181759886117,0.0008806055079491758,0.004414188949640363,0.009756120230115066,-0.014539613719527144,0.00023673994795548722,0.0027468999554635396,0.003694762757195872,0.009633089195293175,0.0011282838924121642,8.374670245443774e-05,0.0018247600185935387,0.0006163488053613622,0.002347166652671748,-0.010697964324006638,7.704997239126606e-05,0.00933818425530213,-0.012193401255782594,0.10212927692317256,0.0030097633341203975,4.094239302958307e-05,0.009078523931661754,-0.013619584758864758,0.012224203043684477,-0.008109449669636065,0.0008591877937525361,0.004903319127380668,0.02116005565435395,0.05785214718837541,-0.051516914472735195,0.00012789666189956322,0.0023666562287787416,0.016579168876807337,0.011274168791474441,0.030929349801615554,0.0007187909178071565,0.011635498255206048,-0.0046365635975389495,0.06034828245446409,-0.0016558335479960851,2.2895708978614075e-05,0.006233280419465449,-0.002014176976680942,0.005844231137166867,-0.042673165021000825,0.00010238145127872388,6.414737381342126e-05,-0.021874651287169478,0.12093756049313326,0.025970895181374083,5.0914531617587924e-05,0.006237696162764633,-0.028789071581999035,0.02720892670018509,-0.06352193637894174,0.002063665108835062,0.003924516837077577,0.016309356656019885,0.10714310581644396,0.0024340516964519825,0.00012526354738301356,0.0111605926908363,0.06537080030180889,0.3499940494757318,0.10014124173231505,0.0002892220320700871,0.00953172828487056,-0.002006813153695458,0.012145497456365582,-0.04763379293070376,4.654280866110556e-05,0.012065484593803747,0.03612440926736277,0.18670794132104798,0.015712006763919942,0.0003188781567923641,0.009502987374544514,0.051558572429220746,0.680959968609376,-0.055999910060256335,3.142024255210334e-05,0.026014198060217673,-0.0089354147484593,0.09106394850482433,0.023935238017409814,3.2783094639680615e-05,0.0028670687332278968,0.008934971153914738,0.025104148551263132,-0.012436859510542419,0.00011464903784723722,0.00835248114668933,0.0186320648370935,0.14370503550584804,-0.026880602671709365,2.994893453952165e-05,0.010073311331569905,0.007133989616118281,0.0207917089476408,-0.08813790612293425,7.607109506571868e-05,0.010385646455922652,0.01951059132598751,0.07670583156505208,0.07044301614608454,0.00011630292714401911,0.002099122479859085,0.04854470877208719,0.04829443506789884,0.019790325400393754,0.0005745401338177035,0.0005842647986190916,-0.06286319467385729,0.21306966281964534,0.06889286315321491,0.00012418262571386944,0.012213402290822403,-0.06484336901633408,0.18687731334870816,0.15117533972155525,0.0022270407509431974,0.002874248583520722,0.013015498251274654,0.14550753911572745,-0.09653957862944003,2.300157091691006e-05,0.006147979175446058,0.018545776362790475,0.05926358183540987,0.004609337501909472,0.0010231242819366984,0.026401671469458817,0.018713228859451186,0.15255881329645235,0.033712618860260564,8.168401386843572e-05,0.013223497170772994,-0.03149601547474347,0.041290966187057805,0.08064933714798077,0.00018003044549982588,0.04053716324167643,-0.025105988949922373,0.028761558695262066,0.030672233569110648,0.000501035881448506,0.009796340387748967,-0.011291718334432588,0.03787473612814335,-0.016687506099993983,0.00231079150194731,0.028727494732142395,-0.0015087187559598358,0.0048676376669434945,-0.007600546559451637,9.944441944279525e-05,0.012745474995868073,-0.0311490467996558,0.04339500492100007,-0.07189650089554862,0.0017843588988409483,0.023160739697304485,0.012460109441197232,0.04975886894262604,-0.09074447466351664,9.921272847627613e-05,0.006329545456925609,-0.00012477109072068238,0.00032262886861532034,-0.007721857698240151,0.0001567729471054413,0.008629444918126524,0.024789983398111715,0.1047931595926331,-0.006117136761363033,5.773740040220979e-05,0.014158423347458987,-0.01660775053625718,0.0553244510259483,-0.01389970724675214,0.0028451931698746445,0.0020305057853574034,0.041262473372563356,0.21571529773363995,0.04577429014175372,9.515133436213036e-05,0.011446024454880641,-0.008287305621197245,0.04139335694763642,-0.03098760205522113,0.00014519226857947012,0.008665212871797313,0.00198060653640992,0.012104221670052947,-0.0036688653239361512,7.73944891871493e-05,0.01597594122368957,-0.0038461087144867167,0.01688510628991321,-0.14839916598833547,5.724863709226504e-05,0.007012041441054987,-0.05811921716751612,0.08671511500582575,0.03963004418730714,0.0003267791551567147,0.028050900134512655,0.008582068578806926,0.03269944156027243,-0.007115910227998121,6.526284779693944e-05,0.0008813381736148613,-0.018461243972385438,0.18300651720585598,-0.009159527902236658,2.60270946313397e-05,0.0007234660272843921,0.0371338806580876,0.09896257481450231,0.18404150535011934,0.00013116208616311065,0.0074785926516294544,-0.002482869728274429,0.009493358344295892,0.005330881815059146,0.00041225129635188583,0.0030992507384427206,-0.007314738052950269,0.034280702897805035,-0.003998283808071412,0.0001222139711596114,0.005616313744674946,0.002196155775500395 +2023-03-20,0.017940811900833225,0.12392061022365662,-0.014593701472477637,0.00015310350511687785,0.0031636702292462153,0.029762277651543465,0.1032564374743355,0.033707372055765,6.916072757265537e-05,0.006731184773319356,0.03484272506648071,0.11687239592754638,0.024915502898730246,0.00013791051212798914,0.012093144309541807,-0.004342327179966666,0.004370027783393138,0.00031514086523903677,0.00033535609290241144,0.0030490595284036665,-0.008679223791761826,0.018142852313425866,-0.060110539748121264,0.000250307056799886,0.0005389592594037573,0.003847363406569244,0.011421042423810188,-0.1663382765255311,7.355364596504905e-05,0.0044931990778604766,-0.0383321193400909,0.1274033966423843,-0.049233083228556226,8.828190175646338e-05,0.005361859834742815,0.014466819806947565,0.1073092194764187,-0.01396788303154333,4.623114509642391e-05,0.001080214961405439,0.0038945225603543993,0.0032757634512528455,-0.01318492027891865,0.0009168250642587434,0.01462271584886255,0.08012265583565976,0.18751602984562296,0.2635979166593338,0.0001494097102290512,0.0021788382259031644,-0.012557141636193463,0.009195156081181403,0.021705090568328235,0.0006675073399783111,0.0053463776497414675,-0.0009417059057079568,0.011829398761965294,-0.20917868534385775,2.372331697222504e-05,0.013538465526158344,0.03901468962484259,0.12391142623437974,0.008442384312541865,9.353364053741997e-05,0.013315721169241023,0.012611361202598445,0.06225224125306668,-0.032053592763355135,5.702545918120056e-05,0.0004366644827597197,-0.020835361168416094,0.01553540627915433,0.003190362976519893,0.0026157810567609217,0.01120833317369213,0.013431292896938282,0.09023982686107421,-0.004659334748920152,0.00012248183218631394,0.0048916672085754075,0.0070675746787769635,0.038419247194363536,0.0016645539175677926,0.00028485889626393143,0.021368048518959733,0.0547344625904035,0.25081075066436936,0.015553464213963749,6.147176264912943e-05,0.03165065976152327,0.02459563310582257,0.15213373882212153,0.004273274661705596,0.00026645217822169514,0.018205833718198214,0.06000135813650126,0.7454370289821793,0.07422635505029304,3.340260592429713e-05,0.03425658137288393,-0.008266094452843611,0.07693673271267842,0.0021845994112528427,3.589618819546851e-05,0.0006757088602254205,0.0396047704238002,0.11952530646452515,0.07025266630382555,0.00010673586894706816,0.008301823436774302,-0.03130996945257068,0.22021618912237814,0.0002024965953655707,3.284171115763661e-05,0.004903384144919058,0.018086726426869974,0.06153997487202339,0.048196162351664976,6.515984422384977e-05,0.016397352818014306,0.014453470623674526,0.04744144148918243,0.03176746497653443,0.0001393037678574826,0.0025108279034268995,0.03129872017701948,0.02593502908436675,-0.0641818614743186,0.0006897876292114016,0.005222259597932983,0.008880836377368919,0.02965799569133398,-0.0036682066225629433,0.00012603700655812079,0.0051779712250965785,0.028171721457225327,0.10892350096657599,-0.01250306867672614,0.0016600110105694996,0.0014911119666307594,0.056207864252528876,0.5254928782856955,0.03622739795530267,2.75050503453815e-05,0.01253937739057046,0.04573944018013223,0.16148344568788175,0.08193429511639205,0.0009260492981324584,0.01033547252164523,0.02011222714358552,0.1456177995208831,0.031270496461386986,9.197532782543893e-05,0.003418668438576815,-0.012409498614149299,0.01613401097796469,0.012354170570800205,0.00018153370567070421,0.007307366000289293,0.03350711250281664,0.04400338480482451,0.015040539052156668,0.00043707385981558484,0.010751689779089434,-0.03200716493311312,0.13591660782116796,0.0018923365753325465,0.001825261199897607,0.009769536308336654,0.019092447581465232,0.08753286440237469,0.024479925004121196,6.998111163670565e-05,0.014977905836208208,-0.03407548868022494,0.04236371163010675,0.015173768649857268,0.001999517831527747,0.007179958571475952,-0.020556643657149307,0.054123625929827,0.018756695638499916,0.00015048089317771162,0.02722411564516555,0.02255032690865591,0.0517344438778047,-0.03421558130548214,0.00017669873211513854,0.010901538559829775,-0.04495490629584189,0.18009234770329885,-0.0279006169460761,6.092503146730693e-05,0.0005575792090888666,-0.04957121360144179,0.15749020831419205,-0.10456563246212296,0.0029832802426809986,0.007897629120136864,-0.012748950347766236,0.07676731901092901,0.005216868098201743,8.261114216378729e-05,0.0007900897789307487,-0.03719053797612975,0.2041879482564517,-0.013810970624475534,0.0001320879316955825,0.013108161282936489,-0.018852187256626532,0.12908696592680038,-0.10749056427707729,6.907613831077212e-05,0.01555918387805477,0.007955102496185648,0.03792934659509865,0.01331729403744199,5.2713009688383025e-05,0.0020879017214329165,-0.0010205434345075537,0.0021289346569469325,0.00015900999841410768,0.0002337214409929508,0.010360225228050678,-0.03315360608723076,0.15590471792789598,0.03566121650227389,5.2879323585671956e-05,0.0012719145382354261,0.0007022855599957575,0.007303060111261801,-0.062267381541837204,2.4810764639110067e-05,0.005954098873780592,-0.013871242360582386,0.03776229804962942,-0.058084160631091994,0.00012840026164153174,0.005865508648160375,0.04008906789105116,0.16254236696364388,0.08457035117229682,0.0003887651707544057,0.011608470796320557,0.019560915989550953,0.11673758829615516,0.03446942692007374,9.597326439418084e-05,0.01696520577991491,0.007986622233475934 +2023-03-21,0.027523615655507615,0.22184145727918556,-0.004871426501979592,0.0001312046898911089,0.0036529367250579753,-0.005330048281769628,0.019238168877873926,-0.022526810798237294,6.647799873146757e-05,0.009435483520548413,0.040095149192210855,0.10875215865784599,0.024061393671907516,0.00017054977552687556,0.00609014767187872,0.00731688289409634,0.007765242680906577,0.003821322660449629,0.0003180086459335364,0.0034257052329166107,0.03670117079919629,0.07697465755672878,0.16594269768984574,0.00024947666262824464,0.005799514683051911,-0.018735197665106607,0.0465208080501926,0.02502388929568987,8.793419043578082e-05,0.0030010938382225225,-0.01336036282987062,0.04529091086189176,-0.13234681299716175,8.655597497885651e-05,0.008267043551728422,0.02219710188784103,0.22213053655134793,-0.01060475596741558,3.426783162851994e-05,0.0015257186185435433,0.035002634271273904,0.02988335146848947,0.11026416939066505,0.000903267145909437,0.0008869251910304411,0.005140698357167937,0.014255228883091274,-0.005422970723396424,0.00012609846878557446,0.006193731032619689,0.030713694794428016,0.02058786171915373,0.09152701115856962,0.0007291975150027566,0.010288252226774253,-0.008577212287754403,0.12654728156331616,-0.019713512998064685,2.0198360920376212e-05,0.0034885809714044376,-0.047736247961751084,0.12231917912332779,0.006106487478422577,0.0001159323824133531,0.014714624005022214,-0.0055152446527966,0.02702640092492187,-0.015491879080982911,5.744316829271983e-05,0.003208258347611355,-0.00185277510450131,0.0014820150818285578,0.003517821905908229,0.0024383332214082056,0.01272119873718331,-0.04585402790058184,0.34206467712950644,0.043589768002382984,0.00011031164704759818,0.001065686736044062,0.016818055983967965,0.08924046828918504,0.0004963985611810252,0.0002918247923506103,0.0323284517867103,0.009583147648736355,0.05388721477645384,-7.12129051292127e-05,5.009373318583426e-05,0.009705854188220226,0.03879076070870401,0.24416831628330074,0.016074095386364142,0.0002618338523045239,0.0268891277534942,-0.03384114418276789,0.4407290408932597,0.007810108118373143,3.186424269261962e-05,0.02436511303902528,-0.005764894518296443,0.05579458934737086,-0.002952649569102296,3.452081090623839e-05,0.008202963420112704,0.013796321738344277,0.038237401976482815,0.018388392578169457,0.00011622450172691472,0.007758315126193755,0.03808646401191498,0.27501656482881254,-0.008005527801494562,3.19892587770609e-05,0.04046082348871856,0.011734446416897798,0.033293399741621856,0.0192789197316067,7.814151792147822e-05,0.002653667462059442,0.01370837601438088,0.04860507418370077,0.004590768992822188,0.00012895939698815412,0.0030897328721047933,0.030692336435180368,0.03306521852274031,-0.00013369563266932478,0.0005305595231967864,0.0024890240493636107,0.018914667052298405,0.06399153203355173,0.014331830313008475,0.00012441198010041765,0.005604047686793288,-0.04377612774567865,0.16068382369315182,0.056532803979755214,0.0017485753828406733,0.002466085851591751,-0.01739988336837025,0.1696883741309027,0.0032796157509254243,2.63679547061408e-05,0.02357957940014028,-0.019479827075420172,0.05508666003657154,8.771004668539674e-05,0.0011561386649673552,0.010916391042392155,0.04230060200212271,0.3530774512879321,0.14778399347992,7.978150202350148e-05,0.006838116059089867,0.02687117941341833,0.039100745665970604,0.016612568957053833,0.00016219859027508438,0.004301132329109835,-0.005107709475601557,0.007141382175840127,-0.0011292780025671824,0.00041053276601455465,0.01915696291813912,-0.0011220625592038662,0.003705850701399044,0.0006491609631955061,0.002346818448137161,0.028867964017965153,-0.040868676784118915,0.14052072202673677,0.06235524926187878,9.331266101316662e-05,0.006517932111340335,0.03886949284484863,0.048934327812157175,0.03581366871131689,0.0019745695660002907,0.01951138694056239,-0.022129665912583075,0.062062994589989096,0.0011968327085604756,0.00014127267454213828,0.005750823972915204,-0.024803455183394642,0.06391347514196649,0.0649326610937236,0.0001573186197869538,0.007661835110971447,0.032093320849024165,0.14801491929967028,0.031510718130173254,5.292039660145353e-05,0.023507724833622765,0.04476720258854626,0.141280203177978,0.06081093102161367,0.003003286087090205,0.012534851801830074,0.033237453266077056,0.1778620159345932,0.02778107781141789,9.295764227496131e-05,0.010355981869860198,0.007697866230877052,0.045580614597993716,-0.12276381727728598,0.00012247599249738322,0.018018266632810524,-0.029953356974979087,0.1754077973342021,0.0350167061827928,8.076911161421266e-05,0.017561359174526326,-0.001377885728480577,0.00647072313563119,0.0018580983497727991,5.3518973974499676e-05,0.006655732018727473,-0.08650351789526729,0.1391981520190275,0.111275421930421,0.00030299097593107613,0.0182751505565131,0.006120348872538776,0.02295810926085124,-0.002358738225656795,6.629097948432213e-05,0.005033149244237743,-0.01445077110601698,0.1835878606315979,-0.11700847671439792,2.0308523345212144e-05,0.00433068905720404,0.011087244661839513,0.036713039687353094,0.018708385484710433,0.00010556312834148474,0.007412610731298095,0.017141635660174986,0.06534119120610028,-0.020345694591808825,0.00041351682377432794,0.00751251078370219,0.0043125987376730355,0.02626942566411376,0.009445185315052397,9.402866489542813e-05,0.004039954815196841,0.0033676354152776685 +2023-03-22,0.004749110699851502,0.030457304481742838,-0.06756899383140126,0.0001648949714660518,0.002959327791397382,-0.003920188014996375,0.012082589007398843,-0.026957183201547177,7.784978546292207e-05,0.014234731028773139,0.012922367818513858,0.03820913635779201,0.0027338519751260847,0.00015644874424665308,0.014285940043763063,0.008670068888213808,0.008600671318240676,0.0015605571417182896,0.0003402186002419327,0.004618868260589071,0.06549031513747272,0.1370037205121301,0.2888187754050404,0.00025011658560801796,0.022022323350859074,0.004285328060056338,0.009892504795250421,-0.03818998581601924,9.458549586598207e-05,0.0026303797877030794,0.032955319537559154,0.1383368703216038,0.019493550319433128,6.990004188922807e-05,0.01933149825527827,-0.04116248355571989,0.3402488934643469,0.15560907066231203,4.1486181517562824e-05,0.0005496241640007842,0.026950147727026322,0.02158575433501432,0.038231138000184066,0.0009628058195447702,0.002192252981522722,-0.017422781066090635,0.05110207302262312,-0.02166051186779031,0.00011921772979242138,0.014439032336194224,0.007863054537310198,0.005794488211096587,-0.005177423921921786,0.0006632855903747984,0.0017588356103800688,0.013813743212301405,0.19235913415838832,0.03425915845909165,2.1400373560517953e-05,0.0009243071407607694,0.031135457680131318,0.09108130666876334,0.0019494185648222654,0.00010154932464885297,0.012172874387079376,-0.007270001841508937,0.03955406542501506,0.003226150803922557,5.173747286645823e-05,0.0008160881246613929,-0.03412495901799507,0.03204205739291923,0.016763616062646654,0.002077182796612441,0.015610121339141534,-0.04457024055645756,0.3003747755933112,0.008396709206889001,0.0001221050501988051,0.006959149147479881,0.03074429635363413,0.19465624032978385,0.01335303126579451,0.000244570718100692,0.04627481072093634,-0.05229581075937065,0.30828796000791603,0.0220559676482975,4.7782766692330294e-05,0.01249547549807896,-0.010305411734331273,0.048196435235226126,0.0026175014144210404,0.0003524010857252709,0.029935307999089448,-0.03768879236297145,0.5092547366431024,0.034377802644116454,3.071194886455672e-05,0.004120339360130886,0.025556157179181357,0.2482272648385159,-0.07169511580360818,3.4397571153539404e-05,0.00916756914317022,-0.02207476083691194,0.06265709294622404,-0.0902428393289942,0.00011348762865881849,0.003086453370215563,-0.0007802585993474548,0.004644815476090657,-0.005091079833333845,3.88027472012678e-05,0.003982614447787348,0.009539112952333825,0.026881708658373787,0.0005476004219335131,7.867350585246747e-05,0.004777884431064571,-0.0030052713856576875,0.010903946683258019,-0.027965601928375706,0.00012602263982174362,0.00026222084529940737,-0.010996132430843644,0.01025022608991435,-0.007423682103069745,0.0006131716657799535,0.017474179072674914,-0.0008648268582004721,0.0031563669939666714,-0.03300511751127898,0.00011532612090988508,0.01225651237210937,0.032746825109553845,0.10433966777768147,0.01694021876565574,0.0020143685186915926,0.008671681519654894,0.00036257578818889064,0.00319655711934171,-0.003106421400533233,2.9167454279211244e-05,0.01667010735991782,-0.04525379295476999,0.11294463261426614,0.04075386369722532,0.0013099679137899278,0.002060762011821559,-0.011775754866891112,0.0731445415546122,0.030909200308663457,0.00010720930421880822,0.003230010273461751,-0.00412619765003258,0.00658058979096402,0.0033980710746988273,0.00014798939485036286,0.004537550275834366,0.009707354414330956,0.01311131161860145,-0.0033657272206350413,0.00042497037909910144,0.0032207536370277836,-0.00781555588889482,0.0296925494136435,-0.02094942982381612,0.0020401529438564708,0.012644612305618922,0.002074172165780194,0.006557975607947498,-0.013763710495687866,0.00010147647563398664,0.0020323618732832846,0.03983087716025244,0.05737799597479001,-0.012330900933893833,0.0017256459110369224,0.00895519431462776,0.0008572750457154801,0.0025648667460119274,-4.8878665398358824e-05,0.00013242543607109013,0.00669978244372548,0.041402200969766524,0.11243996561451987,0.042208518151279205,0.00014926675828989797,0.03244517077693303,-0.010522772343711894,0.04350657941900891,0.0002376884079625439,5.9032226035753814e-05,0.0009953281687658515,-0.003401065810961648,0.01062338149850773,-0.01267266179623571,0.00303438243561677,0.017107674075398822,0.006120796785799974,0.034707715583848074,-0.05851196891973294,8.772482321350274e-05,0.0179404530348359,0.011060266396517228,0.05582032355544499,0.004681570101429864,0.0001436924740465663,0.0006450875409092184,-0.015181182928861912,0.09205307951678875,-0.06114499789531088,7.800384134601951e-05,0.0118642240329795,-0.0512151122030398,0.23129618356300777,0.05526349936452797,5.5651523318156434e-05,0.004349496770727378,0.044384627976177926,0.1082221803827531,0.02882133113730988,0.00019996118353088007,0.01459438422291513,0.017652998251126248,0.07345250803402233,0.02735245045672971,5.9762151578352566e-05,0.006334690863534842,-0.038537030217778795,0.40788913373542945,0.08302647237223444,2.4376277948133136e-05,0.003432768103154429,-0.005054202582695929,0.01835990044383375,-0.020914177275437137,9.622574628130366e-05,0.0012645822671988399,0.011925668840377858,0.04331062428234786,-0.03356537259067891,0.00043402652589937093,0.012581124256095168,0.002447048041052206,0.009466034233522973,-0.20972536848462248,0.00014806288960884058,0.007067715988013037,-0.0001650330098495702 +2023-03-23,0.026516938269776753,0.15027764048653644,0.013470605170038537,0.00018660169912172923,0.02313682805374086,0.012097287047240994,0.04696031782173239,0.007635121580353455,6.181124409865165e-05,0.011099096322893378,0.06897147311072438,0.21156000788154172,0.08045745693233773,0.00015081103894549704,0.014905089566525892,0.02117787262144485,0.023612315796115536,-0.01827849991659804,0.00030269943142302813,0.004125724597232815,-0.013650280924399474,0.029752957565066983,0.015890532429177807,0.00024005415022255194,0.013932983893926061,0.008156607747034682,0.01760569893546787,-0.015122747766555774,0.00010115865499741696,0.00279434549766051,-0.024540399570215074,0.08408975501694117,0.009344364158140203,8.563048378712388e-05,0.015032532227154366,-0.0034776888974192848,0.03148736673616718,-0.07228357532183256,3.7875031342010956e-05,0.006034115954555434,0.001124821911833252,0.0010080827317047233,-0.05202057304863262,0.0008604633542398938,0.008438801986896855,-0.05244143096120962,0.11663062013002712,0.09134712600394591,0.00015722580800402156,0.0006421686668218528,0.0070983478759075016,0.005712635829642852,-0.07943848161280741,0.0006073584782090364,0.0012023452402757531,-0.019671682877612368,0.2395829184077103,-0.04734739659203576,2.4468562354585157e-05,0.0018410544387136834,0.05716281046608767,0.13470662782090434,0.09763077585077859,0.00012605951928772372,0.016464160621465627,-0.013128858359337043,0.07504617559138037,-0.03781223105447534,4.924478164812655e-05,0.008030705033102414,0.009303235068753331,0.007347751435615065,-0.0004002649652209415,0.0024694629281814696,0.010300668408338251,-0.0025754249239833453,0.01646036710047924,-0.15152348501953253,0.00012875422391662758,0.0026542180470838783,0.017870158684168008,0.12622749950889994,-0.017627875000238803,0.00021922125603474093,0.0038825732635078495,0.019848803413955583,0.12035541579216932,-0.1392636244207222,4.645469882903879e-05,0.011908083482880957,0.042968644452340325,0.2411084127091501,-0.022953830898531587,0.0002937149797569741,0.014569527052289363,-0.02195337025839978,0.2899000329616072,0.0018470455598469696,3.142557035875241e-05,0.0009345326696083016,-0.004543808474703007,0.037973672057187484,-0.23440565187634707,3.99778220768029e-05,0.01101939643350859,0.015542528734049472,0.04517420589399473,0.01655669528633533,0.00011082912584824694,0.0036867721810897687,0.028285676901854875,0.23469807306178914,0.01717773328237693,2.7838730608872934e-05,0.0005576110430711785,-0.010862424286884408,0.026595286289463026,-0.01914762794730632,9.055229774926583e-05,0.006669896215150219,0.008063500709000703,0.02469104731902799,-0.026346512958687448,0.0001493250649456318,0.001455880335240878,-0.017790791665135253,0.015942815456172973,0.012330590735781527,0.0006378312838701741,0.007809742796363308,-0.01339828765592528,0.042699360726785665,-0.004342211522423786,0.00013207296682053946,0.005606979449366254,-0.006988753294793907,0.02471443192664797,-0.036696681604673,0.001814964990797737,0.013475670831180545,0.006634767855541374,0.06403965000843748,-0.030747158586455544,2.6641518656345422e-05,0.013867572788694438,0.03712435701057223,0.10495961412750902,0.0397277717418864,0.0011563997386241256,0.0116094071806563,0.02155449501406588,0.17580316249237068,0.003580143826490119,8.16463571674525e-05,0.006876483248618843,-0.0026076772816401557,0.003935877504601275,-0.034366931532283006,0.00015637151943594032,0.0017064223818572329,-0.028707585159703532,0.03997179320091248,-0.019269037767477192,0.00041223697608965064,0.018422134399704027,0.031892823637670584,0.1260909907703239,0.009604944002229452,0.00196046573096737,0.004608064876759304,0.004182844689700965,0.01534530396278804,-0.0033654460011908,8.745539675286492e-05,0.009611199262117193,-0.06389692648220395,0.08225312989108653,0.07090570537406675,0.0019310998392777317,0.006850274199487663,-0.0075940592775530225,0.023758279364675353,-0.00536122125202562,0.00012664120511137933,0.0008292882597546445,0.033674609717713154,0.08756958036767044,0.023613410077406406,0.00015588692077862193,0.009174264013784095,0.0153019797748392,0.07289306065734648,0.010398536428722325,5.123601719487887e-05,0.005352503635507377,-0.013990376809521279,0.04844310547814548,-0.026527406412632116,0.0027372564862720634,0.0027839408167194828,-0.02764541658613714,0.1366786873386225,0.032674686538949525,0.00010061504139010866,0.003790361323230075,-0.021493470684012812,0.11764420664649045,0.035999496908466565,0.0001324941759619566,0.013534699804909596,-0.02778272297058706,0.1804069320127846,0.016490392101425246,7.28400585485358e-05,0.0051707962984859825,-0.010191635733943168,0.048644557094306165,-0.007776088096436048,5.2657111740832815e-05,0.006957673386095022,-0.056574093573848544,0.10774064149923517,0.036524172921609054,0.0002560161966567059,0.0013519604600797145,-0.018958745300510643,0.08558284924842081,-0.0015445964262071445,5.508549126983656e-05,0.0058121005459508615,0.04553901142366551,0.4951694503458434,0.1399089902477566,2.372799494424109e-05,0.001130304378462285,-0.007717459329921743,0.025524061529494425,-0.01111495860612553,0.00010568991074567798,0.004140021687584087,-0.018155205969127963,0.06778876875491861,0.047061955577713074,0.0004221544827720311,0.005237664528253781,0.005012200713061058,0.021334254750305162,-0.03719368279292576,0.00013456210529835523,0.0030610499175723884,0.000696373160647026 +2023-03-24,-0.054017417872160356,0.34583836591948053,0.136641251665204,0.0001651761098983798,0.01703974841290674,0.00997566246526459,0.03711448112149856,-0.010747308370211843,6.449245054485958e-05,0.0017213681220512702,-0.018723328189927203,0.06160973895173866,0.015863509470389687,0.0001405823781395437,0.003975219080301101,0.013686530058604492,0.012928152095350406,0.0026526532425574442,0.0003572932068109808,0.008221755423235767,0.007357617648851724,0.018016768450978746,-0.04459777675104534,0.00021367715391506064,0.004621490374156218,-0.022765380654382498,0.05877833138935642,0.07359546296832116,8.456767741186226e-05,0.0010096373958579429,0.012987165491436397,0.04721846405108248,-0.001629195421144979,8.07035007375377e-05,0.008427036084583457,-0.06897483869086463,0.6317587106219372,0.3044969169565579,3.744019218285999e-05,0.009035758352858851,0.001718710517546755,0.001451951815288711,-0.001695882768409915,0.0009128413765465089,0.008708253009824965,-0.038617332040351955,0.101970228178186,0.05685879324318225,0.00013242523783550125,0.018051704197351776,-0.02255225372563619,0.015281175822313382,0.06486615099754223,0.0007213690987625899,0.002524659404824631,-0.009379159137016257,0.12752258737716488,0.004499976396019246,2.191793215476233e-05,0.003620484522110015,0.05519044522596835,0.14051000483033224,0.07844935105611386,0.00011668302689925293,0.016326242124057592,0.006723829882370118,0.03095783180546125,0.009751355318217667,6.113754548010039e-05,0.006575164098947416,0.05105113020001981,0.04553410900692113,0.1492668680018683,0.0021867115098050762,0.01609968517644361,0.02538073144963722,0.14342926505822584,-0.058845726047530376,0.00014561914226591798,0.011004174407963616,-0.05956013511992498,0.34974492943090646,0.02672278330338102,0.00026370142667022213,0.017387949422420845,-0.010011456730455785,0.058413186981345955,-0.029456612985602326,4.827778418595938e-05,0.016792432126140604,0.016862850142640662,0.08871144533492106,-0.0042900010977404745,0.00031328394062899486,0.022557009653212473,-0.12809211876555754,1.7534662118825721,0.28005682559923784,3.031483710255914e-05,0.003177688796691723,0.004648594045040048,0.04512374900443839,-0.009909397743097589,3.441899266562156e-05,0.011507233135451494,-0.0038539236279287385,0.00997691440263827,-0.0005754733910246588,0.00012443129292018568,0.014613306171233357,-0.011576667397611175,0.07683314547700641,-0.04516018402920311,3.480385246065923e-05,0.0030301495080739638,-0.004357376820126764,0.012130638290994759,-0.016007371061662015,7.963772550520861e-05,0.003520474855724264,-0.006607562608024652,0.025771688952822603,-0.00404928093438347,0.00011723222329312086,0.0011464180947619105,0.07805440608240853,0.0696965480645274,0.07058066235352632,0.0006401204708845732,0.0006287423832302811,0.019799133484378104,0.07219117499863166,0.019543347926232676,0.0001154378108288643,0.005840236929200096,0.017166859685211734,0.06602239195122228,0.0010937677250872043,0.0016688556661603466,0.019917919184058303,-0.04455656886587081,0.5543494683834769,-0.003126955334738037,2.0668563809077085e-05,0.0073182098687569405,0.008708774214687388,0.02738408822756259,0.0039898204865184686,0.0010397526011300775,0.009907710432123497,-0.020762577131706924,0.1538255010435386,0.06531890912315239,8.988320787615618e-05,0.0064466500602865405,0.031658555889407615,0.05242584410405817,-0.015097783970912219,0.00014252500178223198,0.0017951474805565967,-0.0027299211843913916,0.003374155530990843,0.0005975307150155782,0.00046439648623911804,0.004269275251225632,-0.026756586448255747,0.09317412780695085,0.014206309187646085,0.002225797812783145,0.006794087675016228,0.03249489419962417,0.10058287404492665,0.04147218748644993,0.0001036528998701351,0.012021268735715431,-7.889317692742646e-05,0.00012179413852136387,4.765109514165718e-06,0.001610238657992467,0.001953409408667078,0.03607115815563459,0.1169478880110827,-0.08391516653230349,0.000122203526836454,0.006517958130120223,0.03437358960633067,0.08417720672920638,-0.022278078806032633,0.00016553535070673944,0.011956823543083856,0.0026591905966045553,0.01295719632762794,-0.00047277535973352095,5.009015229614863e-05,0.0014064463246726048,-0.05598676746782295,0.1546531213163088,0.03704634469201893,0.003431189952249363,0.00971792116529333,-0.02292397365773368,0.10584247460856194,-0.005650993432567875,0.0001077383912291704,0.012349854965385966,0.0005123736872141323,0.002761395784429332,-0.0004176252817993772,0.00013456091929175157,0.01043202622553498,-0.014147567897170393,0.08568674287195124,-0.022517850934457764,7.809385305068292e-05,0.00023418810716425178,-0.08591328140787645,0.407498587237084,0.1920702538042331,5.2988496192095165e-05,0.0012260717948404378,-0.05408578754162037,0.10479153419867873,0.03150766655313848,0.0002516438686695527,0.02399167387595655,0.03316998158432602,0.1492091897515445,0.07676888824292427,5.527949084020804e-05,0.004033213215176768,0.016892429969676277,0.19191650315485506,0.01604513569569882,2.2709683977710785e-05,0.008928717756647537,-0.0026076672379780294,0.008541860722162524,-0.0004544481678547683,0.00010671086722789521,0.0028896812167325155,0.009526757633480444,0.04649997264730952,-0.005108545581316589,0.0003229389211863553,0.012378999021478276,0.030939304074507786,0.12245227385734113,-0.004501314957018317,0.00014471564435542867,0.01053495946281609,-0.005036962737157101 +2023-03-27,0.037136394793370074,0.2207884644412153,0.04294011208379215,0.00017787296520847378,0.0066590815449141996,0.01681995877788058,0.05855425414910328,-0.004991007289207565,6.892503578854442e-05,0.007565072489709314,0.062014067849504695,0.22863020957955374,-0.01645947197363392,0.00012547401935572805,0.006130923176649927,-0.0008216195575108157,0.000751230487215131,-0.09112463997323723,0.0003691181667163075,0.016783314572745418,0.02549099396688056,0.061433343897956266,0.02085052817456777,0.00021711027993114864,0.00037881163544333483,0.021133030509939654,0.06875223155010766,0.0547424032565801,6.71153285995112e-05,0.008706063228376656,0.02789869488175611,0.09576975511605781,-0.05593745134630956,8.547623127190108e-05,0.010030783031875233,-0.0021978283195614144,0.018937952987739246,0.00012070467085806912,3.9797825683714006e-05,0.004184707577225837,0.011678612241713137,0.00972954507747401,-0.03677403957768517,0.000925642935942274,0.0018527484851217119,-0.020565378327268482,0.04656285864190827,0.010628567509364967,0.00015443970185528708,0.011319286427105347,0.011784179162613775,0.010524133047761432,0.0069000299053246445,0.0005473150180529253,0.010778120708178735,0.00912423594857175,0.1233415705502944,0.018022725634450117,2.204498576285007e-05,0.008499202868331316,0.05788616060509174,0.15461102379105915,0.0696306199980533,0.00011122062394632867,0.006519544925988609,0.012153129613765128,0.0779169841950752,0.014024250362406893,4.3905387384743506e-05,0.00678809180382857,-0.01660601365540832,0.012954592352950852,-0.025275687427782963,0.002500141631339684,0.02334932724939227,-0.025830496947899285,0.17987892113893159,-0.013903799456964254,0.00011816928157768796,0.006214220316825975,-0.02734462958123641,0.15955837751981722,-0.004591435801613289,0.0002653754020118234,0.0035401204195661404,-0.06940982616539076,0.39874225077520725,0.010050400513011176,4.903313447895098e-05,0.028145162639298386,-0.05727765266278401,0.343674649959778,0.03200639294091017,0.0002746784069618801,0.001472902059954919,0.06885374404559828,1.0364529071658797,0.027140970521972042,2.7568187761087217e-05,0.010731875334789294,0.00039996165652411925,0.004786777920062491,-0.013020266218019364,2.7916231325388974e-05,0.007504039575435776,0.02912496689245551,0.09407868934974381,0.05540894448412239,9.97233680089497e-05,0.0020005440914668085,-0.02954451128048033,0.18581032990312407,-0.09699376083710062,3.6728173560530387e-05,0.006018176117711676,-0.00731150802192553,0.025395163281043482,-0.008435788785136683,6.383124770071879e-05,0.005512599048126841,0.013026779144298015,0.046205845684057174,0.023368626949534215,0.00012891062750685232,0.016891941245472466,0.015547354432015185,0.0154109140901113,-0.029721950097486134,0.0005766385344884322,0.008470500581950239,0.004225124858295095,0.015392679153905143,-0.009637183117931972,0.00011553440698733309,0.010409616677429519,0.03363626789536654,0.13499768940238202,0.008239776548129709,0.0015991921239096158,0.015836625898447147,0.01599589067760999,0.13814116787561204,-0.11270517561023911,2.9776078401963684e-05,0.02873425233060388,-0.021345974142337378,0.06396518666621338,-0.039950775522101856,0.0010910472956741268,0.012325597489448533,0.018030832573274924,0.16143689954024631,0.008133014059004262,7.437699292733263e-05,0.0006554713451202177,0.007036000924687126,0.01124490731087557,-0.004849050842700033,0.0001476778612841819,0.006415030383475041,0.006400820253802968,0.00768590141837612,0.00027969511476750935,0.00047801853400926414,0.009540590262139817,-0.022924814492264144,0.08897076499110035,-0.004247542582960163,0.0019971415468250414,0.012462538379806383,0.0013288498375535892,0.0048197871990424395,-0.01516510611893734,8.845826442882935e-05,0.01613762041028316,-0.03402452702270948,0.06811003450030634,-0.04736272805848242,0.001241818679660731,0.024452197763208578,0.017673962212395863,0.054010664947802906,0.002550355703400875,0.00012964937709638303,0.012927232802867632,0.0030783638888020153,0.008467175866101165,-0.013526277430198505,0.0001473810857473996,0.006403603998573786,0.002522849683285283,0.011061930685473226,-0.012656606886431597,5.566399434757815e-05,0.0005535458304791105,0.023832700251906085,0.07707206354170229,-0.013169131741418498,0.0029308549251230325,0.017414293015569102,-0.02901251610676169,0.14329765772987138,0.011513749297891267,0.0001007133109366681,0.013866669844361225,-0.023521038375022927,0.12144490400302942,-0.06715642999717059,0.0001404552505985227,0.0003457618279610246,-0.01667584952095952,0.09554179719813588,0.002893578828436943,8.2554976833861e-05,0.00583870584710046,0.026380619155477847,0.13308084844563603,0.04285584466645835,4.9821502206289754e-05,0.015696224866789586,-0.016423636495704424,0.029736555724346442,-0.022623132540764652,0.0002692824524582849,0.03337300361888357,0.04553461297557,0.17523927162683056,0.14387149333359042,6.461369630720336e-05,0.007176710738693643,-0.00825165475882702,0.0829276886521747,0.0016999706298730362,2.5672772583812776e-05,1.3363878635455585e-05,0.02512927250208331,0.0679966899233283,0.01017780788201121,0.00012918173366085683,0.0045316255532596595,0.0124866120864207,0.05615685829388496,-0.002480269510059223,0.0003504852840268679,0.006397223308620707,0.026591219030217637,0.11806168229649865,0.04749340370595224,0.00012900337602720383,0.0025404895101054335,0.005455674843477853 +2023-03-28,0.008980237403826453,0.06725047202779266,0.0008867226924380926,0.0001412144259359577,0.011039698158177574,0.01621279248839353,0.04647598646737635,-0.012392504212711111,8.370275142696108e-05,0.002183015693850516,0.02205511200870356,0.06569192973652388,-0.004207645031355624,0.0001553082236762598,0.01568127619099501,0.01215991602578999,0.011556817277523989,-0.12059341348289979,0.0003551077783719994,0.0005258526649576413,-0.0062850273112098915,0.01353346843264278,-0.0029245145909111876,0.00024299415504900278,0.00028579757720037903,-0.01758250636021274,0.045099300868226465,0.024330387113263168,8.512511537215566e-05,0.0019216719055507204,0.0006879486769292834,0.0025331045569625507,-0.03410876907025278,7.968797278320085e-05,0.015539682304502818,-0.002463321279214103,0.021193471033520844,-0.0007088972751773159,3.985819085352716e-05,0.012583693539521112,0.004931251291249149,0.0036659718687629406,0.00021867962314391413,0.0010373200991216519,0.009830480225678463,0.019579107211638563,0.04551973175295698,-0.01532329473646863,0.00015040250748401935,0.00183411631570234,-0.003507582996692845,0.0026575403860232285,0.0004460061540671741,0.000645137729266968,0.018076681418161128,-0.0012300475440782848,0.018081661366817936,-0.050082601896032676,2.027245551602942e-05,0.0009651028522219601,0.006381292382203493,0.017568329821490442,-0.041964142242912034,0.00010790192820699959,0.037571594709424665,-0.009119076869115537,0.05864864122114984,-0.057773160155556454,4.376780230961677e-05,0.0027618226310198303,-0.03685527403146702,0.02785863291044998,0.025286929139604192,0.002580256118174584,0.00114367244906111,-0.020430235656131234,0.13467144202282563,-0.09495798061054286,0.00012483891153984716,0.0005639311828158622,0.025757712092453457,0.13937246065279804,-0.02142287597106992,0.0002861795186032994,0.0061459791428946624,-0.010882835259032064,0.07270039991884082,-0.0663517546545307,4.2166369596653625e-05,0.005215551048611111,0.043339996841883284,0.19993100599390007,0.010160149637647015,0.0003572691621969801,0.0007224238277195377,0.02922709987198476,0.3862379172616723,0.0075411805810407994,3.140227035667952e-05,0.009299711093355702,0.010184848248021183,0.11814639169464752,-0.03065438825415148,2.8801546588117453e-05,0.0029248582805039432,0.007055475154097953,0.020826230639208628,-0.018788398709137656,0.0001091285410162472,0.005104913139647869,0.049335689152454974,0.36938985427315174,-0.00345241170180942,3.085095500207726e-05,0.010488256902503153,0.012322875769008312,0.03540524175103953,0.01265724189169405,7.716527147123123e-05,0.0012508500885248732,-0.0007717580450573941,0.00316434885740413,-0.01437928450957311,0.00011151811097731767,0.0057333227748119844,0.07680382737460935,0.06988833177476343,0.056594969664444446,0.0006281360948385236,0.030628415626584624,-0.04159973099557778,0.21201047279036525,0.07174416500614739,8.258843124273514e-05,0.017541828503719943,0.018698751789390525,0.06506692165851828,-0.01704857853297397,0.0018444697238091225,0.005900878334447534,-0.012935776364314183,0.11310538649096455,0.005757366707007033,2.9409754958939784e-05,0.0015301710955822065,-0.02104316749293369,0.058209660533618875,0.00810811699903481,0.0011819179139414035,0.0034081359135145007,0.015142867654701672,0.09089570568996884,-0.003518153091334541,0.00011094057289318918,0.005354195657470222,0.03396959921772591,0.04502852903091198,0.04191281815724656,0.00017805248912737337,0.00018225730282520622,-0.024726335570065604,0.03862221017002219,-0.007171405414533889,0.00036747394345560503,0.00045120744717669055,0.012254180096203621,0.04903691593230994,-0.05872324702283585,0.0019369189651298187,0.007437654357448581,-0.02412544978509758,0.10961396047445572,0.0052728397652646725,7.061548068485614e-05,0.005519964348194764,0.023929715932875174,0.03133490587733239,0.0026923633497875285,0.0018983939469769547,0.0325479412653366,0.03645062351877821,0.1268832408489759,0.021030466556663945,0.00011381951621943592,0.020615453043021724,-0.009130269073147903,0.025501052693557093,0.008003928988743738,0.0001451395739908998,0.0014420499190790212,0.023630939639211222,0.09200551171756442,-0.052231809963669,6.268751737845115e-05,0.017514412604526703,0.007574953056985821,0.02179880710163308,-0.010542132594927997,0.003293557693697543,0.04239015286565846,0.005027646599898071,0.023935195974764404,-0.06632180309734073,0.00010448845940809831,0.02273449775730227,-0.023255387827643994,0.1335503117396063,0.02991827707384669,0.000126281422357827,0.001912167187631873,-0.009696029138690545,0.05676322665073694,-0.019487650468633492,8.079333514735473e-05,0.01617667854716161,0.024911128374873356,0.12083020664031342,0.015342333153438309,5.181616613328487e-05,0.0344437991840688,0.008015830719399758,0.01612135948184493,0.0034127839866566713,0.0002424243662513881,0.01610953636787883,-0.002848351902697109,0.01153098352851578,-0.0070705136636161035,6.14245053454946e-05,0.014846676959796815,-0.019970313552228162,0.22193207420206362,-0.03794990902851855,2.3216465184771796e-05,0.00988265632891989,-0.014783190073813802,0.0501920674328805,0.020305465540972217,0.00010295371930751774,0.00032450320454470373,-0.03557578572242497,0.12543642783684092,0.09149318575643624,0.000447052773755445,0.0004981866586137394,0.036458017250773384,0.19430012407244288,0.057457045821075886,0.00010747111735279916,0.004267340895555859,0.004931683156699036 +2023-03-29,0.025261114989374996,0.16976605346385282,0.01208637460129065,0.00015735778977873861,0.013555756117336469,-0.028254153954728373,0.08565457925577927,0.03528077949467693,7.914841964340745e-05,0.005307897491027514,0.0389163026061757,0.12788790622419552,0.01626851375260242,0.00014076649564153786,0.013564632061165583,-0.003300669522287081,0.0034097045375786916,-0.03381109689307955,0.00032670302204991747,0.0025930248787571462,-0.02404397516663801,0.04989150560840396,0.046365819930593105,0.00025216071829366546,9.133443765213972e-05,-0.01618304722778463,0.04042423728912085,0.02593067953918387,8.741082251034726e-05,0.006364123081948353,-0.027627748503180227,0.09721720777627514,-0.07983473848159767,8.338582037175523e-05,0.0005632016325961823,0.04216383650320632,0.35934023271969906,0.09220374288991107,4.023767609934376e-05,0.005757805616180573,0.011708363576825169,0.010125910434298899,0.0001736162478756731,0.000891675645808728,0.0025391596321488125,-0.010507254536515097,0.02448336803853463,-0.016820960479629343,0.00015006519554007044,0.017092220184365733,-0.009441958739089762,0.007473470263341444,-0.011968856372959526,0.0006175386523286101,0.01260567855303063,0.011149301723054558,0.14452094028707574,-0.13673647277752296,2.299003748692169e-05,0.0019170321434467767,0.002499686126691385,0.006291891483693021,-0.00028475187378406607,0.00011801991404368812,0.012669540120033528,0.00803924675644209,0.04219427480123955,-0.00497176903178374,5.3631957741152236e-05,0.0019384709611191865,-0.013182179700930144,0.010606479085245214,-0.025013369700669887,0.002424035413829967,0.013396191423278098,0.0055931481986250895,0.03726094851317649,-0.023581474154843515,0.00012352490496530275,0.0074002448820505145,-0.019041685069815628,0.14159283289965544,-0.07269956791358478,0.00020824392417528517,0.0026455539759807174,0.01936470888745289,0.13035870152090323,0.007853202968044103,4.18438756362216e-05,0.02357523991654456,0.01848946435377802,0.0921945771806111,-0.0009814257651503682,0.0003305261007371494,0.0022766948925142874,-0.0426830188224402,0.6128606567997009,-0.005789794810651476,2.8901715188630672e-05,0.020160566890069734,-0.005868487332800684,0.06340942561108431,0.0017102373425416557,3.092103777876239e-05,0.0005366383412446405,-0.031476674432398884,0.09476699730306659,0.045118426865705635,0.00010699278141825585,0.015461002913717829,-0.0014983939407461442,0.010787981218211323,-0.03416077162748017,3.208323870804902e-05,0.011576741859022329,0.00055439513020671,0.0015715874148919731,-0.0013857392539223087,7.820927260959906e-05,0.016677955298541998,-0.003936648494649102,0.015155118099532397,-0.009021488792968822,0.00011877250296011113,0.0021291906615530827,0.0032395426746708988,0.0027082440382441533,-0.010968575492954274,0.0006837092741270455,0.018596643954005777,-0.007994444180347516,0.030298701026073314,-0.0004731037497830997,0.00011105810885481651,0.0030863292451753835,-0.021636768929489687,0.0842485051635195,-0.020863274387708748,0.0016483497929511938,0.009832866913257316,0.0149398954782935,0.1502926265620313,-0.0015257950791252393,2.5561838109234684e-05,0.0021428804370866032,-0.04861916979030598,0.1318673616589917,0.04898390774820012,0.001205428599984362,0.003236549732586598,0.017982830201815243,0.11928535138947657,-0.030697689072015946,0.00010039141430839634,0.019564248370919916,0.022276844962278733,0.03212931781759474,0.011766208954436285,0.00016364304953110675,0.0027855393896567358,-0.0024089956158780887,0.004198728882158558,-0.0029272392421024686,0.0003293230211528192,0.01795905572356578,0.007493582796489288,0.03339560910278004,0.002205271222411997,0.0017392038269768812,0.0098456478283533,-0.017904691633494955,0.06763654270672305,-0.0008285718058209309,8.493287316126065e-05,0.0051135506292571565,0.009492597821461392,0.01447958501542099,-0.02782068039838325,0.0016296943424731504,0.007700897517491994,-0.00897258553771922,0.030023503086071598,-0.09684833194440097,0.00011840561018956129,0.006983910702018558,-0.02572113359029289,0.0600378676355061,0.05506739573881647,0.00017367016709051307,0.01578032655246532,-0.011016921794937058,0.04516057765073415,0.0009407162888958423,5.9540805156208784e-05,0.001518448649708115,0.0543606197260746,0.1978691425119686,0.07612632034311011,0.0026039005024729015,0.038295023233590436,-0.06796977528014295,0.375067356363393,0.12629332082232145,9.014614044662025e-05,0.018153856597633074,0.014807670138050458,0.08541080377561032,0.009167321558744713,0.00012572878156068572,0.010734649017290213,0.0032862949764434135,0.02085642958077232,0.005671622659125829,7.45272812067429e-05,0.008796567797167908,0.01853894498174544,0.08712543638488858,0.01653049297937289,5.3479513040387795e-05,0.0011800949936782985,-0.0222868685150236,0.045157215436409014,-0.13447206635156878,0.000240630842218192,0.0037037232650757334,0.011312452271476535,0.04486983339668588,-0.016661035041705945,6.269265736923843e-05,0.006119072135102233,-0.007533618112790674,0.08483959632002491,-0.00042030898013490763,2.2910591066689204e-05,0.011877498254510484,0.01474003689430414,0.04946935897517555,0.02824381924978702,0.00010415287253898979,0.012936118439947013,-0.020458814679544163,0.07709420767793153,-0.017201952845737018,0.0004182988686105407,0.0022061615012056845,0.09344844884452842,0.3532088742944442,0.21357396229400563,0.0001515347672638792,0.007331238091885316,0.0003173092051388035 +2023-03-30,-0.027968657232111477,0.21149217411675125,0.03300902541137315,0.00013985045983574553,0.005752852684213524,0.028573499570902838,0.11341731097499533,-0.010943699015586934,6.0449764682530726e-05,0.01568618983834857,-0.010021538234037215,0.035396884611918096,0.002669516015695103,0.00013096840910671055,0.03445822862166029,0.0028412697146586114,0.003114368491824317,6.326794290342797e-05,0.00030790044850451483,0.002743613180917339,0.04255589753610862,0.08945512251302969,0.009473641049821138,0.0002489157126333901,0.014014710595032998,0.003041848543915239,0.008378302038611968,-0.10295135641210276,7.927355118415391e-05,0.003251511803907643,-0.0021257234795060463,0.00940996558784888,-0.003933650710112109,6.628398181817539e-05,0.012144341690659104,0.035039664541292044,0.3406112824406619,0.04855192689513561,3.527764005580985e-05,0.002036543412174516,0.005416904241350119,0.00495686040107381,-0.04375410176301892,0.0008427315568854298,0.009218072504019082,0.011734712590114254,0.02954377092327395,-0.012918611673612525,0.0001388891808072047,0.01260546626616851,-0.011027234128214656,0.0069349607432375275,0.017935017379511142,0.0007772253314997393,0.004221420515055634,-0.00174229640249782,0.025657955674453906,-0.013634639810332397,2.0235911844381562e-05,0.012478292530915088,-0.058109009710268514,0.15961337787046054,0.06636505605156964,0.00010814967621366534,0.016182862606207365,0.014015434715399028,0.07772001175665572,0.009954896840879086,5.0761626991921284e-05,0.004668450372067465,0.01028934801464983,0.009479962278906994,0.014164930004253175,0.002116918897506503,0.01200482145235331,0.004899052970830379,0.0339416479359755,0.0019117307028649541,0.00011877671741225387,0.005543331208591714,-0.04661580944314699,0.24833084748933243,0.03086177521584444,0.00029067708146417767,0.02498327355622951,0.027095171283820652,0.1742590231540343,-0.006291103560167981,4.379833303783449e-05,0.017772741334458282,-0.009219267605957704,0.052839354716142525,0.003394184926596503,0.0002875581781931922,0.015695071561051595,-0.053102178459224436,0.7412329844574749,-0.007912117590452789,2.972951554371227e-05,0.004173997669027588,-0.01937535351742795,0.23523991032373584,0.0579686957463432,2.751822004974033e-05,0.003226395525046998,0.00017873744552826298,0.000577761149551491,-0.019829026966786442,9.965290592256068e-05,0.007002588817872227,0.0438405490453669,0.28554280736159177,0.043803356199344314,3.546476900926335e-05,0.001700973160930117,0.014709218020210732,0.048953776951901375,-0.13519010232081494,6.661633915057641e-05,0.001608168029053307,-0.008963542055858616,0.035477921156565666,-0.004944770694554762,0.00011552343447281326,0.00507838063415552,0.01869794789587599,0.019488778574272118,-0.0005328405887413031,0.0005483841392207985,0.04781476860324799,-0.026517584805346783,0.11941852915392992,0.02425463426191413,9.346483803390793e-05,0.005862578886005708,0.05755412555655935,0.1865158354068014,0.05527823340355402,0.0019805231573507553,0.010308696374167562,-0.005563265535084223,0.052472739489044844,-0.017159919364729215,2.7263288937271627e-05,0.0029168526536395263,-0.006874792722936324,0.021543471997168634,-0.016015441482251504,0.001043314352438772,0.013530945957387838,0.01819053009454819,0.1271242248416954,0.006264631199247419,9.528898053505101e-05,0.0008558930889491585,0.02524436096728972,0.033059341141907304,-0.00837605930840571,0.00018022522390560673,0.01488748059271731,-0.015494561463526822,0.024317501448967792,0.013316162332889757,0.0003657330876452284,0.004327721725816854,0.002345903009687234,0.010279477989649673,-0.000588090299497886,0.0017688431848218319,0.0034722895231654133,-0.025318821795846536,0.10939590721518273,0.005050771722359963,7.425621153132429e-05,0.0020469571836035814,0.005233657976691061,0.009170291735752858,-0.10223582221251595,0.0014187287754221626,0.019472835145930744,-0.0014752473583792636,0.0043267503843882555,-0.008771486840401719,0.00013508870586995434,0.0118309544902562,-0.007743706959740992,0.024825926898688906,-0.02469364128849396,0.00012644562683563612,0.017306188039376863,0.014513971796738412,0.05251737009008104,0.012169940711818173,6.745237255381731e-05,0.00022458037030491894,0.011322042331940656,0.03803382548821497,0.005160868212482865,0.0028214530172798523,0.0108340263044002,0.03570846627119141,0.1849108989772328,0.011979606783300161,9.606147652639564e-05,0.007942782501219466,0.030820713326039487,0.15201838822617622,0.0764495120023081,0.0001470304704215314,0.008739911109027106,-0.059328662933277244,0.33993834482230606,0.13029489852032158,8.254924474183681e-05,0.0049101529787754965,0.011469839610275506,0.05477842012084483,-0.00013122316785618785,5.262537909266406e-05,0.017435357071579328,-0.060091437895429256,0.10920728734229221,0.006260287759899076,0.000268281280556346,0.0027426541641547733,-0.019236457019106496,0.0781521704977348,-0.02491927141529507,6.12066229725734e-05,0.0009594563124466417,0.01665631238563976,0.18543561543202813,-0.05304479693935322,2.3174853254516035e-05,0.007681332617953278,-0.0011097856796744973,0.003378803343642288,-0.005282744722016677,0.00011481144046033903,0.018043934500564525,-0.007803831969731832,0.03331636123568108,-0.06236586849584946,0.00036921413422434234,0.006260228282275505,0.047499416831793304,0.2334101809452066,0.02233892874940093,0.00011655751463367072,0.0010184509321496974,0.002411983546771487 +2023-03-31,-0.018954493375085434,0.1334337473763887,0.017920317809671637,0.00015022184160746053,0.006931214335123155,0.033659611776981284,0.09905489582445358,-0.08631196427846631,8.15349264210432e-05,0.007056077556931047,0.02430023016642937,0.08301075492869674,-0.0020288806843705375,0.00013541701242782397,0.005619022946427464,0.014273965218142259,0.011296454622461783,0.010992034587792528,0.0004264521697050919,0.0026105191308486513,0.016915465583032044,0.040807351456372355,0.007011954975883423,0.00021689189325582267,0.002219643059293022,0.007815009311645083,0.020577443436921708,0.013210018749994413,8.292487452676509e-05,0.0015512099459146628,-0.04497964078572492,0.18131949635730824,0.06660380151726293,7.27882593615033e-05,0.0008233934147819998,0.022121359575122335,0.17221193187062656,0.004673980322179053,4.4050129645317865e-05,0.002692290529465756,0.0023087106319655566,0.002023529806616638,-0.014908188484997528,0.0008798419880134198,0.008442953580532726,-0.01986285335749468,0.047587394622149254,0.002216762273876968,0.00014595251890029716,0.008493011244893418,-0.021131031062523883,0.012994525199396796,0.044587189212656086,0.0007948489978854628,0.005214925731085197,-0.007481361079542421,0.0953516247726742,0.010775568013065933,2.3381658205254984e-05,0.00371805980156459,-0.006835041771146328,0.023916790746247068,-0.051968685487712794,8.489640636278184e-05,0.011680228788491133,0.00441563023884001,0.025075510629633257,0.0005546392014176035,4.9568380688727514e-05,0.000732622245716565,0.0008470139121021882,0.0006748647356500077,-0.004965703341394587,0.0024479175224801273,0.01609393939823047,-0.001873350829083444,0.012944569191930226,-0.02206233942654185,0.00011909228371511876,0.017607252673955024,-0.009468068879453123,0.04950945903201386,-0.01762702310150411,0.00029612935428006005,0.008843561522384913,0.023315151212121948,0.1437511845142844,-0.00867476319330252,4.568648653770838e-05,0.025190823509813266,-0.0039633829888273825,0.01842560250418938,-0.023704214587155565,0.0003545121716097263,0.006581148504922251,0.0015430243747000872,0.019533389885078384,-0.012554806726058495,3.278124164353539e-05,0.018671183734828845,0.016512197417252662,0.19605300214114593,0.021004502456607586,2.8139286703972923e-05,0.0004782561301468458,-0.0009225767367513856,0.002571938824899723,-0.004090352930430158,0.00011554858216184247,0.021649182552758925,-0.01622497656935695,0.12451525555832335,0.0015820863556913149,3.009912635485704e-05,0.01902795280794077,0.006151917631893376,0.022062647004608797,0.002024493551884803,6.182018179929441e-05,0.007145359165951871,-0.0013227478233572855,0.005032171742500522,-0.014114639746247317,0.00012019051511152109,0.0006895866343337563,0.024857972762121625,0.024833657073340665,-0.018775545930190284,0.0005721377312791525,0.002227426378252531,0.0004543194507733491,0.0014606950820745621,-0.021562321185489883,0.00013091450641755718,0.011193054282164461,-0.008044928020999346,0.027536221268321986,-0.03764111906525451,0.0018751542332319706,0.02386636538472678,0.031233843535077226,0.31180214671597445,0.011160064757940657,2.5758971864947087e-05,0.006893494050404429,-0.011133410347252997,0.03649180939165201,0.0012625109383493217,0.000997479751257802,0.03443577339173164,-0.02277262116942599,0.18450048521299045,0.058573996767821164,8.21941960934814e-05,0.000984558406944794,0.013072530307400425,0.019703660041466457,-0.01872251246801605,0.00015658787766747634,0.010782516561569647,-0.00985366100670478,0.016320895789752394,-0.051051495373256955,0.0003465433259982766,0.016613318969539503,0.00337689475857201,0.011609530834805893,-0.016901700697037465,0.0022545153563872608,0.04260919251680767,-0.029040071445427005,0.09865413270894863,-0.06220500568056099,9.444365106116847e-05,0.004696722432759342,-0.020749968995947783,0.025863098514546833,-0.030759260006476608,0.001994408378022522,0.015496015865475629,0.017753953916079517,0.0526047769681725,-0.0007605016267154193,0.00013371678960882058,0.004266469997509939,-0.029468397628214665,0.07614687697390277,0.026482661095271764,0.00015687899597309157,0.0008476826957209932,-0.0009815926398704454,0.00431718346831438,-0.004687679042567447,5.549383173601209e-05,0.010381330847234508,0.05637410132601928,0.17222581177836213,0.04852743160786413,0.003102411840463287,0.0087014578577998,-0.0018809671082736716,0.009501450636072968,-0.0029142826808741815,9.847633014115242e-05,0.0019105154330490664,0.024613143445026086,0.1274036861138854,0.0036366898163390443,0.00014010249638527996,0.011629727702161884,0.01401560238520436,0.08262382042512353,0.001828316295237777,8.02333996804656e-05,0.0017670161060568184,0.030217637340949025,0.12779558128171944,0.030295486446116168,5.942812960948896e-05,0.01950562750389641,0.033140646674745367,0.06307027097714765,0.040638252950100436,0.0002561920658587085,0.01655917847945617,-0.0018511047345555138,0.007384714021080707,0.002153080560496537,6.233208954789246e-05,0.010827260214441869,0.0026074404823479744,0.03061946751421421,-0.005965615580440689,2.197091053121982e-05,0.006108468472982999,0.006801747792506667,0.01979355754236163,-0.006370431832785334,0.00012011731917987161,0.005492562633251916,0.017396551556880552,0.07133771491900441,0.010421943927088138,0.0003843898801506883,0.006721828211955868,0.01758533468761633,0.07613599855887129,0.003727770293757679,0.0001322916356882539,0.01907389142555742,0.0032090769881093486 +2023-04-03,0.0036722731904041067,0.023391605657952837,-0.002854697028480229,0.00016602042913765517,0.01114123831410579,0.00540193072082531,0.015900088296256967,-0.015139102438709286,8.151921719978536e-05,0.0046343048245600415,0.04146828316123274,0.1522794682850053,0.01757938407377526,0.00012597138613823337,0.0035532785699593614,-0.0005473658655543981,0.0006343131326335185,-0.0005658070639006987,0.0002912338584519867,0.001674573640927224,0.007959320078394205,0.018220959737725823,-0.0022246076929051998,0.00022856119273360898,0.007139575442136723,0.011300417573651144,0.031907579394751515,0.01777223487271785,7.732988656623879e-05,0.01056042579882433,-0.015654114163633177,0.05358562403226929,0.00920894650502384,8.571761115755456e-05,0.015461577704501201,-0.0228175940029521,0.1964863064775015,-0.0014542510043257233,3.9823201748212274e-05,0.006423852339538423,-0.010454386827532245,0.008364541668848917,-0.00016371065798724568,0.0009638316939518323,0.0012152354575595023,0.013086355618468087,0.033043220730886586,-0.021481856194438726,0.00013848356428168763,0.007482836273315438,0.00046667608365358137,0.00032769455078164686,-0.05905202408394472,0.0006960984765471754,0.018708420759561903,-0.0008937257836976542,0.01304837808555902,-0.020570040464214873,2.0411294299022636e-05,0.00483484689466369,0.036678257239777426,0.10434661739126258,0.022638817105299,0.00010441943881713408,0.006423067918034873,-0.000369533927580589,0.0024434925911803324,-0.0040384086706800855,4.257014306404753e-05,0.004320962755132568,0.014989406006518696,0.012010483812083693,0.016697641924601308,0.0024341475126023935,0.001169254178788962,0.01502816744049942,0.11911192560703222,-0.04513280018093632,0.00010382522652839327,0.012544181601139064,0.02018852824051098,0.10489604834664847,-0.01882123400413691,0.0002980257323724974,0.014077745475411536,-0.000342475320411118,0.0020113011749976427,-0.0002676365579421273,4.7963749854242164e-05,0.008891251047733426,-0.03166157913842146,0.16052084709551526,-0.08707666026278324,0.00032507826731728633,0.024019309854722143,0.015433701699484345,0.23991300517290387,-0.001704080608514904,2.6696021443415253e-05,0.00044427104673025117,0.006300936807081988,0.058070955904572584,-0.004403561360119711,3.625165665845268e-05,0.0062575375214861,-0.05217625455103914,0.16151871670422144,0.10499741085268449,0.00010405735934861943,0.0037154595528677906,-0.14084183270667686,0.983913391177633,0.26757399908911533,3.306489686309088e-05,0.00010095711331231812,-0.01277660606781076,0.04442389673417884,0.03169247987154948,6.376410027520968e-05,0.00556203854299246,-0.010661194169485697,0.037902650214134054,0.01869662766738099,0.00012861300074338075,0.009578079440946125,0.04422557958983814,0.04235585697088005,-0.003181647951083246,0.000596809354151494,0.00033584301573031045,-0.019804729103397437,0.07265785011930094,-0.010832070566120632,0.00011472877911714881,0.004143288721684653,-0.029439531640537423,0.08467623194485914,0.02067170492697209,0.002231457127599964,0.025827354531722337,-0.04756446533579211,0.4482011399236598,-0.05803681385116946,2.728926620182289e-05,0.019226562717967216,-0.06254109702985002,0.2012623917560763,0.07604314722388635,0.0010159542121256995,0.022747429503447512,0.026316429279407284,0.18236402282430478,-0.013319707587817278,9.609779914367788e-05,0.013438941172382153,0.020266282034314746,0.030430980282836508,-0.08661068987654634,0.00015718225889841306,0.010132965354827734,0.019087879123707453,0.02668908212959895,-0.035671028113956095,0.0004105139802367426,0.0072772247376289515,0.055506510768682175,0.18923756230346586,-0.03806774405237649,0.0022734579396673166,0.030318967591659016,-0.02250289572662529,0.08335149982526636,-0.11881123415710491,8.661943752485702e-05,0.011318546922427012,-0.04027414101491773,0.05939502849691036,0.021754967678601727,0.0016855955774482145,0.0013591255003626778,0.00466263430489691,0.014924205320883021,-0.003714847646476369,0.00012378162388832498,0.013274535083266823,-0.0398521893391135,0.10609039216019717,0.07823556510407435,0.00015227776932291031,0.017544405986267653,0.038767706303550434,0.1421976606178553,0.05594720384300664,6.654134577987717e-05,0.00119204651159481,-0.04246375663750569,0.14228726688490023,0.012679725113201121,0.002828592808252176,0.012004477797072356,0.005472682250023081,0.027722629018193137,0.004448463040704121,9.81988474737997e-05,0.007657278996096979,-0.029888242128786977,0.1698614615260636,0.03586528881048068,0.00012760459125084057,0.014156156543244593,0.009255790783842265,0.05317077586257028,0.010162049672306123,8.23358987621003e-05,0.004956757023345316,0.0013616676683564925,0.005531312115140736,-0.011424047519925106,6.187145873582226e-05,0.015003315440757736,0.011196530001436951,0.022956016344743688,-0.0059357797449634845,0.0002378024457421216,0.019809505210670545,0.011965935801646845,0.05243042562568823,0.0040035905015998385,5.6751541320671874e-05,0.0023537140582283204,0.012783502485564232,0.13484478824952623,0.00892151647626115,2.4459466494621006e-05,0.006035883634993725,0.0008570013089340859,0.002150120498687546,-0.00428644970961461,0.00013932455035562416,0.001340544874126876,-0.006943953127595767,0.030722082618366044,-0.03275762258534271,0.0003562739746209947,0.009696207238232099,-0.054985541780355494,0.2866045495690292,0.05335437290348309,0.00010988469939585389,0.04092338354061407,-0.0037681926849258496 +2023-04-04,-0.00010329063812111761,0.0007035593152994371,-0.00017157981580860957,0.00015525544015470517,0.008694436336703635,-0.043012081884039564,0.16294164595755886,0.09113082108893131,6.33386629639132e-05,0.005035561768885928,-0.03263684790943966,0.09789342227318393,0.08010225684902379,0.00015422397793077587,0.01650787354697536,0.006638164853269016,0.006378770922546317,-0.0054680259761411545,0.00035121971327130796,0.010052299774799427,0.03554507878954266,0.09013800024392542,0.01930943290105519,0.00020633330502904752,0.022652382318488817,0.008192186694958872,0.02233626717138156,-0.10512025703596653,8.008219809801127e-05,0.006040344356767197,-0.03535572365360112,0.10027073024621427,0.029000885946690282,0.00010346069896542474,0.0009618711438637907,-0.02418966356201398,0.1978912165053334,0.022662311769151774,4.191813232738129e-05,0.0021153359805633288,0.006677377449662515,0.0066165034251028775,-0.05185886404065418,0.0007782554508045928,0.0028207614213217108,0.024656082196183073,0.05304586761154111,0.01630413390725331,0.00016253032302512686,0.007348768705372126,-0.00258655742393137,0.0020076642267661446,-0.007480363017364397,0.0006297314773098732,0.005636265289189259,-0.014904507678329723,0.20120772897690734,0.06899983814571213,2.207474855048047e-05,0.0030839661018345686,-0.04563066382197243,0.12136224520128336,0.032256190844071386,0.00011169255415345026,0.004688120272366965,-0.0023718163507538957,0.014260622427504595,-0.0924842519341345,4.68170878163202e-05,0.0005711842274530191,-0.009528126775286853,0.008662272478625862,-0.03376661963353423,0.0021453524907207935,0.02371562051202458,-0.035080569544243434,0.22071111258642925,0.013569817022822383,0.00013079602433839135,0.004774583200313883,0.018696166993532024,0.09757028541170516,-0.05297046680055247,0.00029671755046452303,0.007042541208537621,-0.012431295300370244,0.07761278446817038,0.00012353324996844443,4.511740103841113e-05,0.007752903693121122,0.004902143563088879,0.02449397984549546,-0.002150464833353213,0.0003298477128521557,6.576890096911866e-06,0.08271053681662463,1.2253133922342987,0.0776338473081712,2.801198535261506e-05,0.014343910495434738,0.015325577893912957,0.14799119062158983,-0.011604821462798422,3.4598932914539e-05,0.0035484201741856473,0.00911114066487059,0.027440752393236605,-0.012951468165434032,0.00010695460605699018,0.0007005953188432815,0.06659574334901275,0.47227133034426944,0.05505733976775532,3.257221290673582e-05,0.03143866142689436,-0.022374013913638652,0.06353816908981641,0.07511099314766681,7.807043335111464e-05,0.0009345687335878252,-0.01567477186796081,0.06023745781250595,-0.10453241814065097,0.00011898252722789765,0.008754568148863126,-0.07806700170098385,0.08179988400289998,0.13835263834807662,0.0005454944965928082,0.017845772632708812,0.03211921697274292,0.10370285418003097,0.04318693571107543,0.00013036477179454714,0.013131510743147433,0.01801606798095131,0.054833257167720834,-0.004166287299601277,0.0021087987830894534,0.018138641834994938,-0.05680849850641554,0.5012445897023878,0.08479006457002941,2.914377517636611e-05,0.0048968631901726845,-0.04942789689749929,0.13719731565341095,-0.008823990222584413,0.0011778711583018396,0.028610307452473706,-0.04350816275637912,0.36033566236662123,0.1692826073344984,8.040612660715457e-05,0.005055553936402229,0.00013073501351451344,0.0001927796794775078,-0.008729468915075521,0.0001600575071267785,0.01777067393105578,-0.005797126043886011,0.007936183403945876,-0.0003809277652673926,0.0004192807863293538,0.005200692678710124,-0.02227388117650154,0.10067710134892553,0.018933014359461767,0.001714808140992264,0.0017632385075367868,-0.08102394138635961,0.33703384661015867,0.23190771318917217,7.713122321362489e-05,0.0016908488460726195,0.02322020418356462,0.028839238778031108,-0.03408555278740266,0.0020015176918861993,0.035157948702589994,0.02888541178469923,0.09795311932972067,0.023734289947197354,0.00011683590554237401,0.008701211237995166,6.674439375582703e-05,0.0001597828957762492,-0.01896027546829978,0.00016933427827712244,0.006765934975364395,-0.020533244059640667,0.08596215231832052,0.012006724063353978,5.82994172238547e-05,0.0007182192714663021,-0.02069918184555638,0.06599772252571622,-0.08720489296822308,0.0029726398046940453,0.002336873589398257,0.024513471781463833,0.13927836916985964,-0.01220765519819202,8.755112307417307e-05,0.0193960133400145,-0.00010818287281344893,0.0005738768960347819,-0.018623454793690493,0.00013671008514026011,0.005614864904995867,-0.01700315178310583,0.0791488489436426,-0.0007179280876725443,0.00010160931582102798,0.005627356498636645,-0.0518707321374088,0.22443979590698993,0.03153655962531312,5.8085790983612936e-05,0.010911801836382877,0.017472088637132465,0.036034405185843145,0.008685652000870542,0.0002364051104954915,0.032493213095286265,0.02004407132017338,0.09476383734030534,-0.0013604805314501908,5.259660068586471e-05,0.012148293950340772,0.003658532899092378,0.039501395559148486,-0.002663463514278897,2.3896033089168466e-05,0.005061361835615745,0.01694096429065459,0.0443507474902073,-0.03273289369933501,0.00013351994590239495,0.0168845437997791,0.01878011674530866,0.07095629757644596,-0.044895246258621735,0.0004171913663194212,0.014412908268915042,-0.05028387868379206,0.26747307212433297,0.04127302952249308,0.00010767639327195588,0.015031876647352423,-0.0064163119862001815 +2023-04-05,0.0068490820114854465,0.05428056465547102,0.00013999357050119456,0.0001334364851396691,0.01438741480363477,-0.0032660781455570356,0.014157520993885725,0.001336416345321762,5.5354111462220413e-05,0.011990069928545358,-0.005402768518057132,0.01682352343890909,-0.07144072909612267,0.00014855819276555455,0.014839863674211988,0.01721151733379824,0.017471362713800634,-0.033931956520204386,0.0003324759494517518,0.007800388950478006,0.018964618679870003,0.04914770668354436,0.005607333758982446,0.00020190107411052454,0.014303196984213288,-0.007310243769232705,0.017764270971426334,-0.004737637664394078,8.985271616139049e-05,0.0014737577376148548,-0.0015844728533469152,0.005629842178063632,-0.006417591856500662,8.25806767601767e-05,0.03198879931485108,-0.02605520971958482,0.2003232916267549,-0.007096877535815693,4.460276066027696e-05,0.009802217145141063,-0.03821574844777766,0.02814019458056787,0.15641559447611172,0.001047273369091712,0.004259130135230951,-0.010710740939016044,0.02658012666350164,-0.0006079276027512534,0.0001409043352386368,0.0010825201486025391,-0.022380826457212764,0.013802494752445063,-0.04651894647104834,0.00079257959505824,0.011680452897741257,-0.00932203702285525,0.10527889950669071,0.020526678923958288,2.638713726647318e-05,0.002684480432201557,-0.027547614461893726,0.08577184666118501,-0.021498006241079556,9.540920423631684e-05,0.006307280894942358,-0.008968271795071705,0.04260255389531477,0.021548783267845477,5.925635663245748e-05,0.005768819143312839,0.005107931876731197,0.0044793671484571074,-0.004572986953003824,0.00222408514067689,0.024296941480794237,0.058882728509337484,0.3623661824088348,0.09765989675158063,0.0001337187700468755,0.007101113286587403,0.0020389191874265826,0.012909126057399982,-0.006562262821244346,0.00024457462881263717,0.0014108906718660248,-0.030886189507459028,0.18489217349947526,0.007750377445842816,4.7055106421444075e-05,0.017289691758754763,0.017745768195881216,0.08801906364443625,0.002207783731082229,0.00033228050934573346,0.015319823215629441,-0.01825570921358069,0.24224214798237007,0.0024420320280111535,3.1273697564718225e-05,0.020256800952186644,0.0173440609526669,0.16789080075587262,0.01232689950374145,3.451481895768649e-05,0.006083007853978537,0.06596882064154565,0.1751795760214214,0.19293273402579825,0.00012130480525696249,0.021891918445021755,-0.0346256504712693,0.23340258976842576,0.008742549374677302,3.4267675547802914e-05,0.01919029230645316,0.02964883541492111,0.08843020029353178,0.015243413104887995,7.433347103827347e-05,0.009447869285397065,-0.004298286796715806,0.015924383450878227,-0.06340344729987811,0.0001234188111664765,0.00226179115854761,-0.011923916218820907,0.009796459856681284,0.008620210351627317,0.0006957053034808047,0.018140774085340827,-0.0410967391868207,0.16998286488956726,-0.006084888122930235,0.00010176260801770424,0.001649958411720438,-0.030397871760172904,0.10461175832812965,0.001971673154114666,0.0018650129483556205,0.0032557862023112555,0.0337439829618992,0.3161918816597775,-0.021925975746549288,2.7442762262536087e-05,0.001049917795121077,-0.007451284654598985,0.02492169821114732,-0.06120627617326294,0.0009775180643179975,0.00781185697575986,-0.008410474107017929,0.05817907693780296,-0.003917045806645442,9.626741160353941e-05,0.007828784451845984,0.028799923239384295,0.03849490156396945,-0.020754609629048817,0.0001765767434866868,0.00835571712792953,0.010331143067835996,0.01412665652096553,-0.000237648864381977,0.0004197714561443752,0.010494831693876671,-0.009686870820539534,0.03369124222657222,-0.013481271028345057,0.002228521484212421,0.005492909893303328,0.014607068256093597,0.05733280617601177,0.014006271462326905,8.174293555495313e-05,0.013444162359027007,-0.06427968436240043,0.09416773936899152,0.07009590222556933,0.001696870824755723,0.019643801469489415,-0.013119476410604763,0.0375534696866933,-0.03102546198574956,0.00013841478116178712,0.007781846657460101,-0.0010805334141409505,0.0027539940130215995,2.5764243581696706e-05,0.00015905070033320534,0.009961576449658434,0.029052684137105714,0.12160174384667227,-0.1248738410309548,5.831232858412094e-05,0.016368713906695927,0.023121183252677306,0.0751872001997911,-0.018431638352210806,0.002914635167966397,0.006729062496874608,0.03207846234808464,0.18779684749244827,-0.00697721981165543,8.497003863615604e-05,0.0018850007292315289,0.03365175620927057,0.1696462451856687,0.08188368951968684,0.00014385476988231768,0.005661687705718553,0.0383596770735323,0.22014002124564924,0.08463259312912406,8.241848689533687e-05,0.009173310330551531,-0.004357751504982744,0.018016966442379715,-0.06091374324183408,6.078944618241093e-05,0.0228885664649678,0.011060948594067258,0.021488843100465643,-0.029911634271594437,0.00025096244285000973,0.004034943747768294,-0.01822187375110809,0.07840208662296841,0.031354656537169984,5.779360533812034e-05,0.005819293275534528,-0.003451590996367857,0.0347840471192516,-0.00167681375353718,2.5601800095929127e-05,0.015016797757504283,-0.02841546301775154,0.08375936393653019,0.03160280910117711,0.00011858515646572764,0.00694496205672207,-0.0072760098420578175,0.030462091889651745,-0.004265813405458468,0.00037649700425341744,0.0020183455066413204,0.05470112137034283,0.27681175618137294,0.04912700977226384,0.00011318359778064515,0.022596952937602728,0.0007652743602967391 +2023-04-06,0.025415676384717673,0.1994685499666365,-0.0003481623820809547,0.0001347453619579505,0.025881502004475573,0.005641747322977975,0.019142791894125977,-0.04503056719899239,7.071619423854458e-05,0.008564028437715523,-0.06369835101409071,0.2085472717718963,0.18357054555021562,0.00014129307648472677,0.01682751957474233,0.012816051865285012,0.013534135130550875,-0.002729267368463083,0.00031958883915122994,0.008863423010694708,-0.0009763194398900883,0.0021836523578438577,-0.006481294636599599,0.00023394092899810332,0.010676489288506133,0.001702123822971511,0.0039853919915856136,-0.008352305026192865,9.325386619641394e-05,0.0009647405865233585,-0.0405180915130742,0.16006599840003727,0.04440888394163373,7.427450195564422e-05,0.013363021147888482,0.03623577384031837,0.38120357614141165,0.03376496280283375,3.2597116807791385e-05,0.0064638653249896455,0.005008269945537597,0.004148754525475465,-0.011137763406269149,0.000930925178613651,0.005953759372129686,0.01251863345032524,0.030346246986040243,-0.040503153504136725,0.00014424933560683133,0.016904631014138093,0.009182221331428052,0.007212882045719325,0.012253178786620248,0.0006222476786101965,0.006011476100230118,0.011505702397730858,0.14664268020767013,0.021426791214403575,2.3381670512561257e-05,0.004645275636488294,0.003703804449996441,0.008048570522817633,-0.00012911136922234902,0.0001367037201363753,0.011002965686202298,0.00958840307270904,0.046331815176310825,-0.05498657296623687,5.8254406973329014e-05,0.005412272852391144,0.05914535458702418,0.04143337363977807,0.1395811752312455,0.002784154398942161,0.01949435521541592,-0.011526926958107671,0.0790507776282693,0.0005075064274811894,0.00011999399218601057,0.006996112097912965,-0.06624531724792658,0.4102106412902911,0.08332443479084682,0.00025006706331447034,0.03402735462390902,0.029301115939932416,0.20173779988189994,-0.008912174490741245,4.091267129969543e-05,0.011586990872824027,0.0038317999194189154,0.021552052602573684,-0.016051608595709376,0.0002930225159910877,0.011209461119135893,0.010076688944600782,0.150385171026085,0.0006730228161874014,2.7806291407984627e-05,0.018859626269002883,-0.009928838836064456,0.1113245817407441,0.025710771986773576,2.9798136022547648e-05,0.004881457501519708,-0.014988599742534716,0.04979543113997831,-0.050907948884774616,9.696038274381493e-05,0.002476123673904048,-0.0525947909465833,0.3622750836298166,-0.05372290134409241,3.35348712987998e-05,0.0028550201228117675,-0.006184007130984625,0.01637428807222505,-0.04032827094352791,8.373074152503915e-05,0.0022898812621938904,0.004090874102046664,0.016711556743485532,0.0036931243362017837,0.00011193033455234304,0.0007877083042128807,0.023640102055354495,0.02335939970631915,-0.07199211213510505,0.000578446543709704,0.022238670810319418,0.04411011651374413,0.16228105690413835,0.071698122846412,0.00011440799811860681,0.010154825306403787,-0.0500776387604522,0.15265826992473844,-0.004962462314927268,0.002105439088161862,0.035481477702158475,-0.008938630322959742,0.07967902740691782,-0.032099308122426076,2.8847564126402516e-05,0.012598588386169769,0.022973705691184933,0.07298341030167585,-0.09246144363728279,0.001029148795561368,0.007718350789263848,0.00964664753387863,0.08583866182687362,-0.008203910394580313,7.483747314697382e-05,0.0050071510887401815,-0.014572862521219039,0.019040263626800624,0.05196610431489768,0.0001806414026803769,0.010093605584701272,0.001825757307646221,0.0031170625801683087,-0.000810135041409515,0.00033620288809992625,0.0020507180421028893,0.036203189265523,0.12873467903799585,0.03047378524491558,0.0021797245585231826,0.019639567645886463,-0.013469120127703809,0.0632827343726759,0.00017553327188460577,6.828799481877816e-05,0.008104471237665554,0.0615448561173638,0.08384199786932299,0.10881416621862829,0.0018247666454390666,0.012490414076175306,0.04112277322893333,0.14302048586562097,0.05072870396448939,0.00011392005402712794,0.018604590280189362,0.05551675561670527,0.13095739441539522,0.09122675271904822,0.00017185193584477,0.014904738873167322,-0.008288000735132712,0.030168305723788365,0.002196750901552271,6.705216197050368e-05,0.006083615427875708,0.007421307145305312,0.02428469570961935,-0.023183204013624024,0.0028964484132055685,0.01761112734202648,0.008607998059745603,0.049783657491238024,-0.027785572681071673,8.601138304229546e-05,0.007987542504988095,0.016874505981602665,0.0999107772225755,-0.02240839094679066,0.00012248404326906277,0.008766147149994801,-0.0010369434414160882,0.005521362512340634,-0.02565593039979607,8.882955890101363e-05,0.003777062184500848,-0.006341470988651897,0.02916826800925317,-0.034277267295125695,5.464202215653288e-05,0.005135571015448397,-0.04346535183900777,0.07896191515938494,0.0071573889474690474,0.0002683829487830406,0.002678417296926324,-0.01772299893962957,0.07994312636393204,0.01292836250704451,5.512777432069301e-05,0.008248722372916299,0.004810744840740713,0.06234490097289287,-0.05029841158021196,1.9908689292913884e-05,0.008536281753467476,0.022096859951969524,0.08863466148422976,0.04877301220683263,8.714368832447197e-05,0.004115674645497679,-0.014328573656746571,0.06312196410076987,0.002363631411418988,0.00035780831398363,0.0022055348522057533,0.013738344633064994,0.06571729043679118,-0.0014764775863177254,0.0001197364984968704,0.017747766157328163,0.003421338888131763 +2023-04-07,-0.04060230216306437,0.32077138290237106,0.06526377148007735,0.00013385716612302633,0.008717975848921493,-0.03294007929371512,0.09918213869533188,-0.01679293458686389,7.96896093714286e-05,0.004772967183674777,-0.005845062035902085,0.01957094512950779,0.010509429337407979,0.00013815752038785366,0.03801607042990431,0.02201309348159829,0.022677743510668893,0.04077595218647265,0.00032760392407876824,0.010971615460377459,-0.023611110003143115,0.04647962187147307,0.04510632683981344,0.00026579792769006167,0.008931397012309336,-0.004397767648656016,0.013434542935163546,-0.0024291529531994364,7.147532262414367e-05,0.0020365767396594674,0.0025664992093511994,0.00933302275309711,-0.05104702031952254,8.068794697364357e-05,0.008650780558587094,-0.021646748840994087,0.17644054866071196,0.008505081683156206,4.2071974358480236e-05,0.011639649018263731,-0.034880642953561865,0.0277238544535452,0.09316575977025979,0.0009702321424465665,0.014056401538366556,-0.011770587384815024,0.025835451460960064,-0.0006855614055643186,0.00015931034101102876,0.004137887182874483,0.03703990748110936,0.031160907027037672,0.09345859401806103,0.0005810107406690293,0.009891885773290324,-0.0025286083705262047,0.03460674795418643,0.0004766737106829494,2.1774268340489313e-05,0.014063303962842801,-0.05314245467713078,0.15186379895675575,0.05523235558838173,0.00010395332592634761,0.006956464229363599,0.01454170768208492,0.07399354449714894,0.03160610881982568,5.532015608404389e-05,0.0044928939413951385,-0.012444951628121871,0.008937603782545097,-0.0059987819245221384,0.0027157831389292377,0.012956243136553436,0.06534727579006273,0.40904709322495686,0.14026110465499084,0.00013146383110488038,0.014265817501786767,0.007728236120634471,0.04474036079911849,-0.030913032991229845,0.00026747865608511297,0.010388447138859737,0.024534593980820342,0.12981182324757717,-0.02248652326370316,5.323847190928477e-05,0.014113563548108244,0.007522929641227842,0.03403859915643068,-0.016151598781891402,0.0003642521542434631,0.01306676650305394,-0.01767452730620378,0.24986608731412402,-0.024697230440960255,2.9354232029995797e-05,0.01622290963908114,0.0052939283268768145,0.060814308625776546,-0.0048523447988829006,2.908399039176663e-05,0.0015061799116525495,-0.07921727454682516,0.21262396277703957,0.19894730681533412,0.00012001359474388135,0.009709446690313676,0.03007870767495844,0.21266478194111652,0.01609700824158565,3.267051450493151e-05,0.007070669749473983,0.0018646874425884952,0.004763958619086403,-0.013614388351428166,8.677916121147965e-05,0.004895270337079859,-0.0031168441877585658,0.013396145280137247,-0.020835780830835003,0.00010638584295594142,0.00622583023014711,0.058035958774793235,0.05715926177053555,0.007096431464608006,0.0005803448218886513,0.005817557670881523,0.04706979663902687,0.18122663510069115,0.07500177545372472,0.00010932168179726873,0.021123299647612507,-0.025415547925775762,0.0927891804508153,-0.015455493822252489,0.0017580098852132322,0.028279999937056856,0.027738834068454062,0.29497107874486056,-0.05494934799257491,2.418193010058702e-05,0.02560117362346273,-0.06384344454843724,0.18753604796309015,0.0849601477963764,0.001113019621440913,0.015836787562036075,0.0032419982290718997,0.025909728028890678,-7.600567278520432e-06,8.332504603043282e-05,0.02182901930853048,-0.004867642768414687,0.0064088152217516205,0.017933496968962636,0.00017926121444521292,0.008509087132821978,0.0026653252827172863,0.003175591130737122,-0.025617426722951635,0.000481758684679606,0.00536945942200652,-0.01594795459133583,0.06078409712046364,-0.12208296933778304,0.002033599195781643,0.01061626538989806,0.014640465848489407,0.047490020761895776,0.007775046017153819,9.891061605310526e-05,0.01211327167325509,-0.044660872413693965,0.07088319807580751,0.007902294599683397,0.0015662500237568404,0.003977061854297905,-0.010583016781018426,0.03314552114297984,0.020543634810291193,0.00012650295474748733,0.010809614785727005,-0.06516030351990904,0.192203901276262,0.13616593315036837,0.00013742991444983137,0.006546144807901309,0.007687687926182795,0.031610590316932,-0.04531383905711209,5.935769994494568e-05,0.0013987102441478673,-0.041555149028862946,0.1334210808153158,0.027149732362973966,0.002952014236836519,0.05058940065746782,0.030977292312685936,0.1498383045281363,0.022469120570694327,0.00010283978841259325,0.018153332344277837,0.02517638485906783,0.14914179286658963,0.03592389120323407,0.00012242068173497913,0.005455434746079861,-0.0320939569851214,0.19521386028066334,0.012729107612153297,7.77609066143253e-05,0.0023559304052335234,0.010689994366031224,0.04026172627412707,0.004643549179463861,6.673174465456077e-05,0.0059489702725603315,-0.04329806611639413,0.07469065456582949,-0.011219845940478979,0.00028263870063606814,0.009517644429087035,-0.006103700909773191,0.021571070110155004,0.0026828865876421023,7.036163617867354e-05,0.018154531634794562,0.019816099884966184,0.22779517694335472,0.011798023031139433,2.244424204101645e-05,0.004252923338433734,0.0016652708554540576,0.005165388005617867,-0.02892833409243157,0.00011269143162260208,0.0042125677943499204,-0.003411619826968032,0.014686221498195548,0.00022514227154110536,0.00036616643067591997,0.009440247529410436,0.06332873961671602,0.3112263540988237,0.05401133013325346,0.00011654570558826001,0.008023238511243147,-0.004314226397492556 +2023-04-10,0.022851251684981956,0.1497022228639626,-0.12153504826379741,0.00016142408320947717,0.00970390438923646,-0.010336759368713333,0.02969831972428645,0.007303549165936104,8.351472483138556e-05,0.008181922804385504,-0.02463931447878315,0.08793347070611444,0.008816184411743502,0.00012961987853574145,0.008089385537744456,0.04133096951329312,0.04564510887523627,0.12776324257386454,0.000305597081096228,0.01462424650159802,-0.011831823352173653,0.026414804913415794,0.01141245648701264,0.00023437001176170066,0.004105304302290747,0.002644549178758668,0.007487942915278253,-0.001746695661496418,7.711446725879617e-05,0.00788563641942968,0.035991577019552724,0.14506538038586503,0.037270022443212904,7.279925758156586e-05,0.0062537690675960305,-0.00918053152988265,0.08101853736389725,-0.03472350363573582,3.8858143023484935e-05,0.006033242262201313,0.005022043019799077,0.004077977607057086,0.003167744565764698,0.0009496867496374468,0.005441699014989701,-0.03373135100778674,0.08487634651288993,0.03597676345403072,0.0001389661242055018,0.01165728832027447,-0.024286926714961483,0.02170216047896666,0.041545259479142053,0.0005470083426701994,0.00789355922911079,0.00020962990227924778,0.0025437516014482713,-0.001743720583923179,2.4558470830489737e-05,0.002024203371922736,0.0589431981475921,0.15692447843103435,0.05852624457976871,0.00011158197397404809,0.002320681681857213,0.0013459328867957915,0.008042340316614518,-0.012712824140549781,4.710887972824014e-05,0.006834957281511154,-0.0030444890837204685,0.0027255320795218636,-0.036994970256296764,0.002178643123645683,0.0019596547520892107,-0.08437257019592687,0.6606813176547166,0.14987862566778407,0.00010508999236646385,0.023818116629450176,-0.04635566690048067,0.2671029990972327,0.042716578863230936,0.0002687399926734021,0.006411760516834286,-0.02001781355085878,0.13724979781486749,0.012458888726774172,4.10833531280518e-05,0.011092735294743321,-0.017087570982299738,0.07770211398212093,-0.09405807645779517,0.00036243848353564157,0.010172496597153045,-0.0057969224857526095,0.07055086517922132,-0.0005165775225961291,3.4097723167407565e-05,0.01740811759472422,-0.009260480642676415,0.10012880074056023,0.0029081362274560856,3.089983943890849e-05,0.004766817369352253,-0.013039061098098955,0.03205108592457729,-0.007315887993263026,0.0001310467720007442,0.015072128163479501,-0.07052695059351782,0.49571223489420274,0.0372022115161969,3.286380496154908e-05,0.03825219818662383,0.02631057456849395,0.07119106819251497,0.01665939320959197,8.193740494080924e-05,0.0019547111093451922,-0.008794375221640722,0.034313847066945576,0.008438500934048066,0.00011718827879664003,0.009422487485366515,0.0360843593614371,0.03846699369716996,0.00511354573594415,0.0005361746961616574,0.02171965610479405,-0.015241128122429556,0.07059388005829727,0.005106841781226484,9.087325205145186e-05,0.016277050215774466,0.0001545698155554989,0.0005720703387710195,-0.007160616299470224,0.0017341810360609194,0.01125887224654209,0.102139616618214,1.0936925644297095,0.25592690680655006,2.401492082503229e-05,0.022472840161914004,-0.021663054251607992,0.053276060950428375,0.0014674351350809876,0.0013294097206335176,0.013765485890560203,-0.025632408468424277,0.21873521763196793,0.04693302040384881,7.803624182224827e-05,0.0005279256290190726,-0.014490657727402679,0.02576106095121486,0.03275640373140129,0.0001327607629501455,0.0010362736741534703,-0.0002059720128917422,0.00031624516170046546,-0.04099611888881159,0.00037384212543770107,0.016966414746585147,0.027592900949880782,0.10872581072919968,-0.03557425475050885,0.001967048410683968,0.01628873720062583,0.012897300514809843,0.050436418837934094,0.016608617294451188,8.204364506449154e-05,0.025827324218235935,-0.04616459816737498,0.06866342015455547,-0.027575248057279185,0.001671324653479414,0.003911121507506317,-0.03208160181360836,0.08543815494518442,0.039806057840271775,0.00014877166365975296,0.0072872492383743255,0.036586668387652815,0.09714489158467639,0.01792365257433797,0.00015267336305278752,0.003313508617375935,-0.01439571188595498,0.06254091198466068,0.009239851987917031,5.6180145709148314e-05,0.00692695120642791,-0.00993202613703116,0.02818624410039446,-0.08094777783795747,0.0033397864855570824,0.011641148241610392,-0.018892879456021902,0.09417891116210034,0.007708515917788434,9.978954886023775e-05,0.020148982449705036,0.03662156462988424,0.1817420589790025,0.04506146124513134,0.00014613095945458537,0.005721373539286543,-0.005902709335013083,0.03669760859193996,-3.4144280401250115e-05,7.60785685191685e-05,0.04062267222351277,0.027918939645743133,0.12175203863148198,0.023561969028578725,5.763284688731716e-05,0.0012441600442638422,0.03049183095312662,0.0485095095455825,0.027517854388835285,0.00030646862068300776,0.004578434143190564,0.005142712283004756,0.020033973403860712,-0.02005668462052585,6.383215559937783e-05,0.010547455048606044,-0.026460466892669413,0.2947301601724492,0.047246270935812046,2.316350141531757e-05,0.0071013612112385315,0.0004935011267211209,0.0018650245972225735,0.00012277250554570176,9.249378441985195e-05,0.004441770111197932,0.014343065877271282,0.06009959471542846,-0.020565432683007194,0.0003761823548214223,0.00710462663489713,-0.06731772724324567,0.32657306056118823,0.007865611961875615,0.00011806492204243932,0.006374902773334554,-0.0027987010070077718 +2023-04-11,0.00048327677512065943,0.002705352708968469,-0.07459986028005262,0.00018891159488703432,0.0057445073865166904,-0.040569079129927,0.14909730681562094,0.07863779754115431,6.528837775829492e-05,0.009338655934165314,-0.007007324417204664,0.028908437890544595,-0.0014507104326281944,0.00011213076997646426,0.006867638976234039,0.012653088625086037,0.012723601211630327,-0.13429389874584818,0.00033562504203958057,0.003555585738610659,0.0295567350958637,0.055070288750875565,0.006287133492748694,0.0002808257179686055,0.0076912438425300435,0.0011268282058797359,0.0035534306139273246,-0.1097669594664004,6.923992831609269e-05,0.0030258903252420545,0.03799159372699087,0.12358630646916086,0.06158861711116444,9.020009907357065e-05,0.012337325638261554,-0.021393233972596872,0.16773104649285972,0.008058542067194963,4.373826976495942e-05,0.012866366873733747,-0.01626240719378532,0.014429505558829245,-0.020260540740692442,0.0008691168461314303,0.0007011522378588843,0.015812607369859375,0.044725602653706495,0.007714485795924696,0.00012362581641944595,0.01721048791390939,-0.0016589223450252696,0.0012028519256840555,-0.004019571791557033,0.0006741216069993795,0.01147323943762972,0.002064944911695187,0.029346918343419643,-0.0019358134667651797,2.0968567205070282e-05,0.0012525574714888604,0.018986054955006822,0.047552824185139085,0.0030910156197292947,0.0001186067638480069,0.007461291636649228,-0.006200211803329874,0.035301083624387795,0.006564631462399339,4.944021001414606e-05,0.003132999907433555,0.008094943296273702,0.008397912816206604,0.005338599553575986,0.0018800327809914983,0.034166785128848354,-0.06564757888201893,0.37264988489985257,0.036847480149322896,0.00014496722648257545,0.02384885762966509,0.020382357485469363,0.12713556583151314,-0.057060494438036014,0.0002482536177262999,0.0085899937464189,0.05116471679655673,0.2962906510690984,0.05207592003014106,4.864224180102755e-05,0.0046391549118641965,-0.028945226267781957,0.13111819381509526,-0.04590597666525879,0.0003638319199334339,0.011247100940306357,0.07566867164367813,1.031585083029106,0.06173598576328621,3.0439764474909867e-05,0.009855853875820516,-0.030806099471030794,0.2929871975765054,0.07515612686213449,3.512932287153641e-05,0.0037419134782274996,0.06542186537065485,0.17996144850860207,0.10047003768728598,0.0001171025085767855,0.0022153655879056516,0.03756303897133546,0.27482574746576593,0.021444762958887264,3.157153364872419e-05,0.003783727289991587,0.007769041356839236,0.020890409794165368,-0.00938114927669656,8.245136621605001e-05,0.0005063630301062379,0.032881111958226905,0.1358846237241047,0.2247596523056163,0.00011064321210537675,0.0028653816750027795,-0.011161791829505002,0.010272510080171968,0.002266300004429681,0.0006210590631265823,0.011269991735969386,-0.014925537294266131,0.04823498540135658,-0.0008153252738176745,0.00013024283219896537,0.0026471977358952987,-0.02699469219006424,0.08149187234328807,0.007840758942628357,0.002126097898657243,0.020991823324216695,-0.010038070309219596,0.08536333006057363,0.0007460191965278644,3.023855819966949e-05,0.02003351088047102,0.01624574430679199,0.050027375100795024,0.013776017988584428,0.0010617032993034798,0.026297752831829384,0.011857480505086492,0.08843623171455238,-0.003429677255876289,8.928691827530509e-05,0.01306639895741648,0.016882817355182454,0.020149853967214634,-0.05283924898056108,0.00019775087116513223,0.0022726541064647943,0.030748540139946316,0.045858785402577956,-0.12569809908637788,0.0003848627398157919,0.0006419146088644948,0.008308567459661619,0.03761792815696386,0.0020658897266727845,0.0017119127198903924,0.003915451322305584,-0.006268089554760348,0.024974636233920874,-0.0010675578550223299,8.052419501068839e-05,0.0009725437471906936,0.008844692397658383,0.0127434591003248,-0.005538367668592407,0.001725331676565881,0.02032025800428892,-0.019384104687976286,0.0604081346293286,0.02552454586173867,0.00012713536024717859,0.012856007170247558,0.02648554107648008,0.07255300995934959,-0.01019796770227232,0.00014798366919524563,0.010361886875869432,-0.04001551713973199,0.15745588015418258,-0.014952539594369152,6.20273853958544e-05,0.014308997670679394,-0.006723974892919289,0.02159269261018901,-0.019616554019545405,0.002951462970184848,0.022875225893196367,0.02465152403245494,0.12093499646231098,-0.04055852664253905,0.00010139869094987351,0.015135735467947914,0.04592689192476905,0.21379621058947368,0.08236640902812208,0.00015578578852349842,0.008783369141576467,-0.0049873526503556795,0.029598957629930707,1.207974163187014e-05,7.96970707923268e-05,0.023493003207960963,-0.01822175280226793,0.07189541651250263,-0.07004644619904812,6.369954665549141e-05,0.002678903418708778,0.013685359355251964,0.029807184741955362,0.005666134209034938,0.00022385388733980698,0.0518816444517568,0.0011895695628478082,0.005241943830622577,-0.010036777041753561,5.643023467590531e-05,0.009047625566656073,0.015503208163312977,0.14620798391246742,-0.006941844908908895,2.7357838109050476e-05,0.004938235189835931,-0.007057125110587066,0.024187685855133995,-0.0016250843593678442,0.00010198644694867517,0.009475301398548621,-0.009470403480250677,0.04187413564769545,0.00978658448815058,0.00035649266425923673,0.012426703334024344,0.033974228671351386,0.16448138151056815,0.005551851473414094,0.00011830542403942918,0.004701165021213628,0.006156722966661933 +2023-04-12,-0.004429467445122476,0.026597601480242858,0.001553737613166893,0.00017611470655623453,0.030442836572972025,0.017538563414776644,0.04958629193816138,0.007072315948909326,8.486779350208732e-05,0.019498196482956767,0.08557973350721618,0.3286230982411828,0.11534842743211976,0.00012046754179855804,0.0052050106006597124,-0.007886407060115706,0.008018256822344156,0.02170406435363047,0.0003319457277071859,0.00489871499971732,0.016816228897617736,0.03854656814754932,-0.011398660937464802,0.00022826570338357552,0.009052519480419555,-0.0070980200084225335,0.01588928076990386,0.007470469168768703,9.753931915323577e-05,0.00399807729505637,-0.03975783735925047,0.1458467159560847,0.015074471997268215,7.998636368149089e-05,0.01658173259782031,-0.02990568381148663,0.2812816677459539,0.008971114711153073,3.645951803854622e-05,0.005600479854982021,0.022339236701884427,0.020660988336143278,-0.03516243832126537,0.0008338002556384534,0.002247578826567917,0.011901748391353016,0.031293042806609266,0.004071286903113391,0.0001329917978340025,0.006519336929662936,0.028923417881532923,0.025151355190837627,0.066933126165058,0.000562098698965768,0.00100507896481041,-0.01822047679325684,0.26584193419291635,0.07492814372199147,2.0424857664668035e-05,0.00558171617123432,0.011234912524017409,0.029783907919409436,-0.040664457652879724,0.00011205701582240997,0.011784769374796637,0.006061880848239015,0.03475360888601691,-0.039912265886867034,4.9098622146454346e-05,0.0027108561281698335,0.05752602054615731,0.0420381884888984,0.09003515760641849,0.0026689676602827572,0.01609426031424996,-0.0031118670179539837,0.02211743209943995,-0.007369672262284021,0.0001157813035206446,0.006117289302878985,0.013728241248229002,0.07650865538433745,-0.006556070878968273,0.0002778513843743299,0.01210506665609748,0.031621356131407256,0.20912472443651972,0.007199860176200849,4.2592787708572016e-05,0.014246299156939722,0.0012526119863275583,0.008552783740207215,-0.0005569000826493482,0.00024137699691779082,0.015792429173091215,0.10968988656319703,1.568078644472014,0.10178926667744839,2.9028792992054617e-05,0.057860534683142326,-0.006490507704500335,0.06933046042486563,0.0006194557612923654,3.1277806927080485e-05,0.0005508351066923606,-0.02945837954682527,0.0772181849547856,0.0162911416049059,0.00012288871983017315,0.01894765398536674,0.0026717650501119124,0.017275360313100372,-0.0012570921159381512,3.5724283428722236e-05,0.009101911174399995,-0.015344896403394303,0.03983945837290377,0.029273104132634672,8.53941102076833e-05,0.004064074673642078,-0.004049197363892337,0.014023364236373358,-0.006932394182827094,0.00013202778178320052,0.005632053572266339,0.01945236072104606,0.017410147763978912,-0.15224697893901015,0.0006386242692443972,0.001804830795302883,0.013221452217476936,0.04427239840532251,0.005754419868642924,0.00012569908572773993,0.038273211677205085,-0.012241947911013823,0.03460484221124647,-0.01242518750719594,0.0022705591945103637,0.019082755532585254,-0.011796102894698004,0.10934723887089667,0.003314770907908876,2.774041323804925e-05,0.01175919019391788,0.05862326910775306,0.15780477185293632,0.10696835648721578,0.001214566144414658,0.002670796289381141,0.05010607109711922,0.45455077412372885,0.05681843280239523,7.340634353097189e-05,0.002595483746613016,-0.010127658523302977,0.013985971366888972,-0.00846261471267713,0.00017090776750216673,0.006531354077856971,0.02700662728562253,0.037575474387650486,0.0325325394226012,0.00041254354143632467,0.0014372365569362677,-0.04349261430809301,0.15738017730745069,-0.004584396275562153,0.0021419820370814067,0.0017780882381504023,-0.01808727615432248,0.06943350050263963,-0.03130393668992006,8.357848199626674e-05,0.013423497333730515,-0.04466831546704046,0.076806076581322,0.0064350554046612805,0.001445710001390479,0.015032918406336976,0.009100174129907964,0.029500655552102174,-0.026519234810994653,0.0001222176903489113,0.007662916172830014,-0.005885542695281333,0.012612713606600354,0.002187480910456042,0.00018916394220205813,0.010280542335411251,-0.007461028143383612,0.034328786281763085,-0.011328833324414056,5.304618484408838e-05,0.006262981913630039,0.006461560302907266,0.0217165891058241,-0.021493794814860565,0.002820095694176281,0.020023546290909595,-0.027070805860493586,0.1533845637043152,0.006877670909845787,8.779304245050808e-05,0.003649275062456113,-0.013492520327022663,0.07853857529487014,-0.0016556090791946638,0.000124586460183096,0.0077053905051602915,0.016849850288437412,0.08499847959994468,-0.09888031895806877,9.37634519706342e-05,0.011355306559346733,0.030206419069320645,0.14983973595529754,0.02504454648602856,5.0666352362612726e-05,0.008662075355937333,-0.0011621102959402758,0.00256011947479854,-0.01859691134764805,0.00022131788419753402,0.030682738267775043,0.007061896167958823,0.029154937245077374,-0.031582792530860895,6.0231488041260786e-05,0.019862942348778206,0.010803606620951775,0.12028354078733626,0.0008030115688735983,2.3173618010931228e-05,0.008972280052196671,0.012046395334081755,0.03314983026242502,0.006774799302486698,0.00012702370239939893,0.0035729600121129426,0.00014644566318934847,0.0006147465827016848,-0.031084392353685406,0.00037549863515537934,0.0022094348430540586,0.008295855706000757,0.04244038734584641,-0.020599527252359306,0.00011195761714300879,0.009013142095487824,0.006764717368246124 +2023-04-13,-0.033788959982792036,0.28104650285950733,0.04038402674500511,0.00012714029734528455,0.0030033702722995145,0.004821979108595313,0.020297301382419166,-0.050586628379524594,5.700297873820802e-05,0.0003806027129992611,0.050039919552694954,0.1796940928955916,0.02033949304316221,0.00012881902465257386,0.019792254702307444,0.009281566412230626,0.007452338274640286,-0.0030086424645408656,0.00042033598614603303,0.0010341287359611675,-0.00435757758105583,0.009795340672636571,-0.011303996621339171,0.00023276804299872286,0.013638764963795402,-0.004835968070778538,0.011925329263856956,-0.000619304009486263,8.854413215556471e-05,0.007208944588186225,-0.021305645948514407,0.07068323910822855,-0.04867133126063924,8.844394744105697e-05,0.006360943803868011,0.007877091278271567,0.062277407003299354,0.005599919828138288,4.337444897791126e-05,0.0019693127313745677,0.002007611275835357,0.0017872466773201244,-0.0025159294563476932,0.0008662433518165808,0.01563296826079295,0.01691589574531729,0.035991835108867436,0.00789370928810826,0.00016434363771055776,0.00676790148737616,-0.013123905356205565,0.008342057394906245,0.01036862150685703,0.0007689786363945606,0.015058729732260965,-0.018104315280393996,0.24822962446820748,0.05956514197223084,2.1734581550443193e-05,0.009658845966132631,0.02625187574577172,0.0747211558379983,0.0010365441997001667,0.00010436810464609659,0.004533540475969599,-0.012200514958051903,0.07189318341682298,-0.023860724933926346,4.776967268488025e-05,0.003047067112551177,0.017897019750131343,0.012270585227447924,-0.06695137288267444,0.002844712713308594,0.020786180595921463,0.0389608967304755,0.2632277567042787,0.03668484711840478,0.00012180058362045458,0.028632726282083614,-0.019394789321523408,0.10499994489226927,0.005146791261006615,0.0002860251533814305,0.003042766865707954,0.03206826927549427,0.18399757318681526,0.01261489047659278,4.909354380924744e-05,0.004974749936896521,0.008394275936331413,0.04531436181153947,-0.022327265068800922,0.00030530518551640017,0.004234893885912738,0.028833411540004707,0.3533971623248466,-0.023147708917797494,3.3858148390806296e-05,0.017468971880295753,-0.009013405810221408,0.08768146625315733,0.0011826720064911497,3.4344945386000395e-05,0.0023129500195128738,0.033666626850672385,0.07344596469474161,0.00787257876939666,0.00014765712961842533,0.032786904896225155,0.010264497769458501,0.070417958718517,-0.058743065275002004,3.367027389418405e-05,0.026502755955931788,0.0010436827528623922,0.0029207967757350862,-0.006642030858200193,7.922177130228012e-05,0.002531015876111498,0.01378051197383784,0.05130372151150854,0.005461861066162212,0.00012281886479907032,0.014252119443502737,0.10041072682511988,0.1092292152812975,0.10317243279987597,0.0005254324110108413,0.008621105599352804,0.02531213459614281,0.09100904643611121,-0.007557418096658794,0.00011706584822562459,0.005440118805950578,-0.08536219066444932,0.26186403146981146,0.14224412837589775,0.002092227359488633,0.005279837794700981,0.008007985308310388,0.07541491786650281,-2.30115236137207e-05,2.7305378474909863e-05,4.2541637932689636e-05,-1.8805573182060517e-05,6.250611716853503e-05,-0.002979314276695987,0.0009836380565192138,0.015225138123151672,0.006356713989744519,0.044494470870142425,-0.019962029443786854,9.513761682130776e-05,0.005404552377767356,-0.009117908411655213,0.015880980568935246,-0.014155826277834616,0.00013550748888381095,0.0018901217304879694,0.029336442240065826,0.039320516025068974,0.012588718403164141,0.0004282448500948487,0.013669409237247227,-0.01917987314374709,0.07589132949930474,0.0013204098835368364,0.0019588623115536653,0.012887969291718109,0.02058015253779104,0.07736406003175475,0.02828506118944137,8.534924948830056e-05,0.002104119956116281,0.008424717331565702,0.009946447098044923,0.003575299904094739,0.002105545122493609,0.009774700868964554,0.006956646589452193,0.025295175196499,0.00011175291213451203,0.00010896280778649101,0.0037302824397407383,0.022897204550311467,0.07229417566989131,-0.0241293821092185,0.00012839246292509188,0.0024314792801435796,-0.01740571583688246,0.06521126330590192,-0.009330662630216065,6.514531679989226e-05,0.004074870058518341,-0.015009400356161308,0.053825721325858014,-0.010693229598838741,0.0026429657877065434,0.022813312494600363,0.023640880629617455,0.11722683370016425,-0.00781646255621918,0.00010031761211077303,0.00026054223847235677,-0.030494891904705702,0.15446222532229653,0.025315612815859548,0.0001431744736715478,0.023893939184107118,-0.011844929797302683,0.08168460473413172,-0.04500587960697652,6.858686903777506e-05,0.01436534271632953,-0.014509989938117985,0.06312500483994363,0.0035731889068189833,5.777142522526309e-05,0.0002757550031543064,-0.02156902033200502,0.03972929291757218,-0.05067385530346873,0.00026469697500091765,0.016194292635569665,0.012703413377872078,0.050066806436949995,0.0006551678836511774,6.30935430452106e-05,0.00021640120483167784,-0.03232556643392088,0.3405085088332876,0.06969420496523517,2.449342173289448e-05,0.00841739366758542,-0.002509495760846069,0.008628052790195974,-0.0062024510519594015,0.00010166761538409332,0.0001152813960906602,-0.02122344584076945,0.0879167177252901,0.029437443882701902,0.000380515544143084,0.008690720255978541,0.017959716128849335,0.10067917935641399,-0.017203156294115934,0.00010217192996078666,0.006743213158584777,0.002208675997414122 +2023-04-14,0.011945218248592562,0.0713081739748661,-0.0015411999142319337,0.00017715008195651156,0.01969670676981557,-0.04738105352164519,0.1655937912861742,0.033491415733455175,6.86548448714015e-05,0.0027981538647305487,-0.043013991892090625,0.15680333912535885,0.05166234204209292,0.00012689708523219617,0.04458127898030012,0.008522866859536972,0.008036015609741194,-0.0011235293724455833,0.000357942105808487,0.00834572847971726,0.043247834590093404,0.1076795948689559,0.02274917229880656,0.0002101496769418202,0.0011260757858256444,-0.026424797121098312,0.08683974976322106,0.11965850826365562,6.644156265120834e-05,0.0031230348067241625,0.027070220676507366,0.10132538021397679,-0.015905346662162714,7.839049544491165e-05,0.006963520965077604,0.003619183559552473,0.03491524879110509,0.002003360096928479,3.5546273976661773e-05,0.016433976135099487,0.0005094065049080727,0.0004915344713195704,-0.0018575394746793827,0.0007991996641931863,0.001380102152617876,0.026962332146922292,0.06323107712494547,0.015972726261295925,0.00014910381682450553,0.008088919401379284,0.007886043393032368,0.006122073871203076,-0.016468964146137677,0.0006296293365349032,0.0056523321496962445,0.005143922365691661,0.060927362351471386,-0.0799422689336713,2.5159662882158413e-05,0.004681210479007311,-0.010746205000959855,0.02907385319443397,-0.005188194710363844,0.00010980030989616941,0.025688101235019047,0.016086629037415236,0.0935430320192416,0.05323386384625024,4.840780858918219e-05,0.0024779426661739666,-0.00023827169324681734,0.0001725396354912216,-0.07922715273237886,0.0026934352987088316,0.012775711641946725,0.009170779153411324,0.05501832335173906,0.0029918421130626523,0.00013716742677083766,0.003913595996572123,-0.04822633258742696,0.2641529028016308,0.03297386949572039,0.00028270733799663544,0.00021105760196025894,-0.0003948081056673336,0.0020172981439871094,-0.01626840722630743,5.512859540993454e-05,0.017482391766130694,-0.012810535368599038,0.06693933120874193,0.0036660294183326445,0.00031540800996661573,0.0037542253994054166,-0.05123499310536391,0.8078900814084631,0.025997398138048838,2.631750033303793e-05,0.005285467019802311,0.01218831942216562,0.10855504639690927,-0.016411920655240764,3.751245773619922e-05,0.005615466689924449,-0.020453958970297486,0.05662719521376435,0.0012005751435785646,0.00011635233010422888,0.02221728687396284,0.01726814198048685,0.11933135957371419,-0.0001306847317028459,3.342592221626863e-05,0.010750805991482017,0.02228381315327826,0.06202726824431335,0.0033864074799342453,7.964971678100919e-05,3.551387038839898e-05,-0.020454356640389457,0.08088693552010232,-0.00048701749972650515,0.00011562614263842754,0.008839710342716021,0.012214904993777793,0.011038219176118316,-0.012745480873320444,0.0006325089011226465,0.009161455799327048,-0.019194108116597722,0.06610905235184085,0.008781196648123657,0.00012220613644951345,0.02137129030733323,0.04914620938015605,0.18995793483744938,0.04838103308642454,0.0016605492539445072,0.021552599358351597,-0.04455361750549187,0.34977350396786705,0.045018982788800885,3.275504946799981e-05,0.011396702251385591,-0.011073799993406495,0.033162164416439155,-0.027467195244184037,0.0010917547168590718,0.021354566769627506,0.0017314395803039748,0.012228213561069474,0.0014092400256751963,9.429094091084702e-05,0.0037604193629858914,-0.028334413807159207,0.04316748371810684,0.056422913942634476,0.0001549183577996079,0.0008939396932000484,0.009525263335586606,0.013378934013571821,-0.00046533881742051445,0.0004086574240116702,0.02053822503893909,0.0006682054590638218,0.002744242924429889,-0.03456438818190725,0.0018872863873360454,0.0055264078124153855,-0.032092748074411245,0.11307967699314803,0.021255105982515003,9.105687007256516e-05,0.011017808809312284,0.001139371173291128,0.0018131839385746443,0.0023044384039722803,0.0015620702305075916,0.005274414300482208,0.010349955095951657,0.031906256323660884,-0.06106186072208024,0.0001285223483193415,0.002241815458527816,0.044824864079396134,0.11990590338288916,0.0392631477045083,0.00015154401595881889,0.0014777038795731725,0.014074852609698896,0.053321841741781145,-0.023887256332669755,6.442473474593847e-05,0.0011284789358239173,-0.06533031294844709,0.18585357903582203,0.08162466751017686,0.0033316691517937757,0.012401076039530301,0.01780615421735946,0.08725878947686022,0.0028019476521304477,0.00010150829130432127,0.009760788506937474,0.07470559651328967,0.4142695605276376,0.173775989922858,0.00013077685791418708,0.004442014485282716,-0.004980622751243319,0.028168034432902056,-0.08214582966551581,8.36326395488401e-05,0.0016996728923344292,0.042448376516834675,0.1764324959581945,0.050614290523408934,6.046859832608804e-05,0.022803324253286603,-0.011321682623694497,0.022248017729062975,-0.023306212214761566,0.00024811273063836094,0.0022096390471909567,0.03211873459768506,0.1280281243656954,0.031019939839054423,6.238316712014334e-05,0.00680259759030171,-0.029081843055794133,0.33382300240764584,-0.007548327263112533,2.2476927925722432e-05,0.02124946923867006,0.007791491920308204,0.027427095008582078,0.0021516557683782657,9.930012112704538e-05,0.006589607552684628,0.0028626662934108362,0.013634131654306929,0.0007626974248936895,0.00033095672627977117,0.0010719419337560294,-0.04918942833732331,0.21779599288007914,0.049613714703597385,0.00012935811732475795,0.035690898464568056,-0.001768173090934239 +2023-04-17,-0.05563465999799449,0.3486100113886269,0.1233478230706937,0.000168768801837931,0.00847006956481154,0.01016721023713542,0.03570887223710546,-0.007499263257156446,6.831816551060703e-05,0.012143033935651653,0.015790279214388938,0.05114315994113315,-0.006006670881608556,0.00014282342914724607,0.030757751193863026,0.01107556787009688,0.011038797945672498,-0.21798212444333967,0.0003386195864466086,0.006297239525369894,-0.0036399164008915235,0.008497715498698207,0.008076865417087187,0.00022412329285055022,0.015335949551047,0.012052930835469693,0.032636216218854694,0.02733804094716624,8.063797302832834e-05,0.0010108755007293922,0.022333426793009332,0.07343830259054422,0.024336441242171537,8.923240336167731e-05,0.012122515192593462,-0.05285829502870546,0.44078972417507567,0.06817335926866698,4.112257520982689e-05,0.010828265980997986,0.007422956093087814,0.00595025969466626,-0.018016834541539708,0.0009620236700225159,0.0032519774073153686,-0.0064543984199796085,0.014822730971513013,-0.009935512607480943,0.00015226126381675593,0.014593438099140028,0.00707171213049851,0.00589145559915701,-0.01704464086764159,0.0005867138262426539,0.01836437208539735,-0.004345432460718606,0.0517596224578267,-0.00020996566218728474,2.5018697367234085e-05,0.0029688527082443687,0.009196223058971132,0.02640293183067171,-0.0015608985982964205,0.00010346855410731445,0.003973310403992364,0.01456655479097108,0.0810314631805893,-0.08935818247006004,5.060168561651158e-05,0.003723005561105222,-0.013896478671311404,0.012203070663300753,-0.025234917148072546,0.0022210514125868435,0.007765074918094365,-0.004071919820338004,0.0309753674320058,-0.007791989732122213,0.00010817698145768367,0.010430464196014589,0.04123352313458945,0.23013113416792452,-0.06145587215021648,0.00027744908577221304,0.004805094368320641,0.06962289747088463,0.3831210191158545,0.09177374134949512,5.118905002530945e-05,0.012380769690267891,0.015168309601030563,0.08482808345206962,-0.03396252281093196,0.0002947028507820013,0.002837037766903904,0.038078264898396094,0.5839923175879956,-0.008266430327409946,2.705828383059431e-05,0.02552652696802745,-0.0018509732682184387,0.020059646937097022,-0.010374199332419353,3.0828938465637534e-05,0.004209389824118758,0.008589709424675521,0.02339726235279213,-0.00010758091194440605,0.00011825953952482624,0.005300538199387934,-0.042360838961293654,0.2543040810687379,0.01101511524687581,3.847721225584334e-05,0.0195008442941974,0.005433239267039522,0.019226309097023817,-0.000893117094626722,6.265277234045309e-05,0.0012488487305996805,-0.02860442470819523,0.10785711060390613,0.0664442955253769,0.00012126431881576187,0.0038343200655375706,-0.004090800250456077,0.00362656250713118,-0.00010027288348172398,0.0006447460170232478,0.0051826250142473825,-0.01102332053597527,0.04401863920370393,-0.12150706736557094,0.00010540515044805737,0.0005104951160193551,0.0031041245858144475,0.01207775903495078,-0.0625228223970073,0.0016495745879704588,0.03232477037484936,-0.011799290248905454,0.09478941547698119,0.0010643560349388398,3.200945166089197e-05,0.0009269180132564643,0.02377648332886112,0.08251867741020526,0.0065923892533791325,0.0009420341171779066,0.010954325274518999,-0.022494842890556723,0.17243436196316617,0.031218840514572483,8.687299475634987e-05,0.008843080080406877,0.0035162739267254267,0.00431821314848857,-0.08907822221102932,0.0001921870015997454,0.0037679021845160774,-0.02779829693014013,0.03722374691133007,0.011735560088227268,0.00042864919914635936,0.00044325647608545854,-0.04489695899004707,0.21343561620342436,0.07044557630871803,0.0016304233062951444,0.022372471167250788,-0.010690163404060435,0.04256947715972027,-0.0021750086915348064,8.057056291028281e-05,0.00947743202971939,-0.004302748457640267,0.006481518507055312,-0.009008133218060235,0.001650237242247409,0.02143626652398095,0.030467368792731278,0.10865792024428994,0.03487962368000491,0.00011109374260130003,0.003217208478899003,-0.029490616996130845,0.08029731611151526,0.02852181372318297,0.00014888234666066873,0.020747891117716407,-0.016517862708816753,0.0702760522677152,-0.015252748633207282,5.736677291185862e-05,2.110539521877567e-05,-0.04194416926073481,0.14246185332450526,0.024987840352441764,0.0027905580759570933,0.010075871673885621,0.03311797412021341,0.1961412760217482,-0.017196469270148573,8.399149989084087e-05,0.020325779658911202,-0.005774540992783226,0.030503990579287543,-0.001976566489454153,0.00013728452801778064,0.019500839582516177,0.01523533868057423,0.08172032314233185,0.026995140558422646,8.818013034777261e-05,0.003159000721304473,0.008225206295440173,0.04278959511608499,0.0016168871348220446,4.831211128981971e-05,0.0034048976467779,0.022904032971156278,0.04010334133717528,-0.01549121316443923,0.0002784587027190292,0.01210868506639625,-0.010662708603095157,0.04618998722078998,0.012723660453395845,5.740293184743835e-05,0.0027745021650429293,0.0296658149387776,0.34138437851732695,0.0370609351798853,2.2420429315814187e-05,0.008099474564568486,-4.0937708919529685e-05,0.0001180759290480354,-0.14187886426226523,0.00012119121146944558,0.00712942261214124,0.02484772269692653,0.11108590138267381,0.04663393059593706,0.0003525783322776795,0.013850705470617612,-0.02195805204629834,0.10586657671215224,0.011447417784353764,0.00011879734538238741,0.03034017934634405,-7.965162342333108e-06 +2023-04-18,0.015312339796224081,0.12297443957445656,-0.0030184772276779116,0.00013167802068826591,0.0011646852975718946,-0.00158805703819343,0.004767336825686382,-0.04313537383823938,7.992833870980928e-05,0.004932841588360301,0.02295791954783511,0.07057555869559784,-0.006138166691484113,0.00015047883120366658,0.003418057661275446,0.026627331683327767,0.026381028717855953,0.008549800491725474,0.00034064637969578003,0.0034091379623433895,0.02426042758355292,0.06161791162146098,-0.013710412559970806,0.0002060104488169633,0.0014119731972536296,0.004413249265490662,0.012214434272923255,0.0010723928031475456,7.889179554686436e-05,0.019779623112103652,-0.019684603232396153,0.08534940522209451,-0.02949002982466417,6.767309227112592e-05,0.007853689669811762,-0.030945076632452904,0.2611154796619276,0.0009486243531798538,4.064036111022805e-05,0.0004964187456018692,-0.014299141868495178,0.012063177626552356,0.02248847082979967,0.0009140985897598123,0.01458972906761162,-0.0044105547725507505,0.010125363365160803,-0.23054458436784706,0.00015231563612850407,0.006231608809583804,0.011659336496399109,0.007639280565345472,-0.004713126865612065,0.0007460118640723705,0.017254778451474002,-0.002065951237820586,0.028702705758848448,-0.0009060447633976084,2.144964047673927e-05,0.00014208949322607866,-0.03131594111137622,0.08902530645061449,0.0056868456499185194,0.00010449680890030333,0.023989545784637984,0.006129680545735221,0.03912369206318103,-0.023669750089076836,4.4102156675969655e-05,0.0010265984097142975,0.02974130513317987,0.02357190202491111,-0.0005943200666764791,0.0024608682776758755,0.0018728941831589999,0.011178375758188853,0.07717389998587836,-0.001415745202763704,0.0001191956384229833,0.024564753514481147,0.010918167216486946,0.05940299876146861,0.0026942794769775685,0.00028460963865594693,0.023524090541713952,-0.027559262447205083,0.1798425907810272,-0.02354699284327329,4.316542251920137e-05,0.02520791963038445,0.027549120092976085,0.14910286925404087,0.005226950945749227,0.000304514893816941,0.007169657479076879,0.002557555761024373,0.03891396048763071,-0.025222168029744835,2.7274067365823996e-05,0.010845541639224543,0.010682774850843686,0.12576351082891743,0.0033363349036573914,2.8379917702510416e-05,0.004162421755652445,-0.0016851981538889,0.004302687040721976,-0.03187489054080232,0.00012616357071614884,0.005319201518587774,-0.04193825519765661,0.27049578514271194,0.007184802187550144,3.581312609572327e-05,0.0059208468893156225,0.05069541110369054,0.15622069566734806,0.22236255438346028,7.194613430718646e-05,0.017508446591983497,0.01572236870378473,0.060370099642390825,0.005380327192759046,0.0001190816050259766,0.0033919852171561994,0.03170676573081447,0.029651706063491844,0.00014124074923008384,0.0006111922220913113,0.02165713844619965,0.03120455319673132,0.13001162536539987,0.03389989808250959,0.00010102335556757919,0.0184883313452028,-0.0303449665508302,0.09687476946789407,-0.009907708922640512,0.0020104586989172645,0.006636391107717286,0.02270793217973577,0.20582078547970342,-0.048860555536569726,2.837073273230494e-05,0.0234512457817631,-0.012091183531477577,0.034429668746002264,-0.06691244786481904,0.0011481727590980694,0.01875537759558265,-0.02623367437813115,0.19086652294358994,0.029259872434388292,9.152821756405418e-05,0.0030945515617839927,0.020004553678608702,0.029933643588554302,-0.015470795924904416,0.0001577301328949026,0.008273593180882964,0.005279495297639184,0.007575213441681555,-0.07444432429041829,0.00040003818394022483,0.011251882840654353,0.00077540919604299,0.0031613342219680538,-0.032797099989013666,0.0019011258880025843,0.013895147916281207,-0.009308333210018243,0.033188992752484894,-0.03249485650108172,8.99846060047885e-05,0.0011025777773736394,0.03412631927247916,0.041857976286645775,0.018056329492740865,0.002026695082489181,0.002418247649481853,0.038819682914717435,0.14611687895880335,0.017565072158583248,0.00010526103428351333,0.0039913323168626665,-0.03048873770673993,0.07805791293542579,0.016770254691912376,0.00015833717239655538,0.014075144626243798,-0.0298458997374963,0.12558649842095704,-0.058920323762661216,5.800369350625057e-05,0.02295948542224183,-0.0602309632122406,0.19051937426567384,0.020543463216603833,0.0029963926282388074,0.02011135883763712,-0.04949035447037728,0.2668310907390359,0.07708865375073808,9.226239065326088e-05,0.020201290663833832,-0.007415047819865168,0.0354570043413622,-0.052782558269984944,0.00015166057562322988,0.012703680292773044,-0.01119531532089182,0.07160239390433497,-0.0061342879134752585,7.395328778742914e-05,0.012822691852144304,0.02083837955720145,0.09860781906250898,0.009217265385204764,5.3112896419075067e-05,0.0009934575047856851,-0.03856930214988422,0.07281607198083481,0.012068138747905834,0.0002582521392223736,0.019325446850820084,0.024153732637397046,0.09277642868926067,-0.07168439910316944,6.47382536197782e-05,0.00035411881919280533,-0.024018475196177808,0.23800268254391907,0.028945527409867642,2.60372352095978e-05,0.017307497894156858,0.018088744883541476,0.05953294516481576,-0.0037713093930384447,0.00010620868459457718,0.005088122959342074,-0.010992876538623336,0.040146490464840395,-0.11850547815992549,0.0004316102355281636,0.0006584115516087507,-0.052292137245314944,0.26649520258700193,0.0531104662814569,0.00011238770245855075,0.00910059682287242,-0.0013122124056246143 +2023-04-19,-0.034275235661323164,0.24311407256717973,0.00411171877639298,0.0001490928905897286,0.010300347456107091,0.014920026447757462,0.0441407933601091,0.012883730557700502,8.110357254085832e-05,0.014984808735049641,-0.010547907753170025,0.03562122806963062,-0.004975212690341112,0.0001369792044203672,0.01135703501984616,-0.02945971596805192,0.025721644734098558,0.2870692005440329,0.0003865428782603976,0.005810735763530923,0.005554922605242719,0.014619123034413897,-0.02312027673513836,0.00019881743366096977,0.011526531547096599,-0.03294419212292347,0.09559018483826716,0.10039315132180412,7.525100430425723e-05,0.006139490792259035,-0.015584490299483727,0.0573048683901128,0.0015511408120767738,7.979780378140905e-05,0.0116751556157005,0.006038097879101993,0.05323978320030065,-0.021761348632250006,3.889219772072603e-05,0.02813006068553524,0.019673230120639176,0.01903679814010642,-0.0672188603572388,0.0007969417035062427,0.007669968045535946,-0.007455327286550023,0.014742265619914813,-0.0031429438435828985,0.00017683342885825915,0.008195070816346501,0.03193273987728102,0.021430308362511162,0.0059224048716547345,0.0007283365779909816,0.011746675979065545,0.007944008409190743,0.1080448288603033,0.020029483554468888,2.1910813321436165e-05,0.0018589569276452778,-0.07449412398759686,0.23528862920548055,0.05860696433828263,9.405288370724624e-05,0.0012357643331324091,-0.005982979312184103,0.02927854956924878,0.0020616873690546276,5.752144150798899e-05,0.003738600980819342,-0.0048502274426651905,0.004509025326901066,0.0019688796046391814,0.0020979851140311787,0.011751459332892822,-0.000708397929641148,0.0050120692102575415,-0.03149204462992133,0.000116308734823936,0.017808184726659848,-0.033313311309780394,0.1931546158385923,0.003634286042213028,0.0002670674404528342,0.0022599081660183546,-0.07303089526172038,0.4260104195061004,0.11947921547820393,4.828890519384628e-05,0.02236814913608736,0.03103208533617739,0.16863675350030835,-0.019219315628433924,0.0003032812319132546,0.018765858154395392,0.012023632812071186,0.17063291347601356,-0.011123580536510481,2.9241734524258213e-05,0.028933137406301095,0.010357958587563668,0.09068132234968135,0.003944587049965224,3.816260698826947e-05,0.01576242169280598,-0.0260357059187553,0.07759935342582423,0.00708231450544164,0.00010807718155067895,0.00016974905126887355,0.03501285128851179,0.25824567094349044,-0.0027856562430807696,3.131747974750104e-05,0.03326072321588527,-0.030104070658128115,0.09747264544776206,0.09597721961669559,6.847307848959408e-05,0.00931503421865126,0.003302976878070228,0.014262337721616353,-0.026738434064178477,0.00010589206391201585,0.004502835488243276,-0.0021539871274201348,0.0022732754744876063,0.006302994381914246,0.0005415849638412294,0.008328389753069904,0.01297755292979184,0.051645665860048616,-0.006614905680400345,0.00010576572161524732,0.007951829892278474,0.05109784430305111,0.19157044547066449,0.03086198023388619,0.0017119585457113869,0.017022942917983237,-0.01098178213464878,0.10900176494312531,-0.003609259011400021,2.5907260310363174e-05,0.024591348645750542,-0.05359996468950943,0.16774820624694936,0.03967250756986452,0.0010446670300088012,0.00249485483768086,-0.0217068834127631,0.15077800445737022,-0.05015192273980373,9.587052944571874e-05,0.018513358243868704,-0.040767767757404774,0.062184931613231645,0.12957739608692925,0.00015473093771410876,0.0065374202820664565,0.026186958827339648,0.0313908997809221,0.044026023685790824,0.0004788342586018377,0.013806189973484612,-0.023615390303052246,0.09121671611419419,0.018239462522217156,0.0020066472569094987,0.006836075958172067,-0.006801507842811414,0.027130342674108663,-0.038231419705312096,8.043411623002103e-05,0.002980578345736199,-0.05480261817450504,0.07311268195817316,0.002025843412633386,0.0018633128706553967,0.006214761982752682,0.00030656604614137173,0.001022480386873925,-0.04643991531616172,0.00011879142800007538,0.0053987143076232045,0.018492221550755493,0.04168008721117429,-0.011321927038242245,0.00017985430810200527,0.00960590005835846,0.05020442311473306,0.20974519992265075,0.08110263553498046,5.842031245870683e-05,0.0024028267501748513,0.03669563092255509,0.12462541311878553,-0.014981538856847713,0.00279078131171049,0.0037319898756984645,0.0273503221043755,0.14230781414311175,-0.009463682437679649,9.560360484717591e-05,0.018210173124141662,-0.005419219448278097,0.02549247287616951,0.005537036396875984,0.00015416491804865558,0.020281287243242924,0.009224507477571973,0.048520927009604704,-0.015748129007135115,8.992134543726645e-05,0.005565562113007427,0.009257571061784903,0.04000094767847014,0.0017074734162466057,5.816666562693315e-05,0.028080906368124475,0.05411600365121692,0.10230797388751,-0.03891066782650952,0.000257896606475166,0.02092413784615426,0.014837033707746949,0.052921820437549554,0.005098124246361382,6.971507265717424e-05,0.0005827988728332842,0.006943700971039779,0.07383115354806598,-0.006666915148835316,2.4265131056347533e-05,0.02342125913427915,-0.02138232990486706,0.06534475644363938,0.07286387470507065,0.00011438083085133688,0.002194744889475642,0.005532984018811438,0.022759637654512877,-0.029188515545402426,0.0003831969495066631,0.0031878968657554907,-0.0007421361686444478,0.003841711884068448,0.0007699959896469485,0.0001106446967266104,0.038101673315004005,-0.0027396548104603245 +2023-04-20,0.0015298400085598264,0.009434738138242967,-0.0014893493296685833,0.0001714757644214204,0.0072228686718603975,-0.011241349821020914,0.034421687493505375,0.003745174274401331,7.83604338870127e-05,0.006632143279384421,0.004666234181102982,0.013512713418428123,0.0004609939450341291,0.00015974275452718099,0.013271244132225928,0.026959390077560128,0.031175644340668208,0.03572796425617425,0.0002918518702019119,0.01630957041849297,0.04730319817167841,0.11993900067208539,-0.0775199810332634,0.00020636110784918316,0.008685057274159164,0.011522604695689722,0.02794796167248796,0.019132015098576507,9.002171111952863e-05,0.00922568463086982,0.0025297327000523818,0.008834919147886923,-0.047618780824581944,8.401598247635369e-05,0.020595652689093344,-0.0017380162366455825,0.01672872887476114,-0.03008773475275054,3.562784065622864e-05,5.54612572437811e-05,0.01234628421306691,0.010899190527448059,-0.053470546204809136,0.0008735480777669501,0.007947863195064016,0.010029947723742516,0.029186522641367115,-0.0014505539921144865,0.00012016505810079185,0.008114003752949607,-0.030602257215618697,0.0189820538817192,0.07072538837885103,0.0007880152415157064,0.010532575291225268,-0.010626734583343324,0.13470340781214427,-0.05537578266242227,2.350953505063131e-05,0.0037556188974472793,-0.0008738369613105871,0.0025256985492646995,-0.012650998136400528,0.00010277794585135749,0.011274710580766433,-0.0028847975593965978,0.016103334164515412,-0.01804755125549052,5.042679369141128e-05,0.0013180927194990162,0.03403846454776721,0.025892809734017523,-0.036697101780892666,0.002563974807287808,0.0026879097683460947,0.07628476522845325,0.4753481743706576,0.07196364184302255,0.00013206206731248334,0.0009247650121997025,0.0535295970562226,0.2868790627521136,0.05204902168160151,0.00028893712877889837,0.02327822960345231,0.03172946401474488,0.19643971878446745,-0.04012453184512525,4.549821809500407e-05,0.017457454142820204,-0.01524734157249314,0.07220417225324852,0.006336943003751038,0.0003480315721629513,0.009112947463590522,-0.004552281490004613,0.07063833828689692,-0.015105699543123524,2.674353828847881e-05,0.04064927255650135,-0.015504572241712642,0.15469921771251216,-0.04857159750587088,3.3485237256532273e-05,0.0002786756022760918,-0.02664135734083579,0.08127307640480809,0.004100079080537006,0.00010559233758085494,0.011189072181581664,-0.024134617426627574,0.13576255821459396,0.0030684320861799953,4.106319922004646e-05,0.011835986242310305,-0.005649334748055506,0.014540968053758726,0.0031691916857321243,8.613533980692836e-05,0.0009252787221570825,0.009885907141435512,0.038824600747575676,0.0160661530027132,0.00011642818413122489,0.0024297883189600992,0.013951097172655266,0.013877194238799897,-0.015013671802959273,0.0005746220112998454,0.013078329995086723,-0.0040391709811236146,0.016164779355139682,0.0007840006497727124,0.00010517401797956069,0.019656660594557167,-0.055241433911622416,0.20593838431633474,0.023317862556057833,0.0017216577291866246,0.02426699483222721,-0.001601828917361695,0.014892316619231728,3.793438282462064e-05,2.76589738607993e-05,0.02799423407778294,-0.010222441833593101,0.02918264746683766,-0.025007205216922183,0.0011452524487514568,0.006594792119801401,0.017799522039393896,0.14238876535052442,0.006872546604973099,8.324501953503462e-05,0.01450390530308219,0.008037776841166753,0.014068506640679433,-0.004192362493776475,0.00013484452902449786,0.002402912219632958,0.004283624862768519,0.007328453170864936,-0.0036217331024185366,0.00033550811375281754,0.007340003032616721,-0.02579737082737336,0.0956344516719821,0.018705494556591724,0.002090794820455598,0.010572612425576283,-0.02276013270522035,0.08478051640799222,0.0011173572414589945,8.613290656049786e-05,0.010944095590457644,-0.01802223477140154,0.022793932684641575,-0.04894829938146524,0.001965470696630248,0.0007139123014627616,0.0009359196963984047,0.00314665121388692,-7.246008142369685e-05,0.00011784360420177852,0.020460749451838182,0.016303267863118486,0.040851601083560694,-0.031332912132006334,0.00016178041972017676,0.01746304126798577,0.005406471728506151,0.020186255236616497,-0.006216541977145845,6.536903911477134e-05,0.0005049041742714732,-0.05687909240950704,0.16554831500931166,0.0452219664561272,0.0032564615234611234,0.008203657242371655,0.008364085683424111,0.038364565086269585,0.0007323851947729827,0.0001084498022935109,0.011715103015520074,0.031296171972942884,0.15261386064017576,0.017267839141580223,0.00014871611282365858,0.018694723361209187,-0.011646291502018586,0.07145963142286685,-0.0031757366896904837,7.708601283876303e-05,0.014176061939625763,-0.019086023075443367,0.07737369961130332,-0.060197761195364345,6.199682893071433e-05,0.005944114903092457,0.06810259758034432,0.13374030416750993,0.05929983695514254,0.0002482737275044514,0.008965224851611511,-0.006398262222723509,0.027391681668793993,0.0018590839683944819,5.8084160255484354e-05,0.007122245236695061,-0.024276670279279298,0.24157587351864027,-0.04747909944609991,2.5927870371607432e-05,0.005681212089262812,-0.0045880558772352234,0.012980628415900725,-0.0008079405146724166,0.00012354977107920228,0.0016480684834641263,-0.008029798499256936,0.02886537393851974,-0.017376269705836656,0.00043848569546152383,0.00670018588310646,-0.01804231290640755,0.07409481173006721,0.007972081150945219,0.0001394685249128287,0.025880890033236313,0.0006181614637132357 +2023-04-21,-0.00246929225115919,0.016081599423150166,-0.032351065664702874,0.00016237899061701083,0.00848333686294392,-0.02305347123584717,0.08888839663549132,0.008112102871658167,6.223028384164197e-05,0.0016770075032259298,0.007545005571044342,0.02720350735544204,-0.0631799911741952,0.00012830153961748168,0.0008306330497144562,0.03289740734049326,0.03516073459911841,0.04413099197492133,0.0003157705246031561,0.0013775886341556055,0.01854570898128694,0.04146390049604929,-0.033098284200012616,0.00023402974490881995,0.005048434518882575,-0.000615850265833541,0.0014971617739809183,-0.013657668048216378,8.981588281593301e-05,0.004155355506747969,-0.058480883352740716,0.221426826423275,0.0848050198651424,7.74949751965195e-05,0.03092126264552287,-0.009545384793472512,0.08597892529563561,-0.0005659472082486436,3.8071504768169634e-05,0.02043480340683453,-0.008937761089414888,0.0069500881812093,0.008259198188626587,0.0009917066223673263,0.004479936917185215,-0.003400539676103191,0.008144395111409629,-0.1479376621218286,0.0001459993419106276,0.008832128608853417,0.003591042824500442,0.0031178887662497586,-0.0028898554983798974,0.0005629687981484856,0.0007076698444578675,-0.006218843571800198,0.06448939039758747,-0.07483102133466675,2.873718014781837e-05,0.0029082077186884936,0.051165140785301606,0.16250497651513438,-0.010076059080504445,9.353163928186689e-05,0.01566614184294355,-0.023159717827114987,0.13410868312657612,0.10984542485763604,4.8611406179703335e-05,0.0038255940229340794,-0.0091071620753399,0.008181470612743914,0.011903983579392648,0.002171074184626127,0.004750866927000651,-0.019872303480205637,0.14368513052065512,0.00773383982141685,0.00011381211442608968,0.014942794516585254,0.0019116180460025452,0.010367958892070995,-0.011742880260784872,0.0002855065571445585,0.00907381982101457,0.03362257158492682,0.22904110994270718,0.011231472768489275,4.135027891271459e-05,0.003745692803635372,-0.052413961951349085,0.251639186001352,0.040691591865899414,0.00034328555152682397,0.015387372362598514,-0.021322805871118827,0.23514987481859212,-0.0003087640894983108,3.7629619975560915e-05,0.06102911376226714,-0.01376710981461847,0.15838198024370773,0.02421410764925577,2.9041478136478637e-05,0.0035050479617290712,0.03112852422448518,0.08851681407901535,0.016837235362623423,0.00011328059283927717,0.023954498285988616,-0.010632785592976205,0.07737069987833649,-0.013969893742276028,3.1744091860225555e-05,0.013415996284060119,-0.020220746124540532,0.06485575376196652,0.024211632464370293,6.912355214896976e-05,0.0009092783472422743,0.0065443127228800545,0.025468025582612512,-0.003319425810497395,0.00011749445260791009,0.005274879102928194,0.022404287180586742,0.025346594692459375,-0.026051392663141115,0.0005052276051903023,0.02342190675530447,-0.0055384865073938435,0.02101052791292297,-0.0061803606292762,0.00011095328027358842,0.008638626856753207,-0.037903208795096545,0.13197939351879404,0.017254446091508297,0.0018432702945640474,0.029194602444772913,-0.05344893363747071,0.5394940041604782,0.0517460129273405,2.5476198138711382e-05,0.044303089864532914,0.028115397804061606,0.08803863810775961,-0.018778281626815156,0.0010441002187788265,0.0135702941713446,0.011996552897726647,0.09296859344407224,-0.014186270320619277,8.593020664134409e-05,0.013138180267567936,-0.018201928264184476,0.023046931744809217,0.028692889911373087,0.00018640161426441263,0.01698228654413321,0.015354593926159841,0.022102871486006644,-0.07479948672774649,0.0003987434394597837,0.009450415102983846,0.12668646541035658,0.4500431114839636,0.4494025850124867,0.0021818577967841436,0.014071567678163449,-0.013425960650313774,0.04528526805763673,-0.009457776719701718,9.512152352412451e-05,8.314738348484457e-05,0.04284384320185548,0.05293895972868973,-0.003065967906412231,0.0020118250436456857,0.00835634790456332,-0.03636221793548728,0.1252585472864337,0.09569302181581459,0.0001150162043512821,0.0004552806004605877,0.02379433263633393,0.062293873000052256,-0.013385008377949563,0.000154841928458403,0.006597365455569207,0.017835813675970136,0.08042482535081023,0.0037076952108293136,5.412734503927988e-05,0.0005929433008053458,0.07086775141433169,0.2068712575313409,0.10605693463442688,0.003246882381818753,0.024003409723333608,9.017379094649178e-05,0.00042783083769474005,-0.02545847641647461,0.00010484526307330865,0.007220044128525614,-0.0030388522653875894,0.0181009983109647,-0.02440893007843604,0.00012174968431273707,0.0035406645891380754,-0.011572173373501618,0.06725720551048751,-0.028140319942863885,8.1381335328082e-05,0.003987713358309475,0.006326994002417017,0.03504257240348507,-0.00443607711469156,4.537836440493297e-05,0.0029388102807789314,-0.008831741424532228,0.01602731859696235,-0.05331588808380289,0.0002686673361585269,0.0030966619301471526,-0.002389354702155361,0.011326390195098481,-0.04115019501102445,5.2457003992700535e-05,0.004019280923818804,0.00466876700428461,0.05113147151588428,-0.12674114877079104,2.3558367640726886e-05,0.0077269277687886245,0.010202506489497347,0.03389392899589253,-0.00437759508082679,0.00010521894160140405,0.005548808698076937,-0.0009473650544094607,0.0035233881391056733,-0.026625126730027038,0.0004238233146409169,0.015798816333295905,0.015045296237724206,0.07580866474550886,0.0008851128483585428,0.0001136720499323602,0.019446127702095816,0.00235013873369861 +2023-04-24,0.027385348916310535,0.21479952890748052,-0.05816220706084004,0.0001348253443005314,0.008430566357387766,-0.022170767611932485,0.06851296499258483,0.004553778156864004,7.764589383688222e-05,0.013711406176659217,-0.04027782424190718,0.13611839691311317,0.02969855961517041,0.0001368820123404726,0.019138930918533564,0.010273902338923143,0.01304733175894153,-0.0008503343073012272,0.0002657550854954726,0.00833151485547036,0.001317014524849534,0.0031968000625738837,0.005638019271567967,0.00021556232637676454,0.005459373193979999,-0.01329376158182353,0.03481369972114355,-0.038748058068602806,8.337665091871965e-05,0.0038911591614154122,0.016641405627005706,0.05917505424581086,0.005062061946228409,8.251657565616122e-05,0.0017866409329545228,0.014362572998561514,0.11369435128717849,-0.11835458200058321,4.332035186559709e-05,0.015692925059368285,-0.017623280739399866,0.012853309214223993,0.028580983720260297,0.001057344695048931,0.006215749824524989,0.003942989124013701,0.009295664309826918,-0.11901169944059233,0.00014832249888442769,0.023187875591791456,-0.008352624692415486,0.007406439287577268,-0.030875687181469682,0.0005512363632469398,0.004505903483501179,-0.003653035369157689,0.049454424986416855,-0.01402456743758558,2.2012608515762876e-05,0.004463554415396212,0.05414744868811111,0.15255939712529346,-0.0018034402039722027,0.0001054362794420065,0.0118406572018589,-0.010406142951602422,0.06709077929216066,0.02682889246664662,4.366050648904555e-05,0.007200284065790731,-0.017174643910112072,0.015510895411649756,-0.05590588426716101,0.0021596026142099807,0.015004758320004988,0.04958012749887685,0.3024127775722842,0.02751263103048535,0.00013491480498945465,0.004705518177515835,-0.022991196736586655,0.14050444551023603,-0.05695591954244736,0.0002533843246840218,0.005071902731962684,0.02978745892480446,0.16107001628630946,0.004902543574427006,5.2093040903836264e-05,0.026066463855458497,0.013864714854975965,0.0725383969494436,-0.0037662743719366967,0.0003150139569034132,0.0029926400577096365,0.021828209964738117,0.37526832100269997,-0.1823928943704718,2.4138287168567495e-05,0.01619900603624978,0.007574555851514091,0.0858888364575096,0.005595912108279792,2.946470938585022e-05,0.002552386687352233,0.03706381824223866,0.10828179193452664,0.029327720369008256,0.00011025987075116785,0.008519094831737616,0.005616472842664166,0.030301557488814135,0.0020287984435668873,4.2814520815753616e-05,0.008668799543666186,0.010998429791779766,0.035368848244967985,0.0007541640967674961,6.894251964132216e-05,0.005656643232568354,-0.01599211854641167,0.056663604611388814,0.025586916909117168,0.0001290477383672662,0.011025779955596707,-0.016353226130385017,0.018118890163797793,-0.03585926134620979,0.0005158784796154884,0.027249092857188163,0.03537068889970332,0.1274988606537117,0.030539072391582853,0.00011676783383346879,0.004094769474236171,-0.019982664601992623,0.0731916231682964,-0.009674320035272146,0.0017523110319495943,0.008649455853511012,0.02349511238875663,0.2174302538966471,-0.02296612462858049,2.77868776690945e-05,0.017417883844125626,0.032872855177923044,0.08334052304765728,0.03677416954286298,0.0012895924279725307,0.02120746256188557,0.02183460518097751,0.16893808629142382,-0.005273436376557628,8.60683379172318e-05,0.025157304632829933,-0.006945655324761902,0.009971223518097006,-0.041350699062420435,0.00016440316059954904,0.01630917557525865,0.014766336860858,0.017088473104830835,0.002858822764964695,0.0004959905776253098,0.005022714758509791,0.0340730365948898,0.13121200647220904,0.001969481016044629,0.0020127396596410527,0.022142938139903146,0.010014727251574198,0.03811585280316873,-0.06743748062598326,8.429927803268276e-05,0.02460535029869512,0.08335269574711505,0.10624324097434097,0.15253082998359224,0.0019502735527860001,0.028815107933289806,0.008380113343546351,0.027077344803533538,-0.04186739063718869,0.00012261958835480468,0.011778099908718078,-0.01627140698032077,0.050486293388946134,-0.022375498274216907,0.00013065077706966567,0.009289732516833852,0.041240254716136626,0.16136617835016098,0.07043952363104432,6.237675104314433e-05,0.01211632303329507,-0.02369907342721186,0.07839192984992062,-0.034209840629938044,0.002865352574668733,0.0002609565655415967,-0.008920181241367349,0.037098383828234514,-0.01611577033841351,0.00011960773300053548,0.006479135049576926,0.02379422457128947,0.12667473253198822,0.003687975526600342,0.00013622046065371764,0.0005640755558697086,-0.02805192036781119,0.19548999708742038,0.027431107833371795,6.787139193377522e-05,0.0057009993113532114,-0.039514973863609235,0.18267337093198724,-0.19412277235245828,5.4366809948377784e-05,0.004028593702141574,0.004536229213925389,0.007970895716694699,-0.05971863252174898,0.00027747078188101174,0.018330342489549855,-0.00231182402067552,0.011612791882574448,-0.05747923192955893,4.950311236847684e-05,0.0019062933980324094,-0.03614018300827325,0.36519789799890046,0.05310971440446625,2.5532501361225192e-05,0.008888015983761672,0.013345177634744323,0.03809566653725343,0.010190038038359578,0.00012244970605917186,0.002868446134705136,-0.004691794506464839,0.016083914468170892,-0.015002146973547554,0.0004598065974867988,0.0036664979656300545,-0.01793139416353328,0.0787398229047151,-0.0009886732611768727,0.00013043418218404936,0.021208496763322825,0.005058434374367976 +2023-04-25,-0.0038473736211262315,0.02490588269864397,-0.06404829333715584,0.00016336123521973754,0.013368904184688947,-0.01546653852550027,0.049515459911295835,-0.01890161349171799,7.494848129803435e-05,0.006680614362150863,-0.03098549219384003,0.10383344535809376,-0.03938725444122144,0.00013804425549189084,0.013042427501291408,0.01069845342963875,0.010617298961085209,-0.01519823887086508,0.0003400750812415088,0.0010964993984758338,-0.004165883158871925,0.009875212478901111,0.003288142138790277,0.00022072849824389656,0.012007241001171206,-0.014564760687801881,0.0417805730961971,-0.06470188169514213,7.611595490919281e-05,0.009579479614501075,0.03440548520392363,0.12254995894582624,0.015374057968186899,8.237669654507966e-05,0.024881175626701484,-0.03429629925260041,0.25657851455198044,0.034148321545848376,4.5837992368732946e-05,0.015304343983462951,-0.006716248820282917,0.00633823885417776,-0.014566266228023447,0.0008171522155179641,0.009038052773008082,-0.019546355109848413,0.04631342043029081,-0.004176381274713682,0.0001475777261121143,0.0015678037750117293,-0.0003906931150071573,0.00024484214631515124,-0.010876571709038389,0.0007799628872347205,1.0595128320259762e-05,0.004604739594551019,0.05301457688200136,-0.028847048764491224,2.5884069962634005e-05,0.004530479457671118,-0.005910262050393244,0.01733548640933336,-0.055845208639667854,0.00010127954536129916,0.004204030625828204,0.009244107146034231,0.04707433184855998,-0.012203974380683748,5.527676573936817e-05,0.0009157494744844954,-0.03793642794583027,0.03242831515937822,0.05565867895583721,0.0022816815109591554,0.011571036782328214,-0.02862412048059236,0.18358707900044832,0.0026157330982061852,0.0001283045763499738,0.020644312686647705,0.03855892564783846,0.18108753785352177,0.03159412811461223,0.0003297194698171303,0.012682865417187071,0.043272029171515375,0.20467692906011736,-0.10253166214885288,5.955240773664569e-05,0.009167503503464645,-0.008932077805931993,0.04629327363591003,-0.12490123480229381,0.0003179958204187869,0.01193998181760065,-0.021149963664926393,0.26903694724614924,-0.0301654567310651,3.262330305056503e-05,0.01167367573514537,-0.017007747544091175,0.1607314336599883,0.03625549567766441,3.5353115439403e-05,0.006299614431963918,0.009574212337724958,0.03067952994203652,-0.01520251796054472,0.00010052570085016274,0.005038305758243026,0.026935723917703283,0.26582034981480457,0.006526066440855173,2.3406301930252473e-05,0.021617802848678383,-0.01911011370285888,0.05755637030932674,0.02570726127286628,7.361176911066502e-05,0.014595933976685481,0.0031617577560246516,0.014186601571132261,-0.024723939162576716,0.00010190577974482157,0.009887579640268585,-0.01593779127776115,0.014147391762730901,0.020506819030974094,0.0006439131826905881,0.011517579892256383,-0.006235267689274115,0.023583532885795504,0.001965306031756582,0.00011128387709029431,0.005311249231285856,-0.027564397066252348,0.07824220088114545,-0.03168298431664761,0.002261135631477698,0.009861660910668955,0.04265098593280742,0.38574406848167386,0.02876127206382529,2.8432301347168225e-05,0.00617206280897048,-0.028158339389747634,0.0846003174321093,0.004379291781974216,0.0010881939732861432,0.006656096245363998,0.0020583390727525012,0.01652760751540033,-0.011875456263021951,8.293399198275287e-05,0.016282753396771748,0.008638092699836295,0.012693762476437208,0.0010863639282267183,0.00016061010981698306,0.011224387381884488,-0.008324666601155101,0.01229089325423843,0.016510200221113255,0.00038876514066052994,0.007857396830965743,0.02538279344492057,0.10285452458043325,-0.00679258470182496,0.0019127858734977075,0.009029515004903007,0.021612697814737195,0.0763620559967775,0.04660905399623286,9.080750404280677e-05,0.017864063167687436,-0.006716411752501701,0.00887925335586743,-0.015366470486488384,0.0018803472384102808,0.006859475848734708,0.01009671663231494,0.03203862741646362,-0.006279789940646306,0.00012485970437739875,0.027363559157939324,0.012398339537258055,0.02807015125254197,0.004085566870231432,0.0001790519886756782,0.010674907441733567,-0.024124914503295052,0.12924876878292066,0.03144953419259178,4.555680864936875e-05,0.003509452254830564,0.030728964367709288,0.10881839682683192,0.006855552385137202,0.002676477879872252,0.004192702778793145,-0.005043217165686487,0.026205340244321494,-0.031740614401899105,9.573228775130129e-05,0.014832295758536276,0.021867467945448776,0.11720049764955691,-0.03656544192451563,0.00013530997918113124,0.0007816755257272958,-0.023977336719898455,0.1284229429259972,0.012629034445087698,8.830941809123352e-05,0.00832184309400758,0.025124142108063068,0.10392215039183093,-0.0022155181731846577,6.0761783283114e-05,0.0020883274857005528,0.04673318600055843,0.10785446499432022,0.038744061650449114,0.00021125969815481704,0.004855050735137017,-0.005584765264648528,0.020627503845080015,-0.1644850636584826,6.732442036131583e-05,0.0075752728552812695,0.015853898473713796,0.1954854157992435,0.02305594789699832,2.0924399142097183e-05,0.011830656455452986,0.0018118212569919326,0.005893196503801185,-0.06753523161639834,0.00010746657121606256,0.012344644780127194,0.00152038988569806,0.006768312707513038,-0.025252106533732218,0.0003540809217134961,0.0009297037303825054,-0.01647445619655522,0.08390100767352675,-0.0017114688349328553,0.00011246456481212825,0.024209933283067482,-0.00037374688319652627 +2023-04-26,-0.015789243948150653,0.1345406669659286,-0.0014158186968424398,0.00012410644695456631,0.01574011530493078,0.0005826014755119092,0.0023195699225268566,-0.022142454161215235,6.0266315120046426e-05,0.01726808129571471,0.004489074897122546,0.01341801652498082,-0.008206932692144191,0.0001547624988827913,0.021485955260045618,-0.0040113210500349085,0.003867336749654475,0.02424347047211798,0.00035006064512194417,0.00015909888094721306,-0.00018268374778343795,0.0003953935888566354,-0.009899172775992577,0.0002417508789844577,0.009440602403699642,-0.00972762853347356,0.0278812999485724,-0.025175945010757657,7.617995278506238e-05,0.0005591202165623535,-0.012483636407706314,0.04143361613699162,-0.000957706301500506,8.840526455749908e-05,0.011283889371085255,-0.014154497394672966,0.10106774473625584,0.0020730651982181344,4.802645073991146e-05,0.004673151254045389,-0.002168083401343618,0.0014497446834072598,-0.005059764334663773,0.0011532653569429406,0.005658216506077651,-0.028063301590690513,0.06126001848725044,0.04370903061671299,0.00016018561996756906,0.0007782615021596612,0.0010733851199112676,0.0010410209874240181,-0.00057297751482938,0.0005039882873136848,0.00021674101713643366,-0.0037350134635537042,0.04816046110236143,-0.0006527211000613623,2.3111297323797384e-05,0.0018405410040283514,-0.008741491196189761,0.023412610732725943,-0.0004783506117869527,0.00011091408938102046,0.05187475293494126,-0.010499852749705546,0.06417337928965426,0.006666620595459776,4.6056413709400194e-05,0.005813964263302451,0.00961595553107931,0.00861953263235962,-0.06788882757231833,0.0021758637689834204,0.005903967776612529,-0.011305928532733257,0.08693867962334498,-0.0053587607924727105,0.00010701515960804545,0.0032311704146694275,0.029122521303468162,0.14117981956492628,0.004671281586086569,0.0003194218208593924,0.014733145628314806,0.04035465386760933,0.21172921440245865,0.001445393547193686,5.368757606387043e-05,0.0061934378706042445,0.000917010913114694,0.00495288118551502,-0.09759170028666478,0.0003051429930322043,0.0009927247622904013,-0.00960046287377578,0.1326049211616878,-0.0017356471626508658,3.0044346503388796e-05,0.010664625461110877,-0.009504933358047519,0.10187209498599113,-0.011052260803626033,3.117278095557522e-05,0.011131934991532,-0.024480268404609082,0.07901651260431046,0.008166847888692808,9.979782418351834e-05,0.01597759368218664,-0.0642704685961194,0.4727118921723776,-0.0011928798073878903,3.140561586286877e-05,0.0317847591593742,-0.011586168058140625,0.029112619993120946,0.0056161269907491875,8.823398911670317e-05,0.0027765568632744167,0.0118431200893772,0.04736039178922348,0.02360801602086944,0.00011434033024189756,0.004120540139618247,0.07254357343120435,0.06058934491818094,-0.00904742466881015,0.0006843499645723627,0.01390028123140639,-0.017891925408363624,0.0558231823508478,-0.05526954447461339,0.00013490514001248598,0.0030857064416330367,-0.018407110526359568,0.05333415205459974,-0.019567937307783223,0.0022151309238627845,0.012381995862729108,-0.062183300940211864,0.5042153544529405,0.06548863506571811,3.1713187915689566e-05,0.02350149666157432,-0.07615170320745367,0.2283781594207601,0.08689467112526729,0.0010901752609394613,0.0378080105426444,-0.007947986988580028,0.05898551823108217,-0.004789680765669387,8.972994289102561e-05,0.012989061017168815,0.019069366559633323,0.029243042395324197,-0.04714365840185257,0.000153907257480596,0.003591987604887409,0.008299915016558402,0.012534469891542385,-0.0848205022612163,0.0003800769986683619,0.006579193874822014,-0.041146072555599315,0.16477793109197078,0.0358178871360784,0.001935439869132359,0.03286202421242119,-0.006256664954840801,0.021377693546739535,-0.007036526722677302,9.390147677402516e-05,0.02857482591106888,-0.06499138170312697,0.09310400861988131,0.04635816249135259,0.0017352601037916764,0.011287726190611589,-0.057763119997655835,0.1770994827543235,0.13349384858857963,0.00012922584681288355,0.0065561008973884245,-0.014258967345421522,0.0368498864074819,0.0031492422039329907,0.0001568600312073647,0.005631820949241823,-0.026280870599201155,0.11583642528710027,0.010480559963453418,5.537433531085937e-05,0.01318689054891603,0.04080137275501498,0.1230887026210412,0.02806259313072884,0.0031417718119994458,0.0073381601813160705,0.061972230069984716,0.39565701053338803,0.09809549685076811,7.791459722463102e-05,0.01893191359792591,-0.008590125221176106,0.051054448585486606,-0.029885755761232643,0.00012201878302978364,0.007311603424221262,0.01205557112577446,0.05410188195642376,0.017011768660944785,0.00010539599686993442,0.002755204466813348,0.017363346319247342,0.08675440433766149,-0.010512156190127665,5.030246762067076e-05,0.031786293808679,0.055089273919040435,0.12721684437651357,0.054104660366971216,0.00021113091204920555,0.001825947265040265,0.0056208555627402755,0.022060561342718887,-0.0023091611717665586,6.33578224153539e-05,0.0033489685554482927,-0.02164529320602543,0.27867979571331347,0.0038452537157028363,2.003961045263606e-05,0.005047257893437259,-0.0045309117791217145,0.012597419897530087,-0.03824595879128624,0.00012572248749045812,0.0008725065887759922,0.018235813477581016,0.06991509585911068,-0.09333333151723489,0.0004111328273746753,0.0054030894759573,-0.009328114067638105,0.044064370589993136,-0.014698348506931327,0.000121248974205566,0.017475620922371416,-0.005215829834959898 +2023-04-27,-0.011444721859246446,0.08052747038466894,-0.042150663253092614,0.0001502961201771427,0.01875726331546208,0.00430342186039357,0.01782535931768187,-0.01617028006658187,5.7927682650961444e-05,0.017681782441474125,0.0023406586165099323,0.007721540964607439,-0.03041624664500143,0.00014022688974910233,0.022636500085769493,0.0003634127776483205,0.0004213071595497014,-0.009413638297107084,0.0002911181012251346,0.0017275780871041048,-0.017487878247332094,0.04603951530825749,-0.024546155706359433,0.0001987486330997944,0.00016938681385152935,-0.01321777994591457,0.03540423631930643,-0.011229870291141293,8.151734496548093e-05,0.004518547681380177,-0.04529261612993877,0.1568905695684035,0.030263461046962266,8.470721867051654e-05,0.010451038845453647,0.01228101633177616,0.10114445893408039,-0.08053149329732799,4.1638092714836625e-05,0.0019249600705044494,-0.01888157061534731,0.017249971125673162,0.0032074132378096007,0.0008441012265166619,0.005881386505664078,-0.024765071526490996,0.05392326493717161,0.04081585805428193,0.0001605925126294288,0.004469539619315127,-0.004781820135616482,0.003955598093408236,-0.004973499409407129,0.0005908883613240961,0.01048426909580034,-0.007010634133071078,0.08510073131904373,-0.07131815054175014,2.4549734527823302e-05,0.004101181516748096,-0.04996228863438098,0.1633980552058466,0.037761111069698546,9.083358991735444e-05,0.021126454683853067,0.03087552172724361,0.1620310177522087,0.16650945825042224,5.3638665382409365e-05,0.0005976416517990024,-0.046515268868843704,0.03663035245308915,0.09775933948674037,0.002476722849148856,0.02953196152969645,-0.03757873455145917,0.2272496651747861,0.024337707509828475,0.00013607896802445696,0.033996625236865786,0.021548512099384392,0.11346312172209805,0.00527071868813773,0.00029408359025446043,0.014794819563176746,0.04216040033360444,0.2843433348034699,0.015443677481391912,4.176597551074976e-05,0.0037888912474751844,-0.015127278224259941,0.06702195496300431,-0.015727211258423177,0.0003719893535729832,0.0013244772619374632,0.002689296628557193,0.03544403817008716,-0.03673147218052619,3.1486598267456906e-05,0.019297616505845286,0.017062176836624993,0.19920453711726446,0.044390339566700715,2.8616526797973867e-05,0.004771914702683733,-0.002623642829851512,0.008543506508684014,-0.016758554854765875,9.89216412128114e-05,0.003697872154810669,0.01840850899873695,0.13025074549966573,0.008015950733262757,3.264605985479852e-05,0.005061127578764927,-0.00895171846884269,0.021978557800917713,0.006766359476442481,9.029934626909744e-05,0.010194703634998161,-0.017817235518221782,0.06114960088897199,0.03299378831579978,0.00013322793287435128,2.5019249526670416e-05,-0.03495499949077948,0.03490052023439134,0.04311087373729954,0.0005724703008124211,0.009506171518802163,0.004817287003669562,0.020917137442583552,-0.004516026367395567,9.69362646151377e-05,0.00017698969985151356,0.023415377580578066,0.06813454802608712,0.02515933143780914,0.002205733101244187,0.017489663390155667,0.015353387922735528,0.14598743553350263,0.0002117583209651533,2.704400071077468e-05,0.02133998461926464,-0.008776796203417618,0.026836432549380593,-0.02505227928608921,0.0010692579815094125,0.01493327732875123,-0.018905514753601346,0.12629808293578265,0.002058817373239319,9.968214883364724e-05,0.012825027300002958,0.006955485009492909,0.009084372235520574,-0.028578178437849176,0.00018070820996555237,0.002323490437901439,-0.01548250569634378,0.0228245678029027,0.04090002956549088,0.0003893521700938424,0.00022576473469207024,-0.037034103086479774,0.16448200996517878,0.025123766032626036,0.0017451540435637243,0.024122215745277703,-0.004117731566969531,0.01611386369308843,-0.0010755927521174883,8.198770249153102e-05,0.005897999098547475,0.03974734405042297,0.05845756731740895,0.026763035518116308,0.0016902251804829418,0.031014388260808528,0.009998302053800336,0.030252357769826183,-0.002003423502927351,0.00013094323363068276,0.02438403391790159,-0.027421110169885906,0.0744249118298658,0.002373211914759852,0.0001493575155763813,0.0073195205923440925,0.05250192306546902,0.22717533842527782,0.09223412172353125,5.640634411835146e-05,0.009369807064942861,0.05543834151523314,0.16885769975462844,0.0018319763587357223,0.0031117694918772715,0.0178655349735857,-0.0031711734041560947,0.015201161274492949,-0.17211965757277392,0.00010377286201901964,0.01928889597160551,0.005368111244707111,0.028751934548032442,0.0019804725287795202,0.00013539892632241334,0.007963353635222402,0.011923108504478513,0.06356726008339353,0.012106057392219354,8.871656178076051e-05,0.0042911340048622446,-0.014747868676665946,0.07845900368800403,0.006974849322009359,4.724260834111927e-05,0.022246716186399312,-0.06509328094438141,0.10943614518008768,0.07810790705753154,0.000290004521661741,0.00040409215387976526,-0.010836132948826101,0.048052326268982024,0.01069128634803038,5.607564574322096e-05,0.01768117368749287,-0.004090504769349157,0.04794703459728569,-0.0013073404614444115,2.2011337683643058e-05,0.0066663149468083145,0.00743301516614898,0.0265878135713461,-0.020533606897685464,9.7721777639971e-05,0.001793047093227294,-0.007643215581913804,0.029851668616746162,-0.05354067860337574,0.0004035854199196515,0.004943272048373892,0.009006050646869258,0.042425686637425436,-0.12912183467750926,0.00012158424465606766,0.012802400871606251,-0.004229543510178751 +2023-04-28,0.029779466917622538,0.18287648038916093,0.033121866414672796,0.0001722049568638123,0.022712535467903933,-0.0054551811614460734,0.016564753476791205,-0.06273062504266702,7.901958187741823e-05,0.011642589407384269,-0.021472565347595212,0.07063950209883327,0.007170548333024477,0.00014061560124026774,0.0023900280172641838,0.012565307468547976,0.011423749524342471,-0.006784745988544177,0.00037122080154848493,0.004609477465813208,-0.033118210060173146,0.07407602477751049,0.04489154406760919,0.00023393055999334464,0.0060041498121997175,-0.01129072883682948,0.03179651959254002,0.0020577086465449913,7.75334540558694e-05,0.007126644067075478,0.04490142460367929,0.15913197388986328,0.07401651895965358,8.279279145753665e-05,1e-06,-0.015444254029287252,0.13074763591232508,-0.08826132856796118,4.050715164607803e-05,0.0006005987505763385,-0.008141369334790332,0.00801341866136031,-0.007536647807362086,0.0007834736786240067,0.0049078154947899185,0.012008373653985807,0.029015671138792016,0.0005649663417578102,0.00014471497004575704,0.008238988412735158,-0.018473945842454008,0.01345822650986097,0.016618776657468463,0.0006709593216294057,0.015448397563766541,0.020863483316680375,0.2492303421207657,0.21210950421029715,2.4946446698327092e-05,0.00048023303198865266,0.03440945424597967,0.10632738782346926,-0.02913239674541517,9.613547529607883e-05,0.029493304347959163,-0.006876555713259727,0.04135627479968486,-0.0134934381556906,4.680490540740272e-05,0.0001940460028467263,0.027469738120356642,0.025357526400247764,0.017444091363965096,0.0021128594363407057,0.004782133840024719,0.033209942932573865,0.18126629750651393,0.014385279621534276,0.0001507659168158629,0.0043493032467456765,0.00926546242756544,0.046665512256563825,-0.050410573648095675,0.00030745339546306026,0.009349494068184735,0.014116635853649908,0.06849458568565246,-0.002595033366496424,5.8054504805530395e-05,0.017005691328027484,0.051893724135562654,0.27062430669270016,0.15952351882881427,0.0003160347547518961,0.004047640686200257,0.013077023904493331,0.18360701797335188,-0.06407010627675136,2.9556286776936372e-05,0.026162065106589937,-0.0008772379059032452,0.010345220696451104,-0.0444629159568973,2.8330832641114255e-05,0.0001753181019248384,-0.005805815934628596,0.01734226122767514,0.00028592368580020037,0.00010784010326821897,0.030680424720346197,0.04071287899688031,0.2899913162701,-0.003482031143449233,3.242942118825898e-05,0.04334802682445202,0.0028490378802894572,0.008400903418167294,-0.011851120755211763,7.518818720286367e-05,0.016734253787525074,-0.003944504859974526,0.015640275932992775,-0.005762312368750097,0.00011531788810960186,0.006436105097379381,-0.03171905213157604,0.028866253706835585,0.0332695252736888,0.0006280660780981616,0.03282230038483449,0.013357744452709161,0.04606171388121308,-0.03491372448812372,0.0001220615966324417,0.0066638486069412264,0.035883867055336284,0.12664150302158705,-0.050362234683358,0.0018186216524161093,0.014097836079260068,0.030083697906870762,0.27658514386675687,0.013887989904142155,2.7969491127783457e-05,0.013338482680889519,0.01205385108637348,0.034636325499556836,0.010254006432971252,0.001137798296786629,0.003172288568271984,-0.03334055240096315,0.24900089918349072,0.028337483504851695,8.916563750190973e-05,0.0054574893235189124,0.0031803469591082734,0.004665094003382712,-0.04561958862138444,0.00016090127619023049,0.008849283573118004,0.035534627810133335,0.045211815813655465,0.029603390290702924,0.00045113210519478954,0.010094675104708606,0.015469504608268484,0.06536408774874648,0.0027448376261448642,0.0018343725504841714,0.032588642518002954,0.015290084110943793,0.06517323745689547,0.014592238562920247,7.527156573217522e-05,0.016885050480457492,-0.055222969517608744,0.06301722519621727,0.03144714614056661,0.0021784002187948555,0.018975158388517613,0.040788578550335595,0.11722952229785127,0.05596915672183615,0.00013785344127604629,0.03778761405806395,-0.009575790719002933,0.027726634413158622,0.0007942214036014455,0.00014000316892099157,0.003878451830414304,-0.006610082694736171,0.029669301052214492,-0.0018834934114671314,5.4376781973265216e-05,0.021887606977250333,0.028982579132263764,0.07737633993046328,0.0114140400416966,0.0035501516539315045,0.0053328752357422625,0.011984845926882606,0.07199084599858395,-0.026681493895465196,8.281247199968573e-05,0.007145663683571779,-0.01876664830081222,0.09877877648039354,0.019917647490356086,0.00013777926290531068,0.008750920143237466,0.0410618347778681,0.253961513771646,-0.0802362801511884,7.647493963089509e-05,0.01768654062924267,0.03296253788367058,0.15773679658938586,0.033818272866037315,5.2521245943204856e-05,0.0025007407313122846,0.0563421252744478,0.1234928579112428,-0.032889156703387726,0.00022244404184440777,0.0453303361164476,0.0018826801090181119,0.008136268607179578,-0.0590922378189274,5.753944019914158e-05,0.0002709699815107217,0.008586059531401916,0.09518928105343072,-0.016155372482080155,2.3272183578637755e-05,0.007562491179512785,0.010753512591237847,0.04185908715667347,0.008672185044811941,8.979859863684314e-05,0.0136830701425573,0.013141048135162403,0.0572185233041161,0.014558214707519041,0.00036201063702857124,0.00306135158462133,0.05765418897848086,0.3076905519161602,0.02007911585974543,0.00010732193701013573,0.03184806104344362,0.010244377597631344 +2023-05-01,0.012715460128071218,0.08733634239476333,-0.000729871870459315,0.00015396558781556637,0.003307235311060824,-0.012157256742869675,0.04169771945385448,-0.10409891851015642,6.995742442576242e-05,0.023354563622030512,-0.024001751240094987,0.09442269117190893,-0.005189771521207964,0.00011758820492102546,0.005675049925679465,0.011429149049465109,0.012888273491279828,-0.0010973353153535188,0.0002992864186952136,0.007159173981342822,0.007716688685273626,0.015985627722757453,-0.004697648894982803,0.0002525800572491598,0.008378625640908006,0.024540197282476053,0.06605950277879563,0.10715022667782066,8.111281786726123e-05,0.004100060640598828,0.006898429048201961,0.023287215492751912,-0.03741289075002149,8.692055586692416e-05,0.006823959037871431,0.007400419661014215,0.06142512569483714,-0.04075106084929819,4.131510957498046e-05,0.009332502789460514,-0.010445402612220468,0.00727249249410462,-0.0017616726107583846,0.001107609543799402,0.0004802448284409555,-0.0007400124422854441,0.002071924398693624,-0.02999362601197976,0.00012488980963097692,0.0014739136569506435,-0.01729811967622074,0.014473273682301124,-0.010924260584534435,0.0005841931780985034,0.00856162127955679,0.001050403899212237,0.013644157473494085,-0.0033718634106216726,2.294205895763514e-05,0.0036410322323322704,0.013810011269970187,0.04263942355698044,0.0025933479920339344,9.621299767739107e-05,0.012071127460119178,-0.012522763161954525,0.0681805194257565,0.026396928800861575,5.1701325773668165e-05,0.004493906247867078,-0.03748245626321167,0.024525695693068058,0.059269925990121985,0.0029807783287771816,0.006496866639629047,0.047185859838207334,0.33990354770432696,0.026549222397276057,0.00011423739301105568,0.006365090858636352,-0.03999170308775252,0.21863986626768514,0.039221934901316105,0.00028323621250811936,0.0029311538649521513,0.014140131341184066,0.08982758172715914,-0.0012880821436076948,4.434091914227508e-05,0.003679415788519545,-0.013031520303553675,0.05927142883721447,0.006770280017172131,0.00036235686673279137,0.0154442950783127,-0.057050171281616595,0.7742412594797651,0.07580849990843169,3.0578126477582636e-05,0.026887805437365964,-0.02710972034406059,0.2646233016127214,0.04659487195498971,3.422777456662764e-05,0.02128787085951633,0.012730190402529495,0.0402496079563815,0.004000717058714982,0.00010188165720952618,0.024418338000844114,0.017724450015114624,0.12768316382304473,0.007126473776445049,3.206501952626178e-05,0.02241180946000143,-0.002656295485323117,0.007424821696143275,-0.0015349885402611025,7.931726631026403e-05,0.006492965384923761,0.006752861799067093,0.02371758097157192,0.008096545600690794,0.00013018653418900487,0.013164730112201033,0.00822897629285046,0.008417399777183915,-0.002585087586668235,0.0005587833003512057,0.007049697197115002,-0.021065464857281765,0.08419143622307942,0.02728717250268822,0.00010531473471515913,0.009073561597602564,0.039230216201819046,0.11290365487890502,0.05383449728099533,0.0022301387057933712,0.01668532046334799,0.004926201661904897,0.04561827611290746,-0.014725084301219276,2.7768697670350672e-05,0.009088334810887156,0.03500295760567467,0.09920286203633347,0.0380138259355526,0.0011535908691735544,0.021433451151015685,-0.004436656903377376,0.03430134570675405,-0.01895647896697733,8.613314990162977e-05,0.009090250835432518,-0.006411921116044994,0.010654866705484862,-0.011929430086238627,0.0001420317820241984,0.0014555032295124268,-0.005623486157210577,0.006839966371065364,-0.012628040634050737,0.0004719060853586638,0.000458147466231429,-0.06595718723756173,0.2833095041022552,0.06599669740766867,0.0018044768883314925,0.012101900411640054,0.007842840830717533,0.03310102725085895,-0.012019791701564086,7.601902580796646e-05,0.00562370251446595,-0.03662202961829731,0.047615922472191596,0.008633317087289108,0.0019119097983537016,0.008925468488659006,0.023435106784641523,0.0780877751296952,0.00682647016339056,0.00011890494713270115,0.02068936699030241,-0.030844973058873383,0.07228150729844117,0.0021599869849534084,0.0001729886346581042,0.010965056216931108,0.018507831540509164,0.07030313805618156,0.008023077677261747,6.425319860203907e-05,0.00684188445561105,0.0024565657651177985,0.007730588270285323,-0.0514333635153674,0.003011853959392457,0.019725649278769148,0.019833707789600627,0.09671343431806342,-0.0016096582696671655,0.00010201350648379613,0.018073715775471774,0.020879096724055638,0.10897177350361388,-0.0033272273963255083,0.00013894997454229485,0.005183076583429012,0.04470173145211864,0.24027376875516485,0.10854743706137368,8.799676031076529e-05,0.012079817612847535,-0.05463699891732711,0.3041091123849311,0.09749696708704873,4.5154890953702953e-05,0.0020393274319454356,0.015957116433645436,0.03299950433262633,-0.009877112504264561,0.00023576340295644715,0.012642664912496356,0.012862228153129228,0.052648778168625364,0.010636926196766011,6.074944126720188e-05,0.0028749416651975422,0.015628275656817636,0.1782862202011108,0.020289739837755984,2.2616456971573566e-05,0.011839160165737597,-0.024476831207486144,0.07258702897171629,0.10927922509383876,0.00011787050294971183,0.004342159519439934,0.009777754956808469,0.04122563291489798,-0.03150814234564769,0.00037385206869647883,0.0009955245040541793,-0.06211613473899109,0.3128061822611268,0.04582118025574844,0.0001137367702375787,0.009746298690841605,-0.002201561109291884 +2023-05-02,-0.008642225229680217,0.06251092611523548,8.594016070011902e-05,0.00014620298219339417,0.0018715124098481813,-0.010085076897239552,0.03863216652495112,-0.01682376149307205,6.2638402931364e-05,0.002959448358652632,-0.0032351109824712647,0.011801471350321802,-0.04604738260268409,0.00012680904505792646,0.020803588120332957,0.01296680280276013,0.014082066558242932,-0.015327722519892855,0.0003107666239859749,0.0029829672427847884,-0.01281128193181961,0.026310878480993116,0.021653599839975744,0.00025477394514981857,0.007479802292834951,0.005468579392192412,0.01391367310693958,-0.01925454948206489,8.581821275280006e-05,0.0045949279633792145,0.022490002066785683,0.09491039229442803,0.012283865806225877,6.952893578171313e-05,0.015052614641626811,-0.02724693326094891,0.19505151792454178,0.007305220079782344,4.790346275982602e-05,0.0076730928339504775,-0.003785917611092813,0.0034870450493178786,-0.003049280053337768,0.0008372562288191559,0.007476681859629103,-0.013244868313859823,0.02437066868788189,-0.0031302520980823843,0.00019003871514583227,0.004509067155310185,0.03699034312782583,0.026530346606000923,0.09678472596770862,0.0006815061735089432,0.009644694705448514,0.008416800083843755,0.11158619973481156,0.029746650979972002,2.2478085260120264e-05,0.0017157770022315699,-0.005922551197914945,0.01670318965451541,-0.024564040304889397,0.00010533202881496762,0.04353806483521523,0.004036781609487925,0.025272220082073308,0.0020076468864596315,4.49628341134594e-05,0.004086221524337471,-0.046766604703085496,0.03751350139932388,0.06676740620894336,0.002431482855339387,0.002779671463227251,-0.006642260733581205,0.04599343662203987,0.00011465579968616801,0.00011884260581825622,0.012211559355331594,-0.038145203500721585,0.22261570052000593,0.02197639008304,0.0002653336780892159,0.007852330060949946,0.005662034495406977,0.03522805728572371,-0.0034683439556534587,4.527357326810466e-05,0.021326980418570805,0.05943079469958794,0.29202742233656337,0.0961735039324673,0.00033540899861783413,0.010658966236107424,0.015852086383837012,0.232177466759762,7.254010887203413e-05,2.8333263016681335e-05,0.007969044955340196,-0.018950381783949175,0.18787776461690542,0.021112125219996707,3.369956451503025e-05,0.001407910188231808,-0.00253050264072355,0.0067887650909576975,-0.055566741241045825,0.00012007117744894888,0.035800859863125596,0.05289127183661067,0.35172718615061777,-0.1822711137149405,3.4735251580054713e-05,0.022504742569746272,0.014777610044429752,0.04323890993195524,0.0005589470221438925,7.577166799913751e-05,0.003403701809924698,-0.010783933444147954,0.03952565585199526,0.00028062009596561786,0.0001247517680799579,0.0044214738905717175,-0.028816793931032696,0.02803367791797345,0.004239205208853011,0.0005875450109722285,0.005952269361912878,0.0032564815185889256,0.012466443124084313,-0.024602565649620527,0.00010994919826049639,0.011454318808686113,0.0538200800838258,0.18684601694059372,0.06491248636636253,0.0018487563132542828,0.006495504676359458,0.010178057068521342,0.08670200720841119,-0.03700501050060893,3.018685892515578e-05,0.00015166457796565724,0.05970506727799099,0.18872827163050132,0.017757740765215833,0.0010342975576736742,0.025206278334235492,-0.011987830448576651,0.07934611326931627,-0.04020123777051624,0.00010060986752339923,0.01746580473696093,0.018761958852343195,0.026590883433121718,-0.005133634433761548,0.0001665293547251048,0.001765655886373035,-0.009619199533351292,0.01319193643172878,0.01623670343264662,0.00041853742439823717,0.017773548997308136,-0.025670363726834827,0.09924179802630755,-0.039611605237363644,0.0020048770265922704,0.027168013369639234,0.02888890595340849,0.12376063997615601,0.03818131321621894,7.48926019016233e-05,0.020448583051539362,0.029442617777329646,0.038339926280714406,0.0024958300029839296,0.0019089842238233206,0.01362698350020985,-0.00871631284652238,0.02698734454234146,0.00610162399432617,0.00012796426085217888,0.013707240897716506,-0.06128212278267473,0.14604394720849986,0.054547241347388135,0.00017010246783795004,0.01475756900286167,-0.0004297839257155005,0.0017392947553204361,-0.04497140153489676,6.0310219086980705e-05,0.021840180073690547,-0.08873273194406535,0.2928922930511254,0.08673412011611076,0.002871401790145533,0.017731857494075243,-0.01653283023084546,0.08701983097020768,0.02813484968317699,9.450821084066873e-05,0.005482085470776396,-0.043095286490941576,0.2545255524362893,0.042893376521360056,0.0001227889167016888,0.0022180956061758476,0.03544689124116705,0.1983600157668803,0.05463253470609868,8.452257458675456e-05,0.014188727106530487,-0.0397137594338409,0.16695721553826387,0.0509046835630649,5.9783756800908786e-05,0.0006579247802082149,0.03395734218567878,0.05369428878565529,0.01144889092542815,0.0003083436370820181,0.013252266041149886,0.0011721983259647523,0.004162582270103839,-0.01065550225323539,7.002492343248759e-05,0.004822349323110235,0.04174390512049596,0.32800179607558777,0.10151858277364052,3.283584056583705e-05,0.006183422575429659,-0.00701784631402244,0.02044047095765404,0.009244567212392004,0.0001200112391161753,0.0003923527490691423,-0.025073544310993418,0.10354536674569931,0.09587643818127396,0.00038169197486818073,0.0006907932162907057,-0.007094357046791081,0.03550312751683069,-0.03851880961275846,0.00011445064002663852,0.03288887154438994,-0.0002451756271929531 +2023-05-03,-0.0051861861520883295,0.03265021566753336,-8.43441553149038e-05,0.00016797653978592355,0.017436105784050252,0.07229720771092134,0.24866657775672033,0.3184006743563578,6.976131095230001e-05,0.023484710040981502,0.025528557602302115,0.0762771039119699,0.0020156589958104402,0.00015482079256240935,0.02677931868874913,0.011307702780102758,0.01172578666116359,-0.002964376760192597,0.00032546197279014226,0.006841090991574989,-0.012876032890163636,0.027572618926518605,-0.03150806769322635,0.0002443440854666487,0.014151071142337926,0.02935112266973683,0.09205119707427148,0.12531465193797528,6.962128209814933e-05,0.002998050960452774,-0.042168558331416785,0.1675820436110398,0.01304213143317624,7.383310393678914e-05,0.005192300016363801,-0.019590090823377926,0.16144044132693963,-0.0058563248658271535,4.161239648765405e-05,0.0021767122960647213,-0.0036493277123801683,0.002600860804879576,-0.013902099132941397,0.0010820330889413992,0.006664442561132895,0.018854832501673316,0.04461223425449016,-0.023313266310314128,0.00014778508002277405,0.007766763969243338,-0.02355418289936422,0.019354628767064074,0.0369473200413923,0.0005948501228086314,0.0015392694944693789,-0.021106785115639962,0.28487419516046236,0.050713437080294035,2.20796287542314e-05,0.008407318824847807,-0.06339970258498132,0.1829702966592458,0.03453614450093504,0.00010293371948923449,0.025588704337463363,0.004623531461465397,0.025899014139238567,0.0010209545287961203,5.0251890272084694e-05,0.006213398926757034,-0.0038902560575135685,0.0034145382017433156,-0.0022711497915341473,0.0022221285755958382,0.012584950483485135,0.021278879260048383,0.15935280626121326,-0.01894658519520772,0.00010988569064641764,0.04950795041920234,-0.014148093118301218,0.0712726621586523,-0.007715023335328094,0.00030738534684555865,0.009654427188980222,0.03788466311172515,0.2437066692195387,-0.009430451731493317,4.378818774606872e-05,0.0010135021161279034,0.024813662012735035,0.1266657194524007,0.01571345070675829,0.00032286322136640443,0.0030796510248479398,-0.017011299739777982,0.20038081560276017,-0.07848253390853033,3.522991442247625e-05,0.0062387547527276155,0.018569333963183946,0.16524660008136188,0.015696026735384217,3.754442896584984e-05,0.004042224776059993,-0.014714337620847189,0.0361953296424127,0.0036885748883432354,0.00013095163834653012,0.013189732115717036,-0.011302068062384535,0.08335919918822632,-0.07307967941327771,3.131819764939448e-05,0.0028194581649257514,-0.015853210578352078,0.04358439135692585,-0.017651652746652854,8.06424335706397e-05,0.014900589397815616,0.011005099105095154,0.03891513096587432,-0.011303584013270175,0.00012930760179277867,0.00048263370466577625,0.02514799012726578,0.0232547885594291,-0.12825479271983473,0.0006181109644505551,0.014556847400639849,-0.0015582655249252997,0.004872063189514553,-0.032609224740290974,0.0001346215414894258,0.004459205951739974,-0.02807769889932424,0.08935096171638389,-0.004690876157764576,0.0020168864848644193,0.014848420021405179,0.04233692504639637,0.4735986428239712,-0.041684169631514535,2.2987463777176736e-05,0.01018771264037657,0.05812018851358861,0.1727236851395085,0.016193156052380683,0.00110013603119309,0.003527084605598171,0.04096339818249222,0.29284997453224954,0.008146630395844281,9.314862096307103e-05,0.013878480585807677,0.027459583324807073,0.0382708818792772,0.06286300096144827,0.00016934440768311707,0.0021977061097932953,0.050342463145708206,0.07701449403304902,0.1338753530905458,0.0003752026594912893,0.008236544647458648,-0.02504271361538898,0.08684283774840172,0.0015259832483084954,0.0022351039280239923,0.024420754805180953,0.010555242703263608,0.04246769381130728,-0.3170302961861237,7.974434894654096e-05,0.004190840232396477,-0.008627198146491384,0.011942804487734698,-0.010945749546500856,0.0017957283620654435,0.019237670905288603,0.05529288870981821,0.21538021145407643,0.06952641606146523,0.00010171371509671004,0.010098207639768991,-0.01736749813110128,0.04306827384081609,0.0054554179101884755,0.00016347079365690707,0.017868695894228508,0.01088374776345374,0.05285804802997406,-0.015386661785587263,5.025523081948977e-05,0.007341155640529342,0.03296295731018221,0.10069748909906946,0.01591000990678045,0.003102598544687898,0.05114907738919507,0.028932038138290914,0.15302220666611518,0.006073882001508656,9.405137283480934e-05,0.011307158503239288,-0.003662956047751274,0.020473054797770198,0.0026465343025915264,0.00012975073990108691,0.010712432421613223,0.02842562147381193,0.1704004176047577,0.00757552721101043,7.890200012228576e-05,0.019911474828176463,0.052154061288359796,0.2669986588421631,-0.0053324078022752,4.90937772801704e-05,0.013741688277231387,0.017459360858818676,0.03191004630829024,-3.7028726073092483e-06,0.00026676589193321253,0.036216862076333296,0.0012028613807892222,0.0048775350254606185,-0.04546884000961668,6.132387090817261e-05,0.00024579039435363586,0.028949408937437065,0.2560448137893362,0.04349204272943873,2.917124756780927e-05,0.009313533455526097,-0.008586340274783695,0.028658506976166977,-0.02553086211814982,0.00010472816614538902,0.002857361436150098,-0.002094486969789454,0.008835289848647064,-0.05499990062177612,0.0003736670748974738,0.006657440681334373,0.025378095517917157,0.14855756022893535,-0.024756569722091903,9.784442047502495e-05,0.009370659559168189,0.008364524672257298 +2023-05-04,-0.03601436287186719,0.22480427864740493,0.04130909456229626,0.0001694172965271164,0.010368423397680314,-0.022167325086819605,0.07200427607460373,0.011191992002066541,7.386956277854183e-05,0.0033095079021757193,-0.0028433112253518425,0.011665944059160945,-0.0001508630322459069,0.0001127461484019886,0.006132213109455659,0.016101486616655256,0.014407585067796196,-0.0012115817234062513,0.0003771747743536285,0.012522823725987477,-0.0019732881120069347,0.004472876528582687,-0.011524317869798956,0.00023083484226459923,0.0013864625062684599,0.003383016860121883,0.009818295875646435,0.0007332231230785053,7.523410979211502e-05,0.004722483679273602,-0.042052269020571284,0.1780378954414871,0.0380249788718091,6.930536216739772e-05,0.012011527090080689,-0.042351792958484576,0.36447757606828407,0.04289593646863761,3.984736438015086e-05,0.018539596313451003,0.008022992021983593,0.007116982426686012,-0.11397760389587751,0.0008693311738211568,0.004540146356197233,0.040899476605769265,0.09586918644483464,0.1343704603944943,0.00014917656229203224,0.004381528347970882,0.021471446508762444,0.013824987582619137,-0.010440969604436147,0.0007591383153062889,0.0045403458358915395,-0.014862057607124491,0.18970732157671555,0.025466696346435683,2.334627717832518e-05,0.0014894765543648986,-0.05793155592892343,0.14619882298007927,0.041467414469268736,0.0001177124379811835,0.03190785880812217,0.017497589931989976,0.09711051532185731,0.02306261532455595,5.07193634031153e-05,9.849541183834862e-05,0.020274647052591445,0.018946515527716406,0.009692547614163778,0.002087117622603783,0.019570022214791163,0.005069459228196899,0.033536135317171596,-0.04192698325971085,0.00012439437115339017,0.01835142109212061,-0.07114881228892572,0.38944992998950717,0.09208771671863668,0.00028289433873970816,0.01673880085162216,-0.02314902879833278,0.1360465146035632,-0.01624926904331617,4.7929876637312425e-05,0.026466308539114747,0.033445226828477975,0.21081777975298296,0.023150696737308542,0.00026146509393144027,0.011766812109466018,0.022310742947784453,0.33747866463246073,-0.0057354913698053804,2.743455636868601e-05,0.016891279005323667,0.010653646384064028,0.14402106126103426,-0.027564249226165016,2.4714622417811892e-05,0.008586726134308444,-0.014229659227756947,0.038451714210679784,-0.10330127131512212,0.00011920694268924335,0.021187760321989102,-0.05877216937952895,0.40786908858392945,0.03793779104134374,3.3284597168381444e-05,0.009710754602860468,0.006169217800544646,0.02178031954677826,-0.05380871961610382,6.279762776137431e-05,0.02389602047780677,-0.008399811032565634,0.03299196064639771,0.006338025791585409,0.00011641527973154686,0.0013555475696332981,0.013966674178787932,0.012789740386424994,-0.01336202859829775,0.0006241756672675732,0.022043664964383165,0.008318047375729033,0.03236727368117336,-0.10124061635507196,0.0001081686174018163,0.010092626465833504,0.01645360794911449,0.05193902415093578,0.001687192684712927,0.0020332301163456194,0.008794015841775827,0.05563801121807906,0.45418594822338004,0.030100772296190702,3.150069235669371e-05,0.01460489138608727,0.001565838004405471,0.004368752641225518,-0.0017678619478393666,0.001171819292215815,0.05389028944460631,0.027156264778918332,0.21681883606750416,0.032011978914275485,8.340626412568631e-05,0.009622286026293433,0.021991439678506378,0.03908123571367843,-0.02591153543500079,0.00013280999506756855,0.019006037844197257,-0.05890457277971792,0.09550023627262465,0.2803890956987246,0.00035403685835800773,0.0020697549412884504,-0.013479136594401543,0.05080546124779205,0.0007320675661379437,0.002056373587145924,0.0018136252253369554,0.00917017881742779,0.03270859201280407,-0.01151884596604171,8.995106820678865e-05,0.010475517139240187,0.010489744276227004,0.01291650701863062,-0.044637157020709486,0.0020188172568290394,0.02019527568582537,-0.00899815512337451,0.028633561461342428,-0.004267783127838497,0.00012450710730126007,0.018518472364749426,-0.035916045054503874,0.09618718291025752,0.02460847780581705,0.00015136716545926444,0.010370233993677603,0.007285699767404004,0.0353952676516482,-0.026263364901598658,5.0238885329656356e-05,0.00600950122714968,-0.029361511665556693,0.08078811804958069,-0.002306091645833983,0.003444680748138826,0.0012237024882517772,-0.018536618023738877,0.09666039071946811,0.006206999612186267,9.539432187459275e-05,0.008661575801902716,-0.003888971420634555,0.021482811048032353,-0.01591619395102063,0.00013128177119013784,0.025635572101088,0.001451752744012983,0.00804429775044368,-0.056458152756646666,8.535976625768867e-05,0.0013389359612738898,-0.043280560383996955,0.16793349970970367,0.062020681696897235,6.477433028753455e-05,0.022843887131347072,-0.0242423299965437,0.04278523913335266,0.019063055103487363,0.0002762547722613376,0.007032791718799655,-0.019321934803783337,0.0753331549296252,0.007068836702736832,6.377916546783208e-05,0.004247510299223971,0.0006117954415042441,0.0054753367009610174,-0.0006183784285344148,2.8828808368522093e-05,0.017479184792403707,-0.02151933762531084,0.07062386527819059,-0.04958290176170508,0.00010650901809393096,0.005448847284075292,-0.0045561894627295435,0.016034961730227705,-0.004159858052200235,0.00044788015358701604,0.00018361668424013433,0.015894459267920498,0.08895591116200208,-0.05302446526571628,0.00010233937050442563,0.006246860067848749,-0.006455125257623986 +2023-05-05,0.00929094566705123,0.05608250316653422,-0.03181226703938064,0.0001751939541148826,0.009761618763063936,-0.016037102989064363,0.0544727371489303,-0.002161741983993307,7.064106636500367e-05,0.0019043472267525972,0.04723783499670907,0.13769845759689375,-0.042507848608931045,0.0001586931254799701,0.03289902738838914,0.0141301157465791,0.01615760781445274,0.00048146119296459914,0.00029514573591062174,0.004310184585579108,0.0014648093102311481,0.0035156035221215374,-0.0008612512977353834,0.00021801128415533787,0.03005605645119471,0.008454315960611237,0.022821604220916974,0.010594557159586371,8.088705898074459e-05,0.003892765243921765,0.013099380780517504,0.04570747924390524,-0.02829433581626235,8.409174237728594e-05,0.015989132070707575,-0.048881617230432765,0.4362024403013352,-0.06855104877090427,3.842873508829714e-05,0.006813109214017685,0.0002080849640285627,0.00017784986181802523,-0.007466278026639834,0.0009022605196203989,0.003475539935092218,-0.013279111535112747,0.02767635933237013,0.0019344900628167285,0.0001677729513826265,0.008054389760589633,-0.017571919497396473,0.011980532510450916,0.01972096331507347,0.0007169146269206475,0.011222699559733765,0.007589522337807828,0.08909650703038309,-0.02153260334769499,2.5384964174161134e-05,0.003965945675949424,0.004344791354336016,0.012184408566009393,0.00016301062485970114,0.00010592915554965621,0.0339012865767064,-0.0037317533788713596,0.020221273983595047,-0.004634864803639378,5.194768991027344e-05,0.00256510244199066,-0.005640682436216765,0.004931488246903862,-0.0993569203646988,0.002230882107503068,0.01372500715198576,0.02317109009337895,0.13663992460832527,0.001084886904428946,0.0001395471463533822,0.013828329214463177,0.010556754868571919,0.055352271054732505,-0.06772689190073908,0.0002953270483322548,0.014728740597652074,-0.0039769225091691104,0.029155774940670346,0.007833950715295482,3.842231211870483e-05,0.021390757018456916,-0.003989850660077155,0.01910089199558463,0.002932730128415825,0.0003442625639539761,0.0129696322800746,0.08861364145022553,1.1939859373294046,0.10699201246122203,3.079864451893302e-05,0.024598202711520807,-0.00634628905415052,0.06597470580298283,-0.003977931348074204,3.213838845980759e-05,0.0031012469947987583,-0.004083516727023941,0.012454313938365706,-0.003656700377999726,0.00010561784106784069,0.0036712576639402923,0.0210394358465416,0.14269215446637298,-0.0350448629390377,3.405856699783579e-05,0.00995130263409854,-0.0030427324826401542,0.007875143401382638,-0.0025304568582030984,8.566090973253344e-05,4.0498781349291614e-05,-0.021916566656005897,0.09701209897321002,0.050211838413902844,0.00010329878540717854,0.00010688057081226048,0.03077069735180152,0.030989008312245922,0.003993610982216436,0.0005675514291543892,0.006414522763482039,0.02382181185109403,0.0934272421648705,-0.06884575152050001,0.00010732163243371515,0.008175621884360494,-0.028276927388990965,0.10339670381025247,-0.024449909548452747,0.0017552731001579999,0.011313576944952618,0.008357668130345004,0.07345752018133626,-0.005403176649237306,2.9257085049392508e-05,0.056466769624832026,0.011882274691552463,0.02994131318191859,-0.005578621914076655,0.001297478033477782,0.06078175152637023,-0.019825867950669276,0.1347397883111564,0.017072065835985695,9.798554032100131e-05,0.0016837888800865567,0.006308488038461151,0.008246291832698397,-0.01540699667700663,0.00018055601873837767,0.005252009872204797,-0.036265240291982845,0.05528427586743261,0.07275156684079247,0.0003765241595607824,0.006787629585629083,0.027240576623175604,0.12409408049427999,-0.009701967962212234,0.0017014358219363415,0.012003165873332977,0.00521136357465879,0.017941773244509455,-0.01774570024813662,9.319151669083605e-05,0.005893665395136494,0.049872209177204425,0.06081069937401112,-0.020223769560719765,0.002038711628591325,0.05210714283147222,-0.0038550087927625184,0.012767613917119154,-0.04219335199772183,0.00011962767660239629,0.0011117430548713246,-0.01656607501754209,0.041026313598232944,-0.08543145791284962,0.0001636882495247179,0.00045239206804396264,0.0220600249673719,0.09245745749868557,0.010725064132751577,5.823418182535853e-05,0.026209619164924487,0.007387620413805567,0.02314259820355102,-1.2034577333318536e-05,0.0030255930600861054,0.007292236347424589,0.03020005124757248,0.1623090611761835,0.019571864648874008,9.255619340515798e-05,0.012135327898251636,0.013178533744984539,0.07282977347154312,-0.0018886653279659568,0.000131225706078985,0.008137611657983981,0.04678923286501151,0.28317474034868045,0.08959753429239957,7.815200286615472e-05,0.018973106072726703,0.04896566788458415,0.22367292750711834,0.05478107375441553,5.502064224471729e-05,0.012411750992943508,0.012386643946881602,0.02792682336789556,-0.04878781017712023,0.00021625268574958247,0.0037649951768564532,0.005783136750643422,0.021445112730594486,-0.06256469808920057,6.705783135824762e-05,0.00895989463043366,-0.023988711710962462,0.3109603754171707,0.02502368502443574,1.990366982827539e-05,0.0018142275937321972,0.008460200958949936,0.02505929294744697,-0.0675513320277868,0.00011801054894663746,0.00238800952458072,-0.016008396739978534,0.06785233010986655,0.007552491158639238,0.00037188703984704623,0.011206356963371904,0.0013290325421841049,0.0060999476773429704,-0.0053343950536562474,0.00012479043574466835,0.005232999086001069,0.006218867090284705 +2023-05-08,-0.040477097114364514,0.2552107240903528,-0.00039709749690619074,0.00016772469969522348,0.010356167042609356,0.09494856448915744,0.37354713227092773,0.3117888899061813,6.098928233457942e-05,0.013238423591616423,-0.02109701442258939,0.06690912760279392,0.011973528959147078,0.00014585886739914094,0.0059518755950329055,-0.0178199981296808,0.018164323905991233,0.0773347137202071,0.00033109778302127453,0.010335623585884236,0.0003717580865328749,0.0008452153632377813,-0.044535160722475334,0.00023013931385202293,0.003726094357858328,-0.012488771811511078,0.028730427852705402,0.01176875125729995,9.491271064701159e-05,0.0011656839563870109,0.03263759975829442,0.11542728572085871,0.02718539728967749,8.29658914899469e-05,0.018208956305201487,-0.011327073964540493,0.0999179651575175,-0.00144619407799399,3.887521195638117e-05,0.010124589311826724,0.006551337428601789,0.006195748467640126,-0.14566241965970064,0.000815419282150649,0.0028797247716354423,-0.029628189773095222,0.0728694635446896,0.04781855365018477,0.0001421744090523571,0.007772557629860647,0.0019425105286921247,0.0013843545322914732,-0.08105229647404566,0.0006858677978124222,0.002541080298903897,-0.002314861679193194,0.026810971243179403,1.7400059583054463e-05,2.5729733511476812e-05,0.001300905029955938,-0.04954581012508778,0.1395257218195117,-0.005565323521019757,0.0001054881543515941,0.001342962129934919,-0.012008594840853048,0.0605396571584476,-0.003579078916956258,5.5835968493326325e-05,0.0028268519083649436,0.015664086762307412,0.013555284835255763,0.004832928364236495,0.0022538209152502438,0.004174896842240411,0.046012681699513974,0.32389692341937143,-0.030791240478180867,0.00011690223932701986,0.006454592025456793,-0.0025886617119926067,0.01248889943148085,-0.002888421924532281,0.0003209662467258081,0.012259594692366309,-0.03565861307803415,0.23471823848512816,0.05744788768946751,4.279357471328399e-05,0.0075489937470665175,-0.026209246148570512,0.16866192649980177,0.031417398312048546,0.000256108669762757,0.011934837064587055,-0.032641854554095864,0.3408214931827604,0.015287140046859517,3.9744595541333815e-05,0.03674618731827197,0.0044573083353718025,0.05085605952064101,-0.001741997297964375,2.928273787500584e-05,0.008282798253169053,0.041125066124933524,0.09421643661713425,-0.13362676344785054,0.0001406056234496465,0.009350192006547029,0.0009323552863338348,0.004728874951779003,-0.017919496720791937,4.554240737965256e-05,0.00430142083438342,-0.028809531277678515,0.08392020047828376,0.06077615526478348,7.611093587111836e-05,0.005943984725057036,0.004405090371201005,0.017142222294722582,0.003051473089699947,0.00011749957492669579,0.0026943230767673323,0.045541438395255325,0.04044935792035387,-0.02028089494766164,0.0006435327783798266,0.01704219710018736,0.005317858035875872,0.020732145519528174,-0.13176300092742257,0.00010796388400090794,0.012038986564458183,-0.029152885860378737,0.09200515275794859,0.00282494810480106,0.0020337079026793293,0.0021049172870168335,-0.03474097948098773,0.355785301758232,0.02416250440709599,2.510939516151191e-05,0.006506132854113089,-0.04420017621856889,0.11715727176051564,-0.039478648646957784,0.0012334626998219498,0.005467621836369023,-0.0018735531441998084,0.015169782122679212,-0.00033350922382561566,8.224553245734943e-05,0.017370955904916406,-0.013872521343588122,0.022379567072574803,0.014747780845193646,0.00014630161053402508,0.003489587904088357,-0.025662429419361435,0.03960780486038692,0.03255517940761758,0.0003718954869219958,0.015448109710256097,0.03707294831998919,0.15639308640604965,0.023006841834509028,0.0018373416348840682,0.007064966517040605,0.0036316104979137575,0.013204821686293035,-0.017721779858717382,8.8238291843691e-05,0.007012012768509164,0.12295800829612198,0.182950577849239,0.18042048398064417,0.0016707067451878902,0.031452246022476156,-0.011499232726299187,0.042904150317362465,0.000907444177670272,0.00010619048258529472,0.0024538930764136536,-0.03829912915351753,0.0979914784432518,-0.06670972361273089,0.00015843858862996335,0.0012868445211003947,-0.031768544366852905,0.12178034334186405,0.042041441162379165,6.366988226829498e-05,0.014155408115128002,-0.03154612478117627,0.10339728093641733,-0.008221871462155694,0.002891711463402161,0.009963877850140593,-0.019623085152339424,0.12090239763526277,0.004812143596253873,8.073706276669468e-05,0.012826652029472047,0.003229242779317351,0.019102477846943834,-0.010989806747356641,0.00012259472304227225,0.01112214355555228,0.028695415654414375,0.1789600699847857,-0.048517404194781934,7.584117933890543e-05,0.010663752473687237,-0.02226496406031782,0.11009170993345323,0.01500633139215974,5.0829375761565415e-05,0.005137119303170253,0.04606006758222483,0.07935354716636923,-0.03880926427265779,0.0002830007719052948,0.013925364808855771,-0.008340970215500992,0.036967389279274766,0.007912483033837342,5.610636923530291e-05,0.005077135760921562,-0.003164398764880272,0.037044030755077055,-0.0211728186977596,2.203962778583484e-05,0.013724889101985579,0.002389555292979761,0.0070313756306885624,0.0006383246855113037,0.00011879160479022863,0.008373445237484478,-0.019410730109098894,0.0667432564723889,0.04882431696909387,0.00045841883118319675,0.002983840441574255,-0.0079791025179302,0.028207465896532863,-0.09919901445881445,0.0001620174413431174,0.01096950018790874,-0.002521232310632392 +2023-05-09,0.017707797580390053,0.10936108452296128,-0.012345476570075063,0.0001712333385956881,0.007430988784840905,0.012171163660443497,0.033954591327055306,0.0013131672898770365,8.600904412533808e-05,0.027272001327556663,0.00510250055031887,0.018332091643190444,-0.018163969848889367,0.00012875622795090275,0.01643686047327264,0.014934945301339958,0.014504846784389704,-0.1024440544826208,0.00034750283097956074,0.001168538330841865,0.04255887198428758,0.08134133129169945,0.06488671127100415,0.0002737641682812554,0.016985881233776295,-0.002265518140111608,0.005600923004790363,-0.0025484141087976334,8.831910944457164e-05,0.0009309693131945354,-0.03605671120697638,0.11571388958258023,-0.005738305125926997,9.143036942743508e-05,0.05214078848267052,0.01066563875521638,0.08908241594547557,0.03715533702266466,4.105759418457906e-05,0.012171151678351984,0.003930413166106546,0.0028710661979403506,-0.002369898697291921,0.0010556982130904525,0.003741464108374176,0.026673548373579478,0.05542973892314507,-0.028276212331960877,0.00016826734680050018,0.01041952354926176,0.03427257809631912,0.026013254079767838,0.031488696217823076,0.0006439860356509925,0.002525744833940586,-0.004056905690245538,0.0475175145001181,-0.0015441156473499577,2.5442746181985732e-05,0.006146529175623153,0.017517879715317056,0.05482242340109761,-0.059962864918870776,9.492363231300621e-05,0.013884151253863462,-0.008011133434397355,0.0418964945317169,0.009377432394820754,5.382426358686438e-05,0.0027512016867382114,0.00493490037834138,0.004297582565417859,0.0005559997402747665,0.0022396344199800623,0.03747032208679038,-0.044248564046076314,0.3191358248523389,-0.09758992515217023,0.00011409739534398585,0.016047531941088426,0.0021434606504085823,0.014080148101555974,-0.04177067715505812,0.0002357309053368747,0.005793989879935615,0.023076964793951698,0.12257955251232454,-0.02460890412542869,5.302999814260313e-05,0.015268863889593452,0.022321755346773973,0.12320094164863284,-0.004737690299374856,0.0002986077836347409,0.007921167659522929,-0.0015570307418925646,0.019085183136092913,-0.0016466112325482921,3.385564459138002e-05,0.0011185414765221434,0.01436578315700173,0.1742477924065394,0.032032747884955554,2.7545060538011244e-05,0.014129057245106848,0.049825010988887086,0.15002583703327504,0.06440672975180385,0.00010698037120127052,0.002035095475931784,0.07178206895040595,0.4281809749845312,-0.0054614099447759,3.872406862209105e-05,0.011870136650643,0.01680005844499626,0.051559481871596535,-0.028871833133175193,7.224031490603876e-05,0.0066922581339779125,0.011496387399496127,0.0418389783787745,0.008357382843722573,0.00012564028538392585,0.0007316554482167286,0.018771921033130752,0.02039917259247045,-0.010913558933787175,0.0005259830239518541,0.004284293146244646,0.01680695053853502,0.0635401828020568,-0.016124430733355007,0.00011133365609045953,0.00904707104868984,-0.0585166096415177,0.2056741930594686,0.04404213608780284,0.0018260746539506423,0.012676269136677031,-0.007628927425322075,0.07839723736450058,-0.181036243197578,2.502331942975468e-05,0.007647640639391651,0.03956114787241364,0.11050955329970372,0.00927738064112991,0.0011704162168574026,0.019088122477433966,-0.05526315994545531,0.4362713518912241,0.10650322408506886,8.435380198667227e-05,0.0023172645601574494,0.006326702640636192,0.009667861052433072,-0.01709792286855836,0.00015445159907888733,0.007946727938308633,0.00939944235983926,0.011003543986141725,0.0007441116596235025,0.0004903130122000645,0.003794098845321455,0.014969514631468742,0.06477543593604973,-0.008828170210960109,0.001791214993184234,0.0006532749659485999,0.019762002109456816,0.07585354603690328,0.021321765274388494,8.358828667930394e-05,0.002020279084685165,-0.06110522005022671,0.07192268742601664,0.018512843247044306,0.0021119790096632814,0.006888731760099199,0.0138223662687056,0.04673788338411095,-0.043672871846812816,0.00011717349733301094,0.012539558037089008,-0.0270323688985614,0.06612618418379065,-0.050468488712107636,0.00016571850971525457,0.00881743908721664,0.020019253638883554,0.08538126430097887,0.0019316092371454263,5.722676888197335e-05,0.0039528996279759535,0.006454453307032396,0.019290933609249473,0.0015157766131973357,0.0031712046887845263,0.0326066671450483,-0.011107821220619742,0.050470134331965705,-0.012155280808310813,0.00010948005105090431,0.010856540783535403,-0.007743400603915862,0.038509524074965405,-0.028584052347966446,0.00014582244005906632,0.00409345783635897,0.041186272624045714,0.24347047986765247,0.036783573182059326,8.001195405649039e-05,0.0057124987172806445,0.010549802308911563,0.048201802779560536,-0.014340393878128513,5.5008326782514235e-05,0.013966366830771805,-0.0002948216249136921,0.0005227695990437934,-0.0015477828686891691,0.00027496562632628316,0.030749814270536916,0.008557905104138955,0.03379057623201479,0.004606557802876101,6.297762004738766e-05,0.00045482384486200445,0.017068654221856477,0.21874926005958886,-0.014760483776819417,2.013186332552514e-05,0.013536558632836775,0.023308883530439462,0.055295514140297514,0.09168659329710378,0.00014734674141483078,0.011954554933219338,0.038641777309641384,0.15256865905817285,0.17809414451909547,0.0003992268435844492,0.000327937875020549,-0.026196711952709912,0.11467747379999611,-0.08676213710651871,0.00013083997828822481,0.0056307241068357635,0.0071158329507507055 +2023-05-10,0.0032711083637687187,0.0209183240953685,0.002032386535512343,0.00016536920097131778,0.00031016645312195615,-0.03972227899144938,0.12102542779982886,-0.0016007813482913965,7.875317241384802e-05,0.0019616828755921285,-0.011031217404652793,0.039969010097415505,0.002494750736836402,0.0001276724686728853,0.0030281929824637925,0.033041540291603715,0.03275911981747383,0.06550121277763815,0.00034040498889297753,0.0003113220447729841,0.016335936643749886,0.03584388613813565,-0.024530621340697414,0.00023846614093779323,0.0028051195378353535,-0.0010268645805870812,0.0027635877219145317,-0.001136246833824834,8.1130968311012e-05,0.005309202199647483,-0.003332811673659587,0.011860420729904094,-0.04406867369737192,8.245187454157848e-05,0.024611181219443175,-0.0027494480423809068,0.02573157003026606,0.0035361881988909922,3.664188823585659e-05,0.003969862669445916,-0.0036604957532247163,0.0027108821554645023,-0.043383300950615364,0.0010412956524457767,0.008108187324393331,0.00087737955539953,0.0021392504886344633,-0.014308565090085336,0.0001434127477451335,0.006113598823795651,0.01401713355111633,0.011386063141121021,0.006842203776942446,0.000601741523968567,0.00366902112101511,-0.010815886698462672,0.14980650972482673,0.007741781414644054,2.1515638209315206e-05,0.011733107059523136,0.019089271140209967,0.05533303904860973,9.431092327954476e-05,0.00010248395118568177,0.04071163030677861,0.015377183948348047,0.07242862534183267,0.027599275394860758,5.9762448898360515e-05,0.002531965464029942,0.013726023682853592,0.012223929808862093,0.003978960019853675,0.0021900643157815773,0.010258713114397173,-0.04088448225025895,0.2367583134360702,-0.06277257218761041,0.0001421036956101338,0.034424085926098816,0.05675828174466885,0.3048993942503342,0.06650882667724725,0.0002882576952125946,0.006607456920255219,0.05726654043095956,0.2638814910886306,0.010166391038263634,6.11297998721442e-05,0.02119740186644008,0.011015431413197383,0.06838149799716092,-0.04103822135022047,0.0002654909415739096,0.0018481103030935364,-0.013556517846427646,0.2034007606659251,-0.05942495366596337,2.7658320742449722e-05,0.007489702882647116,-0.011784414513528149,0.1257722931137343,-0.08943401663983487,3.130435357752598e-05,0.006557156947168814,0.01352913427363184,0.04006393785854718,-0.12676541904993238,0.00010877751401924601,0.003895285120392415,0.010648749140161997,0.07003781641966944,-0.020680955023314383,3.5120312752719274e-05,0.010638693043125392,-0.010871434388349078,0.03353959363920385,9.372816688678709e-05,7.186318063356102e-05,0.008096290311807627,0.015180517819967761,0.05190910426726822,-0.09816943235335356,0.00013371854634011286,0.0024893367680709653,0.04569021201740203,0.03797907624612992,0.007834014878799957,0.0006876292424139504,0.006121608630892032,-0.015313202737083373,0.056380915025990914,0.0013670933588699227,0.00011431939607490356,0.002020148730813969,0.059848540206218465,0.19356557946241348,0.0633041945779469,0.001984470304232598,0.0022652278813497274,0.005012279344560441,0.05329093656474301,-0.0027496798081795143,2.4186003398368414e-05,0.01342442890179149,0.04475080022554793,0.1148362978562652,0.02432154174320313,0.001274068834517316,0.0004366666764949844,0.005399918906960513,0.04606700482572953,-0.005211059197771048,7.805898588967574e-05,0.009770400335795742,0.02141358104044153,0.03672634043668464,0.012798016168454628,0.00013761222981802852,0.009208838896330653,-0.010406564552082272,0.0152834401212032,-0.021855987179017947,0.00039083205531733527,0.012264693754923558,-0.0335620047303577,0.13211203100527782,0.009718078207764333,0.001969046019040435,0.01590242396506949,0.0062204192392901585,0.026366137077557333,-0.0034315274954258798,7.569435988802032e-05,0.0006722145094347418,-0.03835967772030783,0.04614859759885718,0.016904186918293918,0.002066301227614088,0.02305576731717886,-0.044409809841062,0.14834636286281505,0.06747233288477018,0.00011860911003727531,0.005485410012670509,0.003276262323717225,0.00955217488172014,-0.03997530588833933,0.00013903904582716005,0.018991920646505237,-0.016841683576619658,0.06329312359566296,-0.053326910015535745,6.494457803033882e-05,0.0036231797201694916,0.023012017444187263,0.07933893992190443,0.00973855917308233,0.0027490735487546982,0.018673686488727016,0.021292478532315005,0.10368759111525841,-0.0043314158783966045,0.00010215038404617693,0.0019803064265541278,-0.0068471997461918245,0.036749107431181295,-0.06650227704580171,0.00013512228672125226,0.00963662153474817,0.00545387145515875,0.03268816397169727,-0.0103322807428122,7.891563738089573e-05,0.008793900745228409,0.035929152906200926,0.14087718783111036,0.015301541692289745,6.409936087117589e-05,0.00045096779205458623,-0.013758129781646151,0.026411415910701046,0.014216732854610638,0.0002539785922579599,0.031169089567331817,-0.02341574869500406,0.11089514923670712,0.10809749769349687,5.250611369686337e-05,0.004537796811295901,-0.0056684851480113055,0.05629733293424558,-0.011607881984705663,2.597828504460743e-05,0.00013890926839707312,0.005292113032084974,0.017032101361336382,-0.006822946142133372,0.0001086100073457922,0.0007639391736313414,-0.00847207209594129,0.03088215253268627,-0.0017070216596053569,0.0004324242592202025,0.008824030677994383,-0.014258312514718046,0.06830247415362332,-0.04688104880002769,0.00011956484074997608,0.010940112658818175,0.0035867843218392783 +2023-05-11,0.055588383566476246,0.3724895153751494,0.15564239378773098,0.00015781801494656251,0.0013897078989642158,0.024321182378180664,0.08472372529534639,0.006510935021963159,6.88795288161945e-05,0.0018398790135417315,0.01673997979115695,0.04617205002418896,-0.1937431123554987,0.00016771541314324968,0.014081874245973085,-0.00021791328586197455,0.0002152542634127073,-0.023224675364208164,0.0003416644583449451,0.012059019946934105,0.05156506396651349,0.11752426523305287,0.10565817100848011,0.0002295756319624444,0.021216918370250054,0.009039969882343256,0.02336142695103928,0.01055506025282406,8.449176000775573e-05,0.0026134620301338472,-0.050643548568334126,0.1988476925005331,0.02235692753893319,7.472973263079893e-05,0.022306473371136375,0.027535022412622186,0.25449398757917646,0.06817681942542131,3.710278606617555e-05,0.004271505946577378,0.0113693175186224,0.010080975439942491,-0.08419001314041798,0.0008697143291461646,0.0006659880672429467,-0.004638855889960471,0.00913554383597515,-0.007214309295982005,0.00017755723015127579,0.015382095841167063,-0.024530276670376012,0.018213088511482633,-0.0020121147044831578,0.0006583293335167421,0.012143588741615167,0.01224523632624439,0.171346649248156,-0.004364778729621674,2.129679961465051e-05,0.00896247482939008,-0.04220022587729104,0.13580666827777974,0.01690655641631383,9.230914290190641e-05,0.013661857331354957,0.021108790800370415,0.13412259410531174,0.051806872325485365,4.430198946636152e-05,0.013352862011305727,0.035276486380529784,0.03246272171118969,-0.07056978742643627,0.0021194509278495213,0.007767676128148231,-0.0212780519994509,0.15102864422080509,0.01629981487598812,0.00011593769183416739,0.006174500904708193,-0.04096242476683697,0.2520919437707783,0.0278801218202297,0.000251614069413395,0.0016173195659889273,-0.027409998230186985,0.20427543933164735,0.03208695125059288,3.779669362107449e-05,0.003141350150623828,-0.015816481987760804,0.07766450076103834,0.017136595280290903,0.00033564033328325023,0.003985504641644595,-0.020244551852063766,0.23626498255851083,-0.1913629449237573,3.5558140377503886e-05,0.014984590783482465,0.007990188182548494,0.08088159296414206,0.00786410373791989,3.3005705538684916e-05,0.0009234859332642275,0.007221345197686157,0.021061165136280993,-0.048304090497229266,0.00011044815569784826,0.002482440263976816,0.03392866321746074,0.20477796861538236,0.0172120230096736,3.8271536157083134e-05,0.026031511219414973,0.0023906945823920604,0.006692261937184133,-0.012483551308474106,7.920061403410209e-05,0.013715022813805926,0.018937267140485665,0.07910586948293355,0.046339533969363036,0.00010946044083060508,0.004964000466308023,-0.06058303347105503,0.06372978622526533,0.11536117510785922,0.0005433555593710369,0.016726237869293482,0.0017670874664077701,0.006628219715904121,-0.007029839447119041,0.0001122140299207612,0.009006672307058141,0.04927552040336754,0.18207755427908104,0.03766568306907675,0.0017369766612151103,0.009263048301574345,-0.0363443745144558,0.3156590623893417,0.030833780367518375,2.9607458701167476e-05,0.038373744660385276,-0.06362559127214214,0.21018192842396266,0.030782826367106327,0.0009897094764606952,0.00990221054980478,0.008340334692158105,0.0544083656062975,-0.11183363863428535,0.00010208065358558488,0.006772895756018059,-0.0008257974952799969,0.001175769676005167,-0.011143801187957785,0.0001657664711797465,0.008684948558528739,0.002701722766593016,0.004332346256151895,-0.024879836206847823,0.00035794931578992214,0.0051208117865011,-0.029938105064941378,0.10206282742426485,-0.012166319990943992,0.0022735633197395284,0.020036219767394794,0.01976177975961437,0.07137283372148678,-0.013050249504234791,8.88348729081811e-05,0.004404579531667454,-0.03995341190669795,0.06975390197426838,-0.004187324273518907,0.0014238444863987462,8.814597564559489e-05,-0.006798969542894083,0.021087443518793717,0.0027773738915548843,0.00012774243779010806,0.012985433735888226,0.005298212635519511,0.012604525860733668,0.008125008757595314,0.00017039751090896572,0.002936379699827917,0.024921515871169544,0.09973397628226516,0.010172793818985646,6.09881199672839e-05,0.008226200857365024,-0.011255203764219898,0.03945785270839466,-0.0006472613654891331,0.002703572202762393,0.03618028581364208,0.007185844926252393,0.038130987595742384,-0.044890046344537075,9.374332590496205e-05,4.129264911343581e-06,-0.004864556500495248,0.029286197912329982,-0.008117289997791127,0.00012045949645826205,0.0037207997928072126,0.019746517401425533,0.09855739656286296,0.0019069125358191616,9.476544103142039e-05,0.008255122737756193,0.07499381447431572,0.32876969195794414,0.09697431973956913,5.7329884155455914e-05,0.003920843603960427,-0.021389794648930607,0.041512308754789395,0.018359357568773577,0.000251222840315344,0.008473568369572899,-0.006691299245410499,0.029047698545276994,0.005080792933804628,5.728133085577471e-05,0.007070276351360152,0.012285859927464927,0.12601126698606702,0.0018826960345200722,2.5155182172682578e-05,0.015264190385139449,0.0008490761427014173,0.0029243527060576957,-0.018739397819989748,0.00010149060727170146,0.011881785687134338,-0.019212819039709908,0.07371339811344015,0.0331391250273351,0.00041083991527825735,5.367517309849083e-06,-0.009094278763418864,0.0426976805081096,-0.008329185578567112,0.00012199324260629544,0.009941052972085978,-0.00021391209758538646 +2023-05-12,-0.02519471367334523,0.17182401812329137,-0.016129398549331972,0.00015506441327648384,0.015871107432542362,-0.02618148037278898,0.09083748438005418,0.014988641464181886,6.915755442188006e-05,0.031833898837630235,-0.02362484190456398,0.06839696895789547,-0.0924642924782095,0.00015978251739184732,0.027970287339754252,0.02670608152151917,0.025971612910480522,0.028972280883144477,0.00034703965689387566,0.00851012369712574,-0.010507379338728893,0.02239462057879069,0.009142177467821179,0.0002454982920189335,0.005670229053151439,-0.0005650087913075776,0.0015355638888650941,-0.0010656686335654975,8.034041202418364e-05,0.013670026692389004,-0.0224351593763893,0.0815965053257617,0.0009037822670395517,8.067657551118187e-05,0.012897680448420117,-0.009352235187041655,0.08170964949418971,-0.017811186011408586,3.9250092696332e-05,9.035846298058867e-05,-0.047265006106787355,0.039525326051023435,0.4064370990294213,0.0009221658681825911,0.0030771194203688124,0.028688752093948902,0.06481832185820302,0.036171379052106774,0.00015476607230020315,0.006073404576550156,-0.0055221886122411796,0.0045755250427204535,-0.009944753467812557,0.0005899220882519612,0.0026164700575077343,0.008412690369087095,0.1208178271676782,-0.04486508268075703,2.075040957832852e-05,0.003967710743932909,0.0017305187855944676,0.004638602476261281,-0.020179108238740005,0.00011082562788711709,0.020878076366481646,-0.008184940945219033,0.03656830014821018,-0.012197504661090798,6.300464889169406e-05,0.004600254285112095,-0.01979187956740807,0.015320130198402409,-0.0018863207104676584,0.00251969257398757,0.006201821327315427,-0.01697647569151596,0.11988528638298793,-0.013548869568837022,0.00011652892999431701,0.013486050057337533,0.005222889242660432,0.02985796407685676,-0.004949862992178865,0.0002708687209258004,0.029487284901840854,-0.055945534947474444,0.3006186913957409,0.08000788601895513,5.242161625580528e-05,0.0017291848237198585,0.02263837707005511,0.12769717551619736,0.00850728638256744,0.00029218021574433576,0.002917337422416436,-0.045078252163224364,0.5791471690973252,0.02196600078477412,3.23004343244535e-05,0.004554569806458804,-0.01103389105780978,0.10450437659840776,0.00508151308687055,3.52757228516557e-05,0.003959619055026057,-0.022233687490627308,0.057355941643664116,-0.011811244699426298,0.00012486934644731875,0.01644146528726152,-0.012150164940151368,0.10579340123869824,0.004894947149931969,2.6528700078581807e-05,0.013475995540572694,-0.013615123667886598,0.03433812215736458,0.010210814177939788,8.79067919815457e-05,0.002213856590249647,-0.01591739818605153,0.06297044236038418,0.003988480834255691,0.00011558033051572574,0.007075591337162624,0.0027988360418085235,0.0025504769187697867,-0.16028694107260044,0.000627236931636704,0.01118059918782532,-0.021415296029429688,0.09487853352562954,0.006569718971050344,9.50040517922461e-05,0.013906831118320782,0.08904749023113769,0.28938593400193285,-0.002424102357290796,0.001974983357928962,0.043601045429861346,0.019193596337735288,0.16102917724769342,0.007020470948518769,3.065024696351544e-05,0.0053274380623606205,0.013838282486811475,0.03518507899746093,0.0021466095580363106,0.0012858636845835083,0.005866649070356749,0.009341349176766735,0.06578390798734,0.0034567420349514385,9.456176715086146e-05,0.02321832985919724,-0.00973253762844126,0.014906851360931735,0.0011629191386839345,0.00015409393893882006,0.003084466429516758,-0.0012896002818180191,0.0022094018581167254,-0.034285592523227444,0.000335030479001464,0.01835021028737165,0.029384157711987106,0.10326500869606356,0.012401119173410127,0.0022055169587544064,0.0037085617272622547,0.04117515203873217,0.1539103798474052,0.10622654437864489,8.58336679783541e-05,0.0008522785588226667,0.08879874082397823,0.11195232109368838,0.07140211971815533,0.001971745676002309,0.001369421044726913,-0.050712915600131615,0.16470465662781097,0.08764315615563834,0.00012199126600551498,0.005927048668050723,0.04835686096084403,0.11303116875447146,0.0800564791213579,0.00017342841664236278,0.0057550548506800445,-0.04972143037041871,0.21734608292425467,0.09106842545014347,5.583489724337982e-05,0.026535479280211098,0.016284939494961286,0.06368052933163218,0.003384914026972717,0.0024238042494407696,0.00912735683038982,0.014112523127955901,0.06651975040065315,-0.00926112780951115,0.00010553454119362776,0.004181315204289846,0.018607784372385257,0.10001002175387547,-0.03971731740437001,0.00013493105854495575,0.007975193160547456,0.0046401126589646555,0.02474318017447518,-0.0238977474603358,8.869960916684597e-05,0.01841510160650274,-0.03572331393076523,0.18064093785443408,0.026116133740907224,4.9703040370033984e-05,0.015829505723992932,0.007706500114715745,0.014519472495726566,-0.021369954368499165,0.00025878300100826894,0.023302201989289596,-0.01050244116561877,0.035942243937598026,-0.002981275555002635,7.266067797301358e-05,0.00017299508679755233,0.00020631549606236698,0.0019650246199214446,-0.05276648648015614,2.7089135020338688e-05,0.007621993437279947,-0.008651355503863504,0.03051789516043183,0.011838068845345332,9.9091989130111e-05,0.0023515824358551875,0.01343430887505305,0.06014677367105624,-0.021184650498346135,0.0003520715755163994,0.0004986635685376296,-0.01793188528460736,0.07596488873916477,-0.021651217523852673,0.00013520253725497479,0.00480661859023866,-0.0018416288936678443 +2023-05-15,-0.002086891136607884,0.014705020130278917,-0.00797373019349165,0.00015007928606750804,0.011661970722581776,0.026233676917169806,0.08525148010884276,-0.03855546737762155,7.383593255385776e-05,0.01902292118988546,0.056217307492159356,0.18968011697692028,0.07331469405173272,0.00013710251991044898,0.0033594335968087684,-0.015931333167477232,0.017672732638025223,0.0704120695127494,0.00030423996961119476,0.0012991110919559896,0.019293344225029343,0.043289062386411614,-0.056604727763119034,0.0002331992266370955,0.00618592382232299,0.005184572515731667,0.012523743014337065,-0.07006805827344899,9.039107381881267e-05,0.012763301380519886,-0.008276632511842418,0.03680138557896513,-0.02914003630242664,6.599018678116143e-05,0.03522188951291193,-0.0503782265898919,0.4575678652353348,0.05855335463278876,3.775599964665471e-05,0.013676010002170445,-0.006463716784217882,0.005021245526678837,-0.0013620131076302357,0.0009926945734552606,0.0038886769733125896,-0.0068355655693059895,0.017292969655540235,-0.04594628607405126,0.00013821868619072597,0.001453690066950512,-0.0001506596424809854,9.111193457753689e-05,-0.003235427066631338,0.0008082505757636583,0.013737637403793346,-0.00020940740683938732,0.0027260609727483235,-0.009099892882569486,2.2891764157408274e-05,0.006049856243619006,-0.030090817172158054,0.07798389908991961,0.00765800844448865,0.00011462519151725951,0.029293805530386494,-0.002339475051759678,0.011727369046165292,-0.027648225171541967,5.615386382239544e-05,0.007953061799007061,0.0009710524474383386,0.0007145555467729235,0.00026212221489669814,0.002650511329582908,0.011191060993831378,0.00826023389209371,0.05562333348912952,-0.00018647997400154739,0.00012220456798478453,0.012197910653119325,-0.040691179973195726,0.247031943118904,-0.013173574527023339,0.0002550676619384433,0.005507220684546534,-0.0015332675413678915,0.010331162576742535,0.0004050205855218822,4.180514191307233e-05,0.030293817397157616,0.018739193906534723,0.09503266366466481,-0.01066574818526385,0.00032498611811712327,0.0024075151352237908,0.00646797555173071,0.08974149453549339,-0.05547251939600423,2.9909234859215224e-05,0.021668442892294644,0.007529370237405858,0.06623325510986938,-0.014003413303142183,3.7980813504368035e-05,0.0025254012194852386,-0.0076376012048423765,0.023519733535674676,-0.020619666603007618,0.00010460376990856866,0.0069770626021398,0.0019739334962720727,0.016017277694141435,-0.0034336124551768463,2.8466638601003585e-05,0.010283481475078314,0.042362536291961544,0.10770166124483138,0.09192935739073838,8.72041059876403e-05,0.003701063065649767,0.00031360072799605285,0.0012470758966930645,-0.04767220613547126,0.00011498277149196206,0.0032295192744601145,-0.06107666267975975,0.06855540752818849,0.10532871793562822,0.0005092243272202494,0.003999054207608672,-0.023817889057340363,0.09660649031257815,0.019027768372872365,0.00010377266558029672,0.0011583777424779339,0.03181285480683681,0.1018794979350822,-0.016062771295497814,0.002004172145859622,0.02250332014025548,-0.026680801247762988,0.2397802009829806,-0.031779983177013665,2.8613286479265717e-05,0.012635194308997833,0.010666348009891712,0.03073084969245789,-0.0023325930434394374,0.0011347820319411023,0.019871508746000913,0.01621519640345381,0.10995283579893061,0.017552757724781057,9.82067687371364e-05,0.006947481933534553,0.023687903713837194,0.03161317494974573,-0.04996245366489819,0.00017684952618765467,0.003766972633651532,0.01048537993444064,0.014423008415314563,0.0008670242706897811,0.00041728447629957077,0.008203989347767922,0.017856788365465972,0.07329048903451628,0.005556859338145377,0.0018884525328526792,0.001682008038006532,-0.010009311878988727,0.036734951978509706,-0.09984090119533774,8.742086825629397e-05,0.012413827112150968,-0.005623600708742646,0.006760844333816465,0.0009025794687566068,0.0020677152567661664,0.012185797395734228,-0.03572905828570695,0.11877258636027446,0.031160318570043005,0.00011918494282093243,0.008731320856197707,-0.017272981021706813,0.04253596393844271,-0.09750906837240388,0.00016461575296311214,0.004143846567000344,-0.0028947960387280375,0.01404772173056024,-0.0022533479237900112,5.029513740025518e-05,0.0033408059916449776,-0.023235884784721605,0.0647810058752959,-0.04829175432896663,0.003399613812978742,0.008891030830132029,-0.02593393093334075,0.1326554289428979,0.03732669399330679,9.724871967974984e-05,0.005797579192258144,0.0035564423763847774,0.017966025125947215,-0.2797725003613557,0.00014355706083394213,0.006390513572545437,0.008523554078135681,0.05394049015663784,-0.014233393203255689,7.474024739708305e-05,0.01182451849500963,0.01745082657590065,0.07989486699054135,-0.024063003488691136,5.489648269481164e-05,0.0062800417887675306,-0.04023143432215139,0.0837802218287254,0.043072622351522614,0.00023412802647598658,0.019994530170283235,0.014135965429112413,0.05475246191573365,-0.12486302725682433,6.420017302010413e-05,0.0026345945993507345,0.0536497375807608,0.5802032328312934,0.0870050057007208,2.3857159998511414e-05,0.010365465799586575,0.00791064101889735,0.01965033989489439,0.0002722138296630232,0.0001407182983056435,0.010349346811970767,0.009347106402097207,0.0349733768330533,0.0077468068769925924,0.00042127684571504064,0.006666060888834411,0.039613947060630164,0.19337385035384724,0.017850718446159253,0.00011733353848592195,0.00983468884336889,0.000754406303899939 +2023-05-16,0.04195118314534953,0.3258805719218813,-0.04310842765259515,0.00013613579372258162,0.01837202426467103,-0.006038441251749611,0.02277397190818557,0.00011878903992261994,6.362042871886248e-05,0.0053314069704964665,-0.05041659400124771,0.1658413325625703,0.08746228917652989,0.0001406299843489493,0.0037853346226415147,-0.0002732371268910289,0.00024221478576187745,0.00853439828448332,0.00038072107289574005,0.011355720638780948,-0.009152799632080193,0.020177997089039456,0.007603462556665562,0.00023734149432310295,0.007382378625130266,0.004671031824234335,0.012033157311962526,-0.015691543380280223,8.475785779732296e-05,0.0031100841986107506,0.015478071706955952,0.05943029381475255,-0.009790980080173603,7.641855690649774e-05,0.026323360264707135,0.008152080542047153,0.06667293257884319,-0.05756045418669102,4.1929290973091444e-05,0.008855046870429435,-0.010087974079805589,0.008777294556281639,-0.01322812693004376,0.0008863149426553688,0.005430448151899141,0.011466493724482722,0.021802119694799144,0.007775727032464593,0.00018390511327567123,0.014647028672207343,0.018086634391500312,0.01283284341134083,0.0168670621270632,0.0006889048194558025,0.005477410733157375,0.003517262238093585,0.042356681634413994,0.0014255431792283804,2.4746034277639626e-05,0.005299476917447055,0.030513519796618323,0.09991255360069944,0.022930160171640686,9.07242290100975e-05,0.0013015754681644086,0.017729918617594074,0.10205493222530165,0.013334038980022556,4.8902894119656075e-05,0.007352206279212572,-0.04988825180759007,0.04608948183949579,0.07564650834489647,0.00211115165742409,0.018615549573055366,0.0005542563405577509,0.004336945734644784,-0.0013007491959610461,0.00010516683152788995,0.006344482877324714,0.046259308085261644,0.23136884544643854,0.009243934770748603,0.000309601092921245,0.016805369433577903,0.011292616949360977,0.07061675714242187,-0.0682670113884933,4.5045123594814735e-05,0.029375668410883266,-0.05439275697138874,0.3632859052380492,0.12110371142252187,0.00024676259640974546,0.026560830666766084,-0.03544842920767259,0.43394776957123493,-0.01561207441704544,3.389922474310674e-05,0.0020067258832646303,0.016583266959370586,0.19273954274265753,0.041122242730323076,2.8746235348159715e-05,0.007831426435241156,0.0011161547364621472,0.002673150121891686,-0.0017037246848672866,0.00013450047351695337,0.002153226576633036,0.04764053088989876,0.34045736982610886,-0.010280258729788196,3.232259561524978e-05,0.0026808258643661346,0.024423493042240976,0.0761797839309025,0.03416338271141098,7.10796732185677e-05,0.0025984884564856144,0.012624723970058387,0.04096446751484441,-0.1003085458893519,0.00014091692996628726,0.00959575219393404,0.015516284978874391,0.016857661734460416,0.001331444180949788,0.0005260971798778565,0.03340815428664633,0.015445611334144675,0.05154464743102733,0.0008943944887206271,0.0001261268466740087,0.00456847695916144,0.01760865185847988,0.05600804947763736,0.0017290979187694635,0.0020178776656085756,0.014034634516283938,0.05622657167191506,0.4742152025835149,0.06331908465278294,3.0489361284735505e-05,0.028580310545415183,0.0478727271717684,0.14769998281066596,0.024886789601157977,0.0010596903847005447,0.007693751762618621,0.0016657764842910635,0.012267855091461477,-0.01869391245479746,9.042192170039235e-05,0.0008159168572150843,-0.012226958658496104,0.020521302829452776,0.02422409007657095,0.00014062382310994247,0.007546113045735796,-0.013686226443036627,0.019754238474483644,-0.024135228930344123,0.0003976741328785182,0.0036860143792110463,0.027354087108175634,0.08960641131327855,-0.017806334298487287,0.0023661021072323373,0.017125546242856716,-0.007755134278173617,0.028907491869276186,-0.00888625056618075,8.607346376128961e-05,0.006440493185534489,0.06278332796653141,0.09460635730383651,0.026471736998977202,0.0016496856765646436,0.004480286517447941,-0.02795914841046197,0.09913775716916726,-0.013012883787678212,0.00011173799813833696,0.014110307956312608,0.04430201455714771,0.11979362053971096,0.09336186299685288,0.00014991675068727414,0.0020563740355235803,0.021688629659641637,0.08604080350678492,-0.0036277372254675945,6.152357744183003e-05,0.010036863817955028,-0.07619930058002203,0.21491487900748252,0.05568223467224031,0.0033604896283044266,0.014049452359439326,0.04389809798417751,0.19518479258481214,0.028073716216887527,0.00011187686722309479,0.006853999936766214,0.0006634381472893806,0.0030080315875883772,-0.004383424505006722,0.00015994800642796337,0.009287583371703477,-0.039047464770300036,0.24526258124662254,0.12075593718964595,7.53026475660564e-05,0.00872572549022242,0.03087046790572328,0.13127437432056818,0.013172225634250873,5.910315300592128e-05,0.022357744035482494,-0.03166047983518187,0.05693944717287842,0.028162452938125093,0.00027110257361313996,0.023244755654762344,-0.0016476665304271342,0.0067149739312470135,-0.01843927645100741,6.101538622960211e-05,0.0076328642698653285,-0.037340503021101236,0.3963998749363022,0.04133100318929774,2.430401031216993e-05,0.00608191614427462,-0.005234317023650415,0.014932729809923568,0.00469445098919905,0.00012252643009119193,0.0006256555499821332,0.0031326332345238948,0.012867953756111073,-0.06344875481802131,0.000383732011781167,0.0020546752567037327,0.05372737251513827,0.22747574689298114,0.09522192857201388,0.00013527959632786505,0.005602188924721761,0.005395412429494146 +2023-05-17,0.027891568320876116,0.21116569047581116,0.01983388002696611,0.0001396806225789202,0.02288700731366717,-0.012632001228282702,0.04120155441268459,0.004649736764264689,7.35646350537407e-05,0.014166726435302644,0.04997144571593474,0.17772549589204176,0.06948944929837578,0.00013006767703269525,0.022280566011465507,-0.011059645531272819,0.011736231034534885,0.0035871528655764245,0.00031803902531882944,0.00025655796518399493,-0.0134842926753023,0.03116542999608298,0.0003778567939947962,0.00022638769582840386,0.0021570082024645635,-0.004199626299970919,0.009942085325213934,-0.0013206203266119161,9.223163353562928e-05,0.0009377048784538369,-0.06715948681458243,0.3130420853444454,0.08480805061232738,6.294982051000762e-05,0.01388917492460526,-0.025638955981048997,0.208074271381455,-0.009689012731044902,4.2255239605419315e-05,0.012215472324482897,0.0017156087289841905,0.0012423796843182616,-0.007853443561209903,0.001064899670825957,0.01432987137457302,0.004896132631650111,0.010900637121556011,0.00018733149903298526,0.0001570591265712408,0.014032494896966596,0.0011117516479306646,0.0008884376382834566,-0.007431389521682657,0.0006116531140428236,0.013712113925698962,-0.003082083689471467,0.043113786161099156,0.0010495780774552137,2.130350454873687e-05,0.0002873545125182048,0.10623754453836083,0.29785073749263724,0.19151190483019806,0.00010595717784654019,0.0020332148769341175,0.009250865291662538,0.04614703285741536,0.00561184431560861,5.64287452096792e-05,0.006639569249644354,0.030270757105935464,0.02578285639049828,0.0011915988594070643,0.002289893193728891,0.011302186708138704,-0.007663407973305998,0.05482715431923659,0.0019567748400110517,0.00011502132041862872,0.003206210217485326,-0.03677575230113628,0.1972414763975665,0.02091706533727302,0.00028871646581066825,0.013547945796114636,-0.004949679521365825,0.03354392718533243,-0.021251802431633805,4.1564650184829964e-05,0.022492513766662288,0.01973147691419776,0.09767745171296094,-0.007998299543959243,0.00033292934801566553,0.01248709840740794,0.06665807599770505,0.7742376440946961,0.12234011438614467,3.572800135006792e-05,0.012794849740668756,0.01848486824017518,0.18923203194888868,0.029306205461497304,3.2636487791604625e-05,0.007655558594625161,0.02710274939671937,0.09298332563297161,0.02754712935880776,9.38925275371846e-05,0.009841093570531137,0.025359973484409062,0.19751949837427854,-0.04800953922028037,2.96572717903732e-05,0.012165121746555934,-0.0071145126104295055,0.01928686169338258,-0.16229784747230624,8.178261059917637e-05,0.0024611810925817186,0.0073844989420148895,0.028649663312164203,-0.027663303768778333,0.00011785556810658587,0.005261481671543355,0.05179967223906718,0.059110186329038986,0.030142617838317606,0.0005008875589408183,0.04019754540068823,-0.002255301968664941,0.0076196610561763325,-0.0762407626697947,0.00012458193009845555,0.0046857700450366,-0.017772497283953463,0.04929426189963175,-0.010695736024300876,0.0023140421380591263,0.029627274820843756,-0.03892470657280273,0.33758277964374434,0.031342316085803366,2.965017478689575e-05,0.013257965671404477,0.00870489384195467,0.026110805682261706,-0.004527274123636237,0.0010899698280506223,0.026091472254162095,-0.0019035899674589851,0.017687456927806475,-0.03151233386999284,7.166938127740428e-05,0.004972486937950992,0.05254539800590736,0.08044730226513114,0.16250627440876356,0.0001541588945039382,0.02191589534310381,0.00809828624919071,0.010467430305015388,0.0016623872908477942,0.00044407564937601053,0.02319699423926534,-0.028967852053940327,0.1168535199923984,0.012920669186272878,0.0019214311878116336,0.0017078005584764007,-0.0012341661974878662,0.005056828796853079,-0.018778100486424112,7.830432808301354e-05,0.010281391501150582,-0.00028411922471780024,0.0003371464939616931,-0.005483343151034562,0.002094880069763815,0.032809515174563396,0.0117441767997769,0.034155286182237767,-0.04541102264216128,0.0001362324881126479,0.027406124689041602,0.010033104724352326,0.025720965226921216,-0.008033809444936807,0.00015812788392193387,0.004575400287738982,-0.017496162588876266,0.0764895096572087,-0.023647733974166835,5.5828357910510014e-05,0.009273467175869654,0.0269635036263809,0.07655887732395338,-0.0379083015417583,0.0033380960225995572,0.049531185409330554,-0.041752406386630574,0.17982361647846898,-0.030375702931466558,0.00011549823672627505,0.019911441464653415,-0.006464376898987589,0.03439832008369404,-0.0014368865759749078,0.00013628567849117014,0.0017682025797299073,-0.032565701479524034,0.20424747192849016,0.052769154870413774,7.541408158968288e-05,0.028970150061002745,0.047101831051903256,0.2363333616280425,0.028125502134283536,5.0091052007887924e-05,0.0036023858768748553,0.031822430967592866,0.05282861197798677,-0.033860152376682606,0.000293692967180205,0.03310285422608621,-0.010831580649590859,0.04750580186827684,-0.1090146458447858,5.6696932213072456e-05,0.000760036792473361,0.029365640737101212,0.3264554518719779,0.0007947466079470067,2.3208487637950888e-05,0.0060896456370509635,-0.01635939046270101,0.04941562397190855,-0.015887576749077512,0.00011572089906954754,0.0056892004777306555,0.02743840885535503,0.10749842646195659,0.0676860351475354,0.00040233219525468485,0.009187526008735254,0.018597186288346633,0.09184116482231906,-0.06777958573849716,0.00011597961270774014,0.024865421666877312,0.007260444524198618 +2023-05-18,-0.01583727915989152,0.11209598963397915,-0.03973889063696948,0.00014940911057790895,0.004846426139877043,0.04640630350178824,0.1785768067512542,0.04250670952085555,6.235373168457926e-05,0.01658299612405015,0.0020631973096233236,0.006786591200243605,-0.002784496503009222,0.00014063268796351633,0.0023605284504771206,0.024584444485985495,0.026436921270530187,-0.11558133526198379,0.0003138465637173466,8.817087006059328e-05,0.052484572598271,0.12336226815703931,0.10951295388850493,0.00022261124136762806,0.00970204837515182,-0.005674757573583491,0.01748289512693236,-0.14601543569643882,7.087298107693267e-05,0.0017093049169758367,0.041964368160988176,0.14968393771800834,0.056894321222992525,8.226125750120337e-05,0.0034066600207524364,0.002966919401364247,0.025089448851793105,-0.005035256170901314,4.055208998319397e-05,0.002530193596617351,-0.011177225246452593,0.009375933916871705,-0.07479476056406846,0.0009193148002232318,0.0010019748925597614,0.09047408011358189,0.22736709952320083,0.4380660907959973,0.00013914206388608512,0.02348042321742922,-0.002446649628876247,0.0015324921716997739,-0.06882636749191934,0.0007803651648139629,0.0057218529192310805,-0.007621909022350768,0.10262272915024909,-0.009407101245229949,2.213313790057124e-05,0.003390553259363582,-0.003660648736211918,0.01041712930089344,-0.06918932473771992,0.00010439051508027878,0.03865149810005381,-0.00808188493909655,0.03730000288426574,0.00453027184356989,6.099098062529019e-05,0.0052993548559531235,-0.010968998940118454,0.011129265920374581,0.0014602460755173273,0.0019223100992859237,0.028261709219001143,-0.002763975157213911,0.015083452583522823,0.0004956374216461189,0.00015079449272671015,0.00367386179972153,0.06859935970922686,0.3831951007237479,0.07030865216998074,0.0002772096510753351,0.03611978558537375,-0.04087401507245677,0.22081404238570268,-0.09176510378080815,5.214126560228532e-05,0.0010926862548769106,0.030666090215492766,0.15272194655767246,-0.0005310591401589818,0.00033093581123681766,0.007115637115361251,0.013581448339243813,0.19383418197712698,0.0009454215758229886,2.9076755963208797e-05,0.014369528502368816,-0.0015801806676471943,0.017460163710545155,-0.013513399917017195,3.0237100392452874e-05,0.00046961447012846863,-0.0059681598744481205,0.01815726770761413,-0.039643920728394136,0.00010587970131223635,0.001864983644332292,0.10916018543771976,0.7226538415262245,0.17657656633284943,3.489203706818382e-05,0.004871857559137096,0.0042672054652622814,0.01343952292017889,-0.06222288497234197,7.03942335300851e-05,0.010941087530163103,-0.0029723359016478397,0.011044669019115553,0.0022124635202818133,0.00012305344511232813,0.005037810193545144,-0.042610301843010887,0.04686927142808716,0.041680587356214674,0.0005196392765723139,0.011428265998559006,0.0110899605846015,0.04001624839578716,-0.0042429665700292095,0.00011664862971566949,0.007834787791321964,0.044862372327352774,0.1335443752364801,-0.007242426327250933,0.0021561343049139353,0.0011902060859023452,0.0745036720396914,0.7962667786292458,0.09549451851298119,2.4060313222063564e-05,0.0007492393544488193,0.00785183974721357,0.020987220762234218,-0.06038906195060418,0.0012231726625204552,0.021454371542160632,0.0020139381348722005,0.013386189363329689,-0.02479529477799824,0.00010018779177315024,0.00645722521242013,-0.007769854089313131,0.01002139987521896,-0.13703227157399817,0.0001829910536361831,0.00623247410016843,-0.005288513166623261,0.007555762519193787,-0.031195501566448066,0.00040175307021117463,0.0005768405204499444,-0.012787253837959183,0.06264592989186797,-0.0057508096514905455,0.0015821030487094027,0.007530197015484604,0.00880479168810534,0.03808335749806286,-0.018332555299949548,7.417784741918928e-05,0.003366639458812951,-0.03624659147361331,0.054298009651630695,-0.016768004203347203,0.0016594357972676865,0.018470836866076264,-0.03635310363216498,0.09185520445195812,0.0248236439355694,0.00015680278169739143,0.0015838242771778952,-0.03506538595043701,0.0768263044411673,0.0028852003660111225,0.00018502442215098913,0.007214775887237916,0.03366078733561663,0.1485882451887592,-0.04268027830494879,5.529091044720774e-05,0.0014166348924587566,-0.0020690207817613084,0.006654067146694178,-0.018077402334614023,0.0029471058312746054,0.0019609484624226728,0.028910328858950694,0.15350849787926504,0.002763334669645856,9.368308431946034e-05,0.013763914037052844,0.006655896371790549,0.03179012104273802,-0.0024140444747000225,0.00015183613999597537,0.0073982567963070504,0.01582790548654371,0.08604377450669926,0.0015320642509776248,8.700669931340602e-05,0.024157029438444486,-0.005676618038450927,0.023593932558869685,0.0024828134423923462,6.046954964076917e-05,0.02442568624559133,0.02911412035062647,0.043634824526195326,-0.029415718495231342,0.0003253118123604009,0.03503364738385706,0.02711069385803021,0.12161014794672585,0.12415848191645946,5.543514551942438e-05,0.0011411954577419585,-0.003963763187399739,0.04171130021966776,0.001918406305612669,2.4518012242591833e-05,0.016745705190987552,0.007433095719913271,0.022185874729776758,-0.057939854325230376,0.00011711219841203764,0.004805239631495659,0.010689045949710879,0.045854311126317014,0.007026403763275955,0.0003674402615412077,0.0054930589349409436,0.047872191281298285,0.21623539005592293,0.06364420748704222,0.00012680264980201037,0.0005547685432731244,0.010350973100947425 +2023-05-19,0.0054799236732553545,0.036808671705577035,0.0001804062331052046,0.0001574385016191255,0.01025158949421901,0.016360342845817905,0.05550227231666792,-0.001102493635580438,7.072812793488991e-05,0.019693720056400955,0.015692613685275678,0.05596636100624521,0.0069305420981830065,0.000129707598498005,0.0007665036108661961,0.02919358249339524,0.026774480084428103,0.009282530818686921,0.00036798846270323703,4.27129761175777e-05,-0.018529833924081335,0.037822126982753994,-0.05297009208876426,0.00025634411454523466,0.006503440583699267,-0.009451790607997551,0.027563282122539782,-0.00692133071380126,7.487380453664415e-05,0.003333812663293626,-0.005522403017233454,0.020932440049152845,-0.002058619272115226,7.74101834751927e-05,0.005294410096585718,-0.054305279054505384,0.4489029414049128,0.085971271894872,4.148472476944887e-05,0.009858080257447522,0.009063052346558577,0.007923529629180685,-0.01632820465649789,0.0008820649979545631,0.001386499692800247,-0.0032769308597014246,0.008919465793028495,0.0011650693068125234,0.0001284666266648977,0.020067205772092284,0.02998774552913436,0.022068844087372672,-0.006756186846823262,0.0006641842741616243,0.0008288550658815501,-0.005644131470666437,0.06994322950727205,-0.018424726399120857,2.404773788537871e-05,0.002151850365898913,0.047801617232331436,0.11934223898327738,0.029607935434442047,0.00011898698125569881,0.004889785154242715,-0.015917193851189608,0.0784262698241272,0.03429184945744563,5.7130334196786005e-05,0.00012345037534028115,-0.0014079135981628565,0.0012601933396623715,-0.0515085470729469,0.002179022908732857,0.004569472354189459,0.00872338344855234,0.0533879626394997,-0.1351580876919588,0.000134460190683367,0.001320740721675069,-0.03447804105847689,0.22619637711791912,-0.03006155518687251,0.00023602889309464273,0.02217245848831785,0.03845423042185254,0.2168355795080442,0.008749366317591285,4.9954490668127964e-05,0.004106831651462897,-0.04806951266069287,0.28839460884178264,0.06398538464568873,0.0002747067868027024,0.0034221072038515222,-0.048841451719472115,0.6782447254975139,0.044990923831278624,2.9883562540902815e-05,0.009320541798624722,0.011772696847813287,0.14088402764597927,-0.014034619848388294,2.7918746222111605e-05,0.003978714842733776,-0.018968530005100254,0.04919785990503821,-0.022292078408236164,0.00012419674683122992,0.012556294168382515,0.03689430894110036,0.23613546457540055,-0.018492803420504373,3.6090303863587905e-05,0.0021283855618118674,0.004487029528463329,0.013973007518509052,0.0004511034555255165,7.119449554486519e-05,0.0011209630189790499,0.017500940062582862,0.0656746700327328,0.032152488992429076,0.00012184622360471275,0.002184350617331958,-0.06605619212360325,0.056576298693099374,0.07690110825855201,0.0006673513821412289,0.017836033811828453,-0.005472535147778065,0.021158337881518406,0.0016707622874331293,0.00010886618906949439,0.00989081702156133,0.017012158982509178,0.062445376183326136,-0.058449325464289194,0.0017485510692826468,0.044524085475397296,-0.033721606179973884,0.35552152582996444,0.025517734004872932,2.43907158235565e-05,0.0008361409823892433,0.01879536226273493,0.05703956507812704,-0.005271593802539913,0.0010773225865510347,0.00286300919050062,-0.02051798574042016,0.14371118330255436,0.0037985734280459736,9.507575909718902e-05,0.010530748807960896,0.0010920018965530028,0.001893883337003085,0.002754825744270223,0.00013608666021290108,0.010657269380125081,0.011926459381000854,0.016611899703731316,0.006660977756253386,0.00041209386291596697,0.008970242729850178,0.030385914322480872,0.12582144264755865,0.0003048535282765142,0.0018718368366508697,0.02172178483237541,0.03175003545573142,0.1380782687706336,-0.044624658852381066,7.377500571463373e-05,0.003736456119700931,0.0006673297050830307,0.0009724478045552828,-0.005502189297898391,0.0017058912783931037,0.03509826875253729,0.017051681032566067,0.05570406174344554,0.014468439183373977,0.00012128200643771384,0.0026136096496796367,0.023557497312143436,0.04898187521358263,0.013302612613495024,0.0001949638618463957,0.00503382980070067,-0.019716653733612078,0.07991963793923607,0.021061629178622795,6.02134659912997e-05,0.007813402662539054,-0.02168189994453152,0.05931170500691722,-0.04206964954546764,0.003464774586185483,0.027807334370283245,0.016465042680565516,0.08052756458746593,0.003999439317205229,0.00010170887876719703,0.008970158320715297,0.055399633721909404,0.3386053954071814,0.16546143215220963,0.00011865165595630219,0.004140464858398434,-0.024396885183944093,0.1392701795906672,0.024748026000968877,8.285618738772348e-05,0.015094566998976018,0.041073142772995244,0.1769390481995268,0.007901036750456834,5.8342044335143756e-05,0.00545248179969635,0.022323194556083857,0.035091504808256485,-0.06841555494304867,0.0003101585418124886,0.013366405957276317,0.011162726245860252,0.050141778627475014,0.022060501209246314,5.535857661407831e-05,0.004195627487338218,-0.00706576514453105,0.0733703297718521,-0.029262494731646157,2.48467741525122e-05,0.023344630821463264,-0.019914954282377138,0.05862049358449189,0.06221050824306504,0.00011875141888306498,0.003352749455365252,0.005171777346907414,0.02427799194211915,-0.008189227867184965,0.0003357801567631271,0.006918934407161309,0.021649202463189344,0.11901097240219859,-0.006422982263301987,0.00010419015743557364,0.0017736505333371068,0.0027485410929924685 +2023-05-22,0.000337732920796054,0.0020121551751946225,-0.0009791430920611226,0.00017750006230755604,0.016934642897331095,0.02807568217044333,0.10630062894541742,-0.006435346402929032,6.337310845678335e-05,0.001229240169295715,0.03874351874183145,0.13018911124398697,0.04119414460958395,0.00013766438650348705,0.0008325513173597954,-0.0014982020696309832,0.0016746183632181267,-0.0515559918864008,0.0003019412160262159,0.0028353171342881535,-0.05420131590320456,0.1485397212187295,0.12921963490118724,0.0001909259667442943,0.0012589782443060628,0.015670328445121125,0.04101644778910048,0.04303216962280031,8.341934841646569e-05,0.004492263226309468,0.04113591279511666,0.1536483069848493,-0.013169353413510072,7.855669696654348e-05,0.018885509425981675,-0.006555549239235468,0.056245565138150565,0.0014455845738725887,3.9968643915017214e-05,0.024327296737206273,0.01208110026034017,0.011747125416958498,0.0432184270777461,0.0007930848790082421,0.001541034761326554,0.026443023323930226,0.05831444457517404,0.012968392692710096,0.00015856117337105836,0.024153518778507924,0.027577240418507388,0.01756443578692599,0.046596070204897484,0.0007674338653083132,0.0031186182931110073,0.009730811469490095,0.13284024346860163,0.021778063568088056,2.1829419400531665e-05,0.0072066173507405315,0.03330043797948804,0.10363699779459185,-0.019272241307131413,9.545224774028665e-05,0.010048071314349417,-0.009235195671437128,0.05613626381115622,-0.06018162004638141,4.630889469860373e-05,0.000938149973787458,-0.010569269170605427,0.007356653748058672,0.00039334942616013873,0.0028021257115931632,0.004846802992838178,-0.029658045902943866,0.18338968055364582,0.014768997890023883,0.00013308213109560328,0.01764928829479366,0.01152394211234397,0.06829980145517747,0.0031060410273828017,0.00026127018859336556,0.01650454220308358,0.012042733154269831,0.07104903448706969,-0.015059035937022076,4.774499352125151e-05,0.002973823656096241,0.06198113104680243,0.3544224857620905,-0.00765543851359633,0.00028822061287892665,0.036975765807509664,0.015490056742865852,0.21596824440649068,-0.0004959037930792945,2.9764140229319938e-05,0.012059307751780298,0.00814888752132681,0.07600154365397167,-0.023799183831981943,3.582264251488009e-05,0.006104182096094084,-0.0030954854995033374,0.006884137051882483,-0.03677298152718403,0.00014484450433348755,0.0016704539296465567,0.003407588448262827,0.024345148496362042,-0.009834927713498583,3.233159168610388e-05,0.00901687706710219,-0.020909609239117458,0.061525721736178596,0.0024809783620532598,7.534710702459383e-05,0.0071517197713709775,0.007397293834064213,0.03536351026649973,0.0015271324209955015,9.564584272502987e-05,0.0005410975255023939,-0.021958683635470745,0.02189354042635521,-0.002086963592392898,0.0005732787788221453,0.00931523300888678,-0.019305878885693954,0.07101031085549381,0.03592754447140569,0.0001144337612153714,0.0022325377892177148,-0.04899213747726558,0.18222258023589394,0.018850802779092336,0.0017256128674174513,0.010049302549580776,-0.05887530463846317,0.5374464035501141,0.010904695257914612,2.816956895507855e-05,0.009098216547370036,-0.01573493690100378,0.04539786435430233,0.004426941869751526,0.0011331850925091072,0.0033612871939510723,-0.0026714810664315424,0.0209383470554085,-0.010443675795640572,8.496407816196538e-05,0.008137827359855068,-6.936923829770292e-05,9.71789225075346e-05,-0.05130243084207416,0.00016847684950119837,0.00138087231124562,0.018488098359597638,0.02366318754050929,0.00514946955565327,0.0004484591723686617,0.016934945364580727,0.021052524906818904,0.08079988675745092,-0.25230748815861237,0.002019499634430532,0.004135821071596801,0.03261584598910703,0.1350397128160321,-0.009933043255686662,7.74921146705018e-05,0.00010422581652707675,-0.04630785045753495,0.06180159401071066,0.012694798743410155,0.0018626537763022125,0.05340585580984348,0.07532932911875356,0.24596460305814996,0.13480161548911732,0.00012134098726553366,0.044944172629940424,-0.001932726163511936,0.005705149707220068,-0.03289804164469087,0.00013732944242646883,0.012186376860203742,-0.019086605248356703,0.07500542035394211,0.008726534890357554,6.210834648878673e-05,0.008470085505585725,0.03329999957175585,0.10488741390488561,-0.06334767279350685,0.0030091158499755267,0.016845359520093875,-0.014191918755349794,0.06640728790616049,0.014672085182100886,0.00010630799886797084,0.004815435633844682,0.014721794425607834,0.07006246160053212,0.00538365385576484,0.00015238286739652172,0.012503823381278279,0.006451165494956403,0.037714528719745156,-0.014818644037034853,8.090552805594967e-05,0.0057490859665569405,0.0071753499302681005,0.03357950240824974,-6.39932398183505e-05,5.3705185912069466e-05,0.004266415779261666,-0.027378175013271208,0.05154412423726724,0.022089320311137237,0.00025897314104927953,0.011461668926119458,-0.030587617883502206,0.13122738906664003,0.1436806680648902,5.796095651611622e-05,0.004388008910990114,0.010968684832084007,0.10933200948086859,0.0020802749190179663,2.5884424467324003e-05,0.015195841628423417,-0.019824340352750977,0.06229383945474367,0.030504099686421718,0.0001112404175962632,0.0038755924499859285,-0.012605856368052283,0.051353605249242484,0.019704266436387088,0.00038692731258816517,0.002568609376029209,0.03144546725322734,0.17669269562225765,0.016159983974842265,0.00010193216580050557,0.009395111563074302,0.002955803881245671 +2023-05-23,0.006823304332694429,0.04714891930667101,-0.02505319469862413,0.00015304163022503123,0.0060685268708541565,0.01257185893933035,0.04736007387577418,-0.019231209903930888,6.369387259710302e-05,0.008294746921268914,0.024688885543188634,0.0686822321139879,-0.04087924246061018,0.00016628546525390632,0.003799657299670975,0.020912033190337104,0.021254311433643407,0.018334283024771518,0.00033206039176012105,0.00979274546951047,-0.017062624948623862,0.036676729186096525,0.010493953369037001,0.00024341818421675317,0.014682221777333818,-0.004193514508930763,0.010738649299998244,-0.028395200756424988,8.526587050020853e-05,0.00025947259402181347,0.0221631485952176,0.08967092029021674,0.005250979510755709,7.252198564178627e-05,0.00785715520952761,0.01666674505615378,0.21141347817916947,0.006007938567873376,2.7034400008703226e-05,0.018530256000251346,-0.024000930762449028,0.022672362557258234,0.02905260043041707,0.000816349428203542,0.00896903841822813,-0.006505696096403561,0.013395061727495756,0.004680008696687527,0.00016982864288506608,0.027819578072007075,0.012356941627740748,0.007894222992586351,-0.004338364813382872,0.0007651136735006041,2.1824974822555725e-05,-0.00415610650127338,0.05599982600829379,0.0009372548551935911,2.2116824904119767e-05,0.0067252472162712944,-0.0023279514626963742,0.0070733324712458035,-0.040522040477511304,9.77689355949583e-05,0.0529616728908939,0.010399138173777711,0.057033473917916425,-0.009051395323393127,5.1325045344021914e-05,0.0017589660623027695,-0.019137827494915823,0.014386169376596019,0.0017043669596830944,0.002594600150768358,0.014168595457207271,-0.08205573056542113,0.5066708300639433,0.09641526400309586,0.00013327083609528256,0.023453071131927117,0.018731473675103572,0.11036208284422842,-0.0016571636829281755,0.00026282113711078886,0.011677475973468274,0.06258561127646317,0.3458088183336676,0.06037894420379677,5.0979948276398303e-05,0.022509573845349275,0.044492885637746546,0.21070615048254182,0.02977688034852383,0.00034801676683762116,0.002864789335487436,0.004997363020213162,0.06264224958177052,-0.010279645188440654,3.310577693705372e-05,0.025682931320746304,-0.006633864422074664,0.06291880385961836,0.004038833335278887,3.5226365980922676e-05,0.008258514883191088,0.02785739495578687,0.06752640542844325,-0.03192777185092421,0.00013288918117731,1.261968605782292e-05,0.01106986362487227,0.0837002680337583,-0.0017874331583025125,3.054975966342744e-05,0.02288454793422314,0.009708608185745333,0.027018319194714997,-0.002554189077950031,7.966655337100175e-05,0.003496173859917918,0.013272756206911441,0.049382490465621,-0.03350124643293705,0.00012289571041655144,0.0012869198380026233,0.032584932966741524,0.029551532870235528,0.014086236569883762,0.0006302493118607399,0.021067952873223734,0.04588289591870187,0.18323841518807468,0.0774079873474226,0.00010539507152298963,0.003252720320416952,0.004803037094847416,0.014673396653249297,-0.013757652666275412,0.002100895534101218,0.004767525750380062,0.03657719895916359,0.3967729721868777,0.010836433209955983,2.3705578558115778e-05,0.016814828544468266,-0.03595253407160498,0.10020699713420697,0.019218206067164657,0.0011730127382084024,0.007027348205189004,0.01595808407281114,0.11845090359148525,-0.014138678135961438,8.971560991619827e-05,0.002960277700520691,-0.04099073910046306,0.05063986684232415,0.18044767523684813,0.0001910462776754187,0.007840974649128946,-0.008373462219231728,0.011615561571273397,-0.009968305673478868,0.00041377930679964344,0.00029292480664542284,0.02120428342970224,0.09462800363167201,-0.019645606809005903,0.001736817810172119,0.021156883619686102,-0.004003571023569174,0.015154440225811625,0.028397921502332873,8.476137801688588e-05,0.01795994907934493,0.057089034014135766,0.07886581883415812,-0.030871196181062217,0.0017994553275038514,0.025062374944843473,-0.023953244058549417,0.07409291669030514,0.007892888166702656,0.000128086596199188,0.023959996291088127,0.045197294256526487,0.12069785445167241,0.08974964331975537,0.0001518005211365347,0.003763329564367964,0.026148730927671778,0.10743485006798306,-0.03497671604848837,5.9404501953953665e-05,0.027143209398053657,-0.06867053759038043,0.21959899817139575,0.0708179011854136,0.0029638631745701866,0.009719102363207333,0.009975884444314995,0.043067975509239936,-0.00820120750228427,0.00011522256080656,0.030341931669158394,-0.007461376269988278,0.040734173517332,-0.02059342485434452,0.00013283753773090997,0.010715258234019297,-0.009608794646029208,0.05537889654313997,-0.038660393829697236,8.206789852440437e-05,0.019135865278604915,-0.07151281298608689,0.300245207900748,0.07085445960032485,5.986254436393908e-05,0.0007142447389943696,0.014702667239626595,0.02484927428269796,0.0008917886050576488,0.0002884774114428339,0.013886748280772713,0.02707123950483445,0.09299416781514229,0.10424120007273663,7.238803783019283e-05,0.0002567381335332251,-0.05332232825730109,0.5413675827191051,0.07388615913520052,2.5412543969624024e-05,0.009579182869928999,0.0034745175214897666,0.009706459142768104,-0.032333269896769955,0.00012512458205214482,0.009854625539812614,-0.0036742779032917085,0.013251139918239492,-0.0011126622023685752,0.0004370657069440655,0.011076403011742599,0.03625404180393,0.18317979324562306,0.004522812635403293,0.00011335760527359609,0.00454474845217654,0.004121217341316094 +2023-05-24,-0.01589446262483114,0.09892981524645766,0.012399929532406428,0.00016990463842732925,0.008406697182765084,-0.012765947103517935,0.0364783610008145,-0.002833274400787428,8.397079215842711e-05,0.0076542727929538555,-0.02210518060940848,0.0744065303678937,-0.017176619696905555,0.00013742957979779487,0.013196622938367224,0.02937265288609524,0.033135670831935714,0.04723188259740542,0.0002991680853489818,0.00894585877494461,-0.04875621092186323,0.11530953729696786,0.07797569613909461,0.00022123940917959524,0.00039393662341502534,0.0048628173438157495,0.010290749599445937,-0.04242573784999306,0.0001031781379665143,0.0007907869611865667,0.027055412045385866,0.10662626682402364,-0.01051043178916789,7.44525888658443e-05,0.006984742791514701,0.013764094012915744,0.1304284217315356,0.007581741663814911,3.618878528061197e-05,0.002313265729886463,0.003496755452128206,0.0027364552460045852,0.008513162647605696,0.0009854207377347941,0.00932379758473468,0.012936553076446377,0.02942858345695655,-0.02005948487014069,0.00015371317855684047,0.020764970432915548,-0.010512709288560301,0.007372071735186262,0.012923121846126621,0.0006970267742882883,0.010092964680276801,0.0012596471768890987,0.014896578029677754,-0.006020569603010542,2.5199109357722958e-05,0.0021186109928245335,0.017321243915772326,0.04750785462494748,0.004003876624464021,0.0001083090374972862,0.024546582891394813,-0.020269148153552026,0.10350711817947252,0.05615996235363385,5.512227052864309e-05,0.011558690458222836,0.015466631129867328,0.012321953291696847,-0.02445648645633642,0.002448156305165499,0.008104078575862353,-0.035046743539090285,0.21634391733515246,0.007988750640939636,0.0001333076550791456,0.0008613577109976348,0.03149623623241587,0.17168605048099833,-0.008997002489802014,0.00028407425799749895,0.011756724042626697,0.033979718916252954,0.19059633133983564,-0.01231136360803066,5.0218784993629696e-05,0.022968444303314874,-0.05429678483485294,0.2859649544578883,0.084408644083272,0.0003129306544714949,0.009736961878150523,-0.04365636452911783,0.5298340652534712,0.02609740145291542,3.419305626637811e-05,0.008016886591186566,-0.017193141828255955,0.1742043323735994,0.0009127668250872894,3.297448362738491e-05,0.0003962244352800903,0.01911145950731732,0.0510136276423211,0.013091307336731932,0.0001206786387096072,0.01452743274822625,0.027014505584436216,0.16462411144705888,2.2918504821985392e-05,3.7904952413599126e-05,0.01660282442770373,0.0007831398606027444,0.0021637879412493757,-0.03272696853647731,8.024205004043167e-05,0.005467188666240673,-0.01298729545048935,0.05042002246734711,0.0401592415841097,0.00011777802874341097,0.01708173238585676,0.010326701197495056,0.009402957363166724,-0.002722092180509903,0.0006277297410344035,0.00552246769438563,-0.01957090417742555,0.06391514575510139,0.028760628718127998,0.00012888225198604296,0.005876283375380655,-0.051866098987318865,0.15287016094331687,0.03795091510318947,0.0021776096701936675,0.005977684081073573,-0.02720946340529972,0.28135200376960723,-0.010169513903290487,2.4868647126718768e-05,0.01130893693456912,-0.0077344052047427165,0.020622601987560187,-0.016470503131732907,0.0012261814188919062,0.04805940321343361,-0.008976985311943363,0.06846988327538567,0.001073922098543638,8.730850873086113e-05,0.00043815433340694057,0.011299798259226411,0.016845591982635424,0.0014086399069122904,0.0001583178191358874,0.012380723119465493,0.011401269603708913,0.016599889725794268,0.005730580957231386,0.00039423204812706966,0.010887131160394121,0.011798565058004473,0.04300958662510825,-0.015393796391121076,0.0021262496948588443,0.02259712986294088,-0.004388388174522368,0.015245780379276971,0.010195989373459585,9.23518813635991e-05,0.006613248118571911,0.04113110578950528,0.05630061268995078,0.011543697865877545,0.0018160778276569791,0.013699451237529733,0.014322385554332094,0.052994039280564245,0.002648631914036469,0.00010707901654771075,0.010119042650616108,0.048974465353676215,0.12064260979695547,0.0731714348973129,0.00016456192394067917,0.012108478479967221,-0.0031354342592201565,0.01506968309760711,-0.024504431458041966,5.078173148893092e-05,0.009706446250235147,0.002996455602055408,0.00882970136025421,-0.017522699234245445,0.0032164728516543774,0.015994145787196514,0.016445349774297107,0.09879587870322946,-0.002388000186600101,8.28027684469089e-05,0.023679764155685467,-0.01718340287783013,0.10717706143350354,-0.004118395768499506,0.00011627011754739846,0.0019391691129823103,-0.0026840757363798227,0.013913083764300858,-0.04075704241172964,9.124730891945293e-05,0.0012643363312979266,0.016073881076962167,0.07354499297265514,-0.003839871613131171,5.493068754685149e-05,0.0073267694453369595,0.0479994764280426,0.07861669975978268,0.0022127482173751574,0.0002976809791850773,0.014694930100101629,0.014955979030795367,0.05414003559228763,0.02161367750267104,6.869271576095266e-05,0.0010746489593290753,0.011494851942589627,0.10820923455482427,-0.003544465087010075,2.740755802895951e-05,0.019965233111807604,0.00022045586352519334,0.0007172131524825689,-0.0018971729312241832,0.00010744405084981814,0.010111254948020737,0.02821787575752606,0.13542879016255233,0.06355992025951934,0.0003284288420442889,0.01126683163679838,-0.017251476037030967,0.08489811016468692,0.0011060207863206946,0.00011638580969174088,0.001598004786242644,0.0009147836933184432 +2023-05-25,-0.0017778128723407165,0.010981805135191503,-0.01299267452292598,0.00017119808292666487,0.0020021908926675853,0.017655610612645686,0.059124256917702935,0.00030356362367022285,7.165187723812034e-05,0.008396641532402483,0.01709744724568622,0.06330103412727354,0.004201999594471434,0.00012494465203406329,0.019389669323364986,-0.0003289203533541248,0.00026831318357814217,-0.009946587711780535,0.0004137295989246801,0.0020961593764961092,-0.022994326502979195,0.06273258487891177,0.01184576767662066,0.00019178970146908753,0.009903823808762313,-0.0021009359327947056,0.00677215166918934,-0.022996623955401425,6.77380784627669e-05,0.0034382399493091296,0.06425615395845966,0.22100228339662256,0.08632052300772321,8.53115478658509e-05,0.011714548498445472,-0.005978231089508658,0.0483547702892596,0.000450299046642123,4.2396693623751506e-05,0.012571163628267584,-0.02223723232806655,0.018027637963511905,0.03837324988537405,0.0009512325267088357,0.0022990765944873146,-0.00498856640401218,0.011413049322399038,-0.0382664203011719,0.00015283962022111697,0.005242819594344797,-0.045472858232865614,0.037819220074248226,0.14513738128226547,0.000587711302482482,0.006244268506404929,-0.004574659473601041,0.060334053493384554,0.0016062635743793517,2.2595349183273235e-05,0.00991402399984256,-0.04061916595692702,0.12010750922207869,0.02331891851845515,0.00010046432689529091,0.006047550943954824,0.0019316269650580234,0.010671020162478402,-0.01673397929225086,5.095410025722184e-05,0.0005998925421263783,0.010961131551294565,0.010428748243377686,0.0014345884922191204,0.0020499637394234133,0.03767793588351994,0.04313321761069654,0.29530347037387333,0.055325285648937364,0.00012019749407993724,0.012010047223865193,-0.038343655267627556,0.22493902818310416,0.006501605446130871,0.00026395927622247867,0.005332886969819133,-0.028603573506305408,0.19128780797282316,0.006367294650802403,4.21205428156932e-05,0.01546105154086878,-0.011248494568314891,0.05593291644258739,0.006377738684720356,0.000331446735255455,0.009073610884291036,-0.0005913189343555483,0.007355349501969827,-0.0005961474776874846,3.3361740738453324e-05,0.006629670630629912,0.019690942452265794,0.19622693574764535,0.025026430989658215,3.352660594437412e-05,0.0009156188145435454,0.009241884448977956,0.02841018005260171,-0.050039611304760506,0.00010478745771986444,0.0027326073265903604,0.05387717655122045,0.45429960587318086,-0.11011891311021477,2.7393961708686242e-05,0.021565041478351935,0.016319524238569017,0.04644641220883544,0.007703938886767278,7.78991472907091e-05,0.005420097939115413,-0.003561720688737685,0.015155228265810772,-0.012052051313625179,0.0001074597862882417,0.003854357693650283,-0.017126960008074368,0.015487348002046293,-0.08151981565044392,0.0006320898083404383,0.026347779587577225,-0.007446184991855994,0.024748144092223638,-0.02132893115405346,0.0001266418349934964,0.005402511970698092,0.014345568246059367,0.06112804277340135,-0.012121131112282043,0.0015062478499620671,0.02509773022520593,0.011216227272179604,0.09061535328611497,-0.07143345180131609,3.1829308827348775e-05,0.017789496724402186,-0.01667642182926727,0.055664554493403275,-0.12120202163393752,0.0009794796203870591,0.0004683835233219188,0.031211217669472265,0.2280919418948795,0.05998936403768979,9.112266506699337e-05,0.03156817120047358,0.0013850639482192028,0.0018956398449086228,-0.01086274458326176,0.00017244848478428705,0.01634219116470759,0.020612606845936333,0.028388351027942047,0.017097341923103096,0.00041677020818970545,0.021740960672550453,-0.020321008381984286,0.09440878673017654,-0.03301437371946795,0.0016683346878491182,0.02409520927290152,0.024385036130114945,0.09197117907355147,-0.009458202348455898,8.506717677911052e-05,0.0004887997804377787,-0.07681187996173128,0.11105714440547912,0.016067670323210312,0.001719329378123235,0.0015319061713121725,0.03460183819160305,0.12430638963088118,-0.04409285653490627,0.00011028634765914525,0.01794179599766469,-0.01289003388174672,0.034263197870467554,-0.0005851130397988196,0.00015250586316860158,0.005254188236533829,0.03575693883600198,0.163982177047652,0.005815909792798544,5.322033559492246e-05,0.007607477647782895,-0.08214016838387338,0.2192276855252965,0.05539847363207526,0.0035512254784307567,0.019952721079911914,-0.004211208081426726,0.021790702378675454,-0.12631390086987965,9.613378519449495e-05,0.005134314911962051,0.004057202653558967,0.02102692831617359,-0.005699777766009203,0.0001399302632350235,0.0038804128961178806,-0.03267598530447793,0.20595262632547365,0.07499818449590487,7.504297732459975e-05,0.01632193651270904,0.05356742129563519,0.2516582603405556,0.03126623054231334,5.349792591571918e-05,0.005910781752041757,0.012210306696770153,0.02325675663456566,-0.05193858196251192,0.0002559804619018428,0.028243026161788174,-0.028278916114135653,0.10561315437573322,0.07712786747976376,6.658235032951822e-05,0.0014068283912523944,-0.012732445573546719,0.16008847678819244,-0.014899762375783254,2.0520268613612876e-05,0.007793684921023043,0.012462062149570715,0.03894669564692721,0.033673815129607904,0.00011184800975922264,0.009787949252039166,0.00022069059437817605,0.0008005111160835971,-0.021365108754889405,0.00043455467676108936,0.0010205877945345773,0.026531425756790374,0.10878736032053327,-0.002304267287931562,0.0001396863424701193,0.018874859251130038,-0.000427226379369726 +2023-05-26,-0.036729630621945966,0.25866039572686195,0.05580083539276875,0.0001501665513378558,0.022229903045582144,0.03488224469992425,0.11509381252874884,0.013879525531436766,7.272152446619025e-05,0.007046052412382032,0.05445116911190172,0.20811937525471402,0.06726535364410076,0.00012102968412367047,0.009236448135427391,0.0025409568860777594,0.0021168690335081433,-0.00426199089644175,0.0004051083198915929,0.010091482332697445,-0.020735987708504523,0.05154441788953712,0.0030363994662689396,0.00021049455189054895,0.0213843031623005,0.015387931155906191,0.04153565875792258,-0.019553941060374582,8.089205559708816e-05,0.0018418289181993998,-0.024984876865751064,0.10631802952153975,-0.027057386173043742,6.895410879476897e-05,0.0001821577810883965,-0.001242044460414541,0.011726076239783825,-0.019740629378998127,3.632311144183318e-05,0.0032266828622658523,0.007878684138436768,0.00602714056404508,-0.0049308289351890165,0.0010080617965027,0.009175947868773566,0.022519224533068653,0.045564237075087735,-0.03603478918484768,0.0001728188913202016,0.009168938092532643,-0.02178458705671185,0.016911848248783962,0.024687080195690284,0.0006296259471749416,0.0006016891058129525,0.011830710099495656,0.16808316110982105,0.025256299154982325,2.0975358618761072e-05,0.005574388359721313,0.004611547570071112,0.013564546664879145,-0.03694484478613449,0.00010099327293973052,0.017424460126439566,-0.005517822868012821,0.02907898337242565,-0.12691577031309137,5.341341602831211e-05,0.0029182273026507337,-0.016100582934229588,0.01463085154509762,-0.06793056897194959,0.002146322454835647,0.0025508241304580802,-0.1004049381642693,0.6644144506967813,0.1611887784342055,0.00012435639142918607,0.01081378571385166,-0.042496417350366265,0.24655759948793987,0.012367416578515549,0.0002668960567583541,0.021943417412831973,0.01698249234982431,0.09810287348142041,-0.028206901633865602,4.876190402599026e-05,0.03318966914308886,-0.028185712607394296,0.18211841578193852,0.014941059217329904,0.00025507151579902935,0.0019401387459438576,0.00946629270674932,0.1382494547509549,0.0023315528557493518,2.8414939340392006e-05,0.014445957627836053,0.0009541318530947806,0.010411163754910708,-0.028576458261300994,3.061898756261144e-05,0.0016900388852435031,0.0008379770898022914,0.002528668124269929,-0.0028319376991346105,0.00010674881607106221,0.011896394766978192,-0.0055017590577438906,0.039651094817301634,0.0169382271404446,3.205079157362403e-05,0.017677045496277466,-0.002167790202330389,0.00727642199224036,-0.009484233041414533,6.605059795003579e-05,0.003922174266689695,-0.006889758256178524,0.021280167701756614,-0.05102044121981795,0.00014803947400502724,0.0002894597547390377,0.0109642362949178,0.009382482394835518,-0.01682025881388046,0.0006679380584454081,0.015105801401950749,0.043863298630538006,0.15912604696752203,0.13509882887141866,0.00011602351634686415,0.008099348671372934,0.0366354903063792,0.12031766451234199,0.007401331653409753,0.001954302509491978,0.018066860566027368,0.00632657187193034,0.05460857671948741,-0.0020628846213473027,2.9791322568095637e-05,0.006381480578167172,0.0007844130013733861,0.0023579860356793387,-0.005639439899007942,0.00108761408768165,4.753049508441818e-05,-0.0026502720279838183,0.019169462752682286,-0.017193898107686525,9.206745849414102e-05,0.0172066859215887,-0.019889571336504805,0.030884963034771708,0.04010756999875149,0.0001519930477907573,0.00048270874553301,-0.00918838987879213,0.011761598079386492,-0.006666552436441966,0.0004484117602528543,0.0024396563554177565,0.014752118391578363,0.06639736257617475,-0.03253006403490751,0.001722082294261164,0.004291504787189156,-0.04340855669442911,0.1582995427116271,0.27631851087471976,8.798042512853308e-05,0.007695175098043136,-0.008630832069816958,0.013666232482255425,-0.010256386317844415,0.0015699327671073204,0.04878985273042385,0.0029065937984705894,0.008946880340377932,-0.0015723441058630766,0.00012871487823359556,0.0049553312240177266,0.0023881008087362336,0.006373945603160724,-0.012364056598139212,0.0001518814305360728,0.016883323456212483,0.005770347774349157,0.026310430068380675,-0.09754458577168591,5.352885656478415e-05,0.003956590460106322,-0.11685809803883677,0.34905885426340194,0.08341046062941201,0.0031730594762061958,0.02119586362165999,-0.012353103868465309,0.06691825382176815,0.011272679282263809,9.18273526503009e-05,0.005529335152225803,0.012286602135495543,0.0779541003892952,0.0072103915943220985,0.00011430194368158031,0.0007357901181348873,-0.019917786765431506,0.11940203958107687,0.028826590099847744,7.890018691138227e-05,0.009595375061986152,-0.020063157522527585,0.08431958460624406,0.004093441954501581,5.9802345743326555e-05,0.02666860557048427,0.029245073434243766,0.059567820805932786,-0.12916302562049553,0.00023937037373659005,0.02807189955324028,0.02113234462864981,0.09227324538383581,0.032460133047771664,5.694902129220679e-05,0.0006545221973251491,-0.0006816545553320818,0.0075531973581797335,-0.00175432148442949,2.3284386214206967e-05,0.009323866842953863,0.01293323559888228,0.046224649839089166,0.01946313802983694,9.780082618437392e-05,0.014040727818634993,0.023782418230917615,0.10624628592901009,0.029776289720573144,0.00035283383559971186,0.002980924994841527,0.04238359351603523,0.21844641033048245,0.02604012929725566,0.00011112829709224817,0.02421168406980987,-0.0018840223860410502 +2023-05-29,0.0034217327345004117,0.022186090846466767,-0.03414413913531772,0.0001630992190225585,0.026328495064002703,0.003922491541842739,0.016157353788689526,-0.0049870829078959905,5.8250855469387385e-05,0.020009820554250386,-0.026740259302385862,0.08802569868781898,0.009271830873186027,0.0001405249171595277,0.014287140531342347,0.013194487652204658,0.01400040250056319,0.0003935283301648297,0.0003180679178284578,0.004540296113811516,0.001051895608891678,0.0023805004455355926,-0.027259205936429037,0.00023120762222311397,0.012937642020051886,-0.02837402541062317,0.07693243711442391,0.1507581811390587,8.053009337231216e-05,0.0021523499068632707,0.004223475936637783,0.01480029145855163,-0.038537360370336726,8.373164266817477e-05,0.021715382906848824,-0.011831524704043996,0.09429239897807534,-0.0008607266016277244,4.302913782375261e-05,0.027866462154522067,-0.008306943915232274,0.007294053253243096,0.00016999327090211355,0.000878247930725608,1.4044594139778774e-05,-0.002205517405269222,0.004912308027176229,0.005536380244453953,0.00015699534818506056,0.006508648814197446,-0.026354816539955035,0.013483982491137074,0.01751859482800797,0.0009553580682740793,0.01304698293566653,-0.00721804186000706,0.09450784843171885,-0.10795907209357809,2.2760107536066137e-05,0.002556618679311974,-0.00949728069729581,0.02798719097825848,-0.016289562193602582,0.00010080707198662112,0.0011746504570649457,-0.010313882827813241,0.053975810190471964,0.009517339662607267,5.3787931317397095e-05,0.00047971159792604604,0.03911117660019671,0.03490351201663136,0.035293049526533816,0.0021855197005382744,0.014483759045043846,0.04412602975596416,0.27951116255150976,0.01604107758856753,0.0001299115620512461,0.018428852678399586,-0.016452036003728285,0.11797539243953462,-0.0033180217235507354,0.0002159416684083979,0.011099950556768096,0.020916579696554884,0.13307208864314532,0.004087474558384183,4.4275620082108516e-05,0.01136706015876,-0.03746478280570685,0.20621393750322006,-0.008309781473582979,0.000299427725810841,0.023682824517968097,0.0861386821592815,0.9451464601437735,0.13153637121311298,3.782068081195855e-05,0.02660195216832101,-0.002014711857926379,0.02043372334286193,0.000991342395897724,3.29417860767082e-05,0.005484304752549501,-0.017154532700042437,0.04497967304897366,0.02498866557499766,0.00012285288330208066,0.00859430359896761,-0.06502932909971851,0.5032560988187883,0.13152600171043224,2.9847819029609095e-05,0.011092945121261539,-0.017054202299739363,0.04675038248145417,0.03244673953239051,8.087673758441488e-05,0.015911176216220485,-0.00016907629528925826,0.0005577945529406426,-0.005484742287806866,0.00013859802762665262,0.005979563937408761,-0.050466879258025676,0.049770075836534804,0.027510334310497084,0.0005795804247372604,0.005155155951662832,-0.004781413110772145,0.01879147334030397,-0.0051610990677822335,0.00010709802078249759,0.01189910322526104,-0.01221988738420589,0.05048540396354114,-0.001680924802021738,0.0015535332134408665,0.022808466921919908,-0.03652825735591118,0.45138048428403227,0.01564622162134568,2.080982227025422e-05,0.02135534467629887,0.09891496478201217,0.2658225579523307,0.16728067411487185,0.0012165821432003864,0.0056988709644811885,-0.008982462913001973,0.06265211267068373,-0.05769929196957588,9.547405220628872e-05,0.0015332079496351582,-0.0027795645950366137,0.004006305445821345,0.0027531649247061,0.00016374879021067927,0.00037871237040481556,0.026966617858903672,0.0374767458017806,-0.024662346476604473,0.0004130175647550919,0.0051502441040385556,0.0033805774950957557,0.013523377240836753,-0.006930943849941397,0.0019375640777880467,0.016244989578922238,-0.009852697379964385,0.03481470978649875,0.02136371616934358,9.079934904850076e-05,0.012554464009746781,-0.014228267978868867,0.019769733984902678,-0.028270225862707308,0.0017890744040249182,0.023035458212397487,-0.03629182099160607,0.10801801326777011,-0.009388419605065496,0.00013311549496938053,0.022499443673305797,-0.049096928889098695,0.1202707799880761,0.04870830823957607,0.00016548345346521922,0.007679330640521466,-0.0239748806654862,0.08788249217153098,0.029271262037138222,6.658371382482039e-05,0.0037786371110530145,0.017923648777917096,0.05964411612443875,-0.01153224321799354,0.002848241932843453,0.029223358073723362,0.016602324189643577,0.09191707287397614,0.004686751765743967,8.984900561589676e-05,0.007883381050732085,0.0019647318179003307,0.01136165638600521,-0.0307030747791562,0.00012540718290769676,0.011503146388320097,0.011653194666102252,0.07310185520371551,-0.039001457087369115,7.539895058785412e-05,0.019642390907067517,-0.009744482445772999,0.044111212862586284,-0.0053696088936058045,5.552098640818184e-05,0.02090306156677626,0.04093596286105312,0.08048908726774759,-0.039297595687103636,0.00024796900617175886,0.022540237562727015,-0.04039659779957735,0.15324590768523152,0.12873915862355334,6.554963540286734e-05,0.007827888070830088,-0.03528156439385006,0.3570551814184772,0.05726617362426778,2.54943403497825e-05,0.008356509384884027,0.015264082938498473,0.06106566498789966,0.0186670352699965,8.73740749652727e-05,0.0009666789726055047,-0.006350699878703645,0.029643916743047727,-0.0014298810882516738,0.00033768671507729964,0.005130251099688208,-0.08233336184367547,0.3975722441915069,0.14555084396607812,0.00011861280807389569,0.014546422056134498,-0.005324314935422789 +2023-05-30,0.010716752988370895,0.07556162329925031,-0.0020183117973930683,0.00014998524100734933,0.008134281839032958,0.05195231160399476,0.18577507034254376,0.021460142047937527,6.710084176042722e-05,0.003561231745927357,0.06184757221258719,0.2225012389745541,0.04012497308878518,0.00012858414670521978,0.0048869842083260565,-0.014612443962506697,0.01455814477530623,0.06409765456281663,0.00033875419420906834,0.008775986054522487,-0.04976214300510781,0.1110764653299909,0.06237884660424026,0.00023440927738207113,0.0012756593684406703,0.004490888540014769,0.01179797590486822,-0.08072803204636159,8.311348852177775e-05,0.0021193312375871686,-0.03164452007127832,0.12650026041834672,0.017382251799607087,7.34001502767794e-05,0.0059129709956685685,-0.007107756924855302,0.05632837883068846,-0.015452092060530902,4.327169720963732e-05,0.015880821737588813,-0.014083176422935323,0.01377415640463421,0.00730715901142869,0.0007884613265926189,0.0007132808539463499,0.014419833652514036,0.03641604623447197,-0.00358742513955203,0.00013846159974171548,0.005139393114114094,-0.0007603489664357877,0.0005885470985074561,-0.01516237565370737,0.0006314749034488751,0.01581054282885491,0.0188688767202217,0.23886869427930513,0.11335198591379565,2.3540170325055527e-05,0.0040912583262440825,0.04399181144251377,0.11757860882498317,0.02736692101415748,0.00011114618633256018,0.02878941885445011,-0.007104491525988081,0.04318120094964439,-0.01727930855343579,4.63127001483751e-05,0.006453845724500332,0.01789917677929472,0.013697050481703905,-0.04368319700962202,0.002548760180568601,0.034521254968614766,-0.021906449967372503,0.15090608275590453,-0.046649929303451035,0.00011945858495543344,0.013341114737433577,0.02532077830160788,0.12968945670118825,-0.0024093959233358084,0.0003023295598382767,0.0060097281940848886,0.05669809396227402,0.36525360916868116,0.058207254368173,4.372551157666525e-05,0.014908912180671181,0.010030649773766383,0.04899718779013605,-0.004313905939290021,0.00033739972183376133,0.03500328919583477,-0.04252225113872036,0.6123407022446535,-0.022061278646664562,2.881730422988415e-05,0.007999666529603051,0.008795124651061569,0.09079291574588097,-0.12166985654217669,3.236471184560614e-05,0.005493188955565208,-0.005435453347324238,0.014232101132814248,0.0014930072628121806,0.00012302390471079295,0.02192728458164588,0.032637386377981345,0.22963749173589462,0.0033680978394369366,3.2829551861221475e-05,0.005890208995928516,-0.011289290198416617,0.026546617996984996,0.012074093650251437,9.428330956815435e-05,0.002507821813297134,-0.003146217558423368,0.011678490958120666,-2.5237463941466312e-05,0.00012318295476599318,0.012101453251694403,0.009227042545939017,0.009270539626486671,0.0003690654181891087,0.0005688962485383052,0.011260676426050073,-0.0066013168411545925,0.023396167530913583,-0.029412949066328936,0.00011876045819343822,0.007453205920809017,-0.02882687688108788,0.09380841233691573,0.005485799010775428,0.001972309116505314,0.017066192844621145,-0.07210026696584111,0.7555764787443067,0.09008058787555091,2.4538083404759947e-05,0.01166464996209312,0.02138850699729375,0.05446882143329979,-0.0072744883934040706,0.001283818890030123,0.0007842732578964447,-0.01610052704040479,0.10130312516519854,0.015213927766832879,0.00010583830900854577,0.015796522264036727,0.006119614346219209,0.009606623507390687,-0.006583073092562175,0.00015034835119018044,0.002658533172911722,0.021407226965484825,0.028730402549901096,0.01995189557593744,0.0004276836189826394,0.016504727086274228,-0.016460556927086877,0.0669076147053276,-0.14400993136261445,0.00190686224022362,0.0007412290889510921,-0.009188115965355981,0.03430700753341253,0.01947145173966823,8.592786087348845e-05,0.004928191650459129,0.009778349009845243,0.01236818848098657,-0.01667171770914107,0.0019653351925594,0.0026009144526295217,0.011845803093342525,0.03881620960897838,-0.010983253361465734,0.0001209114477873615,0.003184482082936254,-0.041721463251874334,0.10166885914495838,0.015246737051425286,0.00016635350565418305,0.005048190099472387,0.0397335122423795,0.16249353271917513,0.05032782769812785,5.968082260902817e-05,0.012186978730278492,0.025108553104458864,0.07174233770165458,0.018095154098148374,0.0033171432054004547,0.023207229208956848,0.0466281683134351,0.22523335249957,0.072817682257431,0.0001029807913977141,0.0060964046488087955,-0.006743822819195223,0.03506362457067645,-0.021317494849762728,0.00013947941855767677,0.03106125616522768,0.015873189489527855,0.08703114903183114,-0.0533224327307689,8.626570623963088e-05,0.008307128992567546,0.005732509140983179,0.023214320754704854,-0.05990151003203731,6.206348663853667e-05,0.007077517501637987,-0.016274181318572053,0.02902112283309634,0.020273748268020548,0.0002734099610876896,0.019330571127319757,-0.0222509127849488,0.07879049315075032,0.010498202472145073,7.022445681191133e-05,0.01603497841604007,-0.02638893132893898,0.328293892463256,0.019168598242239255,2.0739118122677732e-05,0.004629123815817878,-0.00983523227102396,0.028661090013340176,-0.06672931345512627,0.00011995017398388404,0.0013967388313581395,-0.003304855764535462,0.01182087037930936,-0.002324909363883027,0.0004406877981834651,0.0022213596604132393,-0.025418242366234304,0.11684253416171456,-0.07672453305390377,0.00012459951296202654,0.022958020749809852,0.0003335285558252831 +2023-05-31,-0.004977063312226789,0.03000649734182301,-0.0020699581296429246,0.0001754060004687972,0.008117813164530885,0.024545929834062803,0.07895950225339372,-0.011878137036187482,7.459085976802255e-05,0.005177454852752176,0.01077880007884802,0.03506106461238384,-0.006063685313521183,0.00014221405580997908,0.00010278535425327687,0.0021942153113039425,0.002301514429321023,0.0023415249639008964,0.0003217609944576359,0.006105566587010526,0.02934052570723472,0.06144125372743616,0.02956387188508998,0.00024986509665260676,0.0017593566051387144,-0.017856696960677942,0.04039531548262999,0.06149545150779308,9.651990015664336e-05,0.0022692529126988993,-0.0033457763058057093,0.014590289081407646,-0.013142888076258021,6.72857131319906e-05,0.017766307956351028,0.014863618888727236,0.13250766419454177,0.017723722119948743,3.846645614771717e-05,0.00047394248241413466,-0.029585082835938106,0.02580541368532326,0.07234452525525831,0.0008841109116036664,0.002270153672652881,-0.020527257530671222,0.05161760977667359,0.015354254440129347,0.00013905766327568385,0.01166530909142162,0.01648717077671122,0.012392352121980582,-0.05449864717128752,0.0006503044854291336,0.007266918333799662,-0.0062989499216977544,0.06482321396066097,-0.01208248513623303,2.8957454679213758e-05,0.0037603601264599128,-0.02002112852366385,0.05032681100682457,0.00584066862400125,0.00011817896428282471,0.029756439242098642,0.010726973550315917,0.052086834016606576,0.017894678861917424,5.797103677304549e-05,0.0038743560228143565,0.036164058041574965,0.02691085411725715,-0.06308386467603684,0.0026210339611982053,0.003056466295236586,0.033159918949045804,0.1908961273522013,0.030235493357870926,0.00014294482918848813,0.00627911706611824,0.0005412967697379452,0.0034243059062361732,-0.020914581901361813,0.00024477728443251303,0.012935540922189487,-0.019390683840971777,0.11003721621115019,0.014667164815478095,4.963802421407817e-05,0.008219516137263808,0.00481042462429516,0.028013108287989166,-0.06644227910225231,0.00028301465284090346,0.022286578279108033,0.015265667916577465,0.19705751255778736,-0.00025781754406603097,3.214793233247097e-05,0.0037017106456356413,0.031588692459698246,0.3397056477925127,0.02911990322337369,3.106780649001315e-05,0.004138059622040724,-0.013262470796139281,0.03916015498353304,0.01572365182537583,0.00010909448449906674,0.0035701889597063016,0.042708987785202795,0.30960791362176404,-0.009604312083499674,3.1863949269224224e-05,0.008521096649115417,-0.018065467065209027,0.04941608948315308,0.008256456225759993,8.105096722043834e-05,0.00257247545135367,0.014184948589032291,0.05347298665654337,-0.004167167213579147,0.00012129472663336498,0.0003279078694506639,-0.022294292867019,0.024891850360666518,-0.005557241296208264,0.0005119317693769151,0.004646312770482806,-0.00672873859817067,0.023400938535740764,0.005083122938240063,0.00012102814867378503,0.003407808638878272,0.07608138603967636,0.23673964115044532,0.037672237991793825,0.002062655055808692,0.01568773604070345,-0.011669969083998038,0.11410963982285208,-0.0013700795070830272,2.6298414503734916e-05,0.006246675077881056,-0.02605373705295599,0.0808117027256494,-0.019550809330519333,0.001054064138399788,0.010086397166037812,-0.005154405648442817,0.04091727325632128,-0.007292055263353333,8.388755818529008e-05,0.00504919269979987,-0.013563653162949295,0.022123593932503943,0.0038329963746419385,0.0001446992844638239,0.008098434736106268,0.011584845722062538,0.01882126404902021,-0.0002843726523656399,0.0003533014182296932,0.00012774057886726694,-0.018064030381545606,0.0601466433213527,-0.016280146684507623,0.002327842543354275,0.009934732629038587,-0.04204163943365985,0.1475367364520544,0.10892436883991563,9.142602564488199e-05,0.001089953780519455,-0.0369491774621615,0.05813708501220882,0.011223541388460757,0.0015798967807964205,0.016395772317920488,-0.01783181522085138,0.056566993304504466,0.004471547026720399,0.0001248959904299235,0.01928313287567298,0.020396890926061978,0.04875983871769525,-0.06222989914299687,0.00016957510284608198,0.02142561102259246,0.015533819569753492,0.06065584393978489,0.005503380180347087,6.250568683375805e-05,0.005862113048537185,-0.036002974411870226,0.139949060554575,-0.06263557757880811,0.002438296146284266,0.008691787117155918,-0.016553565557120037,0.09106809524900406,3.9564399012513645e-05,9.042028481716225e-05,0.018622626994418513,-0.018015182876118994,0.11206859112176278,-0.13478113652175414,0.00011657771733141553,0.0026715953346591412,0.015973014073579744,0.08676300997967572,-0.034209555141985724,8.707649969051399e-05,0.006617914523073233,-0.0021199779218503472,0.008942487028318149,-0.04022453567303654,5.9582732194430716e-05,0.010963856451515926,-0.02514401218540331,0.04796676209931472,0.009179223377326172,0.00025557806002249897,0.0017335797286215236,-0.043588362756591774,0.2092072421727166,0.09613910882994453,5.180935886098248e-05,0.004275953083850572,-0.0199250233454564,0.18828613029061045,-0.056651101695542445,2.730308961822752e-05,0.0027727372149594564,-0.015703102059816468,0.05640425567936426,0.028014830583020078,9.731561807495382e-05,0.021205873125421725,0.018738858422791202,0.08037374498155961,-0.04620067581696879,0.00036749962168397353,0.005684104972140718,0.0003869876142880958,0.0018611578588556656,-0.0038126983988687343,0.00011909283971906036,0.0007207113149102983,-0.0010413882816200045 +2023-06-01,-0.03712342423132197,0.23971514494768797,0.05388665201800607,0.0001637718063125331,0.008872621912956772,0.0061481976940457195,0.02031288894496871,-0.07821790879681961,7.262508540984753e-05,0.010809873037886995,-0.013357596630555474,0.05236329546412439,0.011226466985879233,0.0001180044970498772,0.01537267713511044,0.0380554836230609,0.04135395152741612,0.08069388484004393,0.0003105761395811523,0.016840197071139804,-0.04552550723137657,0.09468761341645211,0.04380507310193809,0.00025157031594672533,0.016599687066692508,0.005749387398360452,0.014169999487342492,-0.14678186871299603,8.859281022617204e-05,0.0024915895040257307,0.022844653292751812,0.07448813731273012,-0.02065668701211399,8.998856206550982e-05,0.017761593371591135,-0.017833436627360203,0.16423595972031607,-0.0014700997685027117,3.7236204318136405e-05,0.01874091562260496,-0.0019032388744076039,0.0012884596942172677,0.001017671814112607,0.0011391141559778054,0.006334279625190616,-0.0216549604813943,0.048438383359231584,0.03145284175773325,0.0001563254335637781,0.012218401412669543,0.03440448705853232,0.026420421064077475,0.025844543550272926,0.0006365019094064056,0.007320247402112321,-0.006285090170139122,0.07137917408490532,-0.10853841198332392,2.623993673808731e-05,0.008672953837855938,-0.033807247208129436,0.09599372884997821,-0.04523044049110747,0.00010462078759553236,0.017644201965957562,0.00624242483932416,0.034063590905428244,0.0030271981341213855,5.158515169344031e-05,0.00028880406868522735,-0.047794797163908546,0.040472869352321354,0.12496482038164837,0.0023032421535401763,0.008971739766484308,-0.0395329723830417,0.3074492634415916,-0.000768780955041729,0.00010581277883429572,0.020761060921493033,0.03929497822073104,0.23684548054224902,0.02788889880479924,0.0002569095109031856,0.03369437052638631,-0.04262131589559234,0.22276637041315595,0.02216589409229632,5.3893722419854556e-05,0.013016125930673458,-0.02871411463696716,0.16587219748289378,0.00454064364355319,0.0002853045114530274,0.00015884805624233637,-0.045406951233681984,0.6128268170675379,0.027601139903681637,3.074785416976421e-05,0.002896302470124229,-0.02825629449263627,0.2751221268038029,0.13908717504712811,3.431400397191667e-05,0.0016552655698936721,-0.021765070217102795,0.0642820269495944,0.018627409893058836,0.00010906697445366305,0.0011250734721969622,-0.014837387908396702,0.10595953691899022,0.003532926696679502,3.234519513276867e-05,0.034885070514855294,0.0023719446027810464,0.00612911646785268,-0.01983451107686377,8.579936033119186e-05,0.008314632050104142,-0.006815410725008078,0.02241091131693705,0.0015162834465698842,0.00013905323979339457,0.006012602928098184,0.032166238186846545,0.030724721092193995,0.007472712593669675,0.000598394903064026,0.027138291186811003,-0.03808732882272117,0.13935097914752387,0.09656568478720338,0.00011504202027103572,0.0019309793070730083,0.011478018012303323,0.0389978556663183,-0.01822630681907789,0.001889058246695949,0.05930320456072341,0.018481779800896204,0.1970591022950061,-0.025742853280684645,2.4117344489889376e-05,0.015421512773258282,-0.02117698496828768,0.05197049805143675,-0.03530926738833977,0.0013322278837842162,0.011088802141373762,-0.015196461480832615,0.1075252853529192,-0.09470616552355338,9.411471101742669e-05,0.001498136897410026,0.014199947423484181,0.023728912666879463,-0.03146789711374904,0.00014123888640348622,0.009907151108066153,0.008955272868097306,0.014392250201145578,-0.11546364362895913,0.00035715278156106,0.00025088333880220887,0.003093746736115269,0.01093280210293653,-0.037050092150209775,0.002193328148924432,0.002582883059261327,0.03301964695165835,0.11794742851335277,0.041539997857429796,8.982026230370618e-05,0.0020249647717207452,0.04240964652485407,0.058978482752822345,0.011961425327600798,0.0017875090471671743,0.026079118967622675,0.0018350655259330281,0.0061923720398469086,-0.08759828150601066,0.00011741148257525873,0.022214292533256522,-0.02222667602141109,0.0535739599925256,0.0043613538776829,0.00016818263259304672,0.035780466064817155,-0.0035105777321619855,0.013898632045982996,-0.0003247345803979515,6.16482086088274e-05,0.010713652596020458,-0.009639996064463904,0.03576891716199323,-0.03327337616571122,0.0025544012712705086,0.00012281306783978998,0.022076897187566995,0.09682344668601656,-0.01199031603982938,0.00011342220014475439,0.0061049533780605176,0.0038557056351062047,0.01993570056904855,-0.003941262572622275,0.00014025977974266104,0.0028025651636500518,0.030939139494991365,0.2112449831412032,0.0056081058249686355,6.92740415286103e-05,0.0015912920699282626,-0.02391235333177765,0.1315722235245948,-0.013821121197025584,4.567783379968954e-05,0.009521502690894025,-0.020229543837165655,0.03817437908829249,0.014370504569208986,0.0002583708428637485,0.009754677167281709,0.03407436026071362,0.1527017355095102,0.07867743934190956,5.548787762837212e-05,0.015586432854418943,-0.006622549420767824,0.06579570257805592,-0.04396091241153451,2.5969223531839436e-05,0.0002746344533131889,0.008224202414265842,0.023967512013112674,0.0032088552735110853,0.00011994435171338613,0.0007914100259304933,0.013405076737119133,0.04926734220303667,0.003824508740101528,0.00042888231761031745,0.005079592080980565,0.08765169069948614,0.4032917755602778,0.13114338941763876,0.00012448376875078853,0.025836890839783924,-0.0027171897943199796 +2023-06-02,0.02319209340084414,0.1797644349880924,-0.028690485583127846,0.00013643404686030129,0.006546949133501961,0.007286456689539941,0.030445269003721666,-0.03317221471865028,5.742580590266737e-05,0.003078778467929327,-0.026917029180076626,0.08375571751436843,0.029479385719581107,0.00014866538720969356,0.00494011360981992,-0.008569533059219555,0.008886319297734398,0.022317258344086124,0.0003254641072902098,0.003931294242275693,-0.0029216427174228545,0.007690069171418683,-0.00010623862129012797,0.00019879004488847183,0.002223805320863954,-0.001957364141972039,0.0061821211703117695,-0.0033298548194290968,6.913227594121695e-05,0.001436631183401789,0.03581532422013329,0.1155860124150905,-0.01510353421802349,9.091875097975382e-05,0.013951048184634067,-0.015506083187177763,0.1344843626985441,-0.050762958706343,3.953929621648921e-05,0.013466312026275089,-0.020134982194051538,0.018405028775379667,-0.00038994807064463005,0.0008436446091392054,0.010689823909912346,-0.05177235253364102,0.11642632866514409,0.07188035215360128,0.00015549219106489323,0.0003634950740814076,0.022282230471050293,0.01793067105968664,0.0016213207968621282,0.0006074163485746032,0.02884670486669077,0.024575953951149757,0.23610262453322775,0.1016742496266959,3.1019326157788104e-05,0.001154078936941582,-0.03256610761074241,0.0942264062311449,-0.040682611436768205,0.00010267016593193756,0.006933841283091026,0.01282073549945505,0.0709207291551114,-0.024537116168776053,5.0886381173732626e-05,0.005710606192189449,-0.017895141657631654,0.013849199520990044,0.0022409919854661764,0.002520190911957328,0.01784227098133502,-0.09720352263432841,0.6586507522182747,0.10377146515232659,0.00012144479876026037,0.024272250643591824,-0.02973428137893908,0.15864976738846517,-0.07759059097791257,0.0002902192658302285,0.013866450198213264,0.0015585564159890709,0.009376458522107965,-0.013728528911689155,4.682142707798888e-05,0.02076128671340064,-0.025061724233444375,0.1358095319851154,-0.018503355723992497,0.0003041357702875769,0.02880634013901656,-0.01271795744478297,0.18733682305856675,-0.0058212084258513,2.8172439034101995e-05,0.008643214643343437,0.028392327059486855,0.3162797868628629,0.06781004973635237,2.9992402847681195e-05,0.006379457930860016,-0.018262664062166128,0.04639992389796988,0.009229168115080007,0.00012678550884431033,0.004831265092695214,0.05613286860855761,0.38213538930041324,-0.08419123825029418,3.3930663622930326e-05,0.0027866720080521306,0.010960486512095264,0.029810452207423326,0.007449989953977449,8.151520971200897e-05,0.008033851784348435,-0.002046211929154489,0.00699882387355645,-0.017170372308533147,0.0001336823721166985,0.010079796669556051,-0.04824744652084986,0.046755755486903174,0.03153752440020894,0.000589813645701497,0.019362187156007248,-0.017468879609292994,0.07052337434603849,0.011478471083569015,0.00010426006154926801,0.014691466777952512,0.023306157208157954,0.08000439358222906,0.002052821766287943,0.0018697175674749374,0.034648842205962295,-0.01083301548331743,0.09370109625086,-0.06389025028689559,2.9729450854352187e-05,0.019233060890488173,0.04657068619714003,0.13347625925189202,0.03191183864027851,0.0011407221645046615,0.001342583575335802,0.005691210796434946,0.04894857359658262,-0.06066441419981775,7.742661526886998e-05,0.004698079208316771,0.003281931952118455,0.004578368293533637,-0.028155272371735297,0.00016918592613939003,0.010062398668639463,0.026749541662478123,0.03659027902326496,-0.19559851225829486,0.00041961841363852905,0.0078105781733781,-0.0028873525108347496,0.013156215438243333,-0.012929681042718676,0.0017010582037416415,0.008153628938195323,-0.012637185692904482,0.046554567382739186,0.013329627750165975,8.709203577641388e-05,0.011861635815424824,-0.05308715581842789,0.07422663614684079,0.029926794999067762,0.0017778981203716876,0.010123839424978782,-0.008821512017192413,0.027151803908487718,-3.174232082806054e-05,0.00012872425236083715,0.003292818606945941,0.008974194358358443,0.02417631874025491,-0.028285365515837838,0.00015047545817128044,0.015320502115936965,-0.006462368660345583,0.026114615298539406,0.0026186350189403807,6.039792551929473e-05,0.016002820372463426,-0.06628258174075136,0.24338465244926108,0.033168463071450445,0.0025812156249218057,0.01841641915054423,0.016449129146166645,0.07335684996504897,-0.022205817292155816,0.00011154312490017919,0.003532057885883358,0.02603835940244104,0.1590732438338599,0.04601608716622008,0.00011870725549980666,3.799530090571428e-05,-0.0009261997898151918,0.005175060691034321,0.0008457626365210258,8.465213764681863e-05,0.004834453989245449,0.014435565736149333,0.0611745626180629,-0.05180793114422995,5.930759739099613e-05,0.014336758909278857,-0.033477077844041796,0.06385747611268483,0.018926047923368484,0.00025560255260814794,0.0034570587273196032,0.015164454209868004,0.055476371874419055,0.003293725084071861,6.797247900467108e-05,0.004817663591063504,-0.009634720396609186,0.10065151347132659,-0.00046483063276504653,2.4697334940324053e-05,0.008942399047786079,-0.010416866852890061,0.031611184804314026,-0.05361425007445108,0.00011518748709462189,0.002198961416549996,0.04759960708694976,0.20026617931184057,0.1403167453367558,0.00037464826553902284,0.0040058307008507404,0.03397338258738998,0.17205115162313173,0.009252039369970395,0.00011309749920627608,0.018517417258889446,-0.0023344262334842 +2023-06-05,0.008736130901599512,0.05915152918519235,-0.0003527401547396055,0.0001561851504521998,0.006685900365607821,0.003994499638351383,0.013180187911694171,-0.023741065782035723,7.271957141956734e-05,0.004249643656744561,-0.007169997733353632,0.02657822137117478,-0.029642932990976055,0.00012479302394110997,0.012924590817339283,0.015315280955102666,0.01613795691381815,0.0012056997671517262,0.0003202906589258564,0.02198297276591766,-0.0077085309526307095,0.01673813288077925,-0.0008303599257757924,0.0002409696692685057,0.012539798524510667,-0.021062066101924876,0.048606580934295956,0.0625752767566928,9.461339752568558e-05,0.0017389678075711618,-0.012265396937400625,0.04771691765301127,0.00245582277185872,7.54221799478952e-05,0.01720628656178006,-0.03753868918167767,0.3273231422085375,-0.041688930686824395,3.9327922576581765e-05,0.01957956536100364,-0.025703772896868125,0.021412253877796335,0.02924805275948478,0.0009257192141451045,0.01273528311416345,0.010599142937481482,0.02247925886258897,-0.008160240814558932,0.00016487342006682294,0.026308327714426184,-0.011955735585942966,0.008162722869773537,-0.010362498348236096,0.0007159218341074663,0.009326615444788357,-0.012207015064281547,0.1795186483452279,0.03751008629921777,2.026388444883011e-05,3.3146932878732986e-05,0.027751400225481095,0.07312767751063606,0.010466239672641844,0.00011273380301107897,0.012690503224569388,-0.011380503315587322,0.06857138000125435,0.019236914083380317,4.671758648375048e-05,0.003701533414612626,0.020751168627332433,0.018912984555252296,0.01241938014977662,0.002139959056929384,0.0020574050203234938,-0.03321869085116324,0.1951735147633436,-0.018546125307812016,0.00014005987600505752,0.029839928734763512,-0.00880202054322367,0.04534476615481246,0.00022240700545719428,0.000300582327636168,0.011131406882204603,-0.00638430875252856,0.03231080295576413,0.000859503171095428,5.5657934712428035e-05,0.0046812667797212215,0.000454650430461433,0.002657459162124563,0.0004726541471242068,0.0002819666955541353,0.026548171051834244,-0.03876475114981444,0.5014841649868818,-0.11901766713064078,3.207820123228051e-05,0.0008814764033436987,-0.000525703694970822,0.0049749256569547465,-0.010547541758670577,3.530499410899183e-05,0.009282302152376517,-0.004487969735778819,0.011746956254871216,0.0003378356192804975,0.00012306861807616137,0.0010610260982451467,0.03456895136405202,0.19940896687854365,0.0021792166182153833,4.004367226122631e-05,0.006016811502410245,-0.021143746093787507,0.05638176635747897,0.0374023662919921,8.314203298500299e-05,0.007356804847239562,0.008652586793454957,0.034119032131204804,-0.11847376617891037,0.00011595723661711607,0.0045361887482268,0.005607058667684769,0.0059912907419233195,-0.019188544547957615,0.0005349217618007447,0.012425507267007148,0.015042481057224753,0.05016905019408074,-0.02000681598612202,0.00012620297808895137,0.0033832856319683776,0.014158527261482458,0.049727343775610236,-0.021503178409882726,0.0018274352351319544,0.004357503911251044,-0.0025720914192781746,0.02839585135064642,-0.0043978386588425355,2.329237115596613e-05,0.012351136820083016,-0.0016807773663312364,0.005598926951858817,0.0006280045662240217,0.0009814691643335216,0.011510718363377331,0.013109122231460704,0.10807160241905701,-0.006121982366887183,8.077698985172199e-05,0.00486431139074871,0.029890888659266923,0.04487637555670067,0.05368411871395593,0.00015720503053908173,0.0057405897009810344,-0.00944167586432139,0.01519313274230292,-0.14071475791351665,0.0003567021018547921,0.01031437407922992,-0.01095525566528172,0.045144932585983046,-0.01704833251230819,0.0018808919580018066,0.0047072685586340745,0.026733383066944807,0.0990943206591372,0.023966997488389374,8.65556709467439e-05,0.028447655155910852,-0.059769651647446596,0.08852481624724928,0.009792720270136484,0.001678389996984104,0.052587783585135106,-0.004411961348343505,0.01492878129868008,-5.170794809829286e-05,0.00011709096352478073,0.003907391431924005,0.0030517501297494015,0.008665033074175895,-0.007518077015964915,0.00014277071124534267,0.016138328905133958,-0.0006349536806506577,0.002566367289538895,-0.01647643991507127,6.0386124609197656e-05,0.013215231617653294,-0.018496062758993164,0.05959883521866746,-0.009874772077308427,0.0029414371702387123,0.015468885308860291,0.05364700736539672,0.2761824710776415,0.07223173136184743,9.662510081189662e-05,0.00036025417960084495,-0.026690746269131906,0.1314853251050135,0.07347578722291925,0.00014721234020122543,0.0002580684614811434,-0.02354431068403128,0.14926520044929775,-0.05686961503482334,7.460640443096533e-05,0.03831626552410866,0.012203097677835685,0.05918920766743424,-0.033436362615724614,5.181732102844442e-05,0.00038788348917885595,0.04597194621961511,0.09546883048576467,0.051333791655427126,0.00023477977476788102,0.004461243939070169,0.01700315083375924,0.08103051576132701,0.014187748502286464,5.217893132735818e-05,0.008233638912036677,-0.016140191145683234,0.2020685688378973,-0.010356688878218357,2.060825376946457e-05,0.005999009261777856,-0.0070300964346213714,0.019572348430530212,-0.005025265511232943,0.00012555306190018578,0.002726165628895185,-0.01602699341299646,0.05444239617900202,6.129101394775916e-05,0.00046402651543604127,0.00959183929797925,0.03466673913465792,0.17579568653527267,0.006917685631241214,0.00011294748729476288,0.003590938307095515,-0.0006509451036219909 +2023-06-06,-0.016527707052546595,0.09644901016731948,-0.06089692043257305,0.00018121803441371816,0.005277022992277139,-0.036012738870798956,0.11694773277920945,-0.14952663836935354,7.388816342556501e-05,0.006051990673420569,-0.058217113974713706,0.19319884615130417,0.08092016480330257,0.00013939376495111124,0.00987641136720906,0.009492945541940814,0.011598531900533985,-0.061809276972374004,0.00027622680774765443,0.01560397132873471,0.020307971286050577,0.04257517493477492,0.01481579412506736,0.00024957890323313203,0.0242740956251486,0.004988224216693565,0.011543874440703419,-0.013950287825276986,9.434982779462949e-05,0.0025641085281127296,-0.0384629232520959,0.14978177574539348,0.010054011700915905,7.534824971935057e-05,0.01759080505666231,0.015336827974444826,0.12505220621590782,0.026718628874055524,4.205743696777178e-05,0.012093691845271273,0.002854692051375595,0.0030162178594875582,-0.009638070285795,0.0007298629955990495,0.006946661236859152,-0.017558260066386968,0.04001592911478602,-0.022173093038356042,0.00015343006134008153,0.018601296992674696,0.004680052714273825,0.003919489662522065,7.111763022284703e-05,0.0005836407135144062,0.020641112342265556,0.00012412881818269037,0.0014278589118367664,-0.0023667305441112643,2.5906581737708622e-05,0.0033341364820810987,-0.0057565119540581005,0.015879463695875725,-0.0517392066165554,0.0001076898118049262,0.02690049951407102,-0.022707778878468032,0.1281135044889952,0.05877566133008719,4.9893223483286264e-05,0.005537948241780387,-0.03223912175432556,0.026435068595482697,0.03462626438083446,0.0023786236536477564,0.008292864310065314,-0.005011438943461309,0.029774542220153008,-0.058881915160118,0.00013850627781983042,0.031934931584580176,-0.002439809593094096,0.013696134197916326,-1.9802520032361548e-05,0.0002758456653510265,0.009194205007042466,-0.007300011021066017,0.045034999499372716,-0.030366696127850024,4.5659832032436903e-05,0.02716363373088154,0.013107372060324283,0.0615318399608936,-0.006563124970136679,0.00035107712477391677,0.0035412030943653694,0.058413248657722565,0.768475033744504,0.06230433217337765,3.154364154146636e-05,0.010338957012824132,0.0027625426574118266,0.02553118647228177,0.00042603001926719557,3.6150949155578005e-05,0.0029673140287531773,0.01305403954460467,0.03559485456530838,-0.08622538773567581,0.00011813550903214215,0.006118919385232934,0.012878240856184235,0.08088894397268584,-0.007907629719298282,3.677559887215172e-05,0.006238013993346836,0.005921889155358771,0.019777950323238952,-0.06883588618964849,6.638292348115984e-05,0.0003718532615610878,-0.01279386722979913,0.048300727344685546,0.060955747322404503,0.0001211146739497757,0.0011725126945254351,-0.008397369757050965,0.008664036218959807,-0.047692784727946656,0.000553985731206945,0.012916491113835108,-0.01424521553786065,0.0494441136665703,0.005342480787414179,0.00012126638678484573,0.00263910593635883,0.039186297862559796,0.12603375772227182,-0.016750402341761436,0.0019955679714976156,0.0242484289002071,0.0179245574875552,0.1674190776768297,-0.0030888864656937296,2.753123497472434e-05,0.012198779108543842,0.033656995852295354,0.09370145603819723,-0.03826785062001536,0.0011743573749713352,0.003258854991329791,0.051633627366046646,0.4510849649602698,0.2022378512168197,7.622543781210043e-05,0.0028619136858711904,0.01104517641918294,0.01757266001910635,-0.014146995964394112,0.00014834760408673773,0.016172340133531627,0.004380879900660497,0.006238875300714516,-0.12743899544130854,0.00040305002826119483,0.0024122663543881444,-0.0016119614560639191,0.007041295493270972,-0.06527070838354254,0.0017744036577368387,0.02042855259993326,-0.0013316844314782592,0.005312824068123947,0.0016837167237662015,8.04204054342046e-05,0.0061178305060636175,0.0026844804776814347,0.0035816032966570948,-0.15335011538976304,0.0018632020814023447,0.010690303924313964,-0.06943792449989011,0.2309170003083069,0.10447737689621184,0.0001191397983161697,0.0039007639796046845,-0.00891816347449574,0.02217461490328693,-0.040880826772231774,0.00016303457611248687,0.029479213484947104,0.006454111646614965,0.025988317396154148,-0.04916673569713867,6.0613901185748296e-05,0.02060415065932733,0.052381359424873014,0.186508865766831,0.06560081363247912,0.002661922102019998,0.01839464688811055,0.03749862775315182,0.22510314400830778,-0.0019355668042984023,8.286562018755566e-05,0.009320576171278083,-0.0023725373314217838,0.013177255050037974,0.0016385834270660111,0.00013057164848131073,0.0018451887917771883,-0.026024192364318403,0.1405400400905724,-0.009184170785306615,8.75842239333077e-05,0.014074157496236186,0.013956814512539736,0.0665666951098885,-0.022041029783383147,5.2695885392677214e-05,0.022240634096143335,0.0023400188602741797,0.004539674362056677,-0.051735484014783756,0.00025131826363957116,0.020909687200104055,-0.004841215749118212,0.01836580459370012,-0.0016047939187434233,6.554791080493424e-05,0.0011743624348544805,-0.027280996652727277,0.33376290925882024,0.0208228439833004,2.108887659361692e-05,0.006335381493278179,-0.020509573105636336,0.06257697168892788,0.05880077738790473,0.00011456475827005998,0.0030535435466498353,0.002139736478444822,0.009333169183807345,-0.05130422644147257,0.00036137584745041804,0.024594513925962846,0.02601391252686868,0.11908710861144822,-0.005930463973207857,0.00012511596234002757,0.020655924243573553,0.0005082698660258266 +2023-06-07,-0.006209073933514856,0.04350702277492322,-0.008846896422170129,0.00015092252062541754,0.021201557485010965,-0.002555141069345913,0.007570366559516413,0.004339232311052794,8.098572984799276e-05,0.0009929114604121034,-0.012827573313150202,0.04423859730388736,0.006684052853472868,0.00013413445895589507,0.007071539754375786,-0.0026373600678661147,0.0026959184692931086,0.010721329705137471,0.00033016461662932245,0.002052895072796167,0.008760030838460834,0.019325382993033345,-0.051489432601666,0.00023717848889170565,0.006955497867450236,0.003360684829957699,0.008806574846550626,0.004138092028008311,8.332349822387214e-05,0.007231285485193432,0.002244396361215576,0.00848314487407324,-0.027641664867859086,7.763052571688777e-05,0.00957364310471336,-0.007619893521143059,0.08360038188476411,-0.01643270918706529,3.125642157338893e-05,0.0018157492601058797,0.016253407704710614,0.014210381493266174,0.04478207399401047,0.0008820302479426446,0.0014557704183739448,0.06136747302368724,0.1355727627777822,0.08411063478303532,0.0001582805972410451,0.009207876126122743,0.007241138735417294,0.005763933909691202,-0.05393860281598074,0.0006140620160713724,0.011692967420240548,0.01269331732166196,0.1436699059227767,0.025619253575456753,2.6328863879434942e-05,0.0012792260997820971,-0.054101768603916404,0.14995673037418852,0.061729659842118235,0.00010717575160854975,0.0038735747950318046,0.0016757301222524031,0.00840303508245872,-0.006778635318717016,5.6134481825366973e-05,0.00029853615753297794,-0.012661753602008302,0.009652517142600065,0.004396483746010531,0.0025584459642243812,0.008220339733335004,0.015132209806762333,0.10441865917856546,0.009243376635148218,0.00011925493215678294,0.0032564198377352917,-0.004309313889060107,0.02336567601066467,0.000435644491378549,0.0002855867213348505,0.016650040735151927,0.011917614732948965,0.08427448053119606,-0.006391138889483682,3.983402700310521e-05,0.03363306645660549,-0.02605208339327405,0.13118290518304554,-0.003094192010788825,0.0003273045348505369,0.027629658111505417,0.05181882542700884,0.6402937651250616,0.04811923621283147,3.358447185407555e-05,0.020914391862619782,-0.012648711290309698,0.12525239768100024,0.019370195587468872,3.3739756244001045e-05,0.006244512934588177,0.0021578688991500546,0.0065673525825159585,-0.19072240313615552,0.00010584186372159978,0.0031327517203681267,-0.01684189475278305,0.12152321486982333,-0.017649786776981518,3.20128304876388e-05,0.022318551056105605,0.011028247164527008,0.034750032813732325,-0.014693099578976947,7.036045742432041e-05,0.017705489431806384,-0.0011112585312051582,0.0039857405171598685,-0.014683207195722464,0.00012748370661998994,0.0012551725738065055,0.04025048631196206,0.04206310413871756,0.029556106640637445,0.0005469471631036545,0.013106274504930886,-0.04425092201277728,0.18137232339334614,0.06453663077704064,0.00010269216661983146,0.003972641332046247,0.028964264930835072,0.09347642535833152,-0.0891721096543609,0.0019887472393436178,0.0004595733814530354,-0.052229010574583803,0.49398297196202223,0.03862442196393485,2.7188297616361722e-05,0.020911946601928542,-0.03907423464154975,0.117002298423251,0.02348579245916644,0.00109186100728313,0.012020930436817073,-0.015441564881615006,0.10882272069113638,-0.18907691394542328,9.449250759980445e-05,0.00020438964815272975,-0.003755007423576487,0.005607265253036437,0.0027008867016207515,0.0001580538521952594,0.009432054591206954,0.01006818459706479,0.014505969498877143,0.0006955023508249685,0.0003983899035082522,0.009846068808620361,-0.01566129507187765,0.05369116527810044,0.0019936929277586234,0.0022608678782336717,0.0016755535793107393,0.002228891183758674,0.008036584212548563,-0.010988134740557657,8.898314205585095e-05,0.0023688102274309684,0.009476236756945375,0.012578861336940165,-0.03339244719133514,0.0018727153265255096,0.04581501230301264,-0.037910162295010284,0.09310029211387034,0.005483597126051722,0.00016133204414422658,0.02151809322238439,-0.02555314359842906,0.06947668200150815,-0.0024923685725770947,0.0001490958797578336,0.010592063388168156,-0.014631189846674223,0.06841515650616987,-0.0011821981873153349,5.2196483547093615e-05,0.005559498514289077,0.05779783622691182,0.16689866615875673,0.058838134778320283,0.003282288659048929,0.03948382835966714,0.03052075027566293,0.1761023139483526,-0.006762055164601553,8.621259421610475e-05,0.007705134014815606,0.008925674664307702,0.05235258417408941,-0.005153577328688566,0.00012364134297662057,0.010690165797131385,0.031028387904116946,0.17024544745788928,-0.03931574053186425,8.620498957309545e-05,0.013651418077869624,-0.010207271563700913,0.042353289961949064,0.009163122665444164,6.057172091277721e-05,0.0035521221588521758,0.06516802486866931,0.1049411649288113,0.10943390317797445,0.0003027736466998179,0.008454190267676789,0.0293465514551156,0.12712793837594177,0.03789615340902429,5.740245224208641e-05,0.00737573325298404,-0.022557804922353538,0.20194503302412092,-0.01455812073577678,2.8820064351295202e-05,0.0007109683642676856,0.007938570931767329,0.029002438414023765,-0.08499833371618724,9.567903377229848e-05,0.001633374321633657,-0.011052752458388668,0.04268899298775874,-0.054614297528163054,0.00040811495020919654,0.009074797088471163,0.014628115812195032,0.06607931182815276,-0.03226054488053584,0.00012679282393436518,0.0018560730756159189,0.0016207921183862687 +2023-06-08,-0.03447362228618819,0.22683218299174135,0.05490432013385857,0.0001607195954114218,0.015153126417936098,0.00641339786186429,0.02306745116926592,-0.10297806882829832,6.671125322587045e-05,0.024671657843434683,-0.008338315604371647,0.023410687366687832,-0.0016079371435959067,0.0001647636363434995,0.0439589955292044,0.004162343417144986,0.004386669859943959,-0.05562436427066746,0.00032023648835087157,0.0010809893245298675,0.029119238869848123,0.06244381461924129,0.019231992281958862,0.000243999179308624,0.026106867241820052,-0.003172010057766202,0.010032233594836328,0.0008371271977289604,6.90372779882203e-05,0.0007026369962026028,-0.027232005904338295,0.10884846345166922,0.01645233145458325,7.340864114986628e-05,0.006755893727270583,-0.030018964646452734,0.2804543331675834,0.024662702604730573,3.670558662973417e-05,0.008955501780689013,0.00642143085623388,0.005555104794172341,0.016553606509525476,0.0008914240381871719,0.004194644398930006,-0.012656171690730536,0.028903099921893858,0.009503897436865463,0.0001531157337236451,0.005443188308280314,-0.026625238381891358,0.018911182074207732,0.034076704782445254,0.0006881754683098528,0.007411641632088763,-0.017921310768081997,0.23619931833110844,0.05316110189244061,2.2610695449491938e-05,0.006254880185816539,0.0328736629379184,0.08265440156390248,0.010882456221317538,0.00011814984328755016,0.005841469647623872,-0.0009068202021620991,0.004875555492813795,-0.042708377027580735,5.235508888467118e-05,0.004056990538301949,-0.027489922119495493,0.019841948630284153,0.014942173542247484,0.0027021668457620366,0.025766036139214125,-0.054761048875670036,0.348341232682115,0.012499192686004409,0.00012936565188358622,0.023475275436961564,0.02155248959610206,0.11018262550723062,-0.059472564396897874,0.00030289531725453505,0.024821772286993754,-0.09639248764473085,0.6585776252638096,0.12913940380189293,4.122846566837204e-05,0.0015500663340982455,0.00228634047170553,0.012380004365237451,-0.004685694619984812,0.0003043735528624628,0.01136186098189908,0.04522318470976812,0.6016825482131193,0.027355627318096754,3.119061652689086e-05,0.018483672603761575,-0.02126676872966871,0.22004659476785893,0.040251675781730306,3.229003866954577e-05,0.004716967231914015,-0.00300120802419518,0.008143229689424618,-0.023295986349021202,0.00011871953037825355,0.007030822931603643,-0.03298171279413475,0.24348340029100712,0.05187849578724999,3.1289327103895976e-05,0.03745117930892634,0.006922801679131095,0.017845164069338802,-0.010634341543128745,8.600797595009021e-05,0.006202198173783905,0.0024148947965452754,0.009892233059800823,-0.040129640982200884,0.00011162268671074327,0.001564852902787305,-0.025103394261738618,0.027497554795883897,-0.04869394471578496,0.0005218118437114175,0.031081060112866078,-0.029058376776206887,0.10613474213534448,0.022049430819689676,0.00011523908215545984,0.004803460704819162,-0.0076244927093454375,0.02360850565939657,-0.022070859603197324,0.002072820187390765,0.002967846547074885,-0.01508054367267569,0.12195583984060027,-0.002242305183553043,3.1797764802133144e-05,0.011167872462497275,-0.008914730808018845,0.028045281738123214,-0.0271224246774588,0.0010392491935671349,0.015416228446236139,-0.000904306816247676,0.007392981780446683,0.0006624023603239781,8.145576217616258e-05,0.004362309478673567,-0.04244759497988674,0.05790195237642164,0.0970839966614031,0.00017302356946801404,0.01986119498481231,-0.019636152241967398,0.02676204298174889,0.060647454913220926,0.00042115410732556746,0.007519423407442336,0.009151422796845464,0.02958731287327287,-0.06575537658878097,0.0023973610066998093,0.011844925345752788,-0.01459299581812355,0.057652937914819104,0.01475423897265021,8.121072454250664e-05,0.009517360997985046,-0.024093164387688017,0.03661094840840118,-0.00988706636576993,0.0016359124447190738,0.03586406912955351,0.027335504037215054,0.08675220597882537,0.0024949429123753003,0.00012484253988196656,0.00885103767525689,-0.007337694335307395,0.017747416340369703,0.002581264092597557,0.0001676041836071108,0.03184830389344772,0.03299477363661961,0.12466024774185319,0.024758422583640395,6.459978797418781e-05,0.016753034640573927,-0.013990717980690027,0.04422587315896309,-0.01566302460767148,0.002998345286231095,0.014071403051536405,0.04571782554270687,0.20627013826458218,0.039681707458677065,0.00011025283791800787,0.020481898447895674,-0.016635364267693728,0.08403793686061645,0.023125250860233964,0.000143554799731405,0.009826265587384655,-0.018387726527888934,0.1177636475700228,0.00960338409840879,7.385254839674376e-05,0.0037287781980783457,-0.04379362600809371,0.19358431249706023,0.040195563873392785,5.68575497028478e-05,0.003727304261019391,-0.02475172885880447,0.06145871892437881,0.013664759338183768,0.00019635927939209725,0.029611649732658944,-0.0422588035710793,0.1536739168113466,0.050395887065573755,6.838036465114858e-05,0.013484110209107374,0.04117542061087336,0.41823954878549646,0.09708121588302511,2.540061502542146e-05,0.0012043735086653665,-0.011893651294170204,0.038441115346404875,0.0026986703247686783,0.00010815041393220003,0.0014522874826697096,0.021744135641075617,0.09572598393399917,0.00041446707411779384,0.0003580471988900412,0.006925922275507102,-0.0027367368769575314,0.012705402510481661,-0.01139657891378829,0.00012337194514050253,0.020557874736423124,-0.009407171652042816 +2023-06-09,-0.023463598063406293,0.15287946840963199,-0.13269648847586277,0.00016230504913364386,0.009440249541206463,-0.011948805539189913,0.05036761676607223,0.011663790737232858,5.692245440806098e-05,0.024522734607871657,-0.03225531905233211,0.10571051350873112,0.02285822807371261,0.00014114983150764662,0.010742347923554585,0.031172046722142025,0.03170785842484386,0.04447454914075215,0.00033179227051147544,0.002934883690277214,-0.008617594263201361,0.02357461006419987,-0.09182112372426582,0.00019126667006187306,0.019651276993789237,-0.0013551526785037646,0.003701496852802056,-0.02281088050226036,7.993879238328962e-05,0.011407775753174386,-0.01849593074049597,0.07263832355777174,-0.05065856329924741,7.471369811548468e-05,0.018376348690947935,0.019508724273109502,0.18740574786480246,-0.02738819935272185,3.569805696913087e-05,0.0015180965372409868,-0.024804631310276357,0.019916101609303814,-0.00849379696331558,0.0009604466132986905,0.004126672963834446,0.035033047394723946,0.07522490482105214,0.017495963395137912,0.00016284639771973488,0.01228746024893439,-0.014785624393615485,0.011105910410373393,-0.02166012169603144,0.0006507435345728147,0.019641096082660535,0.003665451614174191,0.050396775037384184,-0.02587882135702357,2.1674422468440666e-05,0.006478566046180083,-0.048513450691233015,0.15199878003267006,0.010353601486283967,9.481413823076282e-05,0.00848840722691789,-0.007152339002655429,0.036697007707906966,-0.09097647053167138,5.4862962618402345e-05,0.0012396362367824239,0.007017718921118812,0.0066715674725813185,-0.05012797598609353,0.0020515922957729665,0.0027744200540794645,0.014750363152012863,0.09391371766960113,0.015772834642418323,0.00012924858215324265,0.005451600198834524,0.04499678058217897,0.32869681658603495,0.0050289344480964875,0.00021197965258083334,0.01335888072350586,-0.03860149139668872,0.269869139717687,0.011501209832727179,4.0291349681657725e-05,0.0040630735533573525,0.01757783784499207,0.07706429425047627,0.007795309160049895,0.00037592313665417806,0.03297132276227763,-0.023935369808609275,0.30997252877539283,0.00257292195865637,3.2044032740398304e-05,0.021438446793465536,0.00784260012441696,0.08425646587585454,-0.00014973215054414222,3.10984355825327e-05,0.0022903432321540397,0.010243672554896525,0.030338253097002235,0.006974103086854069,0.00010876467669341292,0.0039091284014602205,0.024609580407337125,0.16505546617869485,-0.0038291520465169315,3.4440279999895817e-05,0.020157251012646503,-0.020194806621506342,0.05379126410014329,0.04383317316016106,8.32348748373227e-05,0.007665198033637174,-0.004069183158555591,0.012074265696497997,-0.07391360810452474,0.0001540973270706629,0.006413817028801184,-0.0692768451562809,0.05731141793586115,0.0186129125093741,0.000690911640572737,0.0033307033562984386,0.009870535107877826,0.03981468034328734,0.008906118679650198,0.00010434784234106757,0.003658195218351133,-0.06350652811725632,0.20816582005481796,0.08470449085417342,0.0019580695945261945,0.0293487035331126,0.041058987649193364,0.4190791366099048,0.024840332160754163,2.519384145321494e-05,0.0009020958637036038,-0.009843433280130648,0.033459088990790725,-0.09340359860128017,0.0009618420499600884,0.0003791500351299589,0.010520430158543072,0.07756259234752733,0.0025386797228783967,9.032476179100822e-05,0.004349895231883615,-0.003967593142753402,0.005670183047659288,0.0008088649339174694,0.00016514880595686846,0.0071094218305107456,0.015118151639697817,0.019307725156277645,0.008983305501851882,0.00044943977340173306,0.004522800709472691,0.007563212385526736,0.029845937460572295,-0.07098168951699069,0.001964135353001978,0.006497006327351564,-0.02138573821533641,0.09615466054257532,0.01013192945598611,7.135826427685092e-05,0.0094848490110869,-0.0030718714095589253,0.004241786908128898,-0.017859153746604246,0.0018002440174260852,0.014768376713807053,-0.03931479189792694,0.13271641306805396,0.021729562620937615,0.00011736737251677072,0.04599186150877172,0.00362532477181326,0.009152763737943373,-0.0002625906349295192,0.00016056653766957264,0.01159752103114587,0.032956551108472,0.1053566704881134,0.01761209968990562,7.634729318466209e-05,0.020381945187696728,-0.026232863574684025,0.09938397221993188,0.0012040026283016048,0.0025017701581297744,0.002774265887249477,0.009692039128883669,0.05052756630472308,-0.0010423362995088455,9.541734956534478e-05,0.0030566063915554585,0.024264368534922726,0.1560753676226844,0.030141932373943026,0.00011274451206292386,0.01203515956209311,-0.004744308493131103,0.027683939993574415,-0.03000515350713997,8.105759617952653e-05,0.015610847626461146,-0.028685979929522588,0.1459287060857107,-0.09406305032793918,4.940561996688765e-05,0.003837865828117702,0.02021955365174294,0.04257099104643475,-0.013976634420888001,0.00023157261385849093,0.00491749569308755,0.0016010826082005138,0.00694762951680688,-0.0008290850071028215,5.7304861115950436e-05,0.011046043403357544,0.021623378146299936,0.2232358706577505,0.015276148613480003,2.499141510955211e-05,0.005396109960818231,0.024244757458519756,0.0680662267073673,0.11965442573219216,0.00012450739092490363,0.01901757245904753,0.0028364357274952155,0.010687449074221006,-0.06428508431447515,0.00041833756063244814,0.008865001226619141,0.03165318193513813,0.14157022104552464,-0.011144146699844773,0.00012806110939820277,0.01804373432060687,-0.002659690264022246 +2023-06-12,-0.012167712476750223,0.0928732555472817,-0.021630155231670497,0.0001385494650481244,0.009956227344958714,0.009769930376006519,0.03636099624738717,-0.0650598487976292,6.447126943406967e-05,0.010247379203595978,0.021452260979933777,0.058877155393585456,-0.008177352091092193,0.00016854794315912777,0.007274236942239262,0.010018556570343158,0.010595757117271282,-0.030552198341755356,0.0003191104427616223,0.005490313979400341,-0.011135130418385583,0.027722344859582415,0.00010756532722242871,0.00021016631938738172,0.004036152759724101,0.0024616814749814603,0.0063194559039787546,0.003336769210654856,8.505481601986437e-05,0.004854763964935603,0.02130432240395639,0.07507300637535909,-0.005251291648611457,8.326716395005082e-05,0.02081619037430452,-0.002422760045880372,0.027056094656769638,0.002266401929021577,3.070746092392524e-05,0.004972446658811514,-0.0026661555377960554,0.002284426635277136,-0.15447862225154754,0.0009000218501217023,0.0025900537717729486,0.03220184081656896,0.07067233598084677,0.004182363651377149,0.00015932837935465907,0.016516710428667772,-0.007139992997402263,0.005145716376390915,0.001250427945767397,0.0006782289118966593,0.010153972820403789,-0.01786813451309913,0.21942832012001412,0.0590178534290384,2.4266621952747887e-05,0.010012095177091028,-0.01750566488011015,0.05061322953910986,0.006708423279077529,0.00010274615970007042,0.0153740260660119,-0.02665509602227174,0.1472888247942111,0.10217138758458817,5.094156379348831e-05,0.006178679298434533,-0.010826504812233007,0.007926797344715799,-0.007959504533612898,0.0026638728441097837,0.0073058722699616795,0.0011742711236989401,0.006200389824937737,0.004612887852401424,0.0001558480936179587,0.02611476165182213,-0.02082440360508301,0.10726017944054607,0.011983108575204918,0.00030063690038934556,0.009979946957833486,0.004654983045496539,0.026677165557128873,-0.04968309230654315,4.91517941880081e-05,0.007352854775141911,0.029098764328393874,0.15931848379058944,0.00881744261691518,0.0003010198881079505,0.005333125519632048,-0.032280216069163675,0.3571223197860166,-0.015248220755567978,3.7510225092598876e-05,0.005876682159400534,-0.0036716558085879746,0.04015651708136546,-0.01577380828076031,3.05483412697312e-05,0.003718514609243938,-0.031025681007293585,0.08813915812877106,0.047719617383690786,0.0001133901110900452,0.015387511884140578,0.014937307904900918,0.12186906337356544,-0.016971834256920892,2.831204474408475e-05,0.005814389448831971,0.025622325423513493,0.07667625081570467,0.03353300047362577,7.408581379312045e-05,0.007576755008672217,-0.004649145623679193,0.016371508502465337,-0.07370185593857503,0.00012984733701085677,0.006825048817758899,0.024570753383024183,0.022298206892312163,0.0194998489547853,0.0006298310884526315,0.019720789653331922,-0.0038163578308855733,0.014519149076946233,-0.012075741666192946,0.00011063535483318542,0.008175795184643616,-0.02127353726655414,0.08181348201897742,-0.09983536820393996,0.0016689141861431756,0.028916385286310874,-0.016344819566788963,0.1821350615017301,-0.008724889314010754,2.3076437777069418e-05,0.008302950016827043,0.032474025651621156,0.09536785146273592,0.015008850536982326,0.0011132825469122218,0.006144291775743075,0.010765174276366429,0.07539831447932083,0.0017829451466024298,9.507910190550742e-05,0.0265359776315512,-0.0047917955650026755,0.008174201852451475,-0.0039367875593200735,0.00013835609937597212,0.00458059536601977,-0.006777472669931557,0.009837975631108891,0.015934468654602386,0.00039542665985879677,0.013802024212633393,0.00932346462442861,0.034923996171565684,-0.05301832954567541,0.0020692060358070757,0.007164764437004643,-0.004028998052124288,0.018236554496709922,-0.07956126922668487,7.088341603562848e-05,0.019388473474782442,0.048082609779416516,0.06224852668721409,-0.08320689261558749,0.0019201543775290173,0.006253583761842134,0.0067914669071565065,0.020622829826759042,-0.036613134287069214,0.00013047622025991225,0.002422680852961082,-0.004472594094700788,0.010512664551189667,-0.0690799120738045,0.00017246741553924411,0.00618653928293769,0.008123812594187227,0.038407320717868905,-0.1412593602024061,5.162496964326448e-05,0.0027834341385883825,-0.01752502497574369,0.07250927377970726,-0.012548144682929223,0.002290778761969869,0.008430689440069184,-0.002717215847602228,0.01148121305602502,0.010028373054302549,0.00011772723209736108,0.02644690158659036,-0.021689194082061717,0.10921897152518412,0.025989456013062923,0.0001440144654524614,0.013407515067111181,-0.031214720275060635,0.1743323070433259,0.03173892753735832,8.468963647588045e-05,0.013066079359614775,0.029533088023848447,0.14364863959415777,-0.017217786533311456,5.167193643703759e-05,0.002688961573264541,0.014290057424433596,0.029797102666432138,0.0012241425767300382,0.00023382413195403447,0.022188383589106617,-0.010316961965283788,0.040696913391062316,-0.00013560755793858234,6.303833494082338e-05,0.015585043970641196,-0.017467465114242645,0.19010807727594664,0.0037094866558934118,2.3706126664098436e-05,0.019178373228325447,0.013139766754958624,0.041667956502218426,0.02368232425239168,0.00011022863223135558,0.0007047871247574056,-0.014421213631052397,0.05277836278224335,0.044796048193611826,0.00043069900385044117,0.007674213328515128,-0.03203592247996778,0.16735858210891855,0.0247062164880154,0.00010963798427094939,0.005288801507541062,-0.0005879124596904976 +2023-06-13,0.028749445530301686,0.18797992799712568,0.05749320055181719,0.00016173521052852857,0.011483305422743997,0.0006541286217526097,0.0024590263525287146,-0.011300817429234595,6.382789118489321e-05,0.00867766777895753,-0.007036756229305011,0.022181162007395335,-0.057109699795058075,0.0001467524690810895,0.013810050612068902,0.012774658897367714,0.013898212185552577,-0.06271238548542582,0.000310211741014842,0.004580738005379272,0.010252800642422576,0.02016721872958522,-0.013189562472719308,0.0002660077419719447,0.005654258864068153,0.01704623803125954,0.041510055701906155,0.060816254085445706,8.966479754882416e-05,0.003249968121260118,0.015376929066044993,0.04606419959774322,9.135905514944816e-05,9.79480821510598e-05,0.020909469113614684,-0.018947589312516912,0.17283418754722588,-0.09653914606568877,3.759437982468072e-05,0.007122476553655867,0.011315277639411061,0.010932007298867782,0.03965104611848419,0.0007981969945742364,0.0017140315790846778,-0.006376784736951413,0.015473267767399082,-0.00036445153416378445,0.00014410584683163542,0.022993438848181138,0.03706511720626249,0.02723600233103185,0.07182259709775159,0.000665191013391321,0.009781379932362869,0.001010775488236733,0.013805106966944152,0.0003482892493579738,2.1819144320805444e-05,0.002033880985066189,-0.006618961951556166,0.020560820781454905,-0.016368923155487852,9.563139145536216e-05,0.0069824084151737485,0.01054608083679654,0.057568131493719914,0.031860704443943316,5.156687108587124e-05,0.00286472665695907,-0.026971166163582902,0.017937547161760103,0.018829472771451358,0.002932645992266935,0.010956413583975727,-0.023848087803253915,0.16953003076065834,-0.008548435049554711,0.00011576013616370899,0.004012268732478632,-0.01640515598848924,0.11452364270376145,-0.03430898204642945,0.0002218162928539012,0.016198070322892225,-0.0025006483219896375,0.012310863516561783,4.5722077069125896e-05,5.721699676072283e-05,0.04912631054726494,0.009416156461296442,0.048450748833412466,-0.007492932240877309,0.00032030224304258883,0.003535149618759536,0.0015761739329186245,0.021281282677188193,-0.0002619382281262557,3.07352373733164e-05,0.010584269769070221,-0.007216995529876496,0.07316346335527918,0.00852948583437644,3.2956712983600234e-05,0.004038050649236803,-0.056010565398979056,0.1554480668698824,0.25098841637393643,0.00011606663321724764,0.002167326756814094,-0.01011696362181229,0.0876097065177058,0.010382093738009468,2.6674134639151684e-05,0.009625031229305357,0.005413620642768096,0.01540461225238281,-0.15663298694129896,7.791380796020113e-05,0.016544567885901834,0.0035395162686182487,0.014166846078064631,0.0016576243730721321,0.00011424029951598201,0.009692932501109426,-0.04300125544920011,0.03551693662850671,-0.028920276415028676,0.0006920240634783916,0.03610377901544372,0.04395138434246811,0.16656360600729955,0.08225009041588992,0.00011106531514207263,0.016690193957361276,0.004345989801773366,0.017872403342520323,-0.015277875487604953,0.0015607197299573972,0.010818753426403874,0.00501787508730928,0.047128050198782794,-0.005329133596417602,2.7379314406277827e-05,0.01667711467933393,0.008050595722291767,0.02245525366332393,-0.0003113271973854051,0.0011721449547353836,0.018299308191625212,0.011975902131207864,0.08848454538752383,-0.008343979734932713,9.012939535291656e-05,0.008941144746591285,0.047347510888030804,0.06670325298479737,0.08728656212999777,0.00016753113267427291,0.0005328098746474465,-0.026141903281050715,0.04110515248113257,0.12372459992593092,0.0003650436966965182,0.021122061306300264,-0.04747841695767217,0.1616967962759057,0.16347992926263338,0.0022758579730702676,0.010138160083580006,0.002413994375700249,0.008438477229187426,-0.0037608537406729936,9.178306185121752e-05,0.004613224118621204,-5.8376264706298064e-05,7.114964902847073e-05,0.0002455787164218036,0.002039579941741406,0.02909070679242646,-0.01278762191657603,0.04702051786787058,-0.020239209423656482,0.00010775028208669736,0.022410708262030312,-0.0021026765677468686,0.005647961418564646,-0.009617112869293652,0.00015091803074460843,0.0036257120699444327,-0.0038014752279881352,0.016136934767157447,0.0010908562753105184,5.749698162045063e-05,0.010541178787584236,-0.03755428524775402,0.13026525359860572,0.004363537703535907,0.0027324295245477696,0.002518637786037575,0.026545271847110297,0.12241627753371247,-0.0568037824803979,0.00010786699464822584,0.014288972144965148,-0.005494401769959765,0.031359455113021135,0.003363233069362262,0.00012706112310875437,0.0030866681821521877,-0.011341844717258532,0.05970580018425608,-0.011063525345500456,8.98495430097195e-05,0.0021814435764188054,-0.051281522729112704,0.21407864321058412,0.06710566070661812,6.0205333119291825e-05,0.003843809277837071,-0.011618557665154742,0.023722616034601383,-0.05061887969375042,0.000238791592750096,0.02035070700179395,-0.014659738439436062,0.04663209288475441,-0.0033463493606160273,7.817280401944101e-05,0.0027358244849361463,0.00946931467690023,0.11859863515612158,-0.12938181925653244,2.0600138641643792e-05,0.010299016708280961,-0.017742143824288154,0.06244828930453702,0.021867058431549038,9.931035037446026e-05,0.0005119895476779936,0.00018196669775577114,0.0007237697530599377,0.003409883571374442,0.0003962957867090714,0.008929228230200474,0.018060701766347245,0.0834513283141412,-0.009115601194129658,0.00012395760123453387,0.0036673856124470362,-0.002549305802471471 +2023-06-14,-0.014523546297213691,0.11488621859383859,-0.10865058161298866,0.00013368766017073948,0.004807737114110484,0.02233316666296898,0.06988927707188017,-0.0050241882736309544,7.667438218551252e-05,0.010122604035014606,-0.019327863254351207,0.05587837556023007,-0.05418616085451437,0.00016000637142956514,0.005270643645317664,0.02849469683817644,0.027398542783924326,0.02395370720923458,0.000350997830390727,0.0023720958811471434,0.0252763756922336,0.058612810047895134,0.03441715885715366,0.00022564204705862264,0.00392970512182278,-0.004364150385075578,0.014015019501877734,-0.004650854497566417,6.799120544159343e-05,0.008091401776946441,0.026478989771683444,0.10112726079821181,0.009083021046625592,7.682861837450299e-05,0.02199422717982155,0.019883122886793312,0.20053838572775246,0.03241511272623754,3.400053075103987e-05,0.0006501105593308268,-0.0026594473165338648,0.002358891678230003,-0.001189489451739558,0.0008694171039265251,0.00397946501702773,-0.019992832710035362,0.0481743213505282,0.01964820915494757,0.00014511777571228892,0.012508946181794928,0.006967264771048106,0.0057385465005506875,-0.012084571841250027,0.0005934508661819463,0.007421098807004423,0.02496541713851324,0.3700426429047913,0.1162295007663391,2.0105266875118004e-05,0.006660226727080353,-0.03514584464539988,0.10442859650641692,0.008986450478913471,9.997826172800685e-05,0.0018621001214893,-0.03937110457369618,0.2555007466442732,0.10993850890944105,4.3375774655963525e-05,0.00428682453863306,0.03933416907290314,0.03836450503790052,-0.016025000259805532,0.0019996931240624516,0.0035753867050344708,0.0046430487457223835,0.029841779589869513,0.0024295361969006147,0.0001280355680400987,0.001264492357641007,0.011100633006734702,0.06449290153244895,-0.04678074652226618,0.000266528748793008,0.020179502653472573,0.06938733113888773,0.3685297507389865,0.08361884051848414,5.303573427738043e-05,0.013316085733837605,0.005152606345856965,0.030546487860005356,-0.06617168021185128,0.00027800492381036907,0.023594007298670096,0.0747867586382881,1.168422730787046,0.04813237797725598,2.6561643576181566e-05,0.01593717066912599,-0.011199729420863192,0.1285238343527346,-0.0044916170528675105,2.9114247246736027e-05,0.005773365142472637,-0.03882005961455004,0.10379874662580074,0.06866036718867241,0.0001204722008604812,0.006410125854112447,-0.06280252972775377,0.4333394745150459,0.09160465771110961,3.3476593710217744e-05,0.024131310305293932,-0.02382797653552327,0.06286606337594235,-0.011323568481262156,8.403269269406237e-05,0.005389401712300443,-0.008679460862985799,0.021007467451388036,-0.01777762509828219,0.00018891552323646943,0.0013296442605136504,-0.002650366240304493,0.0023352952186072714,-0.011026705558862438,0.0006486936732214521,0.010197653405910296,-0.02954871274232752,0.1231309543598241,0.01580608831501949,0.00010100836225466671,0.005490862362686,0.04274727853097036,0.15989658527491055,0.02675705175411307,0.0017158861015490906,0.011325857894094222,-0.017059647178803913,0.17894729815986107,-0.06964130210075985,2.4514728890516814e-05,0.013228922641397948,0.01510840127154716,0.04280713607673977,-0.040227571768240065,0.0011539144383586493,0.004881651478397916,0.025665792568514426,0.2032298588397104,0.04310450927619504,8.4099382635902e-05,0.013417161810005759,-0.020971913001770946,0.03528376402940567,0.014305677876779744,0.00014028412407376018,0.005242192801231326,-0.030878716726747555,0.04590952621298463,0.09279051557096764,0.0003860649247508395,0.0009072608997264437,-0.025922849004390795,0.08083700961589493,-0.018978032780294668,0.002485551877233421,0.00831630951658528,0.01869871259329509,0.06819728690425957,0.015486972160893633,8.797007846679598e-05,0.015273693288479424,-0.04578610399570553,0.07732243181238135,-0.05486399717276033,0.0014719917567043049,0.018416150187917247,0.009996851754819144,0.036769999402927314,-0.008635080598594908,0.00010771735124071402,0.011448262408222254,-0.01516973877269974,0.04146364494984571,-0.06831823382696686,0.00014831019340730663,0.013052145235066051,0.0014932203244365967,0.00686920227259236,-0.0120414967776167,5.305563449366714e-05,0.015432265791638268,-0.018233971852550764,0.055066038410737164,-0.042982232620304865,0.0031384520995036825,0.007502735086082792,-0.01664598306319947,0.0640343644580045,0.003101455959084689,0.00012931143035927644,0.008553856405833721,0.015448052116523737,0.08120716150932579,0.013014327724202638,0.00013795586854178552,0.0037123278360597666,-0.02812505103462872,0.13943245978069613,-0.0321416767486808,9.54065362313091e-05,0.01993780059445425,-0.002244538058203949,0.011390369216910357,-0.023526358814310137,4.952637784860779e-05,0.0006066608094369038,-0.06126196657503872,0.12053394050703374,0.08692635141811689,0.00024780551829431077,0.021683409272374048,0.001421905651606304,0.005304750108777634,0.0005424938765696105,6.665308048996062e-05,0.00809006250351621,-0.006907955158168594,0.06486677943090399,-0.04250157674509723,2.747631325159512e-05,0.009136630151662842,0.014467976339182016,0.042572261284224415,0.032565589980423075,0.00011879277715580245,0.009088576285039309,-0.012041351180978455,0.04441275438801667,0.029229259889975354,0.00042736158899131743,0.00768371757470014,0.014842533874325258,0.06505816766951504,-0.027579273552958136,0.00013067063973710026,0.009176409995842487,-0.0014689346213483283 +2023-06-15,0.015122830874638643,0.1107810239824063,-0.046231287964358894,0.00014436246998157117,0.012241826735629577,0.019146953070268452,0.08463327465993521,-0.029804209367700767,5.428365158236844e-05,0.011344284753092772,-0.010177632984486156,0.03464808987300683,-0.05807859859905821,0.00013588286434116183,0.01322391591958746,-0.004854015448210067,0.004829561565392281,-0.026127518369104333,0.0003392042646694465,0.002079785595557225,0.020301116137747727,0.03665235654131039,0.01914980476351349,0.00028981161392848114,0.0030616815648068377,0.01467663469165366,0.0426415221309018,0.04385919423168274,7.515199700476046e-05,0.0028127945465722505,-0.010830839678965145,0.03604053738886907,-0.1322322309982347,8.817809753122634e-05,0.02373473797293816,-0.00942692639587289,0.08507159774910689,-0.023261040266936858,3.800004765080306e-05,0.00267570549220771,0.005242142405192009,0.004440692431480971,0.0075732931606968465,0.0009103384927603549,0.00489018613541051,-0.0032879923167288168,0.007527036982823415,0.002441056673459338,0.00015274557248378371,0.02525473988078852,-0.022397925838079286,0.014172053179527766,0.02781694690308133,0.0007725015993625212,0.0008603773344052696,-0.02759857451996731,0.42040614753447203,0.11806006307678288,1.956322196697848e-05,0.00040715179304404603,-0.054518556357809556,0.1744071493261245,-0.1727905785296899,9.2860517905314e-05,0.0177745653954312,0.008576675463897905,0.04541910950022249,-0.0025481916851675,5.315476227855404e-05,0.003732083835596647,0.013220790448691991,0.013106996008385389,-0.03129485191747383,0.0019673300564459553,0.004016957223791598,0.00358280318311884,0.02451020647650321,0.004998780677958431,0.00012028960238933058,0.01996653958763131,0.012404059845166385,0.06692592603135528,-0.03857150886438379,0.00028699722380875976,0.001755971286168771,0.0007273751986093681,0.00396388534858199,-0.0007710512855610064,5.168902739030108e-05,0.0005456134566110589,-0.007482650346358159,0.04063070784747795,-0.010780139142029568,0.0003035203894082139,0.015748499988819283,0.04078375181909495,0.49250648686060067,-0.03370615430878012,3.436413777562894e-05,0.04357502147960272,-0.024881019133107064,0.28794437135802015,0.030378327769011698,2.8869634179605434e-05,0.007938817395058171,0.015426298142539265,0.053252379531163754,-0.03728700987020471,9.331371028009869e-05,0.004358837734605873,0.025022431692577056,0.17697796749261033,-0.0001259901471180392,3.2658985153340434e-05,0.028334530881355485,-0.008439681365574972,0.023735042813682272,0.001961843429257844,7.883397282319159e-05,0.0027791738204872587,0.0030321816529599913,0.012181572399558417,-0.0153004679743914,0.00011381525099771794,0.0015065730305371993,0.015843031909865506,0.013651036836107331,-0.0653581237552718,0.0006633583799054714,0.018054675296435518,-0.00039119329427059825,0.001578366697702032,0.0003504421596099491,0.0001043204619738647,0.0002366848104688867,0.061032952909322445,0.21264683098662918,0.045080084132380675,0.00184214852358847,0.0061076014417125075,-0.009023918989819513,0.07888637211365564,-0.019332391092372007,2.9415443407069195e-05,0.005230293559171309,0.023673769662246574,0.07137142778595697,0.008110255129332996,0.0010844619097723236,0.00047600879722204325,-0.009724427602630571,0.08510025144022684,0.01186986455135597,7.609547763672406e-05,0.011935193613981024,0.022587718597832186,0.028413924405325284,-0.10776013017885709,0.00018762319800282344,0.004691510660750848,-0.037193456759864504,0.0490362316099272,0.1310676691255032,0.00043536485719757387,0.004698664318828432,-0.024801032806022076,0.09620242136720154,-0.013229135160816627,0.0019981776860399357,0.006258948306161964,-0.01143848118410802,0.04567225666579117,0.007072688807022214,8.035377079654653e-05,0.011390265289882276,-0.054842089294802325,0.06887307723191588,0.033178649039798,0.001979437054040658,0.06562204475091679,0.007713114449134958,0.027289707877848304,-0.0027026455393479023,0.00011198166623058418,0.013657853077405122,-0.00940783225069492,0.022587631682685703,-0.005671799952811293,0.0001688415162575437,0.0038404266637855327,-0.01387464341123094,0.047710834554086826,-0.009432268659239086,7.097718026795383e-05,0.015073440108013144,0.004110440580101294,0.013879897321051203,-0.018642664400345343,0.0028068563003074143,0.002910039029931512,0.039227144990638514,0.17153011884131406,-0.11420732243041197,0.0001137592926277857,0.032724485880283614,0.04953786194144522,0.26027492880535885,0.13074683063478792,0.00013802752686842694,0.0007424033695618617,0.02488438680477367,0.13672268818807418,0.0091408416551874,8.608650045097707e-05,0.0002838226525872788,0.03129266562184718,0.1521385874133631,-0.03255386596183496,5.169524224905826e-05,0.018062543256661134,0.005883365804056117,0.011406677288497336,-0.014936044186606457,0.00025147573785760035,0.023343145379100788,0.005954259564923475,0.02425527552073317,-0.0007322566476040039,6.104300807747804e-05,0.008929079886224003,-0.0311006443226461,0.3040302297929367,-0.04618138488089364,2.639270504415656e-05,0.02208081629670139,-0.025046719307266596,0.09160531473658336,0.03950696443449723,9.55738634394911e-05,0.007923580901961692,-0.014665530463407375,0.06104940690850702,-0.011337026421609024,0.00037865552507228246,0.0015181708964137376,-0.013074556874409542,0.05334475286108168,0.01573765583811729,0.0001403805912214174,0.039642855146919495,0.0006846412830033849 +2023-06-16,-0.01217940816084365,0.07526098538913466,-0.00453398281740026,0.00017113658782809182,0.0034807452344585077,0.00485649722903597,0.01711000436248058,-0.08009079063369022,6.810571420107996e-05,0.002877039366439029,0.009877070834383527,0.03181175889243411,0.002548777334836133,0.00014362752960676246,0.0006416607071853149,-0.01821811803299895,0.016627778594192417,0.06784352754642875,0.0003697746500570595,0.0002980387621064535,0.00803545444046984,0.02059025788952599,-0.0992781317628546,0.00020419562330351677,0.009956019985486078,-0.00039239256399335514,0.0009458863321463313,-0.0049126018427834576,9.057921623382865e-05,0.013178350920530178,0.03204546999611776,0.11402569452942704,-0.019485595770156783,8.246198305650546e-05,0.013249494456101137,-0.03859140461976245,0.3517779643623428,0.05829908855098532,3.762015399968272e-05,0.008739540122942806,-0.007806084485677453,0.007157802582212119,-0.003379224705294158,0.0008410044968081891,0.006141796360944403,0.03193916002988758,0.07468214456282862,-0.1846724265272433,0.0001495438633795983,0.017670379922372564,-0.007038060489467391,0.004598788658637643,0.0022641667782225877,0.0007480556400754436,0.01285726588206875,-0.000333170067922875,0.0051156672512102175,-0.007192246320679825,1.9408254514159972e-05,0.005036698160113338,0.026389385094947548,0.07717995941407298,0.026147223643935815,0.00010157241133453724,0.031256481333122046,0.00798057002358601,0.044814072902607145,0.021998221965979985,5.0128108155860236e-05,0.0048643046906917415,0.012729568826805137,0.009149933499622355,0.003850262900904973,0.002713430663249009,0.003016324189524926,0.020554686387457412,0.11581843488151465,0.01697589766211488,0.0001460445217681608,0.020532036391993372,0.03924144619624484,0.2433742913460988,-0.09098798791101842,0.0002496769993991613,0.011642069553691101,-0.04638475892146851,0.23503532306691285,0.008080281638017682,5.5590825500040064e-05,0.04811126225664843,-0.012836936979865281,0.06476814893490514,-0.028717933334413345,0.0003266530603995792,0.005041487364193674,0.09828070495789125,1.1945215271674665,0.11191663031042828,3.414322290755273e-05,0.016188660716903454,-0.0007927744715835648,0.009139757069796929,-6.0091802954657447e-05,2.897988871056877e-05,0.0026618199599114357,0.04824915741725993,0.12332820821861723,0.16256412911323187,0.000126023073609986,0.006867497261195403,0.02678165983046945,0.16276353209471864,-0.15788622258605248,3.800780242125378e-05,0.016968815270588092,-0.008894708001493744,0.023377927422367818,0.0004240247412511616,8.435349314450896e-05,0.0033955748307114156,-0.004478634714057311,0.015434091798560931,0.003918489641302,0.00013268235112841767,0.0018985807737773518,-0.0786139490737968,0.09024191826428606,0.07665886857554402,0.0004979283523244805,0.008298677927827125,-0.011927282219206334,0.0390280711654478,-0.006895509827921637,0.00012863241292653536,0.009741596098311685,-0.008690162426465064,0.025490921541986466,-0.020816973332698947,0.0021880716152152305,0.022137130984631125,0.00029296430849933594,0.003002262562196599,-0.15520455033865152,2.50927487775709e-05,0.006191102937554699,-0.0024249560209550066,0.008050241043322099,0.0015355950034075944,0.0009848412984054867,0.02384247339741685,0.0012554668425569088,0.010376303631370754,0.00021401908586916654,8.05727559914672e-05,0.0069433874718530224,0.0077322713847767415,0.011635604107039545,0.0003875540674175294,0.000156842421348247,0.00546557750131161,-0.01794699584198068,0.025967508334948115,0.022644885589096587,0.00039670291920198663,0.004182942056084583,-0.04053489530819162,0.1470492502581161,0.08341674598638313,0.002136567324644428,0.014915586580027711,0.01293840922755521,0.04756706848678275,0.004506707599015689,8.726997802239806e-05,0.008884676546116892,0.010015412205073545,0.01234679140058063,-0.0037534460641219353,0.0020164706691704515,0.008633003495814705,-0.01792533783675705,0.049017384348216855,-0.02250945361728516,0.0001448882787773602,0.011599434263079734,0.01347956375549525,0.03320055515625161,-0.03246134741923996,0.00016458523334548779,0.010436524043706447,0.0065052893398640215,0.0265508859731675,-0.04912813576179384,5.9800046979087365e-05,0.00926303935531619,0.013441554755082423,0.04336861063361051,0.008947896865269292,0.002937595905872981,0.003829450971870335,-0.02907737447664351,0.13461535206337943,0.090316177393144,0.00010744870087473088,0.02217836465749965,0.0019007700871605823,0.010177606529250654,0.00021081076268214245,0.00013543930492891057,0.0003826787237101307,-0.019472941377170212,0.10351179607504526,-0.011582177351357172,8.897959217303572e-05,0.005836282626823701,-0.01593269556184238,0.08101030825478,0.004575724554532999,4.9430655308572854e-05,0.014344945666823596,-0.04295817329288012,0.08278321423944926,0.039472669119606264,0.0002530072200949662,0.020529090481144766,-0.013920476489658063,0.06295007224214566,-0.029724169380373065,5.498854700459286e-05,0.017107295654180742,0.021807644625439684,0.28423011750954924,0.05047838314141236,1.979565845961124e-05,0.0021299296843398405,0.02344530190228174,0.06943354620991643,0.058983105637004964,0.00011803082623763562,0.004057127252148716,0.0026631834607362577,0.010505915603210325,-0.004315979300650781,0.00039957209277414595,0.0013699055374146332,0.03142616073776445,0.15683703638580518,-0.017368676666822413,0.00011476633060287768,0.012988123753705642,0.0012945722500510312 +2023-06-19,0.006035455891855015,0.040075423611496803,0.0009069190112764688,0.00015926433867496294,0.0035969018197473885,-0.03935439115244276,0.11495471486590904,0.15350924633146185,8.21442059586639e-05,0.0033256255836566695,0.0015690145603475824,0.004630911440619007,-0.006887298545703307,0.00015673200974293476,0.015711581990850963,0.031449515028406316,0.03141147986868043,0.009408219144598837,0.00033790406121854855,0.002097985574933013,0.005862589820400526,0.011305919976965312,0.0008549829157780488,0.0002713197290363783,0.007573379849869959,0.018731966711318264,0.04336775863307296,0.0414693313663114,9.431117159283227e-05,0.002861308953010332,0.00036660355255133147,0.0015972868052128095,-0.0037757184724978737,6.734473065212582e-05,0.0060708800691024745,0.021448122491388985,0.1779448658480209,-0.09730400276546959,4.133352399141144e-05,0.0022583083560285683,-0.006906922487652019,0.0062419541347239794,-0.025811439319827666,0.0008533138519430632,0.005075453558993216,0.06386443882379554,0.1324167573274324,0.12158464682066937,0.00016864677406751047,0.010774879503809447,0.008043561728694394,0.006483068434135658,-0.04216288934763783,0.0006064460216179339,0.004010134832849944,-0.004877503928289676,0.06299513375022245,-0.0010670351368470444,2.307349668598265e-05,0.000584762163314934,0.021182141783562983,0.057484033402702535,-0.05196858075614879,0.00010946459522250222,0.012465944647937358,0.007162717808475407,0.03821299986219683,0.0005893204241095945,5.2762884140289926e-05,0.009806382469380625,0.002337613541211983,0.0020524730764036486,0.0002719210546807538,0.0022213562699870473,0.022431987311259696,0.007905233005457158,0.05260291981202896,-0.0005553378546133327,0.00012366788457146975,0.009474204522045369,0.0037196181045094402,0.02135387724874549,-0.05006703656813753,0.00026973036677141113,0.006061287674710178,-0.023595889366477163,0.1315593988664054,-0.013690393809340593,5.0521405820485675e-05,0.009846148155274088,0.00574108654430533,0.029063932759444574,-0.060618666532590904,0.0003255566126320029,0.02274238303571263,-0.011611908152665398,0.1771086069183859,-0.03698410938165777,2.7207845716063267e-05,0.0015170456709479824,0.003117963440840487,0.03405357777761089,-0.014419214902792493,3.059073984935719e-05,0.0036978596711248796,-0.008437742779905534,0.021715942697264883,-0.009488777236861354,0.00012516138227621314,0.014515114748300305,0.010059052870636255,0.07147518191960225,-0.017643677345755965,3.250829540071014e-05,0.019930084041711878,-0.0034157387338020154,0.010251966766317842,-0.00634318685293899,7.38677443059272e-05,0.0020433404130234326,0.0030121838909903205,0.012091938683722504,-0.11478661383866702,0.00011390273200485232,0.0019373614291544885,-0.03855067624228846,0.03973413424470266,-0.044237522057024435,0.0005545539554727329,0.0036894842726722336,-0.0054223071636495925,0.0239940822267251,-2.730712685254052e-06,9.511871666143147e-05,0.011325372020475032,0.0755427649100763,0.23794661164845612,0.08246057597970938,0.002037663781153103,0.00960491111172412,-0.038757898323076946,0.3409887322310754,0.007405827292897298,2.9228221246066964e-05,0.009292777383038263,0.02121391777574118,0.05501719199271335,0.0017619132028866547,0.0012606476837468091,0.02947860810955404,0.014572695698965339,0.10296710308733356,-0.04078789260592442,9.424689370719399e-05,0.001500626542583426,-0.01848742542630591,0.026062268876086515,0.01850012387920878,0.00016742087235130149,0.0149160921385987,-0.04664293164205517,0.06852747710983685,0.12509150311080075,0.00039068344609280914,0.007306449971194671,0.03561620168679391,0.1320811021193683,0.022485591288194065,0.0020900528066362077,0.010415877811498385,-0.016775410585701336,0.0687322306623855,-0.04195833861356363,7.830745147510992e-05,0.00791060815301757,-0.04664881831893405,0.06631762087874489,0.019641458802800216,0.0017485936667026307,0.01604329797837821,0.028528716925253817,0.09559510414461421,0.015259785213754323,0.00011823951117637763,0.0010944192528792058,-0.014473346396555536,0.03657718320271329,-0.022991122915314,0.00016040543336653224,0.001152511838572573,0.01613981950108755,0.08889376071042114,-0.03690155987355229,4.431403729065465e-05,0.0012923810249312615,-0.0264401985556745,0.08686168272602952,0.0010547323979885508,0.002885057888658213,0.030376596456632127,-0.027356496089289778,0.1446146049095831,0.0690994946474951,9.409984022443532e-05,0.009584783871150313,-0.016588516930634768,0.10425560328098916,-0.13764712189729644,0.00011539020344822585,0.010126696729318565,0.0005203713856828171,0.002868877699005687,-0.020464014551779004,8.579264781086022e-05,0.0015422196209635684,0.011879286675382728,0.06545879551103648,-0.04662138549695055,4.561101618903036e-05,0.010232513890904247,-0.07585341083268451,0.15338627368681412,0.1144266011686182,0.00024111154791850548,0.016819773692055406,-0.01261591609987397,0.05934987204597453,-0.006545970181960597,5.285832306988873e-05,0.006681062024299172,0.0008352129643324434,0.009014366110297514,0.004082023306681649,2.390525164695894e-05,0.01579506842395033,0.015316891248832188,0.05068386113074665,-0.014835213542500055,0.00010563550213725281,0.005692787507893715,0.006437108979219671,0.025586183901126627,0.0005240880328538636,0.00039656402656161973,0.011129226005609477,-0.024477077980223375,0.10138044411047771,0.025818935632652515,0.00013828566995194256,0.010337417379557116,-0.0018059403239826432 +2023-06-20,-0.002984203018576588,0.021169638341052746,-0.0020097239943259082,0.0001490738647027371,0.0028621845794099448,0.051637669005171874,0.17382350284061357,0.08082149766291583,7.128015879324541e-05,0.023663398698277372,-0.02124893460303747,0.06471422720134998,-0.03679166220363765,0.000151891893146428,0.020121307460722725,0.0026603981047351095,0.002847664746034407,-0.007355159034938798,0.00031530120270268703,0.008762621397847337,-0.0006924775465531911,0.0016598103447406484,-0.089852445222249,0.00021829560968694687,0.01180196325594403,-0.0032282492651095583,0.00831905355600046,-0.0351903351579966,8.473052170553364e-05,0.004699436944490696,-0.009140772492072409,0.03377583748752469,-0.03528598940693346,7.940843347897257e-05,0.020841605962691894,-0.02126864760332315,0.1893174581712724,0.019612004463288923,3.852545930866154e-05,0.015576965151429782,-0.011609624870689655,0.008714593486404043,-0.041287176469581674,0.0010273438856396087,0.0040857552169125755,-0.03381352452113082,0.07827937273993846,0.0328856442417104,0.00015104452606855238,0.011639427083991417,-0.004039349573868894,0.0028212188512363014,-0.045852243947248274,0.0006998404179093025,0.006668822413773276,-0.011497176162175422,0.14212537351976343,0.0019765461291218218,2.4106954940358826e-05,0.002457286012584791,0.001906940292987441,0.0069864591604992185,-0.04229813180337578,8.108322397468265e-05,0.012505511873976931,-0.001609253012155656,0.01098875923098452,-0.0031551154766653513,4.122280036705622e-05,0.007029634129644726,0.01823414439739024,0.015691232057155224,0.008265496781649317,0.0022664770041733026,0.004506313997883114,0.004199026716928728,0.029322129608261464,0.002268976251303221,0.00011784339251162358,0.0213891826264536,-0.007005037805591496,0.05416623745482987,0.0015980751031184387,0.0002002580791396524,0.009084999403246186,0.03453537339713189,0.1838662294625704,0.01722022636689551,5.290821891821557e-05,0.030618071840285963,0.0031025699679868802,0.01836930049408768,-0.14932385616523886,0.00027836573355099033,0.0048958506447266455,0.0005019854165706939,0.007520891346568991,0.0013686052498326645,2.7698229995898277e-05,0.006179644641408162,0.011270493031670084,0.12950016087734587,0.00680310714247753,2.9077315983264246e-05,0.007555987437936,0.01547178227941351,0.04076372037466946,0.015811672742452862,0.00012226137826837477,0.0050672621795126715,-0.0027244522959638793,0.017601919849334374,0.0020863024913695175,3.575292229305898e-05,0.0018536368336575385,0.022114418039916716,0.05751103084030258,0.026193722436623313,8.525144427552632e-05,0.017235399699020357,0.007728699796360775,0.030959077164787654,0.0024576629229341885,0.00011414766378976633,0.003210946795150339,0.04036467574405484,0.03464610386858861,0.050585857365808465,0.0006659208707358363,0.010350736740417938,-0.032073847958737314,0.11145355609264829,0.020761746555310386,0.00012112760923438945,0.003736797153084433,0.021440896044081288,0.0608761926983704,-0.05752310856844594,0.002260552630321482,0.00021744619932188023,0.04587107959632914,0.4180123380868036,0.012084336937406112,2.8218378613753955e-05,0.021974280431799983,-0.002234671066310943,0.0062895404062899875,-0.010093697613188622,0.0011616250375242215,0.011032360583876074,-0.034479258944882,0.2338093802806861,0.11799825947554489,9.820229456753105e-05,0.011832735706210637,0.004804978399168937,0.00879775916285506,0.0016344750303206599,0.00012890351404765555,0.0015388269964454358,-0.007854408466391311,0.01015790623194646,-0.021552912499191595,0.00044382646693487534,0.01826182814980205,0.003953230037686502,0.013291845989552041,-0.03312128901567389,0.0023052452043043127,0.00483264102671866,-0.025775222875086257,0.10970434572949253,-0.045036962189925575,7.538222777018508e-05,0.02838759677971027,0.007607529553950328,0.01007195358771985,-0.01566976853775841,0.0018776174990458242,0.0049138338899742335,0.038224617645584526,0.12094720125236168,-0.12149386711403677,0.00012521701981756833,0.0019918359365903556,-0.002010444655742809,0.0045373087714602675,-9.308089485754118e-06,0.00017961978141318497,0.010259589173772508,0.019097287335256743,0.07824923272372772,-0.0423085770521659,5.9566971428689603e-05,0.010340263372689316,-0.04665315568780994,0.14272356953313603,-0.0233892761034625,0.003098156732060332,0.011276720617483986,-0.01598011908757045,0.07643306101382863,0.0037386117468498127,0.00010400143446996452,0.007890392713135491,0.019508256635921643,0.11682914430081619,0.010921965297779541,0.00012109551229614224,0.0013442522243642266,-0.02210130857533117,0.11389201662912156,0.0096205182669835,9.178535755031426e-05,0.0045655260248548,-0.010414640937369875,0.04453604207224757,-0.0028257077935716505,5.877330022751512e-05,0.006350434162632592,-0.07216420008879602,0.13420032136817817,0.07373984743316006,0.0002621788415887227,0.002678248203800123,0.021556314767241225,0.09748814048296671,-0.005259456256436373,5.498409811270736e-05,0.024246568132206738,0.013848258734245314,0.13309864594149023,0.005883698475738976,2.6844345347059214e-05,0.01396632973321539,-0.00922950617990916,0.029269027839116887,-0.03428969656643949,0.00011022475235421667,0.010446785540410347,-0.0195385857035709,0.09441412476017229,0.023747175274727486,0.00032620012538256665,0.009112999994380751,-0.045881747783011434,0.20471348041052265,0.04923515019201755,0.00012837052201419066,0.014353211386579608,-0.0016171422113950354 +2023-06-21,0.020516952678771804,0.13501594831677727,0.037266045723654835,0.000160699442295558,0.01757179699726595,-0.004048236613630192,0.012467932577096857,0.0058114740938793475,7.790798464167269e-05,0.0006645357332047703,0.003114354840291911,0.009846272906243729,-0.023868363394161162,0.00014631654211595322,0.0030151900575887554,0.01601699557187164,0.01580357799752638,-0.008760188472701763,0.0003420530660157307,0.004138199055353953,0.010183074826507574,0.021064636994168637,-0.0009228088026325153,0.00025294303659344013,0.003546546875832137,-0.009413505332566787,0.022577536313630568,0.012491345974819204,9.103776000471358e-05,0.0016496848692240977,-0.03508733362254995,0.13128920796544563,0.03998241061928455,7.841717508887591e-05,0.004896997472598344,0.07041539440140032,0.7239576379812773,0.30584755468083225,3.335439566212382e-05,0.0049970346136926184,0.010142670736987847,0.008961359389730915,-0.006105686539135884,0.0008728170452344861,0.009073252673373331,0.0008454327679995659,0.0023049282848579956,-0.0029382201418990993,0.00012825772893881347,0.0020053725013594375,-0.0058524618470672946,0.004502727886983637,-0.012881044516207741,0.0006353122762116722,0.016731927435743466,-0.017759794841257937,0.25882026990179285,0.03417860010350694,2.0448546726204614e-05,0.005834828935775172,0.011947367100800391,0.03476169719533462,0.010564196454177353,0.00010209918466398022,0.005023247178655721,-0.03052410094789844,0.1304781931697012,0.05464682789393437,6.585166579512768e-05,0.0012487296080399288,0.010998443233397404,0.008220302637989452,-0.014500718673077269,0.0026095545718975016,0.01219165076989554,0.0768842378290338,0.4686604552893692,0.03465727174661217,0.00013499917396616576,0.021775237153246495,0.06342994298621779,0.40660923319571857,0.12068963349974449,0.00024156016449367352,0.011296054468732901,-0.008395680462321177,0.049593776990180735,-0.06624144280047761,4.768586580511552e-05,0.0019993024359017874,0.01316664341895525,0.08110975523516309,-0.1023145210878638,0.0002675400418771907,0.016297659313371262,0.02937948544434009,0.4096135928149799,0.003326803442036011,2.976460040586068e-05,0.004127307202111947,0.0045206891225048704,0.053411255903046156,-0.0006224636341975637,2.8278317199602667e-05,0.016207992902733465,-0.04129895649566426,0.11269147864572576,0.014783024741397026,0.0001180512953522972,0.009141604993355637,-0.038579347021410186,0.25742306686107624,0.04454168686404457,3.4617825841585896e-05,0.02635282952487284,0.0038582081692268666,0.01084298020225053,-0.010887217961691,7.88886226771032e-05,0.014950823232709451,0.005110595581288245,0.018706827091554756,-0.0763949940314749,0.0001249165492786974,0.006674373758396031,0.035896118066879146,0.03177921811059498,0.0055109338069686655,0.0006456242563825661,0.008984110871182399,-0.01868802363162969,0.06767685571216144,-0.10696724463413024,0.00011622758409108517,0.009118943222507433,0.010415878727157657,0.033311323665447305,-0.0010053189363282173,0.0020068882912719775,0.021583672667642023,0.023212369869851292,0.2115565760311788,-0.02751753813025464,2.8214681222841925e-05,0.009540669286957747,0.05037562648790444,0.2079508116144934,-0.004587696088641365,0.0007920108118907378,0.003372618711412292,-0.012406741196082463,0.09903858539495823,0.004307391142490951,8.342168114714838e-05,0.011482200303968525,0.004053530893869599,0.006046279920617327,-0.09848460759366533,0.0001582306543434668,0.022282649168119735,-0.01855019977507191,0.023095639544545854,0.011390224897352813,0.000461022914611336,0.011055716526300064,-0.019185274497078193,0.08120414423333204,-0.03412317187701567,0.0018312184890383915,0.0006024838873328353,0.005117318190738909,0.018410444782731416,0.005653472000343673,8.918021426206376e-05,0.004321096484325175,0.014352953102768042,0.021458122785395745,-0.06937594858865337,0.001662749138908474,0.009107775803869806,0.005281105006409782,0.017663436531127532,-0.011742219863837796,0.00011845833857372796,0.0025511208310401157,-0.003885830470137491,0.010227509064340837,-0.11836905903780538,0.00015401901883493893,0.000939120984984744,0.00231870562201724,0.010555927193466088,-0.024298674855945387,5.36121413465044e-05,0.0005846456948472144,0.05128667079141163,0.1454947688056199,0.026199190671922917,0.0033409900905172047,0.008205470706805546,-0.021538925364208032,0.11150258687420812,0.040076612863186985,9.609032425021108e-05,0.011649696908559609,-0.009527062548008077,0.05480434091036237,0.002869208837489904,0.00012606799380607606,0.012497640972502578,0.023390978540729187,0.12374069915860143,0.045297663853594586,8.940967653642748e-05,0.0011217855712443536,-0.055084141868755376,0.24870545496636157,-0.057741804618150705,5.5665827837977866e-05,0.028934634567540668,-0.0005124081637071889,0.0009391848542729698,-0.005548531856289855,0.00026600778938947644,0.01801491722512951,-0.02144898426496211,0.09642625602527474,-0.02550178474788197,5.531282017184184e-05,0.01601935090936169,0.00506551908406177,0.05070941539763166,-0.10815322091929523,2.5773098735429513e-05,0.0015191066611999976,-0.03097179741448536,0.10584430513195216,0.1020203609571696,0.00010228404116082072,0.009477550601204051,-0.001944703473697886,0.008085097489254917,-0.0017791529987082745,0.00037913693941492,0.002489514805675934,-0.06497628238856609,0.238464416951369,0.06820586692469618,0.00015606412138212855,0.007067983905866848,0.002100153268599589 +2023-06-22,-0.012098213228631282,0.08375153545623695,-0.00477987705272582,0.00015276189622327404,0.0009777892609084803,-0.002290465123754851,0.009092455417759415,-0.015229737969320376,6.044397671148855e-05,0.008799347357016308,-0.0020826165401217444,0.007174900168430852,-0.011242223305543699,0.00013427360684692977,0.02525191759096445,-0.013197378289555601,0.01688359351033362,0.002699471168594988,0.0002638096235966528,0.005103715283439101,0.04978875664627979,0.11563511574357269,0.004818373311794129,0.0002252886506384613,0.003407114298280888,-0.015601196298932614,0.04010418685787931,0.033172626820972995,8.494052207776832e-05,0.0031219483331716693,-0.06665496974080459,0.21222201805188207,0.11657216694032682,9.215776862223501e-05,0.021982184512181167,-0.011902459052414912,0.0998097424426429,-0.00825113372915018,4.089426205339578e-05,0.011078343504439835,0.011221529766253593,0.008913094739569366,0.02678056985999242,0.0009708862033897653,0.003216551457410598,-0.01632433864425839,0.04344388566650847,0.008918550362662321,0.00013139196868389218,0.018148902848090263,0.01293232210260962,0.008500757167282713,0.010780450526940362,0.0007436066430521737,0.01790858117917302,0.013739713951245262,0.1730636709477092,0.027259969144542623,2.365890111473021e-05,0.011413451374886072,-0.05465612374304813,0.15530710319811308,0.03426313019428744,0.00010454386368393364,0.00610466891640811,-0.021775019187647193,0.119036507037961,0.005191252270419802,5.149205092410109e-05,0.003093846058888782,-0.04627615520094421,0.042544526927321066,0.08203108211866662,0.002121468279993172,0.0002672536445931617,-0.07540182100297274,0.5359163263982482,0.0488168267760431,0.00011578090888439086,0.0313150697383866,0.012254788131460142,0.07476228822658341,-0.02064270909179402,0.0002538232812044907,0.017094109964024704,-0.06976457337744792,0.454868430549678,0.04447464358564917,4.3202621718948436e-05,0.01026700699189399,-0.024119479594982802,0.1294308787378184,-0.12631130654190567,0.00030712618200137877,0.0213966284835391,-0.001569286016183079,0.022819432754327358,-0.03899140463082914,2.8538260080524754e-05,0.02329828169028388,0.0017934760695595571,0.02024884160185071,-0.029376084295819185,2.9592190372585674e-05,0.005083309194646163,-0.03966737695928673,0.12799520695947592,0.014792080408656212,9.983033585881901e-05,0.004469392692608935,0.027978800167924964,0.19634122001419982,0.0008856839052895489,3.29162215869821e-05,0.02262520707448503,-0.0020051117618061485,0.006399852883101144,-0.0003806835227495516,6.946179086347926e-05,0.0018166326805357808,-0.002410285335553236,0.009096989551587118,-0.07824173940089209,0.0001211488673539903,0.0013716119597799413,-0.0023212847424590663,0.002048840536104438,-0.006262703296627136,0.0006475835678815904,0.0051883664288010015,0.022593131028384526,0.07555270143379701,0.035563864518709715,0.00012586715986820151,0.00853222890977524,0.012087188685811691,0.03674437243959154,-0.08306944571343254,0.0021113179594096686,0.025132539196730516,0.03972738006561856,0.4650908220792032,0.043971337698876733,2.1965158987607107e-05,0.004684470106510368,-0.022527305312243964,0.07019186402959987,0.018954925885066812,0.0010492856634440532,0.012179202867067578,0.002248231895576467,0.014991709330902808,-0.008964418371380161,9.986552623644963e-05,0.0058054917551750565,0.004361463483460767,0.007397835432707139,-0.006023270749488607,0.0001391467159626276,0.014998767384382355,-0.031411475847928146,0.04752669466943952,0.025062966089061185,0.00037936271448577643,0.024128555771395416,-0.018381174124584482,0.06481228437139634,-0.016898878804100025,0.002198195231610211,0.0023474536611844685,0.038895662082511745,0.1581598131586995,0.10167369973501898,7.890334149109518e-05,0.00917978988248905,0.03905279029357903,0.05287094397826415,-0.00421336595156898,0.0018361670791780973,0.0014517199584037379,-0.028247905613317286,0.08231730027537598,0.009559067283708811,0.00013596000481897467,0.008821741157187155,-0.035807764995254156,0.09651157028131487,-0.15177672883554807,0.00015040359217255594,0.0036161598036641455,-0.010910813778510883,0.043259035537686244,0.018019162017089547,6.155937982359566e-05,0.008318782072803095,-0.0356105454216599,0.10138208244059879,0.0015465470315097042,0.003329166193269571,0.034744081760569125,-0.01602931154421879,0.07135968962097401,0.021250257991828655,0.00011173841025382242,0.005002756493606573,-0.0013370910607795807,0.007210842431731991,-0.024661426466234936,0.0001344732075379929,0.025799154451298066,-0.0038772494026874395,0.025452166874079897,-0.00011492603853678337,7.205227111657516e-05,0.011749416369541285,0.025922771123970734,0.1163943652604552,0.015826980023186825,5.597535595782158e-05,0.002875568429029339,0.0010117592257662105,0.0021424923401366833,-0.04677240197638224,0.0002302434527642458,0.02011018789629492,-0.00683638758360225,0.024746810003034726,-0.017814508429875035,6.869447814148528e-05,0.02131000795068118,0.02434227142660594,0.21923538280632962,0.03585379527377115,2.864717091006174e-05,0.0010271427810372013,-0.005364087572739858,0.018203475737070252,0.001961458001173011,0.00010300314961439467,0.017604269356464832,0.0005663960587660433,0.0022455393021044113,-0.05731735799274345,0.0003975827496907701,0.010469430195196694,0.012977307721121512,0.056570817290261644,-0.005194524899435703,0.00013139049406791784,0.006034076972678334,-0.007113068528111591 +2023-06-23,-0.036138329720910974,0.24836109660596756,0.061717089668430265,0.0001538760718776001,0.005014104005210422,-0.009829140828064648,0.03886370307730877,0.009240774209048253,6.068507662923624e-05,0.006745218298230797,-0.03417255980145822,0.1157544266854656,0.014359386593873614,0.0001365642765495575,0.004708632759925675,0.007106331314347427,0.0060428815322733555,-0.006287124172880463,0.00039688915099800955,0.006785454498092728,-0.005720174259537805,0.012750158522625062,-0.025517009547974815,0.00023474234961741772,0.015561445722142504,-0.0003402520867606237,0.0008313405912297114,-0.00012188339550749344,8.936522460711921e-05,3.316060659342389e-05,-0.04990159713934079,0.15823714771407058,-0.08003707900162195,9.253283218662395e-05,0.0033782620401420897,-0.049186514162259234,0.33522607654362224,0.07902543966471622,5.0316087725603465e-05,0.016604659134351017,-0.009823078484406134,0.008298820343434241,-0.03743862981029652,0.0009128008539954055,0.015812730835094047,-0.009587325735717422,0.023218965362934586,0.0026232397645860905,0.0001443831477461215,0.01558698565140522,0.024489607881038038,0.016463014596767887,-0.08600653651901197,0.0007271044898547877,0.0020052237240970067,0.002941224589857633,0.03707340414400268,0.00017364664061893668,2.3642234034010072e-05,0.005751725638454709,0.0169952992190339,0.04919828528815711,-0.0048217359181059296,0.00010261949816164517,0.013183196970583217,-0.011691932850735467,0.06148201803561604,-0.0031153419804871383,5.353034184370388e-05,0.0014776571063711984,0.04487368005493032,0.03674440285411777,0.06511577198907748,0.002381899678547998,0.006921832865265751,-0.050466362031554336,0.32504240496009695,-0.016176558063553326,0.00012776564272302027,0.028287507728461253,0.026172555598359248,0.16272968970763776,-0.04989786407499155,0.0002490505852579136,0.000364488754984746,0.023299147450780162,0.15747057328611336,0.007403918380283975,4.167749204389049e-05,0.01728729896310029,0.020375792812863665,0.1059534148016592,0.03699629398822111,0.00031694679545714115,0.009792080613891765,-0.0015187716339987822,0.020854130787012166,0.0003907621823664283,3.0222515961655782e-05,0.03418461724955033,-0.01432239542930756,0.15197733608600683,-0.022592625173352168,3.148607614256464e-05,0.008039589089152343,-0.00029066490431831196,0.0007488343857664476,-0.010885443731434213,0.0001250344172302491,0.006779800845481286,0.07200404611859375,0.5637387523047259,0.042010502845078075,2.9503353816425596e-05,0.0019201162238196858,0.023765638641010462,0.056779877434087356,0.03768459140334533,9.27966762076134e-05,0.006434565056681481,0.025339398482747605,0.09640020203739273,0.32948767677728097,0.00012018961740521952,0.00011444257759836841,-0.03707507367225096,0.039278075673701326,0.013553590723010763,0.0005395197924773243,0.004388957338315652,-0.005859810776491804,0.02470006561828626,-3.573383921113662e-05,9.985538585455214e-05,0.026994287310748145,0.031636751751888695,0.13045787425039054,0.0051602946937018895,0.00155647003376309,0.01468420748400059,-0.004078019923271702,0.034797154102326734,-0.006181734089373576,3.0136152994829033e-05,0.006640741628130711,-0.022268486137818438,0.06066687922955046,0.008005706627021937,0.0012000803053510546,0.009337639626710352,0.019261699666435327,0.11553858992994946,-0.03846376231807616,0.00011101794580791781,0.011911949441810928,0.02188093566365964,0.036228750088084336,0.027313275518941176,0.0001425469484207113,0.01142481567261738,0.030764001401966747,0.04311237033628328,0.031681511369904554,0.0004095857466959787,0.01023379892943651,-0.04183593430198952,0.15949682508349286,0.06131841979073456,0.002033048648825517,0.012247083766832246,0.016073912947614975,0.061583266094819185,-0.018841756412938674,8.374314447497162e-05,0.0025642697367548946,0.007211505709627765,0.009114137328337067,-0.08827526870948031,0.0019669239813813505,0.010656163015604906,0.051566450121251786,0.17646239095847266,0.052290698756646194,0.00011577935141974257,0.026295338778734304,0.01851830102235213,0.05078199345079508,0.05787232971843677,0.00014782632161114656,0.0030732765351949923,-0.02980638575711134,0.1191607210071387,0.024556343886423075,6.105062586753704e-05,0.007510612235554659,-0.04316257852350648,0.14320020117561255,-0.04998582758253176,0.002856812985855727,0.009024045167869197,-0.0496701231267368,0.2861919649951924,0.10248790312503148,8.633330577762771e-05,0.008487760499112887,0.010998571218161442,0.049061569014066685,0.005461123559876403,0.00016257569626857573,0.005655326720880522,0.04684353015742753,0.27908021509180325,0.07812039988268778,7.939063324719048e-05,0.005831977671387836,-0.05901775107563293,0.24955802061940655,-0.02543913129010939,5.9437224168759334e-05,0.008131222179058184,0.04221937183261064,0.07518616562289727,0.034790683478208496,0.0002737809488645391,0.005276517193626026,0.02079238352562642,0.08915456138756214,0.0024050144325301064,5.7992934557595316e-05,0.018865478815008642,-0.008266689614725726,0.08856222534517437,-0.003180129752278266,2.4083211319539734e-05,0.020107636701471445,-0.006139373799105476,0.016283737539695822,-0.014910051613705589,0.00013178893461542981,0.008252889799099791,0.00982873821496619,0.033852373414968474,0.0052425891254520235,0.00045765331873876496,0.008497063030970657,-0.039361005528807794,0.18589024017632533,0.0184474754050698,0.00012127782284075054,0.026419753763982503,-0.00013805849454596024 +2023-06-26,-0.03172330423076193,0.2044160161750551,-0.017288537587032242,0.00016411568127865756,0.010046928930164909,-0.014032806347483209,0.04094312492342779,-0.022876286379001368,8.223829014072947e-05,0.005797304056112241,-0.009092161814912816,0.02705351164820874,-0.13223102771451165,0.00015546789368232994,0.011360133332740208,-0.019100547162939574,0.019502483342736132,0.06640116356142518,0.00033053979171400943,0.001234791559590802,-0.008691610858816635,0.01846572313844066,-0.019836566349759093,0.000246281463886869,0.008134343252603149,-0.011233135252741484,0.029785358789087935,-0.031913009472987294,8.23464520337027e-05,0.004129652272372518,0.006772080773385424,0.02403919430886381,-0.003855425927141025,8.265936731223307e-05,0.001575401805918259,0.04035169638464053,0.31459940384953944,0.06932228523772534,4.39847893434115e-05,0.017272965902811837,0.012586243936831457,0.011813981648883774,0.019403292932789383,0.0008215701266445029,4.3264263379535085e-05,0.047809434830143965,0.10517854249838163,0.04426941869710154,0.00015894554062739766,0.010684840476701273,0.021290451487364203,0.013755161243626692,-0.01521935353562111,0.0007565602921684657,0.014390655334643834,-0.021700410538721477,0.277103554491873,0.026549649736003017,2.333719434497293e-05,0.006718715512460105,0.013503432843077704,0.04496444564165424,0.008098376477913293,8.92125561899593e-05,0.0053086205543277035,0.023446773533499554,0.12421610638336393,0.08951969793359635,5.313332510714999e-05,0.010203283814436458,0.04089606450316702,0.039416364773891745,0.03508317267823533,0.002023615146065983,0.01588306842107067,0.042419253275727625,0.2603209085311589,-0.06984469722583428,0.0001340929902717185,0.009230137044466919,-0.056542632385517655,0.32327464096426684,0.054748824640867604,0.00027083988293711376,0.02232137165038165,0.039836289432710045,0.2473235521929877,0.024727476610409613,4.5370582977083885e-05,0.028190268916379588,-0.04800961819273217,0.3162666918537184,0.09221854668922036,0.0002501851935512514,0.0074101649930382275,-0.03964425698027683,0.5415961246640153,0.03720473805725694,3.037630646769886e-05,0.012560172653185776,0.014439543558771575,0.15619540559434877,0.02539380397393222,3.088637350946255e-05,0.0017969125930427932,0.04145608219323725,0.12415808561144874,0.09813613801528993,0.0001075563374190438,0.0245354862584597,-0.03243537411983705,0.2285037389740256,0.024920003810321355,3.278823030471593e-05,0.0021851139829632484,0.007489353408230809,0.017688850131759925,0.007233621310040942,9.386898124013948e-05,0.0026607213775476164,0.006232879787674724,0.02327457953512352,-0.01274904760940624,0.00012244907321488072,0.0038774456578916294,0.09588881863846445,0.08706470882203364,0.18180322283695846,0.000629508179644864,0.021759791406429824,0.022627507055311687,0.0801209144578058,-0.07931034267355536,0.00011887124753899499,0.0120741628513445,0.004476433630248635,0.017749425228994746,-0.0066661619976487825,0.0016187024738251136,0.0077260020209110256,-0.048659464063741324,0.44599281223566756,0.04628698489278588,2.8055735405103528e-05,0.013833204794122063,-0.01026709185054301,0.026406781098576994,0.007433890456710324,0.0012711688786312273,0.023137039850816325,-0.002580764013842038,0.016640971194968292,-4.99269618931584e-05,0.00010327501546440747,0.004883212241873946,0.012145937460795718,0.017497607372975663,-0.028813101306510616,0.00016383163283207743,0.006885513347922667,-0.017704502722175768,0.029083589877777923,0.006705246716724266,0.00034941346339712674,0.01996309637688284,-0.04890001070630243,0.2080559375209619,0.04516335826215468,0.0018217097432828007,0.005653337849403431,-0.018474370759920044,0.07583474109420847,-0.07683599585910618,7.816130776110249e-05,0.006789872482655255,-0.017972547686977303,0.020876540876049343,0.0025023318652677134,0.002140071563230114,0.01795675630444835,-0.025440326473449706,0.09083112662404716,0.011456382716454471,0.00011096959877415152,0.009340987863957461,0.04022824583568925,0.10840626332149692,0.14550057155018187,0.0001504309148374513,0.01780557517515984,-0.04669888694607405,0.19075769418682997,0.1694098673149737,5.9750066124930044e-05,0.02664617679886191,0.046334618662596125,0.14023941347126873,-0.1276393414229561,0.0031315082797888126,0.016495995627446254,-0.01787108295558903,0.09685099209616056,0.0066734307670827915,9.178830872308582e-05,0.022273377990962438,-0.01856461200186159,0.09458396973150623,0.02131105159364429,0.00014234070868446573,0.0005488281489554191,0.02814602097644851,0.15261406697262814,0.015078367609497085,8.723105797710671e-05,0.00650653144406222,-0.028525976025416948,0.136228933455426,0.008513692295684532,5.262820421753345e-05,0.002413868746340874,0.03951013225677049,0.08458288465769066,0.013312683102941283,0.0002277484264568485,0.004068593261707403,0.03975134959161424,0.161964483161705,0.055818551759348876,6.10304348387537e-05,0.0018204631230399392,0.0259581589175231,0.2922638707542658,0.04965560446018997,2.291553708638854e-05,0.004247493507420494,0.01158339965402309,0.037192662570794226,-0.0035309681273280134,0.00010886486423472252,0.0017388173857762542,0.0014426537094196995,0.006236348456730853,-0.046731022284175014,0.000364636126367921,0.012879539103811892,-0.0014243652084646964,0.007573581048136569,-0.02821346551673611,0.00010771889153001183,0.009635632726707503,0.0021832068099711887 +2023-06-27,-0.012030246755926115,0.08902776794749778,-0.0042404860755257245,0.00014290112050354656,0.015933869638598754,0.044530327056820494,0.14849617212024802,0.07369397092074766,7.195337222142059e-05,0.013511095179745717,0.016485842974938374,0.04804226746152682,0.009071296620652269,0.0001587394483564402,0.016713093420237395,0.001376359018522893,0.0011609734932871687,-0.0018212411455206519,0.00040010804599010705,0.006481185957941023,-0.010557720978990645,0.025312668821347455,0.00884356752420786,0.00021823782033420194,0.0021327463178457268,0.020292024251107436,0.05203384278768168,-0.05078904247692147,8.515030580900648e-05,0.0034103382241465058,-0.0289949688055777,0.09465640812551342,0.01094649175470343,8.987987930098337e-05,0.009953159159530016,-0.0026537142472102333,0.021524919186350234,-0.0021590442296264708,4.227768912264028e-05,0.011908430738567007,-0.02473601450303747,0.021226270000669664,0.051935910511935024,0.0008986712110758551,0.011033935487901339,-0.02090395261175545,0.053147915249603314,0.014375349348941779,0.00013753209696989018,0.00754266277678326,-0.004887181131456701,0.003935765701905785,-0.06210817771217342,0.0006069508960078062,0.0058474275151935255,-0.01070885981955337,0.1322659353834313,0.00510411101618,2.4127816177739507e-05,0.006308047076985407,0.014429503682669494,0.03693203196764689,0.012462755065956486,0.00011606445285398396,0.007548097174612781,0.011748094805936391,0.06677380145164451,0.02066857720579016,4.9524848931822e-05,0.013876766895150062,-0.012365482243316737,0.009528451829409812,-0.03321455032452061,0.0025311138949070645,0.01096674778245404,-0.056809842371455,0.4433408685615443,-0.006841818237731702,0.00010544789734814838,0.0206958096980662,-0.004628712387294133,0.021944613050226422,-0.013193753588883986,0.00032661828990097474,0.02186742901163402,-0.0033622337841509413,0.02388412334090714,-0.010614879648260377,3.965332033264243e-05,0.020986183200923575,0.021686122487936138,0.09453026657209854,-0.040170950851683325,0.0003780922986250207,0.002105372513825813,-0.03351145662714457,0.4485858907328128,-0.05351089240710635,3.1001158753854636e-05,0.004997135230177637,-0.003821393524016969,0.03921966181789834,0.0008721359823143657,3.2553645350469595e-05,0.01230275906339006,0.0016363440338516776,0.004965407013572823,-0.0012468866137253375,0.00010615550479471364,0.02485036777412472,-0.02935979938771197,0.23116559491342512,-0.07116633543203123,2.9337443261473788e-05,0.01549638571782301,0.031838447002295205,0.09740318514361634,0.07025910267046181,7.246963923019016e-05,0.0017890916988636818,-0.009349906250039411,0.032565209397083135,0.03794819281805118,0.00013128103042364753,0.007818169119043731,0.013558888196534738,0.01482038731981988,-0.024638411807867317,0.0005229258214327355,0.017972980649980718,-0.008103523538003381,0.026808039550720853,-0.0003543761840146901,0.00012723155979825062,0.015065717531205359,0.0038497244466591442,0.011438146971869009,-0.013798485722561522,0.0021601959475474044,0.01771038644916767,-0.012992475869325802,0.11396247519834375,-0.022128229748255252,2.9316508154581817e-05,0.010389489038690204,-0.034146019865556924,0.09038805864380393,-0.18931791565750924,0.0012350948183955997,0.036029324069957264,0.009038558939956691,0.07013030800422784,-0.006991148193233827,8.582604328785929e-05,0.007604284325476803,0.020707046752225542,0.02949999820359332,0.014884330790096236,0.0001656691182552297,0.004097852342396983,0.050063024055212596,0.07897396637400451,0.09101494821828283,0.0003638622853669478,0.0033412504083463915,0.009348164496533664,0.03298324269346821,0.011879326201795208,0.0021967636655547515,0.001872919310596142,-9.153114408783539e-05,0.00038014359451724945,-0.004372639036319952,7.72523295169276e-05,0.013771392729670326,0.037988202149366594,0.04645631668982109,0.0448879063700174,0.002032736842252362,0.0006500419223930021,0.01471649201597115,0.04560816457276723,-0.020661040158433782,0.00012784323172308033,0.014507080150365663,0.061748229526140695,0.14216945473580075,0.11594342902651843,0.00017606725288580192,0.013672316488595451,0.03668327810724828,0.1496276458060785,0.024170863725342284,5.983705634007067e-05,0.010118285136721467,0.073291374689171,0.23544119712213948,0.10091263099166652,0.0029504514200083868,0.03988256041308904,-0.0051241061203483535,0.023703306021557777,-1.2654713158113597e-05,0.00010753498097541645,0.00835501508474203,-0.025197771444739635,0.13585535064448792,0.04425741724564566,0.00013450739724190882,0.019503827365998167,0.017431236710708942,0.09703827757195271,0.006550238984768462,8.496377888599248e-05,0.007557635468193468,-0.03489343583131352,0.14444282045120044,0.02020316378147247,6.0714884029398e-05,0.001398929876650794,-0.006562326097579435,0.011028835345394308,-0.036248205017919415,0.0002901065596350716,6.66964841341852e-05,0.023808620081448472,0.0930635590356403,-0.04167656701100245,6.361637868322111e-05,0.014084821046039815,0.014367344347707227,0.13863286861896038,-0.04661417392087653,2.6738779287462157e-05,0.015457959476630685,-0.020119358137004863,0.06794715328963744,-0.0009431622793650471,0.00010350273351318589,0.011450529454561636,-0.01400961611961557,0.05780056846172198,0.018028566744915535,0.0003820516648200327,0.011238656825706288,0.022058139379883063,0.1138940545168276,-0.11318065127797627,0.00011092760053335219,0.01748058150433829,0.0030712905678796205 +2023-06-28,-0.028644749315492036,0.19631568882188444,0.005967149070392886,0.00015430379294580906,0.006762707644979149,0.03997735438938868,0.1332858367872511,-0.04227226616895775,7.196818892055533e-05,0.008992579593756553,0.016273636491352925,0.05757007995433371,-0.20150294642806885,0.00013076303221055976,0.005155586992094225,-0.011178996113568635,0.01279729752063077,-0.011919562218223063,0.00029481691313548486,0.016856759582155934,0.00968203608751029,0.02015140128963208,-0.14508988502070042,0.00025139649465593067,0.013468041222619317,-0.012352600996231651,0.037551216573969926,0.022899026842603663,7.182591074619859e-05,0.007473219130719972,-0.05249214439586205,0.1963417388481735,0.04317775422801621,7.844613249731392e-05,0.007586331747652936,0.004762624771611172,0.042161988098452674,0.0013297048337975246,3.873681412397698e-05,0.013146754786693896,-0.003253576344639003,0.002623053289375387,-0.010396981768803307,0.0009565301745318851,0.004795555443932639,-0.044151087863399066,0.09781716499221352,0.04727356503234972,0.0001578295156071739,0.023888994005060796,-0.002553581834602016,0.00214199619335391,0.0017407750989531484,0.0005827139885183946,0.00451982302208926,-0.006003852855429435,0.07767868298865324,-0.05394623799718117,2.3033024821406e-05,0.0008433573583408089,0.014315466982512086,0.036688192923503796,-0.056332281385273464,0.00011591249028380835,0.007309298115762886,-0.0031419426915347396,0.01658819067290744,-0.0010060534334389375,5.3316429634817376e-05,0.005054372422426282,-0.04147134445953412,0.0319731599667249,0.043408871728493004,0.0025297961484360104,0.011786940206143695,0.0349109514543831,0.2485327309219756,0.026207121701055942,0.00011559264487745044,0.010380891034652113,0.04108559414421837,0.21248113756548756,0.026225793685088962,0.0002994176661541605,0.0016744214912695384,-0.018570764466045428,0.11481353095939914,-0.06580927125332703,4.556146336005894e-05,0.006788626661079523,-0.006631164830731558,0.03476977763720859,-0.006074459509886523,0.0003143219553493718,0.003464628503996813,0.09219983781550593,1.0762704025483019,0.05684428660727893,3.5549949737612795e-05,0.014310149147190252,0.004086320685574772,0.03881067386265025,-0.007184501973343277,3.5177338010401446e-05,0.009703199196866687,-0.042860589682334235,0.09983299684667184,0.04428648144700369,0.0001382950989615936,0.01706570015848633,-0.013673817152918731,0.10271222319687819,-0.007698911044369891,3.075105462152962e-05,0.0463752257500854,0.0018135674435706343,0.005467855437412018,-0.017959792486413353,7.353499535360804e-05,0.002689010466212055,0.008332015812284986,0.02809688084666245,0.010425167572526185,0.00013559403085394129,0.003016805527256464,0.03228059656788841,0.03154421890911412,0.0151581783976592,0.0005849211640357429,0.004998906897221825,0.008960334146800569,0.025252320769033186,0.013609295020707067,0.00014935126909102847,0.0074260642788669794,0.038381798742327784,0.1290447237553419,-0.03864215251214528,0.0019089926060492552,0.0009694454615637635,0.015085945763245935,0.14873770649405796,-0.12140344779926714,2.6081565573840246e-05,0.010440060933930278,-0.04334357485693579,0.12180906964127865,0.05497714402281188,0.001163366011624385,0.0021724906436945282,-0.04384979664808064,0.309659493543673,0.12826150732370178,9.429937792037677e-05,0.007157074452835093,0.0468600364868419,0.06707230228216332,0.10633628727990228,0.0001648939777982467,0.008293567165261877,-0.03843938839488992,0.059976276291896356,0.01305677612780208,0.00036787551606310743,0.003434251565711491,0.061568464861901324,0.23812300453832846,0.24001913732015276,0.002004044277321654,0.006514356970575435,0.011068765947643859,0.0347673441995643,0.0036590482670163685,0.00010214522220213639,0.011554930106348962,-0.03162882921226386,0.04333449516585542,0.00811283260179765,0.0018143729665441955,0.008721117231638816,0.026538235522309363,0.09212627056682726,0.01934337460138395,0.00011413125426611676,0.008173050831881362,0.006931351539953618,0.019318671568985885,-0.07803713153004202,0.00014544575237086953,0.0054912477020950985,0.028953606273445107,0.10431424289176468,-0.03544117270712469,6.774433423486234e-05,0.007461268055812041,-0.05867731207146876,0.20174886032788733,0.029417415059102753,0.0027566217537705134,0.006590465989203496,0.008848395997129083,0.04898787693880504,-0.050596285461778814,8.984967346718397e-05,0.008605038224782039,0.002410035520565491,0.011591135166217324,-0.0023427576711853334,0.00015078504074050194,0.007064917239823977,-0.021669453418964615,0.11647069278917822,0.013902395439796518,8.799945794047059e-05,0.0007998383975304875,-0.020252131185098724,0.07947095272557106,-0.0063829858525014365,6.404860974540119e-05,0.019412616969953826,-0.024680277248644317,0.045529969131246975,0.0037418069334252345,0.0002642908162813404,0.015533593518312499,0.02184420188075835,0.08585737774966416,-0.008448407937304949,6.326637297160152e-05,0.0006345112931926418,0.02214549544246194,0.26541569850782576,-0.014999405800314117,2.1527325614781946e-05,0.01717719013990949,0.050105018126380366,0.1635745077788855,0.22503964102480317,0.00010707166743112704,0.0004941960818392905,0.008584181106211413,0.041093807927749734,0.0033016098528182267,0.0003292687051935639,0.005876563781481239,-0.006702058991481868,0.032236245710383346,-0.015829567015789896,0.00011907911129460343,0.01271024426718016,0.0020201380812474665 +2023-06-29,0.009794531562991418,0.06953557906291313,0.019865567303538997,0.00014895777561987477,0.0014407002960473395,0.012844832733093746,0.04838874013955388,-0.01468989949266253,6.369343409317666e-05,0.01597693314357146,-0.007366797090012781,0.026457223758728457,-0.02662614375103732,0.00012880467971600456,0.010747293227124706,-0.015231976342795734,0.017875379229938402,0.039216156649666954,0.00028758673391844907,0.009938220813209279,-0.05152059754377552,0.11930476913281782,0.14377655475809917,0.00022595442928436573,0.0022596526045674595,-0.009753466517261932,0.024411889902425907,-0.03990850876670322,8.723772563569222e-05,0.005241751186335356,-0.013447534875174182,0.04431917272977155,-0.0005126821136673297,8.903092576462455e-05,0.01671546106727221,0.007752546915285676,0.07068877186960192,-0.006297525865005629,3.760906886551797e-05,0.01731613593161472,-0.02348211420741348,0.016382991252944602,-0.034721018042641966,0.0011053219211622095,0.003368817315523233,0.006054817547473988,0.015458726333359625,-0.009890229113287175,0.00013695857805038145,0.027223087868518177,-0.005040579515481395,0.004446564823283047,-0.007126022618050017,0.0005540898573466546,0.007449994162736527,-0.01825479342896911,0.21121451119939683,0.024301547988256282,2.5755854308470754e-05,7.176315148332856e-05,0.032217665718331144,0.08092521335190228,0.038670093624108066,0.00011826636696613282,0.013848819935118767,-0.008795485517144921,0.043014572454607235,-0.017932357733059692,5.75580438328953e-05,0.005569480006765968,-0.027531417879285414,0.022732924845622834,-0.027168809268164864,0.0023620888779265726,0.0007739836118107362,0.012511857614797813,0.06782015962716915,-0.018032209345722826,0.0001518151432126545,0.028975682293793225,0.004482461842213179,0.023091428317267966,-0.0013360803464036088,0.0003005896593044579,0.012882498264666475,0.029659712942332665,0.18292201560192642,0.023537775681597775,4.567325054514514e-05,0.0004529141658237486,-0.03571773213417094,0.2366441684431544,0.06498953710371935,0.0002487567514478309,0.0020152979690584326,-0.020708423331477693,0.22261944244670082,0.013225025690821906,3.8602388303036556e-05,0.0001147745860845574,-0.00914579916318262,0.09347104404716054,-0.12116013539245199,3.269085472648743e-05,0.0032562516626918423,-0.013115011914404262,0.03617609584354011,-4.871727760367104e-05,0.00011678034385209182,0.003253414102522839,0.05009216158219666,0.3993685895058491,0.013098699287467376,2.8972651630604676e-05,0.012239421874738077,0.02437127178097443,0.06585950186665604,-0.003336785027072002,8.204216900047697e-05,0.003735165684054893,-0.003265541213597987,0.008966906530417748,-0.05088633072703844,0.00016651797547462092,0.0023821891547346095,-0.021400254248593275,0.019593959304140277,-0.0004965055380836121,0.0006242697525257277,0.06167151473363663,-0.010984425120932152,0.03901612698064061,0.0008581475687956874,0.00011850022794096845,0.020570982616748078,0.04669452978877384,0.16182703756284272,-0.06350590910574974,0.001851970639344796,0.005972385040603257,0.02329489466053923,0.22608975193209613,0.015440064472083315,2.6494886832803205e-05,0.0012847822663812226,-0.005748267408392571,0.018149141592992822,-0.02131656288728372,0.0010355048662238039,0.008689276040248895,-0.018288928754924126,0.14097325624052873,0.02037962183630155,8.639272645067229e-05,0.016740946234207476,0.025652897085678774,0.03925090644469827,-0.007252189449327802,0.00015425246556815967,0.012571659319614188,0.03217001291595237,0.049797968337551436,0.04470834251856339,0.0003708032434854683,0.023454545108795313,0.01895089170967863,0.063837768077781,0.019944232543822573,0.0023009241187659057,0.010835940306230694,-0.01511096858015508,0.05197339175839484,-0.09971734962617954,9.328280856422559e-05,0.0049850792061396166,-0.008246543859888227,0.010636541845020815,-0.01969854098311544,0.0019272972954690153,0.00886652461625339,-0.024339598690743897,0.08103224909426418,0.007235016255048535,0.0001190067394908985,0.01366901547673189,0.047743953184030054,0.11616209092271826,0.08764157467298399,0.00016661508958029043,0.008360089316655717,0.0027480987160243757,0.011492793823350722,-0.00847093275953722,5.8360719648209185e-05,0.009413906192545592,-0.008627919487230578,0.026064532866980544,-0.01267739047190249,0.0031374310904210435,0.03942243955759242,-0.002750902661235574,0.012904478108264483,-0.011494048106021426,0.00010604137463980137,0.023665410245363495,0.033813778751385914,0.17711088469987746,0.0434851073723694,0.00013845518958561766,0.01186007733567025,0.015627167530759063,0.08342430231181927,-0.0004657251292432839,8.86005429894597e-05,0.0053668737122062075,0.009083940026292875,0.039255586303480215,0.010646274569210254,5.815943582476597e-05,0.017579648008357446,-0.028477415341442824,0.04268272114048574,0.002163779147862252,0.00032529535689772006,0.003034104079741167,0.011421607417938724,0.045313183582538615,-0.10947880835407424,6.267827403469996e-05,0.006733420540247123,0.021369934388411897,0.2514357526492788,-0.009586396437045078,2.192842513388649e-05,0.010040241972071767,0.009800756114822591,0.0433933221161039,-0.009678156942003413,7.89488205947758e-05,0.017495611931185172,0.0248724028248324,0.10914402323771721,0.02446368579060203,0.0003592077971368998,0.006966962909426167,0.016523403006671857,0.07747309611342315,0.002356333604846087,0.00012215756834240213,0.021312396241196987,0.0028937406245705677 +2023-06-30,-0.010498734689027144,0.08465655875829838,-0.05456805763027957,0.00013114838114299012,0.0036775983868333776,-0.0030573064220250122,0.01019570297685548,0.003083950956606775,7.195025212601203e-05,0.005896048811765707,0.019357538471121993,0.07064487860471065,0.05295939411802861,0.00012675545319968404,0.0030638215633427717,-0.005095930429044678,0.005155797334997737,-0.09314453446789259,0.00033357654706911053,0.014511164539329803,-0.0030998283441904095,0.006866496418019188,-0.1191760436566103,0.00023621105510031364,0.003552823180916824,0.008480386162244178,0.02585884065628913,0.007913446346654699,7.160664374575855e-05,0.010205744400087181,0.0088206063587371,0.03218865435561623,-0.021124655107354007,8.040544777285268e-05,0.019198042836303136,-0.03363144356830157,0.30879094127400947,0.022033892229827382,3.734905107193953e-05,0.000931071261347132,-0.019687794917587723,0.01765300608386477,0.029052227708041986,0.0008600489946765319,0.0050785546416833235,0.010981435712828497,0.02555783452183925,-0.01164928092106258,0.00015024393721549886,0.011366366351475012,0.018525496387296895,0.010385295849934872,-0.06438292832336746,0.0008719173887540487,0.0016813760597278456,0.0016223292963703081,0.02015033059997565,0.0032281010863132783,2.3992727660414606e-05,0.0010844763700810145,-0.0035664842709945753,0.010620502074244292,-0.020923509464426195,9.975767134272563e-05,0.015069687515130978,0.0009710293367212363,0.005252945855662261,-0.00819323050095263,5.2034483128712096e-05,0.0015362430286797691,-0.026738886933049006,0.022430887130308035,-0.04410390034771969,0.002324983351190118,0.003223472538482701,-0.05064103289441175,0.32507900182703786,0.01105783416410828,0.0001281934233545523,0.010244510214475972,-0.0021213404164102273,0.011409011190227799,-0.030235824525907506,0.000287919176955737,0.0001568475048004355,-0.06836599337050023,0.3736260288801345,0.04181712914014666,5.154231971896738e-05,0.01131558736596743,-0.03552335588227299,0.18426066302354507,0.02165891228316076,0.000317737273564762,0.014625844455512859,0.044757005241687846,0.672596881428283,-0.03050192850869024,2.7614450236331267e-05,0.028552016405378713,0.013754660666827224,0.1612453295077095,-0.06502447343721611,2.849997280598362e-05,0.004787007578955102,-0.036050675686948405,0.10478900676050718,0.018986361842419686,0.00011082058563254468,0.029495754196026635,0.057457856549004004,0.3562974234248641,0.043586182359636724,3.725024341693184e-05,0.020251750139505698,-0.030951946285989965,0.09108127246600081,0.11588078610784652,7.534184583385868e-05,0.012937101889059808,0.006643071712787251,0.022588589272577293,-0.010305785339988804,0.00013447093592682492,0.002307255993588624,-0.03664118747227587,0.03907949770567578,-0.002335395275492678,0.0005359152657285699,0.03043964051158861,-0.005023687619937935,0.01788653825558314,-0.05347725897067931,0.0001182176548766307,0.019779008637702867,0.0029604216887725776,0.012196883119095683,0.00476250312054115,0.0015578437272760193,0.004489727016735357,-0.0015391868870849974,0.015120363564814727,-0.011755100794348626,2.617648425210492e-05,0.009926598584542642,0.05701046750217143,0.1458662852336802,0.08109504812616683,0.0012778237305491886,0.0069251760441352535,-0.034995682477051926,0.235920784705082,0.05678972763571415,9.878111104631972e-05,0.008741290428731105,-0.03605520960805909,0.05726402958963007,0.09730817505008592,0.00014860434420964333,0.004260448221010541,0.003120902713835666,0.004153381395793836,-0.00515757308313852,0.00043130285347787713,0.006132171259550479,-0.00028224622416953325,0.0011576255348620301,-0.001803412551847752,0.0018897762386503943,0.008960144764218447,0.005557045209347675,0.017498961267639477,-0.07975268794296422,0.00010188776378690587,0.012895947869523727,0.020626809863073737,0.03401180536069664,-0.037571152027532966,0.001507577239216173,0.0040448305202821526,0.05157981444185287,0.1686509784895842,0.07794513197861912,0.00012117330312031119,0.0007273518068132973,0.05171912606524991,0.1236515243330632,0.06579281505323467,0.00016955557704486824,0.009428334894087767,0.0012967357408647843,0.0053092492920529775,-0.002388124076564087,5.9611807223543646e-05,0.003861145584260067,-0.02169198797838424,0.0703151683903349,0.0033834952258678637,0.002923939564687441,0.007115994719487097,0.008885475493037883,0.04287090313680306,-0.009834097855083646,0.00010309998722098118,0.026242696003411448,0.058420582596550454,0.2878329845035621,0.16374618307612454,0.00014719264421918414,0.0015786751263402337,0.02189373952745118,0.10080148597985987,-0.02096658414022454,0.00010273104628192922,0.00018770971759022887,-0.014314545671935703,0.06194699981694005,-0.004868427691635712,5.8077068359241404e-05,0.0023600474057562633,-0.06863464957859201,0.1309998253564162,0.05674157017696111,0.0002554477596158527,0.01707236373110034,-0.01913259145223859,0.07115853483222045,-0.01989513328663713,6.685920011122274e-05,0.007453654661118929,-0.02463985238161432,0.24499015154389484,0.04087971551998157,2.5949008048699428e-05,0.026070488237035866,-0.007295081433886986,0.023602684453031104,-0.00035201091568166606,0.00010803829168982396,0.004630284872034274,0.02124460955857834,0.08590772748316729,0.022682672362124724,0.0003898023867739479,0.009763422828062567,0.009687431111834479,0.05637870400684942,-0.16288809022324946,9.841591505016361e-05,0.003293536378242167,-0.0013447632603747752 +2023-07-03,0.05530238915520876,0.4172348245312437,0.1806948706772136,0.0001401683393939201,0.005099944744643678,0.017879308253777735,0.06754189629165756,0.007702856661010556,6.351670916759267e-05,0.00469275156248123,-0.02947134641213295,0.09043385784943057,0.006517993361408167,0.0001507530556747107,0.008982460653211151,-0.04020878629210201,0.040694579541419904,0.16462513037351315,0.0003334665333258796,0.011349159318698461,0.021655694039192763,0.06361808676870105,0.014061959733250478,0.0001781103984015343,0.008679402930030607,0.017154853756859736,0.042941589739221735,0.05305381369768579,8.722794509027147e-05,0.005055512255767861,0.01312958186488995,0.043365211938234026,-0.04958886591328187,8.883810322116925e-05,0.02168729512756684,-0.05277569414837436,0.4472694274849735,0.06433745679142858,4.046349157763712e-05,0.01971208880287869,-0.023687230558632477,0.019828962442310867,0.015093317392231355,0.0009212109332990747,0.007075529077783374,-0.011234264219068424,0.02548603433599785,-0.07119622054756534,0.00015413606104203224,0.010718898461944747,-0.006417857733047023,0.0042940604559332084,-0.034190630724291744,0.0007305438505845382,0.0007957660647262194,0.003628096514761914,0.05437469554341273,-0.09529046188010355,1.988404708326928e-05,0.0020791761121511988,0.002201579019245184,0.006093915625962066,-0.021388702980818606,0.00010732203001076032,0.017739804250928554,0.010318493150502385,0.05215013896481813,-0.007842806364775749,5.569582335292875e-05,0.010885086179003273,0.006008837943783277,0.0050542795533221,-0.004964193295406808,0.0023187514834459104,0.020953833282708438,0.03855406411154209,0.2835203741126249,-0.0888550333247515,0.0001119020389257048,0.023911553541949116,-0.06770493826294133,0.43970224721792406,0.12762747755440898,0.00023843493799628363,0.005972703195165075,0.026423801583199288,0.16013399132268238,0.017083123634568022,4.648070718387291e-05,0.04614166119016214,0.017468668209025446,0.11103969220456318,-0.004553277103828171,0.00025927960375616877,0.003175376506153448,-0.06506915421157809,0.8531220135847776,0.07038185986938629,3.165149620729524e-05,0.0014055984472908514,0.01859066033783656,0.1763545022153481,-0.07926834933213882,3.5220050456388706e-05,0.0095284221589812,0.009111746652790218,0.02709103188987312,0.006241658527717178,0.0001083424978850145,0.025239336916814577,-0.001604175782212336,0.011366706668791332,-0.046101093872531605,3.2599405420892784e-05,0.016722493608696938,0.01138353342642339,0.03313496128756124,0.0005675792991273795,7.616720196873415e-05,9.19837791925884e-05,0.004185710257978676,0.01640067089556096,-0.001707235679840496,0.00011669604680189375,0.005451541080236054,0.03895329607657761,0.03716127520974641,-0.003967939619799131,0.0005991411720081326,0.01366324942860644,-0.020862030127672432,0.0795363856437665,0.005293960702372769,0.00011040194529577173,0.004848397507534462,-0.0007381012026801356,0.00236512042413232,0.006948278423816637,0.0020030040581595072,0.020237199067725406,-0.03591351269773541,0.3422424956331519,0.03653871633120182,2.6983988722966946e-05,0.00795481085034079,0.011939843501278545,0.03193014863809602,-0.05444361334511503,0.0012225565702117585,0.02059755483464265,0.0057337622636230495,0.047809709310970235,2.4325002751695168e-05,7.986366237672104e-05,0.0032495740593943426,-0.017635870705680106,0.024987885814636835,0.024536614705264435,0.00016657613449161661,0.0007411964575101317,0.022540634150815936,0.03189078694890469,-0.009500978837494093,0.0004056998132600223,0.0013154424219677988,-0.021988287025323624,0.08155405109457325,0.006489260873543316,0.00208975897760896,0.03583209880031789,-0.03792443440262468,0.1478408794671216,0.10391997355779377,8.230286349987143e-05,0.009911608000991291,0.0016592795481705455,0.0022806880647784373,-0.05393592150161805,0.001808551425167014,0.014490825982591394,-0.003605024858914392,0.011472612641454378,-0.0016564065672685598,0.0001244978839372349,0.0036498635600154886,0.006281850181930444,0.017798916868136977,-0.0003435408109018347,0.00014307191033100105,0.011080901086196719,-0.04009727691440709,0.1617778295855459,0.09639395694161419,6.0493651525471166e-05,0.003437891906177018,0.03401976569702636,0.10514827696738012,-0.036445724982949526,0.003066529985477791,0.004649746045460711,0.00934658720557679,0.046499957632209,-0.004421282884767667,9.998643314573643e-05,0.009795962279760094,0.004834469663621842,0.024950054218689247,-0.020362095846497515,0.00014051999641759316,0.008857987677599726,-0.06208648708399313,0.3547194212180914,0.1549063686229357,8.278674727178176e-05,0.005693181565428613,-0.0336228436308888,0.15701332187516093,-0.0070791525962793965,5.3820203287179214e-05,0.018310723333460937,0.017898867923388975,0.033070984792301694,0.001870379525552436,0.00026388082297482926,0.0028637382210764005,0.0025780558119155614,0.010087896164061206,-0.009429327912032999,6.354861467789603e-05,0.006700191220552408,-0.00118349681888653,0.012613928939341422,-0.008066191440501103,2.42073918542313e-05,0.01400587352790432,0.0033689599689445803,0.009905080909785022,-0.006696034670893165,0.00011889039985924167,0.011707066595800102,-0.005239846853887475,0.02373426184296356,-0.21953458926710084,0.0003479932624247238,0.008955160483705572,0.007779964692217289,0.03397502876168296,-0.03198986718134123,0.00013115643061866746,0.007066557451478022,-0.0021053093710248286 +2023-07-04,-0.0399650949348896,0.23509114893311472,0.04290259368033162,0.00017977576869460734,0.013461203951538851,0.0021665492407994097,0.006481544941798964,0.0003752179971229612,8.020483577542603e-05,0.01169445766738018,-0.028558634138349033,0.10448851108316455,0.024481185710664263,0.0001264346458966088,0.009557095459507003,-0.020211475126359995,0.020505412630776994,0.019016472513419664,0.0003326575271070638,0.0022234517581164424,-0.01263366079977273,0.029465218119773734,0.009088322007136274,0.00022434548015879788,0.0009290235967079061,0.010631574814019443,0.029885933027721804,-0.07706265257099157,7.767433084971976e-05,0.0009472879548010048,-0.0010099214384428846,0.003301869029401303,0.0032814286254823004,8.974651720685992e-05,0.0074501346943823266,0.04508911156467572,0.4385215012608364,0.0319238482430158,3.525976393155209e-05,0.0032787980625829695,-0.011543188235233245,0.008748392887354873,-0.04937173861505021,0.0010175184332104137,0.0020933462556023937,-0.018456317113556192,0.04892802758821202,0.013124632696212236,0.00013190134416817792,0.020815756276985432,-0.03290846341281569,0.021284852882632332,0.0935727546043397,0.0007557206855283852,0.0070637462439097475,0.003457741290165384,0.03802887835779085,0.00056405028734869,2.7095786968208655e-05,0.007879694050378194,-0.04285152679448019,0.12980897746256917,0.011039979165119711,9.806467861468254e-05,0.004668624770173936,0.0031710825626845214,0.016170486649066767,0.0013115277723478541,5.520091514320742e-05,0.007813895292027811,-0.011036459181790755,0.009429993232415196,-0.017223459560946133,0.002282660653552702,0.005850611065845273,0.04623877485334519,0.2991151226305153,0.021188857466550057,0.0001272096493885129,0.025865827508832335,-0.0043558936283480815,0.021786972610167064,-0.0025445613630384733,0.0003095912018654612,0.018855695596316065,0.0017276427380214121,0.009081689634077681,0.0011473839164080767,5.358561742751228e-05,0.014542957468372602,0.004026412062345336,0.024141824810682118,0.0015409247293795448,0.0002748748034576788,0.003966255816172598,0.002917018506316862,0.03465330291510302,-0.03081378936559357,3.493210692055525e-05,0.0019292549340754043,-0.0071135958124357804,0.0755446695266831,0.005788398641897874,3.146060490680706e-05,0.003916424619779663,-0.02607123815985727,0.07262067449810744,0.009710094245150604,0.00011564427410596023,0.02805315120108453,0.00043769064719646967,0.0033896692762788506,-0.018569789510830482,2.982650148854054e-05,0.01957414366968216,-0.0024560230638707298,0.0062129989331690776,-0.04767364771651968,8.764124615697117e-05,0.0033041175290247026,0.00255753334587884,0.010434185607535975,-0.01883608941475346,0.00011207566969616354,7.086383048540636e-05,-0.005359643865022639,0.005313666065760377,-0.00040996159445349253,0.0005765237944218085,0.0012423904911049604,0.0016559816491713646,0.005305849253240453,-0.021845892162886293,0.00013136710280432708,0.011373762298608519,-0.029893749957155536,0.10422193933424309,0.052927169200635414,0.001840943340079968,0.0049642622439845605,0.030319615476995004,0.31453974766417103,0.030844949208784705,2.4787364341686234e-05,0.0013936753323751877,0.007405841944243682,0.02170957548275248,0.00012921909743580012,0.0011153068708431538,0.005359226436077889,-0.009771495843244443,0.06512317035106326,-0.004866109607833975,9.991970886515091e-05,0.0031919496603862512,0.014831680998219082,0.021706839650229254,-0.023189640326340796,0.0001612646447520145,0.008670264825092342,-0.03052267987866493,0.04547865997994119,0.01958578444344635,0.00038522894900873856,0.003942939067122264,-0.006894713744530965,0.03182260304326033,-0.00034438772849885454,0.0016793100208638556,0.01008647246584118,-0.056195696247385275,0.2433022729786598,0.12883504033863816,7.410495716112729e-05,0.0017507129139398558,0.02477274049114609,0.031350932860451,-0.07083837193229607,0.001964268160235519,0.007610276271073561,0.044221013034169254,0.141346497658249,0.044369376727967494,0.0001239537505506007,0.005412359592247565,-0.00576845815315377,0.013816040658901876,0.004807384098726816,0.00016925305635683092,0.008375792770072239,0.055278911166782636,0.2635749008488021,0.1241441291950473,5.11881405012666e-05,0.0020017133782990913,0.0015191602564137332,0.004509621497420861,-0.0045941219373823615,0.0031928723498143487,0.007994099979086011,-0.034778439803531506,0.1569993962471809,-0.0498064839706701,0.00011019266425077166,0.02228503580538118,-0.010225669666615762,0.06704937663282284,-0.0351407439447689,0.00011060068045498806,0.001539417391159685,-0.007188558017023166,0.03686695773475497,-0.01435484492358894,9.22259589924446e-05,0.028605322898487516,-0.03850350286902008,0.1698993428726822,-0.0036495702905870154,5.6958158154623735e-05,0.019071005139147938,0.02305322331102059,0.04624432067078844,-0.030291029253903784,0.00024305392974865753,0.010187889313696156,-0.023930000888802396,0.09894007375801604,0.024617220210288355,6.014296862517364e-05,0.0039017302706235114,-0.0022755024717540937,0.023119710761714322,-0.020532964090941252,2.539371262703332e-05,0.008618077432784994,-0.014047996285955834,0.04354504688794998,0.00994726214366038,0.00011276766444562389,0.0007250575081754641,0.00795746044787428,0.03640337875497919,-0.03146420248469871,0.000344556752362376,0.001268056426615614,-0.016713325170733397,0.07213879586528782,-0.03297110863345903,0.00013269842552142668,0.006811233173412632,-0.004099238218919093 +2023-07-05,0.0050088532636415935,0.03316589778514201,0.0024189386883755907,0.0001597103770651779,0.008053886145479623,-0.0054408618805443214,0.013952583173142992,-0.08073384755087266,9.356719446863964e-05,0.008956057072458,-0.007994297549803103,0.024560475159139023,-0.16468733241212358,0.00015057079680525775,0.0034592006128808146,0.014055409288926483,0.014478829455229617,0.007680443314738227,0.00032762565357244845,0.019751539711363893,0.00474247407921124,0.009424540774176739,-0.014532756740185847,0.00026329495669755285,0.000980373970480421,0.015331516863922692,0.03974853854456844,0.0321745819144137,8.42191200620996e-05,0.0011265698092825318,-0.002028838298719712,0.006961364169772804,-0.02554286506002448,8.551512524643288e-05,0.007139744721957626,-0.03844558556562353,0.32648488251622726,0.023069975330997385,4.03814600958118e-05,0.0016845301429769402,0.010275022291464517,0.007518347303332778,0.022176355059667672,0.0010539140049678761,0.003192227420798285,0.00489818606672101,0.01113303382595367,-0.012742166058777723,0.00015384508864402276,0.0009522249291902263,0.008625214646197712,0.007292358583402825,0.004337957866308788,0.0005781309956845879,0.0022309066987376987,0.02478362216241246,0.3606815152241413,0.10711848658811846,2.0476875199201528e-05,0.004822406536186668,0.02227264309217697,0.0698227750352061,0.02145703836865664,9.476013924423036e-05,0.004374207912076295,-0.01897475440525346,0.09736704801404847,-0.01208017418397069,5.485623267574392e-05,0.0017754835622072359,-0.015842980251612165,0.013405555654735076,-0.024071467906742736,0.0023050217802424323,0.0014378705266878068,0.0013217629477257822,0.01046086505169227,-0.00046658447180607726,0.00010397719123286332,0.022520618379466752,0.04550527169316576,0.24675691377602432,0.03923642271248864,0.00028556213073251856,0.009772901131715918,0.030790957702997925,0.19239670797209707,0.020398640738480307,4.508027082103535e-05,0.017169600256749528,0.006611077666746015,0.03415198863717669,-0.008269303108249115,0.0003190384813951455,0.004115081046240616,-0.040514361281574186,0.4746101329480426,0.00840725486167391,3.542437703812617e-05,0.013715464210368247,0.02420088465666499,0.24790461166546618,0.10933321991270767,3.261582325561141e-05,0.01880222708144611,0.02983724063953425,0.09108902750621148,0.03002933027899377,0.00010551527794758072,0.00399105030482531,0.0024855236394426224,0.01970187507372003,-0.0018450763090188894,2.914088339711107e-05,0.0036235007029723027,0.004387150923978561,0.014375875066959016,-0.0003644734161176577,6.7659014451866e-05,0.006338324905827887,0.0052734143999453725,0.01842855046919106,-0.07897966227462005,0.0001308426465582165,0.0037604663155243493,0.009801222707830513,0.00969773654457952,0.0008883772035195405,0.0005776774798182497,0.04219575986796017,0.03546666009693903,0.14121840700899946,0.08819504298128616,0.00010570973732601859,0.001602336226069214,-0.012002355743504391,0.050609735765073285,-0.002258576316093581,0.001522129488555418,0.005984605020883932,-0.004401163838544367,0.043140953905872095,-0.010320676034895403,2.6233726564451362e-05,0.008927386968623377,-0.010583246645690129,0.02998567870913234,-0.02871609876117412,0.0011539216031663363,0.017646425953849507,0.016213519129282632,0.15258211895397059,-0.14114445534748765,7.07618681119486e-05,0.021372695621016402,0.013810500195292468,0.016111111796647898,0.0019702103837029293,0.0002023155590226965,0.0054447359424970665,-0.00347879162370195,0.0063499538888628,-0.0046272324735705354,0.0003144573555703698,0.024646989348072367,-0.055065600704002876,0.205904729579762,0.06579389558714006,0.002072833410183729,0.0185978409795565,-0.016393065540162153,0.06748203455561595,0.0055429449803827725,7.794035466537234e-05,0.017032666935347204,-0.06515440643283275,0.08820889701261997,0.11632407434945309,0.0018361518428585016,0.03202871355664379,-0.051598949178571996,0.2023673120002021,-0.053745575864959406,0.00010102213221099483,0.01277015850974385,0.025950797899710203,0.07689729107071225,0.005840659610126154,0.00013680439530343365,0.00860273384481573,0.019155597434474467,0.08863464727065139,0.007923009779628933,5.2748013155720346e-05,0.018132916777386477,0.017742396011868392,0.05821820121904874,-0.04276498310263605,0.0028884944914281847,0.012515824240793354,0.02541994575360556,0.13845106322019948,-0.02903604381833754,9.133114343968813e-05,0.0027986828111222334,0.0020671077486485896,0.011552390318627169,-0.002240884447169181,0.00012976334898113796,0.015476197271547861,0.0032804708428198193,0.02028232316965033,-0.020507523732538287,7.650101238765517e-05,0.009006943214376003,-0.017477305041251893,0.08732903199581006,-0.029733959522599326,5.029944753084623e-05,0.016504339113914503,0.014163436428858332,0.022753078450583324,0.0064092275746011115,0.0003034994213934259,0.03667048751268284,-0.01560558211057264,0.058217841013087634,0.013170980953683924,6.665584728225281e-05,0.005424610654734128,0.007316171938038102,0.0768839034877327,-0.06285942089927936,2.455159796788788e-05,0.018170005235937106,0.008809811044668752,0.025472041428812996,-0.02572307391578263,0.00012089596488757716,0.005595508338515563,-0.02462434389899776,0.12349535740124531,0.09362492119502497,0.00031429828220019915,0.003111808513030999,0.04014356200446332,0.21999512707618785,0.03344130396198544,0.00010451404108686164,0.018243178121783835,0.002342212265826172 +2023-07-06,-0.025839143003223698,0.20296566928524476,0.015703549333549765,0.00013463008010651428,0.00168545190809559,0.009782288686656562,0.03139628651021502,-0.004634386324296949,7.476058966397662e-05,0.003691891030020376,0.0435488459863111,0.1374808286477889,0.1838514816169463,0.00014653174259005895,0.019491477292474333,0.006385469425634433,0.007135623004353212,0.0015923618922534446,0.00030201519180615395,0.009399158384236894,0.05160210761095781,0.10854958223242127,0.1223112752309865,0.0002487350893646667,0.008954142323064872,-0.0010058626747318268,0.0029766142516261546,0.0024067001625797608,7.378411556070461e-05,0.012101968572089379,-0.01723878071572565,0.06843452831394985,-0.0026774241447414604,7.391304976122613e-05,0.02171883170478031,0.03759056403775658,0.348727598451007,0.03840194250043695,3.6965036362924535e-05,0.005654245619092264,-0.0016668084466688706,0.0014762200847690833,-0.05812977992488764,0.0008707217027618788,0.01360705774776884,-0.03700635989884982,0.07445164519692224,-0.055016214645212336,0.00017380567614411722,0.0016754076937049902,0.009433384975421934,0.006484843284785925,0.0029587172682111807,0.000711037377845827,0.011359188128580057,-0.010700526005857457,0.14169074033480555,-0.024921807870122152,2.2505384996768006e-05,0.007271867695715626,-0.021379555317915317,0.06737547094482377,-0.05955422825375843,9.426444001232141e-05,0.0055910942274034255,0.01802539014783437,0.08249282573984158,0.04266393698674693,6.150781670753104e-05,0.006270208079914511,0.014041084182592976,0.010808678315041618,0.006055833645135235,0.00253367568733402,0.01594244967749424,-0.003728948016819068,0.024068952904462735,-0.003345157485730616,0.00012749150262324262,0.02273704826610181,0.0007894569705877162,0.004218910643754655,-0.002142912616718602,0.0002897586225992226,0.0179799806936956,-0.03866872608303143,0.2553070877229218,0.010821863239789195,4.266364422486875e-05,0.0004904435931937889,-0.005945188636295713,0.03648891822165974,-0.03291376342753114,0.000268529163100999,0.018666552246894574,-0.007730066645444116,0.11845035644872462,-0.019311740064178233,2.7081773251716984e-05,0.012534937086042194,0.015496418640225102,0.156789944371041,0.011298632597701239,3.302135145329951e-05,0.0027117776742328504,-0.026695991755258566,0.0967290964073571,0.00634735144685942,8.890203136598324e-05,0.016703030323060322,-0.05429832068073358,0.3444806115597488,0.06056996416837588,3.640943928144873e-05,0.033419659287731024,0.0066648040178677315,0.020515297228965734,-0.004062368482555156,7.202561116129173e-05,0.012382351024312066,-0.01238156392031459,0.048489498608694004,0.08421882834744936,0.00011675524680594678,8.539182963767538e-05,-0.004785548641931224,0.004798997440454513,-0.02487019745945975,0.0005699762740109482,0.007465287358607518,0.002710658873602064,0.010201614475942915,-0.08861074851590264,0.00011183866348222727,0.008093628620552821,0.0467021135452601,0.14947017233749685,0.022281280740237296,0.0020054007583000877,0.021304879920998325,-0.01080786031032226,0.10004527059867376,-0.0808575565662016,2.777955950507065e-05,0.0015045660565161912,0.0465118609193072,0.13287695509374203,0.00550423184529719,0.0011444196811327752,0.009965303870995363,0.003942449117872841,0.026547601809022166,-0.009813726428231168,9.889320344234536e-05,0.015215229064125124,-0.0012665914026291885,0.0018945792315339068,-0.0016495415398918582,0.00015778624823062042,0.009056352107233549,0.039313822631977795,0.049896052990956286,0.06465625185041979,0.00045225460273638464,0.008027316545283138,-0.005468882366740783,0.02286956691183512,-0.0004311309884372567,0.0018534931393460845,0.03582186559063098,0.005614668015346796,0.02379881270784495,0.003709785613337967,7.569360012369725e-05,0.017747004530773262,0.10781191374469551,0.15786789885287375,0.26013560054066076,0.0016976576633011833,0.011118609217494656,-0.013528334453728473,0.049633708199899394,-0.03806558346650115,0.00010799002580058987,0.04394220452734533,0.0025662051872591637,0.006414867832366817,-0.042022890339586776,0.00016216758218957702,0.007965453631743401,0.00041705717641272403,0.001648696368768453,-0.014216458099890897,6.174031518567098e-05,0.0023502343859321427,-0.005219296988105167,0.01668694808192554,-0.0710794899863383,0.0029645115926365427,0.005613524826636902,-0.012416439289945526,0.06729353894554263,-0.03938592492079707,9.178342752597445e-05,0.014617941897244649,0.010386978083850874,0.06232560268943094,0.0006528893094030914,0.00012086025684332999,0.011940069385173264,0.006804074659754842,0.03967069056555773,-0.036709139324861514,8.11237482474728e-05,0.0019625678158981196,0.01302705064910467,0.05899937149857034,0.027956501553239133,5.549401041190317e-05,0.007109601949500094,0.011260698151389387,0.020306728684317543,-0.08591182341024196,0.00027036766164154985,0.01818391884672165,0.014534706080592852,0.06086913932420503,-0.038719023649471475,5.937771335670694e-05,0.00516527042244398,-0.009820019577764023,0.11032562486906747,-0.03908055007707032,2.2965041955455028e-05,0.002234487938173478,-0.027906631533011643,0.07974044040288332,0.05059338367971311,0.00012233134558999482,0.0035204988663542604,-0.004348119678898875,0.020438432805939596,-0.013406846387188533,0.0003353373041089128,0.011404809200929799,-0.03148948889708197,0.1694173234532677,0.017846806541117893,0.00010645831585380066,0.020670715466966038,0.0020666737505739725 +2023-07-07,-0.011138894593062094,0.0894129873012281,-0.03260721669938862,0.00013174315907692863,0.011848822735290244,-0.012671242640954856,0.04548306046047174,0.02126030987535043,6.684671256641252e-05,0.02526345304897154,0.004222488183131253,0.014866406421299445,0.0026266340357678866,0.00013138919320930339,0.005372311696026094,-0.01869925882476908,0.02276632130731195,0.02488835324819995,0.0002772039333497085,0.008067209473486308,0.008273957071495046,0.017074234414387556,-0.026232002222548106,0.00025355360866869493,0.0012694896134997228,-0.000803729714222459,0.0022739760094002215,-0.004142709350848747,7.717397782904452e-05,0.006798069611502758,0.02009953241208757,0.07727018035151595,0.017291242177110533,7.632448517511881e-05,0.0010341339827329762,0.011190456972127878,0.11531679260277396,-0.015438003845029758,3.327774439861646e-05,0.006164317946926883,-0.01031460831690311,0.008695652919388609,-0.017799268128710403,0.0009147350717459479,0.0041231706160413505,0.012151997705807287,0.029308094198942508,-0.0012821478179778963,0.00014498463732532489,0.0019475258304322493,-0.006701098056728934,0.005831052950760879,-0.06021590433420116,0.0005617244737487293,0.0014559652710691893,-0.005095235353528566,0.052186697571642494,-0.024700683748389872,2.9095593706716343e-05,0.00926599872858533,-0.019060332278122073,0.052610027407449245,-0.03696535141844228,0.00010762495360012966,0.012290083064508595,0.005537457363008554,0.029438104983550935,0.006331242270231663,5.2949561011125526e-05,0.0028086337457704706,-0.003706773508386926,0.0037220613642535766,-0.025322170126780806,0.001942385798880621,0.015008926867613435,0.05047403014566609,0.3184343441442053,-0.014887766571495726,0.00013043681597222522,0.016424420172936115,0.017622881816496,0.09152672628788584,-0.0024318959005298533,0.0002981516600787223,0.0228417238103185,-0.0016778668313194704,0.008363918057341338,-0.12896523166881887,5.650783592988311e-05,0.013424086364197682,-0.012792635131612969,0.07613731491683608,0.006965033234065654,0.0002769167742106209,0.0019033894375155925,0.03750785177034092,0.4970897762620497,-0.006629300523003418,3.131248904538998e-05,0.03656884002880734,0.030592088997896002,0.31420489786470146,0.03994193024793546,3.252953779414556e-05,0.007783821816465357,-0.025540208599412195,0.08119979266731775,0.005894991872406864,0.0001013193221317972,0.002215771287652872,-0.06024099080203919,0.3911039303735928,0.04924544143462795,3.557888239808815e-05,0.017681884486257064,0.010112649737625797,0.029359183195466793,0.002809424383292695,7.636570732393295e-05,0.0027088283990136805,-0.0070438676801012215,0.02909780387118316,0.0265830574651327,0.00011068775331460601,0.0014801440916984013,0.053480157476985014,0.05716512296424622,0.03439178669419246,0.0005347331357127666,0.06309149592163849,0.032121117817533365,0.14087101711749092,0.012369293553960308,9.597431235247101e-05,0.004281665360715533,0.004205477504024702,0.014620667554823615,-0.00795984925834417,0.0018461512839177158,0.00033246511666564296,0.00508983738672559,0.05169581847489578,-0.008577644864353416,2.5318075291440604e-05,0.005132973286927296,-0.043052631906728624,0.13243945100713217,0.06829300424476671,0.0010628050368867415,0.005832654127945728,-0.006632475029262147,0.05383460238897797,0.0015816532502434077,8.20426645966289e-05,0.0115286301442304,-0.011869998027158395,0.01692386806466481,-0.09603999917093449,0.00016553750381203386,0.02249906113124955,0.04053485710449138,0.045111712386333776,0.05762570843837293,0.0005157547631002675,0.01109012876604684,-0.009532178820623415,0.037502717365589584,-0.010592946101055477,0.0019700615061672595,0.0320557380210613,0.03259181659304419,0.13158139761908508,0.06932706609071651,7.947022508746063e-05,0.010801326294824627,-0.0041799470526905965,0.006478534543674818,-0.009829894219787482,0.0016038774952308553,0.03303966821943904,-0.04946445398843054,0.1763971982927653,0.0573946906388184,0.00011110089896745055,0.0011455340276708076,0.05561330104745193,0.16198370919547325,0.07097266947208329,0.00013917707692415258,0.012390604663747178,0.0387478024328861,0.14124653017477717,0.013361317325944913,6.695503075489956e-05,0.001976362043276226,0.038342229593072485,0.1230859755412916,0.035277838540371795,0.0029524792173818595,0.01794155495144113,-0.0656690008994606,0.31814278737719504,0.03266704063471879,0.00010267835394970784,0.006574946981898869,0.0030679396278861233,0.015925293429669272,-0.024379534852642194,0.0001397076380660266,0.0080640328093614,0.016312763692282625,0.08967634658487633,0.00029345557591325,8.603959094329931e-05,0.024691365495307125,-0.01519495077951775,0.07708533721909573,-0.026842342346720477,4.9542157528431e-05,0.002173344629509861,-0.018745575269856214,0.02930027341860223,-0.002535269346164587,0.000311929532090122,0.005408753255807627,0.02447376543600368,0.09126894342477351,-0.08437107131928365,6.667947108306122e-05,0.008624909472839663,0.01825721808030341,0.19281469005268856,-0.0858907012118419,2.44301295534666e-05,0.010388216995609852,0.01090249798256403,0.039347688363160424,-0.0026911105470034747,9.685359745280235e-05,0.0007376255305790436,0.008258273138367852,0.031096506631700178,-0.05897996395266594,0.00041860615571020013,0.0013486956280575914,-0.026296634005582062,0.13047814444722097,0.015293314678289096,0.00011543411721865982,0.0021087223915710203,0.002228813168515582 +2023-07-10,0.00356758859163942,0.024826057270593775,-0.010690618960291397,0.00015196850723442402,0.02055273559153212,0.007308866116110166,0.0317205340902948,-0.01928588508606395,5.528662029286194e-05,0.0016665029492536722,-0.008704918445087311,0.0248205659669233,-0.05168476958619367,0.0001622371210161992,0.0024095462871343903,0.009917579646180796,0.01011739975272415,-0.064488358586408,0.0003308298159214536,0.0011054003488575504,-0.054383930958877176,0.12197903738273963,0.15528993259384177,0.00023328304018156826,0.027286487822817545,0.029003224504546714,0.07520902153030767,0.11638568449148938,8.420213154033169e-05,0.008696463052396953,-0.005721959748698833,0.019563058177018044,-0.00414399392610609,8.582185693811941e-05,0.00029815125477443416,0.0028479557673970505,0.02645778270604636,-0.008917904968341548,3.6912920640012686e-05,0.012238126677230338,-0.003294325580510896,0.0024463929181583,-0.059045669160661444,0.0010384488132290284,0.0007384799228462378,-0.009198706241300323,0.02158575907597173,-0.03574072999588147,0.00014901202303868873,0.008801779331747422,0.032287173775602834,0.022599312249729223,0.0548628278318978,0.000698327535147394,0.0030538108835123567,-0.005743228660141055,0.07229713476469433,-0.006435957877628407,2.367324599782079e-05,0.0056824432349506905,-0.013009444643167401,0.03369811355645366,-0.0603456174693562,0.00011468436278723988,0.000663191391946172,-0.007388767526601597,0.04100373353120566,0.00018227584080979833,5.072364078906512e-05,0.014958733983319575,0.02214165305407378,0.015480352579436498,0.017092109152403813,0.0027896657216050762,0.010030287920893605,-0.06582066033779067,0.43576044763707866,0.07306125075804755,0.00012429868507187958,0.03950502069044875,-0.011125030729871714,0.05952739402656003,-0.03201025117964031,0.00028939603771376416,0.006861467301736904,0.033871109326944475,0.17993873976991315,-0.0035714912851051357,5.302317165800117e-05,0.017935352695189206,0.0038756787971307863,0.019260771989308582,-0.020609418846519737,0.0003316354090654746,0.0011398087827369473,-0.010753233860339379,0.13003612183701704,-0.008220864160606776,3.4316683829266915e-05,0.030802127733564038,0.020612735114597675,0.1808580438652083,0.036383080062180384,3.807847106488708e-05,0.0008075334552500067,0.0458862420330759,0.13033026758064145,0.07262459371179875,0.00011341224840341905,0.011925194177520883,0.01605975763308858,0.12795998478561976,-0.006141498114255593,2.8990598622119287e-05,0.010612571568249681,0.024804302650602756,0.07106392688589418,-0.02065956832760464,7.738471755220974e-05,1.8576065578203207e-05,-0.0059986609206671435,0.026043187926021682,0.008613743856842389,0.00010531949416538098,0.0023975522103726965,-0.005596435983241623,0.005881348431968278,-0.07293982819633742,0.0005438888959917137,0.007536703917852175,0.012622650603164866,0.055332951896733984,0.0031892809715223626,9.601801657447563e-05,0.01612398795721774,0.03740142312072404,0.13115982677771967,-0.14688621031863197,0.0018302333625030394,0.002884541230051039,0.009541532288100469,0.08836948892053441,-0.058285761337827036,2.7765019080918604e-05,0.0062062083316684665,-0.039750371044557836,0.11825550268601448,0.0481547665284193,0.0010989833129241029,0.028433333882925727,0.007697688669320192,0.06234620320712152,-0.00451129480245665,8.221971645480905e-05,0.00922832978983533,0.023486360042050514,0.03057759514656574,0.008664316095575832,0.0001812832899948129,0.005612419659811411,0.018973191747472553,0.02836820900594254,0.0044835084528799495,0.00038389494335133565,0.013679534878777192,-0.040115111114859874,0.14261619424611638,0.012945904607648911,0.0021801656746245875,0.02160505177892018,-0.0415805776710659,0.1594207561289397,0.052507029107980566,8.368276555688036e-05,0.010774789185716406,-0.024057465995593927,0.03422777619842108,0.010061871119646166,0.0017472232041955693,0.025270940580627996,-0.029613117604700145,0.09127841584913723,-0.0173652556617948,0.00012853815848459855,0.033894392950768105,-0.00578781083699915,0.01495862504063956,0.008328624065488665,0.00015684946028041483,0.014870533603627207,-0.04883614527385981,0.2226316976558928,0.07134958095351558,5.353875946322983e-05,0.011850255575135197,-0.023537724197461352,0.07824691225619367,-0.0022787561832586516,0.0028511188343426077,0.002466012680878367,-0.01848422438846599,0.0996999866365416,-0.011688626555314162,9.222458350418459e-05,0.0021790947398666353,0.020932642481673897,0.1289790367065788,-0.005731922183826478,0.00011769708622780466,0.006771103583689021,-0.005616176357387591,0.031031405327464383,0.00033289622501600746,8.560280419203494e-05,0.006676561798004804,-0.000522395160829968,0.0022751842803560283,-0.0014736736313144612,5.770719457630886e-05,0.037969331617777394,0.023538921653333485,0.051272077427997886,0.004116828221090345,0.00022383863205759717,0.02426025615810846,0.024822371077364076,0.11225162184724792,0.03456931690784446,5.4987631688636736e-05,0.005186193160110825,0.030504863052411447,0.2602885028281349,0.03236883181716837,3.023746507341609e-05,0.005664779467786277,-0.011858013221399125,0.0332107194070971,-0.027051790218838384,0.00012480805391146914,0.0037354516771187255,0.03209214140558714,0.14519863339166134,0.14820664022594562,0.0003483887634060614,0.006995375167252689,0.018456660164946615,0.08167115208537677,-0.02434762601016725,0.0001294363416979937,0.025726465492562817,0.0009224980753851405 +2023-07-11,-0.05357895945028389,0.3153948339535954,0.09980050628660918,0.00017964961193873936,0.0010143731289014397,0.005924555969094154,0.023619258262026332,-0.00030174527665748253,6.018663713430663e-05,0.004550557829213916,0.04492146227590722,0.1733498630947894,0.10550427439959538,0.00011987471465357984,0.0008132321112450051,-0.015241833739091236,0.01818443317384371,0.0031216063547697716,0.0002828819962111697,0.001737654446789708,-0.034170651606421826,0.06516040080380489,0.04366601718740556,0.0002743893720668206,0.00661277516516145,0.02439150553366865,0.060853117078563494,0.058489391134263415,8.751903455882165e-05,0.00022345707841794947,-0.0025215935073500157,0.008500306124658977,-0.028258809953789047,8.70423016244624e-05,0.01136339469164534,-0.012432260029146913,0.09523519765352291,0.002952656662958281,4.4766301168283866e-05,0.0017037849390574903,-0.03550106389654375,0.02799708354626784,0.14291307265299083,0.0009778525250365214,0.0019264490875767703,0.03893437545245449,0.08976137303317765,0.016187506110542944,0.00015167206923439471,0.005919579581763633,-0.009064834080659152,0.006626768121015696,0.0038018243918773193,0.0006686247418811048,0.008944277520262015,0.010811670164765263,0.15518442653962092,-0.0023025875116205892,2.076191658249627e-05,0.004902912075922859,-0.03438869284720981,0.08515336599711261,0.02580175031284248,0.00011996785291132446,0.0121754976910433,0.0038560171026679863,0.021325602456851517,-0.051340699362939994,5.08978527315337e-05,0.011803727925608768,-0.0021692671260668994,0.0017881821491822145,-0.004380751156920836,0.0023660518209411415,0.012791193970602462,0.027081818340122903,0.19148241513606315,0.009374783849327974,0.00011638607755499326,0.011965205276523685,-0.011448227804070305,0.06213195304952123,-0.010107554051008947,0.0002853195229591259,0.011657789402886276,0.01925200681564519,0.11331682433896324,0.006131109289318102,4.785668011079857e-05,0.03205687690704842,-0.0010174050735139383,0.005567865419820576,-0.06481006695289104,0.0003011563168059395,0.0037015315977880848,0.07677863602972959,1.1066433954132457,0.033497445824415266,2.879140956054986e-05,0.021144336579268154,0.0017045092777134168,0.01814984031238585,-0.006715950554976378,3.137677259755471e-05,0.014983974884425301,-0.03956020903560072,0.10398904353929102,0.011060294529669442,0.00012254447902536892,0.0011089938593745255,0.0790153187738595,0.5222633329930658,0.09958081620246814,3.494734091651616e-05,0.012210060412774932,0.008722101467980092,0.02193714632207947,-0.03797098203306732,8.81492019839052e-05,0.015599140544489059,-0.004445637095208543,0.01735571803926943,-0.0008204560886281425,0.00011712241460555876,0.002921454179042533,0.020426174958298505,0.019144263558701476,-0.0024764578310396274,0.0006098512864936489,0.01836889479916776,0.0018513009537392813,0.007272540331018499,-0.0016856184668499266,0.00010714623020168885,0.0014986337574564048,-0.024832480368782772,0.07888458560493752,0.009418474640343084,0.0020204454390110624,0.0022259069942397285,-0.0025792275739390967,0.01796625487613281,-0.011014082666101538,3.6915971491140526e-05,0.009065853509439566,-0.0011142074297731631,0.0030315814873312324,-0.027529186069959605,0.0012016225602485308,0.014027401837647533,0.01073091519899066,0.08479307440706724,-6.356378001542043e-05,8.42756331544574e-05,0.005362541809702427,0.026681808957472415,0.04082601799306558,0.009012141160830673,0.00015424945346672518,0.0019146032327180345,-0.014088908339189424,0.021097945484912208,0.0026968349060712297,0.00038330200558531853,0.000419171077259597,-0.04573267241697884,0.1846416546037154,0.012954223145834724,0.0019197613251256908,0.021386173985440026,0.012762119321180944,0.04354077066286313,0.012420635249167906,9.404096121720308e-05,0.005788554784620913,0.012967767035242878,0.020415872479448708,-0.0340699821246337,0.0015789720674935232,0.01700644439836795,0.05791672336481724,0.17575531633206132,0.07572053200148052,0.00013056042332803555,0.03899302188777507,0.0036021187104537432,0.008590548456226501,-0.0066911522389134,0.0001699798749599077,0.009141152400762253,-0.010517012776879817,0.04058489423903514,0.003433867727723274,6.324728799960627e-05,0.009014211474356526,-0.047960717316124044,0.16122857771026033,0.03376546156824514,0.002819432522248168,0.015663586539479114,0.005957892048784339,0.03230166215310407,0.00810367221924946,9.175047687363641e-05,0.005457065604029523,-0.008624645869319141,0.03989495128640033,-0.029709953380177446,0.00015677763800452492,0.013451405019686261,-0.029545393365455013,0.14369559441276275,-0.003963618498456748,9.725121190303198e-05,0.008692094876008085,0.02337023157875769,0.10854596194802169,-0.01694651372468819,5.4112392870694215e-05,0.00011029572163820346,0.018668493746886936,0.035403818885051244,0.004456160656981509,0.0002570919997379503,0.0216082627918008,0.02181494011078597,0.09247753882502144,0.006372354744679056,5.8658660024464966e-05,0.009776817035776469,0.037007035120961596,0.37144293275112106,0.027404406469655182,2.5705347427891265e-05,0.008193684144984788,-0.019850143162007283,0.05315282441154156,0.007929490770747121,0.00013054079733885594,0.010891644429788933,-0.032650220687885236,0.147599769465752,0.09715949134251128,0.0003486811043576995,0.012659686430938386,-0.01092348711417377,0.05549941428445649,-0.02278963812286212,0.000112731347150279,0.012390454287839163,0.0014827413542906846 +2023-07-12,0.005777812590660608,0.040507554392898056,-0.04546180283383999,0.00015083912728344523,0.0034466731880669916,0.017413044722134265,0.05021148033487894,0.0029799609727755266,8.32112826759114e-05,0.009108001159952259,-0.00904599935919224,0.02554750472790191,0.0015030255940525598,0.0001637967456869168,0.0008595101460939141,0.012988928693360558,0.015643583395679974,0.000514076405064609,0.0002802237542667798,0.02028238505051679,-0.005925632637579609,0.01298189680533712,-0.0005057102201667728,0.0002388330052564215,0.012626699092413953,0.010389964060259022,0.025056229958757004,-0.0163085812449832,9.054095247709428e-05,0.005132846811343696,0.032965029440965465,0.1196015072230832,0.04008528275179435,8.087358040610006e-05,0.0217368654105818,0.053526306164976174,0.45829361270329255,0.055227877492496816,4.005180415606443e-05,0.02273512535350275,0.009455036114924407,0.007077253419355369,-0.00837740211357288,0.0010302514436243784,0.0068057798964636824,0.009284271223080965,0.021755656950948023,0.0017110450407093376,0.00014922359666015252,0.002278746238706487,0.024769523276157095,0.018694029587017803,-0.059461060620243915,0.0006476480773744399,0.0069743586097125825,0.009500131639768435,0.1214330321252823,0.016789865768028364,2.3313934571692514e-05,0.010032399619996697,-0.003260995665732551,0.009228982234579004,2.6784361786345084e-05,0.00010496571041378477,0.004360549070064072,0.015135033631813776,0.08001155005235079,0.012934049111306717,5.324667883949631e-05,0.0013590081393061617,0.040060694216652176,0.026863583883480917,0.02204056224083879,0.0029085564151243013,0.01975444892285836,-0.055852775917358766,0.30654295257373476,0.036614235660301565,0.0001499358666628708,0.011374076306901999,0.0025994636295355914,0.015883559684466687,-0.01219545229581131,0.0002534218972855557,0.017521677786669285,-0.08564746040249004,0.5423860574374789,0.12888364063599375,4.448022022983557e-05,0.01795760299781195,-0.02408684237464756,0.13640508037185964,0.012760580278776886,0.0002910289096746487,0.007025004984867765,0.013879572013218124,0.1957743975808547,-0.0015633798983813662,2.942052440546623e-05,0.02735230057250382,-0.016038972367397795,0.15267317476999123,0.03436462899978825,3.509906209851266e-05,0.002455491198353862,0.03328891748728934,0.088621585696808,-0.01975310800426342,0.00012099931506930796,0.01867550912346981,0.09929371335244053,0.7402161465095718,0.11938587450983086,3.098529066120971e-05,0.015496279326005256,0.0003644680366990661,0.0009590093973997689,0.0021317134888705655,8.425854721963554e-05,0.01079409654944569,0.01604135101548421,0.07136211253324985,0.07260149252773616,0.00010278313020211962,0.006155823267210673,0.006875685555706245,0.007538772974392509,-0.0379094419039202,0.0005213038152099658,0.003552624805863608,-0.02243824434303377,0.08420239117418665,-0.08643431252879549,0.00011216321708912442,0.0008233982329228003,0.013033249798477182,0.04797543155996316,-0.005048391454966815,0.0017436246645657486,0.01508900680223416,0.025209307326421057,0.23588839914258306,0.023590891533452858,2.748125266039936e-05,0.0028659978189487277,0.015175306737332521,0.04423170970679422,0.004654931942959155,0.0011216956129435666,0.0034660159105040396,-0.008619111250127659,0.07807271769924753,-0.012807505879222436,7.351717870932447e-05,0.012010394399638176,0.00048439635774798006,0.0008086008827627214,-0.08430799928352688,0.00014138783490598664,0.03317487080523329,-0.015328109895941563,0.02394837100349248,-0.01024108117061367,0.0003673808729168092,0.003131700305159714,0.009955146814349546,0.04661447593202773,-0.01533322298354189,0.0016553018650628485,0.015825531718890003,-0.0083252728027694,0.02684074896567892,-0.0009342335739930531,9.951629837410124e-05,0.008426598898745806,0.02054638601002284,0.023998875894570997,0.0072147734823338455,0.002128245554895907,0.00013070633103872493,0.0025762314660388347,0.008350243030935338,-0.0063732091959953305,0.00012223675190441646,0.005946631555187472,-0.0005978011958537374,0.0017023258707359345,-0.0013839921023482893,0.0001423555672651631,0.0033921329708429615,-0.0012643760563304386,0.00591937065297626,-0.0006235588333909794,5.213323237306663e-05,0.011291260085375758,0.04040986858044669,0.1393121299120399,0.011316216914090087,0.0027492647508896456,0.0119529467518274,0.04217345232363286,0.19749797176335518,0.05240331460174484,0.00010622263846043151,0.001013580425268771,-0.0021051937395822735,0.012386070579439065,-0.003941443124459988,0.00012325918840904574,0.0004307208906713575,-0.01731108358471752,0.10179576738708777,0.006573271288303564,8.043466019100749e-05,0.02415962466736644,0.010906055434550687,0.051542466781472014,-0.03688528121921869,5.318019139672686e-05,0.014894158128913908,-0.045822911109999094,0.10038529524876555,0.022599114243433402,0.00022255736443851828,0.02385542048505341,0.009514635130095475,0.04399990649479927,-0.027568852403066064,5.377182305182147e-05,0.012694557598000696,-0.031385265138435745,0.31408313916293196,0.10992148771644754,2.5781754249590298e-05,0.007141965179065184,0.009835946071081535,0.03238022461888636,-0.008231306898600532,0.00010618061742154303,0.01180315721057054,-0.008039469290154276,0.038959393902379943,0.005609963910954498,0.00032526936334986825,0.008030300522907288,0.008873794615848021,0.04567128491635139,-0.011076596546729375,0.00011128533526199704,0.016244235064382283,0.004933667583028914 +2023-07-13,0.04437484148773073,0.26793923648363693,0.10357395685998173,0.00017514070080481002,4.2064387674312434e-05,-0.017799496325926818,0.06645995584223992,0.020749896874522927,6.42625850133745e-05,0.005333749303840942,0.06527543066706933,0.21079739000266318,0.1900613210063763,0.00014324574188171824,0.026858605546067872,-0.001788293182712856,0.001949528710462986,-0.08155672283739486,0.0003095828841237565,0.001903341838683649,-0.019399392994454687,0.046728956891757545,-0.008421751609240611,0.00021722000873330844,0.013634681078385958,0.01601894956332192,0.04834878076786274,0.0032161161224342643,7.234278885390958e-05,0.0037783862427724748,0.02513166121568815,0.09557533065144216,-0.003013113904065865,7.715520733537107e-05,0.005643099338697699,-0.017764713440725784,0.22000260362683097,0.0002593791017865846,2.7690385396532786e-05,0.035804102939294785,-0.03877412324545366,0.028625375781614865,0.12265227257801609,0.0010445652560812067,0.014280991719103452,-0.003809041429364873,0.008985282102485616,-0.01302311953682529,0.0001482333303274281,0.013373633595034977,-0.022819611427041645,0.017647425690017853,0.055928485904262915,0.0006320497172465562,0.005439292575205229,-0.012975868390520753,0.16281103399669464,-0.09124011022576116,2.3750643831316617e-05,0.0005592784093361061,0.0267371189926432,0.08061082245670798,-0.0030199117752605607,9.853086478871912e-05,0.012493167920954238,0.004284698053318139,0.02701219875022088,-0.15898625737377906,4.465006588053685e-05,0.006688796408525283,0.053357144087627685,0.04370495498265818,0.041668902189670995,0.00238113967557851,0.03450839219928841,0.022643195564940943,0.1536062392468834,0.005956539268388164,0.00012130563311871756,0.06502948811441554,0.018548331204836916,0.11567293441678456,0.0037201033395706275,0.0002483026308715289,0.012375235415567773,0.029744089308724204,0.14122700100949734,-0.06487717097715988,5.9325839919901776e-05,0.009258456389985683,-0.05305712509435841,0.2921319044829407,0.12761172751908617,0.000299330886199163,0.005200174223538906,0.00865414304875117,0.10448988936275443,-0.049146408581049544,3.437003952192519e-05,0.037680012288080114,0.007711270349280546,0.08078367640083783,-0.026816203362330985,3.18921666433221e-05,0.011100674541066707,-0.02491578927436338,0.06627835005805802,-0.019295301973272064,0.00012109486196163864,0.00423104023536343,-0.00848928822881095,0.055017753890773805,-0.059636398342415665,3.5641896017494555e-05,0.008290497672740314,0.007833953581829319,0.024310213147497862,-0.09152467889474392,7.14446329791344e-05,0.0014577764062865114,0.005704721749151848,0.02045576874903824,-0.03201569802952884,0.00012751675621216143,0.00830368112390442,-0.05078412031607677,0.05167081087938032,0.052029022441824425,0.0005617695799964366,0.02681156486282751,-0.010263758952768536,0.03762844186792826,-0.05252254204802249,0.00011480907496112631,0.0046141640004678675,0.023938895664532722,0.09312794955710527,-0.01954043741124655,0.001649845382449509,0.01273501568957309,0.024684324137593805,0.20659834562051488,0.004348323032699432,3.0723917935713406e-05,0.011635507336493742,-0.03305348772483825,0.0954004946952659,0.022901277534178043,0.001132760078725444,0.010372095709765808,0.009756062255117603,0.07097817997600131,-0.05120759008858305,9.15325048375849e-05,0.013563985903093182,0.024046888128287383,0.042342068990949645,-0.03772251103426137,0.0001340393131638854,0.0030839815678979456,0.008046170556575201,0.01315943164978869,-0.019742029608381242,0.0003509587020860887,0.006994039534698161,-0.03984722794860908,0.1580759719913117,0.015788762248082715,0.001953811198421856,0.0013080085055831598,-0.00016575881811553908,0.0006670453605234314,-0.022820252884537824,7.97281421270015e-05,0.016675531697259462,-0.012997449637757555,0.0222319571576825,-0.033695218884720914,0.00145330791315365,0.012736324079887007,0.02336715235411002,0.08722661857450281,0.007125258176167767,0.00010613846188687513,0.030028348585897074,-0.014207940071196511,0.03400737321006783,-0.0018148158133476913,0.00016936294821630855,0.032010508907793896,-0.014356220512909688,0.05082649292708517,0.0075940819390155154,6.893882889491584e-05,0.0015345892766995255,-0.0022342218685945095,0.007416441840951811,-0.005640357910349645,0.002855280379053992,0.015407867321025379,0.03533318940208246,0.15559098091507825,0.06174553447345935,0.00011296372199745566,0.005130789419801893,-0.0011661959834355403,0.0065503277589514415,-0.0015178875379518613,0.00012911279846176697,0.0210349469418308,-0.030636352273481784,0.19300273383666558,0.005647634064811739,7.507965920469967e-05,0.00454480226302104,-0.026746066922810636,0.11418032985422327,0.006371857111017771,5.8872981259766416e-05,0.012362510693675971,-0.00717805157545216,0.012904672155187721,-0.04733704226578362,0.00027119956765440684,0.0019753046714087222,-0.01248461200710505,0.06191492800067682,0.022723061846866066,5.01411226708543e-05,0.005078690629677324,-0.0339361185126225,0.297612809377766,0.08576291223226751,2.9419943463588027e-05,0.014887635246216384,-0.015135158348230095,0.03906124149320936,-0.0051194565890379014,0.00013544091875135642,0.01284048022068323,0.0163854169341289,0.06863130074048568,0.011599035661012258,0.0003763251449808896,0.002421729653514759,0.022363144287666184,0.09630685384893771,0.011810398022371268,0.00013299872154354822,0.014372201791968723,-0.00012613288019964043 +2023-07-14,-0.010213096647114606,0.06784768793249843,-0.014982819254207474,0.0001591875038978106,0.004849121716047434,0.02050189141392366,0.07167276921863977,0.0020252702035807517,6.863573218448516e-05,0.006840041485592332,-0.015658128227460728,0.0642323580188512,0.006594108329456301,0.00011276730051410382,0.01691840478133126,-0.005484068975935855,0.005512643551867173,0.00015132964165140555,0.00033574600437237366,0.0068659580510616455,0.002711709084399699,0.0056135159744476444,-0.016135934986527947,0.00025275857921049414,0.007483094907792732,0.01246036283685756,0.03895188569147903,-0.004969375456541033,6.984719044669796e-05,0.00031091025008811576,-0.0059783739556373465,0.0216188779297529,-0.0003626488194809718,8.114089302493235e-05,0.003911237343968626,-0.01710119799172093,0.15880641415363875,0.004272581494012005,3.692811249298225e-05,0.006214500196802539,-0.012424306844956745,0.009756808394727649,-0.0194248516915141,0.0009819947794509408,0.010879993764079793,-0.00592413169481431,0.014083048994048086,0.0009484912901294291,0.00014709228706333437,0.0071810110527223935,0.005066947818264888,0.003299997678840517,-0.05212349626212792,0.000750511161851232,0.007148055213870396,0.017887293290535237,0.23176142398741348,-0.028355932599334457,2.299991689656016e-05,0.0029210130980629133,-0.0356625047471438,0.10140562088023097,-0.05897488156226612,0.00010447222684512008,0.00742600567938541,0.005017007755911767,0.024020496476121145,-0.0059780689475385914,5.87928632627315e-05,0.0025631300527734014,0.005020246385199282,0.004212348794087333,-0.0026836299298543653,0.002324468578532088,0.00797857881118298,-0.0049048682096272875,0.03889514470330469,0.00042227666697064724,0.0001037729251758044,0.0007882038554280588,0.028567503860737416,0.17802393162815597,0.0124266772464667,0.000248486122130931,0.024836718768689887,0.037070543118920725,0.22041986764433663,0.027538559047083078,4.737390312502456e-05,0.007362516385780793,-0.022136390420242087,0.10107122552053212,0.009819016614969978,0.00036096582107589476,0.023592657620259243,-0.01342892911930539,0.18659491614315354,-0.0070145533397541855,2.986563862137251e-05,0.045130025524530513,-0.021419261061177756,0.22289404870335164,-0.024577152705309118,3.21061122882772e-05,0.010362511269203087,-0.028345017986591742,0.08795530643449712,0.0031994297958358843,0.00010380958304940408,0.02415559610536441,-0.030359621192272247,0.24838305290349738,0.017717482719384777,2.823363290909495e-05,0.001780919262238377,-0.013094950706825398,0.036521998390080086,0.019279697952063628,7.949260281612548e-05,0.005224252564277996,0.0037585188830507954,0.0162297361545372,0.00048531856477608564,0.0001058897377025568,0.006130280305390831,-0.028762115974406498,0.02694374573061371,0.013014830899598416,0.0006101525394088283,0.020753103732970915,0.017297663268929706,0.08081158680534235,0.023433943982003026,9.009481814127239e-05,0.0022556243502900837,0.06637656603711471,0.2422233822537823,0.016640140229638663,0.001758805808670463,0.01113237276308899,0.01879530871672167,0.1388247782321542,0.001589411897269782,3.481486138649537e-05,0.0141187727810965,-0.01637721379901391,0.051933031519083905,-0.014156852216631618,0.0010310212435154765,0.005445998323443567,-0.022875067887608447,0.1896131619109209,0.025907362225889154,8.033772966549247e-05,0.002984818145868857,0.07486127802964268,0.10421618840069986,0.248924721937446,0.0001695381493397885,0.004117033717413863,-0.024899666510717743,0.03167299978868644,-0.021732878251171203,0.000451240681452626,0.001365187120688755,0.049142591946232966,0.2030790315320345,0.09311028873909863,0.0018756133551946113,0.008549115832914728,-0.009881009723062002,0.045590716058181664,-0.0007797646372429165,6.953689327891955e-05,0.005327663296396102,-0.035296773978916986,0.05253724040759276,-0.03345735147785569,0.0016701095086167587,0.002625802453600079,-0.055615954154493254,0.17112793807002658,0.07507637610823699,0.00012876401541641485,0.00659169863961744,-0.009548271600167687,0.02061103061494345,0.00021306725817520308,0.0001877956082432255,0.005599033167200058,0.0630737576400772,0.28113533565265597,0.10507854777384901,5.4757951769220095e-05,0.02523315534234267,0.04370123265773236,0.1231431105832152,0.032133948872001473,0.0033635789459136515,0.012496332089036322,-0.04648526427721075,0.24651260570409494,-0.028089315487441507,9.380300314327776e-05,0.015213393732790386,-0.008869650750112737,0.04408675237840291,-0.10969274699711143,0.00014590131153630452,0.0021544528318136486,-0.03134030873969822,0.20304157903062986,0.005240101005213308,7.300741760498935e-05,0.0074631510697392165,0.03399295693305571,0.17120452014101592,0.008982374619912683,4.9902363135702366e-05,0.004275328993872617,-0.01800136634632007,0.03645645395194899,-0.0035835517715489943,0.00024074675443698564,0.03633411804745755,-0.009520940438537693,0.03115203526107989,0.014825113119027856,7.599898610104747e-05,0.0032197401558851264,0.0036916670728564496,0.03803250863974325,-0.0758470284199384,2.5043720074741056e-05,0.009462334768928783,0.0016204391483338977,0.004796782442864575,-0.035416393728544826,0.00011808416685559022,0.009059552536592437,-0.021647743837230806,0.09332564357727849,0.024406115347043164,0.0003656281437262038,0.01382627603130989,0.015496331645844722,0.06580269233095426,0.009236066773294863,0.00013488294360181367,0.028464250662891724,-0.0014487920337113301 +2023-07-17,0.006310215696885223,0.04142283581308721,0.004182766998232534,0.00016109830132949573,0.0035598572221859455,-0.026074080000010786,0.0822628306760257,0.051569847136725,7.605291606907683e-05,0.004410815181053025,-0.030407801417111788,0.08645997125699306,0.035760054236072966,0.0001626923521411259,0.00462501250562366,-0.0013547263285314294,0.0011654256434508097,-0.019911791017584425,0.00039231494954572444,0.0038148293477682097,-0.0069876171011906745,0.014367834755771039,-0.002794158026534757,0.00025446938885962864,0.012677965551508751,-0.017154715950901123,0.05087975077862659,0.0654458510091464,7.36182171700325e-05,0.002230435382067129,-0.01050717591176533,0.039823738647500516,-0.0562534520557002,7.741655283854392e-05,0.01421948936483512,0.014675283229413872,0.11639775722851152,-0.029414923101435134,4.323550081263813e-05,0.0193626820928712,-0.0016756257395801482,0.0013709648879545826,0.005728870133177385,0.0009425306405636145,0.004577080791371516,-0.053205289598179634,0.14715943502189674,0.051380364242866156,0.0001264237260441314,0.022161748589474818,-0.013663957229798384,0.010546741532451135,0.016257513602701515,0.00063326071835678,0.0023558695054142465,-0.01030751910662727,0.14334936319328803,0.01069458296473573,2.1427976920259206e-05,0.004175387858347154,-0.0003621246535600069,0.0009253977306654316,-0.031651261221162644,0.00011624671804330817,0.006891541451395959,0.01931572563730845,0.10899725490797076,0.03940632531855894,4.9883542321858696e-05,0.0006635344542418299,-0.00835433242093686,0.006591212561227606,0.0018043611583458984,0.0024721191965867504,0.0035015365401835554,-0.001214404852788781,0.008101234186665853,-0.005180067555555919,0.00012335717499714556,0.03179312000160193,0.026134874062997682,0.19685586349551384,-0.01848396349405755,0.00020557972866284087,0.023098344622489688,0.01488808036591558,0.08135225601177574,-0.028972185971658234,5.155016496619687e-05,0.00012193675737714234,0.00492076825321282,0.02448142648331285,0.008268309267870195,0.00033127068055346655,0.00111782901746373,-0.03385867008633805,0.42242777014171895,-0.10506061814810214,3.326194692831076e-05,0.007921846415359455,0.015997073080797744,0.17329305688617852,0.01096731982056814,3.084189648288551e-05,0.002337448350604621,0.024743989430052515,0.06870013627668119,-0.05375033732515253,0.00011602053899736397,0.005593786941261653,-0.03841664105240319,0.2689503007078131,0.020572239734533655,3.2994361748396113e-05,0.046932315820588946,0.02905505109378134,0.0895461933272432,0.027006912262572437,7.193692959847452e-05,0.004931177586779391,-0.000140343841400215,0.000492474463273751,-0.013979630665383963,0.00013030414761422467,5.4725783550738875e-05,0.011630564151876254,0.011184172820811914,-0.10982824973907487,0.0005943913398375969,0.00844480337201713,-0.027502969558324417,0.09364400270628999,0.04465159262027972,0.00012361911449942732,0.016008111841005746,-0.07319518692368801,0.229784694393435,0.2154643644925613,0.002044469336522334,0.007480842345654654,-0.01779886339365401,0.14299825642709954,0.018668275701593177,3.200690810777282e-05,0.01477277226306048,0.00046522547748847816,0.001232054687913555,0.00043062690415750064,0.0012345388873502292,0.017037012680606218,0.0063149398352550035,0.04749576392402361,0.006417163083507756,8.854009491171224e-05,0.009391546411404168,-0.015018692291205588,0.021249511794395506,0.029164160221179784,0.00016681248383470262,0.018883920070631898,-0.02554877360739786,0.03093607243094915,0.009552928518436823,0.0004740332396634828,0.0025751329340834017,-0.041815051811618896,0.1625966532908339,0.0018668163505076436,0.0019932940853445214,0.01627052877073034,-0.027891182112033775,0.11943351028658654,0.005323550098669197,7.492574930681286e-05,0.0008767100698210499,0.02124911182142378,0.027800403649213372,0.005359809999629719,0.00190005806071976,0.023969682513252703,-0.024369117030763922,0.07025843317458692,0.005731940437794097,0.00013742234961031368,0.023690560658202103,0.03568865777860598,0.10509585411451412,0.019862155364672993,0.00013765912567025788,0.0036367841669204173,-0.02043206273848895,0.08407426515332092,0.014867795315620592,5.931479836775438e-05,0.014607479759405117,0.0031340570979593815,0.008294213272325579,-0.0023047094064950683,0.0035813747224946444,0.01129166318816772,-0.027155612196995787,0.12946860884165914,-0.002214739972030402,0.00010433636141159366,0.031760805505646326,0.03661302016109173,0.24644680941296643,0.07257596618156792,0.00010773904934571952,0.01541096515467828,0.003726943245676691,0.024657416825600496,-0.009056399392776008,7.149141635832084e-05,0.009181641943656902,-0.04304915898927068,0.20001666038227672,0.034225575442623696,5.4093601168294756e-05,0.00844727699233053,0.0034536444853619443,0.00689375770586442,-0.01964542193421831,0.0002442592439684294,0.008033062530467336,0.015520088305315944,0.06442551524043048,-0.018872660938179443,5.9903288350681154e-05,0.011309308515797676,0.006762016762589392,0.07223024114393878,-0.015846191147079802,2.415396672712038e-05,0.003691069302114179,-0.007153059886582686,0.02044131900461265,-0.0438610180429831,0.0001223184332801386,0.0083889125308947,-0.013965617669439214,0.0572018362944909,0.016782707352782016,0.00038483817686197914,0.010175081078701562,0.0019196260764423692,0.007886170082667879,-0.040155367765284555,0.00013941910724244824,0.017692252557221302,-0.006256252712343162 +2023-07-18,0.02403511306158753,0.18902425898266914,0.025804488650574393,0.00013446684313559275,0.02778575861744335,-0.016457629812997945,0.04780214255100056,-0.07646755465008735,8.26095874448403e-05,0.001670095576855488,-0.0054922397406796455,0.01661465601923073,0.001171688548669859,0.00015291684762313307,0.0026431618430597936,0.04540774933054012,0.0432077419538415,0.10552358944670401,0.0003546796424862038,0.009569508289729772,0.02861225363806267,0.060581417374017295,0.0316959398211533,0.0002471214301231748,0.008486886091092426,-0.00042397765580156146,0.0012688964272497998,-0.02332278270701974,7.29564233083098e-05,0.009080711545784955,-0.010755018307153915,0.040740422633808344,-0.0036284585052097753,7.745964088553372e-05,0.0072063024420339315,-0.01729049361615821,0.15465056425017631,-0.0008515301249526641,3.834021089797217e-05,0.024243744566664144,0.007295015759488089,0.006475148965875901,0.02674384259987116,0.0008688028900508343,0.000759653540157235,-0.0029944396564033863,0.006767140666060959,-0.1524475067232319,0.00015472918854604728,0.0018038194198136035,-0.0009655637745413239,0.0006177831014516382,-0.002167146527854727,0.0007639576733491376,0.006209331757399688,0.010802907868407093,0.16231394188811016,0.023923497343158566,1.9833877963416877e-05,0.008775531532236522,0.021651391501784828,0.051841382407567235,0.000938223634742772,0.00012406814156978757,0.010337760180969883,-0.008922100779055833,0.04958805949143689,0.006770327645305983,5.0646778842105815e-05,0.011408889827591947,-0.002259180499984318,0.0021501755177275417,0.0008596004438205608,0.0020492738148157755,0.007543758970083929,0.06401980342090262,0.37371749233455104,0.04973845238921056,0.00014096880492573923,0.021748897616284388,-0.011471491182022949,0.06795872670621458,0.007915169034160107,0.0002613863319594497,0.016838147198836223,0.0027754661634649615,0.01424150369473604,-0.010148879256873324,5.48960436712135e-05,0.002252706985006319,0.026251368735977332,0.16319703453397172,0.04846508820979876,0.00026511023631372834,0.002264701260903791,-0.027921348764726354,0.3120399464581832,0.01133101749061358,3.7132691544253695e-05,0.0007840412934082127,0.0050700077588286055,0.0619068243957971,-0.0007486433879402425,2.7362249977781872e-05,0.0014088219001642138,0.0010891852425198498,0.0028894798938384524,0.0018142935466330485,0.00012142408161746644,0.013680135775937009,0.08529457869508755,0.577634199853551,0.07351932878908689,3.4108365327816175e-05,0.005520663916500303,-0.009504664768179311,0.023951308225859228,0.019283485979817494,8.79802003131111e-05,0.005633276217890179,0.02452445776747952,0.08191461079086326,0.14572224719097893,0.0001368947009831872,0.0012533538119445537,-0.01368814310126278,0.01422870030465207,-0.03213914812204085,0.0005498634671661488,0.008552501344926584,-0.0070619690723607315,0.03183586139145581,0.001290330372043556,9.336738924218367e-05,0.012655429730331241,0.04012629274772766,0.15284603213745074,-0.07217561491891827,0.0016849772556465767,0.016024294424063876,-0.01813231091982637,0.14697365014349872,-0.053210871322177854,3.172457936692073e-05,0.01926972817572331,0.053148271456176024,0.14692896024103,0.06980656152332829,0.0011826412120992513,0.018007951186264252,0.012911623506030168,0.09137912975124557,-0.004628158251994484,9.409346880913807e-05,0.0024037780356531728,-0.006259015374009293,0.009155302642096514,-0.02403588311351091,0.00016135361484984748,0.009968862303969178,0.003765526337606285,0.0049511352706071415,-0.06684211787498898,0.00043654077133758134,0.013714944755464628,0.01922908611783369,0.06820551222854727,-0.029017624283170812,0.002185191541364735,0.01274033476124422,-0.02090553745925135,0.07979155411727427,0.004309342698271354,8.406104482175398e-05,0.003993410848498823,0.06131053336217829,0.09558162104657227,0.00584330431422012,0.0015945490907235812,0.019176166055790658,0.027825120964961335,0.08398390435201446,-0.0007067919225251421,0.00013126744637282124,0.002922825634665667,0.035118335719148096,0.10524491900116877,-0.01195326969081067,0.00013526740674588099,0.004070872380487629,0.0020592349549651517,0.009511147472115419,-0.004734943859663359,5.2842932562376706e-05,0.021735995518764744,0.023684388687111948,0.06587253586836715,-0.006820484038424964,0.003407813782618565,0.002049181077579026,0.009951718579534363,0.049824445338225595,0.0028322275202725474,9.935647711191389e-05,0.0025635541248672663,-0.017965685584231117,0.08925960551529778,0.0037350469503337437,0.00014596529728295063,0.007982675199414854,0.026538266118452298,0.17823907796097616,0.030377343588067027,7.042361532690759e-05,0.012594197550669475,0.007494240140734873,0.03132991815138348,-0.006903197123644112,6.011955258066123e-05,0.008565873964412149,-0.015481043509150338,0.03267573939926095,-0.10326203996382959,0.0002309958627562506,0.002535974431675198,0.019563692038839047,0.07596134979060434,-0.01593864853697906,6.404312574936204e-05,0.013818294304504763,0.04816665589808504,0.5672864773797653,0.10434381878994413,2.1906618719270825e-05,0.002556247341733859,0.00460484524220292,0.016273536809448513,-0.021261995899936745,9.891042162501324e-05,0.00296533995679848,-0.0007950379630761357,0.0028466999341106693,-0.004281145426980776,0.00044022443661530285,0.011222288129144792,0.02113732465061884,0.09311470959554315,0.005253475888643475,0.00013001801181424322,0.010469388957554965,0.010897499275165666 +2023-07-19,-0.0035067895648557253,0.02197128069920337,-5.4771347745781384e-05,0.00016878774727914868,0.0026414915655959513,-0.015200150600881935,0.05223612375170626,-0.11475337750076897,6.982122680560969e-05,0.014550846548735345,-0.007930320263425657,0.027596388116281505,-0.014483824758292746,0.00013293388180192888,0.005092478855931224,-0.013135142232481786,0.011944039098405008,0.006072007884769237,0.00037115167067815896,0.0071948398023330045,-0.026406668629235273,0.061993045920130496,0.020746224508659348,0.00022287862137997862,0.012759972699947523,0.021615853849961772,0.0497199070101038,0.030252212076473838,9.492679703702806e-05,0.012772391528922258,-0.06446786401248461,0.19533591014141446,0.10374180385336344,9.683916720272107e-05,0.0035485118057468653,-0.025329868523679962,0.20867532051223747,0.004241195445078855,4.162559561593404e-05,0.014395231422588474,0.0037617003938585415,0.0031994381869965907,0.01224037982485637,0.0009066825662414663,0.004544511945390377,-0.005190188455550815,0.013665613698090752,-0.03317805249999259,0.0001328054427059571,0.0030374408308206,0.013442386197739402,0.00989382018070955,0.007309315575341128,0.0006641049447198585,0.0047684057371012775,0.010080167200609825,0.14972032503688618,0.0018446493622529853,2.006364172219453e-05,0.009165463889450436,-0.07976555866606691,0.19968415482831864,0.21407271376349712,0.00011866505494961071,0.02858301511859587,-0.013277780255368587,0.08329857109941298,0.022078433138734456,4.4869346429879026e-05,0.005924857128965614,0.024902483997244058,0.023275361471878496,0.0081855559992169,0.0020867441653108078,0.005527981738310141,-0.06066967408784783,0.3386430718634157,0.04440259093544897,0.00014742854340294554,0.010391436072304926,0.008110904679401119,0.04326259836454959,-0.00416714643922484,0.0002903119612418375,0.015285860971795932,0.03499473844151933,0.19959383957240034,0.0005352343806818619,4.93874468265125e-05,0.025465847280626112,-0.06321183080257348,0.2944792536969959,0.12534419897994775,0.00035377771504692954,0.013395736005197036,0.020038296682355558,0.2597727812825952,0.006000967495824991,3.201086349647249e-05,0.008710972883554009,-0.0062437688198904925,0.0617754794055636,0.012157812806257816,3.376854895616785e-05,0.00695813365047101,-0.02941031145051831,0.07778003985335778,-0.0022074473716197653,0.00012180194351644757,0.010575518203555777,-0.043154992622653564,0.2593362476434184,0.026201244130459395,3.843794845706272e-05,0.019069377258906187,0.012267703418208993,0.036976134879387126,-0.02101681202514945,7.355617510315599e-05,0.0024669238512549825,-0.006221932530311404,0.024225557922682762,0.01835483886063762,0.00011743569036419191,0.0018153904499300108,-0.007936466043472127,0.007296278665633597,-0.02038303017000525,0.0006217292664558665,0.02392061097157746,0.013247405256134522,0.054781223438610735,-0.0636490636115994,0.00010178531008728338,0.0059489648045291145,0.006033531181011151,0.02039355357742444,-0.0012477910029925396,0.001898881345279043,0.0097142906858763,-0.005969731060283455,0.052814338577668325,-0.07443225604678252,2.9065989771904925e-05,0.008573486786078504,-0.056665135823031405,0.1870795718551825,0.06804325607163957,0.0009902864496686558,0.012607611975264044,-0.0024567069517532555,0.019605673970859234,-0.07735339186849248,8.344440488287175e-05,0.013169240942819774,-0.03730696219444727,0.06019392524415748,0.09329333928433224,0.00014627921085626474,0.006083948242073584,-0.013038717733881275,0.020208383463421856,0.004063702047111513,0.0003703456290076427,0.0040079450120754645,-0.049611118225712986,0.1888704775856937,0.02840604267043063,0.0020359414238104324,0.016187713966767207,-0.011878185041137048,0.06220958269635593,-0.014784478589020158,6.126087122400401e-05,0.010675800631932802,-0.03576724909038308,0.04231272380741775,0.034100778145348766,0.002101317840987902,0.024899656317608224,0.03870760339782861,0.1136460942715491,0.0006752101541986171,0.0001349453128076441,0.00898616870444211,-0.038248025733615416,0.11388145811553221,0.08455372627813379,0.00013614960316779597,0.0021009900433399528,0.05744670116038491,0.22764205517120573,0.06757566231385008,6.159231417237196e-05,0.031625378496409264,0.060618003882913225,0.22064995264184234,0.0022640317972803473,0.0026038493306589777,0.008943532005780406,0.007879173382551776,0.039477142968184074,0.006835735011251005,9.928314217969994e-05,0.03457549020488813,0.029875595252066376,0.1648327849591064,0.02469056576178768,0.0001314418778676774,0.009670711042333885,-0.028634769924188508,0.1501147198511882,0.011568966932107166,9.022338493546406e-05,0.011745987071122843,0.02022583380228821,0.09373322159922498,0.036428251502226575,5.4232582457307346e-05,0.004187459671775625,0.04875051187584441,0.09229276624230501,-0.059933357126034106,0.000257537758301486,0.00153247693563383,-0.005736327863250161,0.023508245088204798,-0.0031337723311935677,6.067756326673441e-05,0.0009745290460731961,0.002508678552708621,0.026867726263436247,-0.0005887623612415769,2.40904763463327e-05,0.0005603447043695568,-0.011770554348021316,0.03961433525592055,0.0030012962237091173,0.00010386124130315456,0.008373092580308189,0.0073793988359795925,0.026977940472779124,-0.02869436615278159,0.00043116168673475945,0.007926074199187708,0.020228944468511607,0.0989991198030935,-0.058449150278149446,0.00011703444092988514,0.006808716900879893,-0.0056279085919036945 +2023-07-20,-0.013167313794411167,0.0936925090201204,-0.02153378419406232,0.00014862056233259357,0.005607505908938133,-0.03084968382569535,0.10821320939296601,0.07255336714862508,6.84039162187248e-05,0.007385302024888515,-0.02439503519581255,0.08957013967352297,0.021658165876119705,0.00012598980451379439,0.00777132605812169,0.004248853609129924,0.004176801990184806,-0.025300160407203984,0.00034331733862817226,0.006129688147372902,-0.004865327489783354,0.010666404772187658,-0.005567459111791692,0.00023866667912317714,0.013019218056925809,0.01047799587897309,0.02465347556803642,-0.02554056679850569,9.27997507489562e-05,0.0002700249582572689,0.034845811149525736,0.1346984810344192,0.04553353133354262,7.590628478145096e-05,0.0042359743972509994,-0.002666990152030032,0.024086573165348703,-0.11880213526253006,3.797038580569303e-05,0.012273841077518147,-0.0011730235220188186,0.0009910934079043047,-0.028460901909100653,0.000912718639998566,0.007869559394965999,0.001875941873945786,0.004271979917948692,0.0005888518116439967,0.0001535507922599297,0.017030851779733798,-0.009539183691217569,0.006731535286593276,0.007031496109090862,0.0006926621289744113,0.019113855504444024,0.005340435404413857,0.07632296327537519,-0.045021133038757745,2.0851832714526914e-05,0.005699382692031037,0.0599390388594438,0.15153365828744877,0.10647020741334245,0.00011750374395272268,0.02059101270349493,-0.00652391079577521,0.03553598632262146,-0.11703988605943133,5.167749556690505e-05,0.009408550068129174,0.020386583212335847,0.017471683160131424,0.007536474011981893,0.0022757925499557645,0.004323953045292214,0.028007624381496204,0.24066799733122501,-0.05940842241814766,9.576571092257737e-05,0.0033060682543096954,-0.045218202689106445,0.22757405031711608,-0.03437533780678851,0.00030767966149225625,0.005558446940135881,0.004616798518708389,0.030915356187820507,-0.0016465809654707029,4.2065651876496174e-05,0.011297427448083657,-0.015863996952309077,0.08961222358622649,-0.02066405919616583,0.000291764313752364,0.014106048645159054,-0.029255848511246085,0.40132500018603323,-6.681507522474362e-05,3.0251486173895154e-05,0.011232137682070698,-0.0016863966844670561,0.016494396113364666,0.005055303571045954,3.415899060292959e-05,0.010446585287623895,-0.015759585328269137,0.04723424022296954,-0.03026093324066185,0.00010747578053086806,0.007186813613652545,0.0007503161750124157,0.005647533841423671,-0.02149886500198579,3.0688654157580895e-05,0.01393217881123589,0.019123668011553966,0.06126236817063592,0.013497261877289985,6.920776064953812e-05,0.0048274109120717175,0.009411283407950914,0.0438953837376764,0.008987881524271045,9.803442307321923e-05,0.004451175180114656,0.053947494632775664,0.04929573849734805,0.030311586358038305,0.0006255146198808332,0.008618911514059961,0.00343917268698093,0.013034585543734607,-0.03427365751619216,0.00011105618883947334,0.0025327027145454046,0.0040378804845815726,0.01245689804090114,0.0014474964222950877,0.0020804760718777494,0.03720482995441049,0.021338084469280788,0.2124358375932356,-0.003702489024242917,2.5829133793049207e-05,0.004320330117734421,0.020026364563567566,0.0572357848858824,-0.05484904819800811,0.0011439465816671691,0.0020964679238258503,-0.009089453746720103,0.07478797378811287,-0.004887455610504648,8.09341220712639e-05,0.007878005151072759,-0.042745881815257125,0.06356389537676557,0.09011080419473455,0.00015871908925752374,0.024739165937992257,0.02191516263446629,0.030069209568851583,-0.000156353161535018,0.0004183373103420657,0.009532764065852609,0.008999841230543476,0.03790290884716838,0.009650625147120723,0.0018404017945949406,0.007246188749267094,-0.010209767163950197,0.04243770170774151,-0.006079093763148066,7.718881124506091e-05,0.01374885143506205,0.044273724892794075,0.06189364988536154,0.022842795649129555,0.0017781858910069393,0.030330906213186386,-0.00393824613976235,0.014307578925669202,0.0003306100432641001,0.00010905679797485513,0.0020906157869451485,-0.0051255231125267725,0.01352041800647585,0.001325303995286916,0.0001536768512708773,0.01574541257319279,0.04209424217445792,0.18323719218583184,0.030659939444755948,5.6069023442356124e-05,0.03438284817829461,0.010922846272662582,0.03933683447930373,-0.03250353871871547,0.002631809626027398,0.012734589139696502,0.004004616170153844,0.02065010465805975,-0.0026054257940471355,9.646709719189804e-05,0.009751895867914586,0.0014598006377109893,0.006901492161970162,-0.01226850451402985,0.00015339504612166602,0.006412182477791203,-0.010338066078996006,0.06662519763561474,-0.021234197018536148,7.339213002129189e-05,0.008015287180908359,0.007293625491580253,0.03969066528552849,-0.058036591200331375,4.61851625062597e-05,0.005061525477832603,0.021051370006850593,0.030522467824355713,0.011701476251138569,0.0003362715410274349,0.004356901017960772,0.020167053941904847,0.09799987062393589,-0.05007536985092666,5.117187536688859e-05,0.0025027231056739202,-0.025380587642846484,0.28683405833544806,0.05388904901611628,2.2829807050284824e-05,0.016646147242087128,0.016608042180216477,0.054899122109043394,-0.03968779893761989,0.00010574552653154181,0.008287087428015273,0.0005850019297557836,0.002183257467902562,-0.0006035139409819046,0.00042235760182788695,0.002600618230318121,0.022256685529758805,0.0996003617462413,-0.18617727687819352,0.00012798862393956914,0.0034914333155632955,0.004143234906721533 +2023-07-21,-0.05242909817786167,0.33094096483613505,0.06916819207457983,0.0001675361159281588,0.029993173649703202,0.029305248133625193,0.09801443540681384,0.045309105113839496,7.174074576720164e-05,0.006690454226632677,0.07609914921673312,0.2968164898990635,0.18033280209636418,0.00011860117209366129,0.005298753776194926,0.014036965229049791,0.014200422140847421,0.015582232975677632,0.00033361058783336816,0.003654314554355109,0.005487152952907817,0.010763806936622853,-0.10085282405892619,0.0002667343446873789,0.010085778759178814,-0.0007673586224132304,0.0022807901062031227,-0.05880931428411644,7.346150083881105e-05,0.007051892476094219,-0.021901558558971617,0.07673332707540627,-0.09827742998386929,8.374923472101147e-05,0.006543864689513209,0.015046778296649143,0.1282452525510985,0.005944078240005973,4.02347066595888e-05,0.012278779831612005,0.024605268009215375,0.018115062622979135,0.07135157385381068,0.0010474493866831185,0.0056193177730288835,-0.00483090020732009,0.010649685242196021,-0.005938060637501242,0.00015861825966195602,0.0025743320343773377,-0.01175198773853262,0.0081478686495744,0.006669361432991337,0.000705004142282196,0.005190763686847143,-0.0033746861835625475,0.03919480681461654,-0.028664278768574605,2.5658286765630824e-05,0.003386114972836374,-0.014718019179513197,0.036171968776963936,-0.06057821229499558,0.00012087270885350166,0.0005785600705649388,0.010653507713290327,0.0671857183741407,-0.07662927141398898,4.463519925310645e-05,0.005123892996954643,-0.046675002215805825,0.03891195892227917,0.001275938505574353,0.0023395063322633513,0.007162952654726822,-0.0026551961639620348,0.01894277563851349,-0.07078726283693353,0.00011534668145286997,0.024576962478073023,0.009750845759260187,0.059036669956311155,-0.0015020817355312227,0.0002557576696164511,0.004278232518589258,-0.06094599345422337,0.3701926527680637,-0.021102518687738516,4.637440191753557e-05,0.023724035334878865,0.006739972105670023,0.0368060822837206,0.005083395934736063,0.00030180422407792876,0.016403565233425357,-0.009985799037023414,0.12390540122292854,0.0011573017283412832,3.3444354225584324e-05,0.023429802706568234,0.020606822696157552,0.28542535338123903,0.029164245704350972,2.4121271449115916e-05,0.015593346650626368,-0.044349238146172636,0.11829554661621403,0.009772972932405716,0.00012076484384499381,0.018933272132373318,0.04078164453880894,0.31552751928973904,0.006951504263827543,2.9855191967517913e-05,0.019090127990986472,0.00923069390950421,0.02401806598830204,-0.011300264054709432,8.520669075761326e-05,0.004696501654661205,0.00974710545544736,0.031046931701647486,0.0012005588400020213,0.000143550785777529,0.006352707969050873,-0.010247593207866022,0.009149867822815292,0.00383463732069196,0.0006401512799465284,0.01753316907735488,0.0588596907880746,0.21163986129713466,0.20402414507827443,0.00011705946019723357,0.006609468512291128,-0.07285788125365027,0.24816023416691094,0.16074118445671806,0.0018843584607944662,0.006032975287970762,-0.03319847528414794,0.2784724105438816,-0.01923989631542964,3.065618860195011e-05,0.008955084955834764,0.031174677534827937,0.09222270743499501,0.023453323939080815,0.0011051859922377432,0.012765281409684302,-0.02927190361791925,0.2267342421278832,0.05732060130519644,8.597248818705358e-05,0.005293794551894264,0.007206521466350068,0.009790413313769097,-0.0001822521964079013,0.00017372808979901968,0.006811385477237582,0.01748752534484169,0.026087819867125512,-0.03705947773305852,0.0003847640466621716,0.012572506493014881,-0.01850222161968533,0.07454208187382051,3.652121003513925e-05,0.0019238566190683407,0.017066467806993623,0.022451431074617046,0.0965859620038534,-0.05979209197638477,7.457965829090468e-05,0.01021337722675378,-0.05888894662909352,0.07546236745830409,0.04894100182200643,0.00193990539891835,0.011281175254599039,0.0024915723367737396,0.00835573381550772,-0.01772145071550853,0.0001181421691501809,0.014306378361806734,0.04160767046591661,0.09984645451708772,-0.05820773886897542,0.00016892780122168771,0.014965821709283587,-0.014427206036954748,0.06514343645563103,0.0027887207492106434,5.405370838069079e-05,0.012421081325782114,-0.07723367641752371,0.23059137785919182,0.09089118155585306,0.003174546565500401,0.0304194303171413,0.010721086415606571,0.0546718195758438,0.0058061431150168005,9.754743161163123e-05,0.005958245244112385,-0.022899549933831802,0.1320418262919077,0.04374118717100701,0.00012576975321044724,0.010268020215387834,-0.0178762876054633,0.1129374131883998,0.007966110803942661,7.48666147282285e-05,0.009329394490129672,0.011887341182423506,0.061135361068793484,-0.02926575052818736,4.886969640927405e-05,0.004689311885437956,0.01197423377252752,0.02384803778886731,0.0029829051246946826,0.00024480736281328694,0.008201522797639246,0.006446534115565963,0.02247573725269176,-0.019291796824736192,7.132252579849167e-05,0.013695711744917995,0.016529330384475894,0.17901100112566318,-0.011169460442438698,2.382356904972141e-05,0.009209213287040132,-0.022464026872716064,0.0696966043029584,0.03655179242888666,0.00011266394524898892,0.0043784395927169185,-0.0050011032041112095,0.023310968035109656,0.0028466778103051747,0.00033816875524430543,0.003689137285187667,-0.0032553553222108384,0.016574907349350358,-0.00029703340744783083,0.0001124913387446463,0.00880899403396891,-0.003580230754565643 +2023-07-24,0.015140832522584406,0.1130239494059679,-0.010927622290605376,0.0001416660747404477,0.005960653385924703,-0.027881884841583188,0.10000810416469762,0.04321148594108473,6.689558580384181e-05,0.011443087900201017,0.008801866200973127,0.02304824114456623,-0.03758014666273276,0.00017665835327299753,0.011569576352155749,-0.01672730939890457,0.013663478720612356,0.00683346746263367,0.0004131736925737867,0.009788381303387841,0.008506339897723763,0.018286608315572262,0.007566123663748966,0.00024339258424408038,0.011865710927950053,0.02178775571797593,0.0494013873753404,0.022218836736616242,9.6298626193992e-05,0.012357549326123828,0.027129217178328318,0.09848221928724335,-0.03497694063002382,8.082938801513059e-05,0.002166033940201259,0.04335782348781636,0.37507733506516944,-0.017479706603525044,3.9641060623981226e-05,0.00444033298002738,0.034139509141349875,0.027840837698710274,0.14234343078224557,0.0009456267750774621,0.0009733846188758183,0.04008040416285637,0.09099576777508188,0.07964258101617167,0.00015401846292964903,0.00913470288836523,-0.0035465804157459127,0.002481290338587273,-0.04928203428700301,0.0006986450482541743,0.019610080871925745,-0.0031537193655009326,0.047097038395133045,-0.0004936068731990494,1.9955023157067597e-05,0.009204376247420924,-0.029962855900593218,0.0837604114320389,0.008082009898635095,0.00010626627114648618,0.020225687158063207,0.012167283711835099,0.0792824893945254,-0.02507608541716619,4.3199445773998244e-05,0.006772296767237118,0.012749050407145352,0.009659620361479118,-0.05501800837087947,0.002574190910794258,0.015854862654401752,0.003988306478418355,0.027172155816472383,-0.040139306402922445,0.0001207859822416184,0.010997391672303708,-0.0716894955316415,0.40778688078616543,0.11481857361883176,0.0002722265671306224,0.001205399877648045,-0.0249878996761827,0.1568119908827605,0.0037996232271502325,4.488605538186859e-05,0.008282700351544287,0.003858371256003207,0.023021842794885977,-0.02891738061849369,0.00027621721173149333,0.0038172153602928096,-0.01246600783017402,0.1581954181765546,0.0017702912999334396,3.270120270962584e-05,0.011270404020849431,0.007535225537629687,0.07945081038231001,-0.04940154314360135,3.168689126491738e-05,0.0063630438556528425,-0.04147262748044178,0.11627221398113304,0.029281981069791494,0.00011489691407760868,0.01629571409034959,0.00044519086666903573,0.0035200375746136927,-0.04431387088007804,2.9214020029165973e-05,0.007041964305721431,-0.008982262744905909,0.03127901191128643,0.0019652913846816764,6.366637332649612e-05,0.0021821641742544463,0.008878067597672809,0.033824502953686275,-0.11818867540372933,0.00012001502491085064,0.00403657392686676,0.07881940513750801,0.0772007365076897,0.05749892288114271,0.0005835623582272652,0.004056291920552871,0.011567762260977795,0.04415793439118109,-0.003973876118415739,0.00011026218989896867,0.0004699730257437984,-0.05589604413812371,0.20269093320215925,0.05668411847784192,0.0017699700827063182,0.0009688253519192281,0.009797699000224803,0.09800462617927354,0.005202003144131654,2.570749215640696e-05,0.021250600729445013,0.06555759107993744,0.1596311983703225,0.08979642032470668,0.001342692251956469,0.026065662075174283,0.013285465733793063,0.11038724240172003,-0.020502418595745597,8.014631196264941e-05,0.009937764264322167,0.03583295513084595,0.06168078744646874,0.01862845887620379,0.00013711283246263802,0.008493242921196107,-0.03024084519302342,0.03809625379687993,0.014878433020143626,0.00045563341585649214,0.019770625849125173,-0.009658403257718537,0.04477719415401311,-0.021784090508784285,0.0016718557342455193,0.0001329308027175299,-0.004585296390771883,0.01925568676698256,-0.031200998100409643,7.640095218399387e-05,0.0050503640770412205,-0.02472740667630469,0.03852620003778488,0.010700426071430258,0.0015955102111763154,0.010554485834460389,-0.014542353797835117,0.03972490224524841,-0.04601739672828576,0.00014504003825293815,0.000894037640129561,-0.02202302022067283,0.054886623154902774,0.04747052458350604,0.00016265624477377022,0.002196575696935426,-0.019350830425020928,0.08453839836156106,-0.013729680563311404,5.5867535884093216e-05,0.017657223359673006,0.018522605048728977,0.05830541290185024,-0.03630535733037223,0.0030110034229041795,0.010559147743968322,-0.04255149005425257,0.20728853527036964,-0.019130797657907993,0.00010211277075396009,0.005675546056624129,-0.014722947485962952,0.08071440961390978,0.016711754659743637,0.00013228313323166932,0.011548388720432349,0.007979561072367837,0.04187081405811955,-0.09638613684779157,9.013973918762762e-05,0.010079325511691639,0.016074321255197952,0.06987315565038446,-0.0858887504683109,5.781888083897501e-05,0.0004561598883241441,-0.02535504827091949,0.04701130890610935,-0.03145133837837744,0.00026296109082034005,0.01290417724754542,-0.026105298755341656,0.11909135990220741,0.07994784301473955,5.4508319032109216e-05,0.006515984286077834,0.06486915312389781,0.7378224175831669,0.14205937332607196,2.2683897029928266e-05,0.03177136638812491,-0.008236187498587347,0.03173343068908552,0.0018211663384504451,9.072315885820878e-05,0.00037947942039022323,0.018875868386839127,0.07282085690061949,0.022793246509901145,0.00040858190254913475,0.001705826731046795,0.022038925583574943,0.09953971987239277,-0.11274469943903359,0.00012681359086791079,0.011845359105939694,0.001777894115736041 +2023-07-25,-0.0023302842260938244,0.015753661520717863,-0.02244102086645862,0.0001564278114533592,0.026591751645876287,-0.020098241768709377,0.07170242087239273,0.012029535274230787,6.725657910715719e-05,0.015465945798402471,0.013093824650117155,0.04787766994591353,-0.004628912295796286,0.00012651170787144687,0.01672716304696998,-0.0278744927414645,0.03339013290130413,0.026830643935895758,0.0002817453009808667,0.0016755085892895347,0.0037700201469801024,0.00985490054502092,0.0019317213351810348,0.00020016548703923124,0.0045048902494496945,0.005442413115614363,0.012882038217140965,-0.054261132102769366,9.224729947858215e-05,0.011845153661524815,0.0012341850039890344,0.005142928808663084,-0.0031102127514320006,7.041409595976908e-05,0.004409777198827977,0.04820210747231466,0.4463779941192264,0.018474447684186927,3.7030695157600655e-05,0.006186718767183932,-0.000205684613499274,0.0001675774695840243,-0.021838217560899,0.0009465225461005655,0.002812438976043115,-0.007012662269553684,0.018114260098702026,-0.10635688605389022,0.00013537055539856685,0.0012494542378899821,0.06519813751814306,0.04668144449043347,0.3140425019255648,0.0006826769848492587,0.009405839107700431,0.006338187836209958,0.0824962005631314,-0.08109020248241408,2.2895701156504754e-05,0.011273149693611706,0.0028005986828841247,0.007667695124988104,-0.007082953378163125,0.00010850183460247845,0.006132011824385353,0.001737565636390833,0.010293573232914981,-0.08226299423859335,4.751567232508708e-05,0.0025626033828439186,-0.010051200171874086,0.008377839322542362,-0.054947118925606525,0.0023399623404116903,0.009870866229746197,0.03342863123684245,0.21576761135640907,-0.009757474901300451,0.00012749244455519113,0.0045727500895969475,-0.05405288204401993,0.3201439474055327,-0.0060638210890314485,0.0002614458734090934,0.005610902573177515,0.05368101940128401,0.3209553329609482,0.022969450246292152,4.711260454748192e-05,0.003617922609889834,0.0016753094641004634,0.009502942317568087,-0.05570291233966204,0.00029055192439996906,0.00411309672209605,0.06747717844912712,0.9394841382063552,0.04647355557335732,2.9805587969880588e-05,0.05565467265862518,0.0010100878599567367,0.010499325930241462,-0.005721691983156035,3.2142484473928136e-05,0.00989642657906274,0.008032593593935093,0.02360825675186126,-0.06956547345975776,0.00010960102876971775,0.010967936598416597,0.058438082203408424,0.448184513433026,0.010652343660101956,3.0118371456852343e-05,0.003078617206270639,-0.010261507856914985,0.03147375777606479,0.03065089310345348,7.228363199196725e-05,0.005547653308571,-0.003399707006126493,0.01195381558465591,0.008051097460186833,0.00013004196829978292,0.00347998240591012,-0.007409088565994797,0.0063316302262259915,-0.14334073412680198,0.0006688439514010832,0.028131252001392364,-8.242738434915343e-05,0.0003082602505765465,-0.017444638452772273,0.00011254857499439432,0.003674281657775938,0.02138186004580706,0.06895898541391886,0.005318339403259513,0.0019900949337925216,0.022390293878748253,0.006123999813829859,0.04512621929876991,-0.13399230827210445,3.489702579848679e-05,0.009994070554129356,-0.04491427045444622,0.1396788732427317,0.03644171613341201,0.0010512957205297017,0.01280695859793425,-0.019014866075903473,0.15071396420745697,0.016803686819408983,8.40166616331989e-05,0.002281996580106501,0.005310531800159003,0.00736195407895204,-0.0005521342278808849,0.00017025124478342777,0.009583685877588982,-0.01885043623741608,0.02355129860597133,0.0016780154883695303,0.00045942059510321366,0.018452407743933575,0.005227628236108471,0.021491575365866468,-0.033656252935316225,0.001885327425208648,0.0004527284100974867,0.01865448403550513,0.06654672019604282,0.03335314066025757,8.993877250769275e-05,0.015131554780968242,0.010508426467432079,0.013395231096991155,-0.005102079198297118,0.0019501349731152469,0.04824401063409312,0.007970455237581239,0.02789841162905865,-0.013479224853614892,0.00011319303008936423,0.006882107573660747,-0.03637865433368038,0.11478266773486744,0.051688598611822796,0.00012847856939178336,0.02098190088936172,-0.0317730847220485,0.14226420402436124,-0.03045034305179174,5.451018644942329e-05,0.006470796475775758,-0.012646418555445977,0.031767691267241584,-0.020292607582821594,0.0037731142513121475,0.008265929266044811,-0.0031440473648999523,0.016552406263877138,-0.005856553326990778,9.448622839058352e-05,0.020550976053672242,-0.02859039380032966,0.17708908440904797,0.028141015943359576,0.00011708172952044019,0.021503210771532038,-0.005003181964944028,0.03170937118274792,-0.054960343356529835,7.462895619328859e-05,0.014322904579930197,0.0748019693784936,0.36076500850291,0.22914466421885857,5.211179339071966e-05,0.015002713346159678,0.002948012272522921,0.005215403267686057,-0.053181910772789255,0.0002755946524822377,0.009905244356949408,0.0029398233949577187,0.010282623045558737,-0.08461621923202599,7.109379579404297e-05,0.0003469415239291632,0.037976461984585944,0.3959995760157302,0.020458990607859013,2.474292658132729e-05,0.011351922183955941,-0.01555500290181558,0.0511150811870406,-0.002171489119155526,0.00010637265670530621,0.003262781710421666,-0.0037524318639285863,0.015477440228031988,0.0017092671421320472,0.0003821568517767522,0.0003749974855894178,0.006559317851854687,0.03511593132468142,-0.005940064229517639,0.00010698583521226523,0.004748434820623209,0.004350737278420767 +2023-07-26,-0.023168776649735354,0.15391380650291064,0.009502028071677342,0.00015918865296701108,0.0018171341967313428,0.03621321994855468,0.1170670076635991,-0.0343465054012312,7.422379427806598e-05,0.004035897856170776,-0.01420204443084772,0.05372696912423562,0.0075310253892737974,0.00012228008442480471,0.0015259236050978188,-0.010352895819576624,0.011323182155112178,0.00038098873160358025,0.0003085753329300093,0.01544773123085538,-0.05857716969972885,0.14065831420747435,0.10999924545933523,0.00021790176501460253,0.007789649444956547,0.010983515570815252,0.03477911696234596,-0.02164019113478683,6.895560270159888e-05,0.003918432942267233,0.04423427505909337,0.18496357970777558,0.05123051546932543,7.017178876737339e-05,0.02462348160000642,-0.0438117969418824,0.3592180744130047,0.055992115980433375,4.1824571489866794e-05,0.03710751014424725,-0.0020384186068906946,0.0018687330481459757,-0.02823422233062025,0.0008411837909286044,0.010106466148481397,-0.022966514603845717,0.05262081399160858,0.0034053608639809446,0.00015261577140555804,0.006930623274190159,0.003787595106000242,0.0022372171941080366,-0.002989548605189624,0.0008275223964213151,0.0037425989746779384,0.006878260778555558,0.07906469726885192,-0.023700066280493825,2.5925002946439787e-05,0.0004174789624348458,-0.021581102928367953,0.054662033138085465,-0.004003792073020469,0.0001172840333624189,0.0036915431132844272,-0.011466902480152232,0.06472443174665095,0.020139860136414948,4.987003708946692e-05,0.0013573531208144894,0.006009247693797107,0.004365594091228552,-0.0046635579561094655,0.002684724493895307,0.00025519897106260326,0.03146189938073494,0.23660760251037377,-0.05064608793965341,0.0001094229327642902,0.01853066895360425,0.007741975504901352,0.04260620680323557,0.00301298969231904,0.0002813760662932826,0.017068319250741554,-0.007803020160227191,0.045044024841762585,0.0009691152643403953,4.879625539054441e-05,0.0033063097850593156,-0.01664020697402347,0.08836843847868742,-0.04248289707529007,0.00031034757086388995,0.005979568679204195,0.007092487058176401,0.09308773756176404,-0.020685464217958395,3.1618139270233205e-05,0.02504115791064176,-0.003657895936855663,0.03847027095681034,-0.00041354061786079226,3.176784901861921e-05,0.0003244571647126582,-0.022430606753863134,0.07085374712921991,-0.002573553761009561,0.00010197670008404331,0.02588024920678939,-0.052474400628642566,0.3231535734770471,0.025924284780534677,3.750860393010894e-05,0.00498855630106497,0.017566315109563232,0.06596856111799732,-0.058816969582215904,5.9036559472352535e-05,0.005481610341569279,-0.010282461976010626,0.044655360357381595,0.007115324412530536,0.00010528635953407858,0.00019211175885163606,-0.020281849293197745,0.02039885049811825,0.014217231164324714,0.0005682996880387907,0.0061214037577482575,-0.011527126077282181,0.05343443192442142,0.0056997283863723614,9.080000149655528e-05,0.013932842248758454,0.058886863432234926,0.20238324347792422,0.04712613430859102,0.0018675104704413813,0.03412743757203979,0.01563647601952934,0.13513214027727516,-0.006104781798471218,2.9755169124235316e-05,0.011850392028867247,-0.037843582040342626,0.11662605318707918,0.004681521264576333,0.0010608840706052558,0.01940276993219717,-0.03458719629354761,0.28459115475872687,0.046401932448411155,8.093187536700985e-05,0.014424462163322296,0.029037905495413296,0.04409209967183089,0.008697381481450467,0.00015543538501906564,0.007657846522496886,-0.012360005356592358,0.02054477054767002,-0.08538435491717247,0.0003453196384469931,0.01089324437944566,-0.024319161735236697,0.0749729639927714,-0.0017793651240496278,0.002514167809492442,0.019152043786081013,0.030593971517726345,0.09965183608938412,0.06717176475480727,9.85010643863931e-05,0.013145548258298485,0.05519313046499912,0.0711686049583522,0.02195778252096102,0.0019278523365531437,0.024810645709054602,-0.007368085646424157,0.02368065351747011,-0.0028585107480785742,0.00012327556976487604,0.01830231786335856,0.0005545464667546464,0.0014798805830468424,-0.07594222089765051,0.0001519048522630741,0.002320305003054564,0.045417233795253885,0.2084441683742171,0.013678493109958426,5.317957411031256e-05,0.005675375590022742,0.08774997753606034,0.2795366371400799,0.036720835390704434,0.002975269674077815,0.011403203776054586,-0.000713544749116304,0.0032719710814390532,0.00038090038343300647,0.00010848066246748619,0.003481443744300379,-0.0024005562094449673,0.012932267002750302,-0.040539331189249884,0.0001346164090301892,0.010882915527803388,0.0061947297436376215,0.04311895479170615,-0.022007246949926416,6.795209299739761e-05,0.01617231248844676,-0.034922418758751884,0.15333348674112476,6.133741357662301e-05,5.7241986793995824e-05,0.005178696045121666,-0.019510000301019185,0.041902825632669664,0.008528758578342115,0.00022700914890205255,0.004179611349980631,0.018298669807107218,0.06596458129300978,-0.015265891572714586,6.897998352250057e-05,0.011028153957145879,-0.01777492482605567,0.2240647350895939,0.02459655687041837,2.046753532468817e-05,0.008241786123671827,0.010882658425076885,0.0321259220980064,-0.01118195640890272,0.00011840999445740916,0.005681376034795018,0.021381409628089355,0.09937241957864416,0.014056873137039553,0.00033915516894309655,0.00037654761380284717,-0.007560349914007821,0.040517628764109734,-0.001500308248166446,0.00010687341116507908,0.00918160086514909,-3.917121809566988e-05 +2023-07-27,0.0032241992272357676,0.022530624087857675,-0.01779821596386081,0.00015133355414587428,0.025936361814792086,-0.016400464722332992,0.05423306473731489,-0.07849303403145962,7.25608787499063e-05,0.002764967787371296,-0.017614735788503758,0.05717485531483553,0.008692175922782583,0.0001425175223600625,0.015703202037144412,0.013650502215687432,0.01481376966647946,0.01904115567644141,0.00031099320380951963,0.009921912110686156,0.002222034795815987,0.0053605261596933705,-0.00622454048329419,0.00021689083864523688,0.0016394237166711654,0.0055174301375791315,0.016454462209153607,-0.07418122293444705,7.321497021495239e-05,0.011641902551561351,0.01677372347542207,0.062332471241313525,-0.09818374517574607,7.895960898765542e-05,0.0024114308556607428,0.02348497062486355,0.17492921178097084,0.011620344475443647,4.603904395903836e-05,0.0028985629485399284,-0.003058656184294273,0.002250630224129073,4.86910992050041e-05,0.0010480241771839579,0.006544993486714491,-0.04574133671566509,0.11049634746804131,0.006087264686126354,0.00014475141440668392,0.0040292217419092315,0.0027662561109668823,0.0018100909212827969,-0.001645886671723496,0.0007469926944577859,0.006358066740040838,0.009073455232773421,0.1123940312901478,-0.0034129489672217834,2.4057596787219784e-05,0.0006892644278396528,-0.002104932354950959,0.005630213270988139,-0.01140988774877623,0.0001110617047575664,0.019198233015344606,0.02292977698620809,0.1375814651053015,0.08507527549805925,4.6913919598408506e-05,0.005548896731749017,-0.0007275481314439738,0.0007987261934393674,-0.0770477530571021,0.0017765882085086155,0.009618224956554858,0.024290712021710768,0.1507981831893519,-0.008518472145183654,0.00013255503960890515,0.024652481378937073,0.01982784008323552,0.127958046583108,-0.03518822408849514,0.00023994739423882495,0.004244926294782188,0.008340454665621218,0.051732513521593006,-0.005944870104090423,4.541372252944519e-05,0.03125598994381757,-0.0246537754828217,0.13254839423623044,0.008652692724821602,0.00030654608448858913,0.01603502389663059,0.011622018155807247,0.14237230462105385,-0.13098966702648246,3.387554302482838e-05,0.023675384788210203,0.00399076339339695,0.04008506654632112,4.448062602574284e-05,3.326251473974358e-05,0.01074840131913777,0.03872546804288321,0.11257878728115649,0.04515287398740237,0.00011080589479937952,0.0009556522225306139,-0.027662045266597258,0.2144724585174471,0.008731395979780815,2.9792375531115382e-05,0.03110530397845076,0.006321910824083074,0.017409785074050686,-0.0014944660721771868,8.050675800598191e-05,0.0019423598557356285,0.004953772467644285,0.016216240872532168,-0.008851145651265992,0.00013968007644007567,0.0005752703793187829,0.05569487179430119,0.0612821583322019,0.042692334518916866,0.0005194655095118592,0.005314143703955844,-0.011772271297981909,0.04043006909034483,0.012029231830074712,0.00012255803456400128,0.0005310448257995641,0.010068454783063913,0.03542387150868557,-0.01598154704440424,0.0018242568042761231,0.005271940434423937,0.010201112314890615,0.11358926156484479,-0.006274732480990192,2.309364302081435e-05,0.008038771342912369,-0.025345243627885032,0.08071183607063681,-0.022022957844879402,0.0010266691517322622,0.012969194919985138,5.0557412089259333e-05,0.00036256592089948066,-0.1107523591745923,9.285889216613058e-05,0.021310132524147676,0.0706374984307562,0.10783177719469322,0.06863244831308801,0.00015460870195491675,0.01390689551729683,-0.027194639306772097,0.03847852304050105,-0.031508517784471654,0.0004056661991974143,0.02048783416520633,0.01976355950167002,0.06964523766259614,-0.11586354486343244,0.002199500585952595,0.005679400851219431,-0.03631413596652304,0.13652169880304355,0.024326696779865917,8.534231157701978e-05,0.010729799920498707,-0.03406767641779169,0.04374200214898055,0.002549783473412848,0.0019360699656925592,0.044775330016601,0.0039045732927173427,0.014822245475921288,-0.015862291436356677,0.00010436998340331736,0.014606400453098913,-0.000990721585217458,0.0027721013079644715,0.002700758537693256,0.0001448781539638974,0.007358759399911978,-0.0014230148504570032,0.0068734116104398795,-0.009795124025128837,5.0530198607804294e-05,0.006369912466601506,-0.0647025021646354,0.18038273314209236,0.012937242835361334,0.0033997279905175004,0.016524964509620647,-0.025829861727228433,0.13836339824252838,0.008461629681978172,9.286272682336505e-05,0.025918976569051694,0.0006493553826908114,0.002730248747312573,0.00048694511756364124,0.0001724809012347763,0.019685180641532827,-0.018499220833278627,0.10540381280920884,-0.004239629112915915,8.30129436874005e-05,0.03199671247201704,0.06556627141737015,0.2862113125826444,0.10803184212101398,5.75759465752849e-05,0.005868816354018691,0.015763734014490296,0.03410685600273486,-0.004978092059067371,0.00022534441804385985,0.010665086473867134,-0.015415046085216235,0.07170400025236993,0.004768046431354526,5.345838302800339e-05,0.007028091529922619,-0.015334039037453107,0.1572503356166635,0.009947487876349269,2.5159167644452984e-05,0.009341764557786162,-0.007785975840740549,0.022886703450549748,-0.2661904904650765,0.00011891558425182321,0.005675076081025746,0.0011657182909675953,0.004738760339980932,-0.0035584541284962167,0.00038775449120109735,0.0013062588261843213,0.005257596717667687,0.02947309960385174,-0.013450285617993909,0.00010217231998045718,0.009031840955257449,0.0010914572259768346 +2023-07-28,-0.013230330173406026,0.0874305636329133,-0.003630128748351958,0.00016002726699806074,0.011892061299824671,-0.005380922500743664,0.014646619396701687,-0.013776764318339392,8.815153262693585e-05,0.013129333745399352,0.029637323085336117,0.11639553065109408,0.01373362633753492,0.00011778768179755193,0.026716046419526573,-0.005781875902237144,0.005549097596346146,-0.010039192864347962,0.0003516529452843369,0.01142244652191704,-0.003482300496610017,0.008467520514122301,-0.07405355931288989,0.00021518290170546557,0.006462214654825961,0.007907726984353014,0.025114054638899267,-0.07379546573325893,6.875140405568681e-05,0.003185757799305621,0.02896077171224762,0.12977067624745264,0.012444442877658236,6.548222347833029e-05,0.005998670367417124,-0.024645634039669993,0.20588340129658153,0.01503508601680577,4.105038886518071e-05,0.010544547114804714,-0.0107758416916908,0.009657384729586603,-0.02617304210353332,0.0008604714317796806,0.0028220914566954797,-0.011923646218651662,0.029907982451339413,-0.004115935576941969,0.00013940676555289705,0.007984208342505609,0.007803034523329358,0.007381245154064549,-0.002741919970604786,0.0005167235518618963,0.009926370472792325,0.009078025693575386,0.10411040855217636,-0.09693939544572759,2.5984839954749825e-05,0.005333683275556068,-0.02396974670696277,0.06189549776373341,-0.039741372809761845,0.00011504173496470418,0.011813151712627604,-0.015581156548367114,0.08338746048457554,0.036648082568636414,5.2596974294055965e-05,0.005511815646567792,-0.010314634803709954,0.007231696162957456,-0.0360979983155527,0.0027818688886600195,0.0028882820796820767,-0.033678414950793274,0.2014259939000828,0.026181943120646128,0.00013759043258136584,0.01610495822385848,-0.043201164232469155,0.25633832294285047,0.0334356304688433,0.00026096973469875436,0.024209930955349995,-0.05722483035126056,0.35402131112099355,0.04056361025752361,4.553193043710358e-05,0.036174951905420936,0.014154141879787913,0.06449011380921754,-0.003735481690886255,0.0003617239033968365,0.00812882401151513,-0.0332811403665076,0.4294285313284916,0.014122268278821659,3.216159171882135e-05,0.0129559970568939,0.013292772346790034,0.1452189047313596,-0.025653062102713394,3.0582579912419564e-05,0.0021243410082925633,-0.022198538767695026,0.06722636584669854,0.004769698004779435,0.00010636714656767413,0.030451177125607767,-0.0188181602130886,0.12850292183281337,-0.013135322632491887,3.3826458813624074e-05,0.00824212455369469,-0.006328573108485286,0.020184280777598613,-0.031079951301257822,6.951361990847854e-05,0.003168800825166701,0.0014791046268913077,0.00704130162966165,-0.009870446254048074,9.604937485014128e-05,0.014124562815788942,0.011458647874623128,0.012379063688365966,-0.016466511027972235,0.0005290797477111727,0.004810977682530472,-0.009897616667499703,0.04115632831535905,-0.0017004771766830145,0.00010122318905022914,0.006429280708263499,0.05997156369630397,0.2193121953140051,0.01991199802415422,0.0017550995919600372,0.055034808988352384,0.012445094527068908,0.11507664389805947,-0.022888747393317598,2.7809501714553228e-05,0.0109096051052955,-0.04689529161157772,0.11234130059570813,0.038063655539877936,0.0013647750145364564,0.019925757836796752,-0.025159394209717946,0.17620366692888143,0.021409665421769995,9.508475263348986e-05,0.0027565718839142155,0.002793016515684692,0.004597590515795471,-0.0071386717471196015,0.00014338000850972705,0.01088933670857493,-0.02119326482378091,0.026110317109653183,-0.035360799989691744,0.0004658966979677622,0.009931239026389285,0.011160007482627368,0.04617782408324715,-0.013646406400732041,0.0018731879787152658,0.005814799638930262,-0.011919586480247114,0.05648299332279398,-0.001537475355843255,6.770704426556637e-05,0.010657943254084557,0.00950939335349374,0.012812390613672765,-0.001761740330712994,0.0018450147115835714,0.003101515454126514,0.023088381351023507,0.08022258521733379,-0.0020326910209037593,0.00011402835793435976,0.0017752078445444918,0.004369230382966884,0.013096898969198516,-0.05556277856817438,0.00013523740968526335,0.021944871165907917,-0.03601366851077931,0.15274381737462833,0.038121505682838196,5.754633207530859e-05,0.017076580166238912,0.0400210723091235,0.14207378867781345,0.013578866751720528,0.002669886606978879,0.007749507272821019,-0.0017208729098238762,0.008314702564550842,0.00023990681674243512,0.00010295386389418678,0.007803055169626883,0.016432701576195613,0.08431392637660316,-0.04156896301640669,0.00014134174166258447,0.004628847036207499,0.010509843041980143,0.057229293589478585,-0.0113330278408664,8.686134375557822e-05,0.024290845308174134,0.03133317121348021,0.14193494172462878,0.018235907995602086,5.548331776682769e-05,0.010408747632510292,0.044997675362829656,0.08338955969252351,0.03955290265670356,0.0002630920903138905,0.005052506492348141,-0.02418351305208108,0.10438095909409864,0.052016130868918375,5.761193769968561e-05,0.0056343859606495066,0.007322751136787823,0.08750767921975261,-0.00802596699182668,2.15903356598512e-05,0.0005173019794424687,0.017138313360495375,0.059122623118213556,0.03899341626292506,0.00010132657183862104,0.004037409388108817,0.02052832481641446,0.08363538783451717,-0.015828741837092035,0.0003868934761175941,0.012978257582092052,-0.055497262666172185,0.23474219083291473,0.24984596615632235,0.00013541045740341653,0.010073892256418514,-0.0029333591477183536 +2023-07-31,-0.011950291265674784,0.084451961033381,0.000654483058684118,0.0001496426311648407,0.005900747633804146,-0.029120200938394018,0.0938837669717826,0.04489648505590613,7.442423635709151e-05,0.011256695095485585,-0.0499812580326109,0.18382298288079615,0.06523480597011262,0.0001257779692586346,0.009791232524190997,-0.003825391298217623,0.004427350300607207,-0.0002928369099993617,0.00029160826997873116,0.012205694919058825,0.021252640913102926,0.05918817916704202,0.024458063281266765,0.00018787789986924404,0.008151142039721946,0.008933483944227402,0.024242950932105517,-0.00024203881935658202,8.046038726566455e-05,0.003317135052487221,-0.018948117442320684,0.05816135772040817,0.02210102106234406,9.559196451713691e-05,0.029738827974305458,-0.02346136771174908,0.20156939178827105,-0.01407239991924877,3.991419322386752e-05,0.022186889392799947,0.006103010929357895,0.00521186312131495,-0.014439161421199987,0.0009030170138270187,0.0023362952579172027,-0.028602742477021065,0.055023424020170277,0.007876376382545623,0.00018176989235348204,0.0013942104402670653,-0.029328543780811515,0.02193634482772734,0.042310430654042046,0.0006535075266090684,0.01923156714813287,0.004674756572425946,0.06553246037966329,-0.0010494877181808752,2.125814263484589e-05,0.0036745435135682658,0.036492915480591276,0.1092083991470398,0.05837770012651637,9.926669397519519e-05,0.002723195894880916,-0.006374238864468308,0.031051920542323617,0.012524938151158821,5.778321289625269e-05,0.0018534715152670952,-0.040927829948658914,0.03582093464553295,0.051813614962516935,0.002228459663937075,0.004112083107344064,0.024089787592471237,0.17270185592145906,-0.05057643617801473,0.00011478577578773168,0.010862088573643736,0.020457550686393797,0.12471673117883003,0.01623740204065973,0.00025400200705395385,0.000363449893793889,0.01899077516051715,0.11157546528588032,-0.07184367897179263,4.7944074708268794e-05,0.0033848442844928084,0.007234818975245653,0.04389796250768855,-0.02692310129546881,0.00027162523381768375,0.017183318539136228,-0.03287798197822894,0.47591660293673943,-0.023415793732552974,2.866847082901473e-05,0.018286751823581304,0.008981587391138716,0.09261647664066222,-0.006193654850892518,3.240011514962816e-05,0.012251518662246838,-0.032209126950039,0.10111877994217065,-0.005771755932632954,0.00010260532208655819,0.008970828252288033,-0.004824705867938872,0.03299108990214023,-0.03117082042854401,3.3780537464214666e-05,0.010669758526990194,-0.011773556732243761,0.030024481382482572,-0.13536029784226447,8.6937980697033e-05,0.0011965237501195447,-0.0018699114863760576,0.008319082472132961,-0.0002919546469033556,0.00010277659260400074,0.0019312717457426484,0.05069112817991279,0.04832070037464674,-0.008676640697825132,0.0005996174979867955,0.004566088555059513,0.007242481797656431,0.02591529587136263,-0.003215871864172201,0.0001176297705729424,0.012837748141074568,-0.10885326591467395,0.3704282554517246,0.17661662860721355,0.0018860644623077097,0.04079414686623989,-0.013018648707363375,0.11428373157529582,0.016469890861804053,2.9292989172387633e-05,0.013842190260874987,0.039421287006220954,0.09728528903817187,-0.031752228110212,0.0013248139577589117,0.002881829269677244,-0.0295402808413726,0.22384387923884874,-0.0274179214495272,8.788100999514812e-05,0.008900321645160776,-0.020136490756789256,0.02827460229613445,-0.03063826136854545,0.00016808643585736332,0.0021903160197741392,-0.020663972172165333,0.03181744744277133,0.012296962297369495,0.0003727798134974766,0.0215613574600214,-0.026479008958603084,0.0986429276446386,0.0018916385604615922,0.002080588120174335,0.013632559613094545,-0.013690881897506607,0.061033736957728596,-0.007232800833163609,7.197005471575545e-05,0.003895990648875996,0.0016502588644695293,0.0022781964398981783,-0.0038293947418642773,0.0018006864527336838,0.007852029500618746,0.027541617114996,0.10121946857128712,-0.04420829556765377,0.00010780562459505588,0.024619087368116292,0.030378514671239726,0.08494637900080415,-0.057226447723558435,0.00014497130246071677,0.000648673094233326,-0.025305647289784267,0.0965500327882017,0.01752673012763647,6.397038286277355e-05,0.0023864857262677016,0.008253453455437676,0.023856718836854845,-0.01403613440246331,0.0032790123485892803,0.0028083711811435225,0.0010960235664149542,0.005095684412677858,-0.005692702700185778,0.00010699363432094214,0.0011907563889887352,0.05348209724703804,0.2719629416654238,-0.03143973615128826,0.0001426131208210829,0.0035982585884429615,-0.02060460728818968,0.13239111554520777,-0.044262774875243424,7.361294601072128e-05,0.009042237792420658,-0.03933137568435123,0.2110593945499927,0.03661007669226211,4.68362207010881e-05,0.009694666869834301,-0.022985264047390135,0.04289421127733824,-0.1496875764817407,0.0002612643807672389,0.005967134635309121,0.008676504674366184,0.03169035233395322,-0.032315729169883324,6.808196990340936e-05,0.00926812516992091,0.004737833995116956,0.04257759109765603,-0.03384385147057986,2.870979149411706e-05,0.005414825788136834,-0.0055692414139018225,0.019650792856361697,-0.001180663809026847,9.906606912996833e-05,0.00656637587561794,-0.01489187848545875,0.06051043999099531,-0.015171728821777605,0.0003879244418055273,0.008548582510547272,-0.03670484701144704,0.18433338567763277,0.07179911841848295,0.00011404892979310505,0.0014099491366752269,-0.006993438773982699 +2023-08-01,0.014336970183867146,0.1052706874746531,-0.12027511778442487,0.00014402454332926304,0.0009619940207961423,0.024040651528349864,0.07217847778980864,0.018472277876009455,7.99188160007578e-05,0.025333849209172272,-0.0342727756299357,0.10344341161590903,0.007338961991926444,0.0001532652320053576,0.0071579570059997644,0.016319892291244992,0.01586800201738237,-0.09052392180032219,0.0003471066206784309,0.011867065025043682,0.017812696788835368,0.033247048710188645,-0.006680788376038284,0.00028033307956204436,0.004395932347851579,0.018788477630104,0.050459137320298955,0.005915849740600452,8.130149105954104e-05,0.005477311295402232,-0.0410307669748516,0.15681093474240138,0.06916483419438886,7.677558720192066e-05,0.006284416574455519,-0.014084028385512554,0.13302453505672163,-0.06834140646469931,3.630728351421634e-05,0.009561046402202178,0.02142448529621518,0.015600087243499058,0.00527350876994612,0.0010590785122096867,0.001661418493159695,-0.035564042409701,0.09199822641901323,0.03407947205711306,0.00013517411999896254,0.0010186322150597315,0.01619294017690106,0.010223927981077411,0.007411794749622344,0.0007741627808966183,0.0017112865257909462,0.017506072578055528,0.21734100262279682,0.04690627259152395,2.400323891642984e-05,0.009159604147431295,0.08667502732540193,0.21222942179599785,0.20331574595732765,0.00012132196457098344,0.0283062910582285,-0.009597550337232023,0.051712757083352094,0.008330539979469533,5.224256887706965e-05,0.000603473990906526,-0.03900229473804975,0.030601127720934186,0.07192838543351071,0.0024858544753668774,0.005959502195506582,0.029641485197199106,0.19544339938321426,-0.008875964895836213,0.00012480473437792534,0.004494475578222516,-0.00552675864467542,0.0291799635553264,-0.09883739301372818,0.00029328779199632934,0.009825030087016618,0.021130600866027055,0.1466030609580315,-0.004377842939359643,4.060034879694928e-05,0.03332361508604655,-0.0024000752635957652,0.01319450258149329,-0.030917967071769838,0.00029979103805474446,0.005092697537584087,-0.04029954083223327,0.49211768306516945,-0.05303392962165195,3.398297206535803e-05,0.021424343143989305,-0.012933476849130236,0.11411770932455154,0.0268802353100827,3.786552246797497e-05,0.0026627912434073957,-0.006204217038373819,0.018222013014641898,-0.01003195456730662,0.00010967645015118507,0.013207462329357558,0.040576037758501986,0.3195744554974929,0.015846792003000706,2.9328506943535972e-05,0.014125226442517371,-0.009473291721971998,0.024580735349560175,0.024959831871265974,8.54443642165451e-05,0.009825872657813562,-0.003793091974154102,0.012644352254000915,0.008826630938881669,0.0001371656553958574,0.010028443169907012,-0.04121971231088825,0.04446943291990026,0.03820158685330357,0.0005298085058348404,0.0007350890587411035,0.05615642261254826,0.18620386747180928,0.10425689828222792,0.00012693948900091833,0.010218195232996436,-0.06328741598407045,0.20029607495432666,0.0421551834043694,0.0020279820174754436,0.001971772884858675,-0.04907603273787014,0.49255611242943353,0.08027310098984956,2.562099135493461e-05,0.002392315981449988,0.014357212212782366,0.03913446848533203,0.0014552022815707305,0.0011994494503372356,0.016716817130568194,0.014569845206130983,0.1127552225847221,0.025844107615366648,8.604862091299704e-05,0.006464777236679025,0.030797553505601327,0.0524725994842209,-0.008117258095943011,0.0001385252763030661,0.01971029200302196,-0.01354371015229923,0.017823116854421648,-0.033034253093227,0.0004361721281117497,0.00649540383408926,-0.03529950105465531,0.127921486631502,0.013655181304914157,0.0021388257797446846,0.0009740380440876012,-0.00891039044271667,0.030231291578559624,-0.04005307642963145,9.456499481734993e-05,0.005502445690521725,-0.046518196520232674,0.06617893783672264,0.03396852411268433,0.0017473514647082834,0.00536968867358065,0.018988041023714167,0.06833111276943718,0.007863248751123724,0.00011009756264299272,0.004135322714703161,0.022804637164337883,0.06014205353487738,0.012481879103109753,0.00015371112103660558,0.018118256865143168,-0.037255320759454744,0.15188650831755124,-0.004910950120052984,5.986638490747238e-05,0.013879689380108591,-0.006568098489840393,0.018969078466464586,-0.006885418281439826,0.003281795244958474,0.008282767976561163,0.0003796260865516068,0.0019147121813347064,-0.00679793639329909,9.862638576801176e-05,0.010626079479946465,0.0033519837704108625,0.016606559611853196,-0.00021824864768526725,0.00014638043142222923,0.013251021415833007,-0.0025483238188756412,0.013256471530338671,-0.1893301572701641,9.092333748508019e-05,0.0106414444361856,0.03518671474670149,0.18506016739365064,-0.012645094114705433,4.778737384119004e-05,0.008304708151108469,-0.04427120671530762,0.08224696217874336,0.08089013120649037,0.0002624405189332541,0.011892097810430389,-0.03824406001996988,0.14769676710757623,0.12637585101975296,6.438836209864014e-05,0.02472419855885691,0.02606933289748372,0.23161682246959922,0.009513737445119751,2.9039631703649463e-05,0.012793280221648549,-0.011923297737267627,0.034788429931783896,-0.00028682356579438917,0.00011980378105386325,0.010728051444035434,0.02228782660060873,0.0907419887170028,0.03920900590394849,0.00038715725152454474,0.003171696908236655,-0.019947808484002856,0.11234113074155024,0.016004371942334786,0.00010170169593913781,0.009981769669724866,-0.0029962573896282893 +2023-08-02,-0.030714024523514065,0.18000030436312767,-0.023894929175127123,0.00018044716828065092,0.005510244065832301,0.024437850529113434,0.09163121170588648,0.041961215611534,6.399265089134758e-05,3.1488094341671716e-06,-0.007877983288128644,0.025073742751177307,-0.01904904730209621,0.00014534265653978062,0.05342245673729477,-0.013973883530116301,0.01383896249290846,-0.019051546250610934,0.0003407857631790226,0.004784153119273257,0.00606200716238433,0.014921184340874938,-0.000441448932611389,0.00021257438028202987,0.019042673008626353,0.020657361906200808,0.055488680732016966,0.024029094162306724,8.128627059360576e-05,0.0056958442382927365,0.004608307455413192,0.017756239448512904,0.00010613589428885411,7.615182375683126e-05,0.031596323659388866,-0.015596510792989333,0.1232729073773418,-0.04649909591318431,4.3386880505137614e-05,0.0019681596265059597,-0.04292306112144837,0.03260387637156808,0.1302844915932011,0.001015234191478107,0.010526135123049474,-0.008200912956050372,0.018455964392147958,-0.004293600753145021,0.00015537721939769232,0.0015349552979702554,0.01257593753199949,0.009992732149147327,-0.06711660907090665,0.0006151492278468377,0.0035304263081372667,-0.006619683285815445,0.07799859291789742,0.02878919050542148,2.5291421104286335e-05,0.003831181485022446,0.02347465697496345,0.06948996996938124,-0.017451485780671922,0.00010035249364796166,0.0178557481454922,0.013517091412852435,0.09290914558809148,0.023671837436624744,4.095308312880727e-05,0.006030758889629236,-0.007426309936245103,0.005533126046089398,-0.002811795247062714,0.0026177337926953552,0.0048434820810265376,0.019639453882289496,0.11880098140351916,-0.0268894813696824,0.0001360383909712591,0.0025248640011175626,0.04129683328319959,0.2756071146560216,0.05046620030451064,0.00023202488061805143,0.021310402358950677,0.07912039288468074,0.488077416598538,0.10288837652319076,4.566260437029953e-05,0.021874346087586056,0.06330242124745432,0.42270633953495484,0.23396235255080333,0.00024681319150610137,0.011277786712404002,-0.003678300852109431,0.04974974839035068,-0.0006105404135622309,3.068220663077954e-05,0.018064660973649244,0.008982602973289426,0.11138377726955842,-0.019991536686701172,2.6943993924112274e-05,0.008233732076192815,-0.015872669860584325,0.04710409121055777,-0.007273275790624464,0.00010854607145070242,0.02869695137963772,-0.08197608325687339,0.5454694123910653,0.07588841537862803,3.471435801884922e-05,0.0038865864254596888,0.003115919996567841,0.009560814660057688,-0.00692082338639989,7.225514573417507e-05,0.008160325031818037,0.009232217303089582,0.03952672497095667,0.01652067950983855,0.00010679816281143597,0.008407542745488012,-0.07237872915712529,0.06357170777150832,0.12121736833302418,0.000650762676127518,0.005975554565719174,-0.004763755759714579,0.018939385576461094,0.005361439468093908,0.00010586919485652531,0.003562706017421716,-0.06716292044530062,0.2420804176109488,0.033750919709021866,0.0017806931461733526,0.0021904473200003655,-0.013893959299142911,0.12355432559154121,-0.0421937666990659,2.8916802121642787e-05,0.006020951141372012,0.003400168204565409,0.010431298526155859,-0.001260339132719979,0.0010656959058270717,0.015383693580975133,0.0062675607832584825,0.048112203352760105,0.007994826318939998,8.674989371005546e-05,0.014337981244364048,0.016517034621886473,0.023964166993249915,0.00046932577206553865,0.00016267286970795576,0.005819358978072904,0.007236737660641971,0.009883623978229651,-0.02660251335020254,0.00042027206967960374,0.008782423167804544,-0.0044977989767598465,0.02004296673227535,0.00122172896601979,0.001739355588269566,0.01618116296461168,-0.008070613877767675,0.02796655600574234,-0.12754638606436833,9.258869280083053e-05,0.0003799798778951263,0.08445149808142845,0.12343749955569054,0.08008915183211221,0.0017007380728461103,0.043055866512413124,0.05067154993195035,0.15835995936548403,0.014727792130780196,0.00012677535737359066,0.013760908255962375,0.011514332728065714,0.031747807923148956,-0.0044925970684503835,0.00014702304290843002,0.005806198847320659,-0.03632035459072367,0.14165551561030373,-0.03381906120415988,6.25792733051655e-05,0.015482138851347825,0.011982273520305332,0.03660704513173916,-0.0002844110314418897,0.0031023630009109943,0.010187676572776565,0.05142820378285835,0.2722969632730412,0.07299154888059886,9.39505071569123e-05,0.003210386330499074,-0.0026987885091593593,0.014420750625722702,-0.009111964095052438,0.00013571934967808875,0.017444815840710493,0.009163595463164984,0.05905285906063705,0.021934320876390388,7.339621739061049e-05,0.0007851395390847026,0.016308104370869905,0.07333816775021945,-0.04926337763617237,5.588828997344634e-05,0.009809749831275976,0.021319271996261692,0.04475183200496824,-0.002707729127040086,0.0002322688372350376,0.0010756305212804881,0.008306862898279872,0.03198882346925658,-0.040704579975945086,6.45733252460073e-05,0.003699932214967938,-0.033939429396010086,0.3296918888532391,0.05773340745929628,2.6559968724378605e-05,0.010307808553221266,0.0016397172051620403,0.004761256505413861,-0.008376844049422115,0.00012038055441045741,0.0012130032078300611,-0.015029130148102388,0.05751257965918777,0.01665113641294432,0.0004119068064916056,0.0025769532919751063,0.047284911035036195,0.23639283252654933,0.07379138092856904,0.000114567138951543,9.901316372031054e-05,0.003927735875615633 +2023-08-03,0.024553890945079676,0.15213412766685425,0.036374090299707354,0.0001706790661200756,0.0026565932323222227,0.021332003464113337,0.06818352588265894,0.027871922913531345,7.50693605590126e-05,0.0020723848951723235,0.03923048482778703,0.13594649973560377,0.02628527547358124,0.00013349126535809825,0.004660100179556262,-0.001314002442084763,0.0012712566200889334,-0.01886669325739534,0.0003488436333033663,0.005893764755795589,0.007824628831645202,0.019120926856043854,0.002050896699476886,0.00021411770396032937,0.01290061190032492,-0.006326015293581836,0.02084271634058426,0.04897038775334548,6.627086806058503e-05,0.001488617513008142,-0.06115286218422907,0.19946274294832417,0.12320601377294507,8.995904920473749e-05,0.008982802001018631,-0.026674163696605933,0.24370912222736762,-0.023886668330699086,3.7533377001522206e-05,0.01979935130042395,-0.00322856889445738,0.002917419582321095,-0.011081915192597993,0.0008534065094829768,0.004542758126033663,0.03203318001279191,0.06502753054134199,0.06103708067053269,0.00017225216094625067,0.0003073631989366451,-0.030499094050382414,0.02233140680351379,0.06626693012870558,0.0006675675448546123,0.0028657991683826854,0.0010806160413672592,0.01300258512380086,-0.11094406787290108,2.4766491874971746e-05,0.002606038482247333,0.0066046480185154455,0.01664170163648999,-0.009293636077524332,0.00011789706242341043,0.011852522404415379,-0.002695690253958338,0.01487253552597641,-0.0686554246524286,5.102074452695944e-05,0.006043508738341357,-0.003974054630092783,0.0038079544229932464,-0.010339712652299977,0.0020354716774889483,0.008980993077785845,0.024641953634738478,0.1354967190548423,0.005794668243138896,0.00014965749258247623,0.03062151434352664,0.05290510599362918,0.2866708917528293,0.018691976553275206,0.0002857736773255466,0.004921195500096111,0.028130320487546174,0.16322989648141314,-0.002004227761654211,4.854404155600518e-05,0.032713139507872864,0.038496258190798965,0.22082324542698414,0.05986684050507951,0.00028731648024942754,0.000889374668489061,-0.06517663526537822,0.8913805819605702,0.05567026510421852,3.0343033634775623e-05,0.02654919179712023,-0.011256637752675786,0.1122653910949718,-0.014190739104515081,3.3499976765219e-05,0.006309390507450347,-0.012884549096303155,0.02926736955547623,-0.051315355836326994,0.00014181046763143377,0.00010561970685283835,-0.006578846663763887,0.04211420681562328,0.00033991695929357036,3.608390367026246e-05,0.026918893644718576,0.03645618041852551,0.08499816848450631,0.1501824659451626,9.509090471853463e-05,0.0015659776029465003,-0.0012910096711923613,0.0045148287185300595,-0.0003164764914140865,0.00013074852926301327,0.005360817356872051,-0.09297128143775339,0.08180156851551015,0.14208162121841622,0.0006496250258961641,0.016040941902114338,0.0005183926620179322,0.00202995282199981,-0.040021527299238815,0.00010748773459256303,0.017522682647288464,0.042252276444902585,0.14737645184261333,0.018321988524172488,0.0018400990063847857,0.019994814993875065,0.019031616777742327,0.19099899573338408,0.022353225866950027,2.562281232914349e-05,0.01565817641314532,0.016368708331475426,0.05735941103864945,0.005414545982366221,0.0009329986097498916,0.027051578206131997,0.009520109971686092,0.07159478440933804,-0.021087005775659636,8.854952232628573e-05,0.005922906001869578,0.0359871423610636,0.05049259348256526,0.01690888896330189,0.00016821513558749597,0.008953482208575003,-0.06212760014162455,0.07972823631488059,0.16110790063325045,0.0004472767615257056,0.005284696309581692,0.007932435813838923,0.03408123861553137,-0.04885437765323063,0.0018040207887206814,0.01015809051918202,-0.008116561248587261,0.02945607648373467,-0.0076575580145829426,8.840718083530006e-05,0.014907292785763077,0.07674349059299639,0.09558239481545143,-0.005798111017157676,0.0019959094432947565,0.0003903056572339299,0.013680960087035522,0.04129761393165063,-0.07308429031983986,0.00013125252059170825,0.005039254953278735,-0.015681003935557526,0.043186377389070524,0.0013170674598566847,0.000147193104192147,0.005231943047305335,0.0219452058865874,0.09105055942557824,0.002729965530654114,5.882622317265758e-05,0.008697522859214468,-0.025120386993229955,0.07201511574055378,0.014222960492948508,0.0033061360458227387,0.020329933087072087,0.009815178298134304,0.05192162866423234,-0.01918014144903205,9.403520097204772e-05,0.0024655233135134533,0.009005949448890091,0.05734089071808009,0.001891955881466283,0.00011390055871526752,0.0037662714227919805,0.017753318233402173,0.08945221826115593,0.040185477225279265,9.387222718610256e-05,0.005006342443950556,-0.011400988708451241,0.05342785185834531,-0.007418345358885769,5.3631778296601655e-05,0.01348816008332748,0.0452718369389249,0.08313810500232625,0.06256323017811466,0.0002654956375938389,0.0014423517306096259,-0.03352700391092373,0.12344048561630044,0.06609490995829385,6.753851376144782e-05,0.00904110604063971,0.024269129189330583,0.24572284695657184,0.009375645467954715,2.548237723097507e-05,0.01673637045271597,0.0062014695029618235,0.018568775223885402,-0.008731562286102602,0.0001167401690187716,0.0003074315288666122,0.0017693254681679074,0.0072539663171224105,-0.0548797351906419,0.0003844679705037401,0.000791091343197806,0.03386422147716899,0.14151874175256945,-0.01614600343036151,0.00013705627787366498,0.0018425556196114226,0.004646584869393991 +2023-08-04,-0.03208787618323083,0.23825755423911332,0.012611433441471564,0.00014242324537357498,0.012690143493275354,0.0155284451129934,0.0562317699553007,0.008058256643122081,6.62608105691028e-05,0.013590774165329179,-0.011627208577419789,0.03869411652173502,-0.03134023969392225,0.00013900413917679425,0.016501136911582132,-0.02645575747189413,0.02564155671594603,0.05295075896723881,0.0003482119481819219,0.00999313760418664,0.033153162673778866,0.09077838549952734,-0.06542838036655978,0.00019109102166891292,0.0015115151619680006,0.00524458561605167,0.016274205925768448,-0.01820549084014566,7.036523011739716e-05,0.0011380063776816648,-0.014994734002072489,0.05605471059651284,-0.0018572289363453346,7.849039353069657e-05,0.017047194683637683,-0.056495594496409236,0.46371428245955665,0.0452418827011209,4.177945063719505e-05,0.005473880975707533,0.025137348919703057,0.02324104662576643,0.05019527557952045,0.0008340816718406465,0.007463519416368046,0.026393274274704507,0.060066100527027336,0.0011103306044659993,0.000153647577994796,0.015226821975367373,0.04180327002985686,0.03038054813089805,0.07355363702919579,0.0006725723490155986,0.004121375208467785,-0.006116710920841595,0.07397800021465424,-0.031465169722613505,2.4639855590869596e-05,0.0017471150394278662,-0.01762140437520322,0.05007041374934988,-0.0025810133232555777,0.00010454671113676009,0.01187097562645572,0.021163981604353045,0.10997395508048739,0.01945406063904492,5.417131142616927e-05,0.0017759805089926143,-0.002240068969176124,0.001628562604149753,-0.006994848361884,0.0026827481524775458,0.007191491375922107,0.003863380919451724,0.02281371817267191,-0.002275760061131092,0.00013935532424267456,0.019981189417796492,-0.08022107724964254,0.41135628058809187,0.1423774910169498,0.0003019802838725384,0.0225925740258423,0.03366467285716772,0.19731319621254456,-0.021586056940779218,4.8059497195317776e-05,0.015365893056225046,0.015588998137678292,0.07611164284158668,0.010637006266739257,0.0003375622838134601,0.019208778985316324,0.030424364790335518,0.47449987188821613,0.022329500339797265,2.6608209506479145e-05,0.010684150516367192,0.00240369523840706,0.026094519283776325,-0.019230506196397806,3.0775974367336424e-05,0.006401487390780027,-0.026746806694276686,0.06946279851176931,5.468851812642075e-05,0.00012403447667634482,0.0016026319729255739,0.015823276298965298,0.11723492923832567,-0.028203042081551142,3.117681615846548e-05,0.025974241676415218,-0.017978232928405644,0.0572308396447158,0.06439726910092836,6.96456935619195e-05,0.005709793306947885,-0.009056176304424929,0.03257511702567994,-0.025638831927593086,0.00012711812539746366,0.0009678265097874136,-0.051134230726562216,0.04247171480351117,0.03130781328265274,0.0006881569368090713,0.014061277273636645,-0.005799973258706569,0.019612012189584832,0.005853663269185785,0.00012447721005536178,0.0062755609041478914,0.021970301435325128,0.06881796845627206,-0.016659310474438072,0.002049053710204285,0.026207158515918177,0.04004502707672593,0.3517529953874445,0.07966306907902544,2.9274735679751985e-05,0.00398075129574706,0.04044628527798201,0.12732649678383304,-0.010216353159394566,0.001038558872450024,0.023726870380088617,0.03582499115834609,0.23381751343902357,0.13369933846526524,0.00010203160009965436,0.010438442139884407,-0.0012392405712267124,0.0018731221543549787,-1.9659934274013143e-05,0.00015614745458143628,0.023216621400106916,0.004719401701470266,0.008248797339652371,-0.08580299420969148,0.0003283977892360453,0.004659734467423012,-0.02321265836459417,0.10172287908225605,0.004419676841162146,0.0017687097799515244,7.35838658092341e-05,0.03356740555365494,0.13648198185249905,0.08146153955373944,7.891014216371028e-05,0.0199552399782542,-0.054199700066657315,0.07162338274028797,-0.07761113630925488,0.0018811318919097616,0.007061072136392431,0.05084795912261312,0.14946801207850569,0.044035928962464825,0.00013478491976529942,0.006215632096312409,0.015423489925835573,0.04374235883190678,0.004303169075326565,0.00014293573897862193,0.023986864089074834,-0.017355552319696613,0.06936629082613228,0.005377738792619807,6.106662126975485e-05,0.01667365777269417,0.016799934557682944,0.05499708169627239,-0.00037331358042066174,0.002895249549744666,0.018067394328297265,-0.006761866880507433,0.03596605060947608,-0.0023248505246379757,9.352214008102068e-05,0.010730528998145509,0.028377669969454955,0.1644503178776845,0.034859417143889446,0.00012514191619398976,0.0064671967380694455,0.036471978651528514,0.18403588540787644,0.11876646442933371,9.373580399238745e-05,0.014454517307473467,-0.007537258735821496,0.034009732240733705,0.006543236548194676,5.570030919428772e-05,0.0046284173828774,0.07884412252523183,0.13666944098782308,0.16767103456836852,0.0002812725174268735,0.007385708989118648,-0.00884561800904154,0.03135553392768737,-0.005889645363050392,7.015010997967199e-05,0.007518407421646843,-0.021796710052350354,0.23647347916685157,0.01761632445901748,2.3781529983365497e-05,0.0032462454487235167,-0.0031015816528071247,0.00958623120361495,-0.09187714923829879,0.00011309522899579722,0.006349553299434626,0.036781573649634317,0.1361292280344114,0.09972803832082801,0.0004258992695238059,0.008714614094292208,0.020186150612144058,0.09619264302367436,-0.03829465908951353,0.00012019418238255503,0.0017656011643314923,0.00403303902862772 +2023-08-07,-0.015060959763239684,0.09791003276444175,0.0024591862059625616,0.00016267171161047392,0.001583219181584501,0.0021605596988974263,0.006995955771957974,-0.007382767271601629,7.410196802161401e-05,0.00842994927563669,0.01167622798236729,0.04068959224182557,0.0020059939944003288,0.00013274446848945005,0.0033793333907158325,0.005910057227192474,0.005317942027899848,-0.02066186856080278,0.00037507312233663195,0.005177245627842234,0.02822776450166666,0.058368444009649995,0.03583435001285753,0.0002530440569594805,0.003437120504862278,0.018377279761251426,0.048171178592569,-0.010777626012209439,8.329917388512383e-05,0.001731349062668719,-0.037973911901661314,0.131151382774009,0.020672224033326067,8.495761652749592e-05,0.01520715145552578,0.03310490986671462,0.2663167550918238,0.032598027852674974,4.262776213305944e-05,0.0032178163693152295,0.006399090329992451,0.005420627916910868,-0.001588558157203818,0.0009103605508470036,0.012797050129301043,-0.035122089927848994,0.088319288476461,0.02327541365215041,0.00013905502110781264,0.021472240154798046,0.0003483467243062205,0.0002176204180278493,-0.004895219449845264,0.0007824137049063496,0.004478617769254026,0.02985028456816418,0.4446963505933126,0.17084675198838126,2.0003578723102214e-05,0.0009405138660492532,0.03437742995130722,0.10211584886842257,0.016035710856676662,0.00010000720545632171,0.0041128120007667465,0.010107141967844535,0.05775938169052761,0.008269314487321893,4.925696497861812e-05,0.008368044561293636,0.005669979051345248,0.004417338803124848,0.00034091553480271075,0.0025034776389663057,0.013559905098198913,-0.044989179092857635,0.3110408593768477,0.010380671770446798,0.0001190262451472393,0.02534228461941624,0.06971599392628937,0.4532413969819266,0.08804700548013016,0.00023818317813348978,0.00015024263073715465,-0.0623796937448809,0.4015371049474677,0.07497122282364964,4.37601206590303e-05,0.010244416171252659,0.029298366207012913,0.13650760250695423,0.025235236700064653,0.00035373120319931087,0.026681542118947327,0.018775327618764333,0.21727592891512798,-0.023127222375711583,3.585965771670064e-05,0.010184552684190632,-0.026437760744097104,0.2920606886523231,0.0025312977677931425,3.0243585145707145e-05,0.005903061297054958,0.0038333713219008475,0.011605324327084558,-0.0006299344575107157,0.00010640116016046151,0.013380786190835886,0.034644865863497874,0.24780668112307222,-0.03561707988614507,3.22937329097812e-05,0.026510058105460713,-0.034703533077572374,0.11243282430916025,0.1450257804921118,6.843179840028766e-05,0.01060328434644944,0.02715005441258075,0.09621769471243471,0.14888128087099545,0.00012902217314541238,0.007894244557712975,-0.04817423147056277,0.0441311183528636,-0.019946481605450702,0.0006239437274984573,0.012442449080559385,-0.007547643998996374,0.027608767137918842,-0.0340827511047329,0.00011506689731076836,0.015904962477023048,0.001039255633890632,0.00358436405448059,-0.0003232511410174608,0.0018609274789461608,0.03149537413217993,0.0008361368948899083,0.008661187809392294,-1.7160088850456423e-06,2.482459240898545e-05,0.014237012422585066,-0.08517128140425927,0.31004870926273925,0.09224251865360988,0.0008981203218648698,0.007261796198218601,0.0055013827168107635,0.05097257245939224,0.003617635747136274,7.187220186994487e-05,0.006959073276278161,0.006593048937543021,0.008751971973341387,-0.01523550776360555,0.0001777975480221472,0.006233829194278828,0.013466915153193044,0.01996427378522677,-0.09849699129675295,0.0003871849971332064,0.008046366118940943,-0.0008452613949766136,0.003353089905506779,0.0036509651345285558,0.001953872305419503,0.0014496522389551348,0.011826708441506503,0.048277841684179944,-0.06129308760913321,7.859708054513604e-05,0.001434037004264287,-0.019652103808842917,0.03153061024799075,0.006251330902231896,0.001549365442584983,0.024409504009238456,0.039549185434434954,0.1336995272813174,-0.07151284455934709,0.0001171989465045545,0.004708633644358172,0.019942700356397246,0.04951477023243756,-0.10067107078005598,0.00016327119519387375,0.019816516642194065,-0.046375298448963403,0.1541643410103912,-0.0011305611154745288,7.342039416776383e-05,0.0054631045346188924,-0.04667167739783187,0.16605682627888002,0.023373726064024453,0.002663880473932423,0.038970076470748266,-0.025037120167725323,0.12793312422150052,-0.11715186988161663,9.735134109671225e-05,0.019450696887995916,0.0062694206414389084,0.03521711080251121,5.908189813884909e-05,0.00012910244585470168,0.006627234942238368,0.018313176518442977,0.0989917467384739,0.005454701532090508,8.750107582363605e-05,0.009912127802737671,0.024738895604375963,0.10523966938613342,-0.009403802480793682,5.9081053084720754e-05,0.013433316642782803,-0.09208533723295474,0.21502644237218627,0.19116980640723413,0.00020879880435369894,0.009829210733375685,-0.014594706156861228,0.06288399179694208,-0.0282992645447846,5.771246564498714e-05,0.009418928442340123,-0.026063951091322278,0.2878517229398769,0.026880366432289044,2.3361606486822e-05,0.008420756502662729,0.011533137102041334,0.04153984105351789,0.0031688462037920825,9.70491171328891e-05,0.0018439118312992902,-0.004667179152233598,0.018735709791421296,0.002586481623873002,0.0003926560487510008,9.248128184449018e-05,0.01761031119334677,0.08568008714704592,-0.03878872471325565,0.00011772235106496274,0.014604524550052376,-0.00219355616307116 +2023-08-08,0.0448390658259647,0.33233222785808186,0.09530014082630969,0.00014268249038451586,0.002497301131208468,-0.01506909423182254,0.047384951554095486,0.007623433193030153,7.630574454848632e-05,0.002095932881240546,0.00022820956888720988,0.0007655805683191079,-0.0029214468250052966,0.00013789234371610972,0.02634494077996843,0.004300870240612615,0.004535798626306185,-0.008353912962149818,0.00032001507046964075,0.008822568579270601,0.006902559167526613,0.0157067565228813,-0.12090545357694966,0.0002299436382919377,0.005348411670195421,-0.00174237548618284,0.004404771674234521,-0.04821758839592807,8.637043180948979e-05,0.0009012698439455295,-0.0268336007511261,0.10473889040215785,0.013309937061652198,7.517281961465183e-05,0.0004037446435489309,0.020090875920794924,0.1580149419449615,0.013303231532380977,4.360128914187738e-05,0.005747829556120837,0.006751962391496384,0.005936720737694709,0.002868640896924678,0.0008770577307443534,0.0035704288024518112,0.0014672417434003465,0.0036660858510721367,0.0017199140765228453,0.00013994614178679254,0.016590709968541582,-0.018982982692069675,0.015440221386527805,-0.016121643051442203,0.0006009457760366342,0.004675308947549545,0.009729469092748124,0.12032388679029302,-0.022785909167165337,2.4096839214631402e-05,0.0001321333760849171,-0.024588109957707594,0.08451935335673556,0.008411993595254375,8.642114555375989e-05,0.003229380094092551,-0.012563990363475278,0.06704074762598249,0.022341539896022267,5.275341319481385e-05,0.005831811980732084,-0.020486971212015134,0.01441157281953573,-0.0038285002017573954,0.002772613600422444,0.012268420955368219,-0.015599190438851183,0.09783112561679465,-0.09346834580654496,0.00013121307622562104,0.008756545036948955,0.03341268762150152,0.2000516627547164,0.016272649729687515,0.0002586291526638624,0.012086849808946143,-0.01891370946631993,0.11874736898329627,-0.004424163881555821,4.4865619988298085e-05,0.044667566203624755,0.020528842936315884,0.09484841774401159,0.012095754115113226,0.0003567148497449491,0.0051041980846592136,-0.047626118911784456,0.5975539763210298,0.03877069336190255,3.3074880408872266e-05,0.0001789922581577866,-0.002997035123306572,0.027615952518725877,-0.06165270553751413,3.6258807307167674e-05,0.0007428696840776354,-0.00756760904194193,0.019232316644444098,-0.11984949754036331,0.00012675054709553667,0.009287594492415754,-0.02191827529769495,0.1596902139438721,0.007934323291216919,3.170446658879634e-05,0.0043016593253088885,0.0007200748147596786,0.002204396995449081,-0.04445481586696548,7.2421112713444e-05,0.0020918604358793505,0.015465861713453759,0.05219867843723727,0.0070430027793203405,0.00013547626364717269,0.003607316522528877,0.019989856681325982,0.022680859000760282,0.009293708999301766,0.000503762392732509,0.07373074040728111,-0.03243968298094112,0.11265976785034135,0.05690151841298638,0.00012119752705850352,0.005576540116676685,0.0382063378918545,0.13255951898012178,0.0006201738400847628,0.0018498804701601815,0.021585162029650898,0.05061600352965076,0.438320042841765,0.11172594886866509,2.9694684623160318e-05,0.010137610453830803,0.015278958485337453,0.05117332632450205,-0.016391213128914204,0.0009761608214637097,0.018972833788620122,0.006465436604637485,0.06140756811634784,-0.0017046877273617735,7.011349274516466e-05,0.01036836731010576,-0.03953906763523834,0.05854198617481672,0.06642821107714693,0.00015940588747726558,0.00711336792561786,0.03128802609392844,0.04460975502800576,0.04901346610611118,0.0004025800417879858,0.0054501254761044095,0.016835344565872892,0.06478872958961056,-0.008564545688468393,0.0020140622359859275,0.02296488190523309,0.011011523480389496,0.04154632854401166,-0.08269943680104518,8.503645136617552e-05,0.0047613494254173695,0.04859387663606981,0.07397259714881226,0.015726829394598785,0.0016330063433721493,0.014781378734638933,-0.004645143756988574,0.015327439715397928,-0.04587475598108602,0.00012007306007897356,0.01776601570152104,-0.006034582291375816,0.016727534588505556,0.00022843626758444236,0.0001462431905916549,0.0024760851952738763,0.009687680644939628,0.041487152396881936,-0.039128069585924664,5.6992815515892534e-05,0.015041291133959236,0.037127017772297856,0.13979130607109416,0.004525480795557885,0.002517259342454713,0.015679460646473048,0.03290537961225033,0.17475079334389498,0.02800682950703358,9.366736866221352e-05,0.013330713758076426,-0.0006535252735221345,0.0035697890489264647,-0.0157946317141486,0.00013276408876804015,0.00892371351353694,-0.0011411347556897738,0.005737954634257082,0.00022020681129493404,9.406509996959315e-05,0.008245856511345939,0.01894865747265854,0.09196768808950274,-0.001556254922738411,5.178340107245484e-05,0.01522465905087287,-0.05068904945171668,0.09496936265520468,0.03462623236734991,0.00026023159153786495,0.007006074051894601,0.004049603847519032,0.01521602242138045,-0.04770175672645529,6.617984974124332e-05,0.0010089294894508598,0.008671587242705376,0.11314940933346639,-0.019527536419356555,1.9773228817037385e-05,0.022840062788591926,0.007514484676891354,0.025199398968645054,0.0016484285647848447,0.00010423605952189122,0.021027181592357634,0.006850047067559967,0.024534012340874805,-0.0686027973784129,0.0004401015996607626,0.012577948733103417,-0.08571503014094489,0.3815129992645606,0.31045751220688195,0.00012868248468595603,0.007370317826250869,0.0010829941473813188 +2023-08-09,0.026408113705450743,0.20457348883831483,-0.0676952300756775,0.0001365131894244565,0.001388047062671588,-0.023442166407341983,0.07857548484438548,0.02062471347591059,7.158486357370176e-05,0.00813568779276845,0.03761568742999029,0.13533763144151215,-0.013494087753506204,0.000128572366004502,0.01950238320724756,0.014286913731294235,0.014219169862147234,0.00042550713850639065,0.00033910331574067514,0.010702104638553565,0.052481542131069404,0.12256789721467938,0.05725733781386713,0.00022404106316814578,0.005359647747641115,-0.018631114136965592,0.06134265156354546,0.09788273919644228,6.631671748964586e-05,0.0064097240810993645,0.0188824485905111,0.069286263794161,0.013718100481799679,7.996519915000513e-05,0.017824143052233534,-0.001633429007390018,0.01282303845100185,-0.0029698180639152957,4.368254507550734e-05,0.04212982049995467,-0.027711345465240664,0.026636052021719737,-0.030952635680707174,0.0008022921534325451,0.006733153507780266,0.012190068044413548,0.03314636551770703,-0.0660994823418008,0.00012859737423792354,0.0046906953261869845,0.0057099085151767264,0.0045781350069945305,-0.005841038161654417,0.0006096280095314853,0.0022385805161177683,0.012713625107623082,0.16007344859503395,0.005652388461238632,2.3668617381650876e-05,0.0045107998715050186,0.010440793542764526,0.03005008470512989,-0.022509362824175712,0.0001032140561319744,0.003679261795962412,-0.004524821341491013,0.024266837588517113,0.0073328631221672306,5.2486797017226535e-05,0.0013165206656175238,-0.03441192637991548,0.028686532438609347,0.04324716221715774,0.0023396662091731122,0.01501533948752067,-0.018004136651436808,0.12095945905368824,-6.416496498016006e-05,0.00012248546983177071,0.019433501007437938,0.022269606558123826,0.13622397162719863,0.00402574876224769,0.00025314376683365164,0.02450184747643568,0.07329635863926415,0.5087542067495296,0.062333823918613133,4.0582177131186175e-05,0.02770951625996875,-0.008627230888403961,0.04855509657613733,0.0022582769822039554,0.0002928352854797143,0.016466979625833156,-0.008766464296739596,0.12078745464629505,-0.1455966292370822,3.011846750251205e-05,0.0017338453421405294,-0.006966026338417473,0.07264650175193833,0.006334590237580582,3.2037020218074344e-05,0.0004620599548620192,0.030838782381192226,0.08389017764330012,0.039421701432504064,0.00011841558479245293,0.016633483368932642,-0.0033647232167199727,0.02655230045117395,-0.06249744666686101,2.9271135305932306e-05,0.03758581155161267,-0.009132767348404399,0.026141890033535294,0.0037293045262904415,7.745381132424657e-05,0.003936852328878576,-0.0037588606952726764,0.016006330889315457,-0.0028490140365178187,0.00010737743759435424,0.00267296452344292,-0.006746872879514571,0.006562799564944863,-0.009561865579763277,0.0005876096891136065,0.02079796169505767,-0.01575403041020406,0.055830603115095155,0.012727769099660283,0.00011876962059883751,0.02357419498590522,-0.009345056615045743,0.036596033151995555,-0.004311588085508942,0.0016389552627768572,0.01020380543644956,0.00691706037066135,0.0654647664768417,-0.002417224669383711,2.717040664960933e-05,0.001722196434634166,0.012264094885889854,0.03873796770933039,0.0029616361089930994,0.0010350705184711967,0.044270051002884184,-0.012102085758767908,0.09661521511280863,-0.007472941014824561,8.341426823187222e-05,0.00021351261101963583,-0.014226369750957228,0.022662887469160557,0.005147532500078911,0.0001481577029330298,0.022666156551312246,0.020772535143450278,0.0247392663216736,0.04254860005813757,0.0004819551222482788,0.010472822645438645,0.008547241568718505,0.03340489821320934,-0.046930899686637134,0.001983198416022776,0.004647052747486563,0.04150846418988333,0.1283214747794299,0.11391995283411653,0.00010378335188549248,0.008201375459957265,-0.011764266211984186,0.014360272790430862,0.00308481936105006,0.0020364762304897394,0.03345516821979806,0.02793612490387164,0.09239917800065427,-0.062180356123947476,0.00011978821477979153,0.005602879618299788,0.04431955903737101,0.12093671923239853,0.07589224655795193,0.00014855854043335548,0.017498456931065488,-0.014127840781790574,0.05613044388035558,0.0015345892399445018,6.143151703402233e-05,0.010545172778335629,0.07100227043596431,0.21098477836940746,0.010323581999495924,0.0031896216487510847,0.014378192461708137,0.007076538240899294,0.03704715406498132,0.00042007272809911454,9.501815147002014e-05,0.012483675297194062,-0.010718480142394191,0.06244687390361981,0.0034066002852110896,0.0001244753309569316,0.0010050363938348935,0.007009692256877977,0.03972330075237208,-0.040280224618611235,8.346460109378606e-05,0.007988955884001721,-0.06226908755921281,0.3333208394075541,0.12168371038003754,4.695236039076164e-05,0.04369361767710782,-0.039424965391266,0.0782802489066527,0.013974427276154068,0.0002455548503070421,0.003643499747061899,-0.017051197445113367,0.08002912264801502,-0.034688128388438405,5.29811283665153e-05,0.003188427987602718,0.018352557756930232,0.16546108330336207,-0.027869344106376818,2.8617521750037984e-05,0.004694675784266417,-0.020807854770526317,0.07025841754395841,0.00619271685247873,0.00010352325262860478,0.0020478832325758886,0.0015660156031645001,0.007666760435213736,-0.11411749982105816,0.0003219675944514961,0.00496712467106251,-0.03750870938805434,0.18495701479840926,0.035234562583245685,0.00011615371637722536,0.04193618638716165,0.0028502601335858428 +2023-08-10,0.0025525436870798258,0.015839343615345284,-0.0010832679983211698,0.0001704207951617305,0.014123499649523199,0.03720723241163343,0.09852209556449376,0.05547840025712522,9.061586759787931e-05,0.012784962494298271,-0.04729570772827146,0.16710356784960012,0.054232259110341775,0.0001309282039737726,0.01149250708734741,-0.019953080959316978,0.022540221484532844,0.01698027333306615,0.0002987580676716924,0.009372951529443743,-0.01511883232515985,0.0351229065340937,0.012875758280413298,0.00022522965668659138,0.017450512407541127,-0.012889610410895315,0.039416955382104525,0.06623043249389142,7.14008620221758e-05,0.0019001703823123136,0.016789059114082513,0.05617303218410658,-0.02392287365151724,8.769772877622666e-05,0.010467328891616248,-0.024221003014497266,0.19083303737699298,-0.07961380469633314,4.352483921348548e-05,0.004415417579408342,0.011684134727490412,0.010456712567181845,0.0030830353581666058,0.0008616803164475941,0.008201809771566163,0.016672632696732803,0.03905757055473535,0.012488220128877276,0.00014926598220602006,0.00449791994442373,-0.01539355753142595,0.010720511659672544,-0.01124217621353789,0.0007018557203527671,0.0018410256520686329,0.00591994247096024,0.07944727917444269,-0.0037175581588774482,2.220553531121922e-05,0.009359045003987996,-0.016590547484595635,0.05292715958093704,0.00624303325124144,9.311789893757506e-05,0.007268177212655057,-0.007366894287758445,0.04528557285385931,-0.017033025468551732,4.57916603082349e-05,0.00472827279007557,0.02317373931112152,0.019473831260252036,-0.04659984638429387,0.0023209601677043434,0.004620216907320316,0.0012404398704438445,0.008773808598740235,-0.09197834874286584,0.00011634284207329231,0.007472505924041349,-0.011519902969683048,0.05511091237229311,0.0028377479695386324,0.0003236826731710308,0.014796804857315101,0.031516503167283584,0.20339798804142123,-0.11187207993527284,4.364679198091771e-05,0.013727543427247016,-0.03518219809108365,0.19663959016505292,0.0188781540623322,0.0002948755857600148,0.004196852914356482,0.0464568962385953,0.5779288095727954,0.06390910230212951,3.335846653810154e-05,0.05340603798972204,-0.014713156454633796,0.15754027680524738,-0.006544509983299338,3.120297175698826e-05,0.004673828075693752,0.057572166313046916,0.1871505503765586,0.10349332423548818,9.909328333729084e-05,0.010606211922490104,0.007443566557353057,0.050083200972339176,-0.12961732174362098,3.433059843446718e-05,0.006752879568109622,-0.005191293669256466,0.014029434732086643,0.0028124284051447555,8.203757357387263e-05,0.00760786473373181,0.01923856585880263,0.06161201328592071,0.019698748419709478,0.00014277622320667656,0.004130164570718228,-0.011279831769657392,0.011015410956017217,-0.0027823239238719513,0.0005852985924761884,0.04872938428058136,-0.012417551242786847,0.045558256799141626,-0.017090452736196533,0.00011472415607570653,0.02628333691105779,0.05110432924318847,0.1740899974193932,0.023891141535575817,0.0018840960899667897,0.003094216701019806,-0.009909992442173611,0.09679286432107792,-0.010112208444294368,2.6327654906612153e-05,0.002072617079752512,0.021029267310336268,0.05937350489837806,0.0035714863165496723,0.0011579844422822687,0.02093692926052511,0.03498281162554102,0.2808906772329366,0.09700971703986512,8.293598930869741e-05,0.00015997069867613924,0.009173768132418672,0.011481140027589654,-0.0013558692595097715,0.0001885854279441476,0.0052057733453486025,-0.036370501410321006,0.05521930714167878,0.03653622640325901,0.00037806132239739867,0.014368014032771867,-0.014555279675815687,0.06071435041262435,-0.00755283357793295,0.0018581447517233122,0.008988196570485083,-0.04850358572103973,0.19481497292928104,0.1214053428386499,7.988070401222548e-05,0.016320789134755494,0.09974871879287578,0.12739530403634067,0.10507579268283408,0.0019463955291735735,0.010560063392181641,-0.014077443794949202,0.03985417579883994,0.0213163419333926,0.0001399477776773031,0.0027327220927538037,-0.027253141918665753,0.06406379930845899,0.04165740660227559,0.0001724504225786311,0.002353148268674974,0.00045293294100747487,0.0020596164413340477,0.0002524694673262534,5.3673693557639934e-05,0.047667732368110345,-0.020384127183875663,0.06634816187471265,-0.0001587912554665363,0.0029119323602905755,0.0007181938670364251,-0.015082466307225293,0.0809115544791477,-0.05953266705186131,9.272618445384862e-05,0.004862518278455858,0.02772453804304829,0.1511929113629282,0.031143139442219064,0.00013298224886203623,0.007773648742830526,0.021669926452827126,0.14073700346566995,0.01693373518975496,7.282790820898764e-05,0.007003386858492488,-0.013253014132277094,0.061739042479853526,0.007777735015454597,5.395133136664731e-05,0.0017078283629567276,-0.11032886579531787,0.2107625839099091,0.13486606962050485,0.0002552260700713951,0.006313057465961003,-0.020463811412757882,0.07342028833929451,0.0017794672629638055,6.93082311242175e-05,0.011352059730281933,-0.009721367163364823,0.10083157768184757,-0.03430120245295985,2.487494156086635e-05,9.606781582510867e-05,0.005539898773341275,0.014716801816020971,-0.014783642499677514,0.0001315822633098269,0.0022759274246964643,0.002791671252760595,0.010700022201966274,-0.01487822235433273,0.00041125156772811144,0.0017827528617547876,0.0034109410659741973,0.014856266362699546,-0.0014355973577746175,0.0001315032040166179,0.004448965952244937,0.0003483395807801508 +2023-08-11,-0.0214972400366509,0.17540928663318575,-0.07194621953689165,0.0001296034932414852,0.015926450162510743,0.022077080760237785,0.06447337045466342,0.009658185593714317,8.21621506406159e-05,0.005014143993936339,0.02110206210757113,0.07478436873447994,-0.08849102876371197,0.00013053027992048418,0.01819438627707438,-0.003133490353385444,0.0036215056109403466,0.00023932703875345466,0.00029201627446064413,0.005712850662807288,-0.02870042043264757,0.06102255697140655,0.023623733228233978,0.0002460909424825912,0.0035344693655746974,-0.011898822621156267,0.028900514885630592,0.029915519008094568,8.989698990262658e-05,0.0030669404493867966,-0.005248842556240526,0.021088884188839755,-0.0247314096871391,7.302974752982109e-05,0.010169776112861463,0.028097519425598592,0.2765739505576624,0.027297351497378712,3.48381689901404e-05,0.001785324649176786,0.016935649207380273,0.018502545728945847,-0.09546007905272495,0.0007058544383073035,0.019487357424805975,0.0449459373292631,0.10490452547159633,0.1012598523631703,0.00014981596798605327,0.016451552491481145,-0.027504106710792522,0.01946517131096424,0.01199342695980585,0.0006906589949683319,0.02378818311837217,-0.00010451250186843835,0.001467818470609441,-0.07902797078979973,2.1218695730213657e-05,0.004478341164311485,-0.04032465531771186,0.12453687856896016,0.018140909303489217,9.618862696786704e-05,0.004136604989415982,0.017741952634877812,0.08661718047002571,0.04290101734766236,5.7657949201717715e-05,0.011598813124116867,0.012851504503507163,0.01162715624262075,-0.13970824804767223,0.0021557750281706216,0.010029719981648526,-0.015331543454192702,0.09574573122180764,0.003509661387716794,0.00013177061284481894,0.001225415315431076,0.019163431423970385,0.09374695141136784,0.00032430068071820795,0.00031653690758102625,0.0008500464712962645,0.016995749772044672,0.1223583976862382,-0.005016746295690169,3.912618492155833e-05,0.005530435855983239,0.03057827912472306,0.18252330878979275,-0.061936356771254926,0.00027610960523788663,0.0010744703205332255,-0.000898897348887767,0.01065307511014157,-0.0050296159722951666,3.501590390667617e-05,0.005024958632942651,-0.0034174694673638592,0.03541359842276584,-0.011425734636730358,3.2241578345098935e-05,0.0035167978127339946,-0.01866642084626069,0.052571036089630235,-0.0060188273321621095,0.00011437662373104566,0.011184014551255355,0.024287699734649712,0.1711297896807686,0.010234483578503317,3.2783335981553994e-05,0.005322379263793304,-0.01679260272114253,0.04166060138759196,0.018228659037814624,8.936549411974914e-05,0.0010086888668305201,-0.014026872245614611,0.054303727066514006,0.0741071243217302,0.00011810813159793902,8.963901276228328e-05,-0.046192444504358485,0.042594733611431256,-0.004740964989406203,0.0006198557020126396,0.011106495457776616,0.03203262648718916,0.12133822024498907,0.03821059428761823,0.0001111171101949104,0.008470959936623638,0.06356470337762575,0.20695244681145675,0.030638146610202296,0.001971354070501751,0.029492808288690456,0.005271208854876577,0.05870316175437977,-0.021105481671620973,2.3090371822566657e-05,0.011980903224408574,-0.05252646097702737,0.14841204302183006,0.025768106805291645,0.001157124973968694,0.03611791721231052,-0.017290250206355506,0.14031253640007701,0.0059003759384426,8.20597984347421e-05,0.012554518860255113,-0.0009921755148278371,0.0014555116568039338,-0.004850260257811325,0.00016088598121565887,0.03105259063526897,-0.014074880436719336,0.017761295810222063,-0.012184320396134055,0.0004548560553422265,0.010680577840468431,0.031325304398298275,0.14110840369255337,0.004559595666498902,0.0017206508848480277,0.003526441026898194,0.00803608312101893,0.0325784470624721,0.004793889312500455,7.914152452555126e-05,0.014575527735262871,-0.0371928395537653,0.047291309056002304,0.016954630491849764,0.001955037952667672,0.016631711124924557,-0.013013534519205524,0.03714385672099264,0.013048119698665744,0.00013881113635078176,0.013895893798472192,-0.04148858383484069,0.10305179510367686,0.06514756372686907,0.0001632049871797323,0.007141991012610241,-0.010737440910612442,0.04428666897870944,-0.0015878234146237727,5.917546725514386e-05,0.02581492782115018,0.00936585052769825,0.030801687438667905,-0.0017242819952339229,0.0028819787276728125,0.049880571065711594,-0.03597851498812511,0.2011601518032804,-0.015464371880758668,8.896964340822303e-05,0.005742321753944889,0.004002202601821708,0.021795318895467135,-0.00214396308717163,0.00013316700325401493,0.005176297793593625,-0.0321859177687938,0.17314347209065267,0.006465164278892198,8.792420978875942e-05,0.0013507603969193493,0.023736379683702808,0.13423983710489704,-0.018225070167568025,4.444065575841933e-05,0.024380883751723235,0.009835673732351388,0.01778240741974387,0.0032963702883019794,0.00026967640602117816,0.018103441128833154,0.01686413188421353,0.05092890008123032,0.033833401653290004,8.234060791263199e-05,0.003998903249421054,-0.0065272759868458055,0.067236962604782,-0.0485188724692588,2.5046968826304447e-05,0.020364375448993912,0.0011034455296691909,0.004101907194880983,-0.030848458768712332,9.403164501322525e-05,0.01086956144798366,0.028164013295004703,0.1013946606931898,0.04827653049619238,0.0004378319248880953,0.008554545398509542,0.011984959391651622,0.06103884960779589,-0.008573509650477882,0.00011246102123468647,0.02338586384412447,-0.0009354668837957906 +2023-08-14,-0.011969894068125167,0.07507567338424034,0.0012795813420944096,0.0001686077972446596,0.005989495166187622,-0.019936535664047336,0.059700460367454515,-0.0032207004633545916,8.012767483011186e-05,0.0032452714893479416,-0.006451204003378852,0.02312751825747307,-0.0048271346925023466,0.00012903542234099863,0.0029610818479493223,-0.022303283081010764,0.019619301525284474,0.035053024891150364,0.00038366582053019944,0.0044151866075166565,-7.216604904556242e-05,0.0001707301263137817,0.000598471609109829,0.00022116710836037715,0.008703970586595156,-0.006427690052541024,0.019544849896848248,0.0071461215058359106,7.180742065623052e-05,0.0016046594328666018,0.010101886998486711,0.03532199649299321,0.0068422190340038935,8.391645290723224e-05,0.01743115672065135,-0.0027461003901663016,0.025978369775603055,-0.006167368525577757,3.624959260681709e-05,0.03311323333576417,0.003093729658456584,0.002345884866189907,-0.019770527378990554,0.0010169988313114987,0.004083288593352973,-0.032005640192814794,0.07760226723415391,0.024836508639968453,0.00014421618245033356,0.04165951738624424,-0.004409129783460857,0.0030655672326558117,8.205640638581194e-05,0.0007030179201638828,0.008335479991712061,0.0325718040936889,0.4116348252525461,0.14566963184116657,2.3580471976141368e-05,0.00022897509317534794,-0.006694094871994793,0.01791548787365709,-0.022132493044548677,0.00011099777202667449,0.015124287061232745,0.010701049669938173,0.06066174217884209,0.010592223644315897,4.965618144577413e-05,0.0007044020753468423,-0.017596166861360972,0.01586134056193303,0.0005761925432447552,0.0021637204721121892,0.006910400737078767,0.0702222446968233,0.4389906966855741,0.10896638995905536,0.00013163503676225883,0.01376732047683701,0.01373228663353841,0.07015805486358177,-0.009059982648756676,0.0003030913569753919,0.006082020613929008,0.06340162375531218,0.38788412166225117,0.03251694230486079,4.604254643710783e-05,0.002884943422014611,-0.0003961447436460549,0.0021885990198015986,-0.0214813120095544,0.0002983145971552174,0.011576865985191604,-0.04878485882482073,0.5917155016970402,0.037555768420005305,3.4213880706553725e-05,0.003825043447171277,0.014959259391198052,0.17556200437499475,-0.03799090719103502,2.846828280110889e-05,0.0007779726184023179,-0.004584483679544542,0.012708434350466405,-0.015638675021315204,0.00011620401587934436,0.029592356455111293,0.06455819265737262,0.4435286050865537,0.04666873478255919,3.3621888614206566e-05,0.024266848050942647,0.019408897905735082,0.05557178321701592,0.018505704793688297,7.743261478475254e-05,0.011968695978977414,-0.012017119462954808,0.042548761912239864,0.04663619176699013,0.0001291403760413496,0.002923375109613856,0.03202977919051354,0.031178165793616562,0.013467613616644478,0.0005871903963303082,0.017594958788207632,-0.026738557211252782,0.09813806338042853,0.024822599004307225,0.00011467968595014425,0.004801855309867098,-0.06686075217455431,0.23643505572397125,-0.0029570223413145354,0.0018150080844775449,0.005336980307967338,-0.003480835388339336,0.03258405782812012,-0.011717524731813258,2.7470117246995356e-05,0.0007355742950069526,-0.0038996841967871413,0.010999504070701611,-0.003388656084988777,0.0011591178757963823,0.0046056693709186115,0.03973564445225671,0.2588523055613483,0.07128473913589434,0.00010222423442150553,0.02182402344811923,-0.0064273275548118475,0.010522047993431897,-0.12590132337153734,0.00014417021338455237,0.0036185408732089313,-0.01965396076340599,0.024893154584040737,-0.006395721415725364,0.0004531834720912772,0.015150635302825802,-0.019860521365395612,0.07731858802667393,-0.11481666582241067,0.0019909349560553306,0.00033040653323323415,-0.019659428401056195,0.07533146816553195,0.011377225929676864,8.37307199184926e-05,0.0051931918906169185,-0.023365503564146323,0.03516820887194577,-0.009167413707339856,0.0016515894000069843,0.046536046041397244,-0.011176500765301,0.034275484298235216,-0.1475887897369032,0.00012919279344889253,0.00309021536251179,-0.0166431438510881,0.05274519691440972,0.007720415676554571,0.00012791245224312684,0.015807860129741964,-0.006072855928723494,0.027203192497916792,-0.11751892841025902,5.448626376100343e-05,0.0015992303318331162,0.06234259515895582,0.22037015801711055,0.023070604715149233,0.0026813292864742845,0.057302022064589564,0.024249266980276178,0.10501707002557531,-0.053077092204009114,0.00011486277080544112,0.0029150568715471904,-0.009567308645419338,0.047727133180182874,0.0011588040386313048,0.00014537349132107277,0.005365338876736493,0.005778198009387386,0.02913854100412076,-0.06862622846671156,9.379362403755485e-05,0.01589465547733391,-0.02309591891960734,0.09427963697725367,0.003814441459901801,6.156937422114061e-05,0.011724274036250554,0.040624632523914565,0.08460082758557201,0.022451993197134736,0.00023412307964592073,0.008374517469480754,-0.011478308568703141,0.05199897512141702,0.0017697696048698975,5.489053800915874e-05,0.005749450352873674,0.03546403389901228,0.3913519417860393,0.03205852525270293,2.3380399403498586e-05,0.018449560360592702,0.008602368154871393,0.03008375564999233,0.01689148792501973,9.995279366502013e-05,0.0020945636445618672,-0.005159971966089058,0.020086558484973906,-0.06454130176261941,0.0004049205139725436,0.0002428107203403325,0.016794517388145438,0.07473310385705564,0.001033266011630241,0.00012871415334864754,0.0016546042418307493,0.0022238853691563696 +2023-08-15,0.0019889369419146307,0.014036485294920383,-0.003048920639427441,0.00014984740388974355,0.0059825273976706,0.0011878830751809511,0.0037071167897545724,-0.027626467543184298,7.68861213670751e-05,0.002405970371322012,0.02667014549708275,0.08010385684762886,-0.00695728974899641,0.00015401717825239012,0.0004815735098699565,-0.004090038746667808,0.004655406177462067,0.00016701741498485563,0.0002965088770531164,0.006338418402884097,-0.008918756784240717,0.024536429186332264,0.001953843339935701,0.000190191337899234,0.0003221391701147086,-0.010559718868486058,0.028450844433247042,-0.03675693079628418,8.104084020072401e-05,0.0071195736190966105,-0.017311389161917098,0.08125342253680047,0.0031595473192760643,6.251440635160597e-05,0.008709591402675113,-0.014897338648681794,0.1483544992605201,-0.005628757120526117,3.4435515026075605e-05,0.010120801441450276,-0.01154012680159436,0.008805788828803698,0.016247381503092826,0.001010618167220727,0.004659622913131366,-0.024129610974658766,0.049485215932512386,-0.06665879028421486,0.00017050484994292583,0.017182169089263153,-0.003632249494031966,0.002576386032106294,-0.008876272694118389,0.0006891108600422714,0.006326651629363765,0.015135521198646433,0.2208562339495793,-0.05584166058097363,2.0422575384643128e-05,0.0029138304551968443,-0.03158504574428467,0.10352935440459199,0.018233762452881396,9.06293869464329e-05,0.03986925596422694,-0.021143878198139822,0.12033194353813448,0.02321507195283071,4.946130097825164e-05,0.0026315130906147273,0.02039013474766626,0.017239885090078486,0.03869684969389719,0.0023067934076309296,0.010685977554251212,0.01778828012670784,0.11682275661743537,-7.93288280840566e-05,0.0001253021774079764,0.003444966947390905,0.031480719453182676,0.16925402544022713,0.004618997622960347,0.00028801418284867247,0.015399896624531551,-0.028570670517029845,0.1629965700407475,0.023287561869948414,4.937452416514797e-05,0.02426701196794317,0.028563446554277405,0.13754527850538467,0.018168257524009666,0.00034225651984427785,0.002573491969865115,0.04828579121748081,0.6619757885636572,0.0511145156598157,3.0269655471066385e-05,0.014253491927415774,-0.00850781678214336,0.07876721318282208,-0.03480588674030527,3.6087297304934674e-05,0.0037289056205685794,0.06709168577546801,0.19583531289082295,0.1447215665758736,0.00011035714433148153,0.009653045383585197,-0.001202948656466648,0.01049068371536286,-0.026472251290803887,2.6487177010762848e-05,0.0059428904015652335,-0.006999781335719711,0.02101812597531384,-0.07053063795093117,7.383594965334193e-05,0.0013111455862293694,-0.004617541599203731,0.014682874086367164,0.008676676885824474,0.0001437965073868409,0.004912455891535541,0.025477102781352744,0.022160957890447888,0.008280989690282023,0.0006571084803192416,0.02460822320869136,0.0010588147711666233,0.0034869134854841493,-0.036432300926860506,0.00012780999807309208,0.01790419844722411,0.02916335751579028,0.0980357854717846,-0.03553322741312973,0.001909290729364981,0.0022838273948128677,0.05959984166212397,0.6057360176261547,0.12341858716314423,2.5301362169496955e-05,0.007425845098102335,-0.03333131538580504,0.08608437581230541,0.015127328174390182,0.0012658999652932588,0.004071002454115321,-0.0257001635396133,0.17821613953618734,0.03126632066680188,9.603167374256467e-05,0.00565406101480324,-0.020130920825485756,0.03172128293560512,0.006840285398504835,0.0001497815372112204,0.01550672375438283,0.01793269772227261,0.02668183281987586,0.01810758794279816,0.0003857748251563343,0.01354064199490663,-0.05693469318990795,0.25778923982358587,0.06325849482006843,0.0017118375159531876,0.017308689199207243,-0.00938933398072856,0.04166728245174648,-0.028486922822188503,7.22986155566695e-05,0.004922240417088983,0.0005889095347999813,0.0006827439557783587,-0.0015036458674900941,0.002144212944910741,0.01912581870171694,-0.01534087612305557,0.049309503205783124,-0.02789696418512938,0.00012326380579064138,0.006437270525376373,-0.008935299034116861,0.023508807895860455,-0.03721047540811874,0.00015407737131351243,0.022178249721826637,0.011208547235165496,0.04383480468587618,0.0023310215187141822,6.240856196738437e-05,0.011699932699806237,0.00624650851850221,0.01644695838233829,-0.0004529682924529205,0.003599728952178219,0.011840997577405473,0.015477460033267474,0.09406468063182075,-0.02418770163731124,8.184905632834557e-05,0.001116736744677221,0.001598560312656508,0.009431796723218805,-0.0620545508557253,0.00012291230943041402,0.0013011993680446918,0.026365458277134865,0.15063745442529786,0.043398406384825595,8.278488602216025e-05,0.012735260965790429,0.006657976296856555,0.0328390710359755,-0.05430217808865992,5.095640449945402e-05,0.01637298856053823,0.004526935583079324,0.00878653027654152,0.0001842320012495357,0.00025119807032464325,0.012978698462207764,-0.029040919138415795,0.11889024272212322,0.007861290648911893,6.074052198010941e-05,0.007329008993751874,-0.0009164464941074532,0.009936578076979567,0.0020939268358778074,2.3795867950470612e-05,0.021293151141440265,-0.001969803637611322,0.005355434313794833,-0.006912377536082714,0.00012856927731537358,0.001377302304960431,0.013894900385294555,0.046438916303796055,-0.03933733724072526,0.00047162990181217663,0.002212798048590728,0.02041864750709884,0.08565853043047755,0.009639686326750345,0.00013653001833026916,0.030107538520776675,0.002510260886418316 +2023-08-16,0.0011606915772320147,0.008157666663382083,-0.03635012620571728,0.00015046568323781647,0.0059680060380185715,-0.008607270743584161,0.02430741512996977,-0.009006271587969069,8.49644425806855e-05,0.007108541742508828,-0.02473580676675919,0.07635629142380294,0.016981606717772706,0.00014985749105134267,0.017769450048308575,0.02639395663244495,0.02597843320393453,-0.12992501416779645,0.0003428936167779256,0.0015874698229311093,-0.059894948071329814,0.1536777697211152,0.12409187403531483,0.00020392802626802338,0.011308740380369199,0.014907215894288806,0.045762317537464084,0.014012327167622525,7.112712763960574e-05,0.0010266119986208555,0.07719890291587292,0.2507338306410284,0.16239221022998768,9.034165619065446e-05,0.02513701396241063,-0.040287139710309124,0.4039087410455158,0.03408812810979659,3.4204385871270944e-05,0.0018062341050711494,0.007248451664733575,0.005225244126806211,-3.163623102776199e-05,0.0010697528398597468,0.0107855754901814,-0.017936011565732123,0.04257039270534009,0.006610086392868927,0.00014732624002954293,0.0016311589249560507,-0.026885710966008194,0.01992961338862978,0.03516753036215099,0.0006593970649678796,0.010687500949035464,-0.0032712105866769497,0.045151530386438724,0.025991756864261018,2.1590306982780286e-05,0.000881599386510637,0.04773242606239196,0.11885778470340078,0.03341509756549197,0.00011929903064100423,0.04147516436846613,0.006497740336193427,0.03420159626779633,-0.007240744362581639,5.3478324760540175e-05,0.0004644043959910516,-0.02489941706138868,0.01973131799046126,0.018650280036794416,0.002461251854974161,0.0032165388206574063,-0.002132256491642729,0.012658412875753604,-0.07641245784454133,0.0001386156597115215,0.018668970765939912,0.013685855381201092,0.07013235384296856,-0.0006058818734927278,0.0003021772489989636,0.007087217716887345,0.01366311373447379,0.08778981820136217,-0.0006411584939729963,4.3839590602791185e-05,0.013423863523521354,0.025979132900519408,0.12952090487326665,-0.00035814858639107776,0.000330576204643329,0.0037945342734425425,0.0406502882607982,0.5923891287569063,0.027075262459587548,2.847651121988344e-05,0.005135860843274609,-0.0184687646826902,0.1836818034002188,0.05130045082889378,3.359335831239589e-05,0.000256725249893588,-0.04772891076071846,0.16230938373070097,0.04604381150560368,9.472413548452232e-05,0.024026510791308315,0.023853272693804255,0.16150524440580655,-0.10041789442641015,3.411565547082742e-05,0.017241036813803845,0.007472623191886991,0.021827399482505377,-0.0010850375652731463,7.590116970688471e-05,0.011627146339036602,0.014770337441240379,0.05575580930694326,-0.06152308407416238,0.00012112921112077921,0.0029651783779256233,-0.05710601549142205,0.056563445248983484,0.03143348513786099,0.0005770607899881908,0.014988386642123125,0.013062808512966434,0.04555977788526134,0.0013150799295185,0.00012068157557891558,0.003292467814089088,0.028038303093541075,0.100452312869741,-0.007703906488911428,0.0017914758589624364,0.03198198363744702,-0.004224070368050558,0.04222560177675258,-0.018131208922784567,2.5723940245805955e-05,0.02200577298558333,0.04421959585325155,0.13483911043795643,-0.013815020681420096,0.0010721860688865177,0.020839448621642425,-0.009873201992600677,0.06546741047521955,-0.007502127312920388,0.00010042885295362332,0.011394951105450437,-0.014441917849224531,0.024237439968232286,0.006846102452540419,0.00014063179177711433,0.016593327495229623,0.014338508823795814,0.0205751002569696,0.015429016889632172,0.00040000548047958466,0.00180520720291018,-0.051753773829827654,0.23106983273802115,0.04506089173516914,0.0017359975773146884,0.012358747880740012,-0.0019352916633924191,0.007073866555792184,-0.019027831440469184,8.77768382521692e-05,0.0037122440262082356,0.00611121990896349,0.008558238920778892,-0.03325151349364416,0.0017750913068035202,0.008115462006231875,-0.006017965013467496,0.01942847103469123,0.0005283930841199636,0.00012272331300584144,0.015365114762354122,-0.01200140674597957,0.02907567525973848,-0.04383195787024334,0.0001673257272761439,0.00746687967358904,0.026941829378629944,0.11624415605743502,0.028467729769086507,5.656787670469875e-05,0.009509491907662374,0.04972678137981655,0.14187850461846668,0.01845827087736648,0.0033219401638456885,0.024629394562629296,-0.018315666552639755,0.08941853648161334,0.0127116335235974,0.00010189098052188888,0.024421324885030873,-0.009574848559286477,0.04851034154097837,-0.019387791922510927,0.00014313912752917602,0.006246466452028459,-0.002896335282049425,0.01671873720671225,-0.04120388299240239,8.193964198172161e-05,0.003455114377611513,-0.010485044716996345,0.045913315123909525,0.007726980232919434,5.7395656822057886e-05,0.009986152837444123,-0.012882427285452152,0.0282117135837605,-0.0006327055869267894,0.00022263714685534183,0.0071995434646704055,-0.001346001857542486,0.006542506202992536,-0.05130844700126217,5.1158274990537984e-05,0.012583074333886234,0.005982176314403484,0.0663665425730959,-0.06711539560755177,2.3256336419161597e-05,0.005185716936445043,-0.008090844058362849,0.022134044163195893,0.0028192637237914866,0.00012777386243281727,0.0011909874072688616,0.015559370252444393,0.0708498072756378,0.0024439214475416027,0.00034616353175679336,0.002039341833596129,-0.03786613072393194,0.16632175471709626,0.022917324008665103,0.00013039882186911367,0.005705609736652059,-0.0002929232739112862 +2023-08-17,-0.0018137329267251328,0.011979531617514794,0.0003266102825249964,0.00016011059930755504,0.018759348455208054,-0.032467834934166995,0.12627437113892268,0.03729981969561051,6.169481149235211e-05,0.015037706843908852,0.00012989888370539029,0.00047540304798317245,-0.002088285709871243,0.0001263981337294895,0.009854655435417315,-0.005406965273664906,0.005380851046703912,-0.0103708110574475,0.00033913332398220167,0.0032465396525451122,-0.0157082726404131,0.04051397152746718,-0.015342931444809225,0.00020287166065818078,0.0014066890995410876,-0.003826177944238292,0.009472372966002503,-0.03906199645601117,8.819685806934097e-05,0.003138069452652431,0.009491287111234844,0.036987242047351335,-0.08671477442261248,7.529445893930922e-05,0.022233426803128432,0.011548378312626156,0.08607238512456941,-0.005917740092235777,4.6010375667842186e-05,0.0017163956719440346,-0.01807976899376266,0.014485561849358307,0.03381746073943464,0.0009625035035140064,0.016689757863524203,0.010614532741126927,0.02930746119091447,0.008507540519400243,0.00012664398533987871,0.010858134405994296,-0.013174218692238083,0.0091247752037581,-0.0032727530767737547,0.0007057112693567384,0.01329758854431884,-0.0026874310822938762,0.03233356452905065,0.019167655139733886,2.4768889766774782e-05,0.0007810019006236825,-0.024133775611046376,0.05282229956617726,-0.10797717939682114,0.0001357247356547489,0.0092826102042,-0.001199125180188046,0.007753298271046398,-0.0299515316345749,4.353513037436029e-05,0.0015449662833898336,0.004833320327234882,0.0037665843902492816,-0.04567604804635551,0.0025027694734357188,0.0070052185058501635,0.011112792141719873,0.07502293176618072,-0.1362139415632042,0.00012189370207402092,0.01487003628822846,0.020818474147714403,0.10978958987149542,0.004601053003148406,0.00029362698429025104,0.011185753195205058,0.017330344662341093,0.1298084572416643,-0.008270875927749822,3.7606694971376703e-05,0.030423654817677438,-0.04743036068910779,0.2703870676950114,-0.06443725661401299,0.0002891061423532877,0.01015996678619379,0.04895472554121995,0.6860315034080982,0.03851411430804077,2.9612889894710835e-05,0.03968602092797266,0.02389878783247822,0.267878850403929,0.1020967041465179,2.980706099442741e-05,0.005655627164479579,0.04207183601793462,0.1477788323818672,0.039727032264512276,9.170689513736985e-05,0.006946059933872695,-0.07581705214583066,0.4674915037834471,0.0727519464843253,3.746153322943937e-05,0.005714014070961198,0.023684874645740997,0.06394625539251332,0.039160277089038485,8.211705297581029e-05,0.0033252283451669596,-0.006361380654488112,0.018824505258204952,0.0004924599109676919,0.00015451705011612204,0.003911442693354456,-0.013046162575246737,0.01236228806762279,0.0004145348376210067,0.0006031974379508222,0.013851064726522835,0.003682123743126051,0.015326844097050473,-0.005306978067871045,0.00010111873984926271,0.009901229030503238,-0.04319733617215738,0.17204349455250464,0.015657690790445513,0.0016115281107482193,0.022490161594269288,-0.0044356397285161215,0.04737587520727834,-0.0013705441567006392,2.4075826993237117e-05,0.0022995565961155327,0.0047264672765735035,0.01596826094297303,-0.04714357419208564,0.0009677213090462209,0.023565103484966033,0.01836799803305345,0.14706130721468869,0.020528409169831112,8.317427910317257e-05,0.004980764009117244,-0.02368993537172715,0.0364579403843819,-0.02921864222181992,0.0001533617768946867,0.030841305934946512,-0.022041206641097478,0.03383952518568158,0.008522978129003557,0.000373865180329457,0.000495866425030917,-0.012876788630223752,0.05738457822434194,-0.06701754129951136,0.001739252811754707,0.011775130257384301,-0.023808783151655206,0.09127989741609277,0.020052301816442727,8.368592610711455e-05,0.014591605595504755,0.027069448214617917,0.03665591616392652,-0.014572393180250475,0.0018357456865120843,0.035820395979171915,0.02593129942977829,0.08305007269766011,-0.02966585688155393,0.00012370871608367634,0.0059156565191639315,0.05313621838114902,0.12822193363458648,0.05151446132840518,0.00016799203743156417,0.016184064605255004,0.037247601987485925,0.13780954476630533,-0.06234721098654139,6.596794341058018e-05,0.00933646285939895,0.00430779788459216,0.01267869314023211,-0.034160696102700595,0.00322031893615883,0.02458094730078494,-0.01607050129404998,0.09054732190498105,0.007328750138238505,8.828651724981034e-05,0.02498434847470124,-0.010418724755723583,0.056442985717679646,-0.03854154408268631,0.0001338644846260589,0.0045934346021176825,0.006056089141664175,0.0362988356315159,-0.07348610907658061,7.891294720787723e-05,0.002925464023660204,0.020611279708474747,0.08983553061907544,0.00023860606683396538,5.766392691908679e-05,0.023564346818531142,-0.015763674224638927,0.03411817043825953,-0.03198899912841553,0.0002252688337999044,0.02490657596673476,0.00042696691410273624,0.001850951638059804,0.0048576726890639625,5.736057905800273e-05,0.004705748256575876,0.015857512005618964,0.20899843966603418,0.00472862490616737,1.9575969989389654e-05,0.010264018564810354,0.0008394599269951407,0.002625310301533408,-0.020511896441817196,0.0001117707824059178,0.0030417681894141964,-0.004253493559419559,0.019430383283083285,0.015936115209490228,0.00034505822415898356,0.00038822775266131575,-0.027312412337148234,0.11995699692282162,0.0015246827262525707,0.0001304086117047474,0.01730039828559115,0.00037240876065846906 +2023-08-18,-0.0004228617871625138,0.002745484950205652,-0.00329781828258022,0.000162879323720506,0.014467102518007733,0.005158986849177708,0.015153357960133788,-0.0414538184428726,8.16894674696188e-05,0.024336985042918622,-0.0036102284612414453,0.013563478071690274,-0.017354625167807804,0.00012312913274742336,0.021047903873677165,-0.023846090611439445,0.02225095746083515,0.03784676911211336,0.0003616898677211344,0.007730194424522835,0.008566070234240565,0.018791216322898117,0.0015289181757768278,0.00023851984094627808,0.018380832884944114,0.018235162215767507,0.06002200502202345,0.02817190317432829,6.633547939027819e-05,0.011019961813566185,-0.018892199449472277,0.07023677466863064,-0.018640479293194602,7.892376901968513e-05,0.00395332382508797,-0.009176403561084432,0.08791785247067752,0.0009595351148057355,3.579266601770101e-05,0.01108455354941156,-0.020343563034731765,0.0176595620965852,0.035243613263834184,0.0008883658910018344,0.019886684876136436,-0.07507349774786015,0.15254128060807237,0.15942229216797615,0.00017209218506915747,0.02257403885360115,-0.01753780878611263,0.012586000891950059,0.008509936004597218,0.0006811016474189377,0.01563642583419078,0.0032316758169359874,0.03849524147939235,0.002194828219327877,2.5017478170646746e-05,0.002058255275245462,-0.00402385083980635,0.0118925843172634,-0.07753559935683332,0.00010051171241908689,0.0010234791739985722,-0.017073752530828618,0.08284415654775609,0.0416950612141138,5.801348029554669e-05,0.011880231943547839,0.005130847427387621,0.004768660464695926,-0.03571006621499769,0.002098532366678608,0.00845954915405016,0.0166139350454022,0.11003272389075895,-0.011386063637714973,0.00012425181797929316,0.002287729276745647,0.027604101941765085,0.1316526011534603,-0.031034732471039966,0.00032467766226826773,0.015400370878855426,-0.004089791018186339,0.022408240842623103,0.002359519367781098,5.141079375527933e-05,0.030359871091862622,0.019937688576453227,0.11159326180515362,-0.013884643956688794,0.0002944581936708017,0.006063891777262231,-0.03827031256832072,0.489391813230348,0.010371635492785646,3.245155713548236e-05,0.013081673338279915,-0.0036864042445442875,0.04062570221603882,0.0014239368144022986,3.0316829806092243e-05,0.004274453840994005,0.019120317631107785,0.050441612374786705,0.006732785136886734,0.0001221037207507799,0.008196043747774957,-0.008579016479686709,0.06389381983007296,0.001378009298406684,3.1014945716498885e-05,0.001126742414063158,-0.0032191541843652753,0.010306915111048006,-0.03364546727047046,6.924532552810536e-05,0.011972891249527759,0.00962186271218944,0.04499806822053778,0.0006116621052358338,9.777186102248959e-05,0.0016093074875167797,-0.02870948469718617,0.02716292659861246,-0.0429404189541063,0.0006041216484914706,0.008678076815419574,-0.023088088652282894,0.09900314589331516,0.028515870891990168,9.815784058070808e-05,0.00947157342710789,-0.05661802118251573,0.23725895651410853,0.02419901886893082,0.0015316207635102368,0.018184681045156068,-0.024431549618576767,0.22333136733867448,0.023464405286942887,2.813089075830453e-05,0.021000896968129415,-0.005940720884174994,0.020073627319955562,-0.006817777447763223,0.0009675748271251865,0.0042940590666484205,0.024814861154672116,0.21902647175079026,0.02739813547321328,7.544681063061187e-05,0.005820190775774825,0.010340615259841496,0.016168752369356866,-0.07663306192144424,0.00015094379208086244,0.006097162289599233,-0.01609309881458985,0.020342416415215885,-0.03710857235084832,0.00045408907320016,0.00012439063984170007,-0.015530717818516768,0.06747670608548857,-0.01480295669574024,0.0017839718452491542,0.002450214811091012,-0.025014280034282105,0.10807887250500184,0.022650693206690064,7.425702954657105e-05,0.004655409274945779,-0.007888115825796982,0.010862193014620058,-0.01479285229371082,0.0018052317164153448,0.006951357307975427,-0.01286070844905091,0.04665368354538776,0.017127663206388095,0.00010921819383678259,0.013167379240495625,0.03510460824624563,0.09874516589492224,0.033429694528487576,0.00014411482647700967,0.00943954209757661,-0.01211057873458816,0.04964688276644011,-0.07837749616126556,5.953698493369081e-05,0.003648868424938547,-0.0069209453888448135,0.025469512307216165,0.00313557841369411,0.0025755076914443556,0.026559757705580153,0.004772638616892199,0.023951629400973024,0.000457426513500558,9.912063105855213e-05,0.004960017756038349,0.009565331453132013,0.0620515856506809,0.0040804588243151755,0.00011179127879962109,0.0037708471693822577,0.0015228773071882015,0.00911009047315167,-0.01619921618252993,7.906621041841352e-05,0.0004238738526418048,-0.03502098889611012,0.1651133802509295,0.03886411544552527,5.330814024351366e-05,0.016269745313504908,0.016122633490780455,0.026279486338396326,-0.003019430995880512,0.0002991221015064632,0.029654645756930356,0.008462636325234491,0.03989440027938947,-0.04247934537105955,5.274825692531985e-05,0.0023650967539186915,-0.01954091096804263,0.2267023539988921,-0.013271429368343218,2.223924615048922e-05,0.015373700582101205,-0.008968175485016577,0.028757739737124498,-0.054015095203270705,0.00010900798537679596,0.0030468459165822956,0.021897586773028704,0.07321637423794707,0.02156683372257591,0.0004714286894664162,0.007352471877819454,0.05512723807771822,0.23942834893515938,0.06212426592636945,0.00013187499609509655,0.017609950601151426,-0.004630952456662036 +2023-08-21,-0.004674874383196477,0.03493971385570807,-0.13368714789946212,0.00014149372678994693,0.010297239588739746,-0.011931734613183682,0.044382103309836614,-0.034602785672463554,6.450690894011386e-05,0.011528046559790893,-0.03013390048601054,0.1020587648768379,-0.14544154037945725,0.00013658476068792802,0.016781565751624917,-0.011742774076499558,0.014546071903440282,-0.03273861338177578,0.0002724537762668604,0.0027135996361644195,-0.0012223056552808616,0.002511422440716964,-0.0008201367667440406,0.0002546582925577023,0.012466341386568039,-0.016069080570091158,0.04456746613001179,0.05906595501204438,7.872629713336512e-05,0.01999359667831777,0.02779007525163454,0.10344411183450036,0.005424288455843881,7.882678298669671e-05,0.0066833998617236365,0.004969133313473713,0.048282685071780816,-0.008178866571914871,3.5292940903543447e-05,0.005409796686516303,0.013394841229091358,0.010036336259787913,-0.029198194848416785,0.0010292174792846274,0.005971398102432346,-0.005895501212891545,0.015637166105979736,-0.00014512862812872689,0.00013183313202637647,0.021000763315719526,-0.0058730438633305005,0.004410748213781975,-0.0036209658907931006,0.0006508416475001213,0.007583120589849198,-0.005908121220223802,0.07442952935284024,0.012382086441017567,2.3655215782601022e-05,0.00014910362487303942,-0.020762028539492446,0.05183344164791459,0.005267966427653999,0.00011899008516857277,0.0192610840102687,-0.011202061427044952,0.06805763500835274,0.003733981566720962,4.633219919038209e-05,7.14879399077902e-05,-0.01590646519548557,0.013499277983565854,-0.09405520241436052,0.002298190957224776,0.006208522680536435,0.08436845984538696,0.5428502906120384,0.18180559666144497,0.00012789458416604746,0.009416699055789677,-0.06911625085344063,0.3849069754362298,0.0852246015719782,0.000278056225125319,0.0029927808916745766,-0.04852398071899906,0.28375319743332017,-0.02372551469261811,4.8169996356620905e-05,0.022734036295793243,0.05495418617720395,0.3064642142616116,0.0758251437196164,0.00029553424966163394,0.006749375311635428,0.12416290406472391,1.872627958135375,0.22783110981148486,2.7515067971990937e-05,0.002475132316130692,0.01980953456513894,0.20685749418099325,-0.0049044245946940354,3.1995192047835054e-05,0.0050391452508714435,-0.04881145833949583,0.13760680402568834,0.009034018586281103,0.00011426273911033957,0.0021510072138548855,0.02768992889527979,0.21215152174663027,-0.014767997734884719,3.0148663559227164e-05,0.017416864135442862,-0.012103473547935948,0.037578211867129535,0.0005165791580689443,7.140872799056913e-05,0.0032292998510006178,-0.009226248812923549,0.029295328112449608,0.012814137636593602,0.00014400427715620742,0.0025384637049477047,0.06288071862309182,0.0601075217403763,0.06450703204660327,0.0005979491261375964,0.005904824849227434,-0.0031657966819626433,0.011103707149281513,-0.171523543049233,0.00012000546650398538,0.002472996810160842,-0.003454471336804043,0.010774389101142175,-0.04220541497049943,0.002057823454145487,0.01675941740064179,0.031658975529254535,0.28597646866842985,-0.030999013477671304,2.84674622499001e-05,0.007503024095465351,0.0117040701746739,0.03973858024445318,-0.015615471561391646,0.0009629324891780801,0.009179647123945625,-0.02815628776046767,0.19539463108826957,-0.00302062138250845,9.595959625211477e-05,0.018478177466216255,-0.008087646767597347,0.011832213102152237,0.0069334806583262075,0.00016132496456198371,0.007825479659017181,-0.002995714938683227,0.005021916415100109,-0.03281219042010881,0.00034240091682818995,0.0020104836005779875,-0.011869326851371037,0.05273101495067748,-0.0033582336815459516,0.0017446579748943087,0.0027177192188882968,0.004576909682597427,0.01985070688421806,-0.026806460587048088,7.39753002010132e-05,0.01183916974873984,-0.05478245493649575,0.08383005929081684,-0.00610075094927718,0.0016244969812184472,0.032620406441088254,-0.03813193761583861,0.12233351522356403,0.105587976226264,0.00012349786653603395,0.01730959023604019,0.04322454521626262,0.11658693531133571,0.004189773034762283,0.00015029375057816645,0.011276395063852309,-0.0021414181425367124,0.008464913108776903,-0.0011046912122279673,6.174373515049684e-05,0.017362930921491715,0.014859068447337951,0.04678267863878933,-0.11342044713816615,0.003010402435002309,0.003310156882994118,0.031449249571694496,0.1551912897426374,0.044663204767497716,0.00010080533454040002,0.0027833870742342806,0.031126783138979704,0.1488515531483873,0.004203725992257775,0.0001516497343301966,0.006224371332163987,0.006986600447359175,0.03887655208909253,-0.044484887167673,8.500155391505633e-05,0.008639432694694194,0.037091731558366724,0.18117684939428258,0.020223223410143633,5.14543148660435e-05,0.016775310377498208,-0.008484679285367646,0.01595257404707449,-0.004483644674119779,0.000259318831424919,0.005232188602268314,0.012280815545700135,0.05308762846436626,0.01749270865716009,5.752389162365792e-05,0.0021105714321741974,-0.006014613894052633,0.06487996429647656,-0.0006445740241778924,2.3918196882105478e-05,0.009801005326332568,0.0003661211554348192,0.0011395246480479576,-0.0994668544877033,0.00011230783760970865,0.004280953016671423,0.0030964228989445878,0.01223431505376938,-0.01720979130078894,0.0003989409167631763,0.0005343285329914044,-0.0019852943426517874,0.009649748381116619,-1.2048468375428752e-05,0.00011783673803053064,0.02482339930333248,0.0032444125989673873 +2023-08-22,-0.03311397356207357,0.21208142886453699,0.039541138023379614,0.00016511831227174293,0.0008968634737739364,-0.027406001941004638,0.09768091565894228,-0.001290193351305526,6.732036914259555e-05,0.008764183992881036,-0.03832675470817561,0.10300625949264584,0.037298113096983596,0.00017212170322241459,0.009002488197908444,-0.02816901281790504,0.027041282481882936,0.04118515449282162,0.00035157031553850217,0.004925176228648645,-0.018732447340467903,0.03648090083036873,0.009026498071188244,0.0002686746790779594,0.00013278649019548037,-0.004923541492631722,0.012057160472783211,-0.046766115050173876,8.916189721087212e-05,0.005441228746626485,0.03940959749341978,0.16014060812877837,0.018717682811945066,7.220884211935286e-05,0.0026410508918296174,0.0027720000563238286,0.02419946699580198,-0.07025816848175392,3.928131777614334e-05,0.0011288236040652776,0.018418488400829956,0.016398403167976736,-0.06351938736688843,0.0008661581812838151,0.011536689233257553,-0.04900660005825104,0.10970713883886164,-0.027289370461019948,0.0001562001947413352,0.016182403993475446,0.011476929162665643,0.008460776205318097,0.0076181259367835335,0.0006630401866087956,0.0056410617455597,-0.0035932477064060486,0.04973802954401399,0.00185455328144768,2.1528876700861604e-05,0.0006430147189885852,-0.03964362014275,0.12837976382254024,0.016382246473978873,9.173345939044833e-05,0.007119562342824839,-0.003204838554051447,0.014728117743138083,-0.02247229820818147,6.125206396787282e-05,0.007051647579593926,0.011387323020101104,0.009353335332772732,-0.0037550803101228823,0.002374532445081963,0.013045858524709896,0.01766448195563538,0.11225084401817782,-0.001623303525895313,0.00012949810046958423,0.03642877517763653,-0.00950746908837271,0.06807413469519263,-0.08097538822406097,0.00021626738268522782,0.011002320235861462,0.05200534054687454,0.33893016485096294,0.0043292841975562605,4.32213848321022e-05,0.0021368212745193635,-0.005577803549428769,0.0319221701624638,0.006795916817877899,0.00028797687424267127,0.005631127333340454,0.01461368073932308,0.16171992701324656,-0.003030285928133591,3.7499571902344744e-05,0.003303031777781179,-0.012425665097844993,0.11945030894883225,0.009455695729486454,3.4754742556665414e-05,0.008821529623799791,-0.01587122983296273,0.04831966265787467,-0.031764717937037217,0.00010580579213171877,0.012976073104885088,0.043950716787786594,0.28675406755831506,0.03096971468517879,3.540370810277672e-05,0.010174869396688796,-0.0018359199778871247,0.0044190693733805195,-0.0051894710947585805,9.210862741293326e-05,0.0012922621255952527,0.0024668828018389473,0.0098670229060529,-0.011101865365963465,0.00011431704149240696,0.004370199512059631,0.008154241023807084,0.00784506769508921,-0.08789431270606084,0.0005941039093366727,0.010886793996727252,-0.05659147311977683,0.2731959301222808,0.15654399580914719,8.718921808711868e-05,0.01708089725430629,0.012355448081822838,0.035033561509427054,-0.027681149979282223,0.002263567161921563,0.010833213274517198,-0.03906625876496474,0.3468823051087486,0.07803400999787145,2.8960220964142407e-05,0.009464297683159277,-0.04103303106247393,0.11117363420904544,-0.06645760560168071,0.001206710428605602,0.004392260973132971,0.0061503732561212,0.045410280774292856,-0.0063688183057761475,9.019302005998386e-05,0.0023381790715552393,-0.000406689685236386,0.0005672618430355278,-0.03919524879119631,0.00016920958965442636,0.01230640094087522,-0.006183682936440289,0.010974100204982882,-0.02189694323731083,0.0003234314186873764,0.014706249247293643,-0.01754869822232064,0.06662174741932436,0.0027605462666376386,0.002041640288438095,0.015691693500799936,0.015727511431435512,0.0626216634122027,0.0156940891111212,8.057972490224721e-05,0.003883231639473468,0.06883552731389513,0.09146571632517295,0.03300872702885902,0.0018708178092296816,0.0031098006551052437,-0.06481232219933998,0.24905198282123414,0.18114300015331603,0.00010310592317621,0.011657917285961815,0.03574149477728348,0.08832267969338888,0.004057806073763556,0.00016404418894449828,0.008053037229497092,0.003129682035146234,0.014918909007535622,-0.003171048642269161,5.12008389158725e-05,0.010448977901199166,-0.08040916247650864,0.277512874542484,0.13558432966115166,0.0027462524704350414,0.015823426138894186,0.010546484824860605,0.05855737219470204,-0.08409530430318805,8.959148260975175e-05,0.013637610502413845,-0.009862235165015968,0.05456255131964919,-0.012296216499770694,0.00013108152005706448,0.008292653126633302,0.005350842949597418,0.029123770415679668,-0.0010637746045806073,8.69007059007262e-05,0.01384131251599094,-0.0110130021261084,0.05322340121267366,0.0035908758940471283,5.20056457692471e-05,0.020206394358531683,-0.0253509948263567,0.056821794937272685,-1.764957776711407e-06,0.0002175251376874574,0.005169787273597347,0.005484064662600165,0.020625115240683195,-0.018740198895051075,6.611812953486628e-05,0.013172007252229882,-0.021838539314806317,0.22504622841676022,-0.15050189135949127,2.5037048664080572e-05,0.011615815767324077,-0.02149726625580306,0.061750725813170954,0.09221280275862298,0.00012168866688912692,0.004101352831028348,-0.010210948415637832,0.04001400870456301,0.021512800015446375,0.00040223697583897835,0.0010148180567671286,-0.08523184446583881,0.4572788814224404,0.11177003120661505,0.00010675606026199093,0.02532745213465909,-0.008354027125097823 +2023-08-23,-0.011674255156723625,0.0794268485864596,0.0032994504541357167,0.00015543486261830914,0.007591976707611747,-0.042579219612290116,0.1356037921601329,0.06614445870095374,7.534186896433767e-05,0.03319585189558049,-0.017695550298470787,0.0653824610023435,-0.007536111225077421,0.00012519875609520812,0.004645003753336442,-0.022608538876167768,0.02386454065840796,-0.020898975308652885,0.00031973286029124697,0.01358046095779859,0.001223570669122473,0.003249090312607302,-0.0006391789582111258,0.00019704483103442723,0.027975771864841695,0.00164067128131591,0.004152721426340939,-0.0020290594706439975,8.626517691756565e-05,0.004819161414553295,-0.02474932391911832,0.10134376766750432,0.01682186674841425,7.165659194780293e-05,0.02468530830669346,0.01386587161175615,0.12969723300961675,-0.09379536194983996,3.6661909267111515e-05,0.011109629265497032,-0.013029555825412683,0.012348759612915093,0.013418446589430783,0.0008136751657847747,0.009126704694746624,0.00038470377722524864,0.0008499858183610354,0.0036719141249172828,0.0001582620026839916,0.001333936171118353,0.0027362109335290646,0.0021155168775523077,-0.23487032568526378,0.0006322042888087942,0.008532645738813334,-0.017636877279311746,0.2605719006665613,0.11199000535399199,2.0170511039384216e-05,0.004854043935598174,0.022232229174124044,0.060153269143704516,0.012482665330683767,0.00010979304085391427,0.021450750686814044,-0.029355371550347883,0.1444373899740729,0.10730096154542829,5.72097128501843e-05,0.0027781994496264262,-0.031896832205150466,0.0332396333536622,0.044087093337616186,0.0018716054520990675,0.017689033181752356,-0.01546553709004329,0.11131604723176189,0.008446556576116846,0.0001143297722188865,0.009050514529554837,0.0009741150809537466,0.005722771909754551,-0.06294765755871569,0.00026357976241408196,0.006595767443010384,0.003720866154130931,0.02435874964408355,-0.025307451183712117,4.3027886282619465e-05,0.014823311027891342,0.011083414687834851,0.05867406892911048,-0.0023174857609259566,0.00031132513384182797,0.028430220136906485,-0.0021959261762372916,0.028168848386285358,-0.04534163769286799,3.235034187925516e-05,0.024977529318384085,0.01692377773628926,0.19448481571499787,0.04564752615073335,2.9073232567178898e-05,0.012526653005228363,0.052787570850609825,0.13485874465074574,0.062036863790450154,0.00012608845420316968,0.025133633816232574,-0.06511495080803399,0.5170355249195777,0.008626041992510212,2.909060201864385e-05,0.00938559104066764,-0.0013188583600586762,0.004154925065814165,-0.007906000834713458,7.037401726943634e-05,0.0062594023084982095,0.0027095559021690766,0.01168837164406144,-0.00413296340969669,0.00010599678655263687,0.002951182897117985,-0.00013693200987197152,0.00013665462270431755,0.0013817079205693521,0.0005727382875604821,0.01792725519058075,0.020563401497851626,0.08829734462202155,0.02950877443787134,9.802420325962088e-05,0.024559093510725476,0.026801868728417652,0.08025880533821257,0.002506151140845608,0.002143342420636461,0.02831606387017662,-0.04155360565287395,0.4194750082208493,0.0683442952359623,2.5473276989653394e-05,0.004169467822806798,0.046046118019169864,0.15036797042496736,0.020891292835333218,0.0010011725971636088,0.020591078139948562,0.017094771405974468,0.13266685268252415,-0.006383356008101041,8.580775007064337e-05,0.008636717751007812,-0.01403256275987887,0.020723000662682064,0.011569495085177158,0.00015981948933563214,0.006657724354890547,-0.022817013448059333,0.025236945374342963,0.005020395671909071,0.0005189504877788322,0.016458945557667644,-0.015278599645352211,0.06257185264611222,-0.01147703868064318,0.0018925827536870133,0.019355838763421174,-0.025824108626066294,0.09990846583011498,0.002652858822743444,8.293033508157037e-05,0.010248429488661859,0.06083367539985282,0.08931356377565791,0.028178611684260557,0.001693182725757011,0.004059434745748275,0.03169816097267814,0.10440852772045768,0.020786760376625135,0.00012028573639222348,0.012071218352563258,0.019575769230932197,0.053554443072090084,-0.06582431563149581,0.00014817799207621782,0.010531121957529827,0.02551169963295648,0.09503889823316931,0.005651201470891041,6.551668652409917e-05,0.024088459201033672,0.031567874357861,0.0851576412304007,0.001184232527342168,0.00351349851141665,0.012654389359635476,-0.021921468525257354,0.11997690230369475,0.028159653967369472,9.088926059450067e-05,0.0033298263071614626,0.0006006386398730378,0.003051515412570766,-0.0902443526832826,0.00014274420430423202,0.007974795314924265,-0.02232043002748833,0.1338682377783179,0.06020354415368422,7.88630755231052e-05,0.00011873214950479724,-0.02621648045115889,0.1341017987285346,-0.0946694612344942,4.9134572208219725e-05,0.00880803775994549,-0.047365845914246946,0.0777982476007519,0.01638761647839792,0.00029684167755252597,0.02810807491069572,0.012565092700311956,0.04250476310946128,0.022997114613647653,7.350933142217348e-05,0.0026736475312405554,0.009692985322670229,0.08405519767190328,-0.08291613520464089,2.975255500495209e-05,0.008316736610580846,0.009419762390522862,0.031814183978965876,-0.02325348937103722,0.00010349708650247226,0.00471642759942057,-0.02630262872454045,0.09847974416563436,0.10750039893311224,0.00042099817570115746,0.006887936938663661,-0.009960768327230349,0.05206264476308228,-0.00340087590855883,0.00010958179467845666,0.04162057092934726,-0.0022928562459772137 +2023-08-24,0.021479918996998117,0.1675884853884113,0.013706665530834198,0.0001355423612830624,0.0009768331052901122,-0.04501890956185709,0.1340577732929073,0.003063180238266685,8.057744576759421e-05,0.008704093904828129,0.0032404305054349507,0.010979160119667392,0.0008020120491614768,0.00013653085112759348,0.00804183064247035,0.012089579776278371,0.01347178716081491,0.02886756815856643,0.0003028683202301275,0.011102690479155516,0.003191589112301733,0.00676393071269157,-0.12849584005330225,0.0002468911922839711,0.03205803165828918,0.011773658959658661,0.033179667079465104,0.002452045937275347,7.747938547725668e-05,0.005899395997170089,-0.04527163395557544,0.1583968155113916,-0.001331285414399333,8.386284250264055e-05,0.01302245503860489,0.003934691206132243,0.02724354573829194,-0.055425890510206494,4.952741245270488e-05,0.0011849967585792966,-0.020260358523901525,0.017065718646525174,0.02976403770816584,0.0009155189363272786,0.006994850863029046,0.05788753430805151,0.1374069805082857,0.11903289982754076,0.0001473120053578079,0.009349658482096295,-0.0002682662874176815,0.00021093176948764524,-0.0037989008327814345,0.0006216536119627354,7.838784080354752e-05,-0.028128926340059677,0.4020097454859029,0.16868107395367565,2.0851598976594548e-05,0.018625676795018975,-0.0028767459555773577,0.007818693728549235,-0.011110202531261826,0.00010929954338874586,0.01693683498072675,0.002520965184627387,0.015359008051364894,-0.00821066828343316,4.620250239750106e-05,0.0006163923419819839,-0.0011944186186340704,0.0009208437228156683,-0.010098446318534468,0.002529843204636155,0.0007252084951711629,-0.03959784292788352,0.2151651891688857,0.049469838536177764,0.00015144384476272493,6.095048617506672e-05,-0.01290449621558987,0.0683364860058788,0.008083054105697238,0.00029241297798655185,0.0017766596779160806,0.015803716457706122,0.08628287844165215,-0.00585628740135022,5.159356767653056e-05,0.020146139487856502,0.033021157724068814,0.16616576599745034,-0.01103444853517857,0.0003275197917016655,0.0004315690834369463,0.012667316710012476,0.15076926714351857,0.0009063100198468581,3.486599282222123e-05,0.03312239538031449,0.01390660983509081,0.15854121515542524,0.024797998850128046,2.9306286888125815e-05,0.005601538438832588,0.011714775382895856,0.03306342207067542,-0.011025819845602771,0.00011413239232943787,0.0062580012934052975,-0.0022482876612345583,0.020176729110094663,-0.03914538138165256,2.573910786434442e-05,0.0045721049683107836,0.008093397438022462,0.02655546921995702,-0.026784353157976504,6.757005467235333e-05,0.008685658755557144,-0.00626899856198072,0.018029116913839842,-0.01626755435553834,0.00015899091575842075,0.005547140229099089,0.007789878989404339,0.007468266096144447,0.0028053228560568624,0.0005961924734807181,0.01776133791949762,0.008500748580752386,0.034741849545871645,0.003972588451353889,0.00010298885872088063,0.011718373218432098,0.05357114761474264,0.1981585801466868,-0.005880219608009804,0.0017351508725365159,0.02210836829608081,-0.04426978885576158,0.42311509371028183,0.054444621562949776,2.690488423897363e-05,0.008365841651180496,0.0461432641126048,0.1656137219915772,0.0166610947243146,0.0009109263498997708,0.005355494222133075,0.014616069744384076,0.10838749673618418,-0.06299255940153012,8.980015034792216e-05,0.012412762948301423,0.0028730277121301576,0.003752875560560915,-0.03125927352098067,0.000180684557807148,0.019606353450242933,-0.0001248106412460405,0.00018920471069063037,0.0030670653125733803,0.0003786374645542856,0.001291219438060166,-0.030329020872298346,0.11207459224972995,0.00956219926461273,0.0020974980398912753,0.0007158988529065487,-0.03553142747854266,0.1305926784849551,-0.0196769875897003,8.729396027510629e-05,0.007844944175943192,0.09917112244858464,0.15122498547014368,0.05902575547307721,0.001630192418675881,0.0224867283850667,-0.006736712860673788,0.022512796505434605,-0.00048818112577212147,0.00011855902729850177,0.017141173421758055,-0.03572583635083244,0.09716871278606913,0.07169430497430483,0.00014904462924259337,0.013719942496654605,0.009921217428288328,0.03900331018279422,-0.09060236927092277,6.208367627542715e-05,0.012141345637699384,-0.015030660696178021,0.04873051441447959,-0.08736597496069638,0.002923446382730186,0.006992930589409147,0.03876763057140967,0.20068317389940002,0.06685913498138267,9.609457448205342e-05,0.0010636436999200427,-0.0020010536478435453,0.013358576915310904,-0.0006266437556688183,0.00010863238667525781,0.008329702649025314,0.027254311178217982,0.15049764377775898,0.04584101952738468,8.56552936599872e-05,0.003038373122383507,0.04850838742091476,0.23783436413020084,0.018898455336099632,5.12613013645241e-05,0.021019149660581323,0.05355783842855172,0.13552586297014313,0.04330505970332642,0.00019267716760462548,0.03417277447484648,0.027878060297393373,0.09982593729146894,0.04523315444921214,6.944380875474364e-05,0.0034625753631908757,-0.008120486409295904,0.08800774334359367,-0.016194037301339316,2.3806329711132944e-05,0.004293874789025225,-0.00035298799629462495,0.001257929502062503,-0.03204760598680255,9.808725907114225e-05,0.010376224964309547,-0.013363997994311344,0.05192755489630723,0.0050067396758762765,0.0004056640285134672,0.004573777795386492,-0.0410350075458778,0.18773500652290176,0.016996432468473953,0.00012519328970113903,0.01642157904124429,0.0041900436097514785 +2023-08-25,-0.031407900498638494,0.2198255819918115,0.04502357503838674,0.00015109401391535503,0.018793698532688995,-0.010662011156464155,0.04030820239092301,-0.00397191181274496,6.346820687909421e-05,0.02127688560386405,-0.0228975742735266,0.07566602480196852,0.005338716389460793,0.00013998637340017687,0.014340794753501536,-0.02526388408391355,0.027186498226227342,0.001051223880094788,0.00031362791055812036,0.007234599907140834,0.0176202520762215,0.04225270162156422,0.010924036902953602,0.00021820033180787473,0.005142750947595609,0.016549999783276377,0.04774696822511638,0.03138318444816091,7.568310333535651e-05,0.0038250223997935116,-0.038961934780961265,0.13568130116202515,0.017394388950301556,8.42578494986862e-05,0.007842273617616411,-0.008467322080790787,0.07554522093272369,-0.04170791944017061,3.843595698473479e-05,0.019836381438565098,-0.015342680595859465,0.012221741833789294,0.01394186343779015,0.0009680837382558486,0.0012300310857380008,0.025449322329475763,0.05458679204429432,-0.012763539429347657,0.00016302362138840434,0.024683144959753604,-0.031211284595669693,0.021623564389419217,0.046695393233158904,0.0007055190067124588,0.01582528478368788,0.02425860314262335,0.28201054531335223,0.04757299460942275,2.563440437017536e-05,0.008597039570871875,0.07569743139051122,0.15674065824748562,0.12248498087474863,0.00014346650368884538,0.0175612135165437,0.0007355243068981637,0.003917753861293571,-0.0810817755939054,5.2847165733778356e-05,0.00022974554764904471,-0.0011120536376430503,0.0009590990590233593,-0.00037878764335875213,0.0022614409013365084,0.018813539583544647,0.009033007131966447,0.05542386323808925,-0.0069495530382363765,0.00013411818468703803,0.03198126940539528,0.04151222956727107,0.2398371420435281,0.018066336114977533,0.00026802039995467734,0.011904761261549693,-0.023213005689396517,0.1327099164116481,0.019254105587032087,4.927072561350168e-05,0.024044386772212566,-0.04623737946048648,0.19903852697080676,0.06603986750703307,0.00038286253508594087,0.01922445743704347,0.034442594833076476,0.4990680225962618,0.010809962681574845,2.8639560592634286e-05,0.017062923851763074,0.013717460922578063,0.13624295726990374,0.020732958744823535,3.3638868485948914e-05,0.006346214722280957,-0.017421209473931838,0.05573775936513369,-0.021845010100884514,0.00010068193469379457,0.010080419952068204,-0.018520586231123168,0.12774528034660054,-0.0067058296528568545,3.348900479267841e-05,0.008763011299699525,0.00022917486928964416,0.0005628244976924931,-0.006283196265127209,9.027580758348247e-05,0.013410608205997827,0.005754631583078614,0.024994659676182068,0.0012431247074018443,0.00010527345894638063,0.0057853009602253855,0.007120664844241992,0.0072823510499474475,-0.05617844438922227,0.000558887627878603,0.06033225978990027,-0.023148901361418298,0.08031269742302045,0.014415409207024539,0.00012131993832822184,0.004564572564528663,0.0038213414900919182,0.011984327893268908,-0.0007802623483836408,0.002046545202693755,0.014219677525943058,-0.03984004218649388,0.38203762752315656,0.03555096250290632,2.6816114141370098e-05,0.004862378698311309,-0.04540659747269842,0.1284998007998407,0.026781732580803956,0.0011552813826995459,0.028461586481989574,0.014780182330305196,0.10091079033429105,0.004760285816074487,9.753664821586538e-05,0.02193976292627514,0.02687563921179328,0.03849670705253671,-0.20919888673334144,0.00016477093509303418,0.023698724562302192,0.0024219543187928294,0.004041230124139128,-0.014726940217885778,0.0003439982868069802,0.020705970554676746,0.012902146111230492,0.05093400052957972,-0.01903468222069085,0.001963380658824236,0.0007768836115595533,-0.0380120714565293,0.1502088006686233,0.004985642465125475,8.1192614954453e-05,0.014667080469729,-0.03445592186890042,0.040235464516681724,0.0003592097167858509,0.002128786199786567,0.005091422136037995,-0.020563355898195045,0.0719417630164341,0.01976372114183123,0.00011324758568347876,0.007965742348869851,-0.03825698303886689,0.09691138165539386,0.06502096556587131,0.00016002812220663798,0.00022432679952927206,-0.018186497415798135,0.07232714861734921,0.007304344973331165,6.137078044534208e-05,0.01892144760729677,0.040917019398324414,0.11917361243139357,-0.06959521874745901,0.003254182789794923,0.028347961812707247,0.006843595440047137,0.037026373236626095,-0.039641464927002414,9.194195293227224e-05,0.003201368794137804,0.004397827315986082,0.0244364774515448,-0.0027601307310890057,0.00013051497810670986,0.002198478135943909,-0.002852306219924674,0.015227105773239472,-0.04125770652702084,8.859872725873138e-05,0.00995988978662058,0.023675996305548154,0.1256895306265458,-0.08799312943350426,4.73430849705043e-05,0.01393404795350282,-0.03079073142250438,0.058094089619371236,-0.00020716488095503984,0.00025841483938395177,0.033079804844465883,0.019347568000368198,0.07192945196643392,0.03358691829264173,6.688581236996085e-05,0.0046218515010139904,-0.03686333821665656,0.3583218769473322,0.07371595742290206,2.6543159818247672e-05,0.012101017980614795,0.007854451560502565,0.024847543833604997,0.004881575233648272,0.0001104946790638266,0.007484631975906366,0.03500780873509897,0.1192402704389122,0.08319473893527798,0.0004627750603544369,0.004878086984396802,-0.005137012884715629,0.02932287148899762,-0.0034342345016645133,0.00010034042911289221,0.002690664978647638,-0.002781652642397224 +2023-08-28,-0.004099894805989277,0.024572327703507976,-0.00502876817493906,0.00017644648013606033,0.013298468177635204,-0.002411728395816183,0.008551514557429104,0.0004467244346689278,6.766995443130361e-05,0.005410626065862282,-0.01031732441678827,0.034773617840201734,-0.04720121632167736,0.0001372506513695067,0.0022631867452748903,0.005762030237528333,0.0054514173905623985,0.014477553509370454,0.0003567253346380484,0.0026501318492814126,-0.01544309405770754,0.025995627704294907,0.012437122106525915,0.00031083633544122795,0.0024120721713504455,-0.0075772630948389595,0.020865623306145463,0.00860092284531906,7.929170272634891e-05,0.001863554409440684,-0.021428545672332162,0.08629817602330662,-0.024177258239941293,7.285861907144032e-05,0.0143892302530892,0.011950459584339905,0.09922867309116729,-0.0013548178748221372,4.129961832082282e-05,0.0011142629376747822,0.003054608930320114,0.002749806111962834,-0.004171165722422082,0.0008566399631113749,0.011627357367319681,-0.033574824707738926,0.07845252149397068,0.0177597702529863,0.00014964724771108606,0.0075644849546965195,-0.00018891968489983827,0.0001577115861124324,-0.011427826729208735,0.0005855149269312353,0.008602911325758458,-0.0054944271892281155,0.07123713356731316,0.007463636681107629,2.2984696630529042e-05,0.012240941499328669,0.03393292238319451,0.09918297528548148,-0.00162614918872879,0.00010163309927750818,0.012447204777817656,-0.0037047479807389033,0.022448736875796578,-0.025199948667594393,4.645458436778418e-05,0.0016832676716770306,-0.027197639775061525,0.022826451148476007,0.024090979774238342,0.0023238912108541005,0.00030963349556783885,0.07978892600336614,0.5235195444387093,0.07217917724387848,0.00012541856498021073,0.030296576261219246,0.05921415493494361,0.29396723810519254,-0.010502798531165591,0.0003119139765695555,0.007776425680671531,-0.02448597723788961,0.13628423331641534,-0.055221092512895885,5.060958569874866e-05,0.025321411058004676,-0.0643458037902422,0.34826331492679147,0.1489726978199456,0.0003045084216877465,0.025651349430312425,0.0624005551979526,0.813989158203152,0.01783010163217405,3.1812665908871555e-05,0.00806955301652136,0.010018139572450265,0.11128706458945516,-0.008950534204463102,3.0076278651695988e-05,0.012080944123487715,-0.028934029967306957,0.0808550586509778,0.007803290445995304,0.00011527217462503126,0.010181560189231229,0.046982638815071295,0.3497948296088344,0.030552994259658354,3.1025329024426975e-05,0.018105259169839356,0.001591416809435635,0.0044359794612155385,-0.0012789593015544453,7.953747443175775e-05,0.0010302438064204262,-0.00885654174815253,0.03736520964471025,0.022125567666322975,0.00010837905164726073,0.005268191845662564,0.010033331237690893,0.010335868243898963,-0.000962143683523584,0.0005548476449537554,0.0021517288573670553,0.020701033915945525,0.06896262526049808,0.022563617506142608,0.0001263468038406564,0.023178695614003923,0.00881906670328738,0.03197043009416923,-0.036937408470111475,0.001770489368719366,0.009826534647561534,0.010331183826411777,0.09101204540994243,-0.0015587050539095713,2.9189953934757525e-05,0.0006155082219737613,0.04123872476215265,0.12716093648396729,-0.015821120468381078,0.001060285394781586,0.017625210495776915,-0.01942475642817253,0.1282697082200446,-0.017059367723759544,0.00010084563807074591,0.006349917576386044,0.0031134018641901092,0.005010022124374693,0.00017838213106977137,0.0001466698756138967,0.00850104775493804,0.03418800587350844,0.04158644806122617,0.06952574774515788,0.0004718737899281364,0.011689414283640233,-0.008203192199591935,0.03347153874031306,-0.02755759260363893,0.0018995798331565427,0.010241985810691107,0.008684735623703338,0.03757646500828123,0.010243005228680893,7.415339703116903e-05,0.01655914796307217,0.0021932634363542873,0.0034811880362952585,0.0011141727203052172,0.0015661757962965753,0.045429275408723345,-0.03496791260412704,0.11599516854112152,0.03069449349334478,0.0001194389135541524,0.024780111284798068,0.04649014167797753,0.10844488477242245,0.04401895628123988,0.00017378495435013696,0.0015511417194201335,0.0006876019585386387,0.002576658519407368,-0.04498228665838535,6.513196249010628e-05,0.0036076431155539416,0.008203424616783384,0.030493018594461487,-0.018794228162259015,0.002549839420172816,0.013827484983357815,-0.01694403839172812,0.08732648127007056,0.019812013382376484,9.65187161386256e-05,0.004676591609876993,0.00834319394685224,0.04407504263753812,-0.008687813207567072,0.00013727782277636957,1.6803022510913836e-05,-0.0289404104944152,0.1806994070148063,0.09235733299770547,7.57524456102501e-05,0.0003183791581921416,-0.07451092761976373,0.3631752724551147,0.1239582522793542,5.156453361452038e-05,0.022995009903708133,-0.044739646813374966,0.10155856498874904,-0.02207335916251975,0.00021478571293993706,0.008620689470199798,0.013839733045889533,0.058279836645904824,-0.014071266666827622,5.905052500607658e-05,0.0007258409736643023,-0.0005394488224014168,0.006021276286811288,-0.005099989961493793,2.311495112795749e-05,0.0053401972371556585,0.03360906161853577,0.10985919488073059,0.1888198777982991,0.00010693723226587211,0.0005551992179582607,0.017783979931759692,0.07398344705460781,-0.006155623223856923,0.0003788980483796362,0.0043878966083442045,-0.02157468707028277,0.09729978830813955,-0.03270077918578294,0.0001270002002726433,0.022939901159181552,0.0014632553407119607 +2023-08-29,-0.018699293920969,0.10881114773905574,0.008774897297237232,0.00018173492692607593,0.01552389578966044,-0.02518054503146976,0.0840010013928065,-0.007716959864348729,7.192687456458764e-05,0.014591818375606056,-0.05616929561838371,0.19604839912124078,0.021140524542342932,0.0001325357017395086,0.01575433622664567,0.0007060025866209725,0.0006886668934746728,0.0038520489279276664,0.0003459911123675069,0.00140547792528325,0.02149020217664261,0.04219720366857219,0.0004035721767393388,0.0002664738530321264,0.008822232533366638,0.014395282399615003,0.04405755817048717,0.0160469278050815,7.134220129997076e-05,0.007324069670435028,-0.0018188648811857872,0.006351324753884677,-0.002229499084434742,8.402837662445877e-05,0.013492010461692431,0.021362813541288574,0.2005118779146522,0.013690819376255338,3.653566024140476e-05,0.001260534915790966,-0.020241049975901624,0.018655597375709196,0.019621940460588874,0.0008366978702791693,0.009828200493481102,-0.011166538372550496,0.027255784163823342,-0.01166339029048606,0.000143258951287473,0.02090825620582094,-0.018484642786008476,0.012639331848675323,-0.028457192528872556,0.0007148440456534588,0.012236751967854159,-0.003070565099090712,0.041008851575750654,0.004719169355474493,2.2313283911344285e-05,0.010639701226591646,0.0024300714156656137,0.006534270082523236,-0.01756475560136577,0.0001104772851740813,0.007381337034216114,9.572310343681661e-05,0.0005880541662039443,-0.00211402288875199,4.5820651254240516e-05,0.013146231369222109,0.014831925385148773,0.010776821001940199,-0.04221440398087386,0.002684292482298751,0.00835516595401062,-0.005886812886625648,0.03854270175186627,0.003189197903090055,0.00012568694935891265,0.012956986841928765,0.006004292285105532,0.03650736809663357,-0.00014103878851761352,0.00025467688684439085,0.023262416631292696,-0.011055873847379931,0.07682015652946415,0.008009826126641485,4.05395424577334e-05,0.03969936157414019,-0.004807671718178279,0.024301924403134428,0.0034594162856761614,0.00032604755439014,0.0078117236246846465,-0.03290753356657958,0.4623465349734472,2.956806128877471e-05,2.9536426943913416e-05,0.009480009286683362,0.016713164891260183,0.1817790997972376,0.02326055995521617,3.0718249154212805e-05,0.00207788552906127,-0.0483510527548903,0.12596705299769353,0.028237287185309625,0.00012364362268435918,0.02123656773747773,-0.05918481223145584,0.3896384222913494,0.05561851541815351,3.508656673727237e-05,0.0015319638647368428,-0.006743093841027345,0.017290623793865596,-0.008525103448867649,8.646212883128056e-05,0.00485226223587836,-0.01198356904427758,0.04135999779205378,0.03166998830693824,0.00013248120545979186,0.006843127749925041,-0.07564043975968741,0.07898472260627992,-0.008419144951383834,0.00054737695488268,0.04133905328577324,-0.004986315677827891,0.018690058279701483,-0.0038450226858972635,0.00011229363055149659,0.008236431909824184,0.09505188225017948,0.3521058492121602,-0.045303056438108925,0.00173263329753633,0.035044665875156304,0.0020540669346038863,0.02040145818754229,-0.002214671529379331,2.589021024948062e-05,0.0010329618198442248,0.057989128397602174,0.1697786105444371,0.029704826683873614,0.001116695782482182,0.009079295646289608,0.03886314140219473,0.2973067711027684,-0.01579542686650002,8.704798966187874e-05,0.0027148871650458485,-0.025007009637111687,0.034991821327540897,0.014563142937566711,0.00016867106985910883,0.018092182173922385,0.04356607332674521,0.07211074047853708,0.08223712546387185,0.0003467786700855539,0.02068872170926381,0.022181855313891257,0.07635785245955641,0.04835228126200586,0.002251616921538929,0.007902229715537138,-0.006280279031087689,0.02246896297148649,-0.002757816415181653,8.967807590129495e-05,0.010732003953685456,0.023726580978168616,0.03793565857890439,-0.0006184519925007515,0.0015547648884033565,0.0035870813277555143,0.03432442903088189,0.09363691464164162,0.010348376636652609,0.00014523532572075512,0.018262850382329603,-0.008732934286809073,0.021650003476237755,-0.007217246826250884,0.00016351688224000194,0.013584152973096113,0.03425295946429157,0.14776367707058302,0.04024377599817939,5.6577575876388185e-05,0.004664457292281536,0.013758587405070808,0.043131090573397396,0.0005956054384297974,0.0030234407739056757,0.04061014503472446,-0.004926830368964971,0.025189206111205686,0.0031203851825162077,9.729571197169315e-05,0.001191535597081956,0.052729612311913136,0.26681228297640497,-0.006526929340547009,0.00014332090562443152,0.015127354920644405,-0.0039795641807129625,0.021523547411516204,-0.04124657105115373,8.745212374610385e-05,0.0045461370295932285,-0.02436159897594798,0.12361008116712766,-0.020545524343882352,4.953353161206136e-05,0.008503090192222743,0.016110627638230863,0.03341594368652807,0.0077976368601885135,0.00023506508337458405,0.040760921568471935,0.02473616412532638,0.09523363178862787,0.04238581465043123,6.458867613734628e-05,0.008345467783309139,0.008207960659799172,0.08815717558775206,0.0036402887146214993,2.402198459087005e-05,0.009002846821957707,0.0040764084330522955,0.01285552086835315,-0.0052634037131607065,0.00011084011768425126,0.009357135983011416,0.011981418812022896,0.0445535116973108,-0.03393825147644314,0.0004238910816706397,0.014655564609127602,0.001088435079700782,0.004726398754328464,-0.013268150673327745,0.00013189974843442258,0.024384734778927383,0.0011659686900640713 +2023-08-30,0.0028709984995063673,0.018388262209597245,-0.016106594329090194,0.00016511208493318234,0.006951783320259352,0.01879044152196944,0.06448903213347953,-0.012933590335198938,6.991359791442041e-05,0.0017072637457343578,-0.011513234631539936,0.03419773874430621,-0.02587000102274122,0.00015573892395175312,0.009426222426758777,-0.00912552458704687,0.009700045473034954,-0.05054231244897509,0.0003175059919365094,0.00905248652194203,-0.026389888710784723,0.05019440878841807,0.01979040032925783,0.00027509328394478795,0.010609569371953016,-0.023981701379717793,0.06516699359742953,0.04208690642322739,8.035243550129597e-05,0.0012197219726204523,-0.05197829623061105,0.1811986613317497,0.019974575218831433,8.416991919390173e-05,0.0017371252053158567,0.03550814898308642,0.36399507951549187,0.060128564067649076,3.345269685293139e-05,0.011228751566775053,0.02163474356436479,0.018721407779548737,0.0007585884386499743,0.0008911648236989306,0.0034727139015995555,-0.024239436496335042,0.07030413821689771,-0.013403110686170451,0.00012056007701294626,0.014393424966567708,-0.029359596303486113,0.02208202267189776,-0.0025870243562993575,0.0006498836134037453,0.022635392618241913,0.0013990269997038397,0.018195320877982105,-0.023994237760095957,2.291338047282589e-05,0.0008431065508474162,0.012000639042447097,0.03442468627645581,-0.14783764894293736,0.00010355842099901061,0.0011065199973393299,-0.0033347711405398352,0.023575533899274397,-0.009163713126581709,3.981679654988528e-05,0.0031544449735124557,0.026669831297745597,0.024762895839124152,-0.015186558555741395,0.002100592498518248,0.0024773803444537263,-0.03608145413064522,0.23858600833016053,0.03434074333796764,0.00012444893041372652,0.02766259940053003,0.005884419477226574,0.030073605718701962,-0.005296049884385016,0.0003029886462134135,0.010121027370996459,-0.007486596135034047,0.04234233634707252,0.003333052244084438,4.980472472385811e-05,0.027715272984696622,-0.049479533725873354,0.29662261637021,0.06452310735825297,0.0002749211453315728,0.005901659443392256,-0.012490627210382094,0.198337642467226,-0.024259897377532105,2.6134207281815024e-05,0.017435413114276488,4.286770961716583e-05,0.00043592977481496115,-0.024242819372450437,3.285454492692905e-05,0.011297667341417251,0.007415174069013191,0.02623524525394095,0.0005585158951055702,9.104560324439883e-05,0.011195325347677306,0.023859230512293935,0.1662266661879741,-0.01625446296371905,3.315492992319967e-05,0.034789442059319324,0.0032406234239658193,0.010990032923083367,-0.0061648685485518545,6.537428555623269e-05,0.01487454658111255,-0.00513284175905247,0.017874660962366902,0.0026117951965031866,0.00013130118876482274,0.0038032467887054453,0.0003430098959626891,0.0003335881569229506,-0.00479927416127536,0.0005877215121024229,0.022785220269882642,0.0063299707645133,0.025148749875797568,-0.16361792717155973,0.00010594276704302051,0.0021150839380182527,0.013410016337419395,0.04036101614658881,-0.06587040998201273,0.002132486988411625,0.006831344410996629,-0.041399105267036246,0.43303988653156944,-0.01730470016545931,2.4583586934947254e-05,0.011615992852661933,-0.0252493693439511,0.07322384698562029,0.013199186133777447,0.0011273772407480614,0.007510382239359832,-0.025648031773524007,0.1806124648621323,0.05840549166564262,9.456533527968196e-05,0.012384971766186087,-0.014501118522687647,0.018784000455940524,-0.06687974544964098,0.00018220437397126042,0.0024638826033198183,-0.035482842684983716,0.04364724343537739,0.039168735638742354,0.0004666223094269396,0.012907888615762643,0.0037983854159284393,0.016781223459737028,-0.024318897039773392,0.0017543884133090113,0.010645348268582702,0.01001937248950105,0.03524977690895891,0.010852876549995628,9.119573340105295e-05,0.004685808813138434,-0.04524692768507721,0.0724566766268082,-0.0014759750028863062,0.0015523436766181119,0.011409105592810515,-0.04580919962541155,0.1608455109415154,0.047489704411807075,0.00011283914733509959,0.0243374202376738,0.01817804323158024,0.045357783725962324,-0.003595928226375304,0.00016246345399229813,0.006702550943266009,-0.006619516558911161,0.022378634392369656,-0.06414509652673062,7.219491623095818e-05,0.003607813469956397,-0.007097020259276855,0.02432518425432588,0.0003225055623921698,0.0027652726887742907,0.009331876776875225,0.006929646486751922,0.03772576424441638,2.3300243464217567e-05,9.137209951554346e-05,0.0077735857740332355,0.030090093589701886,0.16303338870377646,0.047961100415215605,0.00013384673058517262,0.004638172126908142,-0.020285179570572277,0.10740221896827776,0.043354314095756186,8.933349004447774e-05,0.007373071475037113,0.02030617500687836,0.0828460923789188,-0.02186266759134755,6.16032310059812e-05,0.0009638646595497402,0.041525882148435056,0.08247403659759335,0.015039809885785791,0.0002454884196098376,0.030287653951661674,0.03790517199127237,0.1594924689821317,-0.010657889731107706,5.909798403223375e-05,0.0011435419180085625,0.024204059896354407,0.2526656795805944,-0.006266735366608548,2.4715719070262846e-05,0.007880484425288034,0.00412099767160139,0.01412072431917895,-0.030815389442112782,0.0001020127274950007,0.0004779111585688819,-0.0061215729108400506,0.02864575617059848,-0.010489406916395308,0.00033684546634415416,0.007599922011562238,-0.03483419725216631,0.19050873383852604,0.010686449979297175,0.00010472797643171732,0.0317995376533188,-0.005023540840249002 +2023-08-31,-0.008711798411016311,0.06752514856823419,-0.040487478876045147,0.0001364359605866189,0.004636683415717771,-0.0018484642880595178,0.005717103106785355,-0.04395881372228436,7.75792481547257e-05,0.010055025582363698,0.029579210746222558,0.09423542966384137,0.048271656582116663,0.00014520098787855316,0.007633015653628313,0.004262814185026404,0.005013343893307878,0.006825457296797469,0.00028697017479634103,0.0044180404556354805,-0.012076651012552272,0.025132006359088202,0.0036661035429443717,0.0002514300187374108,0.010925050148042,0.01264395603571891,0.03429941103287514,-0.036994793491004055,8.049020884115567e-05,0.0027859362966588634,-0.013411594154752652,0.0513414619057453,-0.0030777917967387803,7.664821182601548e-05,0.004815329890591968,-0.027832819280542886,0.2598908740788366,0.022361081974330906,3.6725251995670483e-05,0.0036178210228817393,-0.008278890340114812,0.006594268590392054,-0.1295323077520927,0.0009681670194680512,0.004232356213667719,0.03636961804973665,0.10182706394039452,0.03583231344459418,0.0001248928007746212,0.013923517013312575,0.015445878270518913,0.011432046954254383,0.009725237685427815,0.0006604089747185142,0.00609337219031694,0.00891099274336445,0.11000914300010062,-0.006486575620333327,2.413904575905075e-05,0.0001257917069443814,-0.00273006136372386,0.007979162863826529,-0.013258223037000208,0.0001016403418511195,0.002298631803273222,-0.015092282702853163,0.07800498351680275,-0.013927454473025304,5.446210216966892e-05,0.009494093558382335,-0.0019430008177530966,0.001781869594444688,-0.001472784006833131,0.0021267676162101015,0.01349632908535202,0.03868033642240373,0.2193127405151764,0.015677946408109336,0.00014513711587024522,0.017852552762955578,0.005002941106285513,0.032387178612900816,-0.014601658461658902,0.00023919963136132945,0.010223036911318779,0.03899058598819358,0.25866559288122554,-0.07207260623219296,4.2460201863443926e-05,0.03449542461081716,0.042712593521008646,0.22899804203839633,-0.03924864024917995,0.0003074050382066651,0.01611572898109658,-0.030193303669325895,0.3766688098505836,0.01760490819254718,3.326451581240139e-05,0.040704175564735844,-0.0011691173294037657,0.01437816377239002,-0.006683130579310282,2.7166668351361424e-05,0.0021744805606220656,0.03166801347593231,0.08085303089937262,0.013491443116270055,0.00012616743449461742,0.00381452570773976,0.015415031439268133,0.10121788173614521,-0.1048502676989694,3.517868057803683e-05,0.015095503256152757,0.005123978167602817,0.01283573201287356,0.002033593930764249,8.85042266768606e-05,0.017016346451959243,-0.011524956645628429,0.0450659813371284,0.010195020570705031,0.00011693353081767122,0.003984220465776678,0.10501805620643039,0.10789628829514275,0.14278579561085322,0.000556330707429712,0.026450300280509445,-3.5116685856424884e-05,0.00013202794935931593,0.0015727406220602993,0.00011195246326152424,0.00446941890004438,-0.021123311127802514,0.07789479959058351,-0.07457548938672483,0.0017404947044741277,0.012143159383196897,-0.0008796850057030531,0.008199047235231294,-0.004046332557920833,2.7589637626783282e-05,0.001763909127543155,-0.030988180441972612,0.10188810801043946,0.018737977992916023,0.0009943604636255352,0.017321626328728214,0.013720742607283338,0.08502898713146811,0.0026129952557792735,0.00010745738180123728,0.01374600812141902,0.029409000192798983,0.04758642783804055,0.051290808319186566,0.00014586212676480673,0.002129093737496734,0.016844408268632562,0.021861088504091467,0.00998782382474411,0.0004422704166278535,0.015537418666903672,-0.01763214070575776,0.07143325329432122,0.002964028939391627,0.0019131761328250825,0.015226559312150657,0.04724874122819097,0.18125313385874534,0.11427401510433856,8.363635338641777e-05,0.00363961589695101,0.020047554575452705,0.024058158937320752,-0.04951618483829533,0.0020714583549046287,0.0038234909946876644,-0.0063009884593049695,0.01984331468386322,-0.06816752220280663,0.00012580864967307948,0.01656485588904509,0.020604034187090055,0.05316195582622889,0.004805291975938433,0.000157112843105903,0.017977714037070158,0.0004914797723391028,0.0020734702726586357,-0.07881211484193162,5.785245060378787e-05,0.008917158757909525,0.12294664375536889,0.43911749634996833,0.22483952263739754,0.002653713256978102,0.013128818295481948,0.03248155017070455,0.15340465432238706,-0.07089813002559134,0.0001053267738398974,0.007110758574387571,-0.022006286001702995,0.105117100463346,0.06199357553631297,0.00015182180990424497,0.011312546637830514,0.045219871792395644,0.27638749371224797,0.11544931241135549,7.73855079715682e-05,0.00635180051846283,-0.02727240468260074,0.13429668877199502,0.003622942294964844,5.103939557086995e-05,0.006331260245385047,-0.032618988059261965,0.05042451449760048,-0.003298123343954676,0.0003153974316542431,0.018714263737360626,0.0013020277518638636,0.005181928429320684,-0.0022774899687370434,6.248031444075033e-05,0.008785800589628343,0.013413895196104328,0.13609918751199745,-0.05763735375069362,2.5429080799671793e-05,0.008627463435004241,0.025403692886828935,0.06603346605874283,0.09595842268271869,0.00013447505314294445,0.003913130737755727,0.027468993357230177,0.14798521333508352,-0.0009772650381902272,0.0002925852257051977,0.0019214846375368308,-0.023243855342916366,0.11305616075999117,-0.054354589595318914,0.00011775672714373142,0.007876123196630598,0.010072878061468147 +2023-09-01,0.03451723857118249,0.22614710229727983,0.03927210946565928,0.00016141043235402938,0.008239846498476115,0.016662425295648382,0.039808230766419636,-0.01246689120884703,0.00010043286820214856,0.019485022718950744,0.020194795900053665,0.06186871991761984,-0.04876791149452839,0.00015099603467188445,0.013889515395142651,-0.01629063944476059,0.019024126248253913,0.007150098957799445,0.00028900227975445203,0.00421096322752721,0.04160097391895865,0.09029183255550718,0.06792182556682196,0.00024107534824000754,0.0018549338772664505,-0.019092572227347702,0.053557485141504935,0.042701632456199734,7.783788127650447e-05,0.005623041698564222,-0.006713224687766955,0.02816235425351138,-0.06857017536751088,6.994426020738231e-05,0.016317532948959133,0.025197269331606147,0.23502878226505283,-0.003409649827848415,3.676470133248878e-05,0.011275675139036368,0.005939375315722096,0.00500195925008075,0.0041016188407274265,0.0009156835389183928,0.003338198220829907,-0.060644184957335104,0.10841777211356325,0.04028271481551384,0.00019559176751931926,0.0037873406343852637,-0.02268062565221647,0.016911579182047748,-0.022684718038815766,0.0006555340055023407,0.0031080399518772527,0.009868395834029958,0.14456516568419642,0.004180460938832885,2.0342564065817966e-05,0.001207725184339149,-0.03293864453797999,0.09404976433787568,0.02853656891055421,0.00010403969004885997,0.005504908305966735,-0.00876339341419734,0.05051409676822696,0.005105665771461332,4.8833914145438916e-05,0.0037182494754071454,0.0015227192525385568,0.0016093246451502816,0.0011540545573755809,0.001845436683514449,0.0037652048897761766,0.004833335119344175,0.028820230688991876,-0.004991257983182973,0.000138007142276484,0.01650547518659712,-0.05561432938005095,0.3007393923649691,0.04112678457154004,0.00028635489980292965,0.007227630012243401,0.013656056458705228,0.09396671065395507,-0.007886423492755418,4.093664390508104e-05,0.005755916967992062,0.027356391918940286,0.1505651929812606,-0.013621619793213665,0.0002994477397248782,0.038465124301738,-0.06451646207048232,0.7533849641169049,-0.0011804498334691254,3.5537250740577324e-05,0.021520943521542393,0.012538639635430133,0.12102516385369899,-0.0060395914804382165,3.4614371509927596e-05,0.009538760734536085,0.015974348670921915,0.04045219598537348,-0.0016020447971727802,0.00012720489173003447,0.022681334398931264,0.029905772777165916,0.20689299887126633,0.010369657290231614,3.338886150125722e-05,0.01617070554009939,0.008447327291383767,0.03490526757615966,-0.15582068174281571,5.3654448097883626e-05,0.0047382316683859645,-0.012558932747410859,0.05438626652947509,0.025986327937324145,0.00010558739704592033,0.0014905442538709103,-0.03398107764751148,0.038534810660683066,-0.08431399929413758,0.0005040335896766261,0.009834956231651412,-0.00888205304534647,0.024149453974266794,-0.0012075048619996922,0.00015480752092105905,0.021357055710047663,0.028336659834359415,0.09970072915491324,-0.009812759952334842,0.0018241875901915915,0.015705354953271786,0.007500689749083168,0.0780200440436262,-0.009291323837220434,2.472163592337105e-05,0.00443256799777118,-0.03081508201871691,0.0749944045066799,0.01181746757615056,0.0013434012152243847,0.021688585469078522,0.024753868333529775,0.18413705703396296,0.015536078025321202,8.952153536115662e-05,0.015032303381478037,-0.008243190499927307,0.011862256907216638,-0.11794270407856859,0.00016401115885807813,0.021009097015487654,0.033789384975112406,0.047961698678832536,-0.10768593473004583,0.0004043799781567811,0.001094682021300002,-0.010312525486832261,0.04529440652006704,-0.015894414062062052,0.0017646996618172397,0.010419489198937886,-0.03366073878939495,0.13192013054518079,0.0339772767784914,8.186588134750095e-05,0.007170447371715967,0.026453992949130607,0.04012223454424107,-0.044973159209598955,0.0016390164519020085,0.01722241404049505,0.02836758118067626,0.08627244973345909,0.019238100918760433,0.0001302765391215153,0.006196087923175195,0.05727240928803254,0.1787018494064936,0.04827074927956064,0.00012992023038918104,0.0033173535990594473,0.004253648579938065,0.017431244379322097,-0.025289833825154175,5.9558964818921894e-05,0.00976763413787206,-0.0016780018764938562,0.006331095391440153,-0.01741404122665589,0.0025120694558081707,0.011762246311145884,-0.0034371389103011745,0.016421284306649277,-0.0009101076031615976,0.00010411913100683571,0.004677067612390505,-0.0010744190137065568,0.006274930410789618,0.0036697777142411965,0.00012417253742668134,0.010076707798657752,-0.014956572514930247,0.09248502229713425,0.012116523249504801,7.649083010593468e-05,0.020398849300100476,-0.002126095324809463,0.011097196855570332,-0.0009826361804153802,4.815227795332167e-05,0.010983675251151808,-0.005204111954821788,0.009859702387287388,-0.03508895878757517,0.0002573429166822441,0.004497793279620601,0.01176719020988923,0.05193300687821569,-0.09578579573516893,5.634348177054732e-05,0.015076392925154534,-0.012815439537565615,0.14295029269674128,-0.03363037188014679,2.3130218881693803e-05,0.007545476532923537,0.00892792102133941,0.03294834585517799,0.003929693479771884,9.471651019298303e-05,0.0003829294721229956,0.0026516607618882007,0.010900467844554299,-0.0008278023903596733,0.0003834429833238328,0.0018566225142590518,0.0139973030002791,0.07322078807985558,-0.028026364539767888,0.00010949184173237428,0.02116289485559427,0.0007173996094391209 +2023-09-04,0.012027099395299624,0.0760099156746406,-0.04244702050547531,0.00016733131856942776,0.006127196738694689,-0.00523017183453498,0.016895077643540417,-0.028018406509344094,7.427904171870737e-05,0.0030282049414984864,-0.00315089717935978,0.009903810137646065,-0.0009143413837496699,0.00014717333453250248,0.0034577124930640084,0.015086251759752652,0.014683782807640454,0.001861680923204099,0.0003467458365955666,0.00647364197428597,-0.024762642823347863,0.058131444238922185,-0.02137510372358573,0.00022288644270156534,0.0052837451042613125,0.006551874244114064,0.015948705413642395,0.002418950270432234,8.969884615844025e-05,0.014544710609761714,0.010256403339862911,0.03794788344108927,0.004013395742652291,7.93044191706424e-05,0.010442326900681507,-0.03893093515956387,0.3633847250776001,-0.07722120085760281,3.673895361911252e-05,0.010326358233228475,-0.01303944529525182,0.008314592332130076,-0.058523496532358776,0.001209380447325807,0.0006179952649392232,-0.011738031649800808,0.02567746457025111,-0.023249923532674535,0.0001598471965659972,0.01666401889132368,0.0019205043419594685,0.0013377995049568942,-0.21578508647235903,0.0007016953858094233,0.0028644962073470248,0.012902364802781976,0.1790706933657172,-0.003414010922894202,2.147175738103794e-05,0.001445422026730245,-0.046142659012124713,0.13241839280529596,0.04490393317951727,0.00010351549016695871,0.008436981490523666,-0.01055004908039867,0.053712529453938486,-0.10063053960504899,5.5289249333613894e-05,0.002728879941976572,-0.0072198161650481475,0.006117313108739824,0.001573731933576194,0.0023019103309163897,0.0035959045679740476,-0.06317983768230583,0.3891104840070267,0.08907214683995546,0.00013361575844050939,0.017231476548783917,-0.030834492626799652,0.1869834958269558,-0.11539933919951532,0.00025535346978309664,0.019243836582489973,-0.03372913026730464,0.2020507983096305,0.014476812549156923,4.702247973993994e-05,0.0016255979480661446,0.04129357638169668,0.20934250138802718,0.026385623278100744,0.00032509620250337207,0.018258867941935972,0.010729486987135342,0.11206200706445582,-0.005608598920906669,3.973294829456544e-05,0.0038326817090106823,0.02632947127791143,0.2956385197898173,0.0694140692929645,2.9755196868765416e-05,3.498253067158916e-05,-0.002259839619240562,0.006071228146948312,-0.01890985966172714,0.00011990128041598045,0.004653656347127347,0.005884612116860802,0.03793720627942507,-0.00226005097011976,3.582984024447535e-05,0.01957384621320024,-0.024788525764552892,0.0722773025724082,0.03954918963666073,7.603720510915276e-05,0.0044285944626774095,0.018182786358040524,0.07150207360911161,0.044698884311828266,0.00011627608339740562,0.007149625560628943,0.0334965624549782,0.027953022082077308,-0.015442328066022498,0.0006849313332772255,0.004719503194263215,-0.014674964592737146,0.04980266972035477,0.004932917571495246,0.00012402534591412245,0.019220903510209254,-0.017391655514761968,0.06132006251532025,0.01260291374394708,0.0018203609489473615,0.0322675374563506,-0.0006018547417339782,0.0061191612227942315,-0.051793161596263605,2.529193086311363e-05,0.019117422251721222,0.026892313627068745,0.08399647404721623,-0.015083980098610707,0.0010467389414687018,0.00374696798100203,0.0314587623562804,0.25575212144255755,-0.011485678956758135,8.191209451595387e-05,0.0014700153561723309,0.010525830275034712,0.015745552446605332,0.01962919689615857,0.00015777705532657134,0.007739505744328176,-0.04179329998190574,0.06617019325236508,0.0822011339176694,0.0003625335260036375,0.00037132987768635534,0.0025060375970025646,0.009566772093042734,-0.0024825274242528603,0.002030357412746807,0.0005851602082076225,0.022449555588886984,0.09566216509138165,-0.025354915853228455,7.529357402315433e-05,0.013016390917472026,-0.07821404137296581,0.09756768658289634,0.041083489176765485,0.001992764192948852,0.023050145141881338,-0.029178116753954438,0.11508210415398037,-0.0675579833076131,0.00010045359884038178,0.009642716524876273,0.010941129557725493,0.029990647629116237,-0.0006946517389035533,0.0001478892793304319,0.023831181530802718,-0.03867756872637193,0.14827433849973504,0.07843315671268838,6.36659313097239e-05,0.006962905521960964,0.05443981758281911,0.20192967852973764,0.020468175271553774,0.002555256874539069,0.04296408692924461,-0.03652821301572718,0.20025058378595154,0.07219108952601781,9.073925445226071e-05,0.009454237409716236,-0.01381842327821721,0.07174958922430534,-0.013657305808627127,0.00013966894638667185,0.014178568278661784,-0.004787538912640326,0.029567900588785608,-0.06518263759035409,7.658443738621885e-05,0.008692277821077498,-0.021689931402237628,0.10177652881875601,0.0069566442554190215,5.3562142256555e-05,0.033625269360830615,-0.02192803152948555,0.049855861982595104,-0.10852594372611925,0.00021444346287099458,0.03833936684792448,0.004388006126912942,0.018736391497480877,-0.016159261076643124,5.8236551314355824e-05,0.014112096259965706,0.03063134530276613,0.3550768585034985,0.03612899360141359,2.2257428538881058e-05,0.0029352844741048836,-0.013787828462214581,0.03936233530792209,0.03693976542764793,0.0001224401856962253,0.002899309217322079,0.0014512938831113436,0.005911407548723575,-0.08415988705149263,0.00038698348725102,0.001081784236039628,-0.00438836398460563,0.02374876957139871,-0.02109961736188325,0.0001058359772985353,0.006855672489484609,-0.005543445353839701 +2023-09-05,-0.030098280333588943,0.19261333715974735,0.03945260419319154,0.00016525016851270653,0.013989831480908488,-0.022639654493920483,0.08208316082332277,0.004461292814468696,6.617992179554684e-05,0.004684941288807143,0.006592156161562433,0.020098716534670685,-0.005991568401487715,0.000151724727517801,0.005445996805729663,-0.012068468716814428,0.014391435080975833,-0.00846092775943185,0.00028301921521677753,0.009285814025724544,-0.01586392871750258,0.03798123524891119,-0.032189986001655006,0.00021854427644403643,0.006598244026038869,0.016342856512551244,0.04893537367245584,-0.009948574540162305,7.29208627945933e-05,0.012130761120986735,0.019394897744591875,0.06892776084050405,-0.017713007106207764,8.256256540722913e-05,4.307265932280871e-05,0.022880598458586417,0.23310050555763284,-0.027215196070614872,3.366067174022375e-05,0.016197669609597894,0.009663868939013154,0.008130999555127952,0.007461760829946549,0.0009165409652957776,0.001967171234735979,-0.018877974844317653,0.0391993218471433,-0.013375657322369101,0.00016839870045310944,0.013865361212718101,-0.008114369437595194,0.005126286220935395,-0.012656585333164069,0.0007737065688309183,0.0014253039956844105,0.0074598899430926785,0.09245001405685288,-0.08146395002877321,2.4046298182102273e-05,0.007015725339494395,-0.03384805853097422,0.10155207772868777,-0.015110241391486062,9.901385914009907e-05,0.004377835025669869,0.007868977329521685,0.042368148393628714,-0.012420676641868387,5.228060779787029e-05,0.006984971020192122,-0.0027199674578434734,0.0020514656758784475,-0.005528594296652657,0.0025859637086141554,0.011365995943440196,0.008251808995817969,0.0422660034331731,-0.04299144260877259,0.00016066086120398242,0.027960469904165657,-0.03043170568045956,0.19452843948103055,-0.06192111252608172,0.00024224310474823548,2.135277519286008e-05,-0.05142265914083631,0.29261156910000136,-0.026573367512513813,4.950214225601779e-05,0.004796558306423266,-0.001311021519362277,0.006764440061323172,-0.012354173833687714,0.00031942196342452057,0.02437246801136025,0.03794936624192035,0.48816498982391476,0.009118951461051197,3.226027976300407e-05,1.5638054082292574e-06,0.04387543937780929,0.379544224394685,0.05735530648579917,3.8622537242525766e-05,0.01658398695867447,0.00959742831264516,0.027423987810460498,0.00044662183103050837,0.00011273195158957849,0.03551038378710826,0.021970149223397153,0.11250427385112145,-0.011333371439207556,4.510828979889401e-05,0.003138164349802396,-0.017590070288582116,0.04301471145956621,-0.1259082358762533,9.066255274906877e-05,0.004968520426369363,-0.0016532585442592916,0.00652665207999048,-0.12868467487423918,0.00011582409336146642,0.004742871152080419,0.022039720891925487,0.022197081503748693,-0.029844961483602245,0.0005675260162749926,0.04019494172224919,0.025173830168774634,0.10061423733280273,0.05359023320365363,0.00010531151669194503,0.029420397071291945,-0.016977184582074364,0.06216060385387176,0.01071340602533016,0.0017529503701753692,0.008093826173674766,-0.07843289504691592,0.6337081685453281,0.14972915724687133,3.1826665203128505e-05,0.02416765332270733,0.06195940240786592,0.223770282050486,-0.06932255549667657,0.0009052657320286468,0.02402713282496255,0.028593106995260343,0.22512750382587565,0.021449615523833274,8.457819969273223e-05,0.002134235457611873,-0.009119422622010355,0.014057047612894332,-0.00950476230858198,0.00015311530829906195,0.004579675883895908,-0.016788163113121212,0.024413228169756492,0.0034421949347717964,0.0003947134122322385,0.01740931954141685,-0.032120266821176406,0.13584467313046011,0.022724742178608228,0.001832680978549058,0.00631476032881193,0.01660907531900831,0.06198384021598088,0.0064625088849723155,8.597206244302805e-05,0.004394639344180386,0.009318215779179137,0.01257838424013059,-0.00875380021672111,0.0018415567111389397,0.009663580545712423,-0.021630101589944266,0.06485622787366586,-0.06505380381954391,0.00013213653366498447,0.0033877334784687893,-0.011254150761428775,0.030403368335147368,0.007597700044373999,0.0001500553222360605,0.02596785561558369,0.008407338560059546,0.03763585626984455,-0.13840042350801543,5.4521859634409515e-05,0.005064872545520096,0.10348724484511608,0.38700386297568257,0.03222305619035744,0.002534484168139319,0.013016930870202045,-0.015256037412225797,0.08765518529764622,-0.01975343119694031,8.657743273423252e-05,0.010959499404976468,0.030208159581638944,0.1681435890824226,0.04875850614534701,0.00013028809614689814,0.0024015794215414585,0.0171625300900806,0.09801189190061521,-0.0024620720902263976,8.282305352223802e-05,0.00953733321728853,0.04979963343765904,0.24468975054973582,0.050408441869347356,5.115142803133344e-05,0.004450241249696937,0.02108526077377563,0.0399443514781801,-0.07456591889530054,0.0002573670805403776,0.00624674641016644,-0.0052225494130413745,0.01906648745733557,-0.025780591723798083,6.811240913461292e-05,0.009577863580075688,-0.0020362194062927648,0.01982118492982157,-0.05441818791088272,2.6504904526342067e-05,0.0071814068535704986,-0.0013268569696907027,0.003999106992725718,-0.010786330712807447,0.00011597651411835054,0.0024516834817812135,-0.013938316474292544,0.048469668054062824,0.029299166716960673,0.0004532817632432926,0.003864775050325857,-0.009059235182081633,0.043468197085297054,-0.021084488485768712,0.0001193690404503841,0.030486971985108906,0.0017807287288605655 +2023-09-06,0.015841320313710088,0.10077736855300672,-0.1151193303247973,0.0001662321206869161,0.014507108217845874,0.003328337802492172,0.012764068915319771,0.005854104845672277,6.256749734651378e-05,0.01773018524023395,-0.02500042460803165,0.07113806278130308,0.01137235072151674,0.000162570804511464,0.028106333243956602,-0.006564547876749631,0.006971022584679421,-0.011278948130927665,0.0003178163141316598,0.0076176668256024704,-0.030349668640263474,0.0741365273676971,0.019719675439614316,0.0002142000099749117,0.009419379461428165,0.012872027296590555,0.041065014950883195,0.024765164011041896,6.844184471870325e-05,0.010313758995660536,0.012698779489726772,0.04708476847575329,-0.012801951730163215,7.913550858628574e-05,0.01630078939575362,-0.015239138067088735,0.1305079699982901,-0.006204064660173031,4.004257372400279e-05,0.0036640703187244827,0.011064197172612976,0.00851928719760618,0.010339781874638625,0.0010015241686033283,0.012290342477733857,-0.0321035535206272,0.05877110309078413,0.010269769253394736,0.00019100782135960675,0.018218375731190554,-0.016164915366639585,0.009887288761371455,-0.005859204643283083,0.0007991357789452838,0.007150077236845798,-0.0026389057372953805,0.034059900258312216,-0.0010742917854697136,2.30889027724505e-05,0.004208202439771904,0.043278205953958926,0.11865547869895263,0.04561024980562472,0.00010835089210123933,0.013235157557876902,-0.014326712756056887,0.0891111249843628,0.006106782825637881,4.525602914792579e-05,0.0010349088090364613,-0.012841285595889101,0.013344460503410484,-0.0159304600260699,0.001876853855988124,0.0025408301904642867,0.044414646066236525,0.27471296034971465,0.01259659115292933,0.00013304518582682836,0.009121888887119046,0.02990398083579865,0.16820465158299186,-0.004981951504995604,0.00027529557825549096,0.012889475053878767,0.03270538857893569,0.19464667999853974,0.0030662676444462348,4.732964738211562e-05,0.005766968702860213,0.035606793461089185,0.18010305277099978,0.015216205512758674,0.00032583564961034106,0.0012315723427879603,-0.03057615151204455,0.42233266691524635,-0.020161833923009832,3.0044043225397686e-05,0.041086406338126664,0.0045343442466258994,0.03955162477198282,-0.009335478384217789,3.83029187077544e-05,0.0053073343480647545,-0.007577476196390887,0.0209553072590406,5.286848050987912e-06,0.00011648052072381237,0.0021845511236123524,0.030656749387811273,0.22410173295103955,-0.0013542617031800043,3.159899460968081e-05,0.0029652900049323217,-0.021059600045528287,0.05347772836330472,0.06494375136980393,8.730810264621328e-05,0.006707403748075834,-0.0011947566278223372,0.0051293114814380284,-0.061680097599782796,0.0001065047485284882,0.007765913579827149,-0.0032605311609377463,0.0033438489363228725,-0.004332910494807732,0.000557336219312493,0.045690056874401905,-0.0030874157427625798,0.011718229477468978,-0.04624192207663696,0.00011089682818413358,0.0013282858756749113,-0.03979174177730878,0.11713357711597579,0.02235393240131766,0.0021803726113873174,0.0006164617211595221,0.02626426095459028,0.2734153724998203,-0.054028913203267435,2.4701563973560367e-05,0.03174090536850808,-0.018428664446341052,0.04679280285662607,0.008284988079419285,0.0012876151331216118,0.03132498784087037,0.028351835138001543,0.22259080005599707,0.018014085108022958,8.482026161370081e-05,0.006438964822322215,-0.04886284794760686,0.08339814280854044,0.0628170445515575,0.00013828267841241358,0.007930452792640244,-0.045838514384589205,0.07199610816039634,0.026622067857110545,0.0003654478632033231,0.005682244910337805,0.0033606264110176446,0.011551380085647744,-0.028836578743739363,0.0022549488926693335,0.002410084223650422,0.01164916904596774,0.05283458088910497,0.0007118732306623914,7.074032507725551e-05,0.018310306556081013,-0.06964032510681238,0.0908898857959812,0.0436100111102589,0.0019046817649940049,0.003894507267747165,-0.014874971169718343,0.05166897637456095,9.646415650408767e-05,0.0001140623490630219,0.0007529207444411557,0.03822614704304776,0.11557465683659351,0.014190382333541389,0.0001340782366206056,0.008895205271730648,0.002057036337484059,0.008160405638685763,-0.003542776701930924,6.152394019476164e-05,0.008536922354064596,-0.03369226984175701,0.12741232555255366,0.035205839891267056,0.002506322111822696,0.005394278383767169,0.05505261323447346,0.24924678181352725,0.08780427776449895,0.00010987248573035503,0.01384343976799362,0.005557368743957818,0.030966961562905928,-0.002585500476760649,0.0001301461734426401,0.0031116779012789757,-0.04144604861449424,0.22967594329088883,0.11295113619675418,8.535251490312032e-05,0.007518530151843133,-0.04190014660279638,0.1935757575065746,0.01653482501697267,5.440163721490762e-05,0.001193084595966958,-0.01862813865557324,0.03648129306011546,-0.027031966508191067,0.000248959459637859,0.03996234789445818,-0.0022864380056155367,0.01037986958578045,0.005366262410405627,5.47749398486162e-05,0.018264281396879696,-0.00161596648221982,0.01676524677593773,-0.002601998496920459,2.486873437455135e-05,0.012352252282004367,0.01370468620191449,0.04274695482269217,0.015591931325470456,0.0001120657438688243,0.0010009056661715201,-0.004500518105125697,0.016687811901995024,0.008855041545324663,0.000425099983542583,0.003144649208166745,0.0596291652833999,0.2966913943468921,-0.014062164739765988,0.00011511331911507176,0.005759144485586536,-0.0026262935946056963 +2023-09-07,-0.017654443379514058,0.11714924242720025,-0.0550086143746331,0.00015936800234091474,0.012094140867559357,-0.03634224536763129,0.12647143770261224,0.02940430618639206,6.894929457739767e-05,0.005548635312516132,0.04728817067404341,0.13800999159651234,0.03628326441286751,0.00015850362129181983,0.004064228561409581,-0.008663698442533216,0.006953862992247248,-0.048943545687176786,0.0004204797195727274,0.01057262136868559,-0.019970699796489647,0.04233528389456339,-0.14732404648077976,0.00024682467803830197,0.020851437924343443,-0.023368961650830748,0.06626102878648372,0.024436960016434552,7.700660573034345e-05,0.006670191457393105,0.056990422939317525,0.22289254927135757,0.07585038021449209,7.502330355246735e-05,0.012866700711334687,0.018776263455281023,0.168586289484299,0.017724723814639246,3.819315476676414e-05,0.015815734339859732,-0.02902676493238129,0.027848420228405564,0.007235522365270586,0.0008037904811150304,0.009141497012519038,0.046468494765580785,0.11339081762683147,0.05422920643190437,0.00014329881673692235,0.005148205459600524,0.021354565254290317,0.014087183401255008,0.09179308281634485,0.0007409534488027663,0.008588875995589355,0.0157239102768042,0.18610394603451536,0.009537459002629449,2.517837889346852e-05,0.005956278180162025,0.008459094772342954,0.026054124928190273,-0.001112050555088354,9.644915725994833e-05,0.011468359472344408,-0.007611611194877382,0.038535886618753255,0.0012578789225071853,5.559977818943253e-05,0.009003374643970462,-0.0003219334607757001,0.0003004931431163799,-0.08541316275880025,0.002089558452582909,0.004469304027671624,-0.08139524625918318,0.5844442494089526,0.1209521119647723,0.00011460618590312972,0.015190381176100888,-0.013435070140660662,0.08484081112028188,-0.00290740775140227,0.00024521292516047034,0.00268400038336608,0.036365625894214,0.21544869234282987,-0.07766225946102659,4.754536219724009e-05,0.010373270332001507,0.0030353198465127747,0.016677255848538512,-0.003445515059181722,0.00029996230184115496,0.023515757589474297,-0.025427997453988667,0.3078396594534607,0.01109282206791733,3.427818517942445e-05,0.02959926936829752,-0.008792989356284163,0.08024181016766327,0.0055907816466542635,3.661150139830405e-05,0.008598282465926088,0.015460198504358392,0.04821114322866828,-0.01215879061442083,0.00010329763813297394,0.014819919338573212,-0.023519480159304194,0.1680358150090195,0.01452880325178126,3.233093301903708e-05,0.0024924072691063096,0.01447235348394269,0.0385305343884885,0.03376219590976862,8.327439984783064e-05,0.0004651399224458973,-0.0023513557014113733,0.009498868850010203,-0.0009165824951033364,0.0001131866056734495,0.011822302254417178,-0.033328891092832616,0.03434610476420419,0.017522694896885183,0.0005546498952413356,0.006609370065953212,-0.013040757488401453,0.055958727095085974,-0.003752385283914947,9.808915669711334e-05,0.008094223742987178,0.012828479182872707,0.038209125389168826,-0.0035953964430169884,0.002154900647856359,0.010520970075024706,0.018702326160016776,0.17689845006270943,0.012883497432765597,2.7186530936693906e-05,0.02450728176585601,0.01843929828765933,0.050801641308474824,0.0025521239500932162,0.0011866917301194505,0.013125709962182774,0.03255705970356493,0.25424542283930146,-0.0011321743454468665,8.527420438305178e-05,0.006290400968328642,-0.017797505101074796,0.027904892185936832,0.005860900549506906,0.0001505303819035904,0.0061703586339253375,0.010505229454447589,0.01505255688214405,-0.015551870746954953,0.00040058914745381535,0.006401589859355015,0.011589821217506487,0.05096218247164522,0.006852503622076854,0.0017627026576546197,0.005817226663589581,-0.0008404791770548426,0.0035463231109060384,-0.08160291955342944,7.60394604036554e-05,0.005793962240591635,0.0152592954282754,0.02083056152766925,-0.0015102274785710802,0.0018210031445304933,0.03679961814207327,0.020648309343252326,0.07318154817154764,-0.017592688408329896,0.00011178896664624508,0.007188548031972367,-0.01570395448219197,0.040314172069798676,-0.01489120624577557,0.00015791073637021828,0.0029907960933542284,0.03949988673983808,0.17106832126638172,0.06984532814423226,5.63560027716769e-05,0.009737235237652209,-0.054105149258815474,0.16084187836892816,0.025652180754182793,0.003188287827621034,0.04437323016152546,0.052232416926756516,0.3211813079714714,0.09386913729085891,8.089663008026323e-05,0.003378271788398645,0.04610064350968269,0.23027975176468976,0.08277851788927787,0.00014518174746328753,0.0011101555635261383,-0.002745851079351024,0.01453179493179688,-0.0027191052027021106,8.937301678743348e-05,0.0034320671157181725,-0.006832864241329816,0.027118472902434597,-0.07240085143301288,6.332642293059274e-05,0.0021443884850473865,-0.005656006085696706,0.01082873168142369,-0.0167056411449477,0.00025466054807662074,0.02042076370089404,0.0011193352964590567,0.004950736443765995,-0.04718367858658761,5.622180282323822e-05,0.00860838460165789,0.0009228531774814385,0.009401870766050086,-0.02337820624092253,2.5325009682305006e-05,0.0011531192159277683,0.0028356333715341777,0.010117851842706723,-0.08384776104569797,9.796495145996069e-05,0.005222624401634597,0.01024213460787159,0.03489242211326164,0.0016740627868209335,0.0004626870373350841,0.002858259523860965,-0.08550492003264003,0.45469945874755696,0.1120325433390843,0.00010770564451448929,0.03195076781570408,0.0011973765421636677 +2023-09-08,-0.013075486606232036,0.09062843035061523,-8.863131031865256e-05,0.0001525738080627958,0.0009746012563761886,0.015583441755711493,0.05767040710407397,-0.08307167600922832,6.48366983758549e-05,0.011123893351374372,0.060354289021670164,0.1594805430297696,0.08001306082224739,0.00017506431831076477,0.0004281768842662753,0.012415725764481453,0.012444398884982532,0.02167799502613985,0.0003367177761639725,0.0025454743318930285,0.0035642636746069448,0.006875947548638657,0.006583429217069496,0.0002712283248282375,0.016621632673512247,-0.0062706626569987815,0.016662214332574473,-0.014686302302895225,8.217268178067122e-05,0.0015809678968901114,0.03475749105886832,0.12227289010711759,0.020231942672658033,8.34080748610135e-05,0.021354252390960043,0.034241138709989495,0.34681589448109085,0.01631323818893018,3.3856949098931956e-05,0.017678866219194775,-0.011952600961682923,0.009355294252188525,-0.013209748103289913,0.000985257513634714,0.008819950462200922,-0.043007259431082134,0.10264310570412893,0.00978228385074169,0.0001465122274168029,0.002414713565147997,-0.010069792638202507,0.007318818427246661,-0.004698171057977,0.0006725180001208765,0.00024047624098913652,-0.0015676173465348654,0.01921998903701137,0.0015302971193776108,2.4305788490689572e-05,0.007506482880292276,0.017486217262695412,0.051250008488262194,0.00368076959462727,0.00010135681764526012,0.01607863031315088,-2.897236586657056e-05,0.00015147728029395549,0.003714214760134735,5.3839160603170395e-05,0.007089507957834345,-0.006781181983280394,0.005615376615806206,-0.057712620666907535,0.0023553176303372095,0.011170458985019208,0.028008942754835762,0.17069078113730246,0.00524205145853881,0.00013503263977814031,0.047070375669346194,-0.0019741760164635543,0.010221278878646413,-0.004420107701271691,0.00029908102863097913,0.011214524008448572,-0.01018490835204093,0.0683505851753249,-0.013689650101912235,4.197356374200429e-05,0.005005465418821095,0.012779497050511313,0.07166654827433086,-0.03412890165508782,0.0002938895079724005,0.010797774804064193,-0.025257145564066066,0.35925897227332254,-0.005308239271282716,2.917473200002019e-05,0.022427539057962936,0.00032139951313406415,0.0036456300132509316,-0.04552953163786647,2.9454681612189663e-05,0.00608904185870348,-0.04456664515818207,0.13811068453998185,-0.02084669393928201,0.00010394543496763521,0.02019701557822518,-0.0052632549947483264,0.04125585956541324,0.0018375841871119982,2.9468711518438382e-05,0.021215007076795016,-0.017208269598230755,0.04243449341268674,0.034861680970394465,8.990742550519091e-05,0.008520808616982335,-0.004680911404369807,0.015758847271542847,-0.11644868672029135,0.0001358171366882736,0.0005000616319620753,0.019610820770939796,0.02023459285067931,0.0026813588262860283,0.0005539580295087881,0.0007236415609066381,-0.0065582880309899795,0.02421948804730149,-0.00483660466907666,0.00011397550802737789,0.0009741733126760808,0.0558163665519419,0.22307272317318927,0.0064524065187905435,0.001605958312800755,0.014195429029551086,-0.0008796915442885528,0.008165655186385016,0.0011573431926760068,2.7702666635074985e-05,0.021701182535740667,0.020540859847089293,0.0732825251286328,-0.00029726418203634145,0.000916409248588864,0.036264738374329954,-0.00205535917127567,0.013558128739224847,-0.020466922103135266,0.00010095169496700026,0.011014797090433692,-0.021082610289375244,0.025254471996108738,-0.0021446168967518163,0.00019702959934182277,0.0009629202075500652,-0.001063840939337744,0.0014941862912472334,-0.03949859953856301,0.00040867292416893366,0.013248861252946895,-0.06493455526281003,0.25515286360701356,0.13894596485083904,0.0019725397545066483,0.013411425257314653,-0.0187807797626972,0.07008755521998249,-0.07649941401082873,8.597319745057928e-05,0.007449054409744119,-0.044120922833235196,0.06988420912078738,-0.07868746128664804,0.0015694327997901841,0.0008843178777155717,0.007354924820530727,0.023004819329289713,0.009769986187739079,0.00012667048912868052,0.012902214531557498,0.0035994683856448778,0.009869387954168352,-0.031407247341621196,0.00014784563899365128,0.00816529031767045,0.014012431216434564,0.05876214566867046,0.003088782012708747,5.820090976444563e-05,0.008721729359190706,0.01930745091873214,0.07269571498970452,-0.01402020655400029,0.0025172954167651043,0.008336924163084125,0.018609847460016374,0.10250650314014903,-0.008281466165989373,9.030919386356458e-05,0.008408291838062075,-0.006181760852588463,0.030570594363512314,-0.01355967487179442,0.00014664562196072298,0.0010647558202253968,-0.017711036078879725,0.11362979287320896,-0.015508762299001538,7.372256744428046e-05,0.011738264750150282,0.04760389976226068,0.18913473424650398,0.05915847809413161,6.325846267901157e-05,0.01916346182372647,0.053315246448154476,0.10044131230854936,-0.16265575077733327,0.00025880248186517865,0.011071953156278926,-0.011210279511487193,0.05359718400214435,-0.04289712749994427,5.201023842246327e-05,0.0013886245462805327,0.03742561158280543,0.3846902959631916,0.08900690480865822,2.510088074461848e-05,0.018146190337035704,-0.016083704992523408,0.05087300723320582,0.05856728822240086,0.00011051154550601697,0.0034819507581410622,-0.002402616616137841,0.007829721604538207,0.0050127561931273,0.00048368890633593997,0.009271249066284699,-0.04599442147681122,0.22078004586300234,0.019118687691197764,0.0001193210695020203,0.005505593628516533,0.0016775748616313661 +2023-09-11,0.007561457382271494,0.055295315903023376,-0.009583831053757324,0.00014461180574569567,0.00805335564880099,-0.026962631071467853,0.08667861058793215,-0.053544251246879684,7.463814800113011e-05,0.0037273220616391867,0.0042688199871604516,0.01260096780115871,-0.015418232530556854,0.00015671159974303897,0.013292088285908546,0.009857072711011255,0.009604456021383875,0.026046331526594618,0.00034637221287448546,0.005448200928017006,0.017412302296463178,0.040689497748833285,0.009132514101675471,0.00022390904699675062,0.010825649317025282,0.010429136444854785,0.02835880503457891,-0.00495318313820001,8.029845002969277e-05,0.006564221818539346,0.006979099604092001,0.02266778228558242,-0.0010806817547203737,9.034002760818186e-05,0.014335643782453509,0.0042359458051816805,0.03638490468858668,-0.031780750374161185,3.992342279090742e-05,0.007484105726896905,-0.003005511978003562,0.002612651763363739,-0.04714076482191654,0.0008871186767460103,0.00412740123579506,-0.03268829779089702,0.09072148295210504,-0.05572915288882365,0.00012599231374077144,0.009598293195724623,-0.008897181104645704,0.0060168056552758545,-0.04301178961186162,0.0007227877863059445,0.0034711596371808547,0.01293249490374035,0.18469101402921131,0.01214672723876125,2.0866967498416058e-05,0.001012288122879944,0.02554299954787494,0.059357257252820844,-0.0242699960000811,0.00012783480357393302,0.014106006899614245,-0.02033134592221466,0.11746504278349952,-0.06928085903735819,4.8721349243518745e-05,0.007195715340327491,0.038887624952600924,0.0342843014299622,0.1417595163103546,0.0022122748766029684,0.009196219843513417,-0.04844994592487809,0.30144166910369735,0.03505855480186508,0.0001322641418788556,0.04088951649921415,-0.005390063634767995,0.03124857809434697,-0.006455132324814258,0.0002670987551809244,0.011804059771855798,-0.021312829049155636,0.15504624665083921,0.007971300130828437,3.8720486037143755e-05,0.026145839150401497,0.0679358464067197,0.4151688231202696,0.06567747644781581,0.00026968765382254706,0.02196651350661,0.03973400568213618,0.5585134073553571,0.012550463869396938,2.95228974389833e-05,0.029465815011151596,-0.008532332291584845,0.0995437682512017,0.015369620833639791,2.8637519158622895e-05,0.00381600473715414,-0.03607195219825478,0.08858545627804665,0.02065800227435616,0.00013116862806847624,0.02544208214966387,0.03404365598702453,0.24475918220150206,0.008572754144476249,3.2128435346325925e-05,0.0031839175801464323,-0.006301234771272447,0.01850754792076049,-0.030302576210289877,7.548387045045162e-05,0.00516074556471729,-0.02586277860336262,0.09256757328228193,0.11635584522350476,0.00012775117377466315,0.007740116778593673,-0.013320831061319703,0.01370648174207758,-0.032753278577664136,0.0005554959410722896,0.0035838848654189334,0.006024839164453632,0.02352292553208129,-0.07283992159193954,0.00010780530512192062,0.003538896470458812,0.019385488311522245,0.06350076599165179,-0.04650310624627117,0.001959372262557104,0.011737079190811859,0.038560905724817664,0.3826771288041298,0.047251568809480594,2.591176012493255e-05,0.010508064115872752,-0.019192433770942336,0.06604968394738978,-0.05223106537356885,0.0009500152494958437,0.0031292756511717345,-0.010235438578757118,0.07544348850465771,-0.016628575494490774,9.034629301333716e-05,0.00579614494074911,0.052718642470907455,0.08095987901429476,0.23882091480052142,0.00015368792754098074,0.013987486534801193,0.031786788198344025,0.054792948253947364,0.04118170449620533,0.00033298593730010846,0.010970929343812885,-0.028286185349928567,0.1185100521681297,-0.08235635579670453,0.0018499906553100136,0.0013890841917658455,-0.012365490896668751,0.044831149311321934,-0.005808369288097656,8.849563699989502e-05,0.004680140139733428,-0.018821141775091654,0.026145941900566662,-0.011743880994895987,0.001789447108022869,0.04655047706712569,0.029184141776827745,0.09095845875394912,0.047508183171056824,0.00012712175212132353,0.002779243497923128,0.001265005151370031,0.004273483897383021,-0.07074259891998375,0.00011999705795093798,0.02741205104853022,-0.03923829562661964,0.1584565169515084,0.10909553419657488,6.0438538588835334e-05,0.000647053300392203,-0.03387079777071114,0.09737885764952206,0.026651166292774676,0.0032966952948964715,0.014395275939144934,-0.054227836359531274,0.2511515346610776,0.06329762518570872,0.00010740562120178736,0.024554760065572865,-0.0311021011189304,0.15627025916530246,0.08070407379595115,0.00014433583898776643,0.018502276355117222,0.01716740893498643,0.10504984060580858,-0.0346840657799781,7.729618388188475e-05,0.013001530493664407,-0.007479179218327418,0.033381284429675716,-0.014294871353677784,5.631165503169077e-05,0.03039357197597194,-0.029663906632147317,0.06000616528151367,0.017775007906656606,0.00024102487466841306,0.0207023334108295,0.01897782163437633,0.08327710878728198,0.0053235589538536895,5.6667636248182854e-05,0.005339828543538475,-0.028208263030310307,0.3537013853984063,0.058792172414670475,2.057646989664754e-05,0.0035670876261923333,-0.006566637191444095,0.021070441167167168,0.011398837138171013,0.00010893773912522807,0.005549066874419436,-0.0061340663940122764,0.02173053066732718,-0.04828474905615686,0.0004449447750327415,0.00570302219884951,-0.04889586613114335,0.23638475374503878,0.010778581882313941,0.00011847438893309365,0.0008721896356409579,-0.0024299513751333073 +2023-09-12,-0.011100579283072792,0.09234932074511555,-0.001062536891556061,0.0001271155033448973,0.009660060194671551,0.026497928626392026,0.08531707880287115,0.08785523350801805,7.452233865768077e-05,0.01699312186701255,0.0757664499584275,0.2700941410979267,0.16945053529863532,0.00012976542091828563,0.012608592886762799,-0.04600093098003557,0.05367932955901842,0.13659698968625536,0.00028921938246474223,0.0015803561838435883,-0.0002622759073883195,0.0006357110663194953,-0.00012421709108854475,0.00021587204162879203,0.007892411375559887,0.010018325188543835,0.02736304569082888,0.0030202173544076763,7.99424453474822e-05,0.00397623730546231,-0.031000494751778202,0.12341961118583482,0.023534756777047902,7.370115710244721e-05,0.0015364626096773162,-0.0011473293913474363,0.00922934728603783,-0.0007784279869698399,4.263004052487205e-05,0.00830243582366525,-0.009309911173215342,0.0077344498904136,-0.004395315910988332,0.0009282413136839932,0.00182948822304938,0.04472035576161541,0.10832748701781152,0.059121088775039715,0.00014435388206029566,0.01705175198173735,-0.01239255156128502,0.01111229870823036,0.0007933395243529405,0.000545106280325463,0.01357346099759106,-0.017877808113037193,0.32998528764816126,-0.07385501276947173,1.6145164847030393e-05,0.0017792741370950308,-0.006276873271017665,0.01788250748652302,-0.00017313423920615518,0.0001042715868175749,0.013696138875116325,-0.006343416509292548,0.03168751428434512,-0.07502374448895277,5.635038323870165e-05,0.003605229833305412,-0.006109088566113511,0.005380882229951734,-0.020135722299947915,0.002214348167157582,0.014311340663071416,-0.007782336449981584,0.04445505032235757,-0.05434308941424317,0.00014405920179117677,0.027495801460992533,-0.008744461827123637,0.04844646424745342,-0.0020902541824908134,0.00027949833917722747,0.005131159419686691,0.002198190907748462,0.012550412633627642,-0.10495973991036649,4.9336502449528445e-05,0.010788108756631548,-0.039632068325493784,0.21033245829815947,0.04142797782706041,0.0003105469352897228,0.010332895258823499,-0.020132159043079967,0.2687423041700517,-0.03011607272604718,3.108741046511975e-05,0.006178851582475393,0.0013619903973768365,0.014649291822472408,-0.0031213918847564255,3.106269441222916e-05,0.0032288030929973413,-0.01999848622063595,0.05997944241825759,0.007055073210461613,0.00010740325780463379,0.013248842093473549,0.009641213030543565,0.06757434679806425,-0.06767559344487967,3.29565846645862e-05,0.030485016511538926,-0.00010014629402770832,0.0003274868274110426,-0.06991713978560392,6.779824140047958e-05,0.00999480081392842,0.010567211194768365,0.037318936979540376,0.023304699652861288,0.00012947315123434583,0.002739610409671637,-0.0033933002788156183,0.0034605120442603677,-0.013269204875392784,0.0005604766046522244,0.008856712008545736,0.003078546469007019,0.011553533935182896,-0.03780328657254538,0.00011215454509798525,0.008212395865741346,0.028685238728482523,0.09973767725338135,-0.08875450223935095,0.0018459434541334037,0.00668069727417296,0.03334344111667549,0.2987666287372708,0.033583033098439935,2.8698587811463318e-05,0.012682347556303587,-0.018324546184370093,0.044272631378508086,0.009950310214537114,0.001353222350943435,0.0012037591340817557,0.026295075844625707,0.2020380568959828,-0.03229375514945694,8.666961912407122e-05,0.0018121470191814649,-0.013150895191506265,0.020651443026157266,0.0034725632521036276,0.00015029699564097154,0.013760136204543041,0.002565665899179019,0.0037564053005771287,-0.013313406295779907,0.0003920410746845155,0.006505116331403984,0.014639876172514346,0.05585072056550804,0.04154336553011022,0.0020316971151730983,0.013117158711085625,-0.03958361718374624,0.15888130838581607,0.0475938161975625,7.993427507772488e-05,0.01227074842345711,-0.06259425590427475,0.08595884050946763,0.03858727914938532,0.0018101773405541967,0.003436893529621326,0.015117518929749734,0.04353483423652378,0.014372004152375389,0.000137581380356397,0.007163757153001234,-0.008733690050473924,0.022747658293348468,-0.011692084458617785,0.00015564008362386697,2.140251384387718e-05,0.042288551439832275,0.1622636251985794,0.06348823059406083,6.360855935490973e-05,0.014374807418237339,0.005869503529268062,0.01857400194761549,-0.02610535176885313,0.0029951180147468623,0.05053414658841127,0.05574392016456543,0.27717866870836727,0.06470283181128293,0.00010004105734603038,0.0005625182965261609,0.01265308142172616,0.06828906711977838,-0.00937505113274937,0.00013437111073524619,0.007708163196155693,0.009678577810484187,0.059600304445840455,0.00367822874557552,7.680893907570378e-05,0.007113485591681113,0.030256941678585957,0.11440323059811054,0.012388057985276564,6.647129418493353e-05,0.00906589924613341,-0.00456682171345486,0.009722365492192693,-0.05247913467186155,0.00022901899678557218,0.005432085615012909,-0.0055806588534391055,0.022220072268024426,-0.020180345828465326,6.245315510503314e-05,0.0011694508344037857,0.02999914434010803,0.2799045324708456,-0.021238624168870197,2.765223391809102e-05,0.0031286956908035397,-0.007031300701333702,0.01918299960675607,0.003744472097158519,0.00012812330060532522,0.0005794765898036479,0.0037939823952594606,0.015962224389069034,-0.008196721005762216,0.00037465356602979765,0.004122787145847395,-0.006698029228762884,0.03396392971656067,-0.017339646326681068,0.00011295381425199824,0.016434476382516862,0.0013234957033748582 +2023-09-13,0.02097562831489679,0.13951673184012994,0.04768332194002274,0.00015899199846187878,0.0017883012913144805,-0.009712009863188324,0.034267258099184704,-0.0076860018534644576,6.800491242856458e-05,0.00816858721451607,-0.02063610921218585,0.06321120127598201,-0.00593242224047888,0.00015101878723118028,0.008223234795735569,0.004737267127053796,0.005620684313215412,0.009534877586453784,0.0002844503923655634,0.004300569635772567,-0.007721571259218961,0.020195917184744408,-0.00024070025771984316,0.00020005060764482284,0.004336747671667818,0.00410302266626976,0.012354515926516764,-0.01879603384438535,7.251451095192388e-05,3.765874534843389e-05,-0.02160503931573755,0.0820463649692671,0.0038675530281874503,7.726549150167001e-05,0.007059424092907577,-0.002359937332413197,0.018174811420382693,-0.015681764497260605,4.452758810659842e-05,0.0008110859629636904,0.014582784281811614,0.010225085470197225,0.03537135369704706,0.0010998115878575016,0.001543147721153791,-0.0023140336604069826,0.005620082242924648,-0.002787744119772273,0.00014397559679763986,0.00870337485232987,0.0033322915212196697,0.0022970668757404493,0.013504273305660102,0.0007090775037181152,0.015935853418947234,0.016164540579235196,0.2093748173164482,0.004765925055795693,2.3007090975069734e-05,0.00272146565437184,-0.0193462029215768,0.04985878450628193,-0.016658049237831322,0.00011526702647291798,0.0054526215208292655,-7.657436849139658e-05,0.0004332554204415187,-0.043025492114503294,4.9750933879130395e-05,0.0009092464511004137,-0.02375431106076244,0.019693374475490653,-0.0011402479428466253,0.0023525847233410134,0.0024142502241018193,-0.018275224996882503,0.11131489909610025,0.002340402128524389,0.00013510192692999822,0.049840927092910874,0.07608029980565341,0.4277622145759047,0.11716052301160798,0.00027540893623263275,0.0204409991884353,0.0023668299644250333,0.013798848057735362,-0.02308052859912774,4.831535582512852e-05,0.018233857119311254,0.055080950677574465,0.3014416788233735,0.031884189194814595,0.00030115143366990277,0.005212345534925008,-0.08710916836956703,1.2656014158518711,0.08442238381456278,2.856256112438442e-05,0.0535949601718504,0.0015255046221766273,0.014724957046919531,-0.023316586621357174,3.461315604785064e-05,0.008216571766870968,-0.04098953597309934,0.12117686329473706,-0.08624245132088697,0.00010896224715716955,0.01902621761736673,-0.07708675063073342,0.562719376792264,0.11803580872751372,3.164318903654981e-05,0.025792650373638815,-0.021611085684046974,0.06572478241667758,0.05825347827050614,7.289954379379181e-05,0.014768167625488809,0.02221286475956068,0.08905120950744887,0.12485155687679059,0.00011405474177153924,0.0031874507650015947,0.015988753982056198,0.014215596401477848,-0.005990236321370831,0.0006428728674495351,0.02013083777935153,0.017997677745129774,0.07656625004361237,0.02927248188429304,9.89384501813099e-05,0.005790031486887002,0.030185229874242724,0.11109445013483947,0.0007753028605355,0.0017438988789649488,0.0037041433333221637,-0.04499978805938832,0.4545628638593985,-0.06590328008061305,2.5456501087568697e-05,0.009475561554166019,0.0004855922278414661,0.001531805758578133,-0.031396776439016116,0.0010364283857005265,0.010174682271526604,0.02185637893938726,0.17621800639686117,-0.06716324563517173,8.259496459245867e-05,0.005487484799229958,0.036903861051143676,0.053042494445561764,0.06681116777430848,0.00016420759980107324,0.0005870341214847252,-0.0031783586191913155,0.004811812495579915,-0.013285974007866823,0.0003791386994112788,0.012570854888158635,0.0067845979411913495,0.024108615014156034,-0.07228775380959405,0.0021812336831652187,0.0003009762101759245,-0.01705408377786141,0.06878678730860228,0.004782549359349293,7.954515571841811e-05,0.004481169363130626,-0.02112367429204582,0.026406510529707786,0.003457061253079566,0.0019885459864789853,0.03498371167619369,0.020498785190106866,0.07331989964783113,0.01707160140440004,0.0001107700365614536,0.01951286587578859,0.020857202497836805,0.0508075509348691,-0.011905642771897632,0.00016641335353085611,0.0034116591824035055,0.01422730200051399,0.051881618111361445,0.0016938343863864894,6.693032944636365e-05,0.014181085325705669,0.011612431427052212,0.03248395746422109,-0.00033633654314156115,0.003388225348632206,0.04704604241432505,-0.019209463504361327,0.08845499021369746,0.01471002441258375,0.00010802728658210691,0.005183275924309284,0.04264052422509179,0.23829369480293652,0.06466028363526637,0.00012976894339214798,0.021466314546063726,-0.02046929110638904,0.10481482922261025,-0.023106269520209426,9.23695377111226e-05,0.0049282067634384835,0.007775164934371817,0.04017239159251198,0.00037231066968081416,4.8644004268612276e-05,0.005321213802169545,-0.020373310965153584,0.03971964874637311,0.003903053555181855,0.0002500838282624431,0.020781025042899276,-0.0015312284852541534,0.007654206421354867,-0.1572295301083256,4.974554637584827e-05,0.002212150910276991,-0.0036532146658219853,0.040868609805476436,0.0014330543224001422,2.3063043227251252e-05,0.009442731764635963,0.011857263338877296,0.03386251701710333,0.013901191632209191,0.00012239796394571318,0.010094196141742387,0.015525916075190228,0.06999540384421156,0.003975709557643043,0.0003496356285014929,0.009234339473119094,0.026295718740456147,0.1212160588247007,0.00846497372366347,0.0001242500815522202,0.009932739522190981,0.0007401578358725474 +2023-09-14,-0.017651158512285575,0.11922156347109512,0.01278287582988645,0.0001565687145945818,0.0039037813130505614,0.030655785492718874,0.08467633432058919,0.09099516009253564,8.686822072276602e-05,0.009569059267057011,-0.0374621980840347,0.11633327881400594,0.017802327929815915,0.00014896577201602327,0.0393840357098128,-0.0305267441268277,0.029585482742857043,-0.05019246195673839,0.00034823280636081083,0.007451928826352023,-0.030097724169602078,0.06622729192124258,-0.13115933012738915,0.00023779046342680804,0.02136166140732024,-0.031436935445689373,0.09330733827286322,0.10731435367988153,7.356498357964883e-05,0.015070917860946888,-0.04559348831020459,0.1277413885245749,-0.10077576752456163,0.00010472757406491071,0.01740076829824836,-0.011199685543208921,0.12385225519378834,-0.10068461486825155,3.100991134113243e-05,0.0064135772795313115,-0.010541880266080403,0.009081734288412118,-0.009654573894392782,0.0008951464107048865,0.01000531804015363,-0.004420574707492011,0.010816920452676444,-0.001112766535080733,0.00014290156498333498,0.009839305370914004,-0.002457770194088987,0.001731604805431156,-0.04458616676787299,0.0006937721292150159,0.0016323870016680445,-0.010110272798616891,0.14838559112585517,0.016002082085224995,2.0304576342052632e-05,0.00172434304084511,0.06526994119579646,0.18521355997209463,0.0459062515485685,0.00010468669277268914,0.0003208912928771145,0.0016441609572708205,0.009794897529092853,-0.03074718876843462,4.72504830270402e-05,0.0016883968726626932,-0.042562926042654055,0.029821264833626928,0.08644679182941803,0.0027837382019661517,0.010905441067593176,0.043262067654390494,0.28001440701753844,0.02341361843951988,0.00012713906203619293,0.01226510471443474,0.004504288850928727,0.02380782812726885,-0.0027276095093670505,0.00029296428992625466,0.01783659342174565,0.010009193739536106,0.06279288278793671,-0.0028733462720700637,4.4900340022330774e-05,0.0019545674161137254,-0.05934056642845277,0.28045247596846384,0.06323782874576209,0.0003487218953275707,0.03816563144961927,0.0038174887441588716,0.055248292815507895,-0.01649732020362716,2.867405630618926e-05,0.02886061553833458,0.006084799741613959,0.058887977922263274,-0.08233128951833256,3.4522429929718304e-05,0.005316568160992807,0.04390592501658486,0.11601420892818927,0.014906795235169766,0.00012190870113642778,0.002164271935447327,-0.05811841853927046,0.4037776070390884,0.0375965152679786,3.324787816227975e-05,0.00028648938003406456,-0.0073844045099698274,0.02442231067699235,-0.015570798946012057,6.703569395352789e-05,0.0019718190507791696,-0.00469220524571308,0.019761478192962485,-0.0486101666714975,0.00010856908279178344,0.0020848662711054154,-0.03374483176506389,0.03352999137563504,-0.03776697097445099,0.0005752404097585401,0.030740518986042117,0.007887662594422053,0.028013701387356576,-0.009105206216378696,0.00011851241248858033,0.019099511886773116,0.05867838052222674,0.20872573164743252,0.03805894453794217,0.0018043521514342087,0.020840400303185784,0.028007112799086884,0.2624035935038002,0.03202304623343869,2.744610734542592e-05,0.0013303743113676344,0.0056379448215156565,0.018641929082937676,-0.03212270260302328,0.000988783565401665,0.015801344402666253,0.01679473173917858,0.13931372273194173,-0.03023096876278834,8.027952921086099e-05,0.002817703267907358,0.02592013839020363,0.038975889010341755,0.024737072461297836,0.00015695916235006647,0.001164701145775142,0.03230919574465678,0.04180817249635783,0.03396726126081732,0.0004435768546484362,0.013287917378009438,-0.008869429633982637,0.032632805100586464,-0.09364561343296628,0.002106646308193865,0.010153029313947152,-0.007536448873812222,0.02959899254901391,-0.0011197204851082973,8.169212596551058e-05,0.023270094777164012,-0.0874728603411486,0.13121391165627852,0.07031089103069607,0.0016571836403922377,0.016392238315307475,-0.01174608424326834,0.042288615046509305,0.0015683656277676787,0.00011004889485083961,0.00658552115338736,0.05009400265775676,0.12042214768014498,0.01781116427573944,0.0001686319034437586,0.008944644728360282,-0.05683831495361976,0.25732737356416346,0.14875938063565916,5.3909975181065106e-05,0.00400146783311277,-0.025837583659387812,0.09696167480614452,-0.0033079581551625136,0.0025256306852355368,0.018423776018462953,0.024473577553699867,0.1109451457148563,-0.006916325128986421,0.00010973109804653833,0.03451830253149142,-0.014171136894018192,0.07710377584444597,0.008595451087756549,0.0001332876255759513,0.0018489551776225835,-0.007754395406834826,0.043639448714322446,0.0018108212207189665,8.404606515844848e-05,0.004852303370679423,-0.05747064173662704,0.2805465473925402,0.06692689598734897,5.1485924228121457e-05,0.027450449769695993,0.0009073912245099161,0.0016510188194104331,-0.00039282407998825306,0.0002679612192723349,0.005458338215432571,0.018960912588367962,0.07079307430069662,0.00046972778411649295,6.660132039717501e-05,0.010737346912925484,-0.005108927173671885,0.053982738078531045,0.0013974571078105267,2.441777506115311e-05,0.015117948488479877,0.0014573378074044289,0.004036207456043074,-0.015087356922678881,0.00012621056649461576,0.0018559531319015323,-0.006564885292829008,0.024766450973183297,-0.006129006597864968,0.0004178220314778309,0.0006942977846813956,-0.08874641734217613,0.4435396088959848,0.08175896225887296,0.00011460147744062402,0.025221987151091654,-0.0065920159083845695 +2023-09-15,-0.014047319320723574,0.09141974673364334,0.006209001267315694,0.00016249500850828855,0.012376213929740304,-0.032306837449337315,0.11713579221914651,-0.00037426902477663847,6.617826148736452e-05,0.002225290486125222,-0.021503837425017863,0.05916748924569299,0.00857714846113505,0.00016812412303061653,0.0007846072693114747,-0.005769848465484527,0.006228551846695643,-0.00020270761411949787,0.0003126404590972606,0.0009582110260468709,-0.017530120557984807,0.03495655754787882,0.002929598552823125,0.0002623940709577579,0.006628087328183703,0.017330677480220012,0.048958553008776724,0.028041508766491766,7.729185073018976e-05,0.0056948355890359134,0.0047936365890761095,0.017163065726376586,-0.003102967790095948,8.195210178219719e-05,0.02252703988345607,0.026682986792959558,0.24920873171279642,0.028906681387661663,3.6717220769054596e-05,0.013229042789238532,0.011901790007593662,0.011259060550632277,0.004771434271623271,0.0008151826265841898,0.009344185363983019,-0.01690210573148063,0.03580338374081011,-0.006588413034108519,0.00016507398181450753,0.01621751557627842,-0.01181929083722969,0.010104346107869512,-0.0020918065115085346,0.0005717518307114194,0.00506793071633195,-0.01680180526404902,0.2111271623703765,0.04230100204972805,2.371562779095697e-05,0.006610865645622091,0.0172815201190404,0.04506756098930004,-0.015141216560525483,0.00011391185495311991,0.01212060210370744,0.004047996426543614,0.022721465664292187,0.02576965974769369,5.0149383254524596e-05,0.0049624318187515065,0.023434814052201575,0.019647539476440806,0.04505445481875946,0.0023263567460091784,0.009074297423610544,0.03886004459141059,0.23158263465811135,0.015723325580256613,0.00013808592448866344,0.01804021637480661,0.05125375723480949,0.30725612217301024,0.042494613748268434,0.00025830534583668206,0.012576106091035462,0.037201846684892695,0.23245468614608325,0.03438844061075737,4.508033647267806e-05,0.0008859882812885841,-0.0003980316523039905,0.0021922260519991166,-0.04147755638436955,0.00029923961160190955,0.019275070057212122,-0.016636650339251543,0.18930427289540389,-0.025062859488707352,3.646999496926763e-05,0.012202985666939413,0.007454301193677673,0.07966689947223744,-0.034777925880650186,3.12615660565528e-05,0.005707940282579425,-0.011429526302827711,0.03950917316651212,-0.053628548924747214,9.318650984256823e-05,0.007351118602373825,0.056291547980614726,0.389842186162305,-0.03286593838264667,3.335390856790519e-05,0.02062788150195339,0.038066880706333885,0.11313293509085023,0.14758540967938166,7.459944886104888e-05,0.006010257201635878,0.001780382033321747,0.005758340554736578,-0.001816841579755921,0.00014137234198114863,0.010861122137308806,-0.012997470861257552,0.011267698716758236,-2.7414447114551064e-05,0.0006593244601406871,0.004483115049315791,0.0030179148832310556,0.010833627411490018,-0.0005024888965123683,0.00011725168716282163,0.001246910936956217,-0.027595753946774083,0.09267479792026691,-0.027469988757208026,0.0019111720742878361,0.025398287747518074,-0.02308476320237703,0.22577676239151964,0.004724887967729114,2.629228784801227e-05,0.015439680970621707,-0.025955827919648258,0.06834045098218267,0.020959672634991124,0.0012417332648379882,0.008133596832364668,0.00016410843468646921,0.0012750361607017906,0.008018163949388544,8.571050314626527e-05,0.0038570434228753885,0.0038449156803416575,0.005875328241275541,-0.024461863876222012,0.00015445432423966842,0.009335352732310603,0.026894333978656804,0.03499215610541713,0.0057159528393961765,0.0004411578427596372,0.012153556507688314,-0.0011036052899862064,0.004109662462315858,0.003080806282329866,0.002081411554609201,0.01475392823357314,-0.014794354245729741,0.06946435530554457,-0.01056886702749765,6.83320381251013e-05,0.007371132409660124,0.018446991245748792,0.023191680212884293,-0.005258267715009307,0.0019772906809245325,0.01722677530248561,0.02708629603631089,0.09236722809330382,0.0021605962132813677,0.00011618438043947064,0.007606218376277624,0.00043218755332629006,0.0011726651245638029,-0.039946094133797454,0.00014940276057362007,0.01182150844363309,-0.0016778329239026744,0.007307349336935953,-0.04556754938015315,5.604059884230491e-05,0.004652877823654746,0.0285827118146829,0.09575068010189974,0.004233889649609984,0.002829304049251977,0.03760030805909003,0.0032440186803636044,0.017641161028345977,-0.014739671407601964,9.147380673475083e-05,0.007613870993646141,0.011362983690162082,0.06632929491092554,-0.01605476134250372,0.00012423609352510927,0.012791553142847042,0.02231566634518716,0.12211545587650441,0.03255436736483175,8.643465901280721e-05,0.006209220000778978,0.04160448895231358,0.1826529168848412,0.027030758168278237,5.7248086427098244e-05,0.029975435927431696,0.028713012942229586,0.05375002139364942,0.026904292163581877,0.00026045309305296893,0.004688212754316391,0.016634215540600995,0.06946777271119131,-0.00565484461420431,5.9543358332182525e-05,0.003899054746887908,0.00905117612935352,0.09867079396041509,-0.010171157394561484,2.3667243482222013e-05,0.01225825218419485,0.009323154837046467,0.028980955942871613,0.006443556014707745,0.00011244992104365121,0.0026973047761671733,-0.002071072085332939,0.00907202072155847,-0.00289834711715575,0.0003598480490919824,0.0010046424418416098,0.04736103575035696,0.2143460169879271,0.059395476766529356,0.0001265544934100689,0.020565177050678236,0.007058628599245239 +2023-09-18,-0.01491430482132639,0.11731500669249993,0.005350203434514324,0.00013444232959075922,0.012918473203082913,-0.0194889272473958,0.06644003630552447,-0.005257841517733536,7.038313380490264e-05,0.0018510883894193493,-0.0070580940695003066,0.025921201231698998,0.00043357219230927144,0.00012595909255519003,0.005149442769353791,-0.001656592683905626,0.0015459886142951817,-0.01894586559190887,0.00036164070248037686,0.0012117349832010565,-0.03748902459039242,0.07438302296596318,0.05149520836866195,0.0002637109047980672,0.0020373310640927813,0.019887098060589286,0.05662509064767728,0.006008640383949441,7.668479214502202e-05,0.0032592881425264246,0.010463500364699826,0.04377797816320196,0.0003937383860410668,7.013118039768257e-05,0.006207119052168909,-0.0025827267979023497,0.02571560647274069,-0.009751230364769959,3.444136157167214e-05,0.004972074902264322,0.007964230188476543,0.007417583635274418,-0.02423271218041533,0.0008279919961882462,0.0034111222808526675,0.00038871085580995666,0.0008515147264398492,-0.08945452229639869,0.00015962333961892374,0.01187738594841354,-0.015631364864326112,0.012135699424601958,-0.0050737336381855395,0.0006295880080732742,0.003494041352809973,-0.014993132513301732,0.16906403662260705,0.027368165340939693,2.6427977886240485e-05,0.006287497389877486,-0.05347168513256133,0.15323773560866502,0.0744375515563686,0.00010365951748421134,0.00524200135107752,-0.010500515148986613,0.0600040894236688,-0.030055663493944885,4.925967867129036e-05,0.002447298232069143,0.033937820952131235,0.027893303062006453,0.07828050310621522,0.0023730505044645346,0.0015259327113824974,-0.052438117191941004,0.40708379273432854,0.037385261211822396,0.00010600232365892809,0.020291642846502377,-0.02475176706900336,0.12375340451693984,0.001355189169540582,0.00030971146739320585,0.0029945569197447697,0.03441774325433637,0.2036169576090199,0.03152952220040814,4.761342276251603e-05,0.019161262493141255,0.01782177221101179,0.10192719719332502,-0.0008573880183846297,0.00028816923512934385,0.025192069119700608,-0.04161521611615339,0.6020932498330076,0.0029850694146450127,2.868260732650967e-05,0.004302590619791033,0.006457273265774359,0.08653819862964796,-0.01944354305437925,2.4930042798611816e-05,0.002328248250730075,-0.0024290524794149475,0.00731888819494564,-0.01737908507222263,0.00010690906732531817,0.012145354756801596,-0.016761352930367783,0.11471776177965687,0.003704660766240251,3.374976722616357e-05,0.022093348820606644,0.0009567829367143439,0.0032123121796856138,0.0017589460349088407,6.60348292857009e-05,0.0014891648987636345,0.0034631492616774826,0.014184563446888579,-0.021272581519598658,0.00011163588803468569,0.0024617628021570115,0.02572582324389999,0.02238692600959577,-0.010588610313394193,0.0006568260652971878,0.007045528901301846,0.007560026499833108,0.02498016378412759,-0.03062990912172197,0.00012738375457589063,0.00141783016438708,-0.022062726271349243,0.07489404814034882,-0.07294830434367819,0.0018907366645348005,0.001614370932297333,-0.03701317147954628,0.30513203583229626,0.012439839008605265,3.119253621122402e-05,0.015131585752102305,-0.010061106610444374,0.024642137009405093,0.0020982168266645103,0.0013348690164666618,0.0039193057566613175,-0.04197771463034047,0.2754361252144273,0.1552865233221833,0.00010149006576105989,0.0052381306996470796,-0.004880211573141485,0.007419496412513429,-0.0027683243165757326,0.00015524213527435003,0.0020287646410919284,0.021777918347702045,0.029488577834912592,-0.0002341019251231959,0.00042390296174250815,0.0037878679287462647,-0.004444104612091721,0.01993954789057788,-0.0020689540971226467,0.0017275049789014405,0.006469237478407813,0.019437566881103718,0.07591112323259154,0.011538946641376772,8.215364812266201e-05,0.010833224323629136,0.044727559053696866,0.05889693702661006,0.026397312318986687,0.0018878160755884173,0.005428759661800903,0.06594124546893258,0.19701501393184878,0.1296502817706478,0.00013260926209515304,0.021672972325527614,0.00608017811957023,0.015839813253903143,-0.015260893099226567,0.00015560610113373743,0.012739635896657844,-0.02065561170704948,0.07271273937043778,0.011708755624961997,6.933323742272026e-05,0.01116788017789778,-0.00377026459804624,0.01241680994372776,-0.0010572585309766283,0.0028779275351904963,0.0027027755685718525,0.020255747252027466,0.09634482821266166,0.003546201646821446,0.00010458284052416593,0.004656961128612983,-0.001226789889944399,0.007421792299927842,0.00456223530884679,0.00011987322135648397,0.024948816135225812,0.026916713378604316,0.1364181802420004,0.04461476398097086,9.332510275241155e-05,0.009736893356072597,-0.03149367698517194,0.1520736969991248,-0.00423357743617412,5.204951171891905e-05,0.04077899870533074,-0.03971884534355593,0.06574317376243947,0.02250570139638326,0.000294561066053286,0.015098910835219758,0.011704679368184544,0.04952466780828298,1.6079288843847084e-05,5.8769544692051174e-05,0.001739615806696608,0.022353102440668328,0.21882281762990108,-0.002275041149848691,2.6355817282692583e-05,0.0035395866268058147,0.004866901135018235,0.013739753525770046,-0.02105728160589601,0.00012381764703256256,0.010581005909752405,-0.004357095502908164,0.0171150335850664,-0.039569587063611945,0.0004012797964640157,0.006666069141461448,-0.01914651903499468,0.08388910867594551,-0.07314730635443996,0.000130724215372337,0.0010550602953601329,-0.0032078709070645427 +2023-09-19,-0.012812371899864956,0.08265679993774713,0.0036115320482268893,0.0001639221088680238,0.002029011827463936,0.01101635476876157,0.03481244552074357,0.020127090581575423,7.593008868474901e-05,0.005368524619027326,0.06755468158687866,0.21300434588069653,0.0795603204712389,0.0001467115115069636,0.01115628244715832,-0.005959265062106031,0.006165052662886628,-0.0015301802317988769,0.0003262299040501663,0.007629266354304426,0.018143904616870387,0.03564479188771897,0.0360797091360178,0.00026633757611176616,0.010695962171647054,0.0024936528585415858,0.00601106152628207,-0.031118169437657484,9.057984262792272e-05,0.004190190760171983,0.02834892210170777,0.10960735041777345,0.0009667632235647753,7.589037979347398e-05,0.045849191766688925,-0.05168713462723688,0.47895901732081453,0.1889679093857231,3.700690091464451e-05,0.005222560931237552,-0.0021728413831913892,0.0017725677151614536,-0.028618506619066786,0.0009453006918732033,0.004398769729031813,-0.011458618278548287,0.024592191133780274,0.0005530730584417833,0.00016292844508529561,0.005985908907945386,-0.0004177191933356096,0.0002976179551017933,0.004765940327000643,0.0006860403511192909,0.00374427002492042,0.0030024288687642404,0.043996962726195896,-0.0018847931636428183,2.0336341213745043e-05,0.006337179054627963,-0.05639913198121503,0.20569096672310958,0.05791075752497931,8.145321644479208e-05,0.013089372793804142,-0.014842715910148683,0.09481485217626098,0.01570274807387708,4.4065512059760586e-05,0.007048756228064097,-0.029180994509681073,0.023411190206012646,0.03038886726568391,0.00243108177745881,0.005410297272958882,-0.07715146890900364,0.48261790492593953,-0.02440304338438408,0.00013155061322246673,0.020331000724725587,-0.039477989623192884,0.17995316478674028,-0.06703060305744005,0.0003397064333478022,0.005645890731422154,0.030242625523359185,0.18836043257274676,-0.0612516479498365,4.522626975024666e-05,0.010222756779672293,-0.01550794605832549,0.07938434155132623,-0.035053718814064924,0.0003219632052353435,0.0033563744654185185,0.0011051261831252848,0.013827650749794414,-0.22125922707165335,3.316604593670781e-05,0.007628965061129747,-0.0183531864241973,0.1899283729763494,0.0725919377197849,3.2285189303259754e-05,0.003540174363731379,0.02437929652512931,0.07271037400776872,-0.03214987191476088,0.00010800591660365572,0.0062694757155561725,-0.0839195890084908,0.613414551238202,0.0917663796116076,3.160105999228625e-05,0.00027539274998326707,0.026993824366905037,0.0716899890239513,0.08481611121006577,8.34801625937587e-05,0.008408140987755193,-0.004139776553860207,0.01789881222468135,-0.010962181617539283,0.00010575509123069323,0.008844210098674945,-0.001074821095232028,0.0012709851697371584,-0.06654210280696048,0.0004833606143511094,0.008553429942431563,0.013208132681142978,0.05523205796415668,0.012695396803193195,0.00010065519778116202,0.01151483723077061,0.015578005131920154,0.0502685610434967,-0.0074076148075877596,0.001988998995092708,0.016954974765237114,0.010361397521965195,0.08806841883566002,-0.029803161620426382,3.0253827904925957e-05,0.013552776991776335,0.011902260611074024,0.040144316053463504,7.331734188321461e-05,0.0009693411775571121,0.0016980401327539385,0.0279720451307834,0.18579941985596585,-0.05899882019720777,0.00010025487732327464,0.00571656030637596,0.0073442814006158975,0.010837670495036913,-0.0014880829315407579,0.00015994061157328465,0.005950461266948737,0.001335463701884362,0.0021381388333154274,-0.0015255682582798716,0.00035850903148689693,0.001352722303074323,0.030629133051904015,0.15114909672531332,0.08578933299243476,0.0015706502559410074,0.008489430847780182,0.009515344787092801,0.03588687072423016,0.00522890535702684,8.507056352866051e-05,0.003282254014738859,-0.045730664672245326,0.05859397951299408,-0.00756232190748266,0.0019401339287345703,0.009623039787319054,0.0037378144525182706,0.01246688365785577,-0.03518070200307649,0.00011878890221049116,0.0009024796160555738,-0.020996385341258767,0.06165786849807125,-0.00239417936096611,0.00013804364036301627,0.004432698433912527,-0.030657212308845293,0.1226197464247583,0.03583188087386942,6.10219628021046e-05,0.0152951754760769,0.035341447262838076,0.10644092021950438,0.006993883577551788,0.003146978440951953,0.01947719010693795,0.013083972762898058,0.06616874478938393,-0.014278159395700775,9.836198984621543e-05,0.011757590430269546,-0.022973776718574274,0.13074472496985795,0.015087942932552775,0.00012742921402603624,0.01407367968665296,-0.03365443331847842,0.20280862535748695,0.05062876585823397,7.848823436978908e-05,0.0018395296799790534,0.02518426088379221,0.11427505118969228,-0.014807735975262505,5.538921114469354e-05,0.006831848199641377,0.013441978627124778,0.023683204062452914,0.008791706516229757,0.00027672738400730175,0.004182189015154389,-0.009905949609094043,0.039666169240779904,0.05946316805672508,6.209980404747524e-05,0.014047886297301332,0.033880902727462525,0.4133870771726989,0.0525255560300893,2.11460552499947e-05,0.0023030279370560053,0.0022079098980627037,0.008222577806795188,-0.001216222991154877,9.386038239861818e-05,0.002935894992752067,-0.01595341987307825,0.06311535789008946,0.03444750734400457,0.00039842512460575057,0.005119946749459521,-0.049682146297082175,0.2230640886627568,0.009821815140564148,0.00012756821743184878,0.01679178822179982,-0.003798415526998048 +2023-09-20,0.02575567492602812,0.14431349527656726,0.006926480436400698,0.00018873505564531636,0.008399816865387195,0.03376662417181474,0.10404022761007657,0.059841093315581,7.787478793772428e-05,0.01994756710966544,-0.00887566536021689,0.031676993063601146,-0.03016406958192177,0.00012961467482311775,0.007254485560811529,0.009087433887563463,0.006682680169197832,-0.022298882506000206,0.0004589426766327974,0.003857833443194826,0.01983813552966793,0.04291312445098844,0.026242772789198177,0.0002418847503696001,0.017511512122116425,0.003423746542560551,0.008971071436973182,-0.005109235959453166,8.333050841036931e-05,0.0007469655378910168,0.008423699129914107,0.03349172218960176,-0.048956632314047135,7.379980627442953e-05,0.017691442481925827,0.02097690356325169,0.15849790384420875,0.014328495009027192,4.5385431949110676e-05,0.01266341576520617,0.012611660777244939,0.010344327812571778,-0.026553801618200118,0.0009401881919731532,0.014803825531881004,-0.019934032937550545,0.052991396091541104,-0.03956430137063824,0.0001315381400037901,0.0062514892878917615,-0.010932024968186318,0.007708243463799349,-0.04311830003468785,0.0006932175511997414,0.010322586519679313,0.02796104558667816,0.34650617841481923,0.09505381002712548,2.4047238694197873e-05,0.007620551631437535,0.02434621222848926,0.06877432155909886,-0.02511488784331801,0.00010516134365127556,0.01019736979564822,-0.006652661952981839,0.04768835279342851,-0.0029651027128470395,3.926855789739844e-05,0.003617877517388232,0.013850609611670785,0.014168117243505456,0.00380194123116287,0.001906688376715193,0.009962445340490818,-0.058666510171629174,0.36363011590651295,0.023986523252798927,0.0001327646692869688,0.008755755677136674,0.032761056954302,0.2046691590333849,0.015784135324194454,0.0002478641584168295,0.012639444366579215,-0.03467785628649564,0.19302095609316677,-0.026491332350384287,5.0606783610174886e-05,0.00017994763604826372,0.009173472970179916,0.05702256694456685,-0.0007483942975730952,0.00026513913149648694,0.002764251595744708,0.007763859753276465,0.1118807059617355,-0.005208827258545697,2.879736260232987e-05,0.004825772193468216,-0.008825486537773748,0.10823947145091198,-0.016308632587933355,2.7241731179967903e-05,0.0051501958973484765,-0.019541971454479147,0.05532930149646564,0.003307533516742541,0.00011377214414676514,0.008265173600512845,-0.020050170546516692,0.165093811085136,-0.031618114547858366,2.8053022116651325e-05,0.0020413144996750308,-0.0072476965220891485,0.025330513610930645,0.003943358560274678,6.343564888508632e-05,0.002652021059843721,-0.005533309252084201,0.020467084847559287,-0.0009382783718131432,0.00012361681475481234,0.006235908402934542,-0.06504753703288903,0.059623642319623436,0.08565423732645047,0.0006235738802231652,0.0061030196669197385,-0.03001681799118826,0.11895894663503842,-0.20013392109978548,0.00010620710012044042,0.0033584161554533593,0.0019536419727022238,0.006256054713704082,0.0036670613901678465,0.002004304094324439,0.005909482368504769,-0.024694918039176342,0.24569269423983262,-0.015059526089256836,2.5846250051334445e-05,0.018115431650698968,0.004891096054527576,0.013704913460937206,-0.04683434240468309,0.0011668127445880168,0.0203174316702236,0.010748756457767421,0.09126960668138963,-0.0016870387023713513,7.842557059401535e-05,0.001216920961608288,-0.03432716240648568,0.06204586699257403,0.05247784063656903,0.00013057812659715714,0.0017843451587656553,-0.011948062050127621,0.014877131892679477,0.005525473051200356,0.0004609800916623489,0.016445055142391043,-0.03632041973188576,0.1558750752049893,0.04008383271974931,0.0018060281859283123,0.02277204876151023,0.02031780429384132,0.08470377034509763,0.009326999844754812,7.695988340196347e-05,0.0003270747840808559,-0.037707166408750596,0.05501788330056583,-0.04935188369120109,0.0017037160376915865,0.042833097322060684,0.01741787234739344,0.07243880486217252,-0.1194433456366326,9.526642398315447e-05,0.02340940027289632,-0.004926443909719568,0.014733458606669176,-0.02088803388525413,0.00013554678192678608,0.0015692083367902173,0.021592972474652784,0.08530945350005052,0.01672162615640075,6.177733882868004e-05,0.007068703763947314,0.029904882194334913,0.08438482684249689,-0.0998179560649008,0.0033588900688990195,0.005247514682670665,0.00676038451538782,0.037108405128401474,-0.0001830027191736589,9.062325972099168e-05,0.017940705405653064,0.01448086666697437,0.08212850376207764,-0.009071105382686006,0.00012786786927121476,0.005827916781436477,0.012156219766836859,0.08564126037496378,0.007272802691608526,6.713734944497508e-05,0.008832594022702814,-0.034882967348385516,0.14521142663930314,0.018962296828448723,6.037540042889591e-05,0.02939039467419364,0.01887999588887148,0.03711066323807425,0.0008573089118495445,0.00024804619727728574,0.009225898669826144,0.018571270949676952,0.07519058746879177,0.009977099514788389,6.14175551035316e-05,0.008933354104799372,0.019188683825164005,0.19799994845858404,-0.035135883068133304,2.5004109678577635e-05,0.003128193342275476,-0.0054619914667584655,0.01569125627337532,-0.08972561534594299,0.00012167525536485843,0.014723767597039698,0.0077776243812861055,0.0351114155358354,-0.009512408914702382,0.0003491616984857179,0.004777930088733118,0.04218489783698121,0.16967606767470728,-0.016330309951437912,0.00014239941561403085,0.008200504575793303,-0.0004838664654119826 +2023-09-21,0.014858332147876255,0.1014436312573103,0.015265131532764263,0.00015489302435925005,0.006540398574084636,0.048061480493964685,0.1424845590607166,0.04885381220230955,8.093565180327792e-05,0.007830922014503845,-0.025925744239752215,0.0821175912820353,0.008361351977780764,0.00014604686364217022,0.028150817040311353,0.012955632350393468,0.014253827205601474,-0.0008925798007402847,0.00030675735321503123,0.009638165053691257,-0.0007938306695981409,0.0017739492625746453,-0.0010524261665504383,0.0002341447647879031,0.00987190787574599,0.00736116053880354,0.0208871726283765,0.0025088647302889244,7.695084142609719e-05,0.015024114408652822,0.033479202040146344,0.1188001015294158,0.028224091539935842,8.268907650890883e-05,0.0017246272987628307,0.01972940860907109,0.1841971855805876,0.006809142525279124,3.6730741163921214e-05,0.0123389517965513,-0.02663396976455485,0.021936687893210672,0.05818356047828176,0.0009362883782430879,0.00040258445384409825,-0.03843572097983322,0.09018357655243311,0.024919479614009296,0.00014902854576440315,0.028927636949428112,0.030066155637047773,0.020014206385394456,0.16889952961933985,0.000734283696589085,0.000866780776782765,-0.0017774339492418985,0.021539335111240857,-0.03996705237905057,2.4591440388434198e-05,0.003454287287311921,-0.028301931237786102,0.08809750199230133,0.012184201517697026,9.543408527168175e-05,0.02361067507715517,0.002016973369718779,0.00942091129604691,-0.16948579561486712,6.026554215902276e-05,0.00021105943291463663,0.011838257513918657,0.009647935957037874,-0.04248749067910917,0.0023931853929762686,0.000676663031098173,0.01662743164052771,0.12468165637288407,0.007675903056860783,0.00010974246618024935,0.02699200393872756,0.006232988964711169,0.02971986650204797,-0.00018000957069881992,0.00032475641279483444,0.03050938711489985,0.01850198716980768,0.10254233438331468,0.008835879625990533,5.0824853033063816e-05,0.00020869647468826653,0.011773287256673133,0.06197829871849874,0.00018688230738690665,0.0003130724825906762,0.004256381027425194,-0.011509301144333888,0.1548532116699553,-0.00068271367586846,3.084316717555689e-05,0.001398541872851937,-0.012827454850162968,0.1311090804263863,0.029793496787572444,3.26880815255325e-05,0.01245499048073838,-0.04324885994494322,0.11586544941601304,-0.06219119227321542,0.00012023847768691442,0.0042321756677166,0.03172205894062387,0.20775850670746815,-0.03328987419866418,3.5269144770110495e-05,0.009827995058802776,0.009704582107217818,0.029351011839530323,0.011453737942466647,7.33045856902537e-05,0.002644853506905656,0.004360011767851079,0.016720458046067383,0.004002831545313007,0.00011923069804581886,0.0057199515120289705,0.01426537467930439,0.015159650566724449,0.004177163352853038,0.0005378603788421415,0.01996203461393465,-0.007916458845804898,0.02665802170881766,-0.0367537420198048,0.00012499396656050858,0.0005194181375381658,-0.02870787002096684,0.11382010545836949,0.03524183633497757,0.0016188296949698332,0.022698759163159818,0.030180391695104496,0.27531014592623604,0.007869940627177273,2.8189336287965818e-05,0.024417234617986935,0.07683592421459304,0.20320162039733403,0.07921101784982587,0.0012362560286228376,0.0035513508592865005,0.02006681966560355,0.16409119094986174,0.0021894290720712232,8.143646696373376e-05,0.004950727114979296,0.011900423899252532,0.01580293191888477,-0.0024004181248009474,0.00017773385005210744,0.006949681416287877,0.04096757236926946,0.05695034380296813,0.01760747299423439,0.0004129027669294427,0.00801410352818186,0.023175312064281042,0.08644894863995695,0.03805182522288566,0.0020778596808788447,0.02019534523227408,0.00746139489440918,0.03501823651722625,-0.018106561900236903,6.8362214772104e-05,0.0010347610919708874,-0.04641212814415498,0.06980652169200802,-0.047365050742190454,0.0016527709691422502,0.0011568282352141354,-0.0019308440044658245,0.00640985725254227,-0.02327073126388221,0.00011934792331285641,0.0018975421880445327,-0.025400541413847618,0.06251315476134142,0.028703027024304946,0.00016471453837281597,0.012111959231935905,-0.0265239774231828,0.12007238029050604,-0.00186999130264639,5.3914980754746526e-05,0.008591107957608176,0.049778948304575285,0.1220404420155189,0.012250326040892986,0.003865983560370603,0.01647196366013003,-0.0031457083890636815,0.016784851519299693,-0.02241501286709091,9.322696101709617e-05,0.012784629354720776,-0.006319758424596782,0.03401391502317887,0.006246685664327292,0.00013474251196913276,0.012073166555279262,0.01771305548501135,0.09701270552779337,-0.004468369461863719,8.636018524512204e-05,0.004254724230959325,0.00905259282250622,0.032368252230275785,-0.008627578164322913,7.02912282037669e-05,0.007793142235467173,0.0020530806179352413,0.0037975496844844035,-0.055743187517772505,0.000263591822318086,0.015972610858776912,-0.011866080658735859,0.04761237833643531,0.05956714375609103,6.197289668558307e-05,0.003759883434488249,-0.014830660080164362,0.17868740742613484,0.026970868794981305,2.1414001004728254e-05,0.005029433818937407,0.0011892717138787365,0.004392235527471348,-0.003864774064168751,9.4646472780694e-05,0.0014367125689833116,-0.028866062660369857,0.10487771428333574,0.01713696199540226,0.00043384271295467884,0.003116210106186802,-0.024814056254748043,0.11515899609097892,0.0012481366819653047,0.00012341606300630883,0.03303529702739946,0.003232502013400219 +2023-09-22,0.03990458070205522,0.2762883754150145,0.07893622341036398,0.0001527378675754814,0.009701036434988408,0.0012320948071967931,0.003976398148431149,-0.07970966852321115,7.434722974154007e-05,0.017040985623055522,-0.027069389527534272,0.09220815056101857,0.01714628412069866,0.0001358020590233495,0.009411562239968094,-0.013393853381654318,0.013519668982496687,-0.019570291833162386,0.0003343546276416992,0.008442658697202083,0.010951321137811191,0.021722468165477554,0.009763253252384639,0.00026378804991855154,0.0010562024686759284,0.021094683541191882,0.05086530229623121,0.026773658016460186,9.055201617522892e-05,0.00846569114727784,0.03413245432047904,0.12200147390627221,-0.022902766972947363,8.209038555788153e-05,0.0017652453226900896,0.0010012576773813999,0.009115129302513614,0.0004092749841545007,3.766878739404203e-05,0.005799653472581659,-0.0013816630523545272,0.0013041131626678618,-0.03548589120371858,0.0008170180520021295,0.0027784787799411993,0.0015660957451776147,0.0035607527768886133,-0.11014587858010544,0.00015379363944281318,0.003886825025156069,-0.008773778599238358,0.005438803042462306,-0.0031255180544445802,0.0007885108932872836,0.005026844298320059,-0.0007738119442298898,0.009882209363861374,-0.11826572291121726,2.333480456231716e-05,0.00030909596617078705,-0.004024938189413569,0.011680048064018556,0.0002367070444059503,0.0001023683311438799,0.0017151199315941995,-0.004327349519969296,0.021279529762928243,-0.025939216071981012,5.724291828002677e-05,0.00039996436147114473,-0.0005875708555757505,0.000577115488063524,-6.944015565572308e-05,0.0019857313342892024,0.003657607404650177,-0.08847703376209848,0.5734762777077792,0.06238333011914398,0.00012696008495404,0.00033267089068297786,0.02325297275019159,0.13740460553184283,-0.0003165018810909948,0.00026205076080994857,0.004846060671466887,0.011906183869921007,0.07173966878243639,-0.002949216973540463,4.6749198984611844e-05,0.013401759292162165,0.019727742489175124,0.11376658157399286,-0.010693748160714805,0.000285791619233724,0.0010150815761535532,-0.006185518040404144,0.0791078061361029,-0.00940505173248982,3.244792792006755e-05,0.02262838604946427,0.01118823010942825,0.11771432105030084,-0.005290541002794121,3.1755122833348944e-05,0.0034394360416453297,-0.0238851841799608,0.06840847067112345,-0.006251283328143507,0.00011247123624871557,0.006825810971351401,-0.02071091211035992,0.15000894503275564,0.004740565172211092,3.189146316816943e-05,0.013353468891292868,-0.006764075495579006,0.02103035739527193,-0.004920302773053172,7.130815096807073e-05,0.008841089570685516,-0.013445875394919985,0.055069711059195864,0.02423978450863791,0.0001116412987362386,0.004258475331392141,0.020873026017122365,0.017940168319626033,0.006829648845079784,0.0006650196261071714,0.010529173505270533,-0.028561348471345768,0.10035554458373892,0.08672418768512512,0.00011979076684574897,0.0011285931390281512,0.00988977719898418,0.03433909575279739,-0.03897311930373992,0.0018484888176889304,0.0067549242609715905,0.009176305889225396,0.09186611456912705,-0.03298169923512561,2.5685896543581554e-05,0.0035105426585249747,-0.028543083568073568,0.09388706333030511,-0.010970547800220042,0.0009939542699056445,0.0164686634395725,-0.007274055834689192,0.04789798252577269,0.018754186609787404,0.0001011311748118604,0.005215293490021645,0.016503572343084777,0.023251337853678448,0.00961468472342196,0.0001675233699429021,0.02975582405156496,-0.010428550249512364,0.01602158641826782,0.008594633806826275,0.00037361330626711276,0.0012207055424911313,0.006000924087367997,0.024837695422195803,-0.026286217978070445,0.0018726524233074976,0.018850843612065526,-0.04427078478561957,0.18728660643040881,0.030106397029647253,7.584044467167995e-05,0.007102435298057314,0.026088983025868945,0.03417766099797385,-0.14675417189496237,0.0018975446518378315,0.0044645752990990694,0.023891888255751198,0.07974755902716314,0.008839392966489404,0.0001186995609661474,0.019704926365822065,-0.04132914456326492,0.11191040316590392,0.016470098410928363,0.00014970845624645693,0.008654017702018534,-0.017157179071527986,0.0834145045984039,0.0013676195498949673,5.0201678057395045e-05,0.021002806980200555,0.05493012376202572,0.20217205525042542,0.003131266718410901,0.002575179517476639,0.025284277465217993,-0.0263385619051086,0.1452730426843047,0.003278098932594623,9.018775919928975e-05,0.018721655431925843,0.0074496307312850825,0.04210998310627333,-0.00358541698657997,0.00012829521623461184,0.006810441337547886,-0.0296262171326333,0.1861649027515395,-0.001978406020001677,7.527089715255346e-05,0.0014958481334816532,0.03772868266823538,0.17427509420083442,-0.01853500300503241,5.4410624480762006e-05,0.02314060885539697,0.0002963503453901497,0.0006052808471754533,-0.09163684098861145,0.00023871400545774586,0.000789847778049922,0.015913306429672484,0.0663151917135443,-0.04243870794033982,5.967078786674245e-05,0.004159021039899374,0.014063025933265865,0.14659500193255096,-0.008316151201659037,2.4750894531174674e-05,0.0026730748832455614,0.0030622245787208903,0.009571979746847429,-0.0033029212051320497,0.00011182637104056807,0.006867933172145549,0.0035803430021027587,0.01349838562870144,-0.02578912535138085,0.00041809095728070455,0.0035582840157027786,0.023028405673491164,0.1316306316209761,0.009551292306124337,0.000100202533488954,0.007576790064169017,0.00035006022229958295 +2023-09-25,0.05282446166652156,0.35243339071318547,0.09266698222916207,0.00015850560187489164,0.016143387342065777,0.05299257623843908,0.1607050691232439,0.10511467663485209,7.912176814447686e-05,0.00414369193824428,0.03301092249127938,0.10490570721797728,0.004543499493681144,0.00014556459268253883,0.01533861032469753,-0.01403481859120158,0.015946170260864718,-0.03525866591417285,0.00029704227535549775,0.0043052086997214176,0.021548106331128043,0.05429359777113849,0.010023272228272867,0.0002076625874985651,0.0010642737018954054,0.003738992869233252,0.009620052280670888,-0.019441175710912903,8.486408723419394e-05,0.006215276867310186,-0.03283532544097025,0.128986896481563,-0.013715456151889913,7.469397755695827e-05,0.014836124259072386,-0.018743866380969917,0.1767875030028019,0.01579425927504638,3.6358522992705316e-05,0.025438006199172688,-0.013570323364637434,0.009197512527621904,-0.0053764643278354654,0.0011377965041903593,0.00309660581728817,-0.01611696525518032,0.031463169965017856,-0.040121625248947676,0.00017911942222538117,0.010545993141363294,0.006064837225316837,0.004509509438392849,-0.05748708610021315,0.000657376549206627,0.002453349777741317,0.009778776244663582,0.12510582916740617,-0.06596728429380368,2.329323201887749e-05,0.006296977998828894,-0.07034359300646582,0.18492024428039514,-0.022973547977248328,0.00011300330014973146,0.007924490593825934,-0.015145006414022078,0.0719434000853113,0.023474643706337533,5.9257090088115074e-05,0.0072455430204848605,-0.027906532156434464,0.023428967385095468,0.04194007112792509,0.0023231416786928106,0.007004691525172498,-0.024888542922299424,0.17452019153857776,-0.0026504375116979846,0.0001173561622211379,0.0033940321934874205,0.06564376430617773,0.38611274306926346,0.048079337062994,0.00026326163507683665,0.027056602740991646,-0.04377332250895164,0.26743061574658883,0.0477141499969369,4.610620146834301e-05,0.015083167083513633,-0.006220104626807795,0.038060627343881666,-0.043819585286795436,0.00026934477491681423,0.031240250285643877,-0.06694837474974633,0.8771916478438407,0.016117196579251886,3.1672021374205375e-05,0.02648605343664873,-0.025650398633110163,0.29848355613821703,0.0972578481813616,2.8711469283565902e-05,0.010833427406204887,-0.015637032037172916,0.04429750937281154,-0.0008985122627063578,0.00011370976789654537,0.008062472908598038,0.054186818476306776,0.3518576466002029,0.04337753436299844,3.5572880636726984e-05,0.016379099145728708,0.003896006650921732,0.011730001834861283,0.0024596921313922416,7.363749255749628e-05,0.008039704574301924,0.009583385790471468,0.04088793545487134,0.01564798112408529,0.00010716979124745268,0.0012855767557898576,0.024660856807426478,0.024967121686075226,0.009529673288696828,0.000564566682400167,0.01703983707689804,-0.016999295044762476,0.06027964586643948,-0.025510868033269646,0.00011869877269954474,0.0021766372850031517,-0.08028134759698885,0.2813334961210649,0.16384955974169688,0.001831523036109335,0.006889846931347799,0.0420372117996301,0.42558015791986253,0.011882535781240128,2.5400059079999e-05,0.005742357258581863,0.05725455130890052,0.17103500498604327,-0.00016136840897054604,0.001094450894848762,0.025003343550910658,0.0013220043064290953,0.011364718745804617,0.0037187663687778265,7.746398251868954e-05,0.006665503833966376,0.04806462216415879,0.05635045641677314,0.05878013457605666,0.00020131376953466828,0.015369609397967835,0.018507046911601755,0.024956850233869583,0.004218944470607103,0.00042564865636133593,0.005154270751735995,0.03047121077707028,0.12420094176275343,0.04155042699314385,0.001901582463041175,0.014933008961007483,-0.0033757487343607797,0.013188251747453307,-0.05893017517677905,8.212459771949514e-05,0.010026524151639,0.05802761468490751,0.06589267191604688,0.08179288052776093,0.002189146328942809,0.060032693116014696,-0.004068989015259567,0.01438572553126124,-0.019939598021156125,0.00011206520344601883,0.017175716356511782,-0.02979322778283686,0.07052447535438104,-0.02203676632712716,0.00017125295303009995,0.006463997557862158,0.022827995634042836,0.0899999964482843,0.014001523179790679,6.190692228988555e-05,0.009783169792961295,0.03280102578029317,0.09561396177329241,-0.003727240739501861,0.003251503081169158,0.001548904941019962,-0.022283839086586446,0.1082527644079988,0.02142093019955255,0.00010239802702345622,0.024478254060138392,-0.033535174598141745,0.19055765576177772,0.07118518089653281,0.0001276247647941491,0.0033229237061241377,0.01818333402295631,0.09969314575693354,0.020378488959200327,8.626942736198888e-05,0.003805978653122305,-0.010132364870251686,0.05396173935371722,-0.012593202790685796,4.7192422960057994e-05,0.010732545902421665,-0.01381035638774228,0.023088120539169414,-0.02403787157098642,0.00029163906619913033,0.012820103246431276,-0.010244864544325761,0.04322932380626414,0.022139231117391526,5.893077521744108e-05,0.0008281245077378715,0.02132994706320407,0.24823670306894702,-0.12083751598701081,2.216945763835532e-05,0.0007917033317657587,0.0011027253607811748,0.002951423660452863,-0.0016013885090223686,0.0001306004798817954,0.0007509363982174937,-0.010778629555757797,0.0440901726583032,-0.1271193074776622,0.0003853449905341709,0.003181027369079728,0.07226463861551831,0.3935199920869411,0.10256649805499975,0.00010517943422470184,0.005974827159672079,0.003353912695069157 +2023-09-26,-0.023586539679407013,0.13245328261338385,0.031500260347628775,0.00018831637658904823,0.004430472585276247,-0.008306151099843492,0.029904752297036218,0.0038960275324214744,6.664539469665547e-05,0.0005553160026111916,0.028804513844857448,0.11057966744330303,0.006025504380246602,0.00012049873139540953,0.0041822182966562375,-0.0003827415671281183,0.0003586743385155689,-0.010157024569345242,0.0003601415098973453,0.001337687935296331,0.0026587151614787,0.006265383041209102,-0.0054200705356897685,0.00022203526500355275,0.010323720967675669,-0.002597548189783129,0.008004337848185172,-0.008046149138555378,7.08573558686679e-05,0.005568161027420211,-0.016590753031656316,0.05079366117855421,-0.0061585371378106634,9.583991857009666e-05,0.004117713942774555,-0.027579047408607203,0.20349424154033402,0.034828633802773235,4.6475679891067075e-05,0.003118964863442532,-0.0021552617409852145,0.0015451854064164364,-0.003978091884149031,0.0010756332247476032,0.0025502211140121253,-0.01256752967294957,0.029229938948714056,-0.016503288985713824,0.0001503432372564734,0.0038961648353209397,-0.001274408201567374,0.001046070646549508,-0.0010372791475822898,0.0005954864726915856,8.814152241646634e-05,-0.006327158958028405,0.10294836157542356,0.0024528214019273902,1.831521814146457e-05,0.000742590122440536,-0.01475567118017405,0.034651789772631086,-0.030507750496864564,0.00012649819704605957,0.010267000040347234,0.028474696167671648,0.14328542947903417,0.42176239843874164,5.593953955335382e-05,0.005283104258877704,0.011269266471283476,0.00850399690497654,-0.031775400941976194,0.002584613017812841,0.009797042987874226,0.03622456358781132,0.2483482922339175,-0.06941100583508819,0.00012003118451381161,0.0025161948502032032,0.007312458110333938,0.037574071072004965,-0.057545670565714795,0.0003013584480406139,0.028851689413829134,-0.012549700625269342,0.07298408191439452,-0.014877838689304769,4.843576601130887e-05,0.01654754293482801,-0.021406733734232738,0.11448181073467668,-0.08493221345025712,0.00030817735588487894,0.016008682697592102,-0.038110469775777936,0.5492694201929115,-0.12124335681679882,2.8793145544056882e-05,0.0010820637510806186,0.020110289788612137,0.17676650481358056,0.025310691472107905,3.80101919815956e-05,0.0004658194180332017,0.006528499410635866,0.02146279633534601,-0.006768693390778006,9.798279428737258e-05,0.03260076329950326,-0.04006926812946495,0.2918599086996582,-0.014218458661187774,3.171241702238835e-05,0.009410437463628817,0.012113029496951448,0.03605100244988121,0.016363470465966302,7.4492544950572e-05,0.0058566507887092495,-0.004533778407549603,0.019446215224970687,-0.008337876823013454,0.00010660407282644442,0.004346327170490812,-0.007260857656349556,0.007335614483041342,-0.0006105074864640411,0.0005657531555043063,0.0007806503138582028,-0.004244113927608293,0.014899268638106214,-0.05870189423005542,0.00011989693796487624,0.004570274226619157,0.04029072760269336,0.12673410038457145,0.01877672404030248,0.0020404727470805227,0.046830057941020624,-0.005974359834429475,0.05209250903090472,-0.0019315375525456237,2.9491597369442486e-05,0.013877236520462624,0.017164095512073468,0.057951905536943925,-0.022171248865904877,0.000968332418287662,0.0072072037070835355,-0.011221402046274505,0.09342497963761422,-0.022683173623482447,7.998522192997188e-05,0.03621892820744567,0.014835227590499713,0.020717559484676035,0.005306719450580654,0.00016900556494561138,0.0038512797054480003,-0.040030758153013955,0.05743747356174184,0.041298466081664605,0.000400039062090277,0.010173623919662695,0.014496585617344203,0.04947084516648402,0.010777519165928359,0.0022712593911700303,0.022979074659643495,-0.008802793977778512,0.03261516382305225,-0.0027191338183073866,8.65947063425506e-05,0.008243323647109578,0.043282994424277396,0.054967686967316395,0.04021144407037985,0.0019574335520022063,0.01383696840393918,-0.055503684443863166,0.17115822962273738,0.07034173800581299,0.0001284813419993075,0.014595450856157759,0.01928429767484915,0.054538679601961966,-0.05501178632155765,0.00014333742010717965,0.02850255323691121,-0.003900244048524659,0.021578503466579795,-2.9987019831421386e-05,4.411480725678359e-05,0.01136111724702659,0.015660966363268577,0.0578889888052544,-0.0015749180620211604,0.002564133609679334,0.0016513445770804684,0.0020036885393283793,0.011489080908584123,-0.01305433286126895,8.675319874736339e-05,0.011731523072726234,-0.024625378049841454,0.13802558110421514,0.03336020890573688,0.00012938505258843608,0.019659522844151293,0.003186124283317039,0.016974056846951,-0.035884919993655444,8.878217066520047e-05,0.019515523649628552,-0.024607150765722032,0.10293169167651835,-0.10121506445747298,6.0084107518390895e-05,0.012999871124873216,-0.01988698882246163,0.03777608910190782,-0.058316227496278836,0.00025667373459153524,0.0022601772498954714,-0.0034707856127656153,0.014320161283517508,0.004469941462902568,6.0269037399222725e-05,0.001450609644388339,0.023530108099759785,0.27837748704827375,0.006151921811274892,2.180826409450455e-05,0.002780175194990529,-0.01528382585683192,0.06086070451569552,-0.13149993665585186,8.778171670275973e-05,0.0008166708455715764,-0.005134614103706916,0.01621984894373559,-0.04990959020923018,0.0004989867056657639,0.006397328709264557,0.016589270734593476,0.09326895935884624,0.004991890417394232,0.00010187367181435067,0.024341754204240233,-0.0019675937071642765 +2023-09-27,0.001922769499102268,0.014657012285641207,-0.021549002322576956,0.00013872935156096492,0.012212807777565749,0.031699827026191986,0.09741822243628967,-0.006157836624557106,7.80777371608654e-05,0.0025981924883316737,-0.014897577256311476,0.045880778516460094,-0.06907528983679806,0.00015020419851968287,0.017811987033671012,-0.026983103420620484,0.026827365634786257,0.0471643159490681,0.0003394546215875292,0.008428865579483198,0.03415798870679968,0.06491144329516645,0.04085093483187665,0.00027533967611212005,0.023707289164721885,0.005617681642564787,0.02089996764130886,-0.014306090526348953,5.868920815032897e-05,0.0006527711003081958,-0.0004419803904707641,0.0016153539166679526,-0.00025811723237064495,8.028329109158132e-05,0.007899309300615368,-0.01867577481949456,0.20405271328493604,-0.002309015404777638,3.138592042996252e-05,0.004633183009657067,-0.008355966893322622,0.006845738216164061,-0.03707762262687857,0.0009412851555216386,0.0013762339773374906,0.0187529040542485,0.04485652905710828,0.028088808014093254,0.0001461856532065556,0.002320423067627971,-0.004694748922850378,0.0031677228247096647,-0.024193411163247008,0.0007244185378147825,3.900524283634299e-05,-0.0012208783680833358,0.016034627284219546,-0.0029919251695701855,2.2690095239756214e-05,0.008336771790035809,0.029574565595728755,0.09588166032419491,0.025364586203049298,9.162919397331461e-05,0.020023142655316795,-0.010869807557631806,0.062389353902978534,0.0032216660347003613,4.904256602703866e-05,0.0010417810885618313,0.030878818663519807,0.027102892455940556,0.0384878373308267,0.0022221225564350686,0.0039019599259184244,0.023352171165248813,0.1397221282233826,0.016219525898342847,0.00013753530057540164,0.0418722564214335,0.014674114228083608,0.09165606651867879,0.0020212495719752308,0.00024791277811549644,0.011043050567190807,0.01745313358294519,0.13904492710587427,0.0009009627125265333,3.535731029828303e-05,0.004280613467330915,0.00606012444638967,0.041698322871589776,-0.0033260700435807965,0.00023952440074406954,0.0010653953689141451,0.01202770838896794,0.14580502777397797,0.017776170259782467,3.423265800916052e-05,0.0015722878047128518,0.010821356518000038,0.11270116122248555,-0.012622937390730705,3.2080049052050356e-05,0.009260892115138534,-0.027096548649205902,0.10035623918874881,-0.04771648082814248,8.697458299519158e-05,0.03453896482984863,0.019221292615623303,0.15510616253331197,-0.04087319525509177,2.862502754131384e-05,0.025813104280908522,-0.006603569989367116,0.016405426340434855,-0.00016433459560376008,8.924186675650143e-05,0.002362453297057315,-0.022655149866289942,0.08350399756477847,0.06490456081321022,0.00012405328473441844,0.013817947719850203,-0.03387925723416477,0.03278822304760056,-0.0838273036851407,0.0005905974410645597,0.006636378248614395,-0.005182417673948063,0.01776748841647743,0.00014012793660268824,0.00012277003506105773,0.007144102406269715,-0.030044292128789406,0.12933785001922568,-0.12128537811973883,0.001490924025987907,0.013238838577610459,0.03102449448177609,0.2692073032737806,0.023744281564239342,2.9634668360645055e-05,0.019291017926510654,-0.002995967925233032,0.009061067399917395,-0.0608078635078778,0.0010810083993550712,0.029386822249984904,-0.00552220820805218,0.04153492280113822,-0.035057741152063046,8.853704293216513e-05,0.013837986712316513,-0.017216173300554236,0.024968414113448273,-0.01342938643925947,0.00016273877900683755,0.01566566226121962,0.0011450201410004384,0.0016275620206298751,-0.05506977639772864,0.00040381225310012357,0.00017195794885026337,0.008863105556603107,0.033729565484847054,-0.020637697882038657,0.0020366927446185735,0.013631249652320675,-0.04388081086547429,0.15691806793397453,0.08040857629330579,8.972057793538389e-05,0.003373213070177582,0.018736250572364364,0.026103764539934692,-0.0043162286961218885,0.0017842542269573469,0.008148931598427308,0.030086719388169432,0.09522569723143304,-0.007133048249906993,0.00012518050833048216,0.01791569014818169,-0.01612973806246326,0.03735819756723357,0.009160346597167647,0.00017502568109131086,0.025555282933810097,-0.01948092021701413,0.07978325601457244,-0.03926339741551027,5.9595248706105916e-05,0.008897673342245319,0.050120111061310736,0.14259022477436212,0.010926654179589549,0.0033315039230113652,0.006210102537740054,-0.010885029585569524,0.061001855599320635,0.004435957625883224,8.876201212678387e-05,0.0012115040610899148,-0.000378980957649345,0.0018369518288123576,-0.10224613724817597,0.00014961681504772233,0.006556700414696887,0.006422751381876423,0.03750664809128639,0.0014010701305646241,8.099562412514473e-05,0.0061082111617935565,0.06222682238143813,0.29765048459310106,0.07503225735335217,5.254343065132061e-05,0.023441598704731694,-0.05436245272626598,0.10974173368149634,0.09326069976087126,0.00024152195768735525,0.021464928322159037,0.00236260561910756,0.009188932580596934,-0.05041597900221063,6.393527585266458e-05,0.0004678438602611828,-0.002877282410796478,0.02592223754343359,0.013187269405988144,2.8637908044460916e-05,0.018996299865721964,-0.011470730281035381,0.038492482920415655,0.03594167079074461,0.00010416554892720763,0.006946431004107363,0.0023328952997249863,0.008332905237659624,-0.028432989293018893,0.0004412927332481377,0.002889999007509283,-0.01575140925367673,0.0774746371284302,0.00014474265742877866,0.0001164478999328132,0.0074511983187439046,0.0011942386881609048 +2023-09-28,-0.02695685683663819,0.18176315703884352,0.04139651595917173,0.00015683752446618763,0.01774549772451506,-0.027107615970663215,0.08341699445810824,0.031003193211118482,7.797355101476872e-05,0.030290978290344155,-0.05587417464538885,0.18248475571140949,0.07610787304259169,0.00014163863571867651,0.002719849489638508,-0.008163133627465295,0.009337232894793383,-0.0005046260944324838,0.0002950574404733983,0.008644804893907211,-0.024760569407862858,0.06216705807636979,-0.003729473928459437,0.00020840017736707865,0.008203732746975929,-1.4543149749622153e-05,4.467458639869778e-05,-0.08163925107748535,7.107955094044529e-05,0.007023640962750015,-0.022578926005082746,0.0871078642115164,-0.07550678707546842,7.605640089283338e-05,0.0036167233271956205,0.004699164946042407,0.043129020937803894,-0.054499876125212385,3.7363685218050684e-05,0.006546769592020634,0.0006997203948615387,0.000676191568756058,-0.08331347044994593,0.0007979938931390722,0.004832491675208622,-0.013582787733313586,0.028671197733993493,-0.006775357731571004,0.00016565515845960079,0.01315625861292793,0.015820790277600943,0.010188922010047298,-0.04413851420759276,0.0007589694477631048,0.0032948027907858325,-0.0036041779776768384,0.04768874741476066,0.006125122373947816,2.252231885721115e-05,0.004098115437201216,-0.01708030745656627,0.04926347459080983,-0.0047806789452447054,0.00010299631389833814,0.01146168779389382,-0.01788488421732406,0.10024064664129298,0.03343119252620724,5.022316659533924e-05,0.005829527758188795,0.03301385107936539,0.024963333400037167,0.01846850702181295,0.002579387456017861,0.0077752164371639,-0.06575009891015847,0.47842467567760705,0.02619534494826288,0.00011309279751846691,0.02394077163631408,-0.011605425059951878,0.061125585401122014,0.006033987116195263,0.0002939992700011109,0.014562779013665646,-0.04847033573887313,0.2913604395746932,0.07538985936227961,4.6860444116751325e-05,0.017461038233085813,-0.010088211191544549,0.051609041992818336,-0.07284340948364444,0.0003221626399399285,0.023680854669212933,0.028922224890629483,0.37862881920559904,0.04814157819758385,3.1699197151471244e-05,0.027031920289999112,0.005091517604079956,0.04982680062492905,-0.0008668872002889448,3.414019180465022e-05,0.00366388190716664,-0.0043942565494526796,0.01280657489971283,-0.007921225709153955,0.0001105287276501891,0.00970033969317367,0.03306227862806199,0.23937126255391358,0.008380841999066248,3.19045884713652e-05,0.015101142520225305,0.00804561274501501,0.024408804023648676,0.005792677335714317,7.307856434641572e-05,0.007344907384061175,-0.010859122544029322,0.045357182283120176,0.011381741177754055,0.00010947054055926791,0.001941616563788987,-0.04363085617741835,0.03960726792555945,0.03996293119191261,0.0006296430449842117,0.024975149618462325,-0.009199057376669038,0.028216425417868216,-0.005097727141679434,0.00013722313664026275,0.011911096188981783,-0.07617034399096659,0.21864279129553169,0.10973694678330494,0.0022359903683515123,0.007074532695894049,-0.012341146180392181,0.12529233453948477,-0.04059129606168257,2.5328716930824164e-05,0.005711203947357331,0.09215661056127407,0.2462171360441,0.14546998225893573,0.001223712757867632,0.028615989719350574,0.005777382950618808,0.04535924821578825,-0.07489386741225375,8.481857089180501e-05,0.0010203484131999403,-0.007071925114545553,0.010831073433675975,-0.007718728172238217,0.00015410315817318242,0.012544975345493429,0.0023774607661558897,0.003340773513748009,-0.05260275589676195,0.00040847947448550357,0.009918663761442601,-0.004165523071399076,0.017975424036018543,-0.0016609083001204543,0.0017961423019675353,0.007258661811685842,-0.0070270283100238706,0.02637870986763068,-0.008426809568935103,8.546898026354299e-05,0.017122848068824296,0.02990045724647879,0.03552063653117913,0.00706007596670919,0.002092542473091027,0.0068143834401165095,0.0074596691793494575,0.0236041479804842,-0.0867959639265831,0.00012521238147384267,0.012032857048928975,0.015316994094663324,0.04548158213949504,-0.0029111988736236515,0.00013652065309189128,0.012392785521457195,-0.017920121947339593,0.06238666241982511,0.0063678991206503905,7.010728253562829e-05,0.0004799805564116952,-0.06360879615492394,0.2220394400827603,0.08018114319931541,0.0027152205426914035,0.03110135613035652,0.0006456181074885476,0.003044199628821074,0.0002920251989937205,0.00010549773715959813,0.014515901456359195,0.013456804658362964,0.06786512501683736,-0.03393626291380154,0.00014379907058621624,0.03096259383222091,0.008310567706598328,0.037578897638266946,-0.019666004948778768,0.00010460088396517297,0.00820828010962165,-0.02432740206571726,0.13765805102202242,0.00788596638659493,4.4416211384576235e-05,0.021624648637280777,0.021596344772079862,0.03649513943113688,-0.051298293366586686,0.0002885191333148589,0.008844331702745723,0.0019998871685326823,0.007978495284350134,-0.1866202628899579,6.233025119418792e-05,0.0007113218986931934,-0.023827769152442016,0.23585835152813178,0.06204857185696499,2.6065340976529992e-05,0.003927565375671055,-0.0018416391957928185,0.005922058906497425,-0.0018432899084512957,0.00010870281505670726,0.003803867450525602,-0.01367550265563368,0.06432693658573374,0.02229399690539411,0.0003351030644850356,0.0037974770380493367,-0.012311116426488779,0.07045867010351764,-0.009788419381587298,0.00010007711860536915,0.01188399808562553,-0.006306647975486282 +2023-09-29,-0.01772287844291954,0.13210665905876806,0.011902766353796241,0.0001418718177337611,0.017808286018094515,0.01214774394751996,0.0351760360002369,0.0009220306709997623,8.286273404742444e-05,0.0009032841052286551,-0.033852167430081924,0.1111581596518437,0.015735164480481553,0.00014087772729057466,0.005284838090154375,0.024035003708053403,0.025777514627614413,0.07824753127235515,0.00031468135228476145,0.01078623283438334,-0.008306036952957578,0.018794056138662852,-0.002944274119145339,0.00023124433990299878,0.0014309312900805105,0.00014840526166260432,0.00037619762113885817,-0.010863745191589424,8.613506659416676e-05,0.0034519224608881753,-0.007840266806583607,0.03265317893756664,-0.005703521994758928,7.045230865048361e-05,0.007443002130144923,-0.04380875157996954,0.41470557155609233,0.0477678733723833,3.622593650699064e-05,0.003449597699775482,-0.00016409107172714554,0.00011624021200897462,-0.003537236083088311,0.001088612570093539,0.010442106922121462,-0.002600132093633101,0.006278557108374774,-0.07086596982269758,0.00014480963183442663,0.02380149695913631,0.010311717422570733,0.006654473889904219,-0.021455712312258818,0.0007574284891300822,0.005714340777908994,0.024142962265649718,0.28736526905146553,0.07178382789198595,2.503681422546413e-05,0.004184115477975323,-0.037544433581035846,0.10555003912496534,0.01658465136808328,0.00010566671250823106,0.003799621499300133,-0.009604347027529977,0.056251719752769956,-0.015590496689858688,4.806111672507545e-05,0.00518050226516687,0.011626006490801618,0.011632911831989745,0.0037628967323984266,0.0019492390227806298,0.010418821097458345,0.00780005073029435,0.052361786806376334,-0.027526688083374325,0.00012258436365781937,0.014408022633507213,0.005363246869764185,0.02838467038202718,1.0796774600217059e-05,0.00029258507224193454,0.03428373483995492,-0.020135287875117144,0.141236330802954,-0.030708256680054287,4.0158027488314255e-05,0.004222099726426554,0.000999595416833668,0.005369662290530463,-0.031024949485775874,0.00030680617112757865,0.027677746120322536,-0.03032242418759269,0.4765668165391739,8.501558964108325e-05,2.6404038123148752e-05,0.003787329111179145,-0.01379241277884341,0.13029483417728588,0.028064160096425827,3.5366717857815956e-05,0.00017380467232570211,0.0013817341756770657,0.004288058355217602,-0.06141773840820798,0.000103797422298179,0.004797672247246897,0.011782969376023744,0.09987742606429173,-0.001569780254140496,2.7250833070393666e-05,0.008697630526910843,-0.0046313527529605976,0.015080994426101061,-0.0016987927789804333,6.808559917151989e-05,0.005079110051168433,-0.003006895080845133,0.01000572100184883,-0.014741842139454186,0.00013741004482534943,0.003493803202366308,-0.013828359014605496,0.015211247446106243,-0.251088636359671,0.0005196146373009099,0.01074757330517196,-0.010086083998869854,0.031307074346075645,0.004595930392010756,0.00013560200318742148,0.007367205694718236,0.04081210218090878,0.14001024217996183,0.023324407926643517,0.0018708903425921298,0.032327436295031674,0.03525205520956552,0.3096968879353738,0.02638514159217341,2.9270476714229458e-05,0.010044441814095773,0.01136718124143411,0.0323832173463864,-0.03446450082196689,0.0011476357265733609,0.010005634423294718,0.0558339429916979,0.356268393586741,0.1300728602886845,0.00010436302204380846,0.005369757965438636,0.009400872582532284,0.01673785665037755,-0.024299162661319595,0.00013256037030209448,0.003318165992576713,-0.024911418057263393,0.03924589903056531,0.020880464586310196,0.00036434102989858416,0.0007636550043564133,-0.004883035379386641,0.01924470417242721,-0.010481520518694746,0.001966658586199334,0.02500622001669254,-0.011799425269229011,0.043686018081049265,-0.13138695478771617,8.66580202808756e-05,0.019084545702187487,-0.001082597300610794,0.0013946611625786877,-0.010413213355966565,0.0019296361404001715,0.0158117046045966,0.01769360673153675,0.060490411892853015,-0.0037415080639391475,0.00011588997386887415,0.0056586883252946595,-0.004125920539687255,0.010950989963236585,-0.010475580226581004,0.0001527312319667767,0.02503075057570336,0.006412473283187776,0.02727154659338421,0.0035533075789549746,5.7389141208211156e-05,0.0009209562033151448,-0.06964898584055591,0.20158947599835025,-0.05522879830988726,0.0032746508318581627,0.014297176986274928,0.02641197790605255,0.1256517653032014,-0.00886189901099735,0.00010456176404922737,0.002550004068163564,-0.020668579665094767,0.10048133308589383,-0.0029624642499104297,0.00014917155925340595,0.00911925465753427,0.008394880224988419,0.0481144833104793,-0.10621137997513383,8.252535030842661e-05,0.0047666326072826,0.0058188665484578605,0.02765005991447005,-0.01791058830313396,5.289196662994819e-05,0.004765520697215445,-0.007958391645111789,0.013408877948533349,-0.03055069689594713,0.0002893758366541896,0.026062448475080737,0.0013934646318638799,0.004932121537927389,-6.56315376215543e-05,7.025488966536381e-05,0.0023245503171311663,0.038128338974939696,0.45687103656004285,0.05771094148443697,2.1532058188565264e-05,0.0063876773333848965,0.007592570622323306,0.02835674330166139,-0.14990276329336408,9.359258724863733e-05,0.0015121652618447993,0.009749487178578632,0.03529440298337037,-0.13875797798287753,0.00043541551831242166,0.0017640120290932978,-0.013700127933311788,0.0692232563909268,-0.0031215714856177683,0.00011335596885120139,0.006489807075754051,-0.00040164365396218966 +2023-10-02,-0.014305298849112304,0.10397162179254149,-0.04409446482578038,0.00014550191209316348,0.00870814955174933,-0.06743284707433632,0.26840206459912924,0.15380888337696963,6.028318236373965e-05,0.017590518307144056,0.05014131669346905,0.13755073516501895,0.033908986521166334,0.00016862812955750121,0.015183868134030554,-0.0263227263152036,0.02384350964415409,0.02815376520459392,0.00037258772503632293,0.008457885186878344,-0.011208137228786785,0.023727132909325772,-0.10482883392007464,0.00024716441769220333,0.01851331485171466,-0.025186190284063173,0.061979804833276225,0.03958510282186888,8.872765745303434e-05,0.0014324308560967355,0.009504699239274954,0.03831417940228848,-0.0030789590221224406,7.278949488205172e-05,0.012499527829020685,0.010057410321813235,0.10371030497548125,-0.02610630992618592,3.325545329421668e-05,0.006935274583363097,0.0020471503290209474,0.0015165669938236902,-0.008821476648650644,0.0010409573170635062,0.0067591138099965305,0.04688910716650898,0.10527034946830764,0.010584204544314775,0.000155749903039631,0.0012923673880317708,0.009979799217730215,0.0069744206972113115,-0.04806553825529209,0.0006994199593758852,0.0063561260262532965,0.0014779666972384248,0.01775037609599326,-0.007476595973131344,2.4813034441689532e-05,0.002499613227373812,-0.007702008105566347,0.021584031297067822,-0.01175444511980349,0.00010600404728204541,0.007284835210574554,0.010926208010567642,0.05700104602567765,0.04958618337266259,5.395708226378348e-05,0.00034910983297849007,0.02013040392283659,0.016485226557484727,0.01468907379799804,0.0023816642720240807,0.011731163270495875,-0.03706106302735548,0.2668196578893134,-0.0008384341607722195,0.00011430155977238912,0.06647664879365585,0.010063305915893358,0.056685192713229304,-0.08716927310746446,0.0002749028735567545,0.006006882198969867,0.003553377589272354,0.020344840307098967,-0.00599924705731306,4.919806587534822e-05,0.01871700621052125,-0.009713378659573625,0.05589586959125091,-0.0050161935232150776,0.0002864028990706453,0.007302000727043121,0.07355193692265379,0.8899320829391603,0.09639434246255163,3.429789618191291e-05,0.01694849174877693,0.001170538259472032,0.013267950096199728,-0.00963530585581115,2.9475656927189667e-05,0.0031739810983796124,-0.007399972008648687,0.02161519746735557,-0.02921759602938506,0.0001102792046757865,0.00770888100009772,0.026249753133041887,0.20275916770253477,-0.0032645555004294576,2.9904538162274804e-05,0.018292802043792057,0.004029322981821379,0.011200182003761192,-0.006218413471233927,7.975986002741073e-05,0.009900197621646758,0.009539513405156285,0.033231603477846865,0.0016451326271288758,0.00013125731649967656,0.0038619942524021986,0.026280299887776304,0.02479726996044233,0.0021572437094847306,0.0006057619746701463,0.004751162619362931,-0.025891061836849548,0.09992522284650862,0.05756231656886081,0.00010905880774356425,0.01669208712879724,0.005392018824936107,0.01785591021404947,-0.012989939794869551,0.0019381553349883361,0.03113864683979161,0.013163121255541367,0.14155770942128088,0.0017650691156936074,2.39115401805169e-05,0.0007414709694661668,-0.040138553940315104,0.12639316981492052,0.018023525585592993,0.0010382678023645709,0.00014898959365658427,-0.03927393643644204,0.31272110708380907,0.11741963671249393,8.363207673580421e-05,0.007338684455081502,-0.01630390554984485,0.024957042225886378,0.009182489168750127,0.00015418563837157095,7.107383830086064e-05,0.006797149983037159,0.011992931335795789,-0.0411842878617481,0.0003253159969456802,0.005198185264033272,0.039905860962131855,0.15974630806107745,0.07112008180017519,0.0019362266632694735,0.011759287826486029,0.035386064971089155,0.12271982911207134,0.05199390346854594,9.2514093794809e-05,0.0046041944255448015,0.019420664436577376,0.02914499223113794,-0.006079231469860714,0.0016564461896132904,0.028590369851132887,0.0009433859671241943,0.0032730687922809766,-0.014387068578452464,0.00011419584831679695,0.005671511319192975,0.013550718489778306,0.03557629298039006,-0.125009701592213,0.00015440522984797318,0.02412040643578739,0.014609675065819007,0.05810204561654547,0.01033458009571118,6.137098007998866e-05,0.01539730403942525,-0.09334973088514577,0.2802504938752482,0.12128385510573572,0.003157073854554238,0.003863643815606928,0.02000490994717354,0.10770717234509782,0.004916008976566376,9.239161252864e-05,0.009020240392867572,0.012510980996709206,0.06809347290685126,0.006976088458222297,0.00013324369392803213,0.0019350193799966679,-0.0057059119433442,0.031712392810594014,-0.012498411926343687,8.510297681884559e-05,0.002044162475418506,0.013703644588557672,0.05998123895217725,0.0019923871918643113,5.742064270076765e-05,0.03115650771744001,0.029687836468796382,0.06227098194531315,0.042850988520092115,0.00023244608131909667,0.01337435417973104,0.01089814133476247,0.043355239108080874,-0.003221666613401173,6.250650638495137e-05,0.009628636831944627,-0.037824596247077624,0.41863925353717607,0.09804018025809202,2.331125413625795e-05,0.02061246328962752,-0.014187423769878624,0.04518943726526733,0.02328169851214347,0.00010974268268163516,0.0032232199715735268,-0.009803628223993499,0.04073111345147585,0.0032258452771037035,0.0003793923083885737,0.0016283541090281277,0.0182857102221124,0.07037158300671056,0.002493044472351712,0.00014882856986933962,0.049290414063404064,0.0018006911803682133 +2023-10-03,-0.024199008069598904,0.16734510533807181,0.014470419289274698,0.00015292241011879051,0.01280307667166543,-0.0322770965309701,0.11905510559000368,0.026377139125687375,6.50514472548235e-05,0.008646623621811459,0.019712249630181897,0.06828286798182735,0.0026042205443530314,0.00013354315764244572,0.008052325848527466,-0.00574860094027911,0.005270095273032229,-0.038821921524035165,0.00036813876530794967,0.0012185915902452383,0.015966901039559656,0.03570748349684137,-0.0028897940796097973,0.0002339694541017376,0.015229605382693074,0.00764477598754726,0.024281308767193463,0.0012345554126009432,6.874473025181647e-05,0.008038988396965898,-0.0040103930940832795,0.01674414791428979,0.0009523976771030995,7.027708627793295e-05,0.02233917819941584,0.001700554161564651,0.013222328911833149,-0.05968945337041805,4.4104319615987874e-05,0.0023672573883804938,0.002725049594951,0.002238683464909108,-0.014160465424404883,0.0009386993254461567,0.00028305096420881454,0.011094024551242362,0.024981034162439904,0.008052960241982801,0.00015528896512487122,0.014448585572034389,0.009788824661295542,0.005870964733992805,0.015646783081808013,0.0008149771569572362,0.004214972984823692,0.009541848516284535,0.13274840940183696,-0.009138274178613992,2.1420321302638787e-05,0.0022622454154201752,0.0012934684370801042,0.00362241025963748,-0.03018660634311612,0.00010607407133867051,0.003050041906615914,0.00707913963841619,0.037183931939089455,0.01580495685459192,5.359039842802353e-05,0.0013680768072319581,-0.04469259570839497,0.03654197086353707,0.0978859423623565,0.002385429492698702,0.007086657942749443,-0.02495961049365826,0.16014399925891531,-0.0253513394573072,0.00012825645786293844,0.015850133657758374,0.018158376959750967,0.10267954777224678,-0.03997347040246419,0.0002738427908784362,0.008890404357454793,-0.014184896250475828,0.07739121558397817,-0.02613756126031086,5.162920663737836e-05,0.040174500317888176,0.00642530134278614,0.031671217244471486,-0.03963561240861757,0.0003343609517837562,0.02307621994333158,-0.00824032072401574,0.10841271309930375,-0.007319821404741578,3.154235632551196e-05,0.010741960215013021,-0.019632610569802915,0.20084174182329767,-0.019685638036694278,3.265921801990241e-05,0.007162385787212715,0.04386446035805694,0.11934046688725979,0.12390671893698035,0.00011839893994686279,0.007051423835595756,0.06871886727597071,0.49701276555803525,0.06943022292353267,3.193749318143531e-05,0.04617865644825994,0.015368893538719678,0.045118458379348525,-0.0367447319753655,7.552065228734501e-05,0.024108853114717995,0.014612445830398968,0.05479548728404745,-0.023338658101366348,0.00012193453219871567,0.00033953740495794803,-0.0248443820495991,0.021181691485888342,-0.03471018369412434,0.0006704140730907213,0.0051135077354009986,-0.01951357031904087,0.06671026648440291,0.014052585676239383,0.00012312041518028718,0.00784978902825745,0.021101366658105147,0.08720626475755414,0.0024044050030806053,0.0015530379686819677,0.006390150867196137,-0.006629446646600824,0.05662042169969355,0.0022868447007063806,3.0108309759004112e-05,0.004616541531555517,0.008320545218088017,0.024287175705821458,-0.004845902608629317,0.0011200722564957326,0.02065814977671979,0.011943912716959496,0.09476105377466028,-0.022544822056297563,8.393486237711185e-05,0.008458648645456483,-0.022751145589983434,0.03890899560490105,0.01910651753206057,0.00013800621209105932,0.007617965012890324,0.010360817699501736,0.015433904887015308,-0.07646222854322038,0.00038532051010080494,0.010508922168461039,-0.039186771735746175,0.1319569811732139,0.0585645859568657,0.002301746316468003,0.005710837037603125,0.031417602624171224,0.10732062633548921,0.02860296522768115,9.39247859862719e-05,0.0209528854933914,0.06554330285025044,0.10895989389121687,0.004381754550062329,0.0014953361847725925,0.011991589058918868,0.02080153825168865,0.07557198543586258,-0.049150322374903535,0.00010905627412684963,0.00990953041732673,0.004674494594483064,0.011910785609085877,-0.005062808228999992,0.00015909430379620638,0.0009328369841850284,-0.012853870062648843,0.05630438980012368,-0.04174851381369976,5.5719290058222354e-05,0.0011997222552083153,0.013556513782855446,0.04305884635267418,-0.024763836338585542,0.002984033456203103,0.03969518255062677,0.01237514767666998,0.05982624161682945,-0.054207128401484644,0.00010289617723992743,0.02140695877801921,-0.03127204479253432,0.1389022276025376,0.04008365164371014,0.00016327054905597842,0.0023878731206320256,0.057053227368474284,0.3603883997699484,0.1854466238242637,7.487866827189431e-05,0.007966104150230876,0.0005188693349705255,0.002397383353897733,-0.01430084025506053,5.4396118871434674e-05,0.013259247820317429,0.015642312326010162,0.02584504904940274,-0.005169921324291803,0.0002950889767520564,0.023893716141592608,0.012729202084842666,0.055919344054367215,0.01992578459759087,5.660482978097339e-05,0.002656431569731066,0.03253434955271372,0.32146311531819816,0.004610641644350068,2.6112127928178383e-05,0.0010092185708263344,-0.015611597756987764,0.049732335750075164,0.014651405192261368,0.00010972799924473966,0.006697601268317952,0.024282706651967398,0.1123899351646228,0.15473597222770452,0.0003405631417428695,0.006287350464389495,0.056877800982381654,0.3305825752032124,0.048157380895985744,9.854500930144034e-05,0.021961483617157395,0.006416173310449639 +2023-10-04,-0.024076976958798717,0.14479388548463684,-0.013917671667940971,0.00017584835851558396,0.0012001425599361736,0.013486901543455216,0.04184260651566375,-0.008562884015706386,7.733996715938737e-05,0.0032699067968180113,0.00134030832809963,0.004318220732510251,0.000250465383343432,0.0001435810359296136,0.014529495020389591,-0.01019769089969026,0.012205219852990693,-0.0015605857943027151,0.00028198375764326055,0.0012620479391624016,-0.034761858387326754,0.06987383517952588,0.051073225942617116,0.00026030719789925995,0.021236924506596606,0.016949192794610036,0.042692235172356645,0.0021035556170835917,8.66855814272719e-05,0.009482793653424654,-8.055302416603353e-05,0.0003026356571737251,-0.009262069747964802,7.810010335163429e-05,0.006263922519782786,0.030551111542196592,0.31762965088320133,0.020904375299919627,3.298409655072467e-05,0.02866676683976724,0.009481472169165495,0.006980674310247754,-0.0007438086671925951,0.0010474256022439772,0.011818727156825706,-0.014527333973387232,0.036009919463475856,-0.003924822075678146,0.00014106707359609575,0.014522733258347773,-0.027573053859235423,0.020759250841153962,0.09843481355064532,0.000649228461715717,0.0030714740603142326,-0.007961562664992,0.1272755239912133,0.01107251644618795,1.8641300761778533e-05,0.010316281944975896,-0.01118456382046645,0.02977191405030538,-0.01693491757079619,0.00011159977867717642,0.010392624576924669,0.022982940395857993,0.1309815465693698,0.10129801312993461,4.9392077663528634e-05,0.0062007240301703345,0.013784706600944737,0.015197528580927266,0.004811594357445057,0.0017690802359520332,0.004083449310151776,-0.022099530678507905,0.14025801820990755,-0.007703821142968375,0.00012966043084286185,0.018903772503315062,0.01097735590404569,0.0647663939994955,-0.050339295083168915,0.00026245585120843,0.013034841865159274,0.03759320537747836,0.2896176257712261,-0.04548923271397715,3.656329482496421e-05,0.01863039115936302,-0.01909041314955179,0.09831397554258105,0.015322686126229937,0.0003200271888981407,0.013579508678572081,-0.02812474543892456,0.37881545750261364,-0.0406206518430452,3.080996035851121e-05,0.014284403785160743,0.014189470344868135,0.1720702709337693,-0.20746527337672474,2.7551297178438875e-05,0.0012552237499954006,0.0099657575369759,0.032319946206254155,0.0004895080412557874,9.93258849917111e-05,0.0049292320263506365,0.022888746563949656,0.18151944522866975,0.0005037716489532209,2.9126696532758143e-05,0.03668306410127711,0.02113585309485159,0.062301690714364824,0.00028197187540519603,7.521376546210665e-05,0.005946104678696507,0.008879498026557017,0.033655027030845046,0.018874513306261317,0.0001206388162089819,0.001133166724828148,0.06485481278232944,0.06123216189915994,0.13962700308700168,0.0006053940917391121,0.0030016836909805954,-0.04147379342648757,0.1821377462828086,0.02923639413519613,9.584287015553876e-05,0.0022001967055889863,0.07258774027459601,0.2568590380413731,0.07136122696178175,0.0018137924907669382,0.008242767611245136,0.05402913390825756,0.4694920666533613,-0.13496414037566928,2.959251953844322e-05,0.00800011206623166,0.044057456413732,0.1613022790849056,-0.03133061368508559,0.0008929973833370085,0.010889456618435787,0.041489278941166635,0.30448487532889157,0.03081978123987772,9.073937959077358e-05,0.0066682909534827,-0.03297271664269103,0.043181931606667834,0.036386100483188584,0.00018021795258965604,0.00264594140654831,0.008754322572066214,0.01514906764221773,-0.017929359126499216,0.0003316962442871762,0.014550608326116952,-0.02316502011978046,0.10389770955353156,-0.01726880962366863,0.0017281325459582199,0.031158196629503573,-0.016453756817348876,0.06454002310536229,-0.015157186551492058,8.179491927170314e-05,0.012288270864708822,0.055904021645572025,0.08235412458235003,0.04166890721499982,0.001687465444529531,0.009282900704542454,-0.022974350294128934,0.07187653864533101,0.003630495340731056,0.0001266403553309483,0.005434628940770882,0.024874607607950964,0.06179623188674889,0.02278868089337517,0.00016317537539300877,0.011149708306821281,-0.006826887408340645,0.029680556708242635,-0.004799535331442616,5.6138993598821495e-05,0.009431590663027945,-0.011308385964909635,0.037433359059635886,-0.11774497611112335,0.0028632540312914234,0.001283870553029354,0.01084682250646807,0.05531532532334984,-0.017881475754466847,9.7543342488871e-05,0.003961970154102166,-0.009688542889425148,0.052090980838503644,-0.04201392592792823,0.00013488284434072298,0.014170490695163523,-0.024212699376112545,0.13557318999409979,0.02206479651041709,8.447303413693199e-05,0.004019102615013959,0.004591266715072601,0.02043262329596924,-0.050459507837621626,5.6474941419530244e-05,0.01034650996362329,0.08748191071611554,0.18102782765399833,0.24007298806685412,0.00023561466289836693,0.012959881899295398,-0.0318118400410306,0.12764182416649025,0.21745195386916966,6.197409074472142e-05,0.005290173842964266,0.01110072973917793,0.10675886983457608,-0.004661001090996599,2.682741621455408e-05,6.159065838325811e-05,0.004293189864597082,0.013158969293754355,0.010268410413784852,0.00011404262006985862,0.0029259387944544626,-0.0069117108598150696,0.02920694065028119,-0.020776037130447147,0.0003730160033853492,0.0005540110674473932,0.016124310277522768,0.08363390620448864,0.0034382755617562186,0.00011042580176211343,0.0046943591149057355,0.006087419540023253 +2023-10-05,-0.0030511277490431385,0.01753501468249468,-0.017192046395185383,0.00018400975273747536,0.011795363130305178,-0.03777614408062911,0.1658899299728497,0.035579410908257184,5.463967769954333e-05,0.0009883332134781088,0.054491228936967936,0.17986075913979832,0.020378057135418744,0.00014014815506880324,0.027508713677653625,0.035629331575525315,0.038784823549784214,0.1450190632915008,0.000310037132270274,0.0042202283424910125,0.03548298228875694,0.06868958881403331,0.035128822120435166,0.0002702881278412389,0.009081787081162954,0.014781937593062653,0.037374673181224324,0.005240661004948645,8.635762711586411e-05,0.0038050579105791743,-0.030113509244079562,0.12127096508554504,0.033000236835340965,7.286087625562762e-05,0.0008734648236022606,0.016632422668461155,0.15118031559201275,0.002739488313880453,3.7727574014066585e-05,0.0017778901392133243,-0.0218580609170793,0.01906177063612177,0.02783507207815923,0.0008842868750508259,0.0041441117730392964,-0.029993347400510507,0.07563100826915427,-0.004185449673639393,0.00013867141081186626,0.005794543775342437,0.007903363268265583,0.00493383577022375,-0.022121839033336508,0.0007829817025439462,0.00813392202359608,-0.013074720853770544,0.20275849849762717,0.029453276369162788,1.9216582218738123e-05,0.00447456890299942,-0.05069987846147617,0.14916581378295982,-0.01241679295872659,0.0001009691393324002,0.025594872379714098,-0.013621832753073854,0.07179960312890657,-0.002424179734246695,5.340418828519573e-05,0.0036770116262264865,0.01413427162184698,0.01130509521271119,-0.0048919440971378495,0.0024384967505659033,0.01568710841186167,-0.017536830404794295,0.13090848836032531,-0.0535289785264013,0.00011023903473076602,0.019227942336333525,-0.05543286245760825,0.28836608182974566,0.11618146318514593,0.00029766745943249183,0.020203228090534524,0.025808432313648662,0.14406758769771447,-0.012280777881287366,5.0461051565673e-05,0.012299217683271062,-0.015044678442748146,0.09258045228339334,-0.02644436145846813,0.0002678245717351035,0.014104665125161151,0.006875165130540969,0.0888025308542429,0.0001218274463710272,3.2128320365991664e-05,0.001368338463839157,0.0020691545110777475,0.021981932474644496,-0.003834452122294967,3.144913912899148e-05,0.0022234868175449616,0.004252054798859187,0.01052368283882968,0.0050724049120534275,0.00013015290255667498,0.011866255372232667,-0.07005369401843273,0.5027763540678419,0.053465747839700116,3.218463386251704e-05,0.03654801271714068,0.015895968304435553,0.047787473478298474,-0.049102709987100854,7.374800907470656e-05,0.016723931231445246,0.0049294910858258744,0.016195577730322295,0.005809940507135218,0.00013917275883547684,0.011380571860311542,-0.0208413673442902,0.01993683574820326,0.007766447664323707,0.0005975104964196576,0.004896932813925801,-0.014259835153933463,0.05048610510821571,0.0015339325076835098,0.00011888543384415244,7.155197668096006e-05,0.03952899176100298,0.15111491599060187,-0.016687719681315206,0.0016789106262538166,0.02039725310889145,-0.027688642464749585,0.2680673941502716,0.03372148120670509,2.656072137516869e-05,0.01921481336992769,0.018635560068093505,0.059366799262203326,-0.016933519874192348,0.0010262899698873281,0.0028130960485421757,0.024740587502876606,0.17290516481996315,-0.005560716015818532,9.528569048803323e-05,0.01290372357420376,0.019285743005229367,0.027100130665315275,-0.07733437514997832,0.00016796174447373044,0.01600064991236893,-0.021604530571321993,0.03173275771908657,-0.09770945198617129,0.0003907877416868853,0.017282279787327198,0.021627222260572378,0.07361660666596838,0.018137419200183715,0.0022770642752154876,0.009167184151416978,-0.042779907906131,0.1906124175765909,0.04864038055584527,7.200771438497489e-05,0.011191111725536431,0.023551508318086105,0.032523698322026603,-0.052929358119548825,0.001800097355095421,0.007880477768186364,0.030047727418628472,0.08827902366175502,-0.010918212294298105,0.00013485596031461453,0.006254280706103095,0.022281615736275885,0.05759283316303715,-0.046902687623981365,0.0001568334199919883,0.0030993744303714887,0.009824375867399987,0.03989423467677503,0.005686496526209789,6.0104744673818776e-05,0.007312123639221627,-0.033406311127912924,0.11049756139429391,-0.000246936607300235,0.002865456936050107,0.00950568815576639,0.008051106280005374,0.04596746923167563,-0.07873066601951363,8.712555072578757e-05,0.009891604491046674,0.010380099369032851,0.051062055158088676,0.004690912239465691,0.00014742257919967528,0.006925230360069191,0.014288284970436256,0.08653498604436273,-0.0852217376373525,7.809748962820993e-05,0.0027738841623479267,-0.014286786324740182,0.06009769716949276,-0.04420673334494911,5.974810194381112e-05,0.00849967984951862,0.05580188339187787,0.11692985199536544,0.050666981762974767,0.0002326766762474439,0.0009079809109048525,0.010738137792691721,0.04851919063154512,0.0069284555909991325,5.503383796782413e-05,0.004396270181707925,0.026942667411262763,0.33601383493472836,0.010463557601339761,2.068781940047311e-05,0.007044839868630025,0.003371613396853858,0.011664756629800366,-0.06438923449840767,0.0001010348155903286,0.002360688978531162,0.012506292402427423,0.047556715442310604,0.03356085787127397,0.0004145192440025478,0.0008080253304666961,0.04410842552867092,0.1923651963407711,-0.020151091987489347,0.00013133087917263978,0.012676323178081423,0.00303008339844605 +2023-10-06,-0.027895513492308073,0.18354119893115803,0.019400560121076937,0.00016072646012549362,0.01249228487008531,0.012342211138240225,0.03958043075410722,-0.028693971919476164,7.482090929857271e-05,0.01138739203850006,0.05712886619038622,0.18673227746206814,0.013718076192259279,0.0001415250820485564,0.015714792231011833,-0.009237252369191543,0.007999408840350115,0.000354275807572768,0.00038972006986462296,0.010635518691108604,0.0138839227440271,0.029840822873658766,-0.01167683685571287,0.00024344405080636679,0.009227552381599525,0.013786672189655602,0.03226101175805075,-0.07850088922356557,9.331000349928085e-05,0.0034893300443016306,0.016039806914950702,0.0546654748285438,-0.11207757209751473,8.609459084375977e-05,0.011550468565811841,-0.017196187356157838,0.15046575363066667,-0.0037342564874637096,3.9191611194019276e-05,0.01739734353455893,0.008386776048892004,0.007662704189605996,-0.09712501987742735,0.000844029784500441,0.004926773464850836,-0.00323063935730881,0.0076633707143437925,-0.1057053717040728,0.00014741121676363375,0.02031822322596399,-0.003975141845674932,0.0032701830013217212,-0.06539189197524861,0.0005941620807638602,0.009217283025968826,0.00852635846151359,0.09790764803981479,-0.02359638647068645,2.59519358238039e-05,0.0073308303027231,0.012850965263687264,0.036915516188321874,0.0038376548694101847,0.00010341364407991955,0.0074869736956095865,-0.004335735461041795,0.021261508508324596,-0.003236142862064634,5.740246206264736e-05,0.0024495160766459666,-0.00865527498596276,0.009823532687699374,0.005238098334753164,0.001718447024060171,0.0039464476314823,-0.003237386685504065,0.021982689883369936,-0.05496661117105978,0.00012118973917892652,0.00014834610128044436,0.05542155266830785,0.32219569344210663,0.03950727942489012,0.00026635888567992693,0.00294059168118976,-0.04471792408029666,0.2698700251105402,0.028934273182446915,4.667538843131483e-05,0.01040597132674006,-0.03502754626576143,0.17889048085188575,0.038166017087484995,0.00032270767275626046,0.007497308919241422,0.014114578377927903,0.2213606182555487,0.007083312280699845,2.6460483882015024e-05,0.00517153241028948,0.024402873263006636,0.27547048946078345,0.09039732985235527,2.959699320566324e-05,0.00031265757238019623,0.03170990298708038,0.08505818340682982,0.03651008153242474,0.00012008854030593336,0.003226517160683103,-0.001261902085947102,0.00973836052775016,-0.005889019519763716,2.993175526890829e-05,0.014467193543287042,-0.00033545657744614747,0.001010996628474082,-0.010457700040670126,7.356377149662974e-05,0.0060723512499202105,0.00892293762102598,0.02960023233891358,0.01462843124989355,0.00013783557825629118,0.0004194049788946259,0.05027590714408287,0.053173226555390946,0.04931985697614542,0.0005404337498564665,0.016502124272665595,-0.0053655145388388495,0.019123606845823277,-0.0017793017845685558,0.00011809393078527121,0.0025160538301991033,0.05128210130568898,0.15879104382641784,0.025298665341702616,0.002072807557251152,0.019378619774474734,-0.003990010947744373,0.03815317857113877,-0.00035293680494946986,2.68921520039922e-05,0.02064107377867034,0.024140640144799344,0.05678521114706466,0.00242836000109091,0.0013899040071970424,0.025351373314634728,0.03632639661362236,0.2746248405453008,0.008399708951639806,8.808625489329733e-05,0.02251793838185091,-0.005269111071538587,0.00805342278613815,-0.01482406456888978,0.00015441953509891216,0.0009755188755853825,0.007440210342650566,0.009577137269719463,-0.0015741428559096588,0.00044591636924807567,0.0015593801197790868,0.013285259753617436,0.0487980605297952,0.00157184215037774,0.002110171873066624,0.0054593475289503555,0.005350455378386958,0.0223213612384426,0.005733567981755743,7.690603848739388e-05,0.0036645762533336792,0.031664779651958866,0.044302928445208625,0.008828939376657503,0.0017767291503834226,0.006690707640964814,0.0012707888750479654,0.003925686901739394,0.00014768750774296085,0.00012825484548011483,0.004029737018305563,-0.007918650267095807,0.02419060250550676,-0.010800024379827295,0.00013269814542749876,0.0038543884271908966,0.011453663742337913,0.04451964555761177,-0.06596421300047468,6.279233830080227e-05,0.0223604314525276,-0.027930870004639747,0.09055255708225869,-0.02882697317737207,0.0029234912798657368,0.04703545159928714,0.030539725664190238,0.1684837459645865,-0.0629006571300309,9.016701498610026e-05,0.00730815039686767,-0.024318475450679722,0.13131537887995118,-0.10546327152450423,0.00013430170878267307,0.0018811165766209892,-0.02960450722549173,0.18569408123339187,0.05507833009035837,7.540644625572626e-05,9.188627676969257e-05,0.008700643000075925,0.0380772427273611,-0.0025685917690350954,5.742926416348511e-05,0.000559161825603297,0.053522878557492326,0.10588982485680694,0.04227794558394842,0.00024644194437741424,0.006149717816111917,-0.013556988485790842,0.04891913239777996,0.035089978697843006,6.891263512335956e-05,0.00860962427699953,0.02931476485366402,0.27046937195392584,0.013261277627172875,2.7964020238469854e-05,0.0007909297625858154,-0.0016047540123784484,0.005471290353890735,-0.007949753961024217,0.00010252450283462521,0.00039213492243356436,0.015992671852160818,0.0634914540936812,0.02727561165176735,0.00039703950764444196,0.0025834860768548366,0.040247500797582214,0.16727989368480914,-0.07589532429376902,0.00013780563284848522,0.004029829134485133,0.008424688961394224 +2023-10-09,0.019800425692286593,0.14147887523404504,0.0202421072048765,0.0001480026572272505,0.012206392948011237,0.02615866349903448,0.07925815002293118,0.01025577120460082,7.919215232528319e-05,0.0024510005783196405,-0.001648290757790699,0.004400546622021258,-0.04299057549092856,0.00017327040936576524,0.00021527408323315745,-0.008213112609100043,0.008677318884170452,-0.020864193321314013,0.00031944057287518684,0.004779135584395206,0.04285132251303309,0.08408620186756213,0.08731075374229479,0.0002666473465275249,0.002491262772037814,-0.0006154845101122307,0.0015057277778139809,-0.013071273191965197,8.92518865986476e-05,0.007832956872101378,0.013709006372311207,0.05357343888741232,-0.04995012197155169,7.508381116920892e-05,0.009872354497502121,-0.04018321042988375,0.3760477100434409,0.000238150990149126,3.664378259116014e-05,0.007920816905546144,-0.026201300715725677,0.021407792083960365,0.09253690805914043,0.0009438343087558666,0.0015091816679488703,0.022305884636153815,0.05507784257340221,-0.03290803764065344,0.00014161342212368726,0.00409047975007786,-0.008558321723155711,0.007863874495595667,-0.0037811138978602957,0.0005319568344030177,5.559540803039232e-05,0.0036012180879156255,0.04797764924606788,0.00010002946522646659,2.2368313821927205e-05,0.009282968336428258,-0.01832318301232123,0.0496056606525918,-0.014743683051619185,0.00010972882261025109,0.031324194023100355,0.012886125552555866,0.07098426244746667,0.03527011851899098,5.110014148252347e-05,2.080321856902468e-05,0.0014080867579835598,0.001165682900535275,-0.003941403177846792,0.0023559819618641635,0.00326701511963666,-0.02849938982896476,0.19058241810994803,-0.03327574326842304,0.000123056578783061,0.013136447729444922,0.003558805164697425,0.017805977377296393,-0.002744651581910809,0.0003094900041506774,0.008435529080131815,-0.029379641332294686,0.16694195660424277,0.022940709991765028,4.957262840300699e-05,0.015553885073728605,0.005046759034390959,0.025989190077347464,-0.004763820350556724,0.0003200417460770459,0.0036864968031670286,0.002214338571932576,0.03183328740336567,-0.0033159921499278508,2.886640936218735e-05,0.0208965252208235,0.023121601355667546,0.245164251777974,0.06903442856063587,3.150956979319579e-05,0.0005943211872618576,0.012763138819904374,0.036861631289879015,-0.04569082820740066,0.00011153359427565235,0.009108409034599276,0.02004793864501514,0.13286998909509984,0.005066014195353689,3.48526015487532e-05,0.007472903538754343,0.01948134909596123,0.0559241372322991,-0.030757863748365397,7.723197098256396e-05,0.004960010688361488,-0.006125002626523757,0.02034754021007097,0.002731346105986639,0.00013763945980930497,0.0027819175125913045,0.01456208662985573,0.013829969304936419,-0.004480037262491726,0.0006018357133633066,0.010688318033894731,-0.005298965272306285,0.018914122765320247,0.000527759745706251,0.00011792092542436269,0.009023374095224083,0.016057945050084378,0.05780562054484066,-0.0300919844384512,0.0017829496312194522,0.026625314337044556,0.018865013463701417,0.1751177124897971,0.002384718138056133,2.770187971866173e-05,0.03354041127043214,-0.009157619765950387,0.02549795490328674,0.007084033930206168,0.001174217445066029,0.010531825572321662,-0.03427222076832119,0.24616626152633148,0.06949387609823166,9.271272794624987e-05,0.010147746189533676,-0.012558241303202367,0.018933131163744215,-0.01449608832410598,0.0001565495293706744,0.006131339633895729,0.02808843656503459,0.04884433610142175,0.028781301611792917,0.00033007852456375694,0.0029104260873655695,0.049231230611840246,0.21283972505433224,-0.0894535037758659,0.001792826833437741,0.015000486306104538,0.014108193894625929,0.05704654158824644,0.013439145495894617,7.934735774966625e-05,0.004984623139966536,-0.0024756954305162294,0.003442785007653646,-0.03026208465072006,0.0017875759531560873,0.0016741667829928036,-0.041023105988539636,0.13751579785030418,0.10456113629425506,0.00011819306165478829,0.031927688949483314,-0.012379491059958999,0.02858807583152804,0.00899860739672668,0.00017554086788534003,0.012824201819254958,-0.049681749475165043,0.22381819337542458,0.06415069907040902,5.417705825415407e-05,0.004831212051626569,0.015568797058370049,0.049004604325978446,-0.0019819491243673383,0.0030111766120945933,0.018422897735721592,0.006916618512671324,0.03558203876425962,-0.00794738750010454,9.669489919362005e-05,0.01575053070491166,0.0003462519506983864,0.0020948842932532906,0.001450035429479647,0.00011986516087631965,0.018728451626093753,-0.016704048547985198,0.1156660976901519,-0.001949098579226382,6.830686579562427e-05,0.015466684525260455,-0.016824429735869353,0.06999796074125988,-0.04632266242839219,6.040909920778372e-05,0.029861952524435027,0.03368874552323908,0.07203734467869996,-0.02870174005552674,0.0002280113874195419,0.0023209948160890386,-0.0030070976989547784,0.013810458331500897,-0.020438071129051404,5.414443451944213e-05,0.005946185051337287,-0.007397409962261234,0.07354795563035053,-0.022014261354240925,2.5950179598717568e-05,0.0017318703631562286,0.011191665032776209,0.033069549886397064,-0.01813034740482868,0.00011829745024305802,0.009045936308929135,0.00209736410885157,0.009313500359797647,0.0008085027911326185,0.00035496772495079344,0.0025196751883691734,0.04686276954986634,0.2519303758954013,-0.014922210715664108,0.00010654159956361457,0.029784913220837275,0.0029544145712434083 +2023-10-10,-0.020969587467610573,0.1124587840455522,0.009722138727242665,0.0001971891828194611,0.00035078784209580517,-0.01440475007315671,0.05140347600372169,-0.01430081979160595,6.72393902247475e-05,0.014690358512989207,-0.0011069339045417879,0.003667035409134269,0.0009020933067285375,0.00013963805491898002,0.007699147332598633,-0.017933195600971525,0.01829401738607331,-0.008810872491730513,0.0003308388132219497,0.004217845529758915,-0.0007968434732680397,0.0019716737112299727,-0.009926506187028122,0.00021146366072715715,0.012482122665498188,0.002234532102382377,0.0052514534106984,-0.0043803417526024555,9.290815188449878e-05,0.0018289885425459998,-0.024376087363937135,0.08261074018683481,0.017563584388669635,8.65799517603389e-05,0.01730586128368138,-0.019527784210465388,0.2016309997864333,0.0053352625060937185,3.321194256692721e-05,0.013571680675053082,-0.04812639970585051,0.04665536296881377,0.2918635759002634,0.000795475096234449,0.0005250427796165175,-0.015924304564670186,0.04374133769900431,-0.03611457575652973,0.00012730055617556934,7.3250957457115726e-06,0.06003150738909987,0.049467556181408336,0.43869544588476744,0.0005931754264804892,0.004506316907426916,0.012913903072080877,0.19729543046171763,-6.727808173732852e-05,1.950577835944206e-05,0.0023116873331132095,0.005791097161259765,0.01748887200651885,-0.024397717376501808,9.836715028242048e-05,0.010749843090949866,-0.014116634414193727,0.08733421969934625,-0.02815868052337777,4.549970089482117e-05,0.005345928922209564,-0.013468505743612911,0.010847710884656645,-0.04454646447617509,0.00242161047536577,0.012850698463804947,-0.026953442927091707,0.17482867502966923,-0.01404188281003506,0.00012686846628567701,0.021490135538422467,0.05757682919265414,0.287166845487542,0.03861018963193132,0.0003104714561994064,0.018051523788424836,0.03967594705267834,0.21448407598885336,0.035812371034873315,5.210665612199881e-05,0.02849603306569429,-0.02840213036691189,0.16087552093642787,-0.14877922218596643,0.00029096969428906713,0.006391223591815125,-0.0011561000041692088,0.015053810197677434,-0.04730071628334326,3.1869789721279286e-05,0.02418613147032072,0.005407101583843918,0.057642534682117275,-0.011223255410841425,3.134030136795885e-05,0.002294758436733852,-0.06670700442734494,0.18309948980581964,0.10624820254886722,0.00011735647604234756,0.015747602793957025,0.04790475866681672,0.41061267132110596,0.013889057449028259,2.6948753712084187e-05,0.00397491432277324,0.013906730980051712,0.04370952693452951,-0.011071660244155044,7.05385177774339e-05,0.0055037598732003675,0.0064753723269519396,0.022189997559427365,-0.12619199166546158,0.00013343079882680337,0.00982775121029355,-0.018814387023818026,0.01704815544125001,0.004182929378335716,0.0006307949943657174,0.017023427416988694,0.015234076307390492,0.043313145927104786,0.035169438486427805,0.00014804113534627652,0.003940603134165985,0.08631926603131776,0.3000638769445131,0.08267656208964541,0.0018463464570349021,0.017664787687896213,0.01901598761238249,0.1864322764232983,-0.02646849771595233,2.6228894034732727e-05,0.003328680664194488,-0.0014576629980025046,0.0038172760910171106,-0.016472417871825077,0.001248460560111725,0.008610331081045438,-0.02017524111068315,0.13964375967155485,0.016323922394105145,9.62105824641492e-05,0.0029865455644186435,-0.010884802151231053,0.015820313326754654,-0.10633281094095771,0.00016238684541413484,0.0004146027523586424,-0.04393395715249989,0.057973736814365094,0.08861029730821962,0.0004349836581933701,0.004021197740423333,-0.01696277860829706,0.06775383632094756,-0.02823305067886867,0.001940499094450972,0.017906456249006483,-0.010247256262721962,0.04015128915430059,-0.0010080460270307857,8.188389140378354e-05,0.006043713125875616,-0.006100387182037296,0.008485355213638702,-0.006357935522689776,0.0017871646445982838,0.03735115703198181,-0.02989904748519968,0.09822933772265312,0.029880855373187347,0.0001205957973884478,0.023839893303620796,0.01896044650283313,0.04705187431002709,0.017874054060932672,0.00016335484062894205,0.008721845086647233,0.021664042297784937,0.1054061388597731,-0.01252293570328534,5.016346357124236e-05,0.0355215563838715,-0.06646441949047392,0.20453823654921938,0.045019129176546185,0.0030798727023349467,0.025874557454128266,-0.019834062693121643,0.0829262594433611,-0.14642868832300016,0.00011897622258927124,0.007195665937018436,-0.01258799177875042,0.07335784034539905,-0.042272208633352265,0.00012444306461341142,0.014218539882215086,0.011832166910812682,0.08125239609633834,-0.006338186729857883,6.887741019111318e-05,0.014349119590348689,-0.01159939329654558,0.044350998832081275,0.0026817254700948,6.573236588559613e-05,0.016177072985140078,0.0439185592152828,0.08146610182251655,-0.009019435484093407,0.0002628454978926954,0.011556501308186985,-0.008438607663980224,0.034672260398148386,-0.02726501704521972,6.052057087156133e-05,0.0013103878019933637,-0.016682465333767223,0.19932138192806037,-0.037701845612137484,2.1594225239101625e-05,0.006536726356035875,-0.005765209322904449,0.022094271998134924,-0.003052232018886974,9.121039753644646e-05,0.004642308447687231,0.021391302363539668,0.08828313133189485,0.06526874343749581,0.00038193325009131554,0.0025885082802559823,-0.013365726155835244,0.0737855955538785,-0.043739000441069785,0.00010375111382841745,0.027534430938725152,-0.0028820290359588053 +2023-10-11,0.0653788822040408,0.46953472486962144,0.18408618735164467,0.0001472503577411907,0.0011856505444549584,-0.02787901727941493,0.09804274829249948,0.005077460510421038,6.82295506235063e-05,0.011810738899395006,-0.017743748222402617,0.06261040825456597,-0.08443480908090155,0.0001310979906360012,0.007523618580618695,0.00041630103366376345,0.00039032443828927477,-0.12542873282106945,0.00035995615337872805,0.0073687092357870255,-0.013220761819198436,0.030285063345633904,0.010207689361255346,0.0002284156029991759,0.007941274434511108,0.01723533914705666,0.04415854953098018,0.01935686045644462,8.52220101321367e-05,0.007772205081519541,-0.04127977597819891,0.1448622272038703,0.03105615397421292,8.361265786153067e-05,0.0035506798099853823,0.032782816181617734,0.28942758086586334,0.06439259296911207,3.884230180489433e-05,0.008838590550786925,0.03341434495721781,0.030990515421948625,0.1287715248940444,0.0008314745085540747,0.003619281503552475,-0.0007524351936244094,0.0016553688820046145,-0.13465123991327224,0.00015894109474912647,0.004042475572777692,-0.025143542418196278,0.01950784950190529,0.038529033882956774,0.0006300012718944844,0.013056870168358686,-0.010053085847937517,0.151691266928632,-0.03708558625536904,1.9749749978198e-05,0.006383078116303174,-0.03129788980027097,0.09350575424542443,0.00818260323196873,9.943236224654256e-05,0.002349356462847905,0.014803748385181519,0.0778860783670419,0.03574469960014405,5.3502450757513445e-05,0.0028957570413709445,-0.03819032342002104,0.033567583890821796,0.06125581776829863,0.0022189945004611987,0.015159062306330559,0.034755049452147094,0.20744544841109405,0.045823797469686026,0.00013786883576795897,0.011935377366543038,-0.029388096714137526,0.1900883635784843,0.02952500850966726,0.00023940000787555244,0.010617573865901429,0.019978571566333064,0.11669622309774445,0.009889031571251289,4.8224595046518174e-05,0.013153454773522063,0.00987276327723793,0.054702292281329085,-0.04224483819413827,0.00029745413165304345,0.013269315163591297,0.022221706074209584,0.32547556696047375,0.018265786367258455,2.8332783169118914e-05,0.0016514149146056095,0.013728587450176914,0.15604222459775155,0.016569497694844337,2.9394456219974498e-05,0.0007997823216135918,0.036054747581119186,0.1087406196032795,0.04048819995333687,0.0001068054494564466,0.006869536931912292,0.01546294911999063,0.10567346354878702,0.0016518782165369195,3.380016037179446e-05,0.0003656174237871893,-0.007169265176812273,0.019342678834548963,0.01803412706792428,8.217418506677449e-05,0.0015663332888580781,0.012358054763167446,0.04858791902093785,0.008216431248265845,0.00011629750884590103,0.005209901756266372,-0.04159238355140548,0.03946447137947733,0.03843467170951123,0.0006023973890906719,0.014638140123494988,0.017975620974783925,0.06038866228057501,0.050738279783178235,0.0001252894497695625,0.011771901040559443,0.02009985240295093,0.0738535754188217,-0.0027887573622286275,0.0017467892787044797,0.0064923409662520845,-0.03280226587321937,0.270087356497093,0.02007152522151718,3.1230704813628194e-05,0.020946003962719707,-0.026246469237155935,0.08387410969702545,0.011823276509359736,0.00102309093209684,0.011811097426440376,0.011934701787956074,0.09661580367571912,-0.013278768180116798,8.226006421776398e-05,0.009669904990084407,0.04058783083043255,0.054831764885683226,0.06457421405391388,0.00017470647572769788,0.0008165139043800895,0.015650819526006058,0.020166509724424866,0.008077850601622432,0.0004454615841618854,0.008649821894563686,0.00010471396098331647,0.00037233995752182855,-0.002704392253126792,0.002179793153232929,0.005352805965029007,0.010474672995631451,0.04081531702022575,-0.045000880640195105,8.233939471075812e-05,0.011594930393742453,0.074508395071157,0.10049396596601266,-0.012469793600972192,0.0018430724806784984,0.049442396988787544,0.003509208803136859,0.011734685468614671,-0.003205601888599075,0.00011848238648461926,0.015796716627151854,-0.009743135238764685,0.02680936332924247,0.0011016229326862618,0.00014732369623577456,0.007883230802668891,0.019734507761127448,0.08251633133674431,-0.06800648701212762,5.8371427216672114e-05,0.0019377285540799548,-0.004661721605092081,0.016093729059160556,-0.0009306589137053077,0.0027454131308440057,0.008126357774393637,0.06819983953587468,0.3315761285019087,0.08314070320404125,0.00010231532005942867,0.0029304049639004913,-0.017823579605534406,0.09451520634219664,-0.007480534574673868,0.00013675840523040946,0.007805141450897999,0.01654174519682872,0.09544579077458178,0.007231467537867681,8.197345595602452e-05,0.0011418127214549052,-0.024991908514588015,0.13767616416956274,-0.00986456767825691,4.5623443352133225e-05,0.01097780007438347,0.02785145017820972,0.05788689708604724,-0.0011490850300925836,0.0002345832163013706,0.015130206367054661,-0.010102810708048434,0.04265380632158716,0.011574533951689513,5.88977628668257e-05,0.005038813090373234,-0.01391521811494329,0.1410952176805021,0.0019158069699775231,2.544538402321246e-05,0.007479212049334048,-0.009790049181074461,0.0336356310790511,0.014782764163525872,0.00010174059136776133,0.00043931791935777247,0.02565112573479658,0.10129220560952484,0.08075405818642646,0.0003991704397864377,0.003251056142935118,-0.004702391016415155,0.022219239498325362,-0.001020189559206747,0.00012121638969178927,0.0012481814661983966,0.0052834612663542274 +2023-10-12,-0.010165516492745337,0.0740619831725417,-0.012527677786498171,0.0001451512219122226,0.01156808844890534,-0.013622929178893713,0.05109457516520049,0.002252608302460114,6.39744016987455e-05,0.0007865267863748041,-0.008977175364519308,0.02482286775572823,-0.0081901830521243,0.00016729576990584532,0.012582176654146373,0.005018204816688238,0.005956906334805304,0.0005197854198220365,0.0002843121816373122,0.0060349548223377165,0.016207410374796304,0.028733442829969414,0.005061693291289666,0.0002951370519306295,0.014006249564949263,0.012586908067595666,0.03235686833759228,0.008383168639359007,8.493746952989454e-05,0.0010152589129871566,0.03909296440371514,0.1350910410591579,0.0608257998175982,8.49106001973242e-05,0.0018082544653411823,0.00696853654581972,0.06528504834118076,0.004867352866564213,3.660382467169164e-05,0.001635830930975072,-0.016386036117179207,0.012880632849478444,-0.012747213787705946,0.0009810282037264187,0.0039244643132596724,-0.016631259870530952,0.037146308900828005,0.00875140822869885,0.00015655659607537018,0.004771412467379419,-0.001267446942661819,0.0009283900542050372,0.0002449444145411033,0.0006673039062874299,0.0027387981243605602,-0.0005356697905000384,0.006920006484566184,-0.03793477905616212,2.306818590482666e-05,0.008931590395983142,0.040328753069570164,0.11432716327536797,0.05951792608132046,0.0001047891709248036,0.01918590053568255,7.722471525665389e-05,0.00048060307535954274,3.608308903189596e-05,4.52305208075358e-05,0.004137442535821835,0.0141512330040973,0.011721579851416544,-0.015586316069746206,0.0023546757106400486,0.0012603600811067414,0.00028044481894557257,0.0020252717705059277,0.004218442299866328,0.00011395049591213198,0.015340241966301156,-0.017641526689129508,0.11260861053132533,-0.07270681871757434,0.00024258994621035974,0.013673237168897893,-0.09907438195492968,0.5834340840166677,0.2475694142210044,4.783332062143114e-05,0.0007711945739339863,0.03233922584708346,0.14872249102508006,-0.10514267399049984,0.00035837670797497746,0.006787518318725872,0.05361348202170794,0.6626655908109675,-0.07697964995896474,3.357452098196999e-05,0.017849805666166698,0.025473884679851646,0.24392279175976614,0.05970071420971823,3.489189087197867e-05,0.01144781876575432,-0.029514980306288765,0.08916105985352721,-0.02254857087362635,0.00010663260801983612,0.011721648828186522,0.011509676380891636,0.08182821019334097,-0.07954832270027827,3.249020388738311e-05,0.009824712469560187,-0.015539743531679221,0.03560907540581254,-0.038565131434911096,9.675212935697347e-05,0.0010030978392796222,-0.008320311936759051,0.02598931188638647,-0.08919990447725448,0.00014638393702156213,0.0021555301176012353,0.01845819939323338,0.017456395086482702,0.00228674082712608,0.000604380344455298,0.027978862243327407,-0.0078030456974417855,0.028602095040195275,-0.059405646800003174,0.00011482919334082556,0.004403311652205401,-0.05198356869776349,0.19683460230662947,0.04315565861012937,0.0016950550931188746,0.013935961336061552,-0.040380702076211444,0.3282265924287994,-0.013391586949635305,3.1636053168415085e-05,0.014390477096745154,-0.026397114799758665,0.08595680581263558,0.027046073610694856,0.0010040317866310759,0.010989698364546564,0.0508398657550925,0.35986513734995673,0.06175388148212392,9.407847367187263e-05,0.003200662395850983,0.004318669880365165,0.006565168126708251,-0.05684387304884152,0.00015525641070405748,0.002000281685921721,0.004105660120183282,0.0060110318390658056,-0.002039333793331909,0.00039204676960364736,0.0032893157006277924,0.030001697245997428,0.12826516647109423,0.027372496378639512,0.0018129567188046117,0.007577039254347275,-0.024664803880540584,0.08532764341010993,0.012719186949348005,9.274239042135844e-05,0.011114358958604069,-0.025033356333546846,0.036632932729429,0.0039560571559884,0.0016987308920419259,0.017908312331488454,0.009953013138272232,0.031178005045591827,-0.0075277814960940164,0.0001264801263763314,0.015870725561866608,0.022351054188343936,0.061476203425268966,0.0031972546049869243,0.00014738434257432714,0.017732936458904263,-0.04202323640559294,0.1715050899201086,0.034540438221790454,5.980347329603546e-05,0.0013380252296087177,0.02803875023372822,0.08554677954186307,0.009781474847533307,0.0031065120676767293,0.01268937470788246,-0.01017210763406262,0.04673809642147173,-0.021795375149636913,0.00010826310970587361,0.009327763427877875,-0.005671324938399414,0.03343677900862722,-0.18313626489752977,0.00012300446614410125,0.006194188801617519,0.007129583302167878,0.03941660275660752,-0.027374568030671648,8.555268732988888e-05,0.011796440692915253,-0.02860352730246465,0.12207473128050038,0.01776065620591132,5.8889953348878856e-05,0.019061603303258436,-0.009621532691641474,0.017992447195013132,-0.013778148337870291,0.00026072544484925927,0.006084024922510646,-0.00980231816481332,0.04556007480738024,0.01483830791005375,5.350061103613644e-05,0.0010622090148366165,-0.02333054886209849,0.22275456239189126,0.04289889860672714,2.7022755604979993e-05,0.0008825021351703966,-0.003726614969741784,0.0092223262326201,-0.059857975184071,0.0001412482278599623,0.002545527397603607,-0.002683603631517852,0.010810474441807692,-0.022931147124652565,0.0003912925574039103,0.0013947953829796002,0.009504513510811241,0.03639179387957257,-0.004649499482032979,0.00014958850586987675,0.0026910865480635226,-0.0013723597302329428 +2023-10-13,0.001959801252672188,0.01610492097298483,-0.008872586243331168,0.00012868858238193503,0.006783931411616255,-0.02778852367285781,0.09862138095491611,-0.009324009799246587,6.760906371211028e-05,0.01185981936531692,-0.04439561438793419,0.15263964399560964,0.012499177370374925,0.00013454573347741796,0.02663962671290585,-0.015376034567383155,0.017549802406141814,-0.05653413141182068,0.00029569227038321664,0.0055000495118383615,0.025309600467218064,0.04699320403842175,-0.031961883992194545,0.0002818045527779039,0.01354198444778972,0.02146640851854972,0.05973266641016487,-0.18511967762136425,7.846829716691503e-05,0.008618025317507903,0.05558908693544433,0.1873295134845504,0.031056607635835613,8.707093151017876e-05,0.011442983134995153,0.014164494373823982,0.11341438236826981,0.009659121069489966,4.282837125600838e-05,0.010882006870058669,-0.007990459897973866,0.006474897711722168,-0.0021386899623340298,0.000951664021855182,0.015218851370089506,-0.010864123208931141,0.027670291690115003,0.0017773929143506755,0.0001372912411898984,0.00982700650363174,-0.0026608539284975747,0.0021397161703271784,0.00010866102880117757,0.0006078399261798674,0.013214367819035549,-0.01486416990399658,0.19414235791928722,0.021806368135083944,2.2816191343750912e-05,0.0067333809958669945,0.02313770529791682,0.06912612383583777,-0.10316150243687575,9.943267381432096e-05,0.003563427574622224,-0.010831925713853588,0.06467676949243109,0.012502851788799549,4.714321231869342e-05,0.003375587473567459,0.04495353366968459,0.030191231432642962,-0.01581110756033658,0.0029040626506349194,0.009514738984467617,-0.04222531164983777,0.28863637713591334,-0.0513011032741748,0.00012038542397854104,0.03035831402735258,-0.006962276720059854,0.03966582618854898,0.00548041745746321,0.00027179596685428736,0.007881287541731737,0.04946389240536458,0.3317543477530143,0.04499209923185598,4.199838802011355e-05,0.022237428577106436,0.049688817807480516,0.2584051039822912,-0.0330177793771061,0.00031691615930277186,0.013601555906079258,-0.03817390616500146,0.5749682500740468,0.031286710501052244,2.755198982735993e-05,0.0064896362189248245,-0.019378333967665258,0.1934879905903528,0.05325656766013072,3.346140180297249e-05,0.0006206978507367835,0.0012687740533101166,0.004382147566983528,-0.06843702440808726,9.326529028815836e-05,0.014756712622748544,0.0280118247701917,0.2112223838668455,-0.056005850585953254,3.0633303748251435e-05,0.006577851881132734,-0.025343126088111814,0.07848234544422925,0.10350207747027504,7.159218101577973e-05,0.00027171058676979604,-0.007538232170057605,0.028492174243282774,0.009499185782533346,0.00012097413157491299,0.002755193803943531,-0.004487666828069032,0.0040412024470539735,-0.02328659681471792,0.0006347249364488038,0.0123329108201359,-0.010011373072744868,0.04440663894034391,-0.026951892534925893,9.489247000287276e-05,0.00028880272554570783,-0.05949092723345254,0.18961837703105222,0.014992503935222487,0.0020136755067165168,0.025600991443777928,-0.014990123664038566,0.13952833914355897,-0.010759680003925066,2.7626443932026223e-05,0.03705405816712999,0.01612331988584176,0.05172665468201666,0.0004545330175725115,0.0010190872029599608,0.002396791112777237,-0.006703006299010315,0.05632818882444407,0.002833668172682519,7.924456460398402e-05,0.022088269057085844,0.0048933017155602535,0.007418989601560575,-0.031845436729300916,0.00015566917314212156,0.013803456406400277,-0.016469116036434764,0.023824107215030036,-0.02696634253592096,0.0003967871220325296,0.018247971516312154,0.009916644370484989,0.04287078955223745,-0.010094002778664339,0.0017928898065945875,0.013177047531551012,0.02902337277739585,0.10729748291971856,0.04714227940728988,8.678580902632055e-05,0.012650897442438578,0.05057249875635736,0.07533454912799825,-0.1435402666327402,0.0016687735623554772,0.030449260892159224,0.02840735982993182,0.09061155683240045,0.008093989148875264,0.00012421193194226803,0.008143308755385105,-0.018590109261664798,0.04759577301076841,-0.12349155159063363,0.00015833390893926785,0.01004044694428254,0.0032714457961169896,0.015088294294196575,-0.10832366368409453,5.2919228942285715e-05,0.010067693916008275,-0.013336118418146423,0.040157744862075434,-0.005818562974622437,0.0031475902035507292,0.024005714088439708,-0.04144577914159284,0.25023789888965836,0.1029498127114655,8.238872731417912e-05,0.00370342797904238,-0.012687058481715597,0.05363077974632957,-0.001881936513595702,0.0001715566728092497,0.0050732011309583235,-0.027039699231443306,0.15320276861636556,0.04095122296289057,8.348028854660471e-05,0.004342359720004783,7.769108358232601e-05,0.0004115660434313127,-0.0967712814559572,4.7443753177688606e-05,0.024500069435437845,0.030557559535451525,0.05479013925112821,0.0017789906857107228,0.0002719228205932903,0.01580293819257736,0.015765685298156813,0.08037242854788752,-0.0151643161148554,4.8777567424806656e-05,0.009426326087811195,-0.02113345379086449,0.22725881053611977,0.030386164944351004,2.3992805577702852e-05,0.019373625679406176,-0.02390088758243485,0.07397772870473533,0.1647145851040931,0.00011293329523849614,0.011612116640265744,-0.014580285515589682,0.054671841964981815,0.0228106698189897,0.0004203686242296985,0.0028896536082816523,-0.07041933269822387,0.35902449526112595,-0.05581411653406507,0.000112341345483007,0.016954589497393976,-0.002448200237697501 +2023-10-16,-0.029716916260284887,0.17784187320950715,0.02189046063770079,0.00017670803609979327,0.007776504446202684,-0.0028761658206360344,0.0101779661122657,-0.02312913966929391,6.780526958506288e-05,0.011800038804169891,-0.04451531636489518,0.17425529594484307,0.032059674593374304,0.0001181736589865793,0.007962201320151335,0.017695163227775625,0.018990219575012193,0.04661533188148842,0.0003144795744336631,0.003206619406921794,-0.01722035340077282,0.04411933813489444,-0.0006795018888972558,0.00020422591172726374,0.018094535353663777,-0.009505201005416675,0.02355821886463526,0.033873887383747636,8.809790743769985e-05,0.006168449007491857,0.007385110649411249,0.022302320388084357,0.0004917071883198781,9.716208178254314e-05,0.00915410437874994,-0.014966608508560877,0.1233943241324582,-0.03213327601151475,4.1593630518352556e-05,0.010218440474252945,-0.03220710449687199,0.030693043780880825,0.03570917800592304,0.0008092011850743871,0.015662516476222965,-0.03499389821276078,0.08999628009501927,0.04876093370864624,0.00013596579048393408,0.007553503466758952,-0.0011175156215302623,0.0008082309307935894,-0.011962870185183739,0.0006758378245699948,0.0035793180239242473,-0.005352250291359463,0.05995904450093926,-0.047076161752778095,2.6601400422274404e-05,0.004351150669386507,-0.011420259450870426,0.0354645308169987,-0.023432317714449973,9.566053154424943e-05,0.006380617761246971,-0.022843622685794995,0.12237276995544101,0.054292504168774854,5.2546283661540784e-05,0.003913611789493733,-0.02170585582157801,0.019313831864203886,0.013278783188691067,0.0021919540216228627,0.007568476366083695,0.004042022656496668,0.023267459510093274,-0.05379945687192917,0.00014295583430359534,0.019203798597047298,-0.0144665494700271,0.08887949392245863,-0.036853773091909015,0.00025204124448849786,0.005736054373890854,0.0008371243280863,0.0054546071922721906,-0.02594125083937379,4.323021929112724e-05,0.03243121402428704,-0.0033966537582290233,0.020817609485701476,0.0008070889821647757,0.0002689101709928453,0.0002552283803909537,-0.03212142792127549,0.4326715066571531,0.01515790948083988,3.080823216927654e-05,0.01944166317153688,-0.001823721292422588,0.01937251793233219,-0.001013155370569226,3.145242287877314e-05,0.005617687078603963,-0.02823321290691086,0.1019125199991765,0.01838596377306913,8.923916919820366e-05,0.022095679543131647,0.013634135727888666,0.09745563485166943,-0.03702840402692304,3.231566030219266e-05,0.0058227755078470245,0.026574823301877656,0.07815240054621347,-0.07199897723413128,7.538855956439562e-05,0.010377113154960114,-0.004506261805048093,0.01712561787993907,0.0038898295279337367,0.00012031472033776726,0.0020778058756695207,-0.026450922213956146,0.025035458856967195,0.011665584385219828,0.0006038941520814881,0.015261573867508425,0.03125495748823123,0.11160454124493718,0.1428472543342296,0.00011787536620619482,0.00555434362692166,0.03479386081838739,0.13148370336244697,-1.182778122654213e-05,0.0016984386676682358,0.01185853317870837,0.003871977470749821,0.03448825853046976,-0.021104753298561974,2.886979842528548e-05,0.030586482267446438,0.029252518730096794,0.08457084290974662,-0.022693451302135095,0.0011308731078679263,0.015259105468477627,-0.024486797082994786,0.18549011118858522,0.028469709584664556,8.790971336929624e-05,0.003314326893006131,0.05535812412065025,0.08622623045406279,0.14900267033516584,0.00015152606700343196,0.005384428128400093,-0.020236734045877024,0.028149608807266895,-0.01603777413822737,0.0004126406169258073,0.006583822638152392,0.030276106819005614,0.11125038719918219,0.019099773266512472,0.0021093509301903404,0.004559755875033472,-0.02409873819345165,0.09690294860827163,0.013759708320550955,7.978985609724125e-05,0.0008356728690192941,-0.0011342409773303457,0.0016225845469252606,0.007341169898626028,0.0017377015538934868,0.02104117948822166,0.0093262132756818,0.028467605945915617,-0.01480813020224932,0.00012979872718195027,0.004587254615445318,-0.002476047824703738,0.005075921067677108,-0.00044187659740000355,0.00019774456002660722,0.0005602074519703679,0.021596192935467058,0.07037084823094063,0.03728570609210487,7.490284917233433e-05,0.004782009335572915,-0.003817911392816806,0.011541145471618263,-0.01273968878350346,0.0031354146825045798,0.02000389511227313,0.001850056659899551,0.009799967451963147,0.0002520660704971548,9.39076487216491e-05,0.011636888972453891,0.017321576967097515,0.09122192465240513,0.026515325892924532,0.00013770476909254534,0.0011673382523216909,-0.003720325078709735,0.02065729108543493,-0.01727686090473225,8.518364494295446e-05,0.0017318867405013284,0.024304808757068582,0.11737160401631437,-0.04408904295275255,5.2044706450581334e-05,0.006686947435309355,0.0038436766418256134,0.006031939141517562,-0.0019823380105332194,0.00031068428577581483,0.012589862847861885,0.016022659522781008,0.06491318053449632,-0.002808556917177001,6.13784746528034e-05,0.010622704157496287,0.03254133351016722,0.3555585285590091,0.03175763361846542,2.3613237276215226e-05,0.004147423082154416,-0.010223631084215359,0.028433506821616144,-0.03331472468923534,0.00012568507480808846,0.0023030249893937803,-0.016993317428694536,0.08193253146881767,0.03467342357238555,0.0003269262307770556,0.004293656343600076,0.02611874174427249,0.11541400880177854,-0.02181982659367688,0.0001296180612025445,0.02490337122693269,-0.0015151984661954483 +2023-10-17,0.039815339371629545,0.24869200299686883,0.043212658610512565,0.0001693071057110003,0.0031785484465808086,0.0029817960280651063,0.010754456146847297,-0.008561276854821092,6.652731646115555e-05,0.01736304449024573,-0.051361102040795206,0.18440525274180028,0.04848697812595371,0.00012884223520510528,0.013521488676101319,0.0050340216329512796,0.0046367777423667765,0.005749371163504034,0.0003664094405574895,0.008868694604608103,-0.048494761607624774,0.10949121026189226,0.05011325704419349,0.00023174658587969495,0.001177697972036018,-0.009594706017252572,0.02949183457973521,0.005381613475470412,7.103569322091568e-05,0.002826918572622831,-0.011610091912526651,0.04658747010235514,0.006046532790942332,7.312340161067325e-05,0.0025913291371823625,0.011490728976241014,0.08212869631562929,0.010445209847373075,4.797900827062298e-05,0.0017663380765370808,-0.00810021424841908,0.0070039405786921985,-0.016110730394337632,0.0008918644224697873,0.006616447376653609,0.006286980901528575,0.014157362010110128,0.007414427819028642,0.00015528220527051805,0.002644948931180275,-0.01720887386562935,0.01181660177110507,0.004063807226959806,0.0007118429856247634,0.010278223926808635,-0.016745965184599088,0.22316520104925103,0.010995218867707478,2.2361786614453036e-05,0.0008813077298707801,0.009977857205619303,0.03135001761849074,-0.036146412253587556,9.454760519361415e-05,0.003082610876081769,0.00646130414460981,0.03344769007537541,0.0011132885035721103,5.437707871883894e-05,0.0006163210766222308,0.0012069014418881377,0.0011428852316579883,-0.04043626666113362,0.002059643985104957,0.0029727579904092185,-0.057596082580448696,0.3495243372904736,0.0069254871347240975,0.000135602480074188,0.0056220088059177374,0.013370138275572303,0.08010243543900958,-0.023618683303170747,0.00025846301739315957,0.020522107774690275,-0.0009643601525892861,0.004713260429982664,-0.025857224505811235,5.763400180114883e-05,0.025132153695094517,0.08785142848971657,0.46999402761072884,0.3668770361642724,0.0003080656639324801,0.009021068358027656,0.003883823074782591,0.04490178361885869,-0.03414671384733702,3.589434859611802e-05,0.01523064713457458,0.00020153170992019033,0.0016396370312730703,-0.0017868964066309447,4.106552510193695e-05,0.0068769839763315795,0.007840823783554433,0.022461033901604407,0.004894721470316704,0.00011244876913130611,0.001801063406963234,-0.034252479766573994,0.23166255181673387,0.01923919496327299,3.415297644962503e-05,0.005707856340708603,-0.02309687456128491,0.0637766042979605,0.09216018703628252,8.029143242405789e-05,0.017988352382337713,-0.015015802919859884,0.05965468233571859,0.0478992630216492,0.00011509398248710234,0.006963127477142656,0.0021944826087968885,0.0022594998411031987,-0.01850959943801386,0.0005551308843317304,0.028995329653707033,-0.0023074098066573744,0.0071193628809307925,-0.016864947175530904,0.00013641735139009595,0.006214785299398541,-0.03321578708594769,0.11174369767187099,0.008376085704297157,0.0019078344399608184,0.005160030237440627,-0.01631288279356806,0.15196830728647984,-0.04337725749041703,2.7603228787498546e-05,0.01029324241546743,-0.021003268139989085,0.052390911309589026,0.013268937196881266,0.0013106966632860334,0.0006224077531041497,0.004618953997851292,0.03750654993228592,-0.0746921822616511,8.200912214814115e-05,0.010748718665633449,-0.0032886648409852053,0.004346658576827177,-0.0010021783166712982,0.00017857040072208764,0.00482591150788486,0.06398195305699657,0.09562577300258879,0.1776326181146659,0.0003840488312624075,0.006083668738188056,-0.018313187318331696,0.08396102775423836,0.02328259759913767,0.0016905831370830752,0.005471968290277202,-0.027019701197373527,0.12162871018044313,0.0002772312314209206,7.127460368344404e-05,0.017109090019017135,-0.008385895222899595,0.012088192187973197,-0.003079841991592413,0.001724508214744971,4.741222709859572e-05,0.027026806571296868,0.07876191810766514,-0.12032601930915404,0.00013595478138691877,0.02688304318435875,0.005157391562399558,0.015822929499785733,-0.0009840933284915759,0.00013213065517125018,0.013704388331857031,-0.0316067974435018,0.1560106342577262,0.02334533276849411,4.944703052820264e-05,0.0012671636884893952,0.06318103053006151,0.1790977048551424,0.05535630800095825,0.003343603282107057,0.008583034530482578,-0.02878021981504352,0.1580589993342878,0.033726591608800024,9.057648212403016e-05,0.02961780169814302,0.007969257778629448,0.04530953857916971,0.018462425555876637,0.0001275525131735084,0.0009726585761881527,0.02338044141711513,0.15059830850664177,-0.008243380507499438,7.343131592337854e-05,0.005317646086548256,0.018783056042568892,0.08962162598757,-0.02507048183378945,5.267454952969432e-05,0.0007618452942074808,-0.03384651965569704,0.07052727682779503,-0.013834653175941085,0.00023398407310322658,0.020581548595709334,0.012669230456446183,0.038860091359463694,0.003291615559120993,8.107011605727377e-05,0.005666167483498981,-0.03207244638849532,0.32171130833827033,0.04891420452863113,2.5721544698814458e-05,0.005178468606252961,-0.00034621816411366073,0.0010844074544845656,-0.020217695013713278,0.00011160054598091172,0.003482262664915905,0.013967844799528159,0.06110232350516209,0.018956355481526885,0.00036032935683504274,0.0017127923388855306,-0.016836456483352934,0.06925857959095415,-0.0024329740770739666,0.00013923515663018555,0.01817964324244413,-0.002452265122506296 +2023-10-18,0.026226163294719815,0.14170741339228674,0.010386947447985864,0.0001957171008865193,0.01649518949263635,-0.00877712883995274,0.031830578446378745,-0.002420324476662086,6.616349969998809e-05,0.0018854667418834235,0.03136971095326804,0.11847143382868787,-0.06749678042759902,0.00012248815044443864,0.04025291239762289,0.015281284785277505,0.014338026003216856,0.027369337135387656,0.0003596982807531565,0.00072950942997995,-0.04431896604982384,0.09858484026073601,0.0859543519787961,0.00023522162996430186,0.02338270395185475,-0.0046258216401301,0.012618740108709102,0.01603432091746145,8.004231251736029e-05,2.853121759928412e-05,0.03323361325833417,0.1125636743363601,0.01011003121636565,8.66301678417006e-05,0.00018215841859184367,-0.03612822198548478,0.3102105739988,-0.054414319762568386,3.99382108893164e-05,0.0036804060278553263,0.0032110542921529018,0.0030467913134285362,0.006229656168414146,0.0008127364292194227,0.01529826057573655,0.002771341971592478,0.005499944458865752,0.003093522281910593,0.00017619504939253266,0.010801756004069848,0.004180440337784843,0.0029562192781195365,2.5888011515979112e-05,0.0006912095710827016,0.01838934592112156,-0.0028352879870401568,0.03606274106945768,0.0014266675249851731,2.342940359437114e-05,0.007948186614403755,0.0528939762208353,0.1496067918899335,0.036479139672626705,0.00010502820503338573,0.01684179515928722,0.018952060679732385,0.10337863479650646,0.026376129786907624,5.1604486860060855e-05,0.004493438128617759,-0.03265179096992888,0.022426058413066035,0.009885003589080264,0.002839729879666598,0.015815749686186136,0.004547761080755598,0.032858519857295786,-0.05555086327438834,0.00011389423768640904,0.003724994255164667,0.03968328821640908,0.24081021564890262,-0.03876628068955078,0.0002551766763948675,0.0014014920507005662,-0.030186373129719946,0.16318476118213798,-0.013415371689928235,5.210654669952713e-05,0.01582819824213341,0.0195980856476135,0.12371542207770163,-0.005424589895023556,0.00026108181164098015,0.012004327951728132,0.03419273401493788,0.49437413131735597,0.029576482138729814,2.8701746309265125e-05,0.013410442638418965,0.013319634866327123,0.15661498628925574,-0.03228341064354557,2.8414545377219483e-05,0.006053897578100749,-0.02691458938586575,0.09068615182934485,-0.014020205219159724,9.560256420607735e-05,0.002645680608370675,0.04538148845576956,0.40506110970919074,-0.13158099478673954,2.5879183141855818e-05,0.004855867645220592,-0.003154752388581029,0.008432078672726223,-0.0594370967637823,8.29483994133892e-05,0.0010397611803775468,0.01350943571085925,0.0552720753931798,0.046107342170849885,0.00011175836318194452,0.0008062185468739093,0.008550230041803011,0.00797573476550839,0.003116866323390226,0.0006127490658774089,0.006436484355981285,-0.008808312787062875,0.04104428057577195,-0.040675400700910094,9.032876854977789e-05,0.0053540448084255805,0.008467688887400801,0.030597605973011578,-0.0012402165872012186,0.0017762194453793847,0.022060920355383755,0.003507832761776157,0.031800546884850886,-0.0016536803199102051,2.8365241563187602e-05,0.03069695179763257,-0.014893101075612803,0.04090299109491433,0.014750423348148248,0.0011904230818958169,0.020419090166702764,0.015447684088965304,0.12005227647167221,-0.013343133110216229,8.568772705080214e-05,0.0014950992858340539,0.024121236493516527,0.03796273374168495,0.017084932918278152,0.00014996415819812936,0.0029891548368809317,0.0025286199060282357,0.0037299729515794986,8.757483372904355e-05,0.00038911841464118145,0.010473335112549184,0.012654749102471531,0.046744596680378794,-0.02140682641841775,0.002098323590783116,0.006383096100074181,-0.020755100414023307,0.06643969573365165,0.00018558374079132112,0.00010022765614601849,0.001673780847914227,0.004447882855305392,0.0057266093767234585,-0.07441927821519666,0.0019307808040912374,0.01436312251065496,0.0350843371783909,0.11570404963838951,0.04136220010262118,0.00012013809831292573,0.007209864969376515,0.026500430607047938,0.07056066953986292,0.02473651881153538,0.00015224765561192016,0.015529376709335711,0.022516854389782653,0.10178302325454182,-0.0015674347318408344,5.3994098919983904e-05,0.007310359945987305,-0.03643257677520431,0.1111920039589429,-0.0019285931811474967,0.0031055204207330713,0.019518533110468014,-0.03164862769128494,0.15460140954228857,0.03929574549130359,0.00010183146808351621,0.003580513314311125,-0.005738525896809753,0.030911206100479063,-0.027345046326842783,0.0001346310334334236,0.009478132754098373,0.0008748057636177571,0.004813064678273147,-0.0678566970890408,8.596835896437864e-05,0.011716579050873763,-0.000995197114127414,0.004581832317182961,-0.0263252830940263,5.4590530127516427e-05,0.0035294964894908238,-0.00939422638747133,0.014961606376937171,0.012513834121362115,0.0003061344406136879,0.0016493009078531386,0.016921286849612284,0.0774209389276295,0.019304391071255943,5.4348721178046896e-05,0.015311894325527022,-0.0068528636958279715,0.07160657950586613,-0.03429584126870743,2.4691669218157355e-05,0.009966314895360682,-0.01488428515555964,0.049117429197757224,0.02047160250677983,0.00010592569409534798,0.0011931449503257258,-0.013954315100957519,0.06174641935872932,-0.0069049685463350805,0.00035622526504060036,0.00440999344874313,-0.005321162099057699,0.023716764667340167,-0.06761592879382657,0.00012850583289885953,0.016555164458096277,0.004152888856708244 +2023-10-19,0.007169873053876068,0.05669169851944129,-0.015004095203876973,0.00013374531604273438,0.03476983609997689,0.048284796845708404,0.16712256712036805,0.0331069950497687,6.93243549078907e-05,0.001790316127786007,-0.0466083720711432,0.18603727170173184,0.03579038883609552,0.00011589405989097324,0.004772783537411596,-0.005537214168706547,0.005353645446649529,-0.009845146098829298,0.0003490676255496914,0.010639636504661997,0.006562631773134139,0.014194454874413526,-0.011860327086240649,0.00024191182100729352,0.010830227806532488,-0.013382850931190397,0.034111924713076745,0.056649967918831506,8.566218657143795e-05,0.0017800889157876503,0.014890272387487337,0.05274417884186383,0.004073358508276517,8.283577928218494e-05,0.020971899772064945,0.022189101363720137,0.1816080434369692,0.0028165140560581373,4.189896056210284e-05,0.005903320919335944,0.003826572521805802,0.003335121672970839,-0.02096626734555127,0.0008847958003007664,0.006431734675516301,0.03968442076933442,0.08473225594355734,0.1006143336014867,0.00016376955267029353,0.013797710336655186,-0.019103383682958865,0.014188097730359268,0.019110674026715582,0.0006581281774592922,0.007065841096646527,0.016241935462059508,0.21562099710816676,-0.09827569723954208,2.2447579579088448e-05,0.003291009925349633,0.03804603065100921,0.09342222105335393,0.026685467007266463,0.00012097905928235426,0.005578640582549338,0.004075195981366274,0.024834454827358715,-0.0033010180825276507,4.6190821584077893e-05,0.0027577151323527533,0.004923622476132523,0.004068831983150334,-0.006130704417687101,0.00236014106548631,0.011300186808618553,0.021851972153435192,0.14504902294992644,-0.009645803428224962,0.00012397323627261087,0.05551352664314196,0.04989221094498528,0.23011857023489887,0.02962222466658815,0.0003357293539835304,0.0019915966118930596,0.043852482452846946,0.25001088038848,0.029813333036831837,4.9407881193222445e-05,0.023999012159244465,0.004117218618127855,0.021185918798031327,-0.0005062616432362188,0.0003202900387994124,0.02384034875460764,-0.0723156442253367,0.957400332172586,0.10650181869843037,3.1345046389675656e-05,0.0453446629017891,0.005403964559995715,0.06435632423803785,-0.016240654639745795,2.805452824768178e-05,0.006878970908007759,-6.368545764058143e-05,0.00016875518206768206,-0.0050642294812403505,0.0001215642603344275,0.005638782157792684,-0.02774349002882504,0.1833038216537965,0.01216352492005933,3.4960847287676025e-05,0.008345971603540498,0.006000542759795777,0.016504272471828427,-0.010898114313935777,8.060677249719008e-05,0.004238827886539972,-0.00495368011121025,0.018672610915065488,-0.0012505167667354034,0.00012130299000322095,0.00023535770417736036,-0.03156927273338766,0.03308716579281986,-0.07883383583258448,0.0005453565968130818,0.0030327393531208477,0.004029775165895689,0.013965804085985996,-0.03083553392557599,0.00012145093980690814,0.015854710836404797,0.025565784344482343,0.08413478979239097,0.004841251530285849,0.0019503056633734198,0.027223101671168752,0.0417141589763919,0.39992312541911246,0.01670429908042968,2.6821877176013475e-05,0.010661404647544307,0.05187077624315679,0.15288347167384755,0.031179398465214534,0.0011092603277551166,0.0291218724906399,0.009572002133851992,0.06115728458009664,-0.0002987344673115067,0.00010422699958189934,0.011555991555041964,0.014683589940418967,0.02485088694554017,-0.06324977313128821,0.0001394555299470604,0.014540478025926933,0.020865449768146728,0.026901629523617934,0.006720969833560266,0.00044519786909801603,0.005371527997496536,-0.04078288952840113,0.15507903770932566,0.017403387095689265,0.002038333474023795,0.007675181684844027,-0.002593543125689833,0.008237954221525411,-0.03096564924060521,0.00010101002301158942,0.0009618297976048088,-0.02568438892056987,0.03462174102946465,-0.027155966078564086,0.0018441554474336438,0.004412427488260166,-0.027176513828499786,0.09413445411650317,0.03239282009855471,0.0001143829184339076,0.0031486755603221768,0.0018061201958336681,0.004653049224169012,-0.0015073143097129097,0.0001573509531771942,0.007949393419055425,0.010783983846334534,0.04536488838461887,-0.02000336426034901,5.8019409847141015e-05,0.010290991943336738,0.053382345965006475,0.16879440432001047,0.025261307497965256,0.0029974894845763997,0.006769326791024692,0.007393329911434765,0.03787221731739031,0.00035785829611858307,9.710909888453505e-05,0.001663231729809624,-0.024439864197881345,0.14104379396440977,-0.013720352824278787,0.00012566246979168154,0.006884984710533006,0.019261276227864815,0.10366915264963872,0.010049188874182704,8.787881852598905e-05,0.004293447678905378,0.002315476378997746,0.010211109490055052,-0.05767677684594204,5.699212060897094e-05,0.0011676628694303845,0.03640511961795629,0.07083503194418499,0.0113226756044215,0.0002505784753028869,0.0014399105483426026,0.023942201307489315,0.09430343856177233,0.028438072613708936,6.313220024331904e-05,0.0013328679056229262,-0.010490260985211552,0.11764832797304499,-0.007143222348349332,2.3005507551911135e-05,0.012645031665409964,-0.0025884377697457045,0.008353539425053581,0.0013844903827999943,0.00010831189799136191,0.0032338963818561934,-0.0005863730434464789,0.002547402994983365,-0.0056721478316178265,0.0003628309389524242,0.0009917843175252753,0.014233315367282926,0.06592924332019665,-0.022504358586575113,0.00012365161038488309,0.0057714502766175926,0.00705162011670131 +2023-10-20,-0.030909088401743216,0.183831704180551,0.02489481337920893,0.0001778084381991255,0.020563348659940094,-0.020688563560714166,0.07169361899379514,-0.05904711742012478,6.924052641587252e-05,0.028686790953291078,0.05688235411548181,0.1966561912150405,0.05497386372015713,0.00013380339796286163,0.01456506335665394,0.00454216816442921,0.0047854654983735985,-0.017949694004590996,0.000320336831721397,0.0038156459992205634,0.037730502071155546,0.07490171775567762,0.0477003179400137,0.00026357157934203305,0.007094898672690427,-0.018811270480426735,0.04396069621888413,0.07590337592670991,9.343300265646608e-05,0.00805720680654981,-0.006801439142987389,0.02254161944799325,-0.03297039318256152,8.853307689382608e-05,0.004484950122611417,-0.02746537264857143,0.247149681633335,-0.0015194627567999084,3.8108693072149213e-05,0.014562748223519667,-0.020969386745420423,0.018477138698674535,-0.01565139532529078,0.0008751768018593368,0.004997431137623886,0.0016518133208514659,0.003464004343442948,-0.07045932229693676,0.00016674177586814976,0.007833844162798555,0.005190455232024321,0.003371375206657352,-0.057835857720575874,0.0007525280960192416,0.003907504566610533,-0.009710274665872107,0.11827654387045332,0.019840643354816518,2.44655891508116e-05,0.005791605318776848,0.04881709439110557,0.13218440457596903,0.04985363860798036,0.00010970912347761487,0.012178780946500387,0.004815417542453545,0.020072111851350168,0.002098455732494806,6.753092531024967e-05,0.005631582733079659,-0.01595245512844631,0.011974149066249625,0.00628921355637905,0.0025983990207719895,0.002557025102900217,0.031427756539766295,0.19784827794824203,0.024755958470547887,0.00013071734350669613,0.00015181927025152708,-0.01650310225432103,0.08230383153518323,0.02021059951806303,0.0003104943979486348,0.0067853141114638076,0.018248294514476765,0.11992340256198396,-0.0002018805142960151,4.286267737770982e-05,0.03518785550036986,0.06154544851250729,0.352725579962027,0.09543765477530587,0.00028757146652165125,0.029486621863601077,0.0060630856999282804,0.08808010913812965,0.0004934228932292221,2.856578045634657e-05,0.019957382879552496,0.004416058851654819,0.040067606920176,-0.03305238960098477,3.6823338230673934e-05,0.009139077522250088,0.02354642102495028,0.06862464869319622,-0.027706156651295687,0.00011052678229258015,0.007234695710206786,-0.06148200652057788,0.3673568099171389,0.09465542079452123,3.865915113522104e-05,0.02092561408062401,-0.017787856800677376,0.05685377066584919,0.04329375847639562,6.936521448741296e-05,0.0003881127135740661,-0.016595392627593342,0.06827671116672324,0.04778049328758209,0.00011113824488186899,0.0012911295805743586,0.004012122879508394,0.003782048596755307,-0.006162350383075668,0.0006063490230404679,0.00015941511871408586,0.019018840020084516,0.07296694182276399,0.06295594955553885,0.00010970941260876744,0.007594546535800155,-0.012021397266054966,0.03780226642544061,-0.00993088336582958,0.0020410624145128465,0.023336124205264548,0.010271531976420643,0.10719222519026698,-0.02038335448827661,2.464076184785345e-05,0.0009969107344768012,-0.032897175134469554,0.09169404845034802,-0.04986830521251448,0.0011729749262589417,0.0025327923990560567,0.022779727354291773,0.15463019208838313,0.0029471913357329116,9.810245363954561e-05,0.003942560788241853,-0.004643308705738559,0.006199074432622474,0.0037910180442292866,0.00017678527708677602,0.010521250855941806,0.0029324849817199297,0.004718152461775321,-0.060409759483331486,0.0003567530871181689,0.009272106357274107,0.03358209272724089,0.14670286801291632,0.018404639109776418,0.001774269117272746,0.0006543604970731449,-0.03287048230170508,0.11896495046909449,0.015860285542193472,8.86497303110852e-05,0.015418825674267991,0.022154646311699538,0.031241543385423336,-0.11024376348734034,0.0017628263449730906,0.03825835542035507,-0.049181647010429534,0.19998692776909424,0.09583177602377631,9.743556238651117e-05,0.015252842351646444,-0.00447809728706274,0.014989614543472956,-0.04381317861185877,0.00012110537962484904,0.00038260168303467135,-0.014295007457285158,0.0647725366803483,-0.02202330731217718,5.3865091965439096e-05,0.00048110955986334055,-0.05745004945208747,0.18919889714924631,-0.002386715772256599,0.0028779938679458794,0.01370152861966279,0.012479363391534892,0.07419813161180322,0.0053163376373390235,8.36642712607653e-05,0.01852116819242954,0.012595504822087569,0.07158090877406774,0.03986703891714294,0.00012760836819437695,0.0023143777525571046,0.002416920085691293,0.01360390957381862,-0.011912203051873496,8.403249399921183e-05,0.006271384042534744,0.002650783287819755,0.012065288613142213,-0.0028996050939334972,5.5218410835773786e-05,0.016008214359802136,0.0387563000591074,0.0764587448738825,0.009155747916978837,0.0002471408518269457,0.012048726957113613,-0.007996719450665348,0.029356041921742057,-0.012029085331788232,6.773743333015024e-05,0.00992614243327072,0.020492359492831208,0.2181078933335598,0.0034666418544274007,2.424107462212807e-05,0.013401482264918715,0.011002400029395069,0.03651205000101607,0.062353468087666473,0.0001053319630722857,0.002610782284331678,0.0027836724549211178,0.012667245075960109,-0.10664465742358453,0.00034638887070703603,0.003181511012227041,0.0946625045224626,0.4325508639997708,0.11809701870130718,0.00012534661282237274,0.039613159344816046,0.002263522642119454 +2023-10-23,0.005171798419269064,0.035339256841294665,-0.04731052638042901,0.000154764290339057,0.006189053762687119,0.04013262777930661,0.11208827465166551,0.0526340182540302,8.591083487331143e-05,0.004986679058896651,-0.022115525760757152,0.07425252551948498,-0.004015882378663732,0.00013777906819041348,0.012330632976738098,-0.003507663858532014,0.003255207805582993,-0.01200841685610244,0.00036366968976720776,0.001463820822785471,-0.03151291748784059,0.05912145468917055,0.03541008095348557,0.00027889534992176304,0.0036719583917645578,0.006867364988131377,0.019379882940944785,-0.05048727332387577,7.73723379931279e-05,0.006567162605617359,0.030742827448072538,0.11207117188582538,-0.008203773970075103,8.048959635818761e-05,0.006131157286893556,-0.046917113406797425,0.343224309639458,0.07164114622513802,4.687614170714789e-05,0.01193115434383024,-0.00791540064566112,0.005949279583749078,-0.002583797348258621,0.0010260140542369916,0.01377652451714288,-0.02113872634569287,0.05153025896841858,0.02212189688654729,0.00014344267576762724,0.010560888474718103,0.0029997270738488352,0.002380539573432091,-0.0063919482952340435,0.0006159290609747283,0.007397701538919405,-0.009860945419141067,0.1093233929380183,0.018621916844633053,2.6879936751378142e-05,0.0005734802464840525,0.019675254573219492,0.06094333036180971,0.008765230175173626,9.590587561925932e-05,0.0076719358264081515,0.003074512210530279,0.017838129024568168,-0.002107961198597869,4.851641917551168e-05,0.006023467435182535,-0.003949655937080308,0.003922969707366898,0.0006003127189994276,0.0019636644734410975,0.0023988059067187807,0.01649104312684912,0.09903369376053148,-0.12217342476667757,0.00013703050477761533,0.002651689916391666,-0.02125390312067042,0.12930307491850465,0.019966554853026595,0.00025452947149701117,0.015558431143746006,-0.004346439352081598,0.025048109243850217,-0.004574525754050874,4.887869827311419e-05,0.01971629785045313,-0.02785993083221492,0.15812467302253214,0.02660063829109787,0.00029038033427319226,0.0021125141867255445,0.06618802331185451,1.0239548672733512,0.0821561792379614,2.682432657061407e-05,0.009826885885685251,-0.017433623934146603,0.16714647945548633,0.04744318801027924,3.4847541895135535e-05,0.004526368116789406,-0.03370906700739774,0.1014378535701137,0.018830476821298202,0.00010704575195009638,0.01828711338963013,0.012517307316403783,0.10066902209704447,-0.01510757239940732,2.8721521400084083e-05,0.009206105622325765,0.025252557495711925,0.08677053900254175,0.04875537779982683,6.452239145414326e-05,0.005512121478615118,-0.024045590502475116,0.0967145039238556,0.07103073676273161,0.00011368219065412884,0.008077251423128873,-0.0779606491200905,0.08077359386032452,0.13270310619898354,0.0005516728377731894,0.015363389876483368,0.01124748248090281,0.03810271488340778,-0.024783044802161133,0.00012424685757287356,0.0026142268360227834,-0.04230655404771291,0.14352312549239435,0.025175671603605208,0.0018919294778064993,0.010665322054261028,-0.001706560480787004,0.012728069474309064,0.0014432918628534668,3.447794261309899e-05,0.003009691164543719,-0.024099225906079658,0.05907649579302405,-0.006583255632941053,0.0013337045596875507,0.02907048949416324,0.019123939831200688,0.12853923192321684,-0.0030191935918015985,9.907573694298035e-05,0.003514065484116843,0.0010558279932976083,0.0017240891676433797,-0.005034967386018091,0.00014453693313798226,0.008822754148471973,0.0058001589096532,0.008544858140494384,-0.004839186225832434,0.0003896179428949937,0.0019551441060704556,0.005634447849713437,0.019630957985210678,4.3061275602953856e-05,0.002224642404555831,0.012737161303384863,0.0006455126531447806,0.0025506778819675193,-0.05502969632919651,8.119691216400339e-05,0.00952855847260696,0.02514004951505392,0.03725228779237655,-0.00022813951515479594,0.0016776075465505943,0.00412517944187469,-0.02934478204086231,0.0880811988058095,0.007547425424168327,0.00013199689271594912,0.017346786392229464,0.01869397793076219,0.05246205677444274,-0.12823300044042818,0.00014444974803664318,0.004222024677537033,0.018532749022750074,0.07308415434938415,0.008490002923941158,6.189143372268874e-05,0.0032594120770164307,-0.04159946522524884,0.1166218468833309,-0.037595742538645595,0.0033808499077693636,0.00835927456150871,-0.02197405602375187,0.09937671184668671,-0.008694137176727438,0.00010999328567889362,0.01114399262099033,0.008871961300547345,0.05703839122830617,0.004062697873915525,0.00011280105342276364,0.005917641614175687,-0.007100096291094004,0.042799452356327795,-0.05886066053616773,7.84647734885561e-05,0.02705836734742725,-0.014587094168596862,0.06652526009275397,-0.06339653265781826,5.5109897124692504e-05,0.010927121089039043,-0.030628596156645954,0.049320334996806055,0.04047693167390429,0.00030278228904135045,0.02047046374189401,0.0027365939022936762,0.011998996380655654,-0.027025588883847644,5.6712632701215315e-05,0.007756610856523635,0.009685545186430064,0.11007255772434386,-0.003601490065008814,2.270263667454875e-05,0.012614072293971748,-0.035196244973914256,0.11678926011191965,0.20685003942361535,0.00010534220126739561,0.0027338662458672594,0.013745845028592425,0.05445448332357921,0.018634264641293266,0.00039789251783928177,8.433195407403504e-05,0.000404246378625148,0.002384116781606254,0.0028031825679005833,9.711591566903407e-05,0.03841478117248096,-0.005479402421781018 +2023-10-24,-0.025688052569213162,0.1630739023127653,-0.08792705709408911,0.0001665840058501118,0.012226948708516497,-0.02996185821319625,0.10498882834117872,-0.07122784929216476,6.847565292285142e-05,0.0061168271609989165,0.0506160121561152,0.1499625340385692,0.02476120043175727,0.00015613575218558715,0.016960109702287104,0.025968662660843723,0.027396571908141373,0.055906225924107274,0.00031990513960487545,0.0029174607474795966,-0.0064463080764620515,0.01448159029176624,-0.013550860263284868,0.00023291237988323576,0.012541672216054936,0.005890668481722966,0.014387685247901297,0.002040745387695245,8.939647478164444e-05,0.007643846283810519,-0.02587727009519684,0.08480216071074649,-0.016768538981858126,8.953676437136724e-05,0.006258035832423998,0.053709699801404685,0.46579300139954366,0.13009957220578455,3.954197712769713e-05,0.018243184056872478,0.0059815230768795035,0.005043184339054482,0.009515088249547152,0.000914643234684789,0.016142654322558268,0.03893012022002678,0.08830861988677399,0.07376995352442076,0.00015415035659664835,0.0018724246042086212,-0.003919226338513043,0.002941077063220631,-0.0005756324672001633,0.0006513558216460015,0.008642653885440079,-0.0014287383152681707,0.017185762058592492,-0.02463004196958901,2.4774602006145556e-05,0.007761127139707156,-0.017296237698295063,0.04172154149909669,-0.12034854935119899,0.00012315224603529502,0.014635292189404238,0.011698596820530425,0.06155876338708089,-0.020287770327602095,5.349407781081384e-05,0.009349024138934592,0.02341760742338413,0.02529478954412822,-0.014182532532895495,0.0018056535386578026,0.012094420082814762,-0.041895476324555064,0.2662940611695819,0.02336455735563691,0.00012946660486254765,0.02934601607618168,0.02806081110425083,0.19031143758673436,-0.07812911325948715,0.00022831979314591076,0.012246450811549032,-0.0941546385011211,0.5872063016140565,0.1108249018085959,4.516603520357133e-05,0.027081080883426777,-0.00038905039523342183,0.002311692185060089,-0.0026034936748224853,0.0002773720290295382,0.025264342440975418,0.01057285015621293,0.13179620509778042,-0.07912702141245391,3.32904298602274e-05,0.02713228446922537,-0.008546164822058869,0.08004091268163264,-0.08003117648017491,3.567310740064423e-05,0.0061647991695919,-0.026745462649838896,0.08168832700888969,0.014188362830147053,0.000105466095691985,0.0034852751529785364,-0.027230645455256722,0.15992533563267056,-0.01845887997303223,3.933082361292958e-05,0.010972660973510703,0.036032355188241195,0.12137994914383127,0.10226680374004819,6.581472652072148e-05,0.008055191971662514,0.01655016945276586,0.055296818949381606,0.03572251039593663,0.00013685191908279135,0.008973875975474908,-0.04832253554850082,0.03628322140629859,0.01261193472386803,0.0007612362070566953,0.011149788895435843,0.00787514462066739,0.03130134697580803,-0.0044648291357228,0.00010589647901171657,0.0004386377883831246,-0.04212638043446113,0.13139809667546765,-0.05686379758460303,0.002057710367474671,0.03162560374105984,0.019322259501080685,0.14297724455429126,-0.04543089337822935,3.4751470199265286e-05,0.01650861519537877,-0.05686945015138346,0.1826858478624234,0.02568841041735716,0.0010177600366872265,0.001523294904821843,-0.01042611949569559,0.09006465039280559,0.01074179023623098,7.708927722932133e-05,0.006767605154427778,0.007314975274346678,0.010902158750305549,-0.09593086459426724,0.00015836009262846384,0.01308880296816704,0.02416841702686419,0.03733864305931314,0.009625459902700237,0.00037152974449574993,0.023398453415324087,0.013451030510303873,0.05049729470613702,-0.020939927187588126,0.0020646088597696234,0.009146538565471127,-0.00475220524468347,0.020979077273482753,-0.00041998558397448216,7.26773656655418e-05,0.0025355682114448956,0.05497449110903214,0.08046328275101514,-0.006410331363490881,0.0016984026651487192,0.0034403585214076984,0.01604569290878978,0.0575419640311758,0.009288137977494535,0.00011048156855291825,0.0036385888456702507,-0.01023083233662705,0.025300643328659552,-0.09468274102760708,0.00016392295685465017,0.0010590013690607912,0.014800348288453304,0.0635408174581497,-0.016538339594935694,5.6850339530930484e-05,0.011547715804737868,-0.04964964840581594,0.14944960875195043,-0.011493287049772675,0.003148759225280838,0.008388932432336243,-0.004540181192848899,0.024031938478359095,-0.021426648696231936,9.397773041900632e-05,0.01139803335328997,-0.021699541296139234,0.1278034708305341,-0.04922332504718203,0.00012313136372975856,0.0031398459530258987,0.0015137310154069402,0.008671770015461894,-0.013861881507268952,8.256379688694628e-05,0.007479562460368546,0.006024066611180082,0.02402938231700572,-0.0021228880858780554,6.300783440524382e-05,0.011398249561435796,-0.03227600930816191,0.057610935291573476,0.027462152139117343,0.00027315194684777224,0.037247069225713636,-0.015511382587963996,0.07087151275781263,0.02078391327614013,5.442434146975361e-05,0.005270047987309418,-0.022008987135216193,0.27399279430323636,0.006256070363883948,2.0724888394129187e-05,0.024525967352410007,-0.0019990653124085118,0.005672965042137555,-0.006690059606627186,0.00012317592733548157,0.004010836555494641,0.007259378964592722,0.02796008391882619,-0.022545232582253202,0.00040925026473615905,0.006005918346641124,0.000762545191241546,0.0038037144700292344,-0.06578742222593903,0.00011482315450928244,0.006340349136001281,-0.0035841502814069988 +2023-10-25,0.03416885365055163,0.27723894070424243,0.0395656951271235,0.00013033551183616105,0.01536157440467395,0.002137176133418111,0.006955833261668583,0.001860327743319355,7.372277586337071e-05,0.025874374498097222,-0.011348315726771845,0.03552723149963182,-0.012206079081105225,0.00014776352691958162,0.005165275462288453,0.0023030071467685896,0.0022584568349643523,0.000528425946950125,0.0003441528318805761,0.0028719716632531343,-0.008300658495591294,0.016730752923739007,0.0015212425574344982,0.0002595941092523825,0.004009737026341707,0.0036769041071114663,0.010089045707830605,-0.003167344801633966,7.957542264445758e-05,0.010836878554632244,-0.0220925873545123,0.0926621074698479,0.009116092014557412,6.995749702588746e-05,0.0023015419663272065,0.003180816745861449,0.027898363874362613,-0.017423213259929106,3.909835893063144e-05,0.01027546781839477,0.003754221208016782,0.0031927711329788728,0.006721233460904704,0.0009067694026614039,0.017715820408925942,0.00874078361890079,0.020944060993863006,-0.006291109745506017,0.00014593227794184777,8.898745587489513e-05,-0.0009584683941011137,0.0007418122669404846,-7.760127009221818e-05,0.0006315505881391258,0.006423021003546693,-0.0016339590330207683,0.017736723864943554,-0.005783448386321187,2.7453046664909587e-05,0.004144162628280567,0.01913699722331159,0.05666280993776066,-0.0035152510151885367,0.00010032905557079,0.0016940686045056354,0.01568134390370078,0.09155204214776079,-0.06797938312524142,4.8214432751034615e-05,0.003120497559888709,0.006593818419808416,0.0060743859879483384,-0.0028419399865435195,0.0021171789671801033,0.022927676871074838,-0.02185229662374339,0.1376531855701127,-0.055664949134413826,0.0001306360163662319,0.0027030617372946902,-0.037726200986316905,0.22335551194000275,0.05471942393183809,0.0002615499441545867,0.009491677363981724,-0.016495355336443116,0.07883481242051953,0.0008987552610439669,5.893924831838018e-05,0.0029416889791135784,-0.009341350638360552,0.052303338048501624,-0.013399291463246457,0.00029435205675234664,0.02105858315411657,0.023076256302851022,0.307454368405,-0.030839735216822012,3.1146906358001194e-05,0.010109124852763964,0.010984602036600098,0.0998195475060036,-0.027159201656170046,3.676634343611286e-05,0.01053078784211745,-0.04112723479514137,0.14424244297900063,0.04127206718759371,9.184577795787985e-05,0.01873291556354677,0.006322672520855987,0.040490152548119863,-0.042453216681015135,3.6069793124574795e-05,0.005882531850039774,0.002210666057999785,0.005958136703893478,-0.004498355012404164,8.226025701211103e-05,0.002703738708708559,0.011312468885992497,0.0406557889505267,0.02348748541241158,0.0001272282636262249,0.0019171722204283758,0.03293565599858098,0.02758474602417849,0.03764978533987724,0.0006824532237765538,0.012254507197610454,-0.002230948904687415,0.008612890640007446,-0.00010947429127682268,0.00010902515177688821,0.004011952602600177,-0.01104947115383375,0.03457779205143643,-0.013264843338769736,0.002050989367695262,0.002290965476110428,-0.015188305553335923,0.12171208242763681,0.010980196412066824,3.208912151293199e-05,0.023931991308612295,-0.01810185610893253,0.044031690687507535,0.003410200776520425,0.0013440920636007077,0.016428649312016416,0.0220966127635474,0.14735753282679795,-0.007042461368927677,9.985711314025449e-05,0.026084609910157576,-0.027310606605071244,0.0344792381237149,0.03931389567008166,0.00018694724609940965,0.0017149579329448364,0.0319892873249757,0.04455361944750394,-0.04736062220098687,0.0004121217046513995,0.009353932868325143,-0.013738391745339246,0.044486929430944004,0.012753181089966531,0.002393612290394074,0.006211226849046795,0.01867604310289557,0.0730346704852048,0.030528195324928415,8.204387491428941e-05,0.010965961980070604,0.040396057263611514,0.048993081091621704,-0.0035879178941883643,0.002049658078490694,0.005341388748048724,0.003013070547491481,0.009898648288841249,-0.10321452462711647,0.0001206005930061555,0.0016694403490670918,0.01376419047859322,0.034067836751210626,-0.014643035319927757,0.00016378212163389058,0.008114815440515432,-0.05057831047121317,0.21550627071055703,0.11800696859013071,5.728202090151003e-05,0.004152352883409035,0.04668529643131988,0.1637515073194505,0.036529631179701864,0.002702171271168827,0.011983516561792328,0.034352165745398865,0.1707775225794996,0.04155434712593357,0.00010006080307336508,0.00549961706020451,0.026477170749015785,0.15112671065648417,0.06090868568582114,0.0001270548157519696,0.002512834034027868,-0.04365880863876869,0.2661222865596382,0.1323365816143031,7.759599974382754e-05,0.010131257571188301,-0.012455732106196157,0.05110131270575412,-0.026026574272387065,6.1261072723164e-05,0.017312437082643125,-0.009671761586205556,0.015469533768414739,-0.011303325463275572,0.00030483003198609527,0.0077363010343231165,0.020461645743147478,0.08109549554437626,0.042777268939228084,6.274197787919402e-05,0.00016871496543737624,-0.04226959970561382,0.522953015550469,0.04506760041813377,2.0854354361124056e-05,0.014049817418913823,-0.018076034725483976,0.05387285517440798,0.010986003759800887,0.0001172849098732489,0.004683003396566214,-0.024677652830153884,0.09920222142390764,0.09384882712781419,0.0003921122621133673,0.004244067306607456,0.0031641621454192616,0.01532136521842959,0.000500820205484707,0.00011828592255902155,0.011292307187177423,0.0006192596743489684 +2023-10-26,0.01903750608359708,0.11311334402146554,0.015029532432037545,0.00017798475177013942,0.010990122492944105,0.034129917380552786,0.12179909102595428,0.005662524356026395,6.723597644031233e-05,0.008994727531447958,-0.046749387435616234,0.14702285210319083,0.02968531506997224,0.00014709174010354436,0.019590540558391,0.00040628277487254937,0.00038533317524166717,-0.07137270550166483,0.00035584417833819547,0.002520828338178971,0.04700046604991948,0.09933025017897786,0.03481951294716828,0.000247581624002519,0.014470710548251319,0.005219254834550376,0.012721710413063827,-0.0004133824787064953,8.957972741300343e-05,0.005229266850811406,0.011491288716195992,0.04683249382388648,0.003918875151519456,7.199648717615665e-05,0.0322990636716348,0.002523428857170084,0.020753927000643244,-0.0083041564666856,4.169552004100091e-05,0.011988113682854655,0.0018675442313804242,0.001612120760981083,0.004095167649170231,0.0008933427399019196,0.001262060960844887,0.003876160877526721,0.009855876561267546,-0.015193419125952377,0.00013752081094306256,0.001983965241463981,0.02764279726929175,0.018969819181133295,0.049962203533607995,0.0007122675447225656,0.002805954801841173,0.009798565206977168,0.12271621561479722,0.02461758572821541,2.3794869247365727e-05,0.003383187430528141,0.05494023365364947,0.1320125931654342,0.05541676391903918,0.00012363065718160333,0.008052800559951832,-0.038142036335532266,0.23074668163200418,0.18303473653984315,4.652969756642382e-05,0.005028144203474024,-0.0033321509565761584,0.002865337817854384,-0.039184748856607984,0.002268150189847704,0.0007326766681235739,0.044339935479282826,0.27864268016691074,0.05498129521515351,0.00013094819781614336,0.04534965436404086,0.024521117313815195,0.15588867386007274,0.007815279109953882,0.00024357568045586586,0.005918057861140022,-0.03721249022264964,0.19347639670015435,0.0026558175484267714,5.417784159070468e-05,0.013134248016570507,-0.04078557589496569,0.21580059567198728,0.05452998665332034,0.00031148760340831316,0.03575233256802939,0.0047644242592145255,0.06270564748293127,-0.0004601306334415504,3.153072827770333e-05,0.004066777078119517,0.0014681550624332663,0.013410803697870469,-0.006537941215073444,3.657622080748339e-05,0.004388504646821847,0.0428012660693366,0.11598205095932884,0.05168074133216636,0.00011887446824229868,0.0297174268755566,-0.05424751556704354,0.4100046727897651,0.06934882644085677,3.056211621550779e-05,0.023766324726677182,-0.002863779934618301,0.008674813580618657,-0.005955731361996102,7.319086391787965e-05,0.012517128863192329,-0.008061698770912926,0.029125256520218988,-0.07095945578924996,0.00012656260436541295,0.0029744508724177743,-0.013743152525409414,0.01209457279830537,-0.0137015081402279,0.0006494883940538846,0.0037434775156137455,-0.009151132955118714,0.031072267984938128,0.003056227660944094,0.000123961813294583,0.0015072715918072429,0.019944014264219625,0.06603990141649645,-0.011848568837531312,0.0019383193644182928,0.0026344544169253263,-0.01877205398375889,0.14877941619622634,-0.014573727361778728,3.244525109496885e-05,0.007326232279701757,-0.0018354979033065092,0.0050773117463571845,-0.00016579605481155523,0.0011819288475010813,0.03535984602579986,-0.022590359774056365,0.17435931687623843,0.02827682686255019,8.627870778706954e-05,0.004291400022420755,0.005586127771523589,0.00839273750974791,-0.0180870641734623,0.00015709147264784582,0.002369356759498315,0.02700243963710867,0.04467343650659991,0.019777301732870293,0.000346942541719475,0.0006165925846336893,0.007632718191220896,0.032258171685911115,-0.0003194837005232172,0.0018339598354018417,0.007561188165174459,0.0004087112518409114,0.001828828135267035,-0.07173574913307786,7.170246233065511e-05,0.029817407563512227,0.028024660377985906,0.042795022823804485,0.0010604988245327641,0.001627887122581879,0.04185919008557062,-0.06330284787009528,0.20969768508746942,0.11211887685531109,0.0001196039847192628,0.013484489511451076,0.011699261583114004,0.029989983047523382,-0.051880958331548925,0.00015814031781923043,0.005004116880419921,-0.017544592743329028,0.06355244771411846,-0.002527127096493996,6.737905793405643e-05,0.004449682255188443,-0.0058999234724493475,0.02049334654478449,-0.052457059233779975,0.0027286733690439846,0.016576270986687427,-0.04283230807656706,0.17915856320326654,0.07056259966371776,0.00011892536072493167,0.021834441233761007,0.0021390941732577456,0.012135322609741211,0.002120194362966068,0.00012783193498752397,0.005769694863589551,-0.05960356747109967,0.3643125666676869,0.1667168486256675,7.738322068597271e-05,0.006368836584225958,-0.045434190720398455,0.22532475963938275,-0.15512931434233077,5.0678210976848444e-05,0.0009592140358506017,-0.005720761928388779,0.010861811780863668,-0.09102389599789151,0.00025679170807572146,0.0024349833689180857,0.009473422389178258,0.0441796026456711,0.006062883967080474,5.3321145637226054e-05,0.00767548205079831,0.00944939672290338,0.09957868866019447,0.005702336422251563,2.4483244262201102e-05,0.009955922675191884,-0.01394327007380434,0.03626513325271612,0.005773860226110478,0.00013439537594219381,0.006662736519731792,-0.01824514621611141,0.07834490653999526,0.04665457999575715,0.000367083236590687,0.017008366564445602,0.07468635814445464,0.36002103946835895,0.06349542677390312,0.00011881880969978296,0.022042622605119053,-0.0006394735613151063 +2023-10-27,0.0025023895978917013,0.015916908061292548,-0.022601062424469222,0.00016625809586400463,0.007202842855224857,0.032638854546618835,0.1166261205291797,0.02470911552580677,6.71505549340865e-05,0.01746838840028943,0.037247877694333374,0.13578683663079832,-0.024946834565814077,0.00012689399376266124,0.03387903523590208,-0.00783258837460341,0.006868006304077157,-0.0006420416416483723,0.0003848951821050472,0.0033784684982469696,0.05524241563130551,0.12483044602519329,0.06635813890900968,0.0002315527328965198,0.00889260549116425,-0.020851922228437,0.060778895608873985,0.0795144229636629,7.491004050101525e-05,0.001918392075196989,0.003548191180600926,0.013844889054421066,-0.024618211055163652,7.519819000316334e-05,0.004041673946131679,-0.04443613132771234,0.4114647787075094,0.05487291096435992,3.703413373119133e-05,0.0016561372945189492,0.012681399387460365,0.01250190951692046,0.022803525964073038,0.0007822320672575855,0.006029810872898269,-0.0017732860186235242,0.004111892545830012,-0.010827231726025835,0.00015079915895884225,0.023151697699734238,0.010276355552727701,0.00785504295433887,-0.008732097148930744,0.0006394622567685292,0.005344867669914245,-0.01499244517833733,0.23226635121770547,0.040046992494834184,1.923574279657973e-05,0.002443431290130919,0.019693088257228396,0.055870965768551814,-0.011077604132912911,0.00010470771605424815,0.013010699810842642,-0.0045653911779254906,0.025011192219403868,-0.03267436360758674,5.1381339219337646e-05,0.007057304648112665,-0.02291347188684774,0.020398094173885484,-0.03317550335781631,0.002190908696612461,0.0019955547901912246,-0.012101061543043487,0.07905887237922306,-0.0890753251488752,0.0001259577695975386,0.002463522579697096,-0.008201331154037752,0.042726843235187245,-0.0027130179575758397,0.00029722940554278315,0.010617398520814347,-0.013170378813672045,0.0854810562593867,-0.02327572429330148,4.339996133508574e-05,0.0009546815600155284,0.031429406242910095,0.18158789241303516,0.011892583085321944,0.00028525685904989346,0.003033975052897802,0.012095531879342477,0.15564398611502026,-0.009755953886233829,3.2249490441333394e-05,0.0062434325914159094,-0.003647070796233918,0.041532546959494876,0.005675674332962776,2.9338461654787104e-05,0.004477185070952263,-0.006723043193214401,0.018126879651952043,0.0004241840349528191,0.00011947185472061221,0.01574148131111163,0.00531200037586457,0.036846443813429455,-0.016013739749072407,3.330081744014395e-05,0.0008862098875204519,-0.010619025380846579,0.03310372680876407,0.01733912949097133,7.111891982824217e-05,0.003997231317003035,0.0075837045916048226,0.03353270790727162,-0.013420527339137334,0.00010340972357645678,0.010816031105986657,0.023469200719838382,0.021817169317165853,-0.013739507370365684,0.0006148588926404384,0.023894378206914504,0.049174692121692114,0.17996044104032474,0.21017310328735397,0.00011501397404120931,0.007118938886161533,-0.046960364312962424,0.157704634632326,-0.052856640194994996,0.0019112001708472023,0.004336715474150751,-0.015381586830499698,0.15175755595826218,0.0038194027143945083,2.6063516654144994e-05,0.03369144934083604,0.030709595136191193,0.07626230967834617,-0.17076145338762128,0.0013165440859154818,0.005966935440923746,-0.009213785230832194,0.060608059602070725,0.010068224387274184,0.00010123562023951165,0.008140589449722362,0.026692985652533866,0.045493114559084426,0.025649596756538533,0.0001384831292935032,0.019867651948960206,-0.05205124046607113,0.06966247500326003,0.13790251956004584,0.0004288802994995628,0.00689341193468237,0.03140545911893596,0.14257340759586495,0.02228605309393137,0.0017073279823884375,0.01600274662981548,-0.00030431703197865586,0.0012231865637380094,-2.6417084054266546e-05,7.982224315790007e-05,0.005016061434976562,0.03802996322760235,0.048786234138375247,0.00594168222477187,0.0019377859447439897,0.015983490475919845,0.00908706896016586,0.03849763039722265,0.0010944731395722159,9.352029361917273e-05,0.012073581123208254,0.035441754864764856,0.09241874216475678,0.09407316333057174,0.00015545888200649613,0.01506424600103094,0.002023285023565255,0.007208610838236945,-0.008928953406806007,6.850454899062086e-05,0.005560940132918652,-0.01341637482136694,0.05027314340155137,-0.031003805496963483,0.002529398169305305,0.04331278711692194,0.0054754378995631675,0.027416294268848864,0.00035833714614327865,9.9346066310257e-05,0.00908029970623189,-0.0020181990426955945,0.010261136014033626,-0.028283247716828046,0.00014263606064813758,0.007136239090399439,0.003817189557853061,0.023056204294513452,-0.00291898499053204,7.830772629777902e-05,0.0007081261389560515,-0.010233930689174844,0.04911179370631547,-0.03063099897424765,5.237259221207387e-05,0.0023912171834155277,-0.06499729560163657,0.11832396898612088,0.1391115993499505,0.000267825517098821,0.02557802180148053,0.01416718612807167,0.06349692413593766,0.015259253148256918,5.548112867196871e-05,0.0005543276391241339,0.01676614921317571,0.17087959229880628,-0.007126369907186621,2.5314794907257312e-05,0.015441412874144165,-0.004716207668632673,0.016424778950644828,-0.003479371192009725,0.00010036963648752433,0.011954500606420674,-0.03410291674590964,0.12787585074122135,0.10421896548074948,0.00042036926917209165,0.012972227043384004,-0.03263041680006384,0.176782942881311,0.02790645675753165,0.00010571924622146738,0.014318528826440078,0.0014836076606338593 +2023-10-30,-0.056150524000622586,0.38788717905193326,0.09309139685984362,0.00015308582267804753,0.006798104881552225,-0.012069038998249402,0.04821116919500369,-0.004739423684461106,6.006694623779349e-05,0.017041125945150327,0.040728257279172626,0.1242877096003101,0.0007479869782854774,0.00015158800840380367,0.022492684323483263,-0.008850929297639967,0.00924809660742782,-0.050476185511962826,0.0003230013742113824,0.005603536826011122,0.01053702740617096,0.028157775709452004,-0.002842432458096015,0.00019580218626502678,0.01589544764960053,-0.0067414622233390575,0.016866694883903827,0.008385956784168086,8.727118165730434e-05,0.009147036713559903,0.020206970680962374,0.07504288658807254,0.006033626787927069,7.900990422260016e-05,0.01691623643451534,0.014763542621114992,0.13473328315499958,-0.04313922621324931,3.757632504349163e-05,0.00624635816736462,-0.002190735685402695,0.001836358187205356,-0.0011810958643515839,0.0009199778554506843,0.0031309392924465506,0.0028085205656053387,0.0072430941837321435,-0.0008257631636944705,0.0001355861603891627,0.008223855944729535,0.003282431942039061,0.002310190602458123,-0.005250170650093718,0.0006945000407733117,0.001400367942645885,-0.029427748213259684,0.4224514635620721,0.005866379418907132,2.0758836192311408e-05,0.003708264014131218,-0.026485089960989625,0.0726265866242758,-0.024962842044913128,0.00010833202394257162,0.008710834447257496,-0.008472763379496645,0.04876930627186436,-0.0024594052542613954,4.890354232416551e-05,0.0015460088429508796,0.016347073515080596,0.014555239850514722,0.007852447926220694,0.0021905018377355637,0.011506155430994643,-0.0032544571949270464,0.025020181122303257,-0.007654271918972314,0.00010703855122896733,0.0009744579718402948,-0.015574308461779755,0.08657945757494588,0.010876701049126813,0.0002785493461205561,0.010701731364479862,-0.030202748980880153,0.19407785016032833,0.005293222724268495,4.38360543175118e-05,0.015244322540960963,0.009412720285159177,0.05498063101789988,-0.00027928586227432095,0.00028215791701513934,0.0032268487286969127,0.027814598388827855,0.40077050166433853,-0.020598569940733436,2.8800980735261776e-05,0.01569496277102364,-0.0016902139621260421,0.017993031653405652,-0.03624789253417894,3.138477720429305e-05,0.005220886095000066,-0.007401426419517868,0.023808782604805973,0.00017207018825253641,0.00010013847937870967,0.00020814497221126674,-0.013704597316133674,0.10201673337952202,0.0030544166909036393,3.1030390581200066e-05,0.005744092409311096,0.005941052639206338,0.017944662783721466,-0.005747808818479997,7.340159230176415e-05,0.0018204595167427315,-0.01166928502662228,0.03504528098208721,0.02534381042782194,0.0001522521019208231,0.005240021701229878,0.01927386977632267,0.01855252270124679,0.007995506298160763,0.0005938018004363077,0.010453057902732182,-0.048505299959706316,0.16673120747807355,0.12708679213389304,0.00012244986434611628,0.008407017449162339,0.08204074452787509,0.30483475465049586,0.06224811990377544,0.0017273656841048654,0.023779855099768953,0.002083530233860148,0.02485051651016588,-0.05130471673180643,2.1559892063352696e-05,0.012109609803796603,-0.005059087647676581,0.014209370498415655,-0.005303085237171406,0.0011640419586224848,0.002103831894763399,0.030044356558882743,0.22986511805189694,-0.06555073909230492,8.703931779996109e-05,0.0074851801129015485,-0.01110181513817776,0.01802688366534178,0.008709438450069223,0.00014535123347460946,0.010995790199200457,0.019476266340788754,0.030844209849288984,-0.023941195029757306,0.0003624398730115932,0.02289595235705736,-0.028146533406022103,0.12182285862129374,0.04065100870019905,0.0017907974558812147,0.02750669077853071,-0.03086269981240461,0.12204283612309166,0.03499267973783535,8.113570114630702e-05,0.0033072375860711354,-0.01199137597432227,0.017605953973113802,0.018461343856750953,0.00169311574957523,0.010236084295817533,0.014592007439254465,0.042994198962467076,-0.0036237519343359646,0.00013446870332269747,0.009277871034472855,-0.003218568735164027,0.007365991143428072,-0.0021477163382314377,0.0001771299385772157,0.008502955735826375,0.027910621188221886,0.11103459437415582,0.035070000668270415,6.135149034981802e-05,0.0006381989606710527,0.04832182639729527,0.17340370862743906,0.0040135698715529095,0.002641210512024672,0.03695557324528374,-0.014089057893141771,0.08059841576401357,-0.01392430026914478,8.695529223010067e-05,0.018927192976720505,0.035070109406104666,0.17962797736958952,0.10646582517842273,0.00014158717785790984,0.00893399101883056,-0.0098252898450285,0.05796725968602148,-0.003040942675749452,8.01698921518388e-05,0.013423891817593838,0.0019051434523895809,0.009656754004954317,-0.005961254187834219,4.9584268317251296e-05,0.002853204502170926,-0.029378092710647837,0.0638001052626325,0.023645617261483266,0.000224507883590524,0.020619083372471855,-0.01141747186335229,0.04580441941418947,0.023900479722947243,6.19836209535621e-05,0.0046539738146655065,0.021800442847944974,0.2121163174659317,-0.040701090400329175,2.6516886061452036e-05,0.014825698917271292,-0.014734209489768557,0.041228793259451904,-0.03017580624802252,0.00012492092212993764,0.005299805127011652,0.003953865392758745,0.014932163255941435,-0.006904081402524702,0.00041737566240882695,0.012616579727518777,-0.03120988763502345,0.16229964646211043,0.022253816768590833,0.00011014034366820053,0.024634294435131508,0.000540361995206886 +2023-10-31,-0.022490746772897363,0.14509376755948916,0.007769818768693741,0.00016392368250071052,0.0006304455392180351,0.01603383568578195,0.0632027680250855,-0.1212086395188071,6.087119898821851e-05,0.0008580311082188681,-0.027293153294707276,0.07917676632945167,-0.02150517027109308,0.00015946051349551864,0.014608636207069451,0.0044458015381611295,0.0047897778821163845,-0.08515031689321446,0.0003132582762762535,0.0027246734740529904,0.0220786454299062,0.044964611029985335,0.0006124383682396932,0.00025692085371881575,0.011562262701052475,-0.00406493906913873,0.011040759128035219,-0.09803214079528512,8.038996597562163e-05,0.004474173199280231,0.03791725729104672,0.13911875505247662,0.04278853770548965,7.99725765175908e-05,0.012381342790274927,0.021020958931343398,0.1728991995393055,0.011924248369250347,4.16925209415275e-05,0.0015393469844708508,0.0234892732435787,0.018577361927090103,0.05591997177693208,0.0009750577182713245,0.010437783033606571,-0.02540585537199892,0.06472249154391772,-0.08629103551090916,0.00013725888934678834,0.0046374302924497655,0.007624945277547664,0.005147718492281787,-0.0025341947739413208,0.0007240128935211506,0.0020656100419654557,0.0013328720348029241,0.016231997895752012,-0.0002828785061658818,2.4470298536370878e-05,0.0009003603497153873,0.0023074434587010482,0.006740038703693211,-0.006562220737611596,0.00010169971020112204,0.006094528838432084,0.0020941116665346418,0.011422930676131026,-0.011727080852588901,5.160408875263058e-05,0.009434925159011369,-0.02727743353639875,0.027796258996452664,0.0015730581418286985,0.0019139920484034687,0.02339796365629675,0.02641157512835912,0.18226666212948622,0.007518765766622623,0.00011924472318702982,0.01914796245328568,-0.10112882968679228,0.5990849035809026,0.24339914118646305,0.0002613935322229619,0.03286601462155758,0.02789565248542812,0.1703810558438363,0.01731566797471536,4.611860634231645e-05,0.025379501703823946,0.021217790074798428,0.11403786129296324,-0.0016003118112450187,0.0003066464151343195,0.003157444931557672,-0.03068194273551775,0.4589669778584451,-0.07113247909182424,2.7741609018252625e-05,0.01784421687940086,0.014855697286515772,0.14526071260324072,0.016505411833652117,3.416855242277775e-05,0.0022670070496543025,-0.02677752869903478,0.07240849066687122,0.01525965177040981,0.00011912523061919646,0.007404314241060716,-0.005289327856946958,0.03655271985529221,-0.011416882214900536,3.342513465816354e-05,0.01192980357124707,-0.031199981489306545,0.08565724978474405,0.0973952974652502,8.075465988602726e-05,0.011593864111087065,-0.0002672594054440823,0.001097344315591042,-0.015819117448867975,0.0001113624239226319,0.003021527489201037,0.03441463271397363,0.038941912743253315,0.011125063095593092,0.0005051279747031171,0.004819030569194252,-0.008116690204694816,0.027725596845667052,-0.027182238670932394,0.0001232208145630535,0.005415097538394073,0.022370749283940436,0.08225036981454457,0.002056369207190981,0.0017456687840419305,0.0008742389879334502,0.042252176988943006,0.4133814228244613,0.0705938463659808,2.6283326490759645e-05,0.009802835108138442,0.02445469658905171,0.060471085420835985,-0.02674419942822249,0.0013221653902523657,0.018968366506387516,-0.032898323470274195,0.26977692452161534,-0.021505291140862682,8.12072138223713e-05,0.013925031586372271,0.005095877537827889,0.007584626839223629,-0.019763152440938795,0.000158573331478156,0.0032070706124755956,-0.025639351428804687,0.03648311639142439,0.03414839291223468,0.0004033843269678526,0.01686009182239026,0.04059087100289082,0.15245223154821885,0.001716617141505703,0.0020636922152015976,0.0007272794189048548,0.03431695959967604,0.14426627256995056,-0.004212125223895515,7.63192972704842e-05,0.014392572819307123,-0.02122145125240122,0.03148135039096892,0.04951732987015571,0.0016757102222257636,0.02905383108086445,-0.013366561394252638,0.039013275138231406,0.002981487241892293,0.00013574483795951377,0.023382686072602698,0.005059231927582141,0.011888228281881469,-0.004348477239466339,0.00017251538396650322,0.019491872378497414,0.021612441790295932,0.08601958431801664,0.010944876947865332,6.132258051050419e-05,0.0024246284812402246,0.010109588719564376,0.029316001412223982,-0.10871986545245846,0.003268487375898312,0.025304340488946878,0.00865567132099103,0.044703856871823454,-0.011476351575839037,9.631553326210693e-05,0.0007545042840871936,0.0025419184423249633,0.013346838528683009,-0.015266102335299233,0.00013811599933627081,0.002662659831757148,0.0028300388390461156,0.018553595529458383,0.001101399076074173,7.214612498156078e-05,0.01574867032581789,0.006761802818697275,0.026564009206205896,-0.01931440614799841,6.397588096431639e-05,0.005821304067490792,-0.06118689335020157,0.11764463553485004,0.07604441187365558,0.0002535803919196204,0.027755179649235833,-0.028964054458577956,0.1123503723512368,0.09254695768164319,6.410607911244069e-05,0.0013834471653981816,0.017439109953868038,0.18168699248642325,-0.05098279851920217,2.4764625534068586e-05,0.011786890711053197,-0.001585189937722361,0.0043909449584958035,-0.00248551038915696,0.0001261921321542526,0.011829319636353558,-0.025651494847719388,0.10050205008662783,0.04864972670447689,0.00040231454028382427,0.001697266944393593,-0.003576233529723138,0.014136382128753996,0.003789383171856372,0.00014489699885746098,0.00499292177497176,-0.000284749236841455 +2023-11-01,0.01622433241068479,0.12052402986919508,-0.005638409463340564,0.00014235731075919335,0.006438180966616677,0.0121759404434515,0.046278245512741914,-0.03750824076985988,6.313005329885123e-05,0.016008266435200383,-0.010363853672822155,0.03321618854899564,-0.004313311763200495,0.00014433401075833455,0.02339376417221533,0.014711230942819904,0.013428328147118264,0.016041090033112722,0.00036973871203170995,0.009934740382281156,0.021401051942246858,0.04542365276345847,0.0037849546667860583,0.0002465192501872526,0.0010302958294311016,0.0008406392751062913,0.0025461406778035417,-0.0057561349710476585,7.208983326849866e-05,0.0030328832632972366,-0.04953600246276087,0.19661738386063793,0.10204618368674169,7.39245855301979e-05,0.015310299971483237,-0.0047563164623256795,0.038375712052249274,0.00027267789281165515,4.250234678482807e-05,0.005368429372486219,-0.005340898603025916,0.004331514397035786,-0.003203320230435335,0.0009508660847174665,0.019219711529974055,-0.003795598315117336,0.009383631900772429,-0.010955639551376208,0.00014143964855362605,0.004074856311345565,0.0009901644466900298,0.0007630471389068825,-0.0054991059623383685,0.0006342789787558232,0.009925553708366126,0.020828809718761995,0.2820823464437645,0.07794097356425715,2.20044913697818e-05,0.0024804634998950763,0.024681140215874576,0.0716123875715836,0.005208878007276762,0.00010238305958329858,0.014232059404592566,-0.005567017328819302,0.03273583236770909,-0.001984747278368739,4.786973280431848e-05,0.004091943584826955,0.03170576790137493,0.026210588683123766,-0.030877851257876027,0.0023593070935616694,0.012738829877747168,0.05863769367761114,0.3400303130411983,0.10529075497595447,0.00014190946178038648,0.0001259608812630422,0.009891465231476774,0.05579144099653713,-0.004281247219727778,0.0002745372518808348,0.009984338419753212,0.05369628522311421,0.28183834595986546,0.049513409991156575,5.366672783054564e-05,0.015469082545895015,0.020702136504684086,0.11566685239187091,0.0038163051210738674,0.0002949803305321225,0.0022013748666445615,-0.05219661732214381,0.6792462721771007,0.06957031422562197,3.188932498783867e-05,0.00026124200135544924,0.008620872291401079,0.10337627902801391,-0.08528246434304358,2.7861983115506907e-05,0.004553039306305275,-0.018846799792436596,0.061223042393215084,-0.06460905329706151,9.916204292528711e-05,0.014527296520215522,0.005528389654702034,0.0327423210933245,-0.09804150586296057,3.900152228781842e-05,5.24419883645049e-05,0.0013550176591524087,0.003351587281098863,-0.012666815115050942,8.963379900871152e-05,0.002052037227037711,-0.007430602150038323,0.028768274352016322,-0.034697364545507425,0.0001181024189202048,0.0023187929618280452,0.024177044680654996,0.02235600504098923,0.00040003903715405277,0.0006181367659390927,0.014115620670734401,0.0024873306693749286,0.009141560227818027,-0.01793134375904401,0.00011452471219032213,0.02738766418222323,0.01662290992733036,0.05546933910837611,-0.0010785214710264082,0.0019234160460928416,0.004070359818281369,0.028552090068917586,0.29762845813415784,0.025349808215532746,2.4668664911222223e-05,0.012502443128908195,-0.037393832850974175,0.10538291787819033,0.03976393165792235,0.001160114975294343,0.021072685714258806,-0.008814321884049346,0.05854165816576882,0.007807923623045344,0.00010026503965999135,0.012381335246630456,0.014236590916734817,0.02141764127408046,-0.036021099648237874,0.00015688439669021747,0.011165853089616182,-0.02359180743049973,0.037521368479009456,0.023526400942426404,0.0003608996482977017,0.0012519581821571054,0.009444534716860633,0.03423465304950636,-0.07940436955962524,0.002138281987928868,0.0019183366590651402,-0.03888389200108938,0.13833519979373785,-0.016961448138864865,9.018356453967961e-05,0.010393600255012616,-0.0801865211381377,0.10187430194617099,0.1665386669565526,0.0019566534728282965,0.01075043454396383,0.017019643196070414,0.05419580909441872,-0.0052867881877381225,0.00012442303290754022,0.011342178993407268,-0.0077568502233158546,0.024107051517291127,0.021813259199224277,0.0001304372655687507,0.00687530856506916,0.018825485026504135,0.0622346181207814,0.008001485041815554,7.382918433409635e-05,0.0038233914128842483,0.00012283659650790825,0.0004170278269489071,-0.005425022016070703,0.002791777466963343,0.00854882563306585,-0.009389316684439966,0.04634085853269414,-0.0037273606834583523,0.00010078838412510278,0.009194555316806864,-0.015302572329334754,0.07601936122417682,-0.059183903009695844,0.0001459825714311266,0.008038747836653504,0.0013315129652442211,0.008540245453645045,-0.15799209664659572,7.374349988841902e-05,0.0007831618464494656,0.004812691393441292,0.019559595767397967,0.00612504987982047,6.184086190050614e-05,0.014005040078128493,-0.010354229917575963,0.020402002433995568,0.002721184410889051,0.0002474425618332074,0.01726007895799645,0.014813635780685563,0.05972010558987951,0.005144388340765734,6.168157739957669e-05,0.005286125534970186,-0.0023424427400097012,0.021905176864005206,-0.04946574487838291,2.7590114636070603e-05,0.00047769563411909153,0.00675817067618046,0.022581821017016182,0.01871110326018822,0.00010461143493350564,0.003476861984505291,0.007594135202108009,0.025139860138862085,-0.04786834005045857,0.00047614961609641226,0.009134565540797236,0.018424366168830898,0.09871150954402957,-0.03560144298658688,0.00010690464086092416,0.008787977971909455,0.002592633268849166 +2023-11-02,0.02838950710788292,0.20700669222802145,0.004829477568805756,0.00014503073588599245,0.008803520946094266,-0.015517509007363936,0.051321489847306674,0.005698768584028381,7.254930851195325e-05,0.010348319193562095,-0.02728563578178643,0.08720650768770803,0.011903529787124379,0.00014473794005128771,0.012749010937792475,-0.011825319336053816,0.010711527758514076,0.005739674500678345,0.00037258838843613854,0.005951084781344936,-0.031012861209361097,0.0672593016045707,-0.008057493401344264,0.00024126107268094958,0.011118270218118842,-0.02079527897691295,0.05681026432216374,0.03319654189471634,7.992537467906608e-05,0.0017758257120032595,0.0011502117841651228,0.0046813686151543745,-0.0002233436959675549,7.209328727344507e-05,0.022922103261525776,0.021113305592590562,0.1726681417754718,-0.01666192547187154,4.1931715735591036e-05,0.022220102637385667,0.011553982799310811,0.00894819386661846,0.004300110769144768,0.0009957289144929833,0.01091075211098245,-0.00761235389657079,0.018619993304009843,-0.007884428247785163,0.00014295565385572838,0.006125019110133792,0.009827873803335293,0.008447057846491721,-0.06029788391096805,0.0005686937576210855,0.002529419405739547,-0.0017511284260408504,0.023145713680878158,-0.003928777121990101,2.2546036769128792e-05,0.005005865941913939,0.005715158691839988,0.014016819952048233,-0.012939652978570004,0.00012112389747678268,0.0012669993572784768,0.005452370029455942,0.029624444055884137,-0.06152577071822521,5.180801243166975e-05,0.006683769013821329,0.0023694193728069956,0.002055853443924014,-0.011222367559229474,0.002247878097838099,0.00554160989372557,-0.002845137410023083,0.017129189832214373,-0.011591097874985478,0.00013668426805900775,0.00585985460331807,0.04243840102341964,0.26638155571665467,0.028963405142444606,0.00024669655984268146,0.011282857029846211,-0.0022157078305827136,0.011851908017749045,-0.02439341648941939,5.2660524001774996e-05,0.004024177513671243,-0.05344814121238197,0.2966628373030388,0.06840444165011088,0.00029693149684861976,0.021709963182713305,0.02357186702869031,0.2694670825025275,-0.011506065004790992,3.630099202354295e-05,0.009283635761114193,-0.006915573846395953,0.07787131316923053,0.009448821953404534,2.9671017100586803e-05,0.005622062569443254,-0.05629300106642892,0.18729640681626755,0.060894449250722,9.681612855410252e-05,0.008927827534390732,-0.008236662287579941,0.05466261127879035,-0.016196024677682205,3.480593152212525e-05,0.02333284304225334,0.011122183569729247,0.03466673587838907,-0.021709424837127036,7.113027527329136e-05,0.004881503116370088,-0.01167376589970425,0.04422768422776751,-0.0019103402161517898,0.00012068835708215616,0.003042332843514887,0.031178496726794496,0.033110353575455755,-0.07010729443562706,0.0005382287777985856,0.03203015904792779,-0.0108699049634094,0.03130331341091895,-0.0924493708826087,0.00014615761469234634,0.0027062724745310018,-0.0011487687320942644,0.004257786620283834,-0.054714730302693956,0.0017316809842594803,0.011749659406115089,0.03134463939991291,0.28359483221842163,-0.07264098685354119,2.8421510836415714e-05,0.014304669415335869,-0.035134347286457465,0.09361766140867815,-0.038455732567893086,0.0012270022847337319,0.0017427156049705927,-0.0036859607197012446,0.027802236628150723,-0.05341078908072843,8.82869696964702e-05,0.0047507662136326645,0.002290239229518587,0.0036462900299360007,-0.09305078996097275,0.0001482432834907683,0.004168701441144708,0.033726643700923965,0.05185922264750549,0.02866213923761434,0.00037329402266439286,2.4064238135975856e-05,-0.019328804272622995,0.06797178292270935,-0.009637716315472658,0.002204076518373917,0.007465785669987268,-0.004452946519461293,0.018723877515120415,-0.003724500962965125,7.6303078139625e-05,0.0017553815160999279,0.009835792631413357,0.01496967250866187,-0.03861195517994199,0.0016333311934303078,0.011955104049809494,1.1111892380386068e-05,4.079173382262483e-05,-0.012610126862752211,0.00010792744549868766,0.0075823822626304984,-0.005091646625917658,0.014603262009354544,-0.028496500344578093,0.00014134119329321486,0.015580850358218877,0.03399431976141419,0.15800169115961324,0.03798861559236321,5.251199824043336e-05,0.02333822699875966,-0.0046998196581801155,0.01681248815456773,-0.0008116540352344292,0.002649520353343523,0.03347579484345827,-0.030630049378312606,0.15367747525022044,0.02200866474445359,9.914665136829746e-05,0.003832561062940589,-0.013574091409758154,0.07718844541498004,0.007435757584373581,0.00012753202616296022,0.026061935038590216,-0.013900180213666007,0.06514212356780567,-0.01577951618188989,0.00010092696590346037,0.004801735534698423,0.01599099281561391,0.0835855962500372,0.031233760511409327,4.80829802770149e-05,0.006414992334243969,-0.04992259674555997,0.08573872253806238,-0.07164870703736183,0.00028388964575686465,0.021754982669782177,-0.021074530674000908,0.07439582345944602,-0.05726544831304201,7.044071124984107e-05,0.006978433140401512,0.014419086775203193,0.16361079187129607,0.0045112131276834255,2.273825299465262e-05,0.00400493600461671,0.010720484696693846,0.0352522714152058,0.03234441439118962,0.00010630073822198686,0.007699591563606857,-0.009277880976190298,0.03496532854122577,0.002801423848320926,0.0004182530863388801,0.006076604395947071,-0.030268885929966065,0.15790238766379572,0.02689020187347886,0.00010979423462851666,0.00020959660166730283,-0.0018006708029483938 +2023-11-03,0.025986834727479983,0.1873019497995184,0.015098606452347842,0.00014672282149275022,0.0016581016614914568,0.017788024821892966,0.05380779559034817,-0.05476522009911753,7.932188993991662e-05,0.012227439937337058,-0.0041413328713546405,0.015668576735874698,-0.057454420893227984,0.00012226658865570556,0.01575927035003454,0.002484989684791867,0.0027260912280636603,-0.1721525296004265,0.0003076465585757923,0.004237641163651906,0.017216851150076054,0.04282523203122359,-0.02099147334030895,0.00021035448318255674,0.010715512375361485,-0.01316421406781634,0.031031171753233982,-0.015204871524965994,9.262825885319277e-05,0.010319369257460848,0.060459121360419,0.23794835218759236,0.0521493882583337,7.455366278026194e-05,0.005459522667852719,0.027777852304631832,0.24309004422981995,0.017297393297014962,3.918592530192689e-05,0.002492971008931675,0.012162973856421015,0.00937409524993433,-0.006717423220767604,0.0010005877873780465,0.0029083249545640635,0.00837011713331818,0.019850531964204506,-0.04963957090167818,0.000147442020046098,0.01924669066282617,-0.010163538065255164,0.007614778525420921,0.010066889337192601,0.0006523970669031896,0.02277528196212005,0.00531645937693026,0.07621475307746854,-0.009332927414330937,2.078769050581491e-05,0.015461602999892096,0.024774857435650447,0.07103302374565319,-0.12317139146572381,0.00010361005392544911,0.016916787593735386,0.003994921569782316,0.023714198144649517,-0.019245787725378636,4.742000893592258e-05,0.007924942023671902,-0.02518068221381327,0.02652694949397522,0.014207140764626008,0.001851412340703246,0.027609809686392716,-0.015035893976851324,0.09882142641947307,-0.0021223103969232326,0.00012520747116615138,0.0014163632325804277,-0.042397956602448876,0.24271276358228347,-0.020839001805553283,0.00027049581025483593,0.034056526801394676,-0.0395728706156459,0.2938576179264574,-0.0009497975721870891,3.793338137204946e-05,0.004942717535689827,0.03789958490511955,0.21986298427039072,0.007708337109233998,0.0002840986318994499,0.011306433189476082,0.0023492951087837268,0.030165003190532752,-0.0001394919811616268,3.2319484876904124e-05,0.009512628630796669,0.02969289337537577,0.2606363032497834,0.09317994906352582,3.806267622272243e-05,0.003758248978631007,0.014912117249119056,0.03720390522440487,0.01161458715447751,0.00012911405953549554,0.006363947899516226,-0.02732208812430969,0.19752284468781023,-0.09916853571968645,3.195132937692929e-05,0.004548919273156939,-0.009010058914302505,0.02909590988714811,-0.010614881194669279,6.865514204562273e-05,0.0036323066810601693,0.009832707084244535,0.03632096156737536,0.018055891619717268,0.000123783956459078,0.009642555736714683,-0.0531339212127456,0.05382697026815669,0.05346215172795779,0.0005642187224620573,0.0031641459910722296,-0.021174229017376592,0.0826518147235039,0.016885963858470677,0.00010783040133574203,0.008347702689495555,0.005298857496894579,0.019064596685671786,-0.017240397712612807,0.00178391350235345,0.018004173479951653,-0.03777424764054614,0.38372691656392993,0.02997809830273145,2.5313707325775462e-05,0.017385203264279385,-0.050328389381405714,0.13915251281580118,0.037642120739345544,0.001182478488332688,0.0030196618893693584,-0.011777337963513289,0.10064176914850077,-0.012599741489124114,7.79281773187586e-05,0.016450794114516727,-0.023676656092740354,0.04578087326865651,0.04935061158981527,0.0001220623367258478,0.01360652423525122,0.0024134213926401867,0.003846637215190952,-0.021245971374588397,0.0003601271323936339,0.02093433151091205,-0.016720444116349244,0.058271003078839916,0.01588518272518253,0.0022240556798101005,0.020258072116486912,0.014122032924937536,0.05607929276545566,-0.05217300071304957,8.079510731819043e-05,0.004654087936743784,0.059575426843016095,0.06732588368549303,0.04451597858262357,0.0021996941103565658,0.026621958534795934,-0.03005711679870189,0.09859364255700911,-0.014773675028342778,0.00012078540044252693,0.00959209769581923,0.025719543641373677,0.06236997001610047,0.014683796562255292,0.00016716605717005483,0.0005662336919349532,0.01723671346104899,0.061845226890014225,0.005855735896770408,6.802400530952654e-05,0.0010052802321945708,0.0009514819351695849,0.0032551890845659123,-0.015775513936467023,0.0027703994006595834,0.014498925128674322,0.01866630108113993,0.09660969983588097,0.011963212235102652,9.611210841935238e-05,0.007561798537613692,0.0010507875905317742,0.005661529473899289,-0.01302164647055564,0.0001345990352542256,0.0012865654677250253,0.022317818396990825,0.12268396732113532,0.020947381228196116,8.604242192942193e-05,0.011518452086831948,-0.0035321733336441522,0.018733256954476602,-0.009573945878911942,4.7388843731072294e-05,0.006319974289763559,0.03650762934665854,0.07336453793702294,-0.03290499587027646,0.00024262013500004286,0.02223419770991595,-0.0031333922703128342,0.014254819320716669,-0.008283640850497317,5.46597230161673e-05,0.013116604434089591,-0.032368104371268254,0.36199157352640227,0.008195611918349876,2.3070132571308682e-05,0.01708745451438039,0.0038397291556452454,0.012438546361739612,0.0015622679257374114,0.00010790459195343666,0.002618496550747546,0.02042531322216506,0.10625338015638425,0.02521332103996397,0.00030300789282555757,0.0065956500561618996,-0.021040821847131182,0.09466790304650229,-0.011925305472870419,0.00012730097732479434,0.004119162252168963,0.00020236423661141093 +2023-11-06,-0.03658972037314954,0.3030287325553336,0.017309755673485402,0.00012769146365984664,0.018301296131407952,0.053705617615899294,0.21630605225435698,0.10036418575856758,5.957465976466049e-05,0.01035078844624636,0.0025890170429137276,0.007767940040140781,-0.07668878892037471,0.0001541793637581046,0.02394984593859406,0.00350101210218093,0.00406258029654249,-0.018253677467646244,0.0002908435992335559,0.00856205886976916,-0.02465853995778438,0.045710215705674365,0.02196274224632599,0.0002822616395455694,0.014353431218262363,-0.006116398537976166,0.01822064351426902,-0.03926334484648592,7.329575189978848e-05,0.011616544447741142,-0.019090675849337106,0.08348674568647788,0.016578705295019012,6.709553593117834e-05,0.006646354065580062,0.012463553051329469,0.10531338494204494,-0.004079936428233315,4.058419249174278e-05,0.011727489853851364,-0.028365505946765825,0.018897845747237924,0.03310557363170101,0.0011575053878675656,0.0005901362883507598,0.029452086096840316,0.08562765586015288,0.05858713657023352,0.00012027182273547056,0.0015285243255868056,0.03845898358752493,0.03050577775715851,0.09520530096610987,0.0006162260572141224,0.002604921911411313,-0.0003812231626035834,0.0043619572184130945,-0.0191100767236992,2.604477845767972e-05,0.0011396699658000116,-0.019792320612847393,0.0507223752797313,0.04239632098521894,0.0001159172774581677,0.013633039741085998,-0.02546288790330211,0.12591313462108575,0.07780785239664016,5.6924397230080676e-05,0.009000891896210516,-0.03677207444816865,0.03206395038337932,0.05530273446829796,0.002236784143993039,0.013129057004834757,0.07366224994200739,0.4953102725567258,0.13351638721355327,0.0001223826216784047,0.05146095952367722,0.01052593069735862,0.05000305846429491,-0.051614260414431144,0.00032596589944327783,0.008026986655442022,-0.011983877070650654,0.06861716707536071,-0.01881087276865497,4.9195515711197914e-05,0.028560458714330172,-0.0236707622642175,0.14101556638784937,-0.018053511768692278,0.00027665084114726466,0.01605485277214672,0.07486958778331942,1.1431685380654564,0.10126723384987896,2.717849535575234e-05,0.016991563001776854,0.0020117277999709927,0.023731911468229644,-0.05017977556723542,2.832162753657886e-05,0.0008885439146539323,-0.027023587962540598,0.09191719373419904,-0.04397262878249178,9.47041497923972e-05,0.005059194486922424,-0.04751008611257972,0.3201227636461547,0.05648568973726311,3.428164364416929e-05,0.01872859524345727,0.003893123377918641,0.010927648827022825,0.0010550081992758053,7.898576332812832e-05,0.00291155789451103,0.0043497785648420675,0.01643681685821887,-0.015195995989298999,0.0001210035266989922,0.00454206543335609,0.05817701390298945,0.06277608670364211,0.01922512679149727,0.0005297033847796099,0.017138605690385913,-0.015386404447439942,0.053919944469448366,0.013922404813055558,0.00012010849273044185,0.005460587551058207,0.016257405810746473,0.05213363586527694,-0.03217279281795955,0.00200148531041,0.016142623900540297,-0.01790569762080109,0.15604104651289152,0.013531810584179748,2.9507647528159815e-05,0.01712542350823186,0.023412879382777398,0.06579265808926466,-0.001406400988805943,0.0011634525206292874,0.026417920262047662,0.007499098990991916,0.06362851738956087,-0.056895056092089814,7.848432470916021e-05,0.003998745513038635,-0.02371056059513621,0.03274700712725516,0.04434082425670075,0.00017088958463960745,0.010554988173786108,-0.035727865047882036,0.05496806471936615,0.04959172655867999,0.0003730787665375986,0.013336123313110773,0.01220671608548145,0.04317179292471061,-0.0005841004931483446,0.0021915384738264805,0.007695651238977967,0.006999436033105965,0.022102262407876036,0.0020525515308449736,0.00010160537629655761,0.007591806161356485,-0.030998810239770816,0.03866148645867266,0.024742601329348208,0.001993166914873557,0.012533491214176596,-0.06172751610365612,0.1900128447062215,0.09476921857167078,0.00012870987782554936,0.01451221387290473,-0.005305217611150692,0.011519778489263754,-0.0066275836367801,0.00018668930997091927,0.003993720334144146,-0.021419407655899877,0.08255637260794685,0.016648566295539582,6.332435559053857e-05,0.003933045166698382,0.036387522601035394,0.13582629508567828,0.013131503189862968,0.002539140259295731,0.003456803843861748,0.056483912134903225,0.24896194393985058,0.07673067283653431,0.0001128580060826199,0.006066530507728996,-0.0019865496517165195,0.011012941876921593,-0.051148785259103054,0.00013081479395908414,3.398737886521944e-05,0.0010440152625666274,0.006500640839473969,-0.035258030231378065,7.596252189191975e-05,0.016708248900998535,0.04313061338576661,0.2129057998650164,0.16551754328756443,5.091497525428392e-05,0.014287305520351366,0.029281341286886708,0.05808752887185299,-0.04092609193740873,0.0002457748610497383,0.009305478752742432,0.0008494268801406777,0.0035269100155070543,-0.023114364894367672,5.988885316150575e-05,0.012246490160277668,0.014359936488048938,0.15835683970207898,-0.039518151324587185,2.339628906594231e-05,0.021098810063988074,-0.019067124113946534,0.058806942356241114,0.026053757441353274,0.00011333539408252723,0.007734297693907885,0.011196575653003823,0.044421366661299276,-0.012365423643516015,0.0003973024781429528,0.004585140749294758,0.04181049058821289,0.2239768471082382,0.002014752362810078,0.00010691876473239715,0.013631523512173475,0.002089630660565208 +2023-11-07,0.007277282369585755,0.04594151374223972,-0.007622562074008024,0.00016751376878090682,0.012629531591570863,0.013631658137699102,0.04851207934299466,-0.013744128284307483,6.742319407625014e-05,0.004319464662359677,-0.010945380892041721,0.030539007025789485,-0.0003684493842519616,0.00016579566535152902,0.013350167943096632,0.0065741910839428284,0.006046689520893745,-0.013554613661297558,0.00036693784821959576,0.011407492856063642,-0.00398879992447825,0.008858305346641185,-0.04503184523204525,0.00023560764528398435,0.006399615122880266,0.015325789321965872,0.047828897117125665,0.05265455461044571,6.996473996858208e-05,0.0011571182475118595,-0.0228551638100148,0.08670813809140424,0.019306623756930284,7.734181026500984e-05,0.009779363790546829,-0.05147274945412407,0.40593169347804575,0.03328357139301578,4.3483352579929205e-05,0.00796002385136112,0.007215691919245997,0.006704738470289654,-0.026476146689220683,0.0008299289742552904,0.0027232983732183216,0.025277414433810926,0.06561219282492532,0.008657596949695442,0.0001347131473341437,0.0038038642290707664,0.0035392852539644806,0.002764682450370817,-0.010950637531585879,0.0006257410825524412,0.007033062991569387,0.009504583784207384,0.1078095239743436,0.018220708259085422,2.627234051661853e-05,0.007377618692135241,-0.0067558567547615495,0.018935632686026882,-0.021516041869347077,0.00010598676826770797,0.01833569112857907,-0.02887354435042752,0.15433938367814717,0.054478858385005366,5.266052146275698e-05,0.007559399606267682,-0.008172341423338735,0.0070019205035697875,-0.001231610320718163,0.002276419510405206,0.009225913804866117,0.07644308179099525,0.5402776818863406,0.07886343178331533,0.00011643224386730073,0.010583310327756697,0.018345727728580213,0.10989104871017112,0.006651281106190031,0.00025851208936382913,0.031911431131865134,-0.014884663169254748,0.07912294819550322,-0.006427323782144671,5.299043762255257e-05,0.03232536883975602,0.03102532662065624,0.1702687929430695,0.008428273124127519,0.000300308837228693,0.002403152025555794,-0.05495791460974162,0.5429778744690963,0.064652166882417,4.2002809741965925e-05,0.002919554241873614,-0.008162647432095929,0.0814602630258679,-0.0339154308064042,3.347857310030576e-05,0.002077404542207322,-0.0007789699274312539,0.0026628173874671704,-0.015388143539130955,9.423279299837935e-05,0.013768348311733073,0.01776267907200682,0.14318150076525635,-0.0028893421829800877,2.8655892226024483e-05,0.01585805514793029,0.007609526622050562,0.02142801471763317,-0.02544207149619309,7.873232690999646e-05,0.004698708413826936,-0.0031896462047615076,0.012761029907075902,-0.0030344824480830757,0.00011428925004861935,0.0015285081536317408,0.021155369452270256,0.025356943947473818,0.0054531259955707635,0.00047686919095566875,0.02246275664160791,-0.013281242715494789,0.04005458811105476,0.009327097188747711,0.00013956369288074236,0.011446141803830218,0.006922789104143683,0.021578750707170465,-0.0026602067778665976,0.002059083594292134,0.012362746563807111,0.036784193708121984,0.2994994348832832,0.03846467438539864,3.1582567206456184e-05,0.009050817045967694,-0.018226002348916432,0.058655746522873316,0.0025115563942207,0.0010159027248110074,0.014602492636099819,-0.025077401149842162,0.1817849558217623,-0.029320649744263693,9.186503216638842e-05,0.008767826580164758,0.02842870119877325,0.03667866739133908,0.01301260118766861,0.00018293165210447957,0.005289081958155719,0.006665346090375757,0.009344652063387688,-0.018705024161003544,0.0004094147479593632,0.00406225541692532,-0.015082465139917331,0.0633913167001969,-0.06917081017096535,0.0018441357997640798,0.013419534483312557,0.005938374468912552,0.021693789765433878,-0.014055184718656664,8.782588275952675e-05,0.003731510107380721,-0.01467119948092145,0.01540550136111237,0.00778649421593779,0.002367374564983658,0.0049921901729360636,-0.030787582336958587,0.10553515540450492,-0.016112810083643167,0.00011558313473786955,0.031167730589297487,-0.0080735052076947,0.01854268669521352,-0.014733863825949392,0.00017650208721786657,0.0007659172727553566,-0.04374796908714779,0.18627750329705578,-0.020179058145009105,5.7320690476706315e-05,0.018326358332432905,0.034553294628427746,0.09379043855186886,0.016673306119050362,0.0034917967361170156,0.005085443975281842,0.019137451909286108,0.11299279445560362,0.010126349832961404,8.425078064929843e-05,0.011358916685019512,-0.007164981070069742,0.0319502901447969,0.003680604643808304,0.00016263013605434214,0.005305571271545364,-0.012094896594941553,0.07404941754151889,-0.006133908749024551,7.725546513797385e-05,0.004481480680115842,0.03087994171185497,0.1578263877763985,0.04910673239415124,4.9174986572667366e-05,0.006592222432056073,-0.06471201690406747,0.10532416413337135,0.039515761463708325,0.0002995617153208372,0.032041122934516025,0.007089561307667909,0.030504911435364556,0.0010243336769509195,5.7791500401198596e-05,0.011304363514483225,0.0042051985960701995,0.04499248240730959,0.0021441165235778353,2.4114476634374493e-05,0.023978981753164413,0.00778989385784957,0.022359684869275663,-0.018776658124076723,0.00012177967937124896,0.008162511860078785,-0.006490721295942502,0.0239792115155012,0.0008013076784975054,0.00042666403265648564,0.0008912744592624051,-0.03793184155903468,0.18641309943975432,-0.005010677922953427,0.00011654651627420995,0.0022312008119526397,-0.0014686366295392189 +2023-11-08,0.023817199301390497,0.1454796367068822,-0.004672495027356215,0.0001731310914445204,0.0009551177324303247,0.01635904698676423,0.06317953284676792,-0.01055713257195794,6.2128678484426e-05,0.003399019764783108,-0.05419737095773185,0.17495126866541497,0.044060997535031766,0.00014330400510683753,0.0033924773539592366,-0.029872278690179666,0.036575056600573495,0.11884060949532955,0.0002756456871589751,0.012291644220943584,0.02797041204079475,0.07069656921447996,0.019958964290583553,0.00020701332345880258,0.0045944315650639144,0.0039013208821143106,0.010085534811868647,0.002560051302151522,8.446163406481205e-05,0.005422406741641612,-0.07146598650721743,0.2649707479037395,0.11873193632743857,7.913913820553673e-05,0.015901769580072736,-0.027374717935625004,0.2651225212865831,0.011039316855012166,3.540802035750115e-05,0.001924717852730036,-0.011276509747034405,0.009142486340448883,-0.1548462741378056,0.0009511634777251623,0.011371922221195069,0.012658473531834722,0.0255811238758542,-0.013593096034179433,0.00017303087480436836,0.0024201608280310033,0.0490868537983662,0.04603811191227335,-0.07981673472081233,0.0005211611707502727,0.0012220094458942332,-0.0029553144819592933,0.03997437180383203,-0.04126154346491919,2.203153941895808e-05,0.004931976541814286,0.011169682599194807,0.031821479341914136,-0.0019646210217844884,0.00010427291257353464,0.00019375902491496283,0.009525193396860887,0.053117038241235086,0.0018023371584812882,5.047795700672459e-05,0.004009488201348925,-0.008867666694680029,0.006743608451876503,-0.0028088476100316057,0.0025647201705693993,0.012940987684636935,0.0015611703748936825,0.011169998374506942,-0.022519764858388802,0.00011501362699043816,0.00459968342681635,-0.018701118839800943,0.10355164806615585,-0.06392306412811347,0.00027965256476030924,0.016523115223949333,0.05460086520121223,0.333067531570927,0.023425368810965724,4.617726237428931e-05,0.0034733207891150903,-0.03949607927389727,0.19907538209689118,0.0203037673480879,0.00032698154035245365,0.007703233890913098,0.037180239462257944,0.5576533675406856,0.016194643959788157,2.7668020237671907e-05,0.011811054403214392,-0.009003763626467454,0.09396900801638881,0.021842345330625495,3.201261501975351e-05,0.00047222197975108266,0.009087379655208052,0.028094954325087143,-0.08819035711297052,0.00010419169373085539,0.009741191448899242,-0.02676259646725663,0.1599361844302514,-0.07111242895874736,3.8652170883871366e-05,0.015532021912551604,0.005195191215038166,0.015904524033856202,-0.0144901052774758,7.241995363953232e-05,0.013429153426649645,0.007858415656633462,0.03255394354498141,0.004974638912002346,0.00011037735580470072,0.008289106204087165,0.08894157064101432,0.09346620965594284,0.1427692501064369,0.0005439083484048868,0.019752955368863588,0.013718245069906517,0.05618616507275955,-0.002663025581706349,0.00010276735415339091,0.012354189199559974,0.05480387593273331,0.2491449035922235,-0.07222648359734274,0.0014118171115131554,0.013408444528385289,0.0024328821441656056,0.027590068947114337,-0.012325617110306452,2.267516627952462e-05,0.0010416479895403088,0.07463529170923244,0.22606291269563336,0.18166353221749562,0.0010794093742139093,0.01055393395738545,-0.011950974597211374,0.09666083387030308,-0.015609767321756276,8.233385099986052e-05,0.0037570237801151365,0.016790980513085117,0.029336284083014016,-0.012437009806651555,0.00013508786606570257,0.016730854334409264,0.02072388617822165,0.02609755013134634,-0.0616920829006131,0.00045580110284271447,0.025436687684741385,0.022072669480423076,0.065298664311589,-0.006113528772578196,0.0026199976601434293,0.010067497407330645,0.017408020140216838,0.06049153897878179,0.02534025553907041,9.233048508404125e-05,0.0044126519083736646,-0.02590503002215882,0.04016963108159382,0.017102610172413296,0.0016031104627513898,0.01014787882278257,-0.003296208181092026,0.009059787316841959,-0.01473249384685758,0.00014414934287917996,0.003955444909585751,0.029530048896732677,0.0771376153949811,0.04412869821249381,0.00015518807036382897,0.006034480156795503,-0.041243069009376444,0.1756374705699131,0.04425978515664142,5.731228527071474e-05,0.010016877557095691,0.0748322210485678,0.1984233851797721,-0.0016800939371796814,0.00357448796192463,0.03916539232270029,0.00020629347516862306,0.0008016626603170753,-0.010522905229042966,0.00012800720266346478,0.012500415812460312,0.0303714633725182,0.17791470182372046,0.0793544122881336,0.00012379829547133853,0.0037120736615555263,-0.02366866373500902,0.14270151602203324,0.008774081917403366,7.845016319592084e-05,0.0007192970864421637,0.014482256947170013,0.06963762275053229,0.0018063647332704532,5.22684602288865e-05,0.005713163987664643,0.03677882317864336,0.07142010907506981,-0.013148338413053339,0.000251076874553465,0.0017602725747518887,0.013366032007875535,0.05770996813911613,0.0005528875626870414,5.759251421108365e-05,0.014218682632564886,0.0034213952332748476,0.03409187184499915,-0.009356158530289128,2.589307827656056e-05,0.015245372468135194,0.014324110507180318,0.03644151911466369,0.07176267582095769,0.00013739791884132997,0.008631088412021324,-0.011487958645946136,0.04484145261104295,-0.04489578384183398,0.0004038231029967869,0.014333850412779583,-0.034894360885009044,0.19268478090869423,0.018641719383741547,0.00010372408939302839,0.003087299027998424,0.006885860850956809 +2023-11-09,-0.03812617230013831,0.2814128767451921,-0.07103957026480878,0.0001432734848360995,0.017810519537791263,0.019407504468047013,0.06712776759907144,-0.04321674412619619,6.937100988230289e-05,0.011227110140602242,-0.017709342321193863,0.0626584377008032,-1.0991904862220068e-05,0.00013074349049384788,0.012773739246087747,-0.016062545823569717,0.019767381873801854,0.04619284252494074,0.0002742414419392304,0.00851830943094841,0.002164545723126942,0.0055597592076380925,-0.007830792856526358,0.00020370821988136727,0.019582286550373616,0.014799057218692653,0.047087357972563026,-0.013986246345521943,6.8624069049043e-05,0.0022497609017100243,0.0031502879191614196,0.011111130777446639,-0.04214041140312004,8.319205335048828e-05,0.006354989939981678,0.04004254288556492,0.3475740761114965,0.015767707143968888,3.950689397179582e-05,0.011733666688087827,-0.017583629662485476,0.01409714942014818,-0.10685376651729829,0.0009618824744152445,0.003469869134066158,-0.0493484192917676,0.11679333360397084,0.15772196842553857,0.00014774645792568647,0.012334507936353743,0.038564144804764194,0.033219121666846624,0.013593760439541967,0.0005674399622038174,0.008754988545553387,-0.0003110111080094578,0.004202711266500303,-0.009411220572937482,2.2053074044920305e-05,0.0018906088411406328,0.012696705641836904,0.0335927176503091,-0.0827742375072343,0.0001122785897873871,0.0009347160688571298,-0.011257747425735657,0.06209855021806836,-0.024689479416104984,5.1030739053835455e-05,0.0021186226571304283,0.010816720657110182,0.009650690728215883,-0.049272912890768655,0.0021860504907659276,0.0039406780245104965,0.00085280336256892,0.0050904731906186666,-0.011966207347228646,0.00013786145486098156,0.019715765070427185,0.015896620703420617,0.09614706842256725,-0.006454105000705403,0.00025602182971260065,0.011433656801108884,0.0017752328086535903,0.010031118362397626,-0.00896883711370905,4.985020133948126e-05,0.025084132680001862,0.011649816284860202,0.06357988137431782,2.286096413065531e-05,0.0003019855558230249,0.008840599369035848,-0.038249109418207826,0.6089043824661373,0.023276905703533274,2.606768468156801e-05,0.003041785750871273,0.00938069989304925,0.09403043407667314,-0.01245942898778278,3.333101279846568e-05,0.000655855108306253,0.06258478992052245,0.1689790952108588,0.10993202102347008,0.0001193049805316812,0.0181241737820228,-0.058890168287747256,0.42202278126757253,0.053230121763203485,3.2232892232785754e-05,0.006924261617644911,-0.005957495237271429,0.016139690484126536,-0.0012109993837590585,8.183628087849133e-05,0.00896734229301075,0.0018259056842155872,0.007341046296221882,-0.038951180878715796,0.00011372841152347324,0.0012016901959687857,-0.00580726906888721,0.00555235000103589,-0.03211081213314716,0.0005978203236837032,0.026619818972482005,-0.0031439913957440986,0.011688426414789009,-0.02069005049664531,0.00011321691344507324,0.010074992381445916,0.05191640133976046,0.17963207021273495,0.04006852323792876,0.0018549827729830008,0.014321369963123496,-0.02733071016991274,0.2849647243930899,-0.013059257701883941,2.466277890897832e-05,0.005561677801651697,0.07029313549004193,0.1865371948703503,0.09878605449721575,0.0012320227971951304,0.0031365075280457696,-0.01852899506076044,0.14245985868206157,0.013142615457854669,8.66133825438868e-05,0.0037737690028880567,0.013043788189272543,0.02059566031116539,-0.06680868710919964,0.00014947666646073526,0.0024736246480870643,0.02903117692714797,0.04975570753795701,0.015448973125983523,0.00033490809888546923,0.004678469477647171,0.005243559344190727,0.02003173954044791,-0.0012852541450882843,0.002028887021124383,0.011531650377370953,0.027031510116065045,0.11002322809255256,0.04049751982159033,7.882723543675186e-05,0.003076101619812956,0.04097412875706929,0.056357619015191984,-0.061113468908656314,0.001807316788243225,0.04828289137230266,-0.004338439176983246,0.01397868561447211,-0.0029000501405378413,0.00012296548077815714,0.005508915132601462,-0.02040917342933049,0.059245133593147786,0.04481080922155847,0.00013964748195244186,0.012453437719267768,-0.016284030564054506,0.0731634730934617,-0.00965018415341904,5.4322721633269124e-05,0.010697240815386781,0.03668111418595234,0.09538814212762425,0.01036454046527659,0.0036447369251892438,0.00915485243824466,0.022144225588693885,0.1063062450227545,-0.13250598613425985,0.00010361969022508347,0.018760348401099945,-0.018990017129481517,0.10953182875128262,0.00402251361881391,0.00012573199370968398,0.011424414539986891,-0.03921568566087282,0.2557996753721921,0.03414617029635404,7.251177270456381e-05,0.011128513515529244,-0.020171610217047217,0.0900156653633652,-0.01416274501137123,5.6320936351338834e-05,0.0010187279165716288,-0.01236353314593524,0.024352737990299765,-0.026726707471800133,0.0002475279216512544,0.01524569322770032,-0.0031700602020832526,0.013799676701076593,-0.015203883043742416,5.7123258612476535e-05,0.006203595277173943,-0.01163786539936015,0.12380257927779972,-0.0028120994877269666,2.4253528064568936e-05,0.004670600374431697,-0.019505044425359132,0.08275639502742782,0.025589437556608124,8.238617582135388e-05,0.0004917035099100473,-0.013003621273493342,0.05651699560746171,-0.08286866043495707,0.0003626713226342314,0.0030285646374740233,0.02212226798647738,0.10176845617545911,0.007667025242981936,0.00012450542029088186,0.03586528660566812,0.0012678159532541766 +2023-11-10,0.00010829632897390359,0.0007197028798302578,-0.0031589503502072237,0.0001591281737575577,0.008013658509474603,-0.04205607816933565,0.127222462387539,0.08203992046106555,7.931868411868422e-05,0.02418164276838861,0.0201458245386408,0.0682629283786209,0.017542276199949254,0.00013652033229106985,0.03102637153202407,-0.02384476207535689,0.02544850315261469,0.07711892912201361,0.0003162267516325894,0.006291008856823378,0.027062759346056002,0.05702692920600054,0.011475633692638359,0.0002483075138727846,0.025937004905598592,-0.0016114317415706209,0.0037078375551344365,-0.03631613902571887,9.489382550101389e-05,0.0009836858365029233,0.018402010507738528,0.06670833619525,-0.023766083440984853,8.094220306097567e-05,0.008047043106497839,0.0019338420085023519,0.022461964496832954,-0.0013611098028383738,2.9523773722047e-05,0.010729854128136635,-0.0075865596418108324,0.00650155082777782,-0.019004470675803065,0.0008998553455130377,0.007882762513514335,-0.013591769332820323,0.030384746642474935,-0.004664819071939495,0.00015641639145709597,0.021292148142783785,-0.008401209107503157,0.005681069242226982,0.013104784401643475,0.000722829835464663,0.016794751992450143,0.020199676839790223,0.23506411507452096,0.08828751424040149,2.560830750828974e-05,0.006938747133720189,-0.020226283618475036,0.057636867972052926,0.02182171667480193,0.00010424776618042234,0.0011307420594317437,0.022125109373850184,0.1265235974923575,0.06507387013921193,4.922386519677665e-05,0.0009099564701254368,-0.02496565941956774,0.019154023490662753,0.008685130820278058,0.002542178248414583,0.004902509860583673,0.03533280664389457,0.2393235904354753,0.012486068979092898,0.00012149117569826725,0.02075089576176591,0.03266071886215381,0.19786367694647827,0.01821376340984322,0.00025560414709671587,0.014093004131782586,0.05031945027434396,0.24854101103817142,-0.0954038956874894,5.7029397478755685e-05,0.003490474300762214,-0.019769703747950562,0.1104113204013321,0.006111106317855578,0.0002951028238054721,0.010190765113859562,0.008910878252853707,0.09905452434680137,-0.040273280791994256,3.733158458234903e-05,0.010627378883078815,0.015559976189795615,0.18491486733059606,-0.060339092630586226,2.8113751834372476e-05,0.0045446883539574864,-0.03792588517561046,0.1125427797579482,0.013053864940623957,0.0001085527534427472,0.009388880253752051,-0.018417241726597457,0.13215420632664004,-0.015332327256880711,3.219111158882968e-05,0.011361231467715187,0.010280921194912671,0.02885674071786177,-0.011493378683646633,7.898818510560834e-05,0.0010383429957884793,-0.007610569795289533,0.03782592677822248,-0.0016836723261335956,9.199753506293732e-05,0.0013548428216338267,-0.030458774823654278,0.038203022421425814,0.01617585866098002,0.00045571179383367005,0.031453569108734834,-0.008821861489996958,0.030785731423568195,0.0009365467691626441,0.00012061373535059485,0.01614106076534758,0.010412226728226809,0.03295577109640745,-0.053635305593013216,0.00202782892428621,0.018156288495158095,0.03173302864721286,0.3366864677088736,-0.03977647929676086,2.4236396998617323e-05,0.0057105456134141286,0.02343577907876534,0.07293110821787759,-0.0028791000366871684,0.0010506011026686752,0.020557508600341178,0.03315982639893971,0.19522021386163962,-0.08711613293142202,0.0001131131527048253,0.0036701763411183157,0.01634929023903434,0.02773500030170595,0.006225276541914828,0.00013912850389344916,0.02218371235693197,-0.024552889024095748,0.03440714788477956,0.028987238455963717,0.0004095980124526295,0.010716058439668785,0.03832251786540142,0.15349652183606768,0.02326151835391425,0.0019351108033004935,0.0007604827253533089,0.010145786614983584,0.04366454693962483,-0.019992232814812137,7.454991217287492e-05,0.007769038784994249,0.002124367184289569,0.003135733003415441,-0.019736351212519473,0.0016840993141329407,0.0138507593036785,-0.01748619534089706,0.04935420037333022,-0.006082569816240758,0.00014037418319045716,0.013992641383138707,-0.006444923974811018,0.014598964440642244,-0.01888329698458496,0.0001789600630431687,0.008629263695002071,0.02308094378902664,0.10655847128177051,-0.035629094158208335,5.2866371926659614e-05,0.01295820194416666,-0.009296256837287926,0.031197204042475297,-0.0005237595909769498,0.002824297869807635,0.019119259983519342,-0.00015389820349108119,0.0007168390116218157,-0.0023806455787068743,0.00010679538569174399,0.012662395994089418,0.017884665719859343,0.10220464012348082,0.02013650129121125,0.0001269027397259831,0.004673442537669685,-0.00778918333513182,0.04450249095981083,-0.012049279797043464,8.278588657282797e-05,0.01967136583111149,0.00562360518231871,0.022174954915471858,-0.06146275945085318,6.373815263008069e-05,0.025216602953501525,0.010856195887289456,0.018934216237317756,0.00854824864671904,0.0002795501518373694,0.01051174583037367,-0.037640217777139835,0.17644856579501125,0.15724565590223052,5.304547841878037e-05,0.021402820616690167,0.0015055807293356223,0.01642169186084235,-0.027713829501875942,2.3654699435872566e-05,0.005088844123434942,0.022580921838112864,0.058977874069909966,0.10921875896938991,0.000133832477665396,0.005091731352313827,-0.02526270099320548,0.08913587587396832,0.04128964968193694,0.00044674038733330594,7.619328668230941e-05,0.03127212153982831,0.15053787644344338,0.013840530110518773,0.00011898257289433623,0.01666984286928982,0.0034292381763538172 +2023-11-13,0.006635344842238151,0.04688755048008632,0.0013129762520344157,0.0001496554501100832,0.02037514616300299,0.013300991441568214,0.04685403217708816,-0.04647517690356983,6.811575412148417e-05,0.008725016706022926,-0.0067459528624418084,0.023456675642354343,-0.027081222447119895,0.0001330374905245491,0.0029574950806991215,0.0008319993210777648,0.0008642399879515534,-0.02884443674239215,0.00032490505713841515,0.004020467828050688,0.031858495164921626,0.06693294827275663,0.00925048000388472,0.0002490480095336991,0.00305799759846752,0.00015901210952044644,0.0003668032469989216,-0.11056350882016491,9.465504526626186e-05,0.0036852664772880402,0.01833658227376402,0.05649292746519743,-0.06341783110353136,9.523885514307534e-05,0.025105723328580826,0.002040627509959951,0.016451365201511282,-0.00615767530127263,4.253636836493546e-05,0.013595028463162068,0.002439456863426781,0.0021569771515054454,3.558257525505794e-05,0.0008721524093019694,0.0015412554791521672,-0.05208182760837875,0.11813356023619107,0.11961178665305373,0.00015416110316210388,0.005264131223143479,0.004430748307988964,0.0035646729603927346,-0.006486804162558574,0.0006075496104338259,0.003602211367467136,0.014279684976902494,0.1700280051895353,0.0036944755419329564,2.5027700914004008e-05,0.009897397984707451,-0.07878360500369326,0.24005008527043123,0.29205960255734476,9.749560145146136e-05,0.03686219544277461,0.010782821982869875,0.05867630888249341,0.007275129409480636,5.172868848652197e-05,0.0016450227925670408,0.018822159108745434,0.01460357420841133,-0.10689847307748467,0.0025138146390615576,0.007935300801305539,0.017105647920048855,0.10898735430455349,-0.05448221363369067,0.0001291562796056411,0.012655404721711718,0.006930059711693293,0.03567368382065803,-0.00026196068038432374,0.00030081344944759094,0.045790387156011844,-0.04849307494047563,0.2518724887248458,-0.008902179200662321,5.4232540111467045e-05,0.01843801573170236,0.00728700483951179,0.04555014875755048,-0.036515426269042715,0.00026366110372857396,0.00447953627168389,0.026866344795260524,0.3862877259486765,-0.01711958843522241,2.8862098626056645e-05,0.011059017192233157,0.020603410848264184,0.2057664875056688,-0.03264265747404389,3.345385635287943e-05,0.0145211000143356,0.002050424208276978,0.005257911165437021,0.00046838319832786287,0.00012561839269770346,0.011368242573598447,-0.02615497737782529,0.1793365665621361,-0.049776320357296955,3.368820521601388e-05,0.0028320730046670233,-0.012258708961134478,0.03934237420987269,-0.04584664635031187,6.908146703405673e-05,0.002302816635838684,-0.009434824551460514,0.03079187640096057,0.004896913467689073,0.000140102623988553,0.01479343919984129,0.040473187111977206,0.038900502233952944,0.020736924049090343,0.0005946860592037627,0.009160199097073017,0.005689675062445034,0.025942971639079222,-0.0028689138352640023,9.231106313700972e-05,0.014727283824662332,-0.025769226268246112,0.09203228620480938,-0.0647472658954311,0.001797133512801916,0.009453270540963815,-0.04786901275602609,0.5803333229308295,0.09409241764814792,2.1210902977053876e-05,0.0019332755237508855,-0.058380328445346366,0.16510352464424569,0.0530380600711301,0.001156062886336499,0.03981090234492126,-0.007131241671615354,0.058584478795049286,0.00033340890935924875,8.106030384084277e-05,0.012341467101398888,-0.012442854870366294,0.018029169038610467,0.02313511636291855,0.00016288823270074786,0.010741362269137047,-0.024256767323409662,0.036798149004186445,0.0120374906289503,0.0003783649186435217,0.006285533470181884,0.0117081974624843,0.039624795209578484,0.0008514910579915884,0.002290199675548354,0.011327627439816405,0.008375934617247935,0.031980301295290385,-0.046998536253014395,8.403130302349174e-05,0.020974575666639125,0.019620769503736358,0.026614652737247085,-0.03676595090503035,0.001832620007986233,0.01676261488468811,-0.004034675264020943,0.014312352659100932,-0.04226907286416186,0.00011168982061953117,0.00876374339937114,-0.06170389668176301,0.17082940339034955,0.31779869035011643,0.00014642335145529576,0.011052158423089199,0.0006179928550126546,0.0026963372283635993,-0.00039501770221461366,5.5940091312472804e-05,0.013021901402987628,-0.031670891973323664,0.10020855841520733,0.018949650927252204,0.0029955290690597586,0.0445830082657627,0.04541300955391558,0.21892772400415605,0.011720666102094933,0.00010318583726882652,0.0074215624063242525,0.003045866852529001,0.018867199461426655,-0.01922420713555525,0.00011707502473946079,0.005381436996875424,0.039018030375291675,0.1956377301443658,0.08813539551457025,9.433251772628092e-05,0.012794829473474451,0.00026664961149461535,0.001092747739318391,-8.470779987978587e-05,6.132936011478544e-05,0.004219713963751882,-0.051398402072613376,0.10582875179937618,-0.002144620069701773,0.00023679653198764212,0.002959346597825359,-0.04591879436470331,0.2085157166889394,0.15365950282294433,5.476033011570827e-05,0.008776254536221093,0.018598646896962303,0.19160326353902693,-0.00722565710749492,2.504434816288751e-05,0.003130682463372607,-0.008646958162192638,0.025648040079427822,-0.04328133324389478,0.00011784689343045941,0.008422543283455831,-0.01428707875420604,0.06731039826521575,-0.0005004976720815676,0.0003345717356913197,0.0005884936013262594,-0.08289107762918978,0.4099124128810562,0.03184337051484017,0.00011582132047404442,0.018074785524787387,-0.0059539539766024 +2023-11-14,-0.006676203476447282,0.044456429307886125,-0.02895518863297878,0.00015881136215558164,0.0012874407408623714,-0.029256506651152384,0.09902416877132025,0.04996294120645871,7.089111209765e-05,0.005279104171744841,-0.010239723700111652,0.03539214530494759,-0.031225978766047997,0.0001338377276369146,0.013306655275870908,-0.01564337718172783,0.018252566524173314,-0.01852994829553355,0.0002892507096742086,0.006091276158691917,-0.04262916796868514,0.10068048407667625,0.047652991784513536,0.00022154366375340046,0.012809195877979877,0.007304003951165186,0.017712239906291352,0.014693760359968774,9.003974437038899e-05,0.0003542294112845318,-0.03312054987745758,0.11255857689205916,0.029095964181617185,8.633935503519206e-05,0.019010394935605017,-0.01977550652001075,0.1856531350928303,0.004602492052517216,3.652783590218956e-05,0.006890310877801865,-0.027095310135374938,0.02139519317517627,-0.03605434791965588,0.0009766134495732346,0.0029199708426135883,0.028500176555484782,0.06812560142332849,-0.017028661068706034,0.00014628476133754642,0.00773929345797021,0.006606806534011875,0.004311425586254526,-0.005314741477346942,0.0007490228266824815,0.004381215502205176,-0.007716429619296984,0.12008273446668301,0.004866500677661716,1.9149552076219347e-05,0.0027539987433084154,-0.09268821454829475,0.2815904388653496,0.21930501263628246,9.778171489038386e-05,0.007310229886125822,-0.02378125783829314,0.11274788674052216,0.003922953267018962,5.93728955334531e-05,0.005189509916979413,-0.06131866762617655,0.056302131179407786,0.1691116105873282,0.002124177713046649,0.010317077275272826,0.001210089039269125,0.006242719567070594,0.0011580469916480705,0.0001595128258371391,0.009005439755030212,0.020282034014934166,0.1283844563963573,0.0018601477227814104,0.00024462863505407496,0.033413650383448686,0.0004246305113726774,0.002414483329558145,-7.483782670009415e-05,4.953908051663942e-05,0.0035312269842779536,-0.0047948908862120035,0.027248356220929755,0.000594680589884276,0.0002900181834030957,0.02155307457038831,0.0006071668130121434,0.00845662828009347,-0.022832749895384353,2.9794837123894648e-05,0.0014214667816901338,0.013774807795987687,0.17126717474684428,0.01100566084055993,2.687157506878135e-05,0.008985440041988422,-0.012286972542940004,0.03093807727411887,-0.011731565662073331,0.00012793056670690702,0.005585480360341316,-0.021265360390534085,0.15651873849013878,-0.029155999000410278,3.138331272214741e-05,0.005091011144858271,-0.015129692813366602,0.044977721225906646,-0.044779917664028966,7.457788183593254e-05,0.010117709549807067,0.00887857033735189,0.026432853491080547,0.024146937393478524,0.0001535845700867164,0.0011771560425667693,0.03043539123065481,0.02430184631305831,-0.00753066884985652,0.0007158387105393448,0.019599087235278582,-0.0367119709179236,0.1426960030589386,0.0065863774541137935,0.00010828839107460502,0.00874728464784294,-0.03295442225936148,0.10616243957566623,0.01229705179165565,0.0019923332685550296,0.009096417948393406,0.015218829567352783,0.13245387566183697,0.005384242166444374,2.954600576950399e-05,0.010854330999390864,-0.0034157945884570177,0.009539426104463544,-0.01666566398244797,0.001170686924640421,0.020431851363448383,0.031105198158172594,0.22706665073287613,0.02219801820368111,9.122319135461461e-05,0.0015999417359151803,0.032501688849178915,0.042119724794932534,-0.11916001154616712,0.00018212341690114852,0.0035058754033569957,0.06678381404428416,0.0918362351798199,0.0881504043822478,0.0004174082805770338,0.0015532395700502463,0.025301859386321422,0.11751479131302645,-0.010403704371902049,0.001668822879622954,0.01449725364975028,0.0033769719071353155,0.013858055941082794,-0.030338316134837034,7.818357195450857e-05,0.0050259506722257485,0.025380721206608406,0.04213200677107511,0.0064716190716494525,0.0014975074964945923,0.02179768282074325,0.016262508589873728,0.04712131316537877,0.010149101668391804,0.00013673704515885786,0.012012059666540228,-0.009054634760871871,0.022503980757477792,0.005574844336002124,0.0001631067615738401,0.011801127820979427,0.03208715409956059,0.16649996103190334,0.020346885236216573,4.703606575546626e-05,0.0005023821119408264,0.02653671958815375,0.06754186812775669,0.003467970894289804,0.003723850392948006,0.0006592590422062221,0.004910702070415425,0.026269534695530634,0.00023378138346825597,9.298904272757793e-05,0.0018503536284787117,0.006605597675354398,0.03572098100533167,-0.01861498059218089,0.00013410640661624967,0.0010395401359308747,0.0034910578981441997,0.02084156811733396,0.003133451753747267,7.92273916399656e-05,0.013802959746474134,0.02046093807746786,0.09570136080846722,-0.010409124795065436,5.37346992795141e-05,0.0014722317760887085,-0.04489134020457303,0.09059384006181248,0.012440528203122296,0.00024159797870262656,0.02440052247566176,0.009685979076440135,0.0371227836878573,-0.011672338002553849,6.488097500830074e-05,0.0006093080421897322,-0.04129514844125732,0.4403107380075451,0.0338655913307366,2.4197530178747542e-05,0.022066972858639365,-0.016658915052771364,0.04962455432428227,0.01502799154575923,0.00011734350567844027,0.0060240814477576,0.017323858056383187,0.07818438938298708,0.040392760738183736,0.00034926296688780043,0.0018668729553125848,0.04976538675376881,0.20435446849813696,0.026030568162699,0.00013948099633019593,0.030775663405839978,-0.002737654403981588 +2023-11-15,-0.04261642058808805,0.3122439795215461,0.00384161900815126,0.0001443342767983826,0.0191823396985977,-0.016956692799158343,0.04938516251995054,0.020325432676599454,8.238633652174373e-05,0.004772599652176948,-0.028021891244642813,0.08756295652849298,-0.03722976707060492,0.00014803834825231655,0.013595617450974718,-0.008502979307039107,0.008727622672776662,-0.001341663551426254,0.0003288084854023902,0.00014471734545357193,-0.05288430394871276,0.11385848487722466,0.012182194893300696,0.00024302959581717885,0.008468759668514316,-0.002397238937660475,0.006456595074292678,-0.011114205546654418,8.106894336674776e-05,0.003124167450011196,-0.00036793594609174825,0.0012598333133631752,-0.003370743109002405,8.569371802362165e-05,0.017394744948142082,-0.015163500502213084,0.14197794982738618,8.571105975101735e-05,3.66249620904922e-05,0.023468029512225368,0.00013350409952818978,0.00010643510300522389,-0.004250958479039366,0.000967285112694604,0.004898288518204053,-0.004867350748356177,0.012571829160343226,0.0005980325645996691,0.000135380482914387,0.004316462276789506,0.01641534152678286,0.012916948440941243,-0.046497969560154666,0.000621175552581098,0.005914885001207647,-0.007403597453762585,0.09144624345375837,-0.036562816039772454,2.412679961199724e-05,0.002398248213545651,-0.0013353417499062307,0.0035489281471788323,-0.0002605417428101692,0.00011177540673454472,0.040978271793472035,-0.010816163684337032,0.06306633345977965,0.0015052333015546815,4.8276690071071686e-05,0.004101511851830714,0.0018176160080924295,0.0014369157869028996,0.000524082300416284,0.0024671400038436785,0.00672094393556881,0.028747659461952554,0.18674811084968376,-0.11136122439175421,0.00012667717866413295,0.02753193650942195,-0.009076427865053213,0.05169738492792059,-0.00023139617967996817,0.00027186582456536205,0.022684145894456352,-0.035533004257564005,0.20509052610827527,0.01600150635875836,4.880308598248321e-05,0.005541456992234337,0.009274901514031632,0.053028197391897465,-0.1609814272378444,0.0002882632308949602,0.013212830195208868,0.00465327545979907,0.05492540000497982,-3.283105598799278e-05,3.51573202524336e-05,0.02859091638174743,0.007634457503639262,0.08283170714484411,-0.0021973558185712384,3.0793799581994746e-05,0.006529412866313202,-0.05717114037747663,0.16376634123949865,0.05974111741887076,0.0001124540146330485,0.020341676928905178,0.03657479208403259,0.2789164666328496,0.07873392953004837,3.0290056765372435e-05,0.0069169256369608495,-0.009756646093851037,0.025409893216541978,-0.0456097475700501,8.512852220850077e-05,0.005225358616046722,0.0016783435547468128,0.005334634917564034,-0.03587584980092892,0.00014385493244996192,0.002204720713618303,-0.06133663367948671,0.0620002620598985,0.06974227411188214,0.0005654601099191408,0.037150172791664944,-0.010503341116400769,0.03626110439153306,0.0027046361153567878,0.00012191929767871035,0.007259703119220072,0.0020561093037433672,0.006686742671618588,-0.03043934830095256,0.0019735619458996403,0.0046676651715659365,-0.036450430670154535,0.3815490524274116,0.0407842296013806,2.456600183391101e-05,0.016061245635303062,0.005505354206457441,0.019897305048858883,-0.004045246161820209,0.0009046118606494994,0.00626197388338343,-0.049035189351770404,0.451382402259713,0.14309772307155513,7.234172767051169e-05,0.01117300522489048,-0.03792846107416999,0.05893199211303454,0.1313696376746568,0.00015190059885364168,0.01313020410548495,-0.0529977556007611,0.07192286555843037,-0.00045130105366218936,0.0004229552398020668,0.007291986755921159,0.002844441008418843,0.008669154199195268,-0.02851845016900121,0.0025431416149283947,0.012393084109860113,-0.025850385555432072,0.0936135665770468,-0.0038805250196549445,8.859691579135589e-05,0.01991606061983902,-0.06563122118459616,0.08564644861363675,0.10198784653316839,0.0019049269129143996,0.019724599928068052,-0.018247116383354866,0.055361596013292554,-0.04430094616370989,0.00013058752074829625,0.003963001356229539,-0.014658326999066522,0.04010796155553005,0.01288522187227757,0.00014815427645253977,0.0038759087695594847,-0.019697992463417868,0.0839900106840717,-0.02227311443403018,5.724113749612733e-05,0.013958872319292208,-0.0021065044948947297,0.006881673366442311,-0.05202311396966964,0.0029012582793373847,0.0002608659577573716,0.04907490896045886,0.24092203366188317,0.033824865078490904,0.00010132661928201908,0.00012564753558596913,0.012483532787103792,0.06484698691339597,0.006712008870832943,0.00013960741608526732,0.0018738004954885292,-0.011693539116856836,0.06177368555008401,-0.03767779663122779,8.953465375501105e-05,0.00173330562089909,-0.010034645239556494,0.04949926118498052,-0.00784854604576547,5.095076408876742e-05,0.010399680161382492,-0.03272342571685951,0.06284645623650627,-0.0007976088182620823,0.0002538676498271705,0.0018219483848828182,-0.0035546551934906062,0.01337945026309212,-0.013732758375912946,6.606532661155125e-05,0.008107876251082067,0.03162870755376957,0.3075058512981473,0.004417838378472836,2.6537459665264643e-05,0.018092851995829058,-0.008789221581868826,0.027474830480180665,-0.00032696507796690715,0.00011182125354161663,0.00615356503891418,-0.019615840043832086,0.0878119570501454,-0.01771270045638725,0.00035211232424681865,0.0027287941396675532,-0.010476679881775808,0.06036377309323221,-0.003084729157986187,9.940748633785326e-05,0.0129280270896983,-0.01162897646570168 +2023-11-16,-0.007253822328191464,0.05452495943683164,-0.030452413458757866,0.00014068835339435773,0.0038432963609471163,0.06233389255285049,0.20058246523221385,0.08563823750395887,7.456616541918739e-05,0.0013386050401304282,-0.018569132595135204,0.06020314313063621,-0.02824642947025511,0.00014268215367395327,0.009585031255305722,-0.02081798279229102,0.02127287958437342,-0.005137417706465657,0.0003302784362965468,0.007859402660770134,0.028515272910595555,0.06014699307105508,-0.04749538944507483,0.00024806265305166045,0.021871925445873134,-0.008816777064913725,0.020082554313044884,0.008042384337587272,9.586004958295658e-05,0.006491718070473616,0.006965852954169466,0.0247569697298147,-0.02838407774858807,8.255942736558622e-05,0.00692807250811313,0.028303721042322778,0.24872747721728383,-0.011422854863696062,3.902279611022345e-05,0.007958502540438447,-0.0040482090573372735,0.003733197499380752,-0.0033307890299760444,0.000836231942161809,0.011403404919062932,-0.005609206484512157,0.014013377100084056,0.0015860099496014311,0.00013996534042722103,0.015123687144709784,0.002561802051351236,0.0017875431334441565,0.0015512143874420385,0.0007005084803083043,0.011280129498536658,-0.006569721777583946,0.08265089359850025,0.006259081560590857,2.368766289910442e-05,0.004212608847742314,0.006072259580431815,0.021328252888775094,-0.04535398052369488,8.457579428120232e-05,0.017352062725963093,0.0027612309257663012,0.014964102507452877,-0.04161046950265602,5.1941426483230326e-05,0.004159411724833179,-0.01763858236164184,0.013306759631988132,-0.02664040850663801,0.002585320190327537,0.00794526351188673,-0.025003239987134288,0.17692232200810432,0.04024038664891767,0.00011629626486191553,0.017315262777072467,0.029621968513283685,0.18087300395686057,-0.013893539152589287,0.00025359950203821533,0.011477972840696857,-0.004013867352028336,0.02405448244685046,-0.01065938383372365,4.700325725717618e-05,0.01572065581554921,-0.007034593668589172,0.03779419079955921,-0.007623850304998654,0.00030676144373241904,0.004089042628524923,-0.004598464133521522,0.051588954416157566,-0.014122127189571388,3.699016843555945e-05,0.013953314122326387,-0.012980849622284612,0.13796469359020597,0.04008809531491349,3.1435246277875656e-05,0.0048810251214369965,0.06983807457688251,0.20887384265098288,0.14630024808784173,0.00010770378274009072,0.009386150580084395,-0.03585233334015671,0.24301666961758323,-0.10451030921387289,3.407797161963965e-05,0.002800633529672974,0.004086642914567592,0.010788267354494072,0.0007130901840946948,8.398319120764286e-05,0.0033403657799626167,-0.002298620766436486,0.008074628710934572,-0.049165551140751454,0.0001301647413980982,0.0032602912787571227,-0.0026500428649689437,0.0023522674317919025,0.0004060790811596138,0.0006439346048375177,0.03206228855439256,-0.018507559429492844,0.06132302417258481,0.011409488244525354,0.0001270315500884365,0.01078712025015964,-0.007025195625351975,0.02429210384026189,0.0028600004841602363,0.0018561474283861886,0.03218348472259554,0.023878823210634538,0.21549946487422425,0.014559485364430748,2.849370472211556e-05,0.024894454804778726,0.00603384145157958,0.0206740155524374,-0.001693580626482015,0.0009542020062932074,0.019176313542693398,0.003433369026068923,0.030763491125290966,-0.012556694622281187,7.432082283362854e-05,0.001294560679015198,0.011245624766513324,0.014861337310418403,-0.02469163364283945,0.0001785957348409767,8.931207507248016e-05,0.03436139094170983,0.05520260799095263,0.024688133779788277,0.0003572852221098301,0.005473389012883339,-0.0361526877704954,0.14970356524819897,0.08203966477599975,0.0018717971782837718,0.012554813963905993,0.02556011697837492,0.09700202557138847,0.011705390435808505,8.454197793231697e-05,0.004442975593728509,0.03453566971462741,0.04438824846443087,0.015337726336642184,0.0019340917201007754,0.02500762473907662,0.02805754047998635,0.09699628448584544,-0.021737108351245774,0.00011460683946176697,0.004036523791922557,-0.014875375801666613,0.0379384834083078,-0.028876048008484406,0.00015894554374905204,0.0010591763603209783,-0.009223502154506355,0.038015927749475466,-0.015273783713995737,5.9216697740817276e-05,0.0013897870488517867,-0.0338833384339316,0.10809055296170393,-0.003835152207650262,0.0029710948257042997,0.006750490626391879,0.02477794249785367,0.1322713014012981,-0.04455195518347644,9.318375023722862e-05,0.010107738226469268,0.051906341815392824,0.24507067755104928,0.18740721130822607,0.00015359951884471814,0.01206607905258515,-0.027610449090518956,0.12573260861156846,0.018506020691168492,0.00010386620005533673,0.005076599823933007,0.0418420841284354,0.1953898998829945,0.10473526221005888,5.3821846447266504e-05,0.0048573066773578465,0.0652418193907678,0.10388812174245132,0.11566777457172149,0.00030618898511135267,0.0021875982762050686,-0.00914193753020445,0.03577746672014108,-0.02402408517541367,6.353938965215053e-05,0.0075423851303989395,-0.012744714036222682,0.13982478226842518,0.00693073172563141,2.3516746030697454e-05,0.0006717314507926587,-0.006619436574126978,0.021906201760178892,-0.012622143685973327,0.00010562407203857375,0.005241216373173073,-0.0031828863711061747,0.014702545091109057,-0.0055085584340319365,0.0003412373695503411,0.0006941764757634004,0.05630759141252943,0.31453184403273177,0.037920686079330496,0.00010253546975295596,0.010206356751471196,0.00503822068674644 +2023-11-17,-0.0072910580752048836,0.04516076561121157,-0.0048650322099229515,0.0001707323607790284,0.0008487776682556205,-0.007257244817490664,0.026377719467088088,-0.03834945796194206,6.601536903168083e-05,0.0031000977558712766,0.04093699974526902,0.12344688000066756,0.006516867805116154,0.00015340273289266598,0.03621992466945281,-0.006862166863859068,0.0075558711095435735,0.0007897101721915116,0.00030650995878033025,0.003212098654680781,0.029497854754277807,0.06559091975436693,0.014150156287367327,0.00023531222171562684,0.0025808133878683004,-0.02122594637263,0.04991596247169058,0.04920237006252885,9.284838476409601e-05,0.0059080211011934775,0.0015692279595593188,0.005482539507967493,-0.007088584655608364,8.398352957530548e-05,0.016664498972805798,0.03556729536413554,0.2902349428955958,0.02197868243802671,4.202422932656687e-05,0.016164026445065555,0.017432582699071875,0.017318642593281,0.046400928099018496,0.0007762340171541696,0.011246410704028447,-0.020550702976964135,0.03995163574328122,-0.05183877063109643,0.00017986804047557558,0.013535834499876567,0.02113063517710772,0.015875959980131284,-0.06351092028209135,0.0006505743173905588,0.004188109327684913,-0.01289370668092023,0.16730296271079284,-0.021809360621588194,2.296661254925412e-05,0.0027456694431996827,-0.0065008034589611845,0.017631200729313512,-0.027021014784176636,0.00010953078092089153,0.017729203754053034,-0.00621928786379608,0.03698191222221865,-0.004378888434664443,4.733834972095054e-05,0.0014298411687119704,0.0020708419482457336,0.0015701289043527414,-0.0029708710685758186,0.002572376999483814,0.011333784471077964,0.04333021297147883,0.2605041926942793,0.018240038200465592,0.00013687628643884532,0.012616554552134942,-0.061462233216821496,0.299604623271218,0.01862837564223785,0.0003176640417969374,0.02193619323716493,0.017636755659909742,0.09957889897729166,-0.034317789681169594,4.988986561964031e-05,0.007366782463874125,-0.015024450001441977,0.08103958108078937,0.006870942075485924,0.00030555416143750576,0.002972079325909914,0.0022272918596666,0.03006406050505539,-0.11648334393582267,3.0743954185875014e-05,0.022651149018220827,0.015512890528074882,0.15905815697564193,0.023239771801023306,3.2585057440724486e-05,0.004673207628821188,-0.029193421195845483,0.07601297592384677,0.009396638615239873,0.00012371433170358615,0.020238917040560356,0.06696086074808397,0.4855599355006011,0.22052409189979089,3.185448284132287e-05,0.012837259516413043,-0.026934713836080596,0.07669126408207524,0.07210658385265266,7.786528040878898e-05,0.0072019541764526416,-0.0019881200052415814,0.007046730813602972,-0.0025056610220481374,0.0001290040988284865,0.004636473280807149,-0.022486456834865463,0.02345857583276288,-0.007934406294274247,0.0005478919863096651,0.015486244046517387,-0.008074129706951165,0.029640006075309814,-0.004009940034681282,0.00011465775726430118,0.0023168539000288577,0.02545587129280097,0.09187035340317741,-0.00010472955642673201,0.0017784094366494374,0.0280699310155407,-0.002381243758855222,0.025125534021704716,-0.05048219052819049,2.4370854057173e-05,0.017162367175948115,-0.07320189381207144,0.18707683297678276,0.02546693591020968,0.0012793034689448188,0.024710963724061463,0.02474587692344472,0.20185506133269845,0.027341371523215554,8.163734052561231e-05,0.024167398206034092,-0.017817843280132896,0.030657316612133688,0.014727270212020074,0.00013717228778224069,0.011020128550059061,-0.010225713372650687,0.014558474213412081,-0.002956245874341942,0.0004031639276853315,0.004978575546638067,-0.0035115077150625618,0.012806090690088678,-0.09285368315346759,0.0021253350037875656,0.0036410465939100568,-0.026416612126240774,0.0879202864343306,0.045677141808359266,9.640030226086908e-05,0.008592748590474516,0.03308497407949733,0.042029800752196714,-0.007464039871635229,0.00195681901262064,0.012841485026449013,-0.006013481968943018,0.0193307558399999,-0.008295089352511853,0.0001232517840012687,0.021495368762078356,0.007845696401783205,0.019083790790713675,0.004293032005931997,0.00016665840757081654,0.0008227056359929215,0.03373921739777306,0.14864477655159555,0.03815067938935913,5.539866219023008e-05,0.0038479998126112708,0.03822389039400549,0.12828040683812234,-0.0230583365246845,0.0028241815819109108,0.0010521238784972373,0.015091909550941272,0.06945565034616721,0.0013234583458486117,0.00010808792565283536,0.008631311094639474,0.019653892283538553,0.09924177254355664,-0.049834799878011905,0.00014361997386238754,0.002222175942500413,-0.0026168284971918856,0.01472410689878655,-0.03573970594916222,8.406108620925151e-05,0.011562389165990767,-0.0021348101903829477,0.00864141994386894,0.0019419185788960244,6.208998446934935e-05,0.0045187436648483365,0.004466068888636375,0.008280072456523723,-0.03401000487784884,0.0002629787608283894,0.004946837701142157,0.003244363362934333,0.011875389505573151,-0.05341800020581267,6.793537878562593e-05,0.0006275079768633969,0.03691406776701186,0.39143591278375145,0.06042202998732935,2.4331143638355904e-05,0.0027666512361002858,-0.02677870934070505,0.10019046781955927,0.058162323219871345,9.34269565181229e-05,0.012243869670511047,0.0028985425810348713,0.010919951352108642,0.004878058291674779,0.0004183954491100437,0.010397479075117087,0.0037851808596418945,0.01934880786149651,-0.0009839263454779063,0.0001120480284700457,0.02709746012397711,0.002750694827883368 +2023-11-20,-0.003138882497898804,0.021737554951217514,-0.026526950963908315,0.00015270418852780622,0.009256493962688213,-0.021287033956541683,0.0705778868429696,0.0010823438612955058,7.236974267599561e-05,0.006411152156717728,-0.03418178586725142,0.1098123478130901,-0.07482030523119816,0.00014399279997067904,0.012235994674840033,-0.0195799021900393,0.01676712400328768,0.019178717642766907,0.0003941121266088934,0.0006600675875177379,0.0064458791725717285,0.015590899838146073,-0.026493016088755022,0.000216326015581282,0.002438458058040635,-0.008432215453060825,0.023926645135980192,-0.04666074420849212,7.69496459744011e-05,0.002232790963787484,-0.034959994276976145,0.1317406910921348,0.02841834574847767,7.786481762190566e-05,0.006028314153923485,0.018911618022542428,0.12925246632695236,-0.01778680693660119,5.017512499494626e-05,0.022627007076772357,-0.011163644728259635,0.00973283619973756,-0.037271635002426765,0.0008845275806118058,0.008536308457702462,0.033549196189418914,0.08367625896446546,0.0534619555263632,0.00014019797809151007,0.02148885782811385,-0.030071898673501466,0.020643266761346764,0.14608938447329453,0.0007120439207083322,0.002994487104354967,-0.006045855992950417,0.08725782395701888,-0.008690955262929609,2.064791527818714e-05,0.0043655851129127225,0.0013051400649401648,0.00424373642340218,-0.053457649296355804,9.136077130260254e-05,0.014297253942164304,-0.0026447360852604007,0.018667435007141138,-0.007199515137409949,3.988040051443059e-05,0.0002639141068871195,0.028919184846749137,0.023619448453107737,0.05457813402650926,0.0023880271923098755,0.013340055480259606,0.025866987513620845,0.1524270349899672,-0.003448303399748408,0.00013964839845337097,0.002980499470182643,0.02810432164303395,0.16844454319534993,0.016426390493204015,0.0002583594745480836,0.0015000803206471581,-0.051594999732499966,0.31418286019598196,0.023495091034344048,4.6257917955067564e-05,0.018173137247848883,0.039733645785987294,0.17061237411080776,-0.06961475955471914,0.00038382627123288374,0.007914446838463186,-0.047917309753956853,0.5897696649093215,0.06535898735767348,3.3716324721775226e-05,0.014287535471136972,0.0058355119503952935,0.05424607096458465,0.0004731341932477447,3.594118435047361e-05,0.0036674513238646434,0.0013668755647179111,0.0034828667567942217,-0.018599748916664504,0.00012641973497547275,0.01185447677231255,-0.00025018075467253824,0.00196664841594848,-0.0587563492878847,2.938458406351712e-05,0.011065885974906299,-0.01742110173391654,0.03929512091927545,-0.0011899394412380748,9.829113944661358e-05,0.0075399236459651395,0.01213049675157693,0.04485543160033387,-0.017832555395615967,0.0001236551309345669,0.006571787797413895,-0.018294241481850965,0.01339437271943725,0.006939030083349904,0.0007806701774685889,0.0007538088264964677,-0.02603137782862013,0.08763019015541137,-0.014434280505426675,0.0001250343701401592,0.012977156013322683,0.06872288728507998,0.2637855953240306,0.07731613923309594,0.0016721279104263101,0.0027884635331965803,0.024621224125219165,0.252684081083058,0.01609882192768688,2.5056127727091523e-05,0.006088179728329865,-0.033852612392430335,0.08851494197758165,0.0007833043354067669,0.001250393966452119,0.00037764760832526,0.009993808196617927,0.07630492491417626,-0.021354633902555667,8.721759039351462e-05,0.020677048421114043,0.011371434256575016,0.015430133032263071,0.00404606819771791,0.00017393659368280037,0.0019736452886075003,-0.020943522679686022,0.03266245087788731,0.01316166534623284,0.0003680483504456289,0.0008611370734674974,-0.039294542019733106,0.15022365743873775,0.05372152473756477,0.0020274224032799638,0.0014656794812392153,0.012361116407978445,0.047291667485299685,-0.0635434800828206,8.386165702455708e-05,0.0058128682970569855,-0.01799460106839728,0.025948286787192056,0.008058845011494132,0.0017238946647765913,0.00551316380448851,0.015683154744256432,0.04740176142024932,-0.037180754269462005,0.0001310855993345295,0.00732948930604472,-0.015172340866201409,0.040936657922477776,0.01042297360090075,0.00015024519210818637,0.005340801771594935,0.007998356057770554,0.029049940010191077,-0.006578197436172979,6.720002251915168e-05,0.004873726522155616,-0.015201771198763791,0.0519225607457625,-0.07206287804105314,0.002774956289180532,0.015577867421479376,0.009109428341960362,0.046956011252621485,-0.00043488972306808684,9.650292934752026e-05,0.002448588105879248,-0.01916927423253124,0.08741198910215363,0.043265275900075964,0.00015903600286619674,0.026407502138340713,0.01206529034976049,0.06918810135378065,0.01572398351968365,8.248121759260107e-05,0.013771774014205927,0.0019612683393641383,0.008111876926300493,0.00010763773295379187,6.076633724660423e-05,0.0037932336967743206,-0.04069432227989256,0.0660989049932769,-0.039135106569618425,0.00030017115015883454,0.0015109327080332661,0.011933011673013551,0.04954588685744232,0.01856621245477701,5.9890347746527304e-05,0.0048330683060323985,-0.023722443712911084,0.2445221468152182,0.014185542979413584,2.5030672053709245e-05,0.011289044771423866,-0.010993837378425375,0.03153165953436173,-0.03201994584136754,0.00012187410643333462,0.00425889322484998,0.007528910572086965,0.026295104246956278,0.010196984387025135,0.00045132065800453325,0.009219964802841273,-0.011541425672450166,0.05591083417867939,-0.12093729031430975,0.00011823206724275076,0.013235691127247992,-0.0033674327872260787 +2023-11-21,-0.012762162931386949,0.07174092617048343,-0.0003990741347597471,0.0001881238636768244,0.02395055775404519,0.03325043930474226,0.12167251520036844,-0.012799970804275388,6.557154676209294e-05,0.010984637847328177,0.02065583652711311,0.07508171297092775,0.011998138666286356,0.0001272640734595268,0.017620097918383138,0.013623072727769955,0.013695284810857977,0.046766039670616925,0.0003357158632777028,0.00010212944211608795,0.009751333876650347,0.01997298755077583,-0.043183675584328264,0.0002554575646040656,0.0035541878077819233,0.012139821090894775,0.028283220536528816,0.026935727528217,9.371954388995345e-05,0.006057075425602821,0.0023718446187500413,0.008656088850915582,-0.0307792713090253,8.039969185673255e-05,0.018070386805094863,0.013077495792934568,0.132604499636742,-0.08066909912004704,3.381932555151772e-05,0.004754531133562406,0.020026593296985654,0.01778022996043071,0.04874716599373595,0.0008685893322930459,0.0028599956991431407,0.0012980765492762467,0.0025839822939710895,-0.01811289071278196,0.0001756599104741052,0.012099124942944657,-0.010234182352492766,0.007689391655141647,0.024470811059246995,0.0006505572590508838,0.012215042445287618,-0.0008838518763059993,0.012728582163669596,-0.014620346726173331,2.0692942326882165e-05,0.002130719587089905,0.051775980848218744,0.14327927790148243,0.05373140728230913,0.00010734850207245313,0.0050996083435593765,-0.014883353120327946,0.07708991466201681,0.006507942076737901,5.434568151122242e-05,0.009150587657266781,0.021669804369286193,0.018533139565773533,0.029982888519836378,0.0022804941732089993,0.020663398278153774,0.017709009891198224,0.14113490650052046,8.546302320912396e-05,0.0001032552038448153,0.008857814039919186,0.04475638832838461,0.2842305989316941,0.03180574921948566,0.00024383297362125402,0.0038603203388511732,-0.01850998572865769,0.09947283586583867,0.0008679101948617392,5.241583884706561e-05,0.012916027787724575,0.03972186826252612,0.22314869350678057,0.024924373733115707,0.00029337434009025197,0.030715292130606354,-0.03596599710063372,0.3977272039093981,-0.055716289697947945,3.752641172325796e-05,0.002613389730405131,0.013188745001761535,0.15100614308167326,-0.07513924926312592,2.918035461353274e-05,0.002207091856695761,-0.0014550188494831871,0.004681882724713927,-0.013422207043952555,0.00010010847472181986,0.0013752096244294026,-0.01600554686803465,0.10155110759768518,-0.015036678645567271,3.6406441294425674e-05,0.003660451077186565,-0.016599253771393655,0.04658099487726712,-0.0574250977472276,7.90054747029509e-05,0.0028674540103718373,0.007885649352897282,0.02929396207837673,-0.14737449934060434,0.0001230857970224738,0.0016744598498648039,0.0026767992585888358,0.002494917945179865,-0.10180818610101047,0.0006132465278369388,0.02514683557376527,0.01570428597001261,0.057627532557080065,0.011549942771443751,0.0001147028422025321,0.0038174845214152594,0.014752473254263113,0.05899225688013983,-0.053396948852157594,0.0016050516013776026,0.015186578755169348,-0.02013599863148441,0.1923383555113224,0.015354724782895957,2.6920893490084453e-05,0.01070746769262406,-0.037770979031003196,0.10726934158538945,0.009940976468582122,0.0011512082593647683,0.025972886174715343,0.012793564403010396,0.10131133281920836,-0.010998778198008942,8.409286988112872e-05,0.012039839890770503,-0.029104654073405532,0.04094263422419705,0.05751173227750313,0.00016777685398799953,0.01010925968772345,-0.007963776099107667,0.011718836323117501,0.0015299175563416821,0.0003900663322050556,0.01713726330311408,-0.0011803185422380393,0.004146287821616665,0.0001146061240366502,0.002206429852628834,0.01029119147939927,-0.020411076922977476,0.07366457833601099,0.032692448208522365,8.88991446917828e-05,0.010484495505857254,-0.009594549373254175,0.012600267312779271,-0.0021641014174021266,0.001892875347817734,0.007220165215217533,0.02071830255646115,0.07559480538383015,0.008976961400905122,0.00010858710485481974,0.009113438558897787,-0.004324576343121753,0.011834410680921448,-0.024785379097559984,0.0001481348725385018,0.004195353763151994,0.014610219201547094,0.05365288515416125,-0.004238051311143604,6.646263814061815e-05,0.018131120895888253,-0.024247054981501696,0.07592143981477832,-0.03209528404178397,0.003027001383912997,0.003989507560606757,0.011917611312464141,0.05804152308876442,-0.03973830148561277,0.00010213885554222378,0.010243470798299797,-0.021686489867636292,0.11858526075913495,0.04468126800906,0.00013262314887187303,0.008976177628036371,-0.0018939940264966638,0.010369089034291751,0.0018746089621250468,8.639462026686763e-05,0.012882340826302834,-0.02390146548448927,0.09107838064933142,0.02482636984529166,6.595635159542454e-05,0.004462319231113061,0.001234782388576247,0.0025814538783201324,0.0018580676482429814,0.00023321444715891025,0.01408282116847494,0.008671670915977436,0.03576644375579897,0.008210347013107968,6.028946134016889e-05,0.004276374149351706,0.00011324362882759353,0.0011524936022343849,-0.004259232322124895,2.5351668064967833e-05,0.004412090060470959,0.024975050398781694,0.08051173968469075,0.002739114666992986,0.00010843166509527442,0.004255958338350862,-0.021590551716916477,0.09274968551321193,-0.01637889874282312,0.0003669266581254172,0.0077710420598579525,0.001416415994736433,0.007832262019306093,2.1645795835306737e-05,0.00010357988165299263,0.030431555076208087,0.0009690929504203886 +2023-11-22,-0.009971560886662711,0.06829889846161606,-0.017004280504057577,0.0001543959947665226,0.011042897585210149,-0.027265976670986205,0.08806733580266472,-0.00629813864223588,7.428766827598769e-05,0.010014456518488764,0.0007978222661146862,0.002796504043534258,-0.09414542220667654,0.0001319738558542813,0.0020040069806600727,0.00870651506653764,0.00816196983187566,-0.10353298346503682,0.0003600122072303201,0.001365344278411357,0.021957935700953588,0.04553483912731473,-0.0015402528239071528,0.00025231639717670666,0.01436820244155104,0.018229028781846807,0.0537231458918307,0.06918037454382588,7.40881643403512e-05,0.0017645197773575986,-0.02603434121015859,0.07918745951661965,0.00018857087455682767,9.64672809310943e-05,0.00685388855188304,0.014860006303109456,0.14044264693412323,-0.08167951152631088,3.6284287720402876e-05,0.018392942249667074,0.006290169434399261,0.004915521754790697,0.00045587394857068845,0.0009868190121087874,2.909959175653818e-05,-0.004694939230064017,0.011572501515037973,-0.06776552713339247,0.00014186152211485283,0.005025995038862717,-0.0029995312411635927,0.0021509117503277658,-0.0015814910598762608,0.0006816401381156686,0.004070494609839268,-0.008694989343080264,0.15669989760984404,0.011314620821161825,1.653572080051819e-05,0.0023020513721353376,-0.01582964363782934,0.03899319472711904,-0.0008864356155638054,0.00012059612612146814,0.0035486938500730336,0.0041463101024647765,0.020499463898195097,-0.020061256432844527,5.693523199829708e-05,0.005332428650640439,0.007898722497857797,0.007663388291349197,-0.02656741622311723,0.0020102913210371933,0.01485553477637578,-0.004073644788969635,0.023597580211827025,-0.07513785534663563,0.00014205868616286508,0.005999267909752577,-0.026749421031061406,0.15203161796519427,-0.0022538915843218713,0.0002724511849091688,0.01737871662734632,-0.006267714272824481,0.0414712166143407,-0.14533611627989965,4.257193298474738e-05,0.01731144874274817,0.060360006056649436,0.3018085858700165,0.10095970160380073,0.0003296131211748627,0.01263547472211575,-0.0006994444544521079,0.01043339115810534,-0.0028287288292403435,2.7820054257988993e-05,0.02241639185492622,0.0053555633211579265,0.051283612669099025,-0.04218400680919702,3.4890585400753324e-05,0.004471463885547391,0.007860427901441132,0.020276865592909147,-0.004898203264254713,0.00012487287821471974,0.015191061713776741,0.04823462815990594,0.43267875502403297,0.08516130734813439,2.5750504351059443e-05,0.007654314948642353,0.002320691814038953,0.0065232866220304945,-0.19612878163368883,7.887300574821472e-05,0.005559838278099203,-0.00021328264727688378,0.0008390675749011685,-0.08804458658020282,0.00011622704057601504,0.002919550364103908,-0.03294758301811847,0.03203208048096437,-0.02598332940768751,0.000587914234459917,0.013745171504180276,-0.020107565752701777,0.07998478482971022,-0.005207564693584422,0.00010581278026969781,0.007705486500160109,-0.024404383385835223,0.08240300191988885,-0.03500272997233083,0.001900833076233069,0.01655313829483991,-0.04932424017333739,0.46565247888748607,0.06305892389376512,2.7238342709681386e-05,0.01156426034671621,-0.0057884630177955955,0.0172232168158692,-0.039405520302942275,0.001098804081538274,0.0003807595287024322,-0.02280856371261162,0.18144199684614137,0.018045442305288897,8.371162344370806e-05,0.02665986369406958,0.02765689498297922,0.04701083258260978,0.03850750185458252,0.00013885159218886693,0.014176642324946635,-0.003990583689798313,0.005246861550019081,-0.013598178984564275,0.00043655677496021086,0.0050086705902024995,0.009773884055664187,0.03930551039874094,-0.0033176703837593143,0.001927365513474378,0.008923127210190535,0.0017127954184483478,0.005950253931405756,-0.002593898091843151,9.235498945252068e-05,0.00021584897672383488,-0.03646560267722915,0.0615123390048709,-0.020280045737089972,0.0014736635649424295,0.01631544313135267,0.021220678525763283,0.08364913796110003,0.009788837091895344,0.00010051105534448002,0.0194822600981402,0.014734190557232267,0.03766887297800817,0.01298549434037212,0.00015856379508370901,0.01651402238587155,0.0030049002969344788,0.012526359991654254,-0.006654688704506693,5.85489489306614e-05,9.578339011171019e-06,0.02495235908265493,0.09156860022764557,-0.08216410420913933,0.0025827543055797274,0.004301749950295501,-0.030538357361487578,0.15557192242854834,0.05835549167967039,9.764612766801641e-05,0.0059018338946073305,0.008070448991503576,0.0516419661183989,-0.04310560704252922,0.0001133328246201829,0.01324618430964641,-0.02838801857572045,0.16273892389596256,0.014501026967592819,8.25072932030659e-05,0.005497109202831864,0.009860321643794655,0.04146189619386904,0.0020442957457332514,5.977083414667795e-05,0.004708424248585904,0.009732884405461755,0.016947493203789524,0.005003793761429451,0.000280004809507774,0.007345925528181996,-0.01822561555350742,0.08471590796140793,0.005632725999698217,5.34972688803422e-05,0.0020952020649590776,0.01613351457254808,0.1800862120898093,-0.014897944776079731,2.3114250088010118e-05,0.00015044831383997996,0.005723154661666029,0.016424589798543464,0.010423892558141778,0.0001218007366700433,0.009046365829600621,-0.019440330936584933,0.080220692099188,-0.008942689708250174,0.0003819840421764437,0.00962825136757824,0.08165602564060566,0.37478372443329055,0.10686857143119667,0.00012478986400194073,0.04386953225967602,-0.0006933891502068391 +2023-11-23,-0.0006284346368873331,0.00474395916531918,-0.06216470174164719,0.00014008955492082344,0.006704974911500686,-0.012851657159005353,0.04111812422380075,0.012115014852574284,7.499570010977565e-05,0.019701904214539472,0.006626284163613916,0.02337106235797801,0.005137064380884283,0.00013115619436770905,0.0011704338705029516,0.002902229575649988,0.0035231779199799136,0.0015085667827925032,0.000278012961673695,0.010136883497570328,0.02150365883174322,0.045812974840166366,-0.0064008809380680775,0.0002455961983893744,0.012905516676810103,-0.010946005932715806,0.030034274030900938,0.009203888957439916,7.957658178749636e-05,0.0009803006088819211,-0.05971077165479951,0.2216445700025718,0.07206965697708902,7.904700920607264e-05,0.002167531417327449,-0.0016943054636887939,0.014376270738542682,0.0014717410232505286,4.041513956379383e-05,0.0020479034012554327,-0.0008992641108346554,0.0008186508027607781,-0.001539442763728227,0.0008470974139164851,0.0041810699897092685,0.001954580734193577,0.004771731977602117,-0.004746308529642271,0.00014323180279408494,0.013163779437565647,-0.01121232296995771,0.007262266187318326,0.021024865839520374,0.0007546538535507628,0.007792549295706245,0.006699814463021071,0.09458092701905733,0.009845855042182649,2.1109696971180853e-05,0.0014619849922395108,0.011938377821277409,0.036727548230136776,-0.005080475528346659,9.656159244267416e-05,0.00522517806860234,-0.00012009715934250748,0.0006331821443065487,-0.04572805936600462,5.339073433823932e-05,0.005356529940347362,0.031913640333304676,0.023988085672490254,0.05160721565943904,0.0025947990339636787,0.008031455034373327,-0.024004910058117033,0.17239949123675075,0.004896191371703242,0.00011458195053682611,0.031086788076808987,-0.027645617747771793,0.15706798992946758,-0.011696683680128892,0.00027255041321964284,0.019162710719599747,0.006706984611757599,0.042584247534496696,0.000517513707953216,4.436487766073029e-05,0.01197844033105575,0.0017751910356080323,0.008850628760034255,-0.00554843878574008,0.00033056569271048777,0.018610318164086977,0.0028842423783160265,0.03713920021692222,-0.013397894977628647,3.222770932070035e-05,0.014543406893703117,-0.00035354575696666055,0.00321997125197021,0.003415740049525984,3.668388676808362e-05,0.0006900428833767709,0.10567853506177909,0.31541471884203204,0.19926215358460653,0.00010792637350697957,0.010003023663809299,-0.005831573324201246,0.04608387860042174,-0.0052044882617534455,2.9230018677958807e-05,0.008254358900306711,-0.012149965938266928,0.03635415920873293,-0.0015620482020255897,7.409660981269954e-05,0.012490537770205534,0.024402400899249603,0.0987164807038638,0.17014342661044368,0.00011302941743451445,0.001356216416772226,0.03885556801376395,0.04108647149978469,0.005991984399309125,0.0005405426641368756,0.006928775151915006,-0.029828984637373167,0.11344168357134211,0.02425757351725295,0.00011067558248562533,0.013095680897001012,-0.04680652370162403,0.18746542574516792,0.06448169929152484,0.0016025233995450282,0.020231271310816243,-0.015598007641223651,0.14979017978181922,0.00031334532286476983,2.6777373851437175e-05,0.022573428784844134,0.01227864633256174,0.03717925427257346,0.0021201387478790292,0.0010797447113559025,0.008435734678856515,-0.003141108499641095,0.019881747659738918,-0.030884961219984592,0.00010520927401704067,0.007734903283828742,-0.011437757441100923,0.01566940326221205,-0.0366996235179524,0.00017227958265431706,0.00267363910905824,-0.011955338550636843,0.016061746419454404,-0.02559450079378919,0.0004272411031100308,0.016712011949162466,-0.018857438703813418,0.07243055596195526,0.008912452440139712,0.0020179538373527885,0.004929935640859311,-0.00874029850247434,0.03184632691941008,-0.01288952895151451,8.805566200364771e-05,0.004519627294291725,0.03552629598914432,0.059671735911698366,-0.006641387381437694,0.0014799888705567571,0.0024799813329674327,0.031490350665654525,0.11729251417033769,0.04711783230466163,0.00010637099895367046,0.001786145711703157,0.018427123060524585,0.047863474010414395,0.009463903956240255,0.00015606793893442305,0.010715275088808004,0.0028331453989436177,0.010009516562434224,-0.1068250664212074,6.9082760903576e-05,0.00417189794743815,0.0032987749378034156,0.010616370720544381,-0.037183709904488535,0.0029450635373812575,0.009659137477531532,0.0022204430309249296,0.012153268029121122,-0.023422894826498758,9.088393655711665e-05,0.0033564429139877543,0.02019967295125109,0.10855818176360536,-0.014973875534258224,0.00013494057661115195,0.00019510888268415216,-0.026812571035737552,0.1628273820741892,-0.04468419051473817,7.788605706150013e-05,0.0010425203789132787,-0.019344809941840707,0.09374973313231445,0.01475493250199449,5.1861111685832976e-05,0.0019108549012029224,-0.036564306963028134,0.07169029436712494,0.008729434200245162,0.0002486717076399916,0.03514804759250387,-0.00751825964774834,0.03545188275049438,-0.04479842526298079,5.2734203628549725e-05,0.008969319606868389,0.017744750470618957,0.19337823782405125,-0.09968852787919011,2.3675196033971275e-05,0.00425027515565611,-0.005807223231017064,0.018943977488821657,-0.026052937027709527,0.00010715348893570773,0.014830191586035636,-0.006664660448659702,0.03165083839108944,-0.02957597377895861,0.0003319103385976625,0.0021242664238801,-0.008744768480049717,0.0346248768897381,0.002322632143867495,0.0001446544751817812,0.01568056986512216,-0.00037642181631041357 +2023-11-24,0.010541474774329963,0.06416198313349843,-0.01610646432844952,0.00017374414530434265,0.008275701962700091,0.036030092749872476,0.13915392890650258,0.0034456920524622197,6.21270073004472e-05,0.001966506092126245,-0.02217383500133756,0.07531884033963704,-0.050587281174513256,0.00013618660433559407,0.010118237712704184,-0.005075099494249186,0.00616626404688809,-0.005409583309378336,0.0002777731726579135,0.0018569594897192444,-0.0072217886807185005,0.017700415240055316,-0.03681667942756291,0.00021348093379218688,0.0012119607357440778,-0.024725406095055573,0.07958606124214405,0.07037009583756137,6.783489565964873e-05,0.0015113375398529574,0.02160924727070479,0.09100050129535238,0.011040480817041154,6.967640093814635e-05,0.01757962255508828,-0.028610961128081248,0.2671037200259023,0.041768710568635424,3.673255395565112e-05,0.002703609797714045,0.021460732446677698,0.018131834874576834,0.05337722967012425,0.0009127410256053814,0.004569952162444642,0.004084281635932543,0.009584219726826947,0.00012182610670619638,0.00014901184991584517,0.00936658903842184,-0.029602845681200297,0.020687430860472485,0.058646028020676894,0.0006994412794099677,0.00011362906556328795,-0.01948018181739078,0.31362609104929823,0.03614681047847101,1.850988030151333e-05,0.004893841789615102,0.0544459740944218,0.1454990872592061,-0.001149871581088443,0.00011116204843403264,0.007604056541060007,0.009516833018851298,0.041496667390570306,-0.1166768960414531,6.455665923463494e-05,0.0035327571613034373,0.032898865744037456,0.03223534654972143,0.049453444903157444,0.0019905429558523856,0.026222888252973718,-0.06841581067771356,0.38208089473672924,0.15639804976563557,0.0001473510595476789,0.005699723613977943,0.058686363141236556,0.294162691840823,0.05307024123416918,0.0003089284016986633,0.013679099253093371,-0.05312389685167668,0.3301910979108423,0.031127313432634914,4.531954285752871e-05,0.02511760288742444,-0.0023639472053019945,0.012030752460733717,-0.06148904278610723,0.00032384096838876516,0.0009724407361904404,-0.003407226502065682,0.04693649437254533,-0.0010148844915323723,3.0124551294036157e-05,0.001711706671863033,0.0006702149107447015,0.007571400599073789,0.001582243694153518,2.957464700014407e-05,0.005586784507542618,0.006831770996781947,0.019633097662938265,-0.026641029719208252,0.0001120900928972107,0.011606958060384144,-0.018283975709695283,0.11826364979686417,-0.051317013535738636,3.571179943883825e-05,0.017214207372259482,-0.016421354628173266,0.04858062521792313,0.01735759262260686,7.494165203655798e-05,0.006825743723758966,0.0002756372635007945,0.0013079060519230292,-0.02630621221773729,9.63629253984036e-05,0.003568348804795298,-0.02853338290092393,0.028120418664311038,0.01534066585769746,0.00057997202188213,0.012649766916445159,-0.010658685439177373,0.040370493501257126,4.983291835758555e-05,0.00011112853679168272,0.0038540658894229258,-0.0033219724146606082,0.010653101010014565,0.0012009990785629265,0.0020014242224324474,0.004853803175234461,-0.03856008707657873,0.358814340648317,0.029551479000704456,2.7634423517355876e-05,0.0008757242196596035,0.014799642258629548,0.04585937265369402,0.005744728896941814,0.001055101834201084,0.003807241783694554,0.01695199310176205,0.14574417095589687,-0.000993564967119832,7.745602688921122e-05,0.0034865058057343057,-0.0061023572519113885,0.009477380724260505,0.0028127770106480226,0.00015196888881202506,0.02062534325190971,-0.00740149911742035,0.01086981932026771,-0.02410464097540254,0.0003908420479550102,0.013136152060304681,-0.02236580555357138,0.08972483110045808,0.023663208153965228,0.0019320672392668116,0.014763156459940608,-0.019959218538048763,0.0774847652316464,0.025326344527324733,8.264518996700577e-05,0.010267093422209186,0.08873561466485122,0.11208096654492482,0.11934174987125142,0.001968082439426771,0.06001892788425896,-0.03350788615305452,0.11326248000971201,-0.10152473473883883,0.00011721332909278597,0.01819995185663185,-0.0065872456020726715,0.017054354000315224,-0.009036040393055752,0.0001565773573043002,0.005907210406536799,-0.06199661586184091,0.28788831849280777,0.15842765297842132,5.256030367578488e-05,0.006287638997491249,0.041546913012433746,0.11671811364483467,0.021533591351233932,0.003373793977275624,0.0031889874855517016,0.04647246795925004,0.21801175206000276,-0.05913448197500743,0.00010603674852773011,0.001264936402540533,0.01236386464379095,0.06720824465405797,0.002389341612563007,0.0001334112562415454,0.01752782552405549,-0.01704877558191621,0.09186138727797442,-0.1533936426486205,8.778269158278658e-05,0.004494742313696354,0.06455260602334621,0.2790841082100501,0.04642373500331817,5.8133445956044974e-05,0.011012195742792861,-0.06047596005660916,0.11780646100650506,0.032746298896938655,0.0002502897450576616,0.010534864347197682,0.004190069037630822,0.017623386108086933,-0.010118812796411704,5.912160265967515e-05,2.6264664960199552e-05,0.043394297584890766,0.4825703670511547,0.08461038966631623,2.3200818066548562e-05,0.008494058395389623,0.0012843162353490861,0.004580420901178821,-0.01466496271169961,9.80111645428182e-05,0.002821958119410311,-0.00036386245220787245,0.0016707402759279723,-0.008903377166521146,0.0003432861411866894,0.004284927394044365,0.01739713558999745,0.08400772685677704,-0.07568503453491361,0.00011861245936892495,0.0051130398484792025,-0.0007941327135032241 +2023-11-27,-0.006761042785679406,0.043679750739370735,-0.0034546120720376355,0.00016368923416205315,0.019451522528913832,0.0012724744843333792,0.004212089022396131,-0.02206209404103653,7.248732408405895e-05,0.023165689115092744,-0.010957002331665099,0.030529019015506333,-0.07355397928326834,0.00016602600169148137,0.0047887016979491544,-0.03569758805946934,0.03577823347159935,0.13016036535175735,0.0003367346721524528,0.0011991238578116302,0.023488600782076232,0.060505285768469357,-0.07235027114698392,0.00020312416939172233,0.00632344032802295,0.013436935798334193,0.035626017895897116,-0.009135776730325786,8.23530522786158e-05,0.0010934500028595806,0.004369745977971583,0.015022983398734075,0.00037973355658173046,8.534731426950825e-05,0.006155807959952214,-0.033744435700204224,0.2694536393444045,-0.0349078371383929,4.294540776530096e-05,0.011253039202758476,0.032560248321199685,0.03205541078014291,0.09076542396553353,0.0007833054502996067,0.004333850603811585,-0.005258327998485982,0.012654816036252866,0.0005007216619730146,0.00014529602156665783,0.010044149916921251,0.015554011957679864,0.012205675220690075,0.004927302157408715,0.000622880847186471,0.01333100204428704,-0.013565412254066432,0.18930252858180546,-0.005794934978980572,2.135498992849467e-05,0.0007628883902459417,-0.03322860091342897,0.08362587358447217,0.007623017473431421,0.00011803815863993077,0.028937071110799302,-0.0010092423050760072,0.005761467990411108,0.0006140638543401792,4.930876347611493e-05,0.001624751364588172,0.036916246142021596,0.03177330435260249,0.030194885770129003,0.002266095053274516,0.004380419678691702,-0.06831891648169888,0.39465584856197256,0.11325925563062615,0.00014245396265381852,0.009012038970691815,0.014251731087254511,0.08419447440407724,0.00164658539500835,0.00026211523296518295,0.0059017293559292154,0.014435393634723213,0.0762108952060975,0.007097948333728134,5.335468054468784e-05,0.011613958711477728,0.003519390008028025,0.019057881508373037,-0.01893429708210692,0.0003043543979464897,0.020164573610155397,-0.042056268068329135,0.6291065390223498,0.029414629847953122,2.7741935915672064e-05,0.008887471665259187,0.006213053995574223,0.07697417132901756,-0.019707836257987464,2.6967570008132967e-05,0.007563749982066187,-0.006918448735851771,0.017865828907304954,4.223764043033915e-05,0.0001247407389505843,0.03734485512705487,-0.0074332168399114445,0.053615080402057105,-0.004433444149828131,3.2024489587735604e-05,0.009054979391130747,-0.01942346690197643,0.05365564350993784,0.025074628757841035,8.025807230045431e-05,5.093949291452198e-05,0.005989647646034826,0.02283467269601245,-0.005437305690093552,0.00011993752413400184,0.00500176840071424,-0.02854730684170913,0.02805523791545205,0.015887508454968943,0.0005816031479524375,0.010767957955962745,-0.009908453043651285,0.03527326554409022,-0.2474146587180085,0.00011823503841964722,0.011399071207965147,0.0121306862507253,0.03790988466442912,-0.07000639609410263,0.0020537713055655184,0.008661454100637535,-0.003772551522167723,0.03271815851770908,-0.00420710668662545,2.965026114534284e-05,0.006872140460102141,-0.02442411897084656,0.07581226028191113,-0.014566027246202987,0.0010532967194655776,0.013418547436031578,0.012295390237634662,0.08961609203137814,0.0059243180148693154,9.136544189982839e-05,0.009838227902555705,0.013441201783389757,0.023410324117309284,-0.029213623005897367,0.0001355114713010386,0.012295035237812751,0.00019959642032299323,0.00026600770470484587,-0.06855965587141626,0.0004306876773860817,0.003987757841218305,0.030746236434789055,0.12095005922716061,-0.0018204106524369102,0.0019703175165314527,0.006856027132469172,-0.00405692135460809,0.01342358318010618,0.0007682731556462827,9.696578125061027e-05,0.014552979513080698,-0.010323970547257597,0.013665153200899347,-0.016596898177589962,0.0018780599170168024,0.014591592181212882,-0.02788859370242301,0.092516547347434,0.020043286765700167,0.0001194326957364165,0.0026952997028048013,-0.009939376401613947,0.02897567934425247,-0.08845133286197926,0.00013905476859902698,0.006966762775769003,-0.019178825007334376,0.08123039063872664,0.013359430590854031,5.762585469515287e-05,0.017402697838805496,-0.03248856442212832,0.09630924058918469,0.03768313595516181,0.003197279632171013,0.0013116352842427533,-0.012351649764479397,0.060362006854207825,0.023652274322470246,0.00010178923934736537,0.004165255174071961,-0.050773927623975874,0.24157354177153847,0.18757972533960754,0.00015242358687605643,0.008470136107935372,-0.0022906577370683853,0.01380773591693527,-0.006850493840475348,7.84668881406246e-05,0.013468306444852187,0.0035710357719257804,0.017468575510996388,-0.016628588590357634,5.137881742790511e-05,0.009258584430178145,-0.008807757027862512,0.016721438031523508,-0.040057648530618384,0.0002568154196414177,0.004604144242841445,-0.031623296784911464,0.10798438436939345,0.02130197248919469,7.282165807337865e-05,0.01727173291835422,-0.020131134759543725,0.2054712803470557,0.027779551674394994,2.5278332052609446e-05,0.014269538219644086,-0.014908910273938526,0.03996817191752254,0.019411913952579272,0.00013038888778946824,0.00876793088423699,-0.015347548808483361,0.061463149049884695,-0.08178091623455333,0.00039359736893189575,0.011964752494950673,-0.02141985535921416,0.10129465934396249,-0.010794796368422998,0.00012111607315568802,0.03945257552711707,-0.007966697403235226 +2023-11-28,-0.009198656635601156,0.058859760515202905,-0.13271204764603434,0.00016526941930179932,0.014367241278461937,-0.044955333252261,0.15322952823760252,0.06976758018972216,7.039621086789333e-05,0.00396115474535239,-0.0007576313327541014,0.0020774100926497646,-0.11041943987834167,0.00016870691907840078,0.0018718709709067993,-0.007831964305111924,0.006827717426374325,-0.00037520456809149515,0.00038713551710767123,0.009619905087156978,-0.008252488263262308,0.01846680176924818,0.007514830239147152,0.0002338250308643385,0.006553960780032428,0.0011389066988056597,0.0031556070457129247,-0.002377061871364249,7.880467279506673e-05,0.0016180499943413437,0.018761495100147723,0.06336064597783861,-0.0017364843909652235,8.688357911948128e-05,0.008267960482454536,0.031204115192163304,0.2754770093376951,0.0256003341938503,3.8844105719614984e-05,0.004260666960433292,-0.003927984895820457,0.0038074443901011815,0.0016027671116058304,0.0007955748156250323,0.0042259652943093876,0.03351278092063466,0.08704254751576512,0.057333946017109075,0.00013462966360130448,0.00955381896278545,-0.018813819216301653,0.016621059776946542,0.033979609549178745,0.0005532769956820592,8.922159715953754e-05,0.00846921913595347,0.10755004885851933,-0.12733839311368259,2.346689053622641e-05,4.835675988217221e-05,0.0572324756852986,0.1707265599576125,0.05893000282361746,9.958466819198754e-05,0.004590900891319754,-0.008608593370777774,0.05184877618916185,0.00021674457693964916,4.673642647432568e-05,0.0038487600221761248,-0.014839594000982932,0.0112713504648211,0.0002685796444409795,0.002567846375870926,0.015089058554613496,-0.06481214053928538,0.4198442600799062,0.08357695103281387,0.00012703408176564576,0.027165380879999784,-0.05459753225024153,0.2926950480550479,0.04621197648266506,0.00028884567596701894,0.022464357637889128,0.015645501688826325,0.08622996017353712,-0.008774195036884999,5.110839754424658e-05,0.007792313995237791,-0.02038180608314199,0.08575130594326291,0.020881713369477386,0.00039173171142394946,0.0036600158015799742,0.039151562033334836,0.47284456304351746,0.01914959670134813,3.43606147608812e-05,0.008214926622049675,-1.6681883474447484e-05,0.00018096460957812358,-0.005242146782413154,3.079875365849114e-05,0.00577141411693733,0.009866596877873597,0.030378190360657243,0.0005040891205386909,0.00010462325826602467,0.022946042457725135,0.14283165574033427,0.8853014856275894,0.47725322082504296,3.726710472089779e-05,0.007183585906631002,-0.014180353212135868,0.04375438825432043,-0.019900163715661584,7.185265409394722e-05,0.009734554964480613,0.008327804847463368,0.03231868883351258,-0.04662017604569984,0.0001178217317870214,0.0069428722863810735,-0.04521474673070094,0.044989673806330926,0.03534391534968657,0.0005744375477071489,0.01528891555545915,0.004747831421753078,0.017087630079443604,-0.12808985188153224,0.00011694979523778541,0.01308681393920401,-0.03592049853203205,0.11283442876015419,-0.0820382161990586,0.002043242416131932,0.010979809206628399,-0.011134282575321541,0.09853640578890571,0.001062001306369064,2.9056795534382657e-05,0.004307498357149419,0.006741943060998377,0.020294156996951168,0.002673474360842793,0.001086138815362258,0.04821391081360674,0.027745133714788272,0.23246258279516474,-0.006990179994708251,7.948028334218827e-05,0.0066648397932313275,0.04676262433322109,0.0739287127233249,0.10455824144932792,0.00014929013750364782,0.008781401991978056,-0.00707703195359325,0.010125030989958326,-0.014521405768017456,0.0004011979536217677,0.007759233771067771,-0.0445747330511708,0.15240593266030006,0.05246334086965725,0.0022669253506089775,0.0076934434654240165,-0.012952590811104295,0.04344202864084899,-0.04844848797354009,9.566144101072837e-05,0.01064357966914055,-0.005005209501627715,0.006130103863910437,-0.0020962636361948955,0.002029698913296069,0.003492343127601524,0.006485873943175334,0.02188162277983082,-0.010242523259526348,0.00011743701753738857,0.013838158166731696,-0.025660444718249135,0.07383046143470154,0.0295827169482745,0.0001408928558342086,0.00927104827650073,0.02441689851316478,0.126025701958747,-0.006050264403619906,4.7287384986930935e-05,0.006073378200858239,-0.04073417960076514,0.10820907037520598,0.022747184724648165,0.0035679056869332847,0.00813903524427964,-0.003157696695027796,0.01609750189926658,-0.018821707084406815,9.757813163655828e-05,0.025566610659780952,0.022156121641368237,0.10842938282305,-0.03215332992102872,0.00014818612427393855,0.0038540392499544418,-0.013758125771856686,0.0839954561196142,0.002940851427574583,7.747332247232641e-05,0.0013766643509914144,0.012345790177056806,0.05885774195171236,-0.0021980451168806003,5.271845692767869e-05,0.004229944644902636,0.02410625030355218,0.03769903991365783,0.020848171709233695,0.00031176601054582967,0.005602428001207886,-0.02860857977456885,0.12635327960219558,0.03431227866570996,5.630204318065699e-05,0.0026409667580247205,0.033244208297396285,0.31364690435570114,0.025637665411277318,2.7346784908687923e-05,0.00624646348917514,0.0033062291567656455,0.009235517097356243,-0.01582287708080788,0.000125135547873087,0.0010126770624151417,-0.008547894581724363,0.03304178766506862,-0.012631633846726055,0.00040777781311476536,0.008137705587455125,0.0011958547816599073,0.006441728364978632,-0.019552293638892337,0.00010632804599771878,0.008639833066734916,0.00039213347282798 +2023-11-29,0.0024309213928884474,0.014849969279846546,-0.021179319933963388,0.0001731139015004838,0.0077946996739557415,0.01571457596456775,0.050130579988302885,-0.00022593027501086665,7.521603986834753e-05,0.006680127009961606,-0.015934698920231433,0.048862451704821265,-0.016493540242305784,0.00015085711999900992,0.005788018970470887,-0.013181982900198843,0.015303895198758953,-0.012918158295078107,0.000290701061270347,0.0069467755703601025,0.006127973964608205,0.012591466476683662,-0.011037823553468096,0.0002546468863137803,0.0009666190562104076,-0.019178380191473072,0.053982767557038534,0.045372754584237465,7.757173723847503e-05,0.006760834705272836,-0.01711281682036431,0.06211158548852948,-0.0470901467424919,8.08423149861909e-05,0.04280836329106999,-0.0008048557921448446,0.00639522380657377,-0.011164616940134675,4.315796323149597e-05,0.0002914216426254284,-0.01298620298958053,0.011640831607369161,-0.030248977836034727,0.0008602862207524395,0.009602210470590261,0.0332277330477718,0.07868255120789402,0.0162877536427171,0.00014766724282267108,0.004674315886145353,-0.011344811371806042,0.00840155360368342,0.012669211759113778,0.0006600275063850596,0.0033850145260493785,0.023347994913877214,0.3468916770656042,0.10840575949071903,2.0057578448199036e-05,0.0018296271800594,0.0314728285116774,0.09455619532114758,0.01746169148719015,9.88773513055244e-05,0.010628886718514257,0.0014172800368919649,0.006933498580903465,-0.0010360361695089157,5.753936400626179e-05,0.0015231100148387574,0.017831930524890956,0.016686101120564765,-0.019137321968319826,0.0020843299299974985,0.023958361876498302,0.047577861524632746,0.3397619554985179,0.018149358341224876,0.00011523443536478613,0.005718420529613534,-0.007572797217028733,0.04681040940038056,-0.17954610541568358,0.00025050830013321324,0.009232099636478237,0.034598726938657454,0.20037778942299736,0.010359399902532792,4.863752802575427e-05,0.013229236249313159,-0.03776163203637411,0.2227407233308562,0.041691518291137576,0.0002794074216985599,0.0034852425728325817,0.012845223493121009,0.15106479656357857,-0.01097270844002729,3.528650344204569e-05,0.011839035438532399,-0.018885266603293756,0.17651776099870767,0.10681259064192089,3.5745091994894454e-05,0.007830253073087597,0.0012802400949823989,0.003260051752168561,-0.012807281007416382,0.00012649975543121237,0.02113907495984911,-0.10405940734010312,0.6506142887791257,0.12229884831311737,3.694452840287324e-05,0.02128168243756034,-0.008448916890910554,0.02284363435793292,-0.10197960074249103,8.199988066075271e-05,0.005542520115401996,-0.017452708586964613,0.06575057389419718,0.12357361160634532,0.00012137014895887196,0.003673691911991077,0.010928685245686168,0.012190132941695518,-0.01591984593645075,0.0005124305783867282,0.0010154349681554035,0.026395969634908173,0.1017936889364022,0.16182402775413596,0.00010914473128530733,0.0004469582895587678,0.0016351578656315362,0.005938188911665451,-0.007376204633710694,0.0017673593132883185,0.0036259208675079955,0.03889458519739339,0.36950378651500865,-0.008278848073877302,2.7067768050264156e-05,0.010679494553011258,0.0054582772758179675,0.013517468278531876,-0.013570760809167796,0.0013201750001749872,0.011747033596921842,0.007412400029952258,0.05877182149489681,-0.05595935646815112,8.398763293918077e-05,0.02435904881565538,-0.01615631456422286,0.02559710803296758,0.018352105130778777,0.0001489693027986256,0.011194430655742396,0.030889195076647266,0.0494190214400536,0.015609999204552418,0.00035877020079438503,0.010401025242383751,0.03611630655372012,0.13226896155082588,-0.014268927037879915,0.002116390132040688,0.008376196785984903,0.01378284506293309,0.0568860204021934,-0.06919601905357453,7.773626886953848e-05,0.0022053635936583756,0.008824199402705036,0.01257951168392393,-0.0077691173181199885,0.0017437680752546798,0.029387608071823126,-0.014092383473818776,0.05185337662271874,0.0005811682401882048,0.00010767712384354084,0.00731837737908173,-0.048288768662209186,0.11445683369883503,0.10013752008059634,0.00017102704017881148,0.007420225242748425,-0.002026326568698472,0.008574718270555703,-0.01648158410403128,5.767711169326807e-05,0.01915164418915495,-0.03908997811125992,0.09409385463303242,0.04966577781515407,0.0039375150346015715,0.007985215066009006,0.020506016113156948,0.10168098097936738,0.0025838780919794865,0.00010031875587660753,0.021759180923714212,0.042321066512052925,0.25835659573749065,0.07346522545849905,0.00011879491048422239,0.00472819444095884,0.007599529199999053,0.04665120024914232,0.008719551960884862,7.704998614472897e-05,0.0055646518346180425,0.05932944560921063,0.26306472322135094,0.11594048052508688,5.6683292886330625e-05,0.0109251833974041,-0.07513383621288836,0.15686285471518283,0.026742903608509908,0.00023353116371637846,0.0017914322059353783,0.018205965827797294,0.06464150649397502,0.009506416014548486,7.003524138550542e-05,0.006081504026383625,-0.03812217135593054,0.41103293144823594,0.07264757920050227,2.3929426824983453e-05,0.01515438978337474,0.04145022453499254,0.13796700416642485,0.20889085732700433,0.00010501724427946779,0.016069909413448213,0.010672125766548994,0.03706209289713603,-0.020247441090212693,0.00045388827621509913,9.458656390302434e-05,0.008041533895305332,0.03538504593024544,-0.0004255707475755929,0.00013016401287974395,0.01822511367738279,0.0019055443570304591 +2023-11-30,-0.04420920166857787,0.3247319537287039,0.07526007700943013,0.0001439707380238749,0.011117090162327843,-0.011383501111067607,0.0352879160781879,0.0037421810548770662,7.740345901533813e-05,0.008021638937485025,0.009179284790136119,0.030242348842835654,0.017053628332202683,0.0001404075722199465,0.003516200260793707,0.0046143230665116825,0.004773550426451512,-0.04685385883825873,0.00032623784487226037,0.0022343406959040484,0.00506706495797376,0.010296836454387786,-0.011426288772210628,0.0002574841079174564,0.0008690659111331572,-0.04447903217099422,0.12166174058617667,0.2194794161148859,7.982667554691018e-05,0.005121331886014041,0.01986499527828485,0.0883539466784646,-0.02979249048433862,6.597089372315135e-05,0.014957966774086692,0.01130799650801705,0.10063839139369403,-0.0001908102987026388,3.853191502065058e-05,0.004521822401405038,0.007011793092517176,0.005967507801041948,0.0012207539092785775,0.0009061099166766585,0.0098168821748189,0.001086018397618204,0.002975312802657882,-0.0014906370453482707,0.00012763401697371362,0.011045028202014754,0.013326936548867921,0.009351332475168297,0.004585286406517227,0.0006965963430079424,0.001380484473090374,0.0036016765036889766,0.04167665791607224,-0.07407162669838545,2.5753401985563562e-05,0.002927571936606101,-0.00982701813946076,0.026655434566131724,-0.008931224896487518,0.00010951838434549047,0.003928761038138771,0.004374388174745148,0.021267546726895896,0.007449400188369454,5.789775731340276e-05,4.171036686566226e-05,0.01834736028257903,0.015549320168745367,-0.022956608898780248,0.002301363155103882,0.0027299662575820246,-0.0254104354947513,0.14940216409099255,-0.026480677194899445,0.00013996109376015496,0.04109833669817601,-0.06175915490520788,0.30982227908819787,0.08952645363153278,0.0003086717841362871,0.018378367523757634,-0.05458934513572152,0.3146308439454822,-0.01939709630293169,4.8872836470489894e-05,0.016901288925460656,-0.015732515467416712,0.08121461983419777,-0.0031230305632693853,0.0003192645944226216,0.015011181127740175,0.011435596531047757,0.14217847202935704,-0.05743033861769976,3.337760823561544e-05,0.00015025181657521555,0.030064970914589068,0.27829023454420865,0.10522570282313563,3.609479090345433e-05,0.005672870424609384,0.027686466573162077,0.0890106945937244,0.0018992464298314246,0.00010019547283772493,0.007972191897497403,0.0006729229099317027,0.004286739500975425,-0.0007969138867746569,3.6260233590359615e-05,0.0017943017434611606,-0.01755681485812936,0.04738449870928423,0.008491927007377118,8.214607572819148e-05,0.002974715298879869,-0.0020916694423549365,0.007571379688585476,-0.019378770477660165,0.00012631840162809986,0.0019649575229025934,-0.04192948161232055,0.04389698796981482,0.017411080806286863,0.0005459593810407024,0.014872759769453155,-0.0009466435274557218,0.0040042024705730945,-0.006482325905970001,9.950764534626927e-05,0.006990333787981928,0.05057657092194912,0.15561050875783075,0.05218475947518916,0.0020860736291828047,0.0018573993203009724,-0.02511971113741444,0.23996796229016232,-0.020140924276663447,2.6918048579202898e-05,0.019078040710427208,-0.019073722128210818,0.058006038168581124,-0.014275815883776887,0.0010750620147233823,0.004501501986488079,0.019734058505526494,0.15016885204814706,0.01185208319576209,8.751090875918862e-05,0.014015726331668804,-0.025160244609800164,0.03913523542199442,0.02698108796837206,0.00015173727994921462,0.00046557622633776503,-0.003245735722592099,0.004576703047217187,-0.01774800233016794,0.0004070655358278756,0.01119978075743521,0.015980400139040635,0.05586893484080373,0.0071988727881339455,0.002217009730561456,0.009678030059936622,0.007408155359686393,0.02346553369099927,-0.1230953251079146,0.00010129080341598881,0.0022286264406958523,-0.010346645644414136,0.014308973500875814,-0.11493328133955952,0.001797497470392906,0.024377660615070282,0.004428904504697092,0.012938433215335558,-0.017060067207738422,0.00013562216228588851,0.009877201533014043,-0.004231563713262752,0.011527635387309321,0.0007221760603181151,0.0001488062008283945,0.00505733781673026,0.0138693335149062,0.06420724253996794,-0.006050981799145983,5.272122561247807e-05,0.004369705407621894,0.0857567635956152,0.2391610006017176,0.14064311622810616,0.0033985688997088025,0.002170456521902562,-0.03784766282090422,0.18346529189663477,0.08425511800064067,0.00010261851378166286,0.02499940450516442,0.019411621243875875,0.1085861479425131,-0.010914907795340269,0.00012964272955930396,0.01127221127902958,0.030006743041923592,0.16586478396154175,0.08912471600313943,8.556839196455081e-05,0.0014751764929298809,0.01056385975032446,0.0458619906570355,-0.0020969855476100406,5.7891808934613425e-05,0.013999633803129912,0.008506217705603752,0.019314472171227656,0.007144426803081614,0.00021472521369291693,0.0024981852611211416,1.8745995922488312e-05,8.760668739504276e-05,-0.02971870664046788,5.3209065934197025e-05,0.01284791420562776,0.017107030998524373,0.1753879571524861,0.0070390957150306115,2.5165534453541214e-05,0.013581276586329323,0.0064236353370746655,0.024293282120578342,-0.00037685902483445985,9.242801994135512e-05,0.001556266787716268,-0.006845367674370396,0.029466195504816318,-0.02227925314106807,0.0003661851131501295,0.004009609687750135,-0.014522057060461316,0.07599997095359787,0.0009375943347735207,0.00010944262687249548,0.007042533071694951,-0.00024883301867374143 +2023-12-01,0.011342579366513,0.07904968395607964,-0.0523334232939183,0.00015173936866200776,0.007256871224646921,0.04440912012317494,0.14262376508696573,0.03550706673192424,7.471207495267642e-05,0.030996762519536657,0.01289309654510502,0.04925582072073242,-0.002223170919360998,0.00012108682154156262,0.001706837475135105,0.011184887794218992,0.013281021063237945,0.04655489886616799,0.0002842287613765083,0.01037371198001236,-0.0207548345471504,0.04414383483380281,-0.025907849248352537,0.0002460067308378736,0.013158952697420427,-0.013675170417539483,0.038985804954062835,-0.018194924264944786,7.659016079195988e-05,0.009772519902735526,0.03246443925353943,0.10521878470561212,0.03635272126168608,9.053249300281782e-05,0.019306576932287763,0.004982816914621226,0.04096350696836203,-0.012420399775202396,4.1713479155703645e-05,0.004340511994509923,-0.024668588513871673,0.02222449713433946,0.04482288538533732,0.0008559672415701367,0.002142240527732598,-0.023098214201895513,0.05266384746934595,0.022638236531512892,0.0001533655112259735,0.0020257991243980713,0.021432333797025947,0.015460132353604989,0.014358129292505155,0.0006776112616992062,0.0033796676433797547,-0.009423392080090158,0.10244595782697956,0.017421230500591172,2.741165286546252e-05,0.0020971964920596785,-0.08153258626620158,0.20262702784409056,0.1032975881936403,0.00011953219160694844,0.002624861846083925,-0.0003514356244143908,0.001734076229199805,-0.009638883578982405,5.704786772365871e-05,0.0015711714848021736,4.333799058337708e-05,4.297824859593452e-05,6.871309763985289e-05,0.0019667222443618885,0.01858459909067149,-0.046839400548089584,0.294756103854268,0.0344269109391729,0.0001307677432253152,0.033947032674636904,-0.007762758071035604,0.03974634132984921,-0.03570432058448042,0.00030243157107766327,0.031061071860819113,-0.010732591469443485,0.07821702058365627,-0.00025067826179464846,3.8651316015597676e-05,0.00808852491126342,-0.021896628266031164,0.11035109178421158,-0.07320270286597375,0.0003270298676885367,0.01601713513818223,0.0019891620807537874,0.02489133523303641,-0.013376644558984787,3.316287768560951e-05,0.015973388172662216,-0.010645077202744484,0.12006698472533679,0.015854061948004393,2.9621491365306997e-05,0.005225139950392565,0.02919778620903634,0.08262638224326829,-0.05729371558385028,0.00011382926779944347,0.007463467984935191,0.04302013489813746,0.25923264955443176,0.0217522719806697,3.83331444123269e-05,0.00574112269740838,0.0028162169513472695,0.00941864673710327,-0.05084359955084768,6.629106287878289e-05,0.002528105105800713,-0.0007340810633678864,0.0027376662664829582,-0.054012049288870635,0.00012260610956360153,0.006159605245507003,0.020422678889933578,0.01808997945907464,-0.009667190522627843,0.0006452829595871169,0.008824699570283048,0.009547393293106998,0.030099604392554612,0.03064147926809164,0.00013350884372873118,0.0029075830288509273,-0.01543963860562249,0.06925739565219895,0.010862636957300111,0.0014308369569062277,0.022330685523273476,-0.01953195836930432,0.18039007312293254,-0.04056615701267908,2.7842956612104023e-05,0.03919374443015252,0.019432234444491527,0.05634076022386809,-0.0070205774585418365,0.0011276421695691247,0.015345150168007023,0.031649985228285896,0.2625327741977046,0.041722649375789,8.02815274956351e-05,0.005289423206264525,-0.01032682999179088,0.0157913470010908,0.005187515871706278,0.00015434523871415607,0.003653175879446637,-0.0015741684385126413,0.002380624273097319,-0.03842124382498639,0.000379545858702891,0.006694357053233622,-0.0432205505933407,0.16313460857038095,0.058275138142525794,0.0020534991672116923,0.003350369384943279,0.02140448271369875,0.09054624009674062,0.032584952323762004,7.584460361645126e-05,0.00493739624571488,-0.04062287303543969,0.06061221249520599,0.04016383058511017,0.0016660486926551345,0.012880517577441578,0.016116785980159733,0.048629432884910034,0.01826922074672349,0.00013130923478565473,0.03710105869879124,0.00936557113767781,0.02361762234158446,0.014977660250619312,0.0001607527715399473,0.0004948828454484852,-0.024127692839267006,0.10891506228183384,-0.03162053750351823,5.4068183150729376e-05,0.009382227506049421,0.07336365849873218,0.22609660384657299,0.06742413292177668,0.0030754240029703156,0.04052817428650032,-0.025831412799136914,0.10995650782100186,-0.014137707557997228,0.00011686051397010823,0.0022996164323985445,0.014039220448779793,0.07055036799235835,-0.01729302894745331,0.0001443126808616079,0.01797218501129075,-0.014237760262042811,0.0954305054442775,0.0003682750635506582,7.056724305607927e-05,0.003177805074833206,0.054436553321612964,0.23467917055681842,0.06907332859230729,5.829931743985438e-05,0.00828936204885817,0.006268854586537267,0.012408916204942928,-0.020793720368189692,0.00024631096073641606,0.022826250537781166,0.004839783345498529,0.023153860656182614,-0.00995945340843295,5.197767883412809e-05,0.0008465767665723429,0.006473744408740513,0.06832849715566075,-0.004668947032935835,2.444471429149804e-05,0.015761727794445485,-0.026367389208222725,0.0823561146331588,0.04599982678352605,0.00011191292452842468,0.004578068577379545,0.032244828029295604,0.13588154843076747,0.1800831821279588,0.0003740481824380738,0.020896062331776828,-0.009342979559196517,0.04851357010244982,-0.016952279989247178,0.00011030468512945429,0.012737191312888429,0.00026441117543252293 +2023-12-04,0.0002783702170941504,0.0019486350497649376,-0.06915116898578644,0.0001510702132262484,0.00026197176590168924,-0.017426357600947965,0.060510291234648406,0.00831773719732843,6.910156848444421e-05,0.029093835204503288,0.0634473153427623,0.20692974936904393,0.23207404727207112,0.0001418363423412912,0.009436907780887958,0.005979102067677733,0.006742262165898604,0.010100672813836758,0.0002992941222295466,0.004069599769815257,-0.017916593758121976,0.04226185796893153,0.01268071816367202,0.00022182200820980867,0.0003971277482578471,-0.00649607007057769,0.01740384649186031,-0.007908036337795906,8.149898436767156e-05,9.306012973850667e-05,0.05577424807135652,0.20091436211661887,-0.015167506538317938,8.145403377021118e-05,0.025972874422877032,0.0061877924139494885,0.05911389130820093,-0.02577741007612015,3.589589626496468e-05,0.028985662392962814,-0.022581609157206414,0.018477339858764683,0.020730944327453264,0.0009424541388439637,0.005735036978219595,0.0075537135197463875,0.017464587051594316,-0.00042404729789261833,0.00015123909676994295,0.0004214631895383316,-0.009466824524956466,0.007571105072869365,-0.0010912265669149365,0.0006111803910841558,0.0043683824218426915,-0.012765042598363958,0.16480329794286394,0.021875359460952856,2.3082304163235743e-05,0.0014837839462421688,0.04499313442109027,0.10084965737244009,0.02294547981277751,0.00013253264331034297,0.04734199352437728,0.015703072942002395,0.0963465836983236,0.04430502374089301,4.587859891276019e-05,0.0054070596779306574,0.024781269693103108,0.02176581362730063,-0.011331211074162496,0.002220606570715446,0.012341846973667426,-0.003404300082690242,0.02413813866509165,-0.0034436208343051992,0.00011605828943764137,0.014085045699367846,-0.0006995466191632712,0.003701126848915193,-0.03691694825533468,0.00029267856970402613,0.0015232850287598498,-0.0003410149610272832,0.0019075529817200792,-0.02582334636773629,5.035676001956553e-05,0.01992282952857694,0.019181661037202254,0.12251614087674674,-0.035173095123477216,0.0002580356495432272,0.015629163456471834,-0.04046872698628819,0.5514131461770402,0.03859600060104729,3.045598560461512e-05,0.009264133355739196,-0.024389323140746298,0.2521006753712258,0.024064858310856384,3.232268633367031e-05,0.00444127323019276,0.00035499536301939285,0.0011705071576915828,0.00020199747670071716,9.76947806986321e-05,0.015139905160840027,0.016780826354755484,0.12054245142397436,-0.003022934453206168,3.215627249126691e-05,0.027362866181231862,-0.0026540230430050593,0.008956373036179535,0.005382257947392364,6.569765946329488e-05,0.004438301037218146,-0.02489235504547762,0.09317852320917938,0.18623249410306764,0.00012215148733964572,0.00015247352597586071,0.03977720363380216,0.041533508557444435,-0.018292716676291447,0.000547408063214625,0.002788360128185734,-0.01497580248557042,0.05148237336387181,-0.013133288716457983,0.0001224383737960749,0.003223296227139223,-0.004753100519819301,0.017319340419702248,0.0028649423142530273,0.0017614277136777411,0.006233251529840717,-0.023222356724699317,0.21583409605736134,-0.02103488261691595,2.766740545862739e-05,0.00733411955291411,0.04036166973440642,0.14118297265080165,-0.013834711306177446,0.0009346695026414426,0.015459499342722883,0.02179015192785325,0.13581941269618497,-0.00012049121295807908,0.00010683758275275228,0.007709872285453181,0.0339843912560029,0.04489011013289868,0.01867893086173312,0.00017867928684815707,0.01730898675249514,-0.03613777117960937,0.048966985688845534,0.040197939573736324,0.00042360580888902073,0.034795182042973265,-0.06703163280089255,0.25099282383102717,0.1362688990004555,0.0020699927998305153,0.02916209714171603,-0.03775625495365351,0.14505386906099907,0.12273675991872475,8.351220739617438e-05,0.001129064392690533,-0.004018736082624748,0.004918783866491993,-0.06127540248994749,0.0020309953925083815,0.014116164922704849,0.014154707977707673,0.043310171107667404,-0.017995325467222368,0.00012948726292974307,0.0026041816659846204,-0.012964579340251907,0.0318695088919298,-0.06074467980367673,0.00016490864941773998,0.005093250598626182,-0.00011581772415367135,0.0005022663140176265,-0.01710825373606914,5.6280105106427796e-05,0.012515442612009448,-0.07265632615673101,0.2157092055000021,0.10338392069947054,0.0031924405081881547,0.03824375833723278,0.041238575289646424,0.16383259144466733,0.030872800331386435,0.00012521141478684324,0.000646259905166171,-0.0032718133524732226,0.017725167120387225,0.0035464993710800454,0.00013386251069335157,0.01993738445650072,0.01721588371947392,0.10721608437861148,-0.016367226782844843,7.594830346229377e-05,0.004298555347372986,-0.014432877236275399,0.06331146758168354,0.018054822680433128,5.7295159367492665e-05,0.003202668405551763,-0.024489546346522454,0.04424529343962087,-0.0353971702499158,0.00026986282011560347,0.002705364738629572,-0.003415530247611366,0.0145191703676524,-8.151738684570128e-05,5.849661159187081e-05,0.0003205203888047444,0.0044432523667363765,0.043574184862838324,-0.056028345429601806,2.630891845178011e-05,0.006528775705038066,-0.003295639952522425,0.012557069311194963,-0.0022984701782497656,9.174035835040343e-05,0.00594058499783637,-0.012128254560637394,0.05068639289845136,-0.05947536410780252,0.0003771680435592844,5.7124873531234736e-05,0.0518657060486094,0.22480358188750715,0.02878711178035299,0.00013214443048780952,0.020804506567299336,-0.000542986489808626 +2023-12-05,0.0012109693805437834,0.009480938776558548,-0.06251625228781113,0.00013507295588791098,0.007421280416344498,0.030329972456737908,0.09306644171044501,-0.04926652508488847,7.81968813797934e-05,0.034006821351865966,0.007610076883127624,0.027457636162629587,0.0028134200050809995,0.00012821035506990614,0.004902384501189228,0.02253471299462405,0.023196667567649876,0.08999081738968809,0.00032786441960839185,0.006214071011663351,0.05464316797891424,0.13353414090756238,0.0655286393059171,0.00021411215644694286,0.007720760955065033,-0.01637545206373113,0.038748333490139016,0.015032058674461774,9.227562788148679e-05,0.00894186290565219,0.025830931976315797,0.09821468104867667,0.014712533538400121,7.71708920246137e-05,0.029307681003862524,0.008169951998197974,0.05843385958984962,-0.00310534807727544,4.79461286893313e-05,0.019602392366241717,0.022028840831791997,0.021675048100601797,-0.01449131327746243,0.0007837478485617669,0.0028947962597164227,-0.018032782832321757,0.03964499017770697,-0.020620892856906048,0.00015905097083106025,0.0007797359593587864,-0.01760122722078291,0.012699514031949077,-0.043690568225815775,0.0006774546146411001,0.0010279424739085725,-0.0039242331880606,0.04881560639280014,0.0013195767067827478,2.3956253897956173e-05,0.00283506436945527,0.0572296881607563,0.1735522505201249,0.043836611253372085,9.795850931846155e-05,0.01439330356375982,-0.014591689465089978,0.08617276678746455,-0.05543367880392286,4.766475440761078e-05,0.0041935678302961864,0.0007112788441744533,0.0006657767505961056,-0.07000810401706885,0.002083695428311871,0.008213345537516816,-0.03678595528207307,0.22908253571094553,-0.06023117553332463,0.00013214239220406927,0.019482964276839643,0.022436288909236924,0.11543840239616435,0.008571224229156335,0.00030096011760879577,0.00780560324179733,0.00679190116921492,0.04530030092370266,0.0022491833460089334,4.2232931378613914e-05,0.01537506664136378,0.026210497137421546,0.16355505268249176,-0.0023924163386389473,0.0002641180611490677,0.004657419562449379,-0.06438890625037506,0.8265532677670159,-0.07328864300480657,3.232737432446375e-05,0.01569146585133493,-0.005414562159446499,0.05281355845590415,0.009059628338430667,3.425307950810858e-05,0.002634462160198363,0.01643019072352772,0.04869511941213592,-0.022667759754494827,0.00010868758161124167,0.015049971823208021,0.01657456501241348,0.11759392708794418,-0.02045494779278703,3.2557392972270366e-05,0.014074957521082239,0.0179773004680024,0.053742863497458514,0.10860666004179782,7.416193572082595e-05,0.006792730306800604,0.0037553422313168273,0.015254994757833167,-0.000939085300630719,0.00011256051049232625,0.0010772626125780094,-0.01798425692926289,0.01456241242351393,-0.053000071360968695,0.000705886267686535,0.01294661070789985,-0.02817138439607712,0.10217802451387904,0.03611200896710183,0.00011604774258427918,0.005435427760126786,0.03245083411170864,0.13534008610673662,0.014780957090862575,0.0015389290243417008,0.011699800465424962,0.021558203616268666,0.21487672890625098,0.022799260491741812,2.5799148999122476e-05,0.0007880379239369282,-0.03102534787266266,0.09829592959447875,0.007810989916909673,0.001031935125229834,0.015983432933613203,-0.004718536459965116,0.036106363567301146,0.005320368174769243,8.702603709814723e-05,0.0028305320632411703,-0.012202419486130983,0.018747579408719083,-0.02151796581688065,0.00015361942501648744,0.005088358163153514,0.0604668022541132,0.08411739509776792,0.07855049412743684,0.00041260558326305143,0.0002915691692072568,-0.028714429842735926,0.12176839926968042,0.007974858905963724,0.001827746418156875,0.006134722777319778,-0.02543386369393747,0.0991795878562878,0.041383795081672614,8.227737182727029e-05,0.020770681455618663,-0.02053107832477441,0.02907652775098883,-0.01177083876298684,0.0017552800173973805,0.041440285490394205,-0.04777960272390829,0.15723818886371704,-0.06837207591631722,0.00012039280638811539,0.014974663148578494,0.011012925476468134,0.03143728324320428,0.02206937550761669,0.00014200971914029296,0.0068255298324764084,0.0038259509684396395,0.015681153553035367,-0.008857050849254417,5.9549115821254526e-05,0.008906343879752589,-0.03795041685734399,0.10822514736847087,0.014299319074033368,0.003323582187682884,0.022909305519880387,-0.004580811185089338,0.023399194776758166,-0.06860820167775378,9.738275332162781e-05,0.003999708964424659,0.007168371092927531,0.04284925196505625,-0.004405463749473263,0.00012132156936974997,0.00720011578433174,0.0036720325139321564,0.024549456554704033,0.002711276968762196,7.07478642833466e-05,0.0008543889539941482,-0.005773236650826871,0.024679272686442655,-0.022287802328501295,5.87941882111128e-05,0.0001588986135091355,-0.04932812409884031,0.09284578296121515,-0.011659300276222275,0.00025903700559707846,0.0092523886918215,-0.001439267042308587,0.006084460286469105,-0.0017796293752709242,5.882117501053481e-05,0.023258220389585242,0.02910603298310002,0.35707638364304506,0.02234276898942264,2.1030673202464064e-05,0.013201932043995125,0.0030618770394098,0.010696765135656984,-0.024213650796620672,0.00010005625653362345,0.005988508004365229,0.007947909874002542,0.037112616893549936,-0.011529595251543042,0.0003375664885925842,0.005235375793336293,-0.02856945906576222,0.12310796747318427,-0.004663836195105981,0.00013291917969971705,0.014687440141034716,-0.0004731408623313746 +2023-12-06,0.022548125417870768,0.1593014712201836,0.05134286697097065,0.0001496846406251962,0.000474041622306767,0.05120475043396154,0.18822703004038302,0.061677217701519765,6.52737840947102e-05,0.0028296796342805585,-0.056948720081868916,0.16130054031732735,0.09947910101992663,0.00016332224841737403,0.005251502276793895,-0.009774513073251632,0.010775793255940398,-0.016867065916660158,0.000306135530754875,0.005421524904560239,-0.021545645916830974,0.04866561304743768,0.024693201924706875,0.0002316514868306754,0.0028222713369725552,0.010070130989378949,0.030126954388153392,-0.01837979851269968,7.298382653611904e-05,0.002334542476759775,0.012165168810591402,0.03981835995582149,-0.008150617328495917,8.964470176899415e-05,0.0035113807018643185,0.01654110743826718,0.1702025537332187,-0.13144984248037175,3.3327069333886906e-05,0.012015807654334196,0.009455803678293961,0.008019006412899819,0.0034896859797484336,0.0009093324149263938,0.011637367928213444,0.03807927948298662,0.09462959262010867,0.034332270706611066,0.00014070957076340319,0.009348466911612889,-0.013743673142258729,0.00942491651040758,0.013664190161951757,0.0007127704140575844,0.010968288159115862,0.015747480445833503,0.24475580883537812,0.03222631077438417,1.9173476229485376e-05,0.010689705373507866,-0.022217415316518815,0.058643451570306475,0.005452025627964223,0.00011254469997584421,0.06017313355791796,0.011519099028021614,0.07476034091575541,-0.10135621974734942,4.337196084640418e-05,0.0017948888936117206,-0.036116151600766006,0.03309825202706955,0.06705366076970036,0.002128234020950645,0.01037996013902347,-0.015135883167610423,0.11119877822258258,-0.10945592295569345,0.00011201078967855382,0.0027396830433737713,0.001382288165039365,0.007533214132839711,-0.007186034506025884,0.00028413616147943566,0.016544672563276113,0.002670039249036194,0.017069103632792654,-0.0017563734731109847,4.406237337533486e-05,0.01088269381806673,-0.06046676109422622,0.28958998251463186,0.09943917973741798,0.0003441279750561021,0.006973149536593352,0.0031042263615101732,0.03890591564133553,-0.06139273413690496,3.311067032747867e-05,0.002557556629869231,-0.01441050815116508,0.13682712825817372,0.02291491550565816,3.518753080883601e-05,0.0019076027741808548,0.039368644491927805,0.10091477709527,0.013243257607365827,0.00012566619120971776,0.02936418353822427,0.03238014287136406,0.22598333738490806,0.006559360588916096,3.309746401225566e-05,0.012397132530678293,0.025591686984629654,0.062271419349261635,0.14111233450082583,9.11145076642213e-05,0.009853494439195752,-0.018434764138321524,0.06996544538028553,0.07537405289201955,0.00012047656540103106,0.003524134947304882,0.05191404677726738,0.04222102217470391,0.042381684134929654,0.0007027999178814172,0.00654242976557594,0.008861181095136964,0.03001893872250227,0.02082480132949002,0.0001242459631469326,0.00845805835786139,0.06285892824841849,0.20942017592675155,0.07147666051887547,0.0019264938483893055,0.014181387591854533,0.0064068755940778375,0.05274316356076083,-0.05655600025966655,3.1236496048296105e-05,0.015668793882523638,-0.025146928929407772,0.07605483603746999,0.005148202891488818,0.0010810091992461137,0.028711318933562505,0.00703069864551169,0.05346967857994741,-0.051512310648782235,8.756217750396331e-05,0.00898244775519042,-0.020702404363690363,0.03491018680849523,-0.007031960579151775,0.00013996324424757407,0.0013702983741891756,-0.008076199948255333,0.012361833372809375,0.0017538066233557263,0.0003749972569893272,0.013452334164953327,-0.019838718850781974,0.06216774058911758,0.0030827824355311386,0.0024734257636680195,0.007177865072028444,-0.016258025629963684,0.05889829022527877,0.010188016853758626,8.856364584157365e-05,0.003484529846418653,0.0738710882609439,0.10403644328876163,0.09439643082386368,0.0017650873089903546,0.002355224238532478,-0.022165771957677896,0.06212101592325267,-0.022604077649937753,0.00014137100580096786,0.0021505162128472345,0.026442700361735686,0.07048151966205597,0.06344661797572762,0.00015208658929411533,0.006935539861904715,0.014948447718650656,0.06479311946827274,-0.0577742631515899,5.630943014953745e-05,0.01179095720573761,-0.005043300427508446,0.017711664118831894,-0.011161215716433515,0.00269881757656996,0.020954535681694874,0.04430374654530206,0.2381955313925221,0.044319128757112664,9.2522511875548e-05,0.02680156450094562,-0.027809156111153286,0.13366324605110655,0.047510580509461366,0.00015088170762108763,0.01292788557325119,-0.03334531850970742,0.1854918754858499,0.044846485206808034,8.502735638490372e-05,0.004535655865649403,0.01589565659010261,0.08013133819014212,-0.01409122340475356,4.985669331849901e-05,0.00828142709105475,-0.009563170386262122,0.017898488929472055,-0.047692308812523926,0.0002605043143445332,0.010923577103757567,-0.0027196896195002735,0.01127343108722367,-0.012093162889839984,5.998982639575614e-05,0.0033540213441912783,-0.023307757719868493,0.24326140763543924,0.03460172812172757,2.4720574818611554e-05,0.00664538130218498,-0.036710428591898166,0.12332677990169574,0.0913915508327884,0.00010404974671170037,0.00516884233278867,-0.03239522486020421,0.1322975830872371,0.0852182799442358,0.00038597311906895225,0.005294281933013836,-0.007169075447927369,0.03429947222795099,-0.029301770496102716,0.00011971470768537441,0.015877983411570092,0.0005918707990900047 +2023-12-07,-0.04494819916509071,0.27060501709133034,0.038032546975220065,0.00017565601914020144,0.007431229291154919,-0.024478710915068487,0.09410077198795404,0.015817392749124432,6.241743012389455e-05,0.006264668821077349,0.033688713984037846,0.1318867715199651,-0.04340986365390401,0.00011816269838483702,0.001252989027410644,-0.010505990870212855,0.01256306154190449,-0.06122870729210764,0.0002822340371956678,0.005244042273619956,0.009208877600783542,0.020780574334544725,-0.017563934653881248,0.00023187126238755337,0.0188419768056413,-0.011511350377635983,0.028410024718548237,-0.0038405707878550405,8.8471094733146e-05,0.002774675557736861,-0.0440397866017269,0.1987632631523403,-0.08851881287447912,6.501281080865178e-05,0.0260995576515201,-0.01825303139992552,0.17008226204465776,-0.029785330633012534,3.680226872651134e-05,0.012471933213367268,-0.01500609033244845,0.012711218951751159,0.00855015526162916,0.0009103851050277845,0.016728119056860887,0.042070236354726155,0.0923999283874189,0.06070861501092896,0.00015920811620819767,0.002918720732750232,0.019538781637531727,0.012451095429017964,-0.12238063705534803,0.0007670334007295819,0.008169297053510941,0.006733120208373542,0.08739447593309525,0.00906789520039386,2.2959116676944014e-05,0.006237856446859738,0.059255483938309844,0.17508144884529153,0.04186365725633933,0.00010054013298871503,0.01974700826481251,-0.016341928364970545,0.07388061362385091,0.02652837423676139,6.226365727320278e-05,0.001646810170778717,0.030489989048806024,0.024393269239612356,0.017222341578272495,0.0024378682519374507,0.02540351794885633,0.021670088200051965,0.13844400265810694,0.014829522461440717,0.00012880675512714733,0.013260634559888707,0.05790541624947709,0.32015286595503656,0.05971974980144594,0.00028007221485270797,0.0027447939042585384,-0.018922676060213032,0.0828379808197324,-0.09017593916844083,6.43448816302548e-05,0.0007649516800382085,-0.023648396330239286,0.12434977928617441,-0.029776381461048218,0.00031343210827005833,0.0035531775337050747,-0.02537134996131974,0.2660181941742966,-0.053982287487035506,3.957878573903748e-05,0.004601997232481754,0.043126864897410556,0.42047149887936736,0.1685017128309036,3.426833740825333e-05,0.004857428147029318,-0.0004463287507630007,0.0015254793639270742,0.0025394146759130684,9.424781316758555e-05,0.026249595358606874,0.02976586376549243,0.18853947572958912,-0.003302284791607708,3.646771656395404e-05,0.04503283123444013,-0.0024537172818826065,0.005920240834393707,-0.016361697346963595,9.18887894033995e-05,0.004867821676963194,0.0291438805675261,0.10783297500036157,0.14396429447323073,0.00012357891759262444,0.0002091610759119701,-0.009873542202319447,0.010621155838205993,-0.15571517206269042,0.0005313452067195207,0.0020841120020973726,0.03189354033801461,0.10721145836838679,0.09112413864544112,0.0001252124565705239,0.0028472909769915226,0.029081571432637576,0.10703498375665405,-0.03727410707456377,0.0017438587197537003,0.005729014106163302,-0.053751026460242365,0.4951444477357304,0.06607695873665878,2.7914962193571317e-05,0.009115816003146695,-0.0019694879626282152,0.005710310064903403,-0.11774753377514717,0.0011276255556932392,0.020180811416643227,0.019391240234956444,0.14693813248246243,-0.013896965329477463,8.78813488699316e-05,0.008666087704117552,-0.05184820183037701,0.06151735620410174,0.10294883383717135,0.00019892136126250227,0.025545892066756004,0.015144524142297711,0.02520887706478341,-0.005361784323996862,0.0003448307965163764,0.0017694767117149993,-0.004123526279340379,0.01736435408005802,-0.023149201311779256,0.0018406044801651507,0.013881456974016687,0.016168119840069987,0.06387652603403526,-0.003219116682634263,8.120982997839848e-05,0.004626618423706704,0.00427856949596803,0.005788908141406798,-0.018518305227402554,0.0018372959771414889,0.01474504023400086,0.007687586428594047,0.023864418402642532,0.003657446695275456,0.00012763071236538727,0.008314241237052796,0.020379822344418052,0.051071688810992,-0.029870620894661606,0.00016176350590644455,0.004187980780279759,-0.013175733939909609,0.062327975427644296,-0.06979312498314025,5.1594774820786356e-05,0.014121569046034175,-0.004798988730085604,0.015042905242016038,-0.07386301368074828,0.0030236816769853908,0.0018355984752173305,0.023310901808349962,0.11815080862232656,0.001041326586954951,9.814381766074715e-05,0.0027850004374800094,-0.04002344627731805,0.20546103389299067,0.059476389529540256,0.00014126865056493103,3.947333960580522e-05,0.006515427295083547,0.03564563625728585,-0.009905537883816594,8.645402763687777e-05,0.004726183717263085,-0.004700225119268405,0.021800917456011832,0.007440704006159719,5.4186522882695386e-05,0.009933194338923618,-0.015510992179930724,0.029633178645785685,-0.05596264012290301,0.0002552059137032352,0.0008174908756281365,-0.021754397825279458,0.08441918499610983,-0.013418925706424114,6.407967303374827e-05,0.007706111490331161,-0.008954371469024981,0.10263634934820352,0.006844618885823626,2.25094662039714e-05,7.808393128627624e-05,0.023461222553130916,0.07337003390434899,0.027951446689178535,0.00011177402340551912,0.016250937891034215,0.02447143339553154,0.09639161332403416,0.08658611372475673,0.0004001733199195582,0.007346514241088284,-0.01236576852941792,0.05824810651359643,-0.024745929203667572,0.00012159370636023094,0.012191816723813725,0.001961043442836963 +2023-12-08,-0.04543511744866703,0.3053134679745241,0.03361078993048423,0.00015737374386268205,0.006470907065539063,-0.005527018032072004,0.0256280475051066,-0.006366800207303385,5.174708469485824e-05,0.02136291247699827,-0.006597735663960093,0.02116710625445263,-0.009084782218053233,0.00014418850081518995,0.009994331023832676,0.01856237683292083,0.022246649014293015,0.05313075659250879,0.0002816027154398906,0.015552506729447135,0.014323235023325777,0.02891226113095453,0.002588475239016192,0.00025921303241616215,0.003427036131498272,0.0003227308082850588,0.0008497614072466052,-0.04131624694640592,8.292589399751318e-05,0.004495519047838324,-0.0034832397254782816,0.012696595231916161,0.0005318750016874608,8.049815850669289e-05,0.035754671023178225,0.028060462322776238,0.2807808818491165,-0.043007482435035875,3.427093103003662e-05,0.011231414913019393,0.05330136936448418,0.05113297335144157,0.18966196333508015,0.0008038631227209414,0.013790535720605466,0.018480330233330372,0.041856861675263604,-0.09234995971774186,0.00015438494629689835,0.017386797950773976,0.020516094523654178,0.015372309099650398,-0.08490549374147742,0.0006523489100333528,0.005201257904006858,-0.014249823733680096,0.21680409969507083,0.031119388446284542,1.9586858747948038e-05,0.002656670908128566,-0.05431658543597375,0.17124416020041283,0.03148968098280554,9.42253432994074e-05,0.013849091388442288,0.00817224835783169,0.04934240848862255,-0.00472501741787265,4.6621155207572014e-05,0.0031004493269351997,-0.014930952221271786,0.01183925497355072,0.01521163280206099,0.0024597224476141993,0.007339567618621836,-0.012673385236718604,0.08081153455298011,-0.0006260068734758452,0.0001290539763723215,0.004103168318010743,0.004442824865986816,0.027870425765578168,-0.003148159171469543,0.00024684470885950313,0.015782005824061786,0.0037048200855376925,0.02109047346270786,0.0011589372453031709,4.948137382799016e-05,0.006515629658525551,0.013879787490214736,0.08436442080292217,0.0018822301229148898,0.0002711504284470392,0.018703333699470553,-0.02255094631764625,0.35128644650011565,-0.02427726250678225,2.663996245575023e-05,0.01348940505963725,-0.0010132846718217746,0.009227845811275044,0.0006346227027533835,3.668705517386931e-05,0.007177683810010351,0.026843890637102855,0.08978001641538487,-0.04704321213781873,9.631380402391935e-05,0.017006011398268524,-0.008700420170081203,0.06449379483294364,-0.04185985313191273,3.1161235673346475e-05,0.0025921575455088467,0.007381893194003384,0.03165023174884771,0.02585286664193514,5.1709250770497076e-05,0.01246099043181522,0.00884475492990945,0.03592467068762535,0.009105511082642907,0.00011257490881234692,0.003934115238363506,0.04148766661965656,0.04466957407862855,0.048737548597175266,0.0005308633697030808,0.005472932873041455,-0.010206703520408143,0.036343264420017944,0.0006658544963322209,0.00011820819204005549,0.010773277023043693,-0.05429431922651464,0.20635990735323662,0.031417232264864065,0.0016886834323140605,0.0014135417289787107,0.0676715175714268,0.6259699327663713,0.15600056336784912,2.7799349776738697e-05,0.005147101313056417,0.03556307376226021,0.10622456794722601,-0.10090002645361747,0.0010945751570643077,0.005518189907238615,0.01996670283814655,0.13417437622662956,-0.039534273884308434,9.909743482114868e-05,1.0903133311248583e-05,-0.009252793965222642,0.014016954673272054,-0.007777195971723058,0.0001557989796274849,0.016139415915434028,-0.023673264206589505,0.03250225409974857,-0.009494298806000173,0.000418069589159227,0.019104624320071477,-0.011188116093906705,0.04969014234969723,-0.004530139893136571,0.0017451672905578611,0.023101268863716242,-0.016197228113397067,0.058941333160319645,-0.053523342842663246,8.816802536804779e-05,0.0009406007551606946,0.043385253160274265,0.05430682684295613,0.003128465304422895,0.0019859344068617934,0.04227317023901652,-0.02949216719403938,0.10852358026699518,0.04145302642282009,0.00010767096633257366,0.008110356991142549,0.017800502045545074,0.05530290325347925,0.019351468264716138,0.00013048022478937902,0.00025806294887101896,0.01815789801237954,0.06474788404263748,-0.0011389381766783084,6.844692108200251e-05,0.0036760686879874637,0.02222645636204615,0.07111730468605955,-0.013677263111619896,0.002962190579536061,0.022189902454295248,-0.0090770980860708,0.04710773273918529,0.010462275009912776,9.585072378296291e-05,0.02002394245771805,-0.006702445097326087,0.031107440861552583,-0.015907692121502847,0.0001562535040685363,0.01593191192639753,0.001467027509503468,0.010571762360485584,-0.07529529744633971,6.563561581484804e-05,0.001850345296057077,-0.021680549206095596,0.08742613327443158,0.0034472482022457076,6.23270258776438e-05,0.0037185622076548984,-0.03696983048673165,0.06430423394074895,0.009417532993020072,0.00028030915648341386,0.0025338618799196177,-0.00674099699005544,0.02639869223375921,-0.00149024821987391,6.349742243518868e-05,0.013081461843042822,-0.025362523942174486,0.2931548422926992,0.024159459600685215,2.232166999881807e-05,0.003599188121419911,-0.0003849392086208663,0.0011186349593462022,-0.020679285613427384,0.0001202853471666067,0.010609653817743531,0.0015679067776753315,0.006793232829656007,-0.003949781939226177,0.0003638075508473633,0.017569225150599894,-0.05312799698081545,0.3033897803459452,0.05619372809187692,0.00010029846604403842,0.005440439101943754,0.00017769132634455807 +2023-12-11,0.00663445171017248,0.05223065933659952,0.010353972120658445,0.0001343278652827582,0.009669873717726348,0.011237942161897314,0.03812308845432327,-0.050108208968147376,7.073090948007095e-05,0.015608378953467688,0.05870859644221904,0.21361608536352844,0.0963104176816779,0.0001271349481125262,0.0027483286264809526,0.0031842786284008765,0.004035335411733705,-0.04222853626942706,0.00026631723907034356,0.0026630048976821704,-0.001129410359555054,0.002671872079387918,-0.01663115021574583,0.00022117390082404,0.003325066919455703,0.034192213437167315,0.08861016381546698,0.1630679289540075,8.425397823494272e-05,0.0051333097512214956,-0.04540225761430097,0.17665493948138983,0.05108070986626916,7.541218398860247e-05,0.009078642810074368,-0.017544744513047418,0.14059722344056957,0.031226296607494607,4.279262408928233e-05,0.008681085002255668,-0.023968982477779042,0.019445284388889726,0.0368336382886067,0.0009505612046709384,0.014023438746219075,-0.03370692870043955,0.0786939864018306,0.04675536956202018,0.00014977506710804896,0.0114279812565334,0.006104989354677671,0.0034979351731252726,-0.0011570301833370626,0.0008530952282715515,0.013043924372285798,0.004913350441972503,0.07717619950819309,-0.07401263894415025,1.897217588752611e-05,0.00011941098340965289,0.00957329004854278,0.027597449766869234,-0.0026785086859821947,0.00010304888655559003,0.03134897322154665,-0.027281814853360606,0.16950667367105857,0.017853700565643966,4.5305223172179454e-05,0.0036671403438016297,-0.042527342594899153,0.038152102636783404,0.04938655395138288,0.002174066082172316,0.0030094196277829556,-0.012636715129066839,0.07905762786571616,-0.03724787744727797,0.0001315353618542147,0.0215239949717006,-0.06844248575268386,0.4093479448909771,0.07297500314234244,0.0002589055688004385,0.03800106404752642,0.0989153063544894,0.5835171686866076,0.21436850246447384,4.774971872674887e-05,0.010585413007187672,0.006074475264528607,0.029149783486272375,-0.011748918573759384,0.00034344740717643887,0.00891129032981736,0.02770047442808042,0.39021575209830683,0.035449096445115034,2.945863651179185e-05,0.004538477043053119,0.014954869961780906,0.14497341162873864,-0.0012616465451867661,3.4464818117351744e-05,0.002568171478102879,-0.008798077490004599,0.022647291991482233,-0.041071425350594035,0.0001251394549558093,0.012152570264481176,0.0314955787707063,0.201529932794242,-0.0030733719853842222,3.609960164064913e-05,0.038839183115783056,0.009628996247754791,0.027296463035293986,-0.0028217738182368915,7.820815186371536e-05,0.001828657276688822,-0.008768907833776927,0.034528231775400035,0.0032710684611900573,0.00011612340524392903,0.002318559138086351,0.029614326623559853,0.03550214650196915,0.003041001554287256,0.0004767852501547687,0.0033828063038333104,-0.007133174642904057,0.02856642550641729,-0.00045855074383697504,0.00010510248036401648,0.011537531748502788,0.05798567720136916,0.23560805303877644,0.060222666351436284,0.001579609648366033,0.028724644105941673,0.026479714517944977,0.2785876238000093,-0.008686329176845994,2.444182750576642e-05,0.00028813051902668637,-0.01534146851637758,0.053687290433414865,-0.026947551890183125,0.0009342577668529069,0.007917788642009106,-0.0042005178871013646,0.035359387638645705,-0.025608609043241564,7.910860868110854e-05,0.008372022574026037,-0.010467174506250529,0.015739636294171543,-0.014157965638342524,0.00015695680813743867,0.0012720700823442969,-0.03239054886736805,0.044824820559908024,0.012007551326884785,0.0004147664900129894,0.012051944490370604,0.015388009543156122,0.05896866092058353,-0.04928271213758454,0.002022607076349463,0.018226506326091844,-0.004454869313141263,0.018581890249774587,-0.017135814550291478,7.691932207492317e-05,8.14823158996926e-05,-0.03469076792669853,0.04799422331801556,0.029976796389977887,0.0017968099235927575,0.010758495519548371,0.030131462303995438,0.09045054676197005,0.0325111796878174,0.00013198514348525866,0.02097860631789484,0.005614030368540815,0.01492714865584327,0.005533869173393273,0.0001524608286137816,0.011456123877119901,0.019272174359370436,0.08410631701757018,-0.007558894469363407,5.592629193558288e-05,0.0025630317171903443,0.018969876345400555,0.05685505395060767,0.005100134652055363,0.0031623758292453606,0.023676336599709465,0.03171735885897465,0.1424168207894076,0.011292142553864097,0.00011078381075722407,0.00409599549264299,0.031193418049498517,0.18856521686832609,0.020910407827666892,0.0001199671012235358,0.004574184528210986,-0.02436306162779976,0.12547130140053572,0.028897013516432243,9.184090613021133e-05,0.003420098647742861,0.00781997163550946,0.029984329657103962,-0.00045832831221994714,6.55478164167938e-05,0.02396853503876488,0.011546485743920278,0.01942773249921186,0.0008836285188475478,0.00028977245667492215,0.002907402643839553,0.023633741121139976,0.12037325556029783,-0.010068595962015653,4.882214357201609e-05,0.0033520652480906145,0.020073074079932085,0.21287440104296204,0.010581195418282978,2.432885857467619e-05,0.012261465248088141,-0.04095740166021703,0.11813367974101056,0.05318128065544893,0.00012119023558892343,0.018786227017266764,-0.019202303334651196,0.08145743207904003,-0.020435721925920663,0.00037157850393247676,0.0035510951546417332,0.009501171719940974,0.048132982286377815,-0.01475059549923943,0.00011305927398703718,0.009409775600538196,0.0028972418971661773 +2023-12-12,0.0001265435443988399,0.0010173514580885227,-0.0102282727855643,0.000131539312192788,0.016104260829134874,-0.024663191964959606,0.09019525549477382,0.018306248854310883,6.561091836991757e-05,0.0014130990286141789,0.04276363352439143,0.14270932728870717,0.04075736918226629,0.0001386179413150957,0.006595945640531117,-0.004105776615893319,0.004108259145942759,-0.0017075871719741443,0.00033729145780016917,0.005179498941992939,0.016557982997451873,0.038847569709366335,-0.023730513120556896,0.0002230187359436131,0.009883814000012987,0.0018297932199757034,0.004937875220795674,0.0014996144646329424,8.091120007495525e-05,0.0004928277454147495,-0.026171650711912565,0.08309789243336746,0.0019328608609796897,9.241255157928701e-05,0.007602011242358604,0.005664600301888177,0.04659298102142971,-9.77144792455639e-05,4.1691487273878925e-05,0.01697964207998676,0.010274539849880606,0.010593645825945833,0.0036222027162387395,0.0007479313172701331,0.004104519178562773,-0.014429284436998075,0.027998886365658098,-0.11829443424338175,0.0001802046208031574,0.033196474504491195,0.004560281682383392,0.002888740860394149,0.00011227815127633286,0.000771627048769252,0.003510889327711655,0.01776208651753187,0.26650772109741194,0.023689735991733858,1.986126814926935e-05,0.00019780844600703366,-0.005551610266133437,0.01599895460904826,-0.07266905975721052,0.00010308094748889571,3.120934050774215e-05,-0.004292099037438096,0.0238842058807452,-0.03512367286930085,5.058488263325111e-05,0.0006113410637766429,0.07684567438372651,0.06332839277251835,0.15533077120987718,0.002366703934203803,0.0028838172871387263,-0.00068259702840278,0.003968725912736657,-0.013563891050330474,0.0001415355035233665,0.007570493714730526,0.022518989795239176,0.11574714901711446,0.008767010134918317,0.00030126371925129906,0.01064318102680386,0.019861658689184533,0.12155749936509631,-0.03184727271544617,4.602509707289841e-05,0.001023653314489415,-0.005048867245795123,0.027850084893084114,-0.00045110525431740626,0.00029878186628975426,0.00021372350436456083,-0.006788197298668085,0.09171835321780095,-0.04290805151510393,3.0713438436258174e-05,0.004851701333613607,0.0033846821510249967,0.03567048921223615,-0.02706313712796328,3.170228271634145e-05,0.01320129911934943,0.011540805364406801,0.034574267681406555,-0.0018313604186119803,0.00010752411642693471,0.003429588306975786,0.004279620823642505,0.02974000364223181,-0.014949043057048382,3.3239665962057044e-05,0.00669948643334026,0.001537021562048956,0.004450395921212567,0.0003829354922868966,7.657000816900111e-05,0.0034125257917029528,0.024417301068488693,0.11240269373621285,0.054095914920054854,9.932750680718713e-05,0.003401917282908338,-0.022619444939722726,0.016912289985083265,-0.029409735606291277,0.0007644605671597765,0.027176055258255533,0.016310228235512484,0.06343145868356807,0.02674647842286195,0.00010822842758442487,0.008135183050585965,-0.023836927973751677,0.07995904753246301,-0.002222545239850495,0.0019133827166315997,0.008514271220755716,-0.012448239209745903,0.1294773244147559,-0.04391626506648147,2.4722728766126806e-05,0.004143675822232275,0.05501447603106694,0.15657512907019172,0.02964744383571309,0.0011487498624799582,0.014756659942034367,-0.0025248404530957428,0.0191794639523676,-0.008323259064578693,8.766437042858096e-05,0.0028036994664360215,0.010520702693063327,0.01731653855086381,0.005408530639776326,0.00014339336293189004,0.003534075005064046,-0.038296217154660035,0.052243586164857775,0.022687010129949232,0.00042075260187767545,0.021223515340442842,-0.023482528603403333,0.09313982608157145,-0.009486125666883111,0.0019541584661996307,0.004751249388893084,-0.03559865153012626,0.1719756299939476,0.049980322362191916,6.641359793539407e-05,0.0011085464799367901,0.015521918811681797,0.021119936339521316,-0.001752559322418363,0.0018269640200596362,0.009985859674907902,0.018618433481131725,0.06492101308565705,0.013178037697360107,0.00011362499723615572,0.013545589761597438,0.00539009687440287,0.014520529700925896,-0.19182445681977084,0.00015047851173745404,0.002394397113213799,-0.07316685021086859,0.31439100251155966,0.2498572703502823,5.6801286966649256e-05,0.02168080839883287,-0.014869070399553912,0.04512527688581621,-0.012341382143737444,0.003123071994556687,0.013422726511239314,-0.006318982629756264,0.032110657204203,-0.03455376409751683,9.789004720610868e-05,0.008520104418571558,0.05003024391523555,0.254654424543598,0.07105626803804248,0.00014247615237320685,0.00018317762976687284,-0.011205542131388248,0.06088833523992571,-0.13713278620271727,8.704572993458014e-05,0.0035426016300484486,0.02402711841832978,0.10094613116711898,0.0035722915015563524,5.98217901139088e-05,0.0015180782853500266,0.016791212952084307,0.027298925256000365,-0.006217471846543664,0.00029989271374157686,0.02220430391582648,0.005009619546119319,0.02113364085498367,-0.1644884570616145,5.894470491464556e-05,0.005685526222685592,0.011954274224699255,0.11285541367172702,-0.005873533403274378,2.7329526197959366e-05,0.011571472181625263,-0.002925860059785565,0.008825209490227791,-0.000943985707831622,0.00011588773952959304,0.000900907845778825,-0.004289291669921075,0.014966564093595973,-0.011249177181455666,0.00045174300880631055,0.0068323532459289545,0.02159928411216942,0.10360455426290183,-0.1407463491969027,0.00011940769267003433,0.012340761496002023,0.0030522874865272437 +2023-12-13,0.004233794295141117,0.024665573513494167,0.0105669454308189,0.0001815202660262334,0.005396878761507207,0.00782839822745032,0.025342750844162886,-0.02792625915820392,7.411902242340361e-05,0.00011962409766223966,-0.015480825846031008,0.0482871609393196,0.00471353149005221,0.00014830631972140719,0.0019147385652785397,0.032828677919264214,0.03245346439552801,0.11981538109079959,0.00034139738091862527,0.007097006615040365,0.008210183344215754,0.015074256096865591,-0.09289607789938513,0.0002849802339507967,0.003071337874861569,-0.0015122691754244123,0.004371090708138695,-0.011041915543761473,7.554157247283011e-05,0.007218176542609874,0.062178321182884445,0.22369315902791811,0.08629588126514427,8.1559798541707e-05,0.009781048678454467,-0.028120057879995147,0.2757450053591131,0.028692294619006235,3.497092904813122e-05,0.013633777440268799,-0.01395117728516698,0.012400876255244598,-0.036082861475902624,0.0008675674917268804,0.006408948777993082,-0.0070585805366498045,0.015923205630521832,-0.022384228357919565,0.00015500608845957827,0.002790429541249775,-0.022468874568751976,0.016184676655515966,0.03518606601706268,0.0006785809302613564,0.007195461663941444,0.014720087714014934,0.19762729069867163,0.038097022802546385,2.2196590526328133e-05,0.0017643945893217213,-0.04292563316152515,0.11984371652293953,-0.0964180738057482,0.00010640265848989862,0.03215431166840972,0.01210999503826708,0.06591158598997292,-0.04527267070909435,5.171827387107266e-05,0.0056898770405283865,-0.02627545845594212,0.023301886138634362,-0.09711981258433176,0.0021992884787648175,0.016108170125606936,-0.05417200220736005,0.37353976659466626,0.033673015033245046,0.00011934113177700183,0.01421509806339464,0.004212102340118159,0.021732048660447065,-0.007583702648633386,0.00030012797477868574,0.026305324942766484,-0.05303105854859701,0.2801901659477625,0.05364502613563186,5.331364350889422e-05,0.009359547867660856,-0.00597048082034208,0.029444286653564064,0.0004318135513457335,0.0003341912524008475,0.013062056961635694,0.026395852781710482,0.33351333473266864,0.041324086821814356,3.284374910967867e-05,0.008776364483351045,-0.029943374539376472,0.3061313517115638,0.08772364733232418,3.267944276827265e-05,0.001977579043808839,-0.0333224500830191,0.09740657686870842,0.03130236688792321,0.00011019741336212224,0.022613751643887188,0.011987765469353878,0.07593732094911754,-0.013196297440164493,3.646492650419304e-05,0.037714155736287266,-0.011310375490088898,0.036125558600234545,-0.008662662833698117,6.941284328168643e-05,0.0094562225832662,0.012554574577082417,0.03910899540768867,0.007704445838512283,0.0001467823836474242,0.00031152452463098783,0.0039975628651628455,0.0038981841691999933,-0.025918893920334776,0.0005861496500902682,0.01913946066447723,0.012435453161928333,0.039969106389225864,-0.05562178323320341,0.00013095533218212342,0.0014604017185956063,-0.017229059232197974,0.060058497901230426,-0.018753499319717704,0.0018412224971922613,0.001349997815070266,-0.06085185984028636,0.6443237763499691,0.06547527105648017,2.4285770908184716e-05,0.02801239411493022,0.04687733839740608,0.13010895038792156,0.06692517761051915,0.0011779505024377105,0.012578750735659762,-0.02262119728454103,0.146947104568457,0.022209825545227133,0.00010251329605602027,0.011713191269469342,0.00018761532870794492,0.0002989036326879717,-0.05357472734649152,0.00014814346953545676,0.0009805174227244403,-0.015728968878825175,0.023257586011114086,-0.14590054771765482,0.0003881856985919092,0.0014644946857174223,-0.0028612866824706293,0.010114581051676503,-0.04359397472508099,0.002192622244358269,0.010417919844349269,0.000942047203839588,0.0035904102044305992,-0.0032958979992434483,8.418194692105224e-05,0.002087394968300994,0.039756258309492545,0.040451901108252,0.013443184102758535,0.0024431141476406876,0.01742145491604891,0.024363847698679903,0.09372629160387169,0.013524734319205449,0.00010299128541959585,0.014511224391357581,0.02651407581924581,0.06897878942254838,0.05042582300820141,0.0001558193189125603,0.008504514195871163,0.05338090806438177,0.21527083432748528,0.06067768014214363,6.052219748491248e-05,0.0029163164861189346,0.012271355219749522,0.03598331026493468,-0.008777473776956816,0.0032322837009722168,0.005060954068089966,-0.027547095484890538,0.14934891939516162,0.0489811743361348,9.175173818265266e-05,0.015700472221596953,-0.0015705823724680172,0.009897413831409229,0.002350516104283975,0.00011507997895862326,0.006093796173306028,-0.01405978565098302,0.08795602694170507,-0.004660610024502044,7.560696321246504e-05,0.015569739874150858,-0.026734571786714095,0.12294630930864708,0.04358843693938578,5.4651883123533126e-05,0.00046140716956751416,0.04488441186103573,0.08975442711070905,0.04655765978513556,0.00024381984658387247,0.01640406519510173,0.006091608077123771,0.020930875686051332,-0.009092691814915739,7.237005978849832e-05,0.0028268619354962906,-0.008388976125417889,0.09562628650611525,-0.07704110780333892,2.2634085542544172e-05,0.019462214836066118,-0.0037521956903252404,0.010571072656945091,-0.010208386915525926,0.00012407245825544835,0.01465619573111123,0.022283166300393273,0.09658473309207154,0.021472702195374133,0.00036366071508715336,0.01177359956350961,-0.0002852834735359886,0.0014876979746252202,-0.050971877427934055,0.00010983320024244505,0.005763805237091186,-0.0015652040967942616 +2023-12-14,-0.010414383919363994,0.07231324632331722,-0.0824061174340081,0.00015230084362506096,0.010080548357364555,-0.006440624217060861,0.026423623947447666,-0.009594564039535194,5.848521722005274e-05,0.027457889215879317,0.020687658233529513,0.062271928744891195,-0.023085638001736554,0.00015367959952003414,0.01781901175095314,0.010444324675509818,0.010330144121811321,0.005097907600871623,0.000341225783490581,0.002522703336375597,-0.021018362735727394,0.040584511252503425,-0.14458049554221125,0.00027097943622616264,0.005384429119912542,-0.001188209165673263,0.003057575159602864,0.0005981309502844267,8.48520807390158e-05,0.009491587289602069,-0.03267408394274119,0.13131576818149468,0.024901738464923766,7.300899951144247e-05,0.0021862325053988276,-0.003980512503558232,0.03127671300144074,-0.018122705270073515,4.364319151866907e-05,0.010028378848542331,0.03014040715653227,0.023122371445374258,0.04100461163159396,0.0010052209421304206,0.0074080298922048725,-0.024819206516290895,0.061474360034905744,0.037288505709252684,0.00014117433895224053,0.015590863375306309,0.008324663022630605,0.005940668400001516,-0.01948472390360901,0.0006849450153671518,0.011495068203768673,0.016514033376760662,0.21920638325677028,0.03729712352894863,2.245033112312216e-05,0.008346283893807134,-0.007882563965284877,0.021287996075291016,0.0020095370654508653,0.00010999773942670751,0.011790359270056268,-0.005803696340710819,0.029900921767133517,-0.014189525244035741,5.4636380761705745e-05,0.003692921306234833,0.015267102506093344,0.013397196698636529,-0.0003279436713903304,0.002222622263922329,0.03289805399154486,0.011330299584759573,0.07926645538644127,-0.02353731096335395,0.00011762619890409948,0.0003494608457503118,-0.005828922299665935,0.02982678436768653,-0.0006529478949993074,0.00030261472983407017,0.0039225206022332855,0.052693547972555134,0.3517306294807887,0.03615379001780076,4.219958774310391e-05,0.014445471541244079,0.012278954062416003,0.056154449565847225,0.0020572149044457097,0.0003603827603770883,0.010530886590580674,-0.025359538750390997,0.2896542077729744,0.004000988945366326,3.633220362970444e-05,0.018090804933641708,0.016151858520425853,0.1656992281680877,0.014837542842888627,3.256744777814794e-05,0.004089643438131401,-0.027210533164300627,0.07178106372310977,-0.06982209808137867,0.00012210963059098394,0.021408840839881066,-0.03606967061025704,0.23070357070150266,0.01938324486635734,3.611438604186629e-05,0.00940612281038655,0.005494261214495276,0.016218858228099754,0.010472614084408676,7.510457761906716e-05,0.00789659058405873,0.007188308199313031,0.03116532687943694,0.0019300690058255369,0.00010546384443892131,0.002785726674173988,0.008393506143916993,0.008313416103948973,-0.08380914915226767,0.0005770845610780551,0.013893884981068451,-0.010638585916251234,0.04433079458963899,0.0001581332275815704,0.00010101000639898778,0.012660305177671213,-0.049607177250614004,0.1841742459842942,0.057258839989151454,0.0017287603358835653,0.014432162621696706,0.0035993824681446627,0.03339136558080598,-0.01805318144714494,2.771890128551919e-05,0.030836024033372454,-0.055895503440013906,0.1356591934148783,0.06854967883044857,0.0013470971314059994,0.010034641696511375,0.015653195174059283,0.12801959237126406,-0.23419507202957254,8.142395688386938e-05,0.007815367848109695,-0.01605203452389894,0.02657733300757336,-0.04442072894049303,0.00014254896663022426,0.0068509226137988466,0.0132319538208767,0.01973287083115379,-0.0754610237508051,0.0003848908770661036,0.01574915651244933,-0.010070004778704261,0.03792539522795979,-0.008375650055381632,0.0020580214761466023,0.018500668848099477,0.013280559856078419,0.06038102914805939,0.0008555009439518298,7.056774553279772e-05,0.005440860521932907,0.09389159588446257,0.151833585239978,0.024048375196329866,0.001537220139204472,0.01489623680051476,0.015155344842065764,0.04174959547710606,-0.012548658102382957,0.00014382341193259538,0.0034759437044076576,-0.01150299281954608,0.033496376710937414,-0.006074772858522398,0.0001392109485517571,0.007051119462245674,0.046258565913180415,0.23130502939144376,0.04722251871776279,4.88113718691159e-05,0.025911376640843753,-0.021986464837520286,0.0631571913932644,0.007375691391824686,0.003299519162061856,0.0036266756151940474,0.04375743560677503,0.20245078927316257,-0.01472972118646926,0.00010751596538940674,0.006620704550822717,-0.02847366261080804,0.1357709488214803,0.03631209484336472,0.0001520888114856893,0.007539032589478885,-0.02184107443418293,0.1306885304309933,0.017015249841332247,7.90469692477779e-05,0.001063655858071512,0.010348885424893864,0.04722644172163331,-0.01227394534010738,5.507515763002539e-05,0.008357384714436908,0.013452579590908986,0.03037823612897552,-0.002584071221286907,0.0002159098276459053,0.03786039285903318,0.009443727519795005,0.03851630868326955,0.016200583412333335,6.096957463768699e-05,0.001188787778657247,-0.028251823708075288,0.2845470536093109,0.01083725697555255,2.561672936379198e-05,0.01905577460653307,-0.014228991662266433,0.04590132850470307,0.005406231217669665,0.00010835721495945157,0.004940321688454863,-0.045155003638519556,0.1956167043538758,0.12782721688659981,0.0003638546375608717,0.004998074353921724,0.011800931186401353,0.06097420201340196,-0.004249611563731897,0.00011085159556838873,0.000542982626008703,-0.00012009114457600916 +2023-12-15,0.015682066986144567,0.11512820745582825,0.036232030016260644,0.0001440483028190588,0.001032911119437729,-0.0070211436134301145,0.025233039355405593,-0.10787941995526494,6.67649945513062e-05,0.0017448682807456638,-0.018094727378463123,0.06069491489636705,-0.0006427278997961714,0.00013791037581424063,0.0177655909884883,-0.003109789599866072,0.00357417897255843,-0.04396433219319707,0.0002936449711227019,0.0011699696342663815,0.01327565208680484,0.032698263778584716,-0.028000802854994,0.00021243640418750742,0.022670618836800376,0.009741749833051429,0.024883329850062388,0.014778029155264116,8.548210655122994e-05,0.001162815450833747,-0.07470212087408372,0.2457321652692572,0.10989316250876317,8.919916313002782e-05,0.0020821508356128077,-0.015694492246547422,0.14610692024292993,-0.016646546624518185,3.6836223374577466e-05,0.004332924337117662,-0.009408357224763327,0.009755068114956357,0.006853560557400364,0.0007437522270014826,0.00830560191211262,-0.00989579975503652,0.02006741988804334,0.004355340066921278,0.00017243334263336105,0.0008324115439518405,0.013859788176937693,0.008836234570650994,0.01953179394118388,0.000766679259655284,0.0025883335577176355,0.010160408052904362,0.13530245807924704,0.004878083139562017,2.2378359834099086e-05,0.014105385384185723,-0.0008219622442774933,0.0022615344029710436,0.00048133212992193536,0.00010796915647942102,0.02997919170076501,-0.0017394454747821167,0.009704710742407025,-0.004243747954344323,5.045335405558934e-05,0.001560623609351337,-0.025727522131816363,0.024459345490383977,0.015486504954702258,0.0020515216358717157,0.00885440460685722,0.05546941549183237,0.36302638219089833,0.08774635138288757,0.00012573827838326235,0.0025026114477809088,0.03838740752105119,0.22411265072230968,0.010816148271520429,0.0002652348842500015,0.014808528686149573,0.057403615304895836,0.36352705957455683,0.055227308937778136,4.447986471535579e-05,0.0315883138496964,0.014142182110393501,0.07812791299859766,0.0037080473737058335,0.00029833005592557404,0.005388743475778977,-0.01259566380095713,0.15073069001768907,-0.0003995759323048697,3.467764561669795e-05,0.00811233024698859,-0.015437559716302882,0.15137120982491856,0.0063966530235290125,3.4073526002284715e-05,0.016167188118376877,0.042410462891099725,0.11261755031201336,-0.06224336825475263,0.00012130806972398727,0.035127005088497,-0.02586480591023916,0.18374247259202448,-0.00924607663082999,3.251562031029866e-05,0.013544288141259882,-0.018968150831371364,0.058978531404895104,0.016780546576205563,7.130310175843868e-05,0.008830109383755669,0.00497229113562555,0.017621130689527593,-0.003989204540540781,0.00012902425876299526,0.0050049009070625506,-0.03142196980931292,0.030473181467503496,0.0250754806010739,0.0005893742677424471,0.006837531887250482,0.023365433032477945,0.08910467039481064,0.031346362835167126,0.00011037211766318305,0.016566370964215264,-0.01831102745512164,0.059797343796903,0.006395479665977772,0.0019653956725435642,0.03549614933685961,-0.010884321833074924,0.09993963257923726,-0.022275586654287333,2.800566061684444e-05,0.01976298174154801,0.010509450879049293,0.03172097161852215,0.002382757506515893,0.0010831904267534851,0.007194226761452532,0.012691984877708201,0.08730096604272142,-0.002570989309789064,9.681354875595562e-05,0.0023696747302044373,-0.026801030963703638,0.040616924245623465,0.010900002932570874,0.00015573630048252974,0.012150327976978986,0.01369561218197252,0.02091698932588366,-0.05172260965192388,0.0003758254521583507,0.005755616032045769,-0.0020413955977007744,0.007132245325884137,-0.018175040265130202,0.0022184581579951777,0.011099003974023925,0.048854823177229126,0.18372062534407102,0.13209663422141774,8.531784969242575e-05,0.001572548469194459,0.05562315775266921,0.07893357079470735,0.02098156281244615,0.0017517457894431897,0.005643189879133573,-0.013299972723025884,0.04488537301211489,-0.018334276695432354,0.00011739833784734137,0.0045741527914527295,0.007879286619128218,0.018400077933283864,-0.014918508125780166,0.00017359116285195267,0.0012888711193307166,0.0069443495318983256,0.025538556323485825,-0.003571620552435803,6.636653656736607e-05,0.023885108727283784,0.04939855111401061,0.1562963263197469,0.018078856417652972,0.0029955977708982042,0.004415340031059358,-0.0434193633051684,0.21848519882497414,0.07291329266530361,9.885576476065208e-05,0.008682191829569015,-0.01973311658313143,0.10824618271068116,-0.05929050483178756,0.0001322037810284138,0.0028523116599515953,0.01778077817434502,0.09625307678517506,0.013156867702826269,8.737452781532848e-05,0.00851283074605637,0.006988835309830618,0.03653000361230395,-0.039308190237799044,4.8084210121414574e-05,0.004424102503148312,-0.04203395015657207,0.09256751787069446,-0.10193024144857993,0.00022139661696469912,0.024124221742676952,0.021527713640307183,0.0975015899673187,0.05253951548975454,5.490357017142334e-05,0.006737452093572567,0.009729178572509285,0.09056727101264132,-0.008631382442660915,2.7716359028530488e-05,0.013838755963125447,0.012009045192119122,0.040015090424281946,0.014927140448108453,0.00010490438475813983,0.014472550756146521,0.004660145290935646,0.020499878811647936,0.00523732551102084,0.0003583241953556141,0.011766963935831272,0.039785060892009685,0.22050745337266953,-0.04112264356497955,0.00010334002194758376,0.006191664355110071,0.002882815257589234 +2023-12-18,0.02189725596176059,0.15486410831641007,0.050182226748879594,0.00014952902537531122,0.0029496396510965755,0.0014502793428889987,0.004661043970872241,-0.0026403225699737367,7.465845318892926e-05,0.011756284637345078,-0.0005097330657830177,0.0015748823382236345,-0.03379724341740135,0.00014972416461351003,0.03296805269431553,-0.011849784157097802,0.01124560476322665,0.010737161075193399,0.0003556276175422865,0.004873540660764729,-0.013083961077706215,0.025473130597190564,-0.014635688753614295,0.0002687538495301302,0.008607820383448596,0.007963998701925582,0.023211304589145273,-0.017669806236782454,7.491665357054046e-05,0.00964904141235867,0.025808987745940287,0.12165427092163277,0.016444391881406763,6.224915583217717e-05,0.012832381615705959,0.0005522548249342065,0.004612163535110885,-0.07705195831995627,4.1061370017237186e-05,0.001426242989606054,-0.005194918304841918,0.004031999524389979,-0.005904098290269742,0.0009935804478509473,0.0017419755748168996,0.004969507810833949,0.011166460991722272,-0.027486103837841218,0.00015561795748063166,0.012720323289159782,0.003152005874157426,0.0025424436455091437,-0.04340865890305569,0.0006059824422314767,0.00334710664399767,-0.014791189182491478,0.21967339998566912,0.008954975832562708,2.0065427151028824e-05,0.006036187055369182,-0.03817267545895036,0.09519961647867797,0.025665238701605576,0.00011911554415396967,0.0038232453891464116,0.003069940944476489,0.01809458322025388,-0.00015232308018462443,4.7757683737606575e-05,0.001132270670966144,-0.010380957359018861,0.009262556274628613,0.009596993739646436,0.002185896124823974,0.010381918021635603,-0.014115595018624472,0.08537982857321752,-0.05436920735458684,0.00013604920836926052,0.018393409127925208,0.030353458886487522,0.1435293665659547,-0.05344715318289139,0.000327473115339255,0.008525280339194816,0.028842611229082306,0.15384492800947838,0.007352350210543909,5.2809535700728875e-05,0.01722790460167543,-0.03981508203742738,0.2617862884019423,0.044148067275176166,0.0002506614378908191,0.0014803940182037362,-0.004781276658022663,0.06525421223140583,-0.004051080218852885,3.0406438484570908e-05,0.01660773346141934,0.008094418953039811,0.09793760878568536,-0.012561441075188919,2.7613273332556612e-05,0.008446288939611427,0.004880528846668572,0.015771318226053575,-0.04533127999327196,9.968312515318864e-05,0.010455866879286848,-0.020743299187629082,0.123240111960286,-0.029608681464357856,3.8879271905418176e-05,0.0025537908989073247,0.005979822695779302,0.017757937270705192,-0.053458161635406516,7.465745341503612e-05,0.007843352623208299,-0.0025520560133005057,0.0091342763499317,0.0008755389556496104,0.00012775110081967575,0.003279386639854732,-0.039409583080138984,0.03606624949271984,0.02582596729903619,0.000624563239771547,0.008493186218962643,-0.019250342709514038,0.06441838177915774,0.020209528568994,0.0001257808900918869,0.012149787910812128,0.01337053965249572,0.04908236425406093,-0.007187558842797027,0.001748407403717437,0.02257185535075311,-0.013655851737896855,0.1352891893508479,0.00014234697187890153,2.5956007666386806e-05,0.029651968079362163,0.0010432793771381222,0.0029946953488063544,-0.11920023505496062,0.0011389882512421801,0.004460135346046391,0.012525342844254632,0.09574726850146427,-0.026355123972838762,8.711418387262811e-05,0.0028072816663353454,0.002128351670763297,0.002878723610246816,-0.004950884208179804,0.0001744973376589433,0.0026474840831589228,0.021055876066518455,0.02536274151073331,0.02741893380108775,0.0004765198912455926,0.010570835055721761,0.010806749561642796,0.040312505470022054,0.01579700382488416,0.002077809068460043,0.007185380817152923,0.008151319375411881,0.03344700196320295,-0.021737717712236468,7.819177720368207e-05,0.00545567996758786,0.019915099053037955,0.026219285112131927,-0.005063912697957069,0.0018881601019685506,0.00805109233936168,0.004721413997722237,0.01718927301058053,-0.002440879242517905,0.00010882548476281068,0.013357053163915883,-0.0794822894178121,0.19374144229375992,0.38406992913864446,0.00016630611399541542,0.01066455473486026,-0.01896248181508745,0.08953649189005622,-0.015489833330624198,5.169029705136293e-05,0.004838024140476892,0.05229303517963338,0.18716068676382652,0.018106334728111483,0.002648178636079182,0.01641431459467567,-0.00900377407759167,0.048487840983560036,0.0009455645629927749,9.237029128229098e-05,0.015442409890803257,0.004656162017710597,0.026785190986605614,-0.011734328734061487,0.0001260648817605818,0.017132063225570055,0.0016057007567365034,0.00821623983982491,0.003516988970717982,9.243579963698883e-05,0.0064388880261282075,0.038291294122501304,0.15653094017880215,0.02822974037624736,6.148189508229508e-05,0.001250016108743688,0.0307609483659012,0.06534424360496312,0.03954092458389865,0.00022952065766362415,0.007748537017515902,-0.005236519289179423,0.019982452929860527,0.0010218366488370136,6.516408250711193e-05,0.0051151861936655505,-0.0014750834601985013,0.015430912806569795,-0.05441238523801891,2.4663588261856603e-05,0.018820718371649652,0.0074900000907745365,0.020832639444031985,-0.03205973194322198,0.0001256743043773387,0.01803950522320771,0.023520722321662732,0.09368457301715657,0.047380083081988066,0.0003957405417385663,0.0037445164133900633,0.0028117702585034733,0.01580591122281073,3.1428717635071246e-05,0.00010189012394819307,0.010456589474020625,0.0015098048300601096 +2023-12-19,0.011503519884553559,0.0917595295467112,0.015364596135678794,0.00013257637901103024,0.006462972679767171,0.0020935850817515034,0.007817554757252144,-0.020277296935866,6.425844468862529e-05,0.0022174813468082396,0.01933431426109515,0.06887537949875461,-0.04234141347177546,0.00012985598566129467,0.00017722826215121174,0.023654545182813264,0.023130226203949326,0.0031430954605440892,0.0003451457884356037,0.004360191070964762,0.04261672858028838,0.10750606774462446,0.0938450852916578,0.0002074172652805645,0.016163786966542186,-0.014251028395611777,0.04383102045771849,0.0088998100727755,7.09923190875968e-05,0.00969885724713433,-0.021527631568686287,0.0754223990337122,-0.01208089882080993,8.3750183070456e-05,0.050817706891510175,0.01744361940847959,0.1422997452823218,-0.0038690608666198706,4.203693994590604e-05,0.009249797768361101,-0.031266742175375034,0.02916099842014858,0.053709109177654535,0.0008268467614952688,0.010985131738685336,0.013145645450799168,0.026018885794493376,-0.04298415773339852,0.00017666686659185583,0.02590763036258263,0.0037808754599767845,0.003001012868370743,-0.07382521253087787,0.0006158130283303432,0.0073363257391714926,-0.009101798361090775,0.11905563188099555,0.008166816843780818,2.278243055251375e-05,0.008176384427947074,0.021934251582361175,0.05119222091914478,0.004852634055610868,0.00012728284879521707,0.03199267320588773,-0.030978340675836304,0.17748401363031654,0.16991662938131658,4.913157975999281e-05,0.0015856683030610356,-0.017038509551589198,0.017574049397069955,0.0033930480389324203,0.001890961696623858,0.029407460822655385,0.0039283663168953225,0.026325792245448686,-0.024776629788576553,0.00012279555227893738,0.015959709750928284,-0.03081549725266459,0.17530883504416186,0.006993873455574143,0.00027219090415151376,0.006177975597245308,0.04493671795055939,0.26900849743725347,-0.02937264320197993,4.705397386161915e-05,0.017360110987912195,-0.05512014102465561,0.3227808493474756,0.031061237343336445,0.00028144229753177176,0.02213565899128749,-0.07096551022061347,0.8819817940808587,0.07536213148174145,3.339011696134349e-05,0.030986744101186858,-0.019653946301894785,0.21886491946097977,0.031612440596916556,3.0002353067211587e-05,0.020879312598562533,-0.0030636496176757043,0.008777844846156086,0.0034526541377263324,0.0001124278615624024,0.010810358907752792,-0.03180313700267275,0.20289056521763896,0.016421868048560224,3.620766214211164e-05,0.016834393043343325,-0.0021177815775887876,0.0062602787431863816,-0.02943400609825077,7.500062413641298e-05,0.0032238727341086905,-0.0017959739884679867,0.007442598498160598,-0.00719311199898669,0.00011033773054071165,0.0024272705604285547,-0.02034705785178883,0.023382928957350956,0.0017167761580818622,0.0004973684938285258,0.02657650804705606,0.0012220071236560006,0.004857231222025972,-0.045396711159618054,0.00010589390618121538,0.01165652970832572,-0.043802449326164936,0.1423985512033627,-0.05296577249964651,0.001974294791827576,0.04092474842716339,0.016678268803606774,0.17106244797266573,-0.011608470246873991,2.5071393986658844e-05,0.01973665197924926,-0.02712332104095918,0.08124601641949121,-0.01176258563846286,0.0010914706402012603,0.015007240103675495,-0.0010694109055969139,0.007153288121842503,0.011045286333290903,9.955533402819356e-05,0.003023861769726431,-0.008908821927157752,0.01567835369522528,-0.012531543217226137,0.00013411124887815118,6.241416921921612e-06,0.010225484739073056,0.01601264658652867,-0.00878082232317386,0.0003665428060255852,0.01331797111857574,0.0009397024617033231,0.0037626166485355238,-0.029377923090108688,0.0019357565298164627,0.030097156127616723,0.03224721753358596,0.13431558713185743,0.05560161874786306,7.702934462481e-05,0.0050315528479239115,0.009567257956854236,0.011951332832563872,-0.01622080971480689,0.0019899782712927225,0.01213754303973459,0.06711334694246995,0.21146854913842794,0.17004190002030115,0.00012574164813200647,0.02658938427129167,-0.015517103443785362,0.036026515814212866,0.00034039922876963325,0.00017460182091813754,0.004021348668830944,0.026855720091942537,0.12121130586449841,0.01706198457832096,5.407637819086796e-05,0.002319150509298959,-0.08999392881779136,0.3026827808034537,0.11470124183120006,0.002818016649471812,0.012442021939384675,-0.03209140463799934,0.15347284251750154,0.03485425020082884,0.00010401542798081729,0.003559890739090496,0.020372191401506555,0.11946237267258883,-0.002617353162632105,0.00012367086433746137,0.016759232278545304,0.017911158153159624,0.10148396197621909,0.01974001236360076,8.347856087944913e-05,0.00996892988362742,0.02905755323913915,0.14747593751367938,0.009995709700445287,4.9520528548244804e-05,0.013137459724502126,0.049382268070021246,0.09834762927474983,0.05626520082802434,0.00024481415864634746,0.012489578478331072,-0.013252712942926789,0.05467945613911257,-0.0033030696254974395,6.026913810303366e-05,0.013887382400533586,0.011347611112607068,0.1351125717452046,-0.03066218718428008,2.1669054851780255e-05,0.00445144288669032,0.05375914659923855,0.16331771882079002,0.17021677042017458,0.00011506096849049155,0.016323562598979633,-0.003365358527631843,0.01295855818551251,-0.007223012797403325,0.0004093573818154134,0.007963234923452358,0.03076226587111889,0.13397485979911608,0.012202700098998763,0.00013151243110532773,0.01094588547334196,-0.0008802182654980913 +2023-12-20,-0.005751029066145597,0.03432441116449344,-0.0051418405720710025,0.00017718585591539024,0.00208725984192386,0.004762203603101197,0.015398884652848832,-0.03860668255058778,7.420432519239649e-05,0.015130649706676262,0.032214503703843635,0.10479784907402455,0.01395739892225921,0.0001421989142719775,0.007039059903188115,0.0039037416726134277,0.004093780605819368,-0.012754094463971494,0.0003218283976258328,0.0018968195857681346,0.010650910841982058,0.025082328007713907,0.0004005339786561601,0.00022218599395137475,0.004498393545158975,-0.005753107259007271,0.015346241259229,-0.019266039182334254,8.185537251533367e-05,0.00848151278615017,0.02437068041930945,0.10192804445585761,0.013150258485088155,7.015583819177335e-05,0.025276346564404823,0.0017834621434864282,0.015866630659511174,-0.01233642272870171,3.8545865113962365e-05,0.008882710714426686,0.03529911909990976,0.031080652506346885,0.03851644002775822,0.0008758273971162796,0.019285717447364726,0.034254643630490536,0.09750798566898276,0.05118066758107701,0.00012284038113275685,0.0072506381131415346,-0.01751505458228366,0.014594109533887829,0.019740379339513222,0.0005866218724997943,0.0003244324968396982,0.021414487299312477,0.30348726204722815,0.05731214334485475,2.1027614326336024e-05,0.009084244625426575,-0.021797734798432198,0.06129033129489423,-0.027578567318413898,0.00010565022673912516,0.010915709070040365,0.003315524752527894,0.0193944758174852,-0.020952715615906583,4.8121155437421895e-05,0.005782873416336115,-0.02420400226687977,0.01660546408385075,0.016887058402619625,0.0028428840041274397,0.0016177631692218882,-0.032375952996313684,0.2495029136511431,-0.016388239636786265,0.00010678224494411074,0.007889913811080253,0.010106609054418627,0.05398319297827535,-0.037163669029395566,0.000289904615711124,0.016361287671140978,0.08086706666928882,0.46552947971042674,0.06854030371511265,4.893115396889772e-05,0.03915081088271492,-0.0012352947664344672,0.008181523615394731,-0.05768806864563061,0.000248841734943835,0.003222805724890549,-0.03043283266092636,0.40803153897431715,-0.0074374052089530625,3.0951298655693e-05,0.00976289867143321,0.004167588152420634,0.042225405589786526,-0.012561414146287716,3.297559754113269e-05,0.00023367721882729944,0.036035545282081874,0.10162234724693565,0.010246389457352918,0.0001142259114128126,0.014438723431403795,-0.04248888217615361,0.3561595842965686,0.020579981021152237,2.7556435892979797e-05,0.018635364225434298,0.0027623462530094664,0.008964412305152021,-0.02694424864269974,6.831776885707455e-05,0.007683113669543496,0.006734482490936009,0.023396625646722336,-0.0013773714117306613,0.00013161324512929096,0.0018099014645352057,-0.025322033789448962,0.02303558167596517,0.010580119755318905,0.0006283114327016595,0.015879177844339613,-0.02450607257212726,0.09065141123810684,0.01842546341960164,0.00011378503695543866,0.0013952065471357993,-0.005306621710132354,0.02107765099642799,-0.0065959008328357275,0.0016159022845537586,0.005812336893518273,0.019219394605253876,0.18018896324300315,0.014128939037786354,2.7427972947528205e-05,0.015745745200868667,-0.003363562250235448,0.009803278628063024,-0.044279398180551675,0.0011217585623057046,0.028243491610380155,0.028187852320240573,0.18296265846332843,0.041244095456798455,0.00010259475737758282,0.004048107720731878,0.008030315513165956,0.012004498047231516,-0.02092106094393786,0.00015788249836147725,0.00207396396344307,-0.0015626030745244871,0.0023256993764046124,-0.002007481268160166,0.0003856550404191447,0.014270359039976978,0.018019570629943617,0.07973814264293043,0.024780185244200392,0.0017515747027434408,0.0033051843692934154,-0.013053548190692722,0.05113508605976235,-0.011728371109711335,8.190302759861025e-05,0.0038654238482636015,0.017959371666461905,0.02877964741414494,-0.010366296752595445,0.0015512538094368928,0.002761425839874799,0.004682090600864215,0.014529713818968433,-0.009518024147785133,0.00012767291945460377,0.003681532490496537,0.01853394613052216,0.04765121672116802,0.016122312417660052,0.00015767189168458586,0.003253240789637856,0.02607126444823433,0.09877571516671856,0.011414880629178153,6.442075896021437e-05,0.00569470881470603,-0.04565479768963401,0.13001481571867451,0.017542478725455602,0.0033282170095925135,0.019631966841821516,0.002348193279925636,0.014437055181751254,-0.0035312771335037504,8.09088065447844e-05,0.012512000744457881,-0.04214399519808517,0.23175078882872288,0.04837082796605609,0.0001318788851483032,0.016215873227646605,-0.025072163820566068,0.1488771266848521,0.029401314006839447,7.965490741521744e-05,0.01110480834267711,-0.05258473215579216,0.22577760259422075,0.0933706093624245,5.8536426165058826e-05,0.006271722417594596,0.006870606672319605,0.01414548743689918,0.002611888652457286,0.0002368135583599288,0.0064428192189070095,0.0012567409780806726,0.005108694846127564,-0.011592902867214447,6.117164929600244e-05,0.005603052058662376,-0.009888848405330754,0.10617078765990218,0.008374774472764631,2.4031006749661364e-05,0.011438782398961862,-0.021676868946889347,0.0732305627377494,-0.0052984281763982614,0.00010346968931562188,0.0017870933027838625,0.015960920790926286,0.06891591550142734,-0.002352843334052464,0.0003650617937637698,0.006128355870984615,0.006997544808918741,0.028701033827417732,-0.000576882859952628,0.00013964324863371825,0.009283249812702614,0.0012679818837106538 +2023-12-21,-0.04853606164976273,0.34737325321019363,0.11617958212577174,0.00014775927161797097,0.004721784259829968,-0.01721427083459383,0.06131050831095346,-0.020099689477999023,6.736964227544367e-05,0.014347827022345066,0.02579543268090997,0.07780043452065964,0.007813198139822876,0.00015337620891529047,0.009576914689924764,0.0006843774555300389,0.0007295699975572176,-0.004508602109840142,0.0003165895569386705,0.0056386931369916595,-0.016872620954180736,0.03928445311983699,0.014062419844797776,0.00022472925431737465,0.014381050358698182,-0.009427918033277364,0.023520314061889536,-0.04282001688280328,8.752244095961998e-05,0.009665311978061513,-0.03735911690980129,0.1442254805451534,0.011903422689848245,7.600540235783249e-05,0.03617097767004669,0.04654942678672903,0.36896581060943057,0.1368695012576934,4.3264015628270404e-05,0.000759703072620959,-0.01089694383700722,0.007857819629582086,0.008068145424614573,0.0010694178862345651,0.006610672718699142,-0.002074020574909204,0.005053921892552027,-0.0020762980575154146,0.0001434981893158954,0.012626795209785577,0.020466840127214992,0.015380219681031145,0.04389237532668592,0.0006504480510336555,0.001595715694648565,-0.003503089961996063,0.04571879166974446,-0.011819782479226416,2.2833860120787514e-05,0.012977978631311154,-0.011405723265508086,0.03374053943338574,-0.0019813043290994666,0.00010042037674493609,0.01333047702222042,-0.01308739900447845,0.0626967813775374,0.012957576814307585,5.8758393760560726e-05,0.00904762882323398,0.020778764897626055,0.015604593070565565,0.007456595344992403,0.002597109459131185,0.027982161565098244,-0.027898463846580335,0.18797036585347715,-0.0009743282726223545,0.00012213580852877442,0.028001142620482707,0.05514604359780809,0.23360436839421397,0.04416100939376344,0.00036554565992327173,0.02123394181358392,0.010166754438558478,0.06466286374823463,-0.0056629182263206465,4.4288233231484e-05,0.02296907171446113,0.02455415827934839,0.14569993006313833,-0.11842148649533994,0.00027774900715390056,0.00707515025381817,0.05423403142534349,0.7007434054778018,0.11406520030610065,3.211760112995798e-05,0.02512786433357473,-0.0006894935041633097,0.006629704218196911,-0.002775270687268403,3.4747033670097856e-05,0.0011534604498612188,0.018122798457239086,0.05235623404081449,-0.0005452956540366225,0.00011150121918713814,0.018658812412798265,0.034412712926831734,0.2965801231431955,-0.011876238330233265,2.68021261218911e-05,0.02491866878407587,0.0016967229948188559,0.0050453187621108935,-0.0008583635211981119,7.45589387701701e-05,0.0011262987846075653,0.022620083919557037,0.08220614714039391,0.04708541096816737,0.00012581676469438057,0.007078366826084286,-0.08803136143941996,0.07479368180719406,0.1429626568966352,0.000672741264858884,0.0033073523112189065,-0.0011927714394143526,0.004669530149807953,-0.025436614302669948,0.00010751524693516488,0.023419388282544862,-0.0597304677092891,0.17463096335734907,0.05201250797230057,0.0021952998125284668,0.00987290259340354,0.0635349173300881,0.5305532220522375,0.06013423590966413,3.0793971826616334e-05,0.008695864656395151,0.020019174634133687,0.05655717705197733,0.0076200965237418344,0.0011572567258789075,0.009345300572261274,0.03137987575230695,0.25151162163302243,-0.07444173005204864,8.308426945703175e-05,0.0008459106872700782,-0.010147124156879935,0.014295689132260236,-0.05374109620619888,0.00016752640346104128,0.003701092737870432,0.011551218215680923,0.015241100598077062,0.006748245662294308,0.0004350261586864957,0.006046677781345303,0.01614090565290654,0.06932589372753317,0.009757882905548666,0.0018046075211413208,0.008362839384867128,-0.0235603856188531,0.08988271287945715,0.023796172304359608,8.41001156041611e-05,0.0037525206067769924,-0.014069234812834954,0.016333611369087748,-0.031700755441079476,0.002141240512698789,0.006971844271481034,-0.02302287977050233,0.07816787497685465,0.010998120644886786,0.00011669369091258665,0.005031270048146485,-0.006134091899634054,0.016157551127483204,-0.009953513767906215,0.00015389875816742285,0.018784598529505987,0.015703616571267228,0.06678132687077733,0.0045983549892530725,5.739295210590969e-05,0.0006409000351347543,0.040815708517385696,0.1422803785285058,0.012245722079568326,0.0027189447698306533,0.05123870711940008,0.011347329802570628,0.0587009765664021,-0.028487764206032412,9.615877495788283e-05,0.010677706850655638,-0.016764032653040002,0.08652007523637364,0.008445455616901463,0.0001405149049848076,0.005525831135397416,-0.03313405859617481,0.1616638914397453,0.017717399843651983,9.69416273942332e-05,0.010894648581157103,0.05971808744206352,0.31917499145745964,0.06792947849965514,4.7024526347703604e-05,0.00042791785748018006,-0.0010292611328991308,0.0019831316930578316,-0.0051773123616484186,0.0002530482930410051,0.009572295711405457,-0.012832180294637641,0.04944203966940356,-0.01664499592064989,6.453843799063307e-05,0.007455167302201215,-0.002759838954110125,0.02443744221312393,-0.008871240627584707,2.913796906959895e-05,0.011989696987344837,0.015059067803199402,0.0475282127127857,0.009896114929132397,0.00011075301817351025,0.015429363402438308,0.01644011932270203,0.06759927554484806,-0.004336837288220124,0.00038334596343805215,0.004784441945777588,-0.0018403025290654657,0.01006598360256543,-0.19605745906889016,0.00010471401222495157,0.0010755196834617948,0.0036770854140842405 +2023-12-22,0.018111812807821207,0.10870216584005123,0.025345785444812488,0.000176201786574021,0.010294894385352547,-0.01595641621836468,0.053928122960507544,0.004314280054586775,7.099546016350125e-05,0.0069230045094806816,0.0016211353864556497,0.0052283049338056,0.0014020406495601815,0.00014343514638258265,0.017557008101653917,0.012182898238856538,0.013642740823332946,0.01081616442544062,0.0003013816763714159,0.002216804486864344,0.008534493015460748,0.019394458204342147,-0.01625668224860755,0.00023024905042043004,0.007517301178023039,-0.003909651523785674,0.009512440896275015,-0.0038131407186217177,8.974139534778182e-05,0.0015195646741710622,-0.013655782880340502,0.05156215591804754,-0.05876614474395078,7.770972830034286e-05,0.03155444676287027,0.01888099042761347,0.16629130405306372,0.01619722374884904,3.893622541253552e-05,0.008645471647225117,0.00788767923591748,0.006970437700903922,0.0008720990057951755,0.0008726377122649503,0.0021811491834484355,-0.009796384644499789,0.023865642459371565,0.009673364793902916,0.00014353393302820181,0.004552525713109148,-0.02316813370316017,0.018495754413915075,0.03711829693883304,0.0006122705335497228,0.0007853496089091833,-0.022151654313074625,0.29983838313339417,0.07276401468886762,2.2016167847127402e-05,0.003390746433239715,0.046807663450978955,0.13447123569990574,0.029677767429950683,0.00010340430134019169,0.012158614096328029,0.011701736056353855,0.06448213454883375,0.03086270730987354,5.10825667102867e-05,0.006820647695686518,0.05467354071942445,0.03624280008332898,0.048024202219681664,0.002942242261715852,0.009276446196234207,0.03828616984894461,0.24728497086491233,0.05999074701095818,0.00012740788524342103,0.012242334716534166,0.003122351541103215,0.018381382875773098,-0.018078118764819445,0.0002630339753506745,0.0395074458977737,0.036819817561069806,0.2079028225925293,0.006759708517192496,4.988640436991842e-05,0.03131801664308068,-0.012584503231871212,0.059399844076105095,-0.0034008697623292925,0.00034917052758310106,0.009766576000290083,-0.02590680524833705,0.30970188675639815,0.0038774640376884623,3.4713646809379106e-05,0.019419388448470347,-0.0018257439363887115,0.017438880713975678,9.188108612226647e-05,3.4978643969843395e-05,1.733254526022402e-05,-0.003341803946877194,0.010200296450169271,-0.3020867217209752,0.00010553364287060601,0.022905814805385567,-0.027274762775508842,0.2113727473544921,0.009355009250770988,2.980604589204358e-05,0.0032393159147966685,0.020787306110294536,0.06201639002089668,0.06047177166270882,7.431373876162988e-05,0.006834995439374515,0.009008225644242099,0.038776316542284195,-0.051126524884850415,0.00010622366942606082,0.002072230669464552,0.07742523400691365,0.07273859048190809,0.09296455442274036,0.0006084056057342655,0.003491946112335232,0.008710267899406432,0.030804925404578413,-0.06387259480674004,0.00011901381048601511,0.011571255431501257,0.023523041730850684,0.06774625731780946,-0.019989035280596666,0.002228575472345787,0.006997544173695854,-0.03709470870279581,0.3627685575179491,0.023358645902953563,2.6294476097698652e-05,0.042946311859322406,-0.009577450975274581,0.02552568904654639,0.0016621841263640723,0.0012267151617185656,0.0035978866367755652,0.0019104469083905617,0.014798250780865047,-0.015937290558457006,8.597065457402793e-05,0.003818057039396019,0.0008000617174441767,0.0013668231516189538,0.00017852213306385504,0.00013815180071567604,0.00018974037783769633,0.00945366232842436,0.011208921199825103,-0.002478582987957482,0.0004841056860155215,0.00641077534291706,-0.037280928148930234,0.16272975826235356,0.027229000132838615,0.0017757019757766357,0.026196137853767825,0.01567262071186501,0.058723259129825935,0.013769383258724375,8.562919141725525e-05,0.016164818523966184,0.07391055218362745,0.10988111518200955,0.047904018964290716,0.0016720935833489563,0.031153821447629473,-0.006507983854042191,0.024875395484968282,-0.03116084717369984,0.0001036555377766005,0.00412526227875615,0.01487170426340497,0.04171446744708089,-0.005254959357497365,0.0001445221497906361,0.005376139695447164,0.019261307190441924,0.07274899918404464,0.006752402855493269,6.462084901327081e-05,0.017878699616721266,-0.02516891080235752,0.08933600866843532,0.006420167523509875,0.002670274659075547,0.007612885820359266,0.021180929313057168,0.09543479899260822,0.010209704934127876,0.00011040247727199707,0.004610754819236274,-0.0008205943421322662,0.004042518805969204,-0.013352987106174158,0.00014720998000363275,0.00511625435943891,0.0348449124665389,0.209061312988161,0.07830671225113961,7.88341524739218e-05,0.010724511346405305,-0.04111384280110137,0.16681005258414838,0.045690987795470976,6.194599692777032e-05,0.031102869715712092,0.0486328477945199,0.07839582734436269,0.04016556870139265,0.00030245874626363696,0.0032692560030287286,0.024790220994441704,0.10855541038253244,0.07202011597729714,5.678626446863959e-05,0.002394330662220274,0.005856970114658419,0.06876229558210938,-0.013212865672209494,2.197626718864982e-05,0.007695265946465336,0.015023270252648385,0.05215288165448202,0.00861071967709937,0.0001006920387866762,0.027290126253548676,0.04397560526500375,0.22213375283986103,0.11075424659666025,0.00031205075860879023,0.0015561282553763398,0.05803812967471215,0.25841175720774917,0.12071414238383105,0.00012863908289582844,0.014591873232605437,0.00971425365814308 +2023-12-25,0.028594412911000247,0.19574908870520968,0.04015963835852714,0.00015447849127349486,0.008659519962908596,-0.003376777309209431,0.010717910802038783,-0.05528417174118072,7.559669499689071e-05,0.018903491130113356,0.07260511037706592,0.2552235911952624,0.07972995385470956,0.00013159626986612588,0.0007507462603358705,0.015778595621643635,0.016243632267800793,0.011087181772892711,0.0003278332908553353,0.00959510629085952,-0.02234918059619547,0.04736702321836976,0.03310083350796647,0.000246878508449987,0.006846482556602124,0.026347460888618338,0.06284685262946856,0.039669226991853844,9.153811716082747e-05,0.012729374529106921,0.03799849266423075,0.12788001281067662,0.019484528693770056,8.718736516699022e-05,0.02043123711970392,-0.005448855662333749,0.04572781156160945,-0.05480895235954776,4.086236519407174e-05,0.007273974610343452,-0.00024553034603637565,0.00017342177078036785,-0.01740021925736087,0.001091808185837319,0.008294610315560981,-0.03720734825083737,0.10626767043667618,0.07745371443985254,0.000122430449877553,0.01644196841393493,9.478811651559073e-06,7.194494593163737e-06,-0.08006988867767087,0.0006439882766738845,0.0014635297229804076,0.007837191290928927,0.12407424423904603,-0.05048771109924575,1.8823552867955816e-05,0.004477592917358368,-0.020921523283021524,0.06029113677140832,-0.03620861981103755,0.000103083906294015,0.020476867614177444,-0.0020047124218602027,0.010360913543645602,-0.021758435443217948,5.446479207253946e-05,0.0097206537200643,-1.632513974924355e-05,1.2345754604453747e-05,-0.019887583337044733,0.0025790647161704158,0.017968811004626467,0.006354101829149862,0.04507061215573998,-0.05347989213169073,0.00011601464660235444,0.021750874301694225,-0.046098697061991115,0.2399186272983694,-0.019327733956593755,0.0002975314745574168,0.004315845254488741,0.05278258236157384,0.33334483909611856,-0.05872780980955431,4.460236160615104e-05,0.007091899639511702,0.07032409624798101,0.4101283919899987,0.21800891050060242,0.0002825993325807372,0.004974737435293704,0.006793074633460276,0.11745530775941974,0.005378107416492544,2.400070341205784e-05,0.013526824794525764,0.0009297428202632336,0.012357260770812993,6.41338308786602e-05,2.513751431033581e-05,0.005675288210539732,-0.011904027417154994,0.03264503346311943,0.024874669382228543,0.00011746258554656315,0.009113460588307429,-0.04261314962295439,0.29924029003733593,0.01735641356121893,3.2893943645050275e-05,0.009508587009640922,-0.011205306229462083,0.03039163700509328,-0.020913031507486024,8.174233112594157e-05,0.008210723437615345,0.018629411765567674,0.07406340357832988,0.028797598931119783,0.0001150122425274665,0.005644769811842878,-0.01697757529750394,0.015986508595581605,-0.006653052335480152,0.0006070124534702779,0.03948749721497099,-0.011371230555241491,0.04765397466554198,0.0014817469817136727,0.00010043714164159719,0.002348747967313903,-0.016200497212120114,0.059085986906998594,0.0035151970385957844,0.0017597988296708111,0.02567898942963292,0.034230713977315606,0.3148919409880248,-0.005304683868020581,2.7953526666530647e-05,0.0010794271786916877,0.040469666259241234,0.11318655881493724,0.039374781274365576,0.0011689771883122623,0.0017726987259230325,-0.01755677771225637,0.15708921987078264,0.09767915217899865,7.442589584566757e-05,0.017776548184573776,0.001120570840693019,0.0015555545614828142,0.0020437264080615824,0.00017001978189357038,0.009774295664660114,-0.05547638767283747,0.07607728394248356,0.12902627432865085,0.0004185593894966331,0.00950961226053,0.010958989869459054,0.045597923480735436,0.0040146369032852255,0.0018628410568978229,0.0005992259690965284,0.007356596134187936,0.03512536679116237,-0.014979513485319774,6.71964634937074e-05,0.00659714544929119,0.03292012047131456,0.04903557149801201,-0.07980883230275532,0.0016688886704509724,0.0050848355747068336,0.016071818569930126,0.05598536384970389,-0.03575860256123621,0.00011373825282489335,0.013334127076877606,0.025929157637308006,0.07073574342725393,0.02873773623992818,0.0001485969384893878,0.00513805517321485,0.031212409214548535,0.12764950197867347,-0.10911439107482387,5.9679076277370544e-05,0.01221392260411682,-0.008048231496443828,0.023514101292727036,-0.021877256826387498,0.00324406937452181,0.003031494619883687,0.05357749519610654,0.27015347982956983,0.020118538868235322,9.865348025258104e-05,0.007185297566373674,-0.023077737252941835,0.1214988600582307,0.008868786715364061,0.00013774689105181735,0.0019130510362105665,0.04863233341037618,0.2508375581072999,0.13823485775924893,9.170251407171542e-05,0.002001299469456514,-0.004412627906338868,0.018551722491792932,-0.06986508963645646,5.978062660527263e-05,0.003926292695907616,-0.0329792779739244,0.05815099037274264,-0.05053732498734895,0.0002765116423452,0.027553133654887842,0.029831613497270225,0.11698256414146203,0.08466509089521489,6.341178567054932e-05,0.004218997519123931,-0.003913458459544529,0.04528814287085444,-0.10831214567891664,2.2295001287247496e-05,0.005330702572260067,-0.01562919917473838,0.04623136781434753,0.012133461725119428,0.00011817046582512598,0.002046760830468811,-0.01031981501282013,0.03710019735243193,0.00839107778943218,0.0004384536234765487,0.004253770286681537,0.026990331598788206,0.12184976288455353,0.011586479102225065,0.00012686894482999433,0.022134590079515033,0.005270961193887718 +2023-12-26,0.015223482949183818,0.0908012883159842,0.013862656250643132,0.00017729994406543123,0.009345226866182858,-0.0012494574966485786,0.0038264596628522765,-0.00011219970648209784,7.834925553165759e-05,0.0012995552247193802,-0.011347315518367967,0.038902392159242155,0.0004943165305082391,0.00013493171111828692,0.004907124121084291,0.009952800950032634,0.008885245342808863,-0.17819115631602547,0.00037804521948352535,0.004303381582922447,0.00647474770703144,0.01444537884672534,-0.023436417979208687,0.00023452637270093572,0.0010234471975320006,0.009002028798438914,0.0233354149094808,-0.010748975185315241,8.423093287604056e-05,0.0006679598933656222,-0.042196829177704856,0.12478111442130632,0.03168247199409181,9.922493268098217e-05,0.01661088184413333,-0.002067960213496965,0.018451577003740654,-0.09502459952931762,3.843326703374884e-05,0.012104730487923024,-0.009759510425745223,0.008351588004755928,-0.045379862865581724,0.000901163840371751,0.01260259351919958,0.00817396766252705,0.01901028853058542,-0.0009422572385757362,0.00015035092113192683,0.0013285319473737068,0.008194280398659538,0.006023486944625698,-0.017238651033533153,0.0006649472676442253,0.0028508362503872975,0.013297158985759167,0.18814642299906514,-0.022218315032371972,2.1061324754784686e-05,0.011244844053248278,-0.07272422886866858,0.21727809889752922,0.06191491962135741,9.942926065531042e-05,0.005969307553304118,0.002808229843887972,0.015791933448917828,0.004170413448789327,5.0056348273176875e-05,0.00276028515643114,-0.04302503876748172,0.035328238209536525,0.021940761428785104,0.002375320751173239,0.0057120877255900015,0.025829946057674094,0.21442962372309507,-0.051391184993381675,9.912673995349114e-05,0.0010394830847062994,0.01463494457986914,0.09520186601886572,0.00023681683770394082,0.00023804214397343676,0.006153410253840209,-0.026173202257234476,0.18409994477066285,0.03413012675851052,4.004646252515621e-05,0.003951099954245133,0.027566974791019605,0.1669848679454142,0.02624754776310068,0.0002720813658485015,0.0068250270442331085,-0.028850107192437104,0.3928557310462825,-0.017156310475136972,3.0475059996555327e-05,0.008008694507068396,-0.007159245445349135,0.06655635941854654,-0.0012321974152886763,3.5938454985157765e-05,0.010117843906802523,0.016950694665223046,0.05106185524082149,-0.010020585108686399,0.00010693347166275935,0.007171403014200481,0.007512040877812435,0.046979370292275884,-0.0003698048565576196,3.693542727680478e-05,0.042163212619096696,0.012640554849961521,0.036099006193594914,-0.03883840768392686,7.763334048866719e-05,0.0070576254762496245,0.0026470862954264774,0.010580095025906198,-0.00028354672761522206,0.00011440029038579479,0.0009780023377062878,0.04644936811566953,0.049721335778514404,0.02965495355103023,0.0005339647455605432,0.010289099303546876,-0.0046830486735106,0.01589645283456592,-0.007397665217146817,0.00012399793563632806,0.008736150645227795,0.009758550836259549,0.0292413845257532,-0.0012488581533627067,0.0021419364023216236,0.006465184828338572,-0.03299686126643422,0.3125881788760761,0.023559227168357715,2.714452683793444e-05,0.01027375964002494,-0.03285969193774452,0.10480221332417969,0.01538204977241708,0.001025095442569849,0.01519546789279437,-0.042574678372604625,0.34585596697057547,0.25329076833526126,8.197506056013814e-05,0.01105561529398895,-0.01652787380647124,0.024824569244269786,-0.01359599846255756,0.0001571377944475072,0.012196984395163788,-0.001161286521517767,0.002124612911279946,-0.00013158857925196166,0.00031373536984481357,0.008702975428676056,-0.017315718094287592,0.065381831399552,-0.049593554177297286,0.002052739155876568,0.024837268180899395,0.026074979095632483,0.10893125869990201,0.031959235134255075,7.680010563826534e-05,0.0015292352645997697,0.02394696628072545,0.030275644497247137,-0.013925447966689333,0.001966229906472896,0.01511877482135705,0.005425227842320187,0.016583575758368038,-0.03783280779907471,0.00012961517164300094,0.011899109297920296,0.025946077562412417,0.0747427281254433,0.021519766275400462,0.00014072237055586385,0.012621377031864145,0.01607312083618516,0.06556040530083974,-0.02450857809053294,5.9837371104263425e-05,0.004071144701205395,-0.02516558065655617,0.07995143573185305,-0.0042871742141042625,0.002983312490722026,0.008085022461824628,0.0237048974456549,0.10515200292131777,0.0019473658863517931,0.00011214014207675425,0.0009047673514929765,-0.0186529833179675,0.09497107488624124,-0.07111880315039239,0.00014243533220495712,0.00266181518731361,-0.02753765772115328,0.1517054660394872,0.034266203981070324,8.585675446131033e-05,0.005955720460658738,-0.029804916698281288,0.13435963109504356,0.035670486703158436,5.5752777050773353e-05,0.02427151597219301,-0.07271614316477444,0.15460336725240806,0.10224340685545968,0.00022931965593505515,0.032720874818954776,0.009796640584267555,0.03691370201125355,-0.09624460859476133,6.599392349398379e-05,0.004524564075735362,-0.04059711964827591,0.4286559466676102,0.07887945413918791,2.4435298803151386e-05,0.002499790035819519,-0.020728107600127478,0.07163732827172553,0.009516404776459757,0.00010114146468081691,0.00974584149178608,0.0302865436018795,0.10995981707815959,0.02023805019522448,0.00043415386865083784,0.014444726476800479,-0.001636168642721484,0.007911425403831255,-0.025322580699836363,0.00011845274341095944,0.013431729089082356,-0.004569559603912065 +2023-12-27,-0.020086692031631513,0.13471690313736262,0.011408467413182567,0.00015767865770793143,0.012472425382956833,-0.012604728711249851,0.04206992229395261,-0.09561947720243708,7.189063498935445e-05,0.001296076130040085,-0.047958192220646234,0.14445013175682847,0.08579007956360137,0.0001535826179465174,0.008478727763255017,0.015847183827301124,0.014842118554634765,-0.014827031677395224,0.00036034960952040885,0.004230995399046194,-0.005308871144119934,0.011257321716866522,-0.0032667348109734857,0.0002467543848857954,0.0020381208641438607,-0.0009993573960153366,0.002760300985992774,-0.0009332670702377066,7.905168477560921e-05,0.006694238694957049,-0.005481536490847388,0.024140668547090315,-0.008154168903025038,6.6625866700659e-05,0.03198112527006666,0.008949358863319172,0.09365134332087167,-0.056161404399471246,3.2770006432293107e-05,0.0017998574544271708,-0.03843301913973104,0.03217086312562128,0.07083964247088896,0.0009212692506571446,0.007450783883921092,-0.014021321131787577,0.03441068539419374,-0.03456348578065482,0.00014248117878109572,0.01139108431846274,0.019993016975885767,0.016810270930675934,-0.00639761695680913,0.0005813370199122756,0.010064956360746323,-0.00039147563471548987,0.004901180104284308,-0.0017355472713810002,2.3802735159355924e-05,0.0012064692890289925,-0.00793519140674196,0.025959697060551033,-0.05487638842373547,9.080480386398637e-05,0.007074460516011508,-0.016368819327765304,0.1082107394582151,0.02409490594076399,4.25803089961737e-05,0.002781935438994562,-0.02538948041610516,0.026754194242313338,0.010808518277618211,0.0018509083304281547,0.010889220017414476,0.010478014790822637,0.06665124184959033,-0.08341141657421369,0.00012936681003276483,0.008804107051674896,-0.010875659523140596,0.06311609638074635,-0.05961049207053416,0.00026682327118524653,0.06577343682849683,0.05227926513665013,0.2835239680063934,0.0172045325368936,5.193984532100411e-05,0.008227441985470664,-0.013413388941054245,0.06226643211634007,-0.004721413100700479,0.00035503514329105986,0.012175065687961582,-0.028257388129224393,0.4129415049759032,-0.05294082078838039,2.8397081764913206e-05,0.02851206078646891,-0.031994527301340274,0.33100516288127,0.0693810106095505,3.229405937553344e-05,0.006287665944294182,0.017003764275101307,0.04770363514700507,0.003441452604873689,0.00011481968650152654,0.021599094758548508,-0.03471045962358382,0.2515109923987047,-0.2518999636699856,3.187834524295212e-05,0.036138373177125115,0.0014270448255675587,0.00383160222729036,-0.042514546358073536,8.257233776942736e-05,0.0028451917735114107,-0.004745650142654776,0.017193256180246756,0.0060929276193122115,0.00012620779510175254,0.0060510410923473945,0.021281477952609797,0.017900060047339537,-0.02565990820971742,0.0006795522566417698,0.0321284297023877,0.001872004738045758,0.00671277076699872,-0.0015489824601570455,0.00011737919746588388,0.0007486068713576442,-0.02122280720387935,0.07727677909661866,-0.014561011249038002,0.0017626780284925416,0.030943408791307858,0.0218807610312212,0.21756666889674467,0.006352706999697032,2.58614133573841e-05,0.02586277439791155,0.0015523785642650803,0.005026731473512036,-0.000410869158270782,0.0010096787615681444,0.014020060049283793,-0.024666667046364766,0.19519815007818617,0.03473384395385411,8.415122016026785e-05,0.005967149196630327,-0.0021828463329248045,0.0034583969794802793,-0.18639097990118278,0.00014896824678808113,0.01173414871248966,0.026532695785700416,0.042879217086802694,0.02600402580775034,0.00035517177379636844,0.0038947174342639558,0.010839110107916685,0.05569954962887332,-0.04026579256129272,0.0015083158180010296,0.026690430462371382,-0.00016029566272870283,0.0005729148473171377,-0.010054294896354085,8.97681064777947e-05,0.013270288242840047,0.0018515764759693388,0.0022877514092075947,-0.0053596998597617365,0.002011916789077831,0.020823004149270664,0.008867174482845594,0.025652532084740855,0.0007807919972614508,0.00013695284273929065,0.011143265453365312,-0.009590656115014884,0.024405388745583848,-0.021135051678727135,0.00015930263718273352,0.008612604255201902,0.02601912788854376,0.1295907448756895,0.0017045675390135065,4.900412902014274e-05,0.011809956773300382,-0.07523492748216354,0.2341790720644065,0.042577309044072593,0.003045015333253747,0.0015923501282308075,0.0013511674293714268,0.007065804785936843,-0.0017710975208467404,9.512356186708128e-05,0.01383915693434251,-0.0003711770657222904,0.001962716215051351,-0.02088373201619545,0.0001371463987422997,0.011533659920021295,-0.013474933671556551,0.09020352860426563,-0.00031621513631152544,7.065644915210588e-05,0.007389735202515257,-0.01303750848221273,0.060914573052801284,0.007464291170315307,5.379238428107496e-05,0.022734937560072596,-0.04413839570132857,0.08732885733255845,0.009250372007937145,0.00024642692640857247,0.0008510713179892353,0.02674221913618322,0.11281740746333405,-0.061242448641293475,5.894347061526611e-05,0.006692775625142265,0.002443357056593594,0.024312467377380104,-0.07860288038212009,2.5929204094904807e-05,0.008576087062980292,0.0245183713514275,0.0764698635168403,0.026096963438638196,0.00011207539237358412,0.006943827884220607,-0.029405462279141172,0.10793582486872506,0.04786332013131602,0.0004294280089111115,0.015777071890705076,0.030187253342835743,0.1523331189274265,0.017895401290225856,0.00011350135896850256,0.01013639824945341,-0.004421685979001982 +2023-12-28,0.015900774026801477,0.10046727249101929,0.013344941728435547,0.00016737101023243993,0.010341954548854532,0.009374104638513228,0.03425602100860849,-0.008799925440710126,6.566038234287305e-05,0.0017928520819409943,-0.04228458499969636,0.15724063985637246,0.04485949342558641,0.00012439830837634045,0.0035217166313272715,0.008215113990139989,0.008845063532359771,-0.0667746546600826,0.00031345881938878715,0.013231809441327881,-0.01996106735643815,0.046856047384395735,0.027428929386197756,0.0002229029838997499,0.00707134557459083,0.017997474492251926,0.04842945293961646,0.00596691912133115,8.114256708874928e-05,0.008077893568838155,0.00918765748168626,0.0323879925535785,-0.001335650479100634,8.323588867169553e-05,0.026060805601218148,0.01670549944102252,0.14682862120581805,0.010992370701033939,3.901641464999509e-05,0.005770956813635044,-0.004231686223764236,0.0032286282736790598,-0.0055219576715732485,0.001010741734738203,0.014930182971461481,-0.007238093149416045,0.020902407534757687,-0.05240696117230629,0.00012108483194340529,0.005184714715838824,0.018485180902987654,0.011811907305757702,0.003711578240029935,0.0007649411654370825,0.004648840436281639,0.007158896497412418,0.08702738909050955,-0.05877433595952402,2.4513928692159853e-05,0.004695135183105906,0.0036844812713975965,0.011872905044637436,-0.021460471294331086,9.218715167129826e-05,0.0047691145127430525,0.009608255398879285,0.04489576730556326,0.019946444626305987,6.024221871846704e-05,0.0013234820947117202,-0.020326442792849463,0.015511808300965099,0.00011414606784846708,0.002555770927602588,0.005955992997303089,-0.005977525846522442,0.04470964615153688,-0.07837156939578485,0.00011002017659677549,0.027725100608854088,0.001524973557770256,0.008035217136431684,-0.0018316982765672163,0.00029388196024003106,0.02065012196039008,0.0072496011274258785,0.047508138175940476,-0.0013467930174342392,4.298402275151357e-05,0.00913547470709668,-0.05339126211091363,0.2951458655233994,0.033473925928211884,0.00029814002996611717,0.024187288369350062,0.009161748333950077,0.13262992206801294,-0.0046310107865063215,2.8665998558930012e-05,0.03843863723785364,0.01201940330008407,0.14672328823640118,-0.0056258454201526245,2.736941818730822e-05,0.009012472292552245,0.008606172615995398,0.02457331241829601,-0.004104646916033334,0.00011281558667523924,0.015569932870435947,0.023178607068697833,0.1677540367730077,-0.20190907199422453,3.191587310321729e-05,0.004441340544456947,0.021818730882948993,0.060457497124427086,0.04342969116502466,8.001229068127325e-05,0.006211954344543466,0.019342474437786555,0.06931389618564729,-0.030725500808142497,0.00012759695653532429,0.007922339265027065,-0.026831247312689512,0.024769418008240843,0.010948591232822193,0.0006191567634357504,0.011507651048773018,0.00449843351492561,0.018151365318179794,-0.06621133004430073,0.00010431289958743033,0.006014273267860757,0.00810503458411646,0.02669241907203716,0.001774895378576165,0.001948884548370537,0.0018258973149448193,-5.496310397572909e-06,5.269827792902643e-05,-0.030280801694561512,2.6819891877817695e-05,0.016660710926020006,0.00015158135045525588,0.0004682720682469925,-9.429403191879228e-05,0.0010583243491820143,0.01994872855063753,0.017056361150918856,0.14268981998437288,0.008357010829483738,7.9601093972315e-05,0.000719978103363767,0.018584146660054476,0.029988072757991275,0.0532456856879021,0.00014626467635720357,0.0023978541776498623,0.01601104505053763,0.023391104889107887,-0.025046506919196302,0.0003928917024186258,2.380987731151105e-05,0.01062832339951139,0.04324735419025231,-0.06658289320360682,0.0019048270893952774,0.00795044753743674,0.019659328632445232,0.07523580070187406,0.008488683785881633,8.383676379164854e-05,0.027591002254579167,-0.027589714020053453,0.038262847805189536,0.03814081922155147,0.001792450207906554,0.011465459574745426,-0.016318261816025248,0.04028358986638678,0.003578125918977991,0.00016049509627866888,0.01224240668392386,-0.0026289101348838597,0.007685702515042661,-0.09785670167238841,0.0001386604311502721,0.015267095701392017,0.03230015070357687,0.1567008763235487,0.010557614476923684,5.030915796062003e-05,0.0042606961861552314,0.002936562478692116,0.009592970552391555,-0.012651484068940596,0.002901377187488247,0.012295917030277756,-0.004840196949153495,0.022492687999934747,-0.003914840482230995,0.00010704397924976915,0.018040519072000903,-0.005772948470448478,0.03262271096166898,-0.08349675003227248,0.00012833302079369915,0.023135778980605187,0.030416535203407417,0.17959399291196468,0.04105373341547562,8.010629282912272e-05,0.008954915292284314,-0.014354407192599656,0.06523125722000471,-0.07411692512422983,5.530659324121973e-05,0.0028201120990945135,0.10762072908950976,0.2748666950559388,0.12342074149262397,0.00019089880218460534,0.015611341871174042,-0.0057841168619340065,0.02257068722181361,-0.007937897242690348,6.372453164697192e-05,0.009523982442609723,-0.040449241936046224,0.4514132662452263,0.01162556539469664,2.3118909996503692e-05,0.005360029335980131,-0.021694891315539987,0.06788273261067862,-0.05994808324895013,0.00011171387770108997,0.002905534192282272,-0.010105629125280138,0.03825154446776502,0.005045288056154241,0.00041643032837382365,0.00837559999781036,0.05784958257118583,0.3602939213885991,0.08198468246138267,9.19634150637622e-05,0.00832101347405082,0.004329321230986382 +2023-12-29,0.020226750271253036,0.12952633240489886,-0.06266646523022837,0.00016514089271011775,0.009450928617822272,-0.052249965136574546,0.1842610244388518,0.1450835319779796,6.803980342253268e-05,0.0015932135502781286,0.04285450721114691,0.15702619648636784,0.021115000536768087,0.00012624715462071175,0.008693250500100638,0.010041375739579106,0.00998530812705297,-0.0008425226586016675,0.00033939043909191475,0.006989655043132558,-0.02026743724307234,0.044022704343208555,0.023750791677986684,0.0002408906209942261,0.0005957965750633085,0.002848421784539204,0.008677591626842484,-0.20576541809812648,7.167238067973e-05,0.0019959906515079912,-0.02299808609626997,0.06801461160126827,-0.002226496669947362,9.921545498555125e-05,0.012154493111823662,-0.029332800291498852,0.2778961804617092,0.08643662416600491,3.6196748664613116e-05,0.0004528280823175974,-0.004973759693863907,0.003909666516765931,-0.0033080915446762416,0.0009810471270714116,0.015000469715314511,-0.01714345509638832,0.04376599300157264,0.011201514402760729,0.0001369693686914721,0.028333177959525474,0.019961839373750637,0.012979810885247972,0.01803943005515141,0.0007517207701311239,0.017099475478483013,-0.009351163901634124,0.13982885207692825,0.020089767345727025,1.9929282629781126e-05,0.0019335821104169762,-0.007609124963312191,0.020012045817947827,-0.00010286734596601143,0.00011295208858537455,0.012904379374053577,-0.0012886448194062315,0.0066963590400554145,-0.006758743204328233,5.416968613117706e-05,0.0037822608903994733,0.002282679212973357,0.0016886028016992452,-0.01036670405302377,0.0026365763432000355,0.0013189196378632767,0.047186953841764544,0.2810943345671809,0.06801428992371296,0.00013814079707699339,0.03531853630949323,-0.034231430812664436,0.20364217211247476,-0.06531762756240826,0.0002602948427430555,0.024942411363759045,0.03367264952996986,0.22891779502336518,-0.08915708147315997,4.1434174629284954e-05,0.009178767469338935,0.024543875605389513,0.13006899155672116,0.015578209664270948,0.00031099698269046965,0.006767276136297078,-0.04659209578749426,0.6565645081474184,0.014464529618773253,2.9448628612053168e-05,0.009856319124555526,0.017521521520691242,0.19675966692347874,-0.04685238529116418,2.975208778571899e-05,0.0062965538735517395,0.059464038053407484,0.16210062862822014,0.11722668873906089,0.00011816597819628542,0.008516834335605529,0.012327941930280506,0.08393625019419451,0.005051994842511391,3.3926057409170754e-05,0.020482847833190244,-0.019354660081475687,0.048919603243922416,0.013074136204765328,8.77162394809707e-05,0.002662490818461204,0.021407798339696242,0.08667732389081491,0.025599882196751817,0.00011293150253710153,0.01098965433344389,0.029734503123694557,0.031243313392538878,-0.018191114100526706,0.0005439752768868159,0.014258547385126283,-0.013394306708898393,0.05687367098745648,0.0164163124460807,9.912769031276214e-05,0.010975901515563229,-0.030302263868469827,0.12794515266804102,-0.0453270987920709,0.0015200938904628293,0.05962303193576773,0.018886995197675643,0.15348687112985107,-0.007174669689592295,3.164272174380995e-05,0.014849364404478245,-0.03288389763576316,0.10449551018248622,0.02153664149174566,0.0010288615248292016,0.005151995362447182,-0.019479033054841367,0.14361247641387614,0.022498597845104596,9.03235226080483e-05,0.0005149635903370297,0.0015074948754444572,0.002059503793860404,-0.0237028008852761,0.0001727581856953593,0.004427516844394551,-0.04154898526175667,0.053769469124396146,0.05565781825604841,0.0004435357051396476,0.013242916222417264,-0.02098962239719134,0.07231084283668851,-0.02101953195059132,0.0022498395307974403,0.01096260439122808,0.014235585059979445,0.049439479456979726,0.00562240903108268,9.238294477910671e-05,0.008348846203699023,0.02655487200292716,0.0334026130138392,-0.01309373156767071,0.0019762458100484443,0.02346103240329444,-0.005974768122902569,0.023369189460101466,0.0037408731573720455,0.00010129626730656362,0.018954129319995214,-0.03534394738068886,0.09477016527086428,0.06116679428390279,0.00015118328929630674,0.012300252722884708,-0.0013144948310386192,0.004766573371890292,0.004913869923105162,6.730797507040502e-05,0.008468635570158022,0.00883833182004995,0.035859714988604414,-0.09393966079599657,0.0023360467339732546,0.018523686564165556,-0.020489899182799347,0.1130448763342632,-0.0361835813284247,9.016323990360551e-05,0.022141752545700576,-0.001024123700565815,0.00511228914528796,-0.026699769390315535,0.00014527731082054232,0.0028764874346992454,-0.014354298893489992,0.0891508423493009,-0.03558162396124511,7.615619423478385e-05,0.0015137988884201432,0.04705072267113209,0.2308481086109909,0.055042442053673084,5.122563758355737e-05,0.0010425500859106234,0.02738000178867757,0.052695917373565423,0.009005657748987208,0.00025332957631347676,0.021612868047613584,0.008114630363772947,0.033381316493956224,-0.000800959663510746,6.0447682786060546e-05,0.0011338444034039298,-0.029831443692007596,0.28326276589108323,0.010776753808195105,2.7171653364209176e-05,0.010714779783170137,-0.014119823933416932,0.039768481115760555,0.00220087337025539,0.00012410784700993423,0.004330693746784479,0.00845327826020857,0.0379940120800421,-0.0027671693807420623,0.00035070178754929794,0.01047691978002254,0.006022333003840205,0.03297202681934247,-0.019463982655654497,0.00010461426729143184,0.03845407440501816,-0.00026377190705344515 diff --git a/financial_loss_functions/data/raw/sample/combined_predictors_train.csv b/financial_loss_functions/data/raw/sample/combined_predictors_train.csv new file mode 100644 index 00000000..c0640b9c --- /dev/null +++ b/financial_loss_functions/data/raw/sample/combined_predictors_train.csv @@ -0,0 +1,1304 @@ +date,TICK001_RET,TICK001_ILLIQUIDITY,TICK001_VOL_CHANGE,TICK001_TURNOVER,TICK001_BA_SPREAD,TICK002_RET,TICK002_ILLIQUIDITY,TICK002_VOL_CHANGE,TICK002_TURNOVER,TICK002_BA_SPREAD,TICK003_RET,TICK003_ILLIQUIDITY,TICK003_VOL_CHANGE,TICK003_TURNOVER,TICK003_BA_SPREAD,TICK004_RET,TICK004_ILLIQUIDITY,TICK004_VOL_CHANGE,TICK004_TURNOVER,TICK004_BA_SPREAD,TICK005_RET,TICK005_ILLIQUIDITY,TICK005_VOL_CHANGE,TICK005_TURNOVER,TICK005_BA_SPREAD,TICK006_RET,TICK006_ILLIQUIDITY,TICK006_VOL_CHANGE,TICK006_TURNOVER,TICK006_BA_SPREAD,TICK007_RET,TICK007_ILLIQUIDITY,TICK007_VOL_CHANGE,TICK007_TURNOVER,TICK007_BA_SPREAD,TICK008_RET,TICK008_ILLIQUIDITY,TICK008_VOL_CHANGE,TICK008_TURNOVER,TICK008_BA_SPREAD,TICK009_RET,TICK009_ILLIQUIDITY,TICK009_VOL_CHANGE,TICK009_TURNOVER,TICK009_BA_SPREAD,TICK010_RET,TICK010_ILLIQUIDITY,TICK010_VOL_CHANGE,TICK010_TURNOVER,TICK010_BA_SPREAD,TICK011_RET,TICK011_ILLIQUIDITY,TICK011_VOL_CHANGE,TICK011_TURNOVER,TICK011_BA_SPREAD,TICK012_RET,TICK012_ILLIQUIDITY,TICK012_VOL_CHANGE,TICK012_TURNOVER,TICK012_BA_SPREAD,TICK013_RET,TICK013_ILLIQUIDITY,TICK013_VOL_CHANGE,TICK013_TURNOVER,TICK013_BA_SPREAD,TICK014_RET,TICK014_ILLIQUIDITY,TICK014_VOL_CHANGE,TICK014_TURNOVER,TICK014_BA_SPREAD,TICK015_RET,TICK015_ILLIQUIDITY,TICK015_VOL_CHANGE,TICK015_TURNOVER,TICK015_BA_SPREAD,TICK016_RET,TICK016_ILLIQUIDITY,TICK016_VOL_CHANGE,TICK016_TURNOVER,TICK016_BA_SPREAD,TICK017_RET,TICK017_ILLIQUIDITY,TICK017_VOL_CHANGE,TICK017_TURNOVER,TICK017_BA_SPREAD,TICK018_RET,TICK018_ILLIQUIDITY,TICK018_VOL_CHANGE,TICK018_TURNOVER,TICK018_BA_SPREAD,TICK019_RET,TICK019_ILLIQUIDITY,TICK019_VOL_CHANGE,TICK019_TURNOVER,TICK019_BA_SPREAD,TICK020_RET,TICK020_ILLIQUIDITY,TICK020_VOL_CHANGE,TICK020_TURNOVER,TICK020_BA_SPREAD,TICK021_RET,TICK021_ILLIQUIDITY,TICK021_VOL_CHANGE,TICK021_TURNOVER,TICK021_BA_SPREAD,TICK022_RET,TICK022_ILLIQUIDITY,TICK022_VOL_CHANGE,TICK022_TURNOVER,TICK022_BA_SPREAD,TICK023_RET,TICK023_ILLIQUIDITY,TICK023_VOL_CHANGE,TICK023_TURNOVER,TICK023_BA_SPREAD,TICK024_RET,TICK024_ILLIQUIDITY,TICK024_VOL_CHANGE,TICK024_TURNOVER,TICK024_BA_SPREAD,TICK025_RET,TICK025_ILLIQUIDITY,TICK025_VOL_CHANGE,TICK025_TURNOVER,TICK025_BA_SPREAD,TICK026_RET,TICK026_ILLIQUIDITY,TICK026_VOL_CHANGE,TICK026_TURNOVER,TICK026_BA_SPREAD,TICK027_RET,TICK027_ILLIQUIDITY,TICK027_VOL_CHANGE,TICK027_TURNOVER,TICK027_BA_SPREAD,TICK028_RET,TICK028_ILLIQUIDITY,TICK028_VOL_CHANGE,TICK028_TURNOVER,TICK028_BA_SPREAD,TICK029_RET,TICK029_ILLIQUIDITY,TICK029_VOL_CHANGE,TICK029_TURNOVER,TICK029_BA_SPREAD,TICK030_RET,TICK030_ILLIQUIDITY,TICK030_VOL_CHANGE,TICK030_TURNOVER,TICK030_BA_SPREAD,TICK031_RET,TICK031_ILLIQUIDITY,TICK031_VOL_CHANGE,TICK031_TURNOVER,TICK031_BA_SPREAD,TICK032_RET,TICK032_ILLIQUIDITY,TICK032_VOL_CHANGE,TICK032_TURNOVER,TICK032_BA_SPREAD,TICK033_RET,TICK033_ILLIQUIDITY,TICK033_VOL_CHANGE,TICK033_TURNOVER,TICK033_BA_SPREAD,TICK034_RET,TICK034_ILLIQUIDITY,TICK034_VOL_CHANGE,TICK034_TURNOVER,TICK034_BA_SPREAD,TICK035_RET,TICK035_ILLIQUIDITY,TICK035_VOL_CHANGE,TICK035_TURNOVER,TICK035_BA_SPREAD,TICK036_RET,TICK036_ILLIQUIDITY,TICK036_VOL_CHANGE,TICK036_TURNOVER,TICK036_BA_SPREAD,TICK037_RET,TICK037_ILLIQUIDITY,TICK037_VOL_CHANGE,TICK037_TURNOVER,TICK037_BA_SPREAD,TICK038_RET,TICK038_ILLIQUIDITY,TICK038_VOL_CHANGE,TICK038_TURNOVER,TICK038_BA_SPREAD,TICK039_RET,TICK039_ILLIQUIDITY,TICK039_VOL_CHANGE,TICK039_TURNOVER,TICK039_BA_SPREAD,TICK040_RET,TICK040_ILLIQUIDITY,TICK040_VOL_CHANGE,TICK040_TURNOVER,TICK040_BA_SPREAD,TICK041_RET,TICK041_ILLIQUIDITY,TICK041_VOL_CHANGE,TICK041_TURNOVER,TICK041_BA_SPREAD,TICK042_RET,TICK042_ILLIQUIDITY,TICK042_VOL_CHANGE,TICK042_TURNOVER,TICK042_BA_SPREAD,TICK043_RET,TICK043_ILLIQUIDITY,TICK043_VOL_CHANGE,TICK043_TURNOVER,TICK043_BA_SPREAD,TICK044_RET,TICK044_ILLIQUIDITY,TICK044_VOL_CHANGE,TICK044_TURNOVER,TICK044_BA_SPREAD,TICK045_RET,TICK045_ILLIQUIDITY,TICK045_VOL_CHANGE,TICK045_TURNOVER,TICK045_BA_SPREAD,TICK046_RET,TICK046_ILLIQUIDITY,TICK046_VOL_CHANGE,TICK046_TURNOVER,TICK046_BA_SPREAD,TICK047_RET,TICK047_ILLIQUIDITY,TICK047_VOL_CHANGE,TICK047_TURNOVER,TICK047_BA_SPREAD,TICK048_RET,TICK048_ILLIQUIDITY,TICK048_VOL_CHANGE,TICK048_TURNOVER,TICK048_BA_SPREAD,TICK049_RET,TICK049_ILLIQUIDITY,TICK049_VOL_CHANGE,TICK049_TURNOVER,TICK049_BA_SPREAD,TICK050_RET,TICK050_ILLIQUIDITY,TICK050_VOL_CHANGE,TICK050_TURNOVER,TICK050_BA_SPREAD,sprtrn +2017-01-02,0.0176766325797589,0.12442169192621848,0.0,0.00015024153639651587,,0.04086770291746916,0.14810136986800815,0.0,6.6211233489766e-05,,-0.04078874298940405,0.1435708775595955,0.0,0.00013142293781948105,,-0.01229924942841774,0.014602149518437298,0.0,0.00028426911294924384,,-0.0005048646853150255,0.0011280699752295403,0.0,0.00023417294918690068,,-0.020090832474461192,0.06367104590528812,0.0,6.889737701132201e-05,,-0.017406286734588678,0.06082095225586589,0.0,8.397360020514762e-05,,-0.00959230145434651,0.0788975750321174,0.0,4.169248470827167e-05,,0.018042757612768776,0.014040946939537897,0.0,0.0009909489989910155,,-0.01792949146996494,0.04292819247577965,0.0,0.000146045189232413,,-0.006049360196076189,0.003974633094532398,0.0,0.0007439380265138301,,-0.006295173642838528,0.09265398896293582,0.0,2.0247265696987867e-05,,0.047125152725126004,0.1409094067449171,0.0,9.934907367136256e-05,,-0.00402180680191033,0.020815572700394802,0.0,5.43869442425109e-05,,-0.025743406590193564,0.022031556171014998,0.0,0.002278997320007926,,0.07657514398756343,0.5219709027648872,0.0,0.00012072400534925032,,-0.04319794812691146,0.2228351160610098,0.0,0.0003001841236185398,,-0.006920496177776016,0.036056558806796965,0.0,5.4064714415833386e-05,,-0.04411041071121804,0.2571134224871117,0.0,0.00028275035546438743,,0.041966432537001004,0.5177336713265807,0.0,3.363766747714293e-05,,0.01920433800249021,0.21050109798302516,0.0,3.0480822694926895e-05,,-0.0036932113390760486,0.010768986270380873,0.0,0.00011047196851336514,,0.07942650307069393,0.5861152075300452,0.0,3.130219758122568e-05,,-0.01633629170920705,0.047527936511666584,0.0,7.620472547104052e-05,,0.013474463821656329,0.04581099994728624,0.0,0.00013449010008137596,,-0.04174157134654956,0.042956696753246024,0.0,0.0005554097218097882,,0.01138805859358961,0.040275956672356485,0.0,0.00011901174884870852,,0.00018919181998444654,0.000569784876374162,0.0,0.002131133284442263,,-0.0570545513252544,0.615251162167211,0.0,2.3846247490234796e-05,,-0.0008439694305170667,0.0026172883311452715,0.0,0.00105425681512728,,-0.022117473354148744,0.18940815906631192,0.0,7.776111387869622e-05,,-0.017940811871147593,0.03156771971640372,0.0,0.00013413566495484674,,-0.02429618312684838,0.03476787680216584,0.0,0.00040111028318138984,,0.0027900694566996135,0.010251993797806832,0.0,0.002109390672291922,,-0.01347476327922197,0.04989097547890027,0.0,8.665418047972535e-05,,0.06516436894387,0.1037711490842657,0.0,0.0015610282402516154,,-0.010479598181564898,0.03664452283140383,0.0,0.00011330565780729294,,0.00013674398653171538,0.00038493670063319735,0.0,0.0001440055709437283,,0.006899146623978594,0.03373282514343325,0.0,4.991793196447787e-05,,0.009348967557009114,0.02878038944406728,0.0,0.003078825283165456,,0.0421778386718443,0.1750377979651517,0.0,0.00011986518248958775,,-0.024191704641035715,0.14793253847363744,0.0,0.00011859422632882834,,0.002639214374470961,0.01828079423692465,0.0,6.828547052189425e-05,,-0.027825670549615527,0.14203818524243225,0.0,4.9236584524345505e-05,,0.04808157579676473,0.11376599530555616,0.0,0.00020606091119082333,,0.0011582710221395972,0.0047873767373378465,0.0,6.016265061707277e-05,,-0.025893363241727856,0.22435937096485153,0.0,2.977662938909241e-05,,-0.009072664562049793,0.031163970882683224,0.0,0.00010176326414865878,,0.030715137640931287,0.12179697450504713,0.0,0.0003975062270468804,,-0.009503886862606593,0.04776344877037299,0.0,0.00011396654333410484,,4.310545816872322e-06 +2017-01-03,0.022080869544306693,0.1410016936458304,0.0,0.00016560689958731065,0.00472614053266435,0.023306938213980805,0.08074161598172352,0.0,6.926252408964634e-05,0.0016107037239538782,0.047344081663874965,0.16515466158643763,0.0,0.00013260871448821706,0.043283648490948304,-0.013318127109286298,0.013550875085517427,0.0,0.0003316986240093998,0.002259696168907258,0.03301637280429155,0.07773376741684626,0.0,0.00022223753710744684,0.001666573678569925,0.00046966778579473836,0.0010698678396370523,0.0,9.585336866096657e-05,0.0021315651919928506,-0.060514413251832024,0.18553048727988455,0.0,9.570472875127073e-05,0.013687795238771802,0.018083292924216714,0.14063296226596056,0.0,4.40949654909711e-05,0.001204169000845924,0.031190039885123214,0.02375505743294677,0.0,0.0010125223816295043,0.00580687710327011,0.030710545768941718,0.06253884125999527,0.0,0.00017171158248926823,0.01060464045663017,0.012618597649637988,0.009575584437573718,0.0,0.0006441250080321571,0.009791785865157502,-0.005962581604652273,0.0682765752667641,0.0,2.6024679897963803e-05,0.0012420860610960235,0.008240006865183528,0.021643695746045362,0.0,0.00011309598597614169,0.005216474652378287,0.005498739331125351,0.030031562996046153,0.0,5.154030864844001e-05,0.005207527122166211,-0.016157405913739945,0.01263246442897484,0.0,0.002494632202480262,0.0017096098963409556,0.02118587270650372,0.1384018195931121,0.0,0.0001259669651861787,0.006730034352824457,-0.006057209655797449,0.02959353495542115,0.0,0.00031694506433703885,0.027300585212428084,0.0032490877577084046,0.02026125484784882,0.0,4.517062072562993e-05,0.008074362879886015,-0.024111237962096986,0.1478396649782852,0.0,0.00026879138618800263,0.007862526732737574,0.05449663770734173,0.6812064033864919,0.0,3.319871070373692e-05,0.0032504576015702415,-0.011383310599765963,0.1168892693026545,0.0,3.253686094640022e-05,0.003537565655809063,-0.036152032003472355,0.10858072037181773,0.0,0.00010725134567771529,0.014521361440201943,0.0130190467887946,0.0866441836906304,0.0,3.470820464675037e-05,0.024619199804863733,0.018898077988828553,0.0640777153791727,0.0,6.53864863034264e-05,0.0211561236250656,-0.006428976731457016,0.02591633347598541,0.0,0.0001134271160321261,0.005269647318557167,0.015719654587580626,0.016351580779484145,0.0,0.0005494887637130054,0.02825552283971007,-0.0037259556552850584,0.0157143876389616,0.0,9.979900901780867e-05,0.0016046918208839512,0.014916578375243609,0.06064575489889931,0.0,0.001578657737865613,0.001272927169707857,-0.0133377122194105,0.12107975934334965,0.0,2.832643947823958e-05,0.009885711900880981,0.013334048052483375,0.04517509735799333,0.0,0.0009650152765894311,0.0023537323082581073,0.05168658173389699,0.3691916071107809,0.0,9.322913074221652e-05,0.0025014047344386727,0.0036211611383783126,0.004838681299481708,0.0,0.0001766307117875601,0.0015416666992622155,0.008720108283235495,0.012894980070423126,0.0,0.0003881549388245923,0.005941080995587031,0.010740501784785384,0.04041392574696246,0.0,0.002059889261562991,0.0031980997249256102,-0.019361449381023018,0.08786525543574145,0.0,7.069864000698542e-05,0.0025395439502128463,-0.00953563007719397,0.012082938284331239,0.0,0.001961796834172095,0.0316261425086419,-0.030095349796823496,0.08283670838694801,0.0,0.000143943679052162,0.010198948574431719,-0.023301451108543984,0.05911707299241357,0.0,0.0001597829447258189,0.014034366221517495,-0.00021250715667777418,0.0008507712099891954,0.0,6.0964174927276854e-05,0.0007855679214001529,0.08359235202093235,0.2413593471947388,0.0,0.0032826190119997815,0.030887669841257195,-0.016377253781034613,0.07942544139790639,0.0,0.00010257039135006575,0.014925284800426153,0.03885323779664826,0.21583913016384962,0.0,0.00013054427132618446,0.010024365808864216,0.0036890834158776883,0.01939797305565438,0.0,8.995199968186675e-05,9.877335861411868e-05,-0.014299157798601761,0.062143887597964874,0.0,5.783083132457173e-05,0.001053696179453597,0.02038536490368807,0.03737197211064206,0.0,0.00026595114709277004,0.00516905204886375,0.012290089764704424,0.04816736702109247,0.0,6.344779354770916e-05,0.004854699741187231,0.031047026724133623,0.34416816268744405,0.0,2.3274513271728997e-05,0.0001419642571705217,0.01255269030456791,0.04286980486617353,0.0,0.00010235151419845773,0.004823201097495438,-0.010389635515129801,0.04501678584948989,0.0,0.0003637925486287765,0.02220570588822281,0.00302754088057402,0.017356587963351103,0.0,9.990735431927529e-05,0.0029180539580626295,0.0056717104713531336 +2017-01-04,-0.04490695514754443,0.3072430670278117,11.0313433356441,0.00015456747111993816,0.015247371739545264,0.022972259079671823,0.0843022987463868,-0.17561271164622458,6.538450121598142e-05,0.00025608103779236225,0.04615771032179256,0.1664914427675341,-0.18894306160302846,0.00012824768812204592,0.026596782158688458,-0.007879027846281252,0.009451222263054235,3.01325550243492,0.0002813536250771595,0.006303396507440498,0.01609453507954868,0.038554926536920324,-0.2928823025374087,0.00021842197420548766,0.005454706463787386,0.018257415019012166,0.04989258842261249,0.3200030095985439,7.990059105951408e-05,0.011729401274836645,-0.016880030575112073,0.04761593033783085,-0.1784742393284065,0.00010401855347001882,0.0092892160292867,0.009569857819185323,0.08062588831273071,-0.2756557358253694,4.070329685760441e-05,0.0034240602346864747,-0.03283739653753998,0.02809995404261841,2.6374909927695955,0.0009011724253878817,0.023378672145148122,-0.009081445475552214,0.024177283435736732,-0.24670409060747273,0.00013134373568316464,0.013287771649642852,-0.02186826833105134,0.016488058831031393,0.30778198239339066,0.0006482898529440233,0.009171630058867359,-0.015343982354504392,0.2825728073171898,21.63357082299043,1.6181937279295358e-05,0.002219626030769345,-0.0014667171014863,0.003943350352535085,-0.06478580120936961,0.00011049230392141578,0.015917571130888753,0.023896681878426845,0.12322441610502421,1.1082051043353365,5.4588687376284635e-05,0.009210063224517314,0.024725502448296792,0.02131725792242481,2.954225032876592,0.002262230005295273,0.009457507519177252,-0.043110287447718915,0.2914663590767655,0.5293297468211218,0.00012171513650525568,0.045091973659655615,-0.013535413285928596,0.07429492942196855,-0.25202798808408544,0.0002821113624567423,0.023683583652962532,-0.0008352037611338796,0.004850807502200066,-0.2883451048463873,4.849973401428771e-05,0.0042878631484107015,-0.0389848284945105,0.22195170752153826,-0.2654276772525859,0.00028948358672491626,0.005229062183987377,-0.037796098554475896,0.6194657900876975,4.650176171995336,2.531977700690294e-05,0.04288306930167869,0.008294241062139877,0.09652409273004203,-0.2832760803057163,2.8709302037526123e-05,0.019332639635577655,0.03427386336372615,0.10115129218492343,0.5357728080809394,0.0001091476480172927,0.009549472610340106,0.028945394340787984,0.23791806294237977,-0.26167322607303456,2.8102466022290954e-05,0.020257985798200796,-0.016871831869463744,0.05229205128694452,-0.1772280969761876,7.153258882047399e-05,0.005896254622855434,-0.0006725153331592622,0.0026108013473543482,-0.2722507309120326,0.00011778146666432734,0.005167315060609022,-0.012019801203023258,0.010270027620134271,-0.29275296706843007,0.0006689616704480107,0.0023382160207711476,0.01628489453064059,0.0585058570693389,-0.02396564521711899,0.0001171579094088135,0.011418246926503612,0.011330665901002948,0.04330299938465245,-0.26252706857611163,0.0016794095940783594,0.002994336120753737,0.026469923661154377,0.2980681777340917,0.3514764974930111,2.2835959894153123e-05,0.02313198029215502,-0.016067326678487537,0.046952778655173714,0.4666571276422251,0.0011188029291797086,0.001960542640753536,-0.019701785533419156,0.14995187867814658,-0.19653241713052474,8.74942110144598e-05,0.020215544248480388,-0.012654397765116437,0.01574481710754842,-0.2629170891031299,0.0001896921013583611,0.000600250252318725,0.016172638290870688,0.022821573065019057,-0.07744066016781716,0.0004067609104256455,0.001086502517023697,0.021276493457267856,0.07816343523972885,0.6495232900472928,0.002109826569612544,0.0032879908622707728,0.04308598627033882,0.1499687344091639,7.283584854563247,9.217766077123351e-05,0.0093201815942961,-0.053214894615816015,0.06905398534529125,0.1333246815606031,0.0019156741986247558,0.03744152539521586,0.00241086682382214,0.007569861966375869,0.18011100865292307,0.0001261831302300042,0.005110451020212123,0.026506002729279558,0.07013087558563193,0.5035078180014214,0.00015321290719577543,0.008605327412589398,0.049752127146388644,0.1942509408654359,4.374958953120311,6.251186380938066e-05,0.021060140550309067,0.0009194262772835201,0.0031775140174344785,-0.1334241833621068,0.0027425054204992813,0.016876008904679107,-0.011933545009730163,0.06433128118155952,-0.21265431436502316,9.227580562841555e-05,0.008942619476055106,0.01775733147694128,0.08859395589693467,-0.2801150244824386,0.00014535647816489502,0.020166712000482385,0.025731406410654117,0.15560074789488443,16.56506103554561,7.821688982160497e-05,0.0026116560183597707,0.021074582795808594,0.0951890704590053,1.6399625311804875,5.564412209487796e-05,0.008911983921583063,-0.058946929036259164,0.10870670286557921,1.8365482064672984,0.000264383443650813,0.005316059542872344,0.03146490442499245,0.12120924780009158,0.9475810842058786,6.455130650161752e-05,0.011012888782141506,0.0019161744450172272,0.01880047720777298,-0.2928297536175696,2.629647018481443e-05,0.01243347326067544,0.0016163670021996862,0.005461529248106324,-0.2928777889823351,0.0001034509960719399,0.011517479748832216,0.0116571275024701,0.04547011008294555,-0.29227042390019853,0.00040410433746098593,0.006249920987127204,0.035519731146259156,0.20674148457316538,1.6224362853296694,9.840424539396332e-05,0.013694643292072916,0.0019342696496737147 +2017-01-05,-0.02987533525216178,0.22987909508095825,-0.1011868116144758,0.00013743580562917995,0.0018160893660478428,0.05503964333907014,0.15753445018224582,0.5093909332839466,8.383214837640767e-05,0.007012177012109654,0.024520206312836638,0.0779878272091428,-0.18061467611231619,0.00014544356253074303,0.0029371407577514527,0.008372154116435009,0.00887276903733594,2.4758641150595166,0.0003184534028141338,0.0008532730232556525,1.6455943305239033e-05,3.539895664512997e-05,-0.05142281453500124,0.0002432372546424712,0.002849110508113013,0.013687076719816626,0.046141650614559555,-0.10422046836705992,6.47685709697198e-05,0.00843458047186998,0.0014344717155833696,0.005048145254359048,0.049632309347176,8.337771748454791e-05,0.0036586824608160888,0.03370427593415379,0.3692130561680712,0.2728773354897519,3.130448517874622e-05,0.011903977226188816,-0.054354477047630606,0.05144622894352007,0.2037362503952274,0.0008147541143436299,0.035764011046444916,0.02718966776766816,0.05712034604410211,-0.04209050490979217,0.0001664466112199104,0.022254850409746476,0.0008098940308978337,0.0005498376452931707,-0.1657558471858673,0.0007199761088435788,0.000115287562687538,-0.004159759095204641,0.05716411218045314,-0.056141722149905746,2.1685403455922395e-05,0.002423097751309073,0.02366629655011128,0.06382079788080677,-0.176015142769268,0.00011015877825058072,0.005173939114357489,-0.007182398612735126,0.041235396907840796,-0.014976286075365306,4.90299153367528e-05,0.001505676182680773,0.02939879191913592,0.02501885077965628,0.04689214613375799,0.0022918442485952593,0.008649227294432103,0.0152557399522091,0.09804217057600466,-0.18312934056789998,0.00012804790204196063,0.058414213941134975,0.0046530442499409215,0.028616201674975205,0.044370116072650054,0.0002517870715271343,0.009715821862844712,-0.03738671191970292,0.20541722271861557,2.5998781388544114,5.12674096109002e-05,0.0023353691485141852,-0.008476017600854637,0.0483139757031948,0.5453755077337132,0.00028913847144570635,0.012686286816121169,0.050933022703580105,0.6736635983027895,-0.12542683908271832,3.1375207118341877e-05,0.011918203683380967,-0.016128056091319315,0.15965974609597766,0.07123948255823916,3.3749574358020025e-05,0.006532548428170229,-0.0243940454975458,0.06716599639282145,-0.12315108092834116,0.00011699225810266082,0.006985035971332232,0.0029920751417204777,0.020266432887493406,-0.020864122403590972,3.4102605194151764e-05,0.023601960501385237,-0.009259626177000388,0.029261786153959517,-0.1761925052438972,7.015683754945153e-05,0.005935259403482047,0.004662189903726988,0.015551761190672767,-0.174157425525312,0.00013707522784812848,0.0006122128204375426,-0.029898262877444844,0.029001168559260444,-0.13027861449989955,0.0005892587225732976,0.0062810006156073265,0.0010149986891562722,0.00420561982283992,-0.11784227409037912,0.00010158310407151981,0.004818483707262197,0.04821298098333663,0.14944408185002234,1.6919953903961842,0.0020706392309646844,0.005200416464392114,0.0007470738651163798,0.006580381985599749,-0.16299150676031185,2.9194069277361458e-05,0.00823661022853764,-0.0031529377109905153,0.009610693313153914,-0.18078622513832995,0.0010725855506014356,0.007361881611835301,-0.00747602621260713,0.05986639051025652,-0.1734741703737872,8.315979008803245e-05,0.006532176749898596,-0.024107581124433897,0.03363832194082599,0.05782245773737256,0.0001691471561407822,0.002899107844881568,0.02525560166966307,0.037846997556002134,0.0025083080080481063,0.0003830277161277318,0.011364468551294124,-0.04034722414105744,0.15295376318930828,1.91760796185183,0.002044578716135954,0.00967270547009071,0.06026162474176587,0.20380345536404204,0.16023546157603497,9.486798236621488e-05,0.016091192761327002,0.03349795339762281,0.041040389285096686,-0.13905151393523899,0.002029009097364671,0.009643632242271188,0.03459858050827986,0.12799937211121928,0.6601132186563246,0.00010709433005959547,0.0023485810516899464,-0.025700747782303426,0.07807335930601525,-0.022161725360329926,0.0001334452959977754,0.0006985964157804615,-0.022452520284474153,0.10388173567121207,0.11775452041273686,5.27521087581413e-05,0.00960083715319826,-0.024227933582403743,0.08158158569219719,0.019283115747377136,0.002814765957956315,0.02612772244820038,-0.01656012312243865,0.08317448991628876,-0.1212407500574172,9.904076493583432e-05,0.009074517159121902,0.010655777311334628,0.05756385220049031,-0.18350004596039848,0.00013424436681935446,0.0033608432552928334,0.005147450454925918,0.0299907780398109,-0.15633094004262554,8.118076531751924e-05,0.00046673885462872365,0.03660891312058616,0.17524162695219675,0.1886634675597618,5.250455157946015e-05,0.008764441289105281,0.02854553513028316,0.054496552067798965,-0.15216866823118452,0.00025538686511900337,0.0029882152532312504,-0.00966372980320228,0.03628773489995566,0.1455302688444026,6.622154277277902e-05,0.004967652039492664,0.010130138639429766,0.09864141550696753,-0.17217081642107107,2.649643095341219e-05,0.008875625570084764,0.010607698970961997,0.029174340188507928,-0.08546465078379555,0.0001270951881718312,0.00513878604209522,0.0143004076045752,0.06307229616066512,-0.17872494623125434,0.0003573861725209338,0.005221754530632031,-0.013258394252161862,0.07017290481085392,-0.04590621576408295,0.00010821644689956768,0.019327338209423908,0.004416638791778349 +2017-01-06,0.003253011055979129,0.02147537484378618,-0.11941384474132123,0.0001601885131125472,0.001964281201033785,-0.020241244660145825,0.06805705561258585,0.8322867150095918,7.13632441718845e-05,0.02543005719988836,-0.007617409778953929,0.02564489916735052,-0.08647072324634257,0.0001374053136496347,0.010526937909655412,0.01193561437279969,0.013262214006678347,0.18621398527259833,0.00030373623367993015,0.019433120932958636,-0.002992187899319826,0.007191981405712788,-0.034832753761237824,0.0002176897991613572,0.0025433280317831847,0.00047478397682001425,0.0014988955343081239,-0.13132498571678947,6.916261859564574e-05,0.007253765050519776,-0.0032080262807640462,0.01195622991169743,-0.06868632603536934,7.872877880332547e-05,0.00876725975275294,0.038235665346942366,0.39669939586311614,0.06913657387753534,3.305260756450925e-05,0.00243330442780151,0.01060571739594554,0.00905215191620133,-0.10627537750359775,0.0009035100825883851,0.003532669390189061,-0.028667774181183787,0.07169695912232953,0.08627344837137318,0.00013981543713577948,0.010137421573947245,0.03867326965471661,0.029685325182271387,0.573225419696479,0.0006367859005656216,0.009654049404086991,-0.002780712198313486,0.03877658915738611,-0.019725366328601883,2.13702314679294e-05,0.004311201258001825,-0.011734743182714993,0.033578572511728744,0.08701200195434795,0.00010381554728063434,0.006702123428233281,-0.008716212844894287,0.04275501955645805,-0.03561456305341601,5.738554833944842e-05,0.008235503242042351,-0.002468361298688844,0.0021685516671796044,-0.12951059731649006,0.002220045764205915,0.010079423409863744,-0.013389505676244773,0.07662310788452913,-0.08918113377781976,0.00014379933848838143,0.02933480279018269,0.005306325499696893,0.03200013022292237,-0.03197857138781121,0.0002567736018526801,0.006333705240478814,-0.0005917757509254805,0.003337071405178086,-0.10136623946953256,4.9951970118978466e-05,0.006379097502858846,-0.0315184255549435,0.18526776650144489,-0.1309560687081423,0.0002803828568649111,0.004536977176105938,-0.08249943958556037,0.9066815187232785,0.41779346461136735,3.7759520119775715e-05,0.043766247228711336,0.010450219767811212,0.10018193023486542,-0.08936753091247235,3.4851200107575464e-05,0.009497929013172462,-0.003606845849834196,0.01104147976638941,-0.13215260026025757,0.00010522599876908218,0.004983652472751249,0.0559988083721262,0.3913961258182937,-0.07391483993188531,3.304871965442392e-05,0.009546675480619599,-0.00251069240176662,0.006063922866928981,-0.1293563510568896,9.179461868582774e-05,0.001703174165926911,0.01652596572797649,0.06225272137815057,0.13129503770086334,0.00012138278620417225,0.005696200275621018,0.033989174434630245,0.027920117830536686,0.2577641199480989,0.0006958232414606539,0.011886795273281577,0.005352919288392349,0.017941467087021372,-0.13290093189794508,0.00012557950054524516,0.0015290986761126598,-0.02479125300634706,0.08460375367443057,0.27809475852095433,0.0018807367901946211,0.016693861979332716,0.019149326679048784,0.17355379651484978,-0.05308422550214563,2.8372760035870633e-05,0.0111743193561248,0.013252013468656544,0.03852088559930603,0.02831962087619739,0.0011247522622116397,0.0038566759599452808,0.005762171927986998,0.040704573935356175,-0.13141436333650938,9.426894404260249e-05,0.030839980849159444,0.031607497484141815,0.05293644205668317,0.8807277689837446,0.00014092263334316893,0.005283606039671261,-0.01337069905388026,0.019315091714672175,-0.0414846508434564,0.0003973390535893864,0.015074149543743278,0.013419580295433399,0.06368326552726125,-0.10006510647207578,0.0016332924312103137,0.01422728584181706,0.002718792508746047,0.01100908877987131,-0.11808318410181537,7.923463488623123e-05,0.011461020155110723,0.02120656300465953,0.023208560399900473,-0.1274982671259088,0.002271429576283331,0.03416619593600409,0.014826253674982715,0.04374325150229944,-0.09616824221046011,0.0001342877512814148,0.0068316766325233385,0.0462289188639745,0.1109462204126786,0.28629960527598775,0.00016891242666234986,0.009193262917521823,0.01049381617612914,0.044602150228117615,-0.13347009871685533,5.742375408208001e-05,0.012015950751856682,0.028123286879913854,0.08491417555986719,-0.12783083071931994,0.00313909123029244,0.004160395583400208,0.02978128537544343,0.13356296781815225,-0.012058114933394261,0.00011091695751056375,0.017675388095498214,0.03687444829996852,0.20443720466086,-0.026082362537114497,0.0001308056133712562,0.017167809791106336,-0.007717021712565441,0.04079316361461695,0.10843759118172057,8.94769215169252e-05,7.855800190319185e-05,0.054777486454233464,0.273734943679529,0.15104889835384544,5.029435630117438e-05,0.012040391485844775,0.053694971367616,0.0966199344539692,-0.0377256066856413,0.00027095443918560017,0.03289573824354918,0.009425491973791467,0.04105531038410553,-0.13383385374006276,5.7088556779729085e-05,7.91500121237748e-05,0.0006581896069484822,0.007962020929341024,-0.13122243610638612,2.132843506020966e-05,0.008854537825936235,-0.013160077523432765,0.051998230091875444,0.16063594604755396,8.846650104278243e-05,0.00224147670638188,-0.03268840257360454,0.13755722479833182,0.45694264120206823,0.00037457454736436967,0.006565626368839834,0.028694746605920203,0.1550278648143256,-0.0003953481855143755,0.0001060142937276759,0.008357040301240773,0.006906761185418066 +2017-01-09,-0.007034772464836363,0.04568576165882006,-0.10552376100369033,0.00016283800357595935,0.007081227310324265,-0.02836660460867649,0.09388267317405471,0.17419398294544258,7.249906987285724e-05,0.009440537166445308,-0.0302983445106469,0.09671445226605034,0.013751143451455944,0.00014491879940044743,0.004516147378559439,0.014313516496094235,0.014818724559484086,0.06628799585605873,0.0003259893210551374,0.005129460807142202,-0.05146142425296972,0.12946447635361688,0.843417528062398,0.0002079835347242122,0.00293590590467866,0.03690237203524921,0.08869189936144421,0.29672070579317844,9.084835485570693e-05,0.00660577907197664,-0.010609543149017417,0.03742051872163309,-0.09386668729382479,8.319107479499363e-05,0.015652358348985033,-0.020100931130188814,0.16495439835801876,0.2042319967315096,4.178793302600715e-05,0.007174617236688519,-0.010578310924224383,0.009449267635143643,-0.10373815722710643,0.0008633024326805153,0.027740509627753623,-0.009158477885837395,0.021923656059762146,-0.0938289837897881,0.00014607375964899395,0.020238510132813838,-0.013235102338103587,0.011016322093614105,-0.0481405305621244,0.0005872391978128594,0.0007696498747994183,0.0057868361256574125,0.0720868524703328,0.38110138430532253,2.392257418798664e-05,0.001922891067961711,0.03382335993234521,0.09257080475189575,-0.03352702588199004,0.0001085409818454142,0.014013634399568143,-0.017724316643163852,0.08523379253505572,0.07375098913582064,5.853552330613093e-05,0.011381427465867807,0.004194964296753034,0.003557329948694779,-0.10478683301288884,0.0022999960641779463,0.012654984546731241,0.05449687974679888,0.40125874592502214,-0.021959255028749118,0.00011176330434573973,0.005740630449168769,-0.04585766384601718,0.2519391192203732,0.15166842909052317,0.0002818542265203508,0.016905096214737788,-0.03955914064173869,0.24999681466442802,0.1776043320075773,4.457315026900214e-05,0.010638692626121046,0.037940940165039044,0.21847573547875407,1.1651464309217616,0.00028621453550960554,0.00885323963608554,-0.02149952298820036,0.34348521409781935,-0.088219166130409,2.5974728015415187e-05,0.010662930576956909,-0.007324193663020763,0.08274312414543765,-0.07018327522390105,2.9573969025583072e-05,0.00017320198938597072,0.0015202212220805035,0.004663475806117613,-0.09683454983212807,0.000105007379042436,0.006930689051994908,-0.021316730762179926,0.13138399295069023,0.16425683306812,3.747749194205757e-05,0.007657238230473742,-0.015593595712514775,0.044833674659675395,-0.060302538271622935,7.711152935883719e-05,0.000776747060925672,0.001129805203785323,0.004412376206136071,-0.08623988945963408,0.0001170791692971989,0.0006698070048945882,0.05708209018136171,0.060095395010161576,0.2198776201834591,0.000542917992495924,0.03786692985481773,0.008731597404308043,0.0315717139260314,-0.09521071108358982,0.00011640765838006871,0.0043429876832829575,0.005431475903784244,0.018321540989804905,-0.1028264233314189,0.0019027206577391714,0.009737286372419218,0.047899908482721174,0.5247654353905818,0.10556179630977318,2.347208435082271e-05,0.009727772929142786,0.025177511490366518,0.06627717733776416,0.19125879528867576,0.0012419956321967763,0.002837425838735849,-0.008999185869541747,0.05708257609036331,-0.09402946084849699,0.00010498452819660105,0.0075012731261773,-0.005593708756316189,0.006949483544916991,-0.10503501436528594,0.00018997336080613133,0.014419525305932823,0.029564334115648908,0.04334156747598741,0.04167373069272765,0.00039153212522037144,0.004179704309598714,-0.008446949708153637,0.03092104115768679,-0.08992234227960313,0.0021173670031527855,0.01490397717433591,0.01526385047132458,0.05478939974451049,-0.10554423774719517,8.9383618236662e-05,0.0008594381494174386,0.005839790676454849,0.007967739771526362,-0.10413734711710586,0.0018219620667234379,0.020535757759554813,-0.03630670276747123,0.11751344279005208,0.1003593878884625,0.00012240954856796232,0.0375443179633199,0.05762010899364581,0.14481076663254533,0.12864362450899797,0.00016129971455394813,0.007743689913099661,0.01778108154831735,0.08326391041411589,-0.0949045985824339,5.2121306748044464e-05,0.006306307860076658,-0.037220525533537795,0.11438092495871577,0.06226896878661763,0.003084231401801033,0.006955854873980543,-0.014397506410003067,0.06965021297668571,-0.06101233933625842,0.0001028265826168911,0.02967197427251132,0.01970503675966485,0.10179017175563046,-0.10360033489157582,0.00014038871102824976,0.004011129352632512,0.006580821543039786,0.04090656078988414,-0.10528073770315002,7.609144731712956e-05,0.0009015740431861671,-0.0460576321439466,0.22943628898109253,0.1422758443732458,5.045298804754846e-05,0.027661084917802944,0.01258583116030007,0.02849859258968622,-0.10406588557108026,0.00021532174098333115,0.004108634807535193,-0.008770936970813784,0.03174128541217864,0.01283169958652871,6.871251674395026e-05,0.005104792869448018,-0.02580537430478523,0.37714762333355634,0.069116307047592,1.765346956007897e-05,0.0021842218410913364,-0.018364846558117594,0.051549717969234944,0.11834443301419453,0.0001245288492983,0.00142518084293269,-0.021246661214306836,0.08684145893757984,-0.021222193196587084,0.00038564841688184777,0.01746767577179669,0.022226156027384224,0.1179101494404327,-0.07247749057361744,0.00010796549119841063,0.010160889171682994,-0.0012789167299501586 +2017-01-10,-9.780642486188105e-05,0.0006671277014640575,-0.08262810405822106,0.00015504044056757857,0.0034819832953908126,-0.020766892394547768,0.07341977629599089,0.0021336658632488395,6.786861431938899e-05,0.01684442389320422,-0.01996997722657396,0.0643576931032056,-0.05044871208178463,0.00014354045074133125,0.01491611774476759,0.00022596386728229546,0.00022916956312979362,-0.08712834682384249,0.0003327744071282134,0.0023383487737176417,-0.0075856159299537,0.01716045317417186,-0.08286175376205242,0.00023129160496846362,0.023345036680401724,-0.008137229488254256,0.02564762537614492,-0.03249780822356627,6.927493749002298e-05,0.0048713600392380815,-0.022043378012232138,0.08316225977096925,-0.08435541885864103,7.777530475481999e-05,0.0068104030921511405,0.011263509667856266,0.124975665146647,-0.08710741157205934,3.090629131294395e-05,0.022846671434453843,-0.02478789945758904,0.020677486203494178,-0.06236797303105782,0.0009244571225174139,0.01062937673111878,-0.02468036659704517,0.05591997272677636,-0.01725052863209077,0.0001543286445319427,0.021846872062314716,-0.011622067467898671,0.008443619941446968,-0.05719971132239349,0.0006727892965169815,0.0007493173839272626,-0.005990208367791967,0.09802229350910419,-0.08470646702161076,1.8211254308147304e-05,0.0012255909916676986,-0.016745673442399453,0.04664628313225239,0.07428259029895184,0.00010664404552563955,0.004330637481220978,0.010824604487779308,0.07142497427867396,-0.0331566176652665,4.266028599356386e-05,0.0010656979646186874,0.04584098416409085,0.040829247343357335,0.18284129088644285,0.0021898054455960028,0.01678845603013147,-0.011202833048761338,0.06312768966627233,-0.051482313565317704,0.00014603604955879231,0.0512841715270035,0.023487450371776793,0.12722042976647488,0.1264511066961912,0.0002858822878735873,0.011598385170910672,-0.04591975062308436,0.31170128463593744,0.10642027721278789,4.149749532625627e-05,0.004656868599096408,0.0480150713999186,0.2171156368467204,0.23289019261139504,0.00036447964855283434,0.005728800004749295,0.025340248012000258,0.2862043758363612,-0.07269289300160298,3.674217174760563e-05,0.01259353697425046,-0.012125050751347514,0.11287309148366935,-0.02591054650701048,3.5890115342119994e-05,0.002091011041163943,-0.04961132840347655,0.17496381407844383,0.14471180582736423,9.133881530042584e-05,0.004095921639685007,0.0005203336864386814,0.004276251811149474,-0.04849138129597046,2.8106777002601303e-05,0.012119244593838405,-0.007982377057291032,0.025676301377651044,-0.08668860302506952,6.892506051094995e-05,0.003034535339657825,-0.009897024093637657,0.03605023486231485,0.11173016904728084,0.00012552930510516914,0.0018203118685339995,0.01723657702448816,0.013479242954819327,-0.07765010064742739,0.0007309052553289564,0.008801590359456145,0.0013898001443046514,0.005485830845917635,-0.04861631690615824,0.00010663406109894491,0.0006424204234613878,0.004155864468910948,0.01151482098604365,-0.08357260280113629,0.00231645229062628,0.003202336818018017,0.024874229096346664,0.21727525535358203,-0.06198224414984601,2.9438898502139703e-05,0.01763796363717029,-0.05483016976201935,0.1641453373826681,0.7900524190844499,0.001092099754240165,0.019165175573616734,0.01867346534323605,0.14892949657071122,-0.05061908179969425,8.34968019640996e-05,0.011385034465030893,-0.023291975363482327,0.03642128658916738,-0.01832244464025916,0.00015093724721293656,0.006081524057638389,-0.006229101784645987,0.009542060744395656,-0.05809423325798361,0.00037470299485778337,0.0032163749340184517,-0.010266095875707773,0.03936937659454168,-0.07078868809065691,0.0020211433597290083,0.006456585637407778,0.004413516967915689,0.02016492446510935,-0.07877442200887207,7.022286941789719e-05,0.00576109831296874,-0.030420628476248084,0.04325886341675693,-0.009705658511487868,0.0017481160866956542,0.034187367602360005,0.04032648941015049,0.12916417019782653,0.10484091930648534,0.00012369848903320764,0.010067274931836921,0.025305081256125347,0.06065096006863954,-0.07857477316749831,0.0001691338101071997,0.007002751713959164,-0.025908817856411456,0.10222647089280647,0.0809008327636241,6.185832481989051e-05,0.0018570108959691484,-0.03595494374709547,0.09170323068051492,-0.0012870727927874175,0.0037161397307144384,0.0061317143678617314,0.012521491691989302,0.06346186965712432,-0.0752088911800801,9.81485250777673e-05,0.000490768463241499,-0.032114543356833725,0.171991475430422,0.2171299082930227,0.00013541152008443268,0.01752685356264139,0.037455269560663945,0.24480780901401747,0.421221283111819,7.236629840066491e-05,0.008559357606920767,-0.03140904685868328,0.1729835928030504,-0.02601448476286808,4.5634914308583085e-05,0.019955346644212578,0.052846909963291326,0.10804970183935819,-0.02930134240503671,0.00023846542503163385,0.008110342429730587,-0.01117350969349671,0.055183922994301034,0.005245561181452884,5.034906558278924e-05,0.003662925780503787,-0.020890435895571133,0.22408235502592067,-0.02663696077492744,2.4053103903078603e-05,0.005633157768232874,-0.007390895516949578,0.02224019631181277,-0.07645729017472919,0.00011616289072923395,0.009190705862112201,0.009466744171385428,0.04373124760210958,-0.07170262503672042,0.00034122178019329653,0.012123321614547242,0.025430986170690777,0.1309918109622987,-0.0499481368069654,0.00011119643181791656,0.0024227551464094717,-0.002397200554519339 +2017-01-11,-0.019470501791013135,0.1310697473167993,-0.052370572143689946,0.00015709460333063693,0.0053726181916782054,-0.007292957876044317,0.02460617317795293,-0.055326200160819426,7.111646409914123e-05,0.027415109785037205,0.05666659961082231,0.19714571940917203,0.06346631555164918,0.00013296489822680862,0.01502495797734334,0.0070187486312993635,0.008105000003583019,-0.051109754664197954,0.0002922634629654833,0.002368374362755367,0.005851768444842464,0.013248085776833883,-0.06814669807578455,0.0002311169372653207,0.02579479350182227,-0.0010984723131846604,0.0025822451219527274,-0.06470667391986437,9.288346091580838e-05,0.0022953641106543436,-0.0183343476394999,0.07920755114129176,-0.07417727026275488,6.791860083224916e-05,0.016960268827330382,0.010974689994333686,0.08963793826054393,-0.07412218315269133,4.198546979161899e-05,0.006222559937220151,0.00151304873691201,0.001319464770798539,-0.06629134130651164,0.0008843005695901132,0.01055498649612845,0.01565157566416178,0.033624999263886055,-0.027706357363083342,0.00016276374277294912,0.009820328550413409,0.014582647606002573,0.013407710398140175,-0.03964008046122119,0.0005316258848087924,0.0014567801830903829,-0.0286798012280345,0.40922796746823825,0.6343330873214539,2.0884958654238686e-05,0.00550201977000238,0.024345839115760486,0.07065088832574548,-0.05590913180051088,0.00010236657169682015,0.006612851191414365,0.007105186844613942,0.0370906336721106,-0.058667925958250065,5.3922878590558694e-05,0.008698372960176694,-0.010253343613220146,0.008657944976968335,-0.03919338129902398,0.002309796202244524,0.008122722939960183,-0.0016722385325353998,0.011215534747057476,-0.06420965400844954,0.00012269598430359713,0.011954830517977931,-0.03517455438556062,0.20733808845437282,-0.015340596185216448,0.0002626985924826886,0.0007572978081110449,-0.026797418082559483,0.17379112031749738,-0.06371420443090833,4.343364977823711e-05,0.005762227065427121,-0.0034252340826333647,0.01723875265599632,-0.07280118337430164,0.000327469778356246,0.0069764333036299335,0.008177951513741654,0.13936218077421342,-0.07383389922002075,2.435173050827155e-05,0.006389212431909439,0.02271597056449745,0.25217854729036904,0.11402842849842838,3.0095729011502802e-05,0.0012494008466417128,-0.02813040111333713,0.07188371586292082,-0.05068325256373427,0.00012605734672488267,0.0015319874781359367,-0.08430511752929913,0.620819084341185,0.4280659762159786,3.1367597410277965e-05,0.023700281646856586,-0.015040159717824667,0.04053046202447158,-0.04778387349627921,8.227128413382266e-05,0.0006637525288566014,-0.017856597631324946,0.06319683580218215,0.18967246827742418,0.00012919686457370035,0.010192329881366206,0.03314541323571908,0.03587779788075036,-0.03457586520892842,0.0005280477790757242,0.016805337995952796,-0.006380229403518905,0.023859440233898032,0.11747689749713117,0.00011255429001550283,0.003971184562421015,0.011013842464039558,0.0392113466468075,-0.07327089505375246,0.0018027947194513003,0.006158289272032237,0.011197378560209732,0.0976974711065003,-0.0731544203209994,2.9472381769058893e-05,0.03783749944491402,0.0005271334658693687,0.0013426869913747864,-0.07276046704188371,0.0012835626684151464,0.017940147830896678,0.025590658315590313,0.19305112060865814,-0.02216626721151797,8.827440003032728e-05,0.0008541157673879981,0.0031767472584640403,0.0044330717479051296,-0.05655168039752941,0.0001691310284770106,0.009301920382696076,-0.005940824272422813,0.009379561712408724,-0.05437471907667455,0.0003635532864420155,8.291638887050388e-05,-0.026701065644259055,0.08278725863591352,0.021608219210682997,0.0024998585394333133,0.00860988228213622,-0.005235382305259691,0.021362853426831908,-0.04721232142876687,7.862841305871177e-05,0.0037969079370938096,-0.025323171611947744,0.03907267966922571,-0.036831149619514274,0.001611098499166741,0.017268213760769643,-0.006405374063974182,0.02172787433533416,-0.0686116350948106,0.00011680012098195974,0.022036086573956826,0.02605968107876916,0.07295360482789541,-0.06679311462946785,0.00014480471932882492,0.007662400597651848,-0.036015925615924045,0.15716219218263197,0.08662198454493239,5.593201014862665e-05,0.001130758695059417,-0.028651341868626272,0.09497540794799314,-0.036993246569758845,0.002859248204106547,0.009258923454717717,0.018294682745046115,0.09342714766530126,-0.05035784001263919,9.740749240806485e-05,0.004199899585339057,-0.014530911119949202,0.0880466464905317,-0.02459631760603759,0.00011968529966326143,0.014898242099407868,0.015104467656200816,0.0901359682305353,-0.06825591521393819,7.926035150965493e-05,0.0021202736796186146,-0.000990409446816615,0.004308353524877433,-0.07417986186407736,5.777644773100703e-05,0.0012765762106017604,-0.04301397512659989,0.09052546606595518,0.09636798242456891,0.00023166914948626147,0.03820575857052665,-0.016174301074560013,0.07315223246154877,0.029346257722456786,5.4980959464512e-05,0.008242520525135223,0.006113622197562128,0.06548057284757779,-0.05874085480561198,2.4088924616030052e-05,0.027931203181111156,0.002667380190123476,0.006641400085242531,-0.05713797432608324,0.00014038937564731432,0.0017487247991078893,-0.025585622017513163,0.10683261958916958,0.011970621969278691,0.00037750270936136846,0.004110859088793477,-0.016666989494055772,0.06808165971665225,0.07180934416607941,0.0001402164033887753,0.0018083828358967731,-0.005215732466347639 +2017-01-12,0.020663859206421994,0.14591792956530453,0.018995887171542207,0.00014975776818013307,0.0002402026163143983,-0.06780332235711638,0.25791931309462063,0.23405481383300103,6.307795977919784e-05,0.007948967589329897,-0.02099022870568922,0.08097175592372993,-0.028471693427025824,0.00011991701730529492,0.0032776454086291466,-0.002720010532625884,0.002862914147935065,-0.05766307640367309,0.0003206491679483706,0.014280626581470696,0.00583822708734741,0.013725328440797312,-0.059920798629603575,0.0002225645596957115,0.03044920012890232,-0.02066261735120345,0.055140399618550356,0.05565218566230646,8.182050651486186e-05,0.007149711147144668,-0.017771159018519504,0.06581140046754956,-0.06450934009434808,7.923270364178914e-05,0.011727671522567889,-0.0022797714588848033,0.01793523495398807,-0.03570670331223627,4.358959725898817e-05,0.01146401845371331,-0.00801205924762034,0.007864823193451689,-0.0645761395321659,0.000785597286949051,0.006244556289522732,-0.005292064509540243,0.011324469234443676,-0.06340207330908772,0.00016340643668639503,0.018022229239325616,0.0022744624289784496,0.0016074852915290868,-0.06454094051159565,0.0006916018044204265,0.005948171018764563,-0.015451848624743395,0.21665501808732524,-0.03265786395378497,2.1253696854098722e-05,0.0020973107788682934,-0.00046215936849943135,0.0012406028080597907,-0.04243524684824608,0.00011066493649353525,0.002165350833222182,0.00548159293176309,0.026088683262846468,-0.05836365225235175,5.914478256029656e-05,0.007913002416650756,-0.016474666831974905,0.014761254766438045,-0.016414216419198647,0.0021767890158940536,0.0056670586106375796,-0.02416648646444051,0.15554976874501295,-0.013318858431611118,0.0001278486808908219,0.016003902752321685,0.006455722450489805,0.03683293131025741,-0.027467561679910026,0.0002714043470400742,0.013796576806146764,-0.009862390627469068,0.05478452568517012,-0.05158171765994741,5.0709023799487926e-05,0.0036197713895887596,-0.034548661330116505,0.18967816880727292,-0.030324767856715305,0.0003001930846695981,0.006461792396470862,0.009374961512108988,0.1174598279015752,-0.06408016768440186,3.312152804467521e-05,0.043708682224146214,0.009589505640917187,0.10253468088988767,-0.04889105903361126,3.124691484752858e-05,0.008784967823798524,-0.013050406986367858,0.03588029255673115,-0.0645467444193439,0.00011716309511813412,0.022623306579904193,0.02862483855879824,0.19794880235973245,-0.05576210126623501,3.340277464623275e-05,0.005712838181830403,-0.01732110018361071,0.05247408175459982,-0.030142357427174842,7.318262923348786e-05,0.010039833016923707,-0.002691410432657713,0.013488466985310966,-0.061089174603517905,9.123593641120378e-05,0.0003494754457696065,-0.016191989410158474,0.014799306537927727,-0.03232743022649854,0.0006253662029468031,0.02484001251158637,-0.01492687402637372,0.051200928696421635,0.2526597580552482,0.00012270917558392192,0.0018670017865109931,-0.04829274232207506,0.18249825358501914,0.32992277727496383,0.0016984091838572835,0.01118977941590857,-0.009225601638840016,0.09609197772939286,-0.048337343948883574,2.468821899881895e-05,0.016038120463861934,-0.02168615728034847,0.06101185389813004,-0.03000384312643652,0.001162089698563448,0.0034678363363293465,-0.007117048560054886,0.05628939573250776,-0.05011695418765298,8.419745912964125e-05,0.011747233698982703,0.0021232710518230497,0.003437377660490229,-0.054199680372435416,0.00014578860314477923,0.011497497548925546,-0.024814882733077546,0.03760987038969424,0.05858831379877388,0.0003787165673903665,0.01158395309150922,-0.03238327934667946,0.11890917269356974,0.033224385403708576,0.00211084240321493,0.006850895629128757,0.0008253516751873881,0.003554232519485939,-0.05667002512202781,7.450468302285602e-05,0.015986989961072492,-0.010121017141549216,0.014355904939135467,-0.05971087306776848,0.001752551457356935,0.0011052357068030913,0.01424227100721842,0.04639185429160562,-0.051433579749317976,0.00012163359704516624,0.003432975755731255,0.01825808230748501,0.044550661118016914,-0.06441062954296062,0.00016613509472807023,0.009926067144086597,-0.00735059465941703,0.040703075812087014,-0.06040432025354705,4.4076710074089794e-05,0.00620593407165552,-0.05341153176822947,0.14995865114099072,0.028174960298671285,0.003375837752993134,0.010718806557757527,-0.0002519700443442325,0.0011849600455195262,-0.061061771236671274,0.00010577566784750098,0.00514247442843043,-0.024975097560689438,0.12133851509098321,0.012640332381460952,0.0001492688895268986,0.005887160635332931,0.0062887698508162886,0.03648039589613262,-0.05807984146425447,8.153702418180989e-05,0.0011266308946204823,-0.015843685451039827,0.07838341141974962,-0.054329024711458056,5.08018403728151e-05,0.015493448519378823,-0.013211739682855465,0.026708263965691276,-0.04086241001570991,0.00024118136135902227,0.013007102062742052,0.00802180133699441,0.03367148227713298,-0.05335702397488488,5.924122672264761e-05,0.00122419532506899,-0.020159392615611605,0.18728393294177964,-0.02130874701814266,2.777206721069065e-05,0.0033386374751943073,-0.019236466256487613,0.06722132630651045,0.059301312493087885,0.00010002928914843308,0.0025067606703796166,0.006750771967545243,0.02496185691971373,-0.053688953518848115,0.00042628938626470885,0.007195901006168756,0.03885926204916482,0.18658301429364843,0.04622535279670472,0.00011928730860106401,0.02087226864255511,-0.00886393179706709 +2017-01-13,0.018310017810399388,0.10868001719256472,-0.009760810289573407,0.00017816633740037603,0.016661622010342162,-0.005936612126251519,0.020340837783377398,-0.056056120254869286,7.002939349653011e-05,0.020639428423922506,-0.07001568948367218,0.27245395336346456,0.1393959646510252,0.00011887744447303884,0.022278906719071307,-0.030486257911543514,0.02783158259382433,0.3371802335382078,0.000369686910078709,0.005431106021414644,0.06029152973203831,0.14862600286449096,0.2637799987014408,0.0002122556586906134,0.007538830407910618,-0.005645268073993136,0.014141157809320213,-0.04769870139514417,8.7165844240721e-05,0.011206973220429853,0.022379181190659916,0.07403045641640077,0.19395074699124806,8.87000001969947e-05,0.004994691000781912,0.022344954616367013,0.17316715822817697,-0.03485322532000731,4.424992729119322e-05,0.011211267926831305,-0.02215671712717906,0.016201853013279227,-0.0417527305851803,0.001054594524006682,0.01014281226502184,0.020735654747530398,0.04445834815214372,0.00025049466151269887,0.0001630896185987558,0.002024268463306204,0.03302876546151175,0.022699529334177616,0.08683279507958797,0.0007112132630404372,0.003643723826189887,0.013937197474675263,0.17693289277250282,0.19199259175438954,2.3474138621955615e-05,0.000277725554917813,-0.01978281038036012,0.05269429433631944,0.05033676985036992,0.00011152582207163555,0.015066676079696903,0.004135751505905559,0.021829794448117668,-0.05512320187219495,5.33293890693548e-05,0.004932334545266979,0.021792485514847436,0.01472150760094303,-0.028486888273778876,0.0028872038690028793,0.0068704651252588685,0.018797404270684943,0.1230583033022149,-0.05312717735949158,0.00012570109667804419,0.015280710077300972,0.0703777288077893,0.37136053868505176,0.41122669772494347,0.00029345919795039266,0.009555860336884988,-0.007577975376693348,0.042887609481318235,-0.04074233266242713,4.977168066849735e-05,0.003299890477736189,0.0554461128947449,0.3561765441665024,0.1326966171328147,0.0002565621560243759,0.004410291323007398,-0.03780859961555875,0.5912635409189052,-0.010533282338128036,2.653626058352952e-05,0.02847884812174318,-0.009876106537510275,0.10390151966147092,-0.01884951701076029,3.1757446540374746e-05,0.008570693528194633,0.026030474467731705,0.06820387410741563,0.07168013144392509,0.0001229407323776612,0.01397167612819946,0.06157097406452501,0.37941832625476185,0.001183787629717396,3.748435967897745e-05,0.02049194973841767,-0.0015731147247792683,0.0040156338351822985,-0.035244582763727876,8.685276992632761e-05,0.0011698836778778164,0.00015120729034211351,0.00046397171327758514,-0.05713707007904965,0.00014901494350838472,0.002108212955399598,-0.014053146539006987,0.014526368061585514,-0.03714531349451666,0.0005529579321553585,0.014640048860155491,0.019314568260708362,0.07223160415188146,0.09933302168329795,0.0001125495476573952,8.902024315556012e-05,0.01560600168757972,0.058236388259985734,-0.04449898711189176,0.0017199522556164187,0.0040851456394614015,-0.03198299371404656,0.27893590898095727,0.02134917368158979,2.948471138431772e-05,0.014445379123126637,0.048417381116794604,0.13676825952684424,0.1802435273525911,0.001157410037447038,0.012147021911000153,-0.0540708093328555,0.3862651701969973,0.21352599025536967,9.321868326289861e-05,0.016302831830694458,-0.022301929518808952,0.032628535684802326,-0.005628635685842198,0.00016132075335180472,0.004337296431274835,0.007462998161798996,0.00987637966759817,-0.05109885050262602,0.00043373000949419846,0.005450927609925467,0.002718914357189821,0.009745056947530526,-0.044922451947136906,0.0021625267475216766,0.014273102513587061,-0.031427857988582095,0.1431777479482073,0.06688360186927295,7.042544913718878e-05,0.005725913132204807,0.02030124839667793,0.030753154402448687,-0.040066035131042156,0.0016410063748140856,0.027994916362416744,0.009793505949760717,0.04417560961358128,-0.05322128233494848,8.783582335149533e-05,0.026155370862947593,0.013041166623947593,0.03444652358594837,-0.056270971654844605,0.0001534728016892802,0.0006610637507856401,-0.005979811820747161,0.02368502144186869,-0.05509575420613928,6.162084651801483e-05,0.005137700200368247,0.033117644748457006,0.10080834388438777,-0.012397786566039562,0.0031137305023284283,0.017333888320801516,0.02139429532945267,0.1063416818919246,-0.02727692773403503,0.00010007717384049176,0.0005853113525744961,0.008674665028209315,0.04890750394878324,-0.05502594632401545,0.00012862873519886952,0.01855710933731636,-0.02895970907158398,0.16053731619162234,0.3159236930385086,8.532315284775154e-05,0.010037719365489917,0.07442828101865297,0.3579699748191939,0.18898176755956017,5.225631517597344e-05,0.02858831364679365,-0.005247856836379919,0.008614946149330411,-0.048857429060650756,0.0002970016115214142,0.004105731088240158,0.0036436948792046993,0.012521948220058097,-0.05643532823387468,7.235765349421921e-05,0.00042311457988919226,0.008962952244386438,0.09888510636644353,-0.0316035616813836,2.3385759706360914e-05,0.0020614792802104882,-0.011050578814241808,0.039387197402376284,-0.04070260024319229,9.807061781836103e-05,0.0012674415153707478,0.004820876890548796,0.01935359490735243,-0.05199628249317852,0.00039263803316059314,0.01670171934515052,0.04622463177391721,0.24220946214111586,0.05981190918889238,0.00010930855443998324,0.01456079797889313,0.007450999677277589 +2017-01-16,0.001821105585180674,0.013712399607530014,-0.05006566195169691,0.00014044563603657085,0.001849125817903103,-0.015650961561840697,0.05790150939173204,-0.04350902283894204,6.48577183222223e-05,0.011232690855955279,0.02977311006576659,0.0733403393360755,-0.026158588687366254,0.00018779260759378257,0.011524375497032073,-0.0035575966966982014,0.0042570421250552075,-0.051029693998426946,0.0002820438418608781,0.0017161553214346493,0.007039681327143229,0.016506798275994435,-0.05123539333471734,0.000223145394705046,0.013539559928994853,0.025790781491858792,0.07119047506994396,0.036371323754987125,7.910234359854542e-05,0.010009704476609753,-0.00011999137682194108,0.0005120651000190788,-0.029735775584116855,6.875665092906846e-05,0.0162626287680413,0.011638225761940822,0.10350471398094498,-0.05129164193051661,3.8558955621082746e-05,0.010420674378434885,-0.001742625475856514,0.0014669044652701243,-0.04732311919781572,0.0009161087154699881,0.00752077077665207,0.0046905703489988375,0.011400782022832949,-0.049065741297418024,0.00014386425398854315,0.005435257677656556,-0.0038634116598675076,0.002906396426068377,-0.041980995864223145,0.0006497413308100838,0.01735397326105664,-0.0094945483122754,0.12563957584709487,-0.0481879697115199,2.252011669206879e-05,0.00617361133360656,0.011749223838114203,0.031294304173373956,-0.05045354393116109,0.000111530825364358,0.008062096790178379,-0.005263429970358483,0.029264742999470874,-0.03344384575277007,5.062743827560528e-05,0.005316668055060079,-0.012887857464270569,0.010501996270738417,-0.023053852985332184,0.002393491211222859,0.016526513923394427,-0.0005290395826849478,0.0033762790611857473,-0.04779670121272703,0.00012894423784344235,0.010909405551859742,-0.03809772734848584,0.19142134969886973,-0.0047475950232710356,0.00030818885351357144,0.0033960270430949176,-0.004541129401844183,0.027657906559394332,-0.028768290668467346,4.624933882135756e-05,0.005428501955586192,-0.026350646413273424,0.13524600428946001,-0.03536707320759897,0.0003211098574247834,0.031281498240029765,-0.11150161206263032,1.4509763905283328,0.21182183900180074,3.1889743914024625e-05,0.042544548950406554,-0.00807313281344912,0.0753800308730429,-0.03059492309269569,3.5782237613329346e-05,0.002666395705359908,0.006759464733132177,0.02129402256127203,-0.032902208813006116,0.0001022533046223284,0.006811289071685386,0.025793522855199105,0.1673479288946968,-0.04946558698454464,3.560268041906224e-05,0.01309229389380004,-0.00046927898700848764,0.0014769702379122038,-0.02800604560746514,7.044282209430375e-05,0.005873998855538909,-0.021787718755385346,0.08106292115688275,0.14267726226389896,0.00012289610148965427,0.0027060315594081945,-0.10734654727669299,0.10396161505570065,0.42129345246605304,0.0005901883383282093,0.02230048047134542,0.039056533894954636,0.1513528659984474,0.38166847714840646,0.00010861481299246289,0.0032486414523689023,0.04742239383986659,0.14568960391864075,0.07914685460261757,0.0020891714635509293,0.003952392500358823,0.015152424074424114,0.14492524249805608,-0.042528951291997685,2.6885633621954178e-05,0.01982426324590357,0.0006345582015738957,0.0022528343162875517,-0.0513137017840397,0.0009209021322830146,0.0024004735191827196,0.0016070490342591373,0.011868593914279253,-0.05067270152962847,9.016863614301341e-05,0.003648147505387808,0.028858618382419703,0.03955267816779441,0.12912664623426826,0.0001722047101004648,0.008300641374477462,-0.039341059873827744,0.060538576358871124,0.14133278801240404,0.00037300767331031957,0.005452657768616876,-0.01393473568094342,0.04995712828098823,-0.045546064003816535,0.002161979695253314,0.00427487853330046,-0.01779845917781644,0.07317111034530914,-0.017843450469470813,7.804285200208664e-05,0.010379688024302365,-0.030540523261430766,0.044395443300129685,-0.010682544573545774,0.0017100754356518552,0.0030067362452965932,0.017614454431307155,0.0660641209203835,-0.03568723588760118,0.00010563785458690805,0.019063356105589964,0.04111498017875296,0.10090197932679147,-0.011621192446688999,0.00016518126043870278,0.010851826466313701,0.03768744206944516,0.16658335026801144,0.061288098854313786,5.521778669294556e-05,0.007575631303123574,-0.006357985831916082,0.01923390333738985,-0.0508982218592226,0.003133070624134587,0.023208661276874192,-0.002672111693359417,0.014094088442366256,-0.04255370119979759,9.431009575945117e-05,0.001733157197211511,0.024551638134115872,0.13372675908232437,-0.020873642687451663,0.00013314441056504686,0.004551598053115875,-0.002118587356287106,0.01200818042319439,-0.04003730468772691,8.344837235244871e-05,0.0014385739455668937,-0.021645815922395496,0.10031539873648354,-0.030227973786676157,5.423176662533439e-05,0.05027378641015939,-0.025090025247465193,0.04125797863333406,-0.01497306455388559,0.00029649853086138146,0.009915004773634719,0.0012648563435625096,0.004335365503724673,-0.051181173573969244,7.254873787361438e-05,0.0046108300802146975,-0.021487885431831825,0.22265746889639312,-0.008852052248937738,2.4899332081827745e-05,0.004932837835171981,-0.01892119223758033,0.06707498534148124,0.017324765185277553,9.860453201500203e-05,0.007242145485373452,-0.011733978170885449,0.04841591535907574,-0.038553277978684825,0.0003820191199351326,0.0065507140937793,-0.02396910027523944,0.12486375024460948,0.08183460122588551,0.00010994795438346283,0.014504752418133633,-0.0047178259710848 +2017-01-17,0.026405483057757174,0.19269165356312606,0.0211979518792534,0.00014491648686878678,0.01067771249539964,0.022623260228259827,0.0783533874481911,-0.024933182665720897,6.928000982986597e-05,0.006337838747743085,0.04363540775897257,0.12548947496373217,-0.002707346471111464,0.0001608529169449787,0.04560093467322586,-0.006369772511171369,0.0072807361322403145,-0.04292635491648266,0.00029526807109380007,0.0007290855662424724,0.015550304636385659,0.03675066112203038,-0.041144635068934954,0.0002213968908067748,0.002294784191512682,-0.0050979521833268175,0.013015796172908501,-0.036597236145545234,8.552080073358845e-05,0.0014761300258948715,0.10077366236801613,0.4098917890933817,0.8727094121500621,7.213859486135114e-05,0.021619663074837356,-0.013669172957159324,0.11357543328056044,0.03989175291803553,4.127208895468068e-05,0.004808192716851151,0.00936415351415139,0.00803313923037681,-0.023438387326779934,0.0008989344354136213,0.004120273337265912,-0.05354529783561349,0.10633226371911003,0.212197205520174,0.0001760832985699423,0.022907035469207956,0.0014834470110067994,0.0009686356882591505,-0.04569626808503919,0.0007485760532271687,0.006441699815172185,0.00711162252468626,0.11094862381703982,0.01872660624568268,1.9101592088075125e-05,0.0011647042761299172,-0.012471718504629603,0.03302033765228048,-0.0042257801911338355,0.00011220076757089878,0.006335960613861627,0.017408571663387044,0.11004982391608516,0.0382847444318134,4.452824781154931e-05,0.005120472584364978,-0.023555407417950265,0.018840391011211478,0.012466610155328042,0.0024385051716340114,0.020178541703974727,0.04861811728904278,0.2828893550247267,0.011417023617766498,0.00014142742667128187,0.031830701160222706,0.006047192076528926,0.033846167479914514,-0.04081316580619063,0.00027666390089295216,0.006385750990336662,0.06225334495304451,0.3804327453622029,0.5856705839029264,4.6094144214760884e-05,0.01848859675448739,0.004660164581859858,0.021020350585699916,-0.042569695705519474,0.00036538280642595925,0.03341090616402762,0.015674302831654954,0.18588772788164976,-0.037519075394282314,3.499191779485324e-05,0.03502036371707682,-0.020359729570091835,0.2185384270932257,0.048404730270539625,3.112618549337926e-05,0.0043895504071942825,0.07338230188039827,0.20282684527291944,0.3267209098601861,0.00011654365945527157,0.015963008212494273,-0.02888710691653374,0.21570253888074079,-0.0007811450799012892,3.093436232744246e-05,0.004294114384799539,-0.01888582495298206,0.061034693153049775,-0.0013416623509965643,6.860196834826323e-05,0.005180799361018633,0.0006085210675769075,0.002100748057643409,-0.0441518451217548,0.00013244947569021018,0.0037339472271572197,0.039636173825661675,0.03359379498063428,-0.0033439430608334085,0.0006743854912717701,0.02799535621239356,0.017542323971413042,0.06189246699791431,-0.02422001681762339,0.00011929859875249,0.0041275030951396134,-0.015615256797458201,0.06379077316394577,-0.01575054432979558,0.0015711239154641186,0.010542616789203112,0.03314620931591109,0.36615202870511326,-0.0025252811182740233,2.327848000348037e-05,0.023091028811191697,-0.0038777692621952435,0.011853636726924115,-0.04539044027386396,0.0010695513004435107,0.014972767651232195,0.024961236539102878,0.1956002291382076,-0.007561576419141618,8.498110616268111e-05,0.008592198961448392,0.03116230921730175,0.04942765044425991,0.07931410374762428,0.00014880072673840634,0.005046030424549533,-0.0010896212366960378,0.0012304550806227063,-0.04637350424350983,0.0005082925086620065,0.004764403427166551,-0.007644371408955821,0.0295935431595578,-0.04652937814334495,0.00200214328742326,0.02422648338474417,0.007805181211836862,0.027425808470631436,-0.045492429668266825,9.130907056354837e-05,0.01257781200996415,0.027405777072881117,0.039220312299273134,-0.01664314632032155,0.0017370337831771811,0.032927922468161376,0.04565101823521275,0.1305608612206173,0.07297215901569018,0.00013853308292808967,0.0017616793286509603,0.03823139359740863,0.10562599755321296,-0.023071758957362402,0.00014672687959769984,0.00904073957701415,0.00256983060396454,0.011410443062203061,-0.04653069756217721,5.496875664420331e-05,8.871997997249867e-06,-0.06899833490762752,0.17645327061587054,0.0674446078625717,0.0037061838198089755,0.02844201040317719,0.046081062724927006,0.22535760197774576,0.11193098641611386,0.00010171636797878839,0.0007335597974738474,-0.022136361053259973,0.11064746039722467,0.003933704575446615,0.00014508601881333574,0.0060421704354637965,0.010409077451111188,0.0660951214378053,-0.04340629300742444,7.448889535604245e-05,0.008371583893386669,0.017718733171723913,0.07754390714446374,-0.03994315900961518,5.742914932791941e-05,0.015518141533619814,-0.007500019282206007,0.015962884405229718,-0.040937831168171304,0.00022907642946406561,0.0009855272231948068,0.0251236172372436,0.09888334290060184,0.07433410255447154,6.317909551133768e-05,0.002218118532600595,-0.01764161449677185,0.172193672968448,-0.02717770685539105,2.643336320079525e-05,0.013758792606299645,-0.007108518992376326,0.02645423872345644,-0.046344675676338806,9.392751322336911e-05,0.006425562375814573,0.03419056903513921,0.1505200312195791,0.09468029445889242,0.00035804696769285553,0.007599423144580582,0.09095607063080142,0.3706833755789745,0.313194234274388,0.00014054013844509903,0.04140658682125247,0.01238244363017846 +2017-01-18,0.011121901667359364,0.0764475772346137,-0.034104956559047064,0.0001538515615436034,0.017163579425009186,0.01019471349160674,0.044361466056443914,-0.03893481490615539,5.514163781410476e-05,0.014715931903305828,0.04831315607885472,0.14087260323391998,0.00020396907483025042,0.00015864853761933705,0.03846922443508071,-0.018079278522255306,0.017408417010017562,0.014062334105696697,0.0003505013299793582,0.004763440700080803,0.028585239821077503,0.06850037101901697,-0.014951056859619637,0.00021834672821849634,0.012471996263660641,-0.021771707860022003,0.05674774224227045,0.033480097758909894,8.377041184009965e-05,0.005340735667901496,-0.010675353592465051,0.041707878275876215,-0.041163620015279186,7.510243646943178e-05,0.028899874949494697,-0.0033982880238674802,0.02889178302729758,-0.02321053792781452,4.0335222293188264e-05,0.01643701279514509,0.002665958455938581,0.002471250728080942,-0.03600023754708443,0.000831919595062109,0.019305318329740445,-0.006877935150239319,0.015396322009499969,-0.04209033719644489,0.0001562078940569497,0.001610440180556266,0.005765727080100818,0.0038786572405917217,-0.04214974159237177,0.0007266027498053761,0.0033589166478106163,-0.007976431770302052,0.10908225599962867,-0.040836551240931274,2.1791008633893485e-05,0.0016271269915371657,0.03221901164476211,0.11362344962597962,0.010545981407007464,8.423552389772193e-05,0.003841635903169751,-0.010545574392570676,0.060231352468589607,0.006484825210261715,4.928439649985322e-05,0.004662513534662578,0.02074635540967471,0.0178837626544844,-0.016063852720393738,0.0022625901321824075,0.005156322230621902,0.012072350030888775,0.08886658400353944,-0.04256919009282712,0.00011179063947759158,0.013874123794992109,-0.015107103979180943,0.07946949554680392,-0.039198813505855606,0.000294366913407316,0.016951399197435348,-0.004447405317142468,0.02739351784007109,-0.04127216498138174,4.573196469884284e-05,0.017620247363193182,0.009297714240149853,0.042377304468792294,-0.035472686717735506,0.0003616010417820797,0.012399987394277914,0.040451100667006946,0.6101987126530509,-0.010176898616353675,2.7509917462103726e-05,0.026082407587840063,-0.007726281432512868,0.07090209825998232,-0.03456389515451333,3.6407691683735745e-05,0.011381404479348576,0.05396137020239651,0.1497371358094754,0.05933297733913701,0.00011608502601618385,0.0119407596860919,-0.054047482671172674,0.37163622197193497,0.045387733025910634,3.3593078950296525e-05,0.00735501994817972,-0.01797353479796951,0.05511629268928723,-0.01325060908989037,7.229876543219155e-05,0.0006201727271663497,0.008551107799856142,0.02907555825256891,-0.008110148630590827,0.0001344754217640215,0.004443271662631907,0.026632008995184094,0.02776919164946552,-0.02645220838963566,0.0005481712476314157,0.033748869867728896,-0.015679278598659425,0.058019022965323186,0.06190968704229643,0.00011374745147094809,0.013351255276557455,-0.053242715696916326,0.20211990943980412,0.13127089387436364,0.0016907145054576174,0.019607692924331267,-0.05277861788182609,0.4363634319358282,0.10311999903486657,3.1102253705757955e-05,0.007800239585697928,0.051188739714293316,0.1415042698527674,0.1083172495600754,0.0011827042629509374,0.0016757077976998103,0.012074792155493008,0.07485390076542794,-0.035762026543069994,0.00010742141531920057,0.010122140447796366,-0.0022292805306610864,0.003453406325288757,-0.04228947047712826,0.00015235700587282457,0.004663882045860269,-0.008023134590027972,0.011064300633998155,-0.03961863055426405,0.00041622103397729275,0.006561918142676655,-0.012665857218517892,0.05368851547177103,-0.03945427252968459,0.0018285360776827842,0.002268988114188759,0.029892548273565123,0.10916621787279607,-0.003695262630661345,8.785470918426195e-05,0.0016409177050972124,-4.000919686101777e-05,5.927731854657367e-05,-0.042519653701243026,0.0016778320093393641,0.010340514591029016,0.018584572513584762,0.06081597569463892,-0.03587570525906765,0.00012107401196195211,0.0021759845384954,-0.03638033846956225,0.09556904264310032,0.13315897352926556,0.00015431561565991552,0.03372444397810202,0.010880861895282219,0.04603673478347998,-0.03782210164586383,5.76863034233819e-05,0.026028091058436505,0.03985675026897315,0.15124474361822493,0.007690407447422035,0.002497696431662298,0.038310865337124814,0.026310436195518323,0.1291900176271743,-0.019489856241055762,0.00010130704820296645,0.0022494743558805854,0.00925195428055881,0.043833689350332314,-0.040365507199148574,0.00015306864471659903,0.0037582775274478297,-0.021816641594178135,0.1673684021387369,0.06758680084373626,6.165426515347584e-05,0.012297840870377942,-0.005508629712362434,0.024034521067701257,-0.040025704138216156,5.7604379482128954e-05,0.019010417564663186,-0.058090960013460056,0.10940792349247541,0.06735584341719664,0.00025887443995573463,0.009082967732404548,0.01856487076334055,0.07373143426035202,-0.0023227583942116176,6.261143017431736e-05,0.003630634290765493,0.013544089271189311,0.13497322716762408,0.002448775282515472,2.589008410283762e-05,0.0028666260217706783,0.013038765449083554,0.042560989551879355,0.07525919756682424,0.00010708625251503255,0.002526959722423297,0.005882843431749739,0.02199310374157702,-0.04035123543568584,0.0004216273144397028,0.0037326336063224063,-0.006436241068396049,0.03140810501968478,-0.019026464047659987,0.00011737142131880872,0.008220119381245053,0.001841293502028059 +2017-01-19,-0.01961525756693287,0.123618450880343,-0.004866386485398487,0.00016780206544285124,0.003228395958366127,-0.017268160736300414,0.06511630380936347,-0.028193653959269694,6.36307245288245e-05,0.002078032237044578,0.030014273415061417,0.10705085897328326,-0.0290955495246889,0.00012969847883847812,0.030855368616173287,-0.00975828114540599,0.010161678470263105,-0.0318803320313943,0.00032409753923903886,0.001957103609988172,0.013365441401412529,0.029316034487613607,-0.03787161147560397,0.00023854804106869258,0.021009866306171035,0.012653534092773136,0.03417351178250712,-0.024086968545712385,8.084794189181684e-05,0.0028480359614780387,0.013855881546976761,0.04920683759101111,-0.030345794274342513,8.262254385833212e-05,0.02423897141740114,-0.008317206963880637,0.08366195511717713,-0.007015211224864987,3.4091657251709e-05,0.01813785023641024,0.002795595871584467,0.0024333481757790646,-0.03348842193722444,0.0008859616486940241,0.0031399436768033565,-0.04215407354664961,0.13467950112884194,0.0480253554293463,0.00010944601072032865,0.008230066971138325,-0.0182750159952566,0.014823137155898655,0.020208357607795633,0.000602617857295971,0.008779749514179088,0.010310898471219743,0.14733054569664067,0.03857797031645088,2.0855783145921427e-05,0.006061035431766357,-0.031875679747804975,0.08200436139556,0.08537838777205388,0.0001154711634913324,0.01789852282666304,-0.006580405856606735,0.03833964462472541,-0.021616703303358895,4.831326806097374e-05,0.0007115398945290323,0.03254238727018716,0.031965767182805256,0.019654828843508717,0.00198557935967642,0.0043450418423596196,0.09497107515880303,0.6696698331446695,0.1697382072808566,0.0001167031898679052,0.009859593021760694,-0.038537914188724896,0.21559822289570663,-0.0018578746628236684,0.0002767905511868204,0.02861074614608095,-0.06376563762372592,0.42465448735883193,0.1011792774267207,4.229723177840734e-05,0.012095765794643146,-0.033458856078271204,0.18376172880282432,-0.011966086552249589,0.00030008399180484705,0.02484950363441866,0.004716296975984786,0.05056255658146984,-0.03831639371362764,3.870814420088052e-05,0.009704591481580477,-0.008388432515589917,0.09594624243372542,-0.030873193411471368,2.92102015130006e-05,0.002653619089903505,-0.006471027145716359,0.018010310751111428,-0.036714660801055246,0.0001157376796581024,0.021063976879734114,0.06529700747616814,0.4185266724403316,0.014608946597441478,3.6038152094418206e-05,0.0416610628017454,-0.017753365517058507,0.04907842841192694,-0.016598207606200458,8.01987186758231e-05,0.004079913237231614,-0.014189520810604535,0.06002240214648766,0.011259083662928252,0.00010809433962030439,0.005839270618449831,0.0013369043826018461,0.0010799853439199308,-0.03920471217765511,0.0007075514845046108,0.028552652858625377,-0.02191869898019957,0.07104219792440006,0.0807677672670446,0.0001298626892239171,0.005831042220437829,0.02709696855268801,0.09729642643479788,-0.013316949724446442,0.0017874874137824973,0.00584911521967307,0.03245688740807358,0.3001452691288125,-0.00540766205775667,2.780721929332824e-05,0.013869751635608005,-0.03851629685510605,0.1121852306167151,0.04217988029566537,0.0011224838727048228,0.01901713318802273,0.013792379529952391,0.12046544127220259,-0.031408648357838215,7.624341961200021e-05,0.0007097293937530419,0.02356169331146443,0.03576919248387819,0.011781091215725821,0.00015546862202850474,0.01509431624979848,-0.009645258972737162,0.013234033667973818,-0.03491057596769245,0.0004183363197697986,0.007148335035024503,-0.0219650193644862,0.0842791563133506,-0.016849332355773988,0.0020200482932493575,0.007857640110578535,0.0017246470649489869,0.006390872551683553,-0.03826618002451754,8.658256492716925e-05,0.010811491735109518,-0.0445495967718247,0.07341655414008942,0.032304669302860696,0.001508436291588739,0.0045417540859739956,-0.009212917719449407,0.02900969709332407,-0.019934871391819483,0.00012582589693331758,0.0010569864187860486,-0.0454804614090594,0.11347488234731866,0.11133285977039785,0.00016247460769621574,0.007605788576581142,0.030406996968767173,0.11618298319782475,0.008081724404033921,6.387706193941489e-05,0.024288174780813052,-0.038905424137686134,0.1325684040813922,-0.01568241705306839,0.0027815584099617663,0.057889300139405624,-0.0020596096851876987,0.010077118907002778,-0.027763365201998468,0.00010166913134157027,0.008316765976904745,0.024668447654636928,0.12011223462296207,-0.01246281739336953,0.00014894137485858713,0.0015945964587426424,0.04597680447388493,0.26004233372535,0.15359389882387164,8.362640493094796e-05,0.009511985994485552,-0.027868278136194875,0.11771513481768368,-0.01165000902179619,5.9501131817066206e-05,0.004084311426606702,0.009032486483719756,0.0221613821792309,-0.037474597511397104,0.0001987192187481471,0.0093383046605967,-0.006483570633564078,0.027150750041530884,-0.0160783782208369,5.938090208415279e-05,0.0027681190931963754,0.009629284373118503,0.09813737740521872,-0.017261182510811178,2.531575302586265e-05,0.0018747266967160127,-0.013375673979449464,0.04611236437557564,-0.02043508665264628,0.00010139283079117957,0.005380135536100194,0.014421127017091985,0.05699947777497236,-0.023996549125214362,0.0003988010528579389,0.0048069828038474404,0.010987725645997112,0.05190728833396116,-0.03794410186298138,0.00012124148894867064,0.007464569622681565,-0.00113134566959812 +2017-01-20,0.008834026028015508,0.07060745130182279,-0.030688805682317893,0.00013231062570601381,0.006873828668898169,0.017039180868043728,0.04958225770816602,-0.025884447016607238,8.245802739803607e-05,0.004638897265490044,0.034823445127762524,0.11599072215175907,-0.023184099671497645,0.00013888191185034682,0.03581442199620498,0.002635163152668807,0.0027239756398131573,-0.025027830194359165,0.0003264917006263797,0.004097122543472959,-0.0019052598706128367,0.003438749423403129,-0.02994105816639487,0.00028990216719829376,0.015949228822297698,0.005727995512132078,0.017142671913527134,-0.03471384445025502,7.295765986058973e-05,0.002796374560785568,-0.009964999507094749,0.028960596060952387,-0.03496400825559413,0.0001009623941524413,0.00491148288769387,-0.017302105849475502,0.13942139636949152,0.028437514934754677,4.255672029953446e-05,0.003846100641580981,0.0072588205936474845,0.006568141422927481,-0.02483190934034187,0.0008522526376591472,0.003340520035418374,0.010063677630623163,0.02381464342176252,-0.020722534186616938,0.00014776600088346463,0.02349551474718077,-0.02212209358900031,0.016133765461028137,0.027884758525330053,0.0006702160815063768,0.00879929610141127,0.0017590439499122715,0.02220137148127779,-0.02540207402074141,2.3611287874470767e-05,0.0015796128910771634,0.007413923673233985,0.022991635216620274,-0.03628211420476255,9.579201043869515e-05,0.0008096817980771944,-0.013682933019072686,0.06937429257290086,0.01784051135164494,5.551910440710954e-05,0.005314985032479409,-0.012097698180527923,0.011734671871703376,-0.01808004387939177,0.0020107346762642773,0.020336250881598947,-0.0053248911637574035,0.03282006792234824,-0.024376999734378728,0.00013351294262411265,0.0034319682355440475,0.004961950774818059,0.02689181965648369,-0.030209971402448948,0.0002857199025622199,0.013889371042343118,-0.012235820974412214,0.06666977075264001,-0.03635018066084993,5.16969722364826e-05,0.0006640432326540876,-0.015694960593482687,0.0821520105385076,-0.033698408493476543,0.0003148682283288927,0.04285823306678246,0.010115990635538408,0.15015316031545914,-0.03404855591389164,2.7957875884704975e-05,0.03824425333841025,0.00696528060359064,0.058094280023106765,-0.020573294323642976,4.005778695364832e-05,0.010189429799633026,0.005363910943117052,0.015928390782580685,-0.03608617351036413,0.0001084756877922984,0.009724778466025217,-0.03769661982047954,0.24309461127482931,0.0015774794972325643,3.581949460457425e-05,0.015109698099427303,-0.017932108017267922,0.04958643342590308,-0.016701959021492168,8.017627156209182e-05,0.00874553748689269,-0.00671075896622579,0.030998562840021147,-0.03037011147489544,9.898711719152755e-05,0.0043860862981537725,0.04746874268816626,0.04243810605298071,0.006086683825636949,0.0006393332569974442,0.014749629915223352,-0.028910371494518465,0.09174682361098985,0.09555597034862588,0.0001326320994062088,0.001653762292958704,-0.02683273467406128,0.10744525004351224,-0.003253951882082328,0.0016028647944687346,0.003269401188305477,0.028248698831030997,0.22604323263251425,-0.016155938131866974,3.2135801363223755e-05,0.010498104039868497,0.005481402280996226,0.01782173710108222,-0.0355572356593923,0.0010055714006070029,0.011652601545983582,-0.012777600864419387,0.09516722062550124,-0.024246811416914916,8.941030477678752e-05,0.00043076257629866906,-0.014315532537900362,0.021056231264083992,-0.017057435476925314,0.00016046201915967685,0.008716759543201403,-0.034939332269667826,0.05273205797767277,0.05134708697722714,0.0003803152968805788,0.008680372788769288,-0.04836867339153937,0.18207427052060704,0.12084889710592753,0.0020590454766829555,0.00664438090458841,0.06135395077925821,0.2363542579523437,0.12196420425207849,8.328551458829397e-05,0.011153890396048478,0.013331462037943819,0.018616973211836366,-0.028934671551290612,0.0017801061405168946,0.017801355592687498,0.014446238596012859,0.04758334233982853,-0.033612056396385974,0.0001202862194957528,0.015908537995759687,-0.05228722323538595,0.14279603135655383,0.08778912872494582,0.0001484361964426692,0.030197758774253892,-0.024589442912236786,0.11068873648952282,0.01347038646580704,5.421995898067374e-05,0.0156730250635135,0.01823892489113652,0.06725168034001736,-0.024005426287452565,0.0025704795483704255,0.0008442189330500156,0.0057231221481326205,0.025986395832342774,-0.03534944449248371,0.00010955382275314591,0.015247286071246487,0.012289225989001538,0.060090165488368444,-0.033428671489414266,0.0001483139204505786,0.004351079122189606,0.01904744599969825,0.11036918968399878,-0.024270954741828325,8.162770677085473e-05,0.007943627537222017,0.004724367422735632,0.021162137298394584,-0.03597940264814159,5.610887141432857e-05,0.02504946903122594,-0.018744376680611817,0.036642856361604456,-0.027203292110264687,0.0002494084004105516,0.014028043149387347,-0.048821577420903775,0.21346178570026478,0.3607029871233753,5.687298789163164e-05,0.009054447954728529,-0.01986991800414002,0.1912248342100847,-0.008566232577317668,2.6809151401471608e-05,0.018618116613067365,0.0003496961660394611,0.0011532542907942169,-0.02758609076416614,0.00010599240737971165,0.000552793769217452,-0.010190437281565712,0.04127514723615742,-0.023243936644071653,0.0003891635533552,0.008002778292110473,0.003934085974044986,0.0170208259269432,-0.03068142530637115,0.00013238385160862677,0.03294732688903644,-0.0027514849943469123 +2017-01-23,-0.02192239787708029,0.17197102927857172,0.0025389014242652164,0.000134809143347717,0.00729604117268081,0.02088012145030347,0.06473280194311688,-0.02022984088298557,7.739611143893636e-05,0.00224506239961847,0.0009710901731901256,0.003512649654007255,-0.03163943976706851,0.00012788568314091585,0.010258283951959855,-0.019741208769129607,0.018704064863127937,0.01971123526016759,0.0003562095819836316,0.01291831767717172,-0.001786766899746265,0.003526632741116139,-0.028466546908453724,0.00026509738003398995,0.0020890674976386144,0.012060333451654583,0.031303511256593926,-0.023018875101053382,8.412266083609133e-05,0.0012648909738995117,-0.010738996928851625,0.04292139746279636,-0.03237122419583632,7.34141407000458e-05,0.041172568586091925,-0.0020493451759789026,0.015481523325814607,-0.028358462004660634,4.539416551455072e-05,0.003521008528667908,-0.029258956570810735,0.027365075532799994,0.0068177201091386965,0.000824530964327362,0.009245156425107485,0.01585384656228251,0.039102526348148765,-0.00932111701503674,0.00014177240924569915,0.011295319714283266,-0.023695622911348503,0.018283330740732958,0.022884093000467048,0.0006334862204488773,0.0006673518358835209,-0.01681747414644019,0.227868201935759,0.007325010383273123,2.1993777779754465e-05,0.005245513709064263,-0.023423573922178312,0.05897383714630204,0.019964334583392137,0.00011798989408284343,0.003298803135299667,-0.002064145949143911,0.010345268969442182,-0.032876467943316154,5.6164310733981514e-05,0.008686085714434171,-0.0010012317900563576,0.0008634978816446589,-0.03241421220856222,0.002261498617065084,0.009394680139489622,-0.03065996399984267,0.21799611722055678,0.013945847958969694,0.00011573773795211107,0.006993981935706222,-0.02934252842483095,0.17513244975706574,-0.018062395669403066,0.00025944131877668063,0.021181145166127752,-0.009572316502146908,0.06384523770357194,-0.033450822441261914,4.223276322590871e-05,0.008655471798530033,0.05626543712277929,0.3405720387824998,0.08348441963708879,0.00027228236583213465,0.028331790433483644,0.015005396151024813,0.19209852131929397,-0.02990731308517605,3.241557091143558e-05,0.01876119114736756,0.004170988121664185,0.0502697231754035,-0.027778432772553867,2.7721336743595537e-05,0.017798121348049853,-0.02555302365761918,0.07933720597977541,-0.011369489439236899,0.00010375001089766217,0.0166855989264926,-0.012667634151122683,0.07861800298780744,-0.027144950086889334,3.721910113013281e-05,0.034183252586721787,-0.0018207991024887054,0.0046206994754323044,-0.011992125995932142,8.736383490543213e-05,0.00164095838187292,-0.02356248790690466,0.08114685723287102,0.08226169717521473,0.00013276941317416765,0.007163980471970156,0.016907964302311465,0.01964739301040132,-0.030632314860404873,0.0004918831562684886,0.019977578326794445,-0.003165525005618163,0.013529061824307189,-0.031323734525399924,9.848363642931077e-05,0.005975558343832203,-0.05557065897663057,0.20893688698580962,0.07376626966861109,0.001707063206488019,0.0051941472582504155,-0.042694008606302375,0.43330366797141845,0.03591019284278334,2.5337091697037484e-05,0.008169405136635574,-0.01545388608397081,0.047795788666912246,-0.022668307329645518,0.001057107962673346,0.006942831655640675,0.025385186002406118,0.17843212997116398,-0.004852172893741051,9.473990249093926e-05,0.011937381527085261,-0.013943401853653444,0.02303695670714814,-0.018419470045345457,0.00014285288781250868,0.006787705107352348,-0.005766150860056614,0.00689236797380464,-0.03389593980297393,0.0004801992293152305,0.001147758544115645,-0.004481165877479926,0.018289824739863153,-0.029985015153734855,0.001899029964924451,0.008145652403332282,-0.018379665550053884,0.07742783890874276,-0.0029256391768672906,7.616068420479288e-05,0.0011543254925587025,0.015349934030058686,0.023434743770655662,-0.02556475487899068,0.0016282590313334946,0.00673288952054798,0.012162623795613167,0.03956378644537404,-0.032902006080142605,0.00012179948758831806,0.002060677042080728,0.028024551734846026,0.07719887017914537,-0.022950377627627885,0.0001471594331515285,0.027782449115363785,-0.0242327079995516,0.09696531522276011,0.0048248391911408445,6.099573382308066e-05,0.0020694726346982637,0.03093292662352629,0.09552296653404024,-0.009053975799492553,0.0030692429575196072,0.025318825727106857,-0.0727619519466737,0.4076615918205782,0.37748974169548666,8.878612784577893e-05,0.0004912567476051305,0.03155445765230105,0.15422333225367435,0.004838028681664201,0.00014837865222352628,0.011369671317687957,-0.019505753358195998,0.10327061850833728,0.02612616695904904,8.933767566727377e-05,0.000343056185178354,-0.014915967095836714,0.055529490926672115,-0.026705575690613017,6.751108993131708e-05,0.006411332585101673,0.016933210510613347,0.027376869236791744,-0.026989554366947097,0.0003015677668185063,0.001766944186996367,-0.017489725728032646,0.0831509798427345,-0.005969818782193652,5.230340991712108e-05,0.0028952364503824226,0.0014530288706390768,0.01594406622727491,-0.030156743780069092,2.351291313019357e-05,0.003682324245892345,-0.0074014845082503965,0.02700270843305489,-0.03259098619909231,9.581212489758451e-05,0.002122097864682336,-0.017590525177548708,0.06573362173093356,-0.003980898321408345,0.00042181227656206614,0.010430294289042418,0.056960842476667016,0.2606098456590261,0.02473914462922055,0.0001251864664406699,0.02419983500114405,-0.004785238418294766 +2017-01-24,0.020641905066122734,0.17414418260850095,-0.0008397498467537745,0.0001253508805574725,0.0077176858011916835,-0.022104529439673618,0.06526062443417385,-0.013166512709841356,8.127193046517931e-05,0.001923674836122597,-0.06178386627191817,0.23486732627263418,0.0720271967361284,0.00012168854055371394,0.008191594737585971,-0.01228802988447617,0.013961385209024905,-0.021093824137392435,0.0002970445614250876,0.004779372619028262,-0.008354398511701843,0.015513466771623378,-0.017899893454070042,0.0002817760651335864,0.022953185207234255,-0.004116331480524652,0.013280888253235673,-0.026694716257175424,6.767526386130717e-05,0.011405487960489765,0.04967122420587658,0.18142846271790156,0.044205519562375936,8.03321329436038e-05,0.019426613131506527,-0.030826081902835648,0.2497837926960996,0.08812122181137295,4.232068483403181e-05,0.007636807391663683,-0.0012038442573926752,0.0009830754514669694,-0.03011257673503481,0.0009443396844647365,0.011964767901478424,0.01873192582438228,0.045888174549198024,-0.004857150744004441,0.00014273929063790097,0.0006123647965229583,-0.05680752867601725,0.04298022280821302,0.21229509557265266,0.0006460432482991355,0.004502523315762641,-0.013457940239429547,0.14937287537510707,-0.014366664275728788,2.6849094520410023e-05,0.002970224873960544,0.03888632159876561,0.12546823162933798,0.03342421153216395,9.206914803534757e-05,0.01695435493829245,-0.010528522324407253,0.05927226068676515,-0.006624517266537549,5.0000891623137175e-05,0.0006517274700878231,0.021217520768631412,0.018359301564166024,-0.013255919218584695,0.0022540391400724434,0.0225474257824311,-0.028033040195347362,0.2217691038188327,0.0024413677507059434,0.00010402105784663388,0.016992451984999553,0.0306190643883483,0.16466096344404385,0.018624350987808357,0.00028794496959041923,0.011545617851074906,-0.07919203279391611,0.46707029677285383,0.12809490887768307,4.775954688126994e-05,0.015314887502475654,0.006271681386917659,0.03309671276393591,-0.02958810578704293,0.0003123100312992891,0.0014655831067319346,-0.03312044828418816,0.487819454100977,-0.01750600364623979,2.8175220382310756e-05,0.03859717201113459,-0.012288268186736003,0.12193157049445785,-0.009736822339154145,3.367101611182681e-05,0.004182822203089342,-0.021180511075412304,0.05780350675467124,-0.018477251545631252,0.00011803342370125393,0.016799943353347644,-0.05572169077840495,0.4357042857205766,0.024011399065079726,2.9540975343075746e-05,0.006987867063417692,0.0037614584256638515,0.008960393552129135,0.02041674963841832,9.306932486220539e-05,0.005506842348163891,-0.005139506787053836,0.017658751008501578,-0.03127971329409213,0.0001330791617216269,0.008837028185537613,0.003616792950418029,0.0036081245265361527,-0.03174709362920853,0.0005729512761297898,0.015730376676110634,0.001332611495064526,0.005087499042057604,-0.03174770983623124,0.00011025168199631521,0.0026467393153177393,0.0005540929275005571,0.0016945858886830093,-0.031496577568474494,0.0020986412065224416,0.006555714539531995,-0.0033809669926329186,0.03199506379470456,-0.030943560460124784,2.7173159984555276e-05,0.0022843955448665597,0.06885448066238868,0.17683730918578724,0.1401789977892837,0.0012730034446158118,0.009654542409711631,0.002148263263489189,0.01675779972219147,-0.03172239827651519,8.536820491139803e-05,0.0039208475913887,0.03656361663789773,0.05794582692100063,0.0702224313507591,0.0001489266320774778,0.0013435203750919748,0.026776154919286328,0.04011245349869309,0.04562782192492492,0.00038315359013388323,0.015256489253063572,-0.006993146201711247,0.034306978479881164,-0.030448194347684945,0.0015799395798007686,0.016672958325136492,0.006307795927808763,0.023166930637958667,-0.03168910398948757,8.735736112038289e-05,0.008261502859293534,-0.05468981539861797,0.06798275743267955,0.055227562138383,0.0019997922147769226,0.0003133953637264921,0.01412938720520171,0.05229819527849697,-0.02974679049483942,0.00010704161697578452,0.006043180687885786,-0.009241465319248477,0.02604705654988159,-0.023773075424541684,0.00014382770850673198,0.02013367218184498,-0.06013864646919778,0.3257913670526319,0.14050430892278404,4.5053444739695657e-05,0.02261323977583353,-0.00844943758132682,0.027148388325615287,-0.031231496179685073,0.00294986273354504,0.004313664351018032,0.011126682053743002,0.05746874905261073,-0.029930224474310093,9.631069240913506e-05,0.01428143545290948,0.021620044857236995,0.13743576863069334,-0.020560478847477553,0.00011408212428762979,0.0029063787435429787,-0.048847469913653845,0.3209758892355302,0.1703784562249238,7.198108059730505e-05,0.015377012716256222,0.025181674712017214,0.1181804801015539,-0.014647928815438574,5.3553302087963775e-05,0.00752153027110178,-0.0059793472338367125,0.010041249769508839,-0.03070090710444034,0.00029033232947095765,0.021931125152272298,-0.0014688606815587903,0.00617824447248472,-0.031673577614289544,5.9119382931363784e-05,0.00220709704979812,-0.025542480098501238,0.25932398703623605,0.012822459677509742,2.5412749702786156e-05,0.00761784935682243,-0.01403848575642219,0.04128251641747096,-0.012337109782014478,0.00011886748334632524,0.007706712145649538,-0.0037882171501809198,0.016690036116574165,-0.030497256415149242,0.0003577713505104876,0.012325890255756276,0.026908155771002185,0.12382974823427478,-0.029407300876675545,0.00012446027011633526,0.028386610363174702,-0.0049272590022924195 +2017-01-25,-0.000865186163441595,0.005934052712995404,-0.029743541456761037,0.00015418593167119705,0.01800735300781572,-0.014165712766011737,0.04153608541281477,-0.023127284466915695,8.183204307868611e-05,0.01511886595100698,0.00023270014954582857,0.0008228701191635203,-0.029185594396182464,0.00013081651488046754,0.00977642124955719,0.02756035697675234,0.030464886637362645,0.16525216853957606,0.00030531850584578774,0.006533035674428166,0.011018590790822909,0.026297274394241663,-0.02876146903540429,0.00021923661544204361,0.01324907210778014,-0.01430223077164189,0.035055294586885624,-0.000470357141779174,8.908342376438087e-05,0.004131316643699073,0.03168157135326727,0.11671259642785278,-0.005244845000981341,7.964872687269709e-05,0.009846067810376549,0.011232304050089324,0.10253955507936058,-0.024295015631442225,3.7564363700683355e-05,0.004920975742017083,0.003778343830309358,0.0032865906247581374,-0.023776292850737825,0.000886544726638521,0.011555154264176344,-0.002959660545431306,0.0065933485806397,-0.029855528609295245,0.00015696316693669703,0.013001641600165486,-0.0011719923014389352,0.0007655480704731827,-0.029403900682162476,0.0007483015605837812,0.019025679256345213,-0.017278113298752673,0.24409757411284344,0.002629227464027887,2.1093839810073113e-05,0.009745231657727295,0.023207157435338983,0.055791901431396076,-0.015892952174389186,0.0001235668067305969,0.007484852182996214,-0.008616954192986094,0.0524634826696437,-0.01598356770571663,4.623368244572831e-05,0.0013226420414847026,-0.018494444765414474,0.015074216796652025,0.0011935541000093245,0.0023929273482281802,0.003134338380572548,-0.02785099464314445,0.17133678103019948,-0.0016237604001463413,0.00013376491383717577,0.02087052724592895,0.024871472987966825,0.12131869121890296,-0.0005464386640082859,0.0003174548906310595,0.010568773956184436,-0.0017607387089153353,0.00925753756629909,-0.02340297348497439,5.357477860419077e-05,0.004997411116779131,0.01318450495020489,0.06670481147947352,-0.023739671885234806,0.0003257567878557996,0.009185030275884836,-0.005802711053774896,0.0679851814427003,-0.029737346657842414,3.5419866151892506e-05,0.0037463883436354858,-0.012914543158078808,0.1412097417725948,-0.008771720074368263,3.055597163375957e-05,0.002413196996561241,-0.024564361354446347,0.07129269190063485,-0.014269160327608625,0.00011098983862823713,0.005465291356706973,0.017923188099349757,0.10391658839135744,-0.02736598610921426,3.98403145298712e-05,0.004310554324181873,-0.006605625441404516,0.01803259901343842,-0.02824507938043274,8.121439269221845e-05,0.002247257192464778,-0.006679872178475218,0.027557268924304,-0.027974997433790005,0.00011083593093915772,0.0025361172365024067,0.04235615847356098,0.04031504141153738,-0.0039072755329485264,0.000600516598094708,0.011970880509367489,-0.00971329664459584,0.028106204527761608,-0.017032089873400123,0.00014546230298219452,0.011257205144424916,-0.05061026415031497,0.19201657131389469,0.03564182812624841,0.001691683323741577,0.005538750347212301,0.010164549585439567,0.0918220828660388,-0.02785751317566496,2.8465786921047336e-05,0.01706170748036455,-0.02904250189868335,0.0837200794367679,0.0015944647811705528,0.0011341634944577405,0.021805644068449682,0.010667272211593035,0.07645423740846947,-0.026904182237495695,9.291320907210256e-05,0.0032618660591598536,0.0071323327043782345,0.013472543471732053,-0.02779776591633982,0.0001249474468687676,0.010078646232679367,0.051414564418606847,0.0698263279604453,0.15475796393638735,0.000422640265754039,0.0033799170648682983,0.011417626717983008,0.04922079558435854,0.009247403346778886,0.0017979497607596188,0.005202025923822564,0.021405789192267106,0.06886921769188577,-0.02239164723927886,9.972325941330173e-05,0.002065451545176728,-0.00967183676116196,0.016159324747928562,-0.028814334446378192,0.0014878629896955165,0.001231812673725615,0.013685771593041603,0.03940864606667154,-0.028351136985905093,0.00013759219840563333,0.005184788008077842,-0.007657161195791963,0.02080364030245209,-0.0241165568594653,0.00014920687333874763,0.04559452752021599,0.03562056890955124,0.1318144880521277,0.02092093319627318,6.595559297824828e-05,0.027125690250427593,-0.014046629639388693,0.042002630787988625,-0.027785626916435515,0.003169667427272557,0.008631850142539161,-0.0555309206020489,0.2811106189363883,0.09479879122076681,9.826484935424249e-05,0.007469773725761009,-0.022751305880525936,0.1258859176879808,0.020385068977175912,0.00013106597530412634,0.00799111263716089,-0.017391690111447203,0.10121598756648889,-0.009169228774501449,8.127207915774831e-05,0.001495248605573538,0.016880560601116666,0.07346839026113448,-0.023661901346351346,5.774757292983422e-05,0.01708734026267152,0.05941889670294197,0.10298817310036712,0.04803191393436169,0.0002812979863356831,0.007262603936407371,0.0065631162293106745,0.024040435301759363,-0.02572421122063785,6.788630080032316e-05,0.014912939450702128,0.011642594156959039,0.12751024412730577,-0.002959405862507738,2.3557867083770572e-05,0.005177382010521239,0.015042008784312501,0.04341708762264957,0.07160815324652138,0.00012110278046916803,0.004425917733912097,0.021550172401043944,0.0894713300951709,0.006964680837831948,0.0003796599848684562,0.020564893480885867,-0.031010284890093626,0.14733478037159442,0.046153941412361156,0.00012055140380566679,0.016895531415918538,0.0017619104261107782 +2017-01-26,-0.003991171681974895,0.030713519402298127,-0.026931363950132858,0.00013742236210792917,0.01179132992994872,-0.06408094434686591,0.20181643584360506,0.09176070853164389,7.618735522794909e-05,0.007564111957481629,0.017730623815847273,0.05177177500296825,-0.025891865772796594,0.00015842662303725043,0.012267172581520458,-0.02802354330249246,0.031361217453394596,0.05081455135740343,0.00030157684205529844,0.0014736960110818308,-0.003959184506668072,0.007551011269228614,-0.021890770559144488,0.0002743458500815336,0.0007263744674110716,-0.002489225194249906,0.006566186749160992,-0.026633866224219375,8.277471563252189e-05,0.004048256945567631,-0.055977381341700036,0.21264613934642845,0.043888186249017296,7.724047410869187e-05,0.03214356842912224,0.03332630403650726,0.2686814991524984,0.04032010290640848,4.2535153431412356e-05,0.0011713646260751588,-0.006791361992559649,0.005230328423671115,-0.028056425605281845,0.0010013195751427595,0.005232175546408065,-0.04483653617123336,0.10323023474389142,0.052249554797793626,0.00015187525685847925,0.000788094295025357,-0.022158122673411152,0.015247632367083175,-0.009521660044150072,0.000710321415523516,0.004019404337716155,0.011504700266683413,0.16097946961188497,0.03933880492475884,2.129744991967779e-05,0.011808625055063596,-0.0012712292513031357,0.004453608621457027,-0.024530350022863433,8.479355944786432e-05,0.0057455671380854,-0.016086003799331797,0.110187647053488,0.019326247493049856,4.109387315295139e-05,0.0008163177550525315,0.022430580897688564,0.018661401543184436,-0.008346208197582394,0.0023443326475502766,0.01972467658221178,-0.031459779194557974,0.2230004979256602,0.0006674450982847551,0.00011609190697039814,0.009147723046554338,0.06492709616650204,0.350014044931167,0.10142884115493116,0.0002872425278792081,0.006427657033652209,-0.020646257104847937,0.12373585680456753,-0.02751449258558621,4.700095878456804e-05,0.00350534972111843,0.023401614042782033,0.12055358146388029,-0.012800516953342871,0.00031992818534648076,0.0033273103426633005,-0.04678604838660078,0.5221825164613342,-0.002452631448805501,3.7181274297444704e-05,0.012482088998025605,0.02704512030602166,0.3581797782487809,0.1097389354950177,2.5227229811973217e-05,0.011192271234089949,-0.04885132784666917,0.14181961334177215,0.02883403839951361,0.00011095907606034141,0.012825825762655799,0.06942665483445735,0.5324866535730817,0.024035169168147914,3.011687382099794e-05,0.017270298388465777,0.01781754531835791,0.0554378351239583,0.1432661305236363,7.125559844372712e-05,0.009945100157798977,0.009151849616704275,0.030106388490317076,0.008777916355669607,0.0001389948820564673,0.008425040446591477,-0.015301654940972003,0.014474960651288999,-0.020151295752767688,0.0006042220552202707,0.01890605829706158,0.019704740333947413,0.06889777811505993,0.006149793754886096,0.00012037921548264049,0.0036615797428304763,-0.053739826165456125,0.22208412449295672,0.030837603292825793,0.001553094627914176,0.0026509156529921233,-0.009175338578081641,0.07688993650627615,-0.02458300053676572,3.068561219207343e-05,0.03038256228319952,0.003730534502419213,0.010275341403288646,-0.028127376245112492,0.0011869872945678445,0.0013531221164021156,0.022666467922198535,0.16428282924901985,-0.010018090492909132,9.187922423824663e-05,0.006580086306601723,0.009689900476465837,0.014845054738840402,-0.024180123692284464,0.00015405751896816456,0.008419300947738188,-0.004701731510535232,0.007217573684403529,-0.027315271599050787,0.0003739129553698241,0.008180397612353195,-0.02384358512473966,0.09572662704128032,-0.01292771447745365,0.0019305859490687503,0.00014163242188034147,-0.009748819746370999,0.04038066654400386,-0.015711927822244266,7.745847235105488e-05,0.017530490667403104,-0.06278950849976835,0.08041683048940645,0.05846047100036415,0.0019409632979206447,0.0011871623695168612,-0.001800877034631135,0.004735874404932957,-0.021514403242617896,0.0001506606788469057,0.00908244437173196,0.039553738903778134,0.09460383374230198,-0.0017897505161838885,0.00016948808873877338,0.019476544726521067,0.01529925806552306,0.06368542829812587,-0.020272949246707608,5.8633284287302343e-05,0.021378675786730084,0.009087413574543611,0.030141562073261803,-0.025032848485152033,0.002857541825407584,0.012182624947512185,-0.022468151899260214,0.1194143721496792,-0.01208886883657433,9.359471419783458e-05,0.007490125086570159,0.009205135189459202,0.049348395994803555,-0.02779734661216515,0.0001352751158100875,0.00028981264564156687,-0.01929907488223563,0.1369407272770254,-0.006689801769007414,6.665804312032533e-05,0.01937374291833344,-0.030825791209523917,0.14157824952881093,0.0009381461642039611,5.472239403823252e-05,0.013411068070623486,-0.008800115032461626,0.019379648560601398,-0.025078612489821527,0.0002213970583112215,0.020730586759638722,6.327252298744954e-05,0.00024778611730116797,-0.028171287620003878,6.349690506223451e-05,0.005326081641789872,-0.044478188610831505,0.4782916921952111,0.10324984442058033,2.3993054486207435e-05,0.008488365017339886,-0.0055178861553551155,0.018350802237912647,-0.02801295087513909,0.00010510579112940406,0.0033353483783836605,0.004404778602665953,0.017631814608112726,-0.02737682817431067,0.0003937812602234049,0.009792030300804819,-0.056995198936188436,0.30685227770457163,0.10884718018101873,0.00010638507853871311,0.014829552360646989,-0.007152429262770964 +2017-01-27,-0.015483239200985412,0.11071957052211906,-0.010911366883331223,0.00014788496220748454,0.021155455323175386,-0.031385856450410414,0.11062592689815032,-0.007752548532334896,6.80749903005457e-05,0.008278048662948815,-0.004575865156923469,0.014025702774074791,-0.024473136009942588,0.0001509196506569453,0.006862264059079373,-0.0029799069150449474,0.0032380626681377763,-0.026251053403114667,0.00031058845233901216,0.0015710044609949752,0.015423349134097371,0.03399682733778713,-0.022090321228273646,0.00023737669148855115,0.0042457277792585036,0.008104003797049316,0.020813459190651862,-0.021791110951560944,8.501628233298245e-05,0.0009849018256777146,-0.03265791931052607,0.12095454589959018,-0.007918087643401775,7.922389155197248e-05,0.009087335010586466,0.001175872233364347,0.00896583894492246,-0.02572260239503897,4.49746524992331e-05,0.0022628709065317465,-0.014514517382198742,0.012489245143074748,-0.02148853608023969,0.000896212911271544,0.002613599866068574,0.006264523348811996,0.015913242644375235,-0.021122202797141457,0.0001376547600460655,0.010767960539000832,-0.009009035312503648,0.007090419752706972,-0.02571893862585376,0.0006210559134190876,0.0105622892003127,-0.014510255656363383,0.2023091943494385,-0.009858393659344915,2.137382420833978e-05,0.005335871843805837,-0.0003204213194790978,0.0008736442013189092,-0.024122719726725576,0.00010895266149628744,0.010490003200999066,-0.012925276457578128,0.06747438424895208,-0.0029073830068522145,5.3921594892632e-05,0.00880160210537862,0.03478399217747059,0.030901073748722113,0.021401780970157266,0.0021954766715324902,0.00017908072951545485,0.059101076375595855,0.35518190658909143,0.019760216959539247,0.000136929387062331,0.021585236808151408,0.030060009177791606,0.16119610935647158,-0.0052131536407093735,0.0002887638246332207,0.011315066393478193,-0.0050205911754401785,0.02559054854063721,-0.023122913344574798,5.526322419950816e-05,0.026792107114282843,0.01116415613131035,0.053787404422931284,-0.0235023785623732,0.0003420834957184766,0.007658201298948643,0.040878914436753594,0.5636197556555018,0.0005556117322721877,3.0098397831903365e-05,0.0005811007451358881,0.01377801615496157,0.1385676771089806,0.0011978758513604706,3.3220522741806524e-05,0.007547677036605856,-0.029657308096277733,0.09271583356175657,-0.01156178213614183,0.00010303874906196207,0.03585258200532316,0.00491753370894314,0.033658020041165575,-0.02655017292106516,3.374824218400291e-05,0.031201252246741557,0.018933338295498186,0.05020920273340788,0.09780584575749783,8.360288255675857e-05,0.010314900895061565,-0.0012531661794906467,0.0052133969645015415,-0.02586915730286114,0.00010990981237073314,0.0004504893939495053,-0.015428096439802386,0.016419548619701286,-0.019466074264991213,0.000537064804075219,0.01641169655827432,-0.0045438179669743395,0.015448472166772342,-0.02278067534516774,0.0001238002149721644,0.0013842502800711703,0.03221921504851918,0.11086266482586515,0.008676396543342409,0.001865300543034696,0.01808318111034838,0.046812021661167325,0.46294436872559086,0.02879184990181851,2.6002241461924412e-05,0.001965351782843629,-0.0012610320893042283,0.0033210134747109384,-0.02628966399923158,0.001241442960519252,0.01800638407079988,0.009966465401100306,0.06667728988542683,-0.02517791631787621,9.953799011467972e-05,0.0067557300075405296,-0.022458356315007824,0.032628726063190144,0.01090961469856002,0.00016245131694374808,0.007066027228092417,-0.004042939497661943,0.005886556731967417,-0.02613032443415768,0.0003942210606677118,0.00362118195047905,0.02514940398593929,0.07917616610624312,0.06131546166454162,0.002461974611026227,0.010107715703922614,0.026938811721817932,0.08754170922484174,-0.012309499040442796,9.873105632184376e-05,0.001291789380776328,0.007975720459343884,0.010162852961924169,-0.02191121430936436,0.001950884120042399,0.029137201747156404,-0.001671661019924724,0.005927953671646102,-0.020896931345234345,0.00011172733795155885,0.013434117071782197,0.02048937813397113,0.05427798689318538,-0.02324472827334301,0.00015302606889834754,0.011727860852341909,-0.019228851498490303,0.08165681709546335,-0.01408935694125044,5.7474449862547095e-05,0.009598799394623022,0.034280174747876646,0.10235201355179818,-0.0011133394418003546,0.003174422247726202,0.01091791054053928,0.03372882941449521,0.18305288883893162,0.005093637034551777,9.165691857597215e-05,0.0020045801685470983,0.06125503593013553,0.3237635183162393,0.11075460454083269,0.0001372064957107775,0.014746833831785312,-0.021601739439207384,0.11333423696052727,-0.0036260994417847414,9.015219328738618e-05,0.011458169542053056,-0.009789061449011004,0.041868043849050365,-0.023879196429094987,5.876324622625071e-05,0.015178051780715462,0.039464637360095395,0.06834127515407114,-0.0004695245540082024,0.0002815492874995187,0.009335830728087382,0.010159186789076739,0.03784991188440112,-0.01800080967595328,6.674341876323372e-05,0.00457065279948036,0.006773956968507958,0.06897717556825193,-0.01434873966874681,2.5337765458633366e-05,0.015095328321930937,-0.0013625236405607945,0.0048710259343038844,-0.024444388992715504,9.777606812472023e-05,0.0033721729460028287,0.0022450631871605356,0.009516949701319158,-0.026606194856131665,0.0003718422768348561,0.008947329814298865,-0.02343905166469631,0.11751168830250316,-8.94426453927444e-05,0.00011424330707902413,0.005396716845565282,0.006323350313183565 +2017-01-30,0.028613239568155945,0.18429158762182646,0.0272158843551121,0.00016419052956428973,0.008837311940538486,-0.02135317472275236,0.07979299955843794,-0.018976164591935706,6.421081599763606e-05,0.003920254641023336,-0.005918837336186853,0.021743506107460564,-0.022813547322547152,0.00012592270212275194,0.016659287290822673,-0.020324507914859128,0.01865544529967664,0.002941142116812849,0.0003676903871179572,0.009729541549641771,-0.024402159991569763,0.049856433888108204,0.0254011748483429,0.00025609720064871964,0.012011696665392728,-0.0008926937301197761,0.0031200224654351215,-0.024720798774180208,6.247287651928023e-05,0.01260123682467388,-0.004429708147880414,0.017104893590252832,-0.025298365922729035,7.598792615718992e-05,0.012370049978697359,0.02245570924451238,0.17348580224278495,-0.0037776253803680415,4.4387578381213387e-05,0.012079016753823182,-0.013090417383092476,0.010741173977152563,-0.0220879630014068,0.0009398239966246307,0.004078896658786536,0.011746262230476317,0.023995057224801733,-0.014211909642067562,0.00017117478397408683,0.011759461199530096,0.01790550945185413,0.012825709742167271,0.0029356346491258814,0.0006823852537597312,0.011280986556586051,-0.003852485293213964,0.05192256237729829,-0.024676881288192423,2.2110963219963304e-05,0.0013788136964761946,0.054462411551298044,0.15908513360390816,0.08056583458700194,0.00010169938074402367,0.013395412722798787,-0.021437297022784737,0.11286539460946493,0.04083547796735856,5.346518074245127e-05,0.0017274321023695242,-0.02996401273268532,0.019482651493025863,0.035477672310591554,0.002999679696819442,0.010964407488120836,-0.00983108601240036,0.06747538987315424,-0.01964342732245679,0.00011989696808732403,0.016912362091451763,0.025446383851649365,0.15555454142616482,-0.011983944900723714,0.0002533095778465464,0.018633400550397253,0.005488303124630189,0.036467690298180734,-0.012645535256681367,4.239267171482176e-05,0.00802252658552848,0.02955763142609033,0.14994691110715846,-0.004934284601990896,0.0003248769602804137,0.009456491351761801,-0.09164137863012628,1.0401924840953118,0.06700859594987021,3.6560163881097626e-05,0.0564383880950655,0.014538262037289714,0.14380678143290573,0.001224494948313738,3.377651478164837e-05,0.007959931294486028,0.04117635915406707,0.11991374636367262,0.0245004389994971,0.0001106118682405731,0.015685832377015978,0.051696588184256674,0.38294750668161953,-0.0033438934743106595,3.118279300262619e-05,0.0032250903418616452,-0.02542059804419292,0.0733683977654207,0.028115303496286815,7.681642843776783e-05,0.0008618666418090516,0.0052954578512410784,0.021181016754096664,-0.01080619854000591,0.0001143155492978756,0.0011436277845215757,-0.014323830783483968,0.014678848829801227,-0.019588513060095313,0.0005577540663682219,0.003255627601799061,-0.0014948435465410648,0.005360957119309353,-0.02442969225261312,0.00011736521981335686,0.0008180259228015344,0.0005819210189091968,0.0024833856773616853,-0.024525555300948496,0.0015039695615781138,0.013054208925586886,0.039255148794065185,0.34455911525848804,0.005610909207439983,2.9296455510263852e-05,0.002306645225769453,-0.00023347533687526878,0.0006578831221564107,-0.025145860324285115,0.0011602819486655413,0.0013518006290493976,0.014424414600262787,0.0964367040515067,-0.020778526817277324,9.960507827590897e-05,0.000358003375754256,-0.0280679674681172,0.04684026512796424,0.022940578832294372,0.00014142852309003676,0.004491351188593253,0.01849990591190881,0.027900374676946175,-0.007598396588414206,0.0003805952799376018,0.00018609770145569385,0.06757405965626352,0.27830223381841873,0.2835932646940848,0.0018819741757465263,0.005937544164737366,0.04942123125484736,0.1993895277056909,0.0348847412572999,7.952461710516626e-05,0.008731160717785236,0.0038986662536090546,0.004882644854595344,-0.023169928494225674,0.001984897634743089,0.010161179749852426,0.011885849040620521,0.04068817572645049,-0.0243728223458102,0.00011573854759664863,0.0023486663130742216,0.04170970994834617,0.11956566495912989,-0.0005302953447827648,0.00014141356222564826,0.012372111664016866,-0.0027101923315247865,0.012809077880332398,-0.025156812634767038,5.164118161798847e-05,0.02400644821353047,0.03571501253042108,0.12801601156828743,-0.0015107599235390657,0.0026442625391965347,0.01958814970688018,0.015665967373657576,0.07696342632567182,-0.02007990440021494,0.00010125428113138465,0.008191308321398631,0.038855453352467546,0.19371984867715605,0.007248164784063813,0.00014545834562371468,0.004830856579296723,-0.04119513082924613,0.24261449679507602,0.04685035767135061,8.031151855185778e-05,0.0023670134192868403,-0.04447966727363565,0.22209755259927563,0.02368178462517879,5.033442965156919e-05,0.026706980279269803,0.046320116622622226,0.08995244803972823,0.006883211912961898,0.00025106492920234946,0.0330760781771328,0.03333035240628394,0.17566172167292363,0.05909494515342409,4.718208693043794e-05,0.006818857663280321,-0.02844595183507537,0.2807987775443448,0.007981515846615765,2.6137048458504503e-05,0.001893196860295764,0.0015657956242263005,0.006020638408753713,-0.017847616527444567,9.090787261755522e-05,0.0040380326655407636,0.02313599175724736,0.08769680374392264,0.009813808271286695,0.00041584580691508464,0.02856433775569176,0.03265137503961474,0.15974751361006337,-0.015402513727780376,0.00011706826015905059,0.008297358226995656,0.007485771966767271 +2017-01-31,-0.003288469436343151,0.024127783447102962,-0.01793430939915545,0.0001441328477443735,0.0078047272871241595,0.0021771871393263123,0.006539557702588497,-0.05788139245226053,7.988365192653842e-05,0.002417602933950763,-0.029004567752215615,0.09979371851673853,-0.017754798214912045,0.00013444987306768211,0.01604595244836831,-0.013008740238601688,0.016183501671836246,0.001218473480529956,0.00027128801069828705,0.008522456289734082,0.0037710730418973938,0.00812301541071635,-0.0016453689743373685,0.00024291002543664022,0.013511619796060016,0.0057099917159924626,0.017192138451138154,-0.053535320744356955,7.251908537537715e-05,0.0008208872624927408,-0.01656047731442667,0.04639902233253692,-0.00047659532421093784,0.00010472584556935859,0.004324678277277267,0.003666359365619359,0.028722668472530778,-0.016814201246526765,4.3773256796873536e-05,0.0008484977746655612,-0.005345038196534208,0.004398320972624751,-0.042886876256740855,0.0009371490740074223,0.0017229482905829017,-0.004615774821919185,0.012461017065700426,-0.008785695499363071,0.00012952482358283315,0.0015865463490698324,-0.016033026051035498,0.012666776033030975,0.0075685594990499445,0.0006186909520825218,0.026945934819425685,-0.00038981086790889155,0.004737273202577163,0.005124425203486606,2.4521571600508904e-05,0.0017753512440262748,0.024639231798087698,0.06624504091434398,-0.05436020290215936,0.00011049047191078995,0.004800511832816097,0.004311332781544479,0.0294148868214622,0.009924294321731808,4.125781108355978e-05,0.004622314201140821,-0.032542593834095225,0.026638887443502905,0.020756579093973465,0.0023826434399933094,0.0013048430336661714,0.01188414255250015,0.06958119638921507,-0.08494712048523703,0.00014054909987437528,0.00200563400553386,-0.07525293318242862,0.4067095798429023,0.08252481166383115,0.00028651493306418915,0.013719034839389055,-0.007330760504816811,0.049992631266876954,-0.00018458597314577297,4.1305129847706153e-05,0.028421632231589982,0.014817519254669426,0.09453676683290309,-0.05309418330122782,0.00025832209989945325,0.0016312509305929854,-0.010465401499032013,0.13509445896408603,-0.028475966676399185,3.214760247401021e-05,0.002009193463356746,0.0007836076756627834,0.007427043787418357,-0.047353873094461624,3.525042894516536e-05,0.013887055040413623,0.016464248264138594,0.041310343283324745,0.008521676265326173,0.00012838250875185783,0.020337502734484245,-0.03485885176295932,0.24579517194732275,-0.0417877006183807,3.275911085317919e-05,0.009835245025516642,0.0014850144393387076,0.004300228514839822,-0.0036575852788776867,7.656257370134585e-05,0.007027135446896488,0.008772209316284812,0.0337334124374221,-0.028700794421388637,0.00011890423014086407,0.0057964316600345065,-0.04006357809609023,0.043716633361916474,-0.0026630343940392156,0.0005238157900270238,0.022444030124504025,-0.01917570017004552,0.06885904345499862,0.027772776080359225,0.00011721312751692485,0.01441887588320132,-0.05052546111078291,0.15280500772825012,0.042619287429077925,0.002122227184151888,0.02231680760004736,-0.014359531452278708,0.14526398105708482,-0.09604330436655116,2.5419354764606206e-05,0.01146897689419018,0.04769715908832319,0.1347104687205574,0.05593658596410328,0.0011576104407428549,0.016403827139006077,-0.009265530669540912,0.0704884811297946,-0.027893961842837375,8.753420436079323e-05,0.0031768319526977035,0.02596917854119646,0.03768606985580585,0.017109766869715336,0.00016263827137351537,0.0011823543094206595,0.0396433765503738,0.056559034725467826,0.03785470514504785,0.0004023208707145906,0.005691931307663673,0.011641514247656302,0.03537847945378121,0.008058731818148595,0.0025504725395026164,0.0029564231832155566,-0.026060802005688135,0.10138550906291831,0.025967955708450136,8.247118997277563e-05,0.0027439209896615567,0.02339057360473064,0.029569020179392697,-0.10476203382349644,0.001966441949171378,0.0075783296143985485,0.04606192168301841,0.16354888295753783,0.05727083717918337,0.0001115862047933964,0.003020260903600717,-0.023492684142096217,0.06829400615344583,0.02439234933540707,0.00013944740165555957,0.0009886347022657943,-0.0382825115318896,0.1834702639454503,0.042456204614996836,5.0927066573288476e-05,0.008877927390644996,-0.017942013796459183,0.05229456697308923,0.003885820721273169,0.003251866238203621,0.004852426036966752,0.00969760421986078,0.04707786102715672,-0.0460310959787377,0.00010246801043069385,0.007021733786735534,0.03194480984374478,0.16725611810323998,-0.03577382087955294,0.0001385093460344891,0.009107192412553422,-0.022663203122236762,0.12825837319165176,0.014832183776482174,8.357651596786829e-05,0.01107466516992707,0.06068413021635888,0.29662054638474117,0.06821229612348335,5.1418724105399876e-05,0.008342873435985184,0.015410633041934617,0.03143581416149587,-0.03279309689201148,0.0002390150019001668,0.018781676831078935,0.020176277077098063,0.09950155737519843,0.022997102568582423,5.0422634251070385e-05,0.0032411840303242304,-0.032520034679686186,0.34386164377827366,0.01953124827096067,2.4400490160732624e-05,0.0030283414997393757,-0.017641569611091264,0.06208581217868454,0.03252763397942587,9.932391292275864e-05,0.0007752713256489146,-0.009062310163104843,0.03603989605498418,-0.05816084834924021,0.0003963541075354927,0.006210759818848443,-0.002054976063502947,0.007832224426349942,-0.0055482056030603365,0.00015027731958805961,0.011319430344579383,-0.0034506223030882 +2017-02-01,-0.009631378486504912,0.06475984032936026,-0.029456241632038655,0.00015727846590134182,0.004871919025748152,-0.027199868540610097,0.0910369616798526,-0.020580328700342643,7.169016447065542e-05,0.024975013945736008,-0.030113365764753833,0.09315149168080337,-0.012620681497355428,0.000149543206959524,0.013035112328865306,-0.0032366914697641138,0.003827593890262224,-0.007233258802224847,0.0002853929935338274,0.014922097421689165,0.03801999894328829,0.08872585016152898,0.015671998067456065,0.00022421243918942582,0.0023251102965220127,-0.007555760081662908,0.021381970900302184,0.011700192134761396,7.715732543817833e-05,0.010393038573999397,-0.0481307145899217,0.16459866569528164,-0.026676512172257794,8.579971682870116e-05,0.022762970483482255,-0.024298848776976443,0.24734635065695434,0.0504349243393626,3.36882774767843e-05,0.011609433965887157,0.015314959240793116,0.012231709257814416,-0.0760195912943945,0.0009655471413664297,0.01569948720413966,0.002821262137519339,0.007668061742678342,-0.052267887662549216,0.00012865294311698958,2.446326873386997e-06,0.012204137128088566,0.009384051135880532,-0.0007623493150795139,0.000635683693924575,0.003396616139868245,0.0032317813853847883,0.04465596933860608,0.013865858707015791,2.156677679421219e-05,0.002447256566198117,-0.02418756918440399,0.05732023685400999,0.04526064739772818,0.0001253531599137671,0.0037661845200766863,-0.011665601714763923,0.06131544936609486,-0.0018808711910644847,5.3554879640356915e-05,0.00010118432165654416,-0.03910942638600915,0.034643296654513656,0.061514035578846965,0.0022018372061672143,0.022990472836606705,-0.04931909351433403,0.31551904091880756,0.04848466013154575,0.00012862980767465757,0.003906667344694829,0.03493116792562052,0.2398962408259305,0.020800788416884413,0.0002254747405365488,0.009381593677074312,-0.006720782254266193,0.05052195099905068,-0.007918401036463782,3.7471464559301944e-05,0.049221512303388525,-0.00656482687682957,0.03696050018914256,-0.019797029925916833,0.00029273337858273536,0.03709877753406012,0.06899628866654585,0.9421352947099491,0.023875025618823546,3.0390838869217815e-05,0.006968103300357548,-0.015483950053762402,0.17072172418838952,0.014646483586816065,3.0302236443993276e-05,0.013415566753906443,-0.055402622664819996,0.14498225154133434,0.036133062631445875,0.00012309438413584325,0.017161309430651025,-0.003327287635207401,0.024075051110535896,-0.0002583956001493622,3.1923867852727507e-05,0.029725629955407347,-0.02523974278841323,0.07402139277390792,-0.05503112531831574,7.55970858887334e-05,0.002022176089729527,0.023533757536093772,0.10084415711571518,0.1381231853584068,0.00010670607119225738,0.0019229267586478986,0.0661644962304068,0.05468265328883203,0.06408192185375652,0.0006915936427296435,0.0050738008787718746,0.014669854049787509,0.06855174271022113,0.017295559906430894,9.007272510932358e-05,0.015233690576179904,-0.02084661812342854,0.07549619585577044,-0.008386438588665028,0.0017722693096489802,0.009056095308606115,-0.01780451655367049,0.1452827522947256,0.006358489918783419,3.151362206670821e-05,0.002780771895946675,0.02380542705287412,0.07349662238340571,0.007629562669251564,0.0010589607550921501,0.002049002393851633,-0.011097904924703098,0.07543052515873162,-0.1149328737576393,9.79759564520564e-05,0.005393322324128833,-0.052378431505282805,0.06476547266253335,0.14342825536982495,0.0001908773232345152,0.005926721897697398,0.024147232246491682,0.038508413401098854,0.0182492987328703,0.0003599280118539081,0.008144579777480452,-0.0428079457581882,0.16733401688256397,0.040745890437500605,0.001982852879574315,0.026545387924225994,-0.006197531085283158,0.0245855827862493,-0.02021513881258369,8.087765985718546e-05,0.012340311105997493,-0.04695710603071327,0.06325376663159872,0.042316252169045734,0.0018454068286235575,0.0032640679371515454,-0.01792008174967819,0.07002669712774695,-0.048314170766505175,0.0001013893596355531,0.012348028988289779,-0.0011219095228175192,0.0028557679303996366,-0.022853597219192348,0.0001592558147201722,0.0010992525970790704,0.012767612248772115,0.05537489583071046,0.007032739027370089,5.6274375933788836e-05,0.009507451509171731,0.05267405589186339,0.22085207375566893,-0.0800076531155932,0.002260545935920453,0.03030262099486237,-0.0027752925647502647,0.014444541755972914,-0.009042922599854201,9.557527893883012e-05,0.00584082580965044,0.00032449033483639194,0.0017330482464010745,-0.022827360958241425,0.0001357850313048249,0.013612295899051689,-0.004451581798762712,0.02296204979850983,-0.0022775994468516698,9.169642463726301e-05,0.006146182774072352,0.03010775003682015,0.1497086818241074,0.008638759989902179,5.054505927616584e-05,0.011590432123248885,-0.025225596267733574,0.048305181494082534,0.01222218388047053,0.0002546109729659669,0.01606474646673031,-0.008000889005795164,0.032515836047330826,0.000664610094477048,6.118679376284679e-05,0.004698286559925945,-0.0010709648661430095,0.013019751757192104,-0.10195760341282625,2.122285492716553e-05,0.003990365550350771,0.011907239021663225,0.04125461107796349,-0.004419214864802227,0.00010088986453585109,0.003933100072053798,0.01935332116658116,0.07311781781534071,0.016470293080198272,0.0004172153257438623,0.0046363549754340205,-0.03756349409644173,0.17413609610253322,0.04803935697324766,0.00012355177097733675,0.0014083399485536527,-0.004612842468395331 +2017-02-02,-0.007866235077634709,0.055773612013242616,-0.13681022891586125,0.00014915050687334548,0.002405861584289263,-0.014754312917025272,0.03873112007253248,-0.03500915903293633,9.140489622750393e-05,0.007894283905384566,0.05358685755669693,0.18915585256933223,0.013548362814555832,0.00013104960349000078,0.027143812824851545,-0.017171246802593833,0.020657272467533763,0.016286117235069585,0.0002805412377944031,0.00364387162684221,-0.005282687779313901,0.011085051677981874,-0.000601800591808354,0.00024935322739436637,0.0008845068255180645,0.006242779502599873,0.015700914543102476,-0.029905757936968078,8.681600273142154e-05,0.0002209330728337477,0.00359799102380359,0.013881364074319814,-0.003909004026116219,7.605325145425421e-05,0.0006410676688765884,0.047646873950932686,0.39749016311734553,0.1133366529141329,4.110613474161719e-05,0.009323977282700452,0.025798106865724642,0.02329176699635022,0.032551657707126425,0.0008541422154993968,0.0066238245060936726,-0.05193481895120035,0.13744332568430545,0.09910641933239651,0.00013212860604988526,0.015356994105630009,-0.02698308313483781,0.016946369736159348,0.011054250187353183,0.0007782860604588164,0.0021719993404141487,-0.004952072207192913,0.06810742945935913,-0.022911751339245796,2.16678224758804e-05,0.006147736299969525,0.030298907683072338,0.08333013804805212,0.020411313114890417,0.0001080129701335269,0.01219033503069843,0.020717833284381166,0.10512859752658275,-0.02990404685947455,5.5473463447495064e-05,0.002019147953319432,-0.012681833779547857,0.011160094619474484,-0.01224522675617628,0.002216343918685179,0.00862667428450815,0.0003019870553738978,0.0021250894437697338,-0.03916713735572374,0.00011694003545993223,0.0015225262881598362,0.029716226590277478,0.15566061122315217,0.008033409420964005,0.0002956127501073604,0.010521965692571099,-0.02070809857997314,0.11466243776396257,-0.005819843108091004,5.0872140210967365e-05,0.005246400765802709,0.0977144578968818,0.47933535989895504,0.1522163533758363,0.0003359743844745239,0.024509356813749942,0.018960231828717217,0.2803603197552026,-0.0022316959097308134,2.806450120475174e-05,0.02531256830426465,0.00674475937091521,0.06994623670931768,-0.0034134977099632216,3.2216904964945135e-05,0.00750503326269639,-0.013065664176210637,0.03653869431902676,-0.030239577126059698,0.00011518640475375648,0.005520043200530115,0.0074433351968281195,0.04390553174442865,-0.00837947513488008,3.9159822252771055e-05,0.020233647690075345,0.0014863586822657265,0.004778495772787388,0.0015722219314212504,6.896199242343036e-05,0.014451243984364821,0.0017170248494703935,0.006851369517822378,0.0016765719965355736,0.00011459028114387822,0.002847601078689305,-0.032857491232737485,0.03773744995897377,0.01820454907340676,0.0004976653590873132,0.028002823548289913,-0.008635623313424634,0.030140237362436335,-0.01619310682002041,0.00012059603551754524,0.01454219940632816,0.09665824206356109,0.3516068329165021,0.20363464142042437,0.0017644150790568779,0.02287616960465344,0.011989722356504027,0.14246204737017432,-0.010910103211478537,2.16417382555106e-05,0.003458249054319915,0.004177242320814209,0.010915681516123342,-0.012099650802529947,0.0012511520251043354,0.007526516654347414,-0.0036832483256159557,0.023583492192605762,-0.03302584234804526,0.00010400363738642868,0.002670487339852097,0.016129855095028893,0.02668334152111611,0.0050689605525339465,0.00014267097768001576,0.006254305968572184,0.022674731908724922,0.03260797687026155,0.008874108984886936,0.0003991372129782245,0.008186954215032244,-0.015561290006050651,0.06276951951295606,-0.028053267540175904,0.0019215298411202834,0.027649077831688747,-0.030173654737565052,0.11763641761717614,0.010700802449454266,8.229557737989122e-05,0.014821016724040322,0.026432813835714473,0.038732451704139054,-0.025766394316617872,0.001696467722528958,0.013040105102127506,0.02074540100203962,0.054629998579784476,-0.0003336534880238046,0.0001504550194985741,0.008821777601462095,0.024587720590653183,0.0806068602426658,-0.001391200888704666,0.00012365356456042731,0.027272596771429347,-0.04841159863414424,0.1770488998085691,-0.03138155697748363,6.673752809369283e-05,0.006557669533253848,-0.007272806260768967,0.0199811606097855,0.00018678898759105246,0.00344984327632616,0.02818665664463523,-0.02114275863068818,0.09157425421936025,0.01027993707173635,0.00011484942681778513,0.0042333988258907605,0.01512970821508284,0.0857411818574562,-0.0011218920190915,0.00012796814405776155,0.0033375886713416995,-0.023082751044714505,0.1314143900556182,-0.02633086475749717,8.307939832629904e-05,0.005307397811789292,-0.002997909205269878,0.014398654317788808,-0.005298782092363785,5.2329184321004064e-05,0.008340604522611596,-0.03129995449091179,0.05794873461019241,-0.05561150082410313,0.0002633474656161184,0.029651769315686412,-0.01986589798347393,0.08387032455882526,-0.037915394074538145,5.889985873363379e-05,0.012366109328489437,0.04681998617048194,0.5016342540485245,0.21123941172853403,2.408104792182293e-05,0.005523437728229307,0.006730797135571689,0.02065284727691804,0.01803203641387787,0.00011391883428318217,0.010828165413390198,-0.0001457528697980662,0.0005315960755598851,-0.008061179407895584,0.0004321786606984649,0.008222134563028833,-0.008746897914423242,0.03850255524233186,-0.007907768853791726,0.00013011767700962166,0.016743049105587028,0.004405486946720616 +2017-02-03,0.012623077724099997,0.08121522889134927,-0.07726828962735424,0.0001643669012330478,0.003113840797387177,-0.03526622848075724,0.12321685563007519,-0.15144436522182214,6.867511915352411e-05,0.015900493783444374,0.05465371982322875,0.18077062518713036,0.04028702470263855,0.00013985856586222223,0.034535967688451484,0.010377285228085727,0.009466059816692962,0.007006866513811327,0.0003699835078493784,0.0009991504378391459,0.04511084275107301,0.0969060379015541,0.07488493025642427,0.00024357228788738389,0.01991536383584613,0.0001015920285879175,0.0003003376783688309,-0.019221662328930442,7.385783158231432e-05,0.00965264244201596,-0.059908803968452065,0.19617800805579938,0.06798907053671728,8.96045749480739e-05,0.013299817606965077,-0.05755791111208902,0.46843702032838647,0.14428160195168355,4.213591495914919e-05,0.004558154959238588,0.022312422310130513,0.016927079589398493,-0.17054042892227433,0.0010165048888261532,0.005723356944570975,0.002287008711696393,0.005193620220947178,-0.04548339459269414,0.00015397829850925744,0.0011763452943453303,-0.011529313748796536,0.006546721355615664,0.0005113756593963718,0.0008608033717029091,0.01879270632124716,-0.01830547573573923,0.23351143886734274,0.03742350329011947,2.3361227009246408e-05,0.005061955251358654,-0.017965580206747156,0.04605616059199199,0.013495672380572091,0.00011587895087047558,0.00247987907959458,0.012021442011438514,0.08764727881184792,0.04184760809856359,3.8608234916335354e-05,0.0020190950172026896,-0.030543083214133362,0.02408514672335144,0.0008010149143117109,0.0024733555503673446,0.01111827171774663,-0.09059273263424518,0.6719843177750114,0.15164872970892415,0.00011093953205938216,0.012029785390350217,-0.027566365981676576,0.13350366574515496,0.016925508034640418,0.00031973822443186824,0.03527687500328294,0.01644294644298822,0.11958614226742896,0.014100342737252181,3.8731092017875225e-05,0.023209363864562294,-0.02091604847404699,0.13342824310746704,0.014025462144696365,0.00025835607590072814,0.03163393348855857,-0.04485117807415926,0.6421376840267726,-0.025336263248208677,2.8985175130061438e-05,0.021728878871087882,-0.007473351457139569,0.07249129228432011,-0.02705935660181424,3.4443817062874467e-05,0.01184852417530286,0.021272415833912737,0.05799398918748519,0.006061808187485531,0.00011815621939957048,0.012802826929232286,-0.030595416362517773,0.242689054399483,0.01402677449408825,2.9120481678509395e-05,0.008951628758860197,0.014317930775865611,0.045095631149380394,0.0701208401787632,7.03919783415026e-05,0.005786974121089577,-0.009807679675317406,0.035878590758437315,0.004136980113373887,0.00012499121572369907,0.005331394210670864,-0.008446284971018556,0.009680486124834062,-0.0162320667427963,0.0004987054618478269,0.012926238786207732,-0.05237925912708782,0.1655387468208338,0.21841496820089618,0.00013318205054300343,0.009217111694262453,-0.004873705224115907,0.017008108845216585,-0.0453820561964556,0.0018391722538008222,0.003430941482916447,0.013044585657795838,0.10730340573059656,-3.770618504214179e-05,3.126072009579226e-05,0.005534241162478735,0.026568921322111055,0.08176050528443009,0.007980424751725529,0.0010624331810183006,0.0002087103800103927,0.020352641365692658,0.14792366602362192,0.009289213726940058,9.162389746500928e-05,0.016784158106133373,0.045302086680760245,0.08220791615248452,0.04903528870329858,0.00013006185785977275,0.005638199141960064,0.019864166619121704,0.02433643164410126,-0.00876524080592021,0.0004685083802336464,0.0038075723522172466,-0.04739542191894365,0.1928410307350552,0.01800800508543419,0.0019049662721349033,0.006488337977146064,-0.03081938219337799,0.11328543267820768,-0.06446538687087475,8.728512360737178e-05,0.009655727429844713,0.01859344314298289,0.027753401408341632,-0.0273050344699075,0.0016654085686202157,0.020773252803397518,-0.05766049093743765,0.19132292234930787,0.21851453008365399,0.00011940633442305654,0.021905320936892788,0.03504476607463431,0.08780701106881536,-0.02129520649738232,0.00016179099555295066,0.013156247632717215,-0.008668361189423124,0.038815337513299,-0.008341108087217637,5.450640730217003e-05,0.00829163486849018,-0.0499635762261078,0.15741814966542889,0.03574786762948038,0.0030082697098978,0.02060122365781067,-0.02474149199177517,0.12660773935776404,0.010814958084981894,9.72089387395541e-05,0.011136303738222292,-0.0003031024130139097,0.0016276275953772334,0.005659303142799452,0.00013505016955936988,7.054145315502991e-05,-0.016540690499178952,0.10763222609338412,-0.0021376318376878237,7.2687546773991e-05,0.014004429910515715,-0.020843025987127346,0.09504174125752315,-0.014786469894742246,5.5118041884933804e-05,0.013952024694704086,0.015020968403104159,0.02550452509276649,-0.010817033615486521,0.0002871508363186489,0.029241290940974145,-0.0074257684210551215,0.032995128297013857,-0.002752785293055134,5.59636401962267e-05,0.004605264295271602,0.04299238413099189,0.4371667872656506,0.11151971102659823,2.5373224081671867e-05,0.001128844835042065,-0.004073352197749331,0.011793519928500737,-0.047599560066634496,0.00012073063414177376,0.0028559753548664923,-0.0249022123355355,0.09135173998427482,0.03698930566069787,0.00042968389782765444,0.007316059328525327,-0.025616427988469855,0.11315929500225379,0.013176445464615492,0.00012965824341105972,0.0008128015586033749,-0.007865426955468756 +2017-02-06,0.008757421391109771,0.057465007541605585,0.0044636846439533966,0.00016116078107271614,0.00607009854012562,0.004970617398578606,0.013746231661275629,0.01793503872683054,8.67635280921043e-05,0.008028466752832388,-0.0006670591170283925,0.0021363717769951962,-0.002093662492465111,0.00014443907442302948,0.007425373050951711,0.024089214651940083,0.026882272374232144,0.06352513206748693,0.00030242975714646553,0.008525256723319455,0.004181094082848417,0.01125152701516406,-0.004031181579979769,0.00019443580619979992,0.017381825169847726,-0.00998084049316653,0.020811967843626072,0.015193741693465802,0.00010471302567333597,0.0043099796505504905,0.003946678385715071,0.01417900396461147,0.0013610782567472109,8.167250355892642e-05,0.04943777291887062,0.00022194280105434402,0.0017366762470711055,-0.0596919860192042,4.382488780154412e-05,0.0007184364115624526,-0.0270242014325383,0.025239649017450107,0.04871922206403449,0.0008256849044351506,0.005076786536155227,-0.002558115783258751,0.005854127655459877,-0.01953260127618386,0.0001527987829911188,0.016007581307603522,0.030351892221907324,0.018610365065368905,-0.03621291230399926,0.0007971778758852855,0.009819129230248762,-0.013887556994405395,0.20181723094994458,0.012774191776125926,2.0506446089157e-05,0.004799605116372601,0.005103698564786818,0.012327926450743902,-0.013096946355836855,0.0001229832651819219,0.016131837619058644,0.0005354049264768974,0.003278873629475371,-0.004082402920529988,4.5964178484577896e-05,0.006441238973878947,0.026023375695470218,0.022556611734670388,0.029408198490596553,0.0022501565797841665,0.0010111326159282857,0.01408904170206781,0.09463452672093682,0.0006770307393319986,0.00012251350021784478,0.016625185765839955,0.06799261383936665,0.40095026238637943,0.06892643894515658,0.0002625907762257833,0.0161816952529105,-0.016859098249228387,0.08587660046321852,-0.005023564405841091,5.529940437588617e-05,8.27176439391268e-05,-0.01437088513052106,0.07734170072118612,-0.025296713918410915,0.00030623625676520305,0.0021341277787468417,0.017220911753367943,0.20842670958383813,-0.05862412944333886,3.4287277322244906e-05,0.00025750550393288055,0.04011584908312593,0.429205407529224,0.1929167410762382,3.122716175731348e-05,0.0037549769767517465,-0.018924642200811713,0.06248708154000092,0.0049465706616608745,9.75573942104361e-05,0.0018861148115441823,-0.03651834242563478,0.30642215530501343,-0.02595000063426979,2.7528545761381408e-05,0.00921123379072137,0.004926326347135334,0.016158752257267497,0.015530374917942217,6.759160176561669e-05,0.008306016153281762,-0.009384868074777005,0.03191766007478256,-0.05849624676463307,0.00013444533031264198,0.005680597570318755,0.012747706174717576,0.013377438856380968,-0.012259992945004284,0.0005446714750834632,0.02901368763159102,0.020186302377788182,0.08357560782792803,0.02831113781424998,0.0001016630745374644,0.009638282890183397,-0.0066995639508702284,0.021338676703915798,-0.00492315638510711,0.0020151075404790404,0.002901220268690091,-0.024963219318281802,0.2520789928088275,0.024812967913768462,2.5465143783269244e-05,0.010716874219250697,0.003945396894145676,0.01068687229044261,-0.000712635734456729,0.001207011335083792,0.008705332768152357,-0.044583401599149045,0.3471962143506295,0.15477509059403252,8.551136971691357e-05,0.014290945533868756,-5.24309111939936e-05,8.309944772594495e-05,-0.03169436838613241,0.00014891369987500263,0.006885236015884277,-0.04907557467921805,0.0674441993753031,0.1035300717728204,0.0004176617503233317,0.028835106078669546,-0.049082501154233835,0.17944705703319241,0.031658126445963,0.0021200235556600756,0.0016053695811091401,0.028882630875627938,0.1281232800116227,0.025491971893174238,7.23267702434198e-05,0.007854704577786113,0.007239909185428219,0.010682667317064859,-0.01753070233993998,0.0016847311534049874,0.00415116739824853,-0.012477863904131033,0.03987067655719193,0.013274860292267744,0.00012399457255679374,0.003874706402967919,0.029068000931098122,0.08074443097100553,-0.021597381316449983,0.0001459361763686334,0.023057044341758485,-0.00036030293314255314,0.0015628141674673055,-0.008348994173950797,5.6269671925729066e-05,0.006630267585564899,-0.01824933834360577,0.05973631575866519,-0.018505669995211763,0.002895521187086155,0.0015444982403080866,0.01081150509385678,0.06264791404200176,-0.023574744599661128,8.584600966895934e-05,0.0033963143426975896,-0.02173787604562205,0.09848669821085684,0.009694266356641182,0.00016006645050346688,0.026368326832933803,-0.018668210115764538,0.11139241281677932,0.005307739293183564,7.926761073384967e-05,0.0014158221823645804,-0.06485977244393488,0.33280037032535303,0.014294181302445278,4.8982282041836276e-05,0.025515188661864967,-0.014751298644266136,0.027911609533077163,-0.056088440133643905,0.0002576764737557169,0.023250029819844854,-0.027502419482604703,0.1105039895633953,0.04281150051647282,6.188812425112259e-05,0.00016720495930426754,0.003369408711442199,0.03634121883775229,0.0017268077612319695,2.3921339289838704e-05,0.00036528230500010826,0.0049131145078998625,0.01737085470032288,0.004371000745425905,9.886547632622091e-05,0.007690822898810659,-0.013406557894250671,0.05379022608298691,-0.07180330423318926,0.00039286368797373584,0.0048681085479608775,0.0027366286301993437,0.013164677227238096,-0.009238245461136264,0.00011906317148293859,0.04625000348420408,-0.0036388596666201145 +2017-02-07,0.00985292457824733,0.07265696072191931,-0.004646947556600119,0.00014340837514305543,0.002792469984192353,0.012306625653948449,0.04211176776720247,0.0210288800147202,7.012066793076666e-05,0.01438053799820884,0.007708327626116355,0.024714213129373393,-0.022726243471144006,0.00014428147783782685,0.021432807435561592,0.015100960747161062,0.016373899495433764,0.003163086906046761,0.000311257851009497,0.01135329153971371,-0.0011852700871283163,0.0027060644392588712,-0.1695184781525869,0.0002291801304419622,0.0029455742224599674,0.002152392850745441,0.005945131854422899,-0.195167188943301,7.905089468809338e-05,0.004582142472886167,0.023159396149510694,0.08487359303608022,0.01275336799163716,8.006533014506472e-05,0.015673339628981462,-0.01827674503496672,0.1506925583769133,-0.003240235085820892,4.159160325637093e-05,0.016414023740472766,-0.016394174788202164,0.01354971148718653,0.012255613617141692,0.000933048673464697,0.0010615410959610469,-0.03320019184613692,0.08549046647366966,0.030541250675274037,0.00013579531688280715,0.0033501656576463887,-0.007089644450797463,0.005051361496230437,-0.003291135834746344,0.0006860256664344619,0.011624321940985591,-0.0120324038053943,0.14934606147857907,-0.01952352575559103,2.4009405899304365e-05,0.0029109726651107178,-0.0674561145867508,0.20209590067333702,0.1643476639736473,9.915505416399941e-05,0.011837905857691544,0.007087314828227654,0.03059758668473108,-0.02911097806405792,6.520131722688829e-05,0.009476863153123198,-0.023413194312708906,0.01803986414287948,0.017721013371466688,0.0025313394031909933,0.00654984681951315,-0.02026994945834177,0.13228022938030862,-0.04248867096846883,0.00012609847496675524,0.02072887766087422,0.035541701985571404,0.20355429441224546,-0.03168186591703529,0.0002703747829266199,0.006978934886787006,0.018921073931110914,0.09500334254344457,0.008873519171665505,5.6100644827678925e-05,0.002608812295807579,0.04177787453259639,0.23622070997268202,0.004712738606588354,0.0002914843071286042,0.026534578194760582,0.0321273222879821,0.46012921264659684,0.01442702384923559,2.8975100743978162e-05,0.01641867126994746,-0.009604747775933632,0.10643007358258015,0.004396345786043466,3.015111042716607e-05,0.002823897439396093,0.008891848747871923,0.02083115881375693,0.002942375311172355,0.00013749958663061121,0.004729767119896128,-0.02461420941190649,0.19108711406858014,0.0017683220393713342,2.9754103253953917e-05,0.0026797081768471748,-0.011989692526503238,0.04155605031816743,-0.007788873105792842,6.396629029545699e-05,0.0004634053465469015,0.004249309418149951,0.015974270183973464,0.007271181992637763,0.00012163146167445579,0.002165090977519921,0.020150495545771176,0.02059040638500164,-0.042591671129027564,0.0005593663979713897,0.0010478387419303303,-0.02712352361257579,0.10841561340232947,0.026309106551086814,0.00010530288886468894,0.005484039963506968,-0.044888551136207926,0.16270110850781958,0.01892424254016073,0.0017707785425842384,0.007449434075103648,-0.020084556787919608,0.21753508638821642,-0.0430389624676321,2.3741881507238947e-05,0.010792638939361431,-0.045840505780908924,0.12115343193800646,0.056506795561193236,0.0012370434370736025,0.026799607525277835,-0.010520048184089725,0.08290641440132818,0.0019895292158698926,8.449971406607735e-05,0.008867088226769246,0.01439185498518821,0.020920446227986316,0.0028959843099158355,0.00016236455139037725,0.0022222132076760064,-0.05556842818911578,0.08086850785027637,0.07888827484062826,0.0003944142491951334,0.00827400355888945,0.013750813444688969,0.05762457608334558,0.020910356060561606,0.0018495709165084564,0.012513169503793907,0.018296357370787022,0.07409303867568591,0.0029048874924373475,7.922780036873119e-05,0.00029390174555296057,0.027522750296194103,0.040517811355626335,0.03053684950922024,0.0016885854534178938,0.020632782352829088,-0.01096540040057886,0.03945018277409128,-0.0644647042906127,0.00011012641746746904,0.0015253296676735622,0.06378446554816466,0.19558977980113146,0.015451826696981901,0.00013219929503951482,0.009832025288464946,0.035946546599403356,0.158383148619498,0.04013410056527921,5.539392344837596e-05,0.011820317570789147,0.0030450511590510323,0.00931348898248496,-0.019478297725457644,0.0030988477994119963,0.003358185128047455,-0.02775260156042797,0.1295153126335887,0.017227649319747504,0.00010659164217854767,0.02098108834180736,-0.00860004259490202,0.05137088249097161,0.004477019358975862,0.00012140717681224539,0.005559876126958987,0.0007990133933430815,0.004611176502884337,-0.005842361135097456,8.19579358201093e-05,0.0010740252156392041,0.015424369488200838,0.06930678602488388,-0.031076364468913188,5.593440920857453e-05,0.0012437355541276068,0.028928566724893433,0.05642525144087985,0.01659709215438453,0.0002499670747856787,0.005964503107182186,-0.02256007793794361,0.10082030398308504,0.025244703321894643,5.5642542860515255e-05,0.003552372177618479,0.019637704728149248,0.2153157644612546,0.0036684608090413323,2.3531314217120942e-05,0.022930589300624492,-0.0024995649369838288,0.00797627379243834,-0.04588355513911235,0.00010954015102484729,0.005101223999909521,-0.0035187862385540726,0.011473601049849683,-0.04338662620418585,0.00048341610058590464,0.019378721393581894,-0.0012771674937862958,0.006304645748088061,-0.00471685287147265,0.00011602697332713805,0.023022446649412096,-0.0014858926758382174 +2017-02-08,0.010271966642380571,0.0718852559038571,0.0037952221984959454,0.0001511124897659534,0.0017074118905044215,0.01163384562907514,0.034288978304373115,0.020668808044558708,8.141028564831291e-05,0.01621838192024277,-0.029497947636436078,0.0958779909774653,0.010788602607483471,0.00014232135817420446,0.03421508470292992,0.018328350087221987,0.02260509458109228,0.04935727372423584,0.00027364335060858574,0.01783934621882482,0.0030342885068354213,0.0062704542398948826,-0.01664883105780492,0.0002531953010732902,0.0008484331925097386,-0.0054022206252711605,0.01608795597053983,-0.006210352775344613,7.331927932128582e-05,0.006563255596683555,0.02770628602440941,0.10400282304794985,0.00823753999016564,7.816692733393829e-05,0.03652920916714133,0.037543874846285,0.2790775603116785,0.05715889439243116,4.6133116083485496e-05,0.007577695354717336,0.010920118355922853,0.010224452601060446,-0.030485914445842442,0.0008236298275594866,0.003367991586437367,0.015107146550725925,0.03806524279422668,0.007131603079229276,0.0001387764342274759,0.016259040875068506,0.022527386026291018,0.016201398822481224,0.03883819343097143,0.0006796458140187469,0.008144983015395308,-0.031158219977863482,0.42777853528072163,0.10751920058679791,2.1705832106072458e-05,0.009788810034631355,0.02643869849741069,0.07180751318356789,0.0055537268789698484,0.00010937579519123257,0.0078037707518439844,0.010863219274356364,0.05968774385441733,0.0001754099941653801,5.123127931745308e-05,0.0005922605207577872,-0.009960894492836679,0.00851538815225194,-0.09083465640508218,0.0022814810382421023,0.010625147374987308,0.06253104974254563,0.4375395616084399,0.06322620078055873,0.00011760627644834803,0.0044778952799560704,0.008625026201071827,0.04383624980744689,-0.003415858188377249,0.00030467390700592066,0.003638419157948297,-0.04088027419869233,0.23769136435247798,-0.009756089444006914,4.844638237012073e-05,0.0003345687371195283,0.022928445045083446,0.14062004241898876,-0.02667198580263334,0.0002687287832322239,0.006183417681803746,0.006847342240294256,0.08482618400755586,-0.009682326954212244,3.3498266712854896e-05,0.016566423229988643,0.021428524813297954,0.2210330858232098,0.018614582100031425,3.2390428728234615e-05,0.004307020508994357,-0.06604009286824195,0.15142438972443037,0.037135304532839454,0.0001404865020121757,0.012126393025076166,-0.00957569753697867,0.07437586656364814,0.00026098933863696145,2.9739301035589778e-05,0.00017997182153529044,0.016189461302260903,0.04591676012138385,0.06151048450965314,7.816971770655555e-05,0.0026823644474237313,0.005947898181563283,0.023380638580592594,0.005115072240666713,0.00011632036398647896,0.00140517093957861,0.022916347577684862,0.023564353077860773,0.003403196175583201,0.0005558600225063247,0.0004123244984777599,-0.026492261185193208,0.09899129450774188,0.025194689524833596,0.00011264399213589723,0.011986126243541053,0.000598815606757995,0.0026085878511004816,-0.0013288810082602734,0.0014733530215343864,0.035612981463482254,-0.03902837608434581,0.29749660865402205,0.030550807825253823,3.373499555435575e-05,0.008453048302991067,0.011498288408696912,0.031245708832669326,-0.087511810815581,0.001203134238745261,0.007502734506088242,-0.027882042178936865,0.19371238599451285,0.028791406980655906,9.585015789603816e-05,0.005933986233118154,0.0023402946257805625,0.003755701250809965,-0.029936357577395704,0.0001470702676570092,0.00029749194243161624,0.011389671377435863,0.015605712465186165,0.004416566762665469,0.00041892039727702517,0.0015868074180785535,0.0013483192985516482,0.005327420083425591,0.004691587629985615,0.0019616708933837923,0.007119902686778476,-0.016704275693556456,0.0580619523372742,0.01467059120871805,9.230524611973784e-05,0.007031238163829839,0.02573293918183933,0.029754790935005344,0.007204100858658851,0.0021498575391575314,0.0019833287143336555,-0.03759620448962889,0.12348426508043528,0.031316661738882076,0.00012062808080549672,0.0019060273259172294,0.0037932737017468032,0.009690245584468609,-0.0024926391522145635,0.00015868642366601032,0.00043503451448286706,0.00017483480576480155,0.0007799270049784873,-0.012810106595441028,5.471266412024834e-05,0.011515675229007113,-0.012014363316233326,0.03769298766238311,-0.020671495158107005,0.0030210523889245174,0.011902384171673507,0.001956652745745204,0.010738394884381393,-0.005537400038214309,9.063896904754419e-05,0.015639644916771632,0.00011414957493640708,0.0007398164927035893,-0.06512488745418933,0.00011189510141151529,0.00823085137860966,0.016363318005898873,0.10098262701352692,-0.06764229474966604,7.664316042907892e-05,0.005281552763669972,0.023317127581811387,0.12496709251836034,-0.007814685161470674,4.689502570361345e-05,0.024957791812258254,0.04044600067541893,0.08207144738521054,-0.0286338837738475,0.00024027737920181077,0.013158218416038038,0.005974106380868095,0.02414440099361668,-0.0003412905316266137,6.152772997610145e-05,0.0009978736639280404,0.028415499825453838,0.2643561083006334,0.023628070245044975,2.773302449839128e-05,0.006520952702015066,0.0019628994356545634,0.006059847171962029,0.0024700731246208108,0.00011322578574509877,0.004417054094680443,0.011767390391965105,0.04811309560100934,0.004232381277131087,0.00038551815272550797,0.0024310899161777808,-0.03992183897770959,0.16829663994512703,0.027127410528220566,0.00013586477980439814,0.0026579023011686735,0.003314800016781395 +2017-02-09,0.049905579859693565,0.30937247834735904,0.1364053141974407,0.00017059017455171597,0.0074434856138955695,0.0003963502242034377,0.001126802556486099,0.004845854494426004,8.439987650070802e-05,0.0028996280643413114,0.01834961971917617,0.0653102425177265,-0.045818550631076226,0.00012996995732731572,0.016906651330372093,-0.024089833727485452,0.02595310768043413,0.02208632432294862,0.0003132652991287647,0.005890914903750486,-0.007398228763953505,0.016225932007166464,0.018363156756307314,0.0002385700253560342,0.010098284168937521,0.00899796843640238,0.024664009577403282,0.018742852577662544,7.965765638546454e-05,0.007558676222548295,-0.004686816572046916,0.017713270804519347,-0.005788602619367045,7.763705443235836e-05,0.01978034799311403,0.0051065897777331426,0.05322301503639371,-0.0034626007511323305,3.29025920436979e-05,0.003592315734817565,0.02192365765155223,0.01841787970128301,0.05908145230183934,0.0009179481826747747,0.0024350656637609444,-0.013265094172678925,0.03150544943787849,-0.019515895079794576,0.0001472266887382534,0.0062770282832812566,0.040957339077940455,0.027095115577183717,0.08391188429485077,0.0007388649819849737,0.003762971637237987,0.005742957366158656,0.08309537008558478,-0.05229638765831364,2.05959370255891e-05,0.005329848034993771,-0.021411975302568474,0.052588902137352046,0.003438470502770318,0.00012095217077090888,0.005904662122587364,-0.006856875155028321,0.030164006874069307,-0.009729836835629495,6.398807268634326e-05,0.00012658610576464567,0.008523415004395057,0.00750788944664086,0.005244878260005392,0.002214209645314618,0.0022898524244335527,0.03248144820919541,0.24257635546925896,0.014065371620141171,0.00011018919880830627,0.011334716120809458,0.028752040002277126,0.17457016331291303,-0.028383127717724266,0.00025503916492799735,0.02623900358872294,-0.01754194342975017,0.11357941344130373,-0.006369844878576924,4.350498673833125e-05,0.020023210422961457,-0.014933452464299469,0.0736568738338991,0.010575893452361282,0.00033414406282404613,0.007150566326685326,0.022945555651290153,0.31425853112336116,0.007643393558515769,3.0299937598748094e-05,0.005539808570227461,-0.00261071530696045,0.02341127911860397,-0.03988077719042737,3.7257703458587326e-05,0.01180833572097742,-0.04683361148876448,0.14788856191182792,0.0239188281702253,0.00010201072141556401,0.00862882122833893,-0.01985027142216288,0.1319780986870693,-0.09121359617132924,3.4742171359675114e-05,0.053518200681429436,-0.011042570722896137,0.027693954800693307,-0.008368993751473378,8.840210220120794e-05,0.004695825434887689,0.0033156041832327703,0.014042698547812768,-0.044359912542415315,0.00010795945947472715,0.004263881293911371,-0.053220200506510745,0.05253818859464254,0.03371888626807889,0.0005789978787818075,0.005839479820579453,-0.029793159648550303,0.13006402577533638,0.030847748456797438,9.641517205793782e-05,0.011398089025621982,-0.048441793985261626,0.18176986571197193,0.014539757302441381,0.0017104780550543047,0.016943656791558882,-0.000575473457575894,0.005640595783018802,-0.004872377928061322,2.6235087346798274e-05,0.003205134052517899,0.09855131278213453,0.2782659764188117,0.2038729405546993,0.0011579067220906644,5.410852678870378e-05,0.008947211815388394,0.07246870455421156,-0.03008797880496315,8.221723443137159e-05,0.0071794674538334805,0.03835308645332818,0.057156775278333426,0.046264415436600835,0.0001583718490478318,0.01577863329177058,0.00206107290053114,0.0027960585331307957,-0.0005609969781517384,0.00042310777715066157,0.0026363781605065967,0.019562651803710928,0.08603918241376603,0.01697574436563064,0.0017623079130391515,0.007998368423751954,0.018122160254993004,0.07648977816435981,0.005016180812593079,7.601458618520107e-05,0.0031840357598133936,-0.021295955481251228,0.030274531807133697,-0.004685440968814058,0.0017486258186702882,0.005276965309865456,-0.017388054655028986,0.05169602953744959,0.014648448837149492,0.00013326307931535612,0.010245392653398622,-0.009852631849726566,0.0327501396073299,0.005152898640324215,0.00012195496217485097,0.005640031355240584,0.009882611549340123,0.04643506346664318,-0.02908662816228354,5.194450435599006e-05,0.008016545171616525,-0.0710696878113639,0.25530646066875873,0.0820005400494328,0.002638400135880413,0.01903080604437756,0.005412211756030558,0.022611488929441138,-0.011021985575563484,0.00011906556855590085,0.015467861225881865,0.0111577258100307,0.04774611487433274,-0.026227984051029236,0.00016947218570912957,0.023443614020938176,-0.03504588226126323,0.19265450272291199,-0.0018795214262603034,8.604121460880533e-05,0.005047959065507468,0.028818030935052565,0.11253515684297392,0.017559075599290222,6.436110289142131e-05,0.02185854759666891,-0.055565287628756954,0.1266895338563033,0.032385022296945655,0.0002138416135047369,0.008408550153446733,-0.002644176658797339,0.011236558153388606,-0.014077163691025895,5.851558340424431e-05,0.0010076962294717127,-0.014771434995885766,0.16299077514305402,0.005722597348735021,2.3382500265134074e-05,0.007324413174139564,0.009957664125762473,0.028744559855241623,0.031064042364919425,0.00012109069585087586,0.01386438812389755,0.02441010565775451,0.09440674851498133,-0.0313145323609905,0.0004075628494331988,0.008592240939652088,0.029479777029653258,0.1302609680000424,0.006211135333479918,0.00012962288677473397,0.025769802048557867,-0.000480693618859652 +2017-02-10,-0.009123738688400372,0.06036017190459075,0.0021047439852539163,0.00015984864314509353,0.004091007403821472,-0.044363957845667906,0.16554327250687256,-0.08813745642676028,6.430270969472849e-05,0.019828936493153523,0.05127324016438615,0.18062747296597076,0.026148500149006198,0.00013131192305188276,0.00735755242735542,-0.004036482720185093,0.003884461513701328,-0.00048510946932632667,0.0003507035249504986,0.0021755899839692905,-0.04807944079063054,0.10344290436375371,0.1857099974125893,0.00024319602621387343,0.0028359492428744254,0.01267014584888559,0.037487386667766014,-0.05680440808795452,7.379776142769617e-05,0.007211113115076269,0.048029168373259885,0.20000907508401344,0.03227821753967747,7.04604188607539e-05,0.0060125611962613835,0.060672181525761745,0.49811199442085324,0.13362803709740045,4.17696874531876e-05,0.009282143088631116,-0.01686452576223587,0.01280468350314817,0.019436573113182212,0.0010156640284574394,0.00929628301344879,0.00680660121418064,0.01798175944531646,0.008337665019933589,0.0001323609908910331,0.009055071425776422,-0.006934751460480671,0.005028668289814668,-0.0003169819645104226,0.0006740657645484727,0.01230799397018734,0.0066277445681411475,0.10531053148960409,0.008261359978985772,1.8754986128344056e-05,0.008802813001720781,-0.006519246324188926,0.017722691955651695,0.0018203778733378868,0.00010927447779375984,0.015523300774458024,-0.0030405588793606837,0.016424091614781994,-0.011343484033589401,5.211153635244775e-05,0.010079250421845676,-0.02008077781338909,0.019650940345101536,0.0046512347337006295,0.001993059050407636,0.006103975143697768,0.031616958316569764,0.21228736386099187,0.0010013804695461553,0.00012255980190481407,0.014856153883919273,0.0181832404553423,0.09703352151315094,0.0001437085091046293,0.00029017348178186176,0.04320117105656584,0.013544854421165166,0.0973835055374205,0.017299550094746232,3.917868847913366e-05,0.005480333867529687,-0.01731935198247847,0.1015130705797121,-0.029233645839517132,0.0002811878048761401,0.005489550892883435,-0.04840210074053938,0.5482105331968063,0.02141443554072761,3.66392914769178e-05,0.0022722153470543164,0.0012148636490653551,0.013463673191253751,-0.007306370065812332,3.0147109968974557e-05,0.0024266665301185416,-0.017711395113104104,0.05185323829611258,0.0017272865519025386,0.00011002709424115857,0.007862694673307507,0.04989946663177243,0.35627940408249476,0.027227592831217656,3.235173394689635e-05,0.012953947324173848,0.0031013109377121145,0.008648708729373124,-0.01590344281712588,7.950078590819312e-05,0.003829231775179547,-0.006943610154465579,0.026718923012007248,0.005861042300343675,0.00011882695729017957,0.004299393482671307,-0.04561388996124128,0.03920408283259969,0.02810020179756457,0.0006650302093305288,0.021838975376618126,0.00866541548556622,0.033361641838540596,0.006233448807726073,0.00010932713932050249,0.002127802494342238,-0.06081807759417811,0.1958850075143795,0.016026062103252876,0.0019927401240507447,0.014299331945524582,-0.0175882513093356,0.16568967497433099,0.005937874735742132,2.7296653799606895e-05,0.0006476552494606512,0.028534441330068605,0.0934420553939306,-0.01807240506232683,0.0009983854908894323,0.0038981709626374848,-0.028380358569765153,0.22292234143523842,0.037337913471687974,8.477931934653019e-05,0.014575743283469552,0.04113287598655811,0.07156270425847663,0.04420179894554654,0.00013565872120816592,0.013221213994535099,-0.05984020724627219,0.08612773624424888,0.08549029359441924,0.0003987989170232877,0.037248835901100966,0.058511220718147156,0.2611583010606001,0.10205841536040874,0.001736543494417805,0.020570226897389802,-0.0358730743158468,0.12287546253963932,0.05216646334224432,9.366855099814336e-05,0.014636539021249392,-0.0393202158159985,0.050642305229529824,0.03497564849771198,0.001930099144355928,0.0005206858167672087,0.03399197836702623,0.1083277687083906,0.032837572850187666,0.0001243233432229057,0.013985194148629915,-0.010798668406600077,0.02825377214965848,0.008268050758874292,0.0001549366434388065,0.005199434886848942,0.04338318310034508,0.19845134099386186,0.06451294481058906,5.335575883762925e-05,0.025278199899929153,-0.06004767289573391,0.1803454351306048,0.012750548968624023,0.003155797190762333,0.02218401358530625,-0.006118228274747175,0.03296915464577905,0.00035066016158473814,9.231205854965257e-05,0.012833698873443487,0.006486938142258781,0.03421719033785063,-0.06357202554440787,0.00013748527776065529,0.013870268771044358,0.033688996211837026,0.16700803638782344,0.08178101637132916,9.541120920958859e-05,0.004016132132940716,0.007529823129529249,0.033973041144479584,-0.006829807299507957,5.570545743205468e-05,0.00729521488599311,-0.01802771972144298,0.03233261225119438,0.003709054173018879,0.0002718500376561765,0.018452954476082518,-0.008148173202715093,0.03142215282987934,-0.0038539368881224576,6.448202852075235e-05,0.015525667610205508,0.006583569538265104,0.07640618470310803,-0.013130427123014824,2.223126617894017e-05,0.009332622538909787,0.011984362541684522,0.03645674189809764,-0.023320375866623118,0.00011490688443973398,0.003562869171715724,-0.001490831250333206,0.006624913390668256,0.0015791197107813775,0.0003547123043442774,0.000718733260933475,-0.012270894375296607,0.06122528010837624,-0.02041353224704695,0.00011479348297238788,0.030482884325972234,-0.0020157860548302197 +2017-02-13,-0.01157538085806653,0.09159385768898229,0.0068546587330699385,0.0001336458638348587,0.008960668249814587,-0.017823028724352936,0.0630231066321657,0.0017328667850086952,6.785662048180039e-05,0.006172184253433589,-0.04566018057045514,0.17050453425606613,-0.06234014025537,0.00012387934385737427,0.0031986454555411347,0.008498214441124929,0.008695652704914464,-0.045808036546932274,0.00032983243112462174,0.019555103595114743,0.02164419031217388,0.05261449777559146,-0.13308770422960733,0.0002152453048579088,0.010691796328287796,0.007339319206276884,0.02222774992634504,-0.003129053250466637,7.209531014238108e-05,0.007126569103485709,0.010471904906662386,0.045632460414876966,-0.005591202107252327,6.733512323431684e-05,0.010440777792065509,0.0008323265096912443,0.006887749802943257,-0.011696783789525812,4.143954503637956e-05,0.00908414208263475,0.0028086692853056486,0.0022052606030356593,-0.04276243953536341,0.0009821673044814766,0.0011486225586783746,0.013990889368468101,0.03066607087232826,-0.014453381334521164,0.00015953246430707577,0.010959109471143006,-0.011196600337131586,0.009458914936529056,-0.0621505316009444,0.0005785877237072288,0.002303383298499872,-0.012270066567185281,0.18110995295342597,-0.060303176710808225,2.0189584929099507e-05,0.004822795785990023,-0.044729580295046284,0.13357269951689765,0.04858496624246,9.94782548454959e-05,0.01743360507781678,0.013738465159144507,0.06794774385647463,0.04071354080686861,5.6914771170499865e-05,0.0071565005606308045,1.8711545372799802e-05,1.4293707179863827e-05,-0.0293000010224909,0.0025532171250914723,0.020803355030477574,-0.033587596776273154,0.1890222451732484,0.015271703495227412,0.00014622381860115232,0.015588628354411547,0.007712591827238051,0.04649257754624835,-0.06344893934542696,0.0002568768433027389,0.0178772006305539,-0.041775509351036376,0.23970891189972118,0.028750444023159412,4.909062136497996e-05,0.008219277252142792,-0.0018744626619729057,0.008218669315232041,-0.04775717797259724,0.00037589114484790775,0.010225140612040867,-0.02712433774242234,0.38450532503057705,-0.007014775464910946,2.9274333488740134e-05,0.02037129157394886,0.02183139474563433,0.23412821595925173,0.027718897979847112,3.115368581028027e-05,0.004080676275353076,0.002300894778764482,0.006316050688260842,-0.018640492091791996,0.000117347517828981,0.01953666005059919,-0.08255402243699862,0.5584837642311766,0.03234224893721105,3.414444539991151e-05,0.002389773618560453,-0.0134908717148306,0.03664181743121037,0.011378098520931745,8.162823167025064e-05,0.0014130549403624272,0.015306957912520364,0.06364652498009485,0.055068989807448725,0.00010996710374292405,0.003658951619777276,0.015009415274262567,0.0157624047109346,0.0018211284367332045,0.0005442730880964881,0.002042781829925856,-0.02361135706775224,0.09836955925192227,-0.01762622536303578,0.00010102904145782576,0.0027520087081724814,0.008393190824630985,0.03256698568843208,-0.005417395282360167,0.0016541264590188372,0.0071453014815033794,-0.032099177266079075,0.2753993463878454,0.00021275650910908582,2.9971825211599162e-05,0.002458075563486437,-0.03110813496639834,0.07805738934731654,0.010273226526930536,0.0013029604165836737,0.01041356066126544,-0.02351571745193789,0.17146957240647273,-0.12359384833118203,9.13264995189017e-05,0.007886110270273233,-0.025208126266958508,0.0362676909023669,0.0065970869826213795,0.00016404615140394645,0.007607891286516314,-0.006005935526144326,0.008748341434682729,-0.002380126497108765,0.00039405682605139357,0.012177177083663641,-0.019421120972075236,0.07141416873959393,0.0043285242016620346,0.0021078526553064683,0.014661025399837026,0.0031303594258854537,0.013132266986719448,-0.0387209105939113,7.647947052715613e-05,0.008709077365557528,0.00966334740447965,0.013798017767692369,-0.011388484926117205,0.0017409571619349262,0.00022903100895312447,-0.02310347677599139,0.07730137531977725,0.02611375791923962,0.00011841484647128268,0.01327238659048869,0.008350566902523874,0.018422339660499085,-0.0004995365947062981,0.00018375177823611263,0.01705872270493092,-0.005632206099672454,0.02611381355327093,-0.0001244195896866051,5.264076167614286e-05,0.022221514215816928,-0.04363156729926806,0.15164497962300666,-0.005968758134587385,0.0027270357699582925,0.023722790527395253,-0.020061815731368345,0.11016742990842403,-0.010720179542811924,9.058527140657992e-05,0.012111917368174295,-0.008760495274419172,0.04795569705547362,0.021008749498289365,0.00013247966952197935,0.003401642522715138,-0.029340014352551833,0.17328460903686102,0.0006180859482057152,8.008460352492844e-05,0.007294638070387048,0.003049772021170769,0.014741566848711554,-0.12994368078525362,5.199614241200451e-05,0.020523763049675764,-0.0013813777280363313,0.0033001021100271684,-0.0006176044186108883,0.0002040865883928209,0.004646460109237889,0.016114504000548063,0.08363467845134172,0.02021152011434939,4.791206915947631e-05,0.009342375308150061,0.029551917350271135,0.32600405013237466,0.03295372681110953,2.338804675472057e-05,0.0023531294142948257,-0.003993287400081111,0.011948439911115896,-0.02144615308515578,0.00011682299297014971,0.0025424862516555532,-0.009439060046572545,0.040309724510045906,0.015700252778570158,0.00036910241752989597,0.0021920996905221025,0.039474115397368545,0.1815896589102844,-0.010971866605799904,0.00012450680522223156,0.0022435215793327563,-0.007412420475797346 +2017-02-14,-0.01856073131713843,0.11961447088888275,0.03835950748636657,0.00016409598093902164,0.005661510702230793,-0.011695865248961374,0.043686693447369765,-0.00117722061515242,6.423825092326836e-05,0.009278835308126128,0.013083029428253594,0.05098950848356823,-0.009364966051050916,0.00011869288802702417,0.006103952393211548,0.015621633306932652,0.01657185790890384,0.0339493231311178,0.0003181435293362446,0.010456515509895747,0.05363424421704943,0.11788138861055969,0.1294411652997451,0.00023806453060543203,0.007428336076555128,-0.02330884950219095,0.056678582286825804,-0.015065790119211954,8.979426480298053e-05,0.01423308090979597,0.026849182074399583,0.09536565938602105,0.009450079893255161,8.260929184504158e-05,0.0037399611908546723,-0.01809359279365514,0.14351804963095008,0.010678893089735844,4.3233152292408947e-05,0.013728702768005386,-0.01968781407175203,0.014699698875165559,0.03669731623196812,0.00103284189936924,0.00040388700331452283,0.009572476148824845,0.019431189132450365,0.006178012965816345,0.00017226093506906822,0.0014432449684602996,-0.03699658888606489,0.022594188986343567,0.049102331227430164,0.0008003672044526131,0.017313254304131782,0.01620227151185148,0.21866644333804103,0.0868497057586905,2.2080888969712908e-05,0.0064437989365305065,0.005986249875746345,0.01601170567882223,-0.0028165066378109363,0.00011106271360735507,0.01106504655638967,0.014585041144980057,0.08302348426699377,0.043100818979739185,4.945025339680237e-05,0.008507728590898711,0.015417612328269699,0.014566692621383336,0.01398018571972051,0.002064330065275065,0.0092534537225444,0.014467907463364443,0.09261896722184788,0.0018999696173134701,0.00012854580140706572,0.01152959176642266,-0.006776869893566028,0.035786735150087096,-0.04098572387255055,0.0002932346589786973,0.009156600995544238,-0.022268430734197178,0.13319792357645702,0.0017324133866179281,4.709264834629237e-05,0.007450770728854868,0.00816255070990443,0.04519002349249936,-0.03447603194075773,0.0002976940350499593,0.010286138614248375,0.01366260730175072,0.21350114735423228,-0.15785918406085184,2.6556057711552823e-05,0.033699842520595,-0.014422012422130964,0.16743956108641428,0.017270591089475058,2.8777263766410673e-05,0.00876089247366082,0.008752691107612757,0.02377409190828242,0.0011468435915741565,0.00011859337277320828,0.0003591781522254468,0.004063017544742675,0.027674256653012718,-0.014086685902087507,3.391291407157906e-05,0.014671240792315141,0.004425759691897624,0.010494421708762556,0.00742254354046856,9.34989426171754e-05,0.006783003022444518,-0.0004808718934718225,0.00201803523676406,-0.08928262522157021,0.00010895552160643497,0.0009396380944051597,0.05640545161710818,0.057701356998099744,-0.1575884225825108,0.000558741095989626,0.014147012746259773,0.0038453805360539953,0.013567653477631093,-0.11497637821022356,0.00011929454629101754,0.00040044317555680163,-0.053995609059986814,0.1947868813154021,-0.03872411049502826,0.0017791719161923628,0.023996572714049175,0.0012106046446463035,0.010739555206530487,-0.009096517837423075,2.8986663990544205e-05,0.007881989149097084,-0.060151688728024726,0.16437274551029563,0.08839337894254479,0.0011964354842848083,0.017472863717913515,-0.016599682722018394,0.1345551425764999,0.016126220605168697,8.215332203773567e-05,0.0033003547041790867,0.015021173207976711,0.024385807996892318,-0.014463184380751112,0.0001453824857685799,0.008059633404129764,-0.024855501062268175,0.03306831557763628,-0.022964390085915744,0.00043143399527317144,0.0020762824160078736,0.013474790073099896,0.06346021492769692,0.00566471952293556,0.0016457763245652556,0.007119434607864827,-0.006817022734116399,0.02725552852705821,-0.012562307269273168,8.024731396842741e-05,0.009396796699397544,0.008981757319843752,0.01678678965764996,-0.01501055615223484,0.0013300588575904618,0.0039430814860804304,0.045866931605963404,0.1368009056533502,0.057772215156846975,0.0001328393530266819,0.001212125729530291,-0.04189556287459298,0.10714933237027972,0.02805157570849237,0.00015850352912475846,0.005513798005825676,-0.002541270679395052,0.00891250243692786,-0.04593529415242431,6.959294083007369e-05,0.012608451670607668,0.03996914198047901,0.13454989802394246,0.04198070330778579,0.0028155257935408005,0.002442055232957638,0.0056407886245485725,0.025353530123004273,0.0030492606165648172,0.00011067307053734993,0.0030997759639115833,0.033579782183748866,0.20126216437534858,0.018296166606731095,0.00012099753431364633,0.0011884991357417251,0.036534664575358755,0.23359798844636862,0.08452462807354365,7.397495753119688e-05,0.033816099988230375,0.03769134701554628,0.15357193877443717,0.024932477538388936,6.168466157765562e-05,0.023403137729991134,-0.0031723139495294073,0.005511113759188907,-0.015966565920532125,0.00028065073198731556,0.005245797980219423,0.022452419206489604,0.09208617923367333,0.036017612236301524,6.0629371217549035e-05,0.007742095076395364,-0.0019065069322618806,0.019013127511122545,-0.02035622122872604,2.5871172602831608e-05,0.021911904153356906,0.011441585674048686,0.037891005146913674,-0.05422288427032822,0.00010555019873761403,0.0014020443564831339,0.01757862462588531,0.0636231691599157,-0.002650884055935823,0.00043550943196133724,0.009382793213486106,-0.01791371446491646,0.09768773337040021,-0.005382140750470353,0.0001050309782849782,0.033558945988703376,0.003461343017945948 +2017-02-15,0.014561411986660394,0.11167843016165421,-0.03163511896703359,0.00013788619043407515,0.025054328345770184,-0.011580282824741484,0.04411538543985221,-0.05607208793339018,6.298535983343553e-05,0.0032664774080859837,0.015297605477579596,0.05159070367463945,-0.027752344849942125,0.00013716686391610611,0.013783561530252342,0.03118497971098324,0.03827082868136104,0.09342019326592856,0.00027500808126446026,0.017996655154341294,0.011901325773530019,0.02709627634372547,-0.0023128072066086,0.00022981771521653858,0.0028531424719225387,-0.013694681052844602,0.0349998830912613,0.03256174009348759,8.543426119809307e-05,0.006629117010853814,-0.02354044906873056,0.0884542595283377,-0.1783277457666146,7.808827825921161e-05,0.002306474479481264,-0.040643413679292625,0.30241463300826865,0.04846454982987333,4.608780136654515e-05,0.011490299441278957,0.0044032204842550165,0.003767235716698075,-0.007964272949332777,0.0009013478440867065,0.009392152507548594,-0.03675331491647782,0.08881853876782331,-0.05989741967355877,0.000144695417838354,0.0056483254546930515,0.005333303163965014,0.004399575119709861,0.003602282149560405,0.0005925293838378654,0.009806363043333087,-0.0007029861038328757,0.009379761709207,-0.022071921883830663,2.2334576621554263e-05,0.0024915086313644216,0.0024433846150433212,0.006802284165949336,-0.004322431210612416,0.00010670581867663506,0.015798295800883797,-0.01047453447186065,0.061813189938049615,-0.048875180452445106,4.769967195569791e-05,0.007883567760594042,0.07460256848053286,0.05865807003527048,0.21316408966094627,0.0024805556966025163,0.016698455464562778,0.07642353886113551,0.535065214099212,0.04334961549940702,0.00011753644059165902,0.015868473057923025,0.04678878400382883,0.26808331371556204,0.02539563047940934,0.0002702590260178555,0.017166844153051208,0.01595736759977727,0.09309363387676817,-0.14746524943820905,4.828388674303617e-05,0.006996190145784057,-0.0016522728263972373,0.008040980909993244,0.003069353703759488,0.0003386565944829238,0.007220960785978354,-0.01245246933413775,0.18747331697138803,-0.0023195131899366884,2.756425434975366e-05,0.017493912298754247,0.019151670199242517,0.19849285980059186,-0.02958917321982602,3.223617275717969e-05,0.008652973478446442,-0.05287495827957242,0.1591613901440007,-0.10515366206711688,0.00010701263792883681,0.025131677676395126,-0.060130508828059474,0.4576592511232848,0.033360836368342785,3.0349043586695837e-05,0.0066682001623995495,-0.004192263004116169,0.013503798799203558,-0.029888708168519452,6.882875981512998e-05,0.004795258520801537,-0.009054150114346581,0.03772273269578165,0.017663577249155484,0.00010974712197550641,0.0044111421824458074,0.05473463360243261,0.049236230734105504,0.026020834578704164,0.0006354084388348289,0.013363679071044951,-0.004722062564648303,0.01713230201545837,-0.04809667540556195,0.00011601176235628494,0.0005950427707562703,0.008791972222569954,0.030167486921253782,0.01118770025507479,0.0018705371969628783,0.011695950733429111,0.04365066542362873,0.3811777013830245,0.02642103242920678,2.9447306527366015e-05,0.006958086933032376,-0.02811428607752635,0.09193342049298135,0.01809083556769274,0.0009998271152187497,0.005518622990991005,0.002153525872244348,0.016183806329466713,-0.0448199938205593,8.861251529473245e-05,0.0014480755581311245,-0.022046764091857383,0.03330537188028831,0.004781863559789782,0.0001562341446386248,0.01136569204957577,-0.0296659376856967,0.04041957144183558,0.01960737794099565,0.0004212794642454114,0.0049585606533807235,-0.015141081617191372,0.06332829928846963,0.0027912537480388536,0.0018531450618124328,0.009070227463217798,0.0036127196387184188,0.01428736599617956,-0.00041713335869359564,8.112831579652696e-05,0.015432555913459758,-0.07948617961444887,0.11925046479014376,0.11797246270133,0.0016569474505231379,0.00644378532347561,0.019289857021986136,0.06481901558055501,-0.0521291084119959,0.00011790782117957843,0.016380324069906804,0.029117722048246104,0.07176934789367319,-0.012736366647787423,0.00016446700049142175,0.004742862474047915,0.0333775772554839,0.14929999802211416,0.038306726932701554,5.45643433200485e-05,0.0035358024270583754,-0.03632940269985127,0.1148176956712528,-0.05336062000520813,0.002998938011860111,0.0127678024064158,-0.019013720010090333,0.09804966591971019,-0.0836774631184127,9.646317379020116e-05,0.00019264081689433928,0.003163062236633352,0.018167577424171726,-0.05703566243733149,0.0001262616620610323,0.007050618862490161,0.01807676293481795,0.09937449747024171,0.012502365215660277,8.603881411674359e-05,0.023965060479724274,0.04409589248206674,0.19846944199150707,0.04119205947189412,5.584083235736187e-05,0.01770374526930232,-0.02492250409782583,0.049328968647202605,0.014829988279333793,0.00024633098001620806,0.03740916714811909,0.01745795304809159,0.06608960700698155,-0.021294970548033275,6.568625888503707e-05,0.007662073295754649,0.0013806369401737496,0.014103095465546915,-0.016329273548312432,2.5257847042401764e-05,0.003462598721757372,-0.005465571119449755,0.01936245922357979,-0.006157793446214189,9.866974327025986e-05,0.002000119394378842,0.009850377888288143,0.036906722247440536,-0.09633494995509323,0.00042070278408997514,0.0009775147118427625,-0.03507668391801892,0.21331601660582053,-0.16271718609515792,9.41817725975017e-05,0.014277602640641995,0.0003909311525153884 +2017-02-16,0.02644558600171451,0.15800480776609274,0.037903565186797494,0.00017699845560487353,0.014180887154799348,0.002200671561846792,0.006934896557760096,-0.015854109358951606,7.614226129366146e-05,0.012856905485188131,0.014961148824298226,0.045970556273257586,-0.04048516047869758,0.00015055056458997793,0.0050567477062786635,0.019112134178373687,0.020725845165637597,0.003138352506930515,0.00031121806106623593,0.008683423118668387,0.013385418450530151,0.030803351905963554,-0.02114288630295158,0.00022736925953107217,0.003995076002904167,-0.008986783569030864,0.022961108092003708,-0.08232826321198412,8.545907334517123e-05,0.0038903822592193426,0.04837375558454653,0.16332979251451898,0.0571133574550275,8.690289628457321e-05,0.015224619492393527,0.02626103269987563,0.24915842615013198,0.018617526598723715,3.614388535510638e-05,0.005673411710088572,-0.01133312852859464,0.008589327554558558,0.00707970190660994,0.0010175023849147344,0.015745360519996792,-0.010208428586007496,0.02340978365466991,0.0008301192826363048,0.00015248368586122786,0.0035496610451808065,0.006843098627375855,0.004442507078963559,0.001282519708919639,0.000752920339041348,0.014536583105448178,0.010726160715445193,0.14588792272343942,0.04017400500689539,2.1910270982532415e-05,0.0034654120232997495,-0.04090239258629425,0.10946680841024681,0.0128481183754101,0.00011099854720584034,0.021205057536043334,0.029683005019226133,0.19220887549518642,0.14955108145283078,4.347066119651562e-05,0.001001965225780454,0.00896518144125346,0.008066150245590093,-0.010086206518301893,0.0021677827135436374,0.014688207554849864,-0.029089536655459537,0.18812272916848174,0.011607724876096112,0.0001272470260241198,0.03531136015579416,-0.052889826742799115,0.3895469024271116,0.06834742248717013,0.00021024255269502196,0.001881529609156437,-0.0291225705416611,0.1648332954328956,0.0036205939265229405,4.976748801531133e-05,0.010458023666143734,-0.01809385394441344,0.08290337452308008,0.020955274128933343,0.0003597043411580877,0.0065409310276814715,-0.017075072715606182,0.2158330312365957,-0.03019998045720598,3.283030239286921e-05,0.009714865385326165,-0.0052811815336122085,0.05001350124685736,-0.005408756905917542,3.527975384278179e-05,0.006015585351255398,-0.0020976480622722474,0.005859949488381319,-0.11725883819088509,0.0001153085493588876,0.008821602292864729,0.03927853229252222,0.29455262204521127,-0.0012818805234513133,3.0802412623076895e-05,0.018823777789199345,-0.02544808767833931,0.06315597077984683,0.03585301515989751,8.933427548972573e-05,0.00026817874816043616,0.014212351481877106,0.05278289397654157,0.028106201272794926,0.00012311793905693335,0.001371539450590576,0.04189801958321153,0.03443062085075127,0.01651714826839205,0.0006955433501861505,0.011974565515021345,0.00497171671237279,0.019001828791573094,0.01238242690452626,0.0001101278049402287,0.0004929301174479069,0.06916018035177379,0.25811631161561965,0.08252387615909752,0.001719728312423454,0.026266762477017612,-0.0489999767432516,0.4449970452708475,-0.010939735459508064,2.831528530000753e-05,0.012626367154653552,-0.028801093110480527,0.08615511689189721,-0.018726374409652684,0.0010929471576237616,0.025889767123048336,0.01306132653627473,0.08932870010911963,0.0020109933769805067,9.736927044932886e-05,0.009598117110594608,0.01434013489190329,0.023111824090222603,0.001375015214178376,0.00014644157783412463,0.025085147769655366,0.05028922790952514,0.06143830265215284,0.0703736961425933,0.0004698288408097006,0.024013831316457474,-0.0016558600377118528,0.006233578736718404,-0.0018289028500868808,0.002058905988452145,0.007115154794227382,-0.00810301972337782,0.029765675399572412,-0.020678977146920182,8.73416767438875e-05,0.0068695989717272865,-0.063156068806682,0.08329664404968781,0.06148680811852822,0.001884797845262681,0.005421039473001987,-0.015404724129237523,0.05052948406046907,0.0012786297317093763,0.0001207883636949709,0.005495815473814144,0.03446389400886342,0.08787690325732891,-0.02330256434322526,0.00015898274011209165,0.022410224826877,-0.013358857134529752,0.06783392786756434,0.00048743307359531686,4.8065809969051175e-05,0.00605060823333535,0.013077159614459882,0.04257511022815232,-0.033852671701181995,0.0029112245269409245,0.01749909216302467,0.004002962130867777,0.020070388865258783,-0.0398815784972255,9.921247073942208e-05,0.003285407709171346,0.02933393935492448,0.15111673926492797,0.016539589398311995,0.00014077275179831558,0.012790752723092104,-0.02228586758907299,0.15269011061363477,0.00046756611401411465,6.903468298417229e-05,0.009621939903143134,0.04047657978132015,0.21399128602531745,0.030497871123874674,4.753955522788938e-05,0.005374738771254775,-0.026942617007047122,0.060393195913390166,-0.06929134209188498,0.00021751096705402317,0.0027379704410850337,0.006160385139269443,0.021564063031972128,-0.022191724933762414,7.103815080897268e-05,0.003835868153058049,0.02632158875997247,0.3214153869126366,0.01865126326034777,2.112889191128221e-05,0.010765375934329531,-0.0007692773494937945,0.002344815649034055,-0.04512448980966801,0.00011467881746704397,0.0054116626130296126,-0.0012526083577945049,0.004199097391909593,0.0007507677661156229,0.00047020509257760467,0.0035100672044884188,0.016766129779094974,0.08868730971607916,0.012107594051272118,0.00010827872631351269,0.01783912669623831,0.002622115733343757 +2017-02-17,-0.0023483319255009597,0.014586302131075353,-0.038008358697139026,0.00017025538664163943,0.008109235683737502,0.041115413726678325,0.14125350327116162,0.1381445881527599,6.984188682708919e-05,0.011981105090351586,0.047829855949574694,0.1830663388836659,0.029404170788551936,0.00012086144468395288,0.009543904840536946,0.016067942467912183,0.01661652198019866,0.006619359238749523,0.0003263532920746947,0.009095783741171974,-0.004258284964659012,0.010276958815083843,0.0023271972268593295,0.00021680429287952884,0.012039712749899517,-0.011278192053197229,0.02670516292079289,-0.020387780149491504,9.221275422501268e-05,0.0035492371720533293,-0.00018460697050809872,0.0007438031933192297,-0.004018604755372815,7.282490252723225e-05,0.007892724474692922,-0.01984852171052004,0.1481833171175265,0.010179603160354546,4.5933281082417143e-05,0.011925381205870013,0.0028026805045906107,0.0024929872092713883,6.784062995900482e-06,0.0008669585398929569,0.0007960327810103748,0.05953520089237357,0.13981529149201646,0.12019739767688672,0.00014889531653821582,0.0009971540312426167,0.013601074088418144,0.009234348605101295,0.009727878124509513,0.0007199317036840796,0.0016974961008468215,0.009868388244052076,0.15126854109871543,-0.002081240058959598,1.944108048777852e-05,0.0036861919384471517,0.0012238316050690837,0.0036334838327551095,-0.02405513226479587,0.00010005745915018376,0.006913573058269547,-0.018086155588727074,0.09455509713902738,0.03585221735999606,5.38422420143438e-05,0.01123843082816939,-0.038338321116865526,0.029814488639639286,0.008431992330485085,0.0025080067340253107,0.015782698719196464,-0.032175615065712294,0.19826890115552076,-0.10506556908009691,0.00013354399548844772,0.004809207953817659,0.007990304734345359,0.049632778342227075,-0.0465064201555804,0.00024928892676229946,0.003695230573363922,0.03862304176342237,0.2573100429474,0.003695213055231884,4.228152981686261e-05,0.013404030208338536,0.01982912226317036,0.10397241712636146,-0.049536496753429506,0.0003143201025916205,0.030277553811713546,-0.03987543299783225,0.5313620857781901,0.020873642065614026,3.1141898167365425e-05,0.00801543272794196,0.010909663193803662,0.13425764144560529,-0.013982304647928788,2.7149012576928702e-05,0.007726597952537207,0.02582778397412121,0.06984811732144043,0.048490403398658566,0.00011911191209562166,3.549139682328161e-05,-0.02962032828548471,0.23216991120202612,-0.06868371604896091,2.946974027862707e-05,0.00711366547738396,-0.005754707024991843,0.014772143123943673,-0.025608841014294663,8.636884142693567e-05,0.010512451907417616,0.01969197117978386,0.07221790857769458,0.027799718566000567,0.00012467887644552849,0.008767525441517836,-0.00582553536268808,0.0051845185756084254,0.003016124492104557,0.0006422483089435158,0.03135743567849891,0.030012650260922914,0.11616694823406025,0.08416755667130968,0.0001087446190267222,0.012604811890142358,0.022928956954734184,0.07593100971106237,-0.004121042583433796,0.0019381362239360932,0.015353735711760236,-0.007294959633775254,0.07331576610271077,-0.038250607419988494,2.5586313176602648e-05,0.00829823044008945,0.006895516610313998,0.020056028738911248,-0.029383581643633777,0.001124069426101845,0.008192532878578528,-0.012455312388035496,0.10399222851280444,-0.012484256933374295,7.975894166151967e-05,0.011017835404263685,0.00480989225274358,0.008071598650664966,-0.012756335665109194,0.00014064398882517094,0.0270300615049066,-0.00039779766586137003,0.0006377193851328049,-0.0019089336398934171,0.0003580441032862262,0.006292735519149733,0.05466181978640015,0.2268022550401112,0.0663811702244312,0.001868043816922045,0.006404258624624161,-0.012705496113722122,0.044248483975497306,0.00801754748221674,9.212629430940762e-05,0.005940228161381558,-0.003144218346732244,0.004052673238099744,-0.02328230102148668,0.0019286272591602504,0.013952911870189388,0.023060730554322156,0.08154344844361908,0.011539640589546634,0.00011204694614749576,0.00947306698252145,0.01931462862628313,0.04986594772659018,-0.07547617199459936,0.0001570155485509082,0.02282979880064918,-0.038679205011136544,0.17052410467439294,0.004255076143252683,5.536122435904033e-05,0.016577255493407054,0.004346018684590805,0.015105259396889892,-0.02074275007654257,0.0027269769021756383,0.018887321155428877,0.0020818074121102766,0.011498004351308135,0.002777524448540785,9.006553902168543e-05,0.011236680602266621,0.036204313837548706,0.19784158220019601,0.02280265798359657,0.00013270996320752774,0.0033967918137923184,-0.04717273198673828,0.2668806024649232,-0.06641913272699515,8.360316486541631e-05,0.009244503618312463,-0.04986795978737281,0.24996564750861724,0.046990778728642185,5.014050079594216e-05,0.006788729314672395,-0.059611253877127034,0.12340763263973789,0.09479230637605796,0.00023551340413847092,0.015110271913107117,-0.0043707415734780064,0.017213362177744666,-0.0011386436477643965,6.313988669463801e-05,0.0027620978889515875,-0.0054036382090124685,0.0510592998936855,0.0008367737335788571,2.730503224587479e-05,0.0052789511477962315,-0.011790696735812971,0.032397859181232516,-0.01210254811985103,0.00012721318331971956,0.0024454357910596997,-0.011958447850092582,0.040662234125566674,0.004635563829611431,0.00046356597104964584,0.011216519249673162,-0.009073209907308593,0.04154290653525002,-0.005481880154842001,0.00012509382604443872,0.025509745555116068,0.0007012414686345885 +2017-02-20,-0.01917194655840581,0.12815584355972642,0.03758907225125156,0.00015820287806413684,0.0009564244899100158,0.02343974030774874,0.07854773325074087,0.016053676645022552,7.160274397710544e-05,0.012254018296397199,0.059418686906427806,0.1927669133496313,0.04615390560755731,0.00014258957062834933,0.01269257525438416,0.046714461933697576,0.05413598493510104,0.13368474738791683,0.00029122802473884746,0.00839353381119652,0.028410388664683123,0.058462229167026536,0.02118155749582674,0.0002542726073425711,0.0011747796227822751,-0.007642240793741634,0.019583452082517203,-0.006492545545440233,8.520757540563652e-05,0.0021392372574734085,0.050129849437519754,0.20622507190066602,0.050061593404237686,7.132549457177372e-05,0.0019187420557419477,-0.009993729216205803,0.0799693025872085,-0.006152007809786584,4.2855136608892264e-05,0.012546846193640077,-0.02105532141190786,0.0182959666322655,0.022526763668540936,0.0008874651392915567,0.014568522159736821,0.03917102826798838,0.08110871829987208,0.05739404510854112,0.0001688726505820449,0.004578091051571987,0.02431478522022221,0.014788734448391065,0.02044005726172181,0.0008036441455065212,0.010631401758697567,-0.0010356055860653733,0.013983835814223184,-0.004451287910147034,2.20694168400168e-05,0.002953222084033749,-0.008374797432462066,0.02302010776111996,-0.0011121797469915147,0.00010807319648043516,0.0026929539541812133,-0.030299804097925542,0.18200572267741005,0.08379416172142197,4.686154419749618e-05,0.010164053117669556,0.01649410381074347,0.01229591709678799,0.007361654994252564,0.002616319450113714,0.02165852873034498,0.002494371501072578,0.0179580994925257,0.0005796889208449188,0.00011430174755757619,0.04496807246505216,0.05565530016065368,0.3141585868910154,0.03142492928504367,0.00027432527704908334,0.02193374820379398,-0.0022470594695255396,0.013714113789082695,0.0023833792458877938,4.6153832946125786e-05,0.011395806639521984,0.0004515418965395375,0.002426335918454629,-0.01877061907557714,0.00030671423514824254,0.0016816988404627121,0.05573143244002911,0.7376354871548605,0.06160255618766534,3.135368817351516e-05,0.00044020280321476575,0.015063875910360494,0.16250500901263032,0.009764194980916909,3.0970747428048005e-05,0.007266795061306121,-0.03587289440644627,0.11339446563009399,0.0007902610714311581,0.00010190542773697742,0.012522538747036424,-0.0018150172651677167,0.011846719581384736,-0.013410952520261931,3.53895490005261e-05,0.0010680887991228087,0.010131964111083934,0.029437495312667674,-0.011746976710641005,7.63080173487711e-05,0.00280960863615603,0.01729312508848802,0.06721872514180834,0.02931477751316768,0.00011763371346771975,0.002049306036575024,-0.014802484652740111,0.017758243288293837,-0.024607012183351266,0.0004764421538889784,0.0018091773852413895,0.025422985644042148,0.093180337727838,0.022656704873390703,0.00011483870358516566,0.004461108197678541,-0.06022953524938996,0.22229150891786267,0.028385772361609198,0.0017390249497763383,0.023280311374725755,-0.01678463053538667,0.14970878505446308,-0.032261496497377924,2.883013628289892e-05,0.012509661917659787,0.05582396572544133,0.1494328474052159,0.04417035978738082,0.00122136616101258,0.00023192549686256082,-0.002921851197878789,0.02112228273445502,-0.006584505066528576,9.211765765921907e-05,0.010058150146701228,0.010114213416062192,0.014184243056322479,-0.012978634974063326,0.00016829504711403072,0.01519013479572302,-0.03016257664643239,0.0455814612906836,-0.007255188253699673,0.0003798254912891817,0.030414975951792985,-0.015583455615602433,0.06424768037242146,-0.048116843019246416,0.0018799948398247079,0.03477544536302554,0.022176869618672358,0.08219848311142851,-0.12464533490468126,8.656190597756135e-05,0.012004434535258617,0.00015847620826328195,0.0002306064961634378,-0.009128104304806126,0.0017083219702713334,0.008625542912625694,0.013238724924676322,0.04375236455639255,-0.00096367946388908,0.00011988384566853375,0.02073907662921966,-0.018980825776276928,0.04327752555925834,-0.09772150388878625,0.00017779234470312078,0.02001653303147064,-0.022886283144255497,0.0926291801718111,-0.0019803974818725497,6.030334061981858e-05,0.004501983798809291,-0.0028980117733906257,0.008418307611826274,-0.011632722169351996,0.003262822227915341,0.02998090527759156,0.054650673734443746,0.27812698600872876,0.1403526169208279,9.774464227676009e-05,0.0206924454408028,-0.028547726475698563,0.17755519323328503,0.08816432937581019,0.0001166001024696682,0.003094717928105473,0.006275059718076299,0.037185690929092324,-0.02692011137597352,7.981613736854077e-05,0.008865851790193705,-0.029245841818156225,0.1401268718682571,0.02454881749556174,5.245538688061717e-05,0.023389838919158447,-0.03505492300401496,0.0713015600512202,0.019179033520995193,0.00023970626196311717,0.0011499263446468379,0.02754284778681854,0.10705473845776527,-0.12252536880894285,6.397603536897371e-05,1.9030488945035676e-05,0.004709184367664529,0.05068768043423553,-0.021821899064980922,2.3970360280063117e-05,0.008552394878030509,0.0002179328275282147,0.0008037206904372711,-1.8285419419433722e-05,9.478213114763641e-05,0.004058436285164121,0.019170028000209036,0.07892081242395116,0.01776469113791453,0.00038287690516313155,0.003056711150742841,0.029994463544228835,0.1505952086417171,0.030149969919835307,0.00011407795844863762,0.011186634728210298,0.006101365672404409 +2017-02-21,-0.018808807919409462,0.1274073567871474,-0.010735402254468921,0.0001561181331554716,0.015891238077054906,-0.028413940025167776,0.09053768843146587,-0.027859200063802294,7.530305297292975e-05,0.0008832533846202795,-0.007470523039305082,0.023027109674516936,0.0036676767674516724,0.00015007514945150404,0.0017814928123331352,0.0019509545558281842,0.0019176346887530625,-0.03506093111687551,0.0003433595510748269,0.006147950735632052,-0.0007651688840220406,0.001666801774541944,-0.000801431436673507,0.00024019895799455834,0.01290966490120729,0.013417392361002822,0.040163305449327114,0.01063582900428312,7.294330074137273e-05,0.0010059615042848056,0.043166859617164224,0.1472324059882971,0.02640681258134264,8.602742051379612e-05,0.010852365970068679,0.02914586419643088,0.2578051750917537,0.02024572821225791,3.876893942768249e-05,0.007459897940830154,-0.028275257704029656,0.02316555580143626,-0.004666246100918837,0.000941257899303676,0.003891201151076929,0.023604609631373875,0.04615242832047899,0.010790439429911546,0.0001788397905099957,0.02359023456114886,-0.01741445231675936,0.011702586561685227,-0.010041645763262918,0.0007273648611219618,0.01599816015127472,-0.023742637056085328,0.36661429179464133,0.034533070134182865,1.9299335321972374e-05,0.0055049284938952624,0.039621401466372295,0.11314625187441932,0.03086918738714252,0.00010402571249072117,0.0038657726981809236,0.022175562860478188,0.13465459212197511,0.058004630474895395,4.6356997730726645e-05,0.010962738683078448,0.007239715685567641,0.006615997718019838,0.0021184284695732708,0.0021342689047276547,0.01578813089120137,0.010101876704742387,0.06802159719570079,-0.009321158630738397,0.00012221016939537147,0.012348592677379127,0.004929246774030284,0.022870802456876928,-0.0368861529267745,0.0003337393302387868,0.022420549941742553,-0.01323650459120242,0.07785726383596943,0.000331874667635039,4.7888929996942086e-05,0.006564614087884351,0.026378475435919636,0.1323717954619302,-0.05799214880483221,0.00032842865323534995,0.000755384440467279,0.004321895525512844,0.053590321304900664,-0.0048566344405698925,3.3467104109135866e-05,0.008695764432398133,0.012656937980745445,0.1201197026972962,0.00472656209851325,3.520433236324236e-05,0.014057384801015508,-0.0010402550150317117,0.0030491086541633216,0.002834251153969944,0.00010989797076970306,0.001777942009947916,0.05120333188830254,0.40912808250657656,0.052470196619865704,2.8908882758832454e-05,0.004015292681540812,0.017719561281763684,0.05756590308726568,0.04661366834645884,6.824408654932975e-05,0.0037913231053189663,-0.012926694381874427,0.044022391316425984,-0.08636061553869885,0.0001342648858140497,0.0026620794474389127,-0.04113239560452474,0.03937981294203342,0.03791524718676571,0.000597015926162272,0.011047472742507372,-0.0015042505908810806,0.005004021283838972,0.00029689338769253563,0.0001265281189558184,0.009888968215778513,-0.0319603149512821,0.09328839241928268,-0.01943416415421185,0.0021988855022011563,0.004765680855055099,-0.012670784449262437,0.09479903153605726,-0.04778065722094558,3.437017928776653e-05,0.0012112372601360993,-0.02552435927665053,0.08887438465474708,0.008816079049056942,0.0009389652331210787,0.03153540357342251,0.029640096615342445,0.20803832861813198,0.01833841927403945,9.487720935223004e-05,0.005526426553243995,0.03737638185534454,0.05473914641262095,0.01908099843487871,0.0001611553113362515,0.020945928227869694,-0.008447992749521916,0.013539829310183826,0.0008779873793586225,0.00035813293080876865,0.0019845772827304735,0.0032533055223822535,0.011197397321917858,-0.0009195114855406869,0.002251946677051438,0.020306003904866664,-0.001242569400992235,0.004604834057650763,-0.01651609605105769,8.657590513652474e-05,0.0014935014984232486,0.010312190280920907,0.017819982414862455,-0.004974193441919449,0.0014385363442785174,0.010709577345350762,0.0434058947616779,0.1668732494389816,0.05344321805965128,0.00010305712596953184,0.008719568332927542,0.019471830568640883,0.06004248687310207,-0.00742377009267223,0.00013146449765446384,0.011301931284373084,-0.009284863944787789,0.033687875174949006,-0.011458249804768462,6.726913605693192e-05,0.004124377793734339,0.00327891651091941,0.013330908283864223,-0.028700762530121042,0.002331249070956151,0.006973296585951265,0.018900439927116822,0.09645107301132505,-0.1487616680825891,9.747773293814548e-05,0.015788285893031346,-0.02321128386883634,0.13570961406877932,0.0296577228869122,0.00012403645111850743,0.005238061486835198,0.025704446571574644,0.1626483030816897,0.05735178790643984,7.474934988769443e-05,0.0033540184138766455,-0.030102132341279342,0.1240462509117793,0.0163846590862919,6.099033413719604e-05,0.012419534971224538,0.023143089331098942,0.05018317888748724,0.0062952996184254826,0.000224849826739504,0.020458601440014688,-0.003627890212596948,0.014492772988075128,-0.03273234966073784,6.224679888991895e-05,0.005211347816719945,-0.011649770122148248,0.12140828169845252,0.00947242909643909,2.475713179780106e-05,0.002967315604416641,-0.02000839090306285,0.056893203254785994,0.09970658975698779,0.00012293080954696442,0.004839487297449129,0.02465115987550922,0.12453551202428502,-0.0018642216008796933,0.00031201258999738165,0.013357293954947183,-0.001481284372769554,0.006974737273987468,-0.10635812817754489,0.00012164167283243982,0.0017867209947888306,0.0031081768696296316 +2017-02-22,0.015363277431206624,0.10795028638651798,-0.01221707851984882,0.00015050352028911536,0.01013695329041176,0.019587529995804247,0.07945112684862043,0.033779762277608205,5.915482037840595e-05,0.003305800535016266,0.01925146124322933,0.07712524453098803,-0.10953148464647103,0.00011546871953701516,0.010514924533187545,-0.00484780538917863,0.004656583811482052,-0.01311709995857263,0.0003513545722254724,0.014319682124627437,0.0067048504628318024,0.01475362309581087,-0.011799046643415589,0.0002377870418023104,0.009614588212168634,0.010166931182655546,0.02548110821841019,0.03503512186961551,8.712008920804635e-05,0.003407961632862966,0.008115381423132636,0.030810397628983095,-0.041058578584431,7.72861170721652e-05,0.0017507174758934355,0.02499558374712025,0.23763912096439352,-0.022018537017374856,3.606981883084442e-05,0.0025130975167496385,0.05267246089115128,0.040156146731446456,0.25136139541005564,0.0010115244004760408,0.009639212472467233,0.008060939342975835,0.019833791658434657,-0.00996595432183357,0.0001421156129859412,0.0026943146474071402,0.03259678226235983,0.025324181287846696,-0.10057847104386981,0.0006291637263006815,0.005397936467629427,0.002956691395427576,0.04438027829901286,-0.003541588342245801,1.985357704578733e-05,0.0031937158072246835,-0.022662918076766087,0.06705874909561443,-0.029145743660382403,0.00010039484622175071,0.026737216127849354,0.009163653403132032,0.05908003294107011,-0.0018026690720289802,4.366060446383642e-05,0.0036537069865258355,0.011900183940439587,0.010970229028775869,-0.01002030429728781,0.002115733449786207,0.01882752683204458,0.02666875256341004,0.17760619836343505,-0.0003963985793766843,0.0001235653465027488,0.01119702627645336,0.02987614759059552,0.1712006884141904,-0.00038867017604211386,0.00027022611746862075,0.00710665037787769,0.017449762339673314,0.0829636211401613,-0.18529809074616743,5.9246510011483175e-05,0.006796541300765984,0.003258717621344376,0.014963771917729888,0.0011954281387685365,0.0003589157004380204,0.005911565404414363,0.03910001980165391,0.5843500509357783,0.013718198255159266,2.7767330045203214e-05,0.004258142762101538,-0.01633763427591349,0.18016910141333134,0.016878665559887006,3.0296367941450944e-05,0.010335134473558659,0.003386607096065147,0.008781631341962654,0.007322021314545112,0.00012422596201214242,0.020529111559438696,-0.06369506027401961,0.5498060268038852,0.013158677160730114,2.6760155508416336e-05,0.001488483700902429,-0.005667377938174848,0.015666241922860903,4.492054344629315e-05,8.020376000422274e-05,0.004617951300858211,0.019359086306183777,0.06687241064775445,0.03539356521677678,0.00013236905624387728,0.005874435184541785,0.020153267303520708,0.01705391458802863,0.005895565786081406,0.000675455812144748,0.017255215087409882,0.044372572629480855,0.1735426790560635,0.12137306228283495,0.0001076203302577457,0.00832933061096598,-0.044788544582292145,0.13902897011691556,0.011246476706644047,0.0020676680603487585,0.015992035057983436,0.01380364338311635,0.11981118418259232,0.01248397529787101,2.9626378393206167e-05,0.009007457232534953,-0.011675448262698777,0.03349549612135164,-0.0649582593987893,0.001139615686894564,0.00023096868231445766,-0.009141059131098282,0.06032645726781343,0.0008103595499769841,0.00010090538408752625,0.0001679077660085358,-0.026470577621525056,0.047766160981987126,0.006808307403151693,0.0001307941941925584,0.004495118581264679,0.051850756513612796,0.07227362253009818,0.045410299446930834,0.00041179321620819575,0.023710540395598036,0.04802654857498815,0.17273865381294434,0.04451641853209841,0.002154974758827674,0.0009165051572780892,0.010283854519666822,0.04374472796448139,0.0029404111185420178,7.54259127781897e-05,0.005829841025372633,-0.051086858163125276,0.07613553384302507,-0.006791958360391406,0.0016680113020692661,0.008932824501189778,-0.025515799084867233,0.07182176838051203,0.0230128044413673,0.000140756712930457,0.01617245053563216,-0.0011052248945100712,0.003420461619572035,-0.010344736461600394,0.00013098643220224538,0.0027594996945265616,0.008066595154774129,0.037595855009055885,-0.10716878132935893,5.2367786835469896e-05,0.005565514796082766,0.02794400939547452,0.10834040459568649,0.026364987696289102,0.002444647936496172,0.012424650025671091,-0.02596875525292219,0.14127285633459663,0.017196614958254794,9.143931794553286e-05,0.007067671666495893,-0.008028731734940682,0.03811830936030838,0.003325685560172065,0.00015274749652265278,0.004870656569566862,0.01992516637716845,0.10804443948233791,-0.02763991048012384,8.72264573915502e-05,0.013848680372259935,-0.03401358381025259,0.13540243521404444,0.01323363670167629,6.313545476972872e-05,0.013188491878680316,0.0026216401854368427,0.004806337095489127,5.6010082380715735e-05,0.00026594280950323243,0.024619593625690727,0.022960252046276365,0.10697084965444761,0.03318277637023548,5.337348757293297e-05,0.008086978966325663,-0.03072388873465278,0.3064755615923596,0.013558761826200319,2.5864948594293256e-05,0.002916235395949208,0.016437192846855415,0.04794621995457486,0.015706954206388714,0.00011983460305161291,0.0013375016231598907,-0.018863535730806763,0.07218782725840261,0.05492820379486785,0.00041189554955967805,0.005285561460959011,0.023874564060483845,0.1127522265299033,-0.006386459563340437,0.00012127802602922095,0.0037737982777808834,0.005669395274005442 +2017-02-23,0.017509903765869896,0.11258424210310311,0.014781191116298316,0.00016447228820977452,0.013439582214233114,0.01848971037925787,0.05476482097539215,0.02914239325406214,8.101006166233612e-05,0.005684887154436968,0.0018935867101402297,0.006486357857696782,-0.000850229207842706,0.00013504592876199234,0.0018334537613214296,0.0033808402015646673,0.003740622235236704,-0.03320194695086894,0.0003050342804869622,0.013518215332661298,-0.0379565085673194,0.06971913237964626,0.09173649263430773,0.00028486038399733426,0.008285602538538673,-0.005935264154209585,0.017871989887807905,-0.036463653171112526,7.251266758162533e-05,0.0017923257371456455,0.012830748562591312,0.043416011998350316,-0.015688155178388015,8.671453928563999e-05,0.0019124345506920308,-0.014502280626515502,0.12345159562218855,0.009615140304919065,4.028452169747138e-05,0.004682670630996615,0.0008597760232495925,0.0007537712131269748,-0.0011351286559170715,0.0008796108318793044,0.004550600670571429,-0.026966167864590114,0.06381204972641759,0.02439108315609212,0.00014776732964896636,0.000753123013579255,-0.004568407100743844,0.0030023423133647992,0.001771925914539499,0.0007437533744157897,0.0009315387974342785,0.006879091946103109,0.08159023221741632,-0.012116064376437643,2.5125559096858543e-05,0.0019133368859154507,0.015610739762978365,0.03856494888602927,-0.009423466412079343,0.00012024907981841179,0.015171523323529501,0.0020504796767428796,0.011269771811819524,-0.007929114031287012,5.121558819970283e-05,0.007789748745528348,-0.0025457491266059587,0.0017283516438050303,-0.009419040986056044,0.0028728071233716647,0.00995246812714677,0.021486955640786926,0.14678538180003697,-0.00792768140742065,0.00012046036872730175,0.017267430030935605,0.0005244440358269626,0.00315061590099313,0.0037280545337413946,0.00025775786283855246,0.006908385211381582,-0.0002997482247052706,0.0016549077814779186,0.0007757005823268738,5.102039041477807e-05,0.008922544468120384,-0.04930506161457969,0.2586131336469406,0.11188711486994914,0.00031421559547512116,0.006789909081464064,-0.08611816591325441,1.2203383662367755,0.10445425249814473,2.928496692929143e-05,0.01720713394765596,-0.005453442602476934,0.06103499133236953,-0.023006819067814065,2.985200930932083e-05,0.008986007686295807,0.019940961461327147,0.050322425374394276,0.02514427910612866,0.00012764602217884955,0.017330433828461046,0.05216218998401052,0.3947601227381412,0.038546279006445174,3.0522135592312094e-05,0.001986158684168902,0.015453820018006287,0.035158481776999796,0.02688331277221019,9.745028627719379e-05,0.00013742289077022267,-0.004941377426817145,0.02060381328418321,-0.007298069346936825,0.00010966019580268039,0.0014509086167798027,0.031865525439070196,0.037679975516895496,-0.013957391877739036,0.0004833770573442565,0.024360470107634348,-0.006849718515796708,0.025194124247152117,-0.001746330493270626,0.00011443515629965455,0.015680002170075917,-0.0034881615919225314,0.012066812663391463,-0.017840051248204133,0.0018553386853767037,0.04288403356591944,-0.019591828094551754,0.1883287097170858,0.00027756151691538545,2.6751037231747025e-05,0.007832772944986494,0.02961797867544563,0.08496332318675894,-0.00748943944780832,0.0011397121946881482,0.0003335479796912537,0.012041430748177765,0.08954608419860763,0.0027606535666964693,8.95482568826448e-05,0.0024282598595780865,0.025137348531171926,0.04374907540465834,0.013856943020101136,0.0001356113295721863,0.006545732415863959,0.0015173933358859219,0.002534060600308263,-0.05977468598776638,0.00034370439825539564,0.03467240202498926,0.0033809788571718584,0.011705546808867021,-0.0010403861950859959,0.0022387267578859132,0.02896116588242064,-0.016698715748424502,0.06180590384600057,-0.0090133269856475,8.66849055971529e-05,0.018372563067312934,0.05033606292379804,0.065454907574451,0.07381302106588607,0.0019116757087213516,0.019923019161157067,0.028098680606807678,0.10100773311222207,0.016194300522071017,0.00011021668379670797,0.0036990397884262465,0.041537814809557365,0.1033926443327938,0.013610249516335401,0.0001628599807141322,0.002259178090637083,0.004430975169627266,0.01832178422929376,-0.054338934186986966,5.902628862457418e-05,0.0009622392071817466,0.004951075808436152,0.018654942408356197,0.00020059754094902988,0.002515496523283089,0.02168061775014066,0.028070847770249784,0.12393267021120864,-0.09513689119024472,0.00011267051845857988,0.024043311051410155,-0.006092187463033292,0.03451049711493165,-0.03271013246698961,0.00012802147532840378,0.0036925734333884143,0.047967425083570416,0.2830446568324977,0.10830655253925535,8.015675804420821e-05,0.0014753935145692437,-0.0032690234757230966,0.017392060122092226,-0.006328473070091284,4.7240491366367836e-05,0.01631425525109806,0.026184655626335346,0.04655016578617602,-0.07039992876876296,0.00027425529967808367,0.00028763486378020724,0.011604908859997856,0.04108682051544306,0.0043976151770739645,7.023499810493315e-05,0.001985634466539295,0.03741380262976136,0.35144774810489354,0.044224145035232816,2.7466439900428016e-05,0.007648421647125288,-0.02029324231774578,0.05707571159691502,0.04595491941589993,0.0001242822396598063,0.00804776060757066,-0.00730100679832124,0.030911965968706,-0.023840801576987956,0.000372292337026063,0.007727920601079796,-0.016768841800403243,0.08055084320333153,-0.01766857592984714,0.00011923527909131877,0.0019076603133593715,0.0060981288834351475 +2017-02-24,0.012874318741531825,0.09193665927026463,0.001301599185571919,0.00014808876880675296,0.00546652045446007,-0.023185670935690083,0.08087899312872103,-0.12209758782491444,6.878511352071788e-05,0.02716863055944813,-0.019219424376730538,0.054351420163697754,0.020659532175331428,0.00016357867441578691,0.0006499811649888609,-0.01589176958449445,0.015509937700757072,-0.04562788140098794,0.0003458040397712958,0.00840537730671739,-0.012709486016252639,0.02733262319794388,0.00964693227884792,0.0002433013090645485,0.0104152954116616,0.008634027585500317,0.02436569571078269,0.022134794863803313,7.737156036777132e-05,0.001631362461436325,-0.005821385588797306,0.021386274571007658,-0.0823151538172702,7.986952164291919e-05,0.001969061718010391,-0.010806007743403078,0.09116847613758419,-0.02021331521162451,4.064612918939926e-05,0.006079034449685405,0.03618973988864592,0.028020732576942195,0.07332018026792297,0.0009959803334136717,0.02104699355079606,-0.004053660068985497,0.008832071509746433,-0.06998493708857546,0.00016048950464302034,0.00731021206218925,0.006573923194786228,0.004993852592410567,-0.033072227752947096,0.0006434477183864838,0.0020714578342889652,-0.00724688162509511,0.09710765572694371,-0.03356543075904186,2.2239267916300976e-05,0.006185720246467289,-0.047221487750461394,0.1399912279402665,0.054118863394495745,0.00010020511265470594,0.0011174698681879448,0.010229065895842453,0.052263289811230136,-0.02279817301380158,5.5093587237147157e-05,0.01229801573104912,0.021045309403922775,0.017036849329219478,-0.0019502355675540958,0.002409289594844122,0.009420620662879657,0.009491927872910052,0.07046448893370473,-0.019562690086592623,0.00011085013613395407,0.021885107023634057,-0.03686347382501006,0.19983271086514212,-0.0019993184555954432,0.0002856524218582686,0.0340816400009428,-0.0014720508866560452,0.008659884165890183,-0.012998059844859768,4.7881935382421175e-05,0.009598859617452963,0.014203032296490283,0.08254520277498859,-0.006120475529382991,0.0002835802906654789,0.00934671796823059,0.037589095458204776,0.52045722609461,-0.0036568214750911277,2.9971402327050325e-05,0.010766646200221133,0.003654497617298241,0.04066700647272232,-0.049524222162228765,3.0023905694516408e-05,0.00181658803849516,0.008743330866537065,0.023225030343988845,-0.03118008468556659,0.00012126720810636362,0.0266597616311617,0.019298185192423503,0.11709730538576717,-0.06895327930177943,3.806816513106152e-05,0.025791839729635307,-0.007764214198498202,0.020434706571691417,-0.03462908759783025,8.423769690521729e-05,0.0016431410120900706,-0.006800558010361347,0.022269093655057876,0.018909223942720835,0.00013963381490859518,0.013134255963480184,0.009937324044208162,0.009565677021353391,-0.0059306791723121215,0.0005937851062891682,0.012402800578267722,-0.024862010559151812,0.07998705245010596,-0.000514701259667616,0.0001308285603665919,0.0001862454480881081,0.01665233709526734,0.04910656146844564,-0.016523108455804073,0.0021764808151635614,0.007454853236173192,-0.00978934470776504,0.09453639244833872,0.00019203041634470366,2.6627892272285176e-05,7.38637197360073e-05,-0.005420307144393086,0.01724222929022707,0.0019678759857961834,0.001027783758296243,0.0029514109892660274,0.04181097397019554,0.31630080321444737,0.08805161339291033,8.802694561985537e-05,0.003619380319929047,-0.031779070546801715,0.05201998428089017,0.04558039039621189,0.00014418376463419744,0.005466739667423452,-0.03747120512586672,0.05582382473619022,0.029895749794945834,0.00038528489775132554,0.00758074021685253,-0.0015964354683633269,0.006838357847551387,-0.017409080674576253,0.0018094637445084326,0.017136528996813217,-0.03915637138047947,0.11161447112565308,0.0645339647368866,0.00011255694670285178,0.01789810330657241,0.0020508102251672405,0.0027023171951554297,-0.06418734886577286,0.001886541404458222,0.003531512781015088,0.024178588955897074,0.07699360648700823,0.011711672419782779,0.0001244206098212875,0.003497324475342324,-0.020048532153354278,0.053615167348007704,0.01420389303309746,0.00015158467313608218,0.013307143407631793,0.00821193832248926,0.03240569499108451,-0.008875838620359709,6.184979490848807e-05,0.00837373810700547,0.014392255414311014,0.04639816879424064,0.0037100390804234817,0.0029399915022097385,0.013666567911746069,-0.022099120390531635,0.12086647364271769,-0.0008941944415801976,9.09514667226388e-05,0.0013800764816559933,0.05982925186763153,0.26570484004037154,0.11213259628260333,0.00016329575352183162,0.017533669438749656,0.007511385050903596,0.049913134270140116,-0.0034958691795439986,7.117932777961353e-05,0.008243390800808558,0.024738522419840238,0.1221692182616194,-0.0068337005714555355,5.0893152865846794e-05,0.005180290972856051,0.043408518124505385,0.07986512118091615,0.05128952234977926,0.0002650008087217545,0.018760853977513998,-0.0003599660100275281,0.0014402202105099837,0.00032881777538958616,6.215083518179584e-05,0.008783776450416943,0.010478425238565152,0.10374271765887665,-0.09763635854136558,2.6059716331022154e-05,0.007536001666366697,-0.013960367167113722,0.034826947041676236,0.03288974886240795,0.00014011686110511343,0.004584557663796747,-0.020350806002882263,0.07551605738221577,0.05430589716940502,0.0004247860807080411,0.002670879953655074,0.025851554872659725,0.11277939077647688,-0.0733441716991715,0.00013128911509114672,0.00011397109533969906,0.0014639955791972852 +2017-02-27,-0.015126017808201829,0.10166131148326957,-0.001052890725666693,0.00015734591897565293,0.004633543293325337,0.024499214613703052,0.07825018419921548,0.008057643093796188,7.512376062684063e-05,0.0034208610219081627,0.007392687206078753,0.023323641522189555,-0.004793852221772955,0.00014662336344636696,0.029669569624108733,0.0014450570872475475,0.001533243809647729,-0.003935623103440502,0.0003180838656432342,0.010966189018631015,0.009145359553263135,0.018289171781872945,-0.003820161268382153,0.0002616402273519033,0.002429097470521881,0.004862021892350242,0.013140347508719912,-0.011512135098839546,8.078984950745065e-05,0.005583643942716434,-0.026181428617982734,0.07998628727243562,-0.01213010912044482,9.60434290268167e-05,0.002206739288265056,-0.04173119458958974,0.35013010400838646,0.05267871246672466,4.087238481810175e-05,0.008814732257702964,0.02548725242844147,0.020671221521482312,0.0144198956538303,0.0009508273507552468,0.013595595126250005,-0.01127210807164652,0.025852908582929414,0.0039038589317613778,0.00015246059832906654,0.007062101667934915,-0.0008676666206128175,0.0007008662248867769,-0.00798451735308903,0.0006051208496822418,0.01547784465145836,0.0024987442412044113,0.03166855415304545,-0.01453995727209808,2.3513450234954445e-05,0.0019923640863597986,0.0027507082647340673,0.008354068040468631,0.0009185567328031959,9.781322135740691e-05,0.009651996082015842,-0.009266689869630933,0.05231705149703864,-0.01007852399794512,4.985895675085288e-05,0.005467998494799781,-0.006231243900142904,0.004913108127848847,-0.042102291985437426,0.002473667942611778,0.002767131991990136,-0.02695589988260835,0.1655764179646128,-0.03688695179743254,0.000133969969809925,0.01081604923925011,0.03430200585849421,0.26108809608917016,0.0035328698152278107,0.00020344202845952927,0.02040399428563024,-0.00917880984550585,0.06065425181694646,0.0011148319854292258,4.262712856427192e-05,0.002137982137763752,0.029702518389702816,0.18589148279582615,0.013855965985202669,0.00026334227872247843,0.02162309961011652,-0.04447720240441032,0.5808542433483894,-0.002627638433933847,3.1776095159545535e-05,0.013029198462460674,-0.012870012263256153,0.1266853941850442,0.024121948862615848,3.394174159089167e-05,0.010303805978987729,-0.0011281492527957485,0.002993250977593237,-0.012033306797799077,0.00012140768634580167,0.0017941946561760033,-0.017195125674247497,0.13173540349050333,2.2025190679207507e-05,3.0150548997684703e-05,0.010305699147697606,0.030962895853701437,0.09749295511339413,0.07489029823936445,7.0411844271218e-05,0.0011059424598067451,0.0038613995138536313,0.018355662832964546,-0.0051156124323809,9.618852418771756e-05,0.0064226153449345015,0.04006754696269488,0.03986068068405942,0.01586751277502592,0.0005745444123357889,0.0015479061829988482,-0.028097021890792988,0.11272871327989421,0.025977600748329648,0.0001049087588556683,0.012549517176724033,-0.05692628890347156,0.19034644176701673,0.004706353079267026,0.0019194963227545964,0.0038019336718509303,-0.006102138529539516,0.05691872688205821,-0.11331196907223755,2.7568242507349218e-05,0.01162990380790244,0.029803365556176374,0.08082189095618622,0.010116773865922869,0.0012056120283036648,0.034509986092431395,0.006644420671351618,0.051305889092712255,-0.004114171563659319,8.624134993814652e-05,0.007829110076215314,0.009544160530934251,0.012064062742911956,-0.023239016484241953,0.00018671943929051457,0.015641611301291145,0.04773384385432709,0.059002775779164233,0.05519938016030823,0.00046436328890623615,0.005019085158214188,0.014007048546799178,0.05133653626476428,-0.007436473875936354,0.0021148054067223975,0.012530404118839473,-0.006945943712371526,0.025577143163395606,-0.039943629176248205,8.713037749854424e-05,0.0016319072117315235,-0.015284722778564576,0.018989009327696177,-0.0008293723239550309,0.0020009325551437257,0.009539123123535578,0.030599198989925636,0.11256903471774793,0.0177302484667253,0.00010769787949227928,0.013722701101169875,0.03378216598413615,0.09160055453053628,0.014389005737676241,0.00014950295084858545,0.011783212609669108,-0.047374869858611245,0.1889712279678048,0.07323925257577188,6.118800165737122e-05,0.024100988494683107,0.024318497288841476,0.0807179722927815,-0.014712480881354816,0.0028555156818282847,0.0071002681738740565,0.05155097711125383,0.2690038757888719,0.07386022907097867,9.532766049270631e-05,0.012259964006016767,-0.041758030706820944,0.2279785803806843,-0.012671205104611732,0.00013283323475805575,0.006432150725672136,-0.015762911865070218,0.09136266587485481,-0.006080562087936781,8.160492738092807e-05,0.01364519283565096,0.02285963780450346,0.08091664833736965,0.00610252185285824,7.100335242449181e-05,0.03210966360133147,0.020580525356834977,0.03757932320616309,-0.028274274093460887,0.00026701576071204723,0.007486279698453963,0.04228824329601373,0.14699110081286484,0.11332997392956952,7.153901858791337e-05,0.012401143412858261,-0.005614584494941744,0.06334280457960893,0.006555725483996233,2.2869234044048513e-05,0.006144214113260302,-0.003026118122562319,0.00992688016814802,0.0006880134991937071,0.00010655701882492041,0.005224814835865039,0.030360418670363324,0.14800781790018952,0.077702227970306,0.00032333377389208386,0.00889599369077287,-0.008307270702578393,0.04594878196357985,-0.018456368885703373,0.00010355144303420183,0.016362962889075874,0.0027912077025020847 +2017-02-28,0.00566974633174235,0.035756727967939356,-0.04711281714211235,0.00016768431541145715,0.00030401510049072136,-0.0045808776883967325,0.014502623795002237,-0.01628599409050019,7.579012813937992e-05,9.923325600816248e-05,0.019202119073925966,0.07718743352519425,-0.0044148014079660475,0.00011507997583952422,0.0027948060209028176,-0.030213758903247925,0.028271280219577102,0.04461799968420061,0.0003606842184378124,0.010863658857480557,0.022303150990449605,0.048937644932541255,-0.02609571589232897,0.00023846296041718667,0.01745686251271469,-0.0003265286894821089,0.0008914925713870253,1.783259999498198e-05,7.997428324136282e-05,0.007049476584410612,0.018866693559203042,0.0644816811453321,0.0013967429420333793,8.585177900961039e-05,0.020266577796522117,-0.048843262404284916,0.4514596624180092,0.043064612283801595,3.710088985775253e-05,0.0038898111951360653,-0.028304845359282033,0.022715052257800468,0.035467566393015654,0.0009609301785308422,0.010923797240685791,-0.0019007052204733298,0.004943060929592422,-0.005744881295747893,0.00013445615577198925,0.013838407405000945,-0.013020013279303497,0.01145469349739861,0.0012104869090831852,0.0005555873035099553,0.002872864182174669,0.00022829693333292468,0.0026237425409828944,0.0016708533886894996,2.5929948261977677e-05,0.007905328709281893,0.01169759985167782,0.03709169337722231,-0.09024228530362027,9.3685232287242e-05,0.010797373941119704,-0.023131257987043335,0.13173283151436274,0.00873221046661135,4.942731780469483e-05,0.001968179237846707,0.0072150826925309235,0.007000778995094867,-0.02493443824345696,0.00201010117627409,0.012670371718620076,0.07774447994425449,0.6297870847652075,0.09032259589498687,0.00010158461064533495,0.02662802432389451,0.054988674065530645,0.2706998910118995,0.03239123837324285,0.00031455268650993593,0.0069467663142960285,-0.007767791624678906,0.0408153801656765,-0.006375950528279844,5.3608626068346626e-05,0.012962318797194254,0.011398373714650578,0.059671675582429855,-0.013421954658328815,0.00031481938513296467,0.01823679565276085,-0.0103364704659011,0.14947666865783193,-0.10909118504705169,2.8696510458897703e-05,0.021017578769069758,0.006858470401877726,0.07102189191187669,-0.012290599619382612,3.226389092558092e-05,0.016279249031008823,-0.00994755907373222,0.028868450203792955,-0.0748445956972457,0.00011099816858359775,0.01695973520008845,-0.0907599628459186,0.6501799798309953,0.04169018010292193,3.22443103697744e-05,0.041879226689300775,-0.01047417747075167,0.028298488831844503,-0.05811403709102821,8.20604824773844e-05,0.018983345987975464,-0.002853565760625785,0.009948940057778166,0.008215952166164543,0.00013114739443874102,0.0012528464906024844,0.02571959325879531,0.020088659958920035,-0.0026846841627850148,0.0007317937399583314,0.010870897115406815,0.010315441350413351,0.03435282870945099,0.009376079128292313,0.00012638959416622902,0.003332319534034493,0.0015179529728168244,0.005050522425602712,0.00035758695997153105,0.0019290397990851965,0.009786447647257094,0.02277266045920601,0.23578328117293074,-0.06373331882201026,2.483607479483498e-05,0.002668385709321249,-0.010988982537272955,0.03193430507181969,0.004508363300259193,0.0011250485990047486,0.00381559082613669,0.014547915584170186,0.11867967014897507,0.00024425416289471823,8.163005422578444e-05,0.013569837289960782,0.009814249345480554,0.013503853341052299,-0.0404195427124726,0.0001715318459462301,0.006739983679451833,0.014010553408630088,0.017887469978007657,-0.003167280719837069,0.0004495834192371273,0.018926801791382362,0.04744711948199591,0.18729563640957825,-0.0511096036217782,0.0019635073591213136,0.011087685263093186,-0.028638587444814668,0.09765245314328158,-0.12888072583575508,9.409332290481077e-05,0.0028079741934451735,0.0014142686585121487,0.001964751847777164,-0.0008457517424974824,0.0017893751552184474,0.02613062440363913,0.001182485588637435,0.004318472773667746,-0.0005854071056440517,0.00010848800105197175,0.004119220677754687,-0.011639461564941587,0.025303107882189296,-0.015262574200288169,0.0001864744777417997,0.0003797777951462406,-0.02555352794274225,0.12460418804743209,0.01708514297169795,5.005323517008439e-05,0.0062571383559772206,-0.029969987552209577,0.09354700031845098,-0.02689824765550542,0.003036510271684136,0.003034794004183498,-0.010218783618953016,0.05506990126545768,-0.003501910420163218,9.230505300125152e-05,0.007227149638079818,0.017476992288985915,0.08159408338729908,-0.03869247124973632,0.00015533481732253116,0.016207519796238235,0.04647589596065992,0.21883480449809245,0.020968054515676262,0.00010045234376652063,0.01242367596822995,-0.02106862567498988,0.08829494098939483,-0.035477530837397235,5.9971896301710754e-05,0.0030336370731102857,-0.011603553778661908,0.02470543703083933,-0.06094530427999951,0.00022899598751524385,0.02431781485081399,0.01650485767911513,0.06077537423733093,-0.04774792433780266,6.753027493691233e-05,0.004856932958912063,0.009689803612878625,0.1133817269819751,-0.05880815189380095,2.2049725786672416e-05,0.005416402826373912,0.01616144268909911,0.05255346540110973,0.058624998604720265,0.00010749486834422127,0.000844863007667479,0.016417835149766694,0.07960872651835817,-0.02028450838176726,0.0003250747108191054,0.011986041001919714,0.024004231584068315,0.10483016135190962,-0.021697500396212575,0.00013115152649013435,0.016854718108374505,0.0017415582993021885 +2017-03-01,0.0029945997910402686,0.021797139731700034,-0.0036992933766763643,0.00014528670205724668,0.007451718911075067,-0.04058590932915624,0.11920581571602883,0.06484896658377295,8.169366186396936e-05,0.014856133622509642,0.005804516414243614,0.018119209425526403,-0.04331174977792805,0.00014819174208498983,0.03006756801252862,-0.009090077506179942,0.007783695376224818,-0.008734293911550685,0.00039413918258190543,0.0018011382275107683,0.022978956376233383,0.0536782276591356,0.009968807005220308,0.0002239906577420196,0.0071982933937346045,0.016615956581215886,0.05347119286752094,0.06230674098786902,6.785036929790536e-05,0.005106792317444952,0.017237369704704457,0.060987082571576826,-0.013273470257900651,8.293216308108132e-05,0.014284704753045984,0.01811570074284425,0.14797151052714627,0.009683362384173682,4.1983210372371454e-05,0.002495253073553581,0.00586227771195518,0.005299878074358178,-0.002403510083341407,0.0008529926643824112,0.007120174300107526,-0.0396860904978403,0.11289862299625118,0.055702533175040925,0.00012291688900201422,0.011488927143726572,-0.020399489560596666,0.015129363246792227,0.010503323231296656,0.0006590570478609364,0.0038746050741699564,-0.010850033288005705,0.14472618925514927,0.008941225560803165,2.2341212173531496e-05,0.005283336925143804,0.013303821741471157,0.0377083625757686,-0.01858450817200221,0.0001048068771158339,0.008110278715815407,-0.006264229241670367,0.02962933357139099,0.006225929705879446,5.951241544993702e-05,0.0023467981553253387,0.004742434803150452,0.004450161773548661,-0.03829729587103547,0.0020784928880480838,0.0090921051985009,0.05944817100557081,0.41671250962802114,0.04020930558147679,0.0001173962075144511,0.014919105690432971,-0.02023446316487752,0.10639068847763333,-0.13512770189605597,0.00029450745946391494,0.0037080009215420106,-0.03872275018839028,0.1952364545803548,0.06052481095321265,5.586840052681187e-05,0.006143509210792615,-0.051212394798206946,0.30693259169971676,0.0857987723474053,0.00027499125670912416,0.00020204052209036325,0.008041180462730044,0.11170592912749705,-0.00032428664323202344,2.987265442419987e-05,0.0034370421653442725,0.01629084198929376,0.1529803183086481,0.016829022384326545,3.557866761506379e-05,0.011429316868571694,-0.001094517177058746,0.0031829504524837696,-0.021616388950458604,0.0001107682920330869,0.00865620822119288,0.07226391079328214,0.5680087248041812,0.08787613045074112,2.938724208027392e-05,0.03914767890562949,0.0010180049513115754,0.003031615749496844,-0.0001476392782643368,7.444801419719275e-05,0.0071851153934996475,-0.005868774859923866,0.02191573030315124,0.010020440715565952,0.00012244472989913607,0.0019562584467005977,0.01689381602800423,0.015716522397266015,-0.04867976360785157,0.000614393858827936,0.020883975790454624,-0.025238480280254584,0.09582068863934722,0.009297096426632007,0.00011086384121119985,0.0029480981628398255,0.04448027872741769,0.1442271982397333,0.019176929385132983,0.001979427081298573,0.004985608540319025,-0.02476307435116525,0.20527812360699715,0.012018077583689628,3.102016386339856e-05,0.011989316743018187,-0.00722715810577215,0.019778954149354808,-0.0319200474984368,0.0011946357354968872,0.010056357333240618,0.028668682954031167,0.19007386230164008,0.04857881414035021,0.00010044099015828427,0.003984830927538475,0.03902881507204603,0.05650547672641002,0.02366295739158405,0.0001630197448613044,0.025840335983622342,0.019548303068614315,0.030691142432898433,-0.026311847543894398,0.0003655947264781808,0.009611308324794307,0.014474216886059878,0.0678300766255639,0.0013372778778126912,0.0016539527916078292,0.012125097213319776,-0.004905234066706711,0.01841491639398718,-0.022243715853471978,8.546343705850853e-05,0.019106367217596815,0.030983486204016867,0.05086527904847523,0.010697488831742154,0.0015142097650193108,0.007979386957798925,-0.01007098861852045,0.03192216268757083,-0.04586800880365132,0.0001249959193280403,0.006076495573363282,-0.0274522626387569,0.06801858303345318,0.009913217878150814,0.00016361041296288303,0.006194779140495342,-0.010629458464067279,0.03958530057394158,-0.04281255062050024,6.553768812006658e-05,0.005869302358070273,-0.013449741429742767,0.04594519413740078,-0.0017313119930767395,0.002774545825266059,0.006876066446120127,0.049766427357036666,0.26219336994658365,0.09795047982312334,9.441811587994617e-05,0.0011726401213073548,0.026691123169747838,0.15104873231819926,-0.010933407345068232,0.0001281476212607949,0.014073401505976364,0.01652980280254681,0.09483915251067294,-0.013213782228038824,8.243823915128765e-05,0.00017876120128965058,0.049180169282495564,0.23942814808534843,-0.02646165490580102,5.162525475673679e-05,0.0013094834725881352,-0.00020780550954112328,0.000418551824717238,-0.01102080027274005,0.00024206790539471596,0.005816094219559118,-0.02417140504516227,0.11443794694604108,0.04031478552773462,5.2522599690112106e-05,0.0033439665465850865,-0.02430831220752262,0.2861417617714973,-0.03155171943137289,2.1918197923384566e-05,0.010905940074505793,0.011169256785647242,0.04025089275791616,-0.03723215384970057,9.699687058149499e-05,0.006934301563240933,0.005765800317502221,0.019792209695773118,-0.012112757663749954,0.00045919091288276867,0.0026235045227322013,0.009398103044949353,0.04118425550680507,0.004594480588143632,0.00013070156232812468,0.00785205335797639,0.004430907934366623 +2017-03-02,0.005357632394936308,0.03920988718330337,-0.015229905118840564,0.0001444986877424897,0.008716134259192036,0.013156290124044935,0.04478601712858193,-0.011564451201272972,7.048578271310946e-05,0.0034803101193008924,-0.02656016397042101,0.09542651615233252,-0.008385629538993817,0.000128753453723593,0.021537502208867295,-0.0017829089120273236,0.0020873089230487207,-0.0015447494471160365,0.0002882771915745336,0.0068648220986372455,-0.03829685934995026,0.0960043855526852,0.038263281554998266,0.00020872278440279874,0.02702541270764013,-0.009341380648687742,0.02768458572401349,0.006643695115669772,7.36749381821518e-05,0.0038560310290719803,-0.051645223566641224,0.17573237672592795,0.01138644166367399,8.623195538323381e-05,0.013614019486848861,0.02073646810702876,0.1874706874804378,-0.0006022537309687815,3.793150116906199e-05,0.009255297585940158,-0.02246952832208074,0.019381396072659717,0.019488059172971903,0.0008940332804116488,0.02342662426553166,0.026933633765378606,0.06787607090158078,0.02832292342223358,0.00013875228444890292,0.02763967926292689,0.003926388369532404,0.0034053381660714616,-0.0062849353233165066,0.0005635823284143106,0.015718711742041855,-0.0006248940488011691,0.007528500726415985,-0.006304971723922757,2.4735499310444556e-05,0.009898938273779169,-0.003656406036622186,0.010454889187248875,-0.010037564579854519,0.00010389293637385783,0.0012123515074680183,-0.009505175546476032,0.06156070081114044,-0.005455214451946131,4.346287042971155e-05,0.006783564447435925,0.002375304235387193,0.0019709932578819197,-0.06808230324742352,0.0023504827971870834,0.00036974498070238104,0.01912404315062045,0.13495828353017875,-0.04614796286785991,0.00011660905522650357,0.002313852057711302,0.020886151398629524,0.12285159402617933,-0.009020922552088674,0.0002632605945513966,0.00627067798771384,0.019648897478331283,0.13640861859931427,0.03522015676477296,4.057488819206626e-05,0.013296727509238847,0.008165140540304905,0.04033372305972936,-0.0024027749643195703,0.0003336431092404205,0.022073512513859098,0.0788701493555677,1.1032643752692077,0.024074378978768345,2.9666294220758505e-05,0.003038521683888033,-0.005815101224842118,0.06374646511770891,-0.032543550146964965,3.0477748494086813e-05,0.0018276184746891843,0.04976494512136223,0.13904000119251556,0.038842658925823746,0.00011529395105863573,0.004972535824675014,-0.013039303891266138,0.1059120210429048,-8.653915248230987e-05,2.843816224803786e-05,0.014194444396392891,-0.017888405384498186,0.048900331467587495,-0.03942475553541037,8.110305387830637e-05,0.00417114280922112,-0.0043633674077591875,0.01732091103540271,-0.08438595774568564,0.00011518598696481836,0.023606542002554746,0.00034435947288306065,0.0003129486243456254,-0.06999517490780646,0.0006289477226361375,0.005867437104716433,0.007641872421570035,0.02352016208053401,-0.009593434859729057,0.00013675571418487683,0.0017107748673367868,0.0024657573191764004,0.008261801702850458,-0.0010745305941094695,0.001915555496462547,0.049073780638001586,0.01394793494531471,0.13901594598421171,0.021499825923099673,2.5800462370930867e-05,0.0012115176437102206,0.0019094127235156197,0.006022992933566871,-0.00872571196671007,0.0010364747542985324,0.0432778290240592,0.0625343905832938,0.4583362386867241,0.17681355357774323,9.085741337526483e-05,0.0018091566303413372,-0.007809491694739963,0.0112736719222632,-0.13037277010404033,0.0001634943547011727,0.01719177597124014,-0.0012153528786057967,0.001558751814157488,-0.015587565737133078,0.0004475374013978375,0.015634125380584545,0.020400722992453334,0.08659335681331114,-0.05594049014481646,0.0018260443639410739,0.001398770858383518,0.021506494200214284,0.07917244461229735,0.048557285590891244,8.71537215833262e-05,0.011400663675232861,0.005455509079753784,0.007729526365698292,-0.03972620525860846,0.0017545251252726617,0.024907118620867304,0.029865330576880438,0.10015128163244284,0.006526127094289335,0.00011814812980431647,0.028414537522711135,-0.016528519017559556,0.04350220870160595,0.01927588133616708,0.00015402208931780754,0.0061033006397609715,-0.02889042505695198,0.13361184752602154,0.011558819922175636,5.2774349310148115e-05,0.0028917631909105485,-0.0895410843080141,0.22423638108477703,0.05003474341385688,0.003784725021274404,0.021017057396465408,0.00726311117687003,0.041225910946140615,-0.00039178832052024604,8.763810977602553e-05,0.013393254837460561,-0.02827471438364009,0.14649563418625175,0.04229916696656844,0.00013996979573574839,0.004460496036786681,0.026955675795198766,0.1606973578376464,0.015547239402041857,7.933963292878026e-05,0.0043764156982361874,0.0026148312550909806,0.012518044767028284,-0.017662682480710117,5.249942683509095e-05,0.024705977980748434,0.07613127289478225,0.1404369916609247,0.15399202762497008,0.00026430840108165887,0.020787098976126007,-0.04189767178341501,0.16875969243029101,0.12460025154555764,6.173558118091297e-05,0.0011653740250051406,0.010607482034690604,0.11807336550322264,-0.004792396009275804,2.3178837353618678e-05,0.014707008205524253,-0.0016520609781939559,0.005176694071362447,-0.02596167424445093,0.00011155332965743829,0.00367728375280964,-0.00714717701369333,0.02908233953231793,-0.01770152572285744,0.000387376408933647,0.009213399387594405,0.02153544998726719,0.10568251962735735,-0.046924334372193885,0.00011671390178063785,0.008540815971208156,0.0024736821175352923 +2017-03-03,0.020479241976036403,0.15879845818346228,0.006629254600049131,0.0001363810971785832,0.0013103486507820045,0.006291669391427321,0.026208936463862468,-0.003581403511297574,5.7600601981304564e-05,0.01250901679735276,-0.014251599662890179,0.04434095640585535,-0.03602356611398931,0.0001486810989313546,0.0075082265526387245,0.01700557061096374,0.016524685831624874,-0.029124530967758647,0.0003473168502936863,0.005036982660694891,-0.03582544352711428,0.07885664555236734,0.05552696908067123,0.00023771196890309064,0.009193598884317538,0.0009016550822034991,0.0024312095974595663,-0.009380668260540567,8.097757616804552e-05,0.0007196073684420546,-0.002726924027057756,0.010329679014906609,0.002609335425131087,7.745974577735314e-05,0.03301104661922171,0.008461211027514277,0.06504045023722448,-0.05681982455658383,4.461157973562148e-05,0.007785355924445672,-0.005393098387849511,0.004518437097745576,-0.02894000282529056,0.0009204387399369713,0.02427080987130391,-0.0740921580919941,0.17022154408163764,0.08752978731721407,0.00015220173580147634,0.010193328342039712,-0.016348550128271015,0.010373397023385442,-0.030010403458850272,0.0007703402700162095,0.008899954844526534,-0.005529294548025664,0.07054709431389178,0.0003286783508135795,2.3356802274280888e-05,0.0022933407483844747,0.055989167725921496,0.14668778787488093,0.08029314498168195,0.00011338643228938121,0.038654856045591324,-0.013318165666160491,0.06124233978327144,-0.020011289583385775,6.121452113277876e-05,0.015206149122264706,-0.00806470823372461,0.007099625302057015,-0.005576616957687378,0.0022155226999099704,0.004056337915833481,0.049602791180183924,0.34423370182363866,0.019015213872185358,0.00011857819515130595,0.0319856799631256,0.01115463366951553,0.05802916727937141,-0.0058288693790834135,0.0002976577575426627,0.011660657317117249,-0.023366496328303718,0.16783798933759983,0.004229521337624526,3.9216089510117524e-05,0.014234835042421259,-0.01574765667846725,0.07521624179335502,-0.2490358483532681,0.0003450572171688864,0.005269568331043602,0.07245486769727218,1.1227337684996377,0.07261678093590727,2.6780643847327383e-05,0.009369576852108616,0.014376470428593727,0.14956812447747891,0.010398579762574732,3.211403945660108e-05,0.0012745415908342432,-0.0327850319812178,0.10106151175202849,0.021667922928485808,0.00010449910647720783,0.0014177465444485165,0.024450109260379417,0.18752581046577382,0.010072832677059267,3.0117029141394924e-05,0.05901642447083772,-0.0030871434695050326,0.009911027235351158,0.0011752957941348332,6.905824316505786e-05,0.0006902661639092149,0.0017475723331254428,0.006920933098527159,3.2751185648482914e-06,0.00011545669061833827,0.003331147456958959,-0.05834008241196914,0.05008534320083774,0.06530122157171576,0.0006657818408244287,0.009761108714703752,0.01535344072173593,0.07386268902508043,0.01599718424237924,8.74916508617515e-05,0.005079690503157628,-0.022350669636982175,0.07153271890563119,-0.16437006583066377,0.0020054183359229493,0.013465082654985822,0.01728445914971049,0.15390180922587776,0.01185589221652384,2.887980553268348e-05,0.000581509639984849,0.003148790742280777,0.008754674620576821,-6.704072507633195e-05,0.0011759126438572428,0.002964725031171396,0.0302773794299161,0.22602422468981648,0.02471842937908979,8.920494677074811e-05,0.008062472749208212,-0.022575847122937625,0.03494566986903458,0.04311616883853709,0.00015247409768548342,0.0063481643909710965,-0.0008086803430921085,0.0011491955846754725,-0.015573056731172256,0.0004039120890556732,0.025868554578894514,0.0022494373888039703,0.0070572316798096415,-0.014601040159911878,0.002470528541766695,0.020720470542007267,-0.015719600653852223,0.06784168203233934,-0.03140097182401268,7.43421765914677e-05,0.00029470608310245444,0.003000704780154954,0.003950111348049911,-0.019431906564208026,0.0018883875303281053,0.004267028238390925,-0.048241236373454205,0.185286893916579,0.07010172799524285,0.00010315487693618298,0.00726144710562755,0.008455521337598833,0.02345319166350925,-0.008935931459568953,0.00014614999782030995,0.0028226450506893108,-0.011463496947571383,0.04432856738223872,-0.077668055511761,6.31171453958746e-05,0.019600549457277756,-0.048958506843333915,0.17859525569764187,0.022916554903512947,0.002598222289353229,0.00930201731969997,-0.01881339052948415,0.09063759552925667,-0.004063614096521474,0.00010325218848701951,0.01342428101007372,0.025048006462143817,0.151910561359704,0.013014676991272667,0.00011957653991346117,0.0015202932999564406,0.006205492718449028,0.036244372594208346,-0.0262052682776223,8.098123259183731e-05,0.011390307389312964,-0.002410373896805898,0.009892820011214547,-0.00013624549875884188,6.123668926789959e-05,0.011214423505055318,-0.05904311254045356,0.09799963011622925,0.052179227737500354,0.0002937475150655185,0.007272471442378053,0.018904107903140233,0.08348712517447747,-0.011879122072457162,5.6305530772905164e-05,0.00047333517430554674,-0.050295041270570086,0.5499739406242191,0.08508225627167743,2.359469362728018e-05,0.00023157554516057096,-0.010070265156205066,0.030408563011816,0.010286240547130138,0.0001157587884910515,0.005772142250192217,-0.02387776517446287,0.09260312742484973,0.059381883218378846,0.00040643957977026373,0.02326238195278119,0.02498110345358257,0.12313018317317614,0.01646932320835426,0.0001162034142022201,0.01441308975225124,-0.00427653923844151 +2017-03-06,0.005471308579125245,0.04187766356811296,-0.00437939534492692,0.0001381641437143639,0.005874694935541704,-0.006520073651566282,0.021838689933625758,-0.05371373980375338,7.163684423929681e-05,0.01758055456192755,-0.014026035709738023,0.050103646108791276,-0.057097609736782094,0.00012949792618351192,0.0005439691510326957,0.019854008670984313,0.018286668902745697,0.011802137678479043,0.00036642193336503546,0.0006822313473956367,0.014428961797789902,0.0424657821640473,-0.06171833461093121,0.00017778443187391676,0.005013497795795783,-0.014929621261010185,0.04269480217336704,0.04393245968975158,7.635201883424959e-05,0.0016534731920401517,0.02755590518183236,0.11970919950868114,-0.13330085630148564,6.754248114261005e-05,0.01676054176165485,0.0044239012010274135,0.03236818176367224,-0.0899622925691552,4.6869004543082613e-05,0.0018375813526691372,-0.03256920014764681,0.026135644375039,0.017574442498587865,0.0009609895555048899,0.003202195443718989,0.02423139440891615,0.05983750673470632,0.018653685379766655,0.00014160115754605456,0.0029780366662983363,-0.0035091123322087024,0.003007822026074224,-0.009837378497274367,0.0005702555146660292,0.00408922514140993,0.0050658097887954145,0.0721978126409704,-0.029204176204472018,2.0909691639863718e-05,0.004029497436924082,-0.011449720315588418,0.036468992730744186,-0.00377017260345786,9.326574157860161e-05,0.012366210063815554,-0.008267979129654187,0.052141429915718185,-0.010020663930784041,4.463527892621706e-05,0.008907777324050074,0.026794446087160608,0.02510951529974843,-0.033736410586112424,0.0020812748036803446,0.009580952987743061,-0.0003752802877226943,0.002128236134848818,-0.17261974241396505,0.00014510689460045154,0.00907672082876911,-0.013362731307664298,0.07250858952183252,-0.02541029100601645,0.0002853737424683137,0.001954369745928595,0.03127689299490353,0.18563078078637954,0.04174655687956569,4.7460746942753244e-05,0.010331556365281557,0.0010655044559337143,0.005446711147853244,-0.018391602253265246,0.0003224094283099126,0.013722454153576168,-0.0021825161108884592,0.030472114323216663,-0.032758092423468735,2.9722483902594753e-05,0.0071072024155886,0.0013585007444972335,0.014384468296692725,-0.016890343228529846,3.155351722417922e-05,0.00110161813856913,-0.029728029390698695,0.08634602927055675,-0.011444173184720715,0.00011090382034242896,0.02249050570908722,0.006207554084322698,0.041519640461815326,-0.004514284229436788,3.453498757556205e-05,0.00046716089883921735,0.009067035940291335,0.02491304510971766,-0.016310742072227095,8.068929205769799e-05,0.0014862168835208596,-0.003994148114189863,0.014769733533800842,-0.023404648433006242,0.0001236517027422358,0.014007137104601332,0.0011105485878528912,0.001413115193665306,-0.004485183504399165,0.00044919566838859143,0.00032294341878975246,0.0038701733594084385,0.015393012928423596,-0.10915339681462763,0.00010582610064533737,0.01414203552326695,0.041329516538101324,0.1379800658573117,0.05179744569165463,0.0019224858494649518,0.03331288350978814,0.0145296069996268,0.10254174187845738,0.0031128367879694687,3.6436392547878895e-05,0.014123533273002085,-0.04955057025366851,0.13579290128882537,0.0341465153061167,0.0011930066358658445,0.0030658339399554342,0.05089375366675571,0.3795385282423184,0.06570130802711925,8.929646310452874e-05,0.009270665345247488,0.04781132749914533,0.06411958744637819,0.008167902340955638,0.00017598897793286562,0.003947267641990683,0.016279466999405825,0.021970650877543782,-0.0037534391461197508,0.0004253056698928159,0.004073637799162378,-0.012460619303658512,0.05228508005626247,-0.08382053795535403,0.0018471926485588413,0.0071458598781049985,0.03211039059858811,0.12326516907239238,0.030190507113958997,8.357869449314971e-05,0.003631341697915243,-0.06891675792232495,0.11521673819304637,0.08054984295913922,0.0014869160669408205,0.017475360349677945,0.03427721365401791,0.10775144008989111,-0.08016947173836873,0.0001260371182640202,0.02198949933894303,-0.009605088705382243,0.021391371841218244,-0.017981136942467592,0.00018202168027655103,0.011337735112146308,-0.013501888151271551,0.04810682492687832,0.0032217773828441434,6.850176109793935e-05,0.0054632115361218266,0.053514876344702964,0.16199731199628817,0.06428412605472571,0.0031310123150067146,0.0243527632764074,-0.02210453802218106,0.09663728633985907,-0.005358758142407636,0.00011378297567860491,0.0007416736670619912,0.005432973268429793,0.03203271663087823,-0.0004763503652536408,0.0001229998496922695,0.010126226393436332,0.03227530621519593,0.19355835938255173,0.0026292654077619063,7.886914590630225e-05,0.017439052914643493,-0.04981279210803667,0.21527368088602072,0.050263310025754085,5.815637706234205e-05,0.002075295009861839,0.012482956360936456,0.025271299857739293,-0.0015442039271211137,0.00024083481324510913,0.033890033438265056,0.011751477765136863,0.04365412885986775,-0.003150010170794792,6.693935648588541e-05,0.004661001858826695,0.0007625437108247314,0.008541487166747859,-0.07833086873936808,2.3033637955570276e-05,0.010504833765343285,-0.012757506869917775,0.04175837101429463,0.027282450102065033,0.00010679015745061059,0.007683919925714654,0.028837012436826605,0.12636330687063882,-0.0008873495427578771,0.0003597139272565651,0.018007868777082495,-0.040327976437745244,0.18891449991530104,0.04897880872231281,0.00012226803530809572,0.015220221675764825,0.0023550303706431313 +2017-03-07,0.01601936651327027,0.13234675809495405,0.008589710768325692,0.00012800254787555932,0.004642948594305441,-0.0010389856252015633,0.003430425975422671,-0.0016221328412047331,7.26728200724545e-05,0.004202577371707557,-0.02541845778191975,0.08519554538139139,0.0318300684901327,0.00013801602466868943,0.004787241884200049,-0.01674855450334971,0.019368399207086186,0.01453412310877362,0.0002918444638072059,0.0077168285909057785,-0.018009724184786,0.03951883471565464,0.013309613012430641,0.00023845185422362254,0.006998339340919384,-0.01424206252299117,0.0342345449316161,0.019022991901087447,9.083538651669543e-05,0.004471208942722556,0.04659341037993224,0.16565767933283718,0.03730694852927976,8.252827766785666e-05,0.006551103036602607,-0.016795008584478577,0.15814561796085805,0.009400069004810751,3.641846879525939e-05,0.012907602544803972,-0.02725488429307426,0.024524109291355983,0.0005206794166971256,0.0008570297274234825,0.003040866865044297,0.02476189720271969,0.06532384108033504,0.01744337124590396,0.0001325482777417087,0.007945049023407856,-0.006819028195865225,0.005188711126993915,-0.050863499000774984,0.0006423731082465093,0.006338225472495586,-0.006497377756983902,0.08742851427233087,-0.021518622454125058,2.2146638083980243e-05,0.0005964984817897565,0.015699139239529265,0.05232174180702604,0.008924560533025596,8.913426463059449e-05,0.014298903459270861,-0.008083959905519827,0.04507394925318072,0.005114165945772931,5.048476718123708e-05,0.009725484085667127,0.033081173910329296,0.02726597545701072,0.016073175326394126,0.002366371060785992,0.019428450541069852,-0.0457328050483553,0.3095372706873047,0.07701262716454511,0.00012158136047200702,0.010542846828510899,0.04315402165158706,0.24455783892702876,-0.05732227241284273,0.00027324229163429986,0.02997975602939649,-0.0348219212575175,0.21196237688683414,0.03214732597179015,4.6275903225367275e-05,0.0010839743078548138,0.014905556014051437,0.08123997170627958,-0.001489861308332906,0.00030238846811870396,0.008763607575477048,0.017284538521435716,0.21997283275235163,2.3413705681541652e-05,3.260761033836602e-05,0.0066387863981979735,0.0051009500875574005,0.05131767343489944,-0.16503236136940572,3.3209766674531796e-05,0.005326935314078115,0.006021816213372642,0.01697140150945688,0.0031057525240424364,0.00011429639808665135,0.0008969282653372797,0.07983761224856546,0.6702516121429833,0.06837895374151715,2.7514526829660468e-05,0.029830751052206048,0.0423476675638904,0.12903200689872932,0.21038466827939137,7.276280375821551e-05,0.0031802100097394004,0.008188097593017446,0.03269690707013836,-0.024294895567190205,0.00011450512705115214,0.0020179339427685763,-0.0467036361458828,0.04255940720111991,0.05841255172760589,0.00062723557950357,0.007629032162377809,0.0004259564480726564,0.0015393387543190561,-0.02527139278612611,0.00011647078503473461,0.0066895261366751915,0.04900755319546063,0.16242233285580837,0.057249321959820666,0.0019365844965511618,0.015373638296986299,-0.037098436763161935,0.37012423329153143,0.027734425074542608,2.5774502093452167e-05,0.021930139379848362,0.00029692673299109093,0.0009181089323660424,-0.0005156484773212041,0.0010573684725564418,0.03891724667655836,-0.02254725805997968,0.1741547946452665,-0.05853728530382393,8.621522049364766e-05,0.02672604014677391,0.010333762365329718,0.014547213709797375,-0.002927342875763367,0.00016765790597946702,0.0007450670442908278,0.015211734085748694,0.02005622899791278,-0.044349402164980484,0.00043534479773083446,0.005104923501177125,0.010429362041518292,0.03683542676951273,-0.13711604097134686,0.0021945343293498835,0.014762033188106882,0.005519313545874865,0.023956905380758425,-0.05600436117806249,7.391706588045631e-05,0.005341660393114724,-0.051906412175516205,0.07535967202343384,0.03240422339474303,0.001712218570990683,0.016511815276762445,-0.016960707846084628,0.04865583557792008,0.005878156959654958,0.00013810998390562608,0.0018850698255478495,0.02191351773979295,0.05546059314429371,-0.01017585829622954,0.00016017250429326943,0.031397775471301674,0.004688059039154769,0.02095573151336309,0.0029178767079577656,5.460144946752822e-05,0.010006590137309071,0.006131923902664579,0.01987894884173872,0.004131728997715026,0.002923623193211002,0.010317796482874494,0.03254463281875735,0.15197504840021397,0.029569145052082357,0.00010652404671018788,0.0020497700082556937,-0.018329665464927127,0.09172517352043372,-0.006261486673295868,0.00014491948469939393,0.008597577851383756,0.009196502577994942,0.05245551632237357,-0.026119266307790757,8.292399742707654e-05,0.007526729940097485,0.04639263814935034,0.20212587297031584,-0.06356177802217583,5.7686548622321885e-05,0.014901812384206108,0.04402187466010915,0.11188789883381281,0.03419878843146336,0.00019182924114822874,0.02205475380923096,0.019749885270231332,0.0797174474187201,-0.051540379613469835,6.160636278686758e-05,0.0029863740728604837,-0.012305903675096059,0.1344808782668328,0.01081130900229478,2.3609362479897823e-05,0.017830031113024523,-0.015303253860028874,0.041527571565447875,0.02909504203890209,0.0001288119669330429,0.006555559277235536,-0.04182398346738849,0.1767989115906994,0.1385287926963461,0.0003728840251998683,0.0008946955614595482,0.0006649256435670207,0.0033324109153947856,0.00024263679174511572,0.0001142842361605353,0.00827019346117712,0.0032237202709861053 +2017-03-08,0.00185697571613065,0.011878782569538693,-0.0005697955841821693,0.00016531827892881282,0.004985340391388085,-0.020679390959216552,0.07725208749310707,0.008853832833953837,6.423001846176831e-05,0.012421248414792876,0.008651937051591252,0.030438486733200334,0.00021601051382320565,0.00013148841735504205,0.011761401660409206,0.036877796948340175,0.040992313310005496,0.06176104599554938,0.00030362001514145607,0.005502369481189383,0.021995589222128215,0.048058275798139066,0.017282656199141218,0.0002394777600390763,0.001403599933355816,-0.019375165987658958,0.04578263335864251,0.056307087274138204,9.240413427108655e-05,0.0047331738201628944,0.023010969861839172,0.06985134231416368,-9.090355782455033e-05,9.66607192894209e-05,0.023774029573284845,0.034846706163831224,0.30070936801924125,0.024027816574115592,3.973867568274693e-05,0.014907107000084532,-0.014948298021964667,0.014118385700121671,-0.001709274080240296,0.0008164911695398497,0.0118505305007177,0.06501179078354115,0.163558703110546,0.06822720579020053,0.00013898897660790806,0.022397643495676033,-0.0059577268254293065,0.004513987104032012,-0.0011517621265153615,0.0006451261262163798,0.002065038476487028,-0.007955084575203377,0.11374244832428541,-0.01246012223921328,2.0842270036349582e-05,0.012106046193303592,-0.009974911348715624,0.03381537470780633,-0.12575867610466213,8.762860101753767e-05,0.015032984882009832,-0.0065557549295691105,0.034807983649266475,-0.005615949183402521,5.3015841873434626e-05,0.0014794162337551401,0.04650327217676158,0.04675553590372154,0.024146622506575968,0.0019398736605229468,0.003210707672538846,0.03632508599381674,0.2142852650647351,-0.016273772817314357,0.00013949750828037825,0.05654826259789496,-0.008563572464794002,0.045342119179873124,-0.0033580583859090895,0.0002924565785416367,0.008364154295724638,0.03768925603294768,0.19529880541875913,0.052401197058850095,5.435993564551331e-05,0.04008758347510458,-0.008456127054577312,0.04307886880582759,-0.07720810121920893,0.0003235146979511387,0.01705010279560709,-0.023202164125536936,0.34537739666179845,-0.0015937621371486914,2.787820544171667e-05,0.025021791509598684,0.010998732358583181,0.1351495589379636,-0.02493217263710538,2.7190031485001986e-05,0.008966901839695627,-0.03724403389820551,0.09112113081628682,0.01555669233392344,0.00013166197587885492,1.9462447183945944e-05,-0.0414278428495,0.24846562446675888,0.011327353944611124,3.8513978550737364e-05,0.020437396396153752,-0.009922041147826138,0.035190577162983794,-0.004833257564357466,6.25103623400599e-05,0.006922689812451975,-0.0014333320483199956,0.00512009874513411,0.0031236865659037398,0.00012800209281171285,0.0011755897971264505,0.00038723601800678926,0.0004027527958328104,-0.0050140130823280215,0.0005495569987213295,0.03711423033859119,0.0010590808731148055,0.0038271541501672165,-0.037317501025160085,0.00011647673245093848,0.0036302160073063126,0.0026850663800631913,0.007709973523505916,-0.02181467082154882,0.0022352253531511762,0.012321914714642366,0.007068712543182728,0.06899715777546045,0.001816251826245598,2.634458218358645e-05,0.013878944327376255,0.017334933991901835,0.053242656548727195,-0.032796639465322956,0.0010644707826948166,0.011281209772013629,0.027531555167908995,0.21772059965252505,0.0016224639921883,8.420868110957415e-05,0.0013502413706869946,-0.025073513466654925,0.040155478481544236,0.042826945651959776,0.00014737227082496415,0.014554213811601789,-0.0016753741562864093,0.0024599453893142326,-0.08389198617364685,0.0003909221330437688,0.0035093942128918867,-0.02346200340053536,0.08874216533692371,0.05624631229633613,0.0020492050295255917,0.004403858758509675,0.050757341077343594,0.2241187115897387,0.14853196712256517,7.266263063964465e-05,0.0029634712054746382,0.03938466140478585,0.052828182193862684,0.019996069736656113,0.001853269766839389,0.0025727580893341404,-0.0012975940126455803,0.0047191532867674624,-0.007437068620751906,0.00010894085645013599,0.003831259416881898,-0.023904013478030485,0.0665253881271951,-0.11183626062916743,0.0001456611666617554,0.007483789913199325,-0.009552356417074396,0.035579173799739745,-0.08030331205216472,6.552825222620813e-05,0.014764930808749006,0.039421684527773386,0.12514835711383818,0.03931907877784714,0.0029855756728459403,0.02859563691919055,0.0023859665890572646,0.010875667528343961,-0.03948169139809154,0.00010913121891420917,0.0016247442211711435,-0.03627453459576381,0.19491264585502766,0.053797960137711404,0.00013496545297841004,0.007199937383991439,0.006222322327227289,0.03314418640803839,-0.002401565252082147,8.879608954234409e-05,0.0028104810242566905,-0.010425406130713865,0.0429786376340223,0.003750141084815772,6.0966004299605355e-05,0.014454741658092943,0.008424742629278819,0.014824922869454034,-0.013813612200921784,0.0002770726088109378,0.0034901563979212982,0.02536589486131685,0.13398223972475204,-0.038445506626852616,4.707792692722518e-05,0.0007625013375663806,-0.010607879906038694,0.1109460089581684,-0.012906416073463217,2.466880975745875e-05,0.0018945444648260136,-0.0042334171522853455,0.013511535387096556,0.000856208973233794,0.0001095204769957317,0.007015278471131392,0.004907670527683323,0.021001180287689353,-0.001675311611392346,0.00036834914552820523,0.0009085324346729037,-0.020982391244132315,0.08055101808624233,0.02267188973120344,0.00014919550640839314,0.002132403511121368,0.0026010161831039338 +2017-03-09,0.006989257228799525,0.04013586563127088,-0.0019195853295993115,0.0001841556187712004,0.006234337440361189,0.01762034495390369,0.058487636256082956,0.010196386800087042,7.228711012382719e-05,0.018379095648244585,0.011734011105005805,0.03910874479188682,-0.04116659385720073,0.00013879372191896358,0.026613782328780526,0.002869488987278366,0.003193235005871862,-0.009517897263826815,0.00030327843967851336,0.00035260087067766387,-0.03953955548222276,0.09111938620662109,0.05729179474609324,0.00022704856907841025,0.011227227346864804,-0.01399716260703796,0.042121340212451695,0.021628305709921355,7.25578769333237e-05,0.0021802724871062776,-0.048415441865437885,0.22439776542274315,0.1098327835023308,6.330750925642362e-05,0.019574839953017665,-0.0423950998713249,0.3339499225018223,0.013995815147289523,4.3534436774044694e-05,0.000759109111995692,-0.009661836808875914,0.00992585987388717,-0.008134842862013334,0.0007506480221575459,0.021354765609690293,-0.0064816160109020535,0.012813072131233328,-0.00013244430500545018,0.00017688536985699792,0.01156882023616105,-0.030765723774118545,0.02215342194195626,0.026077653553232216,0.000678813819780138,0.0029674296247375613,-0.019050907865536985,0.2376933116026229,-0.11814406350651097,2.388479426170932e-05,0.0014335105180622394,-0.02683485100740353,0.07220120536816584,-0.009206302436732556,0.0001104093309566155,0.009169581675120334,0.004612529015534135,0.02303776167498018,-0.013671259159097785,5.635865865412635e-05,0.021378564492003996,0.0029893960661255136,0.0024579021905777013,-0.01563780233721224,0.0023721482902123894,0.005226745487049557,-0.04752233425337651,0.3077257718477857,0.028926412195731152,0.00012708257401750897,0.016137355975365825,-0.037818837765229325,0.21335187177835466,0.06751135064629066,0.0002744858446986249,0.02382604654861526,-0.029063257137997477,0.19430274057646427,-0.027493154708498772,4.2133381345797914e-05,0.010035279084020556,0.019297668454248663,0.10427607598943517,-0.008549462493262772,0.0003050050065926676,0.0003387267540590224,0.0022477222208999227,0.03451566873978419,-0.0003390861346891762,2.7024432207247196e-05,0.0060755792812791885,0.018258730068242142,0.19094772962563517,-0.01759023553320997,3.194756616770862e-05,0.008072227505349245,-0.03997957577075476,0.09314985826645589,-0.07353883110591901,0.00013825432902266497,0.02035139769140644,0.040505401958694114,0.3370621983002486,0.01622324550351027,2.7758453932180026e-05,0.0065368691003328495,-0.03236023542827725,0.09375503170506398,0.0754060419585313,7.652343734960412e-05,0.0031325932639578785,-0.008576466933176255,0.04060526691508709,0.02424756301825872,9.65772074417814e-05,0.0034278089758755853,-0.0936886092488738,0.10105280191135414,0.15615920287548765,0.0005299244939448944,0.008978489087966928,-0.008964722720233926,0.03056127911358924,-0.037495214016381014,0.0001234671271778122,0.01215485002760051,-0.011181234402284367,0.03289395719313536,-0.00017910720832051464,0.0021816888086805333,0.00207054889742593,0.012025367729083379,0.10804742399853633,-0.03951823111914006,2.8619770302627526e-05,0.004885503413981301,-0.01679681917304111,0.05461596241310219,0.0034958865735871644,0.0010054922455700623,0.014800949078265648,0.012276560569624891,0.09366579068784504,-0.05250198090274609,8.728132900738318e-05,0.009257145917119555,0.01970917903564456,0.029439593174647564,0.005029960639053164,0.0001580091062865431,0.004975416161992715,-0.010880629642410133,0.017204464433949934,0.0008433387233861775,0.00036300849129376636,0.004414992238334484,-0.00545950740487893,0.024395605359295632,0.0072190234739695205,0.0017345714794003235,0.0036192147273425624,0.0021306210035429768,0.008456516633687813,-0.012527623140769037,8.083604684858252e-05,0.01882807850024656,-0.04805368946625601,0.06493134434982069,-0.0011425181746020014,0.0018397107017056496,0.0066649453059158545,0.010542832681298088,0.036863914404268484,-0.06668061812376606,0.00011331095547076068,0.0012023341142889698,-0.033540021146637795,0.0788137528462396,0.05163176871496928,0.00017251294952260504,0.004287568150768627,0.01296916299830371,0.052487687349507935,0.017230359524783002,6.03070987239797e-05,0.014206766882454145,0.070142991193411,0.2148006560824778,0.09324282118081356,0.0030950433519354196,0.06026586234756093,-0.013668960592010001,0.0660069157212583,0.013678461848130598,0.00010301171604133367,0.0157978029858171,0.04262654863766977,0.21868865166492346,0.051342015616257355,0.00014135614989844582,0.01248047847881444,-0.03707484378350829,0.19941234666994936,0.07015068404914059,8.793787853756958e-05,0.007909177740170113,-0.0347361303470408,0.15229085405003162,0.025950924159313053,5.7326444721658425e-05,0.009465887608601639,-0.024819357942883903,0.041600591007946046,-0.02328445017916296,0.00029088440341934366,0.0006289557282788318,-0.02564827780725123,0.10317311419237134,0.0760862341603675,6.181673249116698e-05,0.0013609591796830806,-0.0012012263067798397,0.015948274109315114,-0.04907428830214071,1.9433115355992874e-05,0.023428448516313618,-0.004194962200405624,0.013614459294378546,-0.002606527825642562,0.00010770518688893347,0.007792175486566113,0.007303920693636792,0.029871389444348896,-0.004321501204063947,0.00038541498485922325,0.002877402355684739,-0.002124513403935586,0.011352515757972097,-0.076709088409405,0.00010718626999898321,0.015221584988429111,-0.00970199051000184 +2017-03-10,0.014916061130007527,0.08900505547147708,-0.18346217039009546,0.00017722544000581158,0.00011406480178287846,-0.0012117976933300654,0.004232179256538161,-0.00027384685116521877,6.87031411673638e-05,0.007877237705287941,0.028280360251584896,0.09978979328614189,0.011719492013403183,0.0001310979857273943,0.0018806134705074222,0.0044867826247367805,0.004771576936586072,-0.060899437104021355,0.0003173517919504277,0.002511376912059767,-0.002206527361026918,0.005021701575432932,-0.0014438184259348923,0.00022990911466180377,0.00044685275956898363,0.0013368930179346178,0.0035752463145453705,-0.021832506819799247,8.164647275431815e-05,0.004874911609435248,-0.0336745251128969,0.11843736983784997,0.04486028783606993,8.342622276198613e-05,0.004110988023858481,-0.011150045190978532,0.0941632732106882,0.0011570676065430759,4.0606325860185085e-05,0.01494240703577828,0.00033780738644438363,0.00026023304351774265,-0.03296738637671606,0.0010010401282615606,0.013834685483800473,-0.013978774277462568,0.03715010142750001,0.0005727191114256745,0.00013157427169557627,0.025812349860122628,-0.05437789578184986,0.043442996372715,0.032051407382422924,0.0006118246695140797,0.002803080269262042,0.027008684016062167,0.3242325991460685,0.17009128496457554,2.4823872708292503e-05,0.0009182020067425021,-0.03810663349831551,0.09676551396735253,0.031817982235161704,0.00011698522460345067,0.007610804300018487,0.006926718223673076,0.04477238795403469,0.0060620841485076425,4.3549089666192825e-05,0.010472067544847873,0.005356118462331333,0.004967305235772862,0.0009153456294320563,0.0021030630769623476,0.011187774873573714,0.08203665377932867,0.5147920185988687,0.07451254847180275,0.00013113790470528557,0.023732291897612254,-0.013233258934124593,0.07276148966057615,0.0004751439867808485,0.00028162646274511213,0.009348198027026721,0.022789666696319204,0.14956814558091733,0.02018262606478026,4.2920010592642204e-05,0.031297022812712065,0.014528824961503454,0.08081229300837742,0.00042409410100781016,0.0002963056066291059,0.029597588991829193,-0.00020369435586026582,0.0027995331830676677,-0.006872358822681208,3.0194205537145767e-05,0.008528793033866488,-0.012772053571377368,0.12817415575647562,0.044475634992082014,3.32921601413227e-05,0.0026104373609012552,0.06704588911255012,0.15698743923498956,0.12546368665434152,0.00013757198538951403,0.0032708478421806294,0.07116156948134414,0.5426200793763182,0.040446388366843944,3.0292982466562675e-05,0.036493194232569075,0.017625945888261177,0.05532304302718726,0.014807556600003933,7.06356188558667e-05,0.0037639783597620434,-0.012298217187700208,0.04897834477189854,0.04288959444389905,0.0001148118328501334,0.00784640338922377,-0.00806185716973499,0.00809635190001376,-0.040884744706069516,0.0005691428507687618,0.005009383605549067,0.02271318612714427,0.0851474274075774,-0.03404400662607689,0.00011227744931525499,0.0048888974945422905,0.009435535832182908,0.036339529246363564,-0.02851511111063489,0.0016665043280939245,0.031295208538576584,-0.01984984635196651,0.16757032295135915,0.010862290419418311,3.046086543496488e-05,0.003434854652159084,0.01797263431908292,0.05754397336649999,-0.21155831693273605,0.0010211349984802734,0.007613532814196568,0.028873256356057603,0.2343461149121949,0.012296945450816688,8.204717873954984e-05,0.022593177682629174,0.0014797054681415546,0.0025383237699909463,-0.03779154162581578,0.00013758581104709948,0.007343817411930637,0.02064446244233714,0.033239550815821625,0.012057372941293866,0.00035649409975937253,0.005069577778035669,-0.006685059682989031,0.02211535619202006,0.007000451635616056,0.0023429428299714537,0.00014649838473610897,0.011341271533016055,0.043024160943928406,-0.01086922376129449,8.457455266582244e-05,0.0014180993842263629,-0.02719466566779872,0.036231902236963646,0.002391067742084346,0.0018658201541794015,0.008688115243425873,-0.00447170904411659,0.013485353341742242,-0.018949694806561487,0.00013137939095851252,0.00329970538161549,0.0051632228198771075,0.013548014388806939,-0.002863206325081784,0.00015449185733438324,0.013786878531585235,0.03625220657864075,0.1640936133126673,0.07548813932140233,5.392084543002675e-05,0.015480825807885611,-0.016547698908934396,0.05818015228560196,-0.06400973166026036,0.0026957574521024007,0.01909577785043693,0.00922523428012241,0.05054836703875076,0.0006620319012141749,9.078431991563881e-05,0.01504792729969961,0.018345489293075678,0.11173296283433494,0.004499860505059929,0.0001190717587917324,0.022905261203266095,0.021557081082278707,0.14603285506808752,-0.05617660936433306,6.982132366112834e-05,0.003371431651661646,0.04401739687377898,0.1992390027726987,0.02412180386523333,5.552612813730338e-05,0.042664148937267984,-0.00974617779394511,0.023345583117546333,-0.057773680781556216,0.0002035443247019772,0.005883073760236224,-0.008015354435911823,0.02962369419675029,0.008013799862639177,6.728184489171691e-05,0.012827301493886376,0.0006210853946960468,0.007586877943458631,-0.011443476842288086,2.11212445394919e-05,0.015199519520349335,0.01372686565754961,0.04095222259811847,0.01992676981472087,0.00011716634186213667,0.0016818286314636793,0.021849325969330896,0.09889591089579138,-0.007257958062181229,0.0003482472374008935,1.424455020534142e-06,0.03312336622062383,0.14275361755656404,0.00944714564761438,0.0001328982125013434,0.01004574601256171,0.009302014958363575 +2017-03-13,-0.033465571255446656,0.2709442663298192,0.13931210117584794,0.00013061855101507644,0.00031536964624544737,0.00483619954558993,0.018632639281370298,-0.09671586700137286,6.22788181063279e-05,0.00821851450292858,-0.025865811774374838,0.0881858237377005,-0.04095906841515955,0.00013568272006466618,0.020923882522296017,-0.02828795089209165,0.030763697490309803,0.0769482096254435,0.0003103350392295472,0.005516664623375539,-0.00064245737029414,0.0016417691119678239,-0.0829719459948527,0.00020475287445189267,0.0049947001117232395,-0.004194268588773228,0.00963216956174958,-0.04877204540499768,9.507774189143964e-05,0.0012313880429738156,-0.011110433131287817,0.047749123846254994,-0.032793210335081,6.827401418167725e-05,0.0023590537746506243,0.00379394579161767,0.03770654423957331,-0.1284385573765212,3.450428276137928e-05,0.025743589638127437,-0.018051278808189297,0.013632959809896882,0.0015015818736031229,0.0010210866692347779,0.012501703228519291,0.0037885061633531653,0.00928147074786361,-0.00024335263371397145,0.0001427292830438719,0.00993185936409409,0.014780357326697195,0.009665707295731775,0.0271073028501084,0.0007474388239045742,0.0029919964075295724,-0.004850668045944031,0.07376346021447304,-0.0064213030554086965,1.9596705367647507e-05,0.010526142264828401,-0.029300085276972844,0.07501167046025044,0.020505670742987866,0.00011603555536451677,0.011682713892102204,0.0035448148722602097,0.019205131828449018,0.0024710893829073283,5.195628433307197e-05,0.006113093268304705,0.0068367051261873975,0.005398004221476825,-0.044015727020387925,0.002470225504938106,0.015824714117034417,-0.041969613942402346,0.28369242646035575,0.039337232862347415,0.00012174169391866112,0.038664883376867756,-0.0056627013027949445,0.02995570815735095,0.0001827083596050835,0.0002927199316524505,0.00463560267817823,-0.016718543224215565,0.11632043605916369,-0.004271328682709501,4.048585979247437e-05,0.007859251251677246,0.010543776308045006,0.0596883017452766,-0.013383947680265502,0.00029113456387460176,0.011333290461495473,0.013405113211454652,0.1906427130542469,-0.03756390348056258,2.917967883381021e-05,0.0016637389887818924,0.01457310523448285,0.2110795684692841,0.01606897822006278,2.3066813934394658e-05,0.007545990272301907,0.0039454580063853825,0.01257032915155095,-0.005072372760381132,0.0001011052090236363,0.014446750093063697,-0.04553640564557164,0.3585760064636149,0.0013952691287092093,2.9333906083317437e-05,0.0029007987458611467,0.0008976733976841814,0.00292130005364738,-0.000449160701998715,6.812704796523307e-05,0.003482796395266942,0.004801052234730795,0.017644009601204647,-0.011939478065534276,0.00012441929645147783,0.007956684445009686,0.02105983607338966,0.020771519882975837,-0.03063140755264844,0.0005795117848076425,0.0019898426058717394,0.010907491654395585,0.0353869564254174,0.0022235071282874904,0.0001297381459196328,0.00027038464591167574,0.05836814009468016,0.201040576053764,-0.0032371725711183804,0.0018634223897360455,0.01051646646195984,0.025702211537367767,0.2636541965447657,0.03405059308423544,2.5067902715952847e-05,0.018295310369661824,0.027487966941722126,0.08470906459088301,-0.0021004714076351978,0.0010609233393498116,0.008030538569151504,0.02727848184229364,0.20871597080442675,-0.061282246720804213,8.703424322095533e-05,0.017493504565153122,-0.015427313726461622,0.02414155662292742,-0.039519760658969616,0.0001508239908182267,0.0044007785970998055,0.017955200211963663,0.021895330527035673,-0.11978476181228465,0.00047069833314481027,0.009782822174522693,0.033539858968788354,0.12593559167655938,-0.08131333574552076,0.002064253769586536,0.017677584966585533,-0.04649623824070917,0.1575310967178593,0.044697297866262455,9.469823655504947e-05,0.005687418162515532,-0.06422861282145428,0.09813254188020189,0.03448324324238886,0.0016270192298587381,0.029432763982187596,0.014400356184484195,0.045995844843300424,-0.02343432783562136,0.00012404254565819242,0.007890522592727217,0.01056487424189671,0.028788642458326824,-0.001645330449289985,0.00014876594382382926,0.01365403008779184,-0.024460837087636998,0.13056667009362907,-0.10043713955822126,4.572491554395084e-05,0.0058939716696143896,0.07998520223886492,0.24487357084645614,0.03746941104331356,0.003095891920932298,0.01676437273202846,0.029577561098639304,0.16739448798671422,0.015553055294928758,8.789451570622625e-05,0.006601136205550958,-0.0486031203097302,0.2935396242079264,0.08203610272014432,0.00012007655023491588,0.01855073132429335,0.016564083007429318,0.11556209312246721,-0.018950338139089168,6.77954733795536e-05,0.015624962756670857,0.0024077500117326203,0.0133054433324964,-0.00054025851299096,4.548094070976908e-05,0.006713664936322329,-0.0021740902189243366,0.004052076590473337,-0.006885582880212779,0.00026159492279229345,0.010724049811762658,-0.025700650472743603,0.09835668062333708,0.04806322853778963,6.497624767423522e-05,0.005301331566328607,-0.008268459675580285,0.0826950629763689,-0.000506294822490683,2.5797422470106137e-05,0.0002571801905506403,-0.0039851127625399815,0.013381979916749498,-0.03894940888694681,0.00010409484083100294,6.008803737620665e-05,0.002063887879215741,0.008976737093634021,-0.0008994484497506337,0.00036240615540809493,0.002250688285019266,-0.0322697082881854,0.15200222986612547,0.04726656032248529,0.00012159532459471843,6.136516897381548e-05,-0.0012732398922304855 +2017-03-14,-0.007114201179702678,0.045531071832302386,-0.010261994546888704,0.00016523606812306145,0.006468819964528636,0.010330787872847297,0.03254065773329402,-0.015949636435976522,7.617590871565782e-05,0.0064352364795850926,-0.017609115315944765,0.06603252963145748,-0.08085693574737542,0.0001233606948886425,0.005026502033887435,-0.010687380080769833,0.011440445337815009,0.01515527486125828,0.0003152798248632495,0.01107720785254783,0.011902247717539196,0.023365934093693714,-0.011957192974143604,0.0002665284721632378,0.004331707355837218,-0.0037264410538350606,0.010160795099076088,-0.02709328492658709,8.007801553544659e-05,0.004282702106198474,0.04446183998540194,0.16427123281286884,0.03666521148874249,7.941741925289419e-05,0.02626485015937453,-3.266261489102203e-05,0.00026006353571072637,-0.0003586680146917108,4.3069526987070285e-05,0.004417368069124072,0.002227686547073472,0.0022605651363307422,-0.00045423345074205746,0.0007599444426253066,0.0050521779578712464,0.01598249800362568,0.03995198085680301,0.001058599925981668,0.00013988405985099325,0.013083324197683328,0.019725319579866004,0.014215821481610337,0.03311559983418947,0.0006782291401581143,0.000668600112446354,-0.012973540586430674,0.18789297188509493,0.0030624664468892524,2.057646513030058e-05,0.010327181274472661,0.019649988394209453,0.05818282097470302,-0.03767727720774862,0.00010032717001342443,0.013446041116996352,-0.033643743850345,0.19706593979977496,0.07708334001220997,4.805676886425417e-05,0.0005779169741933789,-0.019192147663440403,0.016102417182962382,0.03899563513766773,0.0023246387601481688,0.0028190894465947736,0.056714410416111215,0.3462201257823359,-0.0037067500609489416,0.00013480103279513422,0.027512988966880206,-0.024507094670499364,0.14231256467097286,0.022894936956918754,0.00026665934932925203,0.015188052933103983,0.0035902042038473943,0.023697331390660867,-0.05861076707792154,4.2675701152275604e-05,0.0010610906214404553,-0.012000770238359128,0.0642758144262478,0.009382990891167172,0.000307714768442776,0.009479551839712774,-0.021559844099757936,0.3458559770828563,-0.005122446675871473,2.586905486064704e-05,0.007774215558609946,0.014053460945780064,0.15584186223175286,-0.03535589892354484,3.0128733159445924e-05,0.009412338825851786,0.013956637556853953,0.034393108157470244,0.006815707397435396,0.00013071701764318268,0.02906510589796679,-0.0075757695060806795,0.056381391921048137,-0.06827388851683767,3.103725722174926e-05,0.005045329874479378,0.02022489914969138,0.06802154042657366,0.01009254861312765,6.592001297918608e-05,0.008726874694059476,0.0016241256683923488,0.0062380556380568315,-0.046949846183913464,0.00011904714424616041,0.0004262654868828628,-0.05565721481257053,0.051895181183160714,0.05214938319757879,0.0006130134430905933,0.026224092824324797,-0.01996440928842654,0.06821128528834973,-0.012524346400177785,0.0001231930594477387,0.014325410568569345,-0.0344150792182039,0.11972435504534013,0.021261952618944875,0.0018449535737503665,0.020684370622715324,0.008865019733379227,0.07814555724861537,-0.03701458973222467,2.917142264605944e-05,0.0066086648416036845,0.010686979731359828,0.03108048204084686,-0.018974580581439804,0.001124186872659593,0.006750669600001623,0.007945629296187895,0.06221705602574608,-0.06647018990106902,8.504415786896049e-05,0.006843555865971363,0.011342875486115305,0.020221014286783967,-0.036968748301644774,0.00013239318037205905,0.011759109161323857,-0.019717369482778063,0.0287822673201473,0.018454945647578564,0.0003932130167538312,0.013339914444601217,-0.014392736152755997,0.05814289864595037,-0.012358407053472785,0.0019186556016094855,0.0012017838393721674,-0.01481066416177968,0.05528640106595499,0.0074018338686894485,8.595013926327302e-05,0.00857727425373892,-0.05096764919341219,0.06776385426942302,0.009326997100556013,0.0018697076064679518,0.01426323303136202,0.01844260309370425,0.06459779067149908,-0.03917159110986012,0.00011311510201640368,0.010017174564417454,-0.03220466685266164,0.09529570470727644,0.04114664237928313,0.0001369953609533026,0.015379750701293046,0.004253409050848092,0.017018981714954026,0.007281651083306099,6.0998268070586584e-05,0.0041157967229391735,-0.025131551598855197,0.08844179848083415,-0.02197732388152776,0.002693269387861731,0.004475649357093182,0.028550839853534758,0.15452756014671387,-0.013646820554689227,9.190804139670138e-05,0.002029051617912971,0.014069418852626707,0.082401076997082,-0.00032130267660957477,0.00012382377932153554,0.03568930972633049,-0.009565560191375493,0.05432143785135548,-0.04301821567038539,8.328903890727812e-05,0.0061686887743605855,-0.014926123264219217,0.07529002708962988,0.00646821784088002,4.9826108033286825e-05,0.017464453655986204,-0.02826376272202937,0.05109107760069771,0.01710603088639793,0.00026972071964033,0.00046748036964089487,0.013475324686215932,0.044626345907660674,-0.00257765896560186,7.508657359189637e-05,0.018668294552812895,-0.007637144119864565,0.07742490276963995,-0.06507519499040966,2.5449637636661167e-05,0.014603774492385488,0.014904458905183306,0.04619199982819122,0.05756957338685696,0.00011278683598801577,0.00426596812302492,0.015898133956101734,0.0633581986166086,0.0013852717920637908,0.00039552259812095607,0.00027209159235325143,-0.053035550244751276,0.25676128208712395,0.05894718843749451,0.00011830669971148792,0.019163043804000777,-0.0022655213433625788 +2017-03-15,-0.010605403917543233,0.06330349523989283,-0.027752718279441344,0.0001771683366514226,0.0006504098792372854,-0.033227795732027506,0.11842377624314446,0.06182173284442183,6.732450252585998e-05,0.005801998289921413,0.04522890925386161,0.14357259810908815,0.06681771124356299,0.000145727582161209,0.016245178996776462,0.018773124092409103,0.018117716749583988,0.004807346028973803,0.0003497042750927826,0.02185620839639856,-0.02494013012624759,0.058166844077006855,-0.1012458112088175,0.00022434737181003882,0.009314578309537865,-0.004146628411533067,0.011619152217524732,-0.0811002197705868,7.792331457920308e-05,0.0005442420399251505,-0.019425822035803245,0.07103796449063264,0.00688676146739745,8.023775191394942e-05,0.021339972409908512,-7.153067362040513e-05,0.0006597613782012099,-0.006407564389102784,3.717954243347473e-05,0.003977780945860045,0.019101892434940076,0.01573524529086112,0.01547670579292768,0.0009361547914179865,0.02344452644754509,-0.0020543446659402565,0.004010464927837691,-0.00024362067376212305,0.00017911851187103512,0.018936887828448025,-0.043926526076114275,0.03223485003487728,0.02822956268582182,0.0006660787256570816,0.012572179173692487,0.0078029213236559345,0.10726610500863988,-0.041725424354541865,2.1677914865145598e-05,0.0017883836801607783,0.042945076511607234,0.11937552795100746,0.06895331343405249,0.0001068683522757807,0.0006209900441368538,-0.013696058384444201,0.06829723963266891,-0.025595152077117923,5.644874174346747e-05,0.003150987948488872,0.02125139927056176,0.01708519052342332,0.004298970641013112,0.0024259993340121993,0.0027161699537968007,0.07480432152646568,0.5220827172095345,0.04724420112916732,0.00011790697009466941,0.009658675454832961,-0.020000521229701616,0.11326786136860612,0.011652643712562912,0.00027342791147617803,0.010802640557655726,-0.022984547940565748,0.13503471483229143,0.0013028342915732463,4.794590172226315e-05,0.022711894443164005,0.030945732973530257,0.1673742808438014,0.04323705391915684,0.00030471852483569193,0.0029156025074358717,0.02013107376074208,0.3237522639786248,0.002689021721925978,2.5803841007224724e-05,0.024934574583909953,0.0036256703245236012,0.03813520081649842,-0.06748436252494085,3.1764643340082565e-05,0.008859672911125884,-0.003458208058809222,0.009597577125238515,-0.0032616531249280377,0.00011606793653062525,0.01934243539622116,0.013407242314312225,0.08022160039076283,0.0008446708713306838,3.860472943185787e-05,0.02449637752437845,-0.016680010418586393,0.05131673544242503,0.025261193657862734,7.206338850486835e-05,0.013524516444837216,0.0047550430809419324,0.020242841331789285,0.0031450532120231725,0.0001074067512512099,0.002619930781289393,0.019635015321700398,0.017356560711153355,-0.04606674280206552,0.0006466110679986199,0.00853198523451698,-0.04806773712401736,0.1961086507746607,0.1623977961594789,0.00010316750666867531,0.007226808165830354,0.015488764055452797,0.06380860927985936,-0.05071368409382197,0.001557961278680223,0.002761795045292296,0.0032353880479428316,0.02909730254943934,0.0006512525128726174,2.859274442013913e-05,0.01093000779954984,-0.01362690096446117,0.03755186323303275,-0.11590181809497009,0.0011864156829169807,0.011765165936789028,-0.007958464633537344,0.06065155789776926,-0.025400936082082538,8.738018769652716e-05,0.010202745491115184,0.03158574815266173,0.05186951155362804,0.02836657159035773,0.00014372237860661155,0.0024244158840515395,0.00555517122768345,0.0075871646586279295,-0.03398522920097458,0.00042026367535939204,0.011718234489740121,0.02951349655488201,0.10093318018138035,0.020919508802774912,0.0022664025428850705,0.0003747007410353216,-0.009605780140715739,0.03751133193020008,0.0016417492423847187,8.216001833344402e-05,0.002415942125736563,-0.014256522367803079,0.01867752283817746,-0.012541651683673842,0.0018974551333229453,0.022610701266603375,0.007686639417478151,0.023469653613590415,-0.059581895292732855,0.0001297615024021896,0.00038411271849422726,-0.025392136431129725,0.05854868129427004,-0.04389879488699699,0.00017580956572447467,0.00432031857023319,-0.018962225229324694,0.0858973046237947,0.006265561518435974,5.387951645497207e-05,0.009871357835875982,0.026807623659082912,0.08112880631429022,-0.011520902949505763,0.0031318524269988946,0.019805350229726328,0.04650587881940369,0.22208496690891613,0.04852429799557116,0.00010416678600272556,0.026864209935071173,0.001305975577205251,0.006359206283174258,-0.025823661297704262,0.0001489336820796446,0.004695938148051658,0.03644300735458987,0.2554299214980514,-0.00019333733034348116,6.748249598243865e-05,0.011163878206188624,-0.029746724367023886,0.13606431754078943,-0.011857785668318067,5.4946786272871016e-05,0.03300201960649835,0.0075891851241175175,0.015848347873713663,0.0015668056038244918,0.00023347508671377556,0.003292873789262337,0.009227052501991944,0.03637005429801255,-0.015154133263145174,6.308606196782139e-05,0.015456799989444336,-0.02579595906356663,0.26987959084742347,0.03434470708015108,2.466112709847369e-05,0.008132699222044576,0.0165642369143922,0.05259956103591595,0.0283094151261683,0.00011007742918183399,0.0064313760350158174,-0.0003482794395514563,0.0013009827298031092,-0.013795800974001498,0.00042197262390647645,0.020030365849701595,-0.0019426165188841766,0.010166353021271399,-0.011013432268980947,0.00010944443589126768,0.001906974592233523,0.002846180693605373 +2017-03-16,-0.01450905475538268,0.10450567993941619,0.012999013340254561,0.00014682019899804914,0.00042573823412123276,-0.025727494289816737,0.09026126522172602,0.02934177381859418,6.839220411063428e-05,0.002137776811426256,-0.005437239709076618,0.01781272900087898,0.0016331145921667618,0.0001412034226517875,0.0031480348907640837,0.00324712161641095,0.004119010482843352,-0.045419327835957334,0.0002660562796429998,0.002824294555009812,-0.047743292783043595,0.1186478801142753,0.0814131826895361,0.00021054753321683083,0.012984323574097656,0.025574582775335072,0.06313265648842428,0.15630368671677144,8.845069164790566e-05,0.002453409262768649,0.03362606671000553,0.11502774528690252,-0.005417682198339111,8.577551186096029e-05,0.01646870659895509,-0.012355541268199988,0.1051336463668604,-0.05282245081251606,4.030126355908173e-05,0.01333860645227184,0.00435876394219478,0.00375686448510733,-3.386462473794554e-05,0.0008947106489238498,0.004917262146419552,-0.032376690781736876,0.08905510298265112,-0.007680327518471024,0.0001271263370623731,0.015662111595828816,0.007515068443215547,0.005874963643753966,0.002501077369300722,0.0006252477176878274,0.003781282921559648,0.002811548641060693,0.04046010510047289,0.0032611729008158673,2.070815391505818e-05,0.008440332577266554,0.019551975672938968,0.06893209711648336,0.01253270416581747,8.425975555350456e-05,0.0003645270472573171,-0.013518343461713414,0.07928048860516144,0.0043484344449565525,4.7997539721851075e-05,0.009019138746014444,-0.006527054466496608,0.004838256722372302,-0.21481069004486708,0.0026311844911835074,6.280457870627481e-06,-0.05037597846626279,0.34563084521385945,0.006548028984835729,0.00011993974165226349,0.018036765692268655,-0.0423959023156324,0.2664861543861398,-0.0028838282338175094,0.0002463527786435364,0.00842912967996332,-0.029674897722786586,0.20633495177052585,0.015031435059917497,4.0511412510256726e-05,0.007941187802489532,0.04600505829900739,0.22011385962493427,0.08572992301379714,0.00034446492272300234,0.012400527541453186,0.01516064788812582,0.18293527709463722,-0.0033131692620517227,3.43914534159959e-05,0.035267913967159205,-0.01352407427994634,0.13512772085459543,0.020826604703334688,3.3438347344798656e-05,0.007822882151682968,0.02459709192634631,0.07392032405836924,-0.06281638220109177,0.00010718713378419442,0.013964281678783974,0.02830203576764742,0.20606148893945536,-0.043718144351094314,3.172584645224134e-05,0.0032580712127375814,0.03030255528047384,0.09153396261386439,0.05400589533285433,7.339633438408158e-05,0.012891892565283617,0.0012296547310101874,0.004721257507660128,-0.027276354796242044,0.00011908967010531062,0.001870588036190116,-0.030047235316013388,0.02486035968653443,-0.04872376728722247,0.0006908323586048276,0.010113214024253154,0.032675232731026904,0.10732900660766852,0.048709739806454495,0.0001281408465799094,0.00067217318577125,0.05645695692343359,0.16342631571169897,0.04807762214437785,0.0022172499319251353,0.0008713623463797206,0.0019786372567716336,0.020866373458698743,-0.10867294288978668,2.4383800796185355e-05,0.005160031463791136,-0.04099406548996831,0.11503479846628951,0.03635933992677695,0.0011650995228241227,0.01956226535833688,-0.021271064346483542,0.1851421638172803,0.06189197763618559,7.650847217028514e-05,0.013931887765461882,-0.005845982589503506,0.010620773118820762,-0.03030338155963565,0.00012991125323201549,0.0006519125789674132,-0.006148333563198577,0.009229420875667397,-0.04681400446569536,0.0003823727055226426,0.013293076383142796,8.177265408264341e-05,0.00037389218102790785,-0.024906183223902666,0.0016951652924150947,0.0069348014476136935,0.03802762093356417,0.12177897548359033,0.07086499978852992,0.00010018834681945297,0.01737671322717658,0.07592046004907403,0.1062186895372835,0.07043555970293666,0.0017767858374345912,0.011560819114467895,-0.010795652258949509,0.03598026535276883,0.010066770449005292,0.00011887774587809612,0.003025185558103676,0.04813280463462436,0.1381904622006415,0.05977912954447157,0.00014119635154466085,4.987708328632937e-05,-0.04342903769162421,0.1868141973628211,-0.039355391406444895,5.673933650936807e-05,0.0033467563923042956,-0.061000312048774215,0.21258432035416386,0.04076584243254772,0.00271968675122811,0.027233750820969876,0.043417491192649524,0.19588001512192185,-0.0016860907941699547,0.00011025928368403926,0.009560083476982966,0.012692939255775568,0.06576343226285436,0.0031014187563454267,0.0001399711448051228,0.004499198054023364,-0.030839129773645654,0.18548980180157815,0.058194386467338766,7.863769517334806e-05,0.004021698546163016,-0.0772257545607326,0.3377782745154996,0.06482530307914679,5.7461616916306415e-05,0.012672499921323582,-0.004165197989209974,0.008737863778059182,-0.013001389454078246,0.00023241265625761456,0.014972646279205559,0.01019597716934442,0.04750507894140417,-0.007283079167656521,5.337073528628761e-05,0.0124066009895968,0.003844056080064705,0.03769359077048302,0.0023185264256070062,2.631197750064877e-05,0.007969546818112303,0.03136551726056709,0.08935899939311572,0.1576700410009616,0.0001226939424239501,0.01330013931223082,-0.01422082200541576,0.05423935726254819,0.014031964719970529,0.00041327405076712454,0.012410040292818298,0.01256900975722474,0.06764898454119884,-0.04494225126540222,0.00010641713865855761,0.0001489042211444238,0.00019359332240782097 +2017-03-17,-0.006082627446187532,0.04143307646382069,-0.06563665771412769,0.00015524964640220844,0.005170495108426204,-0.0636366725367458,0.22451848777496575,0.18436579189438693,6.800892046540678e-05,0.012081371790406154,0.00029901421773572225,0.0011718214943392728,-0.003007985772488516,0.00011803956043866873,0.010043430956963032,0.0021539403082042967,0.002491664719851313,-0.01718964712439443,0.00029175070687183365,0.005143660533735612,0.0043663583532178064,0.009323848530976144,-0.011317701023811393,0.0002450315112940597,0.009223541527880338,-0.016167870799584365,0.04470598735767332,0.02812089570327404,7.896486165752655e-05,0.0032819091446913903,-0.019937215655049283,0.07196133753134783,-0.025917312855022436,8.129337137040088e-05,0.01871549522439007,0.0128242080626554,0.12296670724535134,-0.027047097699627827,3.576363271803316e-05,0.021438595205547337,-0.0014779780179629892,0.001086166671132819,-0.003262765567180166,0.0010493401471948908,0.011513646535092676,0.015946804418726705,0.04095003563208053,-0.0012227539451956798,0.00013616994755882676,0.008889444462651672,0.004046098352730781,0.0028054060169203144,-0.0029097518873707384,0.0007049609643293598,0.002080168364800218,0.0071401698118097765,0.09695406188610425,-0.014740196498611371,2.194650263101156e-05,0.0025012882559913236,-0.010625761950898694,0.025453511471796558,-0.051758312937835504,0.00012401191546476502,0.013636047401073777,0.015290940405619166,0.10223183438580256,-0.08413090123499614,4.2102691556128793e-05,0.0049332581982953014,0.01420151942410017,0.01286741391231345,0.0037163485912496855,0.0021526157491441036,0.003726048308251631,-0.054149658739464444,0.3743240367065969,0.03361128884362672,0.0001190419729596835,0.007240938328289398,-0.011239127069703831,0.07147227309689169,-0.07029039037669381,0.00024350238467925632,0.008968624636383133,-0.015006739056294243,0.06482939784623971,-0.022213022268917273,6.520415920264238e-05,0.0071000626842472585,-0.0009008981868658752,0.004609293760501239,-0.02135030026952097,0.00032212774526689807,0.006372134310826953,-0.041826979184808454,0.5998086290516453,0.02771065951315129,2.8938367133446274e-05,0.001705522583087625,0.0088056290936089,0.08091645439644697,-0.012155853719758743,3.6358440989892674e-05,0.007861900936647206,0.007641396136450394,0.022314065574126435,0.0007425772519084312,0.0001103104776907203,0.0015639971880838128,0.02220402563896874,0.16365625967241643,-0.008865598778828296,3.1339457544313776e-05,0.01870325059890912,-0.00875412782035094,0.02503203041838293,-0.04589758357256788,7.753435670559373e-05,0.0015926287389931237,0.0049454340266281505,0.018023935844906965,-0.04127060596184642,0.00012545944886209104,0.0031388716204209816,0.011602698575693382,0.012101252651767945,-0.03930607723185575,0.0005480298863587596,0.002593737544551956,0.017884576172150626,0.06375747641010593,0.010972142770465801,0.00011806836328635663,0.008290075496110572,0.041787979992494825,0.15768256806632552,-0.04755922358112014,0.0017009316737995085,0.007909606357470851,0.013812463969783847,0.13581408682917398,-0.1364765237269872,2.615221846632596e-05,0.0033317395680651923,0.02279358455590965,0.06078219373288539,-0.015262602427380336,0.0012260481538570191,0.013250394907746882,0.004900551720640694,0.032517759306954705,0.004639037922190202,0.00010035754023930528,0.016940673551509768,-0.011544788746242542,0.017603124232931013,0.01136371939074461,0.00015478954463567156,0.011148243809563141,-0.04475600641612843,0.06607306494735685,0.015118786911450402,0.0003888040572640533,0.0012805220755494084,-0.0003212011943502707,0.001310625515405372,-0.0014341944942761974,0.0018995418842873428,0.0097176617581339,-0.016554064304740577,0.059518851369829096,0.008183788306699353,8.92360764656767e-05,0.009004625008132124,0.05029532007833296,0.07223058662226473,0.007851870087012543,0.001730946425066533,0.006026664956354171,-0.01390554510998118,0.042641128368704484,-0.003122595284134807,0.0001292038236444823,0.030323475863975644,0.004339058984074792,0.010679447373049352,-0.04451860241693576,0.00016470513904669908,0.007714307541207722,-0.01388391764905113,0.05834323800059702,0.00013996510200027138,5.808117927202613e-05,0.0057904100734374134,-0.05478461511336314,0.16705478112621974,0.04491622925051838,0.0031082630315398506,0.018447140402715202,0.027604236744973705,0.15167569461149902,0.0019117370950447032,9.053162621094033e-05,0.0025551403810399665,0.02061190275291188,0.11113541089567372,-0.011215091582294707,0.00013450127760556804,0.013997918098356982,-0.04236696018741516,0.25139053456299293,0.05527272528799959,7.971261965958578e-05,0.005288338833794419,0.002519954455489976,0.010820858592936276,-0.04642418381936784,5.852997852876398e-05,0.010116786609328854,0.043495367614990614,0.08533441233967579,0.020272898486238148,0.00024851247681918694,0.002020556602182078,-0.01305502053539457,0.06408924266425575,0.017219435022172845,5.065318933962407e-05,0.010677951915857482,0.025716695247762787,0.2995555607654371,-0.002484046165551763,2.214976168186518e-05,0.00013442645003391166,0.007774531922381777,0.02750661612360832,0.007114880868907483,9.879752135614272e-05,0.0011129650363123893,-0.011843759257105404,0.039839517321859134,0.011089038235065988,0.00046860128366343185,0.011297513556550436,0.014964359050625396,0.0806748702374237,-0.0021797870855317695,0.00010624087538232793,0.0019156079045659468,-0.0007801872383994035 +2017-03-20,0.03492375354213345,0.29375439438380363,0.12777844346702377,0.00012572542910078234,0.0072329137801047235,0.016312538072666513,0.04856467490734723,-0.06283240847519,8.05956456905059e-05,0.005787325184104267,-0.005749885932746742,0.017358089652799596,-0.0789958120035679,0.00015323377702425344,0.010182886516678832,0.004259677221157347,0.004180636137407604,-0.012719396404645044,0.00034387624640210674,0.014475803698455948,0.01302249270911244,0.029041176713483743,0.014767944723391761,0.00023462683692150664,0.013893015788767313,-0.017701525958549125,0.04193937399400567,0.02735207208288314,9.215852227822781e-05,0.0009281603806971902,0.016873505188465285,0.05421458444470367,0.0025639570021343187,9.132276060037427e-05,0.015772869059332766,-0.028889614327406603,0.23164294281955417,0.017265776144109207,4.276823078727359e-05,0.002499612794616038,0.005517492716205801,0.004676887133269322,0.0018757406174456936,0.000909765923836701,0.016634776318428527,0.0004310357235289969,0.0010166613060654558,-0.07812141546333849,0.0001482514183194493,0.0005723666598266475,-0.02256138929323086,0.01437186985477034,-0.0027645259834148945,0.0007673207131385286,0.01581875387866091,0.008408967359696656,0.10756192959848912,-0.00635051431989974,2.3297368631995816e-05,0.0007564008804173236,-0.02007817766557202,0.050365845004522035,0.015298722044060315,0.00011842385818685607,0.019335123462406255,-0.011485204595501293,0.06098614589005491,-0.014742073167706675,5.30114112540237e-05,0.0018172335133920115,-0.02791151381693469,0.026088787884299483,-0.0653318560788876,0.0020866637069190605,0.0014614927172845744,0.022059717990384715,0.1607230483607298,-0.022650606670120987,0.00011294679272040235,0.011427364917876603,0.006538968714144371,0.04334225584876567,-0.0004959599334473819,0.00023361782696721203,0.023364110989492547,0.01948393460235744,0.14969241818500137,-0.05809745671386845,3.6663828687984395e-05,0.003126169364207056,-0.01561230830910221,0.09656300723137386,0.007609111086409121,0.00026646682307225974,0.015778570067738897,-0.0036338925503251944,0.0442654057880328,-0.03106057943459462,3.4067311616522046e-05,0.013515739571897951,0.007543611588455861,0.06317461620235301,-0.006852166617162215,3.9894995084178124e-05,0.004527937702870924,-0.027681064372029725,0.08996981993026454,0.005195923281505362,9.910799490338766e-05,0.04114989532229749,0.0410685268267232,0.27126367071259716,-0.006836304931096573,3.497114616087134e-05,0.0028727499807541957,-0.002760500392584487,0.008572641204917816,-0.0034791572704252496,7.139216431698268e-05,0.022301539540808768,-0.00692784185943533,0.02548672117351297,-0.09492332622513948,0.00012428897126842497,0.005015712102204772,-0.006283383872327734,0.00607052005179982,-2.5674394228059416e-05,0.000591620557540519,0.0044319650998590416,0.01922346960947503,0.06634834884905466,-0.022556917918449586,0.0001219516456179102,0.03187761277176558,-0.08329245187446106,0.261182540003197,0.12049534421788255,0.002046824846175008,0.008151606808049215,-0.023100825822268963,0.19086277781257513,0.038768985870316505,3.112350221327536e-05,0.005578686638972941,0.028227032641017506,0.08653707113789622,0.025438594071717793,0.0010664347860481077,0.006536046754179975,-0.024970593117897354,0.18590714913212486,0.03859427143775403,8.944548232731445e-05,0.0035607548099796113,-0.013588131549703994,0.019591091979348156,0.016105794696868823,0.0001636991729981957,0.006310972517298585,-0.05505831465745082,0.08458873815536636,0.1268198642396902,0.0003736063772610193,0.013680036450878404,0.03338677404180969,0.11901509968478277,-0.07896981773321082,0.002174316363771858,0.011806223928262801,0.026975313870901418,0.12230000447078461,0.023058262716448376,7.076693791780883e-05,0.02102157746818849,-0.0028260264146605977,0.003646466286200159,2.8863729913331255e-05,0.0019265540867457651,0.01907114441735828,0.008404645091815195,0.022691883535392626,-0.012897834966056062,0.00014674552608434822,0.003918515201992532,-0.06834323335029352,0.17515621446214724,0.1494640009130311,0.00015817226992819662,0.0007516409679230155,-0.005660550861960294,0.023964399042141357,-0.04684001409443635,5.765089839435315e-05,0.004131758260376695,-0.0034959077036077137,0.011641806702291167,1.067090791684187e-06,0.0028461489984708183,0.0045704433318707995,0.0011804189571115761,0.00579355579558584,0.0008467276454163839,0.00010135182012191677,0.011576991914268022,-0.016205035420037293,0.07639784403272608,-0.02830932799918298,0.0001538259713545454,0.005913414803223691,0.025812230190131874,0.13313409089632106,-0.09444154995566997,9.170329721361333e-05,0.005415279055998476,0.021394656017357166,0.10137362223521237,-0.02159111613696496,5.304295841866221e-05,0.029428095356475822,0.04206366843381169,0.07832200331141227,-0.06682007882338388,0.00026185010492298517,0.0017666830407029855,-0.0066430475039154935,0.027415532413829408,0.0023737401625805845,6.02538843543039e-05,0.02188373218573794,0.022877387082914754,0.2683458958705298,0.046444007396984906,2.199595124751689e-05,0.016020729333029074,0.003961232889132054,0.012630819566447161,-0.01797202044395451,0.00010962454644969853,0.009458470515122712,0.011666695611120177,0.048879895222402985,-0.005165160302763843,0.00037622319885602043,0.0008750216766599983,0.035335352530019626,0.14663896476103672,0.038888568749161745,0.00013801676336745307,0.030555450402970835,-0.00024344347294245997 +2017-03-21,-0.01976673430733298,0.13243796239091066,0.002326996853770127,0.00015783707292013472,0.0005325086072958379,-0.03488817274213792,0.11800768525340886,-0.0007617090203120141,7.093792142411156e-05,0.022938028878876724,0.03280486754643237,0.11131633471796444,-0.11973054617714413,0.00013632534174906315,0.008075693113143021,-0.025209564712524796,0.025033344109132726,-0.1116341516017599,0.00033987117578392095,0.013315724815176351,0.024746345413730803,0.05783670137739902,-0.010008874662434518,0.00022387485995369258,0.007449631353507107,-0.011982647619361667,0.03421265119454554,0.010546993956369429,7.64738223948938e-05,0.013525781781759727,-0.030030368840932818,0.09850687078539029,-0.025757447431438346,8.945075247190378e-05,0.004150455856515436,-0.0034431360918652583,0.03117640410200394,-0.0017951224744194778,3.787274477964305e-05,0.02379598536841744,-0.024872988981252533,0.019548804130894316,0.007623330649107528,0.0009811887698769328,0.0053645693469259546,-0.027524716550209296,0.0642470714781309,-0.02150145308957616,0.0001498067579540725,0.012314643195060574,0.015795637548456493,0.008837447468246775,-0.02456229813854123,0.0008736443502050518,0.0012621699893823157,0.013716478693475663,0.15998107478319953,0.04460961477044468,2.5550347578245734e-05,0.0032768031347994095,0.005466270389878898,0.014063214087836116,-0.0020601709477143727,0.00011546691429437267,0.01441532261360864,-0.02521677660844048,0.1393219339990536,-0.028655555493480096,5.0948557799890845e-05,0.00474762680110888,0.013610431701516247,0.010229448046347586,-0.003781874488205376,0.002595031728385365,0.001214790805561483,0.06233335679275761,0.40993185654149294,0.026214352278731156,0.0001251298585428761,0.010874392684902253,-0.03326813380004378,0.17938356357900037,-0.06383916744163391,0.0002871798895154344,0.013750068699014961,0.019465183253163813,0.12276385716185631,0.02695879094436649,4.466310657563355e-05,0.004764295236870225,-0.013086504822333624,0.06744583572816318,0.011389325886670843,0.0003197829735597589,0.0189434570482507,-0.020374830310646554,0.25454570519492387,-0.03402503918245401,3.3216850961628435e-05,0.020045656417542967,-0.0014659137840170977,0.015122240044203821,-0.02101197657296741,3.238724525500792e-05,0.011277666545366804,0.01119726472438136,0.03184835247163569,-0.03957611945117883,0.00011325248252932389,0.009988913407014688,0.0007530360850081177,0.005816628844417732,-0.0007443422661518475,2.9904518304997954e-05,0.01594551884365272,0.001722831676184936,0.005466653756822186,-0.0028219522251561307,6.987127411142243e-05,0.008963573366662186,-0.0015692845672597082,0.006176727652727342,-0.11930422059657038,0.00011616942687956425,0.0011473453303637473,-0.0066611459993797615,0.008401595460537106,-0.0011753103652648487,0.00045317166541056816,0.045673468856663534,-0.026918702438719647,0.08647296488468566,0.009210509858383007,0.00013102669332843166,0.008222349146708543,0.003578898534868717,0.014289579038253092,-0.05734291032457217,0.0016074931304275147,0.008718724323112794,-0.016680586825011154,0.16482022650137337,-0.0002599429224622546,2.602453711993781e-05,0.002756286702937606,0.06746084796487452,0.22316518600636454,0.05052575730619158,0.0009883178072835864,0.01943241680498781,0.004583609792547523,0.03577182744371347,-0.008940560727498704,8.532811559841255e-05,0.006875572368249034,-0.010954308219713906,0.01875238776097974,0.008429697519135733,0.00013787126741708337,0.018328358254978104,-0.010537085543091913,0.01670080488974545,-0.02762038162477338,0.000362148772307903,0.027523155436664542,-0.013947390969844818,0.0514046722002344,-0.004613757254468579,0.0021030070190786085,0.006505718532226484,0.031005559018982467,0.12210217354116645,0.017540443238780214,8.147165553779017e-05,0.013495000466356802,-0.022080797692740083,0.024589362165582437,0.0029999996197135922,0.002232259536368004,0.0034549518347191865,-0.056625025466302874,0.15887687206128764,0.1685042438466218,0.00014120945144155959,0.013327929872144463,0.03859690716348091,0.09879049348255999,0.04593081544665679,0.00015837904742221331,0.0035425550299759915,-0.031308342986654136,0.14289697333555287,0.018799781763304223,5.347502271792917e-05,0.0071449136515028145,-0.015327413456987071,0.049810090453300614,0.0030188205484154014,0.0029165511687437103,0.021659631719727342,-0.004007612584352994,0.018256281360383486,-0.048111803496360295,0.00010919782345255173,0.0022605216691257285,-0.017231580620371154,0.08954797809317917,-0.015675518477101667,0.000139550088530265,0.006055746952106953,0.021600373432530618,0.12140936436496552,0.003930399427919292,8.415070770969506e-05,0.01992378102786832,0.022451318833019752,0.09864541678003642,0.0026847706020798135,5.7202148382100185e-05,0.01087029520306841,-0.010584402411410206,0.021427727266391496,-0.0393421704136777,0.00024083501382568163,0.011426500379259717,-0.01483603574951172,0.06104492815560141,-0.016726572840198777,6.043418366271035e-05,0.00918542978799657,0.0012477512379099182,0.014476707968751341,-0.0025836703711474085,2.223768024270773e-05,0.016819303028692178,0.008862206118624314,0.02682000523222449,0.007093276722582981,0.00011550265121323121,0.0026024733353744844,0.0017684720633966884,0.006833396826484429,-0.02090820926896512,0.00040793365154477026,0.002143750248442359,0.005840628629105978,0.030444132991038125,-0.028638383371392954,0.000109882309411513,0.01759326060924684,-0.0027641450973100975 +2017-03-22,0.022722893475104942,0.17390625980124186,-0.005342914358912022,0.0001381767589071864,0.002403755412676378,0.0038600136555006254,0.01290056350126147,-0.016135373475017718,7.179441924714348e-05,0.014665876552963404,0.033947770561186925,0.11136546308413871,0.05599857534818583,0.0001410126049608689,0.0174278788973781,-0.0014525515053405316,0.0016945864506346276,-0.0009761340876204143,0.0002892914960967415,0.0034015776475024087,-0.008546873603373192,0.0201878541081508,-0.0004280595875681861,0.00022152099636867017,0.007209912768485571,-0.000886495235408785,0.0025008746596896026,-0.04400260619927962,7.739826395184844e-05,0.009193126357269267,-0.006263372990045165,0.023545705325487866,-0.048947491197593,7.805242952445293e-05,0.009989830972532417,0.010235199300425438,0.08120400641248161,-0.04107771073343958,4.3223254233335186e-05,0.005694428078467907,0.015958551620275464,0.013821168203564466,-0.01889803396256364,0.0008904171311477985,0.015786740126718116,-0.04463497670736802,0.09470842819175924,0.028816760238748938,0.00016479672239807296,0.009226988947740893,0.019944546987225757,0.016051936780818333,0.02862571874893719,0.0006073249092928616,0.024764099231722004,-0.012185694313201274,0.1700154659979731,-0.08088661392328943,2.135918309475949e-05,0.0037205765268769064,-0.033390916032260076,0.10286450416920613,-0.019035912348819753,9.643037025883615e-05,0.01425912941883874,0.00864384524908773,0.039863846190085116,-0.07689934811710732,6.103649731724128e-05,0.008956353578265613,0.03095994916634038,0.022153802668239318,0.0448641302848961,0.002725680383055923,0.007776774035265457,0.029955178101515142,0.18023716946450477,0.0015784946437739254,0.00013676647557822177,0.017970445465608303,-0.039838131736971046,0.229894672709957,0.039245050173863795,0.0002683355959996839,0.008635543694385949,0.01583763855513087,0.09241715596963337,0.010997410030244974,4.827238802770279e-05,0.0038248618062684814,0.024873195153746402,0.13347835665216298,-0.002909088270711788,0.0003071196001418845,0.010931606111403223,0.08136442018338126,0.9160435501611944,0.10006835560078775,3.6859432465809854e-05,0.040171920366546494,0.012327095365904562,0.12125099555094071,-0.001291363062633925,3.396699691269937e-05,0.0032904421372843325,-0.0181869835545079,0.047651814752274084,0.012820381660140018,0.00012294305060015084,0.0004934639071743159,0.015634898938618986,0.10914156003656172,-0.01957379624270533,3.3090040393132405e-05,0.010703486276931741,-0.016776137006281545,0.05127177097466395,0.010735798377145217,7.254225103569901e-05,0.009376149805793745,0.017336873319316312,0.06235983902525853,0.06723465713947004,0.00012712014687161647,0.004088037601961693,0.04422132635526141,0.046589573582613175,0.022840880819846483,0.0005425235443048843,0.0030127067268719138,-0.02113870128097464,0.09318269476686905,0.0199601974370153,9.548365720562627e-05,0.02167078241812781,0.028912975627558034,0.10171896707671228,-0.01141787188182899,0.0018243578234052472,0.006094836403705816,0.011659903733301996,0.12960216151082937,-0.0014746047009819214,2.3134755569467048e-05,0.0026915532408050592,-0.051525629790256065,0.16730655755340165,0.07195679061419365,0.001006889043700485,0.01184523746320517,0.026064213561041015,0.20375695684811376,-0.004307876960301694,8.518395949464515e-05,0.003994351561915149,-0.02247450016495642,0.035388444590047,-0.030006487580383982,0.0001498904465022973,0.010050420353202708,-0.039758691802485785,0.0583291451164231,0.05237016072062826,0.00039124643076254807,0.0100697373930776,0.015597070946769258,0.05648810440804167,0.0007057166910216866,0.0021401114353625994,0.014289695042913374,-0.022176079204597434,0.0855176480354138,0.01986118569179124,8.319924521431798e-05,0.005424267538469943,0.011410630598379197,0.013736822475349096,0.0005907705160219474,0.002064907263782258,0.02039922267562166,0.06254830759882901,0.21531491944927,0.0666278358875586,0.00011509527000400385,0.01663688732498001,0.036825573551782974,0.0867273153281074,0.02903611694853831,0.00017212897905889352,0.0035751340467302566,-0.0035527121256151307,0.014755531377403805,0.0026861685245822544,5.8765047202026505e-05,0.024753677564218094,-0.05872355582435291,0.19374910351234478,0.041969727572822094,0.00287270282413826,0.03208161333534937,-0.050119340927762705,0.2202759717860119,0.13038581683182396,0.00011318237326061284,0.017454364933072394,-0.013498632733465188,0.0723672038118997,-0.01138583634308629,0.00013527226859443118,0.012502301890854049,-0.02230504175166425,0.15249957665584052,0.029990803989623675,6.918040516218836e-05,0.0038205269681957105,0.03818767596333961,0.15356819840433034,0.01774021145379738,6.249846260670375e-05,0.010248635669764167,-0.01354676708582522,0.0257528171531474,0.007533368187384925,0.00025647220972820593,0.008933125666102855,-0.007486152342060698,0.030733111462595754,0.003213877540418879,6.0571245717678904e-05,0.011523162854929558,0.028227281079634806,0.3241341409706307,0.05072776540940019,2.246857635791399e-05,0.0055124327069473395,0.006185792722292193,0.01945745699726355,-0.06099090517671394,0.00011112665668711246,0.0038261665044445484,0.010693715407061167,0.04806453192197758,-0.033455339071955095,0.0003506968585737758,0.004886774145339772,-0.03533118265495193,0.1392429083042938,0.05597927239677109,0.00014533053936843297,0.007054015724294814,0.003047611965410262 +2017-03-23,-0.038694540382410825,0.2610005508420626,0.1324582561746316,0.0001567815134319311,0.005507678998871895,0.010729752119320854,0.03777299101193997,-0.01670387411282246,6.815831419613052e-05,0.0009013749719736754,0.03222063099624644,0.09951626555046453,0.03161799969020858,0.00014977425754880862,0.00040380655960515826,0.025097995297769644,0.024905299698852405,0.05698221164791648,0.0003401066453514028,0.0018917361426220862,0.0190974123350355,0.04308732907426673,0.019490709371898896,0.00023191173437704787,0.008470881555844034,0.007529152298206266,0.018716922878785916,-0.011567322526611397,8.783313233505319e-05,0.0061591380738732675,-0.03613230013095938,0.11937921291532504,0.03351837758925838,8.880895360979091e-05,0.015440495373480433,-0.00792077927699533,0.0702564676346633,-0.04523979737938136,3.866163490096895e-05,0.00933210066789014,-0.0208129074810701,0.018503605006549302,-0.14909738570181402,0.0008674035420403803,0.0008895620230968192,0.06895403716094814,0.1478289198540118,0.1309746686642453,0.00016310308717252468,0.01199794243098239,0.018583844386813462,0.013800484157213366,-0.047221467321917204,0.0006582116966679516,0.022363828635910087,0.002328075198281828,0.0326333068799932,-0.0008017625420709132,2.1259777186375288e-05,0.0003507495163032374,0.028657165714810633,0.08369010618895156,0.015106452344502239,0.00010172089062752255,0.00363595186238473,0.0008178645294139905,0.0040913524886159675,-0.02854755634340153,5.626991953617528e-05,0.007899187763400022,-0.01566290759797506,0.011678367420982909,0.04161909834990502,0.002615852330580209,0.009649980837043194,-0.029504958815930744,0.20028631956076678,0.02286909483382426,0.00012122601650890757,0.009129868467850527,-0.03729658692865919,0.2346224712449965,-0.012086617437007431,0.00024615446492039304,0.004881855460216379,0.005462927538578832,0.02869972471169799,-0.01549087269872663,5.361775982236948e-05,0.006209418546324163,0.002995837230331416,0.01577483214523711,-3.4742406023001527e-06,0.00031299707159272147,0.0010477474586040188,0.05134860608077029,0.6643618237258443,0.013800851618363915,3.207408097636511e-05,0.005811361736951613,-0.008215911551366775,0.0878534430582819,-0.0564263064537036,3.124486681022039e-05,0.00171962093846015,-0.009724198046168074,0.030975583936410523,0.0031939572152481686,0.00010112465403451824,0.01423243046763898,-0.04652632775518132,0.2830933374595059,-0.02850026792069816,3.7963085529352917e-05,0.006623432249543375,-0.005056817470493208,0.01463326488885072,-0.0006275524000056529,7.661493295139892e-05,0.003854766066046741,0.003243557479441386,0.012933670254747336,-0.15714196594230068,0.0001146696296203727,0.0028811873157387775,0.025441701903541437,0.023512569687959936,0.005342203514150256,0.000618474253950567,0.004613560985011226,0.012737433062102602,0.05553187832069487,-0.0934914280310236,9.654406044602273e-05,0.007008026103899511,0.03076921359473899,0.10909861049094527,-0.0376776486840441,0.001810157449679203,0.004392679870944903,0.03033857117981169,0.29424996850354035,0.05341622394743951,2.651312343485408e-05,0.027125988517685627,0.05015089999573265,0.130821397550117,0.05585034287179151,0.0012533466847480987,0.015831144596495345,-0.007844811040234899,0.05082821713598,-0.00267763767985922,0.00010277873161788624,0.007834683483781683,0.010581145130955224,0.01605819247807889,-0.03420574373339137,0.0001555182634918385,0.010317899759870776,0.0262134547412899,0.04338714915185813,-0.06942267138473994,0.0003467903951463949,0.01659939640270645,-0.01915572780451279,0.07071487434158417,-0.05690479232947876,0.0020996080269520766,0.007082302890034489,0.014361555431414989,0.059865949684839305,0.003529652514669945,7.69683139106892e-05,0.0015625496201355153,0.030302513483954074,0.03982661540516086,-0.013186651354549528,0.001891395906344661,0.0322581138503896,0.01877174468401683,0.06310514964058833,-0.023890066447268897,0.00011785713356671473,0.012718936117231397,0.013370055823262969,0.03481972962973807,0.005298179274269472,0.000155656837321483,0.012431869602482925,-0.030733828579383424,0.17125394375018246,0.0021623036281431885,4.3801603358852785e-05,0.0034926781007316525,-0.011078423333575716,0.039759009732596905,-0.012220377295045983,0.0026409516817812125,0.005306216560845135,0.045811480994187394,0.2049297994000935,-0.0037244593556168474,0.00011120128034834906,0.010104998523548807,0.026269755370463,0.1271969230247407,0.017092977813424833,0.00014977530318241905,0.028937043146748994,-0.04180145576227015,0.2569293096265383,0.07902034628970162,7.695315947508393e-05,0.017907417030447906,0.052105160061710384,0.22858769380481608,0.02650153561342105,5.728953313859955e-05,0.01856419796329024,0.014823258623315573,0.029084423881915466,0.0004378794763215089,0.0002484921160947215,0.004366871973848703,0.023397570862065346,0.08804260432822754,0.0010723168549455586,6.608338282125574e-05,0.008455456627151093,0.0013352305460643367,0.013463533413397165,-0.0531173537345642,2.5587537497057683e-05,0.011994781168266395,0.008676042121122194,0.028210679175958184,-0.022239241789271853,0.00010750213126257916,0.007652354578455804,0.0005166773041139509,0.0022625110549843903,-0.030159174113769803,0.0003599619914854457,0.002345363626976497,0.03443847311260991,0.2040493089566818,0.02198870763732328,9.666751527723123e-05,0.017653396752576954,0.00786747263359467 +2017-03-24,-0.007466649759625702,0.060060609038035576,-0.01664604295465902,0.00013146877986099816,0.006106537851495741,0.017396241034189554,0.05595107911539228,-0.0024206759418625087,7.460320336529382e-05,0.02092160416272559,0.00019398931835689807,0.0006258740686810308,0.0004220575017991816,0.0001433798307336698,0.017292606381556157,0.019423838438468764,0.01785131620297143,0.028178879395015406,0.00036722536453000335,0.0019227589918437964,0.012031585589708349,0.02371400914798825,-0.03999607505219154,0.0002654701248728155,0.007438792945180304,0.009018383275812796,0.024019643558674517,0.02482013327424265,8.198018047651731e-05,0.002345894236790924,0.04587240240345601,0.17446060067041588,0.056632430510188715,7.71514294701652e-05,0.0036215455752351172,9.08273792206584e-05,0.000827375556819275,-0.0024731410371194155,3.76454689161611e-05,0.010923864204549053,0.026219612955247076,0.020155292193164608,0.05956106887410394,0.0010031871592779099,0.013021248357409821,0.023535894402515363,0.05994115051007275,-0.002299402437489461,0.00013729904571237842,0.025736098666618527,0.030417025076058736,0.02696316932122018,0.06981322364369172,0.000551404308332759,0.0033033340704045062,-0.01834763806582519,0.23448207220547693,0.05517463520961466,2.3318108051319576e-05,0.00042026173794499624,0.012081342490833149,0.03467570706320422,-0.0033778475445679548,0.00010350013318435093,0.01144665620055718,0.03254302460006785,0.1956925766705324,0.2048825720863907,4.681072647954403e-05,0.008376530754703022,-0.010384760531901627,0.011111858847946769,0.015305732095607134,0.0018227736547052765,0.006700565390683363,0.0628132129857732,0.4464847189021766,0.024821799842224334,0.0001157701289241934,0.05343574899098625,-0.005472556238405945,0.031803697514122854,-0.0022238641514373296,0.0002664531451819499,0.0007133726257121996,0.0684101661866522,0.4522491078519258,0.20957483427181972,4.2609249287178565e-05,0.01429448002944335,-0.007679879766411494,0.04264362399873229,-0.12359930657028008,0.000296815873492258,0.013659586751708842,0.03962597147194844,0.5608881936104666,-0.1268740480035957,2.9317967249164678e-05,0.0140938716622756,0.010458523782640408,0.10171454039848896,-0.012127468172149054,3.435334701288564e-05,0.004194882241167954,-0.017443508939797334,0.05381403636130273,-0.005212560893407985,0.00010441455456674399,0.006864885443552002,-0.03896922227274316,0.2554247924971618,0.004715760850210319,3.5241230602716695e-05,0.017754331835668484,-0.025391885405040483,0.07470402732015165,0.03353252686906831,7.535781824694191e-05,0.007766349539524092,0.011768046610108104,0.04657402144169965,0.06156648216398451,0.000115533847565234,0.0030166692141260065,-0.06652704090943665,0.05937192447948435,0.04609979913066458,0.0006404609300645171,0.014553269323671271,-0.006644074988624598,0.023277812408960055,-9.541044311401569e-05,0.00012013743923233137,6.436750303058644e-05,0.057767884180382645,0.1827367573017333,0.036779586330877925,0.002028989137370997,0.009898720785149438,-0.0029938042790180696,0.023986135933372506,-0.030726529403937837,3.209558600564148e-05,0.0034361033701521887,0.0419399415587442,0.1496025185960262,0.019890260851072174,0.0009165584922980417,0.015495875676169725,-0.025738541605511492,0.20325637120330126,0.06746507629087464,8.432675934692469e-05,0.013623034612355495,0.01775804027573945,0.02406884288820596,-0.014815096636447192,0.00017413465543248462,0.004633483333630112,-0.011585564008544762,0.016871093035391277,0.002592673066306499,0.00039416483308525385,0.019727244346766433,0.05184891611654434,0.20198807224150034,0.12682739384384245,0.0019895932500878636,0.0037807420408444456,0.0014508736076495785,0.005722948924300717,-0.011447859121598227,8.133923454820368e-05,0.008012362417602923,-0.008156640798409704,0.013106121766132397,-0.047342648766111044,0.0015470855526878975,0.029718714471492328,-0.02077552207485031,0.06937903548965324,0.003938077656232984,0.00011864234570999079,0.0245279854375657,-0.04937247346727022,0.12894927312637242,0.007142625998950928,0.0001552123815798622,0.010281155269468923,-0.02288146971271573,0.08413093459121468,-0.011223624066979352,6.638074588643032e-05,0.0035071207416622788,0.04606508723092852,0.14383490212486955,0.03029034945778569,0.0030354681034752795,0.024619563115749796,-0.025142003651569846,0.1270331757429794,0.03083522325176565,9.845171833746863e-05,0.032392445746841136,-0.03201727676627687,0.1541235436620194,0.03248989142019972,0.00015065244647875033,0.022545244126936995,0.00933439905871755,0.05465554335524155,-0.059468707784388244,8.077944150417349e-05,0.009013503987710267,0.06305306101698802,0.28485216602570496,0.0654989850394678,5.56332003292205e-05,0.033453747918770045,0.0428427007374784,0.08222907780913026,0.022492061361871655,0.00025402754707727594,0.0011417928059976818,0.008768314007639123,0.03221569446807354,-0.0027778012668042995,6.768040865334696e-05,3.3429176673027304e-05,0.01850408684939772,0.1841836920331624,-0.06943516017832276,2.5920762287675127e-05,0.014590316767745679,-0.02119299008152143,0.0729349187168668,0.006142565550392424,0.00010157005699033779,0.012977558234561367,-0.008695493288991562,0.031226274392164983,0.0021036466061503563,0.0004389368306908285,0.006600174893378092,-0.05551884062202862,0.2869816606503933,0.09796582624511792,0.00011080466370333976,0.02092480301771011,0.005746012665236286 +2017-03-27,0.004061810113320856,0.026473133736184,-0.011720909473841922,0.00016225603045895654,0.008676546779139408,-0.0346520982817231,0.10199631946941087,0.02343173816959663,8.151838433415664e-05,0.002757563761286476,-0.026302415051309983,0.07804696458000801,0.018810190095255464,0.00015589666119200177,0.005502039401436901,-0.0019569598401630224,0.0020638179874571004,-0.02159792404647186,0.0003200209251500075,0.009701019569147436,0.03242251845558365,0.06975651378804511,0.045653707933725605,0.000243197860879182,0.011396616061059232,0.013695537059343304,0.03644814921597634,0.023948779254052446,8.204466137477e-05,0.002972843087641056,-0.022221493371758567,0.08597898614298763,0.010654198281334534,7.583518969247989e-05,0.00549320577802561,0.005095802074536713,0.04245174985353994,0.003505752323978221,4.1163810408920715e-05,0.005443110278460121,0.01285804541954444,0.009581329767468017,-0.08587666100741298,0.0010348894373133927,0.007243702646096536,0.015970425685292118,0.03673852593100966,0.004243117873245397,0.00015200457226098135,0.020244902334267706,0.017560513592038585,0.012018306496209198,0.017452987606767095,0.00071419745194575,0.0020894102084751697,-0.00310315366835678,0.04137539172891028,-0.006592629787750933,2.235033069184106e-05,0.0008194797131353146,-0.03101934417271705,0.07369561317124508,-0.04517226764568451,0.00012503799833364298,0.028263093758425048,-0.018459266517672348,0.09224058429384917,-0.008389811288538043,5.633187582507446e-05,0.002836061554882782,-0.011055752375325377,0.008822751598046793,0.004767155981405108,0.002444033888739891,0.0024996181796816514,0.08984435687265209,0.4851446450439303,0.053171715975766316,0.00015239533395180682,0.017821404598852043,-0.019107045051232202,0.11880452179364155,-0.0225561671148997,0.0002490398172452061,0.00817868495352615,-0.030674506347999182,0.22031362932683088,0.030464378296105876,3.921905937353216e-05,0.03579149064305435,-0.023513915601382385,0.1269053798828365,0.03605412724592195,0.0003053737688150614,0.006108530580635757,-0.019037329635791616,0.23684652513175727,0.004697140209751955,3.335563737280631e-05,0.020685122726664642,0.002156181300515801,0.022880986191928465,0.0011184708704498126,3.1484169755795736e-05,0.0017358393433110969,-0.04433347329903499,0.12922009669426454,0.05265392860798546,0.00011051582028037266,0.005344137302021986,-0.003351481188991184,0.0227862576874538,-0.0012664676438295796,3.3974741244378496e-05,0.05521854491622312,0.009468699798896852,0.02729916572677469,0.0013263586293820978,7.689858613930614e-05,0.004740730133010529,-0.013319501253282249,0.0466490916508039,0.06478606872052466,0.00013055495729780714,0.0042757848886612534,-0.02982320540604873,0.02189939788405662,0.0022537320629458135,0.0007783908225972449,0.01856468168582462,-0.003716264467490189,0.017534151706202428,-0.02942428597307616,8.92088338476441e-05,0.011298688415332322,-0.04533046746724782,0.15360583059040964,0.051619950814306106,0.0018940946238582333,0.027354372105257388,-0.023016874895810318,0.26822650363252,0.035335505327911264,2.2066165133533484e-05,0.025283452353504057,0.01018581125660461,0.02673756438482073,-0.0031218129894985897,0.0012455037825865338,0.03285456863509001,0.0269456048472435,0.17990734388156948,-0.026557981746291263,9.973892617007236e-05,0.011565535858640171,0.006328472252065734,0.010859490445477578,-0.0655873536353797,0.00013754183652729538,0.009537639685080087,0.0017077014326983737,0.0025546696785573395,-0.048012630213413426,0.0003836905501936929,0.012159915722992928,-0.010921844430395048,0.047332575294199035,0.014309136523034961,0.0017884886686975541,0.00905113986336146,0.014304334210826277,0.05821437108680388,-0.06210952001955662,7.883658600216958e-05,0.011563993526048576,-0.05985565894317542,0.07484591944204737,0.044394886876219584,0.001987990387964709,0.002100436554903453,-0.00521317598225756,0.015777744464069595,-0.012744183451615989,0.00013091020540429416,0.018193858211434415,0.0159835741029321,0.039959064491608534,0.0032821144603219434,0.0001621507504005986,0.001703654325346733,0.011331288268745092,0.04450138433121563,0.009133687120600035,6.214693177196634e-05,0.009967852528559272,0.014904235452487062,0.05244505343177687,0.0002167081558977526,0.0026935387544788883,0.0027027495640464774,0.03225466301494216,0.1283948325308233,-0.019228884674753807,0.00012496417732395126,0.01598355844459011,0.0300959120537717,0.19300185192429437,-0.0807473109703688,0.00011308547257861186,0.004532808104170619,0.0033964113653554757,0.021723467342431392,-0.00046787164381530756,7.395028274334388e-05,0.004496173035982685,-0.03873313354304026,0.1744561187595178,0.029434580509206516,5.5801236410391334e-05,0.0014800433902837837,0.01803254444179116,0.03631819871178973,-0.028950881831570834,0.00024208178042126432,0.006517825320453559,0.0010552900779030052,0.00396095644225823,-0.00019428864737587552,6.625004294129428e-05,0.00954647615035241,-0.007201204244014887,0.07338753788777987,-0.00681715518819001,2.531710813820295e-05,0.003739258122475443,-0.007822114871713593,0.02767668368607241,-0.024331530299317294,9.879139176372444e-05,0.002740288508462781,-0.02189498208611571,0.085131264596014,0.005515596069984657,0.00040539975358480564,0.005557028183629231,0.0213332908293518,0.0882387806177407,-0.006527263120903567,0.00013847461044551532,0.0024352402638593527,-0.0018847631037777477 +2017-03-28,0.013872048701562228,0.0861605286230891,-0.0034682768463514197,0.0001702624325611954,0.005740292298625459,-0.0018373731831994027,0.005801178610412786,-0.04431040415309999,7.599616255882482e-05,0.015075781503962743,0.05615291835551485,0.19278556627503401,0.12549044335080523,0.0001347395278572417,0.0029733881398710874,0.02783851671480746,0.03231331899959266,0.051719909514299785,0.00029075847333180876,0.025460164130769326,-0.0011579659751431142,0.002620114643613946,-0.003973012565036085,0.0002312454927118683,0.009502631517619622,-0.001407845512108007,0.004584380340115743,-0.009062393119526491,6.705344556738032e-05,0.007380432444212593,-0.04936711326615615,0.20526051671993553,0.04040958982299252,7.057033353069163e-05,0.0016815661054921682,-0.04184406627187596,0.4044637105179225,0.0004503718293776397,3.547749389733539e-05,0.010278136556317938,0.009194117684194482,0.00866366824258532,-0.05497337361178437,0.0008183762768090825,0.010681091610162159,-0.0027409641987965723,0.006619715300288196,-0.0031774169540181754,0.00014478578917301747,0.0025113956975956054,-0.014057594825472221,0.011804136152418558,0.005251926810362195,0.0005821047857532248,0.028009136010329116,0.008607373450269665,0.13343794286579336,0.016516929704934066,1.922268713753563e-05,0.007320917081090314,0.048240907540011604,0.1229243885675881,0.07899544682911504,0.000116581181003562,0.011951637766438084,-0.003230298408778454,0.01761903796330474,-0.0004067668070314417,5.160862287191695e-05,0.007776677162658669,-0.011034523932118765,0.010267914976509302,0.009265740806442584,0.0020960146299807973,0.004930734660433858,-0.03398077588405501,0.23186160175370094,0.006934301699433618,0.00012060257121033097,0.006892488832329481,-0.06038997139204599,0.33157738830604977,0.019356988637190355,0.00028202535159604604,0.004524125846919763,-0.006828660258578831,0.045193097772631335,-0.0010756056194751607,4.2562227714125784e-05,0.0017636915060737428,0.012302066869185672,0.05651732638127534,-0.033656994768624354,0.0003587428730606305,0.006310745969988642,0.07368234434756195,1.2142212867307525,0.007171602191335895,2.5182324983800694e-05,0.010775803157988335,0.01266624546791224,0.108834805547686,-0.06611699077286175,3.888318249634166e-05,0.0025381055367415654,0.01904824282428904,0.046183270123544055,0.015736335823091977,0.00013285961621283543,0.015418862637149373,-0.013238143319160211,0.09036889745536382,-0.002149319814693098,3.383767157828443e-05,0.007804928090611209,-0.006644446777768704,0.02145452101941547,-0.06444528125291464,6.866214809143233e-05,0.001237968244950908,-0.004927854322103277,0.020844531262981508,0.0033325698988967267,0.0001080971696530024,0.002852748276543483,-0.018301481914279192,0.018023052595836073,-0.04581192976382125,0.0005804081048295366,0.01134867727283693,0.026206423820838102,0.09842830767526499,-0.004047241004165713,0.000112065969147178,0.00019464618529929515,-0.014930315035510485,0.04712330793101881,-0.06187637298863493,0.0020335383971045356,0.004998157898938418,0.0021850201738520354,0.02032876302619815,-0.004143069345042127,2.763927793431613e-05,0.004204452361322308,0.04047735271621249,0.13366451526331194,0.015636974425997277,0.0009900730594487274,0.009603452314117846,-0.0240378918125162,0.19137558455860532,0.04994485559318931,8.364413401626708e-05,0.009586671437257348,0.0035088631341514058,0.0045787441857274855,-0.002107590104706751,0.0001808695402480737,0.0019984378164001285,0.057750688567097364,0.09048034454226682,0.042799750066712695,0.0003663589746464137,0.005712993053103096,0.03219880223059597,0.1366048346752295,0.027633165215301576,0.0018269387512457966,0.01223744639529779,0.0031374488858490193,0.01277666658074378,-0.005237339599804844,7.878607551467045e-05,0.006380562262730621,-0.011946222436111235,0.017598962320804382,-0.0005062188313154369,0.0016874104226428496,0.027790730878963436,-0.008053663477273298,0.025818347645912728,-0.02642661223440142,0.00012358935645776547,0.009037942265893885,0.022173567628801964,0.05837105176517395,-0.01920593352559917,0.00015399209666848557,0.029134463409633552,0.010897895625782866,0.03998938423269635,-0.050382824991070926,6.651381411400506e-05,0.011345474634188404,-0.0008363196402571063,0.0028116672866586047,-0.0093025631602185,0.0028192035001366215,0.028835602562513538,0.0133430023320094,0.05496497542284103,-0.048016227077231084,0.00012075582643590417,0.005665434739454511,0.001029318757582777,0.0056240164180130945,-0.0633697272902993,0.0001327284710712144,0.022352802845745444,-0.022301044950808473,0.14979229767068,0.010460680626402857,7.041812050081454e-05,0.01088227456274151,-0.04740269208761638,0.24301360293445134,0.035695545513846086,4.90252500360929e-05,0.0029360470740081605,-0.013542273894660829,0.025895458975698667,0.0065578671827320485,0.00025497486726221266,0.004994238868836872,0.010975457459722664,0.0409077601260954,-0.09706072722562724,6.671620062472923e-05,0.025153791318444228,0.029080215165470224,0.31724049136932225,0.06130261307272983,2.3650497847162565e-05,0.014157633788519799,-0.026830684910834353,0.08598216746466518,0.11750246960624625,0.00010907678653945917,0.00294265977928505,0.010092546880218546,0.03856990851035412,-0.06383036503421115,0.00041245838563845784,0.007764646583567971,0.027237476540270828,0.10602046388789862,0.01959664602316091,0.0001471461708548726,0.006418668817758089,0.00262506758661227 +2017-03-29,0.01676794127134518,0.12478275893135654,0.017242456866986625,0.00014210578058484308,0.0059038371247727974,0.04816727064390471,0.15148753064123477,0.1357472788211025,7.629317316904389e-05,0.022006227427477626,0.024649022666256064,0.07410363763432012,0.006979868171844321,0.00015387121437728695,0.004514901397392374,-0.021961519501718076,0.021116594984497087,-0.03515362314547271,0.0003509993816655193,0.00538649762987572,-0.04197026782785694,0.08690628209566414,0.039781168709552645,0.00025269016673865557,0.011703748092675917,-0.005540346970821063,0.015441516071031218,0.00010437606788219527,7.834183969567058e-05,0.002421495228039603,-0.05188869863073752,0.16774782206440872,0.03879250369216167,9.076235243228946e-05,0.007496229158186362,-0.03962286432210544,0.28736628217651955,-0.040200614585111066,4.7283397253713724e-05,0.006605784251951545,0.009938838845363802,0.007358740689762883,-0.03347066792631062,0.001041542356190605,0.00344873754386718,0.019594282706262896,0.04868840648008893,0.005916505422563654,0.0001407231977611305,0.011309454997922562,0.0005957968052279104,0.00042458694944148194,-0.0037152137674668407,0.000685892236648606,0.010891741671232762,-0.010154224976464381,0.14683355496411898,0.01573229092773497,2.060839914698583e-05,0.002797660627757689,-0.038704152917945565,0.1110528407379298,0.04847237883278644,0.00010353303195086264,0.01324167825920979,-0.013955016363613673,0.07156597626337538,-0.027505920251015503,5.488903156214001e-05,0.011428938924755262,0.03280457290261092,0.02542076123028938,0.04940590481075045,0.002516916506533618,0.0006660421026410204,0.01781024030682627,0.10863691264090154,-0.03443286813910448,0.00013491010247663164,0.039027513075263344,-0.046636528477293375,0.2363027980794899,-0.1297046944498814,0.00030560860801075385,0.017339125248534017,-0.08703756434779976,0.4326891081513101,0.2011490668444021,5.666197683135964e-05,0.015565399065579263,0.019331159026259905,0.10861096128536472,0.011303810281291425,0.0002933398350599854,0.0019290218882267289,-0.012948616184707879,0.15660600243481337,0.0026101948835005285,3.4311933018669686e-05,0.00406922929904628,-0.017423179121058514,0.1577710111336907,0.1322186600771345,3.689622224967854e-05,0.0004429627728740294,-0.03998212255701038,0.14190523629624668,0.03714573513357724,9.07591000141475e-05,0.01921688014743197,0.02623606484234331,0.1951009208193893,-0.13440356434650227,3.106216716166979e-05,0.047646202947861156,-0.03971180669862408,0.13209524661247443,0.09943023012626868,6.665148625487805e-05,0.0335163318750176,-0.007848360912644056,0.02973129554660618,0.02118461945164237,0.00012070179472608528,0.0006305276894300572,0.04860802786481545,0.0507812430924346,0.04261158632800493,0.0005471170317968491,0.006188706006966412,0.001293648238151698,0.004692374170915686,-0.005508161657841567,0.000116040495577329,0.02104859648877995,0.017845785086517654,0.06035619272237712,-0.0010259750102128878,0.001897723766683392,0.012667217109429172,0.021432902970629678,0.1914451336369321,-0.003849650096173001,2.8788488384464163e-05,0.013698227589929031,0.005931144619375911,0.016875466239316027,-0.008638230983145137,0.0011490898880796665,0.032296821742287964,-0.008321627265152854,0.05876775669535422,0.011731773538057492,9.429632983479123e-05,0.008519045222201716,0.022883402453456055,0.028419174287908484,0.019839620839712906,0.000190044160470864,0.014228820072116392,-0.017805945053800246,0.030822951391919113,0.001899950909955136,0.00033158488185952676,0.00860748841780443,-0.01682684811212453,0.06189772047151865,-0.05258441769931624,0.0021070675575592312,0.0002055513673461136,-0.007267342571968012,0.025505767353110796,-0.04277541036766023,9.141713555520172e-05,0.003101674307083363,0.014805424006701824,0.019698481425732942,0.006863894115468151,0.0018683803624851769,0.0062791891813859255,0.06261678516596558,0.1950654192442623,0.12474802291015057,0.00012718225401460838,0.014534600364233438,-0.012401887004511466,0.03085305570565101,0.0003564545870499316,0.00016294834839058567,0.012486384486614233,0.01852372217186341,0.08333897664658428,0.03425037551271526,5.4249285219635665e-05,0.0017895101699885638,-0.008724356490042747,0.02711307766260947,-0.007979817376567647,0.0030498090096818336,0.05143282715793195,0.01990135588342565,0.10264104928565514,-0.013029850536587916,9.644998258673809e-05,0.002056717946022931,-0.018041999577526426,0.08531136226909868,0.0025759219272914764,0.00015336934958273382,0.011136731412310513,-0.000241289524203236,0.001299308107558842,-0.07004166348009226,8.78364990164376e-05,0.004868518455260091,0.010955967738701854,0.0560374695389979,-0.006982979051928065,4.913824301929384e-05,0.008255610122913,-0.034710127081323594,0.0703624969918532,0.034806096668859345,0.0002405162116510675,0.005933624843494474,0.020391469821882422,0.07916136313308367,0.009905879342951448,6.405449960550626e-05,0.0070282409397068165,-0.001441210094925715,0.015503668038018446,-0.006086941726543491,2.3984138321050044e-05,0.0006470348639927498,0.026409216940133297,0.09215387123335936,0.04819852833197814,0.00010017305176683209,0.00726025696434226,0.016537754227522947,0.06604895153696548,0.0003466918664604889,0.0003946740537293934,0.000494061703267306,0.024082570905887297,0.1443854452374619,0.00010473850323263334,9.55325185264663e-05,0.013544334660177251,-0.0012204108726907058 +2017-03-30,0.01867037737891001,0.14394307854282062,0.021112939479979338,0.00013716676413094388,0.004364038936536753,0.04943606406824421,0.1567367164988898,0.050934380004547405,7.56804435209619e-05,0.030229501641041472,-0.014048186533361701,0.04626432578207365,0.014181396972231515,0.00014046600545275048,0.011965396005049532,-0.01689111467642359,0.014920647957400439,0.019048095415645682,0.0003820660805171526,0.0009218511210847113,-0.0014570613879175342,0.0032765161872339776,-0.0295705351546328,0.00023268227640052257,0.008341482409502358,0.02357660208886164,0.05817829266761193,0.052637676471590095,8.848445526042504e-05,0.002245444485373012,-0.0028114448438353434,0.010678776038106587,-0.011866182111078205,7.724990333215084e-05,0.02014431114181512,0.0031580698838449316,0.026912040219519876,-0.02656098700155809,4.024145986021373e-05,0.025765720746537293,-0.00035872481692917843,0.00032823104130485245,-0.006766432912339144,0.0008428039429119807,0.010121724706580891,-0.02874836205155424,0.06164509327184132,-0.017524268914362328,0.00016307090371702298,0.003910689400734653,0.006949724808370236,0.004499542351958054,-0.011628299894544612,0.0007549594440757505,0.007392316465360862,0.027301313562087075,0.37509342745096286,0.12144308220994415,2.169036588922514e-05,0.011273536817562234,0.0018405761959594143,0.004888965338874176,-0.005074154866210785,0.00011183761080007968,0.02545612070669452,-0.013929439507040883,0.0827549946597311,0.008367188216495387,4.738067515768276e-05,0.010089593548676515,0.0034513120306056367,0.0030000170349036427,0.00034628262685622345,0.002243796556155672,0.0031985400345771,0.027425731014879752,0.17989461665313655,-0.01813092608291404,0.00012545620689625759,0.018964757115283337,-0.003997099160995361,0.019574077497497244,0.0061311672395109144,0.00031620727019898877,0.009433048170690569,0.011709137519249294,0.08576977782780604,-0.02276661944666298,3.8454890366084586e-05,0.010201094902798667,-0.0024168489917613042,0.013951337079090112,-0.1792842247063452,0.00028550945268437944,0.0013945279988949195,-0.027457019011212433,0.3037287068602781,0.03117634252958946,3.751438011291311e-05,0.03370807717976204,-0.03811791337681497,0.39294871654961805,0.29322590276224536,3.240969568889319e-05,0.0025205776760331747,0.0010922975506504832,0.0029310305633115366,0.0005651038241540102,0.00012004480446362961,0.004561373176193002,-0.07123023830023956,0.5710484692404948,0.03547256215025187,2.8812689671670215e-05,0.025365054643468152,-0.0055638073515637725,0.015330892242644617,-0.00031467025668438584,8.046037182614313e-05,0.01763139356752343,-0.012172926079439102,0.05276644816620253,0.04289255979379488,0.00010548378832785638,0.0060438270513554545,-0.014927587877203453,0.014571159281256444,-0.014657949736234887,0.000585559582258997,0.010810864739777439,0.003943408824707652,0.01515381634945991,-0.04320543422148336,0.00010953068238532567,0.0005210933566303343,0.011566343909265524,0.04203424363316066,-0.01992045850196691,0.0017660867769697171,0.010136658134924093,0.013019515608001011,0.12186277083308504,-0.046817566476360234,2.7472992859119424e-05,0.005843738930865085,0.00846881424869386,0.02151776155086042,-0.0062195279785868625,0.0012867577319580744,0.009922124223051141,-0.010161021249263697,0.0716877048890097,-0.0024351333021821048,9.438833523500877e-05,0.012277707338855222,-0.019641114310157692,0.02953041844095024,-0.049205683059803496,0.00015697912666636516,0.0071092582264477835,-0.0135129887794806,0.021216476266230824,-0.014144159303939472,0.00036557970167195496,0.015291995092269696,0.021380086908097173,0.09205865828375326,0.009115611974065695,0.0018000939259180122,0.015860374268208757,-0.02475690330252066,0.10312944639884744,0.036074197876013736,7.702008690557652e-05,0.012134312924643429,-0.06280733706992192,0.09234067371026687,0.01616354817534837,0.0016908089320202514,0.0008182210096893884,-0.0359617155256809,0.12704784249253323,0.03728843236638764,0.00011214738294823186,0.00019413704738002508,0.004520465373667331,0.012128972225161879,-0.015387523720483081,0.00015108436426731578,0.005549888897656426,0.04878494299359002,0.1885427214588174,0.18394751357788103,6.315241389705469e-05,0.013588853576716107,-0.014922535479152255,0.05028738405551718,0.0003901410042943036,0.0028125589499025986,0.00562449478439291,0.0307460846465572,0.14113857730203455,-0.03693568920126298,0.00010836390673749798,0.01463769717136624,0.020654635572400586,0.09614521231897225,-0.01138303513491154,0.00015579397502364815,0.003005143230863807,0.009469941035683231,0.06087528901470049,-0.006812547432720619,7.357917897820692e-05,0.015101810669731413,-0.05629833664300722,0.2999157100503213,0.01185766121489679,4.717845811243291e-05,0.035558663760949225,0.018488485443590986,0.03287135834122544,0.0032348141428119553,0.00027422880994704206,0.016518121307693978,-0.02326145925488076,0.09874805338898131,-0.0030091596743524016,5.857641500140807e-05,0.014135167053861721,0.021004826737481202,0.25047933944781103,-0.01475069117287235,2.163607507249948e-05,0.005813948106848581,-0.01749567389650732,0.04790604325445197,0.02826548877422752,0.00012765838253869888,0.00827929661967849,-0.0023600312152565095,0.008435147736269424,-0.002209416568741503,0.00044101465844871454,0.0002279548478117976,-0.03829882600270361,0.1883511349761397,0.03946480689617945,0.00011646327967317301,0.02043145218652679,-0.004151724655672725 +2017-03-31,-0.0077872730668825255,0.06647863063455708,0.00567691627315622,0.00012387678421399572,0.0021770966987940663,0.028488688987053958,0.11017187526374023,0.02220137235798804,6.20457800382508e-05,0.013925089296427622,0.04137528626025987,0.1311170871740761,0.005504531095328615,0.0001459751477159108,0.012601684632782816,0.03313038256983339,0.03799017732848336,0.06140604529851395,0.00029432217652084635,0.0007430601432000296,0.0023477653327473452,0.005085640475774247,-0.04800744607554262,0.0002415498671138999,0.014983240812757809,-0.03979427077411272,0.11578733840731129,0.18067326126507813,7.504231436566126e-05,0.004453797956507835,-0.014679902954693127,0.06893658386636405,-0.04470239521780387,6.248320262138971e-05,0.02844832670065422,-0.014472531868789572,0.13296064332572943,-0.03861192174607881,3.7326736529424494e-05,0.001991615477038744,-0.013778174878518939,0.01443960415300944,-0.023835927735446794,0.0007358362715339874,0.0033738325257976313,0.005981942611921745,0.013842323568711111,-0.012521782020429278,0.0001511106702478191,0.020654762529818214,0.02651771958774235,0.02024223422656532,0.0373711939764997,0.0006403274004318285,0.005747190021560827,0.0007878790087747859,0.009671324181281186,-0.00016413697430931018,2.427707602069418e-05,0.0009643490275244527,0.02704578434208499,0.08343451618969691,0.020231773972556835,9.629525036168081e-05,0.01227301516518523,-0.011148263020901097,0.06376879431162012,0.0017729480806696401,4.9210844620137154e-05,0.00045782012268448746,-0.022513328635975563,0.019733188649649805,0.04770443551605479,0.0022251813728188193,0.01194830818935792,-0.007827536580740986,0.04612791697961627,0.0053657793764872175,0.00013964113505480767,0.018858486074362153,-0.014593177342754402,0.08287954250057769,-0.06141549007905544,0.0002726532928681519,0.021291321133777505,-0.03290992524709268,0.1770394718843401,0.008110572905018813,5.236218327087498e-05,0.017057729945371674,0.00858540993557298,0.049875939207572564,0.00022713767170884925,0.0002836983155471,0.004893997513799025,0.09044022743644421,1.3520337032598502,0.027503252634498168,2.775903467188315e-05,0.01163806974120713,-0.017161878683077062,0.18628324996186885,0.03824089188003635,3.078029164819954e-05,0.006113870742875647,-0.06539236402036215,0.17973182772331625,0.003134476313274597,0.000117199242051339,0.008412484621052319,0.01822796598991779,0.11968875917753835,-0.0024536907194695123,3.51784922003262e-05,0.043523537578166585,0.004481930924660402,0.01259666021552008,-0.012649094812574563,7.888367342107175e-05,0.0015511694131331742,-0.00016113001921599964,0.0005620928303843459,-0.0048995165444374175,0.0001310741375166776,0.0011064564767452735,-0.03887827515178108,0.0382663573019579,0.008420623302703246,0.0005807181878159794,0.005772530470242973,0.01895755464183507,0.06221479615141482,0.016590038165902047,0.00012825509982206687,0.0012255230880760931,0.07407089924300783,0.27608736309248577,0.06698673231778601,0.00172194891463912,0.0271878858120356,0.0428128582531366,0.471774571870348,0.10370686911048885,2.333575674955387e-05,0.002428558605517375,-0.03429253065061835,0.09834750921937353,0.04431154852885492,0.0011400067949712237,0.02448104003546227,0.0028552997296511055,0.018755323027750476,-0.12699081794351294,0.00010138011953043975,0.0025829378762590536,0.006572717771336873,0.008789873597788569,-0.00434307615865391,0.00017648497625107336,0.0024135249899542408,0.028922814761638573,0.03666689046728153,0.03781193075731558,0.0004527624368566811,0.0028831884861188384,0.03869845825872615,0.17808253294872595,0.044634997447065915,0.001684312532367108,0.00036478009349416064,0.022112445001380564,0.08117538098540546,0.0009081034223075052,8.739826284273283e-05,0.012531704803594034,-0.025862430318365954,0.03662233770425718,-0.002852019715468998,0.001755498498296357,0.026847306643919544,-0.02841450631854919,0.09238156198110128,0.00012931607273162875,0.00012186271522176191,0.020898797849992844,-0.038156225099105136,0.09908047458228443,0.02986134842016645,0.00015611250774707518,6.24910222951151e-05,-0.01837161875285683,0.06562642957430444,-0.018506298942250678,6.832546128626836e-05,0.022252528095057473,0.051372757161442274,0.14724118465140076,-0.06803979651805778,0.0033069043224057747,0.024953922570792573,-0.01741404399566162,0.08575836116690283,0.027597813554282077,0.00010100985203901665,0.001447128119021001,0.005118549104100812,0.02796092609830198,-0.032211723201554146,0.0001327565955607424,0.01200743446121559,-0.023301383973308592,0.13724313124662404,-0.008817990883644931,8.030448423705843e-05,0.014012997221987523,-0.043368009528004466,0.21831326350799585,0.024388705803311393,4.992714849204301e-05,0.00041956398981684765,-0.005285794279465825,0.009084520882961501,-0.134295587022474,0.0002836858166695513,0.027502534530702567,-0.02089172064119136,0.10308750444322758,-0.09845506614034365,5.039443257154134e-05,0.015867557605840656,-0.008687854798081148,0.0985728120868267,0.0011645018449777658,2.2739802740757716e-05,0.015027049379924004,0.017899463948571028,0.05161359417141759,0.028793996808158646,0.00012122296068915229,0.00800484945637322,0.02092264196087097,0.09792306587376996,0.031013882036814888,0.0003367902356788791,0.003010709494004041,-0.006758112317104457,0.03027645673965033,-0.014148749992902271,0.00012784747440411733,0.01079142740734373,0.0005916123041380825 +2017-04-03,-0.01041958980415503,0.07363471072544495,-0.018941087608768305,0.00014964238486999255,0.008154472387760452,0.009764632101565246,0.035905447507886,0.0018896024583458459,6.525383911255038e-05,0.004361121267273211,-0.01637508422169534,0.05243468589316198,0.003657505513424092,0.0001444648117973849,0.015333243605818567,0.010448604178606173,0.01092229410907615,-0.008305449815596683,0.00032285853126858547,0.026130889894958795,0.012821758721224081,0.028478320232689276,-0.043443552855548934,0.00023557597819976793,0.012405033411563926,0.0010450963617039998,0.002621386971135795,0.00015989518502423648,8.705063412198976e-05,0.015864789999044615,0.020571484580349166,0.07182671213923905,0.015125736647989578,8.403679920150682e-05,0.0036091965994519922,-0.01303891674450309,0.1178069387097564,-0.013500536798661908,3.795502275018759e-05,0.0015133074184072333,-0.016436286299546233,0.013627535651361287,0.01595885017409196,0.0009301032400970239,0.007909181605826422,0.007191639013571454,0.01455438460682639,-0.1499770171177824,0.00017278097442258001,0.0067789772502277225,-0.0040388747874393486,0.003247682018932151,-0.01142068397411556,0.0006078707510163552,0.002315455685255947,-0.021118786943429634,0.2507740348373377,0.06266966175950625,2.5096270725578154e-05,0.00950614696692545,0.023840608068714603,0.07711013547140341,-0.07572256456482733,9.184529213972756e-05,0.00855788229251462,-0.01475748496669095,0.07615571681117982,0.0027834135922275875,5.45470989094916e-05,0.003290056488103169,-0.018941227237717195,0.016696377158218614,0.022395622804060034,0.002212630223532087,0.00040053034902726875,-0.03178610979343984,0.20967352611468568,0.005955378789507044,0.00012475153212629096,0.0021742071646848405,-0.004059743693738869,0.02310797112525831,-0.03178595078629537,0.00027204768310919094,0.002546144861592465,-0.003945154312075357,0.02289635808829933,-0.008370589103717825,4.8535392088201704e-05,0.002709142661851043,0.015650425772901596,0.09431983755308018,-0.0301315162378744,0.00027347014471541873,0.0053059172040701855,0.02710322479093057,0.36884163969697203,-0.0549403144360201,3.049377941151169e-05,0.016241542580526007,0.002306453317062867,0.02371242937468386,-0.021750006885335033,3.249752806871667e-05,0.010786991965937347,0.02791673379631586,0.07518408279038133,0.020584427719364497,0.00011960833785199146,0.014651578262107744,0.029469778644829043,0.20841310834410504,0.0034990679460383603,3.266210863849189e-05,0.025602105106206967,0.0048993652604705645,0.017360301232705735,0.0025505736706329905,6.256910518119165e-05,0.0202175469580682,-0.004522149315693824,0.016798062042725513,0.002867936917533752,0.00012309327106907342,0.003961258043000162,-0.01199624475052379,0.012838844164614074,-0.03762720722535652,0.0005340660259308634,0.004389119322872693,-0.020264134815296816,0.07342187611648558,0.01853415387517395,0.00011616855774501428,0.002980225175419834,-0.04388754632580875,0.13886394002439925,0.03172131441502716,0.002028481223951746,0.030044879127849054,0.026952950041889325,0.26271899772399787,0.020861487270636348,2.6381350442683055e-05,0.010978951980990534,-0.010899470833939202,0.031045288816854366,0.0070159749290820885,0.0011478390059282055,0.001138577703979178,0.001831952579421406,0.01340513220269294,-0.034347350352660067,9.100573666391132e-05,0.0017073280494006688,0.014494219195413622,0.02216446714063031,-0.034506657551090246,0.00015434157093172714,0.007353883948569143,-0.0013959007295998832,0.0017374574240867572,-3.8353151018969e-05,0.00046115219159012646,0.012997269537103768,0.013310126818874841,0.04652928722722582,0.0006548667590908294,0.002217206458093882,0.023389769749597583,-0.02835149588157618,0.09642516249838377,0.028402423755708502,9.43356766859167e-05,0.002007390830856427,0.028163273251095293,0.039822404154570765,0.02164627981106409,0.0017580565680444427,0.023140180510931453,0.0007246723008683865,0.0026906783484836857,-0.06502049804794685,0.0001067077380694613,0.0009425532710734248,0.0073949616580855455,0.018405318157298445,-0.000617023166450297,0.00016287445425984887,0.026366581257442265,-0.027772635190529523,0.11554993211811343,0.022673144889617056,5.86626016601886e-05,3.145527327624658e-05,-0.03650078377388049,0.10896469010322896,-0.01643330810778853,0.0031749322329767135,0.006694878515312049,-0.018437480171310982,0.09218148911413647,-0.0007363463045652515,9.949434962332167e-05,0.017542324153686794,0.01124703149101509,0.06461552125336975,-0.020662855834787823,0.0001262297852627993,0.00407472904161967,0.028762382476045924,0.1677422629670685,0.03399824604656723,8.11019055112899e-05,0.011327206286211838,-0.025389398459846446,0.11047174376912251,0.005999940578321631,5.776284787307776e-05,0.04519745164183685,-0.007478123475569616,0.01566395768044159,-0.1330780146514202,0.0002327665259195033,0.014397105577793052,0.008962202358672736,0.03179665046504168,-0.021984355696092427,7.008865868295938e-05,0.011951713037463837,-0.0030284768452170734,0.03827359962718211,-0.20666802216212435,2.0415321967299542e-05,0.014867108969719737,0.0002773352788619431,0.0008267817035250759,-0.01396366580640879,0.00011725280081772911,0.007691265968325654,0.018654368596638212,0.07224832666637589,-0.036426719517051086,0.0004069871824277983,0.004362238014435005,0.0015675913540927557,0.008240922641806382,-0.021452806615920705,0.00010895039724967634,0.015581911212895865,-0.0006228495491359932 +2017-04-04,0.02016758741982882,0.1470869091609915,0.026638850518130797,0.000144999501823592,0.010581144811605681,-0.028920734322277455,0.09944132596174643,0.02407500956256635,6.978353022441707e-05,0.01291289872808212,0.04098873374194794,0.12071042782647115,0.017424811668777702,0.00015707856216940535,0.0044696720807592275,-0.004844786863956873,0.004559215324647488,-0.013522943468299938,0.00035863479969949904,0.0011951757060005203,-0.03716356588202627,0.0790012027749142,0.04709358746275927,0.00024613957549127896,0.006875859909247497,0.006313218758071237,0.01653547276542137,-0.0032801722664274895,8.336446391321018e-05,0.0032327952005316903,-0.007578877130138882,0.02917534218417523,-0.024815169247268936,7.62217232234129e-05,0.021992766720983974,0.013491607077561751,0.11691943744816301,0.019878682506365757,3.957086847016069e-05,0.013674624463626798,0.029632730827559205,0.023379165394031495,0.006866599213599399,0.000977434039343231,0.0022191318028893835,-0.02806169048883223,0.0635120749525242,0.0225817173066546,0.00015449677387168085,0.04071858506218054,-0.010619842172536701,0.006818740614993328,0.0046280385472214376,0.0007612691849642879,0.008872101363080148,0.009021739101940146,0.1331113137629791,0.0077476884269353525,2.0197521694562573e-05,0.007325378744392822,-0.0199719563257297,0.0566318115869913,0.008746498605109005,0.00010476378753029956,0.006445085638332962,0.0020570607568953523,0.010531019804600956,0.0061321911488272695,5.4984275625513875e-05,0.010260716534628973,-0.048602755704338446,0.04373954877697795,0.1062830792993071,0.0021672527759867676,0.0071628688015556675,-0.03825871970928349,0.2522925172192274,0.022687496927071685,0.00012478953619011806,0.021080868775232152,0.0560288728058881,0.3753021528903214,0.23866042905146828,0.00023117403935162087,0.003391403145684626,-0.0275536204005772,0.15809019434651878,-0.01817542391872331,4.90947093860397e-05,0.003739747058180317,0.02907597570763421,0.14829834970152084,0.03718948463279564,0.00032313558481164345,0.011071887409504117,-0.03044179525443197,0.39999884420904036,0.028304765712057485,3.1582154623514733e-05,0.01790062703830891,0.029968530790425274,0.32787473749634705,0.09887844004008936,3.053790258146943e-05,0.00034445817149250093,0.002681099586354936,0.009457645608273071,-0.012342746206111302,9.131721652475549e-05,0.021264375975349067,-0.08488981452816548,0.5566159689615578,0.12161585635345909,3.5228349716472634e-05,0.0036356174565044313,0.025873893951914497,0.07429207066594253,0.0393312992382424,7.721411764104072e-05,0.0034446612575121647,-0.001666896890743355,0.005590327200191654,-0.0034866787423055777,0.0001363390000242646,0.004047498438029769,-0.01917370719754815,0.017618343682583717,-0.002886464660310834,0.0006220375107971346,0.023543680915772063,0.005131410603474803,0.014865284966898188,0.0005792269137477231,0.0001452946212955775,0.02377862431548419,0.04243789537680994,0.16086360918942658,0.0009817240366506786,0.0016932270739436444,0.008325408840165645,0.029366628090297765,0.29564527659834283,0.02923272388630586,2.5542613603992185e-05,0.018761105043598222,0.019694341880865034,0.062465043403298504,-0.07760643494337159,0.0010308030535988767,0.005395631954291341,0.00833406916983835,0.06445664969235125,-0.1311047701159424,8.61023521551522e-05,0.003987899865901447,-0.0017026617923834961,0.0024250989842934554,-0.15458545571882923,0.00016570831726281948,0.0009554979822413601,0.021601547570363568,0.034770482773683185,0.007913797041965383,0.00035659730686366127,4.8782335010992724e-05,0.013325875903473386,0.03738833013883231,-0.019651564938484637,0.002762549298755387,0.006146003163671983,0.02124759234313789,0.08008137392715212,-0.020675516000063548,8.512724535554576e-05,0.009451300690818712,0.0035830070268427004,0.004662046563528123,-0.046067752333842305,0.0019105052913195027,0.037660291394133426,0.008901786276074911,0.028327588995888817,-0.03193771268555883,0.0001245040809820145,0.005967464214648306,-0.012987759690341192,0.03240973021879034,0.0014695348472141114,0.00016244980879899366,0.010558622859485996,0.03168377857975481,0.12033566163982197,0.05539514581054073,6.426234131108225e-05,0.0029604624127573054,0.017840911139749064,0.051694401748346434,-0.034625732908397544,0.003271083078541306,0.04270181709942736,0.004455834885234492,0.026324344344136996,-0.03612533007627553,8.420000105128537e-05,0.0035283132884686677,0.004495767661229871,0.02534123725955823,-0.0003787024243701838,0.00012865800960707149,0.00487416544831594,0.011939819171115931,0.07114511682152116,-0.03706165198242849,7.937821916109899e-05,0.006802588560384128,-0.024785271390755422,0.11279731232404272,-0.02461445506153543,5.522583893079654e-05,0.012010757662182469,-0.005248577263433374,0.008478147514893427,0.0009673229736841335,0.00030183529332467556,0.00691825710835205,0.023308762991679974,0.09062726856912877,0.03319148188472485,6.395503057048324e-05,0.008795103611402663,-0.0191719827996701,0.1810822177832991,0.05027129532401439,2.7316340106157288e-05,0.0020634571182124553,0.0008008943778407852,0.0022505800167214006,-0.023578292652062884,0.0001243912268335687,0.0010971798033750733,0.01523401000902248,0.06455290113552556,-0.048389009530326155,0.0003719858691711873,0.009324868590752537,-0.019324155039118295,0.07753761294313422,-0.033141062093515465,0.00014274466391674768,6.002980679182201e-05,0.0015979298208930598 +2017-04-05,-0.004140408433545705,0.033270924737369215,-0.01622011911137296,0.00013160272941459972,0.010215764910692473,0.020746384183112362,0.07514868615491702,0.014235799331529632,6.62417123453097e-05,0.0036893800405535717,0.04298055942478427,0.13332329645684168,-0.01627851859017934,0.00014912938442629618,0.007426685225502645,-0.0007241021737893629,0.0007511906460322498,-0.027018075424835055,0.00032532507320779205,0.011161428132233572,-0.007413378095842224,0.01747572693471693,-0.00943042691828248,0.00022196202215342506,0.016489654523022118,0.02702257335238702,0.07416596459721315,0.07462113196030343,7.955524082006205e-05,0.0030461776494641653,0.03704568961198508,0.14069164329124584,-0.022630295538069528,7.72608063770711e-05,0.003897837719893756,-0.023508731191406142,0.1847426465181316,0.011302591798134238,4.363757857283844e-05,0.0047721317226076705,0.0014407406466252833,0.0013915430026968927,-0.07057757086380688,0.0007984246996503656,0.00672416587788852,-0.002448757575567634,0.0052977357069453074,-0.01302930161533105,0.0001616282945783013,0.00608107118007673,-0.02825613951235506,0.01927874647940609,0.03347530617191034,0.0007164046435330809,0.02007414287561186,0.02717337872686634,0.38945545120970104,0.08341996390394939,2.0792592593514258e-05,0.01028858127668347,-0.013116219249923056,0.04138617257942673,-0.00496667057025912,9.414655676755735e-05,0.020254412463596893,0.00044798389070452934,0.003045797984833632,0.0027148476065795074,4.1402171554830096e-05,0.008332663158007103,-0.01768314358423724,0.01703223963198448,-0.036827301143889074,0.0020249331359200574,0.010290103091889092,-0.06593918753693265,0.4352229647916753,0.02562953021317281,0.0001246762974442488,0.00647067298149289,0.008606165234278023,0.055701014176370224,-0.10010200717762388,0.0002392515771490092,0.003537940596948266,-0.008114732138280307,0.04298122319413523,-0.019929429996701116,5.318098461716585e-05,0.01728332154507214,-0.027856428196482003,0.13416471667490878,0.08733912472904537,0.00034219520459497193,0.0008165548883578894,-0.014638795564375303,0.20175089305000696,0.009728032979255468,3.0110648646404236e-05,0.04761176586189988,0.006515642026935935,0.06692965135772197,0.0010948749381411345,3.2525228945507515e-05,0.002174241135585246,-0.006738870280956856,0.02071703076347338,-0.0038866975868751437,0.00010478095235106492,0.011722516944012726,0.06448201396844847,0.38518411481898446,-0.028831791996910435,3.866896972531106e-05,0.031039364594345448,0.0029088993252367277,0.0086637679419187,-0.12141977251465552,7.443878261198724e-05,0.0044631507552761775,0.0012636513714679618,0.004189518257491939,-0.03126334245743721,0.00013791508813108675,0.006516422346919769,-0.02031227959880644,0.022421069009292034,-0.022144913248326868,0.0005178189168909562,0.007062259702992789,0.039301217345589404,0.16268333543972574,0.08381353378596625,0.0001016831388149622,0.009919640367608234,0.017001081304671047,0.059178153204153,-0.020622281279903006,0.0018438870371335963,0.0005946958956822711,0.012170632015397092,0.09424174404496526,-0.12026540297500841,3.320871050136053e-05,0.000792480249384941,-0.0019193662746369892,0.005413836479212328,0.0012676685060182286,0.0011591082452772226,0.0004500136519039859,-0.002406888893833868,0.016044324879546296,-0.04078359255781694,9.989879249516259e-05,0.0006282700378430369,0.012085131954458699,0.016822389481904038,0.003353885961914864,0.00016955441360083436,0.004082621611064615,-0.004835395068753267,0.006357742877592328,-0.010572382405717685,0.00043654891890040356,0.002970020981494168,-0.022684076847320468,0.09223938483232678,0.04667798281983376,0.0019061411329427916,0.0062572402021378315,-0.011294194172270131,0.046207368766834456,0.008490795920078828,7.842136215836521e-05,0.022351403822216384,-0.013835655293568611,0.017082542557239417,-0.029828150686452677,0.002013373804302607,0.02550409144137633,0.003535646378047144,0.012413678255987238,-0.010240454297754945,0.00011284553337159673,0.0404955800338787,-0.019123069328367385,0.046815026488433116,-0.012218281240409194,0.0001655894646842257,0.0005798703339015597,0.006973244502363112,0.024238266761574475,0.0017461411259749946,7.021780627187019e-05,0.00047568810196504724,-0.010146934083986148,0.03312780150660657,0.0019323466809898651,0.0029030885425852036,0.0005339151132406374,0.007258723571251441,0.027141397778535924,-0.01712580648015655,0.00013303582846807175,0.014835307948811254,-0.027015759710722894,0.16208068460857197,0.017517510079165546,0.00012087784444002438,0.0034409107911400508,0.029841996020001742,0.14561944466225815,0.03473431518824954,9.692977315590442e-05,0.0025221755501141007,0.00334977177503295,0.014708255487452877,-0.043051839982941195,5.7240240352724364e-05,0.007247167291086112,0.00973283313770335,0.017955339391123874,-0.07411288256612311,0.0002642865448882927,0.013002587740520308,0.008038794729894367,0.0383943179062266,-0.02525879311011634,5.206409916727241e-05,0.013020197339501605,0.012697046604716142,0.14336292815361293,-0.013076006976793031,2.2850575182564985e-05,0.0009288148709763163,0.01329077673325269,0.04296908005770129,-0.027387736363676418,0.00010811931144979331,0.004788457710638942,0.0280513693209969,0.12161906362211845,-0.17384266543756424,0.0003635635887160002,0.0024115713662898183,-0.0011906311268787058,0.005307145373311236,-0.0002734531504989561,0.00012849553714998,0.006093496692645069,0.0024901321698631547 +2017-04-06,-0.029261584805440267,0.19243552956525806,0.0556796018530967,0.00016080485929341598,0.0007543926497473057,-0.004513009505315471,0.01691038927584337,-0.012285015529790255,6.40358486782693e-05,0.02655327809686814,-0.02774797512256162,0.0967013851283342,0.05838056210879356,0.00013273816393917956,0.004566565038569666,-0.013978965098804372,0.017471066694600256,-0.06951638428442201,0.00027003711240257064,0.01758823898667028,0.021349980909504466,0.05395214130401264,-0.0014707824134112585,0.00020705540758092812,0.007587417676661719,-0.02367577340289491,0.05560861353641027,0.016525522146034588,9.296272538411745e-05,0.005298625904755751,-0.012365933635439046,0.046660791385594806,-0.02283401604016405,7.77615066022753e-05,0.02427658199932238,-0.05733966806577829,0.5443644933204578,0.01942489286719542,3.612135212474656e-05,0.006553975051441501,-0.019398201994851223,0.019631584380921295,0.01663690057819882,0.0007619928792681894,0.004531618965246325,-0.011003635893054229,0.03426283024454678,-0.1309743467289874,0.0001122987347399755,5.1898614750397164e-05,0.015368172157842608,0.012604312835505779,0.010932317854749948,0.0005959741206263121,0.008512873534757513,-0.026224137142336592,0.3192361577260004,0.07345198196507456,2.4480028651964352e-05,0.005880281064799963,-0.030632130429425045,0.10216558597266336,0.024329494837449454,8.906839165510906e-05,0.019263839599790833,-0.0007896344207294117,0.0041040122718166575,0.0015660841169311622,5.4160072730063884e-05,0.010066078092064376,-0.02943706606274964,0.02592206847135488,-0.09046917206904319,0.002214867964566458,0.009876756189216039,0.036560592064692234,0.24612465116559945,0.00012937618815183957,0.00012223911986242267,0.012205735088733207,-0.06810709053331103,0.33325530197351305,0.09167348752195463,0.0003164634019280669,0.017555023734599086,0.002434236147157485,0.015662830379810838,-0.045633170594600675,4.377774814364361e-05,0.017997233714513197,-0.022705251837045918,0.13052546876393348,0.03982706605779097,0.00028669351487047197,0.006221059703751094,0.03156511369090081,0.4238291931152978,-0.012256626752000455,3.090627907268469e-05,0.032952917112388964,0.022419878832361937,0.263917540567625,0.03372172657173939,2.83822430516038e-05,0.002816273879305333,-0.0013641034910158603,0.004088701502072494,-0.0278165723071248,0.00010746936193075263,0.02032148471126021,0.07568930305808247,0.46080411759237055,0.042683467633229166,3.7941153580785386e-05,0.0028870809344930656,-0.003567781387718853,0.011812529234276156,-0.004407412586657714,6.696266376860197e-05,0.006104927682162959,-0.003814479061925078,0.014459612221458478,0.002758680664702995,0.0001206221832155845,0.007278722266110823,0.0018464907336012714,0.0016980969298863223,0.0007809176796300731,0.0006215273111083877,0.03852405532002532,0.023328642177448202,0.07992045030840941,0.02090365276649494,0.00012286199093993044,0.00015916835346239228,-0.012086168614833498,0.046642730004532534,0.007227799172472258,0.0016631210549314668,0.006608791543492341,0.008139943633812183,0.08600877419115181,-0.00013673704243011511,2.4336652155614287e-05,0.005480247192649915,-0.024892950350889145,0.06808134093699318,0.02816789507348281,0.001195417313740728,0.0025729004125364706,-0.016526517425141513,0.11505277240761892,-0.029331551137847276,9.565549002394886e-05,0.006216053117849227,0.03422330589194696,0.041007247031688995,0.018827583749286732,0.00019697301423814669,0.00023113930050430113,0.01242222291852378,0.017021278873330818,0.007855398986563428,0.00041890066046267234,0.018127691816964584,-0.03528845990990473,0.15388993680278495,0.039441891388013794,0.001777349452587224,0.008210458401762967,0.03441227692144872,0.15253249007826888,-0.05703224933667767,7.238380673777377e-05,0.006820101611611121,-0.039529505187143175,0.05442917805575166,-0.025052672585521046,0.0018053723794417902,0.008712641063641403,0.01638393541770315,0.059476853057533634,0.006550429630002574,0.00010914058621332674,0.027915672862097833,0.028887274659793356,0.07568261203532937,0.018189235992976036,0.0001547286849096476,0.006154068332986531,-0.010287994885636906,0.04192390883936833,0.00040493771593891407,5.9893941868692276e-05,0.007691198935815352,-0.04132712214611166,0.12265518301273277,0.001074132693376675,0.003193502915319045,0.0343327238398838,0.014553464068784723,0.0788376811980364,-0.0018376224550914625,9.182757309407332e-05,0.010108225929542816,-0.024510544389247536,0.13431105669733548,-0.031490326942911914,0.00013234330488489718,0.0022465959225217934,0.005924930840470341,0.035631411650432994,-0.00015130760880437399,7.86500413794947e-05,0.007706598995292172,-0.021810830936087044,0.09305429767169163,0.003590619806303664,5.8909206198115075e-05,0.029829773787032093,0.02598669124053806,0.04643050716127271,0.02574460393534222,0.0002728832966044111,0.01111135981879153,0.015357971867277541,0.05330746801776095,-0.03531858848193392,7.164076068671335e-05,0.0041747383061221345,-0.006933005000374654,0.07329513421079024,-0.009158100216171326,2.4404934954217425e-05,0.002952543172845638,-0.019733264752327638,0.07088556720816346,0.05400353986659996,9.730834548167418e-05,0.013751060809342875,0.01336522046239828,0.05825325564950282,0.007215974846026928,0.00036164619132891097,0.01314063507145544,-0.10001740017403946,0.598569725432531,0.24471018935017746,9.57045554246894e-05,0.016867200066624417,-0.005322387367094783 +2017-04-07,-0.02596271674429241,0.18687614676056902,0.029399370467995137,0.00014692065247398216,0.015757482982007867,0.016191117290433002,0.06577176244904816,-0.0014456469188067888,5.906740152116846e-05,0.005873331860625515,0.016557168788488882,0.05885731830431414,0.0006483233098084945,0.00013013161211974662,0.005712670479314322,0.005131566083136722,0.00515172680755238,0.001040226051483353,0.00033617464713908473,0.007783193610492155,-0.0023448546293907335,0.004829055224255986,-0.068449017604573,0.00025406890971619195,0.0017727575254839225,-0.00588199174836494,0.01637148511610625,-0.013276524456679404,7.844821625885026e-05,0.013572511796682315,0.03260310770880536,0.12429030892556178,-0.008124366303149165,7.696824542728163e-05,0.015569741934902301,0.03933317125136753,0.3542919248060906,0.08043196617042676,3.807117876156717e-05,0.012199211673324273,0.008512436512173253,0.007423793581933628,-0.005870383155261635,0.0008842453499554948,0.0007547739608291084,-0.02074801507391094,0.04880427390505419,0.01402003012114522,0.0001486553642425473,0.01466148888734378,0.003906745187399106,0.0028221338248380695,-0.04287111979182223,0.0006766465004733713,0.0010011902200992464,0.009132008664747547,0.12691912190425156,-0.03595383086060851,2.1441839733376157e-05,0.002453710334394986,0.00722410776016899,0.020276419727328906,-0.01673348814405901,0.00010583857424395896,0.016839518434722082,0.01622806057247028,0.09724672640683849,0.03898980236297285,4.6973557000392606e-05,0.005534202737657269,-0.028348863887707833,0.023713489175691906,0.02449553784445914,0.0023316489867153613,0.0008527013197847223,-0.01690662731621723,0.11026279460316188,-0.024017520874386262,0.0001261769692900414,0.0041860414696392656,-0.023781038225777904,0.1306972927157789,-0.010819577459242505,0.0002817555316985297,0.007653980441419027,-0.026817144714755672,0.14522511378875522,-0.002558916797494857,5.2015378871992674e-05,0.019609636042918984,-0.012847330152935184,0.06599866524191776,0.004691230756293869,0.0003208222939817614,0.011847101521515208,-0.011260870489983425,0.16192588547239073,0.00755832898110316,2.885930807835271e-05,0.016994293481802043,0.012565351078201574,0.11414986194081392,-0.014494096247619931,3.67773934446866e-05,0.01572244533202964,0.008438869605987356,0.02801782583310867,-0.035498121563113584,9.702253126505829e-05,0.02935027395682429,0.04260766257423974,0.2988546422975993,0.001873117802164477,3.293214958988744e-05,0.0073136002756600555,-0.001861582533578603,0.004567106891259957,-0.07805661828359296,9.036879713614655e-05,0.005682157836024239,0.005108874780278508,0.022240330041668654,-0.008838442078527603,0.00010503465806781724,0.003399273780689325,0.02664326356601547,0.025295137245578244,-0.1305427147191073,0.0006020408250915941,0.01723017837210356,-0.008800119649198194,0.030298387890626787,-0.00021070674911002175,0.00012225174441028526,0.006904543453241046,0.010404397679553602,0.03543777562214914,-0.007689082695921026,0.0018843851114509194,0.0007128542229666523,-0.0496347681263189,0.4381756925456511,0.21602782061157205,2.9128620065046756e-05,0.009486334004193953,-0.007931273846200177,0.018823712415431158,-0.009327724677101386,0.0013775549631243609,0.00859580466266981,0.011916038754313893,0.10612239633142331,-0.0006950708258117977,7.477398079183598e-05,0.013684528161715176,-0.01194015957267246,0.01598263386110361,-0.0017157751380237275,0.0001763222693041741,0.0035476133990789242,0.02626108089850454,0.034573840089675734,0.023076784797919504,0.00043598233437683564,0.0200487812770588,0.005863401591678291,0.019430335945250583,-0.006521904507852797,0.0023389431833658455,0.0018997431292562684,0.023163189264436335,0.07157400291168271,0.02023292481285551,0.00010383252601095187,0.0015523161155660537,-0.05050724231130964,0.06881233138313698,0.003280818614805244,0.0018245870007641822,0.0009293107228003381,0.004702853724394849,0.01514852860707173,-0.002067791791710123,0.0001230005507221631,0.0008351786837014282,-0.02145648390346218,0.05314001635160369,-0.016060664398201835,0.0001636806147736786,0.021410198506577955,-0.041513650601129104,0.17192546307303871,0.042804275536240666,5.8933827561793696e-05,0.006740462666913867,0.04113800544926947,0.12711751267672586,-0.054601983455060336,0.0030672975161371674,0.009031410030659888,0.009604484976723657,0.05139363945659748,-0.023975397980359123,9.296196150509246e-05,0.008295534019860001,0.015669132537307243,0.10025052297181114,-0.07504624538356557,0.00011334936502641676,0.003418003576263513,-0.035463186430754336,0.20033924675795295,-0.004534991733100158,8.37260142632737e-05,0.03284661223176926,0.04180828524328742,0.1867066731817491,0.023700710586366632,5.6279458447057444e-05,0.03356903865828208,0.008339594704158413,0.015490880226159257,-0.03940480817143338,0.00026248122420422816,0.0014805781207671378,0.006787588666546086,0.03170029074946309,-0.06683671786961677,5.3243506106831945e-05,0.0006317105754206191,0.02427910700258278,0.23130231055165096,0.03764871948053052,2.70822051450068e-05,0.007930416838386202,0.020385149425904785,0.06656884777882047,0.02102872146306954,0.00010704141065324086,0.0041510837219794205,-0.013035386800467631,0.06226847137821594,0.05097884261757671,0.0003299770146339882,0.0115529402879163,-0.01198009866377206,0.058766312332005764,0.00014773662920136913,0.00011676259858346353,0.003557826456475648,0.0012616499394396447 +2017-04-10,-0.02100894127729513,0.16098468286990053,-0.004863325951216875,0.00013800861410763975,0.004040654248660244,-0.018194432315752563,0.07012496084262464,0.010026591846269056,6.225531064687828e-05,0.003336820751267096,0.022464528903605927,0.07527012397760585,-0.005092551206800077,0.00013806127783538822,0.005235438064254949,0.0037342245529649295,0.004321851442739866,-0.00035499156033645153,0.0002916073403728,0.0037866010213341156,-0.007259576046346811,0.014082612059496147,0.0019500462111815462,0.0002697278654715353,0.0035026577252447117,-0.019329910461917628,0.05342771580170931,0.029198757542271726,7.89968865350243e-05,0.00349856550124653,-0.030429403081542843,0.08538664700671128,-0.004970366793119155,0.0001045666821884518,0.006758441630880732,0.028712086966613745,0.2504962276747461,0.06412610321558239,3.9306301873831345e-05,0.006749399715761613,0.0055389572645042255,0.004895641463429946,0.0014838003516502777,0.0008724955018825811,0.006572103074489032,-0.014502169426336987,0.03296077366685266,0.0005149037315371242,0.00015384998701962053,0.002252413199118453,-0.014663004097752728,0.01169849545665649,-0.15115404112353362,0.000612656863856576,0.002034314954099932,-0.011282072039105518,0.14447350134675618,-0.057004826191136074,2.32714508347263e-05,0.004158638244845401,0.02660470057243538,0.07693225330008126,-0.025673244023003004,0.00010273086867482745,0.008315660396141487,0.006930241282360656,0.0372802395209381,8.335271900777195e-06,5.2327679913160165e-05,0.005225607364925508,-0.009327555928348519,0.006807517716074406,-0.008112350922172244,0.002672403636815942,0.037083295990283545,0.0674848245885714,0.4783212557547197,-0.019425393235501423,0.00011610169243186229,0.04005313054833529,0.011721592981504159,0.0585828113360499,0.03034867796575729,0.00030983085081609486,0.024750442461685437,0.008171585694415673,0.04803318422894823,-0.01781060729649911,4.792100499817781e-05,0.028651182572902587,0.0008060419379762487,0.003936589335949288,-0.007449347762196072,0.0003374615790395178,2.7093674529419035e-05,-0.0028533560313191604,0.040304493940288115,0.001162389898070268,2.9378710076784077e-05,0.003965791722811836,-0.02772288217454349,0.30775479055588906,0.06555964055862155,3.0096449618690147e-05,0.007451862201859397,0.015015022644459017,0.035311165772260907,-0.15694524638006999,0.00013697354366208858,0.004809331087482468,-0.008289593513105922,0.05693280100405874,-0.055450505414915,3.363280274999567e-05,0.010248342175838086,0.0246507183294506,0.08499322055071562,0.02765254490482713,6.430173270684318e-05,0.0144623172364023,0.009981198689730098,0.039988392451733586,-0.02002470165879226,0.00011412935183864503,0.0030225711169943005,0.020590978057949603,0.019230210398604102,0.018065093343587215,0.0006120240681057828,0.011146819545151704,0.0034821526622239177,0.013090313819488426,-0.019300286444135666,0.00011196537993161144,0.01164317400194576,0.014559768815320284,0.047389661321749266,5.7390016521549656e-05,0.001971923437606229,0.009505726439363666,0.0027845369506177367,0.029255387686145797,-0.034223467623229656,2.447537321733678e-05,0.0032381395720476056,0.0012079640646343297,0.0035592521535962613,-0.0018894253198936206,0.0011096002043941339,0.002414378456428146,-0.037295318388689165,0.24036487641033816,0.028845068693662445,0.00010332584273305236,0.005728471435232039,0.009147777121439996,0.014307120336333384,0.0033167204547381196,0.0001509067726088243,0.002750881409032062,0.0252232836601514,0.036814640938991526,0.007143929563934012,0.0003932647031243892,0.01002628132499369,0.03609046891144874,0.14818197682027343,0.024619512764726622,0.0018877630522223243,0.0009490156798608812,0.020981270868089028,0.07385601011218038,0.011372117009576778,9.114572812605128e-05,0.00320774679765413,0.060800433840444874,0.07685439868572684,0.0776063169683663,0.0019665959526390313,0.0022500616487486835,-0.005290501953158474,0.01695262636753379,0.00036899290003144624,0.00012364481958470166,0.0034415785720088143,-0.03669705606944655,0.10194664021220703,0.028394586771595336,0.00014592129793571413,0.008894251049920551,-0.028590723481929186,0.10838662805735876,-0.05756143850850412,6.438183708783989e-05,0.010108076611909888,0.017529237598256347,0.045361506890186774,0.00415976987494184,0.0036626347573337132,0.008112926096687718,-0.012784434795225492,0.0658842840101589,0.022861824118607384,9.652510273105847e-05,0.01765444237481741,-0.013536518954975447,0.07103331269654563,-0.01341422471407086,0.00013819925800647869,0.0013569516008461165,-0.03570864366132538,0.22715228729057227,0.023925955648911125,7.435410304230394e-05,0.01842932864947082,-0.009826732823911614,0.04602679747526311,-0.04006723472696731,5.3659396669617145e-05,0.009895805640142353,0.07876883277249715,0.1357832197400374,0.23106942751206877,0.0002828379634213925,0.004107261125633166,-0.01452831950760124,0.06541046079420354,0.01819786529323905,5.523095460680916e-05,0.0019459917770529218,0.029323521344881264,0.27157651986303455,0.05059415746167286,2.7858337053557502e-05,0.0018380314171385864,0.005006118381292141,0.016760307956168577,-0.00880853887832863,0.00010440663185108365,0.008160922025261029,0.0006722591640101726,0.002280480087902527,-0.03579096453893265,0.0004646633482017004,0.009602141120112633,-0.007091087002930697,0.0329346727584283,-0.03425685966361787,0.00012331935861430336,0.02380502545220236,0.0035417071680259827 +2017-04-11,0.011808816514152531,0.08589204011880551,-0.03941130842261717,0.00014539184248623543,0.007851306706214041,-0.004942677241914925,0.017082763035535433,-0.0003675259126410013,6.94248039224662e-05,0.012792204955197777,0.07648038708071539,0.2751220406393193,0.07168325051841941,0.00012859435300645924,0.0018345942989204866,0.0006026547363641298,0.0007181507871543367,-0.08044464859080823,0.00028321795954939214,0.008151867371758787,0.046654236054801,0.11733863682985783,0.11114632573350046,0.0002080404651772914,0.016874105925689806,-0.025651207769512453,0.07048257842301926,0.04686792516120174,7.946443044554791e-05,0.005440986918815534,-0.04797165955157739,0.1497394839634096,0.04895973044372521,9.400225371297845e-05,0.006761541935592832,0.028411067216141977,0.21139030519674684,0.0482160986023493,4.608940444495084e-05,0.03290906981532695,-0.00596000309675214,0.004313683420221067,-0.035467503030605384,0.0010654743592002488,0.015045566169140517,-0.04691061533869784,0.10563928596058365,0.07165664315929801,0.00015527715278348042,0.001217672162069873,0.013597674993574428,0.008958509227535017,-0.001766957023584842,0.0007419134929122718,0.007041277702581932,-7.555063540812546e-05,0.001022021975993604,-0.003183200852300159,2.202929893973469e-05,0.0006360365519658443,-0.06136826573294243,0.19116192308964575,0.09830201593368827,9.536598466645486e-05,0.029573957008429432,0.010561426376253081,0.06862426322697865,0.01640236565416276,4.3321820592731495e-05,0.016946016716163446,-0.02530753621572797,0.020378231936309697,0.004184196105439572,0.002422179580948364,0.006426539007876935,0.024109103618130654,0.15056353468594286,-0.026423450848467755,0.00013176903621111237,0.03652842071198054,-0.02526430610360055,0.17058723399259854,-0.003817528528432927,0.00022933433437817707,0.0035327044209167054,-0.017172925247152547,0.11696267505818532,0.00024356724221826084,4.135784897303721e-05,0.006948035024316547,-0.014812869218495577,0.07845221805330517,0.014271046454154784,0.0003111865151786749,0.004997650550206936,0.067277590007482,0.66692070024109,0.049442318137618214,4.1862625228895234e-05,0.005424467739379775,0.002791864565334697,0.027393355080009438,-0.015333092645145008,3.4051075116787204e-05,0.0031462972487410765,0.022426771565472774,0.059614938911260774,0.027955149826858604,0.0001211809665071913,0.015399462245540552,-0.010545033439205948,0.08197387290361664,-0.03199758117956307,2.9714257548378478e-05,0.003262698578681499,-0.01383372458542805,0.03687153426279604,0.014719433949501442,8.318122233596273e-05,0.01570478378392279,-0.01871879933229159,0.07586333844446125,0.13148858483781023,0.00011282221812840375,0.002137581793105905,0.055672693758352265,0.050078550748893245,0.0742449299017847,0.0006354275562504011,0.0032221389899000944,-0.015312370361929176,0.053925079907722946,0.01212700794720681,0.00011951918874360553,0.0023008999029460095,-0.07278052161298756,0.2550371857376156,0.06369335325818881,0.0018316008275836033,0.00874633988942838,0.013576100719312955,0.11887541521546985,-0.017750723442137666,2.936737978866222e-05,0.0011055480258214696,0.04298646518683872,0.09509775571284347,0.022773760508432928,0.0014778580996547537,0.00477957511351748,0.04061147395958199,0.33046943971918,0.07183711156219326,8.183575457635824e-05,0.014221587685163272,-0.00342639111115971,0.0042062995079935744,-0.0296203904340469,0.00019225698518495624,0.00013258164029850963,-0.0167901868779327,0.02651878909655381,-0.00344277152791348,0.0003634174312809116,0.012785311278432247,-0.014816113139026045,0.05862295427780519,-0.005714272053654227,0.001958921018795555,0.003499468801977671,0.002600590156226453,0.01025777093129341,-0.12281001280316677,8.134095897133229e-05,0.007492818534932191,0.02982727838139195,0.04012608466824142,-0.03535238241410531,0.0018478385965642581,0.01320597264442535,0.023501548438846706,0.08020292755744723,0.009883759988588436,0.00011609734626098586,0.004435213016988532,-0.01811963448248553,0.03817362482880895,-0.001425713792923018,0.00019241831525508002,0.043632491723490416,0.009311170699151362,0.037869887935810954,0.0017971921183241016,6.001007832299573e-05,0.01444399525262806,0.018796164986363197,0.07315248723676143,-0.11933498855707841,0.002435332190616435,0.0009599984081926824,0.008742046510596247,0.03819881559337322,-0.014233398938117009,0.00011384233272661357,0.01684859119296849,-0.0029494082232093197,0.015264413330862708,-0.13235324621919328,0.0001401249768288153,0.015578073817147523,-0.08305002065136202,0.5322505159398067,0.19038089904730668,7.38027173439196e-05,0.0064440172425669325,-0.03414731287687747,0.18748923286616084,0.01140433568295684,4.5774920278790794e-05,0.009893136474191757,0.0415951493762089,0.07966597657830587,0.029369509411013826,0.0002545652963397348,0.0002142257555376218,0.030141002079931412,0.13140760358712267,-0.008272498100588515,5.703632926230822e-05,0.0015715179801278796,0.02920469096477226,0.3135943142230917,0.021716193091386768,2.402789473186338e-05,0.009068654676149623,0.0037239396021089637,0.011585762286382913,-0.006798235965696611,0.00011235359667392553,0.005449786106778451,-0.02101672050232393,0.08576828591449229,0.08414505378540393,0.00038624795123512023,0.005270527401215078,0.04541293753991787,0.2067832070469794,0.04426174341986578,0.00012578710576685302,0.0030175925152737737,0.0014326982310032257 +2017-04-12,0.0035909000294476,0.022199281571077922,0.0011931212556184941,0.00017106098905190096,0.0044713271231384,0.004769885097338808,0.016179986969037646,-0.0028826453024925675,7.073596398477944e-05,0.017248619981748852,-0.022466939963011537,0.08321556612374387,0.010260029940617891,0.00012489255697868524,0.018501087361821773,-0.020208895427561976,0.02520797758128615,0.03346210168016757,0.0002705655064789066,0.008106193091787738,-0.025886866498429417,0.05733543458774147,0.02296758236671278,0.00023624038820326215,0.0013294831728141222,-0.0027890671804902275,0.007443312471732566,-4.9364086418846726e-05,8.181623002533516e-05,0.0014268065644461037,-0.026313782355870566,0.09044417497753873,-0.06018983401935103,8.536749385126095e-05,0.013157322660293999,-0.026641708906445082,0.20929363675940416,0.017653879641300142,4.365205249173854e-05,0.019049134726998228,-0.01568783243749744,0.01300532601303237,0.03343079663283649,0.0009302217401905366,0.00725059364872822,0.029938839025126476,0.06086808174877077,0.025379865120712386,0.00017199159591108027,0.012648259471949898,-0.005576326959014767,0.004034961700076849,-0.01606784143591266,0.0006755121604217326,0.0018733256040747376,-0.015114187293042345,0.19996439719965006,0.007439993543894666,2.2524487112140025e-05,0.0007899535600350486,0.018088665205420518,0.05302028797715679,-0.0016830986131033264,0.00010134806850150806,0.008028438235184203,0.0017367439389930686,0.008755784039657476,-0.09977842156250888,5.583449198708466e-05,0.003945605054418869,-0.003084415578754782,0.0026910026038026442,-0.004826919646437109,0.002235536384249021,0.0035152547336072754,-0.000308870090568744,0.0015453069910558686,-0.022799310462029286,0.00016448003655313015,0.018824478681809812,-0.036704184830794157,0.20682258387035576,0.009112441169005227,0.00027480577529407415,0.0019119800327879453,-0.024857802207762042,0.14983334677405194,0.004138092838348132,4.673208992512698e-05,0.011721601436627616,-0.009028734408912806,0.04882425925314422,-0.00449904019540887,0.0003047740753493735,0.0014387217746905374,-0.02547447536319748,0.33382218117558043,0.0044870921845270514,3.166797471027205e-05,0.03304060798098857,-0.007734477156045115,0.10165461193374475,-0.010116665797087867,2.5420587499682936e-05,0.007330264733344374,0.03169372418388765,0.08179686474716848,0.037972958355988184,0.00012481287077552308,0.006389777247041173,-0.02214766531008603,0.16637317014886746,0.008348011865604792,3.0749427620949447e-05,0.028431932774102123,-0.006333108590385748,0.020329202691323746,-0.039625715597853474,6.906753731668826e-05,0.011385788635295418,-0.004358282280051806,0.01371163522450839,0.002194669601138756,0.00014533650092591282,0.008519216291031398,0.016787937071408868,0.013926324333080435,-0.0617166904811935,0.0006890272352795468,0.0037009951273801744,-0.0032483157403948525,0.012047436125315225,-0.02365935236447781,0.00011348791397041666,0.015802205803786468,0.0026625671752930433,0.011027923919559899,-0.023357437557358515,0.0015496227621081898,0.0072679656414806355,-0.022057127241362683,0.21581617551976479,0.04076110133312172,2.628131863555648e-05,0.0066578538907490475,0.03848818550025272,0.12515900486372583,0.02263998241897395,0.0010053947322188673,0.006755264758538423,0.007307714830395618,0.05133694378534676,-0.000849659425867601,9.479320872172661e-05,0.00852961126215892,0.040200291265058516,0.05575654013353299,0.11611723021235183,0.00017016834277015026,0.004302705392693314,-0.050410743715711984,0.07268753611018806,0.06517749392116227,0.0003980769861819379,0.0037155552207271013,-0.011324300200614331,0.05545131561660796,-0.005155582427433395,0.0015828868107381944,0.0020062164571605892,0.014053465568160969,0.054099080005085794,-0.022673711578218753,8.334583937072337e-05,0.01055468791365987,0.02646670610799135,0.04050031863782886,-0.028964127544762887,0.001624496001247882,0.014067247848143269,-0.032869088195477625,0.10747733280591318,0.027291305284683622,0.00012116768569017585,0.007813477283887465,-0.013937241816862624,0.032815763578236054,-0.017107891398363585,0.00017216889702708949,0.001053556803096966,0.015228088819691656,0.07417576127200705,0.01574362859588459,5.010687453474451e-05,0.011035862545706987,0.008049546676508538,0.026270326260879277,-0.006245079618371681,0.0029041832381906034,0.01224342610685717,0.015050811648071174,0.07617675241874806,-0.013191212352840619,9.828291701297363e-05,0.014393424284611819,0.020421790866060843,0.11163340589890706,0.015822262348476043,0.00013266624398153515,0.00809610619794848,-0.03469002228620581,0.1838218519653991,0.01813457062077628,8.925984746995564e-05,0.019622717735054904,0.022002790916420586,0.09040739081612424,0.013697234336103519,6.11675704988171e-05,0.03229707673259068,0.006541238660110103,0.013337373054462722,-0.052675911054049014,0.00023912175534221428,0.009949348193599513,0.013747085442930573,0.059969146387993,0.0005392531273802066,5.7002924938704255e-05,0.002218521398206911,0.005410675346210991,0.05617598979380486,-0.020527604699040455,2.4850322441655594e-05,0.0038674271336668264,0.04422787142391456,0.1568871412984696,0.1365694198469488,9.854115612477738e-05,0.02048782492484142,-0.0022619757874055217,0.010638261073941249,-0.0171809218705194,0.00033515467265455125,0.003789911372995221,0.0029876800995191507,0.01611120543440214,-0.04802890069015459,0.00010621304383040982,0.014021058232245002,-0.0024040972971408484 +2017-04-13,0.016287442710551176,0.10551870498172566,0.016189302795374037,0.00016323377805969977,0.0041707629838666,0.007136381862810828,0.02602406110506751,-0.031888680906033036,6.579812792921713e-05,0.04459269347283645,0.04163242208190976,0.17171820615004751,-0.005499997588337307,0.00011215342463647951,0.022095257024854355,0.004922743452848234,0.0045863665027404635,-0.02612703118466774,0.00036224825552121103,0.015110639481288386,0.03024724931314247,0.07133624312963316,0.009796314513248007,0.00022185714735059882,0.006034506559129205,0.012095445260585676,0.03013823011548149,0.017119364680011004,8.762960531531367e-05,0.021075352853417478,-0.03604093004529972,0.12968130288638613,0.01704289126444091,8.154709219499197e-05,0.010155021720490983,-0.0018616414714206326,0.013785483304730482,-0.0007576111970325018,4.6309774147391685e-05,0.015932500885957924,0.012256023045819266,0.009452184094433892,-0.02072461894395977,0.0009999129292778566,0.0023481312371665835,0.04379886318085592,0.09769256137656104,0.06751949914223165,0.0001567700974569407,0.006663852668526574,-0.022573078415300627,0.014193023358173979,-0.11106735222464853,0.0007773922934211075,0.00398002581299735,0.010798172815735784,0.14938496220150735,0.006348058742196591,2.1541015915188563e-05,0.0047029709668059,-0.01568332517550793,0.042524801960641345,-0.05181276635916329,0.0001095587037512364,0.0038502225799870986,0.0036712737201387456,0.018896812625593357,-0.014655694697827827,5.468774639489895e-05,0.002828174142959783,0.009443777505841326,0.008300376695618153,-0.032018987983165305,0.002219069563798678,0.006063302454445438,0.05928634602060669,0.4271824431075894,-0.021139978382678233,0.00011420717708352216,0.012453042765961401,0.03184166853468167,0.2117957995389638,0.07793224301187145,0.00023280199965589103,0.010398917868333808,0.019598315798931464,0.11754215655724325,0.013995344635543557,4.6966268104530585e-05,0.05046083380206179,0.022644017396280542,0.13101757276030454,-0.026027079072637186,0.00028484640187707226,0.003925046149890331,-0.017749914869105075,0.30483887938023835,0.013331118306207439,2.4163294623230176e-05,6.614214740531055e-05,-0.011548078720714557,0.13132831568142667,0.010590110159945581,2.9378733550223567e-05,0.013900526165998966,0.053257470382813074,0.14034831768806763,0.11009995193690142,0.00012223514135508576,0.005911428332592796,-4.2452604673700745e-05,0.0003111948353000251,-0.001303153429703006,3.1511156083559235e-05,0.0052970093268092594,0.0111695697302387,0.03667857309011096,-0.005659341290453176,6.751517444042165e-05,0.0008860074881189518,0.008944080562962885,0.03275247918857437,0.021692473379557823,0.0001248648266797897,0.0061143283453326,0.020691264979391884,0.019827938142199904,0.0010805660213413272,0.0005964651149989582,0.0017890010297493455,-0.011231414542260752,0.04777052644167102,-0.1407734217333343,9.896017137996775e-05,0.011020470071139231,0.02233789939627556,0.0707822581043341,0.002297861944920464,0.002025522593849431,0.03279993062260911,-0.016152822699388537,0.1600643774065474,0.0211510898777047,2.5949914523420288e-05,0.008461086765342291,-0.006254490698610111,0.017477621520168,-0.006963786620152472,0.00116998660701168,0.03175629459499452,0.015385735710533704,0.11490412433882073,0.01718673276552712,8.916784973923195e-05,0.008081694469716015,-0.02514797146523415,0.037884995763720314,0.005311376058536686,0.00015666828961396725,0.008398788117572132,-0.021807518514466,0.03302417295440508,0.00692868609920032,0.0003790340391767714,0.018090674600425207,0.011645685690870383,0.05403628730509335,-0.02177659988457749,0.0016704362409715305,0.0006659698427112638,0.0026465966645225223,0.012023221828387111,-0.016130981487363645,7.062480656284858e-05,0.014717991111288579,0.00918388048939543,0.01244374453683391,-0.003267899016643108,0.001834646212599518,0.0176978087046905,0.02614051657458992,0.09134320760093576,0.01826562823514891,0.00011338456648981033,0.01914224096606993,-0.021949902910535415,0.06671071810717856,-0.00351901838668096,0.00013338204265418761,0.0024700303535326977,0.01233638565484747,0.05104071695268687,0.007277563063683681,5.899091011336782e-05,0.0027470972370436404,0.04479767794139654,0.13747287833210178,0.031111448861079354,0.003088563504537654,0.0018780579847095691,0.038207536506532906,0.23307634845126166,-0.02268893614757678,8.154388560739504e-05,0.013421907167295582,0.03554488175229119,0.21248846316755246,0.08104910255670071,0.00012131164803452935,0.014272438413631872,-0.017912026694238463,0.09439030791510078,-0.056174882209420615,8.975652366661139e-05,0.007329698371939055,-0.001504339880685645,0.006426955262493517,-0.009745975902208673,5.882854227597937e-05,0.03602660235486479,-0.013645644457476841,0.02320545328325005,0.0230124814545881,0.0002867037605026192,0.009960694593656784,-0.025298779079966055,0.1106692527906221,0.08081806089919549,5.684430497088743e-05,0.012673121861287561,-0.025656673234658096,0.32140089953043677,-0.0008260671687899277,2.0596078600978147e-05,0.007344241308543206,0.0173404909259112,0.057345338734011736,0.0013580419054016904,0.00010569932909702985,0.0025458024598775343,-0.03238874815701919,0.13424826847400576,0.13575195846961233,0.0003802887173063122,0.007005649856995098,-0.041613961827459224,0.21714508395742074,0.03121223217589791,0.00010976423598134849,0.020010011625645367,0.005887921522802499 +2017-04-14,-0.00960647058356242,0.06696881087099456,-0.0070799497974683235,0.00015169730092286785,0.005435118125516476,0.014266196607880855,0.04767993205019542,-0.019396877326384464,7.179316567107863e-05,0.005252824231905154,-7.77994360780571e-05,0.00030284792078633625,-0.005937954774965193,0.0001188362824181861,0.016758384481667894,-0.009089943351745438,0.010369850950272291,0.010133115679673047,0.00029583974458831326,0.006402690944549223,0.025082560774201058,0.05177706005888984,-0.09244553280259213,0.0002534733229234588,0.01317313235297357,0.017444299255209076,0.05437637050047521,-0.031124174517768156,7.00470826170934e-05,0.0031485579016640817,-0.039604579934144735,0.13040249934958706,-0.03526265245411426,8.91147003604375e-05,0.008574118558301628,-0.030149038454563248,0.26092268120204126,0.02118505754028802,3.9624176327096796e-05,0.0001392181596118412,0.015856603036813386,0.012888040246276036,0.021551488045932155,0.000948785539522673,0.010280883757596287,-0.02525341577262465,0.06764047419682585,-0.011342354034944501,0.00013054954779753312,0.008450250024160604,0.02326967411575216,0.018710191668776417,0.03317868438095007,0.00060790599032117,0.017332355176481413,-0.0032433704466511776,0.03850137535321088,0.0007554140706326286,2.5104010091475692e-05,0.004087537793387913,-0.0028246951998647314,0.008136309615420131,-0.01676531770782332,0.00010313240920245373,0.011104297267755636,0.011769175635720023,0.07038904544755974,-0.0010908466525228297,4.706551190539785e-05,0.007797474127054653,0.007872506186845605,0.008994125846198795,0.015392675901764182,0.0017071709942320446,0.002234765740871045,-5.6221687392027985e-05,0.00035747168344744,-0.04266923641476829,0.00012942385700795387,0.004970163945792262,-0.015995212526846055,0.11111846667922266,-0.018976232862853323,0.00022290099486648704,0.011600383269432545,0.004952130289957157,0.0377854963372079,-0.012206610527470203,3.691712627486681e-05,0.007812066769568443,-0.04595652290337092,0.23397824981632745,-0.008396703031640943,0.0003237117634721204,0.00825559743495501,0.11145439218013402,1.5663731479122374,0.13185408889208083,2.9527874718590654e-05,0.01797636913365637,0.0020229637192356303,0.017717111588619095,-0.0159536319328055,3.81484487364962e-05,0.0016184914331831197,0.0057350981468020255,0.019121361498135273,-0.018961180645567906,9.661505339831463e-05,0.01705437775344519,-0.01720930671985976,0.11619298301439931,-0.004794314593316686,3.421179410505917e-05,0.00754041175328822,0.003250783956427384,0.009420059887353775,-0.09729346736587227,7.650887678860703e-05,0.00594308526244578,-0.00687932916469036,0.024429305273345407,0.009754782431694673,0.0001287607712225421,0.0014428315996422854,0.008066164123384626,0.007733321351744849,-0.024613562374811406,0.0005961788411180425,0.006957734421403162,-0.0035473607536952484,0.01285515450870893,-0.06169245269563497,0.00011614862291697926,0.00321632657669132,0.03949290580542698,0.14153458598571841,-0.02037638087303366,0.0017909179331327013,0.015408193246210268,0.0017496543398318998,0.01435847396637456,4.072530539739839e-05,3.133474526936529e-05,0.005983887391261799,-0.013427309016755333,0.04041714427711265,-0.05242409616817716,0.0010861620608866615,0.014565027110156883,0.061249371601615483,0.6190245942735939,0.18728011665953972,6.588998010262085e-05,0.005161671901616031,-0.016572794072397763,0.024575520803699725,0.02257377674869831,0.00015916163437911283,0.015552640087009448,-0.015200640698927613,0.016290202145913587,0.0031532800344928717,0.0005355984776084324,0.010056613303701693,-0.02074372788946132,0.07944673236206133,0.029324282175246734,0.002023769789718354,0.022513273307292685,0.0007666657224732426,0.00340262153741995,-0.06071841934093087,7.22907566183084e-05,0.015190683504713873,-0.01380106910383972,0.01730637898535623,-0.10200256310320437,0.0019823654153766144,0.022020932544404938,-0.05723432450928624,0.19933322506582868,0.08784337441638218,0.00011376086999017927,0.01401968413128911,-0.0038956281716023737,0.01042403513401048,-0.0805667823360248,0.00015149629345741255,0.0007480355685374397,0.04791246341016202,0.1974961089546487,0.039915826301152334,5.9211202621999765e-05,0.014557677137677085,-0.031686381216373904,0.11291406766874583,-0.05680755791858409,0.0026597612096092007,0.01097025141968825,0.04087037919269591,0.22203968188842632,-0.007244644195835031,9.156271068357747e-05,0.01219227259261787,0.0007692842110524153,0.004381551354329311,-0.007492022160819247,0.0001273267626741785,0.011221799044188626,-0.042843898570836245,0.27435402805346,0.017091992102873498,7.386289752673547e-05,0.00027284630405826997,-0.05034757151987715,0.24871983388936114,-0.05732523893079748,5.087629811043326e-05,0.004096226784486009,-0.01028956879986281,0.018010285393002177,0.00789264341341388,0.00027855180351318604,0.00606870858805242,-0.014392552190849086,0.05912148702296663,0.018304915725651894,6.053504087203353e-05,9.009994937296214e-06,0.010045747398565896,0.10792039038880527,-0.0019376684438219822,2.4016517407984525e-05,0.0048636032757073,0.0026919057414567225,0.007834337449328191,-0.05490684333180692,0.00012010650769082974,0.005901517935976922,-0.01983481473767782,0.07469759408992477,0.019247984137288263,0.00041855208079590023,0.0011583263565674309,-0.06489161098166621,0.34056823549555565,0.06137176216658731,0.00010913302986721685,0.007622025562124871,-0.00277593587529812 +2017-04-17,0.003964201602449093,0.025640713943860492,-0.0006248042960199569,0.00016349790911857686,0.008582301605177199,-0.0166486171341416,0.058569891969572775,-0.14995767899945767,6.820469475465656e-05,0.0002532519599110066,-0.03717586545045685,0.10162498758805165,0.07170667826761754,0.00016922237523246949,0.002085814026978468,-0.01714303923627783,0.017400891466130088,0.029419843520264048,0.00033249427909580275,0.012224609928158808,-0.005295921264583399,0.011650913951008333,0.00525444407858916,0.0002378369338032817,0.0040528276814567445,-0.007484817828249346,0.018462348126012374,-0.013996027934424476,8.851992527498238e-05,0.009475585873081935,0.013084442179642622,0.04706902194052539,0.017639159628630854,8.156613682005864e-05,0.020715718204805774,-0.0014469649613495063,0.010884800738278615,-0.014765197429861647,4.558648913588445e-05,0.025060147400130232,0.005188513810662066,0.0036812807088833525,9.78310837458263e-05,0.0010868980978469987,0.010053951516015677,0.031248102891041334,0.07024859438469805,0.02151311747555541,0.0001555420804472894,0.002762962287654413,-0.03531932929986149,0.025291864070712714,0.11145650032378743,0.0006825837847356888,0.006820399526800965,0.014475182694931924,0.22437951275046397,0.01788841769845442,1.9224880218926658e-05,0.013939566613834864,-0.03414828831415217,0.09482855777144047,0.027908871993632223,0.00010697463956440931,0.01574978640407948,-0.015343928597555763,0.08117128273220235,-0.006559724042980146,5.321033315650722e-05,0.005840960500853136,0.005810893673609279,0.005121807990752987,-0.017913002840152046,0.0022128022690738568,0.004179927147463355,-0.019050633811219558,0.12481821858364307,-0.04514757134642459,0.00012559824093100427,0.008796944717598116,-0.032318998204467445,0.19765958126359653,0.006693743731187039,0.0002531909926001993,0.009801722371353017,-0.06214941816405963,0.4093770539732388,0.08096198347750329,4.276362641154029e-05,0.010109109759896399,-0.02518682843864353,0.13973744401418062,0.030378063662661,0.0002970622705902125,0.004749762505661953,0.019609345281743434,0.2717096736271763,-0.04230154206132225,2.9949406749653325e-05,0.004140315868009022,0.006753211477139982,0.06797425494736653,-0.0029997096702470624,3.3193083840127554e-05,0.002433537492718956,-0.02008192997453377,0.067026207557033,0.007880410151385655,9.65124981453139e-05,0.009277759089797251,0.013374162688064937,0.096717751763174,-0.0045568774653335945,3.1941314522051136e-05,0.001980688606652128,-0.016178675093089817,0.05245677610070111,0.016812674192822362,6.837836932383298e-05,0.004859607360668813,0.01667832417908689,0.054458290172651413,0.08385844665255346,0.0001400351319550405,0.0017312233233594194,-0.02151420423173584,0.020030491265546346,0.011488533413210699,0.0006139164174643124,0.014299648869487754,0.01728464106837087,0.05384911117429469,-0.0015142242620480933,0.0001351038842549422,0.008019849514815594,0.007037641607838097,0.019924350355238703,-0.019662591230293583,0.0022670554955664937,0.011354350882851477,-0.044725849512235204,0.44447856601070945,0.09877147319183767,2.5875572689379228e-05,0.005240974137849685,0.027526330180788726,0.08160246995576509,0.0037148435709017215,0.0011028495758649433,0.0002072681622067073,0.002783168940571255,0.017807037835593075,-0.00024825846295303957,0.00010408149721248074,0.005710973917978672,0.019238889142077806,0.027542312498215708,0.0054605072972890596,0.00016486367513992458,0.012465056111490264,0.018902953874193967,0.029159508448258657,-0.035848532081441564,0.00037209461915208833,0.00831157002289344,0.009028677888116851,0.037496946495722536,-0.0007749407656137403,0.0018662877148489137,0.020817693298071628,0.024748713069126158,0.09929810870408888,-0.016105992103888824,7.996538163755765e-05,0.0067088306818693065,-0.038433775398577626,0.05302469614910754,-0.0398868667310681,0.0018018226880539667,0.002632860608910081,0.046486028659480934,0.16253981702352036,0.047184545632515756,0.00011331273330070803,0.03611514290636613,-0.014703622975025917,0.03745745498724958,-0.002590560515582673,0.0001591279500139669,0.025285413790123668,-0.001380071999372275,0.005672340578477645,-0.0065557429295286015,5.9381801736819e-05,0.004275187384366868,0.01705545501536183,0.05807873656546883,-0.06845438289188775,0.0027833268425579193,0.01910232491566144,-0.0013477057529897327,0.00583256061245535,-0.012948410671015181,0.0001149413760906521,0.00020723692918304904,-0.02018688040133879,0.12210352198450944,0.0004920330825296689,0.00011989520190786107,0.008225586549896757,0.003574446651158788,0.018469830793250434,-0.02146261919696398,9.15365629902081e-05,0.008212964854669816,-0.02790665886983608,0.1257018070996167,0.009910990959277303,5.5797368497068466e-05,0.018812577039073863,-0.04753969784706029,0.09666096588407437,0.06691255545682742,0.00023979199487162168,0.005841558247795925,-0.007432388771437123,0.030386049280413954,-0.011716390217146587,6.082310074370798e-05,0.007448665986161199,-0.042721841765087795,0.3698009099165803,0.17255100605430176,2.9806657494037428e-05,0.0011728277412876346,-0.021551418120315073,0.07204134084886488,0.05370757573219654,0.0001045690180695322,0.0011575953594289345,-0.008927427667780327,0.04218874136947991,-0.006088743240587715,0.0003335475399558965,0.005272986456194957,-0.028039495416409665,0.1316043150718728,-0.00395027725718601,0.00012203147503645132,0.036909530436852425,-0.006706900223598125 +2017-04-18,0.01478406314444739,0.1142545080297709,-0.07047820844421393,0.00013683810401220013,0.027532169759663713,-0.03866492238754926,0.11679096180436743,0.07282584379686158,7.943619520239838e-05,0.007435530751668284,-0.004125431419161125,0.014687413978005041,-0.001628452007551855,0.0001299335308680352,0.014383126356913791,0.02260006320113144,0.022383410919864302,0.04236602789459392,0.00034076206572046926,0.02438294052796149,-0.0006096453274866683,0.0009855919041986715,-0.0022756458812486302,0.0003236517014095762,0.006010125856221917,0.009706056472916069,0.025935210696351883,-0.012114485218147989,8.171462144968498e-05,0.00822722369735567,-0.008508904494138261,0.0289069987412054,-0.024218757922194353,8.63695189497996e-05,0.005368303294296318,-0.008288465384210332,0.0633903593400125,-0.019199046945157502,4.483834031450792e-05,0.009574922427235498,0.000897450588926459,0.000814366643841681,-0.0013171049214661097,0.0008498364546951421,0.0009066657957259769,-0.0004389591230867773,0.0009577583394114393,-1.4623980469459125e-05,0.00016026180278701897,0.01667688873247899,0.0027782733741421755,0.0020376888609586917,-0.04174262016952028,0.0006664406260747886,0.0037547910686372807,-0.011764602633299367,0.16247514036301097,0.007829523543252568,2.1578096521692493e-05,0.006139233247914618,-0.01977195600171488,0.05663461475371303,-0.0002906215189288031,0.00010370954348721181,0.00976580740433143,-0.008940559575926616,0.04941734114489195,-0.005923728058703348,5.092688875819958e-05,0.0008505704332794655,-0.06063058774926445,0.05070118413244312,0.13041963834285947,0.0023323657127831622,0.008291049305372394,0.03126132592174704,0.22973907902540003,0.003762620906626917,0.00011197591664957457,0.0021944861716601434,-0.03189451803989175,0.1486401846751436,-0.011023862490998165,0.00033226763446926415,0.007271058422489138,-0.013733631686166075,0.07811372516464822,-0.017265589070155265,4.952437492442629e-05,0.018112818523604614,-0.021791930459288216,0.11118369424655547,0.011126894999502528,0.0003230289247272364,0.014215657149895748,0.020682616864175676,0.23313518406512923,-0.007075244292186296,3.681526215003671e-05,0.003191058170486943,-0.02357288980797457,0.20922762254234678,0.0426813876169393,3.7642244820886074e-05,0.005900118275651503,0.0021446321203972976,0.00545721560466896,-0.021214565328085515,0.00012659147195064258,0.01608011171963952,0.0015767205762662803,0.010853036876753671,-0.02650986811777958,3.3557981681376045e-05,0.015507092592760043,0.003797938164796447,0.009808157348218235,0.004321822440222587,8.584951529120601e-05,0.009126177064989888,0.017216210782538148,0.06178085283056981,0.06551430213805126,0.00012741843533118212,0.0028986349599955403,-0.01859493428876317,0.018547554308614166,0.008350801089364254,0.0005730381788793897,0.0036133996611884805,-0.01679894420944765,0.052577746254696814,0.0018840975025788962,0.00013448257950961182,0.0030522427637387907,0.02026671568395145,0.06647095660960066,-0.13759625494020547,0.0019569089554309247,0.003957937199876111,0.03459826609885908,0.3811802127152823,0.016718468642744636,2.334028645162852e-05,0.0165824135083659,-0.0233239864169753,0.07688702241441767,0.020551853073139413,0.0009917929279447874,0.0021445422105652945,-0.007485125932779764,0.05087511736707754,-0.030959393347981954,9.797591557128338e-05,0.011022476173034113,0.0068576824622962875,0.01066178577644244,-0.022544178102285393,0.00015180735233793504,0.01197800767982081,0.008548905568422192,0.010782306919622106,-0.09549709189162055,0.00045509571226285165,0.006861834320550906,0.013017247369788668,0.05682207656768095,-0.03180451985707524,0.0017756296896097783,0.012440007816736313,0.0024957814092541747,0.009862945463232235,-0.027207978933498387,8.11877085639657e-05,0.006958398500036147,-0.019955136428809517,0.03255223755701497,0.0036265268042611656,0.0015238809742457206,0.0243718899795469,-0.017630484264279787,0.05513869452235977,0.006464465705375677,0.00012668459241596978,0.016696728249720596,0.024736569537841653,0.06687889900522749,-0.10138123941467928,0.00014993766139307103,0.0055887573271799305,-0.012915648808042841,0.050575649904727696,0.004821221881778499,6.232878775893971e-05,0.012302450191385737,0.046183585839924796,0.13797802202744006,0.04809165547777735,0.0031724573555349887,0.008452480998813135,0.024023605284304306,0.12066328521019885,0.009604188621655537,9.903839850521296e-05,0.010197777739487384,-0.03954964984963684,0.21079305315803942,0.07377334907841196,0.00013606522149527445,0.005109459984171375,0.0063249594495181265,0.03523113358775436,-0.030515044556537096,8.491410316633087e-05,0.012058214231092424,-0.022320528711697003,0.09947361552062443,-0.009503276597227198,5.639543737729474e-05,0.03298395907353923,-0.07668973465289358,0.15612974853328654,0.14252400261822687,0.00023948646248275987,0.005089483945150436,0.010703268185615258,0.041521391842412964,-0.0003260953072535866,6.41001255573269e-05,0.006492368697226329,0.014536347017224656,0.16803799139349368,-0.014078082026237731,2.2319223743445166e-05,0.014706112937558668,-0.0047435754164619455,0.017202479851144745,0.004520984628016597,9.638816587690443e-05,0.00546283027258418,0.007798047224588134,0.03134463885973253,-0.0065787083894688035,0.0003921485029489483,0.009229516366566236,0.005144703717554202,0.02497056200581703,-0.034908184509908256,0.00011800593433931491,0.02214582658279462,-0.0033088023356110897 +2017-04-19,-0.006875016074129489,0.047155208824511956,-0.024471245805498056,0.00015418091878988927,0.0015703105465814016,0.046856376781678526,0.16041431546705484,0.011607545234579011,7.008677997824001e-05,0.011648161890510659,-0.0005163959068151986,0.0014232496357476367,-0.00334287098774202,0.00016784133080505027,0.030673197663550898,0.03853066511013893,0.039786806504680326,0.04411412276534022,0.00032684005904731376,0.00955752326862028,-0.0006966113732626958,0.0016188693990076175,-0.02135027498909558,0.00022515236813992789,0.011917742677660981,-0.0026914217564007726,0.006850539437860297,-0.01119214961945524,8.578349329753572e-05,0.002647955616796758,0.004425151160613127,0.015425768968566156,-0.0012794124736195955,8.41726776840796e-05,0.006026047431911515,-0.025627746433206824,0.20750886489338724,0.013542705163453735,4.235184924742367e-05,0.01970387429788317,-0.01370983589057515,0.011479830895590471,-0.05066115041206488,0.0009209616630386295,0.0035125992797681903,0.00016626034610222167,0.0004192370652949649,-0.02204297898312731,0.000138672675390387,0.017506672599507198,-0.001617185165474471,0.0011548599404881655,-0.011740764655934138,0.0006844705866989973,0.01251387748182146,-0.0019033663431061118,0.022805743078785832,-0.023737181975962238,2.4871440964372425e-05,0.004002510811402654,0.06438707212411161,0.15251606785772925,0.13338470989060341,0.00012541056223759582,0.0028353659047755907,0.0005811465034925591,0.0030125302421382502,-0.083418806297654,5.430202584669201e-05,0.0033245046599622934,-0.011571492226635248,0.010425961120484238,-0.027832128540459907,0.002164692634574273,0.008281415161374064,-0.018863224602883415,0.11448845040307107,-0.025909983272304718,0.000135583351913636,0.02678737567257755,0.05979243381186546,0.3624382539706604,0.14959832349323782,0.00025545854474613884,0.01388782992130873,-0.03620497819033002,0.21306337200239492,-0.004906496579627987,4.7865263072443756e-05,0.03211572678042627,0.03939302480255352,0.2246656742788104,0.0988298354630751,0.0002889810824382611,0.0025949022255013533,0.061817110173091244,0.708292500003975,-0.0038093181995040226,3.621815198962671e-05,0.006200173100633144,-0.010830354905799864,0.11389299117981817,0.007378019587306924,3.1770744980430856e-05,0.006666516719484801,-0.06321398143940617,0.20149765007807724,0.1093042941486242,0.00010105688673033814,0.003338195846193405,0.023273746579105366,0.1684554166083046,0.009248483470267015,3.191344566608571e-05,0.0004465589981229416,0.02677467907043867,0.06987296937224306,0.0839775208249082,8.495568706299905e-05,0.006817883691453392,-0.01014474962647215,0.037604396639870155,0.025099252854787195,0.00012335345093948005,0.004863262197497246,-0.03743664558642568,0.0321180866377897,0.03384628975634285,0.0006662279125260704,0.00571293129270134,0.023333316468003795,0.09490694330817888,-0.03098662143406923,0.0001034819238756798,0.013816870065694651,0.0173329215159918,0.05415657287042854,2.7824614069729022e-05,0.002054186031291053,0.015009310433603913,-0.05451763106067212,0.5534015899354334,0.11008757960879052,2.533254186452176e-05,0.019872854645488887,0.02392541263064365,0.063816970465686,-0.0915956292124655,0.00122572917382048,0.019189172172317207,0.005725463417590087,0.04455395536813747,0.00019831702621455358,8.557561361435317e-05,0.02092675038722308,-0.012045448505077763,0.01749513418971205,0.0027154139879684855,0.00016249914628655424,6.271360279491755e-05,0.017109371540244535,0.022914265894282564,0.00313956757640028,0.00042858012077711527,0.004481799794259068,-0.010550287658066006,0.03966879226029263,-0.0052084282380289665,0.002061416101047773,0.02096609248060443,0.00549117594546132,0.01895189218215801,-0.04930284830201344,9.296150642638598e-05,0.02044870378339896,-0.011972297921859758,0.015359249844485282,-0.004698293194620805,0.001937691803611522,0.0035562293909210015,0.022048025215184182,0.07058556084569309,-0.07056394859423122,0.00012375702580342,0.006029901521725373,0.014729960892135987,0.035208025890993824,-0.059307117116125456,0.00016959783148415514,0.001994874749527747,-0.054398561305871465,0.23017077423907234,0.07037568391049508,5.7683441115212435e-05,0.004822207473800686,0.00039686745320035606,0.0013773810988372353,-0.009758421809846457,0.002730922798580422,0.010537668240644766,0.04629178686609581,0.2428407206621558,0.0492516191153092,9.482503301439246e-05,0.0032250550003316727,-0.016849821484075454,0.09609984256037866,-0.0006218975684741903,0.00012715499124661315,0.019334063818729506,0.006692029411508311,0.040441833704742886,-0.02372278926774621,7.826646173417422e-05,0.014755135289715922,-0.029239554661561452,0.13522693188479512,-0.010116307551857813,5.43444194997112e-05,0.011905550371508075,0.05987423979789266,0.11201163644488804,0.06803696182952076,0.00026061911416630127,0.01595134203760723,0.003913159102003884,0.015357497247634787,-0.028855057170503105,6.33609143156034e-05,0.00015971445124767566,0.007897863872557614,0.07521592338436649,-0.0007142529931539442,2.7091380622132095e-05,0.005742957235124143,-0.017389324181636013,0.05547178332336856,0.025745397443655456,0.00010957703390736198,0.008948313575039604,0.0009602337966297166,0.003435164361122404,-0.00011164161123816219,0.00044061313224112795,0.0051823930091301484,-0.10053354198154887,0.45200384684765826,0.1305998789442325,0.00012739155793567002,0.0019358658542941913,0.0024071599681407176 +2017-04-20,0.010873231606797536,0.073726273245934,-0.034258701499775966,0.00015596348872038042,0.002349770589286534,0.07176499944477924,0.22548960260954903,0.14985994152889673,7.636541059536555e-05,0.018172152256797174,-0.03179779499745883,0.10182460729796593,0.03532109277727884,0.0001444579560697636,0.03009082561300888,0.03452408266671253,0.035172442471581564,0.06289895433692205,0.00033127409497214446,0.008531827744988184,0.004626536404805641,0.008945866010571095,-0.00709986313521185,0.0002706022273822923,0.0084638260258501,0.008128803097997605,0.017216873491481283,0.0061541749613838355,0.00010309059717598125,0.004171422146446543,0.016712075590714248,0.0608160797488025,0.021820681752578112,8.063095892465896e-05,0.005057361930987575,0.011930665698241642,0.09583105327411022,0.0026144626290335177,4.26930350372105e-05,0.004219651701625818,0.00788171727612065,0.00765329027578581,-0.018534496785809287,0.0007941772703989444,0.002964293563624827,-0.03549111722818359,0.08773229336816063,-0.022418943792050623,0.00014145622856450647,0.006893551081594602,-0.02799394542224302,0.021701526402944427,0.03431198088577675,0.0006305190147551644,0.0027270428136814575,-0.02715074603096935,0.36816462999783717,0.06169722852624889,2.1976700710381002e-05,0.004873924133956561,-0.010731944475491344,0.026460848749600092,-0.023110270118388884,0.00012048297551494778,0.006442715821200939,0.00016685266230344193,0.0010552327721547142,-0.013220404127672176,4.450888229544702e-05,0.003898090279747628,0.030715737708948268,0.027440863720924732,-0.00102543752763989,0.0021831629175605685,0.006145067060578469,0.008924637789769261,0.06122343205518161,-0.007093985926150253,0.00011995684514213613,0.040902735237209685,-0.04209380516996127,0.20771095763798006,0.0026573818600860648,0.00031381016736760234,0.024200824032963395,0.04288744373014854,0.2305561743165716,0.05226233372308185,5.239795771742862e-05,0.027193248448639715,0.002283050516376138,0.011975345688132126,-0.03700550629517896,0.00031420585218666034,0.024244131907850037,0.023620268274766616,0.3100805534666651,-0.04486854394886835,3.161116682033666e-05,0.006216494871549336,-0.0071174470038263115,0.07697650395522124,-0.01679867329726491,3.08921239229876e-05,0.00837654898077147,-0.03518014606391506,0.09621489661225133,0.019810648913270792,0.00011778177000920098,0.02364959118078224,-0.014410268555852474,0.10903019563717108,-0.001525600123122097,3.052935713353178e-05,0.021842260061494173,-0.001105680109026839,0.0033469113108988416,-0.0241746117728171,7.324241822679972e-05,0.005669232281714771,-0.003919345328648383,0.013542524401761945,-0.07083733754687205,0.0001323312756740082,0.0034707045418327894,-0.06263829502977292,0.06898425822876914,0.027248385934027838,0.0005189977685843081,0.0011636026201852865,0.035159954494468446,0.12867720962542586,0.0256253397453211,0.00011500922548764368,0.0025320902165687307,0.01219868235755242,0.05135664894126041,-0.007287308063642864,0.0015245280505149523,0.022585795216216918,-0.038428375921567885,0.3621312762572333,0.04457648812199003,2.7287779089793064e-05,0.02388476198548918,0.04563656217060108,0.11672037193199047,-0.0757126332891931,0.001278313949981516,0.0008255636618617905,0.0224556352884922,0.13334216756033304,-0.007355560535758676,0.00011214592018687275,0.008903072585632952,-0.02147940253898782,0.0333549821762134,-0.004104114203302899,0.0001519871496715327,0.007696517752275474,0.019382969327037144,0.026368845288583014,-0.06520163008653393,0.0004219229123266511,0.00253656283674149,-0.04088699378346193,0.16516444952524906,0.07963363803451909,0.0019187524490481994,0.011517671853968915,0.03675900208977687,0.15238485408112887,0.004556393771773041,7.739488866242823e-05,0.0057866633696548025,-0.012063624179031486,0.015352726724619174,-0.007707232809555431,0.0019533023439816514,0.023782064515187756,-0.03224428003047348,0.1309469901984119,-0.0674924518479339,9.756031638210874e-05,0.017266216739411352,-0.029864793240170197,0.08810707715768686,-0.05847825686614575,0.00013740707479172217,0.007005056632043681,-0.028544367201595918,0.12411680443794054,0.02225344455746925,5.613112661658512e-05,0.008272540207508847,-0.059703160851470705,0.18587734019458502,0.0032170317446919674,0.0030443104125923355,0.013253685603082222,-0.006160659042992314,0.027937954979378583,-0.14926971777261,0.0001096915393807275,0.01736065464847732,0.060728264836826105,0.3454417342492925,0.1721602148747752,0.00012749021439702603,0.017026599907861224,-0.041519935293403545,0.21055984442031994,0.024409480247893613,9.326738830282961e-05,0.002132741365914793,-0.055086657466592484,0.26923359784498896,-0.012641051003734749,5.142384679700779e-05,0.0226823395802148,0.0075050385534302395,0.012747627976364853,-0.006938949994007509,0.0002870469528629402,0.047564579853394885,-0.008014812238400521,0.029280977370622442,0.001123381676417411,6.806473525059431e-05,0.0014581286983802806,-0.018444570493529145,0.19677143203530226,-0.0027079118398023266,2.41845374605579e-05,0.002532170885253182,-0.00804863914303884,0.023651611161855518,0.004301020807978269,0.00011895171023235759,8.08930894864462e-05,-0.0052605500934104505,0.01974720928762144,-0.007578617561869762,0.00041990727835290595,0.00026740005441759076,0.0010456091102778611,0.005011396363923379,-0.0015880334913232939,0.00011950398869137787,0.018131751572417552,-0.00417878287725722 +2017-04-21,-0.015042995014142408,0.1084927761009202,-0.11246122749587188,0.0001466290677740879,0.001638057423383948,0.012932060906742265,0.04268717171871712,0.00031326806337404897,7.269104073553216e-05,0.01964608108120548,0.008611677922554833,0.0288544807141747,-0.012121959364545564,0.00013806122434988972,0.011555856239977791,0.01172148809925899,0.011841162148904476,-0.024075750000567327,0.00033408446323235033,0.0024883784210015126,-0.014298571150598282,0.02737988987573921,0.0013783427226363107,0.00027324908482063493,0.007534401946506988,0.01670561981526688,0.047302941799334815,0.01928679662143803,7.711186070489872e-05,0.0010071124670110161,-0.053779947090892614,0.18044510353177326,0.03409302880960622,8.745106928529773e-05,0.00437424269700209,-0.006168261927586958,0.05682913075631049,8.671194459210574e-05,3.722120324994968e-05,0.016657905461145876,-0.011183336756225116,0.00855886995830705,-0.04263421113141375,0.0010076269195291737,0.0004936993372543048,-0.01502613655517485,0.032946107327743814,-0.15396360797746575,0.0001594795893926679,0.011366100904771137,0.005913558284842991,0.00542549620202367,-0.02268423751194793,0.0005327626568928405,0.01413346791247928,0.03169663208552075,0.4256610937429403,0.10566308394290892,2.2190748515835786e-05,0.007105835841350214,-0.0001785564214754718,0.0004970260035493802,-0.02379266902029299,0.00010672038921156125,0.0075861505593311715,-0.018984093014565023,0.11802196999310778,0.05088535581522569,4.5278164389892265e-05,0.014140795564792951,0.05140512203611305,0.05584174281668491,0.16976285750115816,0.0017954379597822359,0.0057113241249139345,0.016123933088745473,0.11334683418300469,-0.021872449621144246,0.00011706139639145621,0.0076459770712473465,-0.008231228535924512,0.04723320795275669,-0.011779310935390705,0.0002698518806235511,0.015429185721217698,-0.027726331904241553,0.14558213995426986,0.00019679773700169832,5.364697950482969e-05,0.008179081041742019,0.006972151544340418,0.033878880236385016,0.0033613421028811557,0.0003391755813519355,0.006357874557086958,0.05324887392264568,0.7919668796868813,0.0016420441000796772,2.7901891117849097e-05,0.0066472236722733245,-0.000700117363733016,0.006648015569085858,-0.0024770832443973003,3.5185240996558073e-05,0.00047258136501769415,0.006069583147387246,0.019166972016871526,0.0026590060964590714,0.00010200656241061896,0.005632387610368284,-0.03894022504159004,0.25698920310648876,-0.009948361515140242,3.500063756481353e-05,0.025529583529786813,-0.00629068310321943,0.01790323360174411,0.0012689190207072507,7.790112182298338e-05,0.01718736433174649,0.004206140916899532,0.01942250099288867,0.0023139405212686814,9.902098951131436e-05,0.008246125137441052,0.020078144977713864,0.01851646724884857,-0.0073201776227176645,0.0006197849351987459,0.02845767466381838,-0.03139849915226341,0.10038442396158552,0.09907648400356658,0.00013165233529029984,0.0046124566944164055,0.003711287261864728,0.013517476875603047,-0.00931699665247672,0.0017621712459143706,0.001428856949060162,0.01268960977211659,0.10972323997177716,-0.023987099664638863,2.9739375126999895e-05,0.023098589826977413,0.054832422100321694,0.15389461388748266,0.014311381740721824,0.0011648909726993458,0.016167028832507938,-0.0004861670509744837,0.003710802573100177,-0.005485832373032327,8.724555630996773e-05,0.006374258089436954,0.0002959351592581487,0.0004122515031500616,-0.0021194388183527276,0.00016942586204331196,0.00928940087769317,0.008428043476978786,0.010333248961383807,-0.019457598884235514,0.0004681594433185499,0.007059360034946253,0.013609027518350355,0.054659204219320474,-0.01451389930642365,0.0019298081175189625,0.02799745132319414,0.036932235411111486,0.14306137330560323,0.06250101182030175,8.282731361277144e-05,0.0072141111305524044,-0.030557340241787974,0.040421190247979896,-0.026952249922026418,0.001879246041143261,0.013245212631975898,-0.002738323790353814,0.007743826805233151,-0.011524935341496498,0.00014010228061182481,0.019288067408139892,-0.0319846700152017,0.08498414449286514,0.0025815485645460014,0.0001525683128531383,0.003781533707428845,-0.002263195153576395,0.009250917216276586,-0.02582557436626486,5.971055870962203e-05,0.006859133301668905,0.05123946847338007,0.1551543334430542,0.04148295666579526,0.0031301039749252278,0.005378320259988669,-0.018478239140637277,0.08285869319853807,-0.01654747887570332,0.00011093359172515499,0.007846045918950089,0.019453524600806994,0.09393629409841325,-0.011312283152465937,0.00015018468921510104,0.020012335193673937,-0.008095961393491119,0.044165837854411596,-0.027896008305163453,8.6702307018006e-05,0.003607140679313417,-0.03328377549956798,0.16756460037232737,-0.09352195635833989,4.992265841905555e-05,0.006631773839672952,-0.038640935550840576,0.058828074518300584,0.03494511348224733,0.00032025239990716124,0.011540039547120602,0.015357325860625385,0.061814551394928224,-0.024958146543535918,6.17787694605838e-05,0.0007111058526754542,-0.004130616473697053,0.04319201898753647,0.0032861433361931515,2.4674175694624435e-05,0.008155906559156005,-0.0014716631397604664,0.004097081759378394,-0.004644963911736442,0.000125557525016962,0.005381379837857768,0.01725247841564065,0.05924777783254381,0.02765060519893932,0.0004589944111402531,0.0018403560136504233,-0.006763596384257262,0.03234604566792276,-0.038440264152547074,0.00011976454914293712,0.02669635060477668,0.0008430803253560736 +2017-04-24,-0.008119218513518179,0.053488976112210186,0.0010855616268223465,0.00016052272699157942,0.001958968823562581,-0.03810903666060652,0.14769787382373253,0.05965166406075805,6.191049176300698e-05,0.03288330360659816,0.02764054845911907,0.10707340878727445,0.005528122454815575,0.00011941592078320714,0.021732426533939857,-0.004433681920468741,0.004589097787585952,-0.010375090192085849,0.00032606567067263803,0.01468733441764282,-0.010243127429703047,0.021897215655407903,0.0013316729811410847,0.00024476056798784985,0.007355484387380018,-0.002641383147145611,0.008031979620828253,-0.0059856702265995475,7.180514185504782e-05,0.015230014746665271,0.018061915128919286,0.06943424623779047,-0.06749258818623116,7.632730478908342e-05,0.02414913743291617,0.0408929325355889,0.29568700444596635,0.08659846537916602,4.74257964482231e-05,0.005495523916900057,-0.022093133750290178,0.016404362708004126,-0.0112298571545703,0.001038586672334861,0.003068981219614195,0.015233111205610599,0.036120030762827306,-0.01591857764493936,0.00014746956100646132,0.015476760283757492,-0.011675365859358876,0.007991156873361676,-0.07092465141942943,0.0007141430276486822,0.006965755986870851,0.023572470354565656,0.28447723158550337,0.014964379050070097,2.4693370618944787e-05,0.0017230554797577889,-0.029314414635170642,0.08960223023214024,0.011769440154542544,9.718817896060587e-05,0.03313155891931505,0.009600191625075676,0.05688228211416615,-0.17394928232883547,4.750777689383347e-05,0.005710265587104021,0.019367900709756327,0.018863900563319224,0.02520259197670471,0.0020025069134256813,0.015240000227833415,0.004316100276706177,0.024703913614103196,-0.047815672733914946,0.0001437731784431731,0.001277440322865325,-0.006082555213890573,0.03007621823150914,-0.0001952717475270327,0.00031316344679741204,0.015083780811907015,-0.02406299468415117,0.15711344273598424,-0.1619526355420223,4.314170312420162e-05,0.015988288539973177,-0.02666918849397953,0.13769102294288604,0.028374934091112154,0.00031922065320473574,0.002600279422180385,-0.05487896176860268,0.7118597740007567,0.07013292923515119,3.19920202067209e-05,0.03480846167303104,0.011814995348673913,0.12173742755480839,0.0033056904970738977,3.2425833150238506e-05,0.00021711657549295716,-0.014970412595088023,0.04641193264327639,-0.0014911785799623265,0.00010390270939640206,0.001732439186181364,0.04570074589038319,0.3116567741303882,0.00735527577598884,3.387186371857487e-05,0.004221643849959029,9.908858408090208e-05,0.00026962391999820785,-0.0658580677681513,8.147841769249833e-05,0.007911854999744602,0.016983167030377676,0.07292122584889131,0.040385823665852194,0.00010649110064881102,0.003472085768155442,0.009781358261505484,0.009698314872597523,-0.08806934659629163,0.0005764723045671965,0.005742849340666215,0.0026658874397519554,0.011132460279801916,-0.007606550385715019,0.00010079446019012645,0.01930425643231912,0.009995329764473627,0.03223745210376182,-0.05699242694689187,0.0019900115252871483,0.019634792282115357,0.04635280844371961,0.5260682688196294,0.06558993072686989,2.2657716621411758e-05,0.005092973022533665,-0.027486505319515374,0.07435410819823193,0.012367079343862464,0.00120860900888481,0.005916140993272366,-0.015758307933145293,0.1203386176027579,-0.024673707940269424,8.720275539861525e-05,0.009199893895371838,0.014596284736451361,0.02332841030948226,-0.006207034919636788,0.00014767349986375468,0.01653364544828285,-0.002156480790869026,0.003019087037540163,-0.009861897137135143,0.0004099905760634139,0.012550527560625867,-0.00244314476749758,0.008744183974710154,-0.10338865366805332,0.0021656100408970224,0.017310048850960682,-0.03876966142843953,0.16619342759273392,0.15148221999607514,7.484598942784778e-05,0.00011627325046459011,0.009720998137937111,0.01275479785932566,0.009931799190870677,0.0018945866446035745,0.01209537617332391,-0.030792845388481056,0.12394431724249148,0.014491482064021998,9.843266384985335e-05,0.007059178939468267,-0.005208582490145689,0.013594831034979129,-0.08545166700263851,0.0001553123920103351,0.013847809813119342,0.02383830020622962,0.10263860437557021,0.003360048333291366,5.668634709340171e-05,0.0034863061282311442,0.03680588039428086,0.11157104423714644,-0.014605736439354918,0.003126682411473002,0.012707665095423567,-0.004946137684807202,0.023829972728830733,-0.059205765232157107,0.00010324837543116952,0.009690630126299456,0.013783135063058657,0.06962854850061417,-0.04339224326663694,0.00014355603493280798,0.015775642517729442,-0.014827813214159321,0.09140870464183555,-0.013968273623089493,7.672523914286962e-05,0.02376641225133013,-0.02749883484591915,0.10634334115264452,-0.18973091875462317,6.499072571523384e-05,0.0022358269323946188,0.013325713165334872,0.02580338134964621,-0.02940962509180524,0.0002517927575261299,0.008451891916383406,0.0025697076709673625,0.011407105601192452,-0.0034504232104837305,5.601735965976441e-05,0.003979949826644702,-0.006787822325587797,0.06098053496903756,-0.011193715205911139,2.8719079866128126e-05,0.009990678318709971,-0.007418121741713646,0.024537086906313385,-0.031163424892146886,0.00010567686470850893,0.017072509982036445,-0.0055172407028889385,0.01703688081224577,-0.004595259435908653,0.0005104577681288444,0.018685502760598147,-0.015482530253263386,0.08221718182894242,-0.026568200788772277,0.00010785769801081913,0.017744903779117333,-0.0007532653661266121 +2017-04-25,-0.00855205975542359,0.0636247796364605,0.004875124830560653,0.00014214481397673568,0.013518150518595054,-0.02223849412303915,0.07559580769970019,-0.02378096941115605,7.058593806012855e-05,0.020517907614307277,0.0064314668401931506,0.02143244845228399,-0.03390534557998112,0.00013881469763407878,0.0021051504754737165,-0.0009893893624563143,0.0011203167530074712,-0.0007632027764861283,0.00029805352508759965,0.0002887357421185728,-0.008465782767988097,0.019018960451370227,-0.05215795523401937,0.00023290462737889672,0.010090402727312462,0.015593880253612228,0.04114736587204612,0.00484704847670246,8.274826498136803e-05,0.004431093401079197,-0.03847625167213486,0.14099903591298818,0.01741805926559019,8.006938058448291e-05,0.02764758047107603,0.0020144897153775224,0.01792247066512492,-0.00198175717364286,3.85447994874593e-05,0.0011284865546395673,0.018927957329379137,0.014397369073062764,0.02517894940646055,0.0010138306042531545,0.0005539792925295559,-0.02661338549888359,0.05657780481137839,0.005059003409609642,0.00016448106834312436,0.008548391274707452,0.0293595998194643,0.021392049678168826,0.05027025663733381,0.0006708448521650894,0.018170449443409092,0.026683025687181266,0.3384226950049225,0.046087602121401706,2.3496240784952374e-05,0.002825706882596796,0.08342042069674546,0.24846335081177337,0.15524315585099038,9.973809655137891e-05,0.03366413379154516,0.018469301521220758,0.10223336098895562,0.0284002678827442,5.0853359762733367e-05,0.006394976395009968,0.001262425238542613,0.0011943873603691864,0.0011310107909592157,0.002061500489103897,0.022074969911547736,0.016703235704654134,0.11341891388269225,-0.13181490963526546,0.0001211901249652542,0.02350604964745309,0.023902406187486916,0.12486270557607228,0.027251033245307265,0.0002964265593159158,0.001329160154398053,-0.0009731596387928351,0.006256312356275107,-0.0006378699429448985,4.381538388605519e-05,0.016069100040059063,-0.015767635838127726,0.09105421322087767,-0.01292451757819126,0.0002853995884339858,0.0032171889362743586,0.02035312175010785,0.29500880924652906,-0.01724751217424678,2.863032494496043e-05,0.005662901999490795,-0.008891262372862318,0.09438806535980518,0.001434662936210045,3.147226870606057e-05,0.013849452237881291,0.01565512051477523,0.04496458178059652,-0.0356984348042031,0.0001121524105828213,0.00020930964808418915,-0.03824073111339563,0.28751980332752114,0.024849428217134834,3.0722093052242705e-05,0.010023204312089865,-0.002769393425957347,0.009067341874978199,-0.007866465472293579,6.771455808805043e-05,0.006111284132847506,0.0053411220126112725,0.02001185027156212,-0.03549329755783017,0.00012203765386462576,0.005642968005675962,-0.042272623743131024,0.038413360420664136,0.022729763111863546,0.0006290026343828909,0.014801022687648255,0.00269973791521373,0.009820451279140788,-0.004309240253438475,0.00011571140568732435,0.0015586936693448967,0.031940961795072415,0.10980657597945225,-0.05867336230490919,0.001866976341471285,0.001125017349613124,0.023434495917579488,0.2264026935526372,-0.004660413163689606,2.6616823333653863e-05,0.006996350914045798,0.00803165718863293,0.025540822641075874,-0.0001701147644645115,0.0010281146601256361,0.006896050825920824,-0.005822946244334666,0.04540601877373155,-0.025318468912314176,8.539943545165428e-05,0.0006974171508810698,-0.02705161273318447,0.03795585963390117,0.06880162904367312,0.00016821306180673932,0.005005242538251489,-0.012829914651284802,0.0202000961474214,0.013424965486285257,0.00036456438938101365,0.009841289781145079,-0.006347879690475883,0.025366537391534594,-0.0044988670733720135,0.0019396252963629677,0.010013951846693256,-0.05389632179100166,0.20509062769697267,0.18089304980990725,8.431477462259468e-05,0.004900273241655055,0.0303015938811077,0.040664092140132765,-0.031466764485477645,0.0018523864021015373,0.008569281568085192,-0.020477915911395705,0.07342487774491468,0.009400349658202784,0.00011049905394234727,0.01815373972025196,0.0009451860488987042,0.0019228531099872795,-0.030194255495858063,0.00019926525065741175,0.004116776513184781,-0.014620589259641544,0.061647867544958435,0.0026514849008771307,5.788429430917662e-05,0.008419820192549644,0.001218270081739935,0.003598962578439055,-0.0004353012372319686,0.0032083689595370423,0.027174413495920983,-0.008409616849260759,0.040211420590856674,-0.011118978478997482,0.00010403209967119495,0.004067445953850953,-0.02941751056245591,0.14064798507866544,0.009672157612819702,0.0001516817000541833,0.01787758431556963,0.02854388625483596,0.166248067473898,0.04544817051851563,8.120919307326286e-05,0.008130297439217702,0.06122797671667708,0.27948833506467585,0.21448690593315797,5.505967159645005e-05,0.009341965822917487,-0.04391071878087614,0.08968482677729822,0.03245729165792117,0.00023871569105229557,0.045174919829645596,-0.016270643286234544,0.06918329116666665,0.034011548019178425,5.848141624611876e-05,0.002530291641134413,0.02370218923907804,0.3200424199646356,0.022927731347553066,1.910786661935339e-05,0.004129366096599134,0.002096512148871834,0.006622443449517521,-0.006381627886440298,0.00011065934352806191,0.0070053111790291,-0.02486306866399146,0.11949176457554722,0.013203119300546821,0.0003279780094367977,0.003929078169198295,-0.02101650996113513,0.10058468877197979,-0.02426058360898852,0.00011967419573103296,0.0022038361129442016,0.0006239149405947035 +2017-04-26,-0.027411828467457013,0.17924974381594866,0.04366641018370561,0.0001617208613470307,0.0036110872653739405,0.01470978054978789,0.05606912360099372,-0.001300605578743755,6.294959675571683e-05,0.020047981679868723,-0.0165588540051191,0.045689699407734444,-0.03648706550863534,0.0001676521706505398,0.01685368634464069,0.007407590073227333,0.008462983044265475,-0.043255669679519756,0.0002954073702876044,0.015328086189645242,-0.007687640889903094,0.017171352448845947,0.0024484899166176645,0.00023425364540533675,0.018877616079618516,-0.01725588788008272,0.044817469034438014,0.024347828441000682,8.406916289288852e-05,0.005193418334849587,-0.018462156889451267,0.07505520953145929,-0.0402889303583074,7.217577414151048e-05,0.00011112990528730276,-0.060537858789069136,0.4969420734339279,0.056690221486807774,4.177533130214074e-05,0.0007004637649899828,-0.01794370978644461,0.015080319040293055,0.027534115369653975,0.000917585397533761,0.008198918285237881,-0.020130322000563233,0.046860826035657215,0.009161144317123053,0.00015021132202345245,0.005481458603219835,0.01762841314176998,0.014032863429741058,0.015888611991032257,0.0006140323888069234,0.0008958499659393123,0.018940939054755978,0.23124399457606176,0.01641791629238765,2.4409216150063535e-05,0.009006632997570041,0.015188905097417604,0.04867010585437575,-0.041737329492918314,9.270757382005396e-05,0.04162746155641755,0.017476846972246874,0.0817543456097335,0.06254819974417088,6.017471682932903e-05,0.0004365869415126461,-0.02025818998712464,0.01845722471241129,0.006079024673292505,0.0021407069184498713,0.0004172383878365143,0.016756182842290586,0.09784560496963325,-0.03245974172201962,0.00014092429656794637,0.03181650107262842,-0.030178435265481543,0.147922103630752,-0.046275175792134235,0.0003159161845739845,0.00782487831066413,0.014507233107685633,0.10140637520167015,0.02422254096980931,4.0297702513521345e-05,0.0006237365044692758,-0.08163963510225326,0.49358750673700497,0.2551550426920371,0.0002725986518592536,0.02157705048245262,-0.005634868417549243,0.07252830329839853,-0.03444571876860134,3.224085070161176e-05,0.013811856265855616,0.00810439899749073,0.0713099814301648,-0.010969366016198797,3.797101443111852e-05,0.00905717971517007,-0.004749262726971152,0.015216332897217792,-0.012648824772751805,0.00010054001599726849,0.0019531155813358573,-0.006522081117638141,0.0441031565636009,-0.0022545198898709764,3.4159294935036425e-05,0.018158035160157904,0.033070968039515765,0.08382726850707516,0.10349817089780552,8.746594141116273e-05,0.0005486168044037691,0.0035119570538959715,0.012135603782739085,-0.005385182455475477,0.0001323233244501178,0.0029998195700745847,0.011388856752434819,0.011890393229003558,-0.0007756993442564025,0.0005474689265950524,0.02001761202168364,0.01319750656827126,0.05329911921410382,-0.029382140303303887,0.0001042216306065668,0.004079435047980051,-0.029641169290395633,0.11897144718300055,0.02591690901952187,0.0015990857827405966,0.019406860972528167,0.03280008862939899,0.3502579669806679,0.022955412856085954,2.408070458667793e-05,0.004836299311447442,0.0025265109516862797,0.008198279010349328,-0.03965199420522942,0.0010075573150070815,0.008073803905548602,8.179646573414148e-05,0.0005760039133078855,-0.040736040453422835,9.456594096838778e-05,0.009324180184871172,0.015107505464786104,0.018031745274466774,0.011140391422085545,0.00019774266487217372,0.018117789915031383,-0.021005625860460397,0.030289709051991662,-0.12083107790706231,0.0003980562413889147,0.003594758234389847,0.011729789817584583,0.050796572477027804,-0.044969062715224925,0.0017898068352565878,0.021543352985481566,0.02437285230545648,0.08927208950491342,0.01554582429171621,8.759534494073603e-05,0.005842105815082601,-0.014315831718444482,0.019784032766081594,0.0009224906666268733,0.0017987837428625109,0.0025095071889173915,-0.026931267798397693,0.07894742121249501,0.015524368103704663,0.0001351558619118114,0.02854835850968728,-0.001360931516374184,0.003861775489012019,-0.05982979204979415,0.00014285966452302998,0.010248666880675108,0.002773925369468644,0.010671469265122639,-0.004169503489677689,6.344311227204317e-05,0.013635813681955695,-0.007696413724201985,0.024687534380562832,0.00368917584271674,0.002954804457602901,0.0034834548822763357,0.03402955370089608,0.13664819199342768,0.0379101911796425,0.00012387764318970383,0.00448432294806219,0.04520223415878797,0.2681133783504123,0.07703695653005449,0.00012226501349155985,0.011044150275142457,-0.01456984453014451,0.08294209005882065,-0.003681607528585561,8.308615115207475e-05,0.013597322807947412,-0.0031866665610310934,0.012246085585380867,-0.0199733987664651,6.540135221748766e-05,0.03299439908043438,0.038062964001482076,0.07129459984232239,0.02386954111599379,0.0002603007158837754,0.023605715370040723,0.0322310041989986,0.12496885042295677,0.0739257992195988,6.413372094951022e-05,0.008198338801550291,0.022703514951957653,0.2268292848291049,-0.01856522209796554,2.582410398015119e-05,0.008203384386868507,-0.003093038157837489,0.009210718317640273,-0.06703010211529584,0.00011738179364288964,0.010082100129512196,0.027935924825474214,0.10770936304239931,0.056239246464894484,0.00040882511411976564,0.0018476231278852515,0.01054950334073393,0.05171220496152744,-0.022599372141658792,0.00011684516707368263,0.008253307534932072,0.0006469711356512476 +2017-04-27,0.01157279160886302,0.07535862767231775,-0.017614750207783025,0.0001624021355040491,0.0019621260106117994,0.0386827884943605,0.13172508965982377,-0.018968747807354747,7.046278378028963e-05,0.002982310567062993,-0.004964969103297637,0.014165560608238962,-0.0033427353206181205,0.00016213619923756883,0.012973371024775695,-0.007162283410261116,0.007595757269733906,-0.043242956965798246,0.00031823524765347996,0.0014446318729282371,-0.007381971865925433,0.016628740567918375,-0.10092031204655874,0.00023227945599724043,0.003375862381334125,0.009562382255996853,0.023578545799497922,0.005884942740276233,8.855147994019647e-05,0.006592453949702824,-0.06035471918104199,0.2425465223026123,0.023906653191596655,7.301398240003394e-05,0.013584957294831626,-0.043062628495634254,0.34938006389866405,0.007361535969826071,4.226696164261864e-05,0.0025118201460924746,-0.0327751200422511,0.031572807400548006,0.09265433642753632,0.0008005268027905111,0.004243097708251509,-0.013649265470978358,0.040261319442865255,-0.02784842441954562,0.0001185449788643197,0.006926974441658924,0.004113707152068629,0.0031685278959418593,0.0015822149254356532,0.0006346001858825342,0.007041700808242332,-0.00650812381596915,0.07671671013773625,-0.0063190055536888395,2.5280672672495954e-05,0.0017224864208816183,-0.0005206998040866861,0.0015880863065063442,-0.03353225499432735,9.740120978671966e-05,0.002388672584805393,-0.009453364859799763,0.051170107730157136,-0.01982883039567209,5.200342015042702e-05,0.0021372832018850462,0.030024637096224233,0.034489195943301555,-0.0072542644728195655,0.0016979217429103398,0.01307592586984353,0.008824144156454234,0.05486226858482092,-0.0033411970210761423,0.0001323582267710497,0.006123483578158204,-0.03127185788675335,0.1834088364703843,-0.021737925269275347,0.0002640229382883522,0.034355405662573286,-0.025646180581479237,0.14553379904952243,-0.17968197162412672,4.963862986289738e-05,0.01243307944695033,0.0014692443114743552,0.00790495821618594,-0.022296327164996896,0.0003063241567613236,0.00943216973853601,0.02123385855034326,0.2552294644548076,-0.011385443727946426,3.4524575075525886e-05,0.01669467120678245,0.03036612142447704,0.26849367023349713,0.071195288140456,3.778652738938348e-05,0.0012623010974522624,0.003289705567958389,0.011833875336001056,-0.042056778201971276,8.954736188307596e-05,0.017754158450140577,-0.005955885885898811,0.04384854339508899,-0.00942055646601357,3.137498834102272e-05,0.02476601100764437,0.013330614342676121,0.04149130482624059,-0.179647427862607,7.123123167069131e-05,0.006381302230266831,0.002936223354048456,0.011147607644152444,-0.019646383707147195,0.0001204359130682845,0.0012923642778007271,0.010373461698469718,0.00803376234912134,-0.07006287313544142,0.0007380406601541008,0.007285489984383456,0.0019027341198179194,0.0063588076007633386,-0.00020141634455361835,0.00012594717491518512,0.005822423943449721,-0.022898162725844377,0.08814338162530845,0.02329182317495765,0.0016673627845129834,0.0049649578575352675,0.004238501753214666,0.04822315751249765,-0.007944366216970955,2.260158618465735e-05,0.01238933435035234,-0.0524045101293424,0.14066875088545597,0.11832261535090773,0.001217986022411167,0.000695092156242563,-0.0013281064666944818,0.00944658924923538,-0.00723798910107176,9.362320463244739e-05,0.02032830763337999,0.0013099733704060776,0.0016823902274302849,-0.029781017405966708,0.0001837727509877454,0.009919321806853502,0.0006437707898316488,0.0009008911809171764,-0.020451133075194125,0.00041016901106276534,0.002524559241827005,0.006420183476011656,0.023111025285190195,-0.01569718987557321,0.0021531712284416165,0.01563429182709596,0.02863883763657117,0.10363125949995904,0.013091227720362494,8.866556406109085e-05,0.01812660363455092,0.001143267739332824,0.001798305765236092,-0.010088011445359252,0.0015803802874940539,0.015710008007208683,0.002765500857132188,0.00934537566043599,-0.1356527146734318,0.00011724465966428425,0.014962001948941058,-0.05232087047559068,0.15734167288460496,0.11846431814524638,0.00013480052188376136,0.0019177541276585153,0.028265577704738417,0.10808177290067396,0.015631743925459757,6.382918971537225e-05,0.0009034454352852253,0.021456039514831497,0.06667362148094355,-0.0015912615794530735,0.0030500964523828113,0.021781929275143143,0.037063108881237566,0.195172638812611,0.03711654482418379,9.446338024519322e-05,0.002045506920728447,-0.022092222290304768,0.08753486508946079,0.006781276950509107,0.00018302866924246866,0.00284163412215729,0.018424309704197037,0.08273542358808042,0.02196116686609696,0.00010532911358013032,0.0029376469810926268,0.022879002046904167,0.11044900721331617,0.020364009259560382,5.206221670400385e-05,0.015233450187632058,0.015656854405816524,0.028501284691692753,-0.02199400979692941,0.00026783632102005865,0.0035921875486986323,-0.0003439462942180681,0.0013825432851530255,-0.02600045030910509,6.186232998220538e-05,0.00540876310855621,0.009277371073155719,0.09402009944676568,0.0008828641331936967,2.545865799809483e-05,0.007863836909998877,0.002528194548187702,0.007201911246247341,-0.056919421040839475,0.00012270766444353443,0.006274676533093863,0.0044158197937962645,0.01701466437085024,-0.018334330337768018,0.0004090872330644779,0.007104771919443567,-0.008908061359176548,0.040688340456206264,-0.033889289188767,0.0001253963857089228,0.006087330341854636,-0.000925843284427478 +2017-04-28,-0.010582925278624913,0.09748956752842047,-0.04729091997092377,0.00011479795981414519,0.010078363698631902,-0.03490778371134918,0.12668873449994378,-0.007311638570592052,6.6114208798859e-05,0.006547527437821238,-0.0007229467235985505,0.002345096837956336,-0.011108378091466285,0.00014260761517652552,0.01748742191651773,0.02351865358951876,0.024994932933996104,-0.009417777599722729,0.0003175618591713794,0.004813625527889692,-0.05442288256296815,0.10957036866999138,0.18553993318672465,0.0002598879780503546,0.0065300225256283645,0.014972731618677841,0.0425095857807473,-0.027689825852169152,7.690612096727116e-05,0.002000091597740016,0.02075801104820971,0.0985342781706008,0.029443122074908748,6.181420022131696e-05,0.0013865684252595467,0.04975057146356192,0.4953828090109538,0.08805097899702305,3.4439414282621514e-05,0.009727100507392615,0.022065491575079983,0.018473508505040703,0.058564642116893384,0.0009211047223580389,0.0168196304905985,-0.09409218713904574,0.22181657501165192,0.2748528427719803,0.0001483274241461015,0.02619088953159398,-0.04271827727454613,0.03517431355541012,0.11119306046487308,0.000593625376258166,0.014616687457231665,4.293683387800234e-05,0.000659106347639213,-0.04429820097017123,1.9413208191057545e-05,0.0028076826400163027,0.02983670309519329,0.07859467765639129,0.017577369772731288,0.00011277393473013872,0.01826620595914852,0.010750879536513729,0.05386430461990745,-0.023621305329491697,5.618297812840511e-05,0.0040847495050622285,-0.0038809384775323292,0.0033523014711491386,-0.0033039627466985547,0.0022579621784182165,0.01293297859049607,-0.018882456117639716,0.12274286359979418,0.0006549122601414321,0.00012659435508250355,0.0007373582144849138,0.028230861975271037,0.15371858043230036,0.031126636360063763,0.00028438455460912733,0.00847984457857857,0.0028441171787437747,0.017938781454819034,-0.014711044778120075,4.465966927066371e-05,0.007008384185436001,-0.021638788360283438,0.10205611366256034,0.0040200063128258,0.00034944652053445576,0.014642023920672952,-0.08627423880798445,1.2142968049335698,0.11312239445030223,2.9484007648921472e-05,0.04669509498953401,0.001709048689726675,0.015501385484322738,-0.12357292912512173,3.683542019974778e-05,0.008277374131861616,-0.0102838462601229,0.029012315544395796,0.00252828459402239,0.00011418155125646511,0.004704011509384062,0.004070275581524242,0.026133125818779905,-0.0858986502656632,3.597699047581987e-05,0.014010236133377848,-0.031241317972160544,0.0922170309576267,0.1483215373237374,7.510962504566527e-05,0.004558482999750804,0.0052467133493531585,0.019760358345926467,-0.049947959188505794,0.00012140627017654693,0.0049330306270526135,0.024830668432069523,0.022418832125985735,0.01993831013902773,0.0006330689119370859,0.025370431324003847,-0.002323929013616297,0.008358452128308333,0.0026893201752026382,0.0001170261742722363,0.007840137116319226,-0.01019286934276156,0.03478284850313101,0.006816739606592243,0.0018808340856624288,0.00046586497741079756,-0.007859265165266943,0.062322700580348174,0.0007810128795377226,3.2427828912817834e-05,0.028785024373538325,0.018830124794291764,0.053194429935842794,0.006369471457163131,0.0011573329260426222,0.005538501816395005,-0.01499773518408278,0.11359478309386192,0.009595485730196012,8.792106449074315e-05,0.008902807936533247,0.0339692403683649,0.051866219670212196,0.03241500088677624,0.00015457762358075472,0.004386857482743155,-0.0172066408918086,0.022915986314854357,0.007382341902513765,0.0004309843046194223,0.0029645703405574175,-0.028675056470458246,0.11193405044887879,0.021785298446666997,0.00198560292339142,0.012071588955708193,-0.010575830767415832,0.03551505390648849,-0.02740687402319407,9.554157248394791e-05,0.008535999705330718,0.07113919406969617,0.09849122016460679,0.0514149088947263,0.0017955132519648443,0.0076018568997661155,0.049570830009172694,0.15050428858161607,0.06951641592853627,0.0001304948438485116,0.011731840449345202,0.005332659973027097,0.015340625564842204,0.00152662492677672,0.00014091628942687672,0.01078661593124301,0.024187117964500796,0.10320096885601633,-0.061836374222465455,5.7202402992734234e-05,0.013491281895337114,0.006759540283402023,0.017469376325824373,-0.013393011553860738,0.0036673960931546358,0.03292603591053737,0.04942358590244023,0.28927941312600475,0.059009974197555964,8.498793854820376e-05,0.01043230269763122,0.0019641569059557925,0.009534797877184585,-0.01231854865169648,0.00014939135678281712,0.001743859007450838,-0.002540893382011288,0.012695992039533366,-0.00959866402185905,9.466043575978217e-05,0.01755676751110026,0.05111103097519814,0.2629095349341525,0.0529881286232219,4.8860251632365006e-05,0.012096784622582226,0.007335971862977304,0.014282641830573673,-0.004068213358520889,0.00025042547464647515,0.008520117196383778,0.015397247679504948,0.059292167110940944,-0.04616548757064147,6.457436553678499e-05,0.00882511422476858,0.023298523423744884,0.24758404193922878,0.0055864508078996376,2.4279348817985058e-05,0.0009864348455198935,-0.0011082972951264392,0.0033628960677869473,-0.038581091661179,0.00011519981786459307,0.0015683840299016432,-0.003936589121748946,0.016815296172971658,0.0010743336859630607,0.00036901459029291673,0.0017257563744820267,-0.00919099002715596,0.04161812744805645,-0.006225208098827531,0.00012648864930638783,0.0013846971545616576,0.00220525263336765 +2017-05-01,0.0005808582912017343,0.0035484414456968256,0.0010656317920071999,0.0001731087951422931,0.003904325133765963,-0.0035423191565448335,0.011485617400715244,-0.018046817004798238,7.400207016120733e-05,0.005066706045924099,0.005816097626991188,0.02175115091878873,-0.03457908045333527,0.00012369343512520157,0.00903956021705766,-0.03566302204356665,0.03585364453211108,0.06211653767141685,0.000335701042502144,0.0011115688806784584,0.0025719533614647627,0.006328362743112264,0.00010504840050720017,0.00021265201207621996,0.00034703976082863745,0.013488553407014414,0.03942946527194002,-0.13821682882762185,7.469494783274e-05,0.008584915121250147,-0.053887162402332184,0.18976617856079742,0.0497370303014785,8.332136157278951e-05,0.00644949028136369,-0.008550344427027354,0.0746086136757852,-0.0021485311705312865,3.930006363699535e-05,0.010496756940758212,-0.030166531251328794,0.026794253633601266,0.05634611072579733,0.0008682174244227618,0.005279529425074771,0.009557898550544688,0.023582055990527172,0.0036452123866235267,0.0001417237504982976,0.003823193458641283,-0.009296792797665761,0.008201069694886036,-0.054512207585134205,0.0005540985418871078,0.002773834323481652,0.0040637970925048285,0.056529082216425844,3.4498992713501884e-05,2.1423127386334792e-05,0.008724505731137524,0.011613656991702236,0.03470582481610084,-0.01169546038604454,9.94071591243356e-05,0.020805775921456073,-0.005655320897315632,0.03399636636527336,-0.02225049346939305,4.682594713170705e-05,0.0058896269454876485,-0.006149239370418831,0.0052588909214251476,-0.009089556738726152,0.0022806057175262847,0.013009897842843265,-0.03867070423665805,0.2381271195555791,0.0393597586340821,0.00013363657307755516,0.0007841804381509727,0.08854097712718635,0.4892425619740609,0.18136689899965167,0.0002802388297054763,0.017126819190381032,0.006710824339155261,0.03566082637727654,-0.01025926941163472,5.3008488891122055e-05,0.01282163902834244,-0.0515945014286666,0.2583022791522388,0.043128751438711456,0.0003292016394246565,0.030398431643204042,-0.055865266368537864,0.7268565909298685,-0.02182393928145939,3.189505623924397e-05,0.04512939974796438,0.006371274184957578,0.0696327738115669,-0.03473526701460327,3.056992045402038e-05,0.007246280317025131,0.011790388281534125,0.026180656675315658,-0.14153920276139773,0.00014506756715911717,0.02416398419733177,-0.0044771123573668055,0.026854690508912996,-0.003397039059771766,3.850970732605088e-05,0.008399661141587092,0.020000796822458075,0.059602953692964464,0.02728657472375951,7.43972526498006e-05,0.0015514018881961703,0.0007527900658586022,0.003450819052559166,-0.000989690765353903,9.974710222103098e-05,0.0006661911211674695,-0.013484993458480383,0.013372117689198338,-0.03830894786169449,0.0005764028391158884,0.008675514409850824,0.034245664056554465,0.1367150836323531,0.051000299307344836,0.00010543266121129961,0.010575026983253319,-0.012021794384202701,0.04166191589592898,-0.12222535778059904,0.0018520351823377516,0.005047154388818749,-0.02852384923063353,0.26917277917464627,-0.023622389908578123,2.724954085306061e-05,0.0123319512983268,-0.00025865999598371033,0.0006562865352166126,-0.04632441153235404,0.0012885671104830197,0.00027742723937691836,-0.0007916824636766716,0.006164819517220344,0.0011350901089045911,8.551775705582072e-05,0.011341534110958208,0.01796223307658598,0.026424113034215557,0.012031859974478917,0.0001604372817689423,0.00990774814067439,-0.014237228980047156,0.019153911199287447,-0.037955109976717215,0.0004266501612579577,0.017090293454952433,-0.0014798282526084525,0.006197947149254296,-0.09526231548768148,0.0018506052379792912,0.012597240525212224,0.03179232980654634,0.14594943254840298,0.014921186688284842,6.988923949365221e-05,0.02528913906179945,0.02304547280680699,0.03619514535489714,-0.006035008199210388,0.001582750609428482,0.003505543462791908,0.006087755086358736,0.01874595111888424,-0.021978335671081022,0.00012866657142435384,7.290332699811373e-05,0.017490952853458624,0.037994078464712144,-0.001540736562455888,0.00018661989036818238,0.003670195868968093,0.040029152144911914,0.15828966229562022,0.04712582040336541,6.172168359918952e-05,0.025789136817198327,0.0187071142093753,0.062373870181145506,-0.0438039581453708,0.0028426419682072604,0.0038949625553942654,0.015597999757708654,0.08241362663245008,-0.04452904550321245,9.414786028252263e-05,0.0029611533470606135,0.024046835688206102,0.12262390935021375,0.017156010963188355,0.00014221439647374407,0.006535973798552395,-0.018717349913513925,0.10542058395054196,-0.0030309039948859403,8.397840862346272e-05,0.005973389964255459,0.01433402909348558,0.07246045722688661,-0.016256482480727207,4.9718109487215356e-05,0.0006115029989169336,0.07095305903464992,0.12691569539408315,0.07845551862062991,0.00027257447516501187,0.009314380902561432,-3.996973916168365e-05,0.00016392171514112875,-0.05983679205262686,6.063302006027479e-05,0.0036180813961348623,-0.017073021924915156,0.18421533013274075,0.01768346065773216,2.391200070233178e-05,0.007592185763201736,0.003800170476948152,0.014664635777694172,-0.029034908192115627,9.058176176635406e-05,0.006618245342542192,0.02405904017780585,0.09795661314552837,0.011280043913689407,0.00038714397722985997,0.01908364601193308,0.042267336748611495,0.19311448634265138,0.0686389938547614,0.00012536082069202438,0.0012130534879461685,0.004093603815358688 +2017-05-02,0.011428562020284541,0.10666215654618673,0.019243009300362306,0.00011330988875407746,0.01123738145308812,0.005685722552809362,0.021904758680472602,-0.001392663808999765,6.228130689121706e-05,0.0003067301894184368,0.03212109043412449,0.11784847405626465,0.001984867669350403,0.0001260850285501801,0.015570235860614087,-0.004965428481803258,0.004667377862080416,-0.0018974337216110674,0.00035904726704976,0.003428689702206903,-0.012663809449895105,0.029019236067352135,-0.007395189521073113,0.00022833693335083606,0.01470203939547506,-0.01685414590126518,0.05285514341787481,0.03913273252663018,6.962516435947381e-05,0.005141864163258971,-0.038313943638717346,0.13126511723300996,-0.016979358637131216,8.564408630984985e-05,0.015832975498274796,0.0056775580542340635,0.04829646420155381,0.00023305410864495014,4.031297610014256e-05,0.013838509447024102,-0.006993200057363833,0.005292844139763412,-0.014139975542307805,0.001018900167723888,0.014157770122855249,0.018123152072662633,0.04040244552570051,0.013753883137142412,0.00015685124407106962,0.013205776085505007,-0.010627386066630183,0.007016916739785255,0.002181052765965982,0.0007402944484679122,0.0037973616771823115,0.0050584304312935495,0.07299697707466152,-0.048195413518691756,2.0650648536810762e-05,0.0002586546587020241,-0.005374823693896073,0.015403306872336184,-0.010591749479725554,0.00010365763432096487,0.005378849820097597,0.0005461019567607021,0.0031845373112783498,-0.06084329546763624,4.827132382830326e-05,0.0012809047429547143,0.027577405942323104,0.022431983429631014,0.030371207942063827,0.0023977765532704615,0.0338891540385392,-0.027283292566573258,0.165509426815296,-0.006627806420864063,0.0001356519850109166,0.0002782913600894426,-0.02133648106371361,0.09255657983796363,0.0056991236953610885,0.0003569634319659272,0.0001339577317212,-0.058411223191300966,0.3144421502381354,0.10052095667688862,5.2325875008288913e-05,0.014828843635771758,0.00913078646582304,0.04059853982231365,-0.01035878083306324,0.00037066756063780266,0.006276563282449185,-0.0009557329072057333,0.011753920466596146,-0.004294549921481662,3.374302573637691e-05,0.0015044570882996621,-0.0021512741857030787,0.031140378283270695,0.0019664045952239835,2.3080945263194954e-05,0.005529526089802733,-0.015843436094214694,0.042018199617132046,-0.01763543186726627,0.0001214603958762804,0.0017612035679762908,-0.013365865869581014,0.09856342699711838,-0.010884842832093705,3.132374496743473e-05,0.009984558555299722,-0.006913671490506247,0.021463399193795092,0.011343791563641634,7.141470048436271e-05,0.0008738392345800426,0.0006980762835125026,0.002370743394109765,-0.0132161852750139,0.00013463777625749446,0.005003406121667541,-0.024892498182809187,0.02344140395520197,0.014289447466806994,0.000606960496819558,0.002480310654605508,0.027193824249698545,0.10488019181156634,-0.012319859750230247,0.0001091346908541159,0.026542439288234916,-0.0306368183666078,0.12837927793120313,-0.03483281602953267,0.0015316795283912266,0.0038573440642801693,0.008110003039530784,0.08717815142442618,-0.020030386900657025,2.3921893717044e-05,0.023742217226040765,-0.006161641364433462,0.01708240656790999,-0.004466494325464225,0.0011792846144371997,0.022077834309924365,-0.017284328880832187,0.11869125553546639,0.024297937494145796,9.69749223840572e-05,0.00772944465538479,-0.009058158232792246,0.017247055855988336,0.004671557772504374,0.00012395678947115624,0.0010025850390084205,0.005841339560217725,0.009443608410988485,0.0027666086487310565,0.0003550409085470529,0.0075172598598360185,-0.00930638653885571,0.03383187841076706,-0.016685836201650525,0.0021320889372391833,0.0053634383731359795,-0.014202888489483884,0.05951339591679695,-0.03352105827458503,7.65688836557126e-05,0.007037717752038677,0.04185430933155012,0.04800985852274855,0.021426020019074992,0.0021671398859333295,0.008890242157395423,-0.010912347122222495,0.0381083110613214,0.0032529021966059843,0.00011345261420127915,0.004422232690702672,-0.03798479638145442,0.09096937382300023,0.028031359922186024,0.0001692680431438336,0.009668658680280594,-0.045988545952575934,0.21203234518658942,0.0446156518175902,5.293726339446326e-05,0.025364597235238585,0.007202352044362669,0.020384872655013916,-0.056644044547980686,0.0033487629083476383,0.00152207974307812,0.030496328702864006,0.15698819094952104,-0.044996990925899386,9.663203950416442e-05,0.003983686945000125,0.011374224775127723,0.06038377579039116,7.836286353376884e-05,0.00013660365667698905,0.03039428771002211,-0.0005139350358615369,0.0029943712007610476,-0.04528033075410784,8.11804186912023e-05,0.014962836902088926,0.010763332267892528,0.05151333362270551,-0.0018212145846632293,5.251392584667378e-05,0.003675886757457035,-0.014785470395861516,0.02334807759927359,0.004227471025385451,0.0003087545825023153,0.0005088454021590189,-0.01262371363072616,0.05321422042027826,0.027693845169572583,5.898937648062911e-05,5.6626057420657364e-05,0.057045282298906666,0.6078063165746318,0.1563574156789658,2.4215074525386602e-05,0.009772918454666026,-0.0003093386324624689,0.001135568116001653,0.00021128495664314367,9.522038557016947e-05,0.009526083265634274,0.009071727527556566,0.039763957090888986,-0.02077774071551176,0.0003596071945938374,0.004427593312288518,0.007126002881813616,0.03790077303018232,0.004035230035738405,0.0001076885976851735,0.004427888934442753,-0.003291654290084437 +2017-05-03,0.010635914059325896,0.07783792658649963,-0.03906000394486829,0.00014450076441213254,0.006356682927909377,0.02495195194584313,0.08393075590959809,-0.017730009158664795,7.133356308339313e-05,0.003707520755386079,0.007425862001514009,0.026961185728272358,-0.03477396301740231,0.00012741046202924627,0.00091447588311404,0.014384567146897662,0.014585504757933672,0.008237761072796479,0.0003328458840710582,0.003914409881048845,-0.04530717260658532,0.10508780102728209,0.030893785153383264,0.00022558614810730976,0.001343344616656271,-0.0028075047350612117,0.008659930666218044,-0.0013629394906937305,7.078688838929383e-05,0.012646325396722745,-0.0360039342378105,0.11906188827429484,0.008400420305530796,8.872929870481213e-05,0.0023762431263005352,0.00020820881159920986,0.0018281404191122337,-0.007368409574956913,3.905603660054212e-05,0.01800522401513258,-0.019067812225496552,0.01651643230014443,-0.07309936658667766,0.0008902857284176071,0.007280716743680455,0.010565508398415364,0.024011019620850057,0.00032696597746144455,0.00015386565265342668,0.008137292709721605,0.02119040381831164,0.01466043094499539,0.03938796967656439,0.0007065076270692042,0.006990194102908808,-0.0125541021314398,0.1615475058809197,0.0188711278931291,2.3158380726365383e-05,0.016089668318798395,-0.003962514927411615,0.009915472528814986,-0.009679647670910703,0.0001187158027420313,0.025530474023232302,0.014051781054305558,0.08279423856844018,0.029732673762110872,4.7774161810939946e-05,0.0003453079683779074,-0.07457492920934891,0.06598183574964034,0.09533452265795048,0.002204405206061776,0.016648505797401122,-0.024839213103354484,0.1658866805868412,-0.021726580437026098,0.00012321921119371864,0.010425612785695497,-0.023756741741991334,0.12143432906058595,-0.0565048984889325,0.0003029379141639593,0.00479939629128796,0.013345743934325433,0.07587018450569924,0.012339342027775549,4.954873868497e-05,7.158859411130923e-05,-0.03000857545630479,0.12362841352855072,-0.05351390246289163,0.0004000496462497368,0.005758398247450036,0.03052942953606878,0.38498569087829676,-0.010745553451060407,3.290821549490526e-05,0.005159386076689459,-0.009349876663356214,0.10472578000503957,-0.08436932830234063,2.9828676724752173e-05,0.017350294439276836,-0.037192007376679964,0.11927458161650457,0.05638913242201278,0.00010044410960523758,0.0011215539428984307,0.007831052948298903,0.05343013313978983,-0.15777631728615482,3.385526987478214e-05,0.014027339547442296,0.0037476210694182663,0.011588700908653063,-0.05205192126639493,7.169655688721866e-05,0.0037790865303133367,-0.0014061075747924942,0.004524595490150586,-0.000633890993689472,0.00014209781015193132,0.003370196576668212,-0.02290540014605893,0.021773495447724393,0.004556483863352838,0.0006012918114937362,0.005025089521001187,-0.006595967620444579,0.021876944037812845,0.011303712356305748,0.0001269047471815215,0.007825418648311587,0.0047039978716244425,0.01375743053108775,-0.058291778602494244,0.0021945675982807536,0.004308482677966838,0.046049917310032565,0.4511885570941364,0.037461434844368334,2.62453865338103e-05,0.010700910805928485,0.0018264462338271,0.006444165394862005,-0.006617355397888169,0.0009266409391826113,6.877017977006017e-05,0.025310611891482728,0.2018592230995063,0.026116002144935122,8.349869544757182e-05,0.007424657974730788,0.04034973514129921,0.058743371793724256,0.07855828095685942,0.00016211649430839485,0.0064362582715635505,0.0005574972352384278,0.0007813120955468656,-0.033327809484952585,0.00040956429063420817,0.004353165221476106,0.04141200146584935,0.1841333583683821,0.11317215238913733,0.001743187438253326,0.006583216787139954,-0.009075803724484598,0.034756002463298324,0.004777811782405809,8.378102054385824e-05,0.009882316145374496,0.03906780142517216,0.05375114013439345,0.028704410553744758,0.0018067933471156746,0.010303237149654868,0.023920700876176863,0.07122548442383636,0.017577368250366595,0.000133062146543038,0.004677895905523498,0.050004616006215176,0.12386730202400421,0.17595320576337717,0.00016364916527697112,0.020886920999837796,0.004472452483841296,0.020050163358956357,-0.03159060663687701,5.44429619587017e-05,0.007346138210865851,-0.09133430721965966,0.27893415902883745,0.25729094245451894,0.003103489600969223,0.022738122535631348,0.010937022082167059,0.05067157364534147,-0.0061360480565310115,0.00010736809999369966,0.0036636160650573234,-0.004244240463539666,0.028993083653166326,0.001502399706991639,0.0001061613315937955,0.019970411266022035,-0.02940615734170677,0.17702120840383517,-0.010111508144232709,7.857089031698131e-05,0.016331283520924528,0.034585154030875025,0.16265347148975676,0.025099952898710164,5.3440901085483095e-05,0.012542834392435582,-0.046503684189571355,0.1041564027865941,0.04114347692271025,0.00021768614188100258,0.005087622596495553,-0.02229900188946433,0.09323127872209473,0.01966571626564445,5.9475507884870054e-05,0.00044751076075551363,0.013509386081910204,0.1170693638363446,-0.030356146096069674,2.977307151265712e-05,0.014188081985638964,0.025823373703337593,0.077226576270242,0.0650534530119816,0.00011688402629412427,0.001137895124167368,-0.003747200750593616,0.01554836853104811,-0.01847665537064131,0.0003798832155542969,0.016858835917614393,-0.0451759453063729,0.220887725460175,0.015272004209175035,0.0001171406047414597,0.0033991166527374966,-0.000995550911360268 +2017-05-04,0.015705961567460965,0.09754297590969947,0.03966480368722387,0.0001702766561779422,0.0229964021935924,-0.009860266789238898,0.03136780101163253,-0.0030323188060489598,7.542496514061229e-05,0.012077994781926466,-0.04193082945171709,0.12302359415771022,0.02322886505876764,0.00015766752383281003,0.0022852894255018007,-0.014658696112044681,0.01668291202232266,0.021193696741353102,0.0002965455001843633,0.012705659318052738,-0.008339690405901509,0.022348468289043768,0.00036306320555378477,0.0001952539992384283,0.01773492774379191,0.004479488454111547,0.012563130164713828,-0.07808737385967121,7.785334947377936e-05,0.005473928378849542,-0.004191418621969418,0.01725046463088712,-0.07952604353243119,7.129352639204102e-05,0.016276112772870544,0.033616093274102504,0.2929796064270347,0.023219852783689352,3.934671352589925e-05,0.0037756523769514397,-0.012707598678488495,0.01103077166094111,0.0019261713019183722,0.0008883873845054038,0.012143155426132372,0.026610000122208655,0.06932162509177611,0.030043910335745872,0.00013422642636159312,0.02562102650816546,0.0033682371000507793,0.0028243616778125843,-0.038410408010265386,0.00058291697600485,0.029006141887930534,-0.013156799310632811,0.1576292438527118,-0.03759662730463258,2.487346261868223e-05,0.0032533025274121257,-0.04943884138812973,0.13173546934574887,0.05325244308362512,0.00011148504132742277,0.013011749266082822,0.0171754839609016,0.09647918388233072,0.03945722247616985,5.011147434274549e-05,0.008098311162330136,-0.0018582365775055268,0.0014502544858907304,-0.004506015838699369,0.002499077702088808,0.015742691413860446,0.02688817312798713,0.18306830944026373,-0.11914054922144818,0.00012086490987845547,0.01960525963447202,0.08874781323644845,0.5034894495745231,0.14667535712001822,0.00027294523578396703,0.019191653363696857,-0.019626769372362452,0.12248039165371791,0.0031305678390963977,4.513809318871495e-05,0.01226744848268961,0.0025611203622568435,0.014017314469510232,0.004602206772493039,0.0003011285825730748,0.02189261281586009,-0.05082376256382216,0.7954426064344504,0.035272758363503805,2.6514790207931405e-05,0.00336413751404644,-0.006306585712552767,0.0673632340737583,-0.0010950345969499636,3.1279016013903314e-05,0.000180434425394395,0.0285801680715864,0.08672893349450143,0.03197236185404575,0.00010615086276120629,0.01339342313976216,-0.0357720297523716,0.23824074202563122,-0.06737914512475499,3.468326117781825e-05,0.004563434972236744,0.014616615612003815,0.041075464808989076,0.015034078171765322,7.889359053442804e-05,0.01555917608024054,-2.3141388968997576e-05,0.00010122848177634081,0.0013759152615781425,0.0001045286386798241,0.001564265866548432,0.028703669819570572,0.026294248313521784,0.014651510316054269,0.000623953502774837,0.011364349759917198,0.002962865973017401,0.011154910333998862,-0.08317034776563872,0.00011179745874553741,0.014544009540910473,0.009931806324625819,0.03406066211767554,-0.006967916030454165,0.0018715193881119125,0.006881936718482997,-0.04094737207780145,0.41616062483731703,0.035422626469700534,2.53015567496759e-05,0.0038510161945078574,-0.009258015073760657,0.028006073623807543,0.005117408532682649,0.0010807790736422998,0.0020287414997605772,0.0151990782338086,0.10772551961486758,0.004754202285856376,9.39559517258938e-05,0.0016555670292267655,0.016500660993817282,0.024292932987856022,0.004278599336571711,0.00016031227450520542,0.011794519178584283,-0.03181081999461072,0.04743937709389537,0.057867418256993444,0.0003848928115830303,0.002889123702969866,-0.004504932966580862,0.018288627287079202,-0.02342045822919112,0.0019092269888084763,0.0043427704286695444,0.03411427294665005,0.12344376513837556,0.011628115528355482,8.866604372786761e-05,0.0025531294852657337,0.05123999278687088,0.07806028957091928,0.03538455930727297,0.0016317592893380518,0.019822202211808936,-0.01794107953495867,0.055816202689276805,0.008607465046788573,0.00012735157515568078,0.020286880525607093,0.037156539526438506,0.10312344960339173,0.06685049586667248,0.00014606232325102092,0.020461657987962244,-0.012465705082950243,0.05768707653655827,0.0013778900957288434,5.274147151770014e-05,0.025013532393374838,0.018377403333164812,0.05421684724520152,-0.0012131455329534655,0.003212683520384174,0.004325094533178412,0.060762560551358424,0.317365071589761,0.10512266728965666,9.523958841378234e-05,0.011179347040168697,-0.01419619295496954,0.08353553690623805,-0.021537709331212875,0.00012324275831568005,0.0010066211428967548,0.007845987503554568,0.05105732909287663,-0.05036069007424094,7.268389938662017e-05,0.003138674085337793,-0.02550978639115882,0.1006727187785911,0.010284737188875749,6.368577226896232e-05,0.0008085294626600708,-0.006582088063712289,0.011504544933069098,0.0011775529919121279,0.00027894824794233154,0.02036072745232198,0.003555820204839798,0.01658167384509499,-0.003786268334428042,5.332437829441961e-05,9.464454048174959e-05,0.021577167476425862,0.2639902885459177,0.008181440857304977,2.1088115289766973e-05,0.012424643070768201,0.015805909994746577,0.046913766313351056,0.006239934644453763,0.0001177682357019516,0.0002944156103913512,-0.00963056565869024,0.034489170204730794,-0.07260034758582498,0.0004401462660124177,0.005495289692433945,0.060914339751230416,0.23932155750793144,0.09425627448401028,0.0001457838840287417,0.02124006354859248,0.003526822084914004 +2017-05-05,-0.0019901343945595293,0.014135909725562201,-0.08551496599098374,0.00014888303945854143,0.0008019186893563578,-0.045019232020210485,0.13849586551960502,0.06756958696901441,7.799590470637061e-05,0.0027061692889157,-0.017162373744311604,0.04860457587577139,-0.01702046511859853,0.00016334182440777589,0.020620957359622733,-0.0039849296864319025,0.0052012453631782975,-0.016655142158984396,0.0002585718111329424,0.00196184313224572,-0.00909296321794279,0.018816263962674433,-0.031789739213834385,0.00025285398917711157,0.000223881041075226,0.006500354654656213,0.01769313127137161,-0.07201361595251929,8.021934141750771e-05,0.0007600622615186501,-0.0051631395434975965,0.018212553569440338,0.004589957040117184,8.318267375156096e-05,0.016914623763111737,-0.045313837571191805,0.3388368115713643,-0.030886809655428293,4.5860509112161986e-05,0.0021599141235559885,0.03771831320741181,0.025189574429697065,0.1345391929961738,0.0011547187527371878,0.005936782699595221,-0.011871172481265941,0.027590692894633465,0.000213284591857352,0.00015045024325556692,0.0091713945334186,0.00576650050613645,0.003281676117580882,-0.01640695076783554,0.0008588967833112127,0.009266223634334885,-0.015448527394377534,0.2637326898026777,-0.04474545674040567,1.7456047402662874e-05,0.012054160056952173,-0.011609912238349998,0.03247072878836113,-0.01737750644554907,0.0001062155099292491,0.014246775287025417,-0.006163733524616202,0.031754701181494635,0.015867296604438825,5.463835842067063e-05,0.007245258545791139,-0.03575492670858473,0.025351296661283943,0.010007388072256724,0.002750797920164878,0.00010754568033318249,0.0682571814170515,0.41111833416126536,0.08544288174270279,0.00013662608176270283,0.005785567942589853,-0.013841068039887184,0.06316099281864028,-0.061123074170763084,0.00033933518058619017,0.004572267056170212,-0.04160235909636034,0.2227186259055352,0.026207763093143654,5.261655088464855e-05,4.498198138772123e-05,0.008479870027690841,0.04312416650300276,0.01369152457292855,0.00032408228262145744,0.004533715259552592,-0.02089914999493156,0.27886708472190497,0.000646919393127907,3.110008654892776e-05,0.023677110418352174,0.01214157748380249,0.13832324354655437,-0.050347851004021636,2.932659628427751e-05,0.009573596223264032,0.014915624146386058,0.043216807400602346,0.007575630260283155,0.0001111761182283231,0.0021527257939381044,-0.008074138792277282,0.05738146773618103,-0.20780720320557594,3.2502512497202135e-05,0.013318829997975736,0.022116517481937183,0.06129254725921428,0.029765190896481424,7.999934933356439e-05,0.009146478890426954,-0.0017162717279473468,0.007919814260191721,-0.006713512366981495,9.908767715103852e-05,0.0006602892422208993,0.031612410886598545,0.03035136388425344,0.027634353532203816,0.0005953261615008952,0.019417793903852794,0.011912749154347558,0.04807617068966257,-0.02571951897187569,0.00010429611649978769,0.00734079226314698,0.05622358743817045,0.1760908032206128,0.10169220066746901,0.00204927882836405,0.009460275879763818,0.010312656946234778,0.10578131587626276,0.001377612274804804,2.506939199381279e-05,0.015918420817528693,-0.018042594749494673,0.046836411791104135,-0.012145911825314343,0.0012594665821503536,0.009747690638529817,0.06209134980837519,0.45469355801287265,0.13056683954694442,9.093643889717307e-05,0.0075494432503422975,0.05303944235015985,0.07449246320451004,0.07627725345756312,0.00016804747852961345,0.011814524694122301,-0.046646704661994776,0.056128756318614484,0.08896435052353752,0.00047702315780861473,0.011319401674757975,0.03225204583357001,0.1310997943691564,-0.010665945221476068,0.0019068020008533942,0.015197451604462047,-0.017578892861709505,0.06040618586263004,-0.0010691808569358442,9.336852006056128e-05,0.00990315025759209,-0.005071519424563845,0.007097389070583304,-0.04490815816377085,0.0017763014553847287,0.001043061198554473,-0.04487063563539106,0.1439575149766093,0.04337387828223856,0.00012349344816828885,0.012653955738820506,0.01764987885655053,0.047325687153442646,-0.02261157378372883,0.00015118377192362975,0.016326507111835767,-0.030064835805216843,0.1202211011105018,0.02242578897491021,6.103684263925185e-05,0.02139441216180898,-0.009391968576160545,0.029881468433180444,-0.04010462414277728,0.0029790154325445408,0.0036018807935267903,0.033993333958437136,0.2018322998093756,0.010671140322009996,8.378063790146889e-05,0.0037357711283486886,0.0052245108542572,0.03603070282124315,-0.029954020940656446,0.00010515591012513944,0.005433853002557875,0.0037985100102532867,0.020188499769375107,-0.003111392979453623,8.899342610844622e-05,0.016681640245205128,0.024009642384388092,0.10186791977114804,0.008111141229738864,5.923735364825352e-05,0.004170110799266484,0.005178199031097876,0.010008466438377887,-0.007827518182504597,0.00025225547208965014,0.022051546101982844,-0.02343751691680255,0.11192902501225303,0.03346872614858607,5.2069481574806236e-05,0.002727816735974494,-0.021927254010666992,0.2432101936868691,0.03219110047285729,2.3261288059457892e-05,0.007104664312364225,-0.009744701181689392,0.030444071133355066,-0.03760924118035032,0.00011188574620604314,0.010207181711537035,-0.021126039995641926,0.0882056488235321,0.00654474175851103,0.00037752843667242757,0.0017252332802314,-0.005879060149541361,0.028154661492597984,-0.1233180917613752,0.00011959950698713793,0.022372727014956486,-0.0016424766222859683 +2017-05-08,-0.009514863078703674,0.07581235042695145,-0.07532787797807618,0.00013272390945979936,0.008955440343535749,0.017939228652620796,0.06522983061788658,0.0015483640986747125,6.598846729658338e-05,0.010734114389143257,0.0043041116478010006,0.014071504412470107,-0.005980702561943443,0.00014149470942211132,0.010623969912807426,0.010725063891574207,0.01215499241169057,0.0047160075849835776,0.00029779201768469904,0.009136101181878308,0.031273090244370555,0.06340725598469323,0.06334762023216993,0.00025806529941799764,0.012344611706890904,0.0018070515847351898,0.0039544614042464265,-0.007783444940831781,9.977688675316538e-05,0.005864679375036363,0.02576859731640445,0.0949912566180558,-0.0208453045292476,7.959705528405323e-05,0.002908314704591282,0.03154815709857845,0.2974968673586855,-0.015325107939248128,3.636555435390399e-05,0.016955907389840156,-0.0020637111209142927,0.0015813148308123142,-0.009565418777892432,0.0010064109353115878,0.009297268720619362,0.05070409989757381,0.11393143526119667,0.07017122180531275,0.00015561856111503134,0.003648001085681405,0.017858749318877206,0.014642622571828438,0.024544495390407713,0.0005961513493338851,0.001074499917962639,-0.004538661597490495,0.07069557021918596,-0.003828484437348729,1.913191270498579e-05,0.0054443309382384425,-0.016114719117096554,0.04590229223387177,0.0045653122533907105,0.00010428921641995167,0.00197118282039758,-0.0071756683884776256,0.04086512248278226,-0.014226880139307695,4.942781058155443e-05,0.01066717049981827,0.013192583826519702,0.012871358663740248,-0.009115905830952505,0.0019990720299230083,0.010974740420912874,0.0010263681237603932,0.005101584676710319,-0.01664782322126063,0.00016555799713285742,0.005673840273049998,-0.012422510842814774,0.056219505056201845,-0.006443570405735519,0.00034216107250600815,0.028796545337396135,0.058701835205354366,0.3506245546771716,0.15177155995319142,4.715962117918833e-05,0.014803783406635272,0.0872842412282036,0.47313560636820506,0.28922670474118894,0.0003040444048325064,0.009701262664851946,0.015040079911756092,0.26800459596684273,-0.002010001407587818,2.32883185674299e-05,0.0019045386154026298,-0.014464713307257576,0.1594610112159831,-0.005625343399723055,3.0306586638960737e-05,0.006149065927864631,0.015204062129077042,0.04303694615909672,0.005309908309136814,0.00011379965477986924,0.03512147157548627,0.0034418217860020446,0.026248921992759303,-0.11498050088062765,3.0287908395208745e-05,0.001157564498584894,0.0063936096590158555,0.02092984447503309,-0.003640762417355887,6.772632329545238e-05,0.0044575954963760895,0.015086419447270261,0.053179268069257025,0.0459461893775817,0.00012971566253297656,0.0038081097570690312,-0.030185408833567833,0.025874697543800732,0.007809013235837958,0.0006668026879144201,0.0073238861325309965,-0.026237665103195834,0.09053717039220599,0.06013537043196029,0.00012197877748462428,0.00045596726169671946,-0.028997905203315532,0.0875255709740691,0.03149791691744407,0.0021264288110094025,0.01625579331314317,0.005590014111889151,0.049329337144881434,-0.05846839188620574,2.9140018275363657e-05,0.0078035820212086614,0.028445670992958933,0.08885302142348557,0.011422100724265256,0.001046683196226265,0.0031731504315218213,-0.009051196450805333,0.08408866648434796,0.010616901242278192,7.167936825792386e-05,0.006001166466072744,-0.022042579363713437,0.03093720185556385,0.022853039519394613,0.00016816157583085387,0.0034778302961850716,-0.018503977883296035,0.024077590050241262,-0.050380411825077145,0.00044111923813849077,0.002098347482699692,0.0435431160115347,0.14371840672357944,0.09646743219631784,0.0023483209459166914,0.004108624561522626,-0.004195401318060711,0.014579989514345104,-0.007194002409788652,9.232231140886561e-05,0.005990648262359528,0.016798571811520384,0.024443477009396218,-0.08873108161991926,0.0017083882235521708,0.03535242378804146,-0.03169576109230392,0.10386974276619707,0.01739795396749849,0.0001209005189771069,0.009380066685293047,-0.016590475167183823,0.04496015792981161,-0.00471343928974438,0.00014958614594441378,0.021149260294862863,0.0008748172599280083,0.003917835029712298,-0.04952456327304569,5.449857202578965e-05,0.005140958703136829,0.01800279506384741,0.05620243459506928,-0.022146443680928867,0.003036007686472346,0.009462848688781044,0.021446435835900456,0.10426943927351141,-0.004560703032891462,0.00010231484723658335,0.002922256734718512,-0.01938945655787075,0.09120461311652948,0.014833622222077065,0.0001541734588875976,0.015957955401031888,0.019547015160478177,0.1406748615212223,0.021697729074725315,6.572228467568743e-05,0.00807609764248666,-0.026259828131524412,0.14224173286022812,-0.03415205134745308,4.6399386660489834e-05,0.028300986181006182,-0.005171293745114843,0.01107846313244764,0.00028479596487480566,0.00022758785624431348,0.017332751725730667,-0.005297876246650718,0.020946526251546638,-0.003382213346315015,6.289326990910027e-05,0.0033654831788039056,0.01108102574804909,0.10489518800557662,-0.013016549242723927,2.7255596035909436e-05,0.018171011635988738,-0.02095072489529205,0.06272395200785788,0.023510371628529887,0.00011675476252780728,0.0009708827517553855,-0.01369291217563644,0.05837528026212269,0.0012819568709474857,0.0003697386191420917,0.0015096593387759242,-0.01672902615157449,0.06937187271262213,0.0009379689135756905,0.00013812078485326537,0.03129707532923281,0.003956489809562622 +2017-05-09,-0.0015553651058104246,0.011939730349316797,-0.0696412630716332,0.00013776040684615899,0.00711836538880626,0.0324498019503564,0.10911795971103491,0.01297605758513572,7.135531705124882e-05,0.017611869802691617,0.032542370462011985,0.11183463417580683,0.01616656516137766,0.00013460775087901564,0.00411910677428343,0.027037565041551585,0.032457744490735956,0.04273075739657695,0.00028113641102900524,0.0018261127326230095,-0.012950485058089205,0.031114294275778036,0.0032458449810703095,0.0002177829380905732,0.005916636646672001,0.02064631291683495,0.06578924354667372,-0.022539061159791714,6.852268186826828e-05,0.0017914830677835303,-0.0034209493276320746,0.011713208126476003,0.002506584661300606,8.569601684737484e-05,0.0035860648803905056,0.02991218335195858,0.294805611126621,0.002019601556902897,3.479453071492623e-05,0.02385288200128793,0.005830127458738058,0.004345444867430004,0.0003871254128823243,0.0010346383973959055,0.00520031926489575,-0.022990996605464536,0.05213717828028098,0.005772595847701738,0.00015419566373250611,0.0009554720499813036,0.02844624890446788,0.01940091002905123,0.042121565820668914,0.000716683263108282,0.0055184397869984655,-0.003261650264975632,0.05336049617099742,-0.013368678767863566,1.8215467487354096e-05,0.00921071614091904,0.010520322313301238,0.030219166805567636,-0.013846510641467517,0.00010341834834315677,0.008219805289781902,0.019239905663213056,0.10921097884714133,0.051196831684087195,4.9590496555188384e-05,0.002587250228477682,0.038899078285281725,0.03735028819532357,0.04346993365159698,0.0020312731420405786,0.0016301770737760415,0.04901295767164707,0.3782556729841244,-0.0517047936119397,0.00010662954800183118,0.005210394003206041,0.006827612895212818,0.040716990672631834,-0.0014617214850404959,0.0002596578455906435,0.013208825873714566,-0.03187493171243678,0.18582751490208457,0.004988581430813698,4.8317026571938936e-05,0.00981663003198709,-0.012954407755105984,0.07411806699014717,-0.001167227631924861,0.00028805822879153726,0.023840191626762843,-0.0029612996969532934,0.03807785700129344,2.16105602511586e-05,3.227305624662565e-05,0.03193143325040207,-0.008310457976139425,0.08052039048078316,-0.09797477471253156,3.44826627362835e-05,0.008578399433996683,0.049853268114003924,0.15531105052361088,0.07358422124935127,0.00010339845086854443,0.007022525633121226,-0.06823925737705058,0.473781906099141,0.21114405307366593,3.326964732592754e-05,0.009845573125510628,0.0007765504335841098,0.002294318716848882,-0.041864957921669214,7.504008214016752e-05,0.009399818592335733,0.007814556304074018,0.027105678417929265,-0.007625150080383229,0.00013182343942182978,0.0002700139702544648,0.0009653337141680905,0.0012247704812577065,-0.01342879506018551,0.0004505036612364009,0.0018351156885294912,0.016262708002109712,0.058407912401564066,0.013034139973095393,0.00011719448887654385,0.0020618209704574876,-0.009930013425205582,0.03647873139506755,-0.0011234953110420792,0.0017471463437358757,0.006471698279914145,0.06246335854750801,0.49346539919887006,0.10338663059548894,3.2549987105394314e-05,0.024946979148961858,-0.0007160622548935765,0.0020672673552356922,0.0008138326185444471,0.0011324666071938425,0.003051244462398659,-0.019435177623397002,0.14449345999196234,-0.05364698886929344,8.957069967681349e-05,0.02150196795550075,0.009182207904636365,0.015371683154107254,9.258484761931534e-06,0.000140984407694113,0.01310408898269013,0.02376535169899862,0.031979190376844796,-0.005415065058420985,0.00042656055725791856,0.0017445575267321274,0.007230158899590978,0.024586778613967256,-0.05666366231734774,0.0022792740838839345,0.003929879950481687,0.0002216777162196093,0.0009586590830921099,-0.009455205884208886,7.419048625570052e-05,0.002445128263747032,0.01028380775911127,0.016200216327160896,-0.06885455134630186,0.0015780120944596787,0.028605691887244305,0.025652758335629786,0.06598388977481696,0.02746907043512875,0.00015403243912278457,0.02505544285425944,-0.01716916262169248,0.04840082563207321,-0.03166112991103404,0.00014379928288547458,0.009500919906503008,0.016230463139121375,0.06937429416384021,-0.019378284935752804,5.710133477039267e-05,0.0008755889543256286,-0.03656648357634326,0.11750036731978468,0.03376821847427528,0.0029495925794885526,0.026889410343670338,0.01157547710687115,0.06096538434105488,-0.051452990311869846,9.444873706168569e-05,0.0017654040231932454,0.0021363232674111426,0.01244012474920832,-0.010626745182960941,0.00012453832476638224,0.001403346983229438,0.023675984629506902,0.1473021849951478,0.01911457262712554,7.602344734056128e-05,0.012613762730442511,-0.02865320334272967,0.13421051165001835,0.012212848526047785,5.365794607980429e-05,0.01879021176022281,-0.01826738680369205,0.039541876741967644,-0.09497263175637095,0.0002252415674513074,0.02196412873396089,0.012227339562259845,0.04772130662857851,-0.003579280368598532,6.371387550935997e-05,0.0014154779616114182,-0.015170108050234209,0.16157670225441434,-0.005839173889230687,2.422374128767938e-05,0.012070793758200563,0.01435046551743795,0.05015791773890931,0.016210842712832556,0.00010000816418387131,0.01217086724534073,0.003074239233507417,0.010839896382484835,0.0027451534944780915,0.0004470339437487601,0.00815131201363296,0.014438052666639044,0.08041559949649428,0.010262664645856012,0.00010283480141353484,0.008276891880835763,0.0058804815306341485 +2017-05-10,-0.03879797032711634,0.2409199846342224,0.20673114706362192,0.00017030318244403803,0.003495115117481528,-0.002339592849343823,0.007737452310014006,-0.0010547839068836286,7.255257430661826e-05,0.011576692352010871,0.037662491523379256,0.10755086936619705,-0.14616123048799368,0.00016199153702973503,0.009846151399313156,-0.022576172416838774,0.025487677327928435,0.04507947800604962,0.00029894267002515836,0.005821544908690554,0.016467810103424376,0.03349869813759665,-0.10403618896554342,0.00025722056822665714,0.0016640997857439407,-0.01844104242526177,0.047975951920379026,-0.05976834215157893,8.392833474621745e-05,0.0059131142299946385,0.03066944096525985,0.120658707912838,0.03616479561830157,7.458251853757917e-05,0.004596206575328214,0.00012341964007695055,0.0011361652045121756,-0.025351277893348886,3.725129759301977e-05,0.01718473129886287,0.013195625910382586,0.011527999168741119,0.017914081763884065,0.0008827156880518608,0.005718548019090524,-0.005779198944860347,0.012425303811897694,-0.043867301479890056,0.00016263818344825685,0.0013813949329089768,0.02547954800452891,0.018657792949495954,0.026760814818281284,0.0006675069755636143,0.0020427928383818573,-0.00485190425419076,0.07035090721460945,0.003351318742572248,2.0552530870755374e-05,0.005001234590267169,-0.006652173475168876,0.01706775895687283,-0.08760229753472755,0.00011578121514708794,0.00032351357122729517,-0.0016981891969972745,0.008824246749774922,-0.007692146466645745,5.4171423560468675e-05,0.0011821165404253596,0.011761971763872668,0.009640271193883405,-0.014146633817241705,0.002379654209065824,0.004350754612562368,-0.02604061177136438,0.19104625438621806,0.026037758055342117,0.0001121669118704403,0.03355384866051772,0.01500349029553916,0.08159058161334827,-0.00768434200376025,0.0002847478834656701,0.008794117518470129,0.02327134488954286,0.16863272408086594,0.026937740783968822,3.887233089785137e-05,0.00851695396301563,0.005470299152656479,0.028359956210821616,0.00278479802978656,0.00031790131811125467,0.0008168531437888053,0.0418504831038526,0.5099772897908221,-0.028988510508777227,3.405492046437614e-05,0.015901147702775956,-0.007430936686762713,0.08806414820966331,0.0026053202690353885,2.8192015877264358e-05,0.003682367049367547,-0.03175197052569044,0.07985160198839682,0.020701567985199624,0.00012808840130063245,0.00253526700612628,0.04958829121247096,0.3258021727729029,0.13038805715357119,3.515746416577253e-05,0.0032974687967628046,-0.0054510808200628254,0.017599877795349425,-0.024715645101999497,6.866736005928328e-05,0.006884344890338574,0.0005589877561222248,0.0029954585958828998,-0.15047483757060973,8.532721481071519e-05,0.002980409315485052,-0.013202076393137316,0.013566127500942946,-0.10395242974263749,0.0005562396055142402,0.014609560601201724,-0.03126315225661275,0.11608240479706758,0.06050715615547806,0.00011335805307267335,0.0037732161750318556,0.08171191839357447,0.27591675731562576,-0.0019111301508874595,0.0019007565865261553,0.012382251984789731,0.021074495599420033,0.17887668502656418,0.0052303856902084405,3.029602471258761e-05,0.02863139390127105,0.04020054342335337,0.12829425549062032,-0.006636535143699374,0.0010244623040177013,0.007627643347282103,0.002889472171560315,0.023681520501708832,-0.05205381086081461,8.125209657017742e-05,0.020220777191539044,-0.009347369528073801,0.01315203252909667,0.006873859144846229,0.00016774204133676801,0.003503069317783599,0.0011212909586579192,0.0018242975475989702,-0.000795683299135731,0.0003527983617690138,0.0005465008267885513,-0.042480974004521305,0.17316699514899128,0.08860444695899833,0.0019014271284104368,0.007938572918377474,0.022389836677293797,0.08401923602937506,0.012270136649601797,8.549930171032968e-05,0.013849900318400903,0.03220463430229293,0.041850231007878394,0.003098845485075033,0.0019129239479282964,0.004623715005605051,0.011991448122406165,0.04023206075273043,-0.014357058584520799,0.00011809061681270115,0.0029813893673767827,-0.011725230461645853,0.02919514429793551,-0.005220263978680945,0.00016280627418457637,0.017973610062488307,0.007519569226064907,0.032651760854288926,-0.0009489428870837271,5.620827792876802e-05,0.00523614276677336,0.012956037770124846,0.04284671196907722,-0.0029288144658602376,0.0028659774127688296,0.05128255570918649,0.015112796347325664,0.07905552577225622,-0.006379151741668912,9.509401173588752e-05,0.004751175487523059,0.012844492251805345,0.06582952249638438,0.0014346361810107593,0.00014150018921671453,0.026971812675357767,0.03546906150181733,0.24797863214330895,-0.1585894679723326,6.765254455817889e-05,0.0004167749453092173,-0.005237317002915241,0.023126817337659675,-0.019532050297143604,5.6916788364838216e-05,0.007003318778760194,0.04052040278538139,0.07705050795870043,-0.001750075073111738,0.00025640568001281653,0.0191900526528897,0.00039022656860728157,0.0017268183337027308,-0.09148540002760576,5.619330295390256e-05,0.005946163493380756,-0.032043841246407564,0.3052475669635607,0.02665896648891946,2.708467607569108e-05,0.018835725684712597,0.02552709874947722,0.06969412352597558,0.05447196521068682,0.00012803074192422898,0.006959978228015652,0.026373674031741724,0.11105863926552448,0.04908880881498057,0.0003743227795518402,0.010295757410732059,0.049523434525176144,0.2816772296072951,0.008565927784939814,0.00010070031089825059,0.038538099768376556,0.008428741912635755 +2017-05-11,-0.03323290352158792,0.2771277006257856,0.10207537671495942,0.00012681625744696002,0.012063272042904388,0.011716677836037314,0.03381183565473242,0.0016041742216586035,8.314693904966964e-05,0.016636111071453605,0.05171640239947087,0.19014798847995693,0.07237152847767721,0.0001258153919792414,0.0029900556599275247,-0.023884103778642033,0.024465115988623116,0.011558865568601053,0.0003294803561712571,0.012092980848061582,0.033894796102664895,0.08954484103760708,0.05213666616255503,0.00019805701448205357,0.009825941562760163,-0.003301539562210979,0.009550979820665655,0.001242247809521031,7.547711961475149e-05,0.0005765406494969429,0.011991100348340097,0.04571156779399591,0.013597618218381239,7.697022850059018e-05,0.004875296602729269,0.009793078083642943,0.07891929560604455,-0.014502626030221498,4.255343583451258e-05,0.0008854744503334518,-0.011390850222765318,0.010554255852416922,-0.007300857099045274,0.0008322873811294887,0.0027231903153873147,-0.008519201181352286,0.022370192436678052,-0.024978066699559705,0.00013316529041782299,0.0022141990972295096,0.009724915177079067,0.008082883165713553,0.0015064224234807206,0.0005880901141452614,0.0191163755872089,0.003581905356874759,0.047509918956118516,-0.027672137093415,2.246738908219807e-05,0.006969807575190915,0.022276252474164024,0.0608914443118937,0.004253852035804861,0.00010867681296589657,0.01984361537339882,-0.03966337790104318,0.22977825031104507,0.2816596246246806,4.8589518791729965e-05,0.008332537329371063,0.047404185040674236,0.037890023596632634,0.05140625633300292,0.0024401402100354603,0.017802927721681062,-0.004425389297389206,0.031977735767685575,0.0020808803065587252,0.00011388220813010677,0.014470713150216316,0.009231027411636401,0.053627958065409924,-0.025144610961358532,0.00026654283424910576,0.042377433301214074,0.013580136514670311,0.0780785482840365,0.003940552797043728,4.8992924225170694e-05,0.008199144158321387,-0.002104838668274882,0.011118499788729646,0.0004992613162698341,0.00031200347345164485,0.019474516422349677,0.04604404316527743,0.5844119118323885,0.006752459965154051,3.269524712146037e-05,0.008899850808890705,0.007947588122269153,0.0921333536943544,0.009039467401963042,2.8820411748309627e-05,0.0013816493476389755,0.025681783200399395,0.07785381857042724,-0.010350327512417384,0.00010625955983375021,0.022941946673348406,0.08015740689491188,0.6530858134539228,0.20295641760899377,2.835083049167178e-05,0.010252653299231113,0.0003533952500509274,0.0011415968768361843,-0.010907120212904648,6.863178877857765e-05,0.0071650189434696145,0.020724544700708312,0.0752957861800081,0.07642445889206671,0.0001258528114162836,0.00019548988802385592,-0.019800819417802977,0.018951849730068773,-0.011517690651818348,0.0005971825655796625,0.003113643245085308,0.01774461409769902,0.06816432685101949,0.011216789693739232,0.00010957094765079641,0.020272734966663767,-0.034340317859482425,0.12343703964914102,0.05208264765334213,0.0017855745522543395,0.021400302416065754,0.0036479373226627233,0.03828940080494385,-0.01510865658152789,2.4499148664095103e-05,0.0023539190282196466,0.023812348314034292,0.06237629450611035,-0.02557845462629961,0.001248113051454118,0.005013614673592403,0.011921051492502539,0.08756445455475115,0.0015921780015433315,9.065929977412607e-05,0.03090732787235864,-0.013283550064079332,0.02003029936801592,-0.043849823530979215,0.00015652081585845707,0.00982416736036255,0.01762101656958528,0.02418855455020583,-0.09084488392259471,0.0004181431211610269,0.014539503822466262,0.02549371632146938,0.08771421042449987,0.019580481595341485,0.002252752766758986,0.001369465649659778,-0.019931960635591557,0.09077160913299406,0.021355435169798577,7.045151826948429e-05,0.028558189357547756,-0.022649496956979837,0.03526594204670186,0.021911388007630338,0.0015965416882051302,0.0006492122739662331,0.039804745185201426,0.11775733918482283,0.028279192171914897,0.00013392538412377816,0.018471335146373464,0.021404948972236573,0.052484988645159415,0.01985724495975452,0.00016532535554475132,0.004875261305849165,-0.038487364025753784,0.1722212725675781,0.0429543352035359,5.454378834558282e-05,0.030053603764300746,0.029841353206273777,0.08509060569743464,0.013294651989423612,0.0033239536245306504,0.003452614991512404,0.01948607411840031,0.1070583267732981,-0.001991139716824218,9.054082957370518e-05,0.00155226340972121,0.01327428907392508,0.06515908795436094,-0.0072410704321172,0.00014773964756215668,0.013915945686465706,-0.025455444807856404,0.1496576580466493,-0.024916538660989425,8.045081429674556e-05,0.0013550912501341717,0.005062624498195752,0.02211771404930921,-0.015155029321688164,5.75284764142926e-05,0.01002754157177858,0.036437889965358954,0.07302442776165297,0.02587843319929552,0.00024328450638384994,0.0026390255026850036,0.005567942923235864,0.020799290305272684,-0.020612039401859256,6.656725276571533e-05,0.007046307095975524,0.0021830875690871036,0.02189812025777613,-0.0006326501011326305,2.5721459369755766e-05,0.007653777272693892,-0.0013458930051030713,0.005160266045690056,-0.18511344839077584,9.11690454284298e-05,0.007208851323124624,0.028721612785483987,0.11506379246742766,0.07641053062528728,0.0003934577550563981,0.0059265569967082,-0.0029372994762277196,0.014124237669473225,-0.0018130043578495926,0.00011911186014439892,0.005318157895888509,0.008423776216685185 +2017-05-12,-0.03035071126354003,0.186551687867892,0.021292439868875433,0.00017205063280040643,0.000544080483357453,-0.013631706247126289,0.053252336455648065,0.007811069829172861,6.14217347419966e-05,0.005629619797794231,0.003260568534834892,0.01081451868397865,-0.05556023553385374,0.0001394708161855621,0.0030656933687520857,-0.016438281976104026,0.01710612645463434,0.020417110612610433,0.00032431915815600494,0.012416552851347764,-0.015115721994711737,0.0340031168720621,-0.05288567938149694,0.0002325990518111278,0.008029964825509939,-0.02406603880937641,0.06331841895106312,0.10805253920330228,8.298914503712355e-05,0.002241452441106867,-0.030203977842861534,0.13004503200226106,-0.007322643163520562,6.814911687903293e-05,0.008808047146996064,-0.008824901033903848,0.07042753477245958,0.0018425821703891745,4.297006112744253e-05,0.002432247274693655,0.01806485204204883,0.01347682154832996,0.014568709122317919,0.0010336933390563026,0.0005081916025240149,0.005618352807163486,0.013528739280767657,-0.05806626443095476,0.0001452156979365991,0.005238994633580447,-0.0043967179035244545,0.003110091750708221,-0.03256279241024084,0.0006910027230415837,0.007722855725457006,-0.015997326102759637,0.1813106166869939,0.02119220580339912,2.6293412345620977e-05,0.008850523296126815,0.0033865219790895026,0.009784687986938783,-0.008297427235056143,0.00010281534922169454,0.008801435593798573,0.005383408614227717,0.03203297759718828,0.0015776569219012482,4.730661282054963e-05,0.0012828972029825488,0.004883343689650263,0.00467531340798926,-0.0007627541116478256,0.00203718061339594,0.017251383119174388,-0.005419720614148617,0.036739520702481966,-0.0883150436819928,0.00012139352450631591,0.005215365413989872,0.03502100014029888,0.22921946618845823,0.0032031047292542876,0.00023658395069283558,0.019013234599036526,-0.05863000224091429,0.34860362622304875,0.04217353603266566,4.737497201009064e-05,0.01708394462024628,-0.02476877128243569,0.13485251052741742,-0.014361310354987812,0.0003027138100247773,0.0064842253515760276,-0.04087382500600843,0.5246516307240777,0.020109529290111845,3.232990924159425e-05,0.02744237957601664,-0.0032261844665733798,0.035185088358102516,-0.01936685942369172,3.0634603163919294e-05,0.00270277521898914,0.0056397255486228875,0.01585413244349035,-0.0935832755111253,0.00011458776372781739,0.01848111944133571,0.023905938590932242,0.17228367989437388,0.013726027962443604,3.2051918970830905e-05,0.021639139181946036,0.027798129454011427,0.06862273714865524,0.05604385984509509,8.981004596166725e-05,0.0053162687492518314,-0.01867608201293688,0.07346603328314993,0.16284619280148535,0.00011623790576726103,0.005555176725435749,0.01467336536001372,0.016271275761645318,-0.0110243266980222,0.0005154466095743962,0.04882471972288349,-0.008757018187264914,0.03141890654447135,-0.004391583251829738,0.00011731436503099604,0.013491234604708937,0.021318115356981485,0.06736711533396147,-0.0008723000749681817,0.0020310472711593387,0.03271378152061404,0.03461691491581563,0.34686032893771324,0.010018008729558124,2.5663502301229705e-05,0.013390779531724881,0.02562009636341175,0.07527872301048161,0.007527418401076726,0.00111270434861399,0.011759686506441458,-0.020681460406289973,0.14967283951737734,0.02911684769192341,9.201610549852706e-05,0.00827694857545991,-0.0003545440831301181,0.000597843350695921,-0.0426928785424177,0.00013996782851470024,0.017087733343990573,0.005132002370117981,0.007411567819463651,-0.019831814528561455,0.0003974483287275491,0.012993145961344744,-0.04628864931761015,0.18350627722921428,0.09186005256710927,0.0019551222797630535,0.005109620615938209,-0.021819994257450834,0.08507684488373807,0.02474597408599907,8.228745429096806e-05,0.015860859939699136,0.03598857975446468,0.05691052250619949,0.022178217262266764,0.0015719883636301165,0.022370882065856093,0.012634947943230744,0.03699795477377672,-0.015528285325581525,0.00013530435529412815,0.0070800909629703404,-0.008473963245177529,0.02490064874666133,-0.01324235065618533,0.00013795463292987464,0.011208192304764265,0.039329888793862657,0.2345862095363179,0.04667144509836609,4.0919862481349556e-05,0.027018534649501658,-0.034989514967195816,0.09996684066364715,-0.007358447490903954,0.003317416598042644,0.009702761813625338,-0.020427180742841677,0.11105553265054409,0.07011134832748403,9.149741044984301e-05,0.009235456583437728,-0.015002089594346875,0.0920743278926894,-0.03129548750552061,0.00011816095213403341,0.0094654335260044,0.0002422362661106552,0.0012659911623133268,-0.011979902403950166,9.0501794021608e-05,0.0013888576367147862,0.040808851304261595,0.22929981519942133,0.049096156153076664,4.472991372599484e-05,0.010260403345462224,0.03331979268654332,0.05920129105230461,0.016538123299349106,0.0002744103620592662,0.021870610189967468,-0.011956760805595011,0.04775188205727669,-0.05598439410056569,6.22640582815106e-05,0.006506326967266291,-0.021708917412470417,0.2739084152253632,-0.009158140875732733,2.044862340372493e-05,0.007818353180661666,-0.002090528946675361,0.006121604512319788,-0.04171773232535946,0.00011937128844627279,0.010709695308222052,-0.0009160834194441088,0.003914823630052155,-0.0912000643051997,0.00036885085337815877,0.008548551809257551,-0.0171262284144126,0.08171578525342721,-0.01978241569259001,0.00012004043747670491,0.0007961570890853833,-0.0030977139087124544 +2017-05-15,-0.022811157104451155,0.1578345729337143,0.02497786136044804,0.00015283814570448526,0.0035093286582272747,-0.024329731312717616,0.0897761743764554,0.015002615105029374,6.502595579480526e-05,0.007487020915085709,0.02190803211163587,0.0697367223523975,0.013771087888323617,0.00014532456838709236,0.005673191627069271,-0.02687378782301934,0.023420142912541818,0.03997369971296442,0.0003872640646305551,0.00793560917104225,-0.0009656484518954692,0.0022051216208227274,-0.05259288958650495,0.0002291312231307109,0.0017091261505058199,0.009056557781601644,0.025751013063623335,-0.027843686620245747,7.679193002844844e-05,0.0003019866776105024,-0.021340589009969848,0.0845091686522041,-0.021113759647300542,7.409560147109147e-05,0.027851817232479835,-0.0400492081466029,0.32723637277927436,0.019700346892050895,4.196922774040985e-05,0.022173796416641182,0.006105603281583537,0.0043652673374917125,-0.018327885711589765,0.0010786052326125645,0.011256680986511272,-0.006198117229110529,0.01836060536160266,-0.011875829600961459,0.00011804148825080174,0.0007400082480076239,0.0078042357503589855,0.00582333197342465,-0.025637137811556514,0.0006550631805135148,0.003701366913826953,-0.009664956709827605,0.1468312225719852,0.009062318747007343,1.9615721535564177e-05,0.0077734208567295,-0.0269416283257319,0.0861779592253297,0.02172553041136706,9.287069016491052e-05,0.0028572787510598024,-0.01086856568611089,0.06189523781657315,-0.0021485888789802374,4.9428430079726534e-05,0.002686471052252307,0.03468933147747145,0.02483694435553511,0.02188576845529625,0.0027240855254614025,0.0053636002231902445,0.02417887346198301,0.1749180479615697,0.014232489125530434,0.00011375056123421344,0.01739540788195195,-0.050017868870990315,0.27462995271867763,0.04122733402124739,0.00028202363989108907,0.024508951582270844,-0.027841890740064112,0.16819056938427857,0.0002977091215697882,4.662920810919122e-05,0.00031795146784130185,0.00583536453913047,0.03275141595294492,-0.026915770825769188,0.00029364642548886425,0.0064964873102308805,-0.0025055681434642658,0.03225000102974433,-0.14112460091263854,3.224086737438455e-05,0.0037147219796901856,-0.0038550120262989644,0.04061507062270207,0.00012200413163755943,3.171175179068305e-05,0.0035653631291804404,-0.044054488544243244,0.1056308899354479,0.05642320854400375,0.00013434514633144052,0.02745585531090298,-0.014498129099215062,0.09180601394330636,-0.0019631978614890987,3.647818379753987e-05,0.018049123506232535,-0.021630748567162402,0.06478382562168532,0.0688309539956434,7.402566900952007e-05,0.008241637410198961,-0.0033414336245238567,0.013554252618038306,-0.016209866319825725,0.00011272126620902757,0.003645047270122397,0.005380929483729017,0.004959467828750649,-0.0028118821010273596,0.0006201514802971559,0.004222831244211162,-0.021550986002684507,0.07361901617936799,0.03661444383600909,0.00012321487606115224,0.0072007068494274375,-0.04711782268599068,0.14822059790347292,0.039464676969312384,0.0020403084460304476,0.013561710704067469,-0.01199099792866435,0.11996365396575615,0.00717873676228376,2.5703238011721363e-05,0.010086549919604408,-0.04736198154711273,0.13546431908457665,0.08481982542145852,0.0011430789196599303,0.002364444001745966,0.016088914729868467,0.10639146562308362,-0.16504710613052398,0.00010070374036449581,0.004880837564955881,-0.005835471331492697,0.00857895542876385,-0.019102113999353777,0.00016054135145175428,0.0010243707431717443,0.007628669912299539,0.00983298247083294,-0.006112106308630048,0.00044531515211691255,0.012186184380415865,0.0042699741921728394,0.015661662868051502,-0.01608546237607009,0.002113185977506895,0.012161350589701948,-0.00828278639446865,0.029039485372007,0.004304026268803299,9.151197243697525e-05,0.00578580924118661,-0.08753793161084249,0.1178241139326159,0.22101269621531291,0.0018468826014288546,0.0038533999521094178,0.0031267648798794577,0.009021096816467036,-0.08964578195465524,0.00013732573052318629,0.0004665843713555849,-0.014374544985946813,0.04088245227467364,0.005598733456101287,0.0001425336950703512,0.010200335291004864,0.016129587653430692,0.0642052630016978,-0.06557569740791751,6.13149757303262e-05,0.01027758088923548,0.04492369419322488,0.146931074049425,0.0126299847587017,0.002897876459369486,0.0003904451070654036,-0.033098189950598385,0.16951824909912738,0.08921660007375944,9.712440174889641e-05,0.01039478914381506,0.008826558717873637,0.044591760143481866,0.002176624467444299,0.00014354814467811653,0.0215779657489673,0.028086694850408853,0.17761814101704468,-0.05416513889114901,7.479318269201438e-05,0.010243152672122556,-0.009918447926200724,0.04162324429963748,-0.05192365143734896,5.989012015686707e-05,0.007315157659772088,0.018741740291509778,0.02917402357906087,0.002579299767098154,0.00031321530830548546,0.005853025301726366,-0.006752209097390954,0.026855291719272055,-0.019936940772367292,6.252164329061855e-05,0.008517461606382264,-0.002848749838052311,0.028133473578405694,-0.00257719098829881,2.612535750272578e-05,0.021309642336782505,0.00905530006118015,0.028385135700741426,0.011693351923579712,0.00011151180243512719,0.004655061119840244,-0.010447747413571812,0.047454074760399235,-0.030941302484233227,0.0003470380746846053,0.02157760460175775,-0.021240799754590048,0.10555076337853392,-0.06421197867247598,0.00011526070776485108,0.035285330560213914,-0.008580695606643577 +2017-05-16,0.009552726057484646,0.0740583727187804,0.01312070461954352,0.00013640796895127475,0.00024461179167428,0.029615382283519127,0.07536612491568401,0.009657127953481622,9.42869709269503e-05,0.002673789390062617,-0.043456500642068796,0.15793930640969395,0.022709519256811552,0.0001272804580684774,0.0012262493379755015,-0.025618409456507986,0.025617248600565228,0.020386514892735817,0.0003375106925378661,0.011666366458792796,0.04232480724017246,0.09460504008318155,0.13134675512132113,0.0002340876420984029,0.014439477527486944,0.008100768471014175,0.01965008650661368,-0.008263536452304994,9.001367497010689e-05,0.0022031842121510124,0.04802176745035854,0.17695611179307577,0.08543689415381131,7.962738039440216e-05,0.012291482056936585,0.013759494642251366,0.1090408501411146,0.006360781960866419,4.3272488293838904e-05,0.0073129830980791025,0.012568104389928171,0.011863830060146725,0.011920137350666092,0.0008169390363751834,0.009012903076166498,-0.00240683909233919,0.005070687738712255,-0.03947029237814099,0.00016597477033015296,0.02015934641849356,-0.0002736238365602015,0.00021362304570048623,-0.0958238275984886,0.0006260805088872583,0.006968772553404723,-0.008537986721160132,0.08960234171313913,-0.016732468350450776,2.8396113576754322e-05,0.014133734016127922,0.0481562704189369,0.12922339900446453,0.016268543495312465,0.00011070384932730964,0.0025751607573448604,-0.004098578573187154,0.018805705247733593,-0.025000609351892085,6.134871333842107e-05,0.006316870104924668,-0.03854487999232151,0.03589734580675576,0.04066483961807503,0.002094244250012445,0.015800853168519563,-0.022771800323387905,0.1405656513780486,0.006353004026547929,0.0001333123135298337,0.003280186143066869,-0.007896613021674737,0.05992975006486682,-0.017941630143937147,0.00020403591554475384,0.017708559847781767,-0.03970705697813912,0.2514441765462169,-0.04196764447610656,4.448228345706498e-05,0.013274601457586441,0.023792795709963878,0.1271813656166062,0.011188671470335922,0.0003083250418964567,0.03522914989032568,-0.01989615781583437,0.24893136625921197,0.0009122687090639101,3.316804130677279e-05,0.01722159293703305,-0.0034007498249762577,0.029525912492930174,-0.011035015518334959,3.848159505537147e-05,0.004286212591762597,0.006844796804796223,0.019830378031646046,-0.004624728957244078,0.0001111865673764023,0.006638738488054981,-0.012679116882497822,0.08086718983781371,-0.0008957983522404899,3.621671287135968e-05,0.014193635424566595,-0.0024108727969373096,0.007953871564082405,-0.034684251625546385,6.720059293993613e-05,0.010375648936123728,0.0008777950885242894,0.0039010339959030323,-0.04693361472498752,0.0001028873560593319,0.00183054806054033,-0.08524271656360514,0.07494138116188732,0.19830855847759268,0.0006501463821099646,0.004140654518081996,0.005570852322434742,0.02242223768891519,-0.012522097671748382,0.0001045751997855761,0.020587476024078104,0.009877132916185936,0.036320383686150655,0.0008811469715549221,0.0017454187822659843,0.01172893256865752,0.04295195237001217,0.3816381792455819,-0.03587651384532883,2.8940983752960323e-05,0.003972418827646335,0.0007679136334980312,0.002190085940428949,-0.015031620764967656,0.0011463638720236498,0.011053329674805778,-0.020075292923380957,0.14557775226771247,0.032477569824392184,9.183167895487795e-05,0.006428535352533657,0.008923886690221015,0.012573778310223159,-0.010848243585816868,0.00016750725993699788,0.00795242146638623,0.007517094743528027,0.011829087337685118,-0.025399951389587155,0.0003647562141763652,0.00487283164643326,0.01595884654047461,0.06608997741843992,0.006324852019311098,0.0018716137894471466,0.00858821173915944,-0.007471037934933187,0.02762623818620816,-0.017067870557385616,8.676599672985401e-05,0.008785368068349491,0.0017419607154830151,0.0024249058478644455,-0.03938065985138478,0.0017857500360558534,0.007737633283064487,-0.008153486779793592,0.023085501781970774,-0.07512815738655002,0.00013993298200218207,0.003939540290146522,0.025690782569695612,0.06247749816730022,0.021570590956364145,0.00016669173971121048,0.0031677700013086497,-0.03584672475758364,0.14691649114972774,0.03745469416362568,5.9551521081466224e-05,0.0017494807454719744,0.048422891506222906,0.14679536108431188,0.033738997333374786,0.0031264856923864173,0.002278743531144244,0.051742563416730114,0.281702715327542,0.03758371860290296,9.136870681167911e-05,0.0013467434846367323,-0.006873952967241582,0.04560498721147236,-0.017784220439713,0.00010930876874022454,0.00032241037494284063,-0.003667663551078408,0.020168367268958022,0.000985110507054956,8.601366373393713e-05,0.010051338273062326,0.02863069756449233,0.12290307067440583,0.0011667155435656175,5.854861022452574e-05,0.007000903623056818,0.05756694706274037,0.10353193650530373,0.0006681835121985118,0.00027109921183842794,0.014633907196204157,0.003134301718956185,0.014386499850919644,-0.0052456778340735765,5.417513861538824e-05,0.0014636429528976438,-0.056722850195889206,0.5919450492451421,0.0639536551903153,2.4723385339398496e-05,0.015807069459749953,-0.020232867035157705,0.06434413886361857,-0.00827987330638378,0.00010991511004629106,0.010135586774322934,0.023036691329359135,0.09472139154920499,0.02780402771776995,0.00038335400471385786,0.019709260848907968,0.05563140305470279,0.2937183123784865,0.060668497383540965,0.00010848277476134671,0.022421909102918077,0.003277400167949461 +2017-05-17,-0.020685232481011846,0.1508851650472999,-0.02576791291543178,0.00014497744707552408,0.007961861811014905,0.01120539912093528,0.038792064731436954,-0.04820034819275044,6.930985031068589e-05,0.0301872922390932,0.012080893834055664,0.042922102975194235,-0.00016947836620151364,0.0001302012879097342,0.02079925499871719,-0.016908113588190356,0.014660249467509774,-0.015537532696191268,0.000389243754072038,0.000968664833464371,0.005772743724084464,0.012910038867379231,0.003826881776965449,0.00023396586538708714,0.0023304349547146664,0.04818009464610905,0.11694318182555957,0.2688315869237529,8.995793602957463e-05,0.019615326729036934,0.03900333684089994,0.14128679008687162,0.05754760629893801,8.100094030355461e-05,0.013950690024923447,0.005833635438845484,0.04936348996914647,-0.0005941274515020516,4.052584166520208e-05,0.023839287951398124,-0.012724104396042596,0.011122054475678362,0.007639891458825339,0.0008822405036860287,0.013191785272574953,-0.018376233805516288,0.04303503101395981,0.0033506996635342258,0.00014931253674409993,0.027131730354781277,0.013864650780830125,0.008901226595382665,0.008099562717631585,0.000761348395021931,0.00550997935400006,0.010384230132685909,0.1314054408539866,-0.0008816154425572715,2.3549611455737786e-05,0.0014579874560589937,-0.012288721962655666,0.03344137358396275,-0.0081221126282294,0.0001091625440949745,0.02294158844519634,0.007389176831401584,0.03726207770138002,-0.004779766660592739,5.58201258185002e-05,0.007850825518050662,0.004918991887970368,0.0042725557643477265,-0.09475201026821206,0.0022454911057653557,0.006104710085884751,0.029956857401250512,0.22721702357403756,-0.00234419134473302,0.00010849444271339515,0.00989068584461676,0.03953277714749267,0.21930027199819535,-0.003530393647372615,0.00027914277133015005,0.0032237425905079532,0.028217495395124883,0.19664804575935346,0.03586686501594521,4.04193927012418e-05,0.00028563366582241433,0.016646697473065873,0.09356827895237518,0.0018716950387267007,0.0002932150468251578,0.007808574532514938,0.05105064814107066,0.7405167470694208,0.032878131494581596,2.8608600085287587e-05,0.025098151248567967,0.004258382245589997,0.04669271115211459,-0.09792865280595263,3.0470337183387932e-05,0.002940349530929243,0.017933382356297087,0.04116475530950286,0.013796928416414788,0.00014033287597801285,0.022170106359106264,-0.03970748088701006,0.31754897458872294,0.03151592458062353,2.8883777905493386e-05,0.006645099375517235,0.011320692833615338,0.031747948131365764,0.00421716594044467,7.905598005331931e-05,0.006658124640839224,-0.00030498706872751446,0.0011345165858349813,-0.06278957685144987,0.00012291904351398919,0.0023464368105591995,0.007865756012073585,0.00625603394014218,0.005815595505171987,0.0007186491828586287,0.02135954595379486,0.0033484751146849205,0.013278469624572744,-0.02427301321275982,0.00010614146077272884,0.011211156574623996,-0.004176710289060801,0.015395823518924632,-0.00773433955442406,0.001741207794802736,0.01749756299842024,-0.04898544851589192,0.4361936896051591,0.0610518900108208,2.8878185765406076e-05,0.004062376920965307,0.029165430830449864,0.08180327658725409,-0.008475156354793107,0.001165652143164108,0.008300395668368224,0.007598771023624604,0.054871853128138366,-0.0032247456929049147,9.22187802838586e-05,0.001421562388274585,0.011570250699239054,0.015844270452891045,0.0024393463396907146,0.00017235183375124036,0.007898084276107173,-0.02985145438121552,0.043891878523033445,0.04547091799732088,0.00039037791513056727,0.01685365106309791,-0.015022276172497755,0.0514601307527288,0.003010561904996046,0.002262638630642993,0.014666876348572926,0.00839679101311364,0.030270978427428867,0.0020370510776516666,8.899738705626264e-05,0.01151676231272789,-0.012613655715126296,0.017131075164919525,-0.0073879287354613075,0.0018303474735271287,0.018170754122147487,0.01653410412266698,0.05331935089536725,0.0022759743526102345,0.0001228603790962601,0.003461486429767866,0.04274959611422942,0.09408068556232321,0.04398031717741219,0.0001842009724615124,0.006054999647808656,-0.02315777582331853,0.09761951450767128,0.00941027275877501,5.789940850735878e-05,0.011282556583130186,0.001826446824762947,0.006279664095994189,-0.032075389491123436,0.002756694736353735,0.013091083118069625,-0.005272298929311112,0.023463937775747234,0.016699542319031837,0.0001117737182605394,0.009248285266735906,0.008696465720460528,0.046920199421854866,-0.08395524343957388,0.00013441375832171649,0.025753771350211795,-0.030720689061396245,0.1644555826427932,0.052634490735372914,8.83549795415347e-05,0.0014443590755028452,0.02613028988138666,0.11728032608427032,-0.0013204589507466399,5.599721882974728e-05,0.02279446993294611,-0.03374042527027155,0.05406918367390017,-0.0978675481207795,0.00030424968240326934,0.017336509877439746,0.004038945730019129,0.019835178252890558,-0.01420433873063122,5.0634472030390696e-05,0.0047785066475506165,0.008105355252262924,0.08243531804935211,-0.0058468878277756434,2.5368221559056212e-05,0.0026700926363309348,-0.00627625645241351,0.02003525789591631,0.0025707082280698045,0.00010950014854335854,0.0002524390409699445,0.002113219440008247,0.009093954698003417,-0.0017491592628884293,0.00036628554634734794,0.008769018399739748,0.06041802996181517,0.30046054621922846,0.06832471474454707,0.0001151730595070411,0.021229386709648943,0.003918956386875603 +2017-05-18,-0.008469232167151322,0.06451835715478964,-6.841723418469821e-05,0.00013881849188462938,0.00012252935298834766,0.014169551876978602,0.05766815201550416,-0.04786958606000363,5.8956352596314914e-05,0.030557411865244754,-0.03228038450212677,0.11558472629603424,0.04940596608058855,0.0001291919503643117,0.018988982253319218,0.022013476184270696,0.0215075431994467,-0.06114926564850071,0.00034543447639938363,0.01142372145288463,0.009301264018213056,0.02113576697657702,0.007234615761427918,0.00023026171353451297,0.0029206370195972355,0.014867818796794594,0.04045419869535918,0.004795780428065422,8.024729390059277e-05,0.0053414455957301555,0.02615654919920484,0.11411937641130987,0.022304940623736783,6.725288399451793e-05,0.005155993109260746,0.006327176646694432,0.0578486507262438,-0.018720136046886,3.7507260106334514e-05,0.008686535802440262,0.007268479857667139,0.006610476504660668,-0.004003861039498246,0.000847921430672274,0.011964405028225626,-0.011717533632816742,0.02801891700462962,-0.0010421350553774377,0.00014623345813921237,0.0058834314522061195,-0.009505654802331922,0.006542108220391249,0.011210228287846574,0.0007102130908792598,0.01666513956540793,0.0029381028138921613,0.037044164671324306,0.0003985358023625718,2.363578182320723e-05,0.008911967617076648,0.01803617820601882,0.05949949740026709,-0.09199172239695674,9.004969752039271e-05,0.025914773163771866,-0.02458412293369577,0.11198309448709538,0.07288108673864853,6.179652766887415e-05,0.0031157803552485978,-0.03212171399322662,0.025466622698522685,0.02881750226358526,0.0024600862261478337,0.01890652014150276,0.014728956211344093,0.1008786382208391,-0.01574477844859265,0.00012015030229563573,0.013984699121457944,-0.082516420360123,0.46385141100356314,0.06781037559565639,0.0002754670952587639,0.004580968178186772,0.024259120666058176,0.14573761402052468,0.0044122780454970015,4.6888285805601e-05,0.02217679100717745,0.02130444466830529,0.11703432460178792,-0.02723690268722317,0.0003000155550793701,0.016065110220344826,0.03652859274988574,0.5166391236965124,-0.03644229077316982,2.9341065556820893e-05,0.00010511943746686599,0.019807219146287282,0.18060223471112316,0.05437364044769116,3.664224682867032e-05,0.003584706185837285,-0.029291677967257734,0.07982743725520133,-0.10406853801360093,0.00011819927686541377,0.016139216184026427,0.06016911122515497,0.49254023979288997,0.0668868956078332,2.8217871736251067e-05,0.01354753631853791,0.03265854676855365,0.09972704888043944,0.027971799798974618,7.260412075163304e-05,0.00877603642815137,0.006391625649209689,0.026039242851626933,-0.05037645680745113,0.00011223584341105215,0.00532436893421201,0.05241889291118463,0.04589920554793144,0.06513112390841509,0.0006527670695151526,0.0159569703459454,-0.038301016913143276,0.13702777657942966,0.07257295796865182,0.00011764885452069801,0.0019231899085428343,0.024112120436342595,0.09121062442431921,0.006820329869195224,0.0016967159795036818,0.01672535467805774,-0.016233903109910658,0.1669805003678403,-0.07448314860590205,2.4999964201068877e-05,0.01781869680780035,0.04498999127218159,0.1430223917942584,0.035568096309147576,0.0010284499043495868,0.008673204067931485,-0.0023411940486540122,0.018703095125322262,0.00020256251604919273,8.335843875145828e-05,0.0007093441315223847,0.0027026913761399713,0.003883262103657834,-0.017040872761148074,0.00016426503766250013,0.0066900801709142916,-0.026613156018734145,0.04494727059531937,-0.0004662247095772964,0.0003398575867833043,0.024339258567542873,0.0370134151344671,0.1224229916371821,0.044603004963286286,0.0023434004623009153,0.011352858961440459,-0.020166331192567697,0.06734341425422215,0.015339142246356944,9.60775975328764e-05,0.007379762432063104,-0.037943559207429874,0.048992881631934285,0.03484681789923441,0.0019252284640326415,0.008380419270705515,-0.015852483781313993,0.051234851640401834,-0.013456214791481683,0.00012258797499118296,0.0009614330581454399,-0.05867026403827376,0.15578858667519005,0.09703268021563659,0.00015266615981234167,0.009948808693997925,0.01379687983144121,0.06916248101074868,-0.08071080353526774,4.868825871421333e-05,0.014086737463885552,0.012635065571876566,0.041914582633039835,0.001203181995313331,0.002857132702155769,0.003542548595593392,-0.005499632631401512,0.03052437511999281,-0.020699753780458095,8.962464919765391e-05,0.014469893751958974,0.0076784067842857314,0.03382694959941143,-0.0257195697775201,0.00016461487038235998,0.017960030224098436,-0.008532501020280907,0.035436798494992726,-0.00046771446372326084,0.00011388606005124498,0.003359917224374274,-0.032781889296089016,0.14873847736042847,0.006112366841470378,5.5393402597481655e-05,0.005664730969848626,0.03135481376181617,0.06464097150204222,-0.045124513219650844,0.00023649705918391608,0.002973029337824392,0.009737663628285695,0.032402855532839406,0.011740494217908888,7.472843030319532e-05,0.002484879906497284,-0.006159703458976597,0.06924977306707795,-0.0012151228407499197,2.2949473986615446e-05,0.012220187731592119,-0.020009443362030765,0.06060842089952494,0.014646647456352089,0.00011540138015092638,0.011215312945708399,-0.009995899927553523,0.03669785048145147,0.015814596693928224,0.00042934780172023247,0.0020008403991918196,-0.06369761015795473,0.3165130606837526,-0.1132301477828635,0.0001152665511440313,0.01223300594100733,-0.0006664148227368872 +2017-05-19,0.030389796748208877,0.19176523770905185,0.09712864692963978,0.0001675886089807079,0.0027281650829267057,0.04332179359455262,0.1546896872660976,-0.10024850317379282,6.719788341826255e-05,0.006772875284127902,-0.0024322627040255724,0.007037968771377812,-0.04490036320374574,0.0001598675610844918,0.0013929928725732253,-0.005253901987120816,0.004946415647575419,-0.09499633932045348,0.0003584752824517382,0.0006817128480877781,-0.009733877635547573,0.022816908948122466,-0.000939520718622555,0.00022321678331325452,0.0031978103209728947,0.004898215262622896,0.011411492722992437,-0.0009282233339037418,9.37221298369504e-05,0.01704362469691795,0.030341984328663352,0.11771125412199733,0.017958483061931988,7.563378734014809e-05,0.025569255787355433,0.011432076589495022,0.10908347657537147,-0.000302104340969175,3.593889906896872e-05,0.011109211284767826,-0.00047928225166992566,0.0003791116538962009,-0.006485539177568776,0.0009749200423541713,0.006827208639550639,-0.06154493264840689,0.14740567221455492,0.06444502981066674,0.00014599567538797913,0.006198827265770942,0.015892364503551457,0.010833901028883266,-0.0728941968488975,0.0007170146211671873,0.013506277135042091,0.00462401288939753,0.05742161021955781,-0.0881596417433576,2.399752532096202e-05,0.010316951548027831,-0.04208520663511991,0.12036308347917947,0.055135157523976235,0.00010386929805908106,0.019815239931033728,0.009629106667464317,0.06040355326930291,0.01016577615137437,4.4873023106537566e-05,0.002327922935454319,0.009094940978240347,0.006677845957756415,-0.01669230668091691,0.0026563571192443807,0.016349187465972657,0.007494376997653644,0.051679259445288825,-0.000265873233976078,0.00011933596852905826,0.001234858975370377,-0.0471446720735272,0.2653205136026486,0.006487373685407836,0.0002751503197490162,0.009725892498365038,0.05155557493445643,0.382395338931405,0.02128199895818669,3.797729257601194e-05,0.005501975992908854,-0.025742304622858942,0.15575987224681656,0.009721960696722706,0.0002723821542698896,0.027876842745326418,-0.03614049757138609,0.47331662739879465,0.0088277032181157,3.168637790365578e-05,0.017633852048008457,0.02124182372389327,0.22308730775008148,0.05866236276353186,3.1812562081060115e-05,0.00293711054955522,-0.015453223147351586,0.04630885328823981,-0.040656198878009024,0.00010749241118156069,0.011448685780637027,-0.05122066259394644,0.3216703813147084,0.04156588010581901,3.678125083966055e-05,0.020655091025814074,0.028811282272937028,0.08354583942313139,0.043149187127040654,7.645662844609445e-05,0.011502510387962364,0.007050849730580526,0.02780052667942925,-0.013449497378014983,0.00011596769654838284,0.0037851219682259653,0.0010656236205360257,0.00097581009600959,-0.08548812660858976,0.0006241860994115273,0.00802998546957526,-0.03793795746722155,0.14116629607834058,0.00041809839150700975,0.000113117275033302,0.010062233782759665,-0.007044681361724546,0.02274590879598036,-0.001331505324126069,0.0019878208226002604,0.005968543590382652,-0.00028066621405774153,0.002528042639322672,-0.05693185472305951,2.8548805183863033e-05,0.012452243931486966,0.0020862153915664444,0.005449711806267204,-0.04498553244101385,0.001251574997138659,0.02469089291634544,0.04195435948151343,0.32720310502715316,0.0730047177536576,8.538573516771674e-05,0.015212177565440436,0.012468111861927658,0.018018845786548013,-0.04532021305175392,0.00016331237998429336,0.004209169493450965,0.026258904179965434,0.038221245424893614,0.02757921360251256,0.0003943444000745147,0.010945230683424116,0.050310811438755675,0.20314092962903657,0.003644516173019786,0.001919615409378259,0.023115056828770363,0.0013773111867467383,0.004383220889470061,-0.05430052920368132,0.00010081591314942644,0.010427430649991253,0.002116800729325212,0.0028648894731343405,-0.006767669664073088,0.001836746820147295,0.013663796217943905,0.045060246651157584,0.13092666924023835,0.04158580067848312,0.00013635826965591798,0.0007019121414713966,-0.023986779815253892,0.05493047171859071,-0.007906179705780322,0.00017701863848505482,0.01705085575803665,0.009423914243637959,0.04089003606209701,-0.02815542584382504,5.6250677410840284e-05,0.009854853005098465,-0.03622068892759165,0.14505795612706138,-0.05018876621390537,0.002366645503656803,0.03689644903672603,-0.007214091195424819,0.03529265917290461,0.0016485065311511733,0.00010168053360577738,0.009325548795920647,-0.00174656170785451,0.008568580435057293,-0.19056667151941076,0.00014782089955480676,0.0026537607329007013,-0.006315326654759408,0.03208750475986448,-0.09211669805287423,9.309118777237059e-05,0.0019119216909685146,0.013134166602217973,0.05491701681330079,-0.09220066542064904,6.010948099874702e-05,0.009086660625407215,0.014754701875230782,0.030804449020916547,0.0009788403661799248,0.00023353199405706747,0.023288788141589016,-0.0013147127988513184,0.00496083276567468,-0.008805976700495094,6.590079896808591e-05,0.0072761077849242675,0.03892798511809991,0.4280566375248556,0.04400135051693644,2.346345569532816e-05,0.0006786381754189475,-0.00032076658438979605,0.0009960757812891392,-0.009630433202636091,0.00011256560334492407,9.679978018337538e-05,-0.017664292810351166,0.06756185156615978,0.031897203010815466,0.00041211904326949797,0.014109183759729235,-0.06417196870737918,0.31250431729878336,0.09054002270674291,0.00011761457334169248,0.02311638659979597,0.00011074707577861886 +2017-05-22,-0.007961921859467197,0.0509179306840212,-0.005101613663486791,0.00016536125107653065,3.727768811129326e-05,-0.03035381487639786,0.1348711369437629,0.03495743861483956,5.4001371396290946e-05,0.0008698938325090723,0.08870962812101058,0.24422795038531372,0.2388623123978303,0.00016802449483262034,0.01596249598300203,0.0008053714731196598,0.0008760793738640675,-0.01848614789170914,0.0003102563244950071,0.007746057976664166,0.01693724345019238,0.03860947829847265,0.012433698933992876,0.0002295337589334102,0.014602445147908249,0.0038012623857875644,0.009478097595521187,-0.013961821791367733,8.756960923726483e-05,0.004951975051059517,0.014723870907813493,0.05340987549377961,-0.0486577205449274,8.08891535290629e-05,0.022420456275207945,-0.014376364727786358,0.14159515601503003,0.0054960826999622715,3.481763758436771e-05,0.00021835542581530635,0.018999051962851402,0.014146076763124887,0.02200506997860347,0.0010357160509405204,0.0036708159700366057,0.02271432134099107,0.05119215961918652,0.02417405433158091,0.00015515229376692984,0.0013993490656269854,0.001098872668285832,0.0008224838282664712,0.0016819009523750673,0.0006530468849499575,0.0066918821395229085,-0.01061830858173205,0.16315391365697185,-0.1140969070084949,1.9394591464377042e-05,0.0029878207768083186,0.024994788700613935,0.06806970498264465,0.014011306130795502,0.00010908037924357016,0.009802264970479651,-0.020213370388306777,0.10705631056944685,0.005036723693532979,5.3148165654119416e-05,0.008627170506892656,-0.007876749120390613,0.0073747318318944585,-0.060202808937202826,0.0020831653973654328,0.005966240956238201,-0.021023545223127625,0.12490474531560357,0.018271992842180944,0.00013850936014263792,0.015128179311009028,0.025841082594008614,0.14761979767302846,0.007695555263554639,0.0002710655526116422,0.009374899801956719,-0.035667290271582136,0.2180279697328449,0.00914983706550246,4.608067812215759e-05,0.02498556541134545,0.0017700526539434517,0.01040117447295704,-0.002258175098536581,0.0002804727105012275,0.008827666575687437,0.05541475907540823,0.6484183306678749,0.0038057797054492385,3.546503533609385e-05,0.015019735149163414,-0.015518143687729353,0.15433069670673538,0.05603356392819842,3.3594575764206735e-05,0.007478485906800765,-0.011162724708660372,0.03262700637360819,0.0031036947138935317,0.00011020866521045916,0.008696591665540576,0.03621396917248703,0.30647986063104465,-0.00041806912017718686,2.729396071769774e-05,0.022011933126455246,0.005304804834873633,0.01714937399866746,-0.014593766806400782,6.85801643189721e-05,2.7576578583925638e-05,0.004174479951243939,0.013019069474117911,-1.7645571202355016e-05,0.00014661251059239162,0.00185653633909208,0.0506534014915302,0.04575374078536953,0.059590426929440846,0.0006327870293166316,0.007759306369752008,-0.004272441425979606,0.015796193883964874,-0.04851694740629918,0.00011384387526295117,0.012848869628108411,0.026237273128940742,0.09347914668769308,0.015882107892648538,0.001801453812262028,0.021922276297805965,0.05496014004000466,0.47923913957073405,0.055933879970648574,2.9490201919295e-05,0.003935134206986955,-0.03683726235882949,0.10187442884374366,-0.03307346696354145,0.001182206737399717,0.008554971781578165,-0.006712998976782137,0.044959436423592736,0.004234121276992155,9.943089889102145e-05,0.0028965243791744255,0.02295451589852737,0.030534213894474863,0.011537399672211637,0.0001774298889988515,0.01656705822577939,0.011900158809020229,0.01610511272056332,0.007295999267082058,0.0004241240522077487,0.006253402310046955,0.020635819537412753,0.07538908734402851,0.005248255031402348,0.0021216003414751172,0.00822946738025313,-0.009859049547207878,0.042679846036522466,-0.06636910306508964,7.411439631950613e-05,0.015039326798497366,-0.04135811578589268,0.061263632311735775,0.01844855660201625,0.0016781670668693993,0.0012378835446693343,-0.03669708526916789,0.12517051249088026,0.04857446667489314,0.00011615705087327768,0.003919069077213438,-0.05821412761087776,0.15839825811405905,0.06034942235988736,0.00014898356707502227,0.002847070400220645,0.01901973994353406,0.07773827543996434,0.011252511133291761,5.971502213743016e-05,0.024894669245828453,-0.004974852774452296,0.013684730671339643,-0.04791763862771107,0.003445577606821697,0.018647288202026865,0.0243622114236658,0.119553056329633,-0.03940443220227885,0.00010136700042346269,0.0004718154813636038,0.009937017530179108,0.04607854757302447,-0.019357805275275797,0.00015639326951905337,0.009474319625224218,0.006560800281116493,0.03667274712228066,-0.0023469649715664133,8.46178667590198e-05,0.01800623631212527,0.023200783537062966,0.1079304980102141,-0.04538793004040727,5.402637964443702e-05,0.016703543080274205,0.004914046657076275,0.009879919661781042,-0.05390347847364063,0.00024250196192982505,0.00805739951634798,-0.03062338520556308,0.13685711303684248,0.08424095717609319,5.564167545056549e-05,0.0055870219350562375,-0.04537946084604401,0.49584435466078863,0.07912626957063623,2.3612677965788422e-05,0.0020037679938388732,-0.005836270205607435,0.016821234509818605,0.004917368078248977,0.00012127924636151141,0.008560113583556711,-0.0062457481014763895,0.0253421265196719,-0.01651763928392168,0.0003884806401997789,3.4996901716490784e-05,0.0026459406079995234,0.013064843798443755,-0.0008308411813844537,0.00011599724266035365,0.023738548833054457,0.003636577527758008 +2017-05-23,0.01737696126804768,0.14200309911669043,0.0416299584524507,0.0001294084377618525,0.010122016298726813,-0.015865783738026478,0.05217393322105874,-0.04649327410406116,7.296565389641669e-05,0.011054315620859637,0.008357638170946704,0.02754626426525706,-0.010210476132607935,0.0001403518237001378,0.03679854084418159,-0.016604720418758427,0.019402477938083397,0.010223593955742264,0.00028882995035682996,0.010889191472923904,-0.0007742110256649471,0.0015233004447084133,-0.0032569447986478942,0.0002659325851002565,0.008587209745675813,-0.004396914663879275,0.010291398559998853,0.0026797831740167357,9.328683934884782e-05,0.0025135531178452505,0.010582763117726527,0.03388523546495974,-0.006044278977512859,9.163859509523601e-05,0.006342959358258073,0.035443659974220894,0.31476809187516114,-0.011894018356059619,3.8614149586603134e-05,0.013757371872190994,-0.009569280240249398,0.008240587056670521,-0.028314734132136664,0.0008955006555178016,0.0004220819155381927,-0.027907575876406392,0.059468453409838896,-0.003634721744320988,0.00016409575884525753,0.016015834159084977,0.006960231438517564,0.004922218495869528,-0.027023295820743497,0.0006911736151957452,0.011714668869699033,0.0010570405500507794,0.014960805629843801,-0.10299746993877285,2.1055204154347508e-05,0.007547364612958967,-0.052555480610201544,0.15192186016256579,0.05352685947439922,0.00010276584095012662,0.024604879089714878,-0.01010160628815068,0.05774040196784175,-0.0008646880898633278,4.924616923102665e-05,0.0070786611026478026,-0.004929052621798161,0.0038792147440032494,-0.009517307929968548,0.002478235680432828,0.009352528763451237,-0.06337822171363901,0.4179489566647374,0.13564153803689735,0.00012478687581831888,0.012842220868446202,0.0033174453896768516,0.019369916612317382,-0.0008541399425526469,0.0002652065605757308,0.01935275124150591,0.07766325924883646,0.4908734715771695,0.12798465537281573,4.4566343809373786e-05,0.002993607821945491,-0.0509853705828954,0.29152403907666696,0.03640129224389944,0.0002882424995724443,0.02348173917373328,-0.051518375501095455,0.6480066527616672,-0.005188586961269446,3.299232539034997e-05,0.005713946693030037,0.002858060515257468,0.02726524531675514,-0.016956117507575825,3.502222385369042e-05,0.0006962388391379996,-0.026709392445616823,0.08070333813110907,0.020109494275169896,0.00010660934284475463,0.02604001950621321,-0.017756600588876213,0.13425155541028228,-0.033296045873958374,3.0551523786312045e-05,0.055679923123881155,0.012221639986266693,0.03572962599195901,-0.0026960878299909113,7.583652050273237e-05,0.005479428314437025,-0.011212792350880633,0.03573331181913907,-0.0020622159847449185,0.00014347925269179193,0.005264265417606559,0.010889125384000543,0.010927934429382065,0.0005696659407846786,0.0005695481945429721,0.028684919091506052,-0.038865719742223595,0.15462227284714108,0.07671000516157887,0.00010579878272555801,0.0036561209046381926,0.018104446644609383,0.07007330445547137,0.004895529556568549,0.0016582569720873205,0.026216162946988614,-0.036243111287239914,0.32856115565494,0.019226352302721014,2.8365565782444313e-05,0.006537852433629272,0.04767489411574498,0.13313358112176396,0.03562667556919953,0.0011707748722397022,0.0034536736283237984,0.006877355904206209,0.05504240775170097,-0.018568010221380247,8.320505647944046e-05,0.023695159468263727,-0.029369483982890125,0.053407124035506646,0.0793859061889296,0.0001297903819454011,0.012814474060118063,-0.016680406462224243,0.0222997778343085,0.007120213248419706,0.0004293485560401242,0.006539486236319789,-0.05345728501790478,0.17096199328202435,0.11236003733390715,0.0024235817109805866,0.012515350207294877,-0.0008927779210197466,0.0030487588460450716,-0.062486540440087515,9.395301866042008e-05,0.003171920624474805,0.007331162159422292,0.008871755442125531,-0.00015387893164601292,0.002054189268616878,0.00832680489147225,-0.005519053441951771,0.019256526904810837,-0.031214612298031286,0.00011355406225338996,0.045178125569761446,-0.01619409338538548,0.05035300233109225,0.0034862931377260585,0.0001303741964484446,0.03309385802791005,-0.003115144586197372,0.013804417227536551,-0.018597559249827866,5.507747941026061e-05,0.0038410419758605967,0.052578524070321486,0.16241638428108812,0.031122877726187874,0.003068291456845125,0.021788927804758124,-0.016927600607298324,0.08192205404656727,0.025863541807020187,0.00010278627832427768,0.013415298646331028,-0.00542882611572538,0.03603544600351199,-0.007266056069098283,0.00010925386616858432,0.007070257090545172,-0.010473054974059317,0.05506848163612242,-0.007778724873596964,8.995368927135901e-05,0.00473675061869031,0.02365566177944182,0.13493783249213118,-0.04313430180177419,4.406043365342488e-05,0.005961082361430272,0.008670290684884546,0.016303618641427826,-0.00016040826519011107,0.0002592859857233637,0.033578947888344174,0.01801200229936155,0.0825803249523724,0.04355271313040096,5.42375148605916e-05,0.0027121500705079037,-0.008768188771513039,0.09795333202032085,0.0010423973624377177,2.3095212521786544e-05,0.014473264981423758,0.005747122700907476,0.01918684308914955,-0.00454447108568062,0.00010470222480855904,0.004931466273185836,-0.03863699236751675,0.1401896392365371,0.12688863130475184,0.00043442555528699835,0.0033042157743874458,-0.02238596729512099,0.10099021125982327,0.004897350363595012,0.00012696042870859832,0.01007473386056312,-0.006721450158652715 +2017-05-24,-0.021337101798002408,0.15287095630199737,0.016715442697345127,0.0001476036274806484,0.005509511974079372,0.004590835949104418,0.014261932275847282,-0.024591295641055277,7.723673923418819e-05,0.00958351595393263,-0.0260482758089721,0.08920559361285627,0.027386802548340115,0.00013507783730855338,0.017523304437411152,0.011428878810280731,0.012544749494534012,0.020022905275306306,0.00030747477369467985,0.00632716580760906,-0.04446124259134398,0.10622951627755246,0.0786776964039996,0.00021899498243246207,0.02155832249389827,0.00201665510959598,0.005448908117102653,-0.01306365009534201,8.081070326432779e-05,0.0015140094089839474,0.001493016802706317,0.005988597279240154,-0.03388802463119802,7.315254533068939e-05,0.0020482382803684637,0.00017026486586570555,0.0013660730596270808,-4.776119482482423e-05,4.274149693639451e-05,0.003870111261363226,0.03443646348181324,0.029663558088914244,0.058837999597271165,0.0008952412570342824,0.006463127264029697,-0.013164946264633251,0.032049811175011815,-0.008135936586824743,0.00014363342019552453,0.002867053264028983,-0.020355317640339987,0.014951203109155793,0.005375520801656671,0.0006654663514492813,0.009970224451842622,-0.008706892785299675,0.12867727810877133,-0.17837489587527988,2.0164345046468294e-05,0.0001981481162058637,0.0626069856553919,0.14705785066915555,-0.07608344371139993,0.00012646944651476696,0.002790108060596915,0.0037888692596312677,0.021527778539122716,-0.0385413057326657,4.954185008704117e-05,0.0036625909349004295,-0.005313816849339201,0.004553403065473468,0.0006823318467347306,0.002276111109496849,0.008900548663819348,-0.016411800815040668,0.12313184080417426,-0.0007044645908052557,0.00010968265967468307,0.0015352722145362961,-0.022997223279497256,0.15257041186905437,0.000679740773676285,0.0002334066982069153,0.01779174085429071,0.02923904079151299,0.15317080482880935,0.015157185033347318,5.377099622633222e-05,0.022700995367061445,-0.05523201047613518,0.2933374346417774,0.04670041151395632,0.00031032028821235367,0.011623822864615274,-0.01737962195668739,0.21453865097513342,-0.005915131600726764,3.361746885727774e-05,0.042200535965172606,0.012733270101294065,0.10490309167552311,-0.0008467218083470982,4.055396974459368e-05,0.0010811040950388594,0.023145189045760503,0.07673886999793039,0.013044100791873889,9.715565597495867e-05,0.009945398793937908,0.05182254575127538,0.33419078516978595,0.023365936974860262,3.581926326983716e-05,0.006962141017475915,0.015315760256786095,0.04108176767220637,-0.00598434793873445,8.265456025259521e-05,0.0019908199698085065,0.010451615426544141,0.03593656116215045,0.021964225034443875,0.0001329828084503135,0.00045346963526939803,0.07119062442641737,0.07243369819759976,0.06405847109755644,0.0005617689152032458,0.036014433784779476,-0.011056847631544573,0.038343199763622195,0.00012780084831286756,0.00012137492700560713,0.005637120821008229,0.07811355451757052,0.2567362793123739,0.11283852696454076,0.001952802544481812,0.010509999591410461,0.02188636723485424,0.2218228612211995,-0.0011793466117363718,2.537170040555633e-05,0.03711905872122377,-0.02477897813934439,0.06771090272582071,0.026071283349829596,0.0011964541445112528,0.002341835230659276,-0.033601563413814,0.26515552728948866,0.0696142151851145,8.438872849957096e-05,0.005621730321448881,-0.023712549856375786,0.038121658212554234,-0.011719981223293548,0.0001468087226610882,0.0035051755438309283,-0.006793304062626604,0.009646473875725259,-0.0030841532215097234,0.0004042186757855285,0.019616735242968704,0.0009731811930378526,0.003315172872020075,-0.0029252515352863663,0.0022752958187731644,0.014139128597071896,0.02049888189916066,0.07061111027334237,-0.1415778607379429,9.314241699474258e-05,0.01657607767215745,-0.041071827255724634,0.05891840046941863,0.028440604543198668,0.0017328870991394371,0.002179672982807148,-0.0005621340648579139,0.0016988165215874157,-0.01674921555619442,0.0001311020445094425,0.007601315517957599,0.012686257287267777,0.030242041825014415,0.006623444775050389,0.0001700524061660054,0.011814300809417339,-0.011761797126460966,0.05059099514325679,-0.0032456441655311303,5.674327356816799e-05,0.0076244501747217835,-0.0023388260245912366,0.0076768590102658605,0.0006429678286645157,0.0028875692678257147,0.01268268282434215,-0.026970954918050623,0.12498529281442095,0.046289113268870495,0.00010734405123154965,0.004500996844269523,-0.009949074267047336,0.055802099683008664,-0.07795600802356403,0.0001292983302846008,0.0052831761579073145,0.017626126906045838,0.10147683025293347,-0.03304129374744276,8.215588878585558e-05,0.005458656038495599,0.005175973605967816,0.024656745879491546,-0.0963878561191707,5.275986659403175e-05,0.013346750224051789,-0.057174625319905095,0.12187041629289379,0.0402708575640573,0.0002287359497227789,0.0014567955848063942,0.008314706885118888,0.036002410290996455,-0.018127254707437063,5.7428800158336284e-05,0.001499507682435303,0.029493159110530614,0.31271948837614605,0.009954820470490896,2.4333110725466084e-05,0.009235310423206106,0.021138932437430022,0.06339212187618606,0.058305830082516226,0.00011656192910649672,0.00819218827061319,-1.4284970612019847e-05,4.7627441342572016e-05,-0.04558467075693569,0.00047277017538310844,0.006872135376551054,-0.004434275102402327,0.020976503190631643,-0.008100558909051429,0.00012107691222049894,0.0025766084498952597,0.0012613875935880078 +2017-05-25,-0.004467823900652493,0.03351548390367845,-0.03377577490583807,0.00014097338784953967,0.014631637834185921,-0.016219817767899825,0.05985412217806936,0.008458540946402426,6.502231554148139e-05,0.0012581606612470898,0.011429757841438456,0.040462463135839004,-0.012529979183472813,0.0001306718130776611,0.00993764304904621,0.03334458891579371,0.03503492081658372,0.09180515474005474,0.00032121223829226285,0.01455294716948001,-0.00846597782448253,0.01523558440387061,0.00029843645497566973,0.00029074736093165034,0.018948937872658164,0.004107581027529523,0.010047418058360099,-0.04674479133769964,8.926442381852958e-05,0.009132296352399122,0.054018046098991676,0.1895909673451281,0.061458965558334105,8.360092522850882e-05,0.015034168096538035,0.012843289316343421,0.10888638607486367,-0.12190390958276269,4.044839528730081e-05,0.0021698656643594615,0.005467791743178923,0.0055191943086188855,-0.024584168787599437,0.0007639783779252124,0.009276445187264344,-0.028955708155928555,0.06572190223995866,0.007662077272237383,0.00015405860182439056,0.002614086777853222,-0.004427559532609734,0.0030854246672101706,-0.01305207383832987,0.0007014130153781471,0.019344319740762932,-0.008296747040904516,0.10380110249705475,-0.16227398132433668,2.38192823358944e-05,0.0025379115727307746,0.022241578080463467,0.05376485268403877,0.00713097735667707,0.00012289046164438386,0.0037215295183348754,-0.01648619572504566,0.10591197182917679,-0.022625586332549918,4.38164528245627e-05,0.003802879173194215,0.02517411424430467,0.024709110498876287,0.004787436197935222,0.001987101539327832,0.013733612399707022,0.0300863246089178,0.1916710713494223,0.016748749782645508,0.0001291708966630769,0.028110362064742055,0.011666735191937661,0.07505304737080878,-0.011910288939311474,0.0002407072891456635,0.00316871672394272,0.05390795041091776,0.26702448557033004,0.04275918150214756,5.686731050613176e-05,0.02050085663582646,0.05320641274360823,0.2859888790989159,-0.0498205074732924,0.0003066208201769367,0.006172395337507943,-0.042133316735448005,0.5756839580957642,0.020903813335080998,3.0371885346693593e-05,0.00563420077662302,0.02781483361682101,0.3152159086366724,0.09749132662849383,2.9481531995440896e-05,0.004714937895511452,0.044216280794914783,0.18164777662925954,0.07661602882528001,7.841061838163041e-05,0.01026816871235487,0.025697029602248705,0.1582996421934078,0.007912451808103937,3.749690026891205e-05,0.003250393552098843,-0.0037602215676726045,0.010054262900229734,-0.046642137673271224,8.291642737728813e-05,0.002875414790290733,-0.005340573972996739,0.02218038550084061,0.01976291461712029,0.00011009496062991064,0.0013235082987470765,0.07175997031489478,0.06865886433405499,0.08765398768802869,0.0005973944673473017,0.018548254767353015,0.01648463330803679,0.06636877842670429,0.006782705631177825,0.00010454456883930264,0.010423541869958435,-0.03192320865991493,0.123037682135187,0.0032324316940587237,0.0016652811659681483,0.0236976669603984,0.008549560966873504,0.07352867666286113,-0.016971690114364592,2.9899867178277092e-05,0.004413652518643339,-0.05684956926481319,0.16367809823166676,0.10062428191226201,0.001135554226127592,0.020507233606589452,-0.011337376767885102,0.08632515600289756,0.008536576416447983,8.745826366007217e-05,0.004900187999534359,-0.016853205357241344,0.03151809559402925,0.0230033196320773,0.000126202492002706,0.001534986501240925,0.007071283231468619,0.00908662137819479,-0.006903952248772931,0.00044668329830375173,0.011618631949242356,-0.03689417862341178,0.14678228117235118,0.0431260898004315,0.0019482045547734917,0.022888969759022004,0.03040865989412118,0.12124582624182918,0.0228492351032457,8.046756403040173e-05,0.009122485141184456,-0.05174190790122053,0.06924154631521637,0.047352176217155366,0.0018576028655757676,0.016937936967546564,0.0050090321199389495,0.01788259576386684,-0.031957033836159804,0.000110978613230686,0.009524899099442631,0.005085934664285398,0.013204199398636348,0.0018726177394006503,0.00015614176304680095,0.01391007763866792,0.019173503660496836,0.08297448266530394,0.012598696223966054,5.639892841460047e-05,0.012104337913273176,0.020502795618648807,0.06305961259118138,0.0030482165128999754,0.003081625378812894,0.0026903964446674325,0.0024366178831742562,0.011265180837560637,-0.01065514600331215,0.00010759444018904536,0.03737716780107409,0.059623310037490274,0.3489305962087375,0.13936311336030996,0.00012391897556563605,0.012603204210415218,-0.0141184723439096,0.09533527830143952,-0.0009558217768114168,7.004590769317632e-05,0.009151937660469355,0.007344932916841867,0.03312453463518877,-0.006814497442526422,5.572953802014412e-05,0.021590154022342684,-0.0050501515228449515,0.009322532729899236,-0.016364011235247153,0.00026411914701171275,0.006383926827601832,0.03219668750768528,0.11701747532160262,-0.00025520360761343327,6.841870416344445e-05,0.00905904792279769,0.03525357686271242,0.35028999939325095,0.022573197747097123,2.5966100542203867e-05,0.015759031127118527,0.027079222667146883,0.08277184725589104,0.07560826963147738,0.00011435693590118315,0.012044352722739106,-0.011197305107277832,0.049801198996959915,-0.05529126844601002,0.0003544065047110553,0.004990569687471921,-0.023163104603492645,0.11142532066851935,0.00812043873837908,0.00011906515229761281,0.007126184473630265,0.007611226254129578 +2017-05-26,-0.021717131340855317,0.131306977279098,-0.003460460709625098,0.00017490460254790958,0.002312694672698165,0.02260530255537268,0.0798194453549229,-0.03903118434049637,6.795354924306182e-05,0.0028398083576749366,-0.01582883816060765,0.05276400076046201,0.009469041307486855,0.0001387741338265112,0.004525210457546561,-0.015407967728524888,0.017218140182432805,0.007656589641152142,0.0003020139317084231,0.0046195943255180165,-0.028645232976012312,0.06882835081777378,0.02414897942653968,0.00021776233638203492,0.024690672521527075,-0.028039383746355232,0.08145882372450647,0.10209685981646788,7.515832101589002e-05,0.00961333894039412,-0.01488980445988651,0.05805497441982056,-0.09256838835032175,7.525570205249185e-05,0.01038302475617193,-0.006486107761996088,0.056178973673090576,-0.08787217629392141,3.959213972796804e-05,0.025971511992421505,-0.002468325545831914,0.0022538660237535336,-0.09105785450264373,0.0008445378684997379,0.009403082458439849,0.016256170838744716,0.03694024905112259,0.01481661683513385,0.00015387934249647454,0.0016933143069763818,0.008004294160223437,0.006461703689898338,0.0022662036304928815,0.0006054807775630514,0.02162888957569797,0.00499998280007726,0.07306731723392101,0.03223959231388562,2.0392390447901116e-05,0.000885664680885308,-0.006838612511826296,0.021848889018254762,0.0017088704708013663,9.298002865838744e-05,0.014079561911462144,-0.01644085109072093,0.07950086263192747,0.015529392595801385,5.821223489609691e-05,0.0038405052290285333,0.004504399040475248,0.004058856169537178,-0.024271087731476265,0.002164492912188178,0.01887273307262409,-0.06762658084222592,0.4868688820122923,0.10035519650974419,0.00011430297139876662,0.0004978403568583488,0.016169985243547767,0.09094427269058206,-0.014425165466893567,0.00027532300524535933,0.004340647632735439,0.0028150482757147125,0.019578306029413833,-0.012551364021466073,4.050155431637886e-05,0.03218478628917637,0.002984753245236581,0.017157450686841314,0.00026337309633583277,0.0002867097626363255,0.021436585559812805,-0.017011921157883404,0.22329589276043896,-0.010639222982292494,3.1615704060756725e-05,0.011482971448750098,-0.014702500686509162,0.1475668514941062,-0.07304193789146687,3.32877243295192e-05,0.00900156192609506,-0.014117164658685406,0.043982057087304086,0.0076603380964750615,0.00010339384785823236,0.002220783830714103,0.03427930791103694,0.2667949779740276,0.013665332439682472,2.9678829632476893e-05,0.0062404628801963884,0.013590860702421962,0.03500969936087015,0.0003375925361975326,8.606686067879589e-05,0.009652165044692136,0.0003942791263743138,0.0015980100287488648,0.0003853571417308477,0.00011281656716594705,0.00011134031697213054,0.07171463167631535,0.0649158428037229,0.06849545099466574,0.000631440790804996,0.014767757189150518,0.008640800425637796,0.028544631261201343,0.006703759514279365,0.00012741352950956008,0.007158182676324435,-0.044427740293280296,0.16694844290156902,0.031838340739076126,0.0017080124277801519,0.003485905288695786,-0.03580842017126554,0.31287156831789276,0.0433758800660593,2.94307450774683e-05,0.02388151521524136,0.0024016870630303214,0.0066151527863697185,-0.07723123437808893,0.0011869920471320402,0.004211764728549391,0.0005995750634736265,0.0038233179983809744,-0.0003727172138700297,0.00010443084306788047,0.00037809106185336043,-0.019085601892494485,0.029141750071472936,0.02867240097468736,0.00015457370533664697,0.0002904557114889617,-0.00388115958253629,0.005488515204968228,-0.0017766786322247412,0.0004058920473135501,0.005880089828622039,0.009954138413641626,0.04381637987515293,0.0010747334026000046,0.0017608303832553475,0.005608770827478456,0.0035268105584636703,0.01302435040151527,-0.05493674496909876,8.687932357658643e-05,0.005211752707739114,-0.04266275576133723,0.05996190150656587,0.03058275837924054,0.001768685844383838,0.002684721026690616,-0.019212247977227523,0.06410412460660037,0.018649393650154777,0.00011874306264163904,0.022567090081845827,0.025057477328057007,0.0645064063625002,-0.04567320115138269,0.00015746892912490428,0.018893013198660828,0.011728221391748,0.04511162303934713,-0.024522763310089013,6.34537989115481e-05,0.002643706750730121,0.016900370814895264,0.06819018995978908,-0.0029994284503126324,0.00234905070547053,0.013434653379563866,-0.025900583602987855,0.13313151896242323,0.026137359854847664,9.677634892762428e-05,0.009227943688149024,-0.0019296322184829552,0.010059119331243916,-0.05209310136930161,0.00013911545034605557,0.009854835385591848,-0.0263083846427849,0.1609545184848919,0.02144039613337537,7.731071831185359e-05,0.0012461115734037783,-0.03311438491815755,0.14812978236615523,0.06509745288088131,5.618517045944273e-05,0.019739435423776906,-0.024187441186904857,0.04603351805465448,0.020932378350634502,0.0002561799602022898,0.014179828435657607,-0.0034578009730258812,0.012924271618006529,0.0012365761847449755,6.652858575387644e-05,0.0010122716055278574,0.021904418346744857,0.2461926140146169,0.011022169739526865,2.295556525359745e-05,0.02672126022163705,0.006776610377034597,0.0247355950420118,0.001538749151642663,9.576330338273259e-05,0.0022886651294678146,-0.01801779615165776,0.06569748366086808,0.019707497663199895,0.0004322956888470919,0.0036328109851122134,0.003912830081457612,0.017775812380539383,-0.0010407373238213139,0.0001260762628197407,0.02078669530480851,-0.004999574404581831 +2017-05-29,-0.007562744856346635,0.059562823773910076,-0.0011695507482555934,0.00013427363745662798,0.008671057414447446,-0.005359500486414712,0.01646135670051036,-0.058826169549412465,7.812125572224151e-05,0.007548979211407028,-0.028905127766625606,0.10182050367895672,0.028717111768573025,0.0001313218090593726,0.015246027369351541,0.030680329097949932,0.03558765423326744,0.027153346254162068,0.0002909567974413811,0.00039811905479926685,0.0029275962472785698,0.006444892913360005,-0.10679948937899615,0.00023768033365897538,0.0010091505674314114,0.002969525724414058,0.008714858339045369,-0.014145726280718186,7.440009663914662e-05,0.0011420520065994271,0.007563165611295357,0.029149117780280516,-0.007073475344388704,7.61321422578601e-05,0.0017707947890478375,0.02492093393492974,0.24042792212097613,-0.07685711713798767,3.554495962647816e-05,0.006677330239859251,-0.00446927426996264,0.0031904991852275888,-0.026973476708272725,0.0010802472161725815,0.017365126627107024,-0.014627558797022128,0.04309338600272621,-0.22836181149689663,0.00011869245680470089,0.017105545278643105,-0.002851031507737659,0.002648146153273856,-0.22436654283953758,0.0005262406888625584,0.006451272225961556,-0.007178987789585683,0.09791725120923837,-0.0021239325035717405,2.184875983584416e-05,0.010474316620810518,0.018588917926427837,0.05366439521060681,-0.015077224953696445,0.0001029008372729551,0.015607118576064047,0.00400898938376002,0.025965777770867646,-0.017229714757612247,4.346056707146426e-05,0.002988464189226008,0.004381650787148768,0.0041890216482734395,-0.0002400375573678658,0.0020400843751487625,0.012783641634941069,-0.06027622452410124,0.445656368845255,0.0582236402846095,0.00011130073500217384,0.027983202750458604,-0.031726622676877474,0.17830945916069532,0.007802694908753152,0.00027552289482179245,0.026464816576359948,-0.011672586902651704,0.06446155224966177,0.003454603672841939,5.100671010016035e-05,0.006513888642947092,0.01937406219344904,0.11036882442796613,-0.0006546004009103152,0.0002893084244878307,0.019895606131507117,-0.08772041505705577,1.1718813310530591,0.0034868072079966396,3.106327729203307e-05,0.014350874320678605,0.003947568097236258,0.03827835705534714,0.0010760216517348088,3.445545984585686e-05,0.006437220753586589,-0.004556186318842244,0.016054541119050532,-0.0031909070778987168,9.141686729228174e-05,0.015065270286068872,0.0068961297225413705,0.047035366579254334,1.0712413435935704e-05,3.3866729995112146e-05,0.03119607184503853,-0.006621896681319746,0.0200088967752804,-0.13621137474186604,7.337306124421737e-05,0.0025780360530797087,0.005093755650968184,0.019713138239209577,-0.0003627175900110416,0.00011814924100771846,0.00155508228281457,0.024654153679377233,0.025892646506164893,-7.745278482308192e-05,0.0005442384460393951,0.0017238395698535298,-0.011573364763706155,0.03773928154144059,0.0027036115167551455,0.0001290779389612024,0.003342841711391422,-0.003969843747669738,0.013941571325992557,-0.002472101552572137,0.0018275987951619462,0.0067697013188557295,-0.009414566032524265,0.08834336556831934,0.0009731046001534054,2.7403659387736895e-05,0.012976880106629729,-0.0013472075668967938,0.004097648060855291,-0.0073289433578029245,0.001074907587086148,0.0011409625038622528,0.017808300922641553,0.142701588896271,-0.003280997210403813,8.310350099871924e-05,0.011536668249292637,0.012039822599331436,0.01919141498872596,-0.045032311424888914,0.00014806706831401378,0.008968362947884303,0.06181085907996654,0.10061563939671965,0.2378641709552638,0.00035261696416649977,0.006439934904520148,0.017609979735479984,0.05986590198996346,-0.022023644162165453,0.002279972805890323,0.0040485620477274595,0.03188952129299903,0.11731393057662749,0.06015752745919859,8.721451787787492e-05,0.00420307123649717,-0.034635649430974566,0.045213600391872256,-0.07293480219879699,0.0019042827591053452,0.024330216599728612,0.026914361810360294,0.08774556171388703,-0.06391414986440186,0.00012152761205014527,0.01436971593104918,0.011257995304983396,0.0297625134426205,0.0026717407544956484,0.00015333872038350956,0.00044912290852978725,-0.028042317077200462,0.12762750574412215,0.0072574921666662935,5.362700450597609e-05,0.009432463985072716,-0.028572611018158667,0.09182968341576754,0.022992471052126737,0.0029490687674155213,0.009858717626369857,0.0009288841835874374,0.0044838881376051045,-0.057483532293436716,0.00010304985127702345,0.002620764978901936,0.018745894162216416,0.12158664869788681,0.017305536361640964,0.00011181010542564163,0.0002582236332464708,0.03197143236904165,0.18498551864599203,0.07076311610548416,8.174723290060129e-05,0.006681795291559611,-0.02117686147970893,0.09185955502909574,-0.05696458282221281,5.794082216047021e-05,0.012562432343933155,-0.019132583228663406,0.03824336001636817,0.013457370140671297,0.0002439197484207454,0.004639037031151028,-0.012960348752151676,0.05767548307206624,-0.014053209885792842,5.587786747800338e-05,0.007758366384297125,0.03947160287110968,0.4179397026930702,0.028218578862193016,2.4367019940691177e-05,0.019068346827294802,0.002677355623079523,0.009050564181337548,-0.0021738579028613776,0.00010340448423817975,0.017577362820839933,-0.007133732800302995,0.025226659679878846,0.001704911291311749,0.0004457435432453712,0.0073907840534674805,-0.01272757070392096,0.05480724728902449,0.0014071581457379208,0.0001330084781027702,0.010118027727191756,-0.0009360757126976915 +2017-05-30,0.01975829022684793,0.11580847581767913,0.04543423486994543,0.00018042453660670158,0.004633722564309493,-0.028558441924811117,0.11460419183585716,0.043706119274447494,5.9792200027780275e-05,0.007959193093660485,0.06139695895218904,0.2066928012469517,0.06869243568033069,0.00013741011845644447,0.016163576108212417,0.0066811185655199735,0.006725219033861418,-0.06034827053874616,0.00033528228052245233,0.01047897955388789,-0.022153825369797108,0.0471814960916825,0.017958906592888825,0.0002456828222558867,0.0035374108835609756,0.0015937953347724269,0.0034480087141032746,-0.012486420083316518,0.00010092783012535342,0.01212785308064441,-0.054498921167426564,0.21931196240585277,0.002059584269723986,7.291475813018924e-05,0.008257958654568437,0.002447062794565004,0.01641402659072099,-0.009602190727019642,5.1124443758922485e-05,0.0028916656860989718,-0.00044345529639201454,0.00035037836771916576,-0.10277878666197814,0.0009760169227729223,0.00032844239278381564,-0.06734270104207145,0.1709225653747512,0.14727938528113266,0.0001377694787800435,0.0049138718502190325,-0.040216832474703416,0.025724246085950635,0.24720214298189144,0.0007641692623111594,0.013287842521629819,-0.0006923639312278831,0.009881093155177148,-0.023246778263117128,2.0881045077555602e-05,0.0031972132080340795,-0.04067695273474204,0.10397391953275169,0.04088611947057748,0.00011621843761191214,0.006112857043256356,0.0065533922507581355,0.033017748144652734,0.011624506110858118,5.587023925155552e-05,0.0022798709529803607,0.0002440681256376936,0.00019321675488417737,-0.0015771332230370891,0.002463708119143716,0.010689554183424963,-0.010418489842759992,0.06119521026238507,-0.02050212546813381,0.0001401004238275371,0.0067419490961474265,-0.0024308061755742875,0.012473315868542521,-0.12395916726581371,0.0003017704028178462,0.005488889344569254,-0.030994402639736587,0.1979002490593639,0.016474743688040413,4.411617855007626e-05,0.0523823142958104,0.019486100970675595,0.10340157653307118,-0.05708143664008475,0.00031058794531345146,0.005508118439590181,0.0005879920360943779,0.00883819295073879,-0.03648106624402557,2.7608206621173757e-05,0.0038303521916662384,0.014929423886987038,0.1778449605030787,0.025454049518073923,2.804679206816033e-05,0.002340936270537782,0.007654846432374686,0.024116568098786272,-0.002679002333428167,0.00010224538924693957,0.015659689766178778,0.06406997466069167,0.4002853167350763,0.0514900656807545,3.697236813867719e-05,0.022474160512851067,-0.018529400021661785,0.05761480438533142,0.06228953726962376,7.130248201866517e-05,0.004369993463624175,-0.0237243934529696,0.08135850520070603,0.2000933906303361,0.00013333395233103867,0.00758603729806795,0.008893955162469307,0.007790207526323591,-0.010132045798543937,0.0006525615335456603,0.0028708679450025034,-0.009011034990790003,0.028882928385104156,-0.08512775488153508,0.0001313165492456509,0.004634285316371035,0.02256458882034636,0.0758529395941434,0.0010996220321810254,0.0019093000446892985,0.028384264440044632,0.017009202172873637,0.1453853847198623,-0.0247573561411087,3.0084679451549194e-05,0.01655214206232395,0.04237848151669762,0.10773638316403271,0.0448993485667071,0.0012860393857686426,0.005053513804889396,-0.0038839902307725737,0.023714941739574863,0.001685226783845523,0.00010906407241420214,0.004994693538665427,0.03068199837891769,0.05236523572829988,0.02974037635491588,0.00013828846819713222,0.00522678009126392,0.004037302332214176,0.00593689798793374,-0.007460504108319617,0.00039033329690758254,0.002563260219146723,0.010732156417071512,0.045762842314063426,-0.00019516019768166644,0.001817708944939986,0.004782356281915692,-0.03131291796547243,0.12940364125159753,0.006130784191878559,7.763676194384825e-05,0.01556829092696973,-0.03118832517677421,0.043976832892853486,-0.005394104859988458,0.0017629715184276802,0.0027522989034301946,-0.010916043838896864,0.03580206804335795,0.004657224241304314,0.00012080174117009196,0.002359858103816859,0.002076416535270082,0.006229160787118485,-0.008387562691290667,0.0001351279890534085,0.01527607258366547,-0.012766097386459004,0.05715785202346257,-0.07318522235501844,5.4512509881465977e-05,0.002500880786173232,-0.04577304327516074,0.17812518066461788,0.04043651478953753,0.0024355807231064663,0.012383360772179865,-0.010752296618911132,0.061800503135296385,0.009164110465414755,8.654655720505145e-05,0.012897760264670006,-0.01105105369732915,0.057502096823018406,-0.014643650465489117,0.0001393736879369025,0.015928725421033015,-0.022298729880907284,0.11551740476088793,0.00870667643175414,9.130223356910427e-05,0.006586633947486785,0.06309212832454468,0.2952567021677047,0.13754813571175753,5.3706000087297374e-05,0.0148730178130464,-0.04428376596519163,0.0827686532129064,-0.06369986891248465,0.00026086033786123895,0.010743293343530566,0.007537833926482414,0.030677965222892834,0.00920965123087981,6.109904047341702e-05,0.0002111335236445683,0.010827982524923244,0.10940686105762779,-0.0099177224432067,2.5534906596444628e-05,0.019969498367147776,0.00847166851219016,0.024122818439110377,0.002870244511657131,0.00012275801869904805,0.0038640431871972396,0.0010281679818560261,0.0037164170341309664,-0.06282285036198318,0.0004360814412014538,0.006552288114026627,-0.006663145346551597,0.03510165521570216,-0.03460917333732878,0.00010872351555314723,0.020301473966650063,-0.002563013861606668 +2017-05-31,-0.03972429987647254,0.27426096136974865,0.05090173311081713,0.00015317180902731293,0.0076600062431867585,0.0019353098284652663,0.007440475860361162,-0.0009018160075409524,6.241088151314593e-05,0.02115959487619562,0.03085319580282233,0.09870023858151493,-0.0012410721358849662,0.0001446036173906928,0.0045696706256435704,0.0005493537071443942,0.0006374941285124085,-0.00045619080053854353,0.0002908330291706841,0.01079303574859998,0.011845249044533808,0.027500789209713414,0.004255281491247671,0.000225370366612316,0.00617843211495681,0.025305912774781853,0.07589012215290133,0.012435766507027898,7.280873653544122e-05,0.009032642429649412,-0.04565883217082049,0.1868279668674519,0.01925180074091421,7.170885148708687e-05,0.00885685336865367,-0.0020445268133862547,0.019276503009926154,0.0027310022246993214,3.637166434925867e-05,0.009958705461632007,-0.011080152158515124,0.008383028682067079,0.011432651559539079,0.0010192707441349807,0.005298480957834349,0.00823928965816144,0.018652492099818153,-0.013602143086315313,0.00015445955977933545,0.0016605683449503505,-0.021007320175321625,0.01541140287210046,0.03865760649019058,0.0006662739588681204,0.002493223425033895,-0.0026618780388196085,0.030811041328248124,-0.03857492110163619,2.5745691804636978e-05,0.010011373184165557,-0.006347797273709538,0.018025930334931425,0.0001964919748633215,0.0001046107698161888,0.002811778718644541,-0.0027031263410296808,0.015484446458378667,-0.001738394011995623,4.913969744919024e-05,0.004707913303628352,0.017178690873654347,0.016787939216582223,-0.013759645149128743,0.0019957937083383555,0.022439699974016344,-0.03202158902970487,0.21939725050120162,0.004584263273387384,0.00012010575193477579,0.007386353073884586,-0.04207271331211548,0.24672596834207064,0.021853626970657087,0.0002640546931492828,0.03260276153153448,0.04093902479671249,0.2564595605907219,-0.037195165236372,4.496551329096272e-05,0.00937867314853127,-0.001511414410558587,0.008590322942031912,-0.00024252984406610145,0.00028997521242331986,0.011005650180341647,-0.06723007352267414,0.8646934517089134,0.05715226301682978,3.2264998360313496e-05,0.035423649470159226,-0.0069688648086758745,0.08574970749808669,0.009616036634424847,2.7152579964105302e-05,0.0020808736673480835,0.03075178778806439,0.07778542485555835,0.019282114142026355,0.00012734881164673,0.0031306633964173543,-0.062078068809830377,0.4517324065360529,0.06547225692711417,3.174309923609138e-05,0.0409125879831041,0.010893800490044164,0.03180248630932472,-0.01926025483729262,7.594439474913922e-05,0.007005568759725655,-0.0024289617693410734,0.010553821930153504,0.002204573581634769,0.0001052348321354279,0.003755486525055681,-0.04412120606845354,0.040924844227850754,0.02886321791288056,0.0006162201592385824,0.035285761221886876,0.009094315419774467,0.02731002129316003,-0.058230957303588356,0.00014016319324045126,0.0012868577501691694,0.030714781766767604,0.10295731065054724,-0.015581045827049373,0.0019147382750859664,0.007472296099917798,-0.015910291254401493,0.13442215003190613,0.011864687426207072,3.04361340165027e-05,0.014255192606375615,0.03740531994658439,0.13832046970046602,0.024664434785538134,0.0008841341966495281,0.0009960005352630669,0.020981258369908187,0.1350844066040858,-0.008066012701312339,0.0001034312934433994,0.011517848014590536,-0.02594248073162371,0.040339516905978194,0.03585913280033401,0.00015178407076819206,0.0009307388993382531,0.0037475363095538024,0.005457409075238795,-0.0009074827754929969,0.0003941515642269309,0.014918065217565795,-0.04845356139439498,0.19943867129789222,0.06819578151628714,0.0018830709029362294,0.0054113231891054,0.009471672786398842,0.036961326314333215,-0.007790012580245052,8.221849251689953e-05,0.0024453487689357844,0.009426994844878824,0.014777209602684912,-0.04204693560121091,0.001585835106783928,0.004337087876285438,-0.02735734746053486,0.08811342324670769,0.02628215309056463,0.00012301213289516458,0.004070415984053412,-0.012432536624131478,0.034590198464749894,-0.03610902839057298,0.00014570252212950732,0.013154388591453065,-0.021393181217076524,0.09273552106858184,-0.07339838393780186,5.630450937481726e-05,0.000892477869248874,-0.05677141552447465,0.16347516768499862,0.05713404738832962,0.003291516142936748,0.00018743660839006052,0.024843258069184686,0.10238046447710943,-0.009432342215167006,0.00012070688040171371,0.0037056008695023376,-0.04523311849774714,0.25112814612069917,0.1745451448621009,0.00013062368278812933,0.00493410385604802,-0.003525668579940381,0.02093792286023707,0.0006379826363432571,7.964464642676445e-05,0.004166183646803753,0.02923293156088254,0.1353632987719581,0.017187513465202787,5.427737492381513e-05,0.0019315045124890138,-0.06589253829941999,0.12444959556882479,0.09662690236634719,0.0002581500075927924,0.007554082163023787,0.0147448630611211,0.05783140132238199,0.010405004202930484,6.340031322718438e-05,0.0012369297075571165,-0.013275859537151389,0.1434448092038966,-0.08462176287475247,2.3878613004208874e-05,0.005786534371780012,0.003593246325894669,0.010587691350374821,-0.001831486448069642,0.00011863004150626551,0.001411836274921604,0.01114647252663402,0.04331461207067327,0.005450430643725083,0.00040563086316642086,0.009602707565509187,-0.020182602097639682,0.09230438073997571,0.0036350472304318687,0.00012523526558271602,0.007857180857789775,-0.006474678880126259 +2017-06-01,0.01035542668550913,0.08003720950141455,-0.0006439523953608812,0.00013682411371557755,0.0010920576306894516,0.004948283039427549,0.017053618798109505,-0.026626294942268265,6.962232284467534e-05,0.009616642724659426,0.009594988459634015,0.03331282740986522,6.005301710791184e-05,0.000133238632436987,0.0032229506818054567,0.007310938081926798,0.00894400638011817,-0.011818619988504047,0.0002758727866106314,0.0030071389406377278,0.0012829888180237619,0.002519519726005658,-0.09776927378982181,0.0002664421200655869,0.00196249451982671,-0.001743987243669813,0.004901032237078275,-0.0011891776886007197,7.769668411082465e-05,0.001199645596656508,0.0577226222537015,0.22311462018639563,0.023401075615718595,7.591155327567327e-05,0.013387259732589417,0.028653031269908414,0.24576422059489803,0.027661371684662886,3.998071269084012e-05,0.01987749062061399,0.011078388863545667,0.009537155041036494,-0.05539111357372667,0.0008957824490272864,0.0016496291093484074,-0.020284335102640248,0.0423970623802858,-0.007448973932223168,0.00016729651604905648,0.003715214194931022,0.006196659332070484,0.004287050804850701,-0.031189036009249327,0.0007065181921597589,0.012837205368359963,-0.013497306307051708,0.19154748061192814,0.007251205072506373,2.099875029050885e-05,0.0021484842567645107,0.02418290823559162,0.06326426904236689,0.0173529748694582,0.00011355364287092754,0.0014455271111259939,0.007734629739039928,0.04665788966923964,-0.021443134347385838,4.666338666096788e-05,0.005302369197914403,-0.00545497463380325,0.004426181305027989,-0.20626182174292482,0.0024037345646835896,0.009621154473745988,0.1253164898672407,0.7830099980407015,0.26436040737169897,0.0001317021976919176,0.02251873607699121,0.041919472032968086,0.2610060106883865,0.02723374481654565,0.00024869870696687355,0.045610958010144864,-0.006360980256697687,0.03991848930443857,0.0011289917254586445,4.4886000124952684e-05,0.010707962930917046,0.04163561129447615,0.24819115066469455,0.003558123448545241,0.00027648110738735245,0.002622817387400743,-0.01839931393493202,0.2482217854749507,-0.022911501941148035,3.0760399078784555e-05,0.0024404848844836757,-0.006162553004751268,0.07707240512342192,-0.00945871769380531,2.671427946852736e-05,0.005225991837557543,-0.042505307793478775,0.1264968413340004,0.015261889962661512,0.0001082396152923312,0.0014098225192774713,-0.06637082972119725,0.4884366579516982,0.06575862689080016,3.138783580076732e-05,0.006085126412790971,0.0008191550671603266,0.0024148763384051605,0.003298956980904102,7.520532773235466e-05,0.0008801301722573514,-0.02084685763339633,0.08568946402158523,0.100983444298119,0.00011124020224320584,0.007724465073945892,-0.048406613314490664,0.044882403999202555,0.036098056009004204,0.0006164589323523546,0.017363729168914266,-0.013581454641628332,0.052301648485362576,0.002570702764168039,0.00010929918386483826,0.007382637712133341,-0.02141773078513106,0.07039342463475881,0.016059206731024588,0.001952812452965515,0.007003226999044687,0.009514252251526476,0.06960647964323141,-0.0427021299805987,3.5148531676650897e-05,0.002430931493062856,-0.016193985056015336,0.04513507090934299,0.012248008911665716,0.0011730347418864116,0.007097892036862255,-0.022846806617501887,0.15080393690152585,0.01206068069761658,0.00010088775767322085,0.0009951494280938317,-0.03421342802807029,0.04312267057763199,-0.016581627392993757,0.00018725625269030118,0.011237904067224733,0.007218185396620035,0.010967844092670834,0.002285340358590987,0.00037775539717241184,0.01609454189490162,-0.020148828596211633,0.07933016047555448,-0.02598492084080491,0.0019686196272704435,0.012957842814830325,0.03490946610207868,0.130340567143363,0.06790254390273631,8.593181224725629e-05,0.003501369958241745,0.02148445892899309,0.025453626270183858,-0.028845966268302322,0.0020982244787819,0.020270675721545176,-0.03880413679364507,0.11631306533964407,0.0276366420386973,0.00013217994354477417,0.008559013646803632,0.025692198884643077,0.06209999926202095,-0.05600788466814261,0.00016771428549543606,0.022736869542147316,-0.02397771068511443,0.10010421157508594,0.019463599620469587,5.846141075398237e-05,0.0093010379148051,-0.021409246052048206,0.06024678702570923,-0.1477698122519428,0.003368104367746292,0.011562162124893726,0.022327176521235524,0.11776283727521805,0.009241460580637309,9.431181787933996e-05,0.009982286534954006,-0.019845501451708547,0.11796105323514462,0.024332161155519054,0.00012200685149167565,0.014111026890254385,-0.0006609755691355601,0.004397672049180413,-0.05341228815276877,7.109045059253899e-05,0.008040949746201393,0.011160241078180535,0.061984565715948105,-0.026233824879724275,4.525196142906891e-05,0.02240861150076161,-0.009531821652752126,0.016755241672197198,-0.04150198127089054,0.00027736688268248106,0.011975483687894884,0.016655707439428,0.06664821811805563,-0.03434558502423576,6.214252803048257e-05,0.0009057795733579779,-0.004896804254439146,0.05098381540455417,-0.005570644429495508,2.478059308010843e-05,0.028808605932419636,0.01892727439942626,0.06650915510173558,-0.03033708125171631,9.947538120713035e-05,0.0005121303465855779,0.010389019722497055,0.04255109622729699,0.01730195836265069,0.00038485026374483235,0.0005317052399999873,0.0026857409889508724,0.012446110176609012,-0.0351674679574586,0.00012359539280547033,0.021361764386575745,0.001027600665276999 +2017-06-02,0.005798882054002243,0.04269919523018252,-0.023663342895200844,0.00014361875899361178,0.013182471176437137,0.026971901936070967,0.09795805652542093,0.026500217926954357,6.606659714087723e-05,0.0005146886086741531,-0.012137279044811104,0.04124008600816338,-0.045004074178152054,0.0001361441481623144,0.005726825529881328,0.007141619282977752,0.00838471992822029,-0.007417659498947509,0.00028745905272983574,0.005612341267539701,-0.030225317923611366,0.06453908351471221,0.047189307170249405,0.00024504500599556987,0.018527350664838457,-0.010836819297071776,0.035248094896422395,0.018600221364154748,6.712942425218574e-05,0.011556520116103412,0.019554083987192366,0.06490600999175722,-0.0017426104048044897,8.839799590392946e-05,0.022385118648682,-0.04094270869188029,0.3215157815025378,0.06100397182835854,4.366896420163047e-05,0.0029643744439867723,-0.0005301821034742891,0.00045223840663304764,-0.03582510448837399,0.0009040707285854276,0.0005644583521840341,-0.0001991573446345977,0.00041108629931211016,-0.04357075779693752,0.0001694046045939365,0.0019832476626717847,0.026264307723622773,0.020602608531036008,0.05277319380095412,0.0006231148562222167,0.004672460030091606,-0.006347569718184992,0.09462528186074785,-0.03279049602409077,1.9990473584644126e-05,0.0024765691666834705,0.018642304726496875,0.05601327476285887,-0.05914039255817474,9.886889412808494e-05,0.007250379064880849,0.052364320442802995,0.3172771691742697,0.28101254041543694,4.645778161891392e-05,0.008593829692904377,-0.026832007225766258,0.022778179894510014,0.04353141370574069,0.0022975084441498195,0.005504504628798865,0.009893086549495103,0.06808964026843176,-0.006824410036479319,0.00011956467193711578,0.015564935325269364,-0.05594303722740103,0.3227339300538489,-0.10938710632026304,0.0002684167703241541,0.0034458842333067877,-0.005952153319529114,0.0312237363139788,-0.008039509515890051,5.369702128009017e-05,0.025042757735275315,-0.0049552249858851065,0.025080083968681624,0.0027395880774051767,0.00032562759311649346,0.0029208194937363416,0.046465877290041646,0.5642315351042831,0.0189483524025025,3.417488147841002e-05,0.007937261009190193,-0.005160953330974835,0.06641175131971987,-0.0027526115041794173,2.5963707506446314e-05,0.00016634026573393926,0.0055816568837852324,0.013474437035164627,-0.023441288152530833,0.00013343669062882752,0.02382647955029921,-0.058873034539399446,0.3487218914197106,0.026899852345642985,3.899685521834808e-05,0.05385810801640917,0.014891372313258934,0.04476108220625445,0.0005182376562009674,7.375840661400751e-05,0.0029503818886618435,-0.0013516175699184725,0.005080120854227691,0.00012180657189517101,0.00012165455658022864,0.005647131509884356,0.050141404754702204,0.05200390976962251,0.017756200204983058,0.0005511071711620977,0.020243106044941075,-0.03646468819609314,0.11870444217906312,0.04416417626469523,0.0001292979210136282,0.0030113649764794445,0.06971532705468278,0.26433317511011767,0.06862508608034629,0.0016927614931607706,0.0232544293441437,0.006986072174197832,0.06403133207551155,-0.057685499332428954,2.8055804500313106e-05,0.010745336177095973,-0.03395714151400129,0.10239368208063807,0.03291485947264555,0.0010842495080838693,0.011473047926994205,0.0046622363920331145,0.03661306229045174,-0.007956954555687555,8.47976621010764e-05,0.000616808624532259,-0.0008906030992339585,0.0012024994213762556,-0.016339823725241318,0.00017480132179734662,0.017161451191948257,0.011442501220728778,0.020682314533956737,-0.044780817764607635,0.00031755996302439805,0.010330637622619338,-0.007607695096978759,0.03264086404813111,0.0009957709436423268,0.0018065159196738337,0.013866572334898157,-0.0028190149721382322,0.011038767989256671,-0.06555367511230101,8.193456406156916e-05,0.010100698412938052,-0.05951176644936212,0.08380674647932665,-0.04316636560676186,0.0017652289942590557,0.011805327997357545,-0.014434253072774387,0.04030757416650716,-0.0034460077017887196,0.00014188082011543367,0.006711538242608402,0.011943961488502183,0.028488453017411864,-0.04401473915527569,0.00016995733154025417,0.014193860710155095,-0.007595954490428194,0.03654903349741299,-0.0030947650606889788,5.072480453216832e-05,0.0015546287910588445,-0.026154209637332514,0.09669049702714706,0.006180206237450841,0.0025637511355942368,0.016289286005776657,-0.05629277908282742,0.3243565074611528,0.013441568714095409,8.633176996076714e-05,0.0017378874564306485,-0.030013488179562533,0.1592169717624286,0.041055395576393365,0.00013670610103626676,0.00771051332889792,-0.007393174571433167,0.03857216889252939,0.0009839919433033604,9.065788858043687e-05,0.005152883857001637,0.021203234838800388,0.09965253985281963,-0.02940282766623716,5.3476274790899515e-05,0.01876950583293249,0.04119302295739038,0.10143229390271616,0.03970334560141128,0.0001980052979958269,0.021981477143370835,-0.010754510762396849,0.04253111121256349,0.017895797156750104,6.287793996284417e-05,0.008256382068649953,-0.011705861821251056,0.12550809576822697,-0.014610306336117521,2.406372957134929e-05,0.01185608795344652,-0.021291584150065542,0.06692393632958632,0.04720282562973252,0.00011120785459378257,0.01157504999352322,0.004239070194982479,0.017466582025682135,-0.0005745695032732117,0.00038255215371036993,0.005071595740301723,0.014281897836876315,0.05399283803185635,-0.08135901850936825,0.00015150311494628983,0.007904870736286077,-0.003087442940064939 +2017-06-05,-0.013472872599090418,0.10044673788420287,-0.0014538643289024559,0.0001418439934622233,0.010773016455464883,0.01136805449920618,0.03943698683825059,-0.10987136375981849,6.916604582017366e-05,0.004274377141332722,-0.009748963189547478,0.033111368997546235,-0.007757610699098085,0.00013620043603435617,0.008120897610812928,0.033015390957591324,0.035469466757473644,0.07116352869168757,0.0003141446307577286,0.000984702533719991,-0.011812480504561611,0.027187549455559908,0.002799352682681347,0.00022733631328227297,0.009523542296881161,0.0039968834214806894,0.011702031909263519,-0.0010430554436513763,7.457734927252811e-05,0.0015946716608903984,-0.006864865155292286,0.02728864160597321,0.001402411698070836,7.381420532468775e-05,0.0025984831357428123,-0.006673546550564404,0.057690523213626915,-0.11230411394009969,3.966896148046329e-05,0.010475342763667201,0.03292081026129503,0.027273785852668223,-0.03846816989462798,0.0009308289375545617,0.005293611704567994,0.023539822870464095,0.06291444367552963,0.04042352251740005,0.0001308322216895854,0.01658575169208679,-0.0037192744274726517,0.0027861644762045023,0.003532448377724371,0.0006524929621083181,0.004076544206940386,-0.006155824738248819,0.07834307882283477,-0.06200586163071752,2.3415767703738703e-05,0.0018718793714011086,-7.725950082591473e-05,0.0002545559697742591,-0.0058168793152192175,9.016119292916455e-05,0.004530830967629197,-0.019882454341858292,0.10894518026193578,0.021172313314814856,5.137168256853865e-05,0.003751742787702473,0.02303489827081243,0.018887254098725954,-0.0590523969054719,0.0023787042475334566,0.00495891758514889,-0.015134575065992367,0.09690098735377675,-0.057046904996149325,0.00012852693095071228,0.027503332727937542,-0.00432752133657209,0.030156371512831855,-0.0006097632592987658,0.00022221243825583934,0.005872311356773015,0.03657065917009256,0.2209954362769923,-0.025818898596486485,4.6613363228287836e-05,0.026687022226199522,-0.06881752700721415,0.4273243127133647,0.1212731108884743,0.00026541671311133087,0.015039998391531705,0.007079012150253369,0.10913727793052229,-0.0010798215632699523,2.691719318577994e-05,0.014723153619229584,0.0065231684520893184,0.0734578257048173,-0.013821661907198765,2.9668953875062282e-05,0.010630787660586895,-0.01905081458384424,0.05730385064581907,0.006076342409266388,0.00010709088306905427,0.010370507921514536,-0.01770318981037297,0.12606094025656261,0.003124148416779516,3.243869391440741e-05,0.05302063504799745,0.006073239451446873,0.019642597589095086,-0.02958347433500035,6.854864386427066e-05,0.004077356940143657,-0.020563125254752266,0.08110862290686859,0.07472065191174536,0.00011592328743622473,0.008204526220105316,-0.030130494704491365,0.02831453236942272,0.015220653568172777,0.0006082364325958219,0.02304582111558638,-0.01414457794641503,0.055568968302890154,-0.03065958344843026,0.00010713803298569163,0.0076649691996811,-0.0018961857990359772,0.005951188649548146,-0.036714625669370775,0.0020450142897230268,0.015810587625160258,0.0031634125939697545,0.02898143896440163,-0.00041938463078985256,2.8068427961686484e-05,0.016867850601269788,-0.010009515460736413,0.023510266990357097,-0.007145390438880771,0.001391960025577808,0.0028887110524362433,-0.004508172780641939,0.03440796570354854,-0.21180005886486117,8.725035427942889e-05,0.007307860642909218,0.0022040103760129445,0.002947009269682735,-0.17954695896802536,0.00017651333445014254,0.0065672018032050415,-0.017780915967258802,0.026458456591599556,-0.10409619572441134,0.00038573898778928125,0.002206399568351034,-0.002722558905961896,0.008850056373472347,-0.027224292486692888,0.0023844135936678733,0.002889745661780625,0.026191424752292865,0.09478692617355963,0.01459741347337588,8.865455500478495e-05,0.010565746284240696,-0.023993756303080576,0.03426866367491067,-0.0014606386311046121,0.001740516986591657,0.00746063446681476,-0.0211104184863487,0.07377784289356182,-0.0568429564674867,0.00011336707095279133,0.012217403389829838,0.024386510459124298,0.06999037431794426,0.011009689868464538,0.0001412445567698239,0.0044247631810319646,-0.020649563960756692,0.07459243271892123,-0.022047069758894904,6.75662847677717e-05,0.0018073979315492475,0.01019424431326379,0.03099963237097845,0.0019586316312210058,0.0031168546642504668,0.02381668514290596,0.011828531635171334,0.0628992846343569,-0.0381413259355628,9.354610303467568e-05,0.011936993696488894,-0.006839257796103095,0.047907490142655114,-0.0005572700853840502,0.00010353002994841913,0.01621703822710439,-0.011774158831485809,0.08251629759908595,0.008046748909031906,6.748991098125983e-05,0.0005441331706865828,-0.0040732725213019705,0.021702103842606315,-0.005831308318565193,4.717251433327375e-05,0.007847559976642559,-0.006239262267113972,0.013814784320638625,0.00037151186712786825,0.0002202006145179059,0.010724981934397478,0.020218657900516173,0.08868999892076215,-0.04073657616126154,5.668811947948698e-05,0.02070073914141403,0.018469265145967882,0.21498718766810784,-0.0018300475806025725,2.2165029977450388e-05,0.0023572641272171894,0.003410123939324753,0.011604626465108403,-0.015311827410894515,0.00010271833290838792,0.005721266689161483,0.00256046368856484,0.008868951202793436,-0.03433554908468774,0.0004550659351291918,0.009950703551566655,0.009234861187063898,0.0388217527054106,0.003739047485900997,0.00013624702527163479,0.0078015877935590505,-0.0018792275989018875 +2017-06-06,-0.033208471867714376,0.25957725494940986,0.036078172065241824,0.00013529097914146538,0.006257185378959253,0.01332754962498386,0.05094357148639491,-0.005981543606406306,6.277279209339888e-05,0.0016159357930444452,0.04487265089594877,0.15443219775217382,0.0257935299589491,0.00013441293959078518,0.024779474074965693,0.009429720666760164,0.010926829927615683,-0.0014231969581693,0.0002912544038905199,0.0184048898193539,0.01531675068810868,0.030112272653828338,-0.04106119178856154,0.0002661465749279323,0.0019397362913588275,0.001211339728178969,0.0035995606132004304,0.00014639106897300667,7.347899534677874e-05,0.013279657116347252,0.002404238107240578,0.00970716190386315,-0.006276358473303407,7.267332962972216e-05,0.005189606727163853,-0.01457379571420156,0.1371525270805814,-0.028216275325983545,3.643908625066763e-05,0.005029058082481244,-0.007738720214602247,0.006218291701572445,0.01605930300518765,0.0009597162338316088,0.015238798209768915,-0.026952272075768183,0.057670249146351056,-0.13030000572188416,0.0001634200882989649,0.008520012680677832,-0.00814452760262434,0.005124724914604745,-0.011903418018600734,0.0007768187499062638,0.006491770769950465,-0.004001310413958739,0.05376994661978633,-0.0001854086924657318,2.2176113132374832e-05,0.0009545820113849672,0.010343244769894226,0.02717703402014218,-0.010290381618428875,0.0001130591671987967,0.008758250649488281,-0.02969587664883301,0.16963675352401292,0.04703872791602711,4.927629158991433e-05,0.0017284176672223543,-0.010786239595194124,0.00914720234165509,0.009571142146570627,0.0022998777387546916,0.018913785629723033,0.044614117940460274,0.2545580941525197,0.0288066219360476,0.00014422399057187124,0.029557056302638114,0.02892938066246475,0.1589463645770283,0.025946696981461938,0.00028183619626210714,0.00034322266963802517,0.02611441001898609,0.14955137554059697,-0.039678054744748635,4.918704843975907e-05,0.008223389590355259,0.004978301076903392,0.0299315029514576,-0.15642624539599717,0.0002741191907814786,0.006741635157653688,0.08910831086160957,1.2394674329570594,0.1146167751200407,2.983412619178333e-05,0.004381448258699379,-0.0027290643222864235,0.02664356083045702,-0.04116874286055523,3.4221828804771067e-05,0.00250187754679256,-0.0002563129110481675,0.0006671194587483624,-0.008666826621427504,0.00012376265870927563,0.01880444112414982,-0.02751595371446531,0.24312766037491787,0.00869821871118873,2.6142226640037946e-05,0.02454106101447686,-0.010702668163625357,0.025658502353532137,0.03373122030316704,9.247793827913354e-05,0.0022046634436938173,0.012366731554155443,0.05150210976644622,-0.014519064910118354,0.0001097939751148786,0.0003233137645555304,0.055079260923275655,0.046146418130434644,0.00522854598171542,0.0006822219188603036,0.028799196558687953,0.008005112687978797,0.03404829219271473,0.003850912369048289,9.895964431175126e-05,0.0011474881458305819,-0.059366038743262364,0.20628890477418513,0.05315845022659492,0.0018470615839375974,0.030787737099027233,0.02774813820297454,0.2993102136397164,0.014034306193287212,2.3839355347930494e-05,0.004128304969748773,0.007478808514549577,0.02156321535105123,-0.01425120902419504,0.0011339402296900928,0.015574045493986877,0.00508765129107238,0.03958751562891734,-0.00279005820976167,8.558245342419765e-05,0.0024449519385144032,-0.03791335271813852,0.051947746054506305,0.06103021799117114,0.00017225461597712122,0.0055526980519876885,-0.009219947506630325,0.015652610487757304,-0.020123043573867887,0.00033810032185398783,0.004155661780302121,0.00776383822835235,0.030870774122656288,-0.05431677087257349,0.0019493027643963236,0.010268152783508906,-0.0009109999207187217,0.0032637083384044236,-0.0025390845315064157,8.955655282470739e-05,0.003617094628523712,0.021759288315099642,0.03283359478981049,0.00823768507641284,0.0016474166250989553,0.013225622660502605,0.005660010849424776,0.017854150311418997,-0.03880652868315978,0.0001256012939258895,0.00884798537159677,0.029484662766366576,0.07398198866743344,0.021948219547245896,0.00016155877063669878,0.004736278615560148,-0.0235176759518617,0.07900614061291046,0.01957168201188383,7.265198416621816e-05,0.006061501961477353,-0.003278192925527461,0.010838987644692067,-0.00938714761769362,0.002866578540963252,0.009366759192662635,-0.05525663844024349,0.2685618458810803,0.08917716467536041,0.0001023483200117724,0.004683455200064339,0.047865106288605554,0.2436212301327547,0.10267176575610346,0.0001424835346311865,0.016874099834774853,-0.0045576575571081995,0.02567224216197871,-0.02652422879731777,8.397047096875091e-05,0.006456248639497536,0.045523267238841675,0.19585202435566532,0.007597396097614557,5.8418816472610396e-05,0.004655897670654665,0.03131461578053486,0.055030475913881674,0.019330419700472494,0.00027744264286096875,0.016831709589556806,-0.0033942508521237536,0.014816510607454023,-0.0037572269050185057,5.696556055609441e-05,0.0008608455685123432,0.017509818999779596,0.1908579292142019,0.006640534572194251,2.3670243998751534e-05,0.006027134143435568,0.013900570356789143,0.04037859741740191,-0.05511369732126426,0.0001203345547774485,0.00983755114065277,0.028465119960500367,0.10895703774352851,0.060018823737857274,0.00041179939280039585,0.005738442571809089,-0.022923427583661213,0.10489364137017193,0.0050519121624441644,0.00012517055822815846,0.008439327223007049,0.005222258166440084 +2017-06-07,0.0019623927752314245,0.013376097577814225,0.004381315891834946,0.0001551468962897559,0.011168696359972885,0.00926899317968346,0.03056188572491213,-0.04746609691281506,7.27717705774213e-05,0.0007806583247658046,0.008446744176066164,0.029432401506376996,-0.01005757337675831,0.00013275804433894066,0.0005272994800361818,0.009798204982960962,0.010519924548201151,-0.03802151806688,0.00031434152242025375,0.006314332035226887,0.02817163252126818,0.07031442433333274,0.03653865452663733,0.0002096357572001557,0.015485374087018134,-0.0017286219310564573,0.0049729581252481786,-0.029310204889012165,7.58982838590139e-05,0.004229550449795728,-0.04334667671853543,0.15647158577243697,0.06373046661764445,8.128495657288497e-05,0.001308158926144443,0.00885713985350595,0.07091858168531026,-0.047405229092104866,4.282842219481814e-05,0.0010318230820411983,-0.002390124264281392,0.00172879369302559,0.006958951437487478,0.0010661592960444079,0.0012910402591318811,-0.0009624697596456346,0.002052476377107729,-0.00018678808760876937,0.0001639724222062523,0.009922647443314803,0.01846101385443422,0.013040193759639156,-0.040580925860515246,0.0006919836959107766,0.00836966878523815,-0.021029966036043683,0.2440572453364455,0.14341479357165,2.5678500273509007e-05,0.0008421935974369063,0.035003305109546974,0.10190377068735984,0.026238572056749242,0.00010203985603080027,0.003930780702409849,0.014331100896165723,0.07888559718817723,-0.013187651311998666,5.1137990048480923e-05,0.0037229881930401112,0.006590854604604704,0.006101587339109667,-0.06477214283146328,0.002106793023214586,0.007374406255563197,-0.002082543405599061,0.013411411806925165,-0.03403891472343779,0.00012778258564981137,0.030750603442816122,0.07250394709846977,0.3828997434162545,0.11158196148521651,0.0002932140702930059,0.006771277199917897,-0.00870946735508588,0.06149158000764625,-0.02536413228438301,3.9896693045853296e-05,0.018429148280145965,0.02908647398369343,0.1408924908051928,0.01914628239747364,0.0003402436568593323,0.02016143909560146,0.043466659817915344,0.6933812339303403,0.02249873586373671,2.6014436078956056e-05,0.0033629863239561662,0.00798102226640003,0.0887715955348303,-0.015729317760657096,3.0037667514268853e-05,0.002604753979674968,-0.004446825226205698,0.012822125845093535,-0.0998606176177426,0.00011171533224577664,0.015555074414171229,-0.02046505914728009,0.14140028432282692,-0.048871549143313174,3.343144108286124e-05,0.004266754069900745,0.021311606186223644,0.06059535543145222,0.025288202060292544,7.797479243671406e-05,0.0005776568254146472,-0.005330047150110734,0.019965977194174592,-0.01463172215464107,0.00012206441546709938,0.014010022924696176,-0.026240515972960628,0.02283670500610709,0.0175293811451804,0.0006567717891093714,0.0017563795900352101,-0.028592211183256288,0.1188030363394088,-0.024821151833389784,0.00010129924571826684,0.00721260664029949,0.007379300725691514,0.02359571785353897,-0.00403789748430251,0.0020072487197463147,0.002736752069891763,-0.05771839275823974,0.5035158725604165,0.009979983558404865,2.9476998465642028e-05,0.00045290224883255074,0.023351905762955365,0.0627891889106185,0.00856910604098441,0.0012159304267295062,0.0010113047433923654,-0.0003557994627750029,0.0024364328499330208,-0.03127440449019098,9.724706098176655e-05,0.01668117678470264,0.05485098882080767,0.09018054131377454,0.20591529855178614,0.00014355456569307588,0.0026042828968614097,0.014090101155027266,0.01873369808277046,-0.018594327675599435,0.00043171238514019616,0.0075556918172835896,-0.00260037259095809,0.011007673729603979,-0.0032928527096929396,0.001831008550658823,0.011679548016858436,0.008537424883123168,0.03144948757747043,0.0012044308141454317,8.709709947781478e-05,0.006176888072839459,-0.013392186138343583,0.0202584648630307,-0.016864703768027744,0.001643319982645979,0.0015169351594386843,-0.0025233779387859056,0.008222510242035934,-0.03346604886969046,0.00012158889600772417,0.006995395891753097,-0.026649483680200727,0.06667095232272922,0.014400470968138493,0.00016203637422379093,0.01591845990813858,-0.0016332958468989432,0.006417659766371123,-0.024123843303558302,6.211580152836642e-05,0.012305327253820397,-0.014701850471188964,0.05506040882557994,-0.026207310301572567,0.0025307580535643736,0.0011010830709705355,0.024416715416862637,0.10922323066385958,0.01866189587829105,0.000111202050111322,0.008467433662582052,0.028878768159010165,0.15674302261768336,0.03235918596692951,0.00013361377403770387,0.025502265138279308,-0.010113035494426555,0.04669964419166818,-0.04267123861259956,0.00010242752023443076,0.00017840400610640565,-0.02923457834577674,0.14153416381716888,0.0016667504656340479,5.1913815078800314e-05,0.004069087221503684,-0.03839013411295882,0.07299760246129136,0.0246493391290751,0.0002564132285578492,0.001292392515267612,0.021295714668813245,0.09411599299925458,0.03022107487413951,5.6265627462357135e-05,0.0007184411882058464,-0.005670834621927071,0.060650449646690655,-0.007381098158706041,2.4123717980207e-05,0.008188571473684157,-0.0021527971699625286,0.006311442261498702,-0.010846854549510026,0.00011922942920643559,0.004896598182127755,0.008619760286806067,0.042471185439921046,0.004608921735357861,0.0003199107074903814,0.01848581082063434,0.010897799650120395,0.0486353258746682,-0.0027558366073232986,0.0001283390396617035,0.012194716532862082,0.002586021666291931 +2017-06-08,-0.011974999987131963,0.09316761681204579,-0.05369435192392898,0.00013592430434337962,0.008959453172283713,-0.005383222882057148,0.01840681185499121,0.002767028553533173,7.017369011514181e-05,0.01358011097441396,-0.09144880149611764,0.28251451172893144,0.18151073714151933,0.00014973883909059248,0.030349318782871552,-0.007184372730035644,0.007100226062399126,-0.03142883032689472,0.00034149514653857065,0.010248752524230246,-0.021802423584689392,0.052022782038508866,0.009284671874567423,0.00021928502361533421,0.005070329058447434,-0.018202097117622003,0.04752280518522611,-0.0009228726481552639,8.363077063238883e-05,0.0018309492922740183,-0.013726052519374888,0.05056863427348329,-0.006264205144284569,7.964422431181729e-05,0.013834545912530426,0.007477741413135881,0.07422202729288926,0.0023811087298691073,3.45490607247294e-05,0.003369630788362747,-0.007755630846012779,0.006885220758786807,0.007884242204465137,0.0008686484447651704,0.002748397863759501,-0.02096194192455292,0.047562782624776645,0.0023117035983617174,0.00015410834094174217,0.01037091392101036,0.00048399557730676503,0.00028439572766873555,-0.06278986335284831,0.0008318455227739851,0.009596883361200024,-0.008166157937385142,0.1057520402127941,0.0046060057208235465,2.301186459090319e-05,0.00038003083653722876,0.023476023368547656,0.05108640734978616,0.003921177116991768,0.00013651180497955537,0.01992434538259828,-0.01585964769816231,0.10652368028189246,0.008171483780536802,4.1909182722799004e-05,0.00917229858151942,0.01826596782292362,0.014909531661323645,0.008988344811078292,0.002389470423405658,0.007754490943160405,-0.002905164017430892,0.019764935746658333,-0.007864629351473626,0.00012095598358642342,0.027941496316328494,-0.006606820467582263,0.032376150042545314,-0.005056539455589614,0.0003159915967029273,0.009678779035406926,0.0031840986061347203,0.0213301686250532,-0.004036441518970938,4.204875832503904e-05,0.004282172327369936,-0.04522296771530924,0.2750984900026241,0.04937990665316293,0.00027093035121394845,0.0007849281066022186,0.04242500945174151,0.5407431133701733,0.0005411493964345778,3.255825961268746e-05,0.013345304390856651,-0.007338043561180346,0.07893486344050371,-0.0003530852315225762,3.1059405064289404e-05,0.0061893547317439564,0.02095425608563626,0.062214577638221295,-0.01389956503389885,0.00010849328168843876,0.01010549911902422,0.06391168706031759,0.4239184835822112,0.018767373340915043,3.48249342205129e-05,0.016714166653744235,0.011618434709603597,0.040212108581563315,-0.014104442677575317,6.40572304130328e-05,0.0012087593600034346,-0.006917112348545255,0.029991941440471008,0.0023678504945050336,0.00010545540544303445,0.010869902888664995,-0.07354497822763968,0.06817359051894976,0.07956321975425132,0.0006166126318706638,0.012647329755353653,0.019341302799226013,0.07752435723859752,0.02913957491526587,0.00010501070134125059,0.016763022148137022,-0.001017112217003263,0.0036559387557685776,-0.10132461869023164,0.0017856203785890825,0.027065402040509938,-0.055132225947314796,0.5256720229206658,0.06859874273686858,2.6969497757032852e-05,0.010562082294153393,-0.012067131353843732,0.04129280775884547,-0.027567062357457154,0.0009554344480105708,0.007116323555271908,0.02097171626403726,0.1557627660107637,0.03394419300053115,8.965942840626606e-05,0.005260956347450427,-0.007987521813294148,0.014039035817369698,-0.0007672847786891177,0.00013428272983157693,0.009466315899270116,0.021523276523342814,0.029429135529374872,0.01913670171695647,0.00041979261495797473,0.004151436754977538,-0.02120041105993533,0.07249633868322498,-0.03717546676928357,0.002266619125961525,0.006497554912269694,-0.002778530863888648,0.011187351742851829,-0.024173632523570018,7.968531663842447e-05,0.006781567665142076,0.03670217478240408,0.05243740681557929,0.010999084360982035,0.0017399140074163086,0.011339889563668047,0.011253577421155707,0.03567603361894878,-0.0009778515592826604,0.00012497699413675643,0.005400186406575887,0.011442810762507204,0.03647972795261788,-0.0015601810434850449,0.0001271573595018438,0.009711439050012618,-0.029395356659261532,0.10825630988203344,0.01879005984227259,6.627342870082577e-05,0.0028131149643422634,0.07578843973402606,0.1875060299248936,0.13499936468482998,0.0038309438417806385,0.010662161709630592,0.011775575567013849,0.05746597143192764,-0.0036733760039418905,0.00010193233241928062,0.02284652068049763,-0.013963558852545053,0.06533422774949008,0.006776804872049543,0.00015499444812224717,0.0012729167205903433,-0.01647352999712333,0.09931611561154705,-0.11297965126473776,7.845409995317725e-05,0.0013175513831526124,0.011016541660470643,0.04558767783014711,-0.008884580603119249,6.073586283257825e-05,0.01959962302660998,0.006001753311053061,0.011462500134297001,-0.03279017666340236,0.000255286695088463,0.004420168781090578,-0.0035301878283272676,0.016779426729674432,0.0050437044731669895,5.2316064923160705e-05,0.007787162417358367,0.012674384533874901,0.17425960313195915,-0.037648146706711606,1.876555632643667e-05,0.022083412451917445,-0.046296734502728046,0.17450664876104666,0.20419824929981165,9.273578353262349e-05,0.008063137040427562,-0.007348698907668003,0.026720983692938967,-0.05490962961000668,0.00043349688656847495,0.0030925880711346987,0.027210603805124665,0.15036062651452442,-0.047180890594651304,0.0001036515613043031,0.016058950980651236,-0.0021917961457058677 +2017-06-09,0.005681674415676506,0.04862170842462939,-0.03232882435129579,0.00012357559564240452,0.002345610709052655,-0.020596800186063354,0.06567556490814108,0.027776776661222587,7.524999325836486e-05,0.03356211013357577,0.07076347366572232,0.2816279492961956,0.033911085828681596,0.00011623330726607816,0.00881130815922716,0.015055073195026483,0.014917478212934144,-0.03423242507510305,0.0003406083695487623,0.005013091367958919,-0.02655556239213852,0.05660483685895739,-0.04046322878560838,0.00024547074041116637,0.0017088378164843642,-0.0020932523081173653,0.005334935078824926,-0.001051968985088164,8.567205408679581e-05,0.006920209937966207,-0.04653214933483614,0.1726946571370211,0.05520932831618932,7.90613210761481e-05,0.00034062202763432046,-0.00030307626993397095,0.002210456448008849,-0.004663258819866308,4.7018480029356254e-05,0.003118306805842198,0.0316452453366332,0.0266310936917243,0.06125839713750388,0.0009163560491440241,0.0019119038892468421,0.02782638915693622,0.0805263227615481,0.06753970538717498,0.00012083169659479813,0.004818739462551522,0.01312381455896539,0.008793663488315506,0.008585992859284476,0.0007294820353077739,0.006123484646294407,0.011497353170142369,0.14938914935905834,0.07897895852099346,2.2935151175231977e-05,0.0028871806131358924,-0.060376672012454204,0.154771002272421,0.10724658094473316,0.00011588590419766378,0.001777872972023006,0.004461484290318463,0.030204481801204126,-0.08335861441347506,4.1578593793166005e-05,0.00978463301352222,-0.025980719940445228,0.02175017389607483,-0.08053387368998562,0.002329761265681326,0.0006624961696576751,0.0712544864450759,0.5334640658322728,0.06928964392824792,0.00010991555355849994,0.016809450330722824,0.09951714067658353,0.5413711753885306,0.15671356898408478,0.0002846498719061819,0.018655861581891264,0.008216423588306711,0.05188215299272274,-0.0007116632531323726,4.460933885236887e-05,0.024243691521457,-0.009499327763309336,0.044327614607763834,0.0013098227239281802,0.00035318749531176044,0.012523695169001696,-0.02107905755877983,0.25760548106054987,-0.020470544939470543,3.3956765990427105e-05,0.016503748618184207,0.018490121013870722,0.20210308786651304,0.03848696558059939,3.056669711746526e-05,0.002848732087282843,0.008544900133480447,0.021007418227368017,-0.028697587381809178,0.00013102587404889216,0.000917529896354329,-0.02330627170021563,0.14668255965519442,-0.0707446383181102,3.670174396724397e-05,0.0035140153994522626,0.013001790121315478,0.03791483188458921,-0.0021678227058404037,7.60276206190637e-05,0.005985594754083592,0.022795940565365297,0.088862905359285,0.018312549295399643,0.00011729664850192768,0.0038056893044164826,-0.03039848888501075,0.031313491454190746,0.007727906387929326,0.0005548761556085465,0.03749996007062921,-0.015404205841015041,0.06691624665046889,-0.04949360751635087,9.689330038133571e-05,0.0029548322207924136,-0.009191635660157134,0.03742899929922792,-0.025327249634426313,0.0015761725512612374,0.005074650396924218,-0.04165220001708647,0.3892642722307492,0.03424450799771699,2.751538511625783e-05,0.02070487837959384,0.02432771230341121,0.07752044366697863,0.0005852295364301799,0.0010260210984165223,0.016753816556820247,-0.019398253595331566,0.14392713210704672,0.021773738327570305,8.975230360923471e-05,0.0019188394031837241,0.026533048459044303,0.04520637685645964,0.03140301046457622,0.00013852649165328913,0.015603897645144336,0.007814976787103243,0.011275583765220075,-0.01040892326504512,0.0003978254571719436,0.012489923786875388,-0.02595059689126729,0.10352114119425808,-0.011814922223158135,0.0019429813938385693,0.008357338119893387,-0.031861289332295824,0.12337989176780245,0.047203348517379645,8.285320863884898e-05,0.012871064584926263,-0.0444687364324688,0.054404953674871664,0.015778861471755612,0.002031858856133547,0.015761231299917997,0.02972509291867695,0.09845619263937035,-0.037661198359493,0.00011961791276122254,0.014776820965688569,-0.010851155198692591,0.02733676977759693,-0.009941644067861544,0.00016091226790010198,0.013686896414696307,0.009265562464924663,0.04627201198368607,-0.045107441452866534,4.887281219550767e-05,0.01305880695872516,0.042249484890014566,0.15249981127253828,0.016873610435543144,0.0026258515503891212,0.012638364818925538,0.048897463528780806,0.24196032691650432,0.06943985446841935,0.00010052700400591102,0.012207973899442098,0.03341846586448373,0.1630101174972948,0.03620032836451591,0.00014867321496512997,0.008986832407939769,-0.027846095461104687,0.1465082239809345,0.009384035627356936,8.989820135531495e-05,0.007157048285664695,-0.02481558608070537,0.11264211208483833,0.043461241878597554,5.536956944050459e-05,0.01744511796590189,0.004502352591418425,0.008686672258368675,-0.03071796587993537,0.00025270594596227107,0.0004050555130931544,-0.02443553343419723,0.09982401709400784,0.08550285258053673,6.086969946003949e-05,0.006109259671456116,0.031652997819291116,0.42082831113065944,0.030677461573066746,1.940623043947569e-05,0.005433460094765378,0.0023995298790982634,0.0073175388776517926,0.0004637255869606526,0.00011462255587691,0.005328197723648041,0.00790811011549681,0.03331762026420629,-0.08136448315552007,0.0003741335931040453,0.0019011061144638668,-0.03391084517289369,0.17184045204313805,0.021680702070885502,0.00011302772948174676,0.021064258327353525,0.0024097633936909467 +2017-06-12,0.0007976496451376603,0.005701158118511008,-0.03999060076861237,0.00014795705356786452,0.01026121690105626,0.008362703804441141,0.027612045258128687,-0.012739653457923683,7.267058645183354e-05,0.01299306741045065,0.0048063714189182346,0.01369026149234599,-5.619444989680948e-05,0.00016240626905608788,0.008964785938199306,-0.016629114690664422,0.018643554587847343,0.0005485235954516565,0.0003010289517343284,0.012039061548584744,0.04774268366522082,0.09936415555784099,0.1254426268772615,0.0002514055458604312,0.0006689125745849436,-0.008163603490826307,0.024289105039714796,-0.05790302270824218,7.338666120612667e-05,0.002841780982142151,-0.009495901040575657,0.034124603721529395,-0.019713998488051738,8.16504191503893e-05,0.01902507891392372,-0.01698111065141522,0.1433161139704278,0.015481886830956434,4.0632138735098937e-05,0.011819009493012048,-0.025056845285530028,0.022514398817171336,0.0799982208686602,0.0008582440933729876,0.005329331260691483,0.002640085741499343,0.006587274097151586,-0.003506548785631906,0.00014014389484224313,0.00021802298078776698,-0.004809077978073403,0.0037662586533172187,0.0004301211344939753,0.0006241314034507723,0.010234518323659101,0.005812478431671473,0.07108935746544524,-0.016527422738877473,2.4365737150577244e-05,0.0002891948294750728,-7.792045901075039e-05,0.00024397211837910368,0.00019203560602507278,9.487730563724042e-05,0.003667976869295879,0.007572214181213988,0.05002776055198148,0.0030649164401930556,4.260628276934138e-05,0.015773383273026617,-0.019879725582883066,0.01775102030632911,0.022149747085096035,0.0021842886893572774,0.01185363820049362,-0.08043141269971503,0.48290372650843577,0.07694811672578482,0.0001370620577435898,0.017293544424944438,-0.04064848458853959,0.25447317992978025,0.0038042420200203497,0.00024734923665822286,0.0020263857397470495,0.0008440641438327319,0.005041453602449328,-0.09535963726412033,4.716074239106975e-05,0.021614599042392987,0.034575264333447125,0.21036227215587125,0.01582043758474642,0.00027088469211919116,0.012511026230464354,-0.010238468814630959,0.130637031962374,-0.017544784374381842,3.25236244993e-05,0.011605702998318512,0.008171311051983909,0.07853294003636509,-0.004718139279285981,3.47633479594986e-05,0.00969973924057312,-0.01275431977443347,0.02907386276866511,0.0020686094097969615,0.00014131143966845762,0.011131784886231004,0.035531354291453016,0.23188002892414974,0.009929540282764542,3.539490828509781e-05,0.02193191596673262,-0.015371006266001706,0.04093522287333831,0.004756732745262681,8.324967038283616e-05,0.001879294680156404,-0.0018066085095084703,0.008045954630106588,-0.050686524947304634,0.0001026679919319256,0.00779279148131196,-0.05018136499615484,0.05006803254325825,0.033204007684868045,0.0005728718813867165,0.018377290690737978,0.040737502300945805,0.1230113119795142,0.1715403605366544,0.00013939119989991178,0.01115803527073991,0.008546629237328775,0.025318001036950817,-0.006263025626101046,0.0021666293678361645,0.0068054788637386485,-0.004102268201797801,0.04463699010236902,-0.03922506668653329,2.3632591265661733e-05,0.017401925794261336,-0.019387664322548362,0.05615345905449796,-0.004441052638501096,0.0011288084390005833,0.0031037922945209694,-0.02390406719881419,0.18688919452013505,0.010980098856300954,8.51752176512846e-05,0.0020721364450963283,0.0004439413638421207,0.0006684395304454653,6.061373419947013e-05,0.00015675047759371736,0.008873720263906435,-0.04619213384050113,0.07392054206807716,0.1444042812760452,0.00035867969826985257,0.012390981262266287,-0.0184690297358131,0.07786084574593621,-0.05271731239343687,0.0018385494060569581,0.007608148860893886,0.004178588112906279,0.01716751979175199,-0.03926798476119226,7.809304877264002e-05,0.004595194713317112,0.0452254397080235,0.056482209203160647,0.02409684065610189,0.0019904364437786206,0.023688642034340093,0.02224427899189915,0.07834045106765825,0.019884966333159147,0.00011249890677682623,0.009532199096348358,0.0525809590868005,0.1444179845042333,0.08227586056353389,0.00014759362514141556,0.0037040439770453393,-0.021388561525729308,0.08154967220045493,-0.11890877985631547,6.401375195870383e-05,0.014296217728035104,0.03522066436810971,0.10061825853361525,-0.010977377047300249,0.0033177129299062844,0.006948153934882811,0.05849051503966698,0.2654016238188672,0.08379813379474521,0.0001096282396687355,0.007673960942219932,0.02129310513578278,0.12837174930559525,-0.0010976839622918642,0.00012029022120701828,0.02056986636070087,0.018838381673363026,0.10245957925502326,0.04963529644620764,8.696404302511447e-05,0.012846637703940985,-0.01083271655587795,0.05975093228846965,-0.02508558890006774,4.556591426806739e-05,0.01807901400652472,0.01721766031028467,0.034482956724746716,-0.02080300584672026,0.00024344397590102786,0.008242229848696544,0.020943397915049913,0.08671916541627242,0.00991500969567854,6.005462099956851e-05,0.003850363104821979,-0.007161485266746853,0.08082600840881642,-0.020554932000277856,2.2860370067887627e-05,0.0012675034555618995,-0.022131751822854755,0.07193918672684566,0.0413768284346977,0.00010753732577443134,0.004352022136096551,-0.022889236536999834,0.09593336757801384,0.04993065378463766,0.00037608809677170394,0.0025778084706061773,0.033972553655265574,0.15851364512133526,0.0341012121447525,0.00012275334524699763,0.044228298603917644,-8.050602219123067e-05 +2017-06-13,0.03739879065665635,0.3081884643496117,0.1004105550140228,0.00012832987285651355,0.0058756045171381764,-0.00955840417190901,0.0315401719026725,-0.03741754355326651,7.271631478894555e-05,0.004660724727864658,0.009531102044530027,0.03134885406613358,-0.003991327132573726,0.000140643172315547,0.050099327107581394,0.0021749216194288153,0.0026003592963477966,-0.07076921155110832,0.0002822786990760048,0.00410879021621783,-4.608582760481667e-05,0.00010062045193714942,4.9866159623882024e-05,0.00023965080910470793,0.0008118109149189095,-0.0029605716249806622,0.008619355295798558,-0.0018794333591276844,7.499762823223521e-05,0.0004953053613852962,0.021577845013202274,0.08798638037635972,-0.0067883638582552554,7.19585614651547e-05,0.01688439534099583,-0.000593631584605666,0.005285774823193512,-0.12403264924363377,3.851296511992849e-05,0.011498829710677824,0.0012754444967137842,0.0012889062925181185,-0.00019332807807543738,0.0007631062436637937,0.003781769420322144,-0.00019137632079435591,0.0004476562851477319,0.003490258800499001,0.00014948767971176846,0.01630114670903603,-0.006716254379796182,0.004707369236784667,-0.002407380235676912,0.0006973860088491525,0.002432378083987731,-0.004214276977465259,0.05374388781686429,-0.014528252133908135,2.336774394013931e-05,0.0005718237051137937,0.0007738539755950875,0.0020373315155517414,-0.02152774026061453,0.00011283617418733947,0.013993858703160049,-0.0008306979141495663,0.004221944121219667,-0.005513795524306836,5.538503791043322e-05,0.00665226680340839,-0.034700090950992954,0.022776423989162742,-0.027903335870439937,0.002971447400627034,0.0029389600791094117,-0.03707261160804589,0.2318634043668043,0.004219955530361284,0.00013157490978558178,0.05286473204982809,0.021539619397069085,0.12908969838104764,-0.024131573111294456,0.00025837748759735345,0.050703869246659365,0.03885852837657059,0.21704275757351602,-0.021285550975313035,5.0431514046982856e-05,0.0260819989392985,0.02753622877391485,0.16431683158470362,0.015283019489616686,0.000276190805404232,0.0011078552598560376,0.021671717434525783,0.23597338058468245,0.005879625602053536,3.811189527756e-05,0.003847814035398502,-0.024137121670662273,0.23660883366891897,0.11585779456008362,3.408287595584048e-05,0.004003613130953947,-0.0072389541008944696,0.021463449519243463,-0.08535263223087307,0.00010864232658029537,0.024744671217548624,0.0033898811683007665,0.022801505445738914,-0.0020895257636211633,3.434103092654949e-05,0.017715684454541997,-0.008880289882272957,0.020091532952133735,-0.06484602543372077,9.799218716554902e-05,0.0025693715026808388,0.008894309625647658,0.03162533752435203,0.019512539304660684,0.0001285954700472193,0.012744836280032928,0.05221223509691674,0.050261766824961224,0.02209307852464028,0.0005937588490847377,0.006679001435452917,-0.009629251430955924,0.03633211377876379,-0.010153386890834068,0.00011155469940428374,0.012684599712856213,0.011056926015579097,0.04304941043930377,-0.05744739033675531,0.0016484902018052158,0.0012259665454040821,-0.017169697638873604,0.17668587590699783,0.0020525774998601362,2.4988662341300796e-05,0.004509195343188386,0.057501600868124586,0.15328253100548464,0.013240775618093607,0.001226474555358193,0.02788669312389441,-0.01339791577380849,0.09385329594347304,-0.010577740875932986,9.506340321108717e-05,0.009474216040664155,-0.00026178280473310216,0.0003839704147283478,-0.0012002127549184283,0.00016091211376240228,0.007724591211445726,0.01420222272664972,0.022120089991677586,0.005859515948418776,0.00036853042119887845,0.010142062217642892,0.003036407860524838,0.012517575551726773,-0.0006664109569548255,0.0018801401633535984,0.005862273252663582,0.0129287924519872,0.045848404878929445,-0.0036014104554849993,9.047406497299216e-05,0.008563751771105837,0.021176593507755047,0.02977883205953136,-0.08692693925097342,0.001767769479552106,0.0019913496948931776,-0.015908891345950575,0.04924598515287675,0.008343409516158008,0.00012799267695960798,0.012854362684635457,0.012292735186365722,0.030578888166608458,-0.006924880464853776,0.00016296232474945482,0.002553569676108017,0.028572201548960098,0.14508501696620907,0.05579061298402807,4.806567716423517e-05,0.005007095106094589,-0.0593078723074985,0.20355742621469325,0.04272701805027164,0.0027614898467503107,0.0027742848932819086,-0.007932873992702193,0.04055087600875088,-0.02897887697543799,9.731300553355484e-05,0.01980771225664533,-0.020770156426264924,0.11751695008903303,0.022786170716478926,0.00012817403017227125,0.005817938342306976,0.012306725366624145,0.07515632492907118,-0.06958212497577035,7.74507579959784e-05,0.0007261182573282316,-0.028891953472096513,0.11620454998107087,0.03475864455522177,6.248865377434522e-05,0.008092649461804744,-0.004081355205417976,0.009436180556088235,-0.012077904008213108,0.00021088104518552733,0.011476562248580874,-0.01641178898664598,0.06736107756888411,0.028817717238148216,6.058446461604141e-05,0.017656491378313467,0.024977669233974494,0.302968632471257,0.011840927222064432,2.1270883501968086e-05,0.00438071754631737,0.010832097048685423,0.03394962402074495,0.00325290918542917,0.00011152867377993226,0.0008441768363719297,0.003973661467550024,0.018080108750001617,-0.0036341078313398287,0.0003464318376590123,0.011838007399034026,0.030234319286152486,0.14175452311966788,0.01675932202264238,0.00012216169944962455,0.002605806096650722,0.0034192737435370883 +2017-06-14,-0.005253581880740944,0.03897473823515082,-0.009536422737393618,0.00014254726277804894,0.007060278553713966,0.048730355270956344,0.1896998595296321,0.08732179048034656,6.163722741569852e-05,0.007381642348878034,0.03143920277246796,0.09861507711715733,-0.02867893186528843,0.00014747737899062244,0.03383520887981848,0.05111952597616619,0.05682587254706624,0.08691109054602195,0.00030360474960406596,0.001996608015296694,0.002421326584180312,0.005529774554906031,-0.09015031956950575,0.000229109826676872,0.01534490581701141,0.010647466774776656,0.025703630554450282,0.004027090649318263,9.04479156307414e-05,0.0032774150495251094,0.014347260590811987,0.05785884962167645,-0.04249798953819252,7.275938963273202e-05,0.014589889971565177,0.007657449821101028,0.0765919411963005,-0.008802070187887045,3.428464819188684e-05,0.00012341621659019928,0.005027488787329964,0.0038060406926603736,-0.008628382699592322,0.0010186440904662918,0.019203479206617868,-0.03398206888176989,0.08227283169695558,0.018281416637827428,0.00014442928357573075,0.010549446529309375,0.01448537041609799,0.008968068180712252,0.023524851568988574,0.0007895053225888319,0.005592285521914441,-0.01356337069698877,0.1673202101956967,0.029232374318610352,2.4156945496454483e-05,0.0008761602694895519,-0.04013242126704705,0.1138188237658997,-0.00876160231618992,0.0001047447602486957,0.002753458618463745,0.003260888443496771,0.015536528314292955,0.0016663847474417096,5.9080447900814836e-05,0.005718178779496897,-0.008572119904518654,0.008181973815858192,-0.08394660554215269,0.0020433987550727353,0.008286411475101377,0.020999156903301106,0.1334028844646285,0.002547504497677634,0.0001295354822367722,0.0029315714602812593,-0.02486495763933879,0.14164006930744613,0.007441510288028821,0.00027183778638691515,0.008261106424534061,0.016603356119958827,0.10516319929179203,-0.07975491943481818,4.4472654159432166e-05,0.030921769541312382,-0.004722399272630513,0.028426217642188483,-0.010875541673443057,0.0002737981024418867,0.0020696830140632108,-0.019149633617906232,0.24022236659132945,-0.00035897778234125516,3.308089564456166e-05,0.03252812258523796,0.010154404400526427,0.10300178381359931,0.0002686470348133846,3.29375595934706e-05,0.006299833629332797,0.011946099623375516,0.037946783106364936,0.0058679985286572665,0.00010140839823448535,0.0037969038700210777,0.042350424339646565,0.3225579561417634,0.020792497415825728,3.0327903093179638e-05,0.014608859940807947,-0.0062473282638566925,0.017901874988897042,0.010629606929865613,7.737010542747725e-05,0.0014482847705457737,-0.01170392930306779,0.053524664043276625,0.019370044740168273,9.99830395255963e-05,0.009729484185593636,-0.009485673763440729,0.009422183711178329,-0.0869260531840079,0.0005754295729142343,0.012659766786257005,0.02512983114092105,0.08209917081488466,0.04742419890583561,0.0001288358741807147,0.0029620938657321954,-0.0320371886831859,0.11889908675792149,0.03152759242442643,0.0017293984078653065,0.024204614054785696,0.010832717544427613,0.10381014398240258,-0.05831728435958382,2.683365435115866e-05,0.034136709161493,0.012107581098300093,0.03605012073392268,0.0005918558117622344,0.0010980495364356613,0.008309766005924094,-0.009615080692577287,0.07138828990089618,-0.021970298733970398,8.969156417474333e-05,0.01019138523248625,0.0023585677035685942,0.003546756321539337,-0.003734984093940394,0.0001569503838409314,0.019136916341540446,0.014160872410110272,0.01997541710537773,0.005602154322975703,0.00040690972273867273,0.0005261865630712059,0.03909326037637529,0.15036658059190744,0.05088795117704951,0.0020151199817889775,0.01711803901057028,-0.015659478520194562,0.056443888955774076,0.018004573177388242,8.9012446356217e-05,0.0019354820559495138,-0.014941789461612304,0.02193047971794689,-0.005624910800011562,0.0016936812228622088,0.004325680292634092,-0.03841998497187093,0.13361892143300777,0.059868757272979856,0.00011392138737916906,0.006166286337380014,0.04422589887053547,0.11207668269993197,0.032569676885654084,0.0001599638236378921,0.008000172887483439,0.03988483583800481,0.17518473008547708,0.07570605282718237,5.5568092070990196e-05,0.0016096258064137684,-0.04203732782733692,0.1594959195563239,-0.015233436433495125,0.0024980641264369767,0.00870506094303141,-0.00020152247582696725,0.0010175979246519096,-0.06750113962211854,9.851170783484847e-05,0.008787587716326584,-0.003070331010249893,0.0184379503296228,-0.0023606622093844155,0.0001207628469101595,0.0015086963103558113,-0.009712706292024599,0.05238368783656359,0.001112860444382247,8.769864536287871e-05,0.0047233032737791295,0.06181146286903948,0.2603321805635633,0.08303949639072744,5.967446867017073e-05,0.003172770453652273,-0.01047554195380611,0.02060424634654958,-0.10276426424535066,0.0002478843797450208,0.015810883807186264,-0.027628074407938685,0.10353120623508867,0.0827983695757541,6.635806582000762e-05,0.011074837687669741,0.04739684874746954,0.5467397691434279,-0.11031103623277315,2.2366606042363587e-05,0.011373998208840273,0.005313952883253621,0.014846626080887479,-0.03088880079675148,0.00012511197883038715,0.006375706332988523,0.01405838012701768,0.05509626709415492,-0.03972478707210276,0.0004021990844739608,0.0005656216582932668,0.008686754960152384,0.043974196746282904,-0.07816155771938096,0.0001131439800352941,0.013485422500426577,0.0046236373494770696 +2017-06-15,-0.02341928928185297,0.17648886822897838,0.00676586725807683,0.00014032756101844927,0.012432220874999102,0.038713523665511146,0.12414373979065518,0.06104173492967031,7.48252892771194e-05,0.008268275861160693,0.01312781458649274,0.0407068246896764,0.000144897364049219,0.00014918405647303273,0.03435218547495986,-0.043927765201578976,0.04317427987761389,0.13870017043314403,0.0003433854294045433,0.014658895693124414,-0.017828944028985237,0.04122644263866237,0.006197357469636374,0.00022628070961708992,0.013503977177966515,-0.009530991549931467,0.021621338481968976,-0.26682455998578974,9.625033474897761e-05,0.005516554814439707,0.05052314492083146,0.16874077484007013,0.023265780737732108,8.785372746467957e-05,0.00797007710588104,-0.004260858456067819,0.04150621275090184,0.0023486653641438602,3.520323817984122e-05,0.0026615452124644067,-0.019622182701956876,0.013675395409081003,0.026819223586007905,0.0011065020156694732,0.010971690885690662,0.021264872896877108,0.06246032619695841,0.03702390860560131,0.00011904754111150448,0.0188181909006928,0.011905169323148512,0.008531005321268685,-0.0052891998014426966,0.0006821183329587448,0.005401552674901677,0.0017748104587038858,0.02207865845514511,-0.0634147877941521,2.395532611467338e-05,0.007507431416649993,-0.03385722882890242,0.09046351367188352,0.02366796298035656,0.00011118059517158009,0.006625778375584014,0.022002277145985516,0.12440325697664126,0.03572639522446903,4.978490680745381e-05,0.003643779857414742,0.025382702281312865,0.020463174011176474,0.058362358771397026,0.0024192894473574304,0.0034803616786526015,-0.0367039157176565,0.24280312280545827,-0.0011341186225505273,0.00012439709502150683,0.03325760844108835,0.05945321016170097,0.3567306428055194,0.0249528294915274,0.00025807332943149407,0.00346090103469459,-0.012004839553736662,0.06233326892071899,0.01725388491221385,5.424970900642169e-05,0.019313308440714553,-0.024979712731100723,0.15429817846974136,0.006483382072238712,0.00026681696999337275,0.008049624749579053,0.001240860185337036,0.017956734864393475,-0.03333311880373119,2.8676471396601923e-05,0.0119806704614221,-0.020258708336878935,0.18260975584939235,0.07258866334678703,3.7065467761657274e-05,0.005703838511387909,-0.02673226375438062,0.07630401551234947,0.012437359836297632,0.00011285247804619028,0.005287621665987406,0.014581310563942152,0.08742506840627284,-0.022164686531287312,3.852591439462904e-05,0.009905585605175137,0.0010752570104723006,0.0028871105560007247,-0.0009582090398074045,8.257075400687388e-05,0.0027342280677804297,-0.010587263715716042,0.048066945196067176,0.013372751615401688,0.00010071306297601353,0.012334790994664249,-0.0105968511924181,0.009315106334691141,0.004868272877582234,0.0006502263728341582,0.01965289990780265,-0.00022488786214071595,0.000729787707127112,-0.0029728361171677173,0.00012970463065816758,0.006670817929556391,-0.037495298432814586,0.11815483532490849,0.0352930109014262,0.0020367817269589805,0.01775827821167921,-0.004633509073762042,0.04990183519308872,-0.050683606609691956,2.3876776574780216e-05,0.010088194776622381,-0.04121048176735345,0.10518140808763185,0.03547240998148106,0.0012809730147217216,0.027897353087439274,-0.009221735345716277,0.07799203642984165,-0.0021761183428121865,7.873866321025255e-05,0.0058651962663798405,0.019957460128764436,0.029450309548804177,0.01238074201905834,0.00015994136297051414,0.02335407098748602,-0.004301365293824936,0.006619615571532708,-0.0503467088835092,0.00037297306675216713,0.011097475293232736,-0.002068038670806936,0.007358089549153733,-0.005368405853544595,0.0021784315974821542,0.006879366338637831,-0.0034570403170505293,0.012942763573346646,0.001433538650175917,8.569742979194012e-05,0.014141113315579544,-0.038618978805781655,0.04266756652081272,0.015372253520885965,0.0022499874887605353,0.0037244380726886113,0.0021676260387600284,0.006702984689314359,-0.018091620672026403,0.00012812449554076632,0.007848964978749628,-0.04165332630904971,0.11354554109442214,0.01104911279365136,0.00014870993384257555,0.014010090755418859,0.019059601738057715,0.074884203916911,0.0032069007294802084,6.212086999693644e-05,0.007143239439820776,0.10817268358494604,0.34675212438016706,0.20470604779426457,0.0029567631123825285,0.017331881492904284,-0.007194361551661961,0.03383113281015469,0.0007831668484735046,0.00010578310002756383,0.0004727357759563905,0.014987627615270952,0.08225023324363351,0.0041519208515326325,0.00013214676631127364,0.013446451350697448,-0.010505865873351602,0.056130358675792,-0.06123195323899889,8.852842407792655e-05,0.005414400891037923,0.05391712447973487,0.3105592638842835,0.049853424691730694,4.363446229091012e-05,0.006000054691928194,-0.08087158340012163,0.1520661291675366,0.13004552872317546,0.00025929422797469194,0.008314383156203066,0.006169263250244908,0.023093239388632673,0.0010928959580640098,6.642978102440793e-05,0.0017332132856649122,-0.016561666035456696,0.20203128293132103,0.034030633637847515,2.115030753837528e-05,0.011358884133295145,-0.015865923073392896,0.04888489531833981,0.018779198443700754,0.00011344872496641148,0.01281211488222707,-0.019235082919368,0.07371634095493715,0.028672612473379135,0.0004112995777512123,0.0013071908380782595,-0.012200917656373857,0.06398925471916556,-0.12367321375522333,0.00010920870068515271,0.0036664740719325015,-0.002751923784786407 +2017-06-16,0.004444577802145086,0.033367887785005504,0.0016255241359234103,0.00014086022588660445,0.007449065613808004,0.0182746663643559,0.0636317552946717,0.00438612717870383,6.891060772453721e-05,0.009541899732385796,0.021424657165897205,0.07667062796995078,-0.026174800018645212,0.00012926533180145617,0.014151205841837742,0.004365086743140966,0.004191175650607403,-0.014352887289344913,0.00035149963016944475,0.003523470723577074,0.0054374751594948685,0.010949425454978965,-0.004728546984557043,0.0002598386355582399,0.0011208395737745552,-0.00302872385722455,0.007186547998391324,-0.051186195453013394,9.20208176313648e-05,0.006213776593417949,0.009296871438742728,0.03477254578717189,-0.01159156969257454,7.84495023452064e-05,0.028993240626005577,0.026282444301789026,0.2293582390864812,0.04815864272237334,3.9296151690493985e-05,0.008811134075205953,0.044887666089094176,0.03451174905492192,0.1542625804120439,0.0010030090273726606,0.012205334949060608,0.02478577102372526,0.06016034715991024,0.04014700919323396,0.00014406350804707408,0.004415803874525077,-0.005242432276178526,0.003600258031355896,-0.006854577020562134,0.0007117435811593929,0.007687922454454691,0.012166242167785682,0.16787002588086206,0.08276867090239463,2.15976296050206e-05,0.006690815873212578,0.0484303649973762,0.14661817556236678,0.04719802279993574,9.812529353605527e-05,0.006697185622626061,-0.008391933995468689,0.04290041851510219,-0.037860617537070256,5.506331435054097e-05,0.010641930717160325,-0.0007542939504745739,0.0006028125103704003,-0.07057840054284578,0.002440514208403801,0.004339159281115981,-0.03718442819694102,0.21808811766128744,0.004627230868447477,0.00014030760492715025,0.05622747871105797,-0.0028641810356451105,0.01801298120318017,-0.09365080392807466,0.00024621987185900046,0.01266198426278312,0.04291626211098699,0.2634997674720012,0.020513496102995746,4.587780263806227e-05,0.0046954469715656975,-0.0008215242890761596,0.0038709205919062054,-0.012390519991145765,0.0003497783730969633,0.010181131775494671,0.04549030251707286,0.5338807773430898,0.009955441767489628,3.535939064175658e-05,0.03151289862555801,-0.006830849573038118,0.07352433123537569,-0.030448687500271066,3.1040259809344815e-05,0.0027954826541609144,0.022811562046452852,0.06270235052401207,-0.008762403307796658,0.00011719091883383756,0.013472717210728511,0.01411349119649371,0.10017727170002727,-0.042676733630060665,3.2543003518654094e-05,0.006010185668879595,0.03263802282578527,0.09109659601245862,-0.0001444729266023234,7.943265429530772e-05,0.014234515353915417,-0.0013765433149805519,0.0057112079380128265,-0.013337360245346775,0.00011020733605390424,0.01303334699301969,-0.018541171148960794,0.021256390073602156,-0.01539269636111588,0.0004985666369044982,0.02795486980925704,-0.030848522011955686,0.1228545578978178,-0.02144800220771368,0.00010568883165254808,0.013129772666673454,-0.036597193083326374,0.115267486577806,0.01781738327124191,0.0020377932934430142,0.016186503235779248,-0.024293503950161013,0.20986587290390252,0.007017414575488744,2.9766689179304963e-05,0.0067604807772288795,-0.02093317677432839,0.059980846013794484,-0.03604633064903351,0.0011410214890734626,0.024579916575821294,0.03886164777984081,0.29044790208502097,0.12202494991592337,8.910018598990327e-05,0.008910087985483945,0.006128837073933142,0.008544228760331616,0.0014419338760108835,0.0001692975195855717,0.005073392531542489,-0.014134539586971527,0.023458197349089674,-0.03270419870704273,0.00034585252022587275,0.002328565412937361,-0.0340896728463657,0.10794471569724404,-0.02505262181547429,0.0024477766505782016,0.016229780284975723,-0.008868552116106179,0.04030307059656623,-0.028379418068375833,7.060004171012836e-05,0.0014539439648015655,0.02239840947669965,0.029478310766315543,0.016796867432604713,0.001888825245571041,0.011601322328026818,0.012256617577681123,0.03641393827467053,0.0059694165475352385,0.0001333579836970541,0.005703479053883768,0.0030107219210546597,0.008345639574398829,-0.10595094744082768,0.00014624175693488952,0.0013527573422691904,0.06128404422533651,0.24292461163389892,0.1953753320347349,6.157293069414998e-05,0.014249222047179369,0.044689081957739664,0.12770484717584557,0.021816809935961745,0.0033167452004068884,0.006807252491862482,0.06201340796426464,0.27974703560086356,0.10118457211211633,0.00011027083834494857,0.004014422768118784,-0.007466523767406859,0.03880708207583765,0.0034736423179705465,0.00013953020976387927,1.2242455989860002e-06,-0.009569993866157596,0.04896513416880916,0.000932852645185289,9.244286767781083e-05,0.0006219888825147339,0.031492530415332655,0.14636240217912966,-0.037561057202383376,5.4078597965191014e-05,0.025222325375213746,0.007020894934522665,0.014096847437747785,-0.03461038869033931,0.0002428286181415993,0.017135242552049852,-0.016321120154334987,0.06954989034286126,0.01923885824107445,5.835363147412955e-05,0.0016632499451974913,0.007334601098878108,0.07706271586731027,-0.011682380173217556,2.455633074447689e-05,0.0020082854559735574,0.0032731802666654273,0.01096201279942414,-0.03549820367568639,0.0001043731003023099,0.004632490022834838,0.00559243149595102,0.022807484218113957,0.001926698676351399,0.00038650156861458655,0.002560486136329852,-0.03603388128500183,0.13291571668618501,-0.09034928850522587,0.00015527677485679766,0.0020486199234073517,0.0064038278603650535 +2017-06-19,0.00538793600600859,0.03035173177804106,-0.07112789428990597,0.0001877264800891563,0.006522630513919889,0.010945242143844501,0.037490026543455894,-0.07479075974595624,7.005193768460299e-05,0.012235862641756096,-0.013077475505484479,0.04777476103250766,0.006583019767944177,0.00012662591492689138,0.04364153504302017,0.005043889603163194,0.005109754601271712,-0.007159636947262395,0.00033314506584882967,0.009060524127080735,0.04199343411541081,0.09244242886518803,0.10063869501431374,0.00023768830636637813,0.00995719152459722,0.007908339539743724,0.025083549222530192,0.010391506210955024,6.884034839398778e-05,0.002151640930578477,-0.07903021998292543,0.2744429352606605,0.12206339461676058,8.449499613160794e-05,0.0030092890118477546,0.014513072205924023,0.10426645201466275,0.004993464131070451,4.773241137578995e-05,0.0005348899813089729,-0.016244498713373332,0.013176147393084986,0.02856773878144823,0.0009507419487475645,0.01397310759673639,-0.020808858851163004,0.05400414015667383,-0.0976561053867684,0.00013473582781838042,0.0027783969016831876,-0.019111459943665164,0.012155383294617076,0.007768900560903778,0.00076851007397692,0.0007170165450572079,0.018748488787889532,0.2822892781579501,0.13867872770911358,1.9792227470489493e-05,0.005859452804535991,-0.023227404481663504,0.06340131437954004,-0.02750428234643934,0.0001088312103847351,0.014280907903545373,0.01633942743028937,0.08691521227257841,0.013590041248446696,5.291793115743899e-05,0.0038610985977524993,0.03396044392090259,0.02963966224803697,0.0875778138940112,0.002234719819468946,0.010393451114474291,0.032439268505134185,0.22241390396035174,0.014327711352089217,0.00012002210159504586,0.024466096937592108,-0.036854842648864315,0.21902132904987714,-0.014591853329874113,0.00026056518234127493,0.020490208819905896,-0.02219673104526347,0.14207708046927198,-0.005385118819934302,4.400742439596154e-05,0.021828064430013807,0.0070739734366732365,0.03399285949550767,-0.011114086511650795,0.0003429750538371367,0.03145468321521906,0.006309547201381856,0.06807443281049155,-0.015565034922850725,3.8463109684137194e-05,0.019070563467581056,0.00015868376752624315,0.0015692948332729983,-0.055766074328810714,3.378389100565147e-05,0.005894053624425171,-0.04573959240212557,0.12246529388703076,0.09343690286237687,0.00012031008037948323,0.0045968559267467205,-0.010533561736631085,0.06796675137673228,-0.04151740043979016,3.5799017589200144e-05,0.020562463319666262,-0.018916890928960126,0.05839252492927261,-0.006111384942457513,7.182404948515355e-05,0.0019036616459553006,-0.006666650896303138,0.02986760930622473,-0.015109302214753637,0.00010206006661228746,0.005407299465887692,-0.0005351925830309882,0.0005565621856275548,0.00022068904149268552,0.0005496319265115361,0.02903754873910005,0.004038574998764605,0.014752192041820206,-0.05291229066776085,0.00011522788861804144,0.009232533355650052,0.08040205839970989,0.26112185361555,0.11846333131656969,0.0019762556388127736,0.011051497187157554,0.022232792928201933,0.19858477302016517,0.024034356286607644,2.8789244861216608e-05,2.7359106718184874e-05,-0.0249085498092814,0.057313792540755484,0.013709847371166508,0.0014208903535264075,0.0073214459547257,-0.008223757723505472,0.06670005986434416,-0.12543986292533368,8.210502294917263e-05,0.004354006662338861,0.010073695845661137,0.013955854766965774,-0.0024501543254094064,0.00017036398067163568,0.023947406204093455,0.029123481242297192,0.05194645289257931,0.007643979710401281,0.0003218038998417601,0.0026547297268248978,0.06657844156351406,0.23063143205138417,0.07052157100998042,0.0022375125024653737,0.009089866387508588,0.01651087526510381,0.06898918540695335,0.01103711392644714,7.67855412385089e-05,0.011033402426152649,-0.034674301805892455,0.039754419753295425,0.006259674739354279,0.0021682007874151725,0.002109507843413584,0.0066481470674951875,0.02468408467192202,-0.11440444827980592,0.00010670865040095694,0.0036031769174426987,-0.026549316931790197,0.060875052267607394,0.005003471766590256,0.00017679679219387902,0.005953421580516087,0.006625275368010966,0.02682163326723467,-0.001745775229862662,6.02882445750166e-05,0.02280266264851726,0.013680980070543254,0.049098857576625285,-0.019593800808116162,0.0026409725124671435,0.013545094731853348,0.027826910696005625,0.1323963923113934,0.009989472882471153,0.00010455129436852608,0.0021504287542455027,-0.0016660330762500854,0.008768841449103006,-2.7307132349322817e-05,0.0001377850779106837,0.003934454777505349,-0.01846283028132197,0.10426687455110438,0.01876128815610729,8.375304790524952e-05,0.015368442133074431,0.06323020917295513,0.27766062149176873,0.06875336841764813,5.723447744032906e-05,0.005503598290876665,-0.035622706748470075,0.06902383256475784,-0.004368051459883508,0.0002516270000394424,0.015489674409788313,-0.010984473384671843,0.04982223309142965,0.009891460572730687,5.482396323282454e-05,0.005691367404230918,0.030251741478514785,0.2858511401099888,-0.019289983920139517,2.7304972101781184e-05,0.012628873654834975,0.028297473250773728,0.08688147316306857,0.06315141800976934,0.00011384905926654688,0.020726082470647448,-0.015506033197263139,0.06018861857152782,-0.006671061246166567,0.00040608252858803466,0.0022103737196611977,0.00016980553871006547,0.0009106719725082051,-0.17002283979056584,0.00010679764528407127,0.0029178128408226885,0.003081869547623268 +2017-06-20,0.03177883454688763,0.21744519377010066,0.08494978330530537,0.00015455203826246987,0.006293891786180779,-0.0024942533807453364,0.0075660660359411274,-0.07209463924386025,7.91008169079903e-05,0.00017870123949184462,-0.036834895529717616,0.13616166346715314,-0.08098613124152901,0.0001251416274073407,0.0002704961025072447,-0.003772166513622586,0.0035105360414524854,0.0040259606264009245,0.0003626479907382775,0.005778695534080494,0.006391544038379223,0.015725946626103087,-0.012826651316639818,0.00021266046568648635,0.01532107808959843,-0.003719713221324086,0.008885023702237448,-0.004992967225097668,9.14108205701306e-05,0.004185264799519454,0.06203845778421863,0.20233151020168857,0.06943774652628337,8.996784650810289e-05,0.00026396754747429543,0.00042916450675925034,0.003639921417258854,-0.02456216950314159,4.043248220248652e-05,0.00891423993305942,0.00024708400596731953,0.00017038614474501973,-0.01669742344567503,0.0011182918096032174,0.0012119148334947766,0.004719048414318277,0.010518540061051957,-0.030487903531895108,0.00015687757014470785,0.011317197151978818,-0.028519183992560565,0.02641369956482267,0.07047537633361037,0.0005277548335226936,0.0013944815912984695,-0.005706417252110639,0.07755702211158971,-0.01476386275587841,2.1926291720665527e-05,0.0011989050313393017,-0.013475220784323583,0.03413384823944503,-0.009645162838993108,0.00011727398266671262,0.009314425692678424,-0.017527269673046693,0.08587476251922085,-0.00779591025469413,5.745271253476872e-05,0.002672093271551382,0.007713105085254566,0.006380084055561321,-0.00182063144251802,0.0023579023780717022,0.00030612637992255423,-0.025883916576950137,0.16075589205509339,0.0016106889955422182,0.00013249979290403315,0.041764725361937254,0.04504260171563642,0.2286621781119843,0.017490125598001255,0.00030502635415654444,0.008485503095885137,-0.00458402237277377,0.025121631008032417,-0.05943596291728535,5.139961337441057e-05,0.015266461040696936,0.022843517921247652,0.14226256666274073,0.01273518726165926,0.000264642234010559,0.019751793849312405,-0.056700822146922444,0.7019308046005104,-0.004954211362581485,3.3521642126678835e-05,0.027762809474313598,-0.0059198988275011655,0.06476473528196353,-0.03128429444557041,3.0539181911342835e-05,0.004406945049017294,0.06474004025738905,0.18177014603442354,0.1723346880462072,0.00011472898853463386,0.010272082328404725,-0.03518050284983872,0.22593320706984532,0.004510918743815478,3.5967839511563764e-05,0.012387609843416508,0.0022152036196509918,0.006213259900111722,-0.0004178758077038282,7.904447407091592e-05,0.003106082538383215,-0.006218626259018566,0.02455053226811496,-0.009250559480691603,0.00011581962107069797,0.010191289382082962,0.010474839097105566,0.00990696159911719,-0.025040360923758796,0.0006043415335889564,0.011976689871654362,-0.028532602799093417,0.12109725636415936,0.032309038225272334,9.917291896363347e-05,0.009192337035710712,-0.008635792541612569,0.0370488100125728,-0.006979937654303745,0.0014960534574343085,0.004132748650814783,0.006792611387202778,0.05886799279631973,-0.11551705621133027,2.96715159910085e-05,0.003910048327710212,-0.009750028101972324,0.029581515691423216,-0.030003614801648804,0.0010775978462209451,0.01760809113047762,0.048241239041885584,0.41677119270462826,0.186206001570594,7.708083386637054e-05,0.015652500607379664,-0.00910417613808378,0.013247350279401743,-0.023183644875345556,0.00016220230362315254,0.0006628746170234327,-0.007380145020663525,0.010943581180276694,0.0032968937506937753,0.0003870876770495527,0.02239908050927222,0.00380911626324564,0.01456374770772435,-0.01808012224627731,0.0020272225235275733,0.02844180608023067,0.01923053294407069,0.074451874711995,-0.0013508950784994163,8.287166276539915e-05,0.007562643451578959,-0.0017835675636436775,0.002252652288978477,-0.017028773497017393,0.0019682152685971885,0.004812904211022433,-0.006105203535025985,0.018458721640217418,-0.06343011048847969,0.00013104322205951508,0.009421276759474196,0.018177563148889186,0.05378096479856259,-0.14007703591595258,0.0001370147899373775,0.004601182264599152,0.021155680177192347,0.10715118774188057,0.003478019532776507,4.818855776538467e-05,0.016715436839156633,-0.04023254155109837,0.12402850829274074,0.02467752122515695,0.003074496521525392,0.003162414324496369,0.013150329469545773,0.07541917249960615,-0.007476495576760291,8.673521143599243e-05,0.016097808950630288,0.010053963394653129,0.052985091816044314,6.473405358199871e-05,0.000137608224961742,0.01249613369945704,0.04607268157664858,0.2414190509337948,0.23073891738764377,9.026526276788483e-05,0.008419389852326847,-0.009594901521430943,0.03764661294368625,0.010724485765482347,6.405632332665946e-05,0.006794900911688253,0.08933259129470247,0.1828957678841202,0.2269074035058795,0.00023814182071603074,0.026823441538098597,0.014269465504663376,0.057901114542313496,-0.06700841284538113,6.128231435158586e-05,0.011939663012283126,-0.0341941605227565,0.3241177083038352,-0.05464198508893167,2.7219520605065145e-05,0.016574240849738905,-0.009403035451182451,0.02644227888913342,0.005693173281738278,0.00012430201148752623,0.012380131651005816,0.0033612711795154905,0.015584682306981547,0.001318818843451468,0.000339964499852931,0.027078314597547667,0.04976658629665425,0.21279041908217758,0.15074472339699121,0.0001339545833049167,0.006780417619848322,0.004385245963036425 +2017-06-21,0.019637897201863593,0.13185616034788697,0.005879264627348446,0.00015750021148756873,0.0010352750620115222,-0.03629756151569201,0.13139451630767823,0.08309300298733711,6.628430942746601e-05,0.00916854761598869,0.007670283078772361,0.026212348965342497,-9.899704732106921e-05,0.00013536383680701035,0.0028553373674922735,-0.00335634193688567,0.0029629763906703233,-0.025383098526965027,0.00038230137913282565,0.00017569866205656166,0.026147975505051484,0.06470731496617609,0.03433190871144781,0.00021143771786894704,0.006310631995904961,0.037573251099424054,0.08398051216430494,0.2804614575261273,9.768929958301346e-05,0.002023768517804775,-0.026866539200002235,0.09100045275130658,0.008878918292119758,8.662794831607277e-05,0.03728534090908902,-0.05574312291321542,0.4674174322416858,0.1642830646368316,4.0896392933011896e-05,4.347539062889735e-06,0.028480414861816464,0.02257880603655135,0.03083565702650085,0.0009727251057680662,0.005716498029526636,0.016764440999336785,0.0377838719498925,0.0014374526670507795,0.00015514740014064448,0.008586738705052522,-0.026245249938005824,0.017923582065296123,0.03646494625293716,0.0007157317162923908,0.002258804239502448,-0.012129668454386417,0.19795058910846924,0.019410249936657537,1.8260594862015496e-05,0.0027281580947557515,-0.025602829399232058,0.06640841293111988,-0.05016398160531396,0.0001145291134411283,0.016710514036878916,0.004217933610018199,0.020590707055255956,-0.007761259239118636,5.76620791761535e-05,0.00019940865176465504,-0.0139087903011404,0.011279091851920775,0.01318897143234087,0.0024051280239594888,0.005573386911643228,0.014677398952807322,0.08031392951756208,-0.030450055138673743,0.0001503870124275211,0.02716922192048857,-0.015477853021469687,0.08339600655615144,0.006569418215423995,0.00028739135193024483,0.018970477345923394,-0.009014706577120585,0.050167385341481956,-0.1399759896511809,5.061638030428993e-05,0.00695160392022661,-0.005184805778547053,0.024000930519438673,-0.0625229665055115,0.00035603379232253496,0.008029175772728811,0.028113914721238836,0.4011350220983522,-0.018407032428711247,2.908445790864414e-05,0.021599310131500248,0.01124718143037525,0.13213338576824027,0.01586248487003878,2.843890343094899e-05,0.006925194249602595,0.04079476533854618,0.12663230337873427,0.016585447396278073,0.00010377259774057044,0.007388302391111659,-0.060448090570177485,0.3984982310210886,0.051154990578607784,3.503874683566616e-05,0.023084233631722295,-0.013429210064729094,0.03988855679858088,0.021189905574945975,7.464135695237886e-05,0.0007725703350287523,-0.0016060891659868811,0.006485600781599993,-0.011172819484419642,0.00011323170212969479,0.004108956961127313,-0.01991000582228608,0.02121070317720696,0.006077687082452144,0.0005365273703604304,0.04423791811153032,-0.0317521644126506,0.11266282857552352,-0.02393385834550127,0.00011862567402464305,0.003474110614672463,0.04497341559169554,0.16501728252001668,0.025435258907534983,0.00174922475922417,0.010118990272864566,-0.02577190776005385,0.24321747713404734,-0.01886127499336425,2.7247959449971137e-05,0.020904952155798268,-0.03751956472935773,0.09564767135910761,-0.03640039617425988,0.0012824919861674367,0.011618649767874415,-0.005305958291296345,0.04873907599538348,-0.0013119670371841462,7.249568929783818e-05,0.007801336150773192,0.014913647605733493,0.022919973535867874,-0.026557722285565025,0.0001535731001498513,0.015343509452619745,0.031087305994771688,0.051353795779526534,0.014475938937091478,0.0003474677100720333,0.0025981482268628607,0.02719918243811462,0.09453292456937747,-0.0509318641310766,0.002230093630752247,0.0034226738817309016,-0.005812392257606531,0.02254960436524522,0.006319685738209067,8.270016184321197e-05,0.00973230375791495,0.026583325683675003,0.03673954828140031,0.026770387615229815,0.001798674971710445,0.01133452631196556,0.05524889461648973,0.19407078092312074,0.2029478446133916,0.00011279230618121745,0.009435196597408945,-0.006025604962480168,0.01721201198397143,-0.017322898468972097,0.00014191535643349762,0.0001783514542159411,0.023156291798898224,0.0925123581553536,0.019036977545553283,6.109183741523144e-05,0.0053495299203809715,-0.0004162178422032037,0.0012878237578014381,-0.0314465094679186,0.003063249128494736,0.008391385131284762,-0.018086130218202653,0.07748807894031098,0.001275801366198024,0.00011610510885035401,0.0007770052578329173,0.0153899587361526,0.08377214472015812,0.00276054939365718,0.00013322895009695076,0.014961159186698849,-0.0003942555462846838,0.002289507092735182,-0.0028182042659611896,8.144876753370497e-05,0.0004859471115233529,-0.04379607636733478,0.18312226981698454,0.06676353806985878,6.0109267614619596e-05,0.003912358129532339,0.03074940411759805,0.047221753747088285,0.021181185626492016,0.0003174855664225234,0.010820590654410949,0.008517630831231889,0.034842872570887536,-0.018511864990717095,6.078819337689806e-05,0.000737609817380423,0.041636931625903074,0.5467701359995828,0.02383415033590363,1.964740587764814e-05,0.024771378655058775,-0.017576889455917833,0.05543004878944225,0.027725885231513762,0.00011084235006669967,0.0019295226623534181,-0.003324962038392321,0.01431765047702644,-0.1685385460470266,0.00036605210276517637,0.00029294518927021427,-0.010255785718855055,0.044386693719877655,-0.019021065915503732,0.000132339027165095,0.0031431487382360315,0.0012194510766964921 +2017-06-22,0.008558816124387393,0.0703434175431509,-0.01995888251424171,0.0001286698563158789,0.01664962944796836,-0.00618855942671557,0.01821224471575372,0.006350378532895712,8.153359936698746e-05,0.01605052844123799,0.041605052651605044,0.1293434743798043,0.004845765391889352,0.0001487985700984827,0.037414856211117745,0.001864519606581065,0.002053589155753397,-0.00042056134447327674,0.00030642292126765644,0.00997527833121127,0.0008983988114166057,0.001741287739656651,-0.0870993684129305,0.0002699581223434333,0.003295081677613788,0.0037147832859517225,0.011841100106936274,0.0011338305046940309,6.849962120882994e-05,0.009184066586210269,0.005072594221494357,0.02144278712775042,0.0006028335783709069,6.94126689681655e-05,0.0075464221881843315,-0.0052079073938783435,0.043499179357216713,0.0011342046641801022,4.1056394128775373e-05,0.0017486870352285116,-0.006742191705241597,0.0051644211409190436,-0.058541389288692514,0.001006756015614661,0.0018113076806196685,0.0619911231280613,0.13911465175554422,0.16642107832084377,0.00015581832024484408,0.011061622980163893,-0.01063564779189836,0.006809316576424716,-0.019181179946313152,0.0007634573480607305,0.01199839846467418,0.006344130057319797,0.09119008625120409,0.013487961404415503,2.0732288353469964e-05,0.004878943928923888,0.013493420796837042,0.034059748193932635,-0.1027620882490324,0.00011768786090516957,0.030790780966402493,0.005996579019533645,0.03736846814427438,0.0013645309361078892,4.5171039429025113e-05,0.0038807715715451848,-0.016608606146245916,0.014187044470312474,0.017780156463198957,0.002283306583850481,0.004390070371268476,-0.00947099626264021,0.0616544730811893,-0.001430987771559692,0.00012641050971998454,0.004919403487507364,-0.04651842996141726,0.2388974052149369,0.02692932123624904,0.0003015239735541339,0.007971782596515481,-0.014569005076518197,0.1041637218613235,0.002323218475289631,3.939801683137387e-05,0.0174463674644837,0.048560907019453266,0.29738073062958137,-0.042942042970985736,0.00026912917073128155,0.006155327866250598,-0.0160473677118515,0.22691943495302316,-0.0005719876382912318,2.9346907421276557e-05,0.017265653109312815,0.03005776885249915,0.29945757419343727,0.09796642866232456,3.3535373468026575e-05,0.006992913698834426,0.0028310402864505967,0.006560028005522504,-0.01126244103077667,0.0001390154634567568,0.0012493543623299354,0.024049009590834388,0.17496043091339938,-0.032151872874669585,3.1750438817225144e-05,0.024613031535792543,-0.0122191022754735,0.03837338056196766,-0.001757542677170458,7.059706100413825e-05,0.004521540747684498,-0.007921964428140147,0.02916970360386585,-0.03571971625883992,0.00012417937432637096,0.0018708411029890665,-0.05789385474171302,0.06182608198422224,-0.023359525724262867,0.0005352248918229896,0.005768632887151049,0.015621457745635349,0.05449821068158949,0.021092872809914617,0.00012064944376949763,0.0013768099613158302,0.045975196874717426,0.16280487255162002,-0.06211479769842301,0.0018124889756712997,0.014087369387526543,-0.009620190101859886,0.07697453282174946,-0.036669173299508286,3.213799565065085e-05,0.009307813109751036,-0.01077295495985553,0.029762842777992668,-0.010667031241640328,0.0011834003781019836,0.02529301804702068,0.0155329211177326,0.13350791909236176,-0.05987121091886499,7.747681395353053e-05,0.0029242170586923667,-0.014964627947042865,0.02051397762055011,-0.01706960623233048,0.00017217156721121475,0.004868340923165365,-0.023234783366379814,0.031654315870904746,0.03538713249038078,0.00042131760781543556,0.0076367961063297934,-0.008858329301482656,0.03148693266363813,0.001476614924145243,0.0021805789059411366,0.009275172359534093,-0.015472551957283793,0.07212119796813915,0.010684872597482485,6.883184142790612e-05,0.004399443368617151,-0.021268453603884085,0.02763907092495462,-0.019657396323965733,0.0019128885413712006,0.015300653745149826,0.013081355180495028,0.05355735951154296,0.008643290313873227,9.677197774519976e-05,0.0014965259794618602,-0.018955665328761535,0.05296509716592668,0.029828671136123773,0.00014508069760464241,0.023039342711553,-0.003154420851298033,0.012513306362022988,-0.006506399470363387,6.152639684989062e-05,0.010543940952933269,-0.020663320457330707,0.06522825789074396,0.005948774938553522,0.0030024956672944822,0.033030935367928414,-0.02839221554806394,0.13902454384275875,0.0022676033162208017,0.00010158939532792851,0.030513886780578946,-0.002235632201946037,0.01244872994042443,-0.0058777982521475685,0.00013023751329627376,0.008801590829143422,-0.002058038732164211,0.01279981560583534,-0.031998954268972396,7.604987934756443e-05,0.012760379240631272,-0.005835499303031895,0.02263283552633032,0.004451625383979217,6.480170742647213e-05,0.01704723172270086,0.08376117760294988,0.16257771410997252,0.08045052495054493,0.00025119509544881683,0.015291574703240173,0.01518840750868494,0.06024432149799147,0.011909042698081988,6.269176532667028e-05,0.014738937051956731,0.024196661195082823,0.25604885776693076,-0.007438480297660423,2.4381694547800816e-05,0.005955061520610385,0.0005706859313630622,0.0019019231508672105,-0.03290876947251028,0.00010488494772436111,0.0035790079311770577,0.015077389848260342,0.07481829645259214,0.034410464306045115,0.00031764814226793676,0.014145158450661069,0.018423939219791814,0.09655861223163077,0.013470709832749046,0.00010928568352346046,0.0016923002335213716,0.0024426254027743724 +2017-06-23,0.0341908067296152,0.25117266654397435,0.07055849616992367,0.00014395393992534,0.00566040499258922,0.002961897477520588,0.00863559682602693,-0.024752315338883342,8.229779330899575e-05,0.006558413061371146,-0.01968177640045995,0.06956347628970634,0.013239512294827314,0.00013088208994360082,0.00710393420449903,-0.004194067999626356,0.003793456699474423,-0.04448409917813596,0.00037313689446235714,0.007729326872760493,-0.024809570510065344,0.06011250544436895,0.02826055772207509,0.00021594949309512216,0.012530225363251775,-0.01767002050829574,0.04265995509915182,0.03844553282259216,9.044059260729155e-05,0.004817794273504704,0.0031528300201385862,0.011757690308419708,-0.054204347336655724,7.868073266672912e-05,0.019260155869156408,0.01494253455550351,0.10240978186365748,0.0038191306756178724,5.0035868474220095e-05,0.001367158676605391,0.002130521282316118,0.0017436005368749832,-0.0006071048408924519,0.0009422880194495618,0.005421160438880905,0.011301890545644766,0.027730218774413683,-0.0221523211580703,0.00014251470805795854,0.009435486186346268,0.005761259910692358,0.0045570355866488095,0.007944165167225974,0.000617958636705621,0.012548025867837405,0.004874556460828563,0.0677093691711675,0.0032259999872796138,2.1454042019587545e-05,0.014443312032316412,0.0091763214290532,0.01892375127519117,-0.014902175805038685,0.0001440497219334885,0.01684485817205581,-0.0013759295354997206,0.007432679115199646,-0.024624070620375086,5.2108986670636595e-05,7.802029602853454e-06,0.03804029038266434,0.034107551558542656,0.052670137910468026,0.002175285433969967,0.014109739423202447,0.01395023514332409,0.09468620764769482,-0.00899874936931069,0.00012124027512594454,0.017319110678263822,-0.011252110228216206,0.06809325128265047,0.0021473751810132473,0.0002558810585842756,0.027409215603415263,-0.011746843079357465,0.059880462767051106,-0.09419770478026039,5.5258230702766344e-05,0.006503459346548981,0.006711073512960133,0.027036441939516796,-0.06574819228715487,0.0004090997995549118,0.002938338429873487,-0.020173510974553555,0.25809334838314496,-0.018710040941857978,3.243656885056729e-05,0.00730566352251814,-0.028147129570456376,0.2948657792728855,0.009670079447814525,3.189271177920747e-05,0.0008463154574568538,0.01412719027740847,0.04386068367894236,-0.052942560728762494,0.00010375359495665136,0.0007722852002090398,0.07248349023018259,0.4404610324257126,0.06974555560864498,3.8012285372208396e-05,0.03692137523377834,-0.00387748992321845,0.01105984051083027,0.0001325965374252301,7.772830475693625e-05,0.01278897042474297,-0.01677696219469395,0.06694983859355796,0.0320341539574333,0.00011458094168103425,0.005097621156755859,-0.05599546035877686,0.05009766088179585,-0.049821646863019355,0.0006388677010401874,0.03940244054577084,0.006961201885401487,0.02173464626764554,-0.01706058555633967,0.00013480861963731562,0.007813954319276218,-0.014502046042756891,0.05378375331920875,-0.01579255066902469,0.0017306025846118294,0.014727263637701217,0.0017106359744671136,0.012402520914684913,-0.008402283437932704,3.546743881179784e-05,0.003354162820566387,-0.0140394006286114,0.03989822948831398,-0.08423143502490095,0.0011504459327096581,0.013597165459055293,0.003676630592867176,0.023837622198584475,-0.012629895761719181,0.0001027099948535886,0.005788769407035111,0.01800810926736804,0.02764220706795397,-0.0030806566329249223,0.00015375908556089184,0.0034141166985226625,-0.0018342619222694613,0.0029035595392304086,0.001787644767490585,0.0003626056179415528,0.00024380487415966167,0.0025780319309694657,0.010000374769626539,-0.04589690455341261,0.0019981236378954765,0.02417233753399862,0.024913734270156706,0.09897702618912703,-0.01858581213249648,8.07597186478878e-05,0.006822665819474216,0.027683132784777322,0.04111826313812779,-0.015792304735251075,0.0016736231178802955,0.0007695597932615821,0.030343784505789204,0.09503008568138281,0.039493530046778705,0.0001265099433094762,0.02597206521877254,0.05028864086069803,0.1275183554509107,0.07755316171852193,0.00015986653834927593,0.007312581262941517,-0.013927198059340623,0.06841636556664263,-0.003215359443059291,4.968412857988937e-05,0.011289232856011081,-0.05833874696621646,0.14473975654269727,0.03525337067125312,0.003820210703105215,0.01672542659302024,0.004035351188943191,0.02513670825645477,-0.000118608959479251,7.985709408016715e-05,0.0073714072211772,-0.009526703914897707,0.04814067371688063,-0.12816787730918772,0.00014351301497239827,0.0056682336614642965,-0.013432750227651207,0.0742238723288333,-0.0009899991042488128,8.559926389540757e-05,0.010122076395096165,-0.0295839519908119,0.12867105608373905,0.029414920654219898,5.778601133525026e-05,0.008409802079896488,-0.015858302896762405,0.03161645097270749,0.0026062663895616276,0.00024455299454400405,0.0016093354792564778,0.004470038953435072,0.020256716576727188,-0.08551553980385182,5.487273813851362e-05,0.0005246505793148548,0.02528876748369809,0.2591063842608793,-0.018188186825005562,2.518145584548589e-05,0.012552335795343731,0.011304291091915693,0.03535865837373807,-0.05152188457277949,0.00011175231250172613,0.0022399612838229005,-0.003611675049182297,0.015915058662956304,-0.018440193194621923,0.00035770778829936683,0.000674009050658097,0.01411175406048663,0.06175714079653066,-0.02492726591647413,0.00013087768785050136,0.008037536115661546,0.0014051419707622756 +2017-06-26,-0.027247889654785088,0.1835034220654751,0.016197080226659298,0.00015702734515403842,0.01791260262179761,0.006651687502369742,0.02078231515384894,-0.019518036510029892,7.679773967091947e-05,0.00650466945802411,-0.022046149185298805,0.06916639282426594,0.005873560878105559,0.00014744661936429048,0.018549550972445386,0.004168070733327331,0.004489633478444362,-0.02774455473726821,0.000313322836065781,0.003984417484317064,-0.016460312103212044,0.03611799794945284,-0.027359153962918995,0.0002384581492256752,0.015261025254326196,-0.01189485919562434,0.031288352827065206,-0.08292743263726976,8.300864887678835e-05,0.00011572959427172424,0.007582233949390718,0.025185839111481406,-1.2134329945301464e-05,8.833455201912626e-05,0.002618812975310726,-0.006657941871670172,0.06040815289162111,0.00012044580075847997,3.7795757789529125e-05,0.007168703313624922,-0.006224023366430145,0.005016484733524037,0.003897422816687866,0.0009567897324433174,0.00531602301430918,0.00043789992310418717,0.0010333666986049976,-0.008631853880231027,0.00014817751032752027,0.00017598296476027588,-0.02845800158988495,0.018777548522681535,0.03732239052569906,0.0007407810509586595,0.0032605074893033584,0.0006968943597761842,0.008172562248461397,-0.010901829363551297,2.5411570235567124e-05,0.0003862149613407821,0.06265044115067818,0.18486277640578233,0.12316035546185292,0.00010067594155514389,0.02204040640000281,0.012325660865157769,0.062304528663819636,-0.02133329462894229,5.568681992133679e-05,0.004051475484904438,0.018701351569558322,0.0159844027068105,0.017996582292349225,0.0022819154810240667,0.004078492635082863,-0.0034355640023681897,0.02383267459564436,-0.04793658962974065,0.00011862531209932648,0.012485345656032626,0.036722603091340934,0.1790571867815474,0.013010768738513857,0.00031757765221172504,0.03637935226700532,0.03188587490494621,0.20114695656911408,0.03888769047849243,4.465250502456355e-05,0.004113378268564406,-0.0118138097566465,0.06495257483787291,0.008403859824721216,0.0002997646440782025,0.00490685025652749,0.0968077845559771,1.3358039222777447,0.11511613423063126,3.0074457244773884e-05,0.04096118204882415,-0.006992590454207222,0.07493947639638521,-0.019291093306998904,3.1175192779253924e-05,0.007749388762996551,-0.010257501884205463,0.029677456868209617,-0.0042240532830364825,0.00011133652926280595,0.023778740286804687,-0.020728154607742237,0.14370740320307837,-0.012419485963138289,3.3317612564122974e-05,0.0037417614031781373,0.008017952825215039,0.022792582805332723,-0.01467141191629013,7.799151159705537e-05,0.000158833174210519,0.004067381458627137,0.015010370712870431,0.009740919899089227,0.0001239002212646136,0.0016863022693506676,-0.03364897066829433,0.03398187011754441,-0.10055344960101392,0.000565978676583825,0.012733785772031095,-0.014311417404238868,0.053455326402708794,-0.0055962992507902504,0.00011268800019613997,0.0027403588680115962,0.020084648913677776,0.07550218923196568,-0.03906689402775099,0.001707355173141274,0.006942172273576221,0.07625787818631274,0.7231330192939515,0.23491220366715856,2.711744200385071e-05,0.010930010656403888,0.011145029023972951,0.034037222743445436,0.005291605302508013,0.0010705288034851448,0.008878580548328435,-0.01594420294696361,0.13388982311527683,0.02273506363803812,7.930140632174865e-05,0.009627385572944945,0.046470307172601186,0.07573418192277398,0.06386693128010797,0.0001448201493234788,0.008284297414387066,0.0478412773164889,0.06181620727239202,0.08180079995515856,0.0004442263590969458,0.01590585900249228,-0.015124628357835169,0.06389377972342876,0.0035195203881418858,0.0018347482112545158,0.0017180131533226636,-0.0017827727312043162,0.007566474796154379,0.0019145109491541087,7.559494636625639e-05,0.007442229783414441,-0.005944674237269819,0.0067479637915316875,-0.03617809603599039,0.0021899414759519275,0.012243344160079108,-0.043829917473826294,0.14288953774633845,0.06476477544109992,0.00012153077241571983,0.005247762535600855,-0.03789208968245353,0.09826889725658333,0.06216419012903209,0.00015631219081824562,0.006831542552537611,-0.0032169232297364694,0.013910786708587485,-0.004839609654066341,5.644206962290819e-05,0.007109484968230453,-0.0908173703760649,0.30859494053903475,0.07835236692119553,0.002789318962013182,0.007107696283718595,0.03232421688557733,0.1711895601162999,-0.008493282012683494,9.392718502034263e-05,0.00492188880537368,-0.013550430427121268,0.09064815521008858,0.00966650745580972,0.00010840639563666426,0.005973323474328312,0.00091757672613828,0.004748087585266865,-0.03841091116720933,9.140550798261216e-05,0.015181707802167483,-0.015191207376685785,0.08008483884335817,-0.022900916255905863,4.7674855050127976e-05,0.016726344840920122,0.005881741699079376,0.01148284615875237,-0.006539577231604792,0.00024973867079138587,0.00939757850216022,0.01877545177982402,0.07929642562466413,0.028569643717690083,5.8877743921504157e-05,0.010272828115918828,-0.021821710305114983,0.2519148292574875,0.05124301658010373,2.2349424163969504e-05,0.00021628622885133442,-0.0030469156804666195,0.011412794845398653,-0.005014987030473299,9.332057151815106e-05,0.0020724312755619556,-0.036726694256940105,0.13554957599463116,0.148826577361046,0.00042708237293441665,0.017897282998865442,0.020702886901668542,0.09709248793156354,0.014474313290681424,0.000122128514847322,0.009964789288438174,0.0009574060653630959 +2017-06-27,-0.014529294839236945,0.11076461246916273,0.009251806692044623,0.00013871712794587322,0.00837940990909778,0.013569296531527003,0.05041969977075135,-0.00127540702428127,6.457547427652258e-05,0.0012013192803099226,0.03539815789472367,0.14954871807038972,-0.009918473110943656,0.00010949522289315813,0.00855849079910474,-0.008350719190297215,0.007913939013930072,-0.039131297843104984,0.000356122191290283,0.024219169581919567,-0.02705183076738564,0.053291470486818135,0.03644582296232513,0.0002656052958907867,0.01750213117903027,-0.01333841244921186,0.03707797274726031,0.0236843289059608,7.854795839689673e-05,0.009681686167798426,0.001440271177062034,0.005038528266271127,-0.0017451855020763464,8.387459294673623e-05,0.00652599015238498,0.007179728996426972,0.053297504167985926,-0.038327869284986285,4.6195512977017324e-05,0.005811087288247697,-0.0012377781982510915,0.0010411188857370217,-0.002598040523992238,0.0009168267814030392,0.0020874594666256087,-0.003869666840295923,0.009227375660726293,-0.006901361733724065,0.00014664162364748688,0.024979809469386806,-0.02733140621492629,0.020031732527496907,0.0367587871974539,0.0006669109106322574,0.013339824584328653,-0.007038947557242755,0.09541981083078213,-0.0003779896123215563,2.1983253487093684e-05,1.4550260907113732e-05,-0.01712048034663382,0.04024937374944486,-0.0010983753241660481,0.00012635948751890712,0.008403892713326649,0.00018991891952563,0.0009596304674228569,0.0005898671664446226,5.570908446200215e-05,0.007337635084567887,-0.004510965588417561,0.004063780545833238,0.0013379792703001989,0.0021650216308004553,0.01843451080305501,0.03284226905153687,0.2281230855510387,-0.034546675823965665,0.00011847208323690474,0.008524556103868701,-0.005046942175110068,0.027265097592270252,-0.016771243146456585,0.0002866351879537934,0.036024393785498425,0.0013463245275228616,0.008220193486425189,-0.013666961407852382,4.613480335715903e-05,0.019974761254940333,-0.018213621357055905,0.10478105736299206,0.006079389345389708,0.000286483975416067,0.009476353908176331,0.006619570134950216,0.07870393112952445,-0.11094136141360067,3.4903067246604614e-05,0.04801967099839462,0.0038952893748247404,0.039774319337931935,-5.724836341234566e-05,3.2720405641462984e-05,0.002659671224300876,-0.004595155552801191,0.011633038756174892,2.113812980246295e-05,0.00012724179829503833,0.015105405458419707,-0.0004721438670102102,0.0032131529137215866,-0.0012769931184873776,3.39418363138266e-05,0.013623281440947021,-0.035825920858291775,0.0967728782203801,0.14844239017876754,8.20769267306967e-05,0.0011809828444466239,-0.0009813123325673589,0.003846057927481542,-0.015724986723631592,0.0001166648511734067,0.005622015106212752,-0.0530331414265634,0.057177337155078854,-0.006535907885647977,0.0005301502726563236,0.00044564916916377045,-0.0034207465878749463,0.011614056973742253,-0.0021090562208407465,0.00012397181495123628,0.010241289762202855,0.02482703164967843,0.07669055476893519,0.004871885859147537,0.00207779211178658,0.011708457736501704,0.01280503218735219,0.11877891590183015,0.006494650869541243,2.7721933194918947e-05,0.008851768554469168,-0.013606719231276309,0.03802892318569587,0.004594328090763184,0.0011697974354625059,0.00826342095564936,-0.010075028255025875,0.0711634026247084,-0.0099820999842904,9.42790528058805e-05,0.01763905229619845,0.00250645746630936,0.004080001043899467,-0.0018069762455660704,0.0001449924709928561,0.007687796139247361,0.0696474973281779,0.07835674788613635,0.03880545624480952,0.0005101912739713033,0.002725349553171579,0.03509197383320106,0.14205073320507827,0.03623915661633929,0.001914761375407163,0.0200826985748568,0.030734214660495487,0.10399733148060601,-0.004691604670018637,9.481789181888476e-05,0.006568587765483896,0.016725597834971694,0.023047080243409113,-0.016415033676927527,0.0018040265629096148,0.0002458205008970708,0.010253995664627927,0.03208219907916003,-0.024255539698858977,0.0001266324579262965,0.005296891983103969,0.012164446449088121,0.032804138257952344,0.0003758717164291931,0.00015032253581453563,0.0020599867407215715,-0.006073552520661146,0.02976241796720169,-0.032036999629764036,4.9806784523497195e-05,0.00855529632256477,0.0188152393156622,0.0533685857869016,0.0024712166196322505,0.0033415049587406393,0.013858467827595249,-6.029456240876721e-05,0.00026742329433949085,0.000350422629972628,0.00011215521798493483,0.008424938234123758,0.056521594092602295,0.264737333976318,0.12831796221712738,0.0001548317402981839,0.020403784095157106,-0.025806845219353024,0.14521215636620965,-0.07022922677541453,8.405830747212496e-05,0.005823578316847343,-0.017631886205382707,0.08464017422113006,-0.00407251276731918,5.2356381134854076e-05,0.010133484064753642,0.010538180304601847,0.01789691517515634,-0.003654506030058636,0.0002870891895603839,0.013152812406389864,-0.006552612069645724,0.024641716928669812,-0.015375341061353022,6.612380995365847e-05,0.012505050878488903,0.0004842522241616312,0.005067483928309941,-0.04058939016129389,2.4655313527734577e-05,0.02302474201477049,-0.0075686026469375094,0.023589340090857475,0.0019119781003172694,0.00011215247913498126,0.0030857412718904714,0.022687491781451664,0.09491874321047891,0.04765771984358548,0.0003767579947473649,0.01252197636156701,0.06809382383348844,0.3164558651603733,0.15864566891646242,0.0001232441657996744,0.0035613778435246227,0.002213357754005569 +2017-06-28,-0.021173970394404294,0.13305383706610469,0.0024019137375708532,0.00016829122898769856,0.016253781381788995,0.026587184244722905,0.11144920009035579,-0.05258929259223511,5.724082914829204e-05,0.014169626042160627,-0.01406546435259336,0.04873753564523792,-0.04934035786241073,0.000133501981903203,0.018730810154148965,0.03593145443794237,0.03512870751230569,0.0752174420497199,0.00034520770628048493,0.0003025721839828373,0.005500024066381705,0.011747659020460962,-0.022251165453498284,0.00024496894376217125,0.017989497507547206,-0.011690065330470246,0.031117872995798792,0.015349386808468476,8.202642315621836e-05,0.0017876926955539116,0.002001390026108916,0.007242779198149564,-0.05174356508440701,8.108048554388148e-05,0.024796152900243933,-0.005356779861418267,0.048394954401523346,-0.0004372554767759526,3.7957913236667206e-05,0.010269905104551827,0.01817291704720132,0.013878726071554737,0.016686232225454418,0.0010097638687660221,0.005106062590741628,-0.002219795038212234,0.004790654390075929,-0.18191217380722485,0.00016202421343947194,0.0020678768777541265,0.0068137406359243214,0.005911578116522983,-0.08602619878763415,0.0005633866135562022,0.011800853546645583,-0.015110162287314342,0.16929423766865428,0.04156585101805416,2.6598046571995448e-05,0.008010764916682794,0.01704823079087902,0.04661134471275776,-0.03845017006114504,0.00010865224934056809,0.02167264485440521,0.003976490715574226,0.020282014978837238,-0.0010685445037738916,5.51887670783593e-05,0.012274501311646365,0.0031116880168334912,0.002300224748122127,0.00020270604178884445,0.0026384492695482424,0.0027036574044824796,0.0372789701416509,0.2437462599057608,0.01090353030211429,0.00012585719647195307,0.04461395717098662,-0.013829977136794572,0.07429245996647275,0.0041832514277467606,0.00028826038023371635,0.006421617698415877,0.05795202734193627,0.37809504493691726,0.048861176209639506,4.3174627940732523e-05,0.021549502127142246,-0.02778139017048137,0.1431834207026252,0.015528534019880155,0.00031977760659533406,0.003699318943578599,0.08381637412797847,1.1368184029278323,0.07131179247330256,3.059623622567068e-05,0.015356549665225535,-0.0009242906588855269,0.009522098755566045,-0.031671503078461144,3.2430794756802795e-05,0.027130369953983585,0.011214572740408595,0.035365510953492274,0.0017519134915350777,0.00010214698466487155,0.01675560330270657,-0.03928952812563318,0.2537231594834465,-0.052833390694259505,3.576918774272683e-05,0.03717448640426486,-0.021462497738057012,0.05695973571470264,0.010924974747295688,8.353907826527652e-05,0.0032649117092828058,-0.005961390483156783,0.017984234960253656,-0.07832973364026738,0.00015156684052159344,0.0004857139622450432,0.046471718257297845,0.04741194477713676,0.0599498041351962,0.0005602431071682048,0.015088676359986748,-0.00726015356180095,0.028564279143533645,-0.0006344944407508325,0.000106981466578117,0.005518926677154595,-0.0322487246705551,0.1004028095476727,0.022259460232929407,0.002061511934537153,0.0011381336484854012,-0.03679448408182561,0.3452557878674538,0.017196120035307468,2.7404630150107625e-05,0.0007561841197947232,0.031185615481141862,0.09858660303400024,-0.030547376969759673,0.0010342075096588072,0.0012720368950056718,0.020283813940221395,0.12396861730808947,0.023100421244572386,0.00010895909919960965,0.0016969693921893463,0.007906933571644206,0.011096655343794485,-0.031168881516419656,0.00016817497785766208,0.000984929727645082,-0.007351612624147649,0.011742235743631757,0.007792639118028967,0.0003593649638009682,0.0029027127334907434,-0.005743078422967836,0.022016586200561728,-0.00407541390681505,0.002021832195294976,0.0061473616893344095,-0.019817782814888933,0.07385673558208904,-0.049795987653156466,8.609051916462519e-05,0.00889168922800146,-0.0002969348842202806,0.00046951605934097713,-0.025720341050634626,0.001572128215841399,0.00211075914575408,0.013059228683036904,0.04385143237518451,0.002789562583894972,0.00011799124390246989,0.030844215310947887,0.02776019994526124,0.07723131530666218,0.014970468087869516,0.00014571005921120456,0.013536708873400579,0.03734172445813956,0.16569788156564005,0.043460207624373276,5.500362835476971e-05,0.006137381759585546,0.008196702795002933,0.028364578891375183,-0.01568568969186672,0.002738929829500885,0.024453932371647016,-0.017886831619904345,0.10084058993097164,0.007675948461182175,8.823453712349555e-05,0.01557659370373347,-0.046324947437755,0.3120532642242553,0.07898801181000918,0.00010765816912150741,0.01162436443538478,0.013053671550563544,0.08686745116065693,0.0005357652560672407,7.107621640591623e-05,0.01590251794821648,0.042123342897158786,0.2216334779296581,-0.04036500844153437,4.7767758520743806e-05,0.023874777472398512,-0.04065709657678893,0.0670032301223235,-0.0044683687626304956,0.0002958489386358543,0.026060259177971994,-0.01861118358202462,0.07903917324357156,0.038236904529225686,5.855257244474966e-05,0.007244159289379146,0.010619617002918842,0.1157540768554149,-4.966820128503669e-05,2.367030444635128e-05,0.018574253947873078,0.003595265435307751,0.011773970421465291,-0.006972396345564828,0.00010673748943678532,0.0004459003664710801,0.011240995066537652,0.04435489334701391,0.00956281503800816,0.0003994764564509759,0.0013224809854817257,0.009262886488073304,0.04615832118263972,-0.008143506566931077,0.00011493919026361796,0.0004227147140061212,0.0034608941192251015 +2017-06-29,-0.008739056453903092,0.06782015282825367,-0.08357073792482406,0.00013626752396820116,0.019696383744279955,-0.019903395337138644,0.06019065449271178,0.04829733898270217,7.934300235822713e-05,0.013197211895052487,-0.0126895050439494,0.03764619361387627,-0.009026485635440711,0.00015592681778322904,0.031748798046646466,-0.004194252676016617,0.005363859974748627,0.004082509162161974,0.00026390341772813085,0.00382393856544354,0.03002141425619969,0.07302394681461817,0.034661412939597756,0.00021511149444167172,0.006159187289218107,0.007847705959315252,0.02019745218269042,-0.0916128354827858,8.483847895626437e-05,0.006756426740999108,-0.042184628896666514,0.18319810303189377,-0.006186788346530549,6.756520764039088e-05,0.017090714401618457,0.005499071398323612,0.05121923599220506,0.0036009317785533498,3.681754928911209e-05,0.00266134788359052,-0.007537743034935792,0.006977801070083211,-0.006717399282799255,0.0008330432135069993,0.0006187101450160243,0.021739415503642345,0.05422136604640369,0.01549030412158407,0.00014019718536331584,0.022324799046378,0.027376864628301426,0.018530133808526233,0.05297459092696516,0.0007221534848200048,0.004544858667457215,0.008654622763942896,0.11023378494576988,0.030123513561272176,2.3396786532271724e-05,0.006617138875427946,-0.06064222400782151,0.1775172399761624,0.10021667640735155,0.00010148120636814622,0.004729001512112161,-0.00961958662239707,0.05314885711041796,0.010381772264147115,5.0947666580518524e-05,0.0059379929550331745,-0.010890575787975894,0.008460011163617382,-0.008811222344168621,0.00251074657015232,0.003205145515873695,-0.026777962547436467,0.14893217226872227,-0.00473614323442523,0.00014795890670266714,0.01224742084804032,0.0002180797557172295,0.001226589124195841,-0.031823416408282075,0.000275311577148959,0.029728291818199668,-0.018263837414253702,0.11392897591147655,-0.014938986129915037,4.5156346282776765e-05,0.009411077675172281,0.03168334451816755,0.18742530164442922,0.02866685108325171,0.0002786054506761262,0.026500010465157542,-0.028929860525609263,0.352147086574583,-0.06316373147716366,3.409199934655751e-05,0.036971594309157585,-0.026028045820925005,0.27738936905736955,0.07334170796199835,3.134970503428953e-05,0.0005910017573491897,-0.004388247758099247,0.012487674266517026,-0.029388795049955303,0.00011319632660230918,0.009820485954309188,-0.0048012072738884614,0.03391016889230307,-0.04768878510097209,3.2704903999159056e-05,0.0039530998165247236,-0.007290024853001012,0.025381229155120002,-0.012041288756254659,6.36786343627973e-05,6.429153364882322e-05,0.017582963921275636,0.07678293259520871,0.09861163424534648,0.00010470706478110499,0.0005046104860853909,-0.01628761737140626,0.01677073887878018,-0.012957463105513304,0.0005551123924328535,0.02185683344904238,-0.01346979376839684,0.042416833325595496,-0.008963589988090052,0.00013366223316649023,0.009285007598087239,-0.029593235453487066,0.11026744424058547,0.005124273937891246,0.001722520168112724,0.0011634910280848396,0.033222464719709445,0.33380158297013995,0.034140666625076414,2.5593262571913065e-05,0.0014317178907135401,-0.011194543074190804,0.03255382580720659,-0.06235711099879052,0.001124282902633484,0.0022251181226302158,-0.041196110039578085,0.3436468930106539,0.08040843294622164,7.983060692154025e-05,0.010922334001960878,-0.02618519935310489,0.03577098738392837,0.0006996923231962777,0.0001727707994312661,0.0023797442575312897,-0.0011164602240839507,0.0019168720252685596,0.002005059549635117,0.0003343136041527679,0.011247334461418504,-0.0318864529875064,0.12010128136733149,-0.04833293487496786,0.0020578272396986033,0.01004393652349762,0.008933302000023851,0.036193602013391425,-0.00047598937536132645,7.919004320054714e-05,0.011806541215658491,0.04841424018374779,0.061169369364358184,0.06400063891060472,0.0019675071039395777,0.005632727950693033,0.020635174835655443,0.07881407015368301,-0.017717293905347934,0.0001037338348477825,0.0035060777758541065,-0.03337104853395026,0.08261530853345206,0.039064149438282465,0.00016374562287785127,0.0006624082924679916,0.045648819690734026,0.20317127996850365,0.03795480334951848,5.4837943675846935e-05,0.0001928791768382222,-0.009439144593570458,0.03315710311884867,-0.03162647292567739,0.002698199869134529,0.025032608270750344,0.03836363597783338,0.19101969856308976,0.015878855165708458,9.990383890508781e-05,0.010950104819744575,0.02733367653447499,0.17197645369726883,-0.05515178945902449,0.00011526298061177723,0.00460647464661427,0.022320254385364363,0.12806699471091335,0.059311096246292584,8.24348060446232e-05,0.0013437873172614766,-0.0059193498202339415,0.029264290521474168,-0.008521320596783307,5.0837408276481235e-05,0.006974116057919978,0.012062999785602173,0.026747219920504346,-0.06867527874587208,0.000219890296871582,0.015738810420972235,-0.0033991273654697235,0.014027581508558365,-0.01758088137096383,6.0255821655055434e-05,0.012530228883204562,0.04025307914650161,0.36951641139149666,0.02090897680249547,2.8105845922560284e-05,0.002171598946509575,-0.015021494668596888,0.049441376185135444,0.011527802811288075,0.00010620172277996021,0.006171910338003256,0.00016248421635026443,0.0006623569968330172,-0.009126607107158723,0.00038667582672119335,0.001650394243858936,0.027388852104697367,0.1483228229839522,-0.02208442030837398,0.0001057639456253812,0.016062802852277423,-0.0011766104821145382 +2017-06-30,-0.03160138240567005,0.22377139778949826,0.05256984300919308,0.00014934410704825615,0.010844557477882414,-0.01964181046548685,0.06543336055768464,0.0412415800472792,7.202658383120021e-05,0.025048924870454098,-0.011586750880314856,0.039296274505490995,0.003366544842312152,0.00013639784071395637,0.010599477615834806,0.010301084575264675,0.011907098591762415,0.0016720375643949517,0.00029197445708434544,0.014142298441155669,0.004116250486520128,0.010274081164505837,0.00025476291523186795,0.0002096315160042494,0.0036786691387515414,-0.01572790381175131,0.037687904659331535,0.028987108335010853,9.112039457688913e-05,0.001128201295485452,0.08230515238962381,0.3226740836677985,0.06901873528089249,7.484327672255839e-05,0.01685850948794877,0.033252440523809434,0.2909827171288107,0.019488996750083847,3.918816653144935e-05,0.005920054314867794,-0.04573317402902947,0.03640043490941316,0.15436498955063815,0.0009688790334943486,0.00313716929686598,-0.02402445712659272,0.061277148441289016,0.009768860071536182,0.00013709351833739454,0.00832286783013452,0.01909157840562316,0.013998695893348694,0.029637145833956526,0.0006666204225949308,0.00011770075439475856,0.011313830439860713,0.1777974463276864,0.006058593462703804,1.8962995244162476e-05,0.003752177201058484,-0.04553898177722204,0.1283372760664026,0.027262087564453558,0.00010540993279958964,0.006021316277099743,-0.013446190517937707,0.06920462729581739,0.016993455315148964,5.4692269442904855e-05,0.02106823506616401,-0.06111218979534966,0.051423422845614096,0.19217244634140182,0.0023178740728439628,0.003302682900229675,-0.062348664757707985,0.39182719727779103,-0.15723901129726092,0.00013094372378542364,0.017297158652346527,-0.08641847669653438,0.6190689145324156,0.09418831156484618,0.00021616025370824264,0.0007757013647753848,-0.02114775797217132,0.1500374952362465,0.02835814014998531,3.970319731672183e-05,0.010462918172744654,-0.007023936826178742,0.04382984130830266,-0.048750149102355145,0.000264117699619514,0.02243298019665296,-0.025764144137475107,0.318497628812888,0.007977526974377999,3.3569103881008454e-05,0.004459884687818747,0.018942033577542223,0.24153368071471087,0.04510999924232453,2.6201768886017513e-05,0.004684788759109944,-0.012650279898797015,0.033870311285931376,-0.07183014614965692,0.0001203105473267714,0.02212825461398156,-0.012826685140482491,0.08082119110720394,-0.06604535487652256,3.665908016678835e-05,0.0020330080065013877,-0.00282432734674709,0.008998934064381268,-0.0008041074442317787,6.95827107587562e-05,0.0038603434636102383,0.0073144652061724125,0.03286903089469715,-0.05127642131776367,0.00010175230928269423,0.0009907386086807936,-0.061720951623130266,0.050436915991525375,0.0173257844045082,0.0006994547944943921,0.001779208716597128,-0.01276607205144894,0.04406730813921788,-0.000694562152418228,0.00012193454947416056,0.0053386109038866154,0.025091377184851927,0.08504978347325741,-0.0011308705635543423,0.0018935224623173657,0.005546297269056347,0.024980470283321315,0.2753008722613561,0.015664228829288206,2.3333249129400752e-05,0.009249159135029394,-0.03862132400504583,0.12754640054342545,0.03944955218247069,0.0009899886620723043,0.005729399300431112,-0.0024497914098636554,0.01870129806804119,-0.02740387355289903,8.72334399047307e-05,0.011600203118987153,0.03416747396924574,0.048723522752673,-0.03688202269124014,0.0001655082237739879,0.013060804612427267,0.02565664774344974,0.04247874347833694,0.013658348002392223,0.00034668269462749253,0.016297322702856634,-0.0018154572647051464,0.006764531368576545,-0.016109433974870503,0.002080169174261793,0.004777986575090591,-0.01842491421734818,0.0680962933032012,-0.051277885837481274,8.681052294799341e-05,0.0006901853995855472,0.07378544071579783,0.10270878435122342,0.11692358541173539,0.0017858306747161603,0.00941047126328976,0.009378633343773554,0.02805110062897407,-0.07443842315447602,0.0001324663859960314,0.02147557021735296,0.01922138892462458,0.04242364794180261,-0.0065935322521117,0.000183669537465755,0.01824830778198667,0.03177007416229148,0.15390595267541066,-0.01667780364588712,5.038215458947119e-05,0.0063363655760369265,0.0189083694419031,0.05781680988051727,-0.0007329055917450386,0.003099688213616423,0.0036513628781327974,0.0023855564727735877,0.009693832113143877,-0.004769190654208464,0.00012241503998028228,0.014725757510672507,-0.002925849167559637,0.013186520451010849,-0.01999345491427082,0.00016090980387376957,0.016878096923907925,-0.023491316451274568,0.12773329395591507,0.03329036895986636,8.69865170942671e-05,0.0003764328248717435,-0.027263830907202607,0.1257195868558023,0.022328007306790288,5.45043706497333e-05,0.001173039699245779,-0.014491214357162776,0.025819501132163965,0.0027056408974586352,0.0002736442506406601,0.03841694079962866,0.015122999891813793,0.06393488251040884,-0.0047782718451520306,5.881856888792131e-05,0.007417951100631853,0.005721327900515776,0.06459442075058049,-0.011598430187420931,2.2852468351301563e-05,0.008497195255368186,-0.02790508117494897,0.09455257797612159,0.004950282757419568,0.00010316179266579797,0.0036051752206664655,0.001119657586419774,0.004251227694412628,-0.008991403479617101,0.00041514406328137184,0.011654018273715622,-0.07223953323070624,0.3691548591418252,0.2285023767644947,0.00011208258476964947,0.0034020607753936167,-0.007008998875899286 +2017-07-03,0.015005546288418707,0.1094877372327368,0.012637269299563825,0.00014493487971748865,0.001710396293227331,0.04184484340518211,0.15186600315776763,0.048688580460266355,6.611376812538587e-05,0.015852521629728212,-0.0025042296347391364,0.009070848674372007,-0.004036090512592649,0.00012770956725791682,0.03991798464387729,-0.01155147597020683,0.013697383797262446,0.01573095525577104,0.00028462150487804886,0.006414526972749785,-0.0073094775262944976,0.0136712515312781,-0.0454672604051802,0.0002797536964647428,4.214000410883098e-05,-0.004606275776450895,0.011094832830922738,-0.01007846370147826,9.065169153936571e-05,0.010153029317108587,0.020657881029040714,0.07562004122406403,0.0007794988496691656,8.015649477999194e-05,0.019293864280436075,0.018663086104660213,0.1633959751864206,-0.0872862229216657,3.916884086759748e-05,0.013808425057579671,-0.0008900595347962073,0.0008045440149282462,6.301494235178759e-05,0.000853127684196073,0.004081053684859395,0.026328367029010417,0.05654908410696908,0.021893467837398022,0.00016280218699866759,0.011526495968857105,-0.031496246681606034,0.023244435954340375,0.00038041753786557025,0.000662314326492198,0.011372801964189452,-0.003741245992204747,0.044536714564882396,-0.004896786644694158,2.503345987966832e-05,0.005016750722013248,0.04308838789307169,0.11086708720628828,0.036324717118694255,0.0001154539101574085,0.0075437275186739615,-0.01377333394574571,0.08742771000633849,-0.23711202268551687,4.434572839149671e-05,0.0014831309971083525,0.001943648644395865,0.0017752733958869976,-0.025125165066625783,0.0021353815573190234,0.004689483054741971,-0.005067008291604103,0.03257969570398058,-0.003098543962092541,0.000127984300480485,0.0013539675516654655,0.10346347368825054,0.5041563730880203,0.0735587299383652,0.00031778253543764665,0.01684782114280509,-0.04532964384689233,0.26302891569738873,0.10425004169036448,4.8544470479802023e-05,0.006939881285481473,-0.09110634038582055,0.5155751333492601,0.2238204772486514,0.00029123491973157505,0.006132042833555016,-0.018056697550502137,0.27493014305226,-0.0008791391379183359,2.7255000661134348e-05,0.013784992356310439,0.0033352795002452233,0.03787825542212441,-0.00039471557604586066,2.9418733695465296e-05,0.003624855277244595,0.022746056387419347,0.063315987240274,0.01726032926813115,0.00011572188101795533,0.026437722364422933,-0.02577223051242438,0.17441501822547414,-0.05277786174645268,3.4131903219295386e-05,0.020683701991314217,-0.013482153288268833,0.03402256181157615,-0.02041558168077742,8.785563684047387e-05,0.0045472778492963075,-0.0048072448471148015,0.01842372355194024,0.0021564922971239265,0.00011930741327117533,0.0058541417060999235,0.015158181089550297,0.016460779720356256,-0.057108773238679016,0.0005263471180193082,0.014561292423610483,-0.003836126392011338,0.016291395964754242,-0.06005414264397845,9.911071688297816e-05,0.0028707000325512116,-0.000371222368448025,0.0014320288195293373,-0.09010026933364652,0.0016638016618273333,0.005787735057995545,0.03269567030324489,0.31638206389908424,0.027123092197585172,2.6574223657702408e-05,0.006635317071281914,-0.07822429284223521,0.20728249970951684,0.15343810569698513,0.0012338156600652976,0.019215725282388133,-0.030318802959190295,0.18900439857248538,0.047198154553429995,0.00010682324892515176,0.0019929755243094267,-0.014199463129183344,0.025480703108758815,0.019602275955144337,0.00013152427089984037,0.003683877653738738,-0.01881461429727635,0.026678441047152533,0.023437035252888375,0.0004047983983031996,0.0035088128446853425,0.030141236739834674,0.15128127740590117,0.030870524297375395,0.0015442806376763023,0.008502152520100467,-0.014835761075635424,0.05479665526263798,0.020697271401859584,8.686526534416811e-05,0.004545914300806934,0.05178773923098891,0.06726978807453302,-0.050025539059838565,0.0019137450695803804,0.00345091295341954,6.617200171616878e-05,0.00022434154127249706,-0.017021528932402274,0.00011686396297866004,0.01984537120418674,-0.03026047768407806,0.06892704489584708,0.0345907776410416,0.00017796987527526344,0.004482773305435065,0.010899231192527739,0.04480377486653822,-0.011465302226578001,5.937384626026012e-05,0.002868957582201498,0.047367150902425686,0.14468603734852678,0.014017670599984905,0.0031029065674617806,0.014868242715236171,0.020134872612847847,0.09335031080253961,-0.10363110094845178,0.00010729356824014159,0.011484977283267759,0.0032987050195205166,0.016267321650082912,-0.050058480459982665,0.00014705784983012584,0.0009782938857601478,0.020218805385450137,0.1174953281070798,0.04000196033853328,8.139235085240472e-05,0.002445367516406911,-0.0010424776059173365,0.0048681307363676075,-0.0068495222997950215,5.382101656013865e-05,0.01694343776433924,0.027324663284896054,0.046330471826612415,-0.013828028392952522,0.00028755272660052915,0.03616820399762601,-0.004100278722026912,0.017761258936760463,-0.01032765760774513,5.7405566829846295e-05,0.005374967933621132,0.004713419513221763,0.0544580603127302,-0.026270648635063728,2.233084783911733e-05,0.0102849744422176,0.0010671367415869305,0.0037578152740703257,-0.022761934393833397,9.926442018536894e-05,0.00012056594372840175,-0.002683486313042852,0.01128302615326274,4.4697548774891166e-05,0.00037488819126706857,0.009551212253658676,0.047504850510352165,0.2260328317068691,0.037974583120365,0.00012037553378018978,0.0021525725506872017,0.003140304780684541 +2017-07-04,-0.004856674364467481,0.03287489693776644,-0.008007895277818538,0.0001562288260387362,0.002186908544171583,0.02225507262213422,0.06666792714267616,0.011948461749652568,8.009816932877895e-05,0.02142817905468339,-0.0469690009302126,0.16722537625124756,0.04743090270301789,0.00012992907458156164,0.017008456312438032,0.016714609608835307,0.020962826613100564,-0.04592437111102544,0.00026910034318364885,0.006343540065082536,-0.01905363859569691,0.04767879713232193,0.013160970021065635,0.0002090982535307916,0.0012790362537229189,0.01653737835289783,0.051726859602951605,0.04874054457826961,6.980672922143495e-05,0.013407350508432224,0.001561999635033849,0.006640012803072975,-0.0010811470833674605,6.902427703530132e-05,0.01655552931665779,-0.03079416681672256,0.25272414743931104,0.0690692232356228,4.17849928740928e-05,0.009239339718798084,0.0007498972147983649,0.0005914829912390647,-0.06257984645699816,0.0009776969642420795,0.003479322757918281,-0.042315585392486615,0.09217457911368282,0.07773506886605552,0.00016052810406712566,0.007969372591331035,0.007058395681177949,0.00484704039226523,0.008938522082892787,0.0007117930117309713,0.013631937068811398,0.021066919633420906,0.25340505720038714,0.09307412827097426,2.4774708318621388e-05,0.006018899080729242,0.035790309347356136,0.10457079601294289,0.028738510997455727,0.00010167310250744318,0.0033696948380660414,-0.008402787816689586,0.05307679146436312,-0.04167311987317022,4.456362939875771e-05,0.01366238158556104,-0.030203757139818307,0.02643442946007852,0.003948982830231468,0.002228506990623436,0.013243145664415534,-0.02237530723758841,0.14471912698403963,0.003944100985397179,0.0001272316563879423,0.017480912528857456,-0.0016932517182558628,0.00918595308618586,-0.000639131087191864,0.0002854338883782717,0.010640032925526387,-0.045465439217488295,0.28956282144285056,0.04183615730987547,4.422822876577914e-05,0.005023737489294662,-0.013023399413808543,0.06998284501024925,-0.09332554021538976,0.00030670409439052126,0.01671521866793848,-0.0032222477568937813,0.04307546706384577,0.0029446182418306588,3.104267700458691e-05,0.015375144701307318,0.01213312426792727,0.12916244993518325,0.011537163181676358,3.138470715597816e-05,0.0007771147812689495,-0.007535682009907282,0.02042845070755854,-0.017438630513021917,0.000118825565180465,0.01274923923742512,-0.03873125934613262,0.2817656549051054,0.023589601603890686,3.1751623746485893e-05,0.039285776853979236,-0.004926325419592565,0.015267529384259812,-0.010052643250604088,7.153716324834628e-05,0.0013841055193092268,-0.0029285226607603863,0.01263252136846752,-0.08312040956958669,0.00010600031186066143,0.00046723153012674895,-0.02680214215018122,0.024317850557452905,-0.0013218438690435553,0.0006299700204678791,0.014433888593161307,-0.006401114552070751,0.026383195057906116,-0.0062911097314154495,0.000102120802737523,0.018590786351017675,-0.08506745945834969,0.25874671883823896,0.14652810787445875,0.002110123072898507,0.0037775095921604657,-0.04709016152677486,0.407382320899502,0.045168504040804726,2.972420154386847e-05,0.003921405292069491,0.008735503889761482,0.026187890176619436,0.007788667742848389,0.0010905829915078978,0.006968441137531849,0.020268619260717435,0.13491154877507766,0.02439314908422719,0.00010004621894096675,0.009286245422260529,0.028791054030486218,0.03821340050827378,0.022029148954264714,0.00017782272643687152,0.010107118975700706,-0.01435023131942765,0.02446801760472674,-0.005507528725582353,0.0003366386924411735,0.0027896782642917654,-0.03056383170635813,0.11784484956529684,0.03852790957001599,0.0020102382600572805,0.004306998817236609,0.02027284352133053,0.07494194883985464,-0.023472970276105558,8.679207191743534e-05,0.004298091343066005,0.04517454802878721,0.061570589523892875,-0.0007763116908152863,0.0018238860265688429,0.018316942462920278,-0.009248905198441498,0.026730310942579178,-0.024629366030519143,0.0001370889195778551,0.005613585657710584,0.007507634198318792,0.022103240406608386,-0.012502417739028951,0.00013769162731136887,0.034790061240353325,-0.011626594314564686,0.05013658950454816,-0.01901087467875779,5.659937764852433e-05,0.006561986585766516,-0.00804558766688956,0.023251802034215126,0.0010161099135925255,0.0032795874257966,0.03586796387606644,0.029797788927080116,0.17035964156365413,0.010557002356148591,8.700774088636265e-05,0.00039059885759749685,0.009652324465238274,0.059313660661944906,-0.007452650143323704,0.00011801520593882482,0.002636098818779816,-0.0035352321728772127,0.018790505631197205,-0.006493495020333343,8.898732933531361e-05,0.003577254730182165,0.04220833596734983,0.18796368965784938,0.03143186618008733,5.643800636276229e-05,0.014396026434626199,0.033050769347225596,0.06032133755918571,0.011481179352507503,0.0002671406660457966,0.01704278002846168,0.03545522960892232,0.14212379308608034,0.0807314173215951,6.203372899404562e-05,0.007165255252165221,-0.05038286180531366,0.4574117533189085,0.18173524031067265,2.8418869519172154e-05,0.014218897775233823,0.004190499145429011,0.012112921789976904,0.001129732001039111,0.00012092770418661932,0.004744740700734814,0.008949740932562978,0.03512038037707518,0.006808046824719289,0.0004016790895289706,0.005200302084570641,0.008265745586891736,0.042805487105263725,8.466435042948863e-06,0.00011059981141026933,0.00965642591752216,-0.0035153075139709258 +2017-07-05,-0.033781802972364966,0.24783390800806968,0.0021612092992846915,0.0001441480206717062,0.020311707676463165,-0.01121940836951368,0.04119477015751308,0.012964487326743587,6.534891758148357e-05,0.00013184189809532364,-0.01648505409635157,0.07439782620232582,-0.0365000064563175,0.00010250081885109131,0.027748689420854303,0.013191883965042154,0.012678823133079718,0.0043485195806569595,0.0003511524762942066,0.0011114900253708544,0.008855147299570999,0.021103482593575987,-0.006179792459267385,0.00021955302824763908,0.014941667300520782,-0.0073112355761002085,0.020987788726813783,0.0024661150373214485,7.606254169978914e-05,0.0021349107019121545,0.05857316775174943,0.19943139754819217,0.05574580589663762,8.617772692788332e-05,0.04402074537361056,-0.03940253933645497,0.43155858409135617,0.08419184364412423,3.1309999899355454e-05,0.0062079972049731156,0.0030167680239726116,0.0019708327946918063,-0.002650609357985025,0.001180420987322857,0.013181631159126314,0.01893805122665899,0.04274255769277171,-0.027036044395861027,0.0001549304087937981,0.014012107136338228,0.016795846587548593,0.013528684258008884,0.026921499223909573,0.0006068351048599986,0.0055540827040239564,0.003402181597206649,0.053716609415510576,-0.0025007243868173834,1.8874336269216597e-05,0.003946275609073212,0.014479488093571668,0.04960480575273459,0.002142650748122914,8.671225744207674e-05,0.03240256285558242,-0.01715089945862138,0.08122412554848181,-0.09025211510017159,5.943792982625462e-05,0.0020999545573071967,-0.00888270620019986,0.007989254940266763,-0.0009783968052545639,0.002168512802721694,0.025253772573102014,-0.027495624869020543,0.21070759558511032,-0.03798886964787173,0.00010738299444923374,0.0001356010740513194,0.0350790736432257,0.21724884069205516,0.003103472895630944,0.0002500338916250405,0.007311786298138709,-0.02694969890334855,0.16620592119313374,-0.0004898140661326335,4.567392996499782e-05,0.02074193077751878,0.03824816453168319,0.2572296389902881,0.03899216586932019,0.0002450622395737931,0.021906686429795753,-0.011184474896077014,0.1336035035569272,-0.0883874065010644,3.47398535506028e-05,0.018205533735907106,0.009297376013106123,0.09538243906112502,0.008057225904407836,3.256669454538872e-05,0.004340523692601611,0.001666566965174924,0.004859639461052032,-0.0005878541249312018,0.0001104692676333262,0.019688489006734818,0.03931388835534263,0.2605003041149455,0.01816621882903253,3.4860221434880396e-05,0.011603453989026498,-0.005447711054192969,0.017651020462602626,-0.004595929284998244,6.842607490768811e-05,0.00212320387136275,-0.02403388522263669,0.09413836812687518,0.07376234641048719,0.00011673629697037725,0.000900295701174334,0.03583532043685671,0.0307589658794671,-0.04515402839995992,0.0006659093660368658,0.021655831800719734,-0.006488843003456914,0.023746375905757653,-0.01047486291759096,0.00011501538493159617,0.004847798980887134,-0.02435463138382599,0.09064204101378927,-0.04818336839746737,0.0017245312133708272,0.0007559876587704638,-0.014954583879766753,0.13848819988200087,-0.02031423265922365,2.7767946129836237e-05,0.04398787914342966,-0.015356504224774003,0.04050641878971299,-0.005251059287647175,0.0012394807459502333,0.0295396098502744,-0.035804054617420145,0.23219461815679596,0.05552014287471823,0.00010268469200691144,0.014990187557457173,-0.01908390462139397,0.032121396134033864,-0.06834051536814167,0.00014022266289350174,0.00015088182202200586,-0.0190073404292121,0.02776494546438062,0.014230144666037284,0.00039294199178347366,0.010036629690773399,0.008624259854748505,0.030097263814772693,0.000457637395690441,0.002220982618366115,0.006925882221236815,-0.026607926146931256,0.09339424980300375,0.06057413916283432,9.140737956361149e-05,0.002988305273083652,-0.06978888650592346,0.10565171262793967,0.13750484697584492,0.0016420520507368277,0.0037365660136468417,0.033753697613148684,0.11717694395628538,0.03710005263045023,0.00011412879311600477,0.0026114368542593303,0.005879419223031248,0.01528059807863262,-0.021788918591741573,0.000155974805000831,0.007451963879910202,-0.02770751071034103,0.10379234151879199,0.01230643769662773,6.515475637504885e-05,0.011860530743958243,0.01880991549945755,0.05970205583884693,0.002020919247642705,0.0029861774817584504,0.03178625888687679,0.02071513243866802,0.1067057524753591,-0.1460540246533737,9.656960437452273e-05,0.005139330113869005,0.018927514446983932,0.12200900071020644,-0.07126773157889683,0.00011250258477949463,0.004131544939340513,-0.05182437575102253,0.2806040470653155,0.16019118645717983,8.735521718663466e-05,0.0011590808023074265,-0.013094547375065947,0.06562388876548861,-0.03217941892583605,5.015057580333205e-05,0.006691507597595118,-0.06132033816484252,0.1205688066498668,0.05482378200908843,0.00024796990340480594,0.012098741928764567,-0.022597935235551817,0.10603798959013427,0.045018842421677384,5.299338365446856e-05,0.008359569627946704,-0.02516994979363022,0.2777195096723178,0.038346273219804654,2.3383377713779734e-05,0.0008355833840520209,-0.021484902519616187,0.07373523386517528,-0.006406462683710599,0.00010185146732959792,0.0033451513942625525,0.011813693333193886,0.06202082546337022,-0.07195080083137671,0.0003002452336378218,0.000156304271245954,-0.011985410662233987,0.05832916005509688,-0.013949993348350467,0.00011768984543256268,0.013722624302967761,-0.00632818110821448 +2017-07-06,-0.023235848566304746,0.1642801415190787,0.026298677838817938,0.0001495753587052537,0.003529408501618551,-0.0030489796582386782,0.010715944534971853,0.0027042203889256155,6.827073782262885e-05,0.011828849555919651,0.0062006149673466135,0.02287395625174407,-0.0009017234130077208,0.00012539802100353976,0.029681700595237722,0.007648547796581923,0.006526699993164264,-0.001682429200878102,0.0003955061043920529,0.007816972757219603,-0.02998459032986591,0.06514043512999558,0.01006942698893492,0.0002408492158088945,0.012287965910841376,0.00977721163355063,0.02605889194723388,0.019857592109202165,8.192299300148733e-05,0.0027819766018237126,-0.03423126816858952,0.12767107681608825,-0.012793922789290021,7.86720238514692e-05,0.008838098210744291,0.010488311740532616,0.08971608758555774,0.0019543433106985215,4.008979869453222e-05,0.0031208223380596806,-0.003461953785568362,0.002679233458872825,0.0003748002980395589,0.0009964499611738362,0.010708942741058203,0.026664695610787773,0.05384022748159625,0.018596114404593144,0.00017317756569704113,0.019096544336489173,-0.008253756424471998,0.00559710496401501,-0.0313763614811616,0.0007207963107844569,0.004348122598529576,-0.0015244002400421877,0.01892645251812637,-0.10007611526379159,2.400228445616131e-05,0.008239101530600038,0.03648221010550721,0.09446337587567114,0.0020931654748141243,0.00011472781327390052,0.001173805415746061,0.024076150400312094,0.11891381590041791,0.06770416302327834,5.699234808590995e-05,0.00449612715979937,-0.030580174413252892,0.02618502344260391,0.023169131208889276,0.0022777704979295844,0.012513629920426317,-0.06709891946469276,0.4446183956598662,0.06323707280631054,0.00012418816414817223,0.045118785952242085,0.054230881177863045,0.24657548907699525,-0.021773735854196365,0.00034056890256730613,0.0378569956269717,-0.028357791677993092,0.15363386925363554,0.02133210163828773,5.199318178419326e-05,0.013538127561161649,-0.015291919514938898,0.09061420072680515,-0.018464659825745036,0.00027813301712415416,0.004984875542009315,-0.03853414424941981,0.518044373052787,0.00700028269531147,3.086803537336541e-05,0.025562597971555915,-0.0028639180981280005,0.02936681763751513,-0.00551542257576094,3.258257597877907e-05,0.0007189617070469073,-0.005336372737211696,0.01473187585524191,0.0007291828120432466,0.00011668388005076804,0.009838857218294765,0.039444518472330346,0.30508635584181265,0.017067833668747,2.9864568853326762e-05,0.011678891730524586,0.00887319814762094,0.030947249485898738,-0.0523910694905886,6.356755479980265e-05,0.006483959779989862,-0.010083030569350022,0.03435291774225386,0.010501409180821803,0.0001342072724172974,0.0016786679850325744,-0.024503356993475358,0.024006803581640312,-0.0004898453890676669,0.0005834005169119814,0.0016467341402847625,0.003770900397831619,0.013618330530137427,-0.03878057929577571,0.00011654863721051716,0.004747621502186948,-0.03196400012321577,0.11982495043927947,0.013844237563902273,0.001712115426342307,0.01700804441601497,-0.04142979067619376,0.41205154867718086,-0.0328613879056384,2.5854931028124066e-05,0.010440968493367198,-0.04959365022646578,0.13227442131744252,0.011815927453239465,0.001225805242092143,0.016892377316332304,-0.03461009610605765,0.27134441967170064,0.04303568580556531,8.493908024491437e-05,0.014121802925900066,0.02682292102495251,0.046221791466535704,-0.10716387438428375,0.00013696344883451267,0.0021885604776844666,0.03883767264449946,0.06409848675397756,0.03521541951959769,0.0003477837883650203,0.016553655947801164,-0.010671342561086643,0.03786902354696786,0.0042358190643369455,0.0021841642562244806,0.0023102482206699593,0.010560142167458281,0.03807487281648957,0.0033726917459384227,8.898599770531336e-05,0.0057393703380884935,0.0005781052774023045,0.000833118678045953,-0.007533233269733435,0.0017249529534119064,0.0005766086821018964,0.021168129812478113,0.06139208598358288,0.0032241006195482228,0.00013661114662442926,0.010797370077766575,0.0035953276717776627,0.01000568556529042,-0.025872019406272997,0.00014566392317339686,0.025097742699935113,-0.00280379200271966,0.012139627445536162,0.0011708065637400932,5.6370820846935695e-05,0.01237892665901336,-0.016072298414097137,0.059573756179490484,0.0005947090831419636,0.0025570608422893007,0.006167642893348097,-0.02644220852716546,0.14391876589048336,0.058632337050339614,9.139467025125983e-05,0.013420271653507862,-0.011419119042985369,0.06578869373880572,-0.016771254106261062,0.00012587576456421986,0.009405642087103129,-0.005588448349739456,0.028539234610463902,-0.0018170977044600744,9.261847341894626e-05,0.0029269761240363398,0.0004130698089551006,0.0016898125896002596,-0.023258568558432256,6.143732629575779e-05,0.01104271041352479,0.04629338327225374,0.08909452615455901,0.0017878755950829833,0.00025333622412923704,0.01958210592686292,0.01733744443814745,0.0668113750934327,-0.012194995576650316,6.452812527338108e-05,0.0013087651731038359,0.005000911803455855,0.05171360401072176,-0.005813307714000132,2.495029444777847e-05,0.01487739788056579,0.0267801345768017,0.08086769324827987,0.09025763111318369,0.0001157568405302922,0.006867889101088446,0.017086855879288383,0.07415435850206463,0.025793830202604864,0.0003632063602562655,0.0037128812969288733,-0.04135544531957999,0.16857233391711784,0.05816739467715938,0.0001405135473524344,0.016523703530242115,-0.0036461234978546675 +2017-07-07,0.007554387644716421,0.053225044856942946,-0.0013465941201925215,0.00015009624039125544,0.0033515233944052926,-0.0029193976882591617,0.00933152582363743,-0.002291764777188346,7.506735679149433e-05,0.00035518845687900624,0.005990469464290878,0.017968423291683987,-0.19760608726182788,0.00015422262584778912,0.004052027649749082,-0.01787269015433292,0.01924601351960051,0.02269836824041483,0.00031341299251839424,0.0061175373614580225,-0.02744907843775848,0.06326502757382567,0.013099401809765586,0.00022701880793082288,0.01081682141581139,-0.023997156966507355,0.055167541230772346,0.030640649757249002,9.497797455097805e-05,0.00030601551571583785,0.02756785772078417,0.1238625936565796,0.0024070494971013116,6.530594287383466e-05,0.009485574042518263,0.02771477932745847,0.25544705558933883,0.04023049028595463,3.720567073573835e-05,0.0026481471706833043,-0.015080831428022037,0.01113078775560673,0.01031288830368497,0.0010448264792915353,0.0036101263598901003,0.022818138015393865,0.04378670135633674,-0.020758132607983534,0.00018222160178355727,0.0013285230220779448,-0.0037932448497787286,0.003044112366085113,-0.0012989073678528753,0.0006090803039045571,5.544089082901984e-05,-0.013600828955858839,0.15715358569780818,0.03203998151068652,2.579074418836619e-05,0.00548585315499543,-0.03449785252107295,0.09496521917538532,0.007609633832228756,0.00010791418227482337,0.04542825828435871,-0.004409707016186451,0.020729527390327476,-0.038856152562544634,5.9880049842033105e-05,0.0038425508272728177,-0.004649227971805896,0.004628840154164388,-0.02535524546571098,0.001958987346874849,0.016698561882472124,-0.015673386187087888,0.11283945834623878,-0.0006766776685800617,0.00011430203159754406,0.0004715990993323666,-0.03852638513050599,0.21508405432311298,0.020862515020590472,0.0002773692290379473,0.013727720355428125,-0.020357337390503712,0.1163225999156694,0.008004010835311257,4.929669796249219e-05,0.00038023508298291506,-0.043394825358344644,0.19339508342043274,-0.0038029714315764044,0.00036981057272775583,0.025280910694405013,0.03802971353243045,0.48708214074952716,-0.005544207377964885,3.2400452769343605e-05,0.0012415582724078678,-0.0170603275503468,0.19812385015462283,0.023539912809800886,2.876950006904696e-05,0.01131409643110438,0.0012570260056565666,0.003844376325798178,-0.013617830538944796,0.00010532734190320001,0.0011014507326374445,0.054389418065538486,0.3745023157131823,-0.02054593477109804,3.354689124502759e-05,0.001156157360618854,0.004595816458662142,0.011871288971133605,-0.0214185113188755,8.583060656533843e-05,0.0012322096949176982,0.0029312250440756715,0.010860763211193622,0.0026504906035505244,0.00012340632318272695,0.0019514398731216825,-0.014500975441075075,0.01591792328071637,-0.06603284608100919,0.0005206985534873047,0.00551447769701585,0.023444774994071074,0.0909269405528766,0.015209577240229746,0.00010852742522143083,0.005428250672694692,-0.014654865236989266,0.042857710650937714,0.001814908154573566,0.0021946841914180313,0.041637802586893265,0.033153487366756496,0.2738788539083421,-0.03556760633075527,3.1128121389757435e-05,0.02563451814960461,0.0019443030409794823,0.005081777298176019,0.005163505788477375,0.001250891370363721,0.0022628749011323517,-0.00275385802533163,0.018832103137545478,-0.02860189036259552,9.737968508706579e-05,0.011111256109440882,-0.008511802391890656,0.010830588946493198,0.001124303798734126,0.00018548758442243966,0.010179315987028717,-0.003991965674889795,0.00589962634831029,-0.004433998973050693,0.0003883883599619322,0.0027105956976299648,0.013052910960842214,0.058680193975629444,-0.01320011570107509,0.001724114784074961,0.0043142982765147705,0.02057824020511547,0.0707873686186007,0.03352328405546091,9.327018413700392e-05,0.00610385159216517,0.0316110886771285,0.04288061388016126,-0.004775854437962183,0.0018325492313923202,0.007302030019265827,0.023128169853597794,0.08392263945011925,0.009508823592181024,0.00010918881940750108,0.013871805682596864,-0.012015517059433939,0.030454888991770596,0.004091750929211437,0.0001599358488380605,0.009594139709475966,-0.040815291103376554,0.18607584878372324,0.04031239244806719,5.35361103742875e-05,0.012940286299556377,0.017463281303473587,0.05973001288425803,-0.05851769675115713,0.002771094263639637,0.009119743109724993,0.018236401560926888,0.0858374110619514,0.001061266605579525,0.00010568250697920353,0.007912559992255637,0.01563985829255257,0.09602329746296905,-0.011208198159740541,0.00011811824415202952,0.01609646632815918,-0.020482602933801622,0.12918432311578715,0.006241722932046291,7.499357043393992e-05,0.008085226080996818,0.03712316383094123,0.17659979826543876,0.02440286041906413,5.283262311512966e-05,0.021196277197356717,0.08663255036590685,0.16121820315922855,0.08926039529636551,0.0002619970596605263,0.009074590218002733,0.00313006032928163,0.01406513887194245,-0.00047889725975134434,5.53379491117365e-05,0.007663100502657919,0.016964908868615677,0.19077918916204004,0.0022592640144394167,2.294308519967429e-05,0.01855108445545473,0.00648419754101256,0.018158032414977866,-0.15427543787235143,0.00012482351689888424,0.004510808149656512,-0.00595893831086689,0.02300662220335279,-0.0023651459503587612,0.0004082667385918816,0.012284825347189797,0.03159253007260669,0.15610880835771682,0.0042704735857343875,0.00011591210557021164,0.015248514651570167,0.0038728379722542863 +2017-07-10,0.019707751215836997,0.14594623518854136,0.020486944072833902,0.00014280083888090024,0.018629288108665872,0.0009499490878133437,0.00357699709854299,-0.03436660094479141,6.372242117740266e-05,4.655034379044535e-06,0.0335405814528906,0.11853243999743905,-0.13348093940084627,0.00013089726343831456,0.006328726799955055,-0.013022258504057239,0.012547322048839389,0.003277991521620247,0.00035027014608924966,0.010767778186899103,0.022131361080408096,0.04712140635419105,-0.01191393798553669,0.0002457466761898115,0.002873440497682224,-0.005171596890175106,0.018276058753812864,0.001269751381056684,6.178582640750061e-05,0.0009453568770787337,-0.017772473266685195,0.06932940247808701,-0.038071957292449346,7.521773778402262e-05,0.003569127079105046,-0.039464894088790003,0.36833079196468965,0.07467685221072445,3.674273912720901e-05,0.012100954994070197,-0.004519768443887383,0.0034277218626345366,-0.07082690596364105,0.001016846499238919,0.0026817167017260815,0.007951673254903379,0.016625414754871164,-0.018476462675690485,0.0001672429902236302,0.017510191639196867,0.006053229752915862,0.0038116615274108464,-0.014852019961035171,0.0007762420899085242,0.0060514530455804145,-0.019802539782258335,0.3275453171817499,0.0661194350387906,1.8016577285941525e-05,0.001544261467625896,0.05343928751270701,0.15850894712971017,-0.011751504723398485,0.00010015160552153193,0.008300426524524746,-0.0004958762182287405,0.0027731017757910937,-0.002858893597076429,5.0334909234377875e-05,0.012620053869146278,-0.024200363767887808,0.021696816280326006,-0.0028852141735381622,0.002175448743194303,0.0224317407609547,0.0017559623769250435,0.009913166863049275,-0.12684567781205644,0.00014576555072714925,0.006020879427568678,-0.04592807790117889,0.2666266518615557,-0.07783731513546087,0.0002667368040604253,0.004046349387598806,0.004675459964810784,0.027974723909476824,-0.002350298509153582,4.7078160969133e-05,0.000371520891675571,-0.015791789613405507,0.0856305120425109,0.0031101196169258313,0.00030394122950304744,0.00399416967715453,0.004672594307562913,0.06089323112547518,-0.01025941130773857,3.184338939076952e-05,0.0638751993846945,0.002531788443985924,0.02743819828735324,-0.03713597960744981,3.082858077791154e-05,0.011358104389776521,0.0006470779986552823,0.002177095017184665,-0.0012365753107167214,9.574189201498952e-05,0.008767447847561144,0.0324449421362672,0.23223000355971557,5.551153193436719e-05,3.227164111493396e-05,0.014384056498251252,-0.000637262301487121,0.0018989188838250022,-0.03887768853158513,7.44027857764551e-05,0.011076823187198694,0.015700001842875403,0.055878921366561335,-0.06966615034618098,0.00012846957419395517,0.002390074405191673,0.08047775841296763,0.06815696049361976,0.1757429782837196,0.0006749027816507093,0.005082011185678451,0.026455441799661236,0.09576296745757024,0.04591116730522086,0.0001162795740728649,0.004626097644003317,-0.0574874664144505,0.18697294160357125,0.04802895962130517,0.0019733929975380964,0.020274087320440143,-0.021664377162935986,0.1932402146325877,-0.03292996536337283,2.8829087212473278e-05,0.010424959161437064,-0.02449805901374392,0.07559848663623676,-0.03410871184877813,0.0010594728807132925,0.027649711841477694,-0.009416963199132947,0.0749408645992865,-0.008229148619102716,8.367925734907702e-05,0.009540386088717339,0.022799337430490563,0.033492717399317834,-0.009033916597289988,0.00016066350138680609,0.005163878780489319,-0.005661087979583618,0.00842440412766932,0.0037587020994458717,0.00038571331033491335,0.008630167170440272,0.009241663065236883,0.03446082700060599,-0.029614831871432892,0.0020786184435846004,0.007703857413119068,0.0030488028928928592,0.012909397484089443,-0.08446277775639283,7.577287142129231e-05,0.011096853385877042,-0.038747685731932754,0.05437161471525512,-0.010719211380680417,0.0017715390491676167,0.004001056569767012,-0.03009790005728399,0.10328256369943577,0.04268260646385742,0.00011545831702364829,0.003817753866962659,0.030095387379783265,0.07323812255591494,0.01762565686660163,0.00016658009721146945,0.005066014805584235,0.006869292988669958,0.03195813952063112,0.00028067471598555005,5.246195575982984e-05,0.0021393917090979362,0.05035314471219252,0.15090071908055136,0.009039999565061149,0.003162666128788436,0.0062292062701584236,-0.059586918228059164,0.2715556433787779,0.11461393162272615,0.00010915224257337554,0.004893875513612926,0.042466957673043065,0.20793235390405881,0.031254791829807664,0.00014811186947829484,2.099470259358518e-05,0.020981888079004876,0.12868152254914358,-0.001879219845794417,7.712178521033453e-05,0.016016905442854158,-0.02381885586360476,0.10894999038670802,-0.001306960724416591,5.494663425962173e-05,0.019537502810108447,-0.02141476213463175,0.04340561132556636,0.01086931299305527,0.00024054524240195088,0.028984023619960955,0.005008524068275049,0.01803689976739091,-0.053678091540574194,6.904977203466147e-05,0.005807285486486979,0.026224099936956586,0.2917968594785405,-0.008447122114191437,2.3187357786573362e-05,0.020125723398553313,-0.002392701502013532,0.009735375341071547,-0.001950945081112412,8.591021118886377e-05,0.015210794592134704,-0.03567364717830696,0.1278982389090788,0.12994352272708193,0.00043965388901168206,0.01000721808049545,-0.027307688051135058,0.1433106731063609,-0.010905988517313475,0.00010913855344759457,0.006712436798517867,0.0003927059489709346 +2017-07-11,0.046548388191356656,0.3051399414719365,0.10525432412651876,0.00016132147075921042,0.002772869952471245,0.013659965577486262,0.04652210977968636,0.0027444339676417195,7.045320099033937e-05,0.0013178067818669155,0.05362351344479144,0.18728141919421984,0.11147599847605597,0.0001324517737460262,0.004736276666041832,0.02999977152335768,0.027139495754374608,0.026639810007227163,0.0003730645899155577,0.012117086617004977,-0.006577158058602447,0.017175641842918477,-0.11416809121651014,0.00020036556051711822,0.023325973678552714,-0.012563941699972398,0.03593011318534905,0.009319553835284848,7.635088352033598e-05,0.008160535410047912,0.012723920950646554,0.048263400934336856,-0.005166643600948357,7.73558024839226e-05,0.005531393639381476,-0.0050060003435941185,0.04947114822556359,-0.010274927479769698,3.470064114681255e-05,0.0003890471407523966,0.029868792721810398,0.03128295022380459,0.026880800436956703,0.0007362999178634805,0.017878746986865018,0.011406295468552942,0.029064426133225692,8.090822703318764e-05,0.00013722863749057062,0.015897356177021652,0.00871690459869326,0.005698035003689918,0.012195510465814125,0.000747758809655045,0.014036237061044628,-0.005562260957553082,0.08270088789654897,-0.0021352432209226185,2.0043057731562313e-05,0.0023280310162954463,-0.03318224108167328,0.106003464642486,0.02268742996626255,9.299009515037265e-05,0.010306306514461863,-0.015403584302703244,0.09353966231407726,0.028521371433986597,4.635406339434706e-05,0.0016655055358975846,0.001492839385731881,0.0014126608783568489,-0.005715980867344518,0.002061095613443111,0.006523464867555624,-0.02282199945881355,0.1634184742737644,-0.10678149936707533,0.00011492238940517382,0.0074453761995821495,0.057702682233098726,0.3558381222126993,0.01685724270813059,0.00025110291789983807,0.0076644234537957875,-0.02848621050292556,0.13994570085777083,0.016905571933961284,5.7337146261210896e-05,0.022419182007043657,0.0178999472014227,0.12325067872280789,-0.024957622130563545,0.000239358711246664,0.01006179604512631,0.03417791147016875,0.4924662286583944,0.01057150175249506,2.8800451625962406e-05,0.005229352185405206,-0.01795565576763186,0.2583839382693056,0.015946261071015395,2.321760757629895e-05,0.002901129550789482,-0.032085193684735176,0.0976297090296973,0.043955779366180295,0.00010586329959026331,0.019585569435698152,-0.034117983651451494,0.2221289687007387,0.009711879442525467,3.547893155200415e-05,0.006542531923738451,0.018274939707127683,0.05987368849871099,0.05330320095334501,6.767017842286299e-05,0.005402506886284112,-0.007597989536573078,0.030980803182033875,0.005372778183853823,0.00011213846681612207,0.00708103305441467,0.003724090376903701,0.0035747634486372297,-0.0258793171165587,0.0005954543395586137,0.005362168591653407,0.014402562277092369,0.06601462636844924,-0.11002048413058212,9.183021503453683e-05,0.017772896913921463,0.0035336648239672436,0.014450835223303449,-0.002192436951236819,0.0015694647972784364,0.007812522153230821,-0.07353304103078874,0.508681295409197,0.1341293258982338,3.717225893563808e-05,0.019077957490050652,0.03863724170293827,0.09646677213584375,0.07270316937353302,0.0013094823153672133,0.002135020184620389,0.01017512449355921,0.08068551394676704,-0.008296617102429049,8.397882717489659e-05,0.0025894417338879526,0.0023140715125760406,0.0031941816172603994,-0.001513281416029961,0.00017098678885432475,0.024217581557927855,0.003262489805860761,0.0044872734158573555,-0.09546798166806865,0.0004173212933150155,0.018458310994781735,0.010675376004491399,0.04011835822153109,-0.01919165641962259,0.0020624829630352917,0.012726972586227422,-0.0008329927128716101,0.0032742987368680056,0.00014932689654729335,8.16231351434645e-05,0.0020768882324150475,0.04607081950444912,0.05997304813267074,0.00117785360674008,0.0019096202303074353,0.0358031869423495,0.01859291793701011,0.06196691786455019,-0.004508568998395144,0.00011887860315258874,0.011443902315599412,-0.010848742303472483,0.025771303124432415,-0.0756443097873003,0.00017064885953387539,0.0061017989178549625,0.011037130159359686,0.04259187939513137,-0.03789671526747635,6.324748855880536e-05,0.007875619067220136,-0.014560654102953284,0.04927032990714738,-0.012050359259566884,0.0028010023472299877,0.0010462923900847595,0.0017805754844343175,0.00957475009107399,-0.080882175899367,9.250676908303646e-05,0.018003856789402604,-0.0257714480801323,0.1432245696165226,0.03127718593617568,0.00013049145705857235,0.00249158779340944,0.016851577268557818,0.09253162246406822,-0.0042584505547445615,8.613885162163523e-05,0.030016767387727395,0.0241841468670664,0.10619314433302643,0.0017226205569091642,5.723763570703673e-05,0.04327982775800701,0.043829129778163084,0.08574148903765128,0.014184687427776876,0.00024923051821589866,0.015868546710095466,-0.02473287284224722,0.11357993386749764,0.021581145515689418,5.414861204080244e-05,0.010593141660495537,-0.038095222860520216,0.378219657306177,0.06469948255252515,2.5987093395823475e-05,0.004754448466889696,-0.009411378402449287,0.0312921327328018,-0.04103287940819685,0.00010513009000196105,0.001055976667709121,0.007325189502665929,0.029820099591003568,-0.040136352901309076,0.0003872021371714014,0.0014265752186193295,-0.008809784423571408,0.04506645394808497,-0.011687526578176267,0.00011196536245137667,0.008242892032092245,0.003307683765771576 +2017-07-12,0.06779498216600055,0.45551873673859483,0.1235585350085643,0.000157390273239303,0.01152182174646312,0.07308290070829813,0.2207853490219337,0.19136650857352344,7.942478577927707e-05,0.009995370407658688,0.043988505068952036,0.18517102905446253,0.05482826813091933,0.00010989131423533964,0.00601823581418821,-0.013217570263580003,0.013585142004741169,0.016558009406466075,0.0003283638217170684,0.010563059203943605,-0.007057765786799239,0.016253052358799976,0.002002943394889559,0.00022721138028769175,0.0035023305069119357,0.0044450009044529025,0.013932585943990203,0.0055224206218424995,6.96605441790159e-05,0.0018400237924230053,0.013428436245245695,0.05014501505400061,-0.0027031690611642825,7.85755683028329e-05,0.009716432360070413,0.05634336863847514,0.5073086378868209,0.13604020971642458,3.8086333530564753e-05,0.004769338462224384,-0.0010455708374636755,0.0008793389914275637,4.567822266694882e-05,0.0009169421087171001,0.00528010396687382,-0.010655084861747485,0.023185864860485204,0.011430119374718429,0.00016069245993384284,0.0012138434324391115,0.006806183066680884,0.004275128712894155,0.006581509825779598,0.00077817771524238,0.020633916317164536,0.0049901062928584435,0.06057480981194137,0.0028865262774733754,2.4549379903261703e-05,0.0019054771093602416,0.010620570117737496,0.02871655903277693,0.0018708303489480035,0.00010986679842094224,0.013596666434084895,0.02638939788168797,0.14806831399639933,0.11137946751869195,5.016827498571124e-05,0.003403751312494947,0.016609287023721428,0.015108758638600419,-0.021352850973344013,0.0021441007034767646,0.009048509581774881,-0.0018026474549184858,0.013519113184199906,-0.01742502995130775,0.0001097273026734879,0.006012199646445312,-0.029313989314674233,0.17462500414872492,0.008249106179211528,0.0002599421625658857,0.0034974769805814036,0.05639215932146807,0.3791885662988821,0.05560112138479375,4.189135875201262e-05,0.015144286221912795,-0.008518496059389116,0.04614465868092472,-0.027101527834778896,0.0003042483953011697,0.015937536489128226,0.013534006483373565,0.15092919336702104,-0.0032343340759299504,3.721202983395991e-05,0.017305478372451024,0.016515487883184993,0.16745569808670252,-0.018203473526795255,3.295134807227054e-05,0.007168176112301403,-0.062391022167481096,0.17688473229252008,0.15600190076354364,0.00011361992755004178,0.021775293980523063,-0.023684112955184185,0.15368694257223875,0.012712932784382498,3.5596928714430584e-05,0.005658844803644764,0.01325090330005237,0.04187881284920039,0.0288405198821567,7.015013398716217e-05,0.015147900850841042,-0.003848782053180061,0.015820402431616868,-0.037534017207908256,0.00011123831142098344,0.0065183467501209865,0.0008915325191895063,0.0008445065349788036,-0.06517560845776796,0.0006034061548646643,0.019373927224833998,0.01080733904917326,0.04373182148522028,0.008457007512482372,0.0001040176933593385,0.006869377942692639,0.010457201318385073,0.03719114229955849,-0.0003612667195946484,0.0018046588933956244,0.01942628834227285,0.03667305982571045,0.31744306575045944,0.025971893493209216,2.9707321580611578e-05,0.010906714442566473,-0.025572900797864565,0.06929955724040936,-0.13215636391783386,0.001206481880379167,0.010617810487958504,-0.0075398140870448485,0.045722318970270244,-0.0039266001238814465,0.00010981408102654018,0.02646759391272965,-0.022447155054938727,0.029164127844741122,0.054742990692220404,0.00018165932637457974,0.01754749597403316,-0.009423043738804697,0.013403743758315236,0.008280612883275721,0.0004035236600232306,0.017351664944438242,-0.04131129911944572,0.16357431284509022,0.08034664503908198,0.001957510449574198,0.0012370974110925683,0.017245919017289602,0.06265871377802755,0.010135730708399253,8.830702158428478e-05,0.005081592041348037,-0.05922568856728815,0.08446402047646641,0.07597893966069327,0.0017430729385678092,0.001334513914029164,0.024530492245081036,0.08036501610134422,-0.009380890444585066,0.00012093590630146476,0.0009203828974953246,0.0031315693257530954,0.006890487136736699,-0.00474175559381962,0.00018423514488040426,0.00034605353991514366,0.03577872780018733,0.14797593093708805,0.011908567832296197,5.901300613836455e-05,0.022332511320093597,0.008391623001470389,0.03288487248377119,-0.04613261371554601,0.002418621228987114,0.024358175494708336,0.026747917366200368,0.15305708397183218,0.008426962329471906,8.693148702577165e-05,0.005287372726607161,0.04121693155611721,0.27380818887818664,0.0315553262505256,0.00010916665642910285,0.01832445170211889,-0.03129453002731598,0.16347301082564134,0.030172011444364412,9.054637561321342e-05,0.0025156856754178112,0.005329455591997921,0.023680389999153482,-0.029777988635446728,5.656416650912554e-05,0.006537636083535043,-0.024317126279284323,0.041378241055563675,0.010892943872444749,0.00028652968268860817,0.03964683155727216,0.006445025126784013,0.022504844463602763,-0.02089267012300927,7.121360559451466e-05,0.0032908638383128425,0.006657309747170109,0.07238207718262074,-0.012350095685237223,2.373006934688572e-05,0.012203638206396581,-0.011813004650204595,0.03323567071635214,-0.007626863453538178,0.00012424098673276994,0.0030951205288469513,-0.014604429601878438,0.07331902504452656,0.01793497031692037,0.00031397559289107334,0.011692687103308442,-0.004413140672488476,0.01962538690173708,-0.013132763854168273,0.00012879569288161028,0.006323409151875388,0.004666844863588905 +2017-07-13,0.009891770421527338,0.06867272060185622,-0.001261837137316563,0.00015232681412289084,0.018231022478688973,0.005507782964446029,0.018166175130605585,-0.06069055456545915,7.274846738653608e-05,0.005985874488592061,0.02636858255065776,0.10348506835670744,-0.007951466922568276,0.00011787081826755131,0.011476260752055703,0.011558815847793641,0.012161102882617186,-0.15481535015827338,0.00032078070565116267,0.004530565014041256,-0.003928604012551347,0.008278216316973694,-0.0006356577750974019,0.0002483128859864536,0.01571901112340518,-0.014698927482714919,0.04534833927945816,-0.0036683496242361324,7.0773553188924e-05,0.00852248584532354,-0.07450749060077286,0.23829150150411482,0.11128787979137328,9.174475348313661e-05,0.0021738424033021083,-0.006403287084961009,0.05853628401555078,0.0005185365872282754,3.751253716460132e-05,0.012311191073678862,0.010842208509842261,0.008604988996668115,0.006087721994494718,0.0009716552965546467,0.00659838711696867,-0.030764697719397254,0.0719491607551511,-0.01103649875917229,0.00014951639119301706,0.0004103292431593556,0.012799161627616375,0.008950567339326553,-0.004268606577070673,0.0006989648195671801,0.014411506140726197,0.02853197515073795,0.38764447967908655,0.10585202104817255,2.1934160793004563e-05,0.0002466528423610971,0.08951410294321084,0.22155299719725888,0.09546017708033158,0.00012002310894254059,0.014089311845321875,-0.003712455643844004,0.016842614861032557,0.0008951592110538795,6.204596935202948e-05,0.0003084248797643948,0.0073970956311119876,0.005224119677627401,0.003384363423272907,0.0027616655883756554,0.009903678574011497,0.025377496906115352,0.1978362095727048,0.008521684488610239,0.00010555896143546096,0.016613903012165133,-0.01391782219556486,0.09142619400580067,-0.005588500380837469,0.00023572675351539915,0.019663067360208883,-0.004096028418178893,0.024337857803756045,-0.01314046023425902,4.7406901154278626e-05,0.014236651042525418,-0.030414621585936812,0.15899083585174942,0.016267981648604116,0.00031528051576802077,0.003581994395073498,0.10206330510530683,1.458485356963474,0.12817192755974532,2.9040078499718932e-05,0.025117354395082576,0.01810518325438532,0.17347231888259942,0.024707414770799175,3.4870200946481734e-05,0.008705092947370612,-0.011598222235942375,0.03115031434722724,-0.002346023064372583,0.00011993660417947414,0.006678094913917733,0.013311508138946264,0.09897728963366183,-0.030717049278049496,3.1065910096796985e-05,0.01248185228477259,-0.00354693328081934,0.011314583447707605,-0.0013706478749524209,6.95011245708923e-05,0.005637475276798424,7.375508512637978e-05,0.00025956015765097625,-0.01592582668087618,0.0001299279346589742,0.008121826579776477,0.004724286625021784,0.005039433262833662,0.00411755903119605,0.0005358337958999663,0.004195219233138647,-0.010393067007567461,0.0418213830107564,-0.05868084576890497,0.00010459991841767448,0.005789715345177868,-0.005177072536325078,0.018148939092685293,-0.011040824957504624,0.0018308475426975384,0.012485268578701383,0.02403917375789849,0.21219798913497914,0.009350564377558143,2.9131340390631798e-05,0.023282578881009958,0.05552268194351404,0.18170478262939077,0.13264684657997555,0.000999022678748903,0.014242735430602425,-0.04319668445319508,0.2996028239109918,0.06826587577417054,9.601302541175026e-05,0.006659610894016603,0.02832634152366309,0.04630762797276074,0.02784694689198803,0.00014437212129574852,0.0051284953033751786,-0.001833341321198395,0.002828762557650235,-0.0005144824003871154,0.0003720066863865295,0.00936016885808392,-0.0039043748554517714,0.015204700541300986,-0.04765946416581271,0.001990324904630663,0.005817751122046237,-0.04171370815968804,0.17149837767875853,0.1280489917302197,7.803854304838693e-05,0.00379633086112413,-0.018378468334534603,0.024843265314164264,0.002419769280667957,0.0018389834835291655,0.008110008422795903,0.019581859996646966,0.0661518254594814,-0.10122646206583212,0.00011728113078909003,0.017061943085688543,-0.040206366106628456,0.09946061397488633,-0.022852877208146518,0.00016387173926734225,0.0009391026842779447,-0.06576016065574043,0.2610005385730442,0.16627518344323539,6.149437431532397e-05,0.0012093311875295224,0.008024835889596984,0.024270916194242154,-0.029227872881747146,0.0031337766984819416,0.001146236568563291,-0.010071337001895494,0.0483799610681644,0.007607211427917153,0.00010355288061235627,0.012922052648204325,-0.023016055910646434,0.11470265480128443,0.03303271026799355,0.00014551850304587028,0.002080844552482623,-0.007263766758193446,0.036883389345193175,-0.0011225241001784902,9.314933656208606e-05,0.004997153551949979,0.015196274521360386,0.06515299712115223,-0.07312844194269186,5.862058211877685e-05,0.00011701933623065063,0.10193911244011021,0.1546401592611236,0.08713521826386642,0.00032140154028924197,0.0012859808515419402,-0.0008284083488013531,0.0029997989038283253,-0.07963823547487928,6.866994521417419e-05,0.0006081083982350866,0.008628848725445934,0.07843769054897627,-0.06366238957551257,2.8383068321192422e-05,0.019693239420130508,0.003233580967960313,0.010129656198959782,-0.0034629730306525272,0.00011158299109706966,0.005679137038234706,-0.03763841891459965,0.14246921868694473,0.09234147697651524,0.0004164264435919173,0.007291892567278389,-0.007227052571197361,0.036993713923247254,0.0019764127618616904,0.00011189355601385149,0.002503298689173352,0.0016921170511593952 +2017-07-14,-0.022632574462235218,0.16258867653620132,-0.0014501657688202705,0.00014720760462239496,0.0005685724791095576,0.01913213614210525,0.0568909946083884,-0.03647080406681446,8.069199681477259e-05,0.0028903147152779677,-0.004972706445728005,0.014718859634867973,-9.441883756209512e-05,0.0001562844839434416,0.016252492819615137,-0.016414308634958255,0.017654400382999133,-0.16195114755600462,0.00031378882989882486,0.0036557639440358194,0.017883395990548303,0.037670512475395955,0.00393171001814456,0.00024839693747541556,0.002149129410431368,0.029833778113124227,0.07272818547095948,0.11815180038983915,8.956786926725924e-05,0.011493833638723375,-0.0456889989649992,0.15894666121379075,-0.002108744708556617,8.434320275121633e-05,0.015483019945596317,0.0599686946576752,0.5432993091008377,0.11053464765700698,3.785158390760886e-05,0.02186645948740381,-0.018009217252497437,0.018420335449270384,-0.004269057210431607,0.0007539492074535407,0.007624290060747028,0.007378135721311626,0.01845557512798429,-0.009800358516554426,0.00013979155717849248,0.002733373043918971,0.004018740494441662,0.00307130157375718,-0.013526532869727933,0.0006395755588627594,0.0010537225356401592,0.0013813621485158837,0.01589591638278087,3.052218474930468e-05,2.5896720606765252e-05,0.011311090398843652,-0.028256726379928085,0.08703903275693008,-0.006641272305071219,9.644036111443086e-05,0.016171469848069768,-0.008090373257548,0.04845058200684964,-0.06326350363823846,4.700362780646325e-05,0.008488363173108767,-0.03571829585632477,0.03128287672222056,0.007019778001334984,0.002226932326314787,0.009985400684722671,0.05516576031639258,0.39116870087122024,0.0861514758515621,0.0001160533331435262,0.0028903776747389613,-0.027260881381340512,0.15943840701044049,-0.03432991998909841,0.0002647617106307253,0.01521675597003296,0.027249287997526895,0.14354758470189363,0.027126807198165417,5.347123629420603e-05,0.01422266824765869,0.01761912450461407,0.09562709139702527,0.004542778942191733,0.0003036618164066607,0.00336256727403738,0.006716031916428116,0.09767738428938078,-0.0011349591884581155,2.853310020164222e-05,0.013000827437042123,0.007156840177781826,0.06614252239732962,-0.03938260371612006,3.615116313522889e-05,0.009588753538763038,0.020070301265116598,0.05034064325858421,-0.0076782679350780635,0.00012842745802350944,0.01624651506214995,-0.030340353421066314,0.23028853375425218,0.012155125131817154,3.0432714855670412e-05,0.019976353659369596,-0.019331565083600653,0.04633571791557202,0.027831195700004707,9.249718203191834e-05,0.005872212383006282,0.0023801558914812843,0.010685969549089331,-0.009948054940173406,0.00010184508289808259,2.9358144738184924e-05,-0.02251125565146913,0.0216861739474385,0.0032500797458121203,0.0005933245855192589,0.022828298714394988,-0.020467248421841173,0.06768579902547571,0.02569688979297154,0.00012727640791380167,0.006119507453103974,-0.016459751532815134,0.06803021081697178,-0.015816397962998188,0.0015528897843442447,0.01942274755647369,-0.0277678936584332,0.2676775595245048,0.014530519653085048,2.6675536864534258e-05,0.0009696823510651565,-0.002184629851567019,0.006425295984185669,-0.020673080120647867,0.0011116190866143334,0.019240054393976396,-0.06876125560354591,0.4448275879343075,0.14912450058439966,0.0001029384744248493,0.01755118402539617,0.00827163481491723,0.011197629637363813,-0.009881508099780058,0.0001743454587809807,0.008748687784007964,0.009499998212427686,0.01600186390931595,-0.0034533438377483175,0.0003407664773703777,0.023713756734012204,0.07705028944881578,0.2792420975890841,0.19144755834341032,0.0021386697370557764,0.00946838734038187,0.033181085074837205,0.11520770290294151,0.06469381658079444,9.240584378012832e-05,0.007285438418307727,-0.02553929836497324,0.03569489553917724,-0.01595016636194255,0.0017786071681978022,0.0025878244946789565,0.0006156036429070559,0.0017384480145664013,0.0015735308263272042,0.0001402993016533872,0.00315902147909454,0.00557406905214703,0.014488853640668299,-0.05765640758601895,0.00015595478172104768,0.009745946195599745,-0.03397091066988047,0.129782301193016,0.0376611344650463,6.388599216715329e-05,0.02383862630663844,0.006601127791620761,0.021583688527795245,-0.1797959971340267,0.0028987484752616304,0.007777436560941299,0.00029544349011014366,0.001380534164561265,-0.004857900628897808,0.00010645543453380326,0.014451030401180202,-0.05390836091474084,0.32668818547415096,0.12562371087025198,0.00011966950179478858,0.02037418988645055,0.03156499153333831,0.23590710410282772,0.0567862009799687,6.328683201395119e-05,0.013142017801221165,0.011255510623177613,0.05187774454336542,-0.06837577687122132,5.4529499413093114e-05,0.009550005734210673,0.007758500505638061,0.014354204559580691,-0.09526314423931595,0.0002635287826497168,0.005265120415747875,-0.02825385145129407,0.12004467389996543,0.0870954360293951,5.852603964441378e-05,0.007503382264081949,-0.021939678074768716,0.24563437606943922,0.009092170178617694,2.304477068287511e-05,0.013085498232932138,-0.031818103719867305,0.0977790000188088,0.07987127961526976,0.00011374640154590772,0.007870369050619785,0.007790029654759087,0.029430563878588573,-0.01325896486172003,0.00041722324713103974,0.00466984562563779,-0.03394058043268729,0.16765470486088502,0.025454371360211368,0.0001159512181683154,0.0010822971110637626,-0.0034497684352445533 +2017-07-17,-0.04910032203838245,0.3119985983955172,0.08788014634689495,0.00016642489110960595,0.022635028215285347,-0.0485535882401321,0.1460308817118685,0.12245113282057496,7.97787358112841e-05,0.015133169886617613,-0.01895280432632741,0.05940585600179165,0.0035969190289934587,0.00014758473002667046,0.004956491605146652,0.018042018035919927,0.017943184074196174,0.028686623273249022,0.0003393543780731714,0.013564065895646349,0.004225725929746615,0.0100900384085609,-0.0007250247958727978,0.00021913224053679833,0.0011105349417681115,-0.023371930802007952,0.06631297586852368,0.04640125079329296,7.695605809769483e-05,0.0017071078272604958,0.05043777995988646,0.21311742320515278,0.03545429803875591,6.944274206842327e-05,0.043789533504464934,-0.01958418336339869,0.20028825482103865,-0.0015169270661517702,3.353116160711094e-05,0.022146733875257105,-0.005311377352009255,0.004535433423543298,-0.1529930726931213,0.0009030943969116911,0.00912301897449885,0.0023633184745100134,0.006018238474763974,-0.016434981642648873,0.00013731397630473244,0.01799408542744692,-0.01050757259174272,0.008272565877013159,0.0037805220185899444,0.0006208497677611821,0.006008613416551876,0.007668066193883113,0.09304464223900709,-0.012086872195068942,2.4559372843118755e-05,0.006672150613056783,0.043634443682248655,0.11946326920170262,-0.00586425688478967,0.00010850408420743458,0.024946281074294332,-0.006884569727359595,0.03857655949883722,-0.0029208654306262186,5.023600896553848e-05,0.002728039802795288,-0.040348891697352625,0.033558266551287984,0.05040344339104858,0.0023450659633235693,0.005835972739504439,0.059721956267627586,0.5240086632418108,0.0664233637008822,9.378808445587781e-05,0.0008084183574762647,-0.107999298334212,0.6117848162229467,0.13059212911301918,0.0002733571712930317,0.04406434003011406,-0.030693420651696873,0.15763098520149468,-0.04722863706014207,5.484848768807786e-05,0.0027735523682534324,0.035604492369628586,0.17833937985389975,0.04028497410744914,0.00032903670960007195,0.003329705327241022,0.03968861822222008,0.4734667500546709,-0.004858409289734393,3.4786178798636e-05,0.019792561059970418,-0.0012662598746624658,0.014899254524870736,-0.006393377638488099,2.8394878513809903e-05,0.008565175242118913,0.02127562512668347,0.051645673675580116,-0.002207226390664384,0.0001327000658910598,0.005749889593935924,0.057590944768551755,0.351092077899016,0.06206723581954597,3.789008234539717e-05,0.008157808746944398,-0.0026099667625417633,0.0070954756628711325,-0.16197010357640465,8.155129169325594e-05,0.00063929603151685,-0.01172735117631848,0.043942253248995845,0.02249744376677628,0.00012202988534907901,0.003539029404009968,0.07497387026185742,0.07910005216232353,0.12389297592529855,0.0005417622272129579,0.02095796257451733,-0.0037272778735869326,0.01498459606018527,-0.07021261739990012,0.00010469663901175942,0.010956427295420741,-0.02654739725028785,0.107241904652694,-0.009695297766878915,0.0015888269751122347,0.010499771397661112,0.010295719870852172,0.08837000360813184,-0.009347872164089617,2.995946406867135e-05,0.006027046343766158,0.009654389058483885,0.027475374343927567,0.007732524632790272,0.001148821217171783,0.008296440813124358,-0.006937648346119943,0.059908572710473604,-0.0725224985894866,7.711679165507964e-05,0.023594144929640914,-0.026405929487262253,0.034690012684083754,0.06233349135139998,0.0001796562733938912,0.002088714029541745,-0.048369138773713745,0.06038058464789445,0.09631196364766031,0.0004598063394351928,0.0245313933789969,-0.05572420765671999,0.2594946218960136,0.0558349396911008,0.0016644313288308368,0.00845676992655047,0.010762040610880791,0.04063284831832009,-0.004640440555880462,8.497823958716949e-05,0.0027612249904724797,-0.059195912695574296,0.0784338078763261,0.058333987695047614,0.001876141597882764,0.023995133213634452,0.005432453607360694,0.017248990772523714,0.001202108937417088,0.00012478097444585407,0.011678072992097851,0.02516146973726234,0.07726212819031235,0.02817386029575121,0.00013201695610540575,0.013027856543133355,-0.03448839593192103,0.14231116420715234,-0.06168938667914085,5.914907388881815e-05,0.0014064549833929076,0.04861229358862093,0.13272586679539417,0.007922592928046864,0.003471431498587233,0.04802952803800122,0.010641898036870538,0.04922756262819038,-0.11245052505322282,0.00010753536928439368,0.005830201669143292,-0.03145664886528068,0.17751743370351225,0.03265371443254277,0.00012850861058976833,0.0024304358468455085,-0.02436407115140964,0.1287155425247135,0.019769822103739693,8.952979010081243e-05,0.02303917309194909,0.009559436818219256,0.04263803322862583,-0.02459899130986036,5.634852318950819e-05,0.013080707916339172,-0.08694499545312376,0.15391485663650878,0.11793778606089811,0.0002754187107701921,0.007596891473413459,0.00471687431046333,0.02130283970383401,-0.02594279539134994,5.5059362704537156e-05,0.0001032464182524061,0.0026440697087597564,0.02801004656082487,-0.0007461757205038156,2.435512458635329e-05,0.0155352296627677,-0.020788686309500783,0.05768347863035721,0.024897525108900895,0.00012597505821343907,0.0024593705031100603,0.01393557881920123,0.05436419300711215,0.01603605851719235,0.0004040545831172571,0.01941923921898472,-0.01557080744897271,0.08331623070536029,-0.025846095363396354,0.00010704177850043674,0.015576919420217564,-0.004758739176193631 +2017-07-18,0.006493313414280776,0.04574780769008391,0.0002897629365612284,0.00015010068102365212,0.013764691208169878,-0.01393162205670698,0.04689437088864314,0.00922698956989433,7.128390731283618e-05,0.0015814192472050493,-6.210754186000244e-05,0.00023575229139342064,-0.007204637308894741,0.0001218668603846945,0.002793607573387382,-0.011857768060366354,0.011401861381634805,0.022261528457909303,0.00035099024855994734,0.005554883537627146,-0.017918888577350647,0.04475211196307778,-0.10517316833815885,0.00020950544067160432,0.012290163057733595,0.016437455393106794,0.055845763234497726,0.022503183507438382,6.426745414499823e-05,0.001541953983048405,-0.008121885012224737,0.034746202093809964,-0.0962790534860605,6.858661201292574e-05,0.009923789653085465,-0.015387430625350291,0.13227864365766895,0.0024370876255748173,3.989100604202151e-05,0.00846353629846607,-0.01744272026841675,0.014592818975484206,0.0034413922528955675,0.0009217641380784098,0.001363287289527774,0.026078664816853822,0.06002766217330649,-0.01572350850632287,0.00015191330390784937,0.016002578023158753,-0.0074079107413905195,0.005867144374887199,-0.018767173397026334,0.0006171536813413172,0.011877860177255582,-0.009339954257904867,0.1146075442810855,-0.03600763620681853,2.4285907234777448e-05,0.008410439136109994,0.03131995151753211,0.07068772497615151,-0.007460193587050636,0.00013162188751545913,0.01805766423390072,-0.0031392324313584147,0.015305696053059991,-0.05128124392139478,5.7734074203847656e-05,0.015778112119901006,-0.031112252463682207,0.026980598717708682,-0.057044563645541106,0.002249069334576619,0.0025789317691386976,-0.025084854268263946,0.16157599335957798,-0.014694003634396881,0.00012775763257408845,0.00574897678443949,-0.008043235306253983,0.04256190947796963,-0.009482116275043296,0.0002926293633566657,0.02431395604103323,-0.013985880178225088,0.09700218820732463,-0.005424233631877258,4.0613388715354364e-05,0.005538610046043171,0.04538198987310748,0.25309281315461696,0.05189833902659885,0.0002955224842656313,0.03446708235669109,0.05220962991382635,0.730834541137963,0.020624949239060185,2.9645704881303305e-05,0.031220930481035136,0.016308809076804178,0.19077177015083863,0.02366501138162832,2.8562081112503262e-05,0.004948083861395169,0.002725962958128715,0.00900001171851489,-0.07635629224260791,9.756625404043312e-05,0.0033457198539365257,-0.00043944865214547927,0.0026099796969650977,-0.0019706552948113697,3.8892278221619835e-05,0.00906507073820011,-0.021317633275163683,0.05919936047610857,0.010925101807881433,7.983610745063259e-05,0.0016565367194251077,-0.012960818270441186,0.05155509658416906,0.022725114166641972,0.00011495011551064632,0.004840288884159786,-0.031566166123198555,0.037970099351466086,0.00944248019011367,0.0004751772782494561,0.0020314048436359585,0.004603862934044434,0.020635024135264735,0.0008258919685592345,9.39081777360198e-05,0.004208548424348471,0.012255748708473084,0.04283835766534919,-0.13911038086329933,0.0018362263268640374,0.005634514826893971,0.013276103801598878,0.13843607474729866,-0.006093730026690111,2.4660595402944627e-05,0.02280911101120791,0.022126355403547796,0.0626886689647278,0.017774506730811566,0.0011539635868224513,0.010430885712384574,0.051598287365898964,0.4119314628518429,0.12194828228017678,8.341342731997866e-05,0.0004365444039283121,0.017116308216072327,0.022857020019965764,0.006206063029692414,0.00017674041722798086,0.009352418878281,-0.01780542971998171,0.027098569735953097,-0.0075008859597411074,0.0003771464324227507,0.0019849595467541824,-0.023899454050469646,0.08940248803277895,-0.09065229074560871,0.002071995062584317,0.01823065726584623,0.005170409328098242,0.019411352781173126,-0.010774246602745431,8.545933210606525e-05,0.009170395482391977,0.07122151069666358,0.08201945983495622,0.04391176854181067,0.002158596499196436,0.032750945680553104,-0.02538456345938356,0.07840107136880907,0.06388726062896774,0.0001282814139689558,0.010098825993774522,-0.003516723511041702,0.008652162485905378,-0.028986379814659124,0.0001647684036941392,0.0006597258395621239,0.011664210554844269,0.04559234158441916,0.002932110476926558,6.244208237924238e-05,0.017570015745571415,-0.01783042451453677,0.04950750615835275,0.002219692679806566,0.003413569040020728,0.021436946554729403,-0.007671551818651618,0.036028635191906105,-0.020722712406318747,0.00010591951482342406,0.00470667205241315,0.022301840875617016,0.1262750506134511,0.013075803760551155,0.0001280807747482151,0.024670391031032864,-0.021736629661441027,0.11920348459697543,0.0050195226933958444,8.624858005256148e-05,0.0008385135636195466,-0.023006607075504254,0.09348018277905283,-0.1202150950455214,6.18557984640107e-05,0.0029406950285702383,0.05954999543656602,0.1032748289423629,-0.006528223733157573,0.0002811361171017544,0.01158176417224176,0.004776053799463556,0.01930275401683735,-0.014790951606575857,6.152679740901182e-05,0.01149184406989882,0.0019094740857107304,0.02400538590892906,-0.030127957670569663,2.0522788153877223e-05,0.011633558386952405,0.008033635930421055,0.026981662921809313,-0.0997897390308821,0.00010407643282586384,0.002993839809155521,0.03363510365704594,0.12849061296581696,0.07316192643061548,0.00041261911232661744,0.002690643708134651,0.02238873660687193,0.10022201085977583,0.008009247496673972,0.0001279494050725944,0.003647800869101319,0.0031769693618692698 +2017-07-19,-0.01854146541478054,0.13156050125911295,-0.018750193038560743,0.00014904078172691635,0.013843332995114123,0.03544698353696007,0.1508404340486124,0.03418581427300481,5.638609733584438e-05,0.01230403294070011,0.01666976970932622,0.05919425128328406,-0.04904621948096169,0.00013027085780181703,0.016462196291336044,-0.016740982840763422,0.016775879751384854,0.03348570629937086,0.0003367933463904001,0.0031613742074239407,-0.017041735328806287,0.037615127386790626,0.006601406960453238,0.00023705496261579754,0.004114150000404397,0.012743594066459517,0.03483190905225391,0.017537871161293378,7.98842921176139e-05,0.004670518284477481,0.063660045048866,0.2409997633678145,0.0031929643978856515,7.750686674460809e-05,0.025946991907542728,-0.016718662035067212,0.1570969432571859,0.007868869843974481,3.6494918523604046e-05,0.03550845011426371,0.021803043999307627,0.02046858782768901,0.049760081743927646,0.0008214365766443137,0.00928482319912711,-0.003470791307667416,0.007563345362287552,0.005131715450221522,0.00016046357201722556,0.001312843530511101,-0.0131549314152199,0.009804267383525328,-0.047179949903220456,0.0006558398468299717,0.0033199875746187228,0.003071857359903885,0.03643779463163077,-0.005621757206685638,2.51230146294779e-05,0.0007292779487100207,-0.01702716421570923,0.04361025988500481,0.0028339510240149323,0.00011598576402617187,0.011993241967410017,-0.004354441734591123,0.023787678792434302,-0.04161600503808264,5.1527875468827434e-05,0.0035709711249659604,0.02460181228978736,0.019589981929959182,0.04043842127111294,0.0024493792687860063,0.011575264932567072,-0.028975243506504576,0.1857326428179811,0.00327546596820004,0.00012837810590280745,0.003482016103901122,-0.0025506996194821527,0.017113935887953003,-0.028047727477905172,0.00023079035149615716,0.020702381522101725,0.009919189163032012,0.06385272642878648,0.007966347737713233,4.3758022040881636e-05,0.017291468013498994,0.005552553577807444,0.02717683751177698,-0.012155052186987939,0.00033672909840964146,0.01699096573630319,-0.04528136414253589,0.5957233995934222,-0.019616857990142532,3.1543150926181356e-05,0.0017079028780880657,0.019137998422383815,0.1814629202985724,0.02123223576647989,3.523630234422479e-05,0.006379169494984847,-0.028145362293785458,0.08859805092257335,-0.1392430633923816,0.00010233057896481749,0.01266960991061789,-0.034611194914993926,0.1868608117887304,-0.0007084696189784817,4.2784921348134677e-05,0.041318033140913236,0.00909963987002779,0.02516847838298032,0.022406588719439773,8.015758553151394e-05,0.005808635052579952,0.026597543237777837,0.10987500144487133,0.19501529173492135,0.0001106856259363071,0.00783985975884041,0.04531415673728367,0.05020034854678435,0.03543872960044641,0.0005159441960747262,0.03911252767742516,-0.012712155264613176,0.04346914956139094,-0.06193559705144498,0.00012309036345936345,0.0024943635273603185,-0.05767154006769467,0.17965752814439612,0.056924076592938556,0.002060322966488206,0.03578021788205089,-0.020815928718977524,0.19156671777206388,0.007360342723148368,2.7942028356769675e-05,0.011426859061702863,0.019257283786852996,0.04517841226041872,0.017171640799768004,0.0013935910102670563,0.010750100355389727,-0.03388854295776019,0.2947338421852851,-0.07841854039330029,7.656821704146288e-05,0.022844613591423306,0.00886815928643006,0.013308489936664253,-0.01187082555399089,0.00015727152242567884,0.008776088958729774,0.01035371620000614,0.017519779192214882,-0.001344652887122138,0.0003392122613467768,0.02557302930585948,0.025745278366176568,0.10062622944060261,0.0188646137925199,0.001983064013541116,0.012888595775685248,-0.006604874086847436,0.024487114211419466,-0.013303328708288422,8.654008279037195e-05,0.015776680690613405,0.0070765040307911725,0.009343456048604138,-0.0010243236607020924,0.0018827315620329479,0.032060711004659084,0.032397958078067876,0.0986756214418086,0.012727227778739051,0.00013008397684651567,0.00048706139402610905,0.03415451431321746,0.08354288326041562,0.034007984152094065,0.0001657291986095581,0.010540142719374779,0.04078869219612065,0.17712737304351445,0.035753770634985735,5.620410340445906e-05,0.018148914171961936,-0.03287093688597542,0.1347604611481046,-0.011260470526727523,0.002311892584658958,0.025484470579954243,-0.022765074336126342,0.11805290167579639,0.019920525999741052,9.592525827943513e-05,0.012743425600625734,0.0051199305805397655,0.02287988422878491,-0.0016922444602355464,0.0001622822551904977,0.008912206635169255,0.028690942695561047,0.1535045115890403,-0.06395600979475652,8.840409296649032e-05,0.0011470857284919481,0.00813994292182133,0.04304641457109871,0.00031236847623435543,4.752605546402412e-05,0.011714288523228747,0.02657592859222104,0.05778173423985032,-0.05214361224704765,0.0002242473243109054,0.001386465548970615,-0.008563453590799136,0.03646422586253119,-0.00589125685678754,5.8397778487787475e-05,0.0074271272788168615,0.02286635750175303,0.22857645753141975,-0.038929952398449555,2.5810521341268237e-05,0.005830165248738863,-0.013804040006601544,0.04150309810920031,0.006719323212120644,0.00011626116134083138,0.0018549912412303049,-0.025288907290238763,0.09329989875552,0.04299185258719055,0.00042724487586516996,0.0011224697861785414,0.03653903632835341,0.16949592484027615,-0.024152548660083734,0.00012347232447003294,0.03128990340812283,0.0016365000843806552 +2017-07-20,-0.00933089786649095,0.06353873668951802,-0.011912789093757344,0.00015529999580342734,0.0010325796775893666,0.011632406177283462,0.04376709687712012,-0.06120530956144408,6.377233879278702e-05,0.020713548124472084,0.023635998178860265,0.07903244307977665,0.012053376902744956,0.0001383457254815381,0.005114798427736669,-0.012315499000564117,0.012383625598847287,0.016453243160875642,0.0003356387201319403,0.003246299086366471,-0.004563385014720729,0.011733208915325685,-0.07521954153368571,0.00020350171832718322,0.004655376489599917,0.00458974347502744,0.010073411774019905,-0.14084639343306612,9.948522026107945e-05,0.0056289356268923296,0.04163716986114223,0.15155209372329662,0.0022037686635891763,8.061374863016515e-05,0.0019121339902095193,-0.030404810984521607,0.31084022138451284,-0.06401269610701218,3.35431398435976e-05,0.002998178563653117,-0.026939336061754443,0.02463675025033413,-0.028762549127397945,0.0008432342801923565,0.009543350247254034,0.004859641853656966,0.010010632323179135,-0.004816308877397511,0.00016974798963465592,0.009406144209236664,-0.007663366761337121,0.00601252494715979,-0.052421695878725666,0.0006229986102486962,0.01786492167288168,0.001506172124556289,0.021791823593671905,-0.03168845952568274,2.059699295586434e-05,0.00048632551422554443,0.06753631796788953,0.1901001854116135,0.027307708830733312,0.00010553727513179517,0.04231118995456653,-0.017998676112325817,0.10303822172972936,0.03880893284251725,4.917043215949043e-05,0.0007451864369055429,0.052680660306294216,0.046444884276639044,0.14665180664991573,0.002212260664141526,0.020714052560710128,-0.053544063505912426,0.39181907030910595,0.0417666753391961,0.00011245476570028131,0.0354152035687393,0.03871648054240469,0.23469284498124013,0.02147006191581188,0.0002554490276759952,0.03099508188168017,0.013859424154624758,0.07398146936019283,0.010818259785376429,5.276952555069705e-05,0.028680487481709677,-0.0064729872477521325,0.035117102361919963,0.00022779729873123293,0.0003037895883270835,0.025188855326561517,-0.040737135196410944,0.5175081540715757,0.03488059623359473,3.2666568698986885e-05,0.010162499190744304,0.009879510460800425,0.09208871920391903,-0.0020781364627132323,3.584352403989211e-05,0.002230289643315084,-0.04596108633192325,0.13682719570732338,-0.012522228699619014,0.00010820332706188068,0.00622343615805273,0.02518212145521268,0.18335970382273492,-0.0625404878363889,3.172347774144124e-05,0.03502797029575363,0.029372379009991893,0.07455250964292605,0.13910215903031548,8.73482560006427e-05,0.0022957441134378465,-0.016554190029315165,0.06507276062565312,0.03758527290887413,0.00011632077856510324,0.001286957653836486,-0.012660209388717768,0.014619420498395427,-0.002304765997562186,0.0004949784508241162,0.019038300479392117,-0.03225520660977215,0.10852363613165557,0.0035546611870346913,0.00012510120721476742,0.01103140504773771,0.0717484962911653,0.21714722197102196,0.07652320986575524,0.002120692500417678,0.007812419204746995,0.05210811983808166,0.49074426256456893,0.036957232661715904,2.7304383033204423e-05,0.0201830712510222,0.006520947765726336,0.020526056838604378,-0.024342449671950064,0.0010386673117906012,0.005412761342931976,0.04846577436207328,0.36727721587729106,0.10703976650046515,8.787529817949824e-05,0.007044125176556904,-0.004944870193563235,0.007271438983784429,0.002159874838876525,0.00016050180380624375,0.005208232034274934,-0.00900660657629245,0.010712051689130394,-0.024951688892626358,0.0004826056995872979,0.00018310696370944194,0.018392002406054157,0.06753080552610605,-0.01125562522634608,0.0021109474694519224,0.017394960421550764,0.006911401691297627,0.03345973447166347,-0.0021995692084614475,6.627260092166688e-05,0.008367426879851429,-0.012504304947608947,0.01861883361589676,-0.0009765551273947777,0.0016694917501399325,0.016983042945794363,0.04873226471709071,0.14338599226258675,-0.025721633226325747,0.00013465606065223406,0.009345966647164458,-0.04804021883710773,0.10500761464150317,0.08948729517240024,0.00018545756786059672,0.04243951090445222,-0.005523269290103991,0.021715832440523185,-0.014469472157029116,6.207742030808431e-05,0.02207176561615363,0.026187359485042378,0.08412319923920605,0.01512495943395848,0.0029504889142958806,0.021095686555678714,-0.0636626344837089,0.4135121093925936,0.14576425667999376,7.658380590947084e-05,0.011319243194315792,0.02997620892691162,0.18078916745874413,0.017997517766995087,0.00012024446283993468,0.015781838426311028,-0.0009589034475434908,0.005583165822441153,-0.00016886558214469264,8.123497515940555e-05,0.0012323343580508466,0.049506404314691596,0.21850841838160148,0.009234786905565432,5.694303433269893e-05,0.026073979295205735,0.04812348144322942,0.0822238182152356,0.00905681194527004,0.0002853571719709397,0.015516025656172827,0.006137108500513333,0.023236830388062846,-0.003052890973580122,6.567518265913415e-05,0.0043611042885126515,0.007932657551721477,0.0855873786582535,-0.06432542053518753,2.391334154532865e-05,0.006913795358810222,0.016439813894656,0.053577315437717446,0.034776153446299786,0.00010725681896659054,0.007042628078130495,-0.018080695417199217,0.07022267214385608,0.018168171304793663,0.00040585018637740794,0.009728670955568636,-0.05083903782094001,0.23039499817818346,0.062309368198855436,0.00012638515694274045,0.0054548578459434,0.004934807309694262 +2017-07-21,-0.013888635511129573,0.08065652877339397,-0.00028220332794633764,0.00018209861271412727,0.002801285618232608,-0.12642679949425967,0.3945872661869888,0.5184711308996298,7.687880154180177e-05,0.0025439622904301126,0.017775215438732898,0.06679232498319525,-0.042603526710664155,0.00012310778475019062,0.016024048824148464,-0.0095184947629033,0.01004042911727276,0.010148690775361046,0.0003199512837987279,0.007268344769690103,0.007557885006067315,0.014988400170012208,0.011226145165422504,0.00026384129652949606,0.012022647164626829,0.000925664318266803,0.002983469161548487,-0.003309001481056157,6.774522818010117e-05,0.006936182902067568,-0.007106170183403975,0.023719136502031935,0.003588544731720721,8.790763267996884e-05,0.009431538598894047,-0.040193081296716095,0.36859029182024916,0.049759157757552686,3.739435302412344e-05,0.0075417676385271405,0.006043892783922843,0.004388535876152614,0.006665972856800127,0.0010620424725087574,0.003736308624198169,0.00842435987990555,0.018621770536957495,-0.17148445136093762,0.00015818956315477093,0.01410448008455207,0.009992955142515152,0.007086248897862802,0.002043007130694593,0.000689289866315249,0.012397281645073142,-0.01075645808797223,0.14790092160305196,0.02042898222282268,2.167310817185419e-05,0.004543013333676927,-0.029211498237780957,0.08305538677310813,0.026536735291206967,0.0001044809385184223,0.028951369813869667,0.010885390805287483,0.05558343133855722,0.018304256094479276,5.512650894557803e-05,0.0068446011001711314,-0.016386652558571576,0.01467934665245039,-0.00014744990866423936,0.0021772409383839725,0.02569908648541693,0.03178158089679113,0.19132779884095946,0.028418856464397138,0.00013669402415756451,0.013466691687926923,-0.01624935647948712,0.10283125498754554,-0.01718175005083663,0.0002446917134893553,0.023386650824437315,0.029940785731527884,0.1876363820847941,0.029720136297313585,4.49476612139672e-05,0.0030977442390468218,0.012854187574048744,0.06884270899703057,-0.05614648408449994,0.00030773258768510643,0.01454636462065607,-0.03853098667035541,0.46123422400947445,0.02134579348323102,3.46672056378679e-05,0.0246749394269615,0.02004367938625006,0.21684419771137484,-0.046864537134882076,3.0882421807687594e-05,0.0024502671443513294,0.012737154742912746,0.035052207398276615,0.014332556472947566,0.0001170522613169676,0.013605710044809845,0.03063344828463985,0.22731633655674408,0.006022665216060511,3.1128458459478135e-05,0.005245722418450386,0.006335777220019858,0.014734822383143336,-0.0015267912012463664,9.533061071863651e-05,0.00428552148953933,0.013762290875146825,0.05466578380061909,0.03413958945262493,0.00011511283474468375,0.00737313275524114,-0.016009208329456417,0.015151571031951954,-0.04026642600637212,0.0006039315961583738,0.005993228334681728,0.023890891891077185,0.10295891213780636,0.040827095858962076,9.766847956311265e-05,0.001571218596286525,0.043998315129120086,0.12297644319351515,-0.0040253295395877246,0.002296324675917585,0.01656499685291806,0.024463799457106312,0.21433761207483126,0.004815508615269104,2.9349973622648154e-05,0.001999376005727179,-0.04295375553978087,0.12554907827595777,0.03784858454823091,0.0011185589632099705,0.015472310483270421,-0.0077429575736989225,0.04818747354913488,-0.016379929698939075,0.00010700359424518067,0.030283349470960053,-0.0036516745489631637,0.005337334324903624,-0.018779034716285097,0.0001614778816603327,0.014579920196144045,0.003423058551225554,0.0042859745895784595,-0.02262122596416417,0.0004584253758225893,0.004385445141939939,0.006094293453759284,0.024695008651125644,-0.0015451600844829329,0.0019127777934347789,0.007981437189700805,0.038028186841029245,0.17800914373766302,0.05232776134795905,6.854151164042684e-05,0.009030384018002139,0.04168664085241157,0.05991569400723825,0.006074217949147045,0.0017295515001483147,0.01772227920768729,0.017130399096725906,0.04844226476245562,0.0018845618494778779,0.00014010675631469347,0.0006266961156289792,0.0398834319696332,0.08953937445508094,0.037622280790752395,0.00018056719118333402,0.01997874662632265,-0.01927699566698994,0.08519840551291899,0.009249342362924538,5.522323036548516e-05,0.012770923960928875,0.06069712577429015,0.17553780791099804,0.05923554860936114,0.0032772948344658805,0.020224223638275855,0.062398596727376424,0.33399076515418497,0.09149789614435525,9.293534917079977e-05,0.00979250792100836,0.020093138041542367,0.1133178449424472,0.007683464523517728,0.00012859090289081722,0.0024565959368707912,-0.012268173553896177,0.06498738635727984,0.0033084651645509176,8.928932480882038e-05,0.008902128853335004,-0.0006420415172833174,0.002558508140818877,-0.0032484867237757105,6.307012680010292e-05,0.000638612013657013,-0.058757699904516576,0.10625597308756318,-0.0007898854050256174,0.000269612999457617,0.035459463392906905,-0.024974107687124315,0.11214436730253188,0.03855582651802241,5.5376676931532936e-05,0.011303006350597722,0.012142068043787941,0.11438444952932902,-0.019070040132651355,2.738778824035485e-05,0.009204835804680461,0.0021920741564069824,0.0070630293969127025,0.0019849546395227014,0.00010848587412723711,0.005093550129716015,-0.0029723889257177996,0.013154891556470465,-0.017829506450095005,0.000356160976356319,0.015505379789389678,0.042856700756803354,0.20003331763774257,0.029306206219688002,0.00012271232726231957,0.023268019818327258,0.002356917856013465 +2017-07-24,-0.0029701962770894703,0.023369953595833003,-0.04665544311998347,0.0001344045228044074,0.00842292247517427,0.01946133506531774,0.0765516040086498,0.005224607512957673,6.099986326340738e-05,0.023893159625218874,-0.0041604543251365185,0.016949002435994207,-0.0202829855191472,0.00011355174717794821,0.017219823173153275,0.007391202012906165,0.00909612654992261,0.0020970735178964706,0.00027423724343002417,0.011500299818392911,-0.0006734868475607419,0.001494937741276779,-0.034577223924027206,0.0002357239907102103,0.009398314488427597,0.026753960969600137,0.068241307799304,0.06381417522843034,8.560270488247583e-05,0.0032915833684295376,-0.00991660490585838,0.030746570387043943,0.004588621127074813,9.463595871718389e-05,0.022779551496490545,-0.005277586476079183,0.04950388070655187,-0.007546158138008395,3.6559035293507734e-05,0.010862082035997133,0.005502391807195547,0.006533538218811032,0.004040674593549982,0.0006494532023155086,0.008786316154560493,0.016331402341778847,0.036463506170240474,0.007028570434856562,0.00015661268615885102,0.00947310375517721,-0.013044324300845374,0.010356899502980748,0.010760115736387018,0.0006156249088947503,0.02477444822754043,0.01660546391258084,0.1822105504872419,0.042440346148925515,2.7158156233223912e-05,0.0038003651158835007,-0.0010082072084660791,0.00297518679567784,0.0022105647497330885,0.0001006668775895365,0.0006425249294943168,-0.014960097858946968,0.08640992990548597,0.024294832106317454,4.873406069985738e-05,0.015492219882088666,-0.024867389455171442,0.022580258496653138,-0.06171172921381498,0.002147950452917684,0.0032478899855002963,0.007240804462496206,0.04832020126047911,-0.004082771949178672,0.00012331337742725666,0.010535316220622393,-0.022063735922782577,0.11273130436904381,0.0029377861852345317,0.00030306986164092397,0.009207128267656786,-0.04533231846806076,0.2695754861014531,0.04458079662726724,4.736837541848204e-05,0.014365977746756459,0.03889757778567091,0.20357875059570069,0.04148251054957947,0.00031490308893617933,0.005734381896076032,-0.013638278937881602,0.22298740802014153,-0.004305594514724984,2.5381042746699206e-05,0.03907579734549213,0.020586567290792838,0.2129398322363343,-0.08813119952833348,3.23004622604047e-05,0.0024442957025002997,0.03500950555956574,0.1002836641965608,0.06260897186303498,0.00011245494023603225,0.003099812466144467,0.017370790683856996,0.1347808487632491,-0.09562397300419304,2.9770338739178957e-05,0.01045675194527601,0.013987716132049532,0.039972319402757764,0.026678760743438074,7.758269173527657e-05,0.005802051562786664,0.004264425012805245,0.015607380069677726,-0.03659514834199076,0.0001249335472802962,0.005436810548392301,-0.021514453773856097,0.022143128090040192,-0.03992943346093989,0.0005553501754853821,0.03771017763092577,-0.0037102738093934477,0.013883931142326045,-0.008004464452641682,0.00011248109062849091,0.0018995135658274424,-0.09243747024722623,0.30973655429158997,0.12015546226985836,0.0019154673938337604,0.025917873906232312,-0.025601785285504997,0.22899970743688255,0.015383245085314284,2.8748654180968425e-05,0.02417366746077991,0.09298524422726519,0.2787582602338909,0.20418293870113596,0.0010905800792008003,0.0016532071517215497,-0.013495216537551528,0.10375663407761952,-0.004739793663304612,8.661430523714957e-05,0.011479319839860723,0.018292864966053472,0.022257020999496793,0.00039003247394785325,0.00019398139546812087,0.007683875392107526,-0.02893023024556429,0.03525674215439542,0.03437192608874267,0.00047099210178810333,0.021081886329305608,-0.05385383003578652,0.2185886951031016,0.07872753135947039,0.0019095860748273756,0.020900728227776506,0.021872165936919055,0.08181735590899582,-0.006634265516766446,8.577025913464061e-05,0.0042412555515261435,0.005176318517424674,0.007047134821120224,-0.005391368192589867,0.0018259362209495913,0.016222644886246196,-0.015441704869554715,0.048085021292300203,0.008734815711647196,0.000127233499241835,0.012288030356058762,0.0033865372187940413,0.00877747900737454,-0.07924704770986163,0.00015640348635637173,0.012516395596126868,0.013688826156754602,0.06789175483603091,0.001269031600062775,4.921110295895184e-05,0.03144868325943863,-0.01607527816870887,0.048565947230299236,-0.07052614263379778,0.0031372179489138844,0.008315960273669624,0.0017138266256092516,0.007999839406660318,-1.0884393209041222e-05,0.00010656784596242579,0.01962511910675247,0.0015198969537366632,0.008845310783421339,-0.004989113393373799,0.0001246125640818395,0.011660083140177916,0.004676286044434335,0.026519669909,-0.001162730502668113,8.340299633305223e-05,0.0020829270779266387,0.013790704724186347,0.05402304258761315,-0.05024571773002311,6.4158590535584e-05,0.0007262876538184936,0.03219449983080859,0.0690254324751035,-0.00186568895146652,0.0002274060109393323,0.003934270662500234,0.031533346318228225,0.1262072554999519,0.08924060448868112,6.212982262140539e-05,0.009172501311723886,-0.029865990480493373,0.32845066037121734,0.016261090127527487,2.3460543468387425e-05,0.0154228349285381,-0.013753156180875591,0.054573302720323305,-0.018974516985033732,8.809091109577606e-05,0.017901229619468582,-0.0010783399863730776,0.003884748057778083,-4.688578513365451e-05,0.0004375430828593129,0.012477784038937567,-0.02254647053628611,0.12436526381959645,0.00874318406069477,0.00010383679308436187,0.0019148927680821984,-0.0006773766650162694 +2017-07-25,0.024986289646641173,0.15919487424176598,0.00986272534762731,0.0001659813428298907,0.0012820498009884324,0.05530974474809375,0.19250625014642497,0.04364386873739203,6.89393757282679e-05,0.026608982776251837,0.0226022134526603,0.07656493389907308,-0.02167725550993649,0.00013655835124110099,0.004083632620275073,0.001475929664477236,0.0014159196852489642,-0.001016349161071167,0.0003517992410867396,0.0012240682080183604,-0.0028421723230503608,0.00687136014206745,-0.015139898581934453,0.00021642402361241386,0.0010800631980899286,0.035590473566015676,0.08185659654325084,0.10707360688772866,9.493510238571054e-05,0.0007120079286041679,0.0524117578249488,0.16162290459572295,0.03217575683827608,9.5151507538679e-05,0.00765210993936523,0.0034178138637659112,0.029549358388731323,7.103778159168213e-05,3.966422437557248e-05,0.0009805587198137798,0.004393799547659596,0.0035492285712829803,0.002983978689578596,0.0009546651248325729,0.010039166028492188,0.026769872737200526,0.06461710182619917,0.03236699542581969,0.00014486408165268383,0.001971834511425477,0.018766575100764012,0.014629753438024565,-0.04502537773448993,0.0006270069757002017,0.0040180759375914275,-0.0010343230462849992,0.01427939795151261,0.0007063699502712804,2.1585846970293976e-05,0.0037985485677120767,0.020849738053717613,0.058233042653209145,-0.03831841807529844,0.00010636093794851239,0.009921629107389675,0.010220778542870445,0.05366221973986958,-0.009633284745766512,5.3613870795237326e-05,0.00507819836315752,0.03332169041144751,0.030426788523164404,0.03753927571014133,0.002135963768467004,0.00016697431685374297,0.05521090692981508,0.3679171007124395,0.06581063399338652,0.0001234886420047991,0.01891432996690811,0.019466879657816433,0.10178377346608758,-0.01237023708989087,0.00029615974567141616,0.024008495720893957,0.09006072205397028,0.5654145058657551,0.17220713623945882,4.4867248213197604e-05,0.0021371775344274967,0.032018233175792325,0.16182350228151585,0.022901951363250024,0.0003260938245265518,0.012109491355336972,-0.01106523007340903,0.14881650493869608,-0.09828874604350847,3.0855996675728455e-05,0.012110655447810217,0.023185876921355555,0.2298411242545623,0.019505436529839534,3.370369359527465e-05,0.001828892934027227,0.0023192543250212462,0.006140151710231722,0.0003296519483920829,0.0001216723872673662,0.018137418389701447,0.0326900901027777,0.23312931536682446,0.006785321217767602,3.2390049030215875e-05,0.016033949306314525,-0.013865916076298642,0.04160063516881961,0.005201361195998197,7.389686052931606e-05,0.0006364692995980354,-0.0007198468262710979,0.002713719410441882,-0.003430573415908772,0.00012128965166669977,0.0022115876578692037,-0.07244061295190335,0.06049776712113203,0.06419611414219752,0.0006844131290459981,0.0437305785271042,0.02224579044753428,0.09543312881887919,0.04076586907565449,9.811483738176843e-05,0.0026130699867803705,0.05920824683295763,0.20931300768241326,0.05913702665454799,0.0018155372260186381,0.02528107776538383,-0.025003204273787397,0.22879241453030763,-0.09326008513720449,2.810193615261197e-05,0.019845888255616617,-0.03803308490799911,0.11322983331430546,0.020197814001093276,0.001098176016523679,0.01666536709209734,0.006117502118534411,0.045078563097591444,0.005962647595310479,9.037112889700672e-05,0.0001511185872700876,-0.01439373070593565,0.021330585888172937,-0.08207254458333563,0.00015926339710630995,0.010518675078042331,-0.027546822528669346,0.03825292164648428,-0.05941771031504362,0.0004133432158271196,0.01075636418592364,0.03802784296772866,0.15266352973765868,0.031510164567971365,0.0019307086109149017,0.011945388086278604,-0.025441074720885793,0.10304750795470159,0.04800504820427566,7.921151695511878e-05,0.005487911474161824,-0.0451424648832931,0.06929049047579751,0.03370523764952507,0.0016195293582868162,0.015454179368081723,-0.010712312241842686,0.0410517406730126,-0.1242346713830957,0.00010338741641314747,0.0019254713845042563,-0.04105317694421374,0.11515284024650828,0.009263411821112306,0.00014452151077786274,0.013559645150837513,0.020483501454304016,0.10383769660729272,0.011089305895551732,4.814631759407234e-05,0.00933153115418247,-0.044201129851152494,0.159591255659815,-0.16704933916978762,0.002625078753384498,0.00524280659398791,0.012212237025445797,0.06117950373298673,-0.02206029693770429,9.929556372629354e-05,0.010624555449201292,0.027499434954163467,0.14379192671990065,0.004566530763356865,0.00013869156590630118,0.005900425424787583,-0.005736883467717041,0.036380331351099374,-0.0006971990851789542,7.458613049414482e-05,0.004519280680720733,0.004780502213765692,0.027512692642605828,-0.023012685962854693,4.367046558076167e-05,0.011032360226303302,0.009154238518855995,0.016569431416089325,-0.0002582536041679093,0.00026936676608928825,0.026270365380041984,-0.020291525875463304,0.08896737733050183,0.0006494897929664255,5.6715046682418756e-05,0.013382629231966071,-0.018983968874955768,0.22180700439984824,-0.00556500857695739,2.20822357502062e-05,0.00947889594432202,-0.006530844191838513,0.02261352528503542,-0.0003156245125891401,0.00010095085844360399,4.398060145643741e-05,-0.005265463921763179,0.01865739477259931,-0.08282808288160923,0.00044485001691498216,0.007804554631064335,-0.020815073912006092,0.09304019428152818,-9.519734673455442e-05,0.0001281383551180539,0.011392806860601914,0.005543607495050729 +2017-07-26,0.003929657705751009,0.03267652549582402,-0.0037545284300452134,0.00012717608014139155,0.005856872248268729,-0.05746946131045572,0.1871510212660468,0.05186985090178731,7.368098982654595e-05,0.01204373692277301,0.03657275574973756,0.11514739897972907,0.002829158038896878,0.00014692671129879227,0.009881528334565239,-0.019069202044787754,0.02275534193237817,0.02940281036196926,0.00028282448877226424,0.010350328827214185,0.001320038632412081,0.003307601794719158,-0.05678991841753804,0.0002088195689285273,0.0016094969950485422,-0.002828386396981171,0.007646973193044043,-0.017849295069631874,8.075992592561155e-05,0.0020781749954847765,0.0668909073760709,0.25771523105255745,0.04683767669925782,7.615823247874986e-05,0.003288889810931958,-0.01704707878589894,0.156538898522186,0.004120990610567916,3.7344470772271176e-05,0.0029676832039193766,-0.040437630047236876,0.029876925999231734,0.11687600503194709,0.0010437453890746627,0.01908127298564079,-0.026013913494550785,0.06019530260540389,0.055498533157378634,0.00015111409553383067,0.008892777747069749,-0.016765455025621698,0.012758156816361573,-0.05450032545440822,0.0006423204767540205,0.014869423240112378,0.013815882254747204,0.16507894543125856,0.013477221682819143,2.4940762507525553e-05,0.015409825608067484,-0.002907993652849428,0.008527338578426455,-0.00874000918339387,0.00010130502431469906,0.004964415801084082,-0.017794814000760804,0.12475442452896279,0.029924995242628954,4.0151272524700054e-05,0.0032552865449251567,-0.010260552958689044,0.007483852347046126,-0.0005712417616324603,0.0026740438724947115,0.004012989457787425,0.0071372876058682306,0.04294642004479281,-0.020556995057647867,0.00013675976247408636,0.013584150024336827,0.03235277092826786,0.21903568856764086,0.01482531548044522,0.00022872036337506042,0.021313584702508773,0.05464684041080715,0.3272246973631196,0.05395905227526918,4.704136748299695e-05,0.011784781482019353,-0.0031606028509726905,0.016526241826500684,-0.007480556627628689,0.0003151974036995457,0.025337224878914003,0.010368082175461469,0.14157028862268828,0.0003774018106703086,3.0391808529682355e-05,0.03685190118240771,0.020005529955661627,0.2390625507275322,0.021536627621099667,2.7958909003435548e-05,0.007758762911622641,0.04574097234833294,0.12540877744062393,0.10317312627709652,0.00011748981343573541,0.036748297599017904,0.015008810870053414,0.122344913140421,0.0016828599715307737,2.83369265264331e-05,0.0016722278038375045,0.0030366915634137005,0.007327810686097173,-0.1310673613296625,9.187636922361742e-05,0.012565482987464304,0.002941310213262615,0.012422725900789374,0.0019230808961761498,0.00010826112198348557,0.004180826330181089,-0.0143338855990016,0.013043844288274667,-0.03680681100266063,0.0006281073704542664,0.021878811205298755,-0.003303548386799605,0.012569942981200349,-7.166678420570457e-05,0.00011061992856076091,0.0017767270298395393,0.012625780864315369,0.040974190898813254,-0.009846201175109325,0.0019777301557398256,0.021480420441691975,-0.003949567649616934,0.0323690050616718,-0.004729396938093476,3.1376348617826195e-05,0.01471730630610165,-0.04012311014272674,0.0965257656144079,0.02052553791824833,0.001359009850866581,0.034278475679882105,0.008648996245720762,0.06155673904405762,0.008411530483519345,9.356550085973416e-05,0.011826310176130008,-0.010833688966374828,0.015540443226875252,0.012472068925291522,0.00016453501990701294,0.0044415851054793185,-0.015608716405013852,0.02089241809994619,-0.24399919717040736,0.0004288272701862354,2.297413652271852e-05,-0.0010365686278423277,0.004492329592877941,-0.029615875171199728,0.001788449945309526,0.005140844743307661,-0.020581080915758332,0.08871368306007042,-0.015637579357583024,7.443341427580496e-05,0.005156041018309132,0.07633739754291786,0.09555295476547346,0.05947845255521078,0.00198595965137196,0.013454790247208132,-0.022103284988400713,0.06797058097241719,0.05960402095865045,0.00012884034461236503,0.010423665736568055,0.034020884785403334,0.09788826384485763,0.03563506291931989,0.00014088843805029622,0.004269691168546343,-0.06134172642446187,0.2502423017311384,0.09667112898128179,5.9828648679187856e-05,0.017598179723902763,0.0025294726994264686,0.008120661316496426,-0.0025961745954599046,0.0029522739630434107,0.0055920629735495215,0.0036099226312313933,0.017402427621468885,-1.8235457941446263e-05,0.00010318786543497465,0.0036083623306844034,-0.0014183823827271503,0.007211965035836992,-0.07965413891279878,0.00014262659041538195,0.01666171116070162,0.009660827006648054,0.06879843832405812,-0.018940139193376178,6.641779050087812e-05,0.001008099893463143,-0.031026016552902155,0.15545657342246189,0.04097554136552276,5.0160784949974324e-05,0.012151760665985768,-0.06695733805303221,0.14841813979509744,0.06050673887685035,0.00021995841909009804,0.03077301153580577,0.00992910090670118,0.04015381496491569,0.0074618680057354355,6.148900802953643e-05,0.01002792926782712,0.006564031615684227,0.07004989235074943,0.002389305672394575,2.4176558372754067e-05,0.0009063302247689566,-0.010223877035035333,0.03600535837910005,0.0022695396400904248,9.925615421861767e-05,0.0019371309932600036,0.013717153488698924,0.047614982452144065,-0.026514198246257576,0.00045409669446427344,0.006890168343118701,-0.026430802452143343,0.11596007829263892,-0.09473291785318912,0.00013054902865232746,0.003492566179593198,-0.0004356111901039812 +2017-07-27,-0.0033835755395563716,0.022782511254932195,-0.013069864956070282,0.00015705829088545782,0.014995066827822812,0.04381948039353688,0.12743821518265644,0.015834250632154864,8.25045822474868e-05,0.03776019627366522,0.02535199708756687,0.0796659354573939,-0.008792631402054834,0.0001472097993304694,0.005349730753973526,-0.00024120570900513664,0.00023792949977851797,-0.13105817209246196,0.0003421425969826843,0.011538135976483576,-0.0006909001793298923,0.0016597350683212066,-0.006136593649373224,0.00021780824088015843,0.016670388838840814,0.0024080071631791215,0.00534232386729959,-0.01766156237968133,9.841794705215976e-05,0.004254811434093951,-0.009218681583599318,0.030948795144538462,0.0048949942214839715,8.740070250960226e-05,0.03446852185393395,-0.011333534412061258,0.11373767052007476,0.001960160159905564,3.417115457196592e-05,0.00881078712953731,-0.034930489456585126,0.02907144144995064,0.022685153491011318,0.0009265799360113656,0.004772485964233497,0.01991937320417352,0.054696367633679674,0.010614351014480643,0.00012734417053616976,0.008887574837069012,0.003804447483042677,0.0030118332015659738,-0.0027891288185814835,0.0006174261725376844,0.0030537774901756745,0.0006874494738753589,0.009346929626598055,-0.051515562777547076,2.1917680936648085e-05,0.004595863299414203,0.10036225255264915,0.2900019148328243,0.11590887896069356,0.00010280649964258133,0.011403497705792699,0.0018913060131747774,0.012409025521329678,-0.004448481819447496,4.29028303367e-05,0.002126695441857191,-0.0020648769911551248,0.001684737696731057,-0.0034566488365992236,0.002390478621365822,0.007757331735134872,-0.02151673892721244,0.12609973836745136,-0.02770118805860447,0.00014041528075932097,0.01685101020854889,-0.042113875121712656,0.24213705315614817,0.014424321680611179,0.0002693222191219214,0.038454816477059305,0.007283946078830048,0.06156507679336075,-0.05661201821771935,3.332677217581935e-05,0.002400540804972186,-0.030906462251149628,0.18039604176560775,0.0042696082350071034,0.00028236385285399516,0.00406773425259707,0.064191319059886,0.8544681027721559,-0.04193623418740524,3.1175302493825e-05,0.020087527412024835,-0.03610341856711993,0.3580688552399757,0.20032277985383753,3.3687089289591906e-05,0.0043211424921676626,0.02024699503957544,0.05360368664110514,0.011639694503857746,0.00012167144687480954,0.005394138870167906,0.06175225633695312,0.4519457945882924,0.01656341259111098,3.1561588791481254e-05,0.003785108404465302,-0.002234947788217432,0.006896777902037279,-0.06547407965776017,7.184532662893618e-05,0.00930787856537697,0.018099171322653103,0.06138652408967845,0.04681809506785166,0.0001348137669050341,0.005415545758619496,0.029694109679259607,0.02783219611317657,-0.02158006655307277,0.0006098154086491183,0.014221801394568535,0.019451889345109677,0.07459241786228571,0.030924024300695532,0.00010976227873589829,0.008112730936881316,0.01084375250119324,0.035950804735387185,-0.000634472407632963,0.0019359322520813246,0.018327579380403802,-0.017871755945726122,0.14192255451659555,-0.020822919147131875,3.238157741328452e-05,0.0018095286835286503,0.013489811129939895,0.03853956390017283,-0.01500436014346193,0.001144380220734808,0.013553504522267508,-0.008244528018751576,0.061385094683918555,-0.024035189583670295,8.943932469794814e-05,0.018357255715883498,0.0022368567815722823,0.003913978695929784,-0.0019941036862389443,0.00013488545070315913,0.010883313163328311,-0.0020944105035528163,0.0028320407908790294,0.0012540749192635192,0.00042448878109198525,0.0013149293741275899,0.009270675247250046,0.03789977054174966,0.0018752556638069568,0.0018959423540273013,0.01938703027672812,0.004743790189794336,0.018067448914517094,-0.025188371502312894,8.424012597134557e-05,0.0051888783321766396,0.00876351061481064,0.011969862696619659,-0.0008499447614352095,0.0018199780077679116,0.03027910926611713,0.028015427892646744,0.10583719762947236,0.01969673800675001,0.00010487572220190116,0.0022259874881492203,0.04914083739890358,0.11299019080986555,0.05261615897573253,0.00017630400862854705,0.02122695531055535,-0.049405724983666306,0.1899914549835641,0.008668040893703875,6.346833902661597e-05,0.0020354274550139773,0.0012082525488750938,0.004354361183750805,0.0012839001048949986,0.0026299732308649516,0.016007671247674618,-0.022029728489658815,0.13068965265205074,0.005107797920031868,8.385105122326712e-05,0.009939000822184506,0.0025589748749928884,0.013960117559089859,-0.09179898515965337,0.0001329345074362825,0.0033100793391600465,-0.011531100014336774,0.08507934621488658,-0.008389710394740634,6.410550027958788e-05,0.0033340585056120834,0.05203198649096224,0.2218733875713425,0.03618799759874185,5.894033330983092e-05,0.00448936268911693,-0.02232392193784565,0.04173922753574888,-0.013860413456812961,0.000260768712007114,0.005309968802384763,0.01594952666099431,0.07098143050550453,-0.007312823763505135,5.587498598895169e-05,0.0007963374812827338,0.0016318968294086625,0.021036466114413222,-0.005925652767764447,2.0014797431549736e-05,0.0026803110971041215,0.00848962681690792,0.025988624735217757,0.013071743843714017,0.0001141863699110099,0.001703824123572124,-0.026750338736424958,0.11393139885074528,0.034853499244380845,0.0003700955191859351,0.002752473018807866,0.020135514720131826,0.09102446074333582,0.010443530679027863,0.00012669994231022958,0.002733300407411791,0.006126334247002269 +2017-07-28,-0.02370090549923828,0.13932265139563133,0.015219967761075965,0.00017989943186731585,0.03418689845050374,-0.07983033835951635,0.2848366435371561,0.07715961033085177,6.724850548545515e-05,0.03376846885379966,-0.0015325633313106168,0.004681358212797842,-0.015915687416556485,0.00015144110177508493,0.009072943771696172,-0.01992212362841395,0.019385396602472595,0.03862148529785363,0.0003468396957127289,0.015280278024220394,-0.018828024516206354,0.049632793870626656,-0.10201877549495476,0.00019848779389225037,0.0078036243176301,-0.00777928078528275,0.02235625708640437,0.006645143098572545,7.597786609671704e-05,0.0037494861526746514,0.04890024221184168,0.1727381133358937,-0.026879020751898363,8.306397180579972e-05,0.016627843944605973,0.034322820588934724,0.32564911093659116,0.03694796341872664,3.614362335050461e-05,0.01490463742826603,0.001675983499575616,0.0012083071799187071,0.004371462694232717,0.0010696388516905032,0.004099313654923404,-0.004560958308133152,0.010192202349112122,-0.01199503265896959,0.00015647679834570127,0.006873009106744094,0.014724718146138937,0.011161932766894209,-0.06308975160078169,0.0006448102708059522,1.948111458574455e-05,-0.003398839490497991,0.04891476427397772,-0.0008222306002513132,2.0706823422754946e-05,0.0033893213241039033,-0.040378280452028625,0.11491315741181182,-0.03396761478019796,0.0001043828379677582,0.0167381194725953,-0.013788277204079206,0.07772729491071316,0.009565149120450929,4.9934220056336e-05,0.0019103422990865166,0.0037708062190926575,0.0033995459500924673,0.00540988787031501,0.002163397241162627,0.012454218917596642,-0.0017801219399419387,0.012933677400660155,-0.007905694700340226,0.00011326085514885969,0.016033515658234833,-0.07162427077368792,0.34826921469524813,0.0429794212994205,0.0003184588765021825,0.006049077147912051,0.01142779365707893,0.07100391342091451,-0.002727089574408353,4.533577667405836e-05,0.006099245035733592,0.006940907401181753,0.032041836586619514,-0.022010138779501278,0.0003570143369074855,0.0351365692607536,-0.06228210805530613,0.76415600773093,0.052575823492948086,3.382295151740731e-05,0.003546545291143556,0.008204457505747671,0.0780545908941562,-0.09583674212368737,3.511827111023081e-05,0.0018365760792608352,-0.006506289286226162,0.021389974041636825,0.0006708253949226397,9.798190242580786e-05,0.006639977297955362,0.04098846323783283,0.28394813132205526,0.014354658993008801,3.334379267906935e-05,0.0020256562504507012,-0.012745070301765981,0.03331400259970489,0.017801602790837992,8.481893251956419e-05,0.0010334278312662654,0.0011170042952447158,0.0037051826540886405,-0.04684688914504942,0.00013784588833487752,0.007593089810889534,-0.0013338263928282907,0.0010825391393873656,-0.003537898847316165,0.0007042571433453105,0.003959889719172257,0.008801303799610862,0.0282870551342597,-0.01624747218686165,0.0001309619955807863,0.006166597578044391,-0.014805438301618784,0.055070580565232764,-0.005502418092674857,0.0017255231433277293,0.0061896330974041455,0.004551045680863744,0.036456480089335254,-0.027784916024674033,3.210100692144158e-05,0.0033142154778327965,0.03391495057250109,0.09059792026150987,0.021756158274484363,0.0012238951956358604,0.00439468069820872,-0.01712172171608814,0.1287607646614508,-0.028846516131070195,8.855019668658566e-05,0.0005150521518825708,-0.02371504910317517,0.03377584645238656,-0.008896522200772541,0.000165715515771981,0.0005990614715004686,-0.004466819830197154,0.005856011885844971,-0.001677414884482097,0.0004378248421557169,0.00839368905943638,-0.02428392848639643,0.09466727115420817,-0.010531711088963877,0.0019882428435592757,0.0021598864126901856,-0.02224088991047331,0.09659381719559644,0.02902246010778902,7.387426993035592e-05,0.003589583953318279,-0.05483417836102529,0.07545111118604143,0.021814229492282285,0.0018066036862587008,0.005013686381577837,-0.01953145445095297,0.0602957349185281,0.03223643484429409,0.00012834058917970487,0.002684324233316729,0.0003886774987289243,0.0010823255862723571,-0.040927817402763175,0.00014557669317348632,0.02143836927761576,0.025352432947217642,0.10458822603033162,-0.03909092776393162,5.9163079446162596e-05,0.019478115185623174,0.030728139973329162,0.09226397741368474,0.005724599697995886,0.003156618937963661,0.013531191805677028,-0.011525960567953221,0.05946178828674456,-0.03664793652738844,9.64227989296995e-05,0.00968654608506649,-0.02011542008213555,0.11044801874161764,0.003382743888541503,0.0001320784492836214,0.01963798274919673,-0.006806526087599203,0.036898651062393414,-0.036140842387224856,8.724965584654494e-05,0.0008688716910720521,-0.04435654927563248,0.19748332349563533,0.09844510380033841,5.645140042732472e-05,0.01733272575355706,-0.06350016108058185,0.10804818928203995,0.046717229445833064,0.00028654097074045927,0.04270184449982573,-0.02568852295157511,0.1125718261073009,0.05097713617680522,5.674450325113961e-05,0.004530287156929525,-0.007102103781013116,0.08283161027915388,-0.09195480875116079,2.2121888314742755e-05,0.01066629061130085,-0.014876065749689889,0.04078447996304365,-0.00033056564111445347,0.00012749763374704333,0.011524565504495094,-0.009564564673704192,0.04021713893767819,0.0023299723088866828,0.00037487114054619256,0.00019599293342009933,0.018638630177378577,0.07795947977362416,-0.01175583612201935,0.0001369357531792279,0.0034711395239053165,-0.009984871237550845 +2017-07-31,-0.038504881458653856,0.25232190594483966,0.015185642202373397,0.00016137914794325773,0.009813661691553281,0.02706747384637448,0.09724093885645892,0.0038433893200021836,6.678964100271007e-05,0.004529813416373115,-0.025165128927960006,0.09800174641021414,0.03269468303341398,0.00011878525908652717,0.012691102834385662,0.01160565952569663,0.013650810819461059,0.0038494713090868873,0.00028693216408459443,0.00575876406415975,0.027173763940031608,0.05831657098088625,0.11635950059947721,0.0002438122886222733,0.0073656198040194425,-0.01662844500044182,0.038713255027277266,0.0029411183413743935,9.378614601387108e-05,0.011952909125446136,0.032715748839139094,0.13449034378749172,-0.06488943802214123,7.13765605959519e-05,0.005036222561035617,0.023056983402363947,0.23789002329822825,-0.016878433829550524,3.3237233840527244e-05,0.02103212683530258,-0.016117111255539638,0.013961479218212553,-0.10807028444480517,0.0008902265782302342,0.009399532252660811,0.01827982674727841,0.04139837768018568,-0.04017253716949877,0.0001544011886215986,0.0037369949050161696,0.00804354183298028,0.005558053034908357,-0.040534912695143574,0.0007073738429973955,0.0036535049023988476,-0.008789127734866068,0.1293139068983222,0.003081988180139755,2.0254584223996996e-05,0.002918205056746604,0.052320009339502815,0.17279281584526088,-0.03776337777839568,8.994834328915391e-05,0.032984213088061154,-0.009905410159431704,0.04773552522323654,-0.007995260180719423,5.841072224613762e-05,0.0005832680528914585,-0.016675849352267465,0.012996905775930639,-0.10182983359823225,0.002502482016725031,0.012146966389119317,-0.00831124019067054,0.06298096790394825,-0.06709238980638674,0.00010859469514775195,0.0006892318345477933,0.08043959387220748,0.4179164641644444,0.004041629425147926,0.00029804965282655713,0.00886401804748957,0.006998093908199432,0.0420935734323872,-0.00788483436690443,4.6830082872508576e-05,0.015007726987939542,-0.0011588693134014644,0.006790951690268961,-0.0009908343916990765,0.0002812487684904986,0.03230960305703667,-0.060150890142133255,0.6877266913573782,0.04485185440437975,3.6295803062147547e-05,0.03029819279840865,0.00336114114274682,0.03610847422357835,-0.014682773541795176,3.109992355366998e-05,0.0030975517047769118,-0.03263313283515176,0.09176274425434051,0.030533116980582392,0.0001145552853624434,0.009483715017585798,-0.024743788568339968,0.20469918453031247,0.01640971150789873,2.792173876817872e-05,0.025746293986473087,-0.002051206930348863,0.006648184874196302,-0.0006280574483671765,6.840435773886759e-05,0.0010983981927670497,0.005534635444601464,0.020651462587163917,-0.00393795202829313,0.00012254251822949887,0.0006766560408044662,-0.04085215504729211,0.04554018086052746,-0.03603814126875849,0.0005127383268192525,0.02075482421936156,0.021731339792630346,0.07150881440471968,0.011287512969313632,0.00012791248433820059,0.01177473416782063,0.02604506976743246,0.08642156033682162,0.0009065731375433878,0.0019342944985181638,0.008045095051527656,-0.023954116329172992,0.2035815013229714,-0.011014660639955575,3.025687261423464e-05,0.01091242654495948,-0.036674141098388936,0.0991034074164725,-0.002146493667379943,0.0012098809383149945,0.005205733141839955,-0.0011305214284656146,0.008924624048659182,0.0005413476000819961,8.43557151039149e-05,0.021013381002893107,0.004608953287355382,0.006332631640470262,-0.07277337631503306,0.00017177638792422175,0.011222815213432047,-0.016404821672374576,0.026404654911363807,-0.0736823036686876,0.00035661116123172985,0.001762872195931868,0.018265650741278807,0.07007266825731114,0.007862118878666197,0.002020397559849769,0.0018529166888386966,-0.020647583618189382,0.06619568472565633,0.004923513516946606,0.00010007599693487402,0.02836480582987674,-0.09508707636796356,0.1277564699514195,0.037423553888241465,0.0018501876722170963,0.01380212926232964,0.019154363728246474,0.06933184676795233,0.006807670191708623,0.0001094588795109326,0.008127776255016683,-0.005510593494290124,0.01508011653262748,-0.0064225618185355235,0.00014813376246255184,0.019705890002831974,-0.00466603587636739,0.02253114563032859,-0.038624335424707355,5.054506089119327e-05,0.009608946923248807,0.07978360566437911,0.25592419134325073,0.13749450018926876,0.0029547475265083493,0.00346358333720039,-0.003903417075754658,0.02006245931823058,-5.289684124008576e-06,9.678350795812559e-05,0.012494953299986148,-0.010284810850811567,0.05168113520909166,0.0058787066799517555,0.00014431951100640392,0.011552732656278574,0.006594960335105326,0.04244936796160905,-0.01610627032975466,7.348347035805852e-05,0.008331859624065492,0.02738790730603252,0.12761098909801802,-0.025411014951085904,5.394089764428303e-05,0.001247450578957367,0.004546852219833531,0.008053893940556783,-0.003502372429699413,0.0002752544361443135,0.013692772476162416,0.007194672753402086,0.033790661430895166,-0.013183949884503785,5.294546025838254e-05,0.011520171807361774,-0.03285551648028806,0.3144811667719143,0.044694638652072335,2.695534793083066e-05,0.014494809725750485,-0.017070097438046238,0.05133559087139213,-0.045262100435336176,0.00011623218434759564,0.0021548988221382365,0.019080051837914135,0.06596671630493753,0.03448732314012364,0.0004559137127778565,0.013425106172684071,-0.010907810388086109,0.05699551125923175,-0.11818522103790363,0.00010961468047148493,0.023489123316412706,-0.0001426170227947902 +2017-08-01,-0.01097456565800257,0.07424017009809471,-0.007826666435658379,0.00015632735029277184,0.003936874400921005,-0.00020902030272406237,0.0007078174487427921,-0.019889440858024115,7.085617993613609e-05,0.0002223615701861545,-0.02586419314901858,0.08573315525807385,0.04291191012174258,0.00013955562043987168,0.005628084511957409,0.014840291941707762,0.016550045152383508,0.018275597628408552,0.0003026294007676622,0.0032080668181353232,-0.011563229555667326,0.02825377582639854,0.005313851820182887,0.00021414129500531032,0.0003066735144825084,0.0067881171779972035,0.01618105570177774,-0.0023225097177727297,9.15986804811978e-05,0.0015711644710060446,0.03821079945142779,0.17011332603882737,0.009145527407310235,6.590792569570006e-05,0.025300020243197625,-0.006166679306290327,0.04778072541642292,-0.012590212605144662,4.425855589730002e-05,0.018381971641342868,-0.011322973101256606,0.010288462977117482,0.0019239379200369025,0.0008487010962071487,0.004820858013898413,0.0414722904544369,0.08098134119788153,0.05190959982438298,0.00017907499292622937,0.0021947395696195592,-0.03159712802029903,0.025285173064296465,0.0009601283789164922,0.0006108098578705509,0.01406984372387947,-0.00362603560129548,0.04573427068571843,-0.00020688091066787138,2.3627245579326164e-05,0.006095524224621656,-0.0727452766218419,0.20749480932242303,0.10253893214883027,0.00010414744033779729,0.022464867158561865,0.005921284121055157,0.03314720223251856,-0.0015796686792156098,5.0284118446502106e-05,0.0009959226780693435,-0.018876292133418848,0.014263199180128472,0.0028219961513020367,0.00258120629461222,0.003883334587616507,-0.027811422261596438,0.18957668957063542,0.013078367241295144,0.00012072309793141747,0.016707543906483782,0.05631699509257319,0.3260948051338675,-0.07605868871268118,0.00026742612145277337,0.013269756274822835,-0.033402607521222996,0.20884864523293323,-0.018502469274195167,4.505154239957368e-05,0.014577876894492326,0.013649269126515451,0.08066690527744885,-0.22963484178059207,0.00027886936547794126,0.01443827292927264,-0.021955637975763474,0.2852095641289978,0.002227327742439152,3.1945685182954e-05,0.03738579820357604,0.012956991290586662,0.11438680678595874,0.003196270413531857,3.7845124605012554e-05,0.0033776824421102823,-0.017879583879298815,0.049852669253896226,-0.015938706256249883,0.00011552919472869473,0.018766593056152272,-0.02633187435930673,0.18211903138174193,0.0009214718735104342,3.339787373760888e-05,0.000982467566843294,-0.016825627072047357,0.04743369069109826,0.01562939341099067,7.864329909051512e-05,0.00849133748334651,0.017808141460222124,0.06183812842909584,0.04600776498283838,0.0001316772826146233,0.002418332528797383,0.022152380280087303,0.017225254738762824,0.004770510508833507,0.0007350727212448903,0.005759850483900734,0.01376393918698603,0.05384882178991002,0.003083996602640491,0.0001075852042728229,0.014675094098877208,-0.017200136075115786,0.05801101843214733,-4.414970023795659e-06,0.0019030077962096906,0.010168445326050199,0.019119331505891228,0.16974275152293067,-0.02110363754767887,2.896434160459967e-05,0.019185697303487,0.048932414581924696,0.136653135484853,-0.06299714579684201,0.001170707270458553,0.0006905207735385692,-0.012122886882951617,0.09272048724663437,-0.015117825409511272,8.706748322167156e-05,0.016964471433063844,-0.02426916546671016,0.04170009142245013,0.030823920295463506,0.00013736092978248278,0.011249230654282998,0.02099351480399418,0.026313648434893477,0.05426849109167187,0.0004579393902413352,0.01987981730406472,-0.012721891321543095,0.05856367056416592,-0.0189541596286743,0.001683734975692297,0.011910842574065453,0.0049689370215875795,0.018518607386399672,-0.013057390017235547,8.608857883413153e-05,0.007829754804668,0.044787927361897406,0.05848397430007603,-0.007607787317090691,0.00190371213992314,0.041919197964835814,0.007443719645957321,0.023643465448088614,-0.0029782067772414493,0.00012473689019347524,0.004323062072468016,-0.054826753606887366,0.16010665300903085,0.07141710886670705,0.00013881727936945794,0.008059274953854471,-0.01974650693056906,0.08063087497324896,-0.007990524183008739,5.977269457243887e-05,0.031148119279054413,0.04373099525716427,0.11482040579513955,-0.00589311237844403,0.003609843233163232,0.0007626517710310977,0.04049961737147366,0.19470667082299065,0.037170408936504695,0.00010346909720362138,0.014717900077427192,-0.012146050604260853,0.05733347801331854,0.008782575244961928,0.00015363408650073077,0.0045157173098613265,-0.02262715633883838,0.12463683634870458,-0.01453196777232365,8.58681802948942e-05,0.006263666049392303,0.034454705162835574,0.1294983269123651,0.02122557702800864,6.687006961617451e-05,0.01257740769883707,-0.0022366186384747714,0.004598253444474418,-0.00396959680699315,0.0002371528940930137,0.0038188950973183106,0.007929645734814111,0.03211817968805736,0.003910174626357501,6.139277123097222e-05,0.00870303181547398,0.010197532742967405,0.10121382798352042,0.007404717410133753,2.5994803772055046e-05,0.0019320495331564967,0.010970821351442641,0.03446426207160217,0.025878585816451555,0.00011127026530396919,0.004198604740630811,-0.002566332769777149,0.010374277435989418,-2.3123499489535374e-06,0.00038992679712864284,0.009901065720355248,0.026394695675090077,0.10407224388240922,-0.0539615556258473,0.00014526250750510744,0.016740318386227523,0.0008105878289832687 +2017-08-02,-0.0009545304439277743,0.006946908292743302,6.143451332552504e-05,0.0001453064198862327,0.00038053138583887683,-0.06767137256382759,0.22010004430434807,0.041278499465009805,7.377264962258889e-05,0.0239748753629579,-0.020666621278503335,0.0707770889496071,-0.0886048488121666,0.00013507469304125871,0.007903201023936985,-0.00017064233643622495,0.00014484803407183028,-0.035377224452386204,0.00039759603060118663,0.0014696467003731213,0.003341433986122492,0.007239449194671632,-0.022488409705750508,0.0002415044475920405,0.020941251365602744,0.0037256266002295277,0.01005580007200199,-0.018467870994467304,8.089644470560365e-05,0.01081994242544989,0.0031310991812612287,0.011376279876097257,-0.0006301451245677354,8.075815935493565e-05,0.025029898971993828,0.010187090002978787,0.07767315579682901,-0.0193612125657832,4.497568712778379e-05,0.0023400075422597855,-0.007588492855495961,0.0063044725688316434,-0.002910485075898236,0.0009282213572471369,0.009984632680814221,-0.05805167476199059,0.1378159004931178,0.09804569690521149,0.00014729137373106828,0.01994398911647841,0.002596324851554448,0.00214520396752542,-0.00625504450129583,0.0005915817899439502,0.0009453632113116594,0.01812131955408145,0.21201983500447202,-0.02019673032870596,2.5470420566181095e-05,0.005550344715799164,-0.09300961008931792,0.1992877594926259,0.11653559783019321,0.0001386430925165305,0.01896778422924532,0.015084960434056442,0.08350694690277383,0.04226540336993958,5.084911375105663e-05,0.012426516739867124,-0.002031142341298837,0.0018489345904321754,-0.022859168898157988,0.0021426033752056815,0.013746805427743303,0.0034218372319003124,0.019231424388981858,-0.00693711298347654,0.00014641986544871962,0.019919585401548784,-0.02432417293424356,0.13034807316441274,0.0050215752822436385,0.0002889626414545003,0.03649963174402026,-0.04731576845135199,0.27952731758258437,0.003472151495629888,4.768069717116361e-05,0.025470684980812102,-0.035335045824859336,0.23257810178675356,0.04925079603308003,0.00025039384241332536,0.023352257321191134,-0.03765654861716041,0.5392887821060761,0.01897801890327657,2.8976728879326607e-05,0.002586495097529714,-0.020188571157631528,0.21893358310357056,0.06922109724744999,3.080880881232763e-05,0.006378719156762899,-0.062408662974788295,0.17362405697633962,0.1106953028576669,0.0001157864488424648,0.009761285452007004,-0.0043616858264165234,0.027432728225940596,-0.05235536043017442,3.6726348849868176e-05,0.009703384688085043,0.013339756597623929,0.038880190561284916,0.020038384488222455,7.606710759843548e-05,0.005751868441686873,0.010471154994921772,0.040236882557674755,0.010325834236687327,0.00011899229978533032,0.003485455165063318,-0.003744506186709711,0.003959322124060237,-0.013122732359514921,0.0005405666855563096,0.005095081173735411,-0.0036103213859467404,0.012786713573335216,-0.005112776874282955,0.00011884281658382471,0.003137231502726851,-0.029204289249471747,0.08363331580329185,-0.08008949588343542,0.002241230377945288,0.020490818886303892,-0.0012870133784681971,0.010961141282580227,-0.04593816770780636,3.0193223451736065e-05,0.0007942694589847966,-0.03867263603643498,0.10111404054102613,0.029249928329290513,0.0012504420805020294,0.004289197112986303,0.002868741995220548,0.02121607183987452,-0.021926726133983096,9.004345630888921e-05,0.019530093615461108,0.012285254081002993,0.015747240205494843,-0.05074584794298823,0.00018413022209073953,0.0004714629389941994,-0.011831707902554278,0.016006416946200655,-0.002423879292535684,0.0004242845599138526,0.011192891159433014,-0.019902152306481766,0.09074133945082768,-0.013511678232020732,0.0016999854368262666,0.005293926661916167,0.0036300528674175917,0.016803982115270746,-0.02027541700222227,6.930923571554723e-05,0.00021358486037115513,0.06441224480637449,0.08859848463707265,0.023362101415428292,0.001807254574707895,0.02029905461872146,0.0320974009594116,0.10751898106157869,0.01026629995671002,0.00011827712623187866,0.004101845391544868,0.015890654340826652,0.03273482815401007,0.005075508952342677,0.0001967850455059305,0.02262866449383505,-0.007960766689410306,0.040069545541782325,3.719499096824282e-05,4.849024788067721e-05,0.014928297076614047,0.016685745412061415,0.0540769201217121,-0.010149587555724714,0.0029245006477261605,0.02587307906784891,0.016660546236126866,0.08526456763653768,-0.017498170900962996,9.719886926590432e-05,0.03787404007474773,-0.028542305466213207,0.14754662652497472,0.03229891531224182,0.0001402880084037943,0.023450451235758826,0.01347618297969638,0.07773139328020101,0.019654310190290843,8.200099945477929e-05,0.02247617591285062,0.016519285042754114,0.08201078320331902,-0.038588265879030484,5.062530847601508e-05,0.009105255164427053,0.00440116199389703,0.007974772926557069,-0.007824289400686243,0.00026907814325847823,0.01933209821196073,0.03035077033732032,0.12303602412147675,-0.024864609355900635,6.134113475320546e-05,0.0036233452158195463,0.021770063942528468,0.23145397006943394,-0.09609640590970168,2.4267573607647176e-05,0.0025576653278154824,0.016454571333671078,0.045338096333344756,0.041188420718700915,0.00012686220522089818,0.01157790722510559,0.030553125768939256,0.12803248582265828,0.0637696472385719,0.0003761520569577629,0.0037215832781336833,-0.03712194778258706,0.16455054779401498,0.030291291760342186,0.000129212110186716,0.0006787951975704908,-0.005464849520002197 +2017-08-03,0.04124790392161275,0.28295364406706675,0.024367115221717323,0.00015416052354153941,0.007440403737678762,0.012895096171428758,0.044114213568147015,0.0027975771539680196,7.013851565440356e-05,0.019126277933967446,0.006987757796716285,0.02350121471140401,-0.03172262098636064,0.00013754497782815059,0.006709547673401886,0.005044427377013106,0.005336100852950981,-0.020971173629260535,0.00031904776094523405,0.008465040195884191,-0.05002387174203966,0.10689617156680074,0.19834916638510922,0.00024485722486506663,0.018218287610055697,-0.022953582744312626,0.07165448297209079,0.047509167512119276,6.994454603925894e-05,0.0025855980719938707,-0.0215069565228754,0.09206091839482158,-0.0160563416331726,6.854779816219784e-05,0.011038804971407523,-0.038889514622346626,0.2929517260661629,-0.0011755227875896138,4.552344039512247e-05,0.030958628473355787,-0.018338306391627774,0.015812966404113796,0.0053959362089852185,0.0008943153044623627,0.0012639823822464076,0.03414651861175814,0.07167547902584837,0.028983358275554004,0.0001665856985433136,0.001890873142173438,-0.012440660763966865,0.00927715050921803,-0.025350763310819945,0.0006554705797463935,0.0026721829709680776,-0.010195695425341747,0.12941525932883424,0.021318692877772525,2.347762469495188e-05,0.006897534615750706,0.001878324597133652,0.0060542451122692865,-0.00011291543504290713,9.216407820410665e-05,0.0030613248428854965,0.023484775512316335,0.12614013953935269,0.04802296158736286,5.240767876726269e-05,0.002062606026749732,-0.010080288496878106,0.00879826272178891,0.0003651576988545817,0.00223459595445728,0.014228600295484109,-0.03384037056579139,0.2399395004339139,0.007678987190359762,0.0001160607753512286,0.013377493279894445,-0.012093279365094077,0.062452738478278716,-0.01708256717081969,0.0002998477753640823,0.032880793856211656,-0.03988404427797033,0.2720750566740743,0.017296684924192268,4.1292522814252635e-05,0.0033503815304451326,-0.02152851921609866,0.11966727137070295,-0.027548550638503498,0.0002965006010124232,0.00557566238562347,-0.05873968676687932,0.7609201424608539,0.04027511347128868,3.2034856064816215e-05,0.01375340259400692,-0.015431189309990202,0.19199078051857596,0.03628895903097731,2.685348984802437e-05,0.006243991570060864,0.010510468583336017,0.029963817631026565,0.006488275449830762,0.00011299199822534887,0.008466995954899543,-0.00029489359365650434,0.00199221986851369,-0.013603299910802065,3.4191680528941886e-05,0.007918709217154403,-0.006834185736426632,0.020366371023261335,0.0027970232087966263,7.439615811195304e-05,0.016746412802064417,-0.01746211769917799,0.07360709364524655,-0.04669125194877466,0.00010847404534140216,0.0024240316959866105,-0.009679742426900109,0.008222821216547205,-0.022243885177681173,0.0006728503996618166,0.001188694365386143,-0.0006005969928299606,0.002325517260508767,-0.009486962984761177,0.00010870501871743556,0.007166742265210524,-0.017590011919066343,0.06283915447087358,-0.003264864480363997,0.0017966148111568932,0.02949518693255955,-0.020694368420521133,0.1837592426494141,0.004435476526294258,2.895910793181979e-05,0.02088535566078857,0.030706003613390723,0.08314508032961496,0.00803032084409815,0.0012074190099501305,0.02590247185469827,-0.015893128197735733,0.11443013874976844,-0.0242537675549454,9.24899628987839e-05,0.002840130384332797,-0.015609947563808244,0.018991305621021866,-0.009725342404883252,0.0001939956571087974,0.007023798413683116,-0.01735076958020959,0.025350432658771887,-0.0028670240866413453,0.0003928595187279333,0.015589538739528393,0.02424430689672977,0.09138560985399041,0.013732402009994177,0.0020562802281468514,0.006746743245834275,0.00489930629212654,0.01808254418707621,-0.04644352978611802,8.692914871708244e-05,0.004227101833478462,0.0583526170098576,0.08699612233638701,-0.012608191488827487,0.001667391697364374,0.030089095986012847,0.038444906079443904,0.1128221945084661,0.011982133142992056,0.00013500824686601276,0.027981990318878623,0.05291443638063885,0.13114762156745016,0.07084130550884313,0.00016355888145761822,0.013230056444518202,-0.0430984461791681,0.21228833395007735,0.02055590185986961,4.955065608731453e-05,0.01883886385881838,-0.02556799289990103,0.0821317444084907,0.033954981213830865,0.002950554548003473,0.024226848326904974,-0.015588938348590951,0.08152622048814488,-0.008502345730432676,9.511736289473541e-05,0.03486499729445209,-0.0372020592011193,0.19007592946346724,0.03397688017723974,0.00014193864046005295,0.0028488180190370436,0.021997521008059243,0.12852771616311534,-0.1125458810417086,8.095163958486598e-05,0.005041627609952383,0.020635318556187717,0.10639779288978876,-0.014025029642505404,4.874453743550723e-05,0.00705156673548339,0.013165430215804526,0.023242964082283962,-0.040331192675963176,0.0002761677352070809,0.006211149502553706,0.014774014479309462,0.05972850211917432,-0.02632487109581975,6.15079528280367e-05,0.001553392685411754,-0.010686382500101689,0.12810427103835434,-0.03416925472090066,2.1522781210063505e-05,0.014776305109341857,0.0349104522110778,0.09372590818373992,0.10667545151643178,0.00013019814050836958,0.013223368874158944,-0.01679036349108928,0.06679802277177689,0.0012564212283487114,0.00039620911418789873,0.015552799177976695,-0.014086240557411813,0.07293085180251202,0.0009937421192441208,0.00011062559276412798,0.0008527327016411531,-0.004096511498901668 +2017-08-04,0.003309400700359149,0.023353827800230282,-0.018666789829897414,0.0001498572866094965,0.005451472135820231,0.03320022179305831,0.10069941346170766,0.014161300091224564,7.910875881110702e-05,0.0007144313496696602,0.01473117741810955,0.05016485256192334,-9.545253589530466e-05,0.0001358423307244159,0.0012624895682265555,0.03116329943717369,0.03694850958981093,0.11269908395122509,0.0002846520817258327,0.00020969287129159403,-0.005052385385002556,0.010343652138726586,-0.05045326620797497,0.00025557615720093985,0.008362931804362423,0.00668611414525068,0.019883040294656543,-0.0037747523306322374,7.342394816638131e-05,0.008207754055336464,-0.033672299185447556,0.13514910277690534,-0.0008575817685191618,7.310540036584054e-05,0.016179811148512593,0.006381032135146087,0.058761639443291463,-0.002439357125593056,3.723879696073854e-05,0.01904718519494656,-0.02128635924651882,0.018707632207935178,0.015734758990732647,0.0008774600467680013,0.013660618551453636,-0.0028354663476529655,0.007030510579326066,-0.01584252282751537,0.00014102610704350637,0.007027742548475536,-0.022529712826380936,0.018495286885829382,0.060485383090977014,0.0005954138630506463,0.0017599017459681578,0.008555480894447635,0.1111756626809867,0.010525629940280614,2.2932821379403383e-05,0.00425811509506126,0.023928480590257196,0.05756068210934043,-0.005625701011430499,0.0001234923993681396,0.04791253655708705,0.004507868217250463,0.025868076001457165,-0.07817513725109745,4.90533759221537e-05,0.007327288719478293,-0.04314407306279344,0.036537129156924086,0.03358838542108059,0.0023030835582913876,0.019592547056290318,0.054060067830041816,0.3220259702565843,-0.034254703854619886,0.00013814583527059477,0.015721983591554873,-0.0017306270828409554,0.0081141661248714,-0.04383175500229999,0.0003302690161677061,0.001582564846287093,-0.04424055235060481,0.2571488595872141,0.021773888747909757,4.8461504625925656e-05,0.021999812943209986,0.027117578793290346,0.15444947250470573,0.013656723843871297,0.00028936852381996036,0.00844557273965095,-0.012449226844387264,0.15573735073581835,-0.014652208685791925,3.317262423233509e-05,6.643397263842625e-05,0.027455686849571653,0.2911790285314426,0.039366121484879966,3.150314623040996e-05,0.0006586856518584214,0.007333302087131467,0.01770712051614616,0.005100725610600121,0.00013340570070970192,0.0053216567051644174,-0.025902836638972016,0.1674757395932739,0.010320169144563553,3.5726280057042976e-05,0.010168474014159814,-0.012567700445309728,0.03568897995351589,0.013383858142512528,7.80726763978653e-05,0.0023078236789709668,-0.01728776528219109,0.062066295428299646,0.03704377870298025,0.0001273595831022922,0.00555404041521318,-0.05685746148408692,0.06329396487469592,0.047221314340461853,0.0005134530352640807,0.004722567687121633,0.034611447307401975,0.121319505252749,0.07937151904026743,0.00012008123298959857,0.0017569813580901035,-0.018789143903337194,0.06542571052244714,-0.008562335776603274,0.0018432223149435166,0.015950463517048555,0.027368857039064495,0.23107223158389661,-0.01758665581120006,3.0457278729893245e-05,0.004200353721529925,0.012257997016478714,0.03476291453240339,-0.05004575558236538,0.0011528547689056239,0.01778926300255724,0.025556349905576023,0.16682220714964752,0.005985807945616078,0.00010201654379664879,0.001218365862231279,-0.006147310775832935,0.008361588172769576,-0.06358253660921015,0.00017351690070198042,0.00661813671503697,-0.026055883511623232,0.04447238613312405,-0.1482844787057893,0.0003362941293424512,0.012275654623209037,0.014323113463851051,0.058938806001189566,0.0014189122219587687,0.0018835902767800174,0.009657434186632846,0.00993839261749878,0.04166428211171836,-0.0006370680651548668,7.653192140247103e-05,0.019686012085156825,-0.006436190485306321,0.008743152618554302,0.0007167264212255673,0.001829944934338744,0.015149500295588805,0.013796209458387844,0.04267360872700878,-0.00534155074508824,0.0001280903596278045,0.0023394504669472967,-0.020596922166959127,0.052024788011935066,0.014462708566040282,0.0001604916288209909,0.017231676141654058,-0.021125254597090613,0.10411148819167666,0.0008492805883342842,4.952417189006305e-05,0.013292404138066686,-0.014603674626675677,0.06094923637288784,-0.0018215012901037142,0.002270972825099755,0.002826483626250996,-0.014850770544617696,0.08539681363198252,-0.012860540873685499,8.650633093085825e-05,0.010870306391314153,-0.009277823954383937,0.052614466506038265,-0.0012226390844987075,0.0001278797388848936,0.000711753111595785,-0.008127675424544558,0.048866298472288065,0.002254988551283755,7.86693582384272e-05,0.0053727856609535884,-0.03402528855728014,0.16189832127119516,0.06893157352255687,5.282103008755252e-05,0.021511207481305004,0.006536256518187703,0.013789902921065572,-0.016647235178312007,0.00023109857800653936,0.06328814567107358,0.015360270781695193,0.056250436480678435,-0.004761917167454226,6.79027480891491e-05,0.019505517388657922,0.0032449774082183,0.030975185465124427,-0.0011601488725406694,2.702894207883499e-05,0.013108266043407873,-0.0014912711391637926,0.005087572796379481,-0.07596167990016352,0.00010246013907966802,0.003869090425979077,0.017997617873333115,0.08166687198223797,0.0022870094047760547,0.00034737381320752014,0.011929414578004185,0.03417954466904915,0.14570497034620145,0.002277209063551883,0.00013435805306465768,0.016023140870135497,-0.0003751495664899705 +2017-08-07,0.023057905732571733,0.1716390728241262,0.013182668569629775,0.00014206604276151754,0.0025373976175427247,0.010525139101555456,0.03840513722917056,0.0016066427443941064,6.575806869431983e-05,0.015937765383318734,-0.042279663665458454,0.15058403996549358,0.1230356456178525,0.00012988224413137007,0.005460093873594378,-0.0025286322005695808,0.0024494253382306625,-0.029427440641299988,0.00034840895928709375,0.0028821694060131068,-0.02660793116487658,0.05850643951282674,-0.0033229407735031846,0.0002379606854822249,0.015098779489827263,0.004206429945284898,0.014306218057645578,-0.057589964154259314,6.420007862758692e-05,0.002997603708327097,-0.04163136812069931,0.16433292087681994,0.03756192880142835,7.433373651103286e-05,0.028245446307766344,-0.0015051498230368257,0.011477127206453606,-0.027518416471963812,4.497230539765082e-05,0.009265268235801606,-0.0003273118842852498,0.00027661947123519163,-0.0012580232839503238,0.0009124809661718958,0.0032917143392381066,-0.023287056606769437,0.04647012713742686,0.019046711532365306,0.0001752276451495458,0.004156198105827468,0.004143491656058191,0.002655517721008657,0.004516667208264093,0.0007626787093181332,0.016912719943412327,-0.003156616818783574,0.04719553672973175,-0.03642971614753529,1.9931671743511506e-05,0.004722196165132446,0.04819927418592582,0.12162387577861555,-0.003139290604971653,0.00011772608381481435,0.025146461137905377,-0.0004481889038098559,0.002899072092555979,-0.0017423619595719373,4.35174965118076e-05,0.0011922321887808667,-0.021848162195332914,0.019999800937138157,0.00878998055253403,0.0021306504727521105,0.01367499108906381,-0.06671253441919126,0.4825826170375697,0.09591938926431035,0.0001137595520797359,0.003925084025477584,-0.03135736326581771,0.183149677492809,-0.0047915679444282145,0.0002651194626673842,0.02072711138365596,0.05772824957730211,0.29233237621640584,0.04560248342181923,5.5625307957807404e-05,0.021332828443039666,0.005212749430514843,0.02805601940347679,-0.08734114101798973,0.0003062158058062002,0.0034643288052834146,0.010098219815545515,0.1301346843771665,-0.018549326123914793,3.22019364240033e-05,0.043610044376587026,0.010589418784816897,0.12739049910418362,-0.04426495915998558,2.7772616283511614e-05,0.0018878922888651906,0.023377875909824892,0.06629243882526405,0.02184134976568822,0.00011359620122209868,0.001328374592773232,-0.03777196326881339,0.28684324590514887,-0.00946058143875514,3.0417065043274742e-05,0.015020644107547004,0.0031759111379153484,0.009652379800601308,-0.001609548823612158,7.294765282368508e-05,0.007432893240149237,0.002693339253628426,0.010360366040612714,-9.15786140860304e-05,0.00011886789079876427,0.00671426246170994,-0.02244262780314385,0.021137155345466695,0.004346212623130926,0.0006068798656098886,0.0011449926467795146,-0.006199658460375698,0.022884911117055252,-0.015035201426909511,0.00011402617177635663,0.004263930556736392,-0.00173694430984426,0.006761116128474423,-0.0012746630777155305,0.0016488709762554994,0.011521522166154697,-0.00590037204960572,0.05542711680729147,-0.03503414272450481,2.7374065631998604e-05,0.0003759239039153174,0.07864047318569499,0.23507380172665937,0.08647826421914315,0.0010937376363814848,0.013779692450414794,-0.022136758593496505,0.1771778555411073,0.009997640979422944,8.320132284183256e-05,0.005607765200750639,0.02738035004423791,0.03907886633783853,0.06753990721255325,0.0001653645547407491,0.011900068221963604,0.006630713449688662,0.009612934962616199,0.02254664369396904,0.0003959206645577279,0.001490647215879421,0.002593678952222206,0.009629351489348705,-0.0036437919010615977,0.002087706865168979,0.008730147985189866,-0.015100347065480921,0.057957204885471736,-0.006213783139283734,8.359299144982957e-05,0.003671545292337737,-0.056504530415453835,0.08685953001911496,0.021751426212492236,0.001617122749268195,0.008272905291278589,-0.030029157922675038,0.11955603701745207,0.06019375574847801,9.9514801155476e-05,0.031772286482068986,-0.05562444994420456,0.13824712848963283,0.07404463302199837,0.00016310601833876225,3.195193160625753e-05,-0.011190185201015636,0.048687792813699754,-0.023450485291284108,5.609589899167594e-05,0.0026555967522004557,-0.04545517881961517,0.13172169787526042,0.0676790265610651,0.0032707255871770764,0.00041897914111366105,0.029360122914525114,0.1435077151003914,0.016951303358089684,0.00010177080045022436,0.017540645395904567,0.02438153746027958,0.1324345974394534,0.013340849572846562,0.00013351203536686503,0.0005633131928457998,-0.014829248524904545,0.07902971545666172,-0.014127933620815327,8.875185195072841e-05,0.026296333213697537,-0.022302596113088297,0.09477216976417256,-0.002443449022505471,5.914553857880734e-05,0.00943505391385377,0.00807071268914173,0.014481724161693087,-0.07507358793235372,0.00027171962719424925,0.008718061400258327,0.0016240471919540447,0.00603289128134237,-0.0002428748410351989,6.694027957251875e-05,0.0014651051292536798,-0.039335590385042966,0.4879076719224927,0.07370699952573893,2.080076517856677e-05,0.0010173482847504198,-0.002208055690438886,0.006684976745467674,-0.008509416467108483,0.00011545668568801646,0.007177670891373463,0.011128693777039608,0.043357749185142604,0.010354216169140182,0.0004045809543229069,0.017172935033853774,0.0053162326191022735,0.025203337550776764,-0.03710480983749045,0.00012081412582435662,0.002607819067131657,-0.005098523915660312 +2017-08-08,-0.011275443059323095,0.07987015445960952,-0.004785880947065374,0.00014929170423427294,0.0056191073659383976,0.016891273737100372,0.05622105337107319,0.003376620022549319,7.208982118366278e-05,0.00567208630522366,-0.015443327973376428,0.0696251893933726,-0.006564414286831249,0.00010260575248014854,0.005845590794617517,-0.016407015668820853,0.018601447298324764,0.010114892318944486,0.000297680723839719,0.0011534014181259114,-0.02366938269946969,0.04769235708377213,-0.037449814968009,0.0002596784540328822,0.011376740651685981,-0.008479948181291424,0.02149780024421224,0.005788249934794368,8.612830791059235e-05,0.008150319942371802,0.06077152169497356,0.21916027793370177,0.030310515488995715,8.136321924969072e-05,0.013595321213931916,-0.008909666493134084,0.07426291125773171,-0.044412791249754134,4.114225502240145e-05,0.01206184966739816,-0.032931574538572275,0.029586373230338893,0.05104278399225314,0.000858352252108211,0.00822531634293363,-0.01169049455425555,0.023913497796237564,0.00797945811973048,0.00017094313557378197,0.011242394026176605,-0.02126432594941058,0.01670417434839884,0.03988394981438427,0.0006222300264988353,0.0006601884603992065,0.007634955929614048,0.10175663972489944,-0.09049157157650811,2.2359730617569873e-05,0.00912730404414706,0.05201155831305791,0.136604110448052,-0.0011819659605955407,0.00011310638865377915,0.030462800033897376,-0.012989029044302776,0.06677013660152095,0.020914181346327408,5.475909242072383e-05,0.00701240295020657,-0.00349750713854687,0.003114760209644294,-0.011672492806814627,0.0021900647954382828,0.01116253543345231,0.046799467886539936,0.31187391856108837,0.038570580220852434,0.00012348493170458608,0.024911661586385202,-0.021615510821042586,0.10549983093053003,-0.01624049919548965,0.00031726485920808526,0.00882801998016326,-0.017132524367396207,0.08990991933584284,0.006900473170784253,5.3675327892939664e-05,0.0070794471203386574,-0.03794703942623824,0.22340741960808996,0.0606115713280357,0.0002799413892673996,0.017086783283107167,-0.0020883766911389645,0.02490066350631302,-0.0007915071040717549,3.4803918984897205e-05,0.024319048350279617,0.005909593738833098,0.059296855717100076,-0.0016909068859927863,3.329719656675521e-05,0.014885977880121698,-0.005751449266010294,0.018318640891577993,-0.0007865233071128204,0.00010113623915157323,0.0024260307154945447,-0.008354880021893949,0.0684890910553164,-0.018403273716826866,2.817806659757004e-05,0.018759918396764476,0.010910287305274137,0.03827589150624593,0.016239819796365525,6.319580562092382e-05,0.002300714164108808,-0.008153465554716249,0.03077866824372894,-0.020939940943177197,0.00012112701419842829,0.0026812976925628482,-0.004193607120524853,0.003518187654899587,-0.13674322929028196,0.0006813092762408531,0.009829718319891987,0.008559899492374283,0.033049314730593034,-0.04141160724247291,0.00010901649515941532,0.008205937577840597,0.009485416205368503,0.03859778847439041,-0.04795894712997261,0.001577295792265127,0.02150116941623568,0.03467676895664176,0.31445652255468476,0.026835570672341373,2.8356995397897887e-05,0.024281622419003716,0.019257126457349283,0.05482544676913915,-0.019093777243697187,0.001148366653034097,0.010643284544964954,-0.03401713231150508,0.23488509914216096,0.02593049744930619,9.644237037550778e-05,0.014342294802684947,-0.0031504469300194194,0.0045332041586922875,-0.046014066303663836,0.00016402584206776387,0.001518294201270913,0.006738135418339782,0.008769142751333335,0.022000504534371808,0.0004410486618425913,0.0056766212300643736,0.019017011027834083,0.08097853056173207,0.0066091680586973425,0.0018202150785352465,0.03410662430871031,-0.014915825025909471,0.05333408138251427,0.013988955865790768,8.972900073075646e-05,0.0039902452151970615,-0.042706923901343175,0.0634530509090979,0.0029536612611423844,0.0016731041426911717,0.005461280523236683,0.0190135894546704,0.060647649334221045,-0.06133098275771665,0.00012421274981182082,0.003100152435785159,0.03461739922046355,0.09604907655060263,0.006125866199235512,0.00014610383608847248,0.004219909552626975,-0.05250782917021688,0.18046241616913047,0.035608660801525804,7.101518470091767e-05,0.019904968047663146,0.01510569771730063,0.05212365696943944,-0.037494619538782394,0.002746780589097495,0.011705175561367237,-0.022517597002046887,0.11196687764661085,-0.09299959289541634,0.00010003985314440658,0.030193908768488265,0.0019876209528971477,0.011697895812417279,-0.07131126669765313,0.00012322153134121478,0.014353008606250708,-0.00927948535951544,0.06841519520205572,-0.033442359157005344,6.415345039616121e-05,0.004671560866129907,0.07290583354658081,0.36856955312551776,0.10871040236101781,4.971531763784638e-05,0.0009771791027044258,-0.017268487952689954,0.031087473250331177,-0.0020393091386573057,0.00027083094271045474,0.021151648474505198,-0.018590535657950265,0.08457199479999808,0.028770998581993706,5.4661268373667084e-05,0.0039260729377707335,0.004273678231369299,0.04027207960087816,-0.053721739970827014,2.737972296554559e-05,0.01572612790815091,-0.015967962997624853,0.05161200847041369,0.018138498455758455,0.00010814531805355981,0.00593873404543123,-0.014692630662350267,0.05333997263887055,-0.06192551033600426,0.0004341849283668526,0.023186096554359457,0.004075711194765775,0.018849312845825007,-0.019677611345634356,0.0001238453416891472,0.03435635439118288,-0.0006919435181193408 +2017-08-09,-0.027159410682214637,0.18321732074320712,-0.0503396329973322,0.00015676185650002805,0.0015145702475543286,-0.011821765329201312,0.03808922121657611,-0.0012307469236169915,7.447161422310751e-05,0.04031885742948213,0.006581331886917741,0.019535328543207026,-0.09698815967361171,0.0001558440683821216,0.01101704643219696,0.010470165114486825,0.013314385111742107,-0.08757602021382495,0.00026539960509907386,0.006282909824489048,0.05922710704359528,0.11626598407669855,0.33200999935308684,0.0002665419805594884,0.006361957348798338,-0.009416351991033706,0.024159531221782823,-0.007991179752069798,8.51022262054498e-05,0.006336693954646266,0.00025818697544639866,0.0008372971999470788,0.0016263303587216935,9.047832381140583e-05,0.017291858736721486,0.0007564012950884571,0.007129256491995736,-0.00035519275926700365,3.638368126820795e-05,0.005855261420591353,-0.00897854298523814,0.008103605538806789,-0.12017937787357316,0.0008544218780283065,0.006381645070931927,-0.028169543132551485,0.05948133241898405,0.033219950976725254,0.00016560025507925683,0.007406749442546849,0.00452205527027074,0.003296689910816989,-0.010584995243654277,0.0006704742843753029,0.004318699275020573,0.0030505238526575616,0.039933038781565934,-0.01692289376519409,2.2764853230631572e-05,0.008008444690164098,0.006618040877015228,0.019544850585209723,-0.019776768158604012,0.000100588452876522,0.011556836643318968,-0.02380412142024545,0.12765042482234365,0.04302721305852815,5.24918296432595e-05,0.0025018659736737356,-0.013538418248508302,0.01205570990266067,-0.0010875184732876363,0.002190272298359818,0.011818264269108716,-0.01939927333990225,0.13483831737351865,-0.002890176473128987,0.00011839251484595393,0.002365193412403573,-0.004797502338778801,0.028346722021903744,-0.05885920621368707,0.00026207197534279135,0.0024705804467675717,0.03774331238624376,0.21007139390270588,0.0003221301265144576,5.0609733498829596e-05,0.017141896904246442,0.04073753180488496,0.18717048963392627,0.044282715844758666,0.0003587105447777025,0.005324703931498389,-0.02125094820099181,0.3014044499101333,-0.016152173197167802,2.92589599223264e-05,0.0023286405471608213,-0.006440867284669461,0.06075647239233525,-0.041661842722693576,3.5418772790445065e-05,0.0044733999698719756,-0.016728765387072637,0.05327389727391091,-0.016800042963898837,0.00010115146503840394,0.009475973542160957,-0.025286739420234645,0.1588788821647506,-0.014668199541680294,3.676368477915471e-05,0.02429788319223919,0.01541665061543727,0.041204166567209065,-0.012882630853234765,8.2951888623149e-05,0.004835275050305125,0.0021902349149226295,0.00847229908646764,-0.010957029359383058,0.00011820558992509654,0.004366341854341733,-0.004825733781065271,0.004389540674337524,-0.002693292360981824,0.0006283763676436323,0.008449751000303264,0.01013642525791409,0.03358651348282689,-0.006728958927371655,0.0001270298859382124,0.0015456177147325834,-0.09209280865989976,0.3234458842689891,0.1347256487932589,0.001827440576536109,0.0003450336872549548,-0.02706768102716295,0.2164687536301883,-0.15091804747269014,3.2154223686632135e-05,0.002264271234514035,0.017062023554667315,0.046751426868937074,-0.01132526729250935,0.001193182669356262,0.03501659262386067,0.014386752188409792,0.11042492470706118,0.005102563217348881,8.676034981070097e-05,0.01785590762566357,-0.0271233828055325,0.042617054863286576,0.05471863351991923,0.0001502124072663878,0.007002665287587983,0.03297682229121989,0.04088148872181964,0.13395875104980193,0.00046300535630900666,0.013825126007596741,0.05295410703401979,0.17129618480428171,0.06198836081367958,0.002396085438346991,0.0005200612177193335,-0.013123037707503385,0.04388201164785704,0.009827719880730378,9.594850643578928e-05,0.013298665588372024,-0.09704118600203299,0.1834953605403468,0.05295450901519859,0.00131464410813459,0.015782777913408305,-0.03910141917669053,0.11111007990321327,0.0998367152413156,0.00013942963706165844,0.0014107812676713786,-0.010401788208066417,0.024039041104080262,-0.0002182339341767225,0.00017540874562067124,0.01127260990672676,0.00274164747968389,0.012875429491891166,-0.008381655690125315,5.1971327806441836e-05,0.03806391943473184,-0.023108489441637736,0.08621769945254282,0.009509841388935429,0.002540347828322451,0.010355332194648563,0.023893636005847232,0.12917103249150955,0.01842275516417953,9.201479928132079e-05,0.0037280994789244226,-0.03113594163231215,0.18027751887094304,0.010418507788339448,0.00012525100420774204,0.013648912955913752,0.03501626116580626,0.1804592379308224,0.0779256034152549,9.177816124724245e-05,0.012624580996875457,0.00948068009560854,0.05188489580461706,-0.006054260484016367,4.5924658813692324e-05,0.008448689094373525,-0.046193977362870994,0.10566834018785828,0.0003487178989241865,0.00021314240683079403,0.021642537423453536,-0.003452826808945718,0.014981743207695178,-0.04987725867734566,5.730952673835694e-05,0.015813659240855236,0.008155762648143088,0.09798277094572168,-0.08027987202084647,2.1475641555667752e-05,0.009868626970484585,0.03086643796178385,0.10064085188221657,0.10455972899236601,0.00010720651398783328,0.010986193947166309,0.002740210319307524,0.011755920794139564,-0.00383916282789972,0.00036741359084242043,0.007471535189412266,0.051701607412296575,0.2534648336200886,0.09281951345553964,0.0001168310093896502,0.001856297633493901,-0.004508975593315638 +2017-08-10,-0.022066820662010263,0.1639537481657171,-0.19398077268921143,0.00014233280225021158,0.014031564190776528,-0.05359349422449011,0.18790964185559833,-0.039966000540124544,6.843425364936117e-05,0.037563200857612444,-0.02710537764675815,0.08743568006880736,-0.043387785173995795,0.0001434048946161309,0.003128126204264802,-0.019730746548342448,0.019657600227867205,0.02369524023600921,0.0003387512258730651,0.008628124484219027,0.006273595747085555,0.013785818339209582,0.003691070539208216,0.00023811225694960166,0.0149379283252761,0.00622389073443568,0.01661215664319803,0.0010207693059035986,8.180553361215466e-05,0.00020691081006097623,-0.03655157715128681,0.13455959171127083,0.030893229727713353,7.970421988525908e-05,0.024539948052868302,-0.0030829849349214952,0.028500589631897652,-0.13083744495762947,3.70950680454445e-05,0.0027976458777051565,-0.011743074374761875,0.010904168378022445,-0.0080376935467733,0.0008304893146265991,0.007255796025951821,0.014530736079061352,0.03415327982350673,0.0021447780980525764,0.0001487705898032084,0.004873396593632647,0.025430406455425627,0.01780195691457645,0.08900159175214305,0.0006982483437697129,0.016343707752962712,-0.015403134016158681,0.22418892660620715,0.0745858852806637,2.0474708427194214e-05,0.0009180372945757447,0.01623523287267188,0.04144242900144905,8.202567194024248e-05,0.0001163762498234859,0.005499475352194109,0.007744921074929871,0.041214128087352295,-0.10223652732835349,5.2897201713219504e-05,0.006509641876176105,0.011835544070828272,0.010180007855622881,-0.008710524689188249,0.0022675824460509863,0.006995080696888768,-0.1126446961081099,0.7093905382341307,0.20566700000310553,0.00013067047321883073,0.0014536531636972062,-0.051712208201532425,0.3070454012506374,0.019639301723371062,0.0002607946740990343,0.018604202615449324,-0.008644750543588276,0.050288565055076985,-0.04172245865561034,4.842216219170802e-05,0.017304511220999623,-0.009998188018639942,0.05745332920211941,0.001546522578620495,0.00028680908732560563,0.010420414279027047,0.0013033178631599019,0.018381664205722487,-0.00450005171490569,2.9423596129250658e-05,0.013270012606421789,-0.0131896235086479,0.1555167673324309,0.030310405291234098,2.833589195699413e-05,0.003986038129456185,0.001533959696219429,0.004603490154562092,-0.10598030946316665,0.00010733700821419746,0.019010187525687616,0.0023986440632107046,0.01629651365234787,-0.019237858798258647,3.399879138745549e-05,0.00589144686091053,-0.010215812850180115,0.030661637546052587,-0.012338551568936209,7.386776604552145e-05,0.009334461188535917,0.003925642765911613,0.013714469625843112,-0.0027785813103321263,0.00013088213019922233,0.000780831247844487,0.030451702373349245,0.029081514346790106,0.030713072054059393,0.0005985082211486297,0.025053705618053004,0.013547161126883598,0.05075096592410268,0.0043266921807680854,0.00011235437621000064,0.010096797802463203,0.018938361905364676,0.05600139178583802,0.005116953181446205,0.0021705148708653123,0.009490749856084314,0.039612389583963396,0.3368740266161544,0.008500574470173099,3.0237488017858297e-05,0.010686075659905358,0.01206752840581487,0.03704500876255367,-0.02388122243320534,0.0010650252338197358,0.03764755055644035,0.02666579369835142,0.1975808417999498,0.032642818559568694,8.987425981593519e-05,0.003195758152561473,0.010131555215106038,0.014626575983621624,-0.023233886812953027,0.00016348534580473912,0.011040320207633594,-0.01115977604746526,0.017236967167041053,0.0008292044975747766,0.0003716195377348876,0.019954698127547278,0.007668612990613577,0.02795933286740335,-0.04852280417009217,0.0021258878875821947,0.02034787462436841,0.041555341160410104,0.20317794670667733,0.0857869890356054,6.562066926721771e-05,0.0066369697912812605,-0.013645963597452947,0.021606437450123916,-0.022740967086335766,0.0015699948778460553,0.025614304074261192,-0.006733554341104073,0.02155258716687475,-0.0070900766695849516,0.000123782997597146,0.008988356782998079,-0.04036081331979055,0.1066773395998143,0.03355059231986083,0.0001533727162048507,0.002574156195221034,0.00226647264568893,0.008260931412627659,-0.05850704835069225,6.696307529411068e-05,0.005148217634103884,0.023571537985851418,0.08011834629260424,0.0062655695074104005,0.002788521527043203,0.02367117260084053,0.0005911303565701876,0.003338780844132448,-0.023144694469381357,8.807160684570469e-05,0.002090483333473131,0.0009812824874527177,0.005436760955414875,-0.08446629573862262,0.000130892449277338,7.937136812160173e-05,0.008066312707027883,0.04685293115533537,-0.06425756604996963,8.143047857079216e-05,0.011973179783336663,0.031183212096370583,0.15254962496929414,0.012402378207843104,5.1375622750464174e-05,0.005803314306557551,0.07300524847732195,0.14631740595486786,0.05769407206400958,0.00024326940030745933,0.019587649375950564,-0.013353300106261736,0.05870346460828178,0.014179440472616862,5.656388777222517e-05,0.009789519488986598,-0.023155282294946178,0.2510057433949437,0.027021002408579166,2.3801137131791102e-05,0.01166467375503437,0.00024563896110993985,0.0007534172749147359,-0.009770460709267896,0.00011396477637911883,0.0032651791043766983,0.014211855205459832,0.060367115252446014,0.0011710013200293323,0.0003710892061239205,0.02124421097139262,0.017291531086227246,0.09994821417335938,0.006669311664919376,9.909008638108208e-05,0.009407606541515878,-0.0008118324773780164 +2017-08-11,-0.01650942803156038,0.12314312546628223,-0.01178218656309561,0.00014177786731139186,0.005994422098947382,0.019975396515205055,0.06187032125471155,0.006695259891820037,7.746821771686531e-05,0.02565904723458739,0.012199451651746556,0.04718095390674701,-0.028785526513291724,0.0001196109108132225,0.012856646238246493,-0.0034630724497482553,0.003983181248571788,-0.021246756777838355,0.0002934265213044979,0.0007079557058704304,0.030073410515373197,0.06568699770448529,0.05223529916840525,0.00023955268475674374,0.007750850110863682,0.023224019045832957,0.0632515542678347,0.006896195856623343,8.017019076351366e-05,0.008382246478882097,0.031836969420880414,0.12385030248758297,-0.10134860215630537,7.542659520251376e-05,0.02553336340715759,-0.031223074814615188,0.27575977323515927,0.03257403513381875,3.882785247817366e-05,0.004128864334830934,-0.0007315434963469495,0.0005824167066189044,-0.036535947108926735,0.0009686148345126866,0.004500066986276145,-0.02826349152324553,0.06833415754848648,-0.006443584128856607,0.0001446271582922511,0.0008914671508467723,0.005513454812492732,0.004582129400263982,-0.019066400924544535,0.0005881401502551739,0.007404635458519255,0.0025570870089243417,0.03263464747809678,-0.16670332287937056,2.335013358469057e-05,0.002853996152166792,0.008003572345327106,0.018629194947785477,-0.06553297178316723,0.00012762648998792712,0.02999823642881442,-0.0036943742008607268,0.022743329839826843,-5.633360742263242e-06,4.572446695024126e-05,0.0015050292465631492,-0.018957128644277402,0.011831815758667975,-0.005243859879645313,0.003124957616832661,0.0035032300547369576,-0.0697312220211352,0.45087978103138804,0.03975733836365568,0.00012726782538608508,0.017652522428597377,0.08398499203745943,0.47837268552852047,0.11503613822281926,0.00027185889245984836,0.010558586687007784,-0.004539675379589766,0.029111658814584235,0.00011384561520741364,4.392571120897935e-05,0.0036763209498328966,0.011361224388169345,0.06528661121650542,-0.048482925215782006,0.0002868057263952471,0.0202632243635078,-0.06752219838232462,0.8793624166059829,-0.1369609127772286,3.186463180845337e-05,0.005588560964727186,-0.008905500007095184,0.08649504326874176,0.004811487347534246,3.4399236003888104e-05,0.0023533844923433575,-0.00983741299645247,0.03134335093655491,-0.001195954274622932,0.00010110164802234327,0.021448464486203852,-0.08799517260942703,0.6264264445424605,0.1968334893890705,3.2447492481721503e-05,0.01193234648979561,0.00031904957054878515,0.0009377642892731624,-0.0008554761261571508,7.542960895055223e-05,0.0011567929511555218,0.018486583288882908,0.07175657036824061,0.045969176313108026,0.00011779953445558042,0.0007646462991069659,-0.06924271685045241,0.05488546207259263,0.07692051311292518,0.0007210947544893469,0.007739689778701014,-0.004418545102755679,0.013633468253380479,-0.013268908298054568,0.00013641400208191172,0.0008659377369978328,-0.006049392311086125,0.02142026877267766,-8.502014189916597e-06,0.0018126168330978452,0.023140203568127286,-0.0010507649364399354,0.009039464702464363,-0.01963711793651871,2.989131726575247e-05,0.005752440103898625,0.04080460418235015,0.11676642717894566,-0.018353082364923667,0.0011425164119921063,0.02258631702517773,-0.0024075085320360316,0.01971002759299267,-0.04762170014167707,8.134038915877669e-05,0.00011328497333094553,-0.012975079443623158,0.01712786656517038,-0.07169840409713059,0.00017879367081498313,0.007709699412415682,0.0047881018687266465,0.007815855514835796,0.007985780057752568,0.0003516339288178975,0.0008923621225472296,-0.02357497821868557,0.08162087718903173,0.018480526052970347,0.0022387231151636995,0.019273879632226758,-0.01729197070102739,0.06666865960774035,-0.08108776142069482,8.321720742948541e-05,0.009020424744333837,-0.02048417411483958,0.03026541116596425,0.00047256574729355,0.0016824767526517333,0.0023013369744363573,0.03474614388823313,0.10369667235708231,0.026428852854504074,0.00013275712241520447,0.005542423079221855,0.02394362239967038,0.06119085251684875,-0.02184637953714714,0.00015862211165315303,0.0008393037114490049,-0.0004978281980925462,0.0019309753384438187,-0.07747088577045967,6.292405329230894e-05,0.020722304158728895,0.02854349477142405,0.09145515956278281,0.00962712657619566,0.0029581282010744557,0.030395052687126296,-0.0007379198621099236,0.0029362190223030347,-0.004032211283739322,0.00012501476905071694,0.003413457661558389,-0.035947741990296905,0.21796723545775368,0.027540130458173048,0.00011960275522948726,0.007136741189846741,-0.01815585619785863,0.09131249546724275,0.022472857400273737,9.404489400378444e-05,0.008353835040445219,0.05443353224758976,0.2808978085825694,0.05051273740999097,4.870410430739145e-05,0.01243089312400242,-0.04774720361452429,0.09387591942696573,-0.09951200531876622,0.00024798369803969247,0.0020392903829705845,0.013942138435264463,0.05237801390847322,0.014377547316094573,6.619035950168703e-05,0.009396092886639451,0.004158545602964503,0.05377690984146628,-0.007010793811622522,1.9951562403735547e-05,0.005850864901853238,-0.002506377227389395,0.007404765314336491,-0.001301176034454163,0.00011831616977509109,0.0033988869686195295,0.015297283501346876,0.06763238144454375,-0.09673417594919438,0.00035652304448079023,0.002227649655188264,-0.0072990865607998785,0.03972991169542699,3.978529535469265e-05,0.00010522591484583186,0.0005753118317671302,-0.003366669366627012 +2017-08-14,0.04960029670519637,0.3910395338072673,0.14863858444545497,0.00013413749505448514,0.000980946510333881,0.05045720249122141,0.16745922704337804,0.028670127206550718,7.229772183219158e-05,0.0092729579608016,-0.009649898508410396,0.030685939166186366,0.003660458378377818,0.00014547237542206874,0.0037952037975187442,-0.010315704193711478,0.010483592539315002,-0.01680361131008245,0.0003320906156626594,0.016055274663675793,0.02103801110861094,0.050158625007647596,0.006126168425107836,0.00021946073515275504,0.006162594682878316,0.005859758668358475,0.013763367235186928,-0.0672349959532536,9.296121088353108e-05,0.012282079520601674,-0.015342513322974071,0.06954899642181218,-0.048372164263476125,6.472849311117708e-05,0.003088444928802753,0.03987337121627133,0.3426255552833127,-0.10306639609417209,3.9908170414950256e-05,0.006639072381917554,0.040508429896711745,0.0371547229628273,0.2311305154626734,0.000840767991496065,0.008358349088495837,0.03386556651710277,0.08310558072028743,0.03990635880871898,0.00014249185585056957,0.008099208198506916,-0.003723105568228136,0.0029677124090223086,-0.005307333280441289,0.0006132081190142154,0.013910944662876363,0.026520888278107516,0.3786976538403856,0.17395714311962174,2.0869797779047152e-05,0.0021791096662765706,0.04935513899597934,0.1237428697252037,-0.0004892563031505676,0.00011848496201374186,0.01746188595582846,-0.00025827526166148147,0.001220960329763783,-0.004164066679769603,5.954469499624073e-05,0.003191296349855341,0.04359840255473498,0.040443154642559306,0.0714499634941578,0.0021025606177560454,0.01375903031228527,-0.0024477919001919595,0.017566758733386777,-0.04666869598651356,0.00011466607963980041,0.02846559532243925,-0.061362405976585106,0.33771976488585936,0.028495231621091698,0.000281354673392876,0.009548297433802552,-0.008445751551714075,0.05299662608692609,-0.009262109405219831,4.489014782637754e-05,0.0038999510990743386,-0.016064986530462008,0.08767782626592441,0.014551196298406928,0.0003019794564628963,0.0011734768668287773,0.02873063373226126,0.3393356301131417,0.02507818908111651,3.513548672520785e-05,0.009885034999700273,-0.008811051188204813,0.0869864827128348,0.015652175802155763,3.3842127927359514e-05,0.006801376968783961,0.021065635911815477,0.05027892103450557,0.0015281964762493996,0.00013496196110183176,0.010182473387619646,0.041888991846886964,0.2944659550258303,0.014207623567317217,3.28592157299427e-05,0.006443730976828101,0.016142119078070907,0.03987589296591932,-0.017268336584268174,8.974856377869207e-05,0.017970659296432507,-0.0033580594498452314,0.01282027513533799,0.004447659385822402,0.0001197676781850461,0.0014250122590056121,-0.03163161915059337,0.03437351727527125,0.005982454536662383,0.0005259845780487755,0.008601135302967366,0.02067741821524699,0.08066845859145515,-0.04263665766270977,0.00010788934643785143,0.006128804266196575,0.02703580230183614,0.09383978683546272,0.012702953076206832,0.0018491469441654638,0.0025717750270059384,0.005048267127005871,0.04676128209588778,-0.03687259338763875,2.7761192178454283e-05,0.019177780455011825,-0.023326262802650117,0.07019634543818651,0.018612529399324586,0.0010864304555408498,0.016747591203162535,-0.014279251581489742,0.10708865140165458,-0.15631967349844608,8.879482163514212e-05,0.005463551130598051,0.009716502949476827,0.01417973384077154,0.0034535834889001197,0.0001617287738968995,0.0039910741666781355,0.039538430465122384,0.061136408889600015,0.12314455888675706,0.0003712132027944095,0.002722402890475997,0.01692267181659482,0.0676731761150416,-0.1364055196002754,0.0019382184065770836,0.009997637979998,-0.017534947978988535,0.057985337279651224,-0.04924596328723155,9.702343909320413e-05,0.006155513142642417,0.01063059540362354,0.014568355795826849,-0.0007339753270722649,0.0018139455299455134,0.0035937992769750878,0.009049242802194784,0.0293681363586224,-0.0009653315665806137,0.00012208207142616186,0.003062206950494333,0.011628591943902708,0.022373297686468382,0.0016581617829309302,0.00021069658958482182,0.024321526385565242,0.03123569259137042,0.1242612833823094,0.03852113220623962,6.135207142074194e-05,0.00891093333332009,0.0030096659729774004,0.007994616439647504,0.00044459076551468595,0.0035681140195604555,0.012931415633243912,-0.03176075010421786,0.17422566430340583,0.03610736719804896,9.068160377245099e-05,0.031075888261161897,0.009760715139337158,0.04106379819328745,-0.10070851953369427,0.00017237858277338833,0.0023737870405890764,0.006068221019814216,0.035711114414959444,-0.07769457702768039,8.037235356241652e-05,0.005334322681201289,-0.05639882121354638,0.25994356874998314,0.10971375455587899,5.453035748221617e-05,0.009002461941042924,0.01943974102172131,0.04020051822598548,0.0058997429581884395,0.00023576982295107899,0.022641383970488815,0.018343373756458073,0.07735322942023258,-0.05461541603659168,5.896782933423574e-05,0.007537083589454364,-0.01034090381077188,0.0940590803114189,-0.02394776858098658,2.8365409382836045e-05,0.015796008613312196,0.007500807953989448,0.018866846567252366,-0.08667387648502377,0.0001389689234360959,0.010059197160098562,0.005315961032927969,0.020390738669847582,-0.0016284179399731712,0.0004109384713117401,0.008032507062566783,-0.04902526184688107,0.25816103227737175,0.03836392664743877,0.00010876797146554887,0.020864504873553746,0.007443810182013815 +2017-08-15,-0.01873711879465107,0.12399255469520098,-0.08069983721429667,0.00015980625939593284,0.0037900685782058666,0.0325876726874029,0.10144936030108591,-0.0070180952201694576,7.707518206360881e-05,0.0007065534962414262,-0.02191046328624842,0.07639101529287545,0.006504339414166784,0.0001326803116478419,0.011460698562546818,-0.012129855625403517,0.01380735836973012,-0.04424302569092618,0.00029649193944520193,0.008710463241256579,0.024156232529951187,0.06012448375634148,0.027072808503373055,0.00021022076558616464,0.007051760455003592,0.011340768917781208,0.029615135178505725,-0.07868745173014324,8.361333032185165e-05,0.010603804448830814,-0.020824013961891742,0.07331950378999871,-0.00509818011085235,8.333640934458407e-05,0.014158701099104486,0.022559969672433653,0.18887043441073045,0.029697658106313304,4.096124484807181e-05,0.02145980102416497,-0.01712345091700667,0.016092231269686834,0.004295622617192204,0.000820577896577503,0.012947152461491862,0.01964780641104248,0.05120584808269809,0.010251872905188563,0.00013417030078110082,0.009741595365723272,-0.0024783302215812845,0.0019335311491479978,-0.007010814311200632,0.0006265162764714097,0.0009631179746127944,0.004255945854846881,0.05899569014494425,-0.005915973361168883,2.1498026682450347e-05,0.000785361353453914,-0.03964691733909765,0.10796700586083555,0.01689857368135606,0.00010908609753402229,0.010452492601500395,-0.005590068266662403,0.032135537068390035,-0.0016849566649563613,4.8965857844282564e-05,0.0012600487736613112,0.0011049966736871016,0.0010849917980912149,-0.05023166311366936,0.001986357836513643,0.009001937954548348,-0.01627001691693612,0.11205541563984947,-0.06553866381679066,0.00011948331446868522,0.05818853964464688,-0.07630386805467258,0.39570834698039276,-0.059888055818128665,0.0002985929673670002,0.0015856977384067824,-0.02020571074688834,0.11067187064862473,-0.010215359425186869,5.1427787040335865e-05,0.03929034507586481,0.007966088658437622,0.0415805557380957,-0.03769251621249957,0.00031574875986615977,0.004043918052796303,0.0009167444644005611,0.010224572836394994,-0.047669265064846734,3.720774537162149e-05,0.005168130706734915,0.011156220160683265,0.12610934383240902,0.0010919582116618472,2.9556398900939918e-05,0.005173441628909018,0.03717891759235564,0.09101799033261138,0.03310944888847792,0.00013158071909450067,0.007127363310697253,-0.01257508111258831,0.09793866575060124,-0.05911370264834114,2.9658486714486236e-05,0.0033538581564737076,-0.015341662668285964,0.04564327624874311,0.03544917252402842,7.452002660816687e-05,0.006249393424568185,-0.0017362356860425316,0.006124967873084736,-0.027478808113037632,0.00012961446120406643,0.007238929743004638,-0.011995528112990669,0.011478798185142747,-0.15485207932836226,0.00059730825088587,0.03554185679550359,0.0005941726748126105,0.0020569105968950064,-0.007352965289125187,0.00012158591537859184,0.000536611888216599,0.007120169945940936,0.022561500061844535,-0.0062597048057218005,0.002025543445846965,0.02019283008938895,0.03184381759704277,0.29282509856191496,0.033749564299909836,2.796398269770415e-05,0.011655742580386217,-0.005737643737331475,0.01710855944864392,0.004815313348835588,0.0010964564963303603,0.028668341800835502,-0.017771011110771624,0.13373791341532637,0.011864406216298513,8.848776757957558e-05,0.00840207132383241,0.004166218787382632,0.006520701596962874,-0.05520663661682496,0.00015079714977914114,0.009440079763791754,0.004041443311628011,0.005566526100614439,-0.1137742982734066,0.0004167313332627176,0.004432840021177253,0.004585029244370601,0.018380728170265263,-0.11995380819285636,0.0019334357242303563,0.0062675236675003975,-0.05668059678012827,0.232245134743271,0.17375883628495148,7.830295644556738e-05,0.012152437653014823,-0.022954431996260644,0.0277963682062345,-0.0244702855720871,0.0020528427657249414,0.0014770462942159906,-0.03432895376932468,0.11701939153699764,0.06047905867189823,0.00011623014208715566,0.003706483337902783,0.01424078990194375,0.0395815758951123,-0.008091352897537511,0.0001458483009388182,0.016922964299716643,0.00898895378257274,0.03487273757953081,-0.014008682953726299,6.291251266107955e-05,0.02447336202584899,-0.01120581709048933,0.034315684884815685,-0.03200492095018647,0.0030950588853778964,0.01073549175849943,0.021364365956435104,0.10011269638539273,0.011907133788788958,0.00010615523611067789,0.012183916717308204,-0.004549415909697717,0.025616083036868603,-0.04543400392487796,0.00012879639403104586,0.010822933763872212,-0.011783862178912714,0.06361471316988761,-0.039724377427455555,8.761506345908919e-05,0.0037878420142485637,-0.03771033768880382,0.16213155710038038,0.04265440345500342,5.8457503278262916e-05,0.015712334887491252,-0.044765847167347946,0.09147322539568664,-0.07124278063774941,0.00023860646626845192,0.004181437642151772,0.005441048025526143,0.021623805079416723,0.00024054131627841412,6.256980726440717e-05,0.00016097570348311112,-0.05867827639877644,0.64903656353689,0.2175398722852475,2.3325956987133226e-05,0.017038177456053537,0.013279486740681981,0.03729623217338457,-0.039224638642422274,0.00012445870977246225,0.008090138388266787,-0.02210758045514688,0.08245942223286176,0.03495298200281909,0.00042259942091199185,0.0009565286650202814,-0.06199528474614667,0.286289248461436,0.09617867476985831,0.0001240296209886105,0.010767014818799601,-0.007247939720261665 +2017-08-16,0.01971615216583221,0.1284697393837804,0.02087836036109026,0.00016229603210882965,0.019524244752890715,-0.05723803605106823,0.18910803889202593,0.029875112434648538,7.262485186320929e-05,0.026835180352399957,0.0009790879407871082,0.003403940488145254,0.00010715858882297134,0.00013305676105151951,0.006721123830583639,-0.004160271048516097,0.004067882726386737,-0.010131628990415871,0.00034516047562495864,0.00611540089304706,-0.0046599214954643284,0.009243340998102586,-0.013858692319051227,0.00026378336105631827,0.0037128913927732586,-0.011792919561999559,0.03353618815492316,0.012617974603626124,7.678110862694103e-05,0.0017842570719791872,0.06577584001826514,0.24176196313310752,0.04459732137245899,7.983039622220806e-05,0.012236193485936072,-0.00923339265630887,0.08017244035831453,-0.0053119581884507085,3.949433593175401e-05,0.0076401277979734564,0.00662494247770149,0.006122041458279839,0.009523045905216859,0.0008345082454125664,0.015758045440721725,0.006752128793936447,0.015236727745752838,-0.019477860406393623,0.0001549568918135645,0.0008590134968351538,0.016074044233133414,0.010888626866510239,0.035016208793441375,0.0007215665658945256,0.0023576653765896914,0.01167957585979365,0.14407919452018494,-0.011893183545848054,2.415731093933917e-05,0.004893270428790491,-0.021254285063013204,0.05921020367111135,0.0028870538522982425,0.00010663529726099308,0.009973069910383447,-0.00977585029234461,0.04666004771593865,0.008829266659820147,5.897543893767809e-05,0.0016198466459515456,0.0016445328510967324,0.0012638804589412101,-0.03495994119545065,0.002537812468140531,0.017491379617338293,0.01594238464401469,0.11639378499140512,0.00923770512760263,0.00011271341280105342,0.043046362807205765,0.03218901912878036,0.1817524227715422,0.01717376366236125,0.0002742431357905825,0.016868483787687367,0.06003829072712645,0.3637601336187148,0.05174019408826426,4.649156597597808e-05,0.02428282827730815,0.040795439275583746,0.19587817513253028,-0.015311309763323814,0.00034325144326894134,0.018758039202261042,0.015179026761219423,0.19061143714023748,-0.07301906216723494,3.3046479652158644e-05,0.00010467651092685697,0.005854506366935898,0.062647042791242,-0.012335626101848803,3.122276903610827e-05,0.0030302494373457916,-0.016644582466734625,0.05000184684950267,0.007945907330580329,0.00010722834808720214,0.010788359771925195,0.012317832733762702,0.08359962158711594,0.0035692892845734575,3.403473448556803e-05,0.01626866748083488,0.001413305529613674,0.003959124565583608,-0.07012079948370123,7.914332176750503e-05,3.80116335332273e-05,-0.011656071004605546,0.03691445924905913,-0.00623067069656555,0.00014437907963418128,0.0013871108354459854,0.015889524187057195,0.01728212027974841,0.012955278888443783,0.0005255202196785808,0.000737248530827276,-0.03549685796188126,0.14423334694400647,0.16818515494927616,0.00010358818897117071,0.007059651721546122,-0.07809055141821465,0.2413412250643344,0.07050652630336703,0.0020767592393744335,0.009668469047434718,-0.05766200568201823,0.5869131360093872,0.13479019334333214,2.5263767159372695e-05,0.006250521656081004,0.015615827625914982,0.04459435200487787,-0.0018953382204024813,0.0011448706412160526,0.005145974915151357,-0.017384044723636825,0.12432946454351279,-0.1307059210374687,9.311130437068948e-05,0.003811647828141654,0.01222926737208637,0.017226367962527085,-0.01784491389032209,0.00016755296088206837,0.0019165627176755753,-0.0063021005815428735,0.00883431246113382,-0.015897779183155023,0.00040946471993098284,0.01432871555926977,0.011939276405113467,0.04242349134193787,-0.03523948336855801,0.0021813328556648626,0.0019924350683189766,0.00018313661014127754,0.0007630058220887484,-0.003495929748996098,7.700832721782158e-05,0.0036315685680137163,-0.009398779175998687,0.015197397835924704,-0.05841157243083465,0.0015373735512455497,0.035281080065555644,0.009060518405820327,0.026791859490494556,-0.033154245885989926,0.0001339880993373479,0.0110766133156688,0.010725683015039294,0.02633567826582534,0.0009790438333633859,0.00016509762504511387,0.0028626858575224717,0.029624828817183785,0.1136133423479148,0.03070427355270026,6.364150453758181e-05,0.018325089292379703,-0.0020000609474993786,0.005872012340844785,-0.01082027908336069,0.003228303287376319,0.01591279877641852,0.029112522364370605,0.15202516276559244,0.024221279075827717,9.525876107240645e-05,0.016801349274422405,0.0066601124990990895,0.03607064020922869,-0.032042598075696045,0.00013390244247635323,0.00031687665788491864,0.021252421196303623,0.12897812112668655,-0.00676153439911745,7.793653026838314e-05,0.006198395649924747,0.03308430770439667,0.15030792211961533,-0.006979151313452368,5.5320688328621835e-05,0.002835709325560489,0.031088235866221284,0.060816202128441306,-0.04367777986713497,0.00024923336244326476,0.03123234170277288,-0.012608113440559227,0.04895084576909369,0.020974888154366933,6.404780988976433e-05,0.001102627328376097,-0.011604085630713079,0.12308177543797143,-0.0022666006234012526,2.432475407217285e-05,0.01828756641978342,-0.01021448882859378,0.033622007295490516,0.01272737273217532,0.00010619448528504237,0.008421182422122774,-0.025417434946722828,0.10772247925916355,-0.044236620768778274,0.0003719232698276198,0.008061565711740815,0.023070488722244428,0.11022450151635892,0.0007522716984768901,0.00011988102490198229,0.04719475253530419,0.0026597126966038487 +2017-08-17,-0.020626114790800662,0.1386814313106993,0.0034158141349811713,0.00015728441776914756,0.001690242399007927,-0.043609653752531036,0.14147858156739782,-0.0029658310016774125,7.396094782164085e-05,0.021993888670916204,0.010972669387433125,0.0395046880386571,-0.00898734364168007,0.0001284874948806168,0.005307307586795229,0.016127973883492158,0.016617698148223323,0.018288297324201865,0.00032754939517257224,0.004660917418912238,0.03934428004849696,0.08350349453788462,0.046223467114376235,0.00024653280912432867,0.00812766354423383,-0.0057978555368616925,0.015370138330272521,-0.0024548077009577613,8.23637958875258e-05,0.007032329928679142,-0.04247337166292952,0.16540602253316863,0.006291072235141865,7.534514529809096e-05,0.009423669979235253,-0.04183805428957535,0.3760917050328797,0.06294444718797772,3.814840097001836e-05,0.0008630285759577913,0.0034505076791284763,0.002805665154520674,-0.05289966493439768,0.0009484008761365691,0.015289778756105994,-0.05604748100832589,0.13586358640990837,0.12231009700431267,0.0001442496972517847,0.0026363475482168797,-0.004979596962110938,0.003037261368883757,-0.014248524705913519,0.0008013760985015177,0.0103440122851956,0.004133129452601952,0.046945535586538224,0.0003080726149718024,2.6236596679817267e-05,0.004201123136296045,0.02776714263307676,0.0826021792379729,-0.0019211773853146765,9.985980734066254e-05,0.022170109747137817,0.008482295792617485,0.05768308318836489,0.01855122831720099,4.139298687340785e-05,0.0043432027875638145,-0.012572320900437972,0.010462035445249393,-0.028139843882261976,0.0023438091375934987,0.0032598124339867406,-0.016394649652964086,0.10514371150859306,-0.004071485729599172,0.00012831308445582446,0.02617269590280629,-0.014791639747479352,0.08703993150742928,0.0010941910254031752,0.00026315159839943736,0.021540736619881103,0.004288675143116767,0.020731576424982905,-0.00036940771948072617,5.827090722236249e-05,0.007567737084371564,0.040965308273328366,0.210622337626441,0.055870178621457434,0.0003205520851633472,0.00454101731959449,0.003733526264508332,0.04789808115386544,-0.010171069476919085,3.2346800247307275e-05,0.018765734711311082,-0.011355053841524878,0.11762606293528255,-0.0020468371339811197,3.2252794236783935e-05,0.009972425354245881,0.0404688017795981,0.11017869827960085,0.025388975958474832,0.00011831654100801653,0.008628771624487804,-0.09168283761990807,0.6241774478024243,0.13775479125259837,3.39291007556407e-05,0.029245198919780536,0.0013477030686383231,0.004254963531911397,-0.009867679913948562,7.022241438935388e-05,0.01529494758226083,-0.0007864252701541698,0.003088118586766487,-0.10548518263246824,0.00011644265159531452,0.0002931484054253695,0.0022029497008842097,0.0021483527122824384,-0.08495673151538116,0.0005861038282659621,0.012657293649633743,0.0010969012285647344,0.0038019582139348666,-0.023757469363303564,0.00012143564743764299,0.009016094715175635,0.007600570693573227,0.02724710351017266,-0.03285039670093985,0.0017903792500059117,0.0009703475982352318,0.038741206726348544,0.3588131785646839,0.02733695277452748,2.7764314417450355e-05,0.019646921146488708,0.05210274231886563,0.13241236260481715,0.027613308519908182,0.0012864808243146547,0.01701644143030027,0.014638045593088372,0.12350685459291914,-0.04007298134280141,7.892556095639195e-05,0.022169748753505712,0.017166370721816353,0.023974876022653847,0.027440758230615633,0.00016899252828896766,0.0009671511432479784,-0.003852367060577356,0.005350010731904628,-0.012403055171658918,0.0004133109595620907,0.004923360406145209,-0.010797612208484944,0.04656697724629821,-0.006366526082273734,0.001797214935748253,0.00180128531167465,-0.013121999472357739,0.046828231753890004,0.0034408457474687654,8.99047478526069e-05,0.009290113861847589,0.020094434011729244,0.02667109589950922,0.00587415312305397,0.0018728893023014107,0.019869770336898195,0.030748668271646677,0.10468057670620003,-0.003123753767622217,0.00011637943410120045,0.008940304781288896,-0.02317157306200094,0.04795502366826309,-0.01101406890658085,0.00019587625155253,0.014329957511661842,0.006358554253270015,0.02272242623304991,-0.06535150273470842,6.829951252969932e-05,0.008546052802937432,-0.01792463276099571,0.06074159165404486,-0.021776206732108658,0.0027969336032764983,0.0209898545247007,-0.06084499215523827,0.35827521806695545,0.09720879839699503,8.447897603078381e-05,0.0017176368693869412,0.02488366796369301,0.1341581549124501,0.0426680109927043,0.00013451109413492842,0.0017811339106475117,0.01440927996897385,0.08158876215410948,-0.058678038635543696,8.353349149908298e-05,0.007333314312113857,-0.06594438409524099,0.2625009407869008,0.10064436702454332,6.313851265648529e-05,0.0024813045047050756,-0.030261061728532303,0.05602665770115384,-0.007555068527649758,0.0002633412182562406,0.03448208202991816,0.018006394359757448,0.07308055347889912,0.007608945675186838,6.126879027683354e-05,0.022596999348818946,0.042246699909766865,0.45686746900184966,0.08192435625568377,2.385798931901075e-05,0.0016296100535357263,-0.0002442321887102491,0.0007907188132348974,-0.027178335320409985,0.0001079666917262224,0.007158673651270217,0.021871012439406083,0.09018128608875337,-0.007387379528658904,0.00038227899356231294,0.00751947890956645,0.005095084356967065,0.020590625485408125,-0.03349547887500845,0.00014172733972790352,0.002213888191475135,-0.0015452875766052497 +2017-08-18,0.021872564564829774,0.13666101923658847,0.02391030166470061,0.00016925505009319448,0.012968913049464337,-0.024335348474601528,0.08732872026743117,-0.0017004228056392804,6.686379160030436e-05,0.014989742212473386,-0.02559780027312371,0.08088138373206706,-0.0050585742056602255,0.00014640343888599005,0.01622692996498358,0.0197583565569671,0.026863277853259808,0.038263386030040224,0.00024823308838966033,0.0005623971969969171,0.020828009303537762,0.04384795256521161,0.008851183868087252,0.0002485399553932083,0.01572340801783554,0.008866745973396914,0.019437780674427956,0.004454252362235759,9.960114447182576e-05,0.016689540765890864,0.007395868633437053,0.02426098603327686,-0.019057621080021674,8.944799206508649e-05,0.0049917867798908895,-0.05836188783030141,0.4425832705982896,0.09499713523344075,4.522024929469702e-05,0.006528258358556426,0.009251151981885967,0.007181390478004685,-0.006041151214302227,0.0009934180825151933,0.004000358514998364,-0.03624747869658221,0.08249330382443039,0.0379019724987038,0.00015364590590377037,0.007816363265778557,-0.007737618640896026,0.004707996329026446,0.00011228124918043703,0.0008033329189409303,0.000983537344644736,0.010016097583649545,0.11476182513665444,0.009880832605639794,2.6009014093217175e-05,0.0067186566902442705,0.03410458464774363,0.09414605599333267,-0.033456610533397865,0.0001076122399910305,0.018537804219047053,0.02194507552730014,0.12611608765954124,0.03825583598381978,4.8981085830187695e-05,0.005288784724308902,-0.006572279401855408,0.005744056059051077,-0.17020791094872634,0.0022316203896781454,0.006344305906469469,0.022534846921902316,0.1637179119558454,-0.013939885787964429,0.00011326885828866128,0.01379031711103623,0.014882167139867515,0.09067495236645688,-0.018444031224291186,0.00025414822070789786,0.030578842510708176,0.04804312830016923,0.3416715758714615,0.028157601677983007,3.9608042901380315e-05,0.01907876061436516,0.04830523202904343,0.24879908781631865,0.05870495999798909,0.000319986897947975,0.0009742510053526404,-0.06268696534218741,0.913349372288036,0.03524318575657361,2.8482003987841693e-05,0.020170221711214856,0.01451421165854223,0.150284804499697,0.007863310244803719,3.226711154560849e-05,0.004954185790135393,0.0340844117819608,0.10002169833414584,-0.05048076466199801,0.00010977016950776754,0.0036681318893091834,0.00331312523326895,0.022598351287703898,-0.012763078096021608,3.386518659173133e-05,0.01204955844351123,-0.01455666085401461,0.03382059656449383,-0.11160786135810793,9.542405817379255e-05,0.002537767470301161,-0.011519533011566122,0.0357956545889182,-0.03203006481036387,0.0001471475923699876,0.006051344605500651,-0.007255807243014624,0.007682442949254831,0.0012877740327694718,0.0005398361384791754,0.0009626899501534439,0.00675237267508703,0.021119928464566413,-0.131600820007839,0.00013457053219655338,0.007853249598235345,-0.018809630225283345,0.062569360951637,-0.0802245327258041,0.0019294685909568828,0.03588548216794661,0.06303889733044021,0.5746024509047856,0.0357365320815452,2.8211314930278343e-05,0.0018296519491683655,0.01724386364656428,0.048638394634829996,-7.816664566798563e-05,0.001159115244728998,0.021782076850660196,0.029527753431001877,0.24433042798860177,-0.1074428801753432,8.047824427208536e-05,0.010842448236876115,-0.018724283999858954,0.032305249262480386,0.030002251757538182,0.00013679729492616178,0.0063793834834519406,0.03150525146797516,0.044200502978869335,0.07845612807320655,0.00040912842385563877,0.008422972024201312,0.035788110834961535,0.13648436008794979,0.03427902609096118,0.0020323861512491223,0.008545770515713595,0.020957333452245253,0.09698321590364453,0.025431862362364034,6.933137494017476e-05,0.0002559750038460206,0.037412567316190144,0.059989261021909095,0.01932735677884349,0.00155031943331415,0.0007749826897734259,-0.0012725136595562545,0.004124410935405258,-0.07301453124917169,0.00012224090590564333,0.020677917383061115,0.003880976660848392,0.010412968783061544,-0.05246415374600136,0.0001510869105230046,0.03838397001581208,0.010037754283072322,0.04909576388061453,0.010029653558576612,4.9900679984956194e-05,0.016765252841453117,-0.032025747837744485,0.07828100490731033,0.021610751301705148,0.003877581597558507,0.0033605805137939013,0.0492695403484083,0.22122853019487193,-0.05852948976932404,0.00011078423098354073,0.006968558951170075,0.013859127688135168,0.07898759520187579,-0.04660988927209737,0.00012724413936366096,0.015198822736935385,-0.014884050534126402,0.08944667932443527,0.02590761694118836,7.870559608077289e-05,0.002739590046363847,0.009766854178492516,0.043304885799357797,-0.03170340034921315,5.668461495116857e-05,0.017592042076493696,0.01915738482357322,0.03233777567378145,-0.04166025979948062,0.000288838760918731,0.007734005928626164,-0.03662626958104115,0.13721487473919342,0.12306075313505552,6.637520417589479e-05,0.004415175681204044,-0.036243012205966624,0.35205959212858934,0.03112572243789966,2.6560692215806678e-05,0.0006644796052454021,-0.01204726028889719,0.03743441584078909,-0.0044983124064966774,0.00011249318104689283,0.01745921202489736,-0.007998769030681831,0.03420313104153427,-0.024376390761465652,0.000368625405307666,7.874508886042842e-05,-0.02754044957494655,0.1375906772389207,-0.04411241740959698,0.00011464465537823563,0.009367309542132347,0.004443889816535855 +2017-08-21,0.009209325166552552,0.06281647105179052,-0.003783699147008254,0.0001550389636709999,0.016112545587046664,-0.045859463720681885,0.16454251844799433,-0.13913357087907824,6.687462475743949e-05,0.0016379137825658725,-0.007739573998622655,0.02795229518126469,-0.025193977777546537,0.00012808456200963527,0.0083509133171721,0.016592222192114835,0.01676000896033409,0.018937326375778517,0.00033411668567265177,0.010575390075149751,0.0011994278950020329,0.002869184661111023,1.4743053658429728e-05,0.00021873255043174206,0.029761733883462628,-0.01934044939914482,0.04889344345327552,0.05659853297777553,8.63699516231071e-05,0.001819554122166052,-0.018911244878355424,0.0785232122560078,0.008986119361403727,7.066622891227857e-05,0.012455082483070309,0.0475907905859438,0.41787909851276056,0.05191916901379383,3.9054482258885437e-05,0.0022277704401838273,-0.003974903627831361,0.0030605053570667024,-0.012514463107100469,0.0010015629396894555,0.0007422245196207326,-0.001774684750729455,0.004125777409495564,-0.0031086009850091415,0.0001504102074977872,0.007955936796844112,-0.015781388887393125,0.010178343846590875,0.006978556209253706,0.0007578660665505998,0.017726017243870826,-0.00803129534203322,0.10855755828470015,-0.015717659354048848,2.204693998408755e-05,0.0019182138944355404,0.043548459915121226,0.11502845909906785,-0.002305340549083143,0.00011246529755407559,0.01746748586488442,-0.01608575916034926,0.07607065095380038,0.014445452452124918,5.9523196804819734e-05,0.008672486144603178,-0.045778222565843754,0.03558110885690798,0.09445378585518979,0.002509356819419132,0.011451783014307262,0.0005178028064285373,0.0033657641333641494,-0.022270062571482688,0.00012659974460502559,0.005330754233333981,-0.00044828845709164337,0.002362579777156728,-0.0009336723748241635,0.0002938186142439464,0.012629553113001483,0.007769481902686577,0.047377026483878544,-0.008931696792728355,4.61939623165912e-05,0.0023815594504316695,-0.015745300870425423,0.08430895576817778,0.017611846893883055,0.00030779677207958315,0.022958194596008317,-0.0165105265839726,0.20346143054887328,-0.01123777203436906,3.367511304889122e-05,0.02311952054926649,-0.038860672920501146,0.4239844783370395,0.11107192111124833,3.062260045364985e-05,0.000874621979176011,-0.01015324230406809,0.029517455598828554,0.0063341226869160685,0.00011080225212632801,0.022309889655094988,-0.005389568801513447,0.03948985052859904,-0.02136458855807855,3.15254218389377e-05,0.028374987043281785,0.017106436876846702,0.05306104650174637,0.05385853155779013,7.147614650303508e-05,0.010891093821714028,0.00557769039535515,0.019087768423998563,-0.030905596110672187,0.00013361273136325261,0.001429326110107428,0.03598599476793154,0.03515342206111848,0.06914095507132872,0.0005851153147217601,0.016610615344119634,-0.0068706840351249595,0.023567167512352105,-0.014876106772289925,0.0001227096160602195,0.007344999675663348,-0.07312575365573651,0.25826622165611196,0.01444788577285214,0.0018172803086527176,0.026897146050245013,-0.05331440568072486,0.47981921017600737,0.0702619456401974,2.8572558861716307e-05,0.030511415851426096,-0.041125622962987156,0.10876551530085546,-0.0032697167430888194,0.0012362108119673254,0.02721925123659574,0.0026902462583173812,0.018053363644753084,-0.00023850975710325395,9.923378328691507e-05,0.012741654913131636,0.0009147193768677587,0.001230480842860216,0.0005070349539706538,0.0001754520345419604,0.012733239359705342,0.023441401413988466,0.0341337694782075,0.0359388744476267,0.00039418785050618604,0.014280410471318514,0.026445965428293524,0.09706317253143991,0.017666830296086403,0.0021118121529392496,0.0077960555076197115,-0.0034535537344489386,0.013789882282814357,-0.0923890560465965,8.035187755457392e-05,0.0033891992353532316,0.04563507380038173,0.07314720141786864,0.003914927233954297,0.0015508801384257656,0.01199585048876647,0.04004969118664002,0.16025404455447728,0.04741274223633975,9.901618947209273e-05,0.002272544127451828,-0.019246489243486656,0.05322298052217418,-0.027762485611778787,0.00014659282212850378,0.0096492749146383,-0.0195255126573586,0.08655955517703239,0.00021600990529022337,5.505558155893734e-05,0.013900505726348173,0.05563849226622675,0.18955151702213793,-0.01285602551562383,0.0027820577834464537,0.03780759864650141,-0.00042937466192227204,0.002139432939582356,-0.10752940837157811,9.983396159635298e-05,0.03948023354036863,0.0024695687606992446,0.012156952049046675,-0.03307952715909892,0.0001473184712683917,0.005321774111647188,-0.025802761557733592,0.12333368054998227,0.05267172768922635,9.895396389281998e-05,0.013691033996185884,0.02257680771660404,0.1067717666041218,0.004925920254123787,5.3143909592727875e-05,0.007058513733858817,0.052058248262200256,0.08810786833412611,0.01038088439352369,0.00028807412414817506,0.012329380885563233,0.0030095653789657148,0.013218656411273521,-0.05165856016483798,5.661491295143675e-05,0.007691459453128691,0.013100597302786308,0.13411959242941912,0.0017853883848181471,2.520171857896143e-05,0.013594478245515193,-0.01565815040852116,0.044865278989808924,0.029790646290660274,0.00012199416317903184,0.0023343869976423567,0.006108116508302218,0.025078340479952603,0.000931392614075829,0.0003839162447382794,0.016068949181642773,-0.028107148625266795,0.1520400725335085,-0.04117022402840621,0.00010588404355587685,0.02213246003189316,-0.0021291648331116172 +2017-08-22,-0.0033373137365613056,0.02208177536248622,0.00010619547080034009,0.00015982681038434894,0.0009998876649751063,0.001313457885666167,0.003914681109156357,-0.008304755952498298,8.050637812148842e-05,0.01911515925683722,0.013194882052732868,0.04909134807879908,0.017035284417600067,0.0001243362482455966,0.00583663288285286,0.006185894705359954,0.006682603294340044,-0.0016292557819022628,0.0003124098361899405,0.0052858566414512795,0.006609054350639752,0.012669033126786319,-0.0008763224315834134,0.00027295661513561555,0.012118434493765377,0.0031171072567928552,0.008719470391294497,-0.07601290565920753,7.805637505634507e-05,0.007595510031067705,-0.023994011920979372,0.09471284154407376,0.012189633241184987,7.433337625862046e-05,0.013764937988581452,-0.004147491596451687,0.03662683438913185,-0.000204267593593474,3.8831551634098604e-05,0.006614245451183507,0.02433100217235284,0.019766803764753718,0.06224153831054977,0.0009492231760138698,0.004769418409227665,-0.00026314993956012985,0.0006927813125202888,-0.010324775863566728,0.00013282168844382146,0.025003798358581783,-0.015138445843637358,0.012553500193604614,0.005522076604110936,0.0005894416449592534,0.004970161746261205,-0.0008830882629511194,0.011139647540204455,-0.038965135814662426,2.3624109781493825e-05,0.009766902442367706,-0.0021004752545120855,0.005832739636572951,0.0003131456919891866,0.00010697837992597881,0.008533756531773235,-0.024912285045287808,0.13915862750132107,0.051016700216911647,5.0392423599187995e-05,0.005532847606105174,-0.00014731377818062168,0.00014110777964494698,-0.016349383083585117,0.002036176319917694,0.003045829962761291,0.025381722401752124,0.1600790028171029,0.013537690968512928,0.00013047846157214618,0.037783487352142583,-0.014199652196315618,0.07909927878616776,-0.0024618111202181162,0.0002779799133512778,0.007456813878717917,0.04867468662014104,0.30744711762977006,-0.018620608827432907,4.459577280715438e-05,0.009706295908112216,0.019814726261060494,0.11654041249892014,-0.030112656875415048,0.00028021948686371184,0.004378606301557063,0.05544516271982139,0.8226466052005513,0.09687890200429594,2.7969234732934963e-05,0.0047831755797167995,-0.03882851294859318,0.4361646659476223,0.06660105614029285,2.9742809345609192e-05,0.0043084920204469745,0.006002712575819868,0.01823013926329313,-0.03293247389866781,0.00010606700802360501,0.004950592112265349,-0.002003231794390666,0.01346647029665808,-0.009476232546683552,3.436131715812396e-05,1.8182541855270773e-05,-0.004254955202147789,0.01380110473595377,-0.0401107821309698,6.83531482871823e-05,0.004242850880455442,-0.00408573626052797,0.014945273906573709,0.0026584063837565694,0.00012500144851950817,0.0008917151302499213,0.13287156041601053,0.1384278155743769,0.43045937612534785,0.000548635911045055,0.021280154575362083,-9.770571019955326e-05,0.00030363052017318983,-0.006275335395137252,0.00013544423709855439,0.0025050043354025546,-0.02490375873399786,0.09538286267263407,-0.10145982910445889,0.001675767341886355,0.019586269745054515,0.021606064715510773,0.22596055090546674,-0.0074778735641193965,2.4588115412623708e-05,0.029169715869731792,0.03059204069811971,0.08138147480098616,-0.11083742300107555,0.0012290064502762893,0.016301005077393883,-0.017676754500710126,0.14566097960292135,0.00909677775174107,8.081369184183679e-05,0.0055571305931406065,0.034923067520210065,0.05634636403287695,0.09138729178770001,0.00014628233132564747,0.0010209759310645839,-0.043603684347225814,0.06162609187363718,0.06229752021129742,0.0004061275711348995,0.009546295951362617,-0.006251083284885897,0.028467137282462432,-0.16022014959301392,0.0017020089151120249,0.008554444413930034,-0.006737489307517169,0.030110056313827092,-0.04839139909499416,7.179213876314123e-05,0.0006983877049453153,-0.056424730130371435,0.06822775329455213,0.02459137946139239,0.002055822486229853,0.005223240002613492,0.008562245356428909,0.027783491118254983,-0.017117237680808764,0.00012210034450677105,0.006785133538445064,0.0011583876586607866,0.0029905380784055417,-0.0003484759079206346,0.00015702361136075304,0.014606495936849595,0.009010408832524859,0.035271275825355046,-0.005811509382018817,6.23501141180393e-05,0.005532784981398597,-0.01055882241876138,0.035114778982666475,-0.004367426788677431,0.002849991761266905,0.008218584720156928,0.034078243764312635,0.16709577335304496,0.035471182148769584,0.00010145006069146192,0.03049659760289246,0.010125424614743124,0.05053521830010536,0.010740746923751552,0.00014530477387302698,0.01913733951664811,-0.010532364553235744,0.07358946907828566,0.006250047799499724,6.769536151575155e-05,0.00037307034656982924,-0.03260373106909274,0.16623311776867772,0.021134147204488047,4.929435027805323e-05,0.022701446724382172,-0.07270603477508555,0.11592323823855973,0.05362954085131311,0.00030579427439951246,0.00589186553274431,-0.012108759510545018,0.048380186432197755,-0.052275628681023846,6.223669073202512e-05,0.008247197066262597,0.029603506326845577,0.251111961467038,0.03318535223361252,3.0416345891863713e-05,0.02023831109814414,0.009735474895374146,0.03134065332453941,-0.013539463501426607,0.00010858205587559782,0.003952317335009029,0.004908367839073568,0.024319259333873754,0.0006002374285024318,0.00031813740098669374,0.00771816908590139,-0.043250373197416855,0.20986088615607087,0.03330981127293588,0.00011804025875890493,0.00656426349031685,0.0017282673012632291 +2017-08-23,-0.0006529039535481569,0.004358284501248814,-0.030597949889277477,0.00015842375597219845,0.0006391852521698182,0.011375975465705832,0.03596200359969586,-0.051834449777715626,7.590236239893574e-05,0.008494486379925878,-0.02305018467186196,0.06862587220466464,-0.022784882263612905,0.00015537592834885736,0.006468001521321534,-0.00429486336376017,0.003911851606998081,0.0034636762215536363,0.0003705397774142456,0.015589927837476376,-0.0031405480772408166,0.007245430350141345,0.00018666085641736284,0.00022679790187690843,0.01280948873011353,0.0072229140813947915,0.019518583220682832,-0.17588129427337162,8.079991389322608e-05,0.014179718346460935,-0.04671426944196679,0.17646271807235842,0.00576350964434688,7.76759282931718e-05,0.006381041445467851,0.01809870309901912,0.16057192973611512,0.012618328738023748,3.865239806185973e-05,0.013122747485737789,0.011396253587616702,0.008965766493163944,0.013657250384851292,0.000980210764079068,0.008217370829468265,0.026526039528342333,0.05640817842025406,-0.00043104352115244074,0.0001644342279272747,0.0007891207673733805,0.015715962231916552,0.012567102172235835,-0.013523164549920322,0.0006112659278281634,0.002592254402204573,0.011116594834885847,0.13902115269819643,0.01238322901349721,2.38294315032503e-05,0.0032995532149703985,-0.01588233335543155,0.04462408257770223,0.006075700997923357,0.0001057294673960937,0.008584776458727846,-0.003453045912178575,0.024308367665871477,-0.02014871497223235,3.9986038029539214e-05,0.0005682368516273615,0.04735530159769915,0.03889202421374522,0.07450486780197137,0.002374821827726705,0.004919671933470872,0.033750022868597476,0.20734320219123803,-0.03427675565977312,0.0001339480445004982,0.03931570587357641,-0.003954746840663541,0.02147228743749735,-0.007813679001404669,0.0002851993999991349,0.002276422426549666,0.003086540674947168,0.01705645380342789,-0.11856705855621771,5.09734722516029e-05,0.015547852074558027,-0.05354398998604196,0.30860027469162754,0.08579793481095946,0.00028595732772189746,0.0038331671885489674,0.02476829010112379,0.2946934547921531,0.02234086207655059,3.4878336779634766e-05,0.001259067087739697,0.01223678838530376,0.14516666407490023,-0.029408579819813416,2.8163217029150854e-05,0.001673777679145135,-0.011204565755925757,0.03006149810732085,0.00736522180540382,0.00012006244015877078,0.00033980057303921603,0.007553785186246122,0.05126468656240149,-0.024803341794373147,3.4036014495046565e-05,0.01811901987624604,0.019741477025542017,0.07485267694720409,0.04655852289215259,5.8472234216339024e-05,0.0061179369663472575,-0.0030929685146274476,0.01093590082694527,0.0026618269672034987,0.00012932114212588065,0.0027535194456260997,-0.0069151339878508475,0.007151098528054901,-0.06628574390663669,0.0005527177337788335,0.007677774632477576,0.0021384427863877517,0.008739465329185016,-0.03250999087103334,0.00010299088275108805,0.0013902600446873198,-0.04538232259333089,0.1761299893810156,-0.08032051830034642,0.0016537603848823467,0.009699284299192083,-0.04057944128320421,0.3198027813552405,0.02709800580051844,3.262916964728821e-05,0.005267457694665705,0.01940626927701968,0.04868414567337353,-0.049575353462660336,0.0013032441068888039,0.015194286420642588,-0.01823776058854981,0.1379537590984446,0.012232205440200813,8.803667153411387e-05,0.005051333657338156,-0.01221896836881497,0.019719881579940757,-0.004636039108208905,0.00014624318072413138,0.0004295844961736267,0.011219160835960673,0.01601036346328739,-0.03561018930130248,0.0004022194766354346,0.0003415440088673518,-0.03678482580960351,0.14786454786287168,0.05380199935006255,0.0019282129058981658,0.013700462068562812,0.0007937201003513659,0.0029988137897610325,-0.018612566516258065,8.491966060845141e-05,0.0037560632575898817,-0.012871510387690414,0.016867574468658064,-0.014212402437552727,0.0018969420647004934,0.014491353505721422,0.012721828409484895,0.041025611966718376,-0.010810299450614097,0.00012285999747552133,0.00892446039755582,0.0690660963327516,0.19668419424649317,0.06618272473222894,0.0001423494603930546,0.016131906482152344,0.009744292512113896,0.04297435824841649,-0.016660867749662734,5.5341998415908465e-05,0.027030373036553458,-0.022432042138948984,0.08654765336673623,-0.03957728936495243,0.002456583740621387,0.018654146453129954,0.010610807980744734,0.053900889887964924,-0.0008661728300371966,9.79248896338525e-05,0.021717676453097755,-0.019944885800326,0.11169053920586657,-0.05251274558908633,0.00012950184350759954,0.0016412403847301357,-0.028622611438332893,0.18126554866332617,0.06457214756005952,7.468659904979584e-05,0.008527191278780447,-0.006621451411405126,0.031165070005905404,0.0013826433572213595,5.3398921374539435e-05,0.0026087872144883416,-0.02952045348253887,0.059091841800329496,0.0012707655566920972,0.0002435706147697785,0.009865786421315997,0.016915589503219277,0.08104121227186528,-0.021936861903943613,5.1903373302239e-05,0.0010470527889754303,0.017516952579885996,0.1716692932965847,0.01036686100975907,2.6326748246866175e-05,0.005229733312360041,0.003654352712325898,0.010775262372667559,-0.006554058966180796,0.00011854727437089238,0.003353711210853481,-0.0019320040258257532,0.007150343889870694,-0.0031891522463253397,0.00042590140093918936,0.007536682289578991,0.003245929303715164,0.015496507363499386,-0.0048259523443517855,0.00011997120630658136,0.029894812506277568,-0.0003904559631058542 +2017-08-24,-0.01487762789453436,0.10331681155732385,0.006945991916954851,0.00015228224868775244,0.0020031190288868767,-0.04117082309023633,0.1536283844521872,-0.021120824924724016,6.430261171006603e-05,0.0005077685839401205,-0.049448239386623724,0.16783559579846197,-0.012918719536220742,0.00013628999103599092,0.011102144221552571,-0.041345554887875856,0.04170858454195108,0.15314882703540375,0.00033455785394414644,0.0006876878130244886,0.0014651930936174183,0.003579715611631115,-3.827900118208628e-05,0.00021416283609332812,0.008225624790667829,-0.00040793995165382124,0.0010477951540474447,-0.0008876981276154943,8.500933020705946e-05,0.0026550711940464527,0.001807334391235771,0.007047187228183214,-0.07961646067042083,7.525104894219836e-05,0.003151039109284779,-0.02255610017198839,0.19804617628163781,0.0067861226310844,3.905675588832144e-05,0.015890179109318742,0.011668373248364027,0.009738077583974136,-0.06908889434427996,0.0009240210591754422,0.006105180720764516,-0.08036479185802259,0.1882144928958522,0.1480175227970787,0.00014930510205649362,0.0019414258531641631,-0.008093461907279664,0.00516069860703683,-0.020228340579477838,0.0007665671228238346,0.0025856729165960996,-0.0036236872489722348,0.045343518632972694,-0.019163273415484808,2.3815421871350636e-05,0.0030938972135512444,0.02285666265265658,0.0641316845677769,0.0005971459335685686,0.00010587446005848294,0.007470465846469661,-0.009774058724250294,0.05924856111471026,-0.02517785237519797,4.643644395700045e-05,0.0054737765887959595,0.021485963871719912,0.018556128998930495,0.033550770095452,0.0022583457399911262,0.029754700322663474,0.01979563909530779,0.12144953606915948,0.008857753960369977,0.00013412995379095003,0.012253455224256646,0.014154275443873637,0.07609034574858294,-0.013742323992410689,0.00028804896374335016,0.002985329528990618,-0.009382204609731543,0.05074989723661986,-0.05129928735004195,5.207516908347658e-05,0.02410346907991989,0.00968945033931146,0.0655464739480906,0.0009169793577457786,0.0002436332814803839,0.0017964344326289999,-0.007116593758972996,0.09271309630759063,-0.0071858842030897855,3.185380531437222e-05,0.002839643319702916,0.025803222422545007,0.29783011853241087,0.020286752286269992,2.894589888867725e-05,0.012001028447789231,-0.007940779248577124,0.022957273620624576,-0.0694457258592775,0.00011142061935814325,0.01359830619627243,-0.02143210675335141,0.14586961828231293,-0.007675980300964396,3.393848044821806e-05,0.014771468430663478,-0.015613387278727048,0.04259516534575067,0.040524769740289714,8.126699591410818e-05,0.0013045651553301092,0.008419584592972162,0.027093922597753953,0.012758684963916926,0.0001420912629977275,0.008477009991191907,0.052036593881925684,0.05137250257952589,0.035328072800087,0.0005789668531209623,0.01885837003933342,0.022017554124882002,0.07618544653678792,0.024255692061832576,0.00012164186338915438,0.0036135757495857736,0.02359743210638304,0.07523387816196196,0.015994406836111273,0.0020131237406315903,0.007895698011140997,5.54191934359832e-05,0.0005337053756637501,-0.0006907677216459095,2.670181723160501e-05,0.005086656803215601,0.012828896246440012,0.039229368163187894,-0.06874512966199602,0.0010691761174938818,0.031262727761950555,-0.013630067967176838,0.10993421856161867,-0.00538814213171998,8.256400871699458e-05,0.0036869207499724303,-0.00932349644410728,0.01267595092555162,-0.002420508307474015,0.00017359757198273122,0.004764494847741014,-0.00965434368860559,0.013217388757627032,-0.00965344370990689,0.000419257659216655,0.0046581734462851875,0.017577290335330186,0.0686534183787037,0.005170475223790332,0.001984449726303526,0.014235212503689223,-0.022880686934559056,0.09406921027588373,0.004700357317789999,7.803904233095305e-05,0.0026393712177122663,0.0465344091425846,0.05639252641798798,-0.04148774817487864,0.002051303136564492,0.017258400029037686,0.028796408799353187,0.0926327778949099,-0.021650618704174816,0.00012316567144991472,0.003370797358874392,-0.02490131085895959,0.0544364002349582,-0.004178559661638489,0.00018543563145076807,0.010582266117407887,0.02752905735382701,0.10912474385907003,-0.07662806703743136,6.157182527690736e-05,0.011560091243267553,0.005162862374066496,0.017215074116648937,-0.00010507565719027828,0.0028424949996756137,0.012373718714581797,0.042412656406444614,0.22206177003337035,0.04866454690540829,9.500845323514663e-05,0.005464661399993073,0.03382209031821115,0.17486924739973259,0.10395012897524221,0.00014026450661433522,0.019195980565778842,0.013745286761086769,0.09036536423404408,0.009306153207807347,7.194498063671647e-05,0.009616802485533338,-0.0004234252352180282,0.002039466903957181,-0.019002786262860994,5.218040796936056e-05,0.001837472026064829,0.06565471304901052,0.09047544229035902,0.02676402129756791,0.00035380550564469116,0.0011759983773994326,0.015263017593100732,0.056188384763360445,0.009088788493794154,6.754733715914199e-05,0.003791069065868004,-0.0009400978410885073,0.010692859498239483,-0.0038938913777828,2.268352165855936e-05,0.013688221301078352,-0.0020889588329029117,0.00597088635471587,-0.015148121977276848,0.0001222925612342885,0.007195724616848104,0.020027493227737485,0.07485445929490726,0.01743474234925329,0.0004217323217892687,0.011583247279367569,-0.008984399994575605,0.039852845793318256,-0.0132882186112244,0.00012912238408667941,0.00434630682362728,0.0034683502547420246 +2017-08-25,0.010625281292843692,0.0771002001709911,0.007291601170112859,0.00014573756690388875,0.001190540359009231,0.02243218717982389,0.07421162182258437,-0.029355473900140205,7.252875522949807e-05,0.011174931057582218,-0.045876603331952474,0.15522477133107754,-0.01025807456910668,0.00013671854610509536,0.010896201302624437,0.006738219732681702,0.0065564074745702436,0.004081553641653628,0.0003468543046919448,0.001980589921692678,-0.0008706809850047507,0.0020792349841367483,7.961180702612051e-05,0.00021910548943446763,0.016437486398368506,0.004726175719767557,0.013261780243702162,0.0037116321648276093,7.781346907619211e-05,0.007769520259088438,-0.027924204353703574,0.0974145498921319,0.013109408874641881,8.410984537669263e-05,0.02513096798524607,-0.007323237117414048,0.07285487298608397,-0.002083144398302516,3.4470144611014285e-05,0.0028997846656655156,-0.0245183322664352,0.01944411260371927,-0.04357035855549098,0.0009724059002865695,0.00804805624486046,-0.020615360993714228,0.04472047957162207,-0.011389256211765146,0.00016119307430473203,0.0008688500826476747,0.009880767307254396,0.006213948464594478,0.012762552273202324,0.0007772261119743423,0.010719885652315011,0.013418114205567228,0.17651724001189675,0.02731894167156054,2.2653074073947613e-05,0.0003190127877649763,-0.035177955513879235,0.08162600823165343,-0.08959519010075652,0.00012802449593075444,0.03230145384755256,0.015120494976570925,0.08096661595469527,0.03834869272249131,5.2568046517683696e-05,0.0014692764902979644,-0.03954184569256696,0.03339791767727627,0.05585928815193013,0.0023091945279062405,0.009264475891463805,-0.011447736530164438,0.07264313219989971,-0.002649795692286197,0.00012968124511583817,0.004284403954022288,0.040623971716437245,0.1976062986847161,0.009422463138517035,0.0003183389866726899,0.001838458740580477,-0.05080945042309747,0.34509957549172554,0.06218570179523451,4.147257759160133e-05,0.00461658938329818,0.05795563239528431,0.3240494174026084,0.047490357701361556,0.0002947618078863755,0.02150722568658079,0.03348720904763309,0.4375477631172343,-0.06648895041603405,3.176023568898076e-05,0.01928774280792721,-0.03835284656549751,0.42747171073270357,0.01006719790454887,2.9975879402517525e-05,0.0113190424926532,-0.02590115277747311,0.07650280853266316,0.007321790470176308,0.0001090597431002942,0.00429085251371266,0.014588294955860842,0.10267206061082687,-0.091664884876162,3.2820457708009346e-05,0.015272801879434526,-0.03641427936887753,0.10097171866135339,0.18847442248072258,7.995568595744498e-05,0.001626845131091641,0.00011533137808661094,0.0004495937475607293,-0.07391117592792881,0.00011729400461711887,0.006465568599567876,0.06437471265298396,0.05859220777244989,0.04170471807512245,0.0006279875043004352,0.015768020663471,0.00812472645195471,0.03049991477123052,-0.021612173605251077,0.0001121233670605375,0.007511376496778582,0.05273647423865359,0.16508916553321262,0.07896515922254803,0.0020502730046323713,0.020840730574939965,0.012044460242422663,0.12906911481897118,-0.007755590334474763,2.3996461522108083e-05,0.02082970056958186,0.016529492031096184,0.04916619783390539,3.3149884993120254e-05,0.001099168193814932,0.0003348865355446594,-4.454826966033312e-05,0.0003334955938358076,0.00028389246432364014,8.895418453550197e-05,0.004007693722162997,-0.015629573439815383,0.024268566034071255,0.01682823227263387,0.00015200168279024968,0.004280065070318852,0.008660355576008019,0.013027699330031407,0.00209065197478115,0.0003815679691861343,0.00010048247327307507,0.0045523156328499785,0.016371275906225977,-0.00047222191403017413,0.0021552625341442087,0.0023904821680789745,-0.02087736061731507,0.07669866586458904,0.003912497449360412,8.733295468442389e-05,0.0071729592578116085,0.016827024478869364,0.021036945592139575,0.003485353812964459,0.001988391209910838,0.008330123407200523,-0.022008278611604183,0.07221261836331941,0.023318190056776242,0.00012075052271282545,0.0030171271378262986,-0.026325203719643996,0.06686955545789176,-0.04028188936067663,0.00015958926726574731,0.0026159387782406975,0.03516942662560327,0.15318003010300763,-0.04308476913009017,5.60372820158148e-05,0.0005730718123475699,0.04333505002240716,0.13638680679409096,0.03552062507660796,0.00301151477853161,0.02437651671327356,0.07557803348860287,0.36959435817447706,0.1110318846957468,0.0001017210478128189,0.004678693527757304,-0.005725122397684798,0.027543861839596628,-0.0023543252751626023,0.00015073729899227863,0.028852863928209266,0.004648551252198572,0.032589956173086645,-0.004772638167211553,6.74656246726564e-05,0.014480275388805655,-0.0006533650622141228,0.0028735586593048594,-0.04151741958741525,5.714565768567099e-05,3.456881516879543e-05,-0.006492796624368436,0.01092361455992188,-0.005390150527792481,0.00028979762770184314,0.01590493690204893,0.016671771355512302,0.07162818456744262,0.0016556853003709487,5.787782167984081e-05,0.001723956211309966,-0.03991212840326838,0.3954915616348282,0.04969376435948298,2.6037480154252433e-05,0.005317488701467737,0.0046596257972753,0.011932837483210206,-0.004303537083699994,0.00013649485442119853,0.002524768708110319,0.0054339292808711125,0.02398990401317307,-0.08035885339162095,0.0003570371791990349,0.0016104006131286283,0.015944135229940953,0.07989492334426765,-0.005291603919857408,0.00011430193452569132,0.007972631442794871,0.0029429285656079654 +2017-08-28,-0.010248892878429073,0.05651702562387766,-0.020446187705510613,0.0001917715772068142,0.011340706996197205,0.017360255653015008,0.07414860792253103,-0.08665801319134973,5.6177659454349554e-05,0.001514367493801391,-0.012910286416429637,0.0401630848945643,-0.008828482755047598,0.00014869830515770076,0.02311096399421379,-0.0399607549841466,0.04502485938584289,0.10202314757621994,0.00029953610346819537,0.0020908703575824193,0.009490975689079072,0.018289635030026216,-0.023453360373090905,0.00027152110602909885,0.0033645067305257464,0.0009742445608206672,0.002758046957082454,-0.010543034467385312,7.712817827036894e-05,0.0050618000899411986,0.0187450174441439,0.06596298621339503,-0.04492368830138942,8.338259284795132e-05,0.010486247525395783,-0.006111020787566846,0.05864945034400867,-0.04574796449470797,3.5731268072384346e-05,0.01428395396198963,0.0013216125798387163,0.0010497097717050991,-0.00028031235401614096,0.0009709116459688678,0.00029194035466344854,0.023675746582844562,0.06290368072300227,0.021207652621224937,0.00013161018840598718,0.008363384098992536,0.011275210894434161,0.007627779363109893,-0.012077504470495479,0.000722521724192195,0.012630902639677345,-0.011452206777749198,0.13402978096978072,0.03882794161838268,2.546306404978108e-05,0.007106280078368085,0.05387811540804697,0.14754931186508904,0.003647171813577084,0.00010847414749894831,0.005715170462514793,0.006248908061934878,0.029810610151778945,-0.014497766268946666,5.9005852366416044e-05,0.0034868807126893072,0.006848008195257983,0.005774972470486,0.0029461082688914957,0.0023127959901974512,0.018743337479254357,0.05531231756694064,0.40445219531776977,0.0579828919839636,0.00011253996256430791,0.011484875270284195,-0.027681029726205883,0.1384078856470005,-0.05410738634137794,0.00030969175225174306,0.02960841865753037,0.02549206768201996,0.17408496122804284,0.010627402890218459,4.1248177425585294e-05,0.025960574079755876,-0.038911973758671455,0.19778918920233354,0.05318553893841769,0.00032424069203953294,0.0026718052293121203,0.041491395193020274,0.4825963204155509,-0.0026482686547299713,3.5678309098524255e-05,0.01551054980472654,-0.005745710580185217,0.05549930624104906,-0.008151200751521278,3.458899160207992e-05,0.006521938291526093,-0.02755603387735536,0.08158295430173365,0.024637654498053534,0.00010880279144569292,9.699766831785844e-05,-0.10286990552644303,0.7265088313044857,0.09787649521262345,3.2706932842640835e-05,0.03743430342290196,-0.008117878743821466,0.02416082853916292,-0.00916876231797524,7.44917400372261e-05,0.0019053467638929734,0.008650305075640097,0.040194818261186996,0.018906189098110746,9.840336515788907e-05,0.0003188627609977965,-0.021649975175302136,0.021924429349472824,0.00786692512612304,0.0005644229519088042,0.007275633899108971,0.032308776686755906,0.13358082468447077,0.08049292537443492,0.00010180342827411696,0.009615511597085813,0.01195906146155082,0.047877531892707666,0.010428439260020426,0.0016031882394099764,0.00976777715430661,0.020345269390278573,0.20478592226484874,0.006878717275350081,2.554733139656624e-05,0.01353318409757558,-0.010818966990919238,0.029253809753605812,0.005384436491506521,0.0012091345551760418,0.004231445581817115,-0.009923538729017222,0.074635833760427,-0.010930854296845116,8.85410817178964e-05,0.004695139972839487,0.008731765493619465,0.01514802605245579,-0.03674420100999472,0.00013604776337820465,0.006738526312170127,0.0006473140928395871,0.0010209046478228546,-0.0023752272774564547,0.00036394335563706416,0.015281665540651558,-0.028590651375517157,0.12605856107884741,0.01430812550784125,0.0017579318941274747,0.0008440568401883561,0.015757340163444655,0.06486074847492179,0.016466134463773163,7.794554982752026e-05,0.0029605634207001907,-0.038912847091832056,0.06274484556963929,-0.014049278655794199,0.001541672567223916,0.024903905098438553,-0.001659255027522387,0.00562185248573574,-0.027692438378751957,0.00011693640361350355,0.0008453269662452319,0.00960240664539153,0.023177030507331105,0.0030532947802142064,0.00016795103221317107,0.030689157336209735,0.0069877332003067125,0.03008560233886721,-0.026846700154355724,5.668805142242837e-05,0.026452204719717737,-0.016808522709145342,0.050211253035174506,-0.003228115652270074,0.0031728281040917395,0.0004102729049232919,0.007640641877448095,0.037280472375416325,-0.012276785726607368,0.00010195041748920493,0.0058626598427870096,-0.005040931093073488,0.02636752282501464,-0.016584192839319358,0.00013864436233922175,0.012394903188968983,-0.009515401489132123,0.05760867555014343,0.003041978376454693,7.812462135684191e-05,0.004026897016401977,-0.00614404773547982,0.028391746133226925,-0.039472775925042045,5.438884960923413e-05,0.00332345336607583,0.057429038310269374,0.10965512047983361,-0.010952739095425648,0.0002553477417886686,0.008101774108081775,-0.011726493183851966,0.045528611575768985,-0.054078055446858606,6.404690163163482e-05,0.005560659146520953,0.01114864569111928,0.14877113250955867,0.009896935573463222,1.933457944659966e-05,0.02635367090768084,-0.008487839103502494,0.02550408838184001,-0.02128860159788296,0.00011633122416865858,0.0017659999945034883,0.0007358073129876193,0.00285951252734432,-0.01794907442916273,0.00040560198080879514,0.0026292779044520243,-0.03106758775817644,0.15900539755097137,0.0030592898112227216,0.00011190963074933386,0.013985966217311773,-0.0011074209025561418 +2017-08-29,-0.028101400874344918,0.2023101733183376,-0.03430783664946633,0.00014689155628058918,0.004249848185697708,-0.015754356724163025,0.05620587081638486,-0.019605985445205358,6.725576557376286e-05,0.0014198639371523693,-0.039446886861825736,0.14059509746151733,0.03272763834853374,0.00012978956051366253,0.006623089784160622,-0.03368073212751981,0.03825198838353151,0.060081723974553976,0.00029716343127604783,0.023125031437326478,0.042599780270934064,0.10734694949576572,0.03741475225753492,0.00020764210542164067,0.012838830468955342,-0.008779998536213774,0.023647791010526324,-0.040409093094563975,8.106821389751764e-05,0.002236643036638567,-0.0015875774244003946,0.005268098024975985,-0.030045018107681645,8.842415582365687e-05,0.005246692100662611,0.005712073627460574,0.03882863754602404,-0.023442263150648866,5.044757089877533e-05,0.015309830869854069,-0.009047888499996905,0.008078273072298256,-0.011592355991956294,0.0008637210359113539,0.0012755237040085457,-0.008907594079048106,0.02273512042400521,-0.013962814260467808,0.00013700141268220518,0.006854377358806046,-0.01620786168876049,0.010953710608021444,0.008513755636540202,0.0007232506244832278,0.0016115773516318954,0.001276491011756436,0.01808102387395261,-0.030146945539487047,2.1038633635289268e-05,0.0033210504171753974,-0.01603740185686124,0.043756171041001955,-0.024190069213442206,0.00010887940483417843,0.03196062622055988,0.024441521953468357,0.13852737920153188,0.0637552708018692,4.966545814403157e-05,0.008762296578802209,0.010604426928279906,0.007081410435977301,0.004687661102463355,0.002920723263152255,0.015819736691046745,-0.002509081671589055,0.01795726350879761,-6.998947595473001e-05,0.00011498117704551455,0.005695890267473248,0.016568295341374502,0.08597270613512134,-0.09684616498164735,0.0002984183071332371,0.005228895195793182,0.05280908408155606,0.34071736610964826,0.05165928406653477,4.365915454273471e-05,0.003769047547805167,-0.02696031061656191,0.14993571427045752,0.022765175924517416,0.00029635114261527455,0.007830724577114555,0.05618453623214192,0.7341164597237182,0.01171944777419063,3.176011527839267e-05,0.012211520639399827,0.026833173688389892,0.3365915993796259,0.05423100463780117,2.6634863669039138e-05,0.014651364548049429,0.005463049726331518,0.013945505059003984,-0.03459559556232466,0.00012618962851752329,0.0004148462467180856,0.010669534304510384,0.076824923770453,0.01461719615215556,3.208009917170087e-05,0.019427608913649974,0.006521618312724262,0.01941819621296379,0.008584901622251052,7.446014449357055e-05,0.0007924722915499194,-0.006851871404631236,0.030402366277023297,0.003674349324594886,0.00010305057330287978,0.003147591802318157,0.006498005711069824,0.006558135779201256,-0.026078579246528358,0.0005663374044199652,0.013797440937212585,-0.019229078162302016,0.07146547429892704,0.03705859347549777,0.00011325260321797154,0.00524043423064619,0.025948056319422385,0.0852391496733871,-0.00013154230798377613,0.0019538215613270245,0.014003158526421916,-0.012478353284087482,0.1287004517623066,-0.012497334852808122,2.4932131052233787e-05,0.014445883765252162,0.020357073081905895,0.054658720363834276,-0.06935894165094383,0.001217663100259338,0.007563626253967809,-0.010546225381037595,0.07609756689155268,0.0027266476134033867,9.228942081737484e-05,0.0084277876034287,-0.005510011257622137,0.009476936187322637,0.000130186188813611,0.0001372239499240704,0.0012567041831356668,0.007463793455506108,0.012038846487215567,-0.02054072409287431,0.0003558595702459181,0.005641875973229519,-0.00498962980684395,0.0204361951817198,-0.0036756209420611727,0.0018924247734566954,0.0038622842022176525,-0.015231887952487692,0.05385441318316388,-0.008461446778448043,9.074502167593858e-05,0.006179930104470679,0.09390320743752274,0.1243282397501865,0.004177885065805413,0.001877534100360244,0.03253452668777303,0.022598970146702257,0.08087405082647309,0.003899164369477877,0.000110712201899717,0.018868664379117807,-0.020256016224626458,0.05187928361541776,0.0077993185858576215,0.0001582779591775318,0.00741309141999256,0.033621829119070856,0.12125669023207274,0.04908968012427862,6.767520060992728e-05,0.0061401842365863876,-0.09958594528032483,0.3095656869484309,0.0840295701001489,0.0030490411922039556,0.020267164289535483,0.042511519191598214,0.24127182946357112,0.017412646166573096,8.764771100389101e-05,0.02184292056448046,0.03737251344572459,0.19961477454233786,0.09173618147489325,0.00013577518669802011,0.009063128375678317,0.04645836303494872,0.2106851746758604,0.16218820225122063,0.00010429863518897643,0.017022061508811564,-0.018997358840661432,0.10968436842330917,-0.003661495232079402,4.3530723181853274e-05,0.012378169788963111,-0.01721195069597609,0.03653986189032359,0.005911884577142266,0.00022966382092614988,0.029756072677119893,0.00030709729255001757,0.0014012857452627514,-0.00036734107732345567,5.449587867018407e-05,0.005703914614917984,0.042088376584730296,0.34939896392326586,0.041291114823468235,3.1079344273769356e-05,0.011559332892604853,0.010161153838700063,0.03133986481431396,-0.043642401707653385,0.00011333260526168018,0.017814930018098096,0.01796754793650389,0.07322467747724594,-0.003557576816250665,0.0003867758200874732,0.007280439028103759,0.011937524443888585,0.05957378781462154,0.00828447337949267,0.00011477065379503198,0.011937884838240664,0.0047197629626588335 +2017-08-30,-0.02931373808080737,0.21560144875362447,0.03705632964820302,0.00014378252702410265,0.004390874899197813,-0.0049308311234401376,0.015088231130927306,-0.000782458968396478,7.841376863472791e-05,0.0018290513418632289,-0.010837475115691383,0.037863806135347025,-0.007848733199644433,0.00013240398303281348,0.017412088163468058,-0.0026003421119018357,0.0027359282959878396,-0.022038035488249313,0.00032076991906337704,0.019359556133170544,-0.029182292570476356,0.07093660615209278,0.036989452119584564,0.000215251790664486,0.011404509391229948,-0.016754957661190135,0.03872349229736441,0.04635820936302304,9.447470773998893e-05,0.0017214445058877637,-0.010047540770501106,0.03522137138869142,-0.04641689078215624,8.370345229642249e-05,0.02189162526743713,0.002111595129773337,0.021620894382642267,0.0012592925040533535,3.3491578038779794e-05,0.014142104257855507,-0.015065402546435956,0.013924480365732262,0.006673140944441433,0.0008343466566048898,0.01210739480386409,-0.012517351644873055,0.030783146949914162,-0.05902715608799,0.00014218746902260534,0.0048278603442957445,-0.013429583882738814,0.010268982673802092,-0.08811006927561327,0.0006392334508358966,0.009843468349341071,-0.0025298313543106934,0.03777577804009282,-0.003229996512178121,1.9957261242633305e-05,0.0037486720525903676,-0.008745648545585898,0.030981335393791554,-0.09510547094521098,8.385769587245456e-05,0.010302961270948555,0.013734453647335824,0.06778806068149602,0.016024443955103416,5.703218320178961e-05,0.002298950116600745,0.03650081710858972,0.03253334805515032,0.054637202659930086,0.002188249307983835,0.008885512809231617,-0.02810737472783855,0.20125174717605984,0.00019208671739207975,0.00011492982147447905,0.023915731887194595,-0.017166512356423455,0.09746657325927711,-0.06703573920136083,0.0002727310628856225,0.0021718917365795547,0.034236914702706026,0.19352170181403386,-0.01046845378376326,4.983401772299748e-05,0.009123706044569793,-0.005129289728069929,0.026618033520482403,-0.001336158979748298,0.0003175909151407501,0.010587752055904395,0.03269865457206158,0.44923829803483023,0.01235216628908422,3.0205313072152783e-05,0.004367441353906005,-0.021598931766784873,0.22926779283346913,0.003987553403093688,3.147537634041323e-05,0.011202477507026201,-0.02486693800108337,0.07703297182592837,0.011590345832467335,0.00010398445374456044,0.013495792487746737,0.007225823911493893,0.050149231883265005,0.008360554526212772,3.3282463507759413e-05,0.00043892094231266906,-0.007298431034843004,0.02211752337842267,-0.02454848973116444,7.315944394125506e-05,0.0016677662591467297,0.008328050474291622,0.03493895581441098,-0.06708832333346539,0.00010898883811013053,0.0001738032412360955,-0.06953400438406745,0.07185741921771635,0.0639122640652918,0.0005530968520530711,0.012235705634758986,-0.014176770983530835,0.04612407705311858,0.02268334190065197,0.00012937061531808055,0.0006723350934411737,-0.03833916587636155,0.11602111600094482,0.012134439765061192,0.002120922483636525,0.007236343866441068,-0.031058624090906334,0.3096221054143121,0.02268424424007166,2.5794816825214865e-05,0.0007392001390961213,-0.04337310251050257,0.11604578836826054,0.05728707770252856,0.0012219751526241452,0.017536440571405618,-0.022998464175873007,0.19020931418475337,0.022582641765839656,8.051794804476804e-05,0.00478373958618933,-0.02302768304727978,0.03407345656128339,-0.005224124194334467,0.00015950688614927954,0.010347690908290848,-0.01604289742665156,0.02590690341947545,-0.00036336243311611496,0.00035544402201366526,0.003285932316506673,-0.015432747820907757,0.05887080118895758,0.0051045089748893045,0.0020318594096011442,0.013142482260319877,-0.015063372369050872,0.05680065912073757,-0.0022346233457459256,8.508621545552407e-05,0.007587963533410336,-0.022554934015583013,0.029559048821746557,-0.014714704547132243,0.0018968295113786751,0.005825457945851884,-0.04244567166581373,0.1321486237141227,0.1024926450750309,0.00012725850072396164,0.012341086480543502,-0.0012570646781650974,0.003230687546802499,-0.07172672489048777,0.0001577331737817826,0.010940604522981887,-0.04760454202040192,0.21252161566428796,0.081775354633269,5.4671275657517956e-05,0.0073552468871769874,-0.018612005989521403,0.054743469706671655,-0.04793744654092348,0.0032223960871374,0.02380710494970111,0.010262311039434157,0.06163313003955344,-0.01996058432405827,8.28269215788558e-05,0.02240706409966878,-0.0064519629036306194,0.028952786699712015,-0.005088476103978173,0.00016160778403471394,0.0028237708414544124,-0.02272821714716579,0.13052373684557853,0.0002832176959597832,8.23615611050934e-05,0.00781626814272021,0.016383373768440707,0.07414897268698545,-0.018039426095755963,5.553229164576489e-05,0.006381573491100899,-0.001076801591122964,0.0019239721104969416,-0.00012353235873945403,0.00027287660954409057,0.00017128691859310706,-0.01096865060843773,0.04687948137691386,0.015718300321020135,5.818148211136376e-05,0.0035801977215494073,-0.005373560865643361,0.04999025451716072,-0.00419618940875636,2.7733718940736856e-05,0.023301022087450357,-0.0050169670537555024,0.01651824782973078,0.00021316487110065863,0.00010616619093267732,0.015863793399905773,-0.01580337916861787,0.06592788111918085,0.036784598547617675,0.00037784076607625696,0.007414692515264197,-0.011533555076774584,0.04961680128330824,-0.029693971371803612,0.00013313928713972484,0.00013658710999801902,-0.0123969615858741 +2017-08-31,0.004289647782645705,0.028264063315500142,0.0014197604114690072,0.00016049947675775728,0.01093467474664479,-0.05614096137682484,0.191500516905311,-0.028121970048682193,7.034292470648223e-05,0.006035564005499626,0.048481953239712806,0.15677166958135594,0.19759542375761202,0.00014305720290914807,0.020541825145980436,0.004919587841868181,0.005352422212933252,0.004213706938653942,0.0003102031556106599,0.011873910539599995,0.02803421281002179,0.04730835735114676,0.01695161973769018,0.00031006180393407907,0.013022924475070084,-0.0011507063683385628,0.0028603374433924245,-0.00427689092971872,8.784033535187203e-05,0.0032449154656111505,-0.0277535992934712,0.10348845610068136,0.006888319937903838,7.86895860901864e-05,0.007200884750716575,-0.02192757695628626,0.1852566256939455,0.003205567627269849,4.058966892098372e-05,0.013204463241871484,-0.01104258868147483,0.008006284124232804,0.0036883475667434202,0.0010636155650125478,0.002435145440165653,-0.04428527553317503,0.10220462090221955,-0.029976270136337305,0.0001515132820229918,0.0162715502924984,0.010261215882039092,0.006331386818326607,0.01834724647100842,0.0007921808418936549,0.001684603745493475,0.032182688025084095,0.41381340814351814,0.13503841304602,2.317611015450895e-05,0.0058154795372571885,0.024387253629985547,0.061710278110673776,-0.21734530938631874,0.00011739684598742136,0.004917530583398131,0.0009952631765811298,0.005268666256412113,-0.023099112277498942,5.31739674415173e-05,0.0017218141418193379,-0.019189621338946635,0.017694476766733337,0.011064401773439751,0.002115201046847757,0.015040770015779012,-0.016412002553789537,0.10840593097644156,0.0006492462728579152,0.0001245835322951251,0.029358744036277324,-0.013606587978530175,0.08647591967445378,-0.004928492763995524,0.00024364767785047667,0.017008440078323635,-0.014725413576118406,0.08417544785505832,-0.0482557563137023,4.927685947049692e-05,0.01640950643690147,-0.008266063128566759,0.03704329657278361,-0.03258522719018371,0.0003677696585081124,0.014075967241270346,0.05974247977111605,0.769789762626617,0.0288193710029162,3.220633791446353e-05,0.006013379298230774,0.014725192599753217,0.13415097377221438,0.0024262983631539075,3.667320477776544e-05,0.022705556782281148,-0.02595984173418961,0.07832521164364377,-0.13886862475238723,0.00010676360238009854,0.008988853823621594,0.059474555971778593,0.4825173751775765,0.09219605598298541,2.84715183260291e-05,0.005852016352354496,0.0017147794566041222,0.0042146906558543935,-0.026834791721283953,9.020278569120977e-05,0.001538490534969024,-0.011103841100032843,0.03990011414640896,-0.012657068761589592,0.00012724704207806468,0.0010743119321025166,-0.011830956816061642,0.011686831506507176,0.0016382464484156162,0.0005786269372833596,0.009846025783929901,0.012763375907330895,0.047430674498294786,0.002628698366823188,0.00011326409745911553,0.00037960926883193083,0.0245570898182077,0.07722454467402347,0.01655893932399858,0.0020409892489378994,0.008535025800045266,0.047813273989599475,0.4258644260481077,0.045568677858333476,2.8870833002795017e-05,0.016632746096941986,0.041271486783810894,0.11917534852883088,-0.05218068006991583,0.0011322307704745916,0.012659230766172107,-0.029222712654510777,0.2408991009011699,0.03701606019135694,8.078132862848667e-05,0.0014010726204420811,0.008213123927915829,0.014524340914343532,-0.008203982292139124,0.00013346190763550357,0.0081707004169723,-0.039660388587612935,0.054042948623637566,0.08774273315270707,0.0004212324717151374,0.008467322214336973,0.017215604934917094,0.060352109627732076,-0.025092118897023664,0.002210956374777871,0.01020169499637968,0.012267442165232028,0.04055043125608771,0.0155714667822572,9.706192767630631e-05,0.008161649232920192,-0.02374503214752931,0.03530487610320926,-0.046741113593399754,0.00167191911065661,0.03467375612621008,0.027311177549784307,0.08803463459672001,-0.00836567093250394,0.0001229144369743866,0.0018621661818469233,0.019060609742736614,0.051824061280181806,0.0030063712068582734,0.00014909590701577536,0.004655253119031846,-0.01724077350537011,0.06748954903133374,0.00890356495023639,6.234966801026696e-05,0.008891689627399184,0.014587650010742012,0.05180820286749937,-0.0021806327568710928,0.002668731399230774,0.01832753001314721,0.023174200053742555,0.12519843700319844,0.0027475296772980717,9.207599387022198e-05,0.014021870129201629,0.0017292636940981388,0.011198195257508939,-0.04449500460083399,0.00011198864040744039,9.186470745058389e-05,0.023676334175636343,0.11616153451962638,0.021707855462814087,9.64052797771779e-05,0.012225771890900657,0.022786659462576842,0.08889655404374754,0.004992002853148742,6.44233242159598e-05,0.014544214192856446,-0.026896664702904995,0.055862770868244475,0.012015997167186742,0.00023474986415793631,0.02069008370666832,0.017546864581370426,0.06339313988006437,-0.05333668331265912,6.88290281186105e-05,0.007476434047254952,0.023651315008236883,0.2362048953226806,0.0032054460671683328,2.5834358612075284e-05,0.002050198680282234,-0.029613263884190198,0.09552857483380633,0.09841723659203588,0.0001083582400252386,0.0030374909020383896,0.010389523093972444,0.03936547208088764,-0.07597281896277251,0.000416014166338219,0.004104822117935275,-0.002621493651825035,0.01273779991969599,-0.028793492094957903,0.00011787621534096195,0.016789660268993364,0.003033519048132431 +2017-09-01,0.03687320089321627,0.24741994806478834,-0.017431662027386913,0.00015760235838331783,0.008967422571115118,-0.009533549129406535,0.03173867762361184,-0.008435737174227369,7.207361531258017e-05,0.020605347460138458,-0.041220580077306467,0.1603318480464094,0.022677413461523792,0.00011893002362651463,0.0016956891457415584,-0.007706320929618168,0.0070745428575432895,-0.0043407789302164525,0.0003676347585671533,0.006787028889377228,-0.008782869964595885,0.01802593772550284,-0.11837280021116704,0.00025493904743257786,0.004102689271656768,0.018857790969882722,0.0528543648304976,-0.033108034070304854,7.790345144942368e-05,0.0011782110814956392,0.04547766669019915,0.17342761780152957,0.06267084075011622,7.694311613185099e-05,0.01231445852445167,-0.02217508506170439,0.18602694684036217,-0.033234976526372834,4.087785046421306e-05,0.0017743780001451262,-0.0012829079164843652,0.001051562018303628,-0.02070753751034047,0.000940817485566537,0.0008219762323363243,0.02982002094677424,0.07124696945329158,-0.009893027919922264,0.00014635360839220345,0.02007933191023848,0.00272065203262977,0.0021441379355585616,-0.0135752228601796,0.0006202183870649866,0.012295415610850359,-0.004098398258003489,0.05632229466529863,-0.025351596416480632,2.1684859234864687e-05,0.0010432756793757943,-0.023237101909994694,0.06107100898923744,0.034517937665667256,0.0001130310872822822,0.008027765171086014,0.001555251214986562,0.008924862347601762,-0.06817288840357073,4.905246551390568e-05,0.0003882105869238846,0.05501273994511409,0.04419257438629184,0.10878427895608309,0.0024279343907357112,0.01670947119983617,0.01508598706280798,0.08876905844244065,-0.006525666417135898,0.0001398505650073465,0.033750995147235424,-0.032092655177173336,0.1883022349530667,0.011530823115773726,0.00026391155588173054,0.005570794226834204,0.027475699631587365,0.1931409788158962,-0.04494131351296166,4.0071471231029576e-05,0.027079536827533134,0.02557401781798921,0.13711790849581654,-0.006541402281526105,0.00030739131347856967,0.022834399230127117,0.0035445991695065675,0.05112681256052776,-0.0809098700235658,2.8770581823247462e-05,0.00013389673193270639,-0.003535501961839717,0.04715200448842283,-0.0100832581491068,2.505143635900737e-05,0.005992322819074235,0.028001341443220574,0.08506288684399278,0.035165415760978175,0.00010603798722613525,0.0033102667483921287,0.01093370401431572,0.07635268416307203,0.005982370535222745,3.307770577515662e-05,0.01148276947740075,-0.00021943327274070285,0.0006844247871071019,-0.0033573603433672814,7.108109888523811e-05,0.005790831131538002,0.009310385157468671,0.035907379723080494,-0.046429361840055756,0.00011855845433015992,0.004544123536470705,0.022560156564659678,0.027503621384008393,0.003864281851775557,0.0004688433817003601,0.013432290899157874,0.012912903064824217,0.04484531165504487,0.004333337469619644,0.00012119727448467087,0.013399470743587777,-0.019367027012279395,0.07126739103651895,0.0005258083486481114,0.0017441798808545447,0.004675220373244502,-0.06725528704402926,0.5611171394691228,0.09122586076333351,3.0821593713761736e-05,0.004263386399353786,0.07528258640491069,0.17569096943276474,0.0955837152746711,0.0014009297623419168,0.008347879779303817,0.017696856215772803,0.11394465755604537,0.03045143396503239,0.00010342554022596026,0.014664818031665352,-0.005217668474143391,0.007501378108149164,-0.01943888549877563,0.000164165090547859,0.006353987662092799,-0.05876357504505213,0.07986277600569024,0.15011295607944422,0.0004223453540750675,0.01442636151022988,-0.029788016938486008,0.10566114153548431,0.0429075154277373,0.002185126756420568,0.004046455706107901,0.03009706782142982,0.10281121648986584,0.06942818035970628,9.392345491888422e-05,0.003370508917929686,0.006952530194297273,0.009542809764782336,-0.050737156206786885,0.00181110574903932,0.005670037383563909,0.01869410439778179,0.05992892527032438,-0.03476214129761547,0.00012359025002120264,0.001790541316856694,0.042772747555095435,0.0894086488921102,-0.027000235556718512,0.00019393133745343878,0.004385051822792404,-0.056183160149422734,0.23726717592437413,0.04651107101664435,5.779395658532102e-05,0.008198161823932036,-0.016265640529830084,0.05696126279534653,-0.005959789924948322,0.0027065098959081577,0.008643220012248072,-0.042313962474883796,0.21556400488048091,0.05500599271475133,9.76445534635117e-05,0.008709701746960896,0.017847006121095188,0.08065904293269723,-0.07868396424540537,0.00016046232939052427,0.013803748560052639,-0.0016215464971839118,0.010207148318413514,-0.026994135058844397,7.514043062654517e-05,0.014371237823019753,0.008012739392468594,0.038521331074073996,-0.007323137871447555,5.227898262394837e-05,0.008530419260373658,0.00622014494095111,0.011282920339152137,-0.0020537219159835756,0.0002687870722898859,0.0015095936961756888,-0.005791515669377817,0.02686253565136872,-0.013647445489448854,5.361170345541215e-05,0.012431575887801243,-0.020469448384288585,0.22645361599308395,0.009145034109686022,2.3321590477599822e-05,0.007711339636614486,-0.004733872731377497,0.013124520054500611,-0.15289346959713607,0.00012607881306240512,0.010221889632382826,0.03972363200451598,0.15722362873341575,0.10060804664384498,0.00039825304521567793,0.011981678928829429,-0.0016270596933001592,0.008109535376920779,-0.0021862654239481554,0.00011491568490856725,0.0035471851457144566,0.0023684760822871753 +2017-09-04,0.003997837351816427,0.03165892858343539,0.00033673905009386993,0.0001335412668936746,0.02548140999338284,0.0002529683125167355,0.0011521817663941495,-0.03836922672787777,5.2681199173163245e-05,0.0019636400205173842,-0.008918275300919095,0.029083266680729088,-0.031279461929808544,0.00014185181385697573,0.006897242063627346,0.02734210673397852,0.029137401734195392,-0.01783585952310188,0.0003167006893867437,0.019954164648910335,0.03113705717892628,0.07555164734205702,0.010737792487533003,0.00021564103036308081,0.0002923039946209566,0.014839431346682396,0.03659998734197554,0.03262841115296267,8.852849139975627e-05,0.0017611682183068548,0.02334106062482337,0.08220724810560999,-0.002633647557861941,8.331061326931523e-05,0.012642555902532892,-0.001959681066837378,0.015374095310147757,-0.004747929016017099,4.3711372396792435e-05,0.023775299206195425,0.007486992469566469,0.0055938680626245055,-0.027109006194979725,0.0010321432199859332,0.0004852978121927592,-0.01300708529908548,0.026834128334204607,-0.001064108627735802,0.00016949402077569913,0.004924978897700636,-0.002791417421009784,0.002402151141767678,-0.06798033593971875,0.0005680006247129358,0.006179644283704138,0.0056067825031001954,0.06165836238077907,-0.0034305876865056623,2.7098453899298193e-05,0.0011265603396293548,-0.036870958495043356,0.09736277817679628,0.05635856815123037,0.00011249740583438081,0.03004671201523298,0.004746135554085034,0.02415874960539917,0.0003291245214756693,5.530030208232125e-05,0.007193236136228676,0.002561016313475562,0.001959752508159732,-0.0631239707856022,0.002548790199484693,0.013175416081694875,0.03881104674087129,0.27309094990405824,-0.022020858591486284,0.00011694998100036,0.010861523140608703,-0.010949017655777906,0.061791576866662035,-0.0007212822479134849,0.0002743810475472794,0.0112012491252621,-0.036559884908390156,0.21199735020759222,-0.018395604004944204,4.8577520446853934e-05,0.010532578939674178,0.023460319579772154,0.1200332152112318,-0.003702645287596757,0.0003221211879215299,0.007908227077279409,0.03818355097185329,0.49367340652033437,0.006890456728971147,3.209717517290604e-05,0.005023641717662614,0.015208248748208744,0.15470368827008307,-0.034757951198884855,3.2844318019315105e-05,0.007409021640765314,0.026679567971627103,0.07045360669732056,0.030277835845870734,0.00012198272132246034,0.014774338719755612,-0.08876262312512075,0.6351032260062194,0.07988898100748658,3.2283319588086974e-05,0.002157896539169665,-0.013208677549772929,0.03930523374788242,0.001957921627025048,7.450515752104987e-05,0.0015408252011777737,-0.0069123893592105325,0.022129289425495174,-0.08274752597775008,0.00014282667294171714,0.0027230194552906404,-0.012041375631430618,0.01228143843041788,-0.04030937263639833,0.0005604055535972105,0.007702443739736757,0.01898318413759881,0.07634035242032704,-0.06684086591183633,0.0001046648629223916,0.012328122174776883,-0.06827127721072548,0.22775813100487588,0.05359363539457662,0.001923903621045424,0.010672918178206434,-0.003328801707765329,0.03189612971126724,-0.011879663244418767,2.6836886663089672e-05,0.004855479690634244,0.05913269825671209,0.15697634970737925,0.04079574514990315,0.001231585991493658,0.016067745859584242,-0.005265479569824897,0.03383973222286448,-0.06715335601810854,0.00010361834645247615,0.009917301234160713,-0.003133857642458124,0.004352324828097241,-0.0026123795315682215,0.0001699430271840534,0.006096963618712458,-0.03812133788043648,0.053162822036829406,0.028237746995801033,0.0004115892481372909,0.0050366848723130495,0.028402406413948866,0.10133576558387884,0.023662619190453545,0.0021724146645538235,0.0031693689741147508,-0.0027681301482396455,0.010167272555195965,-0.012076834603205827,8.735191087202578e-05,0.008140460103953298,0.006728818781491974,0.008547212229809288,0.0024773389524143452,0.001957003201924559,0.01586723533669327,0.012136342787368479,0.03639517455501589,-0.0010988450815898668,0.00013211741396749476,0.000537577004641442,-0.010533743716454453,0.02748085665802804,-0.009258152739376455,0.0001553863470812229,0.00836046494220732,-0.03794013246719615,0.1780322731814017,0.03178172912234296,5.201325475424112e-05,0.02329998228579788,0.031311493034784886,0.08734691815157418,0.029365805250979714,0.0033976156483276655,0.01697866040630729,0.007127391564891563,0.032010981420298096,-0.015813643926125755,0.00011075725919210327,0.007006062463505026,0.01692690708224857,0.09386929734510051,-0.00010325245441762155,0.00013077201861833712,0.0023355952262338487,0.01788112645718801,0.09054219915747125,0.013818935370177964,9.340981985831158e-05,0.010395940403371225,-0.011351792424858948,0.04837417810479867,-0.022130572766942497,5.8979112996413705e-05,0.012275016393918642,0.058075061483937034,0.09232660387867762,0.048439330728635696,0.0003066847714590062,0.04551158287878682,0.0010953979964132903,0.004188521879074876,-0.023812225251727867,6.503176329018539e-05,0.003497071810616331,0.005421087453613815,0.05798120624781092,0.0009619415153273912,2.412295199953318e-05,0.0006400209562100131,0.014236082165404495,0.04329006602433978,0.03658035620830672,0.00011495058936457234,0.0021656308789550194,-0.01260253465682976,0.051192392065079875,0.009782901692132865,0.00038804353122662603,0.00921657419438146,-0.01779942047062587,0.08166847773565603,-0.04874622414344017,0.00012483121505553813,0.026566317342731554,0.002379580937370511 +2017-09-05,-0.0024570022409095087,0.015111585254704964,-0.03180143057048015,0.00017194205415426854,0.00016316971716626334,0.0049024352575429255,0.017175220704793912,-0.004666332583654892,6.848888044369476e-05,0.01180891631186429,0.062256541935279415,0.2238564675028165,0.17597601341190888,0.00012865081808777345,0.018769185970586893,0.008404367947442874,0.009969162518279081,0.010867208701937619,0.00028452094214188417,0.00785409912129738,-0.007934966446999207,0.01993617879350182,-0.04947207035352107,0.0002082576421577711,0.005273386657858656,-0.004808919094230111,0.012926458616729305,0.0049712439132705444,8.122966275947578e-05,0.00894323366888335,-0.021791206281715134,0.08186686164712102,-0.026628360265494564,7.810214921771566e-05,0.0013069653100714368,-0.041689490513443624,0.34888614374366483,0.0507865344863929,4.097712463229846e-05,0.0032856153780386026,0.016464824331355363,0.01525500938340886,0.026939085507082784,0.000832318233844086,0.021874752062924028,0.030795952408283728,0.06566306951940186,0.03725312145549524,0.0001639964116779121,0.010568969616588868,0.008266570140695538,0.005589287419559637,0.00845244757880319,0.0007229250442292609,0.003238038564512204,-0.023288344142556434,0.3249927968517985,0.12390468732963748,2.1354414301045293e-05,0.004801275465106487,0.0373272605174276,0.09790385750358048,-0.018929840523823144,0.00011326020723497907,0.013865147619429929,-0.012292704378337039,0.06149632808583686,0.01918853936288694,5.626781758910636e-05,0.005712089401487059,-0.020165816202091028,0.01956465749615543,-0.0027831838795980067,0.0020103261767576994,0.016471567623169408,0.02597592377070229,0.1758142508705204,-0.05194756754635431,0.00012158193035493435,0.003039518128942916,-0.04468185821546514,0.26754562685137656,0.015135952250676066,0.00025860778909893257,0.014732455411733212,-0.034862262344443784,0.20491007658763793,-0.010480739694508405,4.792401628310183e-05,0.014372295250391133,-0.06486357029624576,0.3474156422787376,0.11682701408653946,0.00030770764672398117,0.00016464814752882324,-0.038731311333295465,0.521522710056408,0.048223638700475274,3.081904717921382e-05,0.023581566023479304,0.018645896023724212,0.20373989903011117,0.017194426149974393,3.057657808278958e-05,0.010083915808373511,0.003864607065770031,0.00932224920068683,-0.02310182333827098,0.00013353877597676783,0.002997153518684041,-0.01783007743981717,0.1062523422644255,-0.006890806438692905,3.876208173033308e-05,0.006127283488355263,0.04214982505725291,0.14911372394178896,0.21799330391445274,6.26694008115506e-05,0.010623732074047775,-0.011548765521060465,0.0403523488661284,0.04317542275390116,0.00013086253826304596,0.0006151352162571649,0.0059381285893818974,0.00546134750497915,-0.009557009786756353,0.0006214774109387526,0.009495678287933898,-0.007030919380056015,0.023772359991865458,0.0018643667530189854,0.00012448752394647662,0.010722126355721392,-0.006263641728497675,0.021113415748550912,-0.0011678879482120415,0.0019040904895660333,0.0011544411161855434,0.007660582160799373,0.09148659137674048,-8.253702062693526e-05,2.1532106698323408e-05,0.023373483548872774,-0.009803732556968417,0.026135993553499798,-0.07406611527513804,0.0012263761917051948,0.02895780583476453,-0.0003382158132836459,0.0028326439104134826,-0.019011589202114744,7.95110647646202e-05,0.012739301179765947,0.006162255297606207,0.009096854659384592,-0.07496312126084202,0.00015987988127740444,0.0019847757452039613,0.03708985774704702,0.04708855632309848,0.0521522041100734,0.00045210957595279285,0.003117381761825406,0.03362323258480804,0.12186572558429062,0.03716664863481513,0.002138494941764702,0.007242010002783109,0.02078564906901242,0.06828104698578484,0.029126597966844824,9.766833616848846e-05,0.011403019942776005,-0.06597360831393517,0.07947822889376044,0.014241801052411638,0.002063475177313826,0.018605346184582552,0.03569656730565078,0.10596103763947813,-0.017346345393520476,0.00013347388112098631,0.0188575088046427,0.03234838181253379,0.09462998627460383,-0.07670618654903986,0.00013857476778561707,0.02303026057584499,0.014903965491559482,0.06963208915562062,0.004335713311482479,5.224038103288585e-05,0.005806422255393528,0.01865725742800712,0.05151846847563692,-0.0295026758286617,0.003432439711080544,0.012440892553727812,4.2227355218803896e-05,0.00019870991666136683,-0.005100978907242071,0.0001057097172205317,0.010527480455276367,0.019873171078727506,0.11669614813759638,-0.01123414496484593,0.00012350127305388789,0.004940241296465088,0.027618864005991013,0.15820901312724578,0.02130311404048043,8.257019092845412e-05,0.001408846406122944,-0.012132602110252794,0.05638752553896011,-0.008222310361913406,5.407771257897361e-05,0.0087945232541658,0.02485084420010003,0.04615281496405728,0.006431834273162547,0.000262526014785959,0.0008447278592222818,-0.0247586129428604,0.1003886336103461,0.06329296474505096,6.132762456366312e-05,0.0015128297916298574,-0.013358069484640493,0.12204501313989287,-0.044730118156328165,2.8239366195765133e-05,0.006787424347365777,0.023985181673210582,0.07436703611473727,0.08171684910217511,0.00011273830572167453,0.0035339756259600693,0.018372446860876326,0.07715963103671643,0.015396261248929349,0.0003753226971403915,0.004710980672125356,-0.015502110965032928,0.06327431125091885,-0.003992477891979383,0.00014032505165375298,0.009545384336867075,0.0025062136518132884 +2017-09-06,0.0069129644256252475,0.048019420046975014,-0.0005389049858422503,0.00015224182987802059,0.006559407258310156,0.010957055007508066,0.03568272124592685,-0.006938009668954973,7.367945440541545e-05,0.015112073218864503,0.011439810431547182,0.03501310658421483,0.010234507398968399,0.00015114207717625017,0.0003493130299211942,-0.004148279790599025,0.004729004296582271,-0.011754110919551645,0.00029605076554174644,0.006776695093232474,0.010251891334606947,0.027326151605437304,-0.06749454174680836,0.00019630135303390082,0.004319625502257544,-0.005106892713304416,0.013273818670727699,-0.010295717339334836,8.400547530834657e-05,0.0033264663111227596,-0.04338116762725714,0.1591520237779292,-0.06662071735505218,7.997954457632663e-05,0.00470060610054826,-0.01957171903546324,0.14063580173368312,0.005671258968573052,4.772343481005489e-05,0.000547375673410636,0.015662410280985938,0.013538017679395416,-0.08689889067770129,0.0008921714181667787,0.0052497385624549605,0.04111944807783876,0.10460474301043986,0.05606015886931872,0.00013745412776300668,0.03069972598000935,0.01777377356461452,0.013801312550546884,-0.03241356259304489,0.0006294824262228068,0.0025690025739825866,-0.013420599722630874,0.16120762598907576,0.03480262793079359,2.4808992651521728e-05,0.007094417024755137,-0.03344697560478364,0.10250252042055111,-0.013037735072322242,9.69333778571479e-05,0.00017460493038683254,0.005321209412278155,0.030158311519254126,-0.017162396411172075,4.966668179807516e-05,0.0008621691495928869,-0.03953653089175479,0.03222628382385414,0.05744476061288211,0.0023928270226531473,0.006924553447117208,0.026092725724870123,0.15186221557157403,-0.02545436642412911,0.0001413910192779589,0.02048712396896324,-0.04145182872877147,0.2190767365686162,0.016398002918687253,0.000292991933706618,0.025620532702040826,-0.02381830992409399,0.14306948062567137,0.00883931502724226,4.6894822614677584e-05,0.010836622805181786,-0.0335314077949605,0.19718416549011447,-0.007074847956762646,0.0002802635108215005,0.004690711136313457,0.03249175328786532,0.4605129382100863,0.007694737599691044,2.9279357465395658e-05,0.015018851018410037,0.006615408322520686,0.06936016344147737,0.0007257971445461072,3.186605170760724e-05,0.005728810867081021,-0.011043917986309338,0.03361811868833405,0.0049731681167961795,0.00010582116112626431,0.0002813557309592899,-0.01744596701324565,0.1362252915009882,-0.0003112437454724427,2.958214606891919e-05,0.043997963095067844,-0.0014246308355407218,0.003928870880077818,-0.010438540178460218,8.03918395276735e-05,0.019829395533796448,0.0019179438414488933,0.007284882240699917,-0.018776686559733757,0.00012038210867509856,0.0016017234950379045,0.018048617397996063,0.020450061982695705,0.00045734252443366545,0.0005044578346849888,0.0022302102085163373,-0.017125513103634457,0.06297227207097764,0.04056384085142816,0.00011446698353905373,0.014016431704159272,0.010476217523016206,0.038832132681513934,0.0006869501312322095,0.0017315396434333052,0.004676420278956845,0.012038011677593802,0.12861675694594324,-0.0192021961842639,2.406796664020327e-05,0.023740036356385254,0.028316402507634453,0.09284027443410112,0.004205391543740223,0.000997178557592944,0.0027782754458477,0.03244145069049872,0.23463985670102988,0.02934123122341515,9.207126813388751e-05,0.0014843475264265037,0.01576072529082653,0.024484475864433832,0.029727609601375736,0.00015192553489052542,0.010238745467106233,0.032772107507185975,0.0411935872130759,0.03464787412664245,0.0004566449633892293,0.001014389948637125,-0.017487458838185303,0.07163090901109745,0.012875612993218193,0.0018922415910312097,0.0038636768129874997,-0.034104074958059435,0.157524934340144,0.04038474535146465,6.946200858190243e-05,0.013187260430523054,0.013532478847629033,0.018048878875705388,-0.013971504508267282,0.0018638215046606517,0.005010406360654905,-0.008041667799406753,0.030080817037045827,0.0034762184422762327,0.00010591867440757236,0.01067921254017138,0.04533203197111755,0.11699373056028387,0.025836403307771906,0.00015707351879702919,0.005113072116471589,-0.01949085795534647,0.07113519110531974,-0.07889978794975376,6.68744739697663e-05,0.0035223803673411045,-0.0758024469965269,0.22190486989029826,0.10689572649854881,0.0032376839329414124,0.010313993159253276,-0.008325803296671699,0.034665394000061786,-0.018416899825266824,0.00011947322202898851,0.005342617935973822,-0.015190325653841465,0.07835388243561585,0.025310544768310874,0.00014059418165788778,0.01059351288988406,0.0050007218849929536,0.029187140767456904,-0.009185812286437094,8.103821156302329e-05,0.0012670264134909052,-0.001864356568693954,0.008947285510185251,-0.1265450621577467,5.237030173326992e-05,0.00971058925393446,0.07509285238551101,0.13915830976832913,0.05860466121659548,0.0002630987896489252,0.03445067574223877,0.0006066173776567012,0.002304808786191121,-0.032122680794005466,6.544768996371374e-05,0.0034973141319066614,-0.006588706825321627,0.06735405133820475,6.412203079302895e-06,2.5238744388465257e-05,0.006961880088189391,-0.010741751222215478,0.04162491565617209,-0.018765516110209723,9.020501601965356e-05,0.004796030646910938,-0.0011684479765342135,0.0049841517301113455,-0.03163989655334959,0.0003695269324863881,0.013736355131595532,-0.0032503441521954195,0.016033890617186464,-0.004661209814263464,0.00011610802205476065,0.00036728166191378367,-0.0006708294126734289 +2017-09-07,0.0305467127424072,0.23489478529402455,0.011213852861525282,0.00013752374465832734,0.017252127294309923,0.007077706973457312,0.022758330347025443,0.006149804924640835,7.46212823081598e-05,0.002988155505972954,-0.01142697774381768,0.03607070373995537,-0.006075432667948056,0.00014654600058381823,0.0007474818075886834,0.02470950515639287,0.023545759160220735,0.040966426153610555,0.0003541760637280221,0.0023287672032699007,-0.0036794723167689965,0.00821671245710286,-0.1248464858464602,0.0002343069781169592,0.008024428592340909,-0.006162788937389171,0.016164675096111764,-0.011655107241086128,8.324478850336584e-05,0.0016498617027815227,-0.06022297448221763,0.21095456080075778,0.06936390999877418,8.376510515491476e-05,0.005586644349151636,-0.0036837993121254186,0.031222990102628467,-0.001970260809495793,4.045946032412313e-05,0.013030961724841235,0.004680433414817499,0.004458160632582011,-0.013515827684966186,0.0008096086606396421,0.007449739742363678,0.036995586413537875,0.06515618991815883,0.0235111470315629,0.00019854370482162343,0.0007779830565350578,-0.00037619199069845383,0.0003137880990138473,-0.0007025321194415588,0.0005859997558579837,0.010431387612344462,0.00423533966035227,0.05380643634485983,0.0005339463136278206,2.3457234271599078e-05,0.0065428094548659,0.008546958935839958,0.024523607714710367,0.0003301823079090752,0.00010353287994042923,0.011220999566856727,0.017567841381266325,0.10396270405909051,-0.04919062309554695,4.75666595015818e-05,0.004755544130515764,-0.003026882464641703,0.0028829769795716167,-0.006335201173383435,0.002047751984111583,0.0331352849478846,-0.014225826912804591,0.10706719934698582,-0.002914505678678489,0.00010933851860367799,0.03300640839160123,-0.03328826412496232,0.18491032725997694,0.008612971197490781,0.0002787649793698929,0.01775759808370901,-0.02333681055852169,0.13139030862912088,-0.006180482912952239,5.0030993144204856e-05,0.01046493543129821,-0.005306757982270575,0.029376744993118698,-0.032267574945978914,0.0002977230201748712,0.0011373227306834743,0.009131349797732755,0.09521264265662428,-0.019653820053308943,3.979885628165481e-05,0.00884525106459141,-0.011023464025686353,0.11676371196978833,0.0036609957389057567,3.154219448942313e-05,0.008735321732065631,0.03836186128780006,0.09428129478729443,0.04701715252007063,0.00013106806513375172,0.00045164797993816935,-0.003595465210655963,0.02870892317427776,-0.00030313260709730484,2.8928809652926008e-05,0.009457626529995013,-0.009475091246682643,0.027669345868428164,-0.01750033445592992,7.592099499835982e-05,0.0010925080249801857,0.017141716453040235,0.06568913147342138,0.10045408712997068,0.00011931893898704036,0.003391142619234684,0.010459345500989849,0.00982123321378957,-0.0016680141500550066,0.0006087150601191665,0.048699124177498755,-0.006840053362836684,0.02541585297205762,0.0022824246237552323,0.00011327675762012132,0.0031249713457118565,0.04358418171646078,0.13040886782099725,-0.06529318956462189,0.0021450674205108914,0.00014387834686115856,0.052843697666021615,0.47095256943254027,0.032601650207253544,2.8853481538235474e-05,0.007166096398176605,0.036590735532293646,0.11280384701082484,0.011427667956703804,0.001060519109508188,0.00402812816165554,-0.051592106741371366,0.44485660211158823,0.14108024373082143,7.723050335516625e-05,0.002568031368872275,0.017014637135590895,0.026186692840227208,-0.05756202508965515,0.00015335128647043798,0.0009623607364425552,0.030326146227537702,0.03633185103217074,-0.005263107480642059,0.00047910821080105083,0.002411149542936751,-0.003013260049780587,0.013424121569407975,-0.11147781454804503,0.0017398070179956537,0.023324362881685604,0.005431791608223526,0.019498581704261858,0.0005535995853375538,8.937796198906718e-05,0.0014773442408809539,0.029869242909058413,0.0429365139817877,-0.12168296266773371,0.001729317058144985,0.017894986067832564,-0.027905546177741086,0.08731335177152014,-0.03739635815924654,0.00012662687917182217,0.002797048958131608,0.002248388776059417,0.005459155241713159,-0.007963602281746666,0.00016695765654098542,0.00013280567120940755,0.008048626352060405,0.02883927077478237,0.001509038901575264,6.81163575695839e-05,0.007408580165509429,-0.026912731197769473,0.0800743576724793,0.002747754527541795,0.003185534904380702,0.008501223327810628,0.002943871577685052,0.014756149023756347,-0.003004043911243897,9.923991845261858e-05,0.005600153126652628,-0.017444978992087454,0.08120028480290135,-0.05359299470403318,0.00015580223475300897,0.008176283462007146,0.018354759240369962,0.10518816180453464,-0.04605838371123051,8.253354990086474e-05,0.002980671576922625,0.000567291800626921,0.002616576206421561,-0.003779592484220209,5.4490464942014923e-05,0.022753687353188654,0.04931007494382906,0.09250862179112213,-0.019821841026550307,0.0002598859767038151,0.0066318553125009425,-0.00641339082409723,0.02747393315533349,0.0029059448041614607,5.804719585956734e-05,0.016250625708724067,-0.06120397223600916,0.6397377893069341,0.11433776042314138,2.468362214735724e-05,0.006909507895277844,-0.012824333250815606,0.04800291028489478,-0.11274304314385378,9.338479962870636e-05,0.0024872979052937604,0.020379527973477318,0.06959513870870301,0.02307217630535408,0.00046157596561225697,0.005857519895000202,0.013001180673760783,0.0626850010429605,-0.12492372659389517,0.00011879302790468465,0.009326318524082682,0.0026063345868738296 +2017-09-08,0.005373707634789045,0.032832773170012375,-0.030466533236096605,0.00017308245709957403,0.00470442237843817,-0.007576561643527674,0.023181027644004624,-0.05640968887789983,7.842418294692484e-05,0.011642832334159145,-0.0052128543881322705,0.016673873721359887,-0.011313937170395338,0.00014462264173912642,0.007629893985052571,0.027864004037420623,0.029734983647562042,0.03378349054938509,0.0003162595704163416,0.011634437922046787,-0.04198715371052999,0.08802967042747462,0.18008228025838677,0.0002495658351505129,0.0038711930072386344,-0.006160945331597673,0.020469115629257333,0.004405671383062193,6.571961576779492e-05,0.0001946717678444651,0.036134369654823646,0.13136058073372553,0.026471398027966407,8.071333243535038e-05,0.02201379375913937,0.009418131724266116,0.07145200026597565,0.009634269347174628,4.5201097899470665e-05,0.010313768246323076,0.0006251251511289095,0.0004863856688921249,-0.02371278708680521,0.0009911308380611491,0.011343744217526592,-0.00045020910305341386,0.0010736395335128953,-0.006197930904439149,0.0001466282541844598,0.017056289060072994,-0.009524631954995194,0.006390692168136481,-0.08985532267699911,0.0007284917914577545,0.0014011070805909432,-0.002589991938015965,0.039679451945404884,-0.043040629985216926,1.9451609245184146e-05,0.00017670569606622558,0.0008659035672816206,0.002023537837609166,-0.00370460705424887,0.00012711863978517182,0.023275896603706964,-0.008648905569901538,0.05598952425113505,0.01044410264766189,4.348266929436929e-05,0.013488177991843585,0.00482974977348302,0.004687156256853662,-0.003077520606530398,0.0020097321101041096,0.014731497031837843,0.04227738239822537,0.23829605780418392,-0.23572999076664242,0.00014599680109848102,0.002887422607839929,-0.08195112450608676,0.5013649685027392,0.05819313535527663,0.0002531099182533205,0.0010935679579296205,0.02037952942923375,0.11896213351331238,0.002154491143112255,4.825544927069528e-05,0.008550091492293264,-0.01852496562030017,0.11193751837267625,0.005551849578993986,0.0002727523767135594,0.021256680033847536,0.025297173954746326,0.34148731847016384,0.0010240606428907003,3.0741684290060694e-05,0.007212890085764579,-0.01278315716547321,0.11868813829961719,-0.0005286828466674608,3.598425534431447e-05,0.021496504907381083,-0.03208283585835682,0.08116494030382214,0.05351076136633192,0.0001273289130176679,0.021419788550937194,-0.012930183445656128,0.09689414011248873,-0.003417760428253789,3.082474904909759e-05,0.003292122033760266,0.04013782629058679,0.11038503149009535,0.13622011366605183,8.061596286642059e-05,0.017984940449412304,0.0004179688870362234,0.0016550732770160062,-0.0038811188706796887,0.00011547163729321488,0.0028032725433470174,0.009272780099749377,0.007762411027441009,-0.007165350823565904,0.0006827927276274134,0.011575403389648084,-0.04776706510986055,0.17165274955700158,0.19090090756690078,0.00011712882941648328,0.001995655899613345,-0.01401399321203951,0.045543959828666464,-0.010779472335034632,0.001974923555263865,0.01893041627185712,-0.04242644239595909,0.44233327984976273,0.010523229900353141,2.466432280948075e-05,0.018230475479496605,0.02656121785740664,0.09051384329490081,0.001977336652194178,0.0009594100157069153,0.011871066935803762,-0.014301977796421584,0.11252513869488368,-0.06063579664317826,8.463932394828499e-05,0.0040798516625861325,-0.01642033016512636,0.02620639440993024,0.027869994502307333,0.0001478835946742244,0.006016346772197839,-0.04629314453505467,0.05643711281646753,0.06108659067483259,0.0004708209805990814,0.01205133517604276,-0.005956619496727265,0.02535426012460178,0.00022324785948395217,0.0018209551870450897,0.010110722130333238,0.04909572154048723,0.17193879635544934,0.035210907942176184,9.161363924122045e-05,0.000305953916351034,0.02315019054941076,0.03287812200553439,0.002527423112753237,0.0017503494366808362,0.02635808618010548,0.04460938143766026,0.13094971567832048,0.04756874932673387,0.00013497013366110434,0.004841262844411226,-0.027211287510886275,0.06964633073726352,-0.03579508334719769,0.00015838397058422798,0.009747332803818922,0.029847554061772478,0.12856388968379898,0.027510794652193863,5.666353554900144e-05,0.007917675025387842,0.06059092292959004,0.20705399685617512,0.0638364362334737,0.0027735883689302644,0.018543070866243568,0.006932170008245245,0.04200793358056381,-0.002114667282033749,8.208776988212904e-05,0.007066262894261004,0.003705656678335514,0.021846209060575494,-0.0007507592002264672,0.00012301267972936931,0.009071181950399554,-0.044631662118348375,0.26082496658232057,0.12677925980780977,8.093616063423654e-05,0.013141079287163055,0.01702963964309234,0.06655577406285271,-0.022543258906576435,6.430831261211342e-05,0.006045375667625923,0.0724178741437421,0.13303595542562957,-0.0009180003194803316,0.00026540318655924233,0.009066398469069325,0.01620706177231748,0.06812773577980664,0.006587532016788035,5.9155442568574126e-05,0.002621721104007828,0.024040170880294323,0.25050198286783015,0.011311345046262997,2.476040065891413e-05,0.004168474462037342,0.006046933756625647,0.019288848587938754,0.008266901747883046,0.00010958165910568016,0.007777264927869306,-0.010819636545672346,0.038550405338649285,0.014939563987449441,0.0004423965120742459,0.001686572411002168,0.03783358317444891,0.20531688827012812,0.07027506784270796,0.00010554182440815505,0.0043656786003797785,0.002728646097926886 +2017-09-11,-0.009228270242009302,0.05964984634813174,-0.012963300930930718,0.0001636053715889763,0.007739289311497883,0.008286537197995771,0.028507528272569686,-0.013769916931500521,6.974676149459197e-05,0.003492908187798554,0.012065595396804647,0.0472392077826249,-0.00016460878826846602,0.00011815262002374712,0.03199208921296789,0.009294544875527166,0.009971805622683764,0.004511682011601135,0.0003145735334306044,0.004028384422939812,0.04257548255095426,0.08247630081431902,0.03745906175685567,0.00027010223467326274,0.007690716686559269,0.004272553611995979,0.015589795300417658,-0.11059654862624843,5.984031183034292e-05,0.005263052033600925,0.028866808241186925,0.10317123530983861,-0.004939470685722358,8.209751125700076e-05,0.009049759394809644,0.03568517519172081,0.27919563303151274,0.03639934832286858,4.383064146181135e-05,0.014698684351229825,-0.005877000943955007,0.005187117179111494,0.0077294084905656195,0.0008737244481426981,0.005936088517340049,-0.012985131964237652,0.02698545318829581,-0.01282302340628885,0.0001682590908888795,0.0197461253922049,0.0023198187467819526,0.0020402632893347845,-0.005397845482201712,0.000555766284259514,0.0019454985766782311,-0.002359427421542362,0.029615744863718388,0.0038625020286210663,2.3741423329754516e-05,0.0030412726750279465,-0.06104689666950011,0.19573756997493158,0.10214835935904296,9.264893615617928e-05,0.0032318856357705953,-0.003543090891642842,0.018713427779310104,-0.00022266935082830024,5.329552766488735e-05,0.006977452713290844,-0.027731666378310392,0.02403120244583138,0.01353928504675166,0.0022507301951022697,0.011587726407286923,0.00036735308092858415,0.0022653263024295265,-0.20185346382170358,0.0001334458360033951,0.017671067201201048,-0.034654277605169474,0.16915298629511047,-0.16966378393738976,0.0003172381529281819,0.03973255110521163,0.028602661259573902,0.16942510299656208,0.009913079823775726,4.7554283271814445e-05,0.01933300588432412,0.011122245725220149,0.0553679011449035,-0.00012087042827483397,0.0003310710699648326,0.0021623875462086955,0.050820946580882854,0.7139472828620991,-0.11800809642759491,2.95397513982641e-05,0.026536962081135835,-0.0058326335370650255,0.0640103146199675,-0.0019292325170192249,3.044363020107353e-05,0.004691273044250046,0.005705520128462367,0.017920174688553444,-0.005447221237825819,0.00010255946784774528,0.004020834874583262,0.0029203754394218203,0.019927756090906353,-0.07629708974967378,3.385109054719587e-05,0.026975453490304634,-0.013537930637937588,0.0376593811026867,0.014736528156395985,7.969966362360676e-05,0.008331280996712695,0.0006189302189472195,0.002444582591194171,-0.11261252654887975,0.000115767210394135,0.005959162847663793,0.010091815102187368,0.009585990500201617,-0.08254947658187521,0.0006017385734150239,0.02514390752955198,0.017990674460141406,0.05312146068354077,0.021939248675093694,0.0001425487606579939,0.01756336281960824,-0.04208741578801733,0.11604949022165574,0.020222602302188763,0.0023277063860592338,0.03422089100593263,-0.006429586653860415,0.06045299383117481,0.0007271534704223392,2.7349376864746287e-05,0.0021829857895368423,-0.01685259200752885,0.05258782827997384,0.011200939738692716,0.0010477381087281405,0.011385921821686597,-0.017809327645120863,0.11973592700715063,0.0054186933567095166,9.904867864203141e-05,0.00020406672065577955,0.016629087408483602,0.021840484244192417,0.003472903793900126,0.00017970143251020448,0.006318974130772924,0.021615382787248814,0.032406395364595386,0.01350793399189086,0.0003828565826114178,0.009265059176366301,-0.012207262334759368,0.04507115408681594,-0.023141763311601768,0.002099277930677667,0.0058419049329465,0.0015762338983471478,0.005298300683501107,-0.00852288394527586,9.54496702338322e-05,0.008619355892845538,0.02064286347337442,0.02797798066235985,-0.006795917047620611,0.0018341327532432224,0.026661514557834668,-0.029799966383043143,0.09325405797461706,0.02746527823561777,0.00012660885211722948,0.013926555035638881,-0.015421569023701082,0.033930933056395475,0.0032364836206490066,0.00018424390753096363,0.024656136843599956,-0.017782480781821805,0.08398107672755181,0.01401996726559164,5.168027721724811e-05,0.008037799645371636,-0.01722700863593202,0.04756797773225712,-0.016909577736600102,0.0034325212996675915,0.01336766921160234,-0.0068891803823264266,0.03945674080540837,0.004448060934100458,8.685341875972014e-05,0.015287585076121425,0.0030240814847563393,0.01657260512277041,-0.13730364672627235,0.00013233157792770435,0.007270984456935012,-0.02335919821692936,0.10317692630263615,0.010997275385670573,0.00010708386670913314,0.015109482091356862,0.06291284226655759,0.2634833290153547,0.031495499742559926,6.001137244113593e-05,0.0065527458225022135,-0.0068025446682791636,0.011415667147169973,-0.04362136626613126,0.00029053569624298934,0.023719811699675075,0.008139027672426873,0.032558758460980566,-0.012222222108014626,6.21611535216839e-05,0.004596208697454328,0.04389808449332375,0.5293356654365162,0.05770336902777344,2.1396645867218373e-05,0.01872861820922944,0.03016263275660005,0.08973900566549885,0.14095630751639412,0.00011748893250026182,0.002924599772233267,-0.01829752333362171,0.065037246490322,0.03045185157131355,0.00044346375956593836,0.010429792370688265,0.004682775817842644,0.023148898450516327,0.007768082042050394,0.0001158630170313436,0.009351790674796011,0.0016977907654568826 +2017-09-12,0.025920090114117052,0.2024028568573487,-0.10270162186947174,0.0001354273725861664,0.0004589707227431151,0.028912507964151093,0.09902280110898469,-0.061120519225642794,7.005854035602655e-05,0.006489749792399505,0.04939058115367475,0.16637921154330196,0.0920349933842023,0.0001373226826462315,0.002274704590852268,-0.013425465991796018,0.012672032939373041,0.004636448342991967,0.00035756164939172757,0.003434827255459909,-0.022785431148430537,0.06209291887772944,0.036157848802621684,0.0001920051808315296,0.0023312054804863307,0.015314255957517231,0.04027710863681166,0.05039290525612735,8.302031079853777e-05,0.010175811754204477,0.033242922504969,0.13262044194181827,0.03095513509421794,7.354930641054662e-05,0.0198722648725959,-0.01133936626112873,0.08437372317232951,-0.06927673131445454,4.608718518255399e-05,0.0127811606029876,-0.004561680162526785,0.004002029659312677,-0.17875773530938163,0.0008790008916783403,0.0007095847417462977,-0.014875160291056197,0.03618933246547126,-0.02863570785895563,0.00014372852487365092,0.04351719876040047,-0.01359585539780488,0.009517136290843026,0.0326631082196847,0.0006982719659352878,0.0016439470983714891,-0.00332190052211518,0.047225393484045614,-0.09615730409008996,2.0962053600389166e-05,0.014385993839523279,-0.03356518473713118,0.10696947692525395,-0.03563328645149117,9.321379882810284e-05,0.021167137844761333,0.008221242970919546,0.04796025778297262,0.006549377428490121,4.82522748724164e-05,0.00034134966640377934,0.014908413224749496,0.01350224376822808,-0.05323445994988794,0.0021535177215152683,0.031710001152919574,-0.02100907588178127,0.1478732959487108,0.03682237149055797,0.00011691474976737384,0.0056843708452343775,-0.018565399902566046,0.0993358863381336,-0.04609072975124124,0.0002894052259791473,0.020296810861614608,-0.014041357281568155,0.07461728827222605,0.004691452045806813,5.300667761923359e-05,0.003223499651469424,0.012610876551848187,0.062273034678683475,-0.003026612641371217,0.00033375828230283104,0.014243037247325625,-0.0347608467051653,0.5454383124463358,0.061791622884803055,2.644691001299666e-05,0.017759600638679755,-0.02266294292559117,0.24482041969145252,0.022220904899148616,3.092789598047564e-05,0.013771422753528929,-0.041570488214498665,0.11550806797499705,0.057328912126080794,0.00011592992664049939,0.014311333232987042,-0.036435290823433254,0.26166452916116084,-0.03548170646882105,3.216397842483165e-05,0.015045437341332181,0.0021467663397699184,0.0060734152301116845,-0.01852030795319088,7.836627164580926e-05,0.002685089421759914,-0.013871939711485102,0.05266188545497786,0.06179257746339146,0.00012044516867447394,0.004436887004024232,0.013456310291830953,0.013156408298659529,-0.02911658655680634,0.0005846072694972402,0.007233437541002148,-0.012292928004618361,0.03937633964628655,-0.02136212375767499,0.00013140321913025652,0.006007710135593265,0.013651810801303883,0.05100790724842259,-0.013991728000045016,0.0017177973555705872,0.002525288912291374,-0.012352020580552103,0.13044830110108369,0.0019577612608094636,2.4349036150274072e-05,0.010205267320218371,-0.01005512940037541,0.0262942731155764,-0.021585361126349078,0.0012502525935504966,0.004088785620602057,0.006894358133593996,0.05457462017401546,0.009974003937360422,8.412571354878366e-05,0.006511916016869782,0.03203077826805688,0.044845272823935314,0.08924906153590036,0.00016857617943565265,0.01633567813888637,0.015490900726700573,0.02287880260574412,-0.038883193885099254,0.00038863981728573467,0.03097958435094664,0.034416008932743956,0.15909573488691314,0.04596876928130233,0.0016766882076260248,0.009929103750490598,0.00662985952012514,0.025095908594679195,-0.008008178421149748,8.476016096107447e-05,0.004853132987441649,-0.06894685109434737,0.11141599675094682,0.09075157315685042,0.0015383107605815472,0.013395584298939398,0.03207609924811828,0.09996455252089632,0.023695647136772986,0.00012713102801368913,0.002414373916963147,-0.0005866251081941277,0.002006422222224101,-0.0011823797480977705,0.00011852192435412299,0.011936851270185012,0.006751839837999655,0.028883532791988083,-0.029358320261425586,5.7053953701199784e-05,0.012137807427416927,-0.04543585743020513,0.14778800247764115,0.022495281682923612,0.00291391988326373,0.006853726848572354,0.0129034350404593,0.0683930070480986,-0.0481264998601339,9.384998588604654e-05,0.027107489171653953,0.010882344846348615,0.06260759447652331,0.0009634469254425911,0.00012605388952473986,0.0016296963914007585,0.04092604591722871,0.24451619862283597,0.07401642101509981,7.916639164288942e-05,0.003377506071085826,0.05144299815996104,0.17151216123494153,-0.014355581908864611,7.538392520653383e-05,0.002666566010113088,0.023560609993536385,0.04648597914788188,0.0008550674571757184,0.0002471120601142745,0.07357686570920999,-0.027767756981720588,0.11317799382687822,0.04217085149546193,6.100889853788428e-05,0.0074220898771979625,-0.009359704789476456,0.08227579621309686,-0.00047724297998556504,2.9350894589940413e-05,0.007572881037921262,-0.011232859727800242,0.03209765210394289,0.009323737615159117,0.00012232804486259834,0.0008784767284104916,-0.004295683721099631,0.016419758318392652,0.003182958304641551,0.0004123761203496619,0.004103029532462414,-0.0209123189116097,0.10779556459967525,-0.06284512250992988,0.00011111510415226745,0.017892398806997344,-0.0013519037508090827 +2017-09-13,0.010224138210912857,0.05889879527561447,-0.028604280243903834,0.00018357218780519494,0.0011370042133800674,-0.0027114811059492064,0.010435537156916159,-0.05671798858509784,6.23450963372085e-05,0.00659655973074011,-0.016234930656733666,0.06088958242222306,-0.004430723899462213,0.0001233401995691823,0.009659283695644411,-0.00945617932366504,0.010874358472617541,-0.003611001994785451,0.00029348094602369383,0.005205792319508039,0.002236433754441589,0.005757670254026211,-0.015155613650340679,0.00020323898711428303,9.659137061855498e-05,0.03260452284674581,0.09552599528683346,0.19214091379913656,7.452517720931937e-05,0.005366652881400923,-0.003921592718411805,0.012630120636486764,-0.0063733767456471725,9.110555203433815e-05,0.004485651049220444,0.0008348862247466847,0.007229942308440387,-0.03184218092133577,3.9599625439971425e-05,0.0012671514022718129,-0.013673964504122484,0.009333368982784874,-0.01927303391033485,0.0011297979942163558,0.00039260535310290225,0.05506464969528058,0.1223212535553179,0.0684795403790241,0.0001574101903184032,0.011369566020476885,0.002759832682690798,0.0021140247616490367,0.0015624159913543005,0.000638112190867463,0.0022746494912346026,-0.0016450577799199057,0.01723115185238091,-0.0008639429878250619,2.845048249923756e-05,0.00036697141463487245,0.011602816356211696,0.03745772515832972,-0.029361532713168714,9.201805676696133e-05,0.007323021975715486,0.0192472406983524,0.10060032805057761,0.03372960060034494,5.385560374261535e-05,0.0067865730445995165,0.012547891215691824,0.012098406107934827,0.005604957618326839,0.0020228587532488502,0.009707982953829504,-0.07404391744247037,0.5027669207295417,0.2396639464788215,0.00012119223644676863,0.010754314817310887,0.012443494624791948,0.0688874083539154,-0.08366450906886566,0.0002797117756323749,0.0012557590841159765,0.05501747927809485,0.2819701664071818,0.03226150278372672,5.496148823214362e-05,0.009304619082355692,-0.07143343909130116,0.3906903039652635,0.1058651702615026,0.00030133927120241266,0.03069999891372116,0.058632270465501,0.8365999752552358,0.03298313548499746,2.9083662477760077e-05,0.028932859024552168,0.011909771912989666,0.13011465334707986,0.0012629544712971202,3.058151133164488e-05,0.020735795363179342,-0.020306430357098264,0.06445969316828419,-0.04483383147312395,0.00010147711411149656,0.002867431369110814,0.06149370488896507,0.5124257119669235,0.08554735980106304,2.771992955180804e-05,0.027909652737587415,-0.008166884767862249,0.0254953809792623,-0.012434379564444991,7.101863227913107e-05,0.015193089458877755,0.027388229159682042,0.12041016998765514,0.23741538307244783,0.00010400384110160957,0.005336649725392877,0.006643980903083846,0.005761132029884362,-0.009599038705059647,0.0006591679889581345,0.001051421646972903,-0.01786254689977189,0.07259991465776486,0.016784243146256247,0.00010356029549729234,0.012888638693667544,-0.0036172754369364415,0.012208552722476528,-0.004567097845518802,0.00190167619894719,0.01628057431329316,-0.0004886820112969376,0.004610699190159913,-0.020058253211591225,2.7254722148018535e-05,0.02561158014011087,-0.02634738547948171,0.08343316292445228,0.033178761528031064,0.001032452517102482,0.018017713914816283,-0.03881473713744327,0.2581780500702524,0.05519446877766511,0.00010011588164170121,0.0025581410981506385,-0.018827507987871247,0.026932555688455605,0.04268931227669101,0.00016499115406039342,0.015410234780830308,-0.03132725074881248,0.04983529580624626,0.02294086866099307,0.00036081879901973216,0.005632651784118091,-0.004563880156172675,0.014903196183680958,0.0017115944679348643,0.00237358699802935,0.0008635931424594324,-0.03014117885219685,0.1169605362287783,-0.11278317160971978,8.26820533896943e-05,0.008556418571722544,-0.0038082969847643756,0.005195289806157995,-0.009198749125136641,0.0018222091459479204,0.010709212341860562,0.0037226463976610395,0.012829298098854754,-0.0674481123523355,0.00011496481002649559,0.0024054662733825356,0.031830210226034696,0.0954737797984967,0.023430500625633045,0.00013514991176080367,0.011327626402303169,0.020899762160152498,0.08124432380018669,0.01165284209363925,6.278591684426898e-05,0.012591853691514525,-0.001430608642034826,0.004151110059905541,0.000704569664569713,0.003266439765414953,0.0069037962943736,-0.01419981439878643,0.06787945866980861,0.015533382048724167,0.00010406025082745955,0.0005852825951219021,-0.005772647925232175,0.03061415500311867,0.0028017508072455412,0.00013674566836397483,0.0025309975859549717,-0.02224422208969245,0.1254370799579026,0.016527731800979734,8.387643930868925e-05,0.02777174429435997,-0.03097523506893423,0.15651872557546484,-0.01482619737770081,4.973884574820829e-05,0.016953767009972472,0.031065838945090952,0.06705967665494236,-0.050216472943133916,0.00022586608565439227,0.029921406645493885,0.005613703434658765,0.022516192470495997,0.00023367629801895317,6.199674509827229e-05,0.0035227896431266467,0.04481594050966272,0.4060711555552815,-0.0492497801874494,2.8474864038676435e-05,0.003518630495193591,-0.019706168426561102,0.05473031470219941,0.016993710625231025,0.00012585869070591777,0.00424763628702529,-0.012138127012766137,0.05065050156294823,-0.03465084126960068,0.00037774254172706623,0.004289524269901229,-0.005615661886616773,0.027840620871230463,-0.1555001295381782,0.00011552974938801583,0.005592449655156963,-0.00019832099248347516 +2017-09-14,0.035869280852098236,0.23108578626678725,0.058186422617615655,0.00016414816038659065,0.00012142874778046367,0.00919128837641506,0.03160194051244169,-0.0845191703156884,6.978678119678167e-05,0.008305418673517152,-0.022918148209759206,0.07669110992624902,0.007837737708555005,0.00013823935694925188,0.0153752674753474,-0.025271919710472764,0.03316431197190941,0.03700591458953833,0.0002571787597553123,0.009513025408531717,-0.02545833657109323,0.05809679874822598,0.0393717837280295,0.00022928497346755104,0.003515192929141709,-0.011759225290774325,0.03727137448298994,-0.00014264430155913951,6.888902560007836e-05,0.008349867133982027,0.025581127050417384,0.10532800261036859,-0.09155287079875006,7.126325929494324e-05,0.010046201610603248,-0.04437456529663398,0.37020307148589215,0.053428982945251495,4.1104815997193736e-05,0.02753992017085295,-0.007655536273556943,0.005944603385591671,0.006540258898711724,0.000993110379055183,0.00047596638776582507,-0.005430280711856852,0.011676952508693892,-0.001790180954465538,0.00016261277194901325,0.011770253090557164,0.0003289539447801118,0.00020531455745724785,-0.05683071074528892,0.0007831405535111221,0.007228062982914308,-0.019934656173518223,0.2873165223242193,0.0490951888636017,2.0676210159263527e-05,0.002022116693730628,0.03991297812325911,0.11331722754267014,0.027560203356632798,0.00010463313349702484,0.018137019730099697,-0.01009483142429586,0.05398825569632008,0.0011404384231087784,5.263342033857892e-05,0.0001457542510796389,5.107858779452718e-05,4.71373878761597e-05,-9.641215208282497e-05,0.002113471236886516,0.0016719572928820547,0.02360532079904879,0.1307233618873401,0.00567109059334213,0.00014859657734921265,0.006429493663821727,-0.05079945509762377,0.2547937152250239,-0.025765425940065725,0.0003087298161688349,0.014897460331629093,-0.017421457230480844,0.10838635517987293,-0.04626224420340086,4.5276288960954704e-05,0.005854217066908809,-0.010162649357720193,0.046138181881895626,-0.03634410804198659,0.0003630222732932683,0.002562857452590034,0.028015550927090207,0.34421146843574235,0.001689959924797924,3.377567697953467e-05,0.01174313088204841,-0.02604078058192022,0.2610478761339602,0.02414662412282468,3.332848274180601e-05,0.002861262226895085,-0.01825443977865015,0.05368392416763216,0.0018692866160275228,0.0001095335114898587,0.005431492000015578,-0.0043545115394450695,0.03477572278750927,-0.006785355519049747,2.8923820430454887e-05,0.01575859474236748,-0.017765166353419345,0.05521460691575216,0.022320391575566065,7.133335921613355e-05,0.008106892915992068,-0.01255627152533209,0.05605214610100495,0.005016123563083099,0.00010242761228255577,0.002806718914182247,-0.024171790502008392,0.02294294547077143,0.021986290535379264,0.0006021923165724448,0.01743206512685782,0.0022245690134067146,0.007944465935980676,-0.07876811237094974,0.00011786020316184931,0.0007546869599790781,-0.023461755539956494,0.07191565900547878,-0.08574527563301947,0.0020939013433813455,0.011117870687224453,0.019367868204440655,0.18577972687709654,-0.05413367205057543,2.680807910564803e-05,0.01957951109530369,-0.019707722781433963,0.05536747749824542,0.02659186386043863,0.0011637319999844714,0.03204883579304892,0.03777462536005379,0.3388055713738979,0.10104392801022737,7.424637691004576e-05,0.00045479613337221577,0.002170027540652311,0.0034222256096308407,-0.009741662995475643,0.00014965870916291768,0.0007389096982005463,0.029659573591739267,0.04872452227446383,0.028952856376534143,0.0003493986535840538,0.017728002192472888,-0.005291500801586922,0.024944441616280472,-0.0037131007927698936,0.001644202941217005,0.002954613129642336,-0.018948620539393578,0.07623984319963825,0.020068333254914444,7.974178899609615e-05,0.014829000061155237,0.0699504858507778,0.10573544469823837,0.0610780528463301,0.0016445509423489433,0.008125709337992762,0.02122924980877807,0.06420376670806419,0.0057002630517122115,0.0001310056951633651,0.00962942232555209,0.010437790066181474,0.027821659058580597,-0.00011604764836510636,0.00015208483451884747,0.01621264976698895,0.008326428439234349,0.029749857347626404,-0.02722411214012253,6.831055145839514e-05,0.021321993230432677,0.046877455584054706,0.1572336531981312,0.04645186674921861,0.002825768528417144,0.003833219393640906,-0.05702401581276732,0.30564778585189706,0.10056259733463119,9.280622660186246e-05,0.0017900949105452727,0.012844377587271347,0.08381309054152679,0.004407558731454264,0.00011113785058882641,0.011429405087320177,-0.0028086145436781503,0.014458950981653444,-0.01673945909544087,9.187641774399234e-05,0.02247457357096993,-0.008157002139881523,0.03191980293863287,-0.027402220273029607,6.422701963089906e-05,0.013277470305728203,0.023835679594080082,0.04155364338576225,-0.0022181902672955946,0.0002796712507156681,0.0009211037861984639,-0.01739423876799713,0.06975964835627015,0.012522995594509425,6.200340220117382e-05,0.008655868454148254,-0.006239307504334572,0.06138726772170472,-0.004186514182718206,2.6223422488612525e-05,0.010396766508190861,-0.019762845889664066,0.06167650509025468,0.029011810362845607,0.00011200533058516502,0.00013225586390969081,0.01922911885393686,0.0778225329036439,-0.058686693893029857,0.0003894771585675424,0.010447643917861814,0.08048688805548745,0.302913117662278,0.3498529173410217,0.00015218745387580155,0.014650559294072748,0.0008139260007965817 +2017-09-15,0.004536288813649257,0.031246780670270292,-0.044261876845205,0.00015352602376422675,0.010897180981565264,-0.005324112605995655,0.02034659977609741,-0.06802438995570409,6.2786448274226e-05,0.025634710375278796,-0.04122677959494123,0.17325877954790314,0.023101992002184515,0.00011007314242450642,0.007847566162740972,-0.0004964870711202108,0.0005674240731360983,-0.016975616218091995,0.00029530312512052154,0.0007683689496430788,-0.03239430574767575,0.05527539665911662,-0.005186830227144416,0.000306644077661816,0.007832614129191682,0.00948592167839555,0.027706608876372985,0.0015504583546485894,7.475545692735588e-05,0.0004737851394727515,0.032625788312881376,0.1150929919254977,-0.006217245619563524,8.317675808482677e-05,0.020353663603200227,0.007929280550689527,0.07142547437049566,-0.035065149700459056,3.8069683411878464e-05,0.014419653290560533,0.0057261511579625515,0.004451841096693615,0.0031950348853551948,0.0009919001149611732,0.0005754607207323469,0.029671241872824827,0.08155044385305614,-0.04625833593446432,0.00012722465478671213,0.0012725473583679802,-0.013788255528187666,0.009648954046330444,0.029836256859816803,0.000698479144817278,0.007863718723450465,-0.00046780548545211363,0.006832839923850071,-0.004274529876143407,2.0402662850768023e-05,0.00136578232388988,-0.024392524926542546,0.05796558977020968,-0.002746193732631688,0.00012500792211412454,0.01230339553897328,0.0028247676111325336,0.0150176982438601,-0.004744360250878463,5.294697705733025e-05,0.002545070321888777,-0.020886816357709143,0.018646752363036638,0.009323410766838944,0.00218470105124906,0.005720146272619504,-0.022628701410395132,0.15611631060218997,0.009183025502501156,0.00011927885467353002,0.010187116905251235,-0.002011135920921398,0.012167853555895933,0.006238911458133631,0.0002559385356077782,0.013120416144297946,0.04047824777415695,0.24326167794666337,0.026471809217577316,4.6871511893417166e-05,0.0031412787623422657,-0.027210491530865383,0.15082196192483188,-0.036934351117461496,0.0002973436091081946,0.009594214687142702,0.012774073522141337,0.19742762000491104,-0.0040503520179714205,2.6850460135479627e-05,0.002502710518666394,0.022532874496745865,0.24479883923912427,0.033670773141480585,3.075310369841072e-05,0.0005426323161187964,0.016851559086828737,0.05527365923289815,-0.06443302548241883,9.820749342102831e-05,0.024514325301269475,0.08381992063655769,0.5251872285133516,0.013357702296214202,3.6865952993467106e-05,0.028672405600069416,0.014578073368971588,0.040032729369129286,0.016389222283043552,8.073508619859413e-05,0.009260387253521258,0.003186601347737436,0.01239556096149825,0.001489930411643336,0.00011754661995436293,0.0011747193649528618,-0.041203929304394496,0.03527791456063863,0.04103861850648085,0.0006675922566132786,0.011147575335892789,0.02662544584063605,0.10193242610742277,0.05355937936932293,0.00010994374767475415,0.007821666230915427,0.00797221082050752,0.033807635539193984,0.00024935730667910075,0.0015135025314589674,0.037099969836872276,0.08556406318694115,0.8139505423164689,0.10942432567890667,2.7031838131207953e-05,0.024693642110218947,0.07101158004537973,0.21950070572848412,0.04308683328637555,0.0010577049209623034,0.01165960790602709,-0.03550213294727359,0.24258176894193717,0.019182791670744458,9.74589954392973e-05,0.006998361691106156,-0.028420742142123322,0.03972472388930966,0.04854655271930852,0.00016885732824274452,0.010176911486673122,0.008235620112111344,0.013306995227318348,0.002397964929141417,0.0003552386559374302,0.034135747998100034,-0.009034203109462464,0.03970368668685768,-0.0019503315983821125,0.0017636376289925759,0.0035390072774596384,0.0016003723907152265,0.005638703848134821,-0.008743473065879623,9.106094130456236e-05,0.006444427899557089,0.014437352480738587,0.01914524095742781,-0.0016878653564477457,0.0018745797222124118,0.003739546283349296,-0.03020094304431142,0.11847816860205897,0.03978941913128706,0.0001009946127832258,0.006364542935654743,-0.04063474035827445,0.11804766253554584,0.04251545939336778,0.00013954056373813092,0.0033392658875537,-3.102459828809405e-06,1.537082658361016e-05,-0.0013170608366565022,4.926322837355685e-05,0.01812366160001837,-0.002535787505736219,0.007463819623176203,-0.002153291904790651,0.003220103124344491,0.01131528656465846,-0.029074579060479114,0.1502908738859188,-0.07773277629283133,9.623241765561332e-05,0.02391315971996448,0.0016119874985302874,0.007599744011537882,-0.035324564872829034,0.00015382378377040901,0.004462656350316724,-0.03635055059027586,0.2221546932020878,0.04259492228965489,7.739344871268537e-05,0.002880253973499642,-0.023966636863945585,0.1235999549843115,-0.13567039737020994,4.873446220882178e-05,0.0006714646676592045,-0.017716306719669086,0.038174814119189014,-0.016596190698220225,0.00022626931055697182,0.007596299540218437,0.031163813127368822,0.13417938991228184,0.06290573815040061,5.775361247676622e-05,0.01373519627589365,-0.017360820270866106,0.17588671688453392,-0.032551057868505436,2.5466454408274036e-05,0.0035656432465683476,0.009895414006109587,0.03280735275202935,0.015811757125059504,0.00010543183013725623,0.017856381754262594,-0.0010670740524979978,0.004503465347794975,-0.03050446379115991,0.0003734871850358769,0.005395874100477806,-0.0259694671728239,0.14673369793037705,0.01647211388102728,0.00010136895571274142,0.005524541568107748,-0.00027226355844941233 +2017-09-18,-0.028075066938264653,0.1647859747611684,0.05139602352311819,0.0001801719334287037,0.0008984251653609442,-0.018595389355378186,0.0753550490977027,-0.010241384182774831,5.9211143124719154e-05,0.009484663946054085,0.0024495175696111417,0.00952714060282557,-0.0061902543052835685,0.00011893650946296367,0.021542683015987378,-0.018273277164891223,0.018718150355768993,-0.014033806792537597,0.00032947416528302214,0.008393479080359374,-0.004802944623091828,0.009912050035730865,-0.017945400533180184,0.00025353730285754945,0.007937171083326887,0.007924541149255329,0.01943666897464497,-0.0020054192537035448,8.902234423702426e-05,0.008573225827398575,-0.002313392100963529,0.008951813429832454,-0.0022585365109593415,7.582773459527655e-05,0.0012966781406523985,-0.021620990511565706,0.1847241989014634,-0.10756830097096211,4.0137508344115316e-05,0.0010490280078158686,0.02602272756795113,0.0243580928542697,0.09166478263119296,0.0008238617120970698,0.0033659064877217346,0.013834380504945957,0.02746960731942586,-0.03253410265259298,0.00017610397206094383,0.016598463543686177,-0.006691579757749347,0.004402743702060241,-0.002385529625479606,0.0007428987241205959,0.015675613617618833,-0.002055788987623956,0.034057700467208234,-0.022311124860532827,1.798812940311046e-05,0.010362449807904319,-0.028383357943407506,0.07694248843150948,-0.015282724353527805,0.00010958436214571725,0.004491258222120644,-0.0007867778410895023,0.004404531392131979,-0.056815827280641634,5.028219507158061e-05,0.0025763450246376004,0.0003090731874890375,0.00024618963646154564,-0.0013072791136616063,0.0024485813461657805,0.04188587365785747,-0.0420823298610616,0.2570640123332764,0.051741148716731133,0.00013471333945931104,0.029117340841477872,0.012829433108258716,0.07635351304099416,-0.0038889759795919677,0.00026018764772118804,0.006175974647343948,-0.012395824892732171,0.06921092119797984,-0.031949525692302104,5.045006834119087e-05,0.009609063196900504,0.0034921305664342176,0.01734180631812198,-0.06975321632774772,0.0003318814271906878,0.02585718098836539,-0.046417279383875895,0.6900508837879313,-0.052081448042704925,2.791443209435065e-05,0.018573900226043542,-0.010167011644425997,0.10416938944290632,-0.01408919239129303,3.260880707571485e-05,0.004565897353993388,-0.018126652465726905,0.05377165094438718,-0.0682705197530872,0.00010858928994630976,0.001658979185325141,-0.051594230294814886,0.29687000745447417,0.030733665201105653,4.014460513790402e-05,0.03939549083764057,0.0009549661617375423,0.002932348743732643,-0.015199490425131378,7.220208612532596e-05,0.01919893352006616,0.0034772582048389652,0.013082586118866162,-0.03278164923401857,0.00012153236069369539,0.006624769828937971,0.001015780437460776,0.0010297741828009124,-0.0031077583236960842,0.0005638108205299519,0.015382074344767209,0.0118943220804186,0.043751988326593196,0.0061573121926725,0.00011442684112604543,0.0007562560781717707,0.04059739514770516,0.13513675433751307,0.043222451743848755,0.0019281635092085391,0.033039588601109976,0.025255132476925034,0.2461307717090247,-0.05407558576095344,2.638553672616399e-05,0.003614184056028172,0.0052819648397107784,0.014791587660099774,0.000861851836975987,0.0011674868136266991,0.006906099939397675,0.0060868785512908285,0.044951824726499216,-0.05731141041393505,9.017225989428429e-05,0.00651414039454722,-0.013735329903361728,0.020642319876815394,-0.012915600622051637,0.00015704567395342405,0.002464996720312051,0.047445524027328524,0.06173456769353776,0.0338763157883194,0.0004411342217581886,0.0005723547485764853,-0.03586395672816053,0.14075391695675565,-0.005784688034433202,0.0019749133865831704,0.005051594786504736,-0.030857077700683237,0.11463324531854435,0.0207325905536995,8.63643635418207e-05,0.006467273653991213,0.02006069101915166,0.031162688413269354,-0.01101118095725573,0.0016002512065858715,0.006341014807053853,-0.017502655580130328,0.05606615637198576,0.019488136419783704,0.00012368561683994542,0.011709110901576659,0.05651635500293027,0.1303177373262451,0.08019358947344955,0.00017580490576730613,0.008386189471734298,-0.04748236417098222,0.17221653161155553,0.0727926007996566,6.729323723861113e-05,0.004155761175200435,-0.0340492671925178,0.10278119041722851,0.0016950534366199142,0.003139873735432629,0.00624161811567535,-0.10751552361789474,0.5191370880594954,0.24670935402837738,0.00010302193158155921,0.010642859937780335,0.017865575392109524,0.12027153258293276,0.009033798514614663,0.00010772461417233414,0.01948757962050203,0.017174415661827487,0.08131356823607595,0.006307123131629702,9.990049704245047e-05,0.007509774206136607,-0.003355386345236648,0.013868192437241699,-0.0008796058499994812,6.080930899763188e-05,0.025341664477887788,0.015303387710284628,0.028349483352782413,9.851180288771223e-05,0.00026319148025315297,0.01922273457820838,-0.000992477017356794,0.004325842437166967,-0.11914423115100986,5.7051115143370803e-05,0.007464423090915935,-0.0007144105134432594,0.008862015768228563,-0.048006415718856076,2.0799198713314604e-05,0.004960457254361533,-0.003587109111044265,0.012383728393533609,-0.01146965117434512,0.00010125165561958194,0.0027063810211301557,-0.023807681186987478,0.09987745041055947,0.06622024040322562,0.0003757315132302304,0.0007226978669663078,0.06174100350473252,0.3182348784668077,0.10843219932966612,0.00011112139977527999,0.021714051413803694,-0.0052685291271551485 +2017-09-19,-0.03140384410945096,0.21267986116118426,0.0685195739254565,0.000156150373948053,0.004783889095733993,0.015106318599862875,0.05672081762331705,-0.08529582080455797,6.39038000045256e-05,0.017917094994513723,-0.042018975804936104,0.12438583031187182,0.030154650171327763,0.00015626861296978107,0.014200883533892091,-0.005553784523458923,0.0059756542178884525,-0.0253666523660945,0.0003136688727689753,0.01060113450224293,-0.014273464983265633,0.03100766680343141,0.00855264372327763,0.00024085634830606017,0.013182517050705682,-0.004585341784112603,0.0119024391233063,-0.0709563586728577,8.411674983789133e-05,0.008997771009287213,-0.011497443875333626,0.038032737675031326,-0.005328786041594114,8.870203131919651e-05,0.0011365942447316094,-0.007343744474842782,0.06239747111887155,-0.15881333442580262,4.035981649910345e-05,0.0007965655001443367,-0.0028875721308077034,0.00288594824060998,-0.0015100338882452018,0.0007715944416713667,0.009649614037859038,-0.010969407728772638,0.028046280350455623,0.004464853615387775,0.0001367633703339422,0.0004719230970720279,-0.005301226831539108,0.004328139248614737,-0.040320288672540276,0.0005986865767474744,0.004988797575840137,0.013350006465696361,0.19195499482378445,0.028374789465239806,2.0725491959895146e-05,0.004856931286025456,0.020521840645151182,0.05130733359663148,-0.04272439623409412,0.000118819550068111,0.0028922231213820444,-0.003965020391268614,0.02480592406325975,-0.04639191180137872,4.4993712980885466e-05,0.011873199009229172,0.0443075091781719,0.04142596453924386,-0.016756886104458475,0.002086064246169729,0.01214352760088155,-0.04957592475811016,0.26530735656050497,0.06517681506611,0.00015377071697453824,0.0023177519299054502,-0.010510144713282887,0.06092292181289265,-0.006844384898169226,0.0002671383284681664,0.02608794465924723,0.0006956242226464563,0.0042329809994494745,0.0002356396929992346,4.629022942886687e-05,0.005347658948796787,0.020998810214163312,0.1166403286624128,0.021623941039824714,0.00029671039463336196,0.009337176095045939,-0.02277111431773114,0.2736898973588981,0.011495683914884744,3.4526753813818604e-05,0.0009003485905110615,-0.0023717615620382493,0.022981736359610642,-0.07153125666486465,3.44802096048736e-05,0.011542096000035735,-0.008823751108541038,0.0257628386802857,-0.0003786959995459082,0.0001103271224795043,0.022128288274320392,-0.015998127429511778,0.10610981857557936,0.0014996660233024283,3.4826189261367715e-05,0.012830361892544469,-0.01827989767691457,0.05009558480414385,0.0010258019439260328,8.09005905585211e-05,0.008296537820866895,-0.0011535240262636334,0.004501335927028068,-0.003863643351570206,0.00011717469061354575,0.004107846582773473,-0.023014474213702268,0.018859259997800318,0.0030578479644798855,0.0006975124616476089,0.0211453389304756,-0.006264727989160301,0.02419256606158692,-0.0006281062108376094,0.00010899492888723594,0.0016967375846414943,-0.005667065957158856,0.023469271300741487,-0.10147043885574557,0.0015498077796515753,0.0036369345127146417,0.036728688015200954,0.39638164068067955,-0.04163136838916819,2.3827258668592846e-05,0.00457984289948698,-0.027236260491194788,0.08414665008252603,-0.029065133654325125,0.0010582345041296388,0.03574197284781433,-0.019628263546586297,0.14156943390225019,-0.0017133742107234436,9.232897800886535e-05,0.0004303133008547778,0.0198728473794961,0.026228819600101597,0.032545564194810465,0.0001788243838960078,0.007089808264199751,0.034462587335826037,0.04946433932014558,0.01598250158238747,0.0003999075291829915,0.0015759283814236334,0.013844617118943444,0.0571720463433579,-0.03065501114059814,0.0018769277428544917,0.02522146401930428,0.0033816298327215212,0.014832637593823392,0.001923057362439321,7.31472580120219e-05,0.00413382742317041,-0.04283164045050626,0.06200135783065895,0.00490328971488842,0.0017172783681504284,0.007553144365400984,0.01943646426134867,0.07213858936478384,-0.03714979273813894,0.00010674945217959705,0.007251527170380411,-0.008939045739826137,0.0227043356631234,-0.011636369576529358,0.0001596036197598173,0.002429087640298069,0.0011698999339816074,0.00468836824174753,-0.0096634297915587,6.090331414436925e-05,0.012230903333650693,0.06208304856533508,0.18555307784034866,0.01233425883263579,0.0031711948684625016,0.016486507330584207,-0.021078512222225707,0.10975697353903757,0.007547335592411032,9.553189694197412e-05,0.01990818051697397,-0.008227456493422642,0.04871407331741736,0.018136374082496735,0.00012248190526572243,0.005267275172190906,0.017750013139621226,0.11071708285301952,-0.015158530941331122,7.582854853108115e-05,0.004845773521117058,-0.0005615786576820482,0.002921955384562199,-0.019080145556280508,4.830414606747797e-05,0.004360357877475302,-0.04779315017157857,0.09366614847616812,0.0425641952230554,0.00024877823853346106,0.023072200863393462,-0.03985261044318678,0.15443529943753911,0.1562761033471361,6.416889716895889e-05,0.01787703731478526,-0.0044365326901430096,0.03751099907054868,-0.001493947082483311,3.0515208385146912e-05,0.009531871684822862,-0.01125107309341642,0.032930996099942204,-0.012033136201270748,0.00011942576809879419,0.0035401400752205995,-0.023412281679281735,0.10212242675813986,0.061714878496982394,0.0003613687429608409,0.006143127355101084,0.018847517432174124,0.09810040563088074,-0.016822776064396392,0.00011004115662162006,0.011958780247746825,-0.00439355195052755 +2017-09-20,0.03853739469746081,0.26592780792638143,0.07541921619118906,0.000153251657839383,0.022181603737318235,-0.015957978496302663,0.046228693935788434,0.012368406080588505,8.28279243713168e-05,0.013515010026967526,-0.01425814224347517,0.04581415574507289,-0.010980283805785454,0.00014396617285416185,0.008911093128454615,0.004849425543040733,0.005948660427892546,-0.0016877854840199333,0.0002751306495686064,0.006953379209243182,-0.028295149675729513,0.07211737565219666,0.028650078806660158,0.00020529097319853205,0.004742626295391225,-0.01457313908946819,0.03629446298507602,0.051435228628918264,8.767170948322615e-05,0.009515460909916427,-0.031185098969693497,0.10522737353135178,0.009997778869436483,8.695774144919391e-05,0.017589935985503912,0.011279779964371768,0.12053343448350769,0.023229125751061418,3.209162515955514e-05,0.0035824463926007423,-0.014142475622756915,0.010652578306694936,-0.05236216818131505,0.0010238008601462147,0.005063682351348362,-0.006571890102813406,0.01609207360084805,0.0019856653625226744,0.00014280393297875734,0.00347275977942391,0.01295285577977693,0.011240063759903681,-0.008011650617082325,0.0005632758264678911,0.0024538752618195924,0.010578277616912624,0.13101632299928806,0.01997961551816281,2.406092632024308e-05,0.013125043937605075,0.026016559710392406,0.08855925389780282,0.024331978564811826,8.727039790629077e-05,0.040772066495129364,-0.024715873239678773,0.12982479563187582,-0.0018445493758776916,5.3589552429115905e-05,0.001968126437962814,-0.022485704799663227,0.01892030608845279,0.02298049049906246,0.0023179353527864343,0.00659652092376509,0.03484794328164119,0.2296488162873071,0.011906449142427049,0.0001248719942988651,0.04214397581671375,0.00591835614500942,0.03140602994657452,0.015156894074752333,0.00029180739077174753,0.003132491833643368,0.002640463343864882,0.014707217539503145,-0.05102962677863696,5.057205277922289e-05,0.013258446429477816,-0.0067964439729525546,0.03521951786191973,-0.019956155066640315,0.00031804248795934203,0.030753466177374702,0.03837275454105374,0.5274992654381806,-0.021837989442253056,3.0187791911543727e-05,0.0024529220855803234,-0.007203238435011617,0.07662286356652497,-0.08913411598751962,3.140878387839407e-05,0.026179159208461162,-0.01321285261042185,0.04135146035880514,-0.0075356429909985605,0.00010292680566778841,0.0009074313879636524,0.02862033778466503,0.20386783062395566,0.0144107478405176,3.2427870471692e-05,0.010241763693462554,0.03058153645226491,0.08757768391361129,0.06645013561388126,7.741822819522899e-05,0.0016241859373889419,0.005965826689255796,0.024262701594273826,-0.0007068661989902006,0.00011242944619568685,0.005199300800761408,0.051201222173243195,0.04951095960846576,-0.2424360562561242,0.0005910912701707646,0.030059321355856462,0.012048038868943463,0.04341608572182286,0.008007503978574285,0.00011680238290551373,0.0037113469090711295,0.10966790512112395,0.44734607782549973,0.24094506119887826,0.001573457759131025,0.005696974730310279,0.030118021640245757,0.25370790332926185,0.0068126268250886905,3.0526333179994565e-05,0.016926296675458412,0.025159228662772346,0.07013082488262382,-0.003718594892975191,0.0011728963774054457,0.031215990521259437,0.030318600315688653,0.2501745993013519,0.07150998423834895,8.070335288860636e-05,0.02202541231839968,-0.011943255594202371,0.01667818747589231,-0.09414826590645957,0.00016901266958232943,0.0031188054010328646,-0.03130688836523118,0.04531356668494784,-0.022867659879862928,0.0003965660861147627,0.007404505559729255,0.04974222486358015,0.20956453034650785,0.13689720570449768,0.0018397455841360595,0.019419805430374106,0.016929894614162243,0.06693029191489232,0.018098492329767495,8.115623778480597e-05,0.008851108449059734,-0.0010757793493899527,0.001590614995530667,-0.049731297680395414,0.0016812617117928298,0.010911078373377691,0.013310131368942971,0.04172902727363532,0.0021315451400267605,0.00012637469406412383,0.0004866040521057885,0.0016702888129558246,0.004806405372204663,-0.0001552756786662105,0.00014087422895744058,0.012702431053176708,0.008750373938643013,0.03847856419076548,-0.0001785483223271379,5.550366732086151e-05,0.011525906758110754,-0.002811242150854009,0.00789524161339135,-0.0004246869463135152,0.0033748221341916517,0.021964054989072494,0.02498603905402082,0.13090268463835442,-0.009276587090929263,9.494878937457764e-05,0.014817384866588712,0.017089587132120724,0.0892494086574999,0.012018200192127695,0.0001388631484583352,0.0054743611983043925,-0.0032809655382001956,0.017021621125482354,-0.004964449184657017,9.116947374302057e-05,0.000387604585290246,0.022106814456517767,0.11477506946000766,-0.03793938701846508,4.840898723270941e-05,0.005686842376887694,-0.00470878774342236,0.010379959163015281,-0.11523904409514588,0.00022117847712191415,0.013866716465945297,0.01127418077967431,0.0418593717172757,0.001408227326412376,6.697406583279543e-05,0.009639315032059267,0.008305717512510793,0.10258630350866581,-0.024985011310289983,2.0889067845597436e-05,0.010197879855980446,-0.012143848950455411,0.03694049112057639,-0.002919072080216226,0.0001149112783794164,0.009740238367224098,-0.02641679883750457,0.09728750390114334,0.06159176078609479,0.00042800722392808175,0.008335242985301548,0.010260331019265453,0.0536331371402358,-0.06600562156091054,0.00010957209554158872,0.004111815493814173,0.007752931721528805 +2017-09-21,0.0402224639975034,0.2956697618231564,0.06485154128209203,0.00014386274546511937,0.0027549979949893218,0.011166530864965761,0.03864770377246222,-0.0003403793754654144,6.932743008922794e-05,0.004408833483861457,-0.027370739433327587,0.09454032215453416,0.0033093272522400213,0.00013392654244045294,0.005215827508094746,-0.03474529112086613,0.032940435419048474,0.05477771658132715,0.0003559872762460213,0.0050495655463864125,-0.0006716021394851505,0.0018720266449411664,0.00014910193046734687,0.00018771449846574395,0.01404324686762579,0.004095016864672756,0.010528886226858625,-0.0043243664825241375,8.492195854362648e-05,0.010196883213806992,0.01348246295322475,0.049707307463687886,-0.052729271120346845,7.958639844185611e-05,0.003648035843838609,0.012272617177534941,0.10807868299564571,-0.017716460963981807,3.893998303462221e-05,0.0006821922345046478,0.01625357781316529,0.016878386642771914,0.021808646527728404,0.0007426134830343457,0.005919891447723495,0.03328490690044101,0.0836161285511355,0.00912547342830675,0.00013919357113953478,0.028525507146951148,-0.01481129586640665,0.011250141846484787,-0.013486737445145787,0.0006435161007021724,0.00483616330465935,-0.03332096688640049,0.4920030813691314,0.13978646068761305,2.018238849291125e-05,0.006472271594574814,0.030276884457045655,0.09179866301505452,0.022556546684542038,9.79773897997968e-05,0.01878359806454103,-0.010120080070832923,0.05125131701289535,0.020061057648462655,5.558284048278942e-05,0.0006766154562169366,-0.04258383235493771,0.04339932128921163,-0.008682830735958982,0.001913748125209609,0.001297272844780873,0.006740885451151617,0.04427861508616478,-0.02265010537216689,0.0001252780619010253,0.030039990724613774,0.006792591787919835,0.036752288934621104,0.01114272217894866,0.0002861932295669951,0.004258005563711599,0.02915516169414828,0.17186314127798136,0.01823083900526428,4.778522825925364e-05,0.010876419083369128,-0.04064138386897719,0.2531694776685985,-0.024222348336893827,0.00026457204210167444,0.030059583290391385,0.00120737557530884,0.016782440212994198,0.00595415096232352,2.9855029770587835e-05,0.01692342143670407,0.02543907343010026,0.29063875859315846,0.037172986722322346,2.924350796747315e-05,0.01254381754909167,-0.004518975963697552,0.012324740961010008,-0.00022560166956163375,0.00011810954243361719,0.013364706239586386,-0.05686329750263328,0.38996351710342997,0.030669192399075014,3.3682199064935875e-05,0.023127969913600097,0.0011454619585686227,0.003103010066565317,-0.02516128620776613,8.184174268959921e-05,0.00617975074663947,0.008688080620923983,0.0290747704946833,0.006712861801417675,0.0001366331694361383,0.0014273218555998347,-0.059590772763214075,0.05352869060698269,0.09169176492820054,0.0006363088428207368,0.0049497511666418805,0.008727216406599219,0.02768920452894953,0.003396540763004848,0.00013266344626561389,0.0008719313366896862,-0.046452359620675024,0.16633511067670878,0.0017218803879500337,0.0017924333787076765,0.03839071119897334,0.046729475787601026,0.44611346334640467,-0.01898290026595452,2.6935669480390598e-05,0.0012357017550686036,0.06509218435037044,0.20747399226057073,0.0583976544946048,0.001025738016076645,0.017445436519722867,0.011437392780162788,0.09945379484786401,0.008920766118749134,7.65828139438257e-05,0.0012073485388108798,0.027136251525653403,0.04129827786352719,0.06079865771427894,0.00015508268103065458,0.005865612343352931,-0.0006311762104425779,0.0009728848891320126,-0.002968250493905628,0.0003723857704446941,0.013792110834856245,0.008517463490005152,0.03590088780078466,-0.059138406164768155,0.001838888654580403,0.008629494505756424,-0.024081753493303052,0.08748064630024495,0.025849737293106217,8.832151175204554e-05,0.006687955777181797,-0.009385781921997306,0.01610129583148193,-0.001632434201278933,0.0014490615123132398,0.009368879755511015,-0.020336274370372682,0.07224660654515014,0.02162353390304597,0.00011152442074621452,0.00013814628002801056,0.013174930642042783,0.031038549178193507,-0.11708677349636314,0.0001720708486623856,0.023891718499515484,-0.01101873606288807,0.046076157306757855,-0.001894372407902654,5.836727973283294e-05,0.007103900467586318,-0.007086274611231305,0.023718609836480928,-0.004740850209743931,0.0028316971593747397,0.02839213306446515,0.013435995288529868,0.06421519822916807,0.0012439883641291681,0.00010408127076679959,0.02103044686826337,-0.007091783943876601,0.03946104055205018,-0.050235664109873554,0.00013033100597512344,0.005742205576965344,-0.038778657865263834,0.2589642665096427,0.02850283792608417,7.082745407465794e-05,0.008350255953555081,-0.02345715452874635,0.1316183450459689,0.029428152577937555,4.4792602691762464e-05,0.006535997968485097,0.03449405605042234,0.06419332744174434,-0.038449616414391596,0.0002619894306094069,0.020066655664510217,-0.0110950680140566,0.03911129297290148,-0.01743573298887087,7.054109084290008e-05,0.0023500297168055117,0.036022233173504795,0.40482411357328396,0.0326082140514087,2.295807894687831e-05,0.015245292612945582,0.0007750162463955007,0.0027508103347400744,-0.0030610237364831643,9.84825133964324e-05,0.006995454004318387,0.022270157943123137,0.08170457994160471,0.03551202583565869,0.000429640156881551,0.010265116074891754,-0.0313572481644987,0.1465747363132804,0.04187045885316083,0.0001225323090137305,0.010566685541346247,-0.00013587987048658005 +2017-09-22,-0.0038673903758291873,0.02510789702304773,-0.01443898276168828,0.00016288993772792422,0.025312556324885847,0.0008543233356711826,0.0028153229328755714,-0.10406881827027827,7.281227116218803e-05,0.020421882037817776,0.03106868775207014,0.11343671778764641,-0.0056232246056641755,0.00012669703830159852,0.00018449222083540364,-0.022043428383535145,0.02275824895723033,-0.0603882788321062,0.0003268949059813349,0.011590333585514697,-0.03592602823660454,0.08069602635397721,0.044045743039071814,0.00023294577049893023,0.013610605617139036,0.030554219001916464,0.09011145070612854,0.1285991311327211,7.403514742568117e-05,0.0023970599624137416,0.01772058969687979,0.055913863556386036,0.00803125227223693,9.299262836721519e-05,0.0223353170429087,-0.03455078446163946,0.2744084286100351,0.03559978197034525,4.3177657790149895e-05,0.0004445340226697299,-0.03457943674388014,0.030177593194106924,0.1355940537272193,0.0008836455642769412,0.006079511575232241,0.001316730624517629,0.0032952756798211185,-0.19860255739883523,0.00013972273230290126,0.02501016711558353,-0.013677454932567066,0.009424740465227862,0.024464550937310665,0.0007093494740833616,0.00558607722618798,-0.008230334739319813,0.10411404177934858,0.004422688904753203,2.3557596669975735e-05,0.003660272246810702,0.007288557523506806,0.021749015458799537,-0.012993293924995993,9.95526950624802e-05,0.016693483275193186,-0.016448383917449454,0.07178934448661008,0.03248362911992713,6.449485411589799e-05,0.0013027774456897236,-0.009133857572027627,0.007913157199463552,-0.016959111679311873,0.0022512691207181735,0.000590138589670572,0.02001427724270126,0.10529823447864559,0.0001926841656286404,0.0001564123098942675,0.01537038953661963,-0.014124381728460129,0.057770327883536136,-0.027483403819588546,0.0003785932319255592,0.0008028678268164763,-0.00665523853585045,0.0367735338729048,-0.0017036612146125291,5.0978753851348796e-05,0.01734644770489991,0.04173129635382205,0.23761149718779043,0.055127801986845665,0.00028945511778368015,0.009621251346215606,0.047690859823567154,0.6273287161792316,0.003244041639721153,3.1547882581199525e-05,0.022647428134627803,0.008825308696463623,0.11782628609093153,-0.04278805097385153,2.502473144705842e-05,0.002392816462165406,0.0039150260635785385,0.009928338419691417,0.006551915963581624,0.00012702255415774833,0.006137162492606071,0.046784832042164264,0.35415125349219817,0.0292833299845838,3.05146692862956e-05,0.008039863906982816,0.020444898399037313,0.0664621022902144,0.009715606104614024,6.820061084366121e-05,0.00824674810304956,-0.019265194341584264,0.06883066030319326,0.08370401412567564,0.00012797939541143752,0.0003617988071554633,-0.017606009673204907,0.01671640861843833,-0.05794158988323212,0.0006019958799399301,0.029644877831538,0.03252324439609241,0.13708521213484381,0.03532345158867826,9.98594715107599e-05,0.009191495411797285,0.005330689699810428,0.016626828587071305,-0.0059718621327554625,0.0020577525953939827,0.005927301862034317,-0.044606630116675414,0.381774063669449,0.05752072300396208,3.004520624517782e-05,0.017547173483163113,0.020635721039265066,0.06281118480836127,0.00043832727880541324,0.0010741227930784736,0.007630177585842804,-0.02037707521106166,0.16002107753456388,0.006425123518500552,8.479891610576495e-05,0.020489160543847633,-0.01956648954001736,0.03156421362728633,0.02477042260736281,0.00014630640103767127,0.0030281440815494954,0.006095062010909269,0.008094395027962461,-0.001818738467564312,0.0004322128224887504,0.006523834920981545,-0.018956086828138048,0.07233706038280847,0.005365650447108884,0.0020311321217405852,0.0050203137347933306,-0.008994392162285704,0.03352755622575519,-0.01980639453926029,8.607168203135695e-05,0.01737744625475548,0.021922189278499184,0.032186881237219835,-0.023797391422639872,0.001693098470642708,0.005390317533987928,0.00014419894476301685,0.0004078613506946658,-0.024876630949754466,0.00014007659155373367,0.021498614119393047,-0.0022525233386481184,0.005252588953152441,-0.03002593823191722,0.00017384262036882595,0.004016138114569521,-0.016426415321450998,0.0604352471282464,-0.026913186380285635,6.633861831839386e-05,0.024668883303899665,-0.06147004703225102,0.22676057027006563,0.04382919568444554,0.0025692955390870407,0.02008647912401904,0.010735541616734023,0.06892673427991046,-0.030875665633059178,7.747771934909258e-05,0.014589447747776003,0.022296422409633802,0.12162938282543725,-0.058948570802383866,0.00013294054807934177,0.009996519924399006,-0.021175070713672774,0.12133463677942974,0.01116091467224187,8.254462020785645e-05,0.0269298452143716,0.008274235553247283,0.0384505995662409,0.0007166059674693394,5.408441779962868e-05,0.0075747299162939475,-0.0005149862025691066,0.0009485186006922318,-0.04092545036136214,0.0002647153563402901,0.015479669388902795,0.014946536649295163,0.05951984119188449,-0.0008861192367059798,6.244435491683317e-05,0.005351326508735824,0.00808992661476056,0.09198608537654895,0.0005012345896659461,2.2691004942892487e-05,0.00793786347971743,-0.015498784981811644,0.052159380156416746,0.01866097184957222,0.0001038661887633707,0.0017968634648139724,-0.021376493808497474,0.08948046201851365,0.005198214461209942,0.00037656176978217206,0.0013883617260550814,0.03872273522249741,0.19780933774033618,0.028736556646380418,0.00011212205102713774,0.03233112421804458,0.00023973371961587975 +2017-09-25,-0.008585637696421474,0.056329477664525625,0.006803595249863342,0.00016118455242890487,0.0006467303141569642,-0.008717327380428097,0.030912869212323852,-0.036820561670582515,6.766351679726143e-05,0.015404675579077848,-0.015573047219952063,0.057866427400274416,-0.03900960814941635,0.0001244927712395066,0.01702031228182306,-0.008690109801124744,0.008771843117207355,-0.008716118320539435,0.0003343507212497496,0.008981919292664196,0.0032501156554131825,0.007401922623774512,0.0017830736606458358,0.00022974816272561496,0.013677139242271263,0.0040042713495828065,0.009967884888037442,-0.0002636837823501083,8.771365849780432e-05,2.4241656020649628e-05,-0.013038560889961864,0.04897002044400728,-0.01968760134467889,7.812485591113752e-05,0.02495143798043952,0.019024224669817454,0.18903018360419913,0.043545874963301326,3.4512341450509744e-05,0.002696028151937432,0.017517622453460616,0.015769129215532682,-0.021459455690377414,0.0008566673928713388,0.005536484953511616,-0.012142676577409143,0.030245666868513682,-0.01537083838711835,0.00014038255731830773,0.0010118274762127967,-0.006153641461552796,0.004475766101386425,-0.027100682839860675,0.0006720307791370679,0.00317737334040084,0.02216395627142361,0.2876663846479226,0.043290568639216064,2.296047978226723e-05,0.0042110792779193745,-0.01692550924219886,0.040194775890062484,-0.023235543988403436,0.00012509016650288384,0.009294870566018338,-0.002137225112079653,0.012489934401468698,-0.030494956759595928,4.816725858306493e-05,0.002016056731903591,-0.0197132235798013,0.015525280866688041,-0.03891298958789818,0.0024765160925701393,0.0091727833937173,-0.008351648564809036,0.06111003219251448,-0.001438044892412682,0.00011246355468080268,0.003289600748473693,-0.025123587596373505,0.1547971318007556,-0.11641372169279315,0.0002513199578968911,0.0011680593471046976,-0.057579645235928276,0.32151944890789713,0.020484623537181498,5.044553031168762e-05,0.01242939750709647,-0.0249254198618514,0.13417516367331375,-0.10649431219542406,0.0003061661382264732,0.006031484803686117,0.03391582215211786,0.398896195256242,0.00026867755724998107,3.5283583474871684e-05,0.006813287329564087,0.016329053603760715,0.15031727621811722,-0.10092663456316449,3.629391569781972e-05,0.0004206236138558162,-0.006804061637064769,0.018355060358455622,-0.020675433311180495,0.00011940848218628135,0.011197948966454941,0.005885594231703744,0.03621864155523893,-0.0028242585240421457,3.7536220029905965e-05,0.04611568359369008,0.02160560533098232,0.06575069323326291,-0.08006548218082606,7.285233647881711e-05,0.006001467994044791,0.017731456504327676,0.06875526447968366,0.05487078162254422,0.00011791988572875502,0.008428044505945646,0.025877401958585525,0.022326051673365762,-0.09767032800597421,0.0006624975974844245,0.01999745672828889,0.021671708448437067,0.08275894585522181,0.02082189956689034,0.00011022096482970357,0.0017197296093107942,0.01960460386012167,0.0696822001129015,-0.03597915284328766,0.0018057407191947113,0.0072700801625251036,0.0175450675362969,0.16180822156625055,0.0012889768909070945,2.788281742322502e-05,0.005854942200488763,0.0069236681424777605,0.022904312829761797,0.0014480849109586938,0.0009883033026371738,0.02772043768932168,-0.0009136549814026674,0.005148340408440247,-0.0004487293728555396,0.00011817908275963365,0.016433049709464534,-0.016647137473240557,0.02310206514868236,0.0026049395502434768,0.0001700725204802894,0.007167268594851597,-0.0016529344555090576,0.003003745240009317,-0.001538722661159891,0.00031586132355921557,0.011320306939139088,-0.0004961465106811172,0.0017281307342119588,-0.0010612282611732738,0.0022252749982023612,0.004700635453325285,-0.011286870080195596,0.03911970942632204,-0.014925568922573447,9.256957635356012e-05,0.00396931328204175,0.024397616172452667,0.033203252718404526,0.004319860154400507,0.0018266021120978242,0.02633597481414272,-0.03079732961073782,0.10215410118392779,0.019781205556861654,0.00011944646205169826,0.02147614586547807,0.00467282458287265,0.011701284028811943,-0.04038358794285232,0.0001618848968369771,0.0065592828897165145,-0.04125069924323005,0.17647942756804724,-0.018273874036116557,5.704940947172192e-05,0.0005632660008007483,-0.0032338683883120704,0.011091932171306605,-0.036455416056001194,0.0027633328117735137,0.022157952896352785,0.0326647439028242,0.15416121472190625,-0.09400173291098927,0.00010540099351904403,0.026760856694736428,0.04218301901837251,0.2266105106058243,0.13186759267163217,0.00013499522087670598,0.0056679624691551665,-0.007835094873807241,0.04016042578171337,0.000896121285524179,9.227725135712257e-05,0.0033923581142444783,0.03772738451466304,0.1718079057294684,0.04933589997754488,5.519007055823587e-05,0.006413119115001328,-0.06031695823199861,0.10951499260372775,0.11075968845554977,0.00026853150628997297,0.028305583609884073,0.02017099472967454,0.07963470125773844,0.011649111704738611,6.298531948592179e-05,0.011395244875136847,0.01681317196621669,0.17031335469840447,-0.06325465567775138,2.5470193070415024e-05,0.007651570960190732,-0.028196163538277804,0.08122105755635783,0.05667253384719791,0.00012134736362360016,0.006516078596753283,0.003824423688163009,0.013886946642047872,-0.0012672780753019974,0.00043409741894303357,0.0031480393846983748,0.03817479645938876,0.1773509068683648,0.026011526172462603,0.0001232863833572265,0.0004848017918402962,0.0012091913844522945 +2017-09-26,0.03414774976926235,0.23463149622725493,0.026185572872883776,0.00015390841444898307,0.03455113386893398,-0.009414855832926894,0.03793424268197231,-0.027224610005558973,5.955151061622911e-05,0.00677488577364727,0.011109719161378238,0.036305711088080096,0.0037485277039104336,0.0001415550403448731,0.012717414215076888,-0.0006748591018994753,0.0006791253675011171,-0.08507010509958356,0.0003353752526812592,0.008476627484377365,-0.002911308619160726,0.006742937622761502,-0.007653536986616678,0.00022591073903264846,0.016978635368324977,-0.011147905704317916,0.02828520718744948,0.02539104258014159,8.605590220585533e-05,0.010929756049308594,-0.009286843256430071,0.03134286589426249,-0.005271673340963793,8.693992601866933e-05,0.027323549663106052,-0.0009461699498500713,0.009065497457228188,0.0016535066449379497,3.57911889015844e-05,0.0016291527626208634,-0.024836316298444298,0.02261252261248796,0.06779955080392366,0.0008469991111072801,0.0015994146564844345,-0.02193892678654148,0.0584561028753544,0.019120674018957638,0.00013123431435723004,0.008535087051925933,0.010031478832420086,0.00654965934062222,-0.007590952308924891,0.0007486358272364818,0.0058679743350146165,0.011426222506353213,0.16777219065287666,0.0070080184525059255,2.0295768058696475e-05,0.0009038430475645589,0.025431715174265217,0.06987707512951734,-0.06532097709691559,0.00010811649814056106,0.004450501842021636,-0.0063082378412951815,0.03857511736766082,0.0013059633967746947,4.603229433909648e-05,0.000981330844142829,-0.044905105337263274,0.03992316793938423,0.06130846189363023,0.0021937831499067033,0.00894880953470875,0.001641789297801385,0.010794201602065474,-0.07362808614587994,0.00012516387582207962,0.009912044232676987,0.0049718411899466915,0.02756307837200688,0.019317589272143377,0.0002793172515377247,0.004004390926522536,0.026778460750994774,0.16125718179758589,0.0014651683827998127,4.6776475989527735e-05,0.018548017788754395,-0.016626716992100866,0.0827538638549957,-0.021925395084573314,0.000331134957824158,0.012893561300093757,-0.028357946463051634,0.413373196574945,0.038989803461214334,2.8468376204120745e-05,0.007912382353789528,-0.0062670845692448995,0.0616593905627872,0.0007656118637655514,3.395846386440658e-05,0.006335564288893293,0.016949050395864418,0.05477045709713493,-0.002218617065853418,9.968315185933464e-05,0.00844273072828993,0.005314700076633638,0.03181774467858971,-0.12307127741420992,3.858351098981487e-05,0.023527032511610653,-0.022412922635240275,0.06510256099138954,0.04135040863687095,7.632693115699878e-05,0.006678590764262645,-0.007864835374089852,0.03218712536830994,0.0037138566482378525,0.00011172646048913251,0.007716024625540132,-0.04885836264309315,0.03947962964587035,0.04804420581086563,0.0007073614700247541,0.005225799429085941,-0.0069244110629055914,0.026138884357986548,-0.05223215830627603,0.00011150178071779892,0.005126895604542166,-0.06511073327527017,0.2447257826845023,0.0693113518284985,0.0017076231542994134,0.005378508239862233,-0.04709780743853515,0.41523927845074526,0.05004041304696364,2.916650944872843e-05,0.012940038519480569,-0.08336499811778629,0.27191710061596597,0.16828803831139455,0.0010023479203523076,0.025210422046531945,0.029587383847122384,0.23459884702661862,0.05152905746876723,8.39858913671527e-05,0.01508099424637295,-0.030704465647529745,0.04709750890327651,0.05972640159723166,0.0001538682424481081,0.0110045017716102,0.03666427850190758,0.056570848485842644,0.03187543946095784,0.00037200978588445676,0.011839583921259566,0.01665126657765099,0.07234904684790416,-0.029882107153907503,0.0017838765680706263,0.00507077430303713,-0.022483804493013758,0.08449706348382723,0.004695724129301586,8.53726091372946e-05,0.007235168396330609,-0.0207468852067879,0.028315429968500328,-0.019877150633072542,0.0018214067220243,0.007003956483019271,-0.020591784479171753,0.07051785914668017,0.018175712100238155,0.00011569401729614667,0.0026878799449338575,0.0049944351477611264,0.014529741696894685,-0.00023424916124901806,0.00013934418848145265,0.0018082367977676692,-0.010700103096192312,0.04395684920120303,-0.008789033696264348,5.941215867543715e-05,0.01389885536131174,-0.055763207996887575,0.17062570900360338,0.029338477091798577,0.003097571495886034,0.03381382461300607,-0.027890851333246217,0.13237155237305906,0.007746609394159047,0.00010481119665012497,0.012502457689309111,0.015039644956171123,0.07915713062998773,-0.012205772567091842,0.00013778702562782576,0.012408989358524542,0.0025205382567052947,0.01565181697301363,-0.002563562463078429,7.616882068557747e-05,0.0005760441027442033,0.005372044068931686,0.023758234623003225,-0.005492031187031395,5.682936387124642e-05,0.008664817991284402,0.006441261930697196,0.012671938125296678,-0.036633334499612556,0.00024783195927858946,0.030338859849809437,-0.020884590951908873,0.0894010643155653,0.02183517104660817,5.808950294242506e-05,0.0023599796265441186,-0.01149850575179777,0.11292546101002904,0.009281686323718218,2.6271255009335324e-05,0.016584049277803846,-0.013536662140746433,0.041431888619488384,0.006318077825405229,0.00011420518551417163,0.0052921093825459165,-0.008007870830788365,0.036967334167230796,0.0032218009227612697,0.0003414498268429978,0.01507455833155039,-0.07777256347074092,0.3177661592062754,0.14431207010571423,0.00014018145560465756,0.00882959093678012,-0.01028681586054356 +2017-09-27,-0.025354796146593327,0.18881242266423934,-0.008001137546098231,0.00014200908930696063,0.01203591311099348,-0.014600706814424994,0.0447892824855682,-0.002499937363229027,7.821864741435923e-05,0.00380041263761041,-0.0478665713207722,0.1651659814282328,0.01777564656847005,0.00013406299650982583,0.0041215728683970335,-0.008461514337275718,0.010111196990338816,-0.07439414842746486,0.0002824316605068066,0.0003673960301348446,-0.060262115538954907,0.14115509583101257,0.013797013184208819,0.00022338066777317033,0.01943858268118283,-0.002111137628769584,0.0057467619863413085,-0.013945982838605092,8.021213501194915e-05,0.006687197719037493,-0.007011263587623987,0.02779061005377375,0.0017110862486928303,7.402664542658372e-05,0.023441389059053772,0.030073854705246077,0.23258740244483403,0.06666246306220773,4.4340595680075415e-05,0.012380078891757223,0.0109149274481384,0.009467915357552486,0.009068541081187672,0.0008890194717308132,0.0011567092208663147,0.009330157112442708,0.02044510216269465,-0.007466290737429669,0.0001595737893935909,0.0037024149867133714,0.012851582108128154,0.008913670764110981,-0.0005520157233841558,0.0007047326044427807,0.001029484787679905,0.006453124164848603,0.08697300850859667,0.0053856291618144675,2.2110996597479553e-05,0.00862784109124015,-0.0025320264448962923,0.007092340101700194,-0.005995001673765181,0.0001060546516374365,0.0003404076865961543,-0.015946675867704024,0.09869306567195411,-0.07357110900154294,4.548260655496951e-05,0.007122797477286062,0.009677545995062539,0.007775153756486211,-0.0008962328319749857,0.0024276117482004912,0.009546949704593391,-0.001566349409478749,0.009850304784542388,5.23922035192486e-07,0.00013085523055331974,0.012085503708178095,-0.04032165571545071,0.23155631911576058,-0.03352035340557035,0.00026964349754795706,0.018779495436127967,7.177675581233905e-05,0.00039185297212756604,-0.06620106841706958,5.159666552407192e-05,0.030753918665207765,-0.06024259181114742,0.32490885498522276,0.06341419508584746,0.00030558280144513345,0.024440731597739337,-7.24736394285467e-05,0.0007898352598776792,-0.030704980443701006,3.807796975566003e-05,0.009994658017380254,0.011473994109038856,0.13271593033232407,-0.052534283247229634,2.8885060123333628e-05,0.000526222470507714,0.045306922426737145,0.11381611715751337,0.11937523452502515,0.00012822820210081694,0.005442674896468491,0.05066021237723956,0.3820152615579324,0.03354089420703617,3.063223385066237e-05,0.04123086384955787,0.01207732837768609,0.03796881772008808,0.004639020552253406,7.052144180715364e-05,0.009661951385495436,-0.004186080656053054,0.017511737935243837,-0.005967222062417153,0.00010930170540538058,0.0016143255674643524,-0.02665528543058348,0.02632958343347448,0.005925052875075384,0.000578648605316314,0.011437739422471413,0.00038215202733459495,0.0015231379557845773,-0.029562565498006267,0.000105604624411492,0.0016204955966212884,0.0030537717989768207,0.010121951733463886,-0.011508693326206463,0.0019363840326129837,0.0073385266698028796,0.06142443460894621,0.5904729141579872,0.04224581409497233,2.6749975108162002e-05,0.021380084223958824,-0.021766641770199213,0.06366472299894804,0.01447725362101658,0.001117799332031854,0.00860881737994197,-0.001080128113843919,0.008815207103119267,-0.0011319128858960658,8.159591058721469e-05,0.0030340395974269956,0.007049315040870838,0.009492220775706026,0.004993527643171067,0.00017527681606656852,0.012904994592459106,-0.02505253042465747,0.035358920503052955,0.015764773351903502,0.0004066834642673578,0.001309454733494573,0.023114699725849938,0.093076825138837,0.018553476233539583,0.00192485064172861,0.010317381656523426,-0.0033917173060464627,0.012606683154777492,-0.008317569951880878,8.631955245777865e-05,0.0029301191698029917,0.01766702541494292,0.02605005534452883,-0.14816696975007598,0.0016859006390663553,0.004727691071744383,-0.01689930410643641,0.05714345303927017,-0.00782306359328723,0.00011717052546066122,0.02268335439997125,0.018618260883680595,0.05200623482882239,-0.02692075455008493,0.00014512561557511217,0.011650122930199307,0.01781357468281556,0.08569266780606605,-0.04201135007344817,5.073659763071007e-05,9.08786165244055e-05,-0.005578261189040694,0.016354247015468042,-0.12091435369939983,0.003232855923301312,0.02381648652938315,-0.0097737714182212,0.04760996972308067,-0.05543273614615113,0.0001021185979013785,0.0026031109423935816,-0.01970023139963604,0.11161816086376736,-0.018623665039042975,0.00012799625102654578,0.010375593318792287,0.017353545275374794,0.10767068613045502,-0.07458619872348947,7.623237166905923e-05,0.0011474703513310552,0.021149659396195855,0.09683201684892093,-0.018696708474806898,5.4894874306876734e-05,0.013290545153110914,-0.03537943921789423,0.06954304168024814,0.026111498416337735,0.000248042818137647,0.005137045324230404,-0.001420353131513436,0.005199718905429909,-0.0003626871636224803,6.792518696655533e-05,0.001288335254423675,-0.015018560588488947,0.16538027318866202,-0.04579955669779158,2.3430194370689883e-05,0.011383162052549243,0.00044699404685209933,0.0012258645767111037,-0.020290753253252244,0.00012745832535842968,0.0006074884888653783,-0.014874074737775456,0.061291999952551995,-0.017191855722655396,0.0003825199917156851,0.00881685418729775,0.007132730728153168,0.0421182415596216,-0.0009679550163354177,9.699679713464156e-05,0.011320403647119384,-0.00172962469019279 +2017-09-28,-0.020436147008132073,0.13880912174487217,-0.025254453029913068,0.00015569246534863774,0.0076464556625354535,-0.047381572379285454,0.19833617654556449,0.15455130590533261,5.732156758989715e-05,0.01739829305185636,0.003286874934650942,0.009388099123585673,-0.00032765643451486637,0.0001619581165477078,0.005284630315455731,-0.00452070865975878,0.004602702881527084,0.0003328425237537257,0.000331483133116796,0.0034931155095833475,-0.01255759637949354,0.03051668011967748,-0.015382704106921323,0.0002153113911490073,0.017998369373936302,-0.01621081758413226,0.04335647344689937,-0.0027880934339262736,8.163900604818377e-05,0.0012686970425121464,0.02511067107513203,0.08888582575552208,0.012778218254573604,8.28925811384373e-05,0.0013652532422626625,0.03469227274030209,0.2633223101649044,0.07520535492205348,4.5179738193242315e-05,0.006075950853054883,-0.008470287649047229,0.00781323741015384,-0.016053331613101202,0.0008360108712716082,0.01375428306047687,-0.013880930290115522,0.03244694738884876,0.002018012633464139,0.00014959139597254175,0.015432667146724468,0.0048166887549778705,0.003918822299651105,-0.033596902176299515,0.0006007826352401911,0.005127265808781513,-0.005451670117125448,0.07977501687998402,0.002253192266622141,2.036504871424183e-05,0.0003557552822177251,0.021799505019067154,0.05958469306372479,0.014258706211850259,0.00010868333686548489,0.03474741839093956,-0.003863888739096821,0.02138509703540627,-0.05153839081637963,5.085986528452369e-05,0.007147535983717044,-0.032002308273226865,0.03285673266534377,-0.038202149094027596,0.001899677604294479,0.019071522274898948,-0.04500955973351059,0.344650863005637,0.02989939174641841,0.00010746758815580338,0.002467611629783419,-0.08232671097114576,0.4404589800499806,0.14609758928208116,0.0002894299892165826,0.01304506866570103,0.06031007116906027,0.33538917604202123,0.06649695296168831,5.065260137022178e-05,0.021161197530144258,0.016896693693764876,0.07986651153843402,0.020538629690753128,0.0003486774194936985,0.015241952992145653,-0.002797173048510652,0.03675767604895805,-0.0023726841297594076,3.157922883843002e-05,0.008022069394377135,0.012216469891765438,0.13139961808074688,-0.047508195498962534,3.10622803540888e-05,0.009785569628020668,0.03532165222263937,0.09851731115698935,0.030306671191028544,0.00011549181748990815,0.00465252621294887,-0.017409958469295682,0.1161977138730013,0.0049139221170320735,3.460927706087468e-05,0.010811488009576067,0.016857746325864526,0.05105429461473947,0.0020525445671620026,7.320565257876918e-05,0.0002875696897571183,-0.00793621019852792,0.02815054749857469,0.000976066321647036,0.00012890652818514309,1.36953698126449e-05,-0.012676194227389869,0.013277341242852483,-0.11447224342205822,0.0005456992150034773,0.003539764960474986,0.003843831498085181,0.014876802944923181,-0.019916855075466002,0.00010875287325660066,0.002245801051267006,-0.056134604883406734,0.18096397928732774,0.024061688108801715,0.001990937868957909,0.01441710083593125,0.010943938218830369,0.1026994237789985,-0.026492260300242952,2.7402350755875953e-05,0.0015278402473232625,0.016734243199761918,0.050932491459746675,-0.044411598050216265,0.0010741932649036075,0.018940655425639105,-0.03994868366397455,0.31223601448560684,0.03562870059909989,8.520108434939486e-05,0.005216414957386704,0.018994434446847844,0.030203037900679127,-0.007960849138661921,0.00014842980802776183,0.009878930622837175,0.0049658794559267975,0.006854944301118952,-0.006490908978292476,0.0004158111746676523,0.016157662664223763,-0.003851032307823439,0.016219928203191427,-0.01509068953701552,0.0018402574126746485,0.004796503431187817,-0.00494980033235553,0.02002051379158869,-0.008590653394743436,7.932367604081847e-05,0.004330049091139907,0.016422385682550996,0.025612549770033556,-0.008133967397826274,0.0015938983603611015,0.015697304284382128,-0.0400830228164321,0.11187085432993343,-0.0071939575747702895,0.00014195789398157275,0.023783952294391814,-0.0026666616544314087,0.007672683847466964,0.0012651699327456043,0.0001408902658407401,0.001762134222658337,-0.0003285273353166989,0.0014169308955886636,-0.05990525236680173,5.658961850213187e-05,0.01396905298080781,0.0514252085328899,0.1518315944644076,0.05232509041307012,0.0032101990848956655,0.02888651515970668,0.03234168218161826,0.14167419469534603,0.031123855239984982,0.00011355661103542788,0.0067463575322100535,-0.0031748923015038513,0.013810799215772074,-0.00733449279367647,0.00016671357734737293,0.009175537031080892,0.010412266221620873,0.05922008152443504,-0.015198580991102712,8.31620069204838e-05,0.02087681037253203,-0.05014624495399921,0.22993515653043076,0.1247252998974197,5.4812603876502456e-05,0.017501343485788676,-0.03399256367018962,0.057737346906351766,0.03276615985190336,0.0002870492986279921,0.010986214061941625,-0.028002832051567946,0.12406995426830925,0.044973654677236255,5.6124141311361253e-05,0.005431307506784493,0.012950789509102402,0.15352521799666427,0.002255623962811923,2.176445555082552e-05,0.003379543584773089,-0.009696176450086982,0.032093343293398864,0.0018339365188335516,0.00010560743948496209,0.0075586236830143755,0.0026367529520360043,0.010544909532682922,-0.011488283369415557,0.0003941436677498164,0.011575260995548516,-0.013992217326783987,0.0623656837616312,0.0017862201715145905,0.00012850281744959633,0.021099752076853016,-0.00447310975276103 +2017-09-29,0.015194950867931274,0.10529127702365183,0.002470236795029925,0.0001526136892485707,0.008605414865693153,0.011072834049571467,0.039428316336347816,-0.18887587511025855,6.738466683021623e-05,0.0020266280554169635,-0.03604987951990851,0.12243131795863536,-0.04975878043450231,0.00013620984460957174,0.008645565313157367,-0.01220690584508712,0.011699186470841238,0.0017908169943678847,0.00035214196872097316,0.005013350861800719,0.011608384403810616,0.028864258301083724,-0.03954004316115738,0.00021043072479025345,0.0019194944947862615,0.00041035414523735267,0.0010198748873632537,-0.0013274257387728854,8.785341876956387e-05,0.009135756594636625,-0.04386276068742886,0.17748194556741143,0.03569341717397968,7.25156320609232e-05,0.014296871102607134,0.038124295128399155,0.3521662059348288,0.05382521877146302,3.712382859820114e-05,0.01907114422557755,0.005163073164123598,0.004839521010902876,-0.01069885200315204,0.0008227174071529618,0.0015663431721227258,0.0169278197777431,0.04058518181435879,-0.10478118493530096,0.00014584630042779724,0.008563362475837404,0.012636146073237374,0.008836216174004562,0.013820041855344075,0.0006989927380133976,0.006514643363724787,0.009439445807663637,0.11536904641294937,-0.12109203433916695,2.438259831022784e-05,0.005959378282867141,-0.016548703502977803,0.047232712258522096,-0.012951285458971564,0.00010408116096416071,0.022755017237913133,0.02404913530218475,0.12222232784575829,0.13828031622148473,5.538736863836831e-05,0.0012609275024260392,-0.03450602775325965,0.03269870252107532,0.021018810561126384,0.002058199268845494,0.0027710933997562998,0.03174662601232881,0.23400551240488335,0.022090960709397766,0.00011164096853829679,0.003647670044379092,-0.027542841268481322,0.1412243859105529,-0.002995488585606161,0.0003020002317369048,0.018462540894282405,-0.044324922819122876,0.20991013726940397,0.04598065565634157,5.9480626114443284e-05,0.02331109701341661,0.0005642389782249221,0.0031702789584666866,0.003200051298924076,0.0002933272519757997,0.0017127606508995361,0.03675578637438574,0.48954547642401575,-0.03938600193837284,3.1157521839798756e-05,0.013690670607688943,0.0021765675965868202,0.01883808854154142,-0.017759541211364204,3.860264248345263e-05,0.0029067885334931897,0.054591566636939454,0.1685321752292659,0.07504298020329737,0.00010434352090509743,0.0120460785098886,-0.02148080122437747,0.15748680235316215,-0.043870943742550086,3.1506393100849255e-05,0.0015970149522303197,0.003157499611989076,0.009652741141363294,-0.00048194506868198697,7.252204272354285e-05,0.0186159749071833,-0.011583302386604556,0.04850606425859469,0.001967808172435774,0.00010919052440350877,0.00045762015812455506,0.063798218138907,0.07437599241385433,0.14266947877829436,0.0004902880825175229,0.0019169434318291431,-0.03930173423417384,0.16308408317202897,0.11003231753189108,0.00010143460612831597,0.0017842611721275215,-0.027103507865330122,0.08848712564643235,-0.005168825810866135,0.0019659143358621376,0.0010314452229086217,0.0074246987931299545,0.07449871867421734,-0.023640753644528657,2.5627853447743263e-05,0.015226380379535533,0.062159997196226856,0.20132215694444164,0.02587255041299987,0.0010094636413690839,0.016624832194832885,0.014138302386776713,0.10575832297358144,-0.011897465051633244,8.902425618290378e-05,0.0028885415636663884,0.04778737162682057,0.07122029933168325,0.14331568062173933,0.00015836337035279692,0.0054653525753353485,-0.026102423633382145,0.039860439112317445,-0.022640697264553547,0.0003758743317233295,0.019526102086404026,0.009427078396789417,0.04398133837882178,-0.007735748367766183,0.0016613419018002477,0.007675865792055651,0.06273199548317203,0.21750153893553825,0.19807755662545645,9.25373671209991e-05,0.01878890646801631,0.0016332253876262606,0.0022362542469899524,-0.016894070590726017,0.001815524590489238,0.023291424623071585,-0.0028547520169903166,0.009018219393450207,-0.03164867839103019,0.00012541908511906432,0.000289144253272579,-0.0020883046959829406,0.005340475802782438,-0.0011646827263706522,0.0001585164324215997,0.0013929302785681648,0.018480318343180674,0.0766633333183009,0.023680860407389925,5.88349887479199e-05,0.014131010454230071,-0.0514526447612843,0.15267864205709117,0.028472345994522204,0.0031940923787411096,0.017729632081841487,-0.01703479619389541,0.07735742116844074,-0.021472266300888602,0.00010954070438595482,0.0016740803194682263,0.0009386455600571715,0.0060160965410608995,0.0007756284174470088,0.0001131481917537122,0.004925157351508952,0.038867740564357295,0.2179421513923848,0.041680865093692246,8.435226726577994e-05,0.00349802000850567,-0.06004147182784296,0.290867974413846,0.11360761794141438,5.18803405454269e-05,0.008717575586295274,-0.011872626539521187,0.022376036394663814,-0.015111772444201525,0.0002586979822305905,0.02841933332579204,-0.011924784697401243,0.04535070016607138,-0.02694416927011661,6.538542123716804e-05,0.009617656601513088,0.02542177481365959,0.3135172202478274,0.003198018429401412,2.0920677899171882e-05,0.007837760689091585,0.01348500037722342,0.042229648145294466,-0.0317502201947392,0.00011162011472487992,0.0041554301263086405,0.001139063590344982,0.004955144079141555,-0.011254989351970696,0.0003623428151111659,0.024655381095565584,0.019385152123803352,0.10608940175480192,0.003088189537070675,0.00010465717532476412,0.014686645256306677,0.003487192594134616 +2017-10-02,-0.008850146523833074,0.06958638650701413,-0.0324689363001122,0.00013449705034353085,0.006590433148314145,0.006711918409865396,0.02273388527594843,-0.0008817236526507136,7.084081208722655e-05,0.0035608097715407235,-0.01313421214357813,0.043532975134289935,-0.033740587472770256,0.00013956704468516648,0.00802525713751766,-0.0253188680781115,0.02370726898670895,0.04016099193573546,0.0003604380362800821,0.013162074683794399,-0.025729460482760962,0.0504911527276864,0.0107659480810718,0.0002666325499427609,0.009312240894596686,0.009948223454831777,0.02884683232368021,-0.028526902936377014,7.529985525988287e-05,0.0028207586883410925,-0.03529279499411465,0.12983817676954768,-0.02452051394441317,7.975786137311935e-05,0.02475407521505747,-0.0338542114791866,0.2888303710445706,0.026050264272733884,4.019466923206913e-05,0.005767384029385309,0.03530773544016269,0.028567695667021064,0.12289781082330406,0.0009531021292052654,0.03139761963465677,0.07104152949349725,0.1517555589823386,0.1495401700241402,0.00016369280121450002,0.022285945352569652,0.020359600912954648,0.014659963377442447,0.09286617286048308,0.0006788295411995678,0.001455114771314279,-0.017583947600797692,0.280987703514457,0.03414788076311701,1.8648841398452795e-05,0.007508023125212453,-0.006594157562773793,0.015063740502537958,-0.013575262004950696,0.00013004017111975597,0.003635688834649914,-0.009056293436355965,0.045622113147182786,0.00644049823525852,5.5877492234763645e-05,0.003182160916163281,0.019641491242788536,0.015737377266567355,-0.12234864446993209,0.002434249413964243,0.004908284175252898,-0.03322107786562935,0.23082239160913312,0.016783824017273758,0.00011843713421244971,0.010901617148911675,-0.021843534457971242,0.11933976376071764,-0.0020731750403208877,0.00028343010009007077,0.02153203095004874,-0.006844566092469344,0.049111611406976056,-0.016347068576321618,3.925750488662954e-05,0.028690862165031607,0.015626823180546957,0.09289259152900964,-0.01623380071598304,0.0002772531100474768,0.010563865019482296,0.00442966218095033,0.05510565701223796,-0.00033898504790284714,3.335835709617979e-05,0.007025590488209466,0.004590261726858101,0.05263162566339221,-0.0033796727507700857,2.913884768604119e-05,0.015347504271015116,-0.012886210559695344,0.03731478160257923,-0.01122139086556346,0.00011124156116050461,0.004672075922030319,-0.01547847231425352,0.10245703787613947,-0.0005179475091236608,3.4896243197359196e-05,0.002176718124618374,0.016765828334304914,0.04725486846673565,0.007307860996902165,7.866034352871506e-05,0.008077407506870637,0.013601530372112872,0.045390003263956744,0.017556880873936462,0.00013701753725371062,0.004861856139375892,-0.015631790115776204,0.014973674014641817,-0.011611066501652913,0.0005966998141464268,0.00029919221761281947,-0.06261491286488273,0.21095587707404942,0.19581402243849844,0.0001249315593223771,0.002982662126498836,-0.03064894996258655,0.12411563906822899,0.006319696032575725,0.0015849233620023576,0.01885129679802871,0.01391110969963642,0.12923442052380585,-0.11135908815256534,2.7679979926298157e-05,0.00849973360439377,0.0012424933597012186,0.0037925039972044887,-0.06241760958652074,0.0010711228866733566,0.018540386780324693,0.027667542702253085,0.21540419472158726,0.018886928188308116,8.553464865100243e-05,0.006179336843176631,0.007888488574737928,0.011219114948659167,-0.0016983993410091191,0.00016595127346199568,0.0015571630365517628,0.006748205868904517,0.010083583828493484,-0.10217703693905474,0.00038412920190810984,0.002973541685801726,-0.04077836518553352,0.1826984620540381,0.04262908271751625,0.0017299966433458275,0.006225732146836123,-0.03465573658547207,0.1328860489894253,0.005232791310410067,8.367314929784471e-05,0.00799224977152889,0.05391582150800948,0.08440319837307575,0.05736185307209142,0.00158794155736708,0.010868897326701186,-0.010348569823422523,0.03551711739344916,-0.01649263240188829,0.00011544062251509606,0.0063547119081411516,-0.00981825813908405,0.02373596824328532,-0.04855400365970279,0.00016768255011699734,0.007309386234921825,0.05618996520042958,0.22457028860225275,0.03094901409561099,6.106894129598502e-05,0.0011898187962527341,-0.0323757417556685,0.10527944548177422,0.008559742910329128,0.0029147022512881825,0.0031398643573228593,0.032302485513549216,0.1467878241733673,0.009266062967877835,0.00010946782218973557,0.006953560201392695,0.024855403360531735,0.12522346262835937,0.022154226998454245,0.000143944770371095,0.0034079252076496904,0.009422886690618045,0.0664500339534483,0.002819066147201349,6.707141370743952e-05,0.0010440605406459337,-0.01096425782050847,0.049242615094174755,0.001511644709458737,5.5961007596407764e-05,0.015781032397701955,0.022650368209981786,0.041620629982894265,0.0026224065021287516,0.00026533589807506435,0.004911895768082647,0.025161410930890263,0.12475716444962412,0.05991986506219793,5.015149355021419e-05,0.004171748660460849,-0.0007359460458109142,0.0068963865288844475,-0.022953002016701578,2.753313516642302e-05,0.012452146146321886,0.02379970369855946,0.06693701314192119,0.07475963370016249,0.0001242837032552386,0.011339637245564216,0.0004448635240969307,0.001881575351603144,-0.15516614117558292,0.00037267748291912426,0.005107816637773772,0.01788582522903525,0.10270354556940081,0.0017173157839637776,9.974596630843213e-05,0.03403686103213523,0.0004441350809018715 +2017-10-03,0.00017276015048393092,0.001377289834575723,0.0012179409494679793,0.00013264925509637288,0.01348037016536459,0.024522390395388134,0.0807249650039149,0.0591144856544944,7.288958260132652e-05,0.006059107039715605,0.06458190956163846,0.24738726664937047,0.1328771029945511,0.00012076212442864673,0.023500251282438538,-0.009182377319018583,0.008965847587517001,-0.09325729747983932,0.00034564608253094244,0.000701875128505818,0.012665723763208195,0.03120768903164519,-0.05360522464227911,0.00021235680101407408,0.015256315335669422,-0.009790429151481487,0.023624357187635416,-0.004844632925309207,9.04874747607414e-05,0.0077086505207359995,-0.03467145760645647,0.12845969383863534,0.0069592259127042744,7.919450937209657e-05,0.014873759044282748,0.0095317948853078,0.08339704806252836,0.00409951867098068,3.9194273979149946e-05,0.0015580414130625141,-0.014657267999430207,0.010935203165853804,0.020512097283942828,0.001033643931238959,0.0077113133784108825,0.014824766825489857,0.029378757309453024,-0.021613798807022733,0.00017644783580142851,0.004532480273679933,0.0030149603008709,0.0019450077295724557,-0.002181838507723943,0.0007576779083113081,0.009366484498884579,-0.00620893787659042,0.07681570004378308,-0.007762997526627548,2.4087410345778744e-05,0.00027473482125854555,0.01742889047047288,0.03997361760960867,-0.03363745043160697,0.000129523128211447,0.01236473342471058,-0.005452839686402677,0.02566856883114519,-0.007042372774081872,5.9797481480509586e-05,0.0012399629917800121,0.033666507712225166,0.026787643526494865,0.07433918959657948,0.0024512439239558464,0.02277765114540113,-0.02092361699126987,0.13181798571579895,-0.036898591415303335,0.00013062135915383418,0.03604492974546289,0.00395630712764442,0.021323594777132308,0.019478969062160397,0.00028730144450957607,0.012486665820616043,-0.05524521775266234,0.30863982367105036,0.03948690285615251,5.0420097774468773e-05,0.014770597911453538,-0.025509764525930446,0.11465537177698712,-0.029759483093088138,0.00036668981749154176,0.012966090280766035,-0.0008039793400904295,0.013234429642248378,-0.01586421161221783,2.5209828463861477e-05,0.013344044587429035,0.005603392439427165,0.05309524726422459,-0.019085582520341253,3.5259577271877126e-05,0.00021091220787186203,0.01573099310253542,0.03936331873454877,-0.015364603454612356,0.00012873219950640012,0.019440059620105477,-0.01172834837660437,0.08475111355858861,-0.11910699745623252,3.19656706571943e-05,0.004449245642278261,-0.006010710167920259,0.01703880722711594,-0.015642353697477726,7.821030507932862e-05,0.004675215905543054,-0.00283832200576694,0.0102023335575069,-0.007329201237147293,0.0001272069212332525,0.0020978824534372154,0.016148453580059112,0.015524629204961208,0.006897915869602755,0.0005945457304038283,0.005455105292555128,0.002301538353346257,0.009824968078266744,-0.020361769734830046,9.85991287787209e-05,0.013930683170387382,-0.031313558664811926,0.10366956176625713,-0.04934991846786837,0.0019386541461838592,0.012196749212622916,-0.05183744891676498,0.4713134181997143,0.0799597286974278,2.8282383799728318e-05,0.006597504995432061,0.03434751406483201,0.1207195173409548,-0.032977533207843454,0.0009302273182980488,0.017928899676265358,-0.025112333818569397,0.1875463995274605,0.01774500114020408,8.916696567268714e-05,0.008194159570546745,-0.0016152604821046625,0.002293848026855289,-0.0008839493520395055,0.0001661970508076208,0.0016768726402760894,0.0008758843517315009,0.0013939422975958603,-0.06171437006949091,0.00036066656596517934,0.012340656350655163,-0.019124415291546484,0.08257029145826285,-0.013171193594552098,0.001795207646959224,0.004486651317060383,-0.02028630292164157,0.07519332884298184,0.011230468532786805,8.655934570273407e-05,0.01529584318539623,0.002265795032146331,0.003283877313097618,0.00023068263575352018,0.001715184679184146,0.004659855025888564,0.03466736735980474,0.10453502506256156,0.048491769812417006,0.0001313938600472117,0.01951513286940305,0.015083469876395491,0.03770505158381255,-0.007832244576125994,0.00016216685606458396,0.0008643981870416781,0.004157843169064923,0.018068885994185893,-0.06172782117205098,5.616304569456461e-05,0.01390134846976557,0.07211826431807895,0.2600241600453217,0.06875379926150477,0.0026287520340675993,0.0037960090399860452,0.010740564847348661,0.05671235250044848,0.0024957936157067656,9.420848710538221e-05,0.0025839373920807183,-0.037200140242272625,0.2456198241207789,0.1533059180536359,0.00010983530124354414,0.0053359179551019775,-0.007826175057175432,0.044465371976170724,-0.009715418011440748,8.324848275315657e-05,0.019166840922958183,0.0057245950707695385,0.024643475716578232,-0.002584876186545831,5.838351072029232e-05,0.005229809138182746,-0.03276422196881291,0.07121126095218348,-0.014520716647265475,0.00022432649854036237,0.005583320395723467,-0.012057534728683957,0.04983318260202958,0.004438167897041099,6.0166434130665376e-05,0.003145391528865569,0.026276703179720917,0.27182735770667915,0.020697902099341758,2.4940720600826227e-05,0.009874971886179865,0.006546737129320062,0.022310585913080803,-0.01879962950414472,0.00010257059903306633,0.0035427615998630214,0.031234696473512524,0.0994482899617138,0.11348793335248718,0.0004950715175149512,0.006042346686096072,0.01766412762162181,0.08038006091527707,-0.010914796075746889,0.00012586809487184002,0.004967249980250809,0.0007281051405313547 +2017-10-04,-0.003494960790108529,0.022727924526363623,0.0008369542745625917,0.0001626181863490553,0.002177230442443825,-0.015273102570843782,0.05532641675204053,0.018179122517475506,6.623770112014597e-05,0.002106059571272237,0.02688500965069826,0.09292652257787166,-0.08307650276059486,0.00013383438746343383,0.015461361440905163,-0.003508934632626514,0.0034982482489726288,-0.0219749282352018,0.00033852637346184843,0.003687709159072362,0.010737529646202344,0.0248901490264224,0.02177916102403163,0.00022572239587247782,0.01464890997461373,-0.04655646459806804,0.11837028754201548,0.27329309040620275,8.58784170443631e-05,0.006148345463631096,-0.004821155197073542,0.0162763780677206,-0.008568040461147768,8.69126912648349e-05,0.017149207479234353,-0.037487650198692365,0.28930705088978875,-0.012946898226790958,4.443526914741892e-05,0.0009858982785813475,-0.017441664209392752,0.01722171231214649,0.004531081369233639,0.000781009609860948,0.004112553310772342,0.05050755517063446,0.13959466265531129,0.041121986939941055,0.00012651715570355856,0.001893580558072911,-0.013542693788611622,0.010883108833060684,0.02938331483490339,0.0006082420551006665,0.0021980990110782193,0.004703577588603919,0.06733279515997821,-0.05624832350032018,2.081730274973826e-05,0.008913450260663492,-0.06613030882723618,0.16477831211505575,0.08836699102400733,0.00011922066468799903,0.004796179547116503,-0.0033374021656715153,0.017684134109243032,-0.01623855273871484,5.312348551065865e-05,0.004862992410427451,0.062296912339798775,0.043800491685872724,0.16507829812372193,0.0027740258822871165,0.016133663087407175,0.014445804530172194,0.09950700437814812,-0.0150499274610752,0.00011946486306451774,0.004544814902109766,0.002334624587811106,0.01353338111782307,0.0020239949252902744,0.00026712773069745695,0.016223832157404243,0.0037983941740287676,0.02043565893557875,-0.02599575709365522,5.235670913732067e-05,0.01854931281412093,0.020639590785952146,0.13016221846596723,-0.05293877485640547,0.00026133823148589676,0.006788970665494615,0.019191291159886978,0.24724573743041386,-0.06513690231598468,3.221110419227751e-05,0.016434249923045503,0.004929211943497862,0.04386250031859005,-0.035327080816397134,3.754618509501988e-05,0.0024988887942583803,0.002704420802567122,0.007702303862407512,-8.777430985513771e-05,0.00011310358630000843,0.0005008441064175433,-0.047844035761004,0.36132042349277627,0.03668931721387613,3.058635126565901e-05,0.02640825477465074,0.025120023121938555,0.07262354396425179,-0.0715428964736646,7.668668752139e-05,0.005218843078233212,0.009239401024082355,0.036029156484382055,-0.014850141550120485,0.0001172568757859437,0.006079565380896065,-0.0065684831027298975,0.005465321104543356,-0.0011873497243121488,0.0006869497427616048,0.03154535299212341,0.015428408174690197,0.04573944506510925,0.01508903751044824,0.00014197642551723954,0.025393454093175383,0.10466634403715702,0.32321224516135705,0.170519558553781,0.0020784444576859855,0.0019129323241566484,-0.068521103419847,0.7209485665413008,0.10600752355580911,2.4440059595739733e-05,0.004010668137865974,0.01840147238915467,0.0573246947695638,-0.0054882965364885525,0.001049499154806487,0.00865498510792426,-0.0035105984266011955,0.026126702274917132,-0.00032165664350364856,8.94792222902148e-05,0.009909113160079629,-0.0005138718561586743,0.0007357578505580909,-7.200889899483792e-05,0.00016484102803700072,0.02039166513436373,0.025999681595400878,0.035601386046929355,-0.019368582992967575,0.00041918432747225094,0.0007362105098144122,0.020175782547707136,0.07514171973570023,-0.035494432343553185,0.002081131866785114,0.005282038372997146,-0.036935957216914596,0.1271615366214956,0.013378593727898746,9.319314359362081e-05,0.017160782605599657,-0.04608389042411337,0.07284906781131127,-0.05536701733639953,0.0015725422705442688,0.008916047399058413,-0.030694249021489678,0.09510474515302864,-0.03333109813594588,0.00012787064698258614,0.01626759842471914,0.02643456765627667,0.0720061393363675,-0.013606257942520465,0.00014882060350736095,0.019262917984859726,0.038888827898963405,0.1665207183190395,0.05398133810870017,5.699942875252715e-05,0.021681839756993837,0.006042806443250867,0.016820010041361962,-0.005977131113110519,0.003405104862399682,0.019170452692668753,-0.0043969014401221375,0.021959286476959283,-0.0007463949013894212,9.960223342656315e-05,0.002639125995967751,-0.004982621820113233,0.025837712587904123,-0.016310002993473002,0.0001398507008105612,0.011431508761256369,-0.01946679972639153,0.1140041194019728,-0.02138665687404458,8.076491034324713e-05,0.01976389524222701,-0.038677872079246965,0.18073861769409894,0.0364728427131929,5.3784732275200647e-05,0.028089238008072972,-0.06564242082255738,0.1188755029151311,0.07792859116951363,0.0002692288621869612,0.0042631167596241335,-0.009111161799182735,0.03271151750975837,-0.02989323823340442,6.926079035947814e-05,0.01217496714131414,0.058683932600641434,0.5934512881728278,0.09261032356149407,2.55132284736394e-05,0.008942138607626044,-0.030230723570252423,0.11899578572111688,-0.007455795200296173,8.880264994605324e-05,0.0029699600130934003,0.01936574475823625,0.06975526101944955,0.0036660368546763953,0.0004376079531092862,0.005356038678405701,0.028846439692054186,0.1353442356932897,-0.004797327182180577,0.0001220743023657158,0.009668913094489083,9.77427917586095e-05 +2017-10-05,0.008111786350222035,0.072406382054716,0.0002748676995974019,0.00011847486977053257,0.0027739377640679766,0.05465334469438657,0.2212552067003134,0.21857431384863898,5.9269842372272737e-05,0.004113532592141302,-0.004373754287412307,0.014326241331907161,-0.00693522102538647,0.00014122751678467458,0.0113867060969894,-0.0052241445059224316,0.006522749704354689,-0.00045988732271182197,0.0002703039076030982,0.0060649586761261,-0.02461259640700267,0.05571661634939184,-0.01310800966530179,0.0002311375303189796,0.010440405840129797,0.004116648577822136,0.01107261408164632,4.211416813582788e-05,8.117837823913374e-05,0.007638365773597941,0.00995119319569078,0.03922540521951596,-0.044143429810102726,7.443849333956432e-05,0.026194300532248325,0.03088784296860123,0.2828373362379448,0.018979596099378597,3.744979604080007e-05,0.0118232713575325,0.001011517080142305,0.0008233110108114315,-0.02333393073058393,0.0009474451643218484,0.008559188153145084,-0.01938505691247709,0.038968828658149386,0.003266277140349077,0.000173944865989021,0.0035232677206727143,-0.0010405179698120238,0.0008144883719239869,-0.06680403276057077,0.000624437612689134,0.012552904684382676,0.007852027788683354,0.10336324801623671,-0.011132144093022756,2.263802157590407e-05,0.005697114730295331,0.0433210900358628,0.10916868895137245,0.030137083143466827,0.00011788330921600832,0.0016772623242246507,-0.009912886065145225,0.06154722062049947,-0.00166277840460431,4.5337073942090504e-05,0.0002641598638847902,-0.03775357440576333,0.029819495158111452,-0.003543712572236074,0.002469339262232918,0.004347311744176652,0.040293403478751766,0.26673667409703383,0.027934206427718912,0.00012430921636875607,0.008895296183964355,-0.024718203210199706,0.11738886291699085,-0.013709623409753255,0.00032606053315223496,0.011600731805246303,0.003845124038888474,0.018376444385939238,-0.014306770548736598,5.893995847894211e-05,0.011665551932519813,0.04488804574710093,0.26178699380671083,0.0631305787845584,0.0002825982315430544,0.004397074334599967,-0.008952962620901733,0.11646491868269641,-0.0006035633818947733,3.1900822069354304e-05,0.02559496837618307,0.012738112458757703,0.13828621278904954,0.01337975960996449,3.077569752770601e-05,0.008715363236622193,0.05355126859939994,0.16105019239620416,0.0834636631535617,0.0001071103087816136,0.0029440300762831892,0.014984364320892162,0.10253167270196897,-0.0007995581655893826,3.37576850682131e-05,0.048235817897684115,-0.0064274611633125135,0.020806815921077536,0.0074893227992132595,6.848748503118222e-05,0.006848891745822713,0.009678509805298637,0.03990395605429644,0.012052588349904195,0.0001109024489794153,6.823073921570022e-05,-0.015168725309771787,0.014001834620445968,-0.00828004782671707,0.0006192124850978686,0.005509776643849284,0.056363451225208604,0.21271335419418663,0.12350290450681099,0.00011152926265979475,0.018417951954471372,-0.009932827744451794,0.03375552030090106,-6.736991781459005e-05,0.001888631688182731,0.009285270999484492,-0.010069185335703296,0.09135883236447705,0.0036732999570318003,2.8341706065694198e-05,0.00666496293815929,-0.0016541787680010298,0.004783803628585811,-0.004433440715800429,0.0011305255140176675,0.010320733595575036,-0.021277310697417406,0.1498498807339589,-0.0397659840027712,9.45553217854334e-05,0.0162055809097979,0.0010289980676866136,0.0016957165140284657,-0.010204836119316671,0.00014322099806098103,0.010498163643637908,0.050804956337584105,0.07135708987863822,0.04468845168117899,0.0004086701019518064,0.0050572419730164405,-0.013127027873297326,0.05971675265777759,-0.007045724832835605,0.0017038076560254856,0.0061871714462362155,0.0004909708213349401,0.002088878037449419,-0.02915675534130558,7.541069949035676e-05,0.001093733988725077,0.006744946863399134,0.009486564205041749,-0.001253437067751222,0.0017674485241526165,0.017391332310451164,0.004348107190033393,0.014026646676780117,0.003448948657984325,0.00012281811308889143,0.023973633364444788,0.008698434008148133,0.019041511760157413,-0.08461999243080318,0.00018518253450238356,0.0009471238655351204,0.009576958793533033,0.041676534956197435,-0.020306265753086822,5.6085415273736625e-05,0.0032809398387083524,-0.04743147919491279,0.166724781678458,-0.04354486133680374,0.0026964015573417367,0.01032825985031931,0.002574260075599459,0.013817948719362172,0.0013975604694706737,9.26721876689763e-05,0.02065932694294783,-0.025699149440277194,0.12656872055719096,0.03668442712586403,0.00014724926790227175,0.004162098880991519,-0.00511017540900905,0.033997049634046685,-0.0022842957589835236,7.109569060082689e-05,0.01616600938709212,-0.014536542468988386,0.06173423822548126,0.004562716686207652,5.9181016833341654e-05,0.001964184183012726,-0.05595102495884451,0.11679448062569912,-0.04653844309441266,0.00023356895680858098,0.009590402160477286,-0.011982482665844308,0.04899625911104577,0.005080297172753328,6.081325684230812e-05,0.008756196956566122,0.005608501832020533,0.058394235332902625,-0.007655289851749688,2.4780392205004117e-05,0.005189142598686413,0.00945826223876503,0.03007989271811035,0.016011911139683664,0.00010991172719987466,0.012025109023862413,-0.004854667996060568,0.015683193120584846,0.0004971931487299217,0.00048792493737639464,0.003953289113662386,-0.000625173206684866,0.002487950841204897,-0.0013791024010526855,0.0001439230513430103,0.0008104893681797264,0.002911633490600955 +2017-10-06,0.03289763703524385,0.22177143618778403,0.006114030790278808,0.00015687208889034822,0.019461603625058436,-0.010901448480095152,0.039786006352977014,0.00623243491312214,6.574525067586828e-05,0.00988053279453753,0.09369362966002835,0.3242384107442366,0.23235308790365464,0.000133672726433281,0.008572745394369136,0.002224177603784529,0.0023376438891140223,-0.10663056483606605,0.0003211137979066026,0.0001965175144550658,-0.00010736739902142088,0.00022559487559125715,0.003404271194291461,0.00024902386787254945,0.009061393868895434,-0.007049877929651705,0.016273661312943298,0.0009858399360106586,9.458952917251204e-05,0.0042986207387678,-0.03413416183812785,0.09252888208121378,-0.08051674432234608,0.0001082434892361252,0.026955426213225935,0.03426809109037424,0.30897299689091823,0.0353099543148967,3.803364966550666e-05,0.010832402435752992,0.02576570828897578,0.02025873062815996,0.05853133290424864,0.0009807868679737146,0.014015101430398849,0.01942754867157106,0.04604523881638445,-0.022793637932091014,0.00014753503439010116,0.0001438422872207779,-0.023211076226344024,0.01634138204394641,0.10296273219294741,0.0006942739217340936,0.010124408263132266,0.00316462406774031,0.04022878059329283,-0.001491676782306605,2.3442722548118322e-05,0.0022037622617278752,-0.0014514268985101556,0.0042572532617704325,-0.002138799958336386,0.00010127837355559199,0.04085286331111449,-0.021032020526106733,0.11307864938993441,-0.029464837260725844,5.235548687617208e-05,0.006314623817042858,0.0093326818141674,0.0070442993871473875,0.005231369861358463,0.0025839947470947737,0.003956067574691264,-0.023934289058364804,0.14525844692769752,0.006213673481235198,0.0001355911184388692,0.007225343975700778,0.0015592160213336627,0.009140465540485924,0.00736697508594048,0.0002641473176150426,0.004822516175746884,0.04864250404788057,0.30581638626032615,0.031899736976159616,4.480393181487889e-05,0.02302580400774103,-0.07238930128768065,0.3925942683764638,0.11170310800210821,0.00030389057951363816,0.015981448977222257,0.033737050794303045,0.3727065571564537,0.015013504305528303,3.75638686057153e-05,0.016823025619273874,-0.011029023751756848,0.12930283351720048,1.8430812999189405e-05,2.849776094529194e-05,0.0077923023568491085,0.01761267123121994,0.050678033460996696,-0.03206810695266929,0.00011195106521521627,0.0038440736953765367,-0.01335687408418522,0.10742881650449859,0.0029715774193191514,2.8719469711141866e-05,0.015446422071273735,0.024924613381889716,0.07742373932173977,0.011158499371759218,7.13726250588152e-05,0.009245463196048045,0.016007651919929262,0.05883081836875195,-0.006045737932451005,0.00012441459726582777,0.001914405134751102,0.04736653294842836,0.05552660034779636,0.06268680990612499,0.000487580214668303,0.013502788803589627,-0.003283031331942275,0.013274540880278997,-0.0013856357855595311,0.00010409779425281524,0.008417716721259757,0.024676319248761708,0.08039388413106653,-0.015827931126192928,0.001970046800488384,0.047915206975871684,-0.02089808140064779,0.18098329926535064,-0.02680276146340141,2.969272873970542e-05,0.004197298051216094,-0.02351457125477846,0.07215429823494762,0.0017276467480590685,0.0010654820244718553,0.039776162425382205,-0.024264162017060296,0.1840068919733922,-0.07049643916440192,8.78126029264318e-05,0.012421954419182483,0.014569704453130624,0.02510020316718139,-0.003901069635266738,0.0001369994714658135,0.001955528237363873,-0.02579895207478239,0.038303399124856786,0.01443745108481938,0.00038660606571141505,0.011528646839054042,-0.029329913251614166,0.10374495326109444,0.04300689478181971,0.0021912611565836552,0.012765766621220599,-0.0018132536356791215,0.0061604034951343615,-0.003806977443829789,9.443647517465906e-05,0.005029298176808189,0.010831296625287505,0.012763758909673548,-0.013712547927396684,0.002109497665051335,0.01193724153886832,0.004197053420502828,0.013561896139152109,-0.02005388581421643,0.00012261401662063125,0.006572390795036095,0.02083911507701341,0.05276362581701324,0.015564127574668725,0.00016010504507776694,0.008663621087911825,0.0018602056733611032,0.0078283714069227,-0.0005971546754315049,5.799672465110163e-05,0.011863924263376539,0.01850359788137293,0.05171136406048834,-0.0009665988474296809,0.0033914720780230004,0.027586342729502996,-0.003915923390041876,0.01733767843453441,-0.001615783150942042,0.00011235277765131052,0.005456307685925425,-0.022461919569387683,0.11044582325812458,0.015840992354135334,0.00014748856680223528,0.008538927098505145,0.006167360825729377,0.03274766557604602,-0.016736857993441122,8.907743643220604e-05,0.002723295513474805,0.010032133314266424,0.04015006687044105,0.0032191077401454455,6.279924416324646e-05,0.03128076731226608,-0.06545211895742671,0.130550406949755,0.003373010630303197,0.0002444414634681029,0.029478762739579157,-0.006299156963836276,0.027092146964108655,-5.174501714468312e-05,5.781671112380475e-05,0.005441316416576416,0.018199482471752598,0.1791027246209868,-0.20079936611847624,2.6217310113850774e-05,0.005342250789304623,-0.015781115010154743,0.05055998716082602,0.005777247119463544,0.00010910375414593789,0.003124192007462223,-0.012050599879872989,0.0498591303278497,-0.0419205479496455,0.0003809710181437093,0.005484955286173921,-0.00022501878230100447,0.0010199867213516991,0.00209516552452699,0.0001263560520842824,0.01475398178493471,0.0011433102832837834 +2017-10-09,0.002389937071127475,0.017250874644549382,0.00040003269725669214,0.00014650819923539275,0.011277721103699167,-0.02517503675984929,0.09139940340213303,0.03286631276357068,6.609023239740198e-05,0.020136345882688256,-0.02756205653981045,0.0964643226490663,0.01355233504842329,0.0001321728043490214,0.008756209398954457,0.007642096615272271,0.008825032339885124,-0.15490972957605778,0.00029225642983386394,0.001547920083117048,0.020299214759656285,0.04984297118715248,-0.0025598350400424345,0.0002130949155060415,0.009137121928115166,-0.010623431962974763,0.03252979862528519,0.006239406000731697,7.130667826672402e-05,0.004065766193121439,0.02886148732894101,0.12215294854799665,-0.01842238932523843,6.932735140926532e-05,0.0081928969765602,0.023206794017145566,0.17618648169331264,0.01189906042953655,4.516907312213638e-05,0.008931779241135798,0.0027384110743167733,0.002173653407599953,0.0006234519948173783,0.000971523103163022,0.011540516611853851,0.035289225753286725,0.09551531150506026,0.01859694522028137,0.000129190631174042,0.005049944813867833,0.007109986607451646,0.004521679108812587,0.0016488137120424817,0.0007685876513602475,0.004896164919935667,0.005287515188398624,0.06943358373818957,0.004623337442616805,2.269367525536281e-05,0.00016135429562376944,-0.09066268966186193,0.24111251168007453,0.19180243405172298,0.00011170172751535467,0.0029155822301728212,0.02331124155638293,0.15835954112195616,0.1264772925587113,4.143649269594969e-05,0.006299375267463594,-0.03399744084577284,0.031714007074110775,0.021860552116385212,0.002090826908011111,0.022803630141462566,0.029666011025386976,0.18331779923762184,-0.0257716340836233,0.0001331700696056427,0.009217430701942182,0.031041624048875237,0.23743625027984847,-0.07489734094917287,0.0002024443411771665,0.015370966837175868,0.017002881539820228,0.1004110297231132,-0.0021045708070984845,4.769820812514499e-05,0.0264584304855986,0.014138367114721483,0.07889682874308841,0.008612600164440196,0.00029534288619769404,0.002042808624276111,0.008367173321370464,0.08815765738103673,-0.0054285788573745185,3.9386641980955774e-05,0.0030854985257759257,-0.04110186937620955,0.4218092486983245,0.1889941028058248,3.255571109480199e-05,0.009115336565623227,0.016959498785297577,0.055358670320021106,-0.046129836960991516,9.868476672393257e-05,0.002327075906158744,-0.007181165745220652,0.050443379526777486,-0.0020496829755519905,3.288388733860866e-05,0.017284547500661374,0.008213047174606497,0.025769332022886688,-0.09957646871612355,7.066079811465586e-05,0.005883074025029063,-0.013065693940070467,0.05133615160653332,0.036625641108768016,0.0001163744837762441,0.004325199235314518,-0.038906552091974585,0.03960960485611521,0.026433456860994523,0.0005614328198055317,0.01002605031619392,-0.00566574987866706,0.023260091390472405,-0.08536198699020559,0.0001025255223123044,0.011743638236205702,-0.03911039190370915,0.11765086571973286,0.015107172404166808,0.002133615782823593,0.006389310497197079,-0.008117814633575707,0.06380201370597001,-0.03180196061135755,3.2718014415800375e-05,0.009536028955882854,0.007182047284476134,0.022493120954201744,-0.008506079641031804,0.0010439262330746307,0.03764758022178565,-0.008884562549516566,0.06550737808709409,-0.0033705991138064683,9.031741004682745e-05,0.014058151122647316,0.010291386841048166,0.014272264629363847,-0.01685437443460258,0.00017018700668820425,0.015809751495629555,0.026723334817891898,0.039212388880413854,-0.08066823656207217,0.000391175157235979,0.017683402097038642,-0.001094862158790646,0.00395030160382384,-0.001216314788870126,0.002148223839548863,0.005446282494970539,0.006292290034829843,0.025244302746270313,-0.12135975415798342,7.99715886012296e-05,0.0148842033792656,0.013216924367514463,0.019406852438383047,-0.006587531434136069,0.0016929825935720394,0.008681879349446156,-0.03873353566588661,0.1232845375243015,-0.060595436153829556,0.00012447856357860086,0.0264363119134584,-0.016528354685598816,0.046489797819080685,-0.03403439949184834,0.00014412268437137348,0.009320139341092649,0.0005913619910605098,0.002656006615643844,-0.031707903395620046,5.434232056301889e-05,0.004054889825793339,-0.016505619660427833,0.05246511740895378,-0.060922807866933236,0.0029818050250140643,0.020071551106088485,-0.006648413409899641,0.03466912805223913,-0.003925438578921533,9.539281580057111e-05,0.006816443035602381,0.00109317829298948,0.006894627573236319,-0.0002396580624148774,0.00011498494238131428,0.001734729367009474,-0.029514913640970163,0.19714915376662737,-0.04811828410157552,7.081011477042616e-05,0.0029705149117972484,0.02538416429313491,0.10137464833796185,0.009393916958065855,6.293335781487237e-05,6.0381234487855867e-05,0.00609203585864493,0.011395427795099574,-0.12439490515403201,0.000260652089892079,0.0076740988261784215,0.01991865997832163,0.09038149443422634,0.01101860529928775,5.480181924709019e-05,0.010025538295799486,0.02561054795929054,0.33284827358820757,0.0021236273428176335,1.9851980842730804e-05,0.0020496414055429252,0.0008655067522076678,0.0029372701018284654,-0.007857374559124395,0.00010299960049887578,0.0006874947209501359,-0.008250622699278384,0.030460284182199607,-0.002796561743008505,0.00042695366645231916,0.0021316910009004583,0.06977639690712838,0.3662677250813156,0.057380415307484174,0.00010911430346840778,0.010958086029702541,0.0002762265977132747 +2017-10-10,0.01520912864336991,0.09182261889438595,-0.006632342637797543,0.00017516254314868114,0.0018598910236536825,-0.02859163863561563,0.10405648979370229,0.03531254729532199,6.59295940026701e-05,0.0016243811583411016,0.03375347521837705,0.10891445180119823,0.018127454343726687,0.00014336072497040287,0.024871549241724338,0.01227904510189851,0.011335509269658555,0.0218443862882016,0.00036558756425834394,0.0023504274342457067,-0.021168758697449858,0.04328611422268972,-0.13676756002742751,0.0002558848440706532,0.008348315247451487,-0.010747253530497195,0.03027523291959887,0.00606862114383182,7.750982224383841e-05,0.018686536978746983,0.04649506878916774,0.16743722662965693,0.05144908428403368,8.147881945597334e-05,0.00873104565472795,-0.010107509967515268,0.09700731579848482,-0.03039123816102519,3.5730435118581104e-05,0.0186024586903676,0.0004368267693283792,0.00037068102030255893,-0.002786336176412512,0.0009087693716437493,0.010491572865905265,0.03873508020603714,0.08789036907825307,0.0021036422298627046,0.0001541079551128937,0.03247021651174274,-0.008191699029274836,0.0061215607898032,0.006252792497574279,0.0006540879964311232,0.0022037843194372335,0.0025390519580227163,0.027515489305295043,0.0004159111253217539,2.749901496521832e-05,0.0022159116722606986,0.005619257173521135,0.019135031343942527,-0.06433883241211197,8.72370093213049e-05,0.02537043803335567,-0.024348050630769214,0.1388095583991414,0.059803346514560735,4.9374946940164694e-05,0.0027579404813134387,0.0015702956183116412,0.0013315627441710315,-0.013252831211924271,0.0023000790162804566,0.019313221600540827,0.012860543124897024,0.10359713041057578,0.00808839855048229,0.00010215595590639266,0.0064154186847521924,-0.00812623603343267,0.048244910228585985,-0.018460306118470462,0.0002608231657795418,0.00930641691852434,-0.017231777284732415,0.1077502655054801,-0.003962222238058803,4.504770599338507e-05,0.006514376465168671,-0.04625808640040994,0.2475192279540829,0.02236712618652743,0.0003080105049167381,0.030102625837209313,0.05086211514166943,0.6622711840113163,9.619015883993892e-05,3.187049354811436e-05,0.025002467067191517,-0.008733498987626497,0.09412600976564528,0.00402219962911669,3.099990301022745e-05,0.022887637707736296,0.008950867937661491,0.027629209083724165,0.00013794117540766605,0.00010435648738062112,0.00038347367446759707,-0.00634534722033766,0.04553423777849927,0.0005084959267555139,3.2189163949002675e-05,0.003791016227422367,0.0072912727563965146,0.01827915813021775,-0.036589649829717255,8.843507272932e-05,0.0009223858898629014,-0.005779652128969159,0.02313697998022896,0.007372943189249944,0.00011422038620981462,0.0073307844675486915,0.0024223659592769054,0.002414002230592292,-0.003867518789148383,0.0005735584061032872,0.007477422788678049,0.024109953937616266,0.08391749100807885,0.009012503980760311,0.00012092884335908005,0.0035907568697496465,0.013114467595189491,0.05000507002413605,-0.017713110330522846,0.0016832778136145732,0.009929126636563411,-0.014311963246928317,0.1337626149874896,0.003819724040073288,2.7513551730420247e-05,0.0411752061324404,0.07691996933932567,0.24111437378158493,0.07988984330565319,0.0010430071150907417,0.028829394010907648,-0.049921450821847034,0.43928795261911396,0.07881966310234591,7.56769374868982e-05,0.01699937394252754,0.003757518868818377,0.0053461350226912275,-0.011494470742043445,0.00016588481517908467,0.004915548246965068,0.031668729041342894,0.04406788136225934,0.013899787868928074,0.0004124890046601755,0.007669988583138988,-0.005759106998020303,0.02411928586619339,-0.005243869011304349,0.0018507213865283953,0.0024490067062998186,-0.006087805070030601,0.026757853500379937,-0.0039456414706298985,7.299613013498695e-05,0.0032849857969584314,0.04073281780440333,0.05254915588671419,0.025696121453159554,0.0019268854715579168,0.02344437460259553,-0.07493095750927804,0.24034409264319914,0.1739210013907785,0.0001235218724970835,0.004881627727341477,0.032922101513547575,0.0923945942450655,0.012928688941907785,0.0001444446175112775,0.018898588318719857,-0.06711594269444955,0.30453275291237974,0.1834205387432775,5.379050370861176e-05,0.004272242107261653,-0.01638570603757689,0.05830587261083134,-0.00029948615127298124,0.0026636117240686876,0.0020717544218314485,-0.009045924346727106,0.041117192673669464,0.00016281943602009668,0.00010943848366360222,0.009110995081978813,0.013650737560636466,0.07855036644395502,0.009540767017061079,0.00012602847649821025,0.01152700651850985,0.03341309978983832,0.2220155093680788,0.03598324910939381,7.118396131622444e-05,0.01717813964551255,-0.027280431184694254,0.11096950840080502,-0.09831166220294697,6.178669470472355e-05,0.022795063664072034,-0.024246568065576155,0.038478557026454835,0.0015681310629188355,0.0003072280700143853,0.02816493709111208,0.01137508621598853,0.04656796682803721,0.005644363442098998,6.07409801968041e-05,0.006595889447855165,-0.026160103939686305,0.2486659215017128,0.016073207485283257,2.7142789544448428e-05,0.011506992443640314,0.005045186283829434,0.01632435269312412,-0.11841541268719029,0.0001080314491008067,0.002818096247054572,-0.02015211547063867,0.08618513635487089,0.00544921927375612,0.0003685668244816486,0.006318247811393676,-0.013901666370531824,0.06310859860723488,0.010913543243413558,0.00012616826218896822,0.014398436538240985,-0.00021733442886062737 +2017-10-11,-0.04720359587409436,0.3412462642894426,0.10456364473409428,0.00014628296745841117,0.003331240938935204,-0.049920678081435466,0.15261824946173957,0.05142574392424313,7.848461541733403e-05,0.009556387360631196,-0.045761676334050594,0.1311228881215063,-0.012555140128265826,0.00016144352188354587,0.022357364201245487,-0.010925435161495668,0.010240172482857142,-0.0033429806103047383,0.00036008027238233813,0.012074637455965317,-0.0048241663369150084,0.01152728490563853,-0.005191248480811771,0.0002189742355756266,0.014563771652451535,0.005886386987167286,0.016954423001676537,-0.01984724337326027,7.580756306864426e-05,0.009778893508771334,0.01308907448494994,0.04687835129101911,-0.034408215975025906,8.19268892631063e-05,0.004995438563620565,0.012903524985014694,0.11773908560691437,-0.003997431873815163,3.7582556836491495e-05,0.013716712524720079,0.002565896517857248,0.002260752633236729,-0.0015539753479362332,0.0008752474993794008,0.008834154321407772,0.03594514726411749,0.08599602591030567,-0.015048753746842669,0.00014615839716958766,0.007621029761358575,0.0022306205125517974,0.0015393932834306032,-0.026339545338003496,0.0007082726348418433,0.0019031120090053722,-0.003205407599571476,0.04451153483598386,-0.00011888834456041478,2.146018600600573e-05,0.006296232067846565,-0.013792984350363684,0.0401297991418118,-0.0195721199757883,0.00010210389163738732,0.012479161187101233,-0.022820195595954523,0.13112076552554125,0.01819862578429439,4.899025553095811e-05,0.012447246111908438,-0.003935736004482998,0.0038292447740456144,-0.010996690940885017,0.0020046372864369025,0.00834300435749167,-0.008476317677952276,0.05462091327830589,-0.0056049947436641115,0.00012770278696274328,0.009883115307573492,-0.03503627307248517,0.15439087409895155,0.018901495218181658,0.0003514022261777521,0.0012904461001732523,0.0033598715706384978,0.016796287979187485,-0.00677704284937313,5.634693802566181e-05,0.012407092347199026,0.01436183567941551,0.07706339398278789,0.0017390196019054613,0.00030714866275012164,0.021096566495753886,0.032781626432575685,0.4294746284506255,-0.05485622251151861,3.1675480786581606e-05,0.02416895935938275,-0.008187828315462551,0.08385735291044662,-0.04326607427196652,3.262190267221921e-05,0.00860878572486868,-0.006338000209225587,0.01693830707134191,-0.09003228098154498,0.00012053273276264112,0.007092921326388947,0.031164338613955102,0.20517540972302684,-0.009359486726796479,3.5085282782564794e-05,0.006707588806488572,-0.018265376651039913,0.06126299247256955,0.05789584446785379,6.610096623596068e-05,0.00021979677694157745,0.005131168826569944,0.02084267611299558,-0.03544197236440953,0.00011256708500603575,0.004066284079869813,0.006142958649417767,0.0059552395662403005,-0.005044624064424281,0.0005895951690899046,0.013951480833178601,-0.021927352652399097,0.08352067254886228,0.015251786753802144,0.00011050405820758232,0.012623201114787241,-0.05332800994577944,0.18511816758328203,0.03001183271408692,0.0018489514574454593,0.013522168778715416,0.009933766388715234,0.09552668056092622,-0.004082965461243887,2.6740618679743874e-05,0.004286616683076303,-0.07126431565887849,0.1916228333060865,0.09440051296962298,0.0012158951650430596,0.02162126018321669,-0.010967155424072427,0.08578901571657016,-0.00596968425527309,8.513104342052065e-05,0.01918124346082317,0.026386749254180452,0.03720002204256014,-0.018646991354416737,0.00016741257606563319,0.013542206561364394,-0.04410047591621259,0.06908158021025837,0.09215849235007552,0.0003664248567566996,0.0033284569006153016,0.012545193656512063,0.04418571476084891,-0.05457878657172742,0.002200623904836054,0.012584299333015778,0.02923664461121281,0.09542512598881595,0.05627758617091546,9.830037103042889e-05,0.007842519788667193,-0.0021076600081113297,0.003139581282463971,-0.15036195290020443,0.0016688066266602563,0.009217100385713162,-0.018716689444274934,0.059685607352815986,-0.06342373227801461,0.00012424400813244998,0.01444133875212917,-0.03766015591386351,0.08966858558314167,0.11037015637341445,0.00017025589987348198,0.0036859585454858887,-0.018205057432877314,0.06993006098045347,0.008413904250179823,6.353924813074691e-05,0.010932842104706643,-0.07462299372465186,0.21618163718811212,0.0502264403975426,0.0032716883271505727,0.007099585890815036,0.01281153065983045,0.06681573813806027,-8.38987880010779e-05,9.538120842136043e-05,0.013839131160660125,-0.008777133338076148,0.044388123424351,0.0018251876761353509,0.00014339918909299595,0.002066569869525856,0.0037374605577781216,0.02362883115657414,-0.08480246573172787,7.481403489630959e-05,0.00037115976089209025,0.07807922504819156,0.3819097060673835,0.1077719032818307,5.138332373304669e-05,0.003303804955034356,0.022045596568382106,0.044292260155512075,-0.0025125100824781223,0.00024267408878128044,0.0020968070829471322,-0.01681834368056139,0.0664711029837872,-0.02999329382391293,6.291652295687344e-05,0.01598522515231959,-0.0071068055645578205,0.09595497220884792,-0.004239510370005948,1.9109012089893515e-05,0.0027922858327997704,-0.030222847048224734,0.0892565535149745,0.06709238174043398,0.00011835980051110068,0.004579284389909277,0.0031612936324262346,0.011637330029693554,0.004343898276324334,0.0004281928948049052,0.009787175920198912,0.017137959724959115,0.07974571548922299,-0.018951546043004145,0.0001230902219899904,0.004065729279852914,-0.006194630860928311 +2017-10-12,-0.0008372125821639562,0.00539332363006669,-0.0018695669493822109,0.00016415943522265068,0.006643044282668333,0.044200981076248806,0.16810983012039848,0.10203598559740416,6.308837283015168e-05,0.004525442824891097,-0.0077781948688781435,0.025559208471715424,-0.0024632703462979352,0.00014077600084829242,0.009274875286925943,-0.027548798103114412,0.03179390581967758,0.061954684618461583,0.00029243316800851827,0.005942874305950373,0.028226375525178517,0.06468690657134192,0.08228929671621042,0.00022831608266139398,0.010492402173585238,-0.005706529270948305,0.014812377813767697,-0.11739274392337769,8.41189819860815e-05,0.009206214570194955,0.03567052803447145,0.12459551212886882,0.046698456116121986,8.400342508286297e-05,0.00270338379374629,-0.013139229832218855,0.11256008769197146,0.00983407931923059,4.002986275730504e-05,0.008418135836487805,-0.017512159439820138,0.013473431025180553,0.009867939551500992,0.0010023197452268453,0.004093808697034981,0.000909387130741518,0.0019730425594053237,-0.0534755380990411,0.00016116630053084855,0.009004566503757899,-0.0011702567192158017,0.0008542448613712811,-0.0026060094564041487,0.0006696118437133876,0.008253183911674533,0.0166355815664352,0.25405139180568526,0.04058217638976621,1.9513680905032926e-05,0.005641212257452638,-0.03342274959661667,0.10880318817803951,0.018269962570773002,9.125393306772663e-05,0.014155515945338964,0.009428008097262462,0.04958517452628368,-0.05125843533372725,5.352170241703109e-05,0.004998191170054127,-0.05186555440266826,0.03943476116388394,0.04740873017406843,0.0025652091610467564,0.008931878526405644,-0.0031831230286570814,0.019774159276004028,-0.13235093250172406,0.00013246694005379032,0.01396443219651349,-0.016158205286156788,0.10170553943352009,-0.024558519482744408,0.00024601225722254317,0.008462242078674815,0.03414278203185542,0.22019624846745992,-0.04121024971546403,4.367671289746888e-05,0.023581049469974153,0.03397620939488119,0.14780861763580405,-0.051563014229623574,0.0003788453636454651,0.02353861759022741,0.009660254391832367,0.130297841841307,-0.07043502566582178,3.076674641770611e-05,0.0030972394500156254,0.004767720905578485,0.0531447922790116,-0.011049685648136446,2.9973110843780358e-05,0.002962562019566183,0.0631238421689098,0.18240091903160885,0.08130414235926484,0.00011147799752244881,0.0036308832914949173,0.012180196991313473,0.0835592081395472,-0.06562673454130245,3.367071762732546e-05,0.009922186451884972,0.02374033089549769,0.0771440274848507,0.01191563767573014,6.822787446760761e-05,0.00891539533133821,0.010955579925582964,0.040922288228270244,-0.11120529130661766,0.0001224120179383919,0.0036300510834569692,0.045747171369690996,0.04165260819575851,0.05434917174092201,0.0006277657336785828,0.020891846964030382,0.0379759083860564,0.11415279011756728,0.02628939276527507,0.0001400256666940099,0.007090982553434632,0.08349065129219746,0.3189667435101591,0.07966765274418283,0.0016800090418099543,0.058365536462839124,0.013279943852561324,0.14627422379534355,0.0006368890679458193,2.334590059110442e-05,0.011131248031475966,-0.005192908428449157,0.017296470813640333,-0.01344890886839642,0.0009815771404846324,0.030283246028701218,-0.012116693044076008,0.09615637072939595,-0.040674525291349496,8.391347105986173e-05,0.0222773941425004,0.03754273018325407,0.05006803678135297,0.04094788646973436,0.0001769744926149279,0.003531484103175965,0.01128679847608004,0.015696812865761498,-0.046351118265407165,0.0004127273071632407,0.007318451477270357,0.004652965668368757,0.020189299589175043,0.00143547586879104,0.001786318667358736,0.02858682857815459,0.0072109918979642515,0.03071442816179913,-0.02075970066317058,7.532565970553734e-05,0.013568168694498353,-0.03701425178878993,0.047372683669804794,0.06185020068180623,0.0019423083555578187,0.04067794177342475,0.03824074408057422,0.11265373148514674,0.08408884841318258,0.00013449210437086658,0.01200448381400173,0.005803652391058594,0.014548167318896318,-0.03500275465704758,0.00016171618273666936,0.0038802563782511096,-0.0015609754522063672,0.006061535527226865,-0.0169379310862427,6.285319276471514e-05,0.018112516359407197,0.015116229041888994,0.04617196182466568,0.006857943594597437,0.003103010132990393,0.003049734241354882,0.025575545212994023,0.13683722950737498,0.02081765675019744,9.297393210415171e-05,0.0017860187376688144,-0.04256772784189969,0.24545076140580918,0.1176002038975551,0.00012576994471051478,0.015461350366122742,0.005735201222103093,0.02779052316865214,-0.022644855576900977,9.76114211931573e-05,0.001894004467418919,-0.014578080483968343,0.06352532723285398,-0.01615445931169601,5.7676756250874926e-05,0.006855138149694484,-0.043523353597882286,0.08977305715438687,-0.032831333238884,0.0002363772798716125,0.006011218656730754,0.0197818302470264,0.07276536693039193,0.02972868382519323,6.760146737457087e-05,0.00014613408918428986,0.002388598291161895,0.031919194353353345,-0.07207661235876077,1.9307341647929192e-05,0.005796351603914099,0.00011367182797735683,0.0003734317878057611,-0.016010413978221397,0.00010640217968674899,0.00535711907937035,-0.02951298787718048,0.09889421256421732,0.053634344403834036,0.00047040320663682575,0.002936630392259091,-0.02909489275281885,0.1418862785094043,0.02611336802542995,0.000117448685044356,0.013055393769963642,0.005527891068254569 +2017-10-13,-0.01924315514033748,0.1377767069951888,-0.03312999075940505,0.00014770223419834143,0.012830726987755033,0.039545812445409376,0.12926597904484746,0.0593993234701557,7.340519370637832e-05,0.004968914417974214,-0.04031255465046582,0.11987081619588584,0.01720518281169834,0.00015556935919181154,0.02688540729792017,0.0226856965867434,0.023917138135948788,0.10221302449740331,0.00032011849298318497,0.0007191573973887545,-0.020710792319596414,0.03962488474380712,-0.006949714529960402,0.0002734805685102724,0.014261990234070503,0.0134919449035022,0.032249830785874435,0.02190937571206274,9.134690948827479e-05,0.002466104845517997,-0.029238690013296903,0.11347576253498637,0.005894613860752295,7.560397961604497e-05,0.020849970711618888,0.0003041806644501374,0.0022674688941856777,-0.08991424444998268,4.600328879869438e-05,0.01627783650471258,0.0027394812926837377,0.002198821911344989,-0.00502414767155234,0.000960778043461852,0.005896661305295973,0.025141708551675194,0.05859236206070177,-0.010486841520115255,0.00015004297540009993,0.008186827366228342,-0.006316000605485755,0.0046463970889729315,0.004698041571754904,0.0006644314769208628,0.0006514701443252695,0.022754044948513488,0.243859713534489,-0.005318213738585383,2.7806180768363346e-05,0.0029036110748511717,0.06327386520414732,0.16773565755280548,0.05411344951814596,0.00011205984238830797,0.0017967654825015408,-0.027206938970458838,0.14338129114706386,0.055618587641711695,5.341325121455641e-05,0.0016984297585535492,0.012591173732047049,0.010985800973809655,0.009430796647020012,0.002235411403785903,0.0065633208753620425,-0.0035978986622686258,0.023804474143515355,-0.023227471850921465,0.00012437767739780035,0.012600267917023391,0.024173200064881543,0.1288262210032872,-0.007912095436127276,0.00029056152818349585,0.0017882252223560917,-0.06032818925387835,0.3783377157319212,0.08417973097854803,4.4916055395899004e-05,0.02856765698045735,-0.032685096899202806,0.1813970846555023,0.016725179717026153,0.00029696569369873013,0.015344599285666505,0.059762405406207246,0.7952255766602603,0.07276076656431116,3.118659502981191e-05,0.023123977697506647,0.002523248342257605,0.028114471210931125,-0.07894824865427905,2.9985533912647053e-05,0.008090386087738283,-0.032626818025245675,0.09624930388122094,0.04215615445535745,0.0001091942775645918,0.0363750226372603,0.018293696593341156,0.1277785552013851,0.00564252593928429,3.307012791429365e-05,0.007989575488192013,-0.0124646523112632,0.03639105298189483,-0.021885506517636367,7.593865992356052e-05,0.00397721477392727,-0.009529688428831304,0.03913231187970391,-0.01642947147521911,0.0001113504024858362,0.005719725881005734,-0.007310502855008706,0.007416767716700952,-0.009132033635476695,0.000563388703546999,0.027601702945468907,-0.0190262485935649,0.07307623928302201,0.02038242304533331,0.00010958799638901605,0.0077342753369488825,0.0239784101654427,0.08485613773432035,-0.0019049966836543184,0.0018136617703179755,0.016561631332090043,0.014215517925415944,0.13811585464016174,-0.0020327318369606456,2.646679463130849e-05,0.011956557427716088,-0.006369416441771243,0.020313697180192377,-0.007959341499662468,0.0010251370747271602,0.007405961310230654,-0.035142044026032486,0.2821088612101204,-0.054207975627700355,8.295373289194223e-05,0.00031488829716606404,0.0028545831035326928,0.004043635878230562,-0.00018569736975084688,0.00016661574365536055,0.010576736450682096,0.040475942218660986,0.05239580314443011,0.019818073603664547,0.0004434088727987362,0.008850477373839405,0.0273801329727417,0.10658397695772617,0.04032155576826118,0.001991104129773929,0.009780881477166232,0.032725976391488616,0.1107269763873357,0.04983133685361565,9.482646093157264e-05,0.017868463210355543,-0.062473152553694976,0.08452339608236949,0.0038361537976929834,0.0018373575384946722,0.001065267653078096,0.01631848081265845,0.05875183962962776,-0.009692874042801747,0.00011004600777767879,0.011484607138386328,0.000565796078640524,0.0015132243533196544,-0.001050179436225649,0.00015157130408521917,0.007468679645711416,-5.302789517157351e-05,0.00018254863629850712,-0.003769611145608793,7.08989365686392e-05,0.007137357622598137,0.0049697555459130086,0.017066711849016883,-0.04250800156073563,0.0027599628030631185,0.020355172122312547,-0.0033186066051779065,0.014606289758618708,-0.06798487913469684,0.00011302029383483084,0.0023081053551890565,0.035294866421253276,0.1980118967965674,0.05786461240343055,0.00012926502752283703,0.0077211153390904005,0.029107515889559225,0.17947593614857046,0.04705296433426442,7.670922846062588e-05,0.023701092113715242,-0.006412556158459356,0.027201591564043975,-0.00039689133717897806,5.92494415186871e-05,0.012314971612724,0.02214657213688653,0.03128073424020347,-0.0033233114108655068,0.0003451906080224366,0.025764417136049555,-0.02721962337115074,0.09971177611202642,0.027166132806771732,6.788128194608445e-05,0.004877734151922757,-0.021148097940373974,0.21967276675075068,0.03792505865829349,2.483855795614403e-05,0.018200842784057703,-0.007278309670933091,0.01960944686870468,-0.023378318800463323,0.00012974007678588745,0.012101767243660981,-0.010726022295699212,0.05246872912909805,-0.04799628928734768,0.0003222301112374175,0.007089085768449194,0.028386769027114237,0.15660943910558695,-0.08967195529179499,0.00010381732295604042,0.014297363112445468,0.002071789478358777 +2017-10-16,-0.027944038709554322,0.19011261029092827,0.029591270155968515,0.00015544073218985957,0.010565445012910207,0.017349917812581318,0.05752780057402268,0.01116777461917038,7.236526856496462e-05,0.014731549769285687,0.006993673527628248,0.021911596784447533,-0.023441919294131554,0.00014764832760840458,0.02306769506454487,0.007051986231829349,0.007219034430956962,0.020285908543368245,0.00032968576731291245,0.002760858364036643,0.011382895241500896,0.028279773509193577,-0.009307471328746186,0.00021060786442845354,0.019663572678427214,0.013807618532220452,0.04098409114389965,0.013144678942515147,7.356143815301936e-05,0.0035562067245203614,-0.028480265526083185,0.102472199053642,-0.021787081323163964,8.155072623363238e-05,0.03144986367985151,-0.0022129104258628387,0.021646189764008318,0.0017384768506602613,3.505750365508888e-05,0.019303905284427433,-0.007046077212890489,0.007068044549218537,0.0024351582978077804,0.0007687637674852073,0.01689795289119219,-0.027785402954951233,0.06339885855015015,0.057440062044181596,0.00015324882278378095,0.014619949835101597,0.004186827289446129,0.0027333180752175997,-0.027367161047423417,0.0007487196497987642,0.0049396202062820475,-3.67076322795821e-05,0.0004710558969100429,-0.0003986466321471915,2.3222379447394965e-05,0.0035477004732819527,0.027149807135333236,0.07643743250503304,0.004175952819100636,0.00010551439079162495,0.02732893004305829,0.009717681127977662,0.05762199487260667,0.022356061180668383,4.7471851787337746e-05,0.00314759112597053,-0.00019231299443224896,0.00015527617923473034,-0.003661456829453713,0.0024156097094802298,0.00866396894706111,0.008972590999589383,0.05586778252631538,-0.00935857946964976,0.00013216259137252605,0.0014142274899069257,-0.05353791475069894,0.32427644700922276,0.06572581975692862,0.0002556549922899699,0.0040667112697720005,0.018950359878503197,0.13088563271087972,-0.02795946961726209,4.078368287246342e-05,0.001529142765790324,-0.025587844298793908,0.13375377728668997,-0.001506280760557819,0.00031529308885993516,0.004160506329550936,-0.021000992935484,0.2894619672782348,0.03628685665700168,3.010776729728635e-05,0.00903527466030439,-0.007194579814805556,0.07129471653933528,-0.04799667410051295,3.3715514959756706e-05,0.003858110941214661,-0.0036080498246321914,0.010288975545628689,0.007044417447646581,0.00011295960030598606,0.023224175819770654,-0.006208491119496021,0.03977017796275861,-0.1596831000944715,3.605960008999971e-05,0.011062348446635508,0.027262916330709507,0.08794679909530553,0.033620466987892346,6.872735899823782e-05,0.0057291159533987435,-0.011127143046106487,0.042209302088235486,0.030243548167432428,0.00012053803169591636,0.0015445346519154324,-0.05131024282877098,0.045454348605846816,0.018681714749665724,0.0006452146102249934,0.020024010962675254,0.008328111110968579,0.027758149350861527,-0.017887287767646372,0.00012628216291007778,0.006053054927660732,0.016977963339915626,0.06429961708741498,0.0015980555363017763,0.0016947138531110226,0.009261541763027185,-0.0080612056803942,0.07034868871225712,-0.1225887417291873,2.9466339672732136e-05,0.024742148127731886,-0.010463236340606412,0.033024573276932395,-0.05854875083779435,0.0010358576799268221,0.021221522056651915,0.008842512124853005,0.0641440863045121,-0.02262923421630852,9.180042334540918e-05,0.011534443869433196,0.006861396391728654,0.010558062772191894,-0.07018981418833237,0.00015338173863709332,0.012183565314121281,-0.014558180765230742,0.021166298001178165,0.01660059390078636,0.00039478997421590325,0.010844195915411588,-0.036859995240619066,0.1421676073295007,0.062434019441399674,0.002009578435049542,0.0009558408012121859,0.02743022693457616,0.09910528971698526,0.035566548073308814,8.880203854133811e-05,0.0027291497189671854,0.056345874638446425,0.07401618301017387,0.07942121064511684,0.001892398658793573,0.003126990100501021,-0.008052285056417642,0.02747180532157001,-0.01387858806612965,0.00011613094955739476,0.007088547582392695,0.03190483813448938,0.07605679435607114,-0.08266998013984489,0.00017005088829961232,0.005366792475442896,-0.040881857819016446,0.1713950856743801,0.045698803180224894,5.8216512216142405e-05,0.010824017761779457,0.024256382089983684,0.08044672444104851,0.016165797159447996,0.0028578255683510798,0.019070568751159055,0.011151840655937027,0.050755756835013335,-0.016851280627222118,0.00010929538342596726,0.015477295867612657,0.004530725901216717,0.028091069876862957,0.0006988156017382267,0.00011696617648658716,0.0012938438548026803,0.0056031228425225755,0.029992476248826623,-0.08171156749635058,8.836219978692495e-05,0.017128738973166746,0.04653539317798189,0.23792574911555267,0.04469231223413855,4.9157448980848875e-05,0.009359866271149906,-0.09131278108534342,0.16376567130721406,0.11878189177893629,0.0002718554816235017,0.00016516458130461141,-0.0013789522055267264,0.00494289728032586,-0.0780955452355713,6.937164680920479e-05,0.009775546235177214,0.024891922285357568,0.22342439237565004,-0.01939929334973918,2.8744789748132906e-05,0.009063399551920372,-0.0005862261331209262,0.00192241518083849,-0.025339246284198567,0.00010659257456178675,0.005589119604122171,-0.023476637687739853,0.09838342111332189,0.02472724895944707,0.00037613344195550134,0.011182685170567065,0.012866124654663105,0.06525903097972229,-0.028218220006133225,0.00011292209583103683,0.016703649777209385,-0.000619375782182959 +2017-10-17,-0.020052172765229033,0.12818074869901688,-0.014846714818654844,0.0001654341703139992,0.012663043481777275,-0.02577952580594828,0.07888927991004277,0.009774608492976377,7.840927879755998e-05,0.0030881988028167127,0.0010605757341345644,0.0031725855233046183,-0.000209106138048553,0.00015464132159175012,0.004547528523068046,-0.016590572979605405,0.01591112191711737,-0.004688168650832751,0.00035190743136808415,0.0002676266837253211,-0.0261107762399331,0.054782450165669815,0.01765516817504051,0.0002493883162018619,0.004700493207481375,-0.003737353401282488,0.007224580548382746,-0.011355528829885136,0.00011295312966256874,0.0047674540590865785,0.01630040008257885,0.06357317775693203,0.014707306678476464,7.523400795308733e-05,0.02321719636483045,-0.04748544461570455,0.442595645338481,0.08492865441899752,3.679188055329664e-05,0.004912280292380946,0.022295503730175907,0.01891913950898668,-0.014324124112097204,0.0009087840494604453,0.0003043748928499402,0.045041954705984724,0.11124457879136439,0.037395825129895734,0.0001415794627338576,0.015951683195705703,-0.0018587603346197905,0.0013467379333091316,-0.007735798795106569,0.0006746284646521952,0.005542429899938629,-0.013509696363326931,0.1771716503397102,0.03475202906407826,2.2723443613430792e-05,0.0007801279728262055,-0.004918643787391175,0.012695718658027079,-0.01651378379211215,0.00011509040539875815,0.02080849727896108,0.010898193162852982,0.06443046715821285,0.03154353513065636,4.76129444078672e-05,0.0016535385019891377,0.014439084981069538,0.015399155928670765,0.010084185941380665,0.0018287979592895324,0.017398381937928333,0.04480607514808697,0.27225900628815475,0.006976570372936917,0.0001354274670102884,0.018625352946357664,0.022195744749523214,0.11847716537408166,0.01971217461301213,0.00029009704085871063,0.015751417177121186,-0.024355137961659484,0.19233630933587034,0.00952481337690912,3.5668945620433165e-05,0.01701371996578412,0.004383721194117361,0.023630933256771822,0.000399198526945142,0.0003057376048481031,0.02359693354739932,0.008508493745541733,0.10205679919466346,-0.1141432003109603,3.459720156329616e-05,0.032653733447194015,-0.0257559599254556,0.3300156132049462,0.0724049746606716,2.607503876229661e-05,0.0031834742100391596,0.025414700196686835,0.06705972453322527,-0.026285875764719777,0.00012208041069434607,0.0023389145102241916,0.019071680833171324,0.12346811377786363,-0.06512688056611057,3.568013860259311e-05,0.007069705942124508,0.006776536036994048,0.021043279689301902,-0.003966575948227879,7.139564262906986e-05,0.008915560205631858,0.007183372380293447,0.024681107990619042,0.008019254761406164,0.00013307985648384248,0.013180939001320259,-0.045180184355680254,0.03769249963921461,0.033737495933529996,0.0006851231158680743,0.02324081426054032,0.0016742210428815115,0.006342708186397149,-0.0027550180866178636,0.00011110256212804455,0.0094842071884382,-0.015374401641707391,0.05238895229008877,-0.011375672526446964,0.001883552301147909,0.06430799039149046,0.022487257100326282,0.21456285857043694,-0.0028721181131875447,2.6950332893898202e-05,0.009449860372162795,0.03393662163006339,0.08876508568806965,0.013650186248400491,0.001249964559399927,0.03125179922427034,0.030744664571912272,0.2445661639377799,0.058333320626705876,8.371418062474492e-05,0.006157596260104259,0.022087397212844875,0.0331625941269944,-0.01564027058328319,0.0001571959787381213,0.00321872184474815,0.005986123323805177,0.008100880970235461,-0.05554511274292015,0.0004241479014897307,0.0018126583562942072,0.02544775578481113,0.07929261284978213,-0.03238818125546666,0.002487522974408339,0.015607327929922418,-0.01203399688398503,0.05467655278635004,-0.032665222826180056,7.061535381762835e-05,0.013501755828731123,-0.020345816645329796,0.02537692912997258,0.00460131279182843,0.0019930273171236837,0.002173392135544504,-0.013018937210882863,0.03772142841486944,-0.0018498146843148294,0.00013674247585003846,0.003767020675195902,0.005133810533213912,0.012979230341093292,-0.17159490387951964,0.000160343468139695,0.0212118848419891,-0.013250665362753504,0.05472730342206394,-0.05834212954455732,5.9094567927217394e-05,0.02984223628122922,-0.007211839588737409,0.02441567739214375,-0.011750782861658827,0.0027995958320757783,0.005579839194321921,-0.001056171243438357,0.00458395919774091,-0.41173306312627284,0.00011461307541715623,0.007733332827545571,0.007096951027774828,0.04194508850260171,-0.012834987515358167,0.00012270195369088526,0.008524073480337254,-0.03709450855139561,0.1796695554418944,0.07784336031503604,9.765260366978353e-05,0.017987100962720683,-0.042733793395376383,0.19388896329082497,0.041522434832139535,5.53943859288948e-05,0.010936025782892335,-0.03519648203069273,0.0670162973128876,-0.024693807351394738,0.00025606382103783777,0.004153321416463117,-0.014568831376470201,0.07005863697434096,0.007891290134714238,5.17103418597667e-05,0.0037345505293133975,-0.028692027611667285,0.29011099052071027,0.07402382484107954,2.551692538644271e-05,0.03494034745982218,-0.01405212745263534,0.04677950037924524,0.007796872233145245,0.00010500149091127319,0.00432313773544952,-0.011072721291247471,0.04837153170161138,-0.025003357410852533,0.0003608215765471684,0.002795805461654889,0.05326136648128862,0.260718900551403,-0.019056621359318557,0.0001170069299814731,0.012736575312850783,-0.0004931306263742222 +2017-10-18,-0.007449006513262584,0.05368446923216846,-0.03823186919021112,0.00014673586422442336,0.020971628978536105,0.05222964645415334,0.1783011035525293,0.07735009261632542,7.02867692825657e-05,0.002422883530158967,-0.0096568691353994,0.0342200521109884,-0.029356145403730896,0.00013054278811651043,0.02732925476299736,0.005151192315144594,0.006392036196324815,0.016927912520721913,0.0002719796401784859,0.003377259299872249,-0.003731085193971181,0.007609141023818595,-0.0007855837473731926,0.0002565649374674039,0.0005817296922416219,-0.007326926284485051,0.021062474411570373,0.001925591091096107,7.595549028101904e-05,0.0050179793077245625,-0.001313533546858175,0.004014705582269987,-0.002166118625140271,9.600134601019657e-05,0.0038843394446186246,-0.019249412443524676,0.1574960037619646,0.01457934354007866,4.1912788298645755e-05,0.008733685453383294,0.013323916879939784,0.010997793463096978,0.012587395899293745,0.0009342672858121828,0.012378866357418366,-0.025970006652026777,0.06806074999818476,0.031953157820167576,0.00013342500162035975,0.0006711377781546774,-0.010588099650288686,0.008107165744947019,0.0164220823550028,0.0006383712597882345,0.0019086828877018461,-0.0022429113317389703,0.023868389704800878,-0.015719827231412502,2.8003465161915208e-05,0.005552535877034797,0.0019276828658565397,0.0050318338326745034,-0.007576262124270669,0.00011380473560667481,0.011421371376546039,-0.0108711619053892,0.059482772105455335,0.0016993820261564738,5.1445404008479326e-05,0.00707028470814066,-0.03058027411635893,0.03334109961012454,-0.05792564921608149,0.0017888932591672404,0.00990010092932695,0.0114386976754833,0.07266850692253561,-0.10268420513483571,0.0001295336050168434,0.009780345806286016,-0.021623069319660144,0.10825870371547987,0.0027202507011943222,0.00030928777190523146,0.0076810880552299655,-0.012263568021467922,0.07318224028742402,0.002530725744395905,4.720327160296296e-05,0.00661429774551332,-0.00041731360444435546,0.0028834857243553286,-0.016381411107066972,0.0002385237039769129,0.005306330392823725,0.007089253244086256,0.08184853007622088,-0.05484556645868859,3.59434564090205e-05,0.011628596221386962,-0.007671371884697312,0.07841016720878992,0.005638825420862018,3.2687549630642764e-05,0.018153044231335774,-0.018597481651197262,0.0405973967035432,0.01948732590094544,0.000147563419033937,0.005477161897152331,0.07588424210854397,0.48823637077729815,0.15526092629340407,3.590160367683566e-05,0.017326369304681986,0.007897854239434156,0.024759156150823747,-0.06765689957153401,7.072136878982988e-05,0.010310669430901004,0.0009580311779329847,0.0039008775467179427,-0.0005631478632326278,0.00011229642252920867,0.004945406698337249,-0.03438430237634487,0.036245359356923426,0.010158738074216337,0.0005422297835576028,0.03984560261181032,-0.027480084325443226,0.11005662675835368,0.029699622000610396,0.0001050964079292086,0.0012979441491014064,0.00917115198452287,0.026631756542126087,7.203693823612476e-05,0.0022102594360188846,0.016276810320254,-0.027940733896598215,0.32790786967990543,-0.01576146255825648,2.191130099343362e-05,0.012937411045321544,0.024509175582939757,0.06059112018860846,-0.013604490238020055,0.0013224857197674266,0.011241525141222211,0.0458977606213152,0.3816248311904524,0.09513711247652572,8.009040957539651e-05,0.006635320997624446,0.029126707438711402,0.04949569748830079,0.020427401985613665,0.0001388894733736387,0.0038888438745911073,-0.02017195362955004,0.02961053645572699,-0.012002187079073275,0.0003910259675945189,0.009113700110640336,0.0064540437092627185,0.024632728249647694,-0.005948935509038188,0.002030812031679516,0.00886109381302686,-0.031445127965507955,0.12045404021663277,0.03915104952910559,8.375724144015166e-05,0.013137139527516049,-0.013758432996377313,0.021144083393993596,-0.04506848540580766,0.0016175484652746885,0.01739447136714502,0.012989183911528713,0.039089877966891264,-0.011774925379940794,0.00013165385726494671,0.006339789868304005,-0.000654294499739294,0.0017938044983107117,-0.01565936845508525,0.00014786266750854831,0.0036231807248341633,0.029459387955555305,0.11548072296593385,0.03452619402217342,6.226272880068287e-05,0.027305687186152575,-0.0332512565639752,0.11036013266017526,-0.07202441322629527,0.002855708709112655,0.05057043166596099,0.021292168101690122,0.11965530715915164,-0.03995149304565665,8.851736779712177e-05,0.008464099635791372,0.01162612017917831,0.06689650180007412,0.0020589213134542686,0.00012603529563300298,0.0025412194080162986,0.002082754174384134,0.012269365124854574,-0.016958018577685106,8.029058486150212e-05,0.013661556114105996,0.0011073522614260436,0.004670016905599304,0.00011827230664641167,5.959567444717967e-05,0.019724133124510004,-0.009642204515534603,0.017924567593930834,-0.009508231477820992,0.00026227509028790017,0.001158591791369494,-0.01723014507329973,0.06034920816973277,-0.08827337183637332,7.099564903451646e-05,0.006914200482228313,-0.07020150106241321,0.6722774651859926,0.26233030951289826,2.69419564608887e-05,0.00472360624189681,-0.01468739938728765,0.04968475949230514,0.005760518274233211,0.00010333101068206645,0.005749606475770121,-0.004848411268372558,0.027608097925355,-0.029419715319852265,0.0002768158389492852,0.0061876048832579,0.0010980676708092507,0.004894451613028332,-0.0002866480137876933,0.00012849814607838602,0.009740769881932444,-0.0024980182104262726 +2017-10-19,0.02150953691011081,0.1339716794828147,-0.048947608858018264,0.00016978708121025824,0.017356254834729835,-0.010094178983284059,0.03141721767595987,-0.004399517730130547,7.70927977135041e-05,0.00915111732810542,0.03159724366469209,0.10754753649852959,0.014959568464729053,0.00013590828648182433,0.012022005825253758,0.019093700499337778,0.02499269384805546,0.06151381251501738,0.00025783679437391214,0.011553437671151658,0.01107990474440162,0.024221860541426006,-0.006375813636054986,0.0002393460693459483,0.0016410912084162922,0.0019767880203628674,0.005129797770873152,-0.014120618211214834,8.414079203941579e-05,0.01431807922583163,-0.02853952075136606,0.11209623523298848,-0.0049948068557422514,7.470428340507403e-05,0.0075383497875684425,0.05391224436210739,0.43434417626690486,0.08653801631834901,4.256493980130066e-05,0.024908684754363638,-0.022970013958662733,0.02126887721752509,0.026637170254691707,0.0008328398199683332,0.010035389975200362,0.03524770882145844,0.07738861518505752,0.001293942175251454,0.0001592632974200854,0.003939761369234627,-0.018657431270498164,0.014370462067678296,0.020106335718907346,0.0006346079027479124,0.00214787217213904,0.0016124060746681712,0.024466674382687768,-0.012227068201667123,1.963913126639449e-05,0.006351026858185518,0.008780726019359935,0.021868227265312977,-0.012172209604827636,0.00011928007005369137,0.010940045986909829,0.00016709340156969112,0.0008773695757473253,-0.03615205714396813,5.3609103924375895e-05,0.0020428885291031316,0.05089237841440589,0.0361638127301415,0.08941966389386181,0.00274474187836449,0.005609192611641262,-0.010469733729863274,0.06937061662695368,-0.032294057141074466,0.00012419731000667744,0.00038732989848970967,0.03750752703677005,0.21958011304993477,0.06982967369646206,0.00026450486147707895,0.0054919684326767415,0.0009107539616370712,0.005494453674869383,-0.00027229564323306326,4.669146589088093e-05,0.000876567525536728,-0.04322959848691505,0.26413449011389023,0.02911589101546189,0.0002697384733372536,0.041045145618781996,0.018064585634184185,0.2118154262619693,-0.023314442740042077,3.539163687469656e-05,0.00889509800696007,0.006088905653852014,0.06802488387621854,-0.0009901110759589018,2.9905643014919833e-05,0.001148578078751694,-0.006834942392318212,0.02604595400756902,-0.010647723041024234,8.453126048307633e-05,0.012396086281849624,0.045483524086707,0.3535664744449587,0.026489711220925076,2.9714977431399595e-05,0.024710278408351556,-0.006416136600584298,0.022585725697189876,-0.03190456427741762,6.298207061752354e-05,0.0019166072339595727,-0.006944452755876663,0.029397186292991158,0.004187985689867429,0.00010801420132166943,0.0013511343890663466,0.03074375617004526,0.02305725951986811,-0.03734506788809265,0.0007621225302923227,0.003579203678825542,-0.008784883149949475,0.030056564312074773,-0.0003817711722238985,0.00012302196574849443,0.0232306050254004,0.06952620165393614,0.24495808103798977,-0.07559719111851279,0.0018216960105304025,0.013299537967081007,0.05165466386856947,0.4966326847916103,0.041854750644873984,2.674585198295884e-05,0.004145555245653163,0.0009220552471628437,0.0024356408154113138,-0.004397965396183509,0.0012376988010559572,0.007895170606588892,0.005230747825715473,0.034306310884358565,-0.039349384147798,0.00010153491452712243,3.960811119941231e-05,0.014118659943958419,0.021008915037082326,-0.029022257931015927,0.00015861170721605882,0.012359881641017832,-0.00383194146661802,0.0047912025135704315,-0.04347800400116261,0.00045906930201718306,0.0054376927881935894,0.03146330846360802,0.1257839539946982,-0.07293900702020664,0.0019387842663780579,0.005781537253778198,0.016378962344960585,0.06736680760780182,-0.0008149210165398827,7.80064991181325e-05,0.01893865958746309,0.11483794537555822,0.16180232932836733,0.28824606312983686,0.0017643219451230696,0.0004046265762351331,-0.0017279147632181394,0.005749755551649058,-0.017314424905935277,0.0001190663308217122,0.028490097886161386,0.002768269717802199,0.007927264268794981,-0.0007183028611379455,0.0001415615931865868,9.049951967472205e-06,0.02546765592735927,0.12467937404302978,0.01998690046132484,4.985495007019298e-05,0.002943367752229931,-0.06368085550622643,0.18684145942517025,0.046844635812261524,0.003230380620648387,0.001650368246545593,-0.012181325992240618,0.06869526775656443,-0.0016534464854145374,8.82080692009422e-05,0.005186253950976368,-0.01821345972395588,0.10845750052840566,0.0030725588029470734,0.00012178495570010259,0.006728903181329645,0.03869222586614354,0.2278555533056354,0.07762633699259706,8.031798331581337e-05,0.0017270784737453823,0.0357938716107907,0.15517820638420776,0.017819256134395303,5.797294235508621e-05,0.007640979243037668,-0.015411492280007487,0.029301418369472827,-0.0053419193451821395,0.0002564398084143673,0.0001738323617791089,0.006114775315690048,0.026908990974320642,-0.01129131497881935,5.650637751003004e-05,0.01142909064865169,-0.011706957844369094,0.11240030822429546,0.007136176329934978,2.6872485536768695e-05,0.008210618636186471,0.011912885785099652,0.036483349602353256,0.03223987313056305,0.0001141382574003449,0.00037848922206385415,-0.019729977859444237,0.08086955577208939,-0.02400047957874263,0.0003845647835950688,0.007834924588163084,0.041033603010953185,0.2006458776071571,0.023392265346137555,0.00011713352339536603,0.010186461550593348,0.010275089710186041 +2017-10-20,-0.030436267047270035,0.23131772189774094,-0.05642045402488768,0.0001391454671875667,0.009732549325235679,-0.007711471617942174,0.026428455990092165,-0.0014542705872318436,7.001256674088139e-05,0.006282716055960364,-0.017303193201406577,0.05887041832876155,-0.009196266253646583,0.00013596475348128222,0.009525799342840199,0.030758451813576802,0.032156441938858,0.02669987060797056,0.0003228229037580217,0.003304675170919591,-0.05841273627642514,0.1332729505227214,0.1318301093296617,0.00022933128810051547,0.0009041816734115525,-0.0019408192097792774,0.005220028157377535,-0.0044347128197343485,8.118185604246565e-05,0.004554017763239113,0.0452974474173413,0.169458817883131,0.06905172267885443,7.843310573400579e-05,0.015356558423112765,-0.002081878519671481,0.01769513392347548,-0.0005958622864647848,4.0345968476710504e-05,0.015011467254353426,-0.005169607232425348,0.004396566312863924,-0.018474266520020752,0.0009067523857850054,0.009713736664136819,0.02940457436108043,0.0732780736188474,-0.00412560969165824,0.00014031456035980885,0.006250158214533496,0.006440808849400598,0.00486528095445235,-0.022244379230300794,0.0006470783123536974,0.011444044287509513,-0.025907344405739448,0.3477502440642928,-0.06985185085913324,2.220129177678446e-05,0.005063495992423423,-0.052311790195584,0.15739471071552008,0.03099751691795592,9.873258020830644e-05,0.0009317481067106341,-0.001037847758431537,0.005310050094416049,-0.0010836863701896057,5.50169932322257e-05,0.0030779077770279944,0.006214024370824139,0.0037275031875062723,-0.03215122869241201,0.0032514561491003868,0.00512570854528442,-0.01740217765654046,0.11136288329196219,0.01732224012608776,0.00012859238139086953,0.014741267905601757,0.008031558595625972,0.039518602796763044,0.0013672244884130845,0.0003147070577193936,0.02601018381117019,-0.052000098788835845,0.31776939544050237,0.027400445565860784,4.609491908657145e-05,0.025026693214224967,-0.017916995815774717,0.12113505553304656,-0.02160441754806877,0.0002437710662770842,0.0008184030019675792,-0.01983757664347791,0.23082158561246474,0.04450984673711139,3.5665016468572814e-05,0.027649873845002955,0.018788259613306022,0.19621701369434902,-0.03452043745824797,3.199127874557089e-05,0.007087802993041972,0.0277549711031276,0.07943921074772446,-0.00462814096791306,0.00011254562431887192,0.006168866650124099,-0.035894720985620326,0.23514728719288788,-0.054182788469870055,3.5260054978450365e-05,0.010304599342809627,-0.0046465018204136154,0.013499399873211288,0.011499328242448295,7.631133160962092e-05,0.0007944269206956811,-0.014819853454856112,0.04689823512831504,0.024512324191504658,0.00014448940580794628,0.0014880629978317281,-0.013929932205264593,0.012382672387773186,-0.059928456107547524,0.0006429988280432225,0.00400770008413154,-0.020686778259531382,0.06609004741170557,0.012531763812349288,0.00013174762802385342,0.010203349588722233,-0.007705128072866041,0.0260133147179966,-0.02624701036183298,0.001901092906307168,0.013783069165172879,0.005909900518631418,0.05551553838766238,-0.05140904086087905,2.7374601756084705e-05,0.02990471163030882,0.0018393730287831528,0.005583255505967921,-0.06032319313300944,0.0010770939361932305,0.0033806126093709,-0.029679792802620425,0.22931474787228776,0.014050206691411755,8.618953182995391e-05,0.018303838630659364,0.006837321075098454,0.009048620645156605,-0.02193481758021939,0.00017834008921729537,0.0040895176701391,0.0215445437098282,0.031024141030235135,0.010321461453864747,0.0003986038127068726,0.0018042875974850436,0.023774215366737246,0.09173910000207482,0.02566420539134827,0.0020086397760116738,0.006736268069092631,-0.005050355601128941,0.018720756777788155,-0.020649407334465984,8.655435569287923e-05,0.0005407808725791802,-0.05135581724135073,0.07656989305936086,0.05089177805324949,0.001667280980315471,0.01128300643946695,0.040048657075722104,0.11768314022970458,0.08156706330915536,0.00013483099696423497,0.003504156728604259,0.01401079202149298,0.03699142969581692,0.0012407160643274628,0.00015354014472222498,0.011314335368394995,0.015058684914947043,0.06618040571070474,0.003732720844972182,5.553560994985338e-05,0.010073325515310254,0.06901126298877383,0.19803977310460472,0.10462440378366361,0.003302825381941995,0.009801064539635319,-0.015128927057235429,0.08914848552784517,0.026022796577384006,8.441793608580039e-05,0.002108752528882332,0.02405785341846093,0.14080318792310317,0.025466732293492545,0.00012390966164765746,0.013785249081159478,-0.013355083284923101,0.07981650590589896,-0.07303704482664815,7.914119205858738e-05,0.0031113126238807524,-0.0007118074029029786,0.002656618778223241,-0.011608504591356763,6.734116993103262e-05,0.010337257046681599,0.029422435668133334,0.052282684079394015,-0.01168043245959981,0.0002743785399756722,0.017844710013735263,0.0072813811372511505,0.034399356475596124,0.003766182174480214,5.263538721276104e-05,0.007291165059557275,0.06405808611531762,0.713976080808199,0.08046244481973465,2.314843217226914e-05,0.024662626910849767,0.0003681556649465767,0.0011689920124102653,-0.000531698950450567,0.00011008519305434013,0.011980880117983355,-0.0006060380633135833,0.002336935454268294,-0.08107684074906872,0.000408772014356587,0.0028455796597235024,-0.012852604653561252,0.06016557888512841,-0.02919797358681863,0.00012235306277242597,0.009830591906822514,-0.001458187295321247 +2017-10-23,0.0010010351001839381,0.006688320427901404,0.0016163536817722095,0.00015827736749026805,0.006134670110985568,0.041453045180290554,0.13370452743139663,0.04467385777205832,7.439107814736987e-05,0.0016398964811944943,0.00904428758621796,0.028550542513474032,-0.016099177694751634,0.00014654034269431495,0.009717249141894603,0.0046731787364950594,0.0063169976179118965,-0.040581781827878756,0.00024967182461096076,0.005064585705514202,-0.012830891390619086,0.023392079901985597,-0.03244309168348653,0.00028700255460589524,0.009404274796142661,-0.024994748290911438,0.0669342873524566,-0.08467247752413566,8.153552342681384e-05,0.0009653203378609994,0.00942608234424779,0.03712798890441005,-0.007890482887519416,7.449371943438252e-05,0.012961992364065967,0.003782689151838156,0.03322431282693671,-0.0498999632384631,3.9043007230672474e-05,0.00382856277618108,0.008705298376334809,0.006878914316188391,-0.09532733974723569,0.0009759072580986566,0.012157672829561098,0.029228265830935962,0.0663877670607745,-0.00010469800630326818,0.0001539490004549304,0.0025903039239828936,-0.020529795146027402,0.01611649336313991,0.04303745545804195,0.0006226420114168519,0.005299840075386045,0.016608960087685753,0.24641449169881174,0.01748359057233587,2.0086255638566417e-05,0.01079557104389231,0.08490191467916655,0.2832045957276312,0.139099644086792,8.905703370795916e-05,0.011363125720500127,-0.01091871105316506,0.06312198373267902,-0.012003206751308169,4.869143260147578e-05,0.00021327408845377643,0.007899894107585332,0.006463151892681427,0.0023947326476689438,0.0023839650268983117,0.0020928802514326083,0.005595437583681252,0.046340699186962465,-0.014659539628361706,9.936274509539969e-05,0.034311604780868026,0.019727785412855782,0.09899742447786464,0.026036638515492035,0.00030857637373759363,0.011497326497049591,-0.051644217708422195,0.29013385851784446,0.04165933076117736,5.013999028389941e-05,0.028525850701284907,-0.024350978051734345,0.1475841803522794,-0.05616769631087542,0.0002719339361717517,0.010350226664292961,0.007173178177296505,0.09047878560053096,-0.05114846150256138,3.2899938562914736e-05,0.0029345840925407026,-0.00895866609722674,0.1111383274078504,-0.0025894664362042185,2.6931540910701775e-05,0.0022673161477698117,-0.005326507705125748,0.01567268146657296,0.010282761746179573,0.00010947677828304197,0.0015027914651081415,0.044123806241870886,0.2650408721099249,-0.0055116601765305,3.845497142790136e-05,0.0016875662985247888,-0.023992511847333385,0.08159919618913715,0.07255941191579103,6.518793435994437e-05,0.003860752121467811,-0.010475744944933262,0.041018553668390856,-0.0512892906878898,0.00011677588538009275,0.0028654477781997747,0.020615178358252516,0.020703043698511094,0.009098601889266613,0.0005691522527477628,0.004875703394524356,-0.010279203872687902,0.04247171788796675,-0.03756668421490344,0.00010186984871486337,0.03249928948559354,0.011585200439777493,0.03418309508882158,0.0010258920348250457,0.002175260850530945,0.001646515751483777,-0.019485827789411707,0.18043926225930237,-0.035319371645908613,2.7769624837850647e-05,0.01765981842595684,0.020126439299487445,0.0552163691540591,-0.0003135144770524252,0.001191709419478684,0.0549204080637185,0.013551320636753935,0.09464730026889141,0.004040059621246045,9.534524385653729e-05,0.024644594464973094,-0.0005985926133810265,0.0009552362809067967,-0.05633835994007005,0.0001478992359946157,0.00188666084471805,-0.03803991146221986,0.04791816645427082,0.06761030207003532,0.00045566242745167753,0.0003348946173167787,0.011246431806658606,0.04394697976943458,-0.020041346990215293,0.0019835176146680714,0.004628318679708092,0.01008141644730026,0.03873653842828238,0.001435184827607842,8.350089237387606e-05,0.0013085986217471375,0.02579097007583718,0.03429183561292648,0.002059960442661761,0.001869623405235902,0.00241944326231383,0.00208694458483798,0.007314167595756393,0.0010607909842164716,0.00011304778210964692,0.004467804352654392,0.005369724800852326,0.014570588806528787,-0.006303928024419821,0.00014939473851714518,0.0034500803476303823,0.0682243630540159,0.3155216509410424,0.11782651215276033,5.2774514794273284e-05,0.004842030898457169,-0.04799665042907194,0.1416079707004393,-0.017063376287649024,0.0032124863336998595,0.0002346032385095848,0.029033478346434053,0.14251180795947122,0.04500404272856976,0.00010134184120965948,0.012565838658657735,0.0023672232145376835,0.011457391637532956,-0.022739365697686482,0.00014983533290689667,0.012388630822030075,-0.029920142547488336,0.17426195531170183,0.027666239906154237,8.121004932746741e-05,0.0055396064492154165,0.018082222199023036,0.08380925584150568,0.005307870653732785,5.422595534258458e-05,0.012697660313498853,-0.005346221515620631,0.008305541173491863,-0.004110507766915545,0.0003138400815165696,0.006238464473782042,0.020610913089808842,0.0871179876306727,0.02082937788668542,5.8830667090086e-05,0.007210922222020921,-0.05054397748092857,0.6161340522165966,0.07655180245326354,2.1165351663049488e-05,0.0023492077836935552,-0.009321866051249359,0.029444641224531436,-0.010598912359960772,0.00011066379406620182,0.00404436442998813,0.024329210216513415,0.09357095809681866,0.07028347894457679,0.0004098405309530873,0.006296971764339161,-0.0030764073297309394,0.013120544738873714,-0.015162318010523524,0.00013429621322267178,0.01316626893227353,0.0019939605670096115 +2017-10-24,-0.010925024973721742,0.0685511073341078,0.0014386374810726836,0.00016853672396447352,0.01927797317258699,0.01902588343097958,0.07448551673423212,0.0037619049897020737,6.128913939597839e-05,0.011308051082912262,0.02359524109565368,0.07267330115952159,0.0035729774484044878,0.0001501919775119126,0.00824446482557843,0.018946844506052,0.019570884961214976,0.03424565832564673,0.0003267339650303887,0.014819743173555042,0.010655947452059123,0.024061546168458826,0.009949918495507819,0.00023172148940994286,0.005769555841558531,0.027602389263577738,0.08038316423365043,0.12190944610353192,7.497704467999549e-05,0.00472189760083718,0.022273910620217434,0.08894335626153448,0.012527269551516876,7.348062039159222e-05,0.012893640432727916,-0.00022880455012864534,0.001960740594367468,-0.005252358608374031,4.001687133694023e-05,0.02705212647135396,-0.017116256630427425,0.015432024804277725,0.002797574619325047,0.0008553240099180826,0.001044500721400559,0.05776275413467588,0.11772767780857768,0.022964155247657034,0.00017156599016188574,0.015174900111760358,0.031279760080389477,0.023465350233734982,0.16591914606059543,0.0006515694761497328,0.000490821250766701,-0.007075879161459644,0.09520582752356677,-0.0547370122952167,2.214826263739775e-05,0.009131665337289053,0.0016059863853475494,0.0036857820377056826,-0.00445695911067515,0.0001294384333661579,0.028322173490027452,-0.00843163521311941,0.04666172034693906,0.0008249876592145547,5.086427759015997e-05,0.0003104373220615189,0.03317475331222979,0.02408335133293304,0.022719925577790366,0.0026866664583253437,0.031675244787445066,-0.018319303046223163,0.10439895247440209,0.013082660306895182,0.00014439924208811537,0.0037817079073976254,0.030912210254748898,0.16744157024576983,0.034432644487683635,0.0002858742264722567,0.027018916441586806,0.022775543830678598,0.12593891083266473,-0.03660898430424615,5.0941271257291516e-05,0.014667283944112814,-0.007161188216765007,0.03958853110314901,-0.005347926085264047,0.00029812782239599926,0.019835701423497876,-0.021107164908242198,0.2589429163005796,0.02093282349436969,3.3826424887609245e-05,0.001572087411702452,-0.00016420919536178048,0.0014239704847666458,-0.03986192847288766,3.85281534101806e-05,0.004116536543088306,-0.03135834527216806,0.07860051928766125,0.05725043703871674,0.0001285140109250286,0.015907546159833672,0.01795582732249142,0.14837563290127456,0.0032248017603801037,2.795343686493341e-05,0.002206492135050777,0.013760801135196534,0.0325214187225517,-0.01990952536090075,9.381053610677732e-05,0.004440528364239532,0.006544214765519282,0.023234810922871864,-0.06917721581174867,0.00012878550827424333,0.0014535036602028226,0.06154142433076716,0.06384486433652148,0.07143327859529647,0.000550956278334521,0.00848942921949296,0.022156233661808713,0.09490887164593342,0.0008696511383532888,9.825963250070286e-05,0.0022265052577904163,-0.048010959674748846,0.1771124075381935,0.02469598929339668,0.0017398450629998008,0.021754853142587592,0.007435135632011196,0.060232030506062725,-0.007741784794281251,3.1742679675630964e-05,0.008241306186305065,0.03675634446575437,0.10564655678493555,0.019040535486433672,0.0011374916976852716,0.011498416085901646,0.018858380777985715,0.14894692015961766,0.01897945264250431,8.431377144980812e-05,0.013977847214223918,-0.0028872480119254583,0.003986817070710596,-0.04675690956922454,0.00017092404738132389,0.0069096395465465315,0.01812044135264574,0.026991941384874815,0.00639916041471307,0.0003853350934153217,0.003715785859613423,0.015620386858513862,0.05503588924094785,0.007636409692439471,0.0021998655500949735,0.00010405426805946451,-0.004492690439576368,0.016277906694548604,-0.004658592849245471,8.855198706956825e-05,0.021856031002720877,0.056568678109809374,0.07309136126282063,0.03177305990672033,0.0019239207197072352,0.023315994737355877,0.00511245857714947,0.019676413679050528,-0.01466743949083934,0.00010294372856348947,0.005169673468081692,-0.035994931659076176,0.09753312357647113,0.15022521774379463,0.00014960620150693664,0.0022177521367608907,0.02816239208280536,0.12216174525865361,-0.04487488263178277,5.626628438847238e-05,0.004633991520551356,-0.07054052772165237,0.23977533220954605,0.049221695097082664,0.002788381938194112,0.01957160351067283,0.01983792405976857,0.1022626694007803,-0.04227701759230729,9.649830145726571e-05,0.003457342373553235,-0.0056891791263966015,0.031373571228587756,-0.09716337747652061,0.00013150626263492738,0.012127384889771518,-0.010906399734804775,0.07108411418216569,0.003891497408221769,7.257007201692185e-05,0.0015072300315759457,-0.0032662411042826372,0.016058005607052284,-0.03092238730211616,5.1121551940007235e-05,0.018060547369398994,0.027405822009771447,0.05260976424768545,0.01583299086722703,0.00025398371496614125,0.039740171692684116,0.02657899223545591,0.10393812108310986,0.028441125002658805,6.358841859267756e-05,0.010014220674884167,0.07562677673616587,0.7709284355401396,0.11450611617722986,2.531003883363651e-05,0.03356109009198727,-0.006891428857119479,0.021916138242813184,-0.06843265431592055,0.0001099143030486224,0.004400301704195176,0.03194130800299794,0.13846847122521494,0.12028841411478772,0.0003636049359637644,0.01690515523417263,0.014336051715661297,0.06818687591928295,-0.021270186436700922,0.00012042053765279443,0.028339597824606762,0.010478583593690216 +2017-10-25,-0.00729957551176241,0.047021265326299876,-0.09183032956249783,0.00016416851804673763,0.00475804562407643,0.06346227926525684,0.27832340455149257,0.07827925601199077,5.4711228193706374e-05,0.0009056047390241355,-0.04430413681879407,0.14587392843738184,0.03869193111882558,0.00014049595000282955,0.0009856379900795552,-0.021088289769964238,0.02085846711990732,0.04586414119844762,0.0003412139887828384,0.020077850099067224,0.005696407423373644,0.012585435077564289,0.006740967189585349,0.0002368266557723486,0.00124582471010355,0.010391877464203971,0.025126702109271686,0.013609680521793514,9.030364198308473e-05,0.0018564836456894742,-0.021565354624404023,0.0914464819396705,0.011223586360321045,6.919575575909042e-05,0.01033103397925807,-0.009773210570800508,0.0986468675498259,0.0062231438732760795,3.3974460684229287e-05,0.013970753187774616,-0.018788270525642928,0.01523532494849539,-0.025432273519239674,0.0009509985830950286,0.008871403357990835,0.0296501676175788,0.07124056090531482,-0.05459388292068363,0.0001455330761116604,0.010882979780483163,0.022516026669603364,0.016397101687127533,0.05132979598649993,0.0006711954792275475,0.00309501538863045,-0.009334310588794014,0.14333549451589617,-0.0018496930904398127,1.94066819216425e-05,0.004180758227385109,0.058461400525786335,0.1720278461001621,0.04058138071368463,0.00010095352815969035,0.008563884764616031,-0.0024315767442616445,0.014860893153128479,0.0004218057842006552,4.605798009382226e-05,0.007517126549653554,-0.0004896582997866917,0.0004466970276985892,-0.052771681455701935,0.002137977006406688,0.0012993654638530085,-0.06891265209947202,0.39618817817788254,0.18956134945339037,0.0001431362250358878,0.010380694640984395,0.03727301239886914,0.2099497185430592,0.04519550241964142,0.000274908032070996,0.0041528577438024565,-0.014329178062634788,0.09164964856543747,-0.019449416518315436,4.404041791743524e-05,0.004784798159404031,0.05561404946367055,0.277302516569459,0.10000492426611293,0.0003305350472827805,0.028990694064953724,-0.05430785201527918,0.670058259823638,0.10999415264237426,3.363413724967733e-05,0.0024066796057962063,-0.0029278669819927457,0.03019161684554865,-0.0025281402672796324,3.240012456092187e-05,0.0017044431140712819,0.050134277575065854,0.14463016501649203,0.04322939942522853,0.00011166026014306558,0.006842506306433402,0.0011482437535617893,0.009110875042927612,0.0008741415348456933,2.9111620247065012e-05,0.01542005788472001,0.007042415815326579,0.02161025249335886,-0.07877837629741338,7.225022522705795e-05,0.0013907755988058373,0.011860381238522828,0.04604468691851701,0.028599013650937276,0.00011777896143778528,0.0055302012058217305,0.02679152334696098,0.023710472320146628,-0.03596911644066661,0.0006458516360004911,0.0055624919746293956,-0.03836552226838113,0.1458567325770011,0.043623846412964885,0.0001107135160209801,0.009198643314415163,0.049127671135288126,0.17501215557384142,-0.026614224547056753,0.0018016778443408926,0.019705195406473586,-0.028278419123564734,0.24904394443951913,-0.03501490329904045,2.9198553438883525e-05,0.006992229491709101,0.05339039706408753,0.16010724392474543,-0.12354245873265565,0.0010902433310900545,0.009351979410983464,-0.01111589384622897,0.090825756863154,-0.04111928969532671,8.150063798269163e-05,0.019929113370737852,-0.03683028805506641,0.0610070576130297,0.04831431188680266,0.00014248541855115416,0.0007893101055868866,-0.0032097536940347204,0.00489202652788345,-0.037927804580703016,0.0003766056383342839,0.006439186212459548,0.024408738168226744,0.10418507352135359,0.014185278026238576,0.0018158926357405454,0.005902655890169691,0.014899950859797895,0.04910487513800519,-0.01630383840149141,9.735328161634712e-05,0.010011478312809581,-0.01610385638618786,0.02441945791450989,-0.0034433740687522755,0.0016393476476115932,0.017287935096354953,-0.010078137333185416,0.036962200002504185,-0.006907058050112239,0.00010802853733707164,0.0036012823253097383,-0.01570776448314261,0.048481042133924,0.026649119392644614,0.00013134175357422918,0.006127909937937703,0.03506115190942448,0.13626524645865576,0.008480966242363795,6.279932842350537e-05,0.003304333222194873,0.08326359662214776,0.2928601370969357,0.07995456061883421,0.0026947157652349543,0.004533316198674251,0.01913288330239943,0.09902410055923841,-0.07618507042487935,9.611254714531073e-05,0.0020040883018276508,0.015930223406150704,0.08726610233743233,0.0019291291017116848,0.0001323844793591074,0.004947382941466209,0.010692116242558496,0.07099249544893547,0.0035070923456831903,7.123606608462537e-05,0.006815882731239939,-0.013199987742999896,0.064874315407583,0.0020515647102245086,5.1138517636996266e-05,0.000321690819388599,0.018982890889697433,0.04084045815721432,0.01623735402876987,0.00022662151582029952,0.005056440513071948,0.016610260493355452,0.07315305025896823,-0.006435316043487308,5.646227587994131e-05,0.0027195376939302537,0.013053002621522376,0.13431924303522852,-0.004192067088234483,2.5072836870244032e-05,0.002299137296890309,0.01648364041451312,0.05032218580607136,0.03652239741225324,0.00011449923882040421,0.00724854648184769,-0.008452282503243608,0.0337361639623542,0.00042973560540665546,0.0003949174065911634,0.0009299197796245069,0.029527346434524884,0.1407849098037567,-0.2271527247289068,0.00012012685540417686,0.006456998070718914,0.007207853098016724 +2017-10-26,0.02352165707153774,0.1336286376127277,0.028001008480120406,0.0001861465353150486,0.0072800693895134,0.0072068076038116395,0.023377678294673427,-0.010284974482339476,7.396939673070502e-05,0.003890436809650926,-0.02264711550200798,0.0691675723063927,-0.03385305588938995,0.00015146335301261345,0.021605678045922644,-0.0003815630268565605,0.0003538704533222778,-0.006278681280618115,0.00036390652202375527,0.0016083962122782813,-0.012539767327683542,0.029243867909859667,-0.13957779877291634,0.0002243636192363826,0.010047817760959728,-0.006503804456829874,0.019057118407002922,0.0012757107939565544,7.451727805749495e-05,0.006773875379512324,0.053414781209828704,0.1840924381575575,0.07889046208364017,8.513641516209857e-05,0.02304611821191991,0.0008347129944531127,0.007173294935667687,-0.023582657461213224,3.9904061523807515e-05,0.0005447077562309745,-0.008228942284831755,0.00754053758244431,-0.006612088894988775,0.0008415627306598245,0.007610954274289138,-0.036359390099661514,0.08016280938554086,0.10254626681834274,0.0001586008633104911,0.00980135505064099,-0.02714940929678047,0.019325828455733694,0.0690652179911796,0.0006866677058184258,0.009384190047611778,-0.0034965817438684737,0.0461081528646232,-0.0051685170413672925,2.2598975473924516e-05,0.0037955885284445337,-0.027162070764987847,0.07604145902914661,0.011499664328594755,0.00010611174902274537,0.03697687513189917,-0.006491046233985568,0.039618921233584584,-0.01579393369974879,4.611836208099829e-05,0.0030279022581515378,-0.021756248866525198,0.021585046083336692,0.01208743516458901,0.0019658664473892213,0.0043551471650422596,0.04459518932467293,0.25821078323844965,0.0654990352663024,0.00014212345112738894,0.011365956707297085,0.028396695729021457,0.16237829574546897,-0.007427605822943624,0.00027079962649244235,0.001387256083848678,-0.0010080450915408766,0.005981966358502227,-0.00025866709444129975,4.746756447265706e-05,0.0036838658511842565,0.005051556000887992,0.024008592677473323,-0.0667874293262064,0.0003467730001061603,0.026836412059517936,-0.004075880364267314,0.06263825716357137,0.002893067122069753,2.7002998596184218e-05,0.004000898464837461,-0.01427780721385789,0.13572905212851627,-0.006405550314792138,3.51455550513549e-05,0.013258636141015589,0.0004952086866559042,0.0014791285339760016,-0.026855627670516465,0.0001078462615068229,0.005137596180717458,0.031502443346085804,0.18378361613339173,-0.035997352450652866,3.959404048614078e-05,9.967269053387583e-05,0.025622471254484122,0.07743144337405737,0.039770860295745676,7.33636688708109e-05,0.014306972546622523,0.011271353645009023,0.04467431906529891,0.02654624701719895,0.00011536305018168395,0.00023591537059414061,0.030941510975972992,0.025871515481540514,-0.004381464306167797,0.0006835892273408513,0.008714776676131762,-0.04191445127492021,0.2102400958076202,0.04376007959672933,8.39139661400953e-05,0.016558604726561538,0.006079407112273769,0.020937544427636363,1.3411184846109587e-05,0.0018636083858073291,0.04522953030440533,-0.029482844286601122,0.2983569032843158,-0.10646393601774312,2.5410632960826848e-05,0.010333813751227341,0.004872359349644201,0.012921730624963228,-0.026435032188839917,0.0012327922564018953,0.008280070455323852,0.021361867556341167,0.18448621565422554,0.026219227119555443,7.710826638256468e-05,0.0068785184410985025,0.00045592273196369776,0.000606729839421724,0.006910771682845611,0.00017735411856351324,0.0029588298651664732,0.0028518189975243785,0.0037107182688109635,-0.028983170189738706,0.0004411313156516407,0.00307316262804324,-0.02274091331133912,0.07582536615407459,0.013760256477835664,0.002324575882412197,0.013637298793113973,-0.03150152143750408,0.12880913200918034,0.045655116179082356,7.846486759421365e-05,0.002179084866845221,-0.01229427781374997,0.016993648410056437,0.003888030669317579,0.001798430195719195,0.0414325880406633,-0.029296512374323787,0.09696961539749555,0.014517160963648308,0.00011970058858819143,0.017707403638306,0.028210492187423518,0.07082357048110521,0.02591479316717066,0.00016147051188445527,0.004293462201554222,0.018779226260002328,0.0909639488739913,0.0004378530827206614,5.0387442334853754e-05,0.007363946599360892,-0.029296245161147604,0.09133076700544701,0.005854229872367399,0.003040275322010531,0.03322984000305693,0.02522997276746881,0.12049450367572376,0.0033032478274976503,0.0001041573963825722,0.007346163621853436,-0.0008918842136075633,0.004717741007268422,-0.019662737062151735,0.0001370992774304532,0.002339901483062254,0.026544573926136766,0.1648016731802179,0.018277079384551937,7.618383677680552e-05,0.005586017557449965,0.01872955546841383,0.07647544937566768,-0.002418536756026083,6.155351058786088e-05,0.01895731672351038,-0.05981435044440349,0.10211700059794002,0.028578593439154847,0.0002855858824045055,0.030006402667157917,-0.014727799455901514,0.05392789052986646,0.016800258498538573,6.791079353605511e-05,0.003261661076215585,-0.018015976360506482,0.1831888677398817,0.0025858473034101772,2.5374062801498337e-05,0.009259301161671611,0.011815822957800207,0.046502712822856125,0.023347887194171184,8.881670363840474e-05,0.01205384201636335,-0.012064289825137969,0.04238276279680073,-0.005272929305945556,0.00044868388252142395,0.01412241735679923,0.02821888731891607,0.12222377949722538,0.006810813506074311,0.0001322379086353319,0.01052419746246301,-0.0010063274840476652 +2017-10-27,0.012757587395928895,0.09475149489939051,-0.0026702822306989018,0.00014238658219966984,0.0019155940993275354,-0.011399778520140624,0.03678116406663016,-0.0622715021439688,7.436720690151507e-05,0.00884944102042189,0.000998408572126353,0.0035215835530901566,-8.817054975207687e-05,0.00013114976257064698,0.020503842125831163,-0.0056585422392224725,0.006319789938909206,0.0010805958143134163,0.0003021828238124377,0.009137188225044713,-0.02672962002485178,0.0593692478049992,0.024491632649681187,0.00023557489750670603,0.017111692890420332,-0.02734543467794283,0.08780371136195454,0.042172832387155565,6.800153209894433e-05,0.011288797509193165,-0.005056753304232683,0.019936727439069667,-0.01358782217753967,7.442309906280089e-05,0.004043098945328208,-0.009689741234754343,0.07253216075171962,-0.033828797611787524,4.5812097720649526e-05,0.011901620652884031,0.005565602199956905,0.005227619846179685,-0.0027487631587098937,0.0008210185140081165,0.005248062716910546,0.016815915560928787,0.03988500603795778,-0.03342345796975161,0.00014742554508373037,0.019588536978160924,0.011128570941058145,0.00899616716860547,0.011702990124419922,0.0006046530388727504,0.0020022285516395357,-0.005092441439717564,0.06763769443230007,-0.0006845654726908005,2.2436754584135482e-05,0.003221325149240604,0.019084132655690745,0.04777887790351613,-0.0014782282584652963,0.00011865540295723906,0.0005973147117142221,0.007160066098624025,0.047839317430870346,0.015732381715675273,4.2130234392862634e-05,0.0028968695032989583,0.026154848479208077,0.018793240364060906,-0.01429671577474592,0.002714397912176035,0.013841033986538675,-0.004827437235681997,0.031276263460081236,-0.05901226352232059,0.0001270146690430836,0.010974994974504678,-0.035918770608916316,0.21789693231723942,-0.14167387314633104,0.0002552575400386517,0.008520816203258084,0.008089950681421761,0.04887567086196622,-0.09922800881734581,4.66244904487875e-05,0.0032544162739706773,-0.033958125525808534,0.1435116524563113,0.010147843053630335,0.00038998091299718724,0.015421869961924569,0.01243103895155119,0.1693649933123102,-0.00367335185181805,3.0458885564099826e-05,0.007718466185136956,0.012952031558950902,0.1515807225502353,0.0031163584958572702,2.8547996188909988e-05,0.004565282776240959,-0.009625900422973326,0.02818012407758301,-0.0051796632100855645,0.00011003256056843028,0.0034122234472170653,0.025874384850482147,0.17379895932400552,-0.007340109739798315,3.4388658782774456e-05,0.0029236578680269997,-0.002788167911852384,0.008876310073276843,-0.004369124163520604,6.964081454440704e-05,0.010194961065850845,-0.009720485667440987,0.0341325941532554,0.007670155121315739,0.00013021687326741392,0.01228845853744453,0.010702322063197756,0.010117781273049747,-0.006899842515840283,0.0006046002059901382,0.008355953070313723,-0.002428422948027404,0.008874217988258193,-0.002680104065415659,0.00011518084084726427,0.020207315163697212,0.017089015909535904,0.0610155051379388,-0.048850260677230195,0.0017976122448219152,0.004560490085660437,0.00791781322449101,0.07465005690007143,-0.0033031634539030124,2.7274531856494223e-05,0.0007011180688864397,-0.048391798765908385,0.16548193121464522,0.08452260709470434,0.0009560760843359845,0.01334790716003767,-0.021703821846459095,0.13833037852843674,-0.038521790234203775,0.00010448267759250399,0.016818263265448167,-0.011850877251420925,0.018019688837900172,0.028006017040836714,0.00015522032869024177,0.002429463590559962,0.005110091728851174,0.0065734192966352125,1.7991719817558225e-05,0.00044621202964495747,0.028899397757950165,0.005118901739202772,0.023479028073306908,-0.0013927393017308105,0.0016898455761431034,0.01434519760340245,0.023069713563596116,0.08757112907851602,0.016734558329681595,8.452236170104753e-05,0.01497967635881045,-0.07433753931654147,0.11001375970671778,0.08179835698224588,0.0016797256964820415,0.0007951310387873591,0.021984491447244972,0.07499538214952,-0.019479870846269544,0.00011614430989870025,0.029415660668777578,0.016339493691410478,0.03980627239008842,0.006737408562291195,0.00016639775423399794,0.011003068169654889,0.03576743882995494,0.14242695573160186,0.013420377360670274,6.129281623646779e-05,0.02424361457495436,0.013485946885540683,0.04373680138383387,-0.03446803920023783,0.0029224863026173177,0.025625758733873263,-0.01093814442783612,0.058707920736014704,-0.03030880567513268,9.268032008687111e-05,0.0019694882817212064,-0.028004535639600675,0.18176303755653034,0.04205509703232035,0.00011173354765950678,0.005956895507956186,0.06889184992281687,0.4039010893319204,0.19098021611178584,8.067547313665347e-05,0.023747275582164443,0.006620657063596651,0.02842677074215194,-0.05625938095317002,5.853571948525641e-05,0.0018927044158444498,-0.02422742569640564,0.046579923173706725,-0.0038604965897760485,0.0002535933708203634,0.004378231980851254,0.0005921190670656082,0.0026984096650009247,-0.06534576732422726,5.45651732371789e-05,0.00562939412100753,-0.016867827807627973,0.18782728140197946,0.00791044625861187,2.3170306130295907e-05,0.014367747154937886,-0.025335724828917203,0.08354906335028313,0.05593724362566257,0.00010599874237242533,0.0026333745539941942,0.013805306923037865,0.058228684398956905,0.019889867290872255,0.0003737120138067499,0.01622163416390906,0.02296845510521351,0.10941417867666314,-0.03636976414579634,0.00012023474210311542,0.0022912176180901606,-0.0005601847274855655 +2017-10-30,0.031274052040008334,0.24702540250284233,0.0514683067479266,0.00013388413677724493,0.008843829656088136,-0.017588231563721864,0.056497141135172804,0.017069193534504406,7.4697527903588e-05,0.026270706193583057,0.017983521908493307,0.05487667764929221,-0.024645400427775112,0.00015159474347121806,0.0013229395533720981,0.0062955549010208734,0.006501211143521361,-0.011288900795007861,0.0003268192287665213,0.007802089990943344,0.015509347872571187,0.031757959359368274,0.008462559623914174,0.00025552813248308915,0.0018627727446486537,-0.002443444398838545,0.007354186149237815,-0.0014346495468496822,7.254618554045853e-05,0.005759681953098194,0.03236661496727977,0.12920492057980415,-0.0338751728749421,7.350351082620797e-05,0.011588653881371782,-0.05424513584066132,0.5373785509811899,0.04835408694360229,3.4616175789133794e-05,0.009010510068794868,0.01741503656838862,0.013591679209874134,0.02760124354907947,0.000988088993363609,0.01587341105318659,-0.051974485272510536,0.12746392072389892,0.1442230241058293,0.0001425820354895428,0.003587129325363572,0.0199466752742552,0.01523934739542596,0.02529208533811413,0.0006397768281488001,0.010263461490507709,0.0012509774312927742,0.01670002970618747,-0.017519166710794974,2.2323126508020242e-05,0.0038549789823700146,-0.037974037852537,0.10897102675817535,0.0164369461864751,0.00010352059842065187,0.0048016572196759874,-0.0023451181369060553,0.013758013048167752,-0.10454039823885662,4.7981169222902774e-05,0.00044366431643825285,-0.0038000544473699603,0.0032642655089588513,-0.03974456822419691,0.0022705303719066376,0.014011446248578339,-0.00686609397915464,0.042555149084449156,-0.029442497847364392,0.00013277298982433753,0.015371513384997853,0.02485774311304032,0.15554083997373877,-0.00946312435568888,0.0002474716691342952,0.012778662846415354,-0.04253821996085694,0.2539309553865189,-0.003364229309611009,4.71872449892279e-05,0.008632187610281422,0.008677652950943691,0.046760055665740846,0.004022496873080315,0.00030585392995214386,0.02346088087282982,-0.03896129377688214,0.5474602093894758,0.042171778398535344,2.9533236419612454e-05,0.0047696091491465,0.00654402784995672,0.07334391961041746,0.008464845201409195,2.981005191733728e-05,4.810864192830635e-06,0.03477185800433566,0.08579477295400213,-0.046389628666845845,0.00013055389221125962,0.01479780553909674,0.0081523930474794,0.06072061290609616,-0.027325531618462986,3.1012825778159855e-05,0.009376137367011223,0.032306111723204585,0.09368610086514481,0.07121360177163542,7.645165804071816e-05,0.010924909077421989,0.011873062477162266,0.040244873647698805,-0.007905642376928965,0.0001348965306871884,0.00785491415517552,-0.03387357988905553,0.028680554816871994,-0.04746755485261099,0.0006750704687061718,0.016458831438134026,-0.02667199378696805,0.11009299993716339,-0.021342650681226472,0.00010197219888999825,0.008424721802911348,-0.03799856724650252,0.11403591042677123,0.012184708120088053,0.0021386748492002654,0.008200642675649284,-0.025536974817911992,0.25925049627873326,0.004475959474892161,2.532981670413442e-05,0.014004991911904727,0.034370142206511696,0.09253596687163332,-0.046555503110014045,0.0012143448399006512,0.015713060729915677,-0.012769191848336423,0.08954474984439796,-0.010106330299977834,9.496179773187378e-05,0.011205435413035406,-0.012627558840646076,0.020570710210268094,-0.10479032457516585,0.00014488235647169126,0.009978503386238301,0.026160586327600602,0.034765036005068375,-0.019247667328711148,0.00043192535985013916,0.00949214182705733,-0.018536206304901128,0.06505906313884505,0.01810050042598765,0.0022083270414582925,0.0057661059160917525,0.0031864479257997192,0.015164919292845708,-0.16134362446727743,6.74150859441182e-05,0.010192318323447934,0.014918972797924467,0.02517200244874047,0.0018249750938366454,0.0014733242888373755,0.011744143116282961,-0.002261627091280328,0.0067981165271602815,8.468148929881508e-06,0.00013181002114311056,0.0041045149925877464,-0.003526453983858329,0.00947595042742523,0.0013511630586933918,0.00015086059532321103,0.011749322232051869,0.010074729491346161,0.03976220926532349,-0.0012508315371664402,6.184104396225608e-05,0.013889433478744778,-0.09104739763132806,0.3271687253809074,0.05630869382676364,0.002637629630835594,0.005569009623333043,0.016938976480894607,0.10043872953726422,-0.04769408960168099,8.389315456062773e-05,0.008375621713522179,-0.008601791852985251,0.04348652654561377,0.0011992640691084852,0.00014344816382913373,0.0024318513046531205,-0.001470111632435007,0.00834800144934741,-0.040495397723152235,8.32945328714245e-05,0.03926013675280105,-0.0002722834472120235,0.0012765715413886713,-0.10435604544072166,5.360724355825948e-05,0.0054754399732341585,0.047679196848076776,0.09537659628615229,0.07828884115576265,0.0002437342186794606,0.006457618398540621,0.0021187326642782716,0.007707946256120161,-0.015205860686168261,6.835209969739129e-05,8.39185391649902e-05,-2.128956733500752e-05,0.0002210819133555569,-0.008835281542115644,2.4845337829546984e-05,0.0053159077424952605,0.012858283041455046,0.03692177841250335,-0.0021348110497956,0.00012173328295049261,0.0026208817209801005,-0.01725202369037821,0.06993879661963198,0.01725178448791516,0.0003888211328553206,0.010411924694195818,-0.002465898296072344,0.011757258686912818,0.015119227924962826,0.00012012706953552892,0.0017043063881237348,-0.002943863181191656 +2017-10-31,-0.003287918011833496,0.02498999530777236,-0.0029711078449025977,0.00013913660068414258,0.00329724153623744,-0.053178760844369885,0.18879515464613542,0.0833545119547028,6.758617924719459e-05,0.007996367541555287,0.041299213853718326,0.12439137310560526,0.02032217006788542,0.00015358497360921616,0.045130237959929584,0.028676970462796266,0.028196736227112752,-0.0016260309760032117,0.000343243469907346,0.005674425763658175,-0.007665925747009117,0.017768514888179914,-0.024455274012482472,0.00022574141870338732,0.007870579513611744,-0.008289622393819324,0.019300560285366693,-0.017615339416110407,9.378029001176491e-05,0.013248923621999774,-0.01865350564054917,0.07570984271789473,-0.030454078298577523,7.229328742159811e-05,0.005289391568354798,0.018650797808948027,0.17511950893880934,-0.020622435201092817,3.652258409473098e-05,0.0022153267358009064,0.0036434712392281053,0.0026891356672294584,-0.13003800255884654,0.0010448342952637587,0.000732702434163005,-0.0020792867219511855,0.005748133089844819,-0.06462387531524669,0.00012648803667063095,0.0004272306806140354,-0.009821985263325644,0.007467425575258482,-0.03803990787072618,0.000642913778804774,0.004474470164564396,0.010033218959224469,0.16746187002325072,-0.04245923566162507,1.7854477401394657e-05,0.0024682810312067847,-0.09270839399471048,0.28966681988447207,0.10519813500843439,9.507609681022525e-05,0.06062268178239112,0.005532054122843074,0.026807787569358452,0.012885840148604128,5.8088112561035596e-05,0.0030831431653929138,0.023163110162680602,0.0200531967367435,0.0035660836993356743,0.0022528705125555984,0.012399410058980832,0.052494351843624665,0.3396962918842982,0.04476656168310773,0.00012716683996339943,0.002299140128264967,-0.050600916384527676,0.26690836683371977,0.07150244316062866,0.00029356510139653486,0.021216389566364555,-0.02533742419183409,0.1303013567087617,0.007231141622538999,5.477400292627347e-05,0.024350216991994213,-0.008076079380083982,0.043763873066958295,-0.011197861336155262,0.00030413866598570584,0.0032976649410815006,-0.01226147308942077,0.1643298760518464,0.0093815682651229,3.0963949672782e-05,0.02233146990150782,0.038171409752807396,0.39792775830879384,0.19085106367753887,3.204908783824304e-05,0.0003504053194603074,-0.025269436372264163,0.08598116814118052,0.024345491433869763,9.467056518482494e-05,0.007674509724991087,-0.013471284159759836,0.10682470308504159,-0.002995623982759178,2.912927521768755e-05,0.015273425296060511,-0.014022043694140049,0.0396280525160692,0.02816875195961861,7.84487392677935e-05,0.002841865109002738,0.0137825998640123,0.05912857763198055,0.0010432100326001853,0.00010658161865089553,0.0008417831723338647,0.07321203234935897,0.0592314441617325,0.1012748107662372,0.0007064894854757627,0.014806079011069548,0.014829873080895775,0.0576948856183095,-0.10591175902436091,0.00010818975232759535,0.003138270562366383,-0.044887251064882644,0.17001527797927918,0.017282691691938048,0.0016945494016352102,0.02804900048437152,0.04564753583917144,0.40516655667730067,0.07816464596668381,2.8971163893772256e-05,0.009764957939667964,0.0007652178102303752,0.0020854650474401663,0.00016876077471858372,0.0011996468663136052,0.006977714723751376,-0.027145902241730708,0.21949436575731612,-0.028320933871320418,8.235814330985839e-05,0.0024612772089742567,-0.023410512643119948,0.036036416519336936,0.07365701626115266,0.00015332561391610496,0.021908579818726084,0.0465159834080605,0.058690599773335725,0.061962178997027696,0.00045492266333616645,0.024175838051669257,-0.015614584817172301,0.05230091259704414,-0.07911163025141524,0.0023140434821061553,0.010855442880211154,-0.0030608999659219732,0.012935168417021262,-0.0683341452801131,7.592196139894988e-05,0.012125366608168403,-0.007842109239156965,0.011223506418376602,-0.0325226738630932,0.0017369268160271917,0.0010798309201932718,0.014065081395226414,0.04029610105611471,0.00662512521325914,0.00013829142740197855,0.007353464315033048,0.005743607014910806,0.012855301164038175,-0.013822749623571091,0.000181118510503307,0.005636770325417968,0.034209321537677806,0.17221469216863985,-0.04078931526726097,4.8482855028342495e-05,0.010297778650924284,0.0409504212745469,0.12837681893726488,0.02038216088369485,0.003023359713650104,0.009899769330089122,0.03654182732295155,0.213874440498957,0.024640226868157117,8.499080550652372e-05,0.007740630035751086,0.04903884920845399,0.26486687805028736,0.10519453859855463,0.0001342682726736215,0.0010625514590411193,0.016983877914377214,0.10505439304412897,0.005277801542196514,7.646652250969035e-05,0.010104624026747139,-0.030068722209697713,0.11393782869893981,0.028404659841716366,6.632762226791985e-05,0.010279965695246763,0.006627976275394275,0.018347493728215418,-0.016659748991915628,0.00017613010393168182,0.014808496006855668,-0.021824189663095444,0.09866605384890458,-0.014679804178724325,5.500279312434063e-05,0.0011912692252259655,-0.0033263635611685584,0.03698054242636461,0.0004994585501192655,2.3207466003261e-05,0.033268824014083306,-0.0085916786522493,0.02898099460693945,-0.08038408682120826,0.00010362718564992466,0.008489728049724282,-0.013900289951344584,0.05193793649926447,0.008227677929666378,0.00042185882561173143,0.018362664597022644,-0.02263318978334795,0.08853375087528939,0.060517643318600725,0.00014642279642230064,0.012098000482411097,0.0010661319338733067 +2017-11-01,-0.015831037219790896,0.10197377194534861,0.011380814323251266,0.00016417516823370146,0.010862100100911853,-0.007987217802140395,0.023182102048038264,-0.005264766771093263,8.267100945417463e-05,0.005826240417689058,-0.006951682507319792,0.02165863872961519,-0.07157404288465208,0.00014847590337439497,0.01811788858565948,0.00466046073980877,0.00550110596256875,-0.016213243483343152,0.0002859214250127162,0.002221251853462499,0.013483548648171648,0.03754107321718934,0.001697860321245886,0.00018792964557990457,0.011164685729125122,-0.0007240879425515982,0.0017190500196695294,-0.0016564601114186575,9.197071056867079e-05,0.003931063550437497,0.00528103968627604,0.01888261743498244,-0.05147921300439359,8.206294378021391e-05,0.0022802831240368603,0.03828434868616261,0.34581490871179,0.049527924892596796,3.796436716701301e-05,0.026073485995332775,0.041794057999694156,0.039048698918989454,0.17680712831598747,0.0008253777546166415,0.003632327005153881,-0.011271299918757957,0.02675749949831302,0.016339268826495116,0.0001472958010236444,0.029253352911316886,0.006357107229737873,0.005026225629852132,0.004496034303493291,0.0006182183830464785,0.004848579715623465,0.015855002378344092,0.19530855016658089,0.0322019998916737,2.4191781138229498e-05,0.0007596503512497525,0.02932068295916041,0.06612397137839279,0.007182216329163177,0.00013172438834578446,0.01615857878402206,-0.005453927271126772,0.026066772564416255,3.7404887111743754e-07,5.889574203822734e-05,0.0020907646192286724,-0.0029772104433429198,0.0021364533251648425,-0.02570873320696504,0.0027179351923973675,0.01680185214451219,-0.019799438822325103,0.12580756988791192,-0.0016692715569259183,0.00012950848273353944,0.011592397856086598,-0.04481184960969963,0.24211430252371954,0.057182818944087076,0.0002866029499852893,0.0021348556508834363,-0.030571452958894615,0.17518050121081624,-0.046069772734585575,4.9157667895405944e-05,0.027990685655462658,0.04560443330617545,0.2865477809001756,0.051025246483191455,0.00026229911263320795,0.007352153164755452,0.023025755092108816,0.309950636332615,0.010036195828201937,3.082844221517403e-05,0.009019688462403464,-0.015558633350398757,0.16340171325392502,0.013417517170717048,3.1812408444527555e-05,0.00020447186495419,-0.03818460669088015,0.10583992228986884,0.06546275094186169,0.00011621483371531023,0.006261548842290456,-0.028365785106785057,0.21212542190740405,0.029895128594159184,3.088833262663722e-05,0.0009294051515255366,0.005856962547327147,0.020381911499548593,-0.012647058408001028,6.370960577073198e-05,0.00012872290595430068,0.004338327781743921,0.020652654007213507,-0.002894269530675236,9.604949552703605e-05,0.014147341430863282,-0.02301313647023977,0.019197910964863067,0.013087116753458448,0.0006851685199061342,0.000873095823730521,-0.001052729456396859,0.0038951021897724383,-0.0007531000868689619,0.00011375851865002626,0.005995865065360694,-0.014465102277197196,0.05083497670464048,-0.01343961954734742,0.0018263249598959638,0.03306609145580136,-0.026014405466434427,0.24507576261902836,-0.052432979347322425,2.729579435344862e-05,0.017028535403989555,0.030546757455469135,0.09635894258631059,-0.004205694520080904,0.001036440465768359,0.009918657417325871,-0.006376648451628969,0.03884051239863867,-0.015285242064445483,0.00010932844405237483,0.025302739548471335,0.017140457129494278,0.03128864745414004,0.01017351335834943,0.00012929478151819108,0.016454388968380355,0.018211276159437916,0.03157782796342703,0.0016260261823907453,0.000331025949230804,0.007608128136118237,0.00034650219685675995,0.0016429854208711995,-0.028439969555937326,0.0016346418890186545,0.01625061503880981,0.027521254622336393,0.10672501850320668,0.009701620402255461,8.273558842661925e-05,0.001412314694101784,0.025689945407447987,0.033045166174101144,0.008050776955269694,0.0019325575380027562,0.06176126611361732,-0.004286139896119884,0.013249887043303897,-0.04707862771844795,0.00012816522449727756,0.012056254760720964,-0.05843872787561271,0.1584356795646383,0.21928987652291282,0.00014952304698999082,0.011763180485880409,-0.036009571921337066,0.16613659028538622,0.056362428232427764,5.290132997495802e-05,0.02715183381189981,-0.002284851433825657,0.00817948924220261,-0.06909539719356421,0.00264758455503798,0.017112390355485937,0.060567332934765045,0.337020157842249,0.24792930339273223,8.939704079536472e-05,0.00788989770341502,0.006209253925652205,0.03499594123098574,-0.06275559197116198,0.00012867154817273582,0.012876305420805478,0.03672161355427533,0.19642651014791931,0.03040170334546539,8.842404009191925e-05,0.0001361919326932936,0.07235483446696753,0.300868762761239,0.13189042302599496,6.04418639635254e-05,0.003538653241634544,0.017927451650705604,0.03182734832133459,0.013844640474333397,0.00027462969644735153,0.0032057067916093163,-0.0012136962446389597,0.004616498836038594,-0.012644220708283077,6.537499274127283e-05,0.0025212550503598903,0.04084293728484464,0.47279542565864524,0.016950616835757933,2.2288199525466194e-05,0.004958708758501259,-0.005391940893995502,0.019521842196294197,-0.015492529408016877,9.654577865529876e-05,0.003183323868591245,0.010205843430011567,0.037163529465421806,-0.08570267298595266,0.0004328724235057232,0.0032893193852959,0.014911404714098174,0.0717351108482453,-0.000679307847631759,0.00011905799921915406,0.0034783526344352835,0.004135921418737299 +2017-11-02,-0.0048945772931962865,0.03204442204103456,0.000323813831787136,0.00016152856394729812,0.011561228394128382,0.03302023910479963,0.11646825129851929,0.008314112540689063,6.802729237043611e-05,0.003325814321282956,-0.00991641625040064,0.03262063037877271,-0.01109061073699276,0.00014062405064860312,0.027062868868916897,-0.016291155127054712,0.015601239891951845,0.03533711654134236,0.00035242005985176416,0.003006566857653988,0.009459035418452645,0.02026156304074273,-0.0022011156768056883,0.0002442708697669953,0.017940699440846603,-0.03089560654904916,0.10159545790146171,-0.11680158824384447,6.64001672895642e-05,0.006741978370746105,0.01767670657223481,0.06501626576398592,-0.0016522848388398916,7.97754359262296e-05,0.027009501174383155,-0.027673224853951822,0.24839807438391312,-0.022053001391672933,3.820411657321996e-05,0.023647256027717747,-0.011902945366771032,0.008981492807003985,-0.016957723467466476,0.001021999540294569,0.0031193336081532384,0.018147413141011905,0.04362221024589239,-0.037299036165472754,0.0001454684951734244,0.01910708421582978,-0.0018650543879175925,0.00144772436091009,-0.01642766937016208,0.0006296946115276087,0.0010671207309689425,0.010043760675164267,0.13670350095934025,0.011376512063902439,2.1894725676166927e-05,0.006399259501648972,0.006455857073349102,0.01900579209155779,-0.045295367357542825,0.00010090646003955094,0.06099012642218798,0.008004048649044363,0.04164689003790169,0.021421046106350174,5.40989656623723e-05,0.005763365918796827,0.05225783726194603,0.0458480623708316,-0.03512789925387956,0.0022230714354897923,0.01062193354376122,0.01664609743250275,0.09527231001003943,0.0015897277616969976,0.00014377978989928307,0.025441951770037392,-0.005160134643921731,0.027681793824115782,6.382182552981815e-05,0.00028865230916238946,0.008188827359852723,-0.07989500950658816,0.4301342638973314,0.12876544232377307,5.2321064279461985e-05,0.005383213526297931,-0.014045757138389296,0.08440660438731658,-0.011292919164864587,0.0002742556182344619,0.008573763995222108,0.028177935142723577,0.35115369242239086,0.010508279479567156,3.329984078263956e-05,0.016385019213747652,-0.0010753354521130206,0.010888018441266507,-0.004607682034034472,3.299717996149182e-05,0.002927183108668483,-0.004962043418939087,0.01355928383762083,0.003141373132405739,0.000117881747146488,0.010237895258562224,0.03223790520165601,0.27767474429696404,-0.09153516409201337,2.681777911320601e-05,0.002357215836544281,0.011923379483844542,0.033660876108582156,-0.03196775251864204,7.853284544334837e-05,0.01941187357463629,0.0017865700599789766,0.006422227469528535,-0.013853982111280982,0.0001271987851357542,0.0012577665514222432,0.0332942253024848,0.027808766788075603,0.01268104005640751,0.0006843255347756756,0.02544346426816692,0.01802829136086004,0.056465500000288264,0.003979708297280334,0.0001343870433537605,0.004504859337852978,0.023549346078900673,0.0717461924534328,-0.13807254015890258,0.002106682892908934,0.020842213862388624,0.021194628037469306,0.19313466561416187,-0.1316836986301433,2.821939914797612e-05,0.014867899918190514,0.09013061572325969,0.28070278131697723,0.1378950195278861,0.0010497766096068824,0.0019050515276529468,0.008816292984522705,0.0786180799769146,0.009655370126241498,7.4677406081883e-05,0.005701452993923165,0.024215854051893314,0.03597883655686179,0.025338352510997416,0.00015885396571182765,0.001498563437759672,0.022558965364052823,0.03430523740483704,-0.003892519793821711,0.00037745280932391915,0.005182380702931543,-0.024828694207886356,0.08725421401023918,0.02463925067535167,0.002205554582969617,0.011542564820201013,-0.026359927524037107,0.11280336706097885,-0.0472215465463203,7.497431718313607e-05,0.019240938196563417,-0.04116504191097811,0.06418114220596348,-0.005561304295833892,0.0015944037675484552,0.011595585266409417,-0.025847181593069302,0.08350087713617277,-0.00890958253609049,0.00012264170878538587,0.004907535241207201,0.01642950138179414,0.0391764646233066,-0.0178199836777228,0.00017000414786087341,0.017110785462807657,0.01982699724191314,0.07560132765271703,-0.02129627069395757,6.400905991844982e-05,0.010334068831409752,0.005192657608371019,0.015403475574498914,-0.00032778215507196025,0.0031951335897209714,0.02623961872769549,0.016118116557245647,0.07947145254737785,-0.013419173137129438,0.00010088897546857634,0.006096193656995144,0.0016889728776011547,0.006883935635330219,-0.001479927729412565,0.00017792896760970454,0.010468589555033034,0.021482151972231467,0.12061137342352635,-0.0196286604438562,8.424385277063347e-05,0.008836616097880995,-0.032278475907422624,0.1361396284204434,-0.012591282443289987,5.959033877774974e-05,0.012663422609856128,0.025244090175247202,0.04966181840216169,-0.025394917945493065,0.00024783720315891655,0.010625074484170475,-0.013424992324514771,0.049186143009930634,0.009290997223074849,6.787121968437142e-05,0.009343713343960485,-0.006526533113227823,0.06953107300429524,-0.06051755071359939,2.4217811793723008e-05,0.01338317612825609,-0.012499645261986655,0.04519767682736932,-0.08334285883849413,9.66697376526059e-05,0.00022045862642671823,0.0016358484364952521,0.0078877487573073,-0.05300280788202047,0.0003269022917935012,0.0028889966248487903,0.05821000228638513,0.2779928674929698,0.06902750044315402,0.00011993218859881993,0.0032683502925648653,0.00530426120389025 +2017-11-03,0.00590918143857833,0.04024835591966005,-0.0023649481718570897,0.00015526221016211948,0.005913804666077462,0.01729485496196508,0.055859041859293454,-0.048855745123106004,7.429061760649177e-05,0.016226873210713647,-0.026307132298010363,0.08166929201992593,0.016366146694546384,0.00014900880182995606,0.024203071600324984,-0.0220380882672112,0.022501924740965993,0.05273096436837607,0.0003305385416628119,0.0021930900522845465,-0.010712790088647601,0.026906934909375516,-0.02262387644608455,0.00020832248113650286,0.016265255874476105,-0.0066294884438823755,0.016441620459108845,-0.0066147314436138084,8.804042676344064e-05,0.00936193896779692,0.0634634325286255,0.23331634098276002,0.09449768400141355,7.981201145956785e-05,0.014995468648417385,-0.009828432880434921,0.07097428544300735,-0.030216997906447423,4.7487779404254496e-05,0.014651047569034736,0.012337998883829488,0.010254010605175008,0.00978535888018082,0.0009278884118645301,0.0003317361800616698,-0.022386686010859608,0.05775220767062869,0.005360907700231112,0.0001355448757887026,0.007502941291456728,0.01206664562094552,0.008077913424517635,0.01759892302354088,0.0007301493826048881,0.015850290496725192,-0.010724149588906634,0.10966126201722655,0.021853612513287556,2.91428763124567e-05,0.006679496550306492,-0.016918539825960678,0.0391902637297236,-0.021693865299108748,0.00012824360856051752,0.05097649939745206,0.011195433059213559,0.05575484373002447,0.02340319602117993,5.652233737008404e-05,0.0010727082481933382,-0.0015056288199082077,0.001435639110790334,-0.05773680023060075,0.002045481757150815,0.0069323304668597995,-6.373777140083892e-05,0.0004992806291285481,-0.043643588591090424,0.00010505198553409416,0.005178894153462728,0.04289594244330894,0.2168518834875636,0.031190688713304708,0.0003063100507285417,0.005787397045471755,-0.006508596410583576,0.039674780399745965,-0.005249752888564808,4.620976572546092e-05,0.003966157330533839,-0.009524959084191854,0.04776459314171078,-0.06118457049626092,0.0003286577240544623,0.022429447328809665,0.03170551178893631,0.4389257104572337,0.01208688242055641,2.997602059300905e-05,0.008118179260074035,0.002163161267965257,0.022906283476074242,-0.019973986858714363,3.155120687423194e-05,0.005201750624920605,0.00590751974791121,0.014263451852930634,-0.07480993794464147,0.0001334145812500833,0.022446333246347275,0.013669387264043221,0.09265705697960738,-0.0001523881683700445,3.407712300187722e-05,0.0008189265262456738,0.009177970737069137,0.025916958876473616,-0.013759584628917155,7.851271783160572e-05,0.003370502048474927,0.006694221219707884,0.022462487750195652,-0.009946219092020772,0.0001362670337845846,0.0006329255900957814,0.03472434662228816,0.03386203768427848,0.00481399764618603,0.0005861335156379068,0.03147030693722839,-0.03723340439030462,0.13406247067668797,-0.11089737533405039,0.00011689919955262927,0.027736247580840572,0.017074268822348956,0.05763230738306344,-0.0007541098568895259,0.0019014954127120867,0.0020506122893096846,-0.02384662245920517,0.23329722751746743,0.018932525755100058,2.6284486294772355e-05,0.0002581194699543734,0.0030934669423039796,0.009586511777080527,-0.0019276735720787567,0.0010550089380997759,0.007690306636219064,-0.007656587324919464,0.056643444686971134,-0.011317922059017537,9.00142416253084e-05,0.014964490781669752,-0.043134505794607814,0.05826774257258306,0.1671218963618492,0.00017471975820132813,0.007962391187006874,0.0443242404921027,0.06697190334671806,-0.018591688316015986,0.00037988537533872825,0.009833611920518513,0.02052186092885455,0.08209794056577698,0.00774843910655107,0.0019374692498156068,0.0027843619541225743,-0.05297383009384284,0.1748792767725757,0.19135989568537345,9.718816808694706e-05,0.01351038230398913,0.0754484876583872,0.13283925317352493,0.06468358317705819,0.0014118914406163136,0.01754148201217848,0.0009079151197568749,0.0032144037520618037,-0.0015243899219037741,0.00011190792902838537,0.011751388768534255,0.025437445561623556,0.06541484804379454,0.02340776616755133,0.00015763677320414481,0.025689125909751396,0.014478317966452435,0.05111634207231293,0.001189277922462207,6.91309089966951e-05,0.001533019263309403,0.014097196415386884,0.04831836908484192,-0.010800805787116749,0.0027652763658168383,0.023624085098318953,0.003175455733921285,0.015401240453654336,-0.0006919383879043313,0.00010256305118287964,0.0019138836568871101,0.014646070805169676,0.07505556977907786,-0.031398928931874966,0.00014151386338581728,0.005186567342068271,0.017346740321631346,0.09233890901309867,-0.00497425000099716,8.885499297903416e-05,0.008845990572790804,-0.05671754384163715,0.2952458589171084,0.07995523014902146,4.8281526808293475e-05,0.034583309228885695,0.00885840888182952,0.016536793777639638,-0.03565149723297514,0.0002611763245314752,0.005806741152380848,0.012200420271580659,0.044144981686576934,0.0013581745282373076,6.872390456992275e-05,0.006250604449816039,0.019661745303780044,0.22562197465113012,0.007020925636271916,2.2483916077640118e-05,0.00021661387733150025,-0.024992198062963395,0.08694569876295129,0.03256183695097051,0.00010047668923613834,0.003774540611311509,0.01552198272886432,0.06339175521298566,0.042761598420768585,0.00038596008195301715,0.0018659361527400473,0.019827723627986966,0.10804601994467641,-0.00811299002419657,0.00010510802585682071,0.0028342106379145434,0.004341246277993962 +2017-11-06,0.004381975910261776,0.03373658826375729,-0.07438326226984485,0.00013735845864312394,0.009048079875109217,0.0006253297163186603,0.0019849037192998594,-0.005014950929280091,7.559275060476547e-05,0.006414866637278858,0.009136607421282635,0.03331007464499232,-0.23343306875945707,0.00012688391294236117,0.004026609029874846,0.029287148448613076,0.03265363801604632,0.05936211416412015,0.00030270066203526985,0.0011453984892482853,0.026333171035701562,0.055133306430711716,0.052218785348859785,0.0002499118754383522,0.00988509309952904,-0.0057555311929410055,0.01887835260149609,-0.0008574770206456247,6.656839077107493e-05,0.003744545523454516,-0.014095739458554862,0.056068031742893654,-0.04058741130646652,7.3767048707151e-05,0.02030835727579957,0.0356024987782944,0.33926489612500477,0.003535854867756508,3.598654636617238e-05,0.005508973654007697,-0.019298445133406308,0.019986403542382403,-0.01618306254969453,0.0007446161548007831,0.0071562580437119095,-0.02155373952832228,0.06246917952498934,0.02542081677915703,0.00012064760767018728,0.018887495342372322,-0.007409730518147311,0.00473583059324002,-0.053466207182715005,0.0007647695945804996,0.005201732227567276,-0.0007345982282813826,0.01023908709275195,-0.00015847389496379848,2.1380183529367402e-05,0.0005931522090207417,-0.10861132274621849,0.2916448171853469,0.12487431843073918,0.0001106297364390872,0.027266563406896198,-0.026297736962395783,0.13355328837885172,0.029574270436475453,5.542754071734135e-05,0.013899411201004873,-0.015583016476902006,0.015172113103399058,0.012542463598333506,0.0020032190007195057,0.008346744248752938,0.013484748269997663,0.08468984314535392,-0.02054931078191073,0.00013102785240264145,0.005508548060081691,-0.00597527098425226,0.0334929830916701,0.0014221199829986847,0.00027625618333747254,0.0073972499023820006,-0.005347777274303428,0.03578027154775094,-0.09344355526632092,4.210082779461827e-05,0.002118673653179807,0.03528076879307478,0.15812372184062623,-0.08073345388104078,0.00036772894822878277,0.005587765330660935,-0.03850438205276825,0.6422773748234011,0.03619673527127427,2.4878131871344842e-05,0.001548150750008391,-0.010428439465145621,0.11060429766625193,-0.0009110947732847854,3.1501340223526335e-05,0.00586505126397952,-0.04277869560165491,0.13807809579006394,0.05887822764102474,9.979884260965189e-05,0.010454990151348561,-0.00984430139698612,0.06303616857205149,-0.006089734160456103,3.6073432570018005e-05,0.023079283237666254,-0.004308101428693806,0.014595681672784102,-0.02941489654285807,6.543934127343438e-05,0.0037117272382799354,-0.015844896017055517,0.06061963952962727,0.0069514836034312326,0.00011951561195178273,0.0041007367092049,-0.04717983802470359,0.047207961958140754,0.021117315134955208,0.0005712375598038922,0.01957809759005186,0.003433062412046445,0.010311049980318728,0.004419505139685218,0.00014014087214017483,0.007654238738671873,0.007575725572015288,0.027949649892972807,-0.0072432347758959416,0.0017396706505300374,0.004030000627466219,0.02566544654513549,0.28458721742847687,0.01105223601722979,2.3190794673957267e-05,0.0010389122116128318,-0.0005565967552956631,0.0014698467109838349,-0.020690022562890143,0.0012380548765139332,0.010203382505931786,0.020722302990169906,0.17758619444155546,0.008799851633399457,7.770598357964643e-05,0.012236302257353143,-0.0007660772331016936,0.0010769644161592634,-0.005707851162505971,0.00016788681418617658,0.01165803157219717,-0.009776936012681483,0.01542846625111454,-0.03228021042423767,0.00036373402782976746,0.017510177411715844,-0.003932169726930103,0.01583420955589076,-0.061670023880118274,0.0019248026513307493,0.013042045184000216,-0.014046242300462874,0.04640283343601446,0.01027372056156757,9.711940791877851e-05,0.014858146275899197,-0.05697008392602643,0.08017802107325044,0.03884372791327274,0.0017663172817121713,0.03367651521225264,0.006247874406044387,0.019839434423437136,0.0013137454193546032,0.00012477254687974244,0.020199472356649373,0.025624943311905565,0.07411829006357512,0.008795238375229126,0.00014015154767386883,0.008108762627008182,0.0013059038907796909,0.005693865694271634,0.00017848624363075289,5.59780701390322e-05,0.015680614803484566,-0.011131813800521395,0.0384624985814546,-0.008763341457190701,0.0027431306840016143,0.028749972153342986,0.01165506330805916,0.052366450519685914,-0.01676414438620024,0.00011071387970085648,0.00789333405184935,0.0104583559285832,0.05202309643046259,-0.03599868636207979,0.00014579009014491093,0.007973099736329533,-0.00483153716168609,0.03237600806636715,0.007246493499981113,7.058472441049113e-05,0.00939631608440601,-0.023650784766793297,0.10928235685941393,0.013984456807499749,5.4392985642391e-05,0.012910662529084745,-0.012205402323805233,0.02084203576736411,-0.07008528916391836,0.0002855231700346289,0.023943524202284093,-0.00536976642741462,0.02352664505584909,-0.0011609164886656614,5.675573742250239e-05,0.008384187548794745,0.011654469628850675,0.11850024128958253,-0.003821197518975244,2.537491319585233e-05,0.024615834901345484,-0.013439005964748358,0.0398480710396311,-0.006328162822622185,0.00011788778512952666,0.011614780437947326,0.005112053370726287,0.023327145749546647,0.0015911588714581958,0.00034543134796130874,0.004785654095179538,-0.002249977596075115,0.009341602935131112,0.002477926202904259,0.0001379521857756834,0.016770864421155135,-0.005208194745474643 +2017-11-07,-0.024829901955232804,0.1582457851366115,0.025057653727260844,0.0001659317284689048,0.004890803736671975,-0.028627642143572076,0.08120761285706635,0.0049880101065008405,8.45861702131067e-05,0.004517532872031609,-0.009346009918696867,0.03054752258184246,-0.02138522336627321,0.00014152965485613258,0.0037087554408653015,0.009316328126683815,0.009639732476660813,0.0012646601695160788,0.0003261727318740052,0.009691810637270197,-0.014292142924040232,0.03223183610908961,-0.025069887212742593,0.00023201180177793258,0.0011434783227711547,-0.002613336588773842,0.007049888815051399,-0.00624810701353935,8.093937025686737e-05,0.019754676164984625,0.006361227742973064,0.022449207074832018,-0.009126133063364458,8.314378544956753e-05,0.030679880945383986,-0.018344439159539875,0.1783365084295487,-0.013194228758101171,3.527465652594695e-05,0.016838208114414433,0.027230807151091836,0.026089329626548908,0.06504862415392519,0.000804900841093737,0.006040137620456683,0.014355866976888142,0.040116594471915,-0.017492509484885926,0.00012513167370226504,0.012149110212052904,0.017799921158872353,0.01345374762240159,0.029521923977985847,0.000646694489623059,0.004880802549135345,0.0018259846268931495,0.025873944899382616,-0.003373041072276116,2.103087089494965e-05,0.009405824148999584,-0.014994292979751508,0.03776643506873349,-0.0722196011847346,0.00011794269261076143,0.05498037383014474,0.004574035236976793,0.024756039471928157,-0.0882582033455465,5.200919811463802e-05,0.002489222830962641,0.007681163177381254,0.006512574472540051,-0.05434827133468366,0.0023003677018396613,0.010653588143982139,-0.023072127569633456,0.16457134860730818,-0.0029920720922902437,0.00011536804255915772,0.005665490105289037,-0.030739929690311932,0.15039499925219504,-0.0005796848854507331,0.0003165029089073883,0.0032442517270302295,0.01667548917036141,0.08945618637504413,-0.000592372331317822,5.250844521417991e-05,0.012936371248616673,-0.02676104887442592,0.12653971105399645,0.007899136883920637,0.00034854840541504595,0.014906077160203812,0.09065860046747495,1.163713467977405,0.1874604651224688,3.232906773149365e-05,0.038249739200128266,0.017768145352606974,0.18487281805797717,-0.12390454759746072,3.2110771937836734e-05,0.009334926272712958,-0.013491206623490194,0.04065380853426906,-0.0039408666937052125,0.00010689867251307299,0.0037251152569833775,-0.0004932982868275238,0.003012219725920091,-0.008120025934677278,3.782817025915999e-05,0.005576736722817246,-0.019023060858700144,0.05317910937127763,0.054727854417327124,7.930794924751191e-05,0.001091780935443777,-0.018123113146693248,0.07163520403619758,0.03695171128597637,0.00011567909844393345,0.00033205593834609694,-0.05310901266808166,0.05318176460860693,0.024867553429408037,0.0005707961637621577,0.008550025299233589,0.053634671156101654,0.1790294281478151,0.1597915970888368,0.00012609771209564122,0.01702789230236783,-0.05080568891166055,0.18240654132672504,0.02095185733988315,0.0017876854718440365,0.0027403646455777,0.022298275876264102,0.20599015681376703,0.014254605938357243,2.7836011763647022e-05,0.012585343331558758,-0.03268684593917473,0.09277089517269987,0.03686925390208312,0.0011519471075965475,0.0033836575010962834,-0.009628762045460267,0.08135859865979439,0.0004318644868730315,7.881205247273676e-05,0.01035508267711249,0.006159693052674461,0.009305738825855583,-0.0024138545971468723,0.00015622610239328594,0.0031670089992265173,0.014598840894132686,0.02088981207954755,-0.011760211307424995,0.0004011324130369268,0.023893526423354867,0.016784656832881755,0.06457227925626392,0.008710832924011534,0.00201472924843869,0.01973795043927934,0.004096119589610021,0.016096821112556916,-0.000981713111290883,8.164373802203879e-05,0.01993467509855163,0.045750627460092605,0.06826667204894342,0.018371501939939555,0.0016659636249304868,0.03555093106327915,-0.03257203101957461,0.09434624615961283,-0.015087162751462112,0.0001367842996224896,0.014825745208089014,0.04263070600320932,0.11990840104702655,0.04662029550502109,0.00014412299857107712,0.023740918854894853,0.04901399176625489,0.2090277871084644,0.040753322750386456,5.723082094005785e-05,0.00764517107732768,-0.018243720852033393,0.06434646669276464,0.00034630298572343814,0.0026872419583227796,0.013513996211034678,-0.019990496137054753,0.11058217743044316,0.04663931504950409,8.992470180491135e-05,0.007062468611622759,-0.01862057255888123,0.10286616776079185,0.029898312680997345,0.0001312747665338383,0.009270743798787633,-0.026466651068009342,0.1590178691156549,-0.008570606694220662,7.872302266240723e-05,0.009183000089753271,-0.050787841581018005,0.24219223689038133,0.04024869919673205,5.2704407184459235e-05,5.291305211432037e-05,0.010512261965780536,0.018386055220737687,0.002413365811393813,0.00027876420623580575,0.024340838732847456,-0.005609663777139957,0.024831677627379208,-0.03804576547498865,5.61752671460118e-05,0.00195671959728786,-0.01763575470831076,0.19636439165594047,-0.0076536651745421815,2.3171950852950395e-05,0.005974105776784201,-0.03642426924983286,0.13114234555517504,0.12048747222232152,9.70860574315168e-05,0.007158871164088196,0.022778309040293286,0.09736610384749474,0.05858956377648186,0.000368758177515757,0.0030314791944925272,0.037114861895429126,0.1787881912254447,-0.09660725710073897,0.00011889971514715889,0.0028788474315287515,-0.0014281456590141764 +2017-11-08,0.0023877333654354323,0.018571023989272278,-0.02355398911029078,0.00013596795355959532,0.010775946675545047,0.00657724835901407,0.02287008422738558,-0.026534476413010304,6.90060238276627e-05,0.019322168812672104,-0.008665614712868303,0.02803579605868286,-0.05906879210144423,0.0001429827639714244,0.009562398474169814,0.008157017766564247,0.008680463464216578,-0.004283385028904092,0.0003171438916224298,0.004216865716083491,0.029206518665435204,0.05993096195062767,0.040903515887960644,0.0002549918601347592,0.00925099801725984,-0.003243541073697636,0.009846362347784922,-0.007418079587955817,7.192673188818408e-05,0.0007958563502446535,0.01876022111810836,0.07388654751157878,-0.040269229670480064,7.450105697632918e-05,0.008488920391189196,0.009185788617916727,0.07382703807822863,0.002803713601090036,4.2667737716964315e-05,0.013018415944312842,0.02292755755858231,0.017907074663623002,0.036696069148574775,0.000987365468978178,0.0014517349264138496,0.033045355012906834,0.06536400022178475,-0.008512575074686682,0.00017678022631161598,0.0077865383707363,-0.0021796318732303904,0.0017143229928608488,-0.00856811175624115,0.000621462400563633,0.009442622564965985,0.004252693935667107,0.05563768402850422,0.0016008410728361598,2.277811983978633e-05,0.007046443797613799,0.008991158018660367,0.022689933448261947,0.0009157524838059841,0.00011771544431974782,0.03519908585366256,-0.00947113914947656,0.0665446304889862,-0.06391159991860586,4.0063696550190186e-05,0.007894084542990492,-0.011898632300409334,0.009242231388247122,0.010859899642315088,0.002510979569693554,0.01922263859753131,0.03518768673551794,0.2591123328024035,0.034469407227338766,0.00011175185488545013,0.013065868111431766,0.020361187964033793,0.13402248384152946,0.009727619423564487,0.00023525219408301182,0.01311968199278909,0.012446633902031342,0.06908746512808725,0.020065992134352287,5.074737859550895e-05,0.002529851579083666,-0.0376525707365287,0.21769104629466632,-0.020080513607747756,0.0002850630147487629,0.03462707751895384,-0.059097222679283155,0.8041856594500101,0.04205181338110754,3.0495866535770268e-05,0.030152080418198807,-0.004207842531002928,0.044765087209478124,-0.007465319761467704,3.140521371292365e-05,0.0010874078803750828,0.003360706915043019,0.00912331499555869,-0.0025800879966482028,0.00011865901137895083,0.026330057438596947,-0.013896473985766548,0.11698024273819288,0.012655519717607429,2.7440023353015134e-05,0.021918818836702804,0.0019021705782553122,0.006289969579191166,-0.0013265693948193902,6.704683743668667e-05,0.005141855059542557,-0.00044471018704866385,0.0016965283855438268,-0.006718189151256109,0.00011985731461385591,0.011301469777970094,0.019807935660309573,0.019888052605239386,0.004419984978801004,0.0005692755322606346,0.025553611030709196,0.01337699135603158,0.047515918594678,-0.018229005348197238,0.00011849644624854273,0.028225013679592632,-0.04611533357743511,0.15166081469532652,0.03863135465592075,0.0019516015059223065,0.01331084315684734,-0.0649115114474854,0.5826633442924734,0.15367394840013113,2.8647466467733094e-05,0.010591863134179608,0.06055776260651141,0.1943045815715988,-0.0337264522146367,0.0010189621445472743,0.011273517180770737,0.05449697526043917,0.5456701328348083,0.0249049679834293,6.650707658215618e-05,0.006976869101586394,0.025593713279251695,0.039206412087103355,0.027820273462170107,0.00015407124297572784,0.0016657485443572488,0.01932094486849885,0.028446489983285878,-0.017851513543007368,0.00038985543102918943,0.0008733919972805614,0.002686864099579326,0.010710374538913376,-0.007167985851438089,0.0019444258380657364,0.001199608627542602,0.012755778395523576,0.04554482055748149,0.004396066725308197,8.985832952825979e-05,0.024095617467745828,0.02716198818504803,0.03980779263796784,-0.008586567096790586,0.0016961749747459373,0.018762565799023845,0.0036134700480114092,0.011358602845778575,-0.23712039375684069,0.00012604208567823307,0.0032627028163587143,0.05453023293229803,0.1565409664298618,0.06275742294055389,0.000141211386835767,0.005187489378365177,0.021331589548525594,0.09515415458808531,-0.16616744575551876,5.471537607432616e-05,0.0017060870367498402,-0.028552770481914704,0.09248594609861831,0.0038380619883604354,0.0029261094632248756,0.052275955273866845,0.0010089893388608095,0.005364159597794337,-0.02070130862811559,9.356759296916197e-05,0.0012995496447658534,0.002618534604526157,0.013450650865092983,-0.006888939386142298,0.00014118085315299546,0.004170669390134231,0.008656006489786422,0.04701099811515917,-0.023913085334315663,8.708970111395566e-05,0.02212290040973575,-0.03810148781648472,0.18823625453948387,0.012550629500495382,5.087284864024436e-05,0.024480738281356863,0.03947208481898819,0.07491661348652882,0.027820031937285532,0.00025688652389552625,0.018148595401022618,-0.043105504713968686,0.17336603651633054,0.15100065895817447,6.182769985022896e-05,0.0019484927791014381,-0.008896608609123528,0.10227720334353751,-0.012418836980710857,2.244279415845829e-05,0.018353051601293923,0.02655888486919891,0.08491204497127963,0.10911626362564182,0.00010933255582443501,0.0038918031578822334,-0.00047649404684688753,0.0023795152586176455,-0.030018479321432676,0.0003156435767146028,0.001964757401638075,0.03801088614089677,0.1783450452013047,-0.01450930942600952,0.0001220727538884919,0.015398087831224367,0.005390222341509942 +2017-11-09,0.00557863322847275,0.03418668880042858,-0.12538792771871193,0.00017256684322685984,0.0042364488587988205,0.02922316983044715,0.10508729925224665,-0.0726649636960832,6.672485178407819e-05,0.006578124296931969,-0.003356223418220166,0.01278072574380027,-0.08303712644031182,0.0001214765788253774,0.008546486513543004,-0.005812360639796627,0.005642020468674155,-0.009813808870873578,0.0003476848379010258,0.010970680699386531,0.03239540271832661,0.08031554170128119,0.05799118431463205,0.00021104815632957686,0.015296320729926014,0.000894357785655838,0.0022010482835942953,-0.00889494241193366,8.872141551854886e-05,0.00878293936714497,-0.04515314585391362,0.16527305805934053,0.08988744808431255,8.01633403382776e-05,0.004777259203040873,0.102745692310477,0.9515737700318472,0.33325338046486547,3.702710648181296e-05,0.010861710807161619,0.011844600067095722,0.01156461240047024,0.0065973750938603005,0.0007898308747468188,0.0009331913976384108,0.0005220673858275908,0.0012298296307318027,-0.021470616743735526,0.00014843745413192994,0.026849720071913104,-0.005177832786980484,0.003823915653135872,0.004327696934208206,0.0006618568610888164,0.01169592090877577,0.006434174242602717,0.09677545121870708,0.001631270729735561,1.9813007424731123e-05,0.002362836006604528,-0.034550379220730246,0.10026706380122666,0.009138970234329299,0.00010236360187151394,0.0415497096304179,-0.006121652509806414,0.02687748020037572,-0.07182433986717411,6.411238622187328e-05,0.0021188557774047398,-0.021483072421232756,0.018739631194370988,0.02335219843888502,0.002235930630924587,0.002596743198816002,0.06904697542756148,0.4589040937691,0.12571592640042065,0.00012381544847942294,0.00907546420598211,-0.018725649437515462,0.08749596239423385,-0.021652678843250162,0.0003314035132994778,0.013172447111828876,-0.059481574233592314,0.3724726766864973,0.04288049732509596,4.498305946504229e-05,0.009994458317993697,0.008667473817109783,0.052900169086335956,-0.005559033987730335,0.00027003638515584344,0.008704849564497946,-0.006143658798041578,0.07770225036514485,-0.016775892290023603,3.2811321531265325e-05,0.015850835413720173,-0.008697302836488308,0.09469349446088768,0.001118679088782437,3.068641526215203e-05,0.007467607195858416,-0.012133464192823202,0.035869396249303416,0.0028289167711407995,0.00010896411650908018,0.000794564914573659,-0.038834730994266875,0.2572083870700314,0.07198811781929754,3.4876070851491296e-05,0.011521449847729235,-0.0066521919978384456,0.02038973520887256,-0.036875864717073575,7.233201637316647e-05,0.007860710856224966,-0.0010578744800224123,0.0037122157654732283,-0.006876266300818479,0.0001303015329923789,0.0025597726595183367,-0.0352938444647731,0.03598357193364533,0.02436731300760891,0.0005606221559165089,0.007274221600833733,0.012352733678237533,0.036857369514162484,-0.004494052101211753,0.00014106677916007836,0.0021824394015417282,0.0021339855834044265,0.008575099335520963,-0.05199747206636793,0.0015972448486075515,0.011383308191051341,0.025460686888519154,0.20853110299366032,0.01643937089403311,3.139651693154295e-05,0.020319261235113198,-0.07792299307629616,0.21361174209812997,0.02100955031299501,0.0011926465977836907,0.006134484702474749,0.027617221023382793,0.20965233035007083,0.01746876705320677,8.772147485202449e-05,0.007313336418604171,-0.0061028916172242926,0.009106287558785538,-0.024628609464629955,0.00015817567017557694,0.0027465348400181767,0.016268684438093314,0.024020504065024213,-0.12715816275132538,0.00038875342864105156,0.013857832866800977,-0.007909862648686395,0.03603853758627856,0.006142673916283636,0.0017011872692501236,0.013891391018442036,0.027097819396391366,0.09409099675669129,-0.005420318564840204,9.240099440751797e-05,0.007174373557221709,0.06829891847489467,0.10522794103659013,0.041113836083229285,0.0016134664738239556,0.0327917911278091,-0.021056799344509124,0.06734855763948411,0.006355614458333932,0.0001238739812981839,0.01492731199849519,-0.02553762836699205,0.06951233118126493,-0.03258634348716483,0.0001489289355335059,0.023113227831685575,-0.0007297980693735993,0.0036031120968275554,-0.030225280922671863,4.943549207741136e-05,0.009123604080149162,0.04914995635643105,0.1562578887869622,-0.017645839326621227,0.00298125580656057,0.003384000190966117,-0.03649985244827317,0.17712885644862322,0.1411873481943925,0.00010250436526310372,0.017026402363179233,-0.017644815923362454,0.08605643697547777,0.01634220611883771,0.00014869438039234528,0.007943071651529401,-0.02197376232578756,0.1363909271350517,0.03364603404231915,7.620222282412491e-05,0.007538272969337789,0.0027719140776333983,0.009317138998801506,-0.12869651914674918,7.477296193044506e-05,0.010503686238682643,0.014043643883952215,0.026823615582223053,-0.006396758728593085,0.00025526536093544545,0.002292612913652669,0.007178010217924887,0.02826339424765167,-0.007972156549604368,6.3153021169308e-05,0.007506573120997684,0.015648446716567777,0.1549994429185509,0.004117858621955951,2.60478800694697e-05,0.00816582724212889,0.006536340240365884,0.020247618961731412,-0.047671537208055566,0.00011284170926611108,0.0007999570831508528,0.017685176400484233,0.06812443316422588,0.029368367467742226,0.0004091989072165052,0.011816531253718704,0.060585410062677064,0.3280628797854097,0.08197464091411812,0.00010577493199858738,0.010039491962551885,0.0017660215403070862 +2017-11-10,0.058612107830541126,0.3030764112678344,0.28135320312331186,0.0002045134088858904,0.003523239867359351,0.012450828876772806,0.048721089671703986,-0.03455418221195812,6.131853889491465e-05,0.006515189927958193,0.01566913779800358,0.04981942241963602,0.01642642751557936,0.0001454935082733899,0.0011860066122142037,0.004977534602021803,0.0054153827349642195,-0.08725744337087117,0.0003102079959544497,0.001741989913443444,0.025786076197911727,0.06134226197110107,-0.006465538216853988,0.0002199496360049287,0.006422630611196643,0.021965912909329956,0.05590685584603889,0.07865596538353338,8.578886628772555e-05,0.01240550061664014,-0.06934326027206222,0.259199868253036,0.11724038478978557,7.849813443078937e-05,0.019654323011175288,0.014994153458223037,0.1203094918540678,-0.0024905197431501764,4.273863755104539e-05,0.0005759870058763534,-0.030027871782209614,0.026513780418232387,0.05062907106060813,0.0008733688220137914,0.002564122834759065,0.06490667992192438,0.17718371819057194,0.08760103385765247,0.00012809361142295536,0.008009281973252319,0.011490477019565438,0.008346571384790098,0.01130902029066864,0.000672905851190072,9.007527995377133e-06,0.0015039659516456307,0.017687636769162962,-0.04614320231322816,2.5339088172032815e-05,0.0010568338666009348,0.00442275183734689,0.011598512392687502,-0.008564857715448631,0.00011327689041031181,0.02591753198867314,0.003721122435704289,0.02092128555183496,-0.021673674123595634,5.006652060868547e-05,0.017219595466378076,0.0319834492857483,0.027415716423191558,-0.10563732111162687,0.002275352419144283,0.0014785987438374396,-0.036266004347535005,0.2697558833507666,0.04201795930680091,0.00011063203261954435,0.011611056413064712,0.014548600741781144,0.08161340629997033,-0.0033596203196330633,0.0002760374159370864,0.023712658089588706,-0.05872593960551296,0.35710995266815376,-0.03144345352164305,4.6322178521859914e-05,0.013717308143563945,0.005436347928947414,0.035444299088823884,-0.045583053046800284,0.0002527828807747922,0.005470946853203254,-0.0902114547159964,1.3451249288753704,0.14080181831061983,2.7831031058301244e-05,0.004681359887174209,0.013804217442329764,0.15337715819514686,0.02039572521303605,3.0069957473120946e-05,0.0035857475698372206,-0.021919227461735122,0.07336395309776848,-0.13868814860423803,9.624214077656866e-05,0.012216250408503907,0.04762145254504888,0.3310317328909224,0.042171560405068274,3.3229620901675e-05,0.004105270486377851,0.029984692760228877,0.09233829001457487,0.02976655096149196,7.199381003228439e-05,0.004685759858180174,-0.03043382609410749,0.11017265859607465,0.14814014144518428,0.00012630813442371275,0.007911167114813242,0.050533591210799464,0.05589358280979237,0.007049968710945869,0.0005167658133560093,0.005280576351691921,0.019895858116907424,0.0700316996678388,-0.046055061799315504,0.00011957875225880817,0.007370645850242502,-0.09815099241570457,0.2955515842694873,0.04197888928057324,0.00213147664409045,0.018179443392265154,0.013298024578987388,0.12216951096674185,1.3612003612420631e-05,2.79902315489056e-05,0.023925536556829267,0.006750237126212162,0.020712328843075778,-0.00418263252183913,0.0010655194123258902,0.001775843778107043,0.008323701392860629,0.060022153740867314,-0.010820567818757629,9.234865192359191e-05,0.01514914381346017,-0.019116727302448212,0.031511617173404526,-0.053918866233959556,0.00014318193906473088,0.012929565134463618,0.020780391643021975,0.03128034451601049,0.005460063828543681,0.00038131695340492893,0.007848105207043477,0.0402532982971907,0.15141254449215016,0.07974236289452155,0.002060582252269517,0.0019273947107097515,0.029533283658802166,0.10800426237994643,0.03464880610104218,8.773264278434834e-05,0.0013692764500553996,-0.015976296404071565,0.019049881281700588,-0.012991172172824748,0.002084783818853351,0.006178505226015301,-0.06574913074963339,0.21922745449178474,0.15064258702918334,0.00011882589958192467,0.015895901216669537,0.0516399809143526,0.12863316134385633,0.06895062494522239,0.00016273969810184103,0.01519733420164856,0.0028228799820879547,0.009744962366057293,-0.0047818636899551415,7.070110032416494e-05,0.030132202113393007,0.07463024088545037,0.23627219791131324,0.06889203608502587,0.0029937827386796022,0.02939713415059052,-0.03692480172798309,0.1962316182717764,0.08558490957368807,9.360299765293767e-05,0.006798576130398322,0.036230026275423974,0.18165563250233208,-0.06782875178247547,0.00014463738625143126,0.0034321733316780216,0.002516845146812151,0.015098252300921893,0.0006268817214933706,7.884579127167916e-05,0.017437747744747645,-0.030758426140507583,0.13329929459491635,0.013114561532173866,5.7994078657497684e-05,0.005494886609175231,0.014212419825366042,0.02793216311290217,-0.03627946522213331,0.0002480806278541917,0.014607168104945901,-0.012040400089088125,0.04841291750338864,-0.03677856364267169,6.184349695487886e-05,0.0011316839004088352,0.015786777142487506,0.20803996075804515,0.004704374663389864,1.9578436212978863e-05,0.013799193881110733,-0.0016087419376840505,0.005315285952281641,-0.0013650757991354122,0.00010579586999420625,0.001644181752794816,0.018836295564258004,0.07126842406419145,-0.051961469549846984,0.00041660675921461563,0.019531124793429284,0.04627764541690978,0.23487679407690118,-0.07150034431101399,0.00011285035763038434,0.020927838645941447,0.004754423633410474 +2017-11-13,0.043771060276433425,0.2903581801963593,0.07209048060399084,0.0001594188180327524,0.017996284644225355,0.004844449670677588,0.013972724855262722,-0.030828679618580237,8.319052551174955e-05,0.004189073649499244,-0.01720391549569069,0.06498712575075348,-0.06909338179982631,0.0001224608235495167,0.001402218264877471,-0.01716037534131289,0.01760453885617279,0.012441582507369235,0.00032898037072450284,0.0030283050752986556,-0.004208771115014775,0.009818678692309181,-0.020961335134762338,0.00022428489819923688,0.0008562824961112945,-0.007242983170526473,0.017667671579379103,-0.027838325334397333,8.951274970839395e-05,0.004978417641943538,-0.03180788377961411,0.13881190658308182,0.00373143746822557,6.723538743554554e-05,0.01627665954210343,0.0016118001302154006,0.014271042127779845,-0.0001534327627803113,3.873059000082029e-05,0.024509216979355233,0.011686088201043358,0.009778807920572964,0.005904794715608303,0.0009215693680422138,0.004516804533914011,-0.009075384515162689,0.02279161911018008,0.0011120936603357732,0.00013923606552993358,0.015927467493994023,0.015844935513003033,0.0108309115459334,0.013346139724575223,0.0007150720863737193,0.0036184196706849857,-0.0004636950991722472,0.006767346720342534,-0.11036284684794041,2.0419112759275426e-05,0.0005130172631700625,-0.02028490442232849,0.04636678407772189,-0.053370737710509146,0.00012996219226090122,0.0396405042743164,0.0012263855054337968,0.006898606168491779,-0.14523467763599746,5.004117226234284e-05,0.006154368085700606,-0.031316463654785014,0.028689298129374808,0.06497908446619526,0.0021290004997623303,7.28719670172039e-05,0.029584114856011423,0.22009651857283508,0.0123099423572089,0.000110610795216426,0.0009040467277613251,0.002840046510926644,0.017041565742207467,-0.013048181971906292,0.0002580620780326501,0.014492935731375764,-0.02110594292942595,0.1193247040727567,-0.04379511818267501,4.9823628134214754e-05,0.01702383266065647,-0.042003807733408186,0.2302383000231284,0.020577717037622362,0.00030067540136456564,0.01656615549108937,-0.038201987024977825,0.4843902200024412,-0.050547640273133736,3.272810184839465e-05,0.00984060666386748,-0.013051613050719495,0.12513585793767515,0.020625921059437485,3.484689791450878e-05,0.007255179728816586,-0.025530316293518887,0.06623576965409436,-0.01422914553423279,0.00012416133226054172,0.014207545809020658,0.005483408677667416,0.035641050557067684,-0.0007681025240479203,3.5537960003970424e-05,0.0003981924534182128,0.009644818609142522,0.032021699755345794,-0.02669417143137388,6.677702478878127e-05,0.014964337526966624,0.0025983459036857696,0.010942369329840482,-0.005456221654817426,0.0001085760885966934,0.0015653938366588659,-0.020197874496065166,0.015807061548794125,0.006416491968834181,0.0007303484070020612,0.00750090913922012,-0.011128547107537658,0.039873251454250164,-0.00829775651192334,0.00011747428923628185,0.010128751375104272,-0.032941434612536714,0.11233800050715084,-0.0040360877130222565,0.001882066627768978,0.00936497451683779,0.011944978513483645,0.11509348216004367,-0.0016900969314056233,2.6688049735345436e-05,0.0026733754059060783,0.033860747294324436,0.1098046699552921,0.0029423588410156794,0.0010082007065785733,0.006728968470528444,0.014417613508896804,0.09920647099417297,-0.0719691357353795,9.677853006322206e-05,0.0013472727019838624,-0.01677916963099766,0.023325810133883306,0.01622764044154088,0.0001697771014126084,0.006786390082348138,0.08856070896295085,0.12539865756167093,0.24757869062376442,0.0004053704724900816,0.01686244750499908,-0.00043788211019150697,0.0017169300976188127,-0.026882710380816473,0.0019767644841609355,0.0039057061543698733,0.008688303369271124,0.030958130938239913,-0.041380975014950715,9.00431364782846e-05,0.008392841218452088,0.08398853512075453,0.12294068602912905,0.0019519123298298389,0.0016982497768352643,0.020725997373654242,0.0020137687247168143,0.008038375697971868,-0.019711460987093064,9.925612765329805e-05,0.0037253373570664116,0.010003440202080823,0.029911050148795346,-0.0023482511929648394,0.00013557452624803705,0.0011177999404453033,-0.010913647821026164,0.04899316877743493,0.016726419845143132,5.436862260462866e-05,0.0016817088790008542,-0.08723211343907822,0.29488114491441786,0.0742014611556322,0.002803802692462076,0.003556238518469078,0.03445307054396808,0.1753438368091634,0.027208760213517032,9.774127471814684e-05,0.01743289373625025,0.009317229407823376,0.05524478636643324,-0.06055187895193915,0.00012230839712282582,0.000438894956070885,0.03833834837236979,0.21631165142630715,0.01850710503658976,8.383052484678531e-05,0.004371810687382622,0.03388138486545145,0.1476408233913343,0.03483585448504922,5.76769238573978e-05,0.039572466460764545,-0.013724450635416647,0.02266575010764712,-0.005968892991392544,0.00029522577219367823,0.025832337508980063,0.008163912904622525,0.035429883098010755,-0.042844561195879656,5.72984691973395e-05,0.008631914357167873,0.03125727603557331,0.3678651798191493,0.005609056126675312,2.1922684399801024e-05,0.023082544367516986,0.0047888521593775915,0.015875967229216102,0.007635996843818804,0.00010543873832969898,0.01753918191599013,0.021178080829507315,0.09309023751193461,0.015812759056521523,0.00035860012290186803,0.0030447363664280157,0.03605265833219387,0.16343319299433892,0.006921485717592159,0.00012634813134424923,0.007157747448142387,0.0025742767406296396 +2017-11-14,-0.01947512169432392,0.12642061121651088,-0.021369047506736977,0.00016291042562429888,0.005404033157565182,-0.022923182602615753,0.07403351544437027,0.02189169077805839,7.429456913574655e-05,0.007347437682999825,-0.02334691685517523,0.08124157098055881,0.02405063463206902,0.00013293778194652678,0.015427145280182247,0.007082903262699045,0.007909304819641924,2.1329147157576684e-05,0.0003022322841009959,0.016110022359289683,0.062271086864826575,0.16285132901167124,0.1690847634018653,0.00020007503936732266,0.01371379811374659,-0.01292561262691394,0.03581604825426506,-0.027500002891728405,7.879890990591301e-05,0.003299294543891719,0.030714333310296695,0.09242598839225258,-0.004195073989987617,9.750723570932506e-05,0.002556042291504519,0.02091860931365899,0.17345389042232415,0.0049499951879748375,4.135684290802634e-05,0.008469824533283758,-0.014338347951996283,0.011379556471600794,0.013534440509659722,0.0009716694906103506,0.008596328857708287,0.019309835092284712,0.04561406251364022,-0.030653187044981673,0.0001480272591385609,0.01339458641907353,-0.04003595455847338,0.030513748111723617,0.17125218241579182,0.0006413262097520071,0.017076125964867725,0.011483948507814746,0.16580031321305383,0.03430386180105857,2.0640902352809334e-05,0.0031453266478240084,-0.03855968470283555,0.09408239188555476,-0.005816635442499286,0.00012175201621471735,0.021627490207099063,-0.0034354708181623473,0.016347857325955735,-0.037723350793218514,5.9154425840536597e-05,0.002134829063381934,0.024341681335914477,0.021725610007549332,0.012807778821691932,0.002185252198778934,0.005482163837185915,0.004789041344405942,0.03710829306255223,-0.0001931661547669256,0.00010620127149588028,0.00026073479281894297,-0.03643905848857532,0.20607685481677332,-0.04244720252670164,0.000273808018047454,0.0057773930632695975,0.007499111832852809,0.043188775877657286,-0.022143440070237785,4.891025098301827e-05,0.008498683926143617,-0.0629236949705663,0.28143481842884244,0.09048135013354433,0.00036848787177178743,0.025227539156521817,-0.0338793073941655,0.4890433186676277,0.007937339501956743,2.8748647952585043e-05,0.0027272721552543356,0.004943994656068899,0.056927553431125565,-0.0035436274496400003,2.901597591888216e-05,0.008739169919776336,-0.004313756153320064,0.012226583177996783,-8.451995473919114e-05,0.00011365099463562686,0.02611416267004458,-0.07230593745914592,0.6450753853342632,0.16804324735966505,2.589141982603675e-05,0.04813008312777147,0.003433846412663889,0.011201721229953252,-0.055567380220409066,6.796314821222125e-05,0.0020713056021064878,0.010473034617866023,0.04563321790393663,0.008225000010398909,0.00010493975352061917,0.010395042917527667,0.04135432254374407,0.042636796217787806,-0.026082649526207733,0.0005543855581370199,0.01880813836770734,-0.00999699755993099,0.034444662059671026,-0.003836218535409265,0.00012216130598858598,0.011854293852205162,0.016097287244414674,0.052429487812807096,-0.0007347419130244109,0.001970589903916701,0.015465290873414334,-8.679297568277577e-06,6.851623620063764e-05,-0.002172127377665489,3.2574163788696415e-05,0.011959916170533512,-0.001146653893655217,0.0030638771140817844,-0.0063122090582412894,0.0012235797397464254,0.007944885280200164,0.06253002804600477,0.4474060435672292,0.1347750280826685,9.307058001811747e-05,0.03532831854103302,0.039115554592121425,0.060577616457308484,0.0903522987487988,0.00015239920352489944,0.004279533824706799,-0.04508900657540724,0.06947747962959014,0.08837071944056887,0.0003725036435589917,0.010293257016538193,0.017853021982495405,0.06442937592754322,-0.1059934099127847,0.00214772244681668,0.0045697280444379745,0.014679535680651138,0.056119532048052784,-0.025216378808775204,8.392447792716425e-05,0.005762259339270525,0.0008814503517874252,0.0011200645724202271,-0.01765057106375318,0.00195628437634945,0.04327560896326898,-0.0028204231258933455,0.008159395802675093,-0.0003047014322891697,0.0001369532373572004,0.0050358151126373854,-0.007902965748668486,0.018204725161964752,-0.009462311683664364,0.00017598123009860284,0.009470361221198464,-0.030687252663912635,0.12863118108231064,-0.03883615643050168,5.82271692099728e-05,0.00021660906015402216,0.01428693788003194,0.04085451390677778,-0.004793102061484914,0.003314493462854593,0.04489004818901141,-0.029955382208764193,0.14775560811002086,0.05622439290831733,0.00010084896890967967,0.013203864945945309,0.009010483809892235,0.045025110611670825,0.0013411446668968206,0.0001451289678688075,0.010056859052045718,0.058339865279005844,0.3665487279544755,0.08675191431041783,7.52804842244771e-05,0.0075799364113952935,-0.01762619446092971,0.07759018938148791,-0.05799021215499706,5.7095139732629806e-05,0.0016701801545987098,-0.03547290844879984,0.0668484311503018,-0.1811302767550445,0.00025872296088260473,0.006675124429493862,0.008010687089163353,0.03238768903770029,0.009366903371527442,6.150411629344361e-05,0.011104182588996935,0.028048211849775167,0.2952062603494606,0.003033003997010963,2.4513814832047932e-05,0.018239005044197506,0.006911052470906561,0.023571346129934972,0.010853558789612456,0.00010248699738904415,0.01263049710159378,-0.0007917583714077203,0.0033389247112034014,-0.07038799751909113,0.00037377823464357466,0.009266181088758159,0.020133888429323593,0.09753504425101082,-0.003982211474182567,0.00011823301605211988,0.020201484326828785,-3.5267640583507205e-06 +2017-11-15,-0.006366209331387502,0.04602007401145718,-0.02258377974110036,0.00014629186817383688,0.015401695164127895,0.025026964667647505,0.08057254617392398,-0.02023390355551757,7.453008543465773e-05,0.04224323823060919,0.012135201312941239,0.04029811291343426,0.011068827971169658,0.00013930268277477598,0.025244312394391562,-0.020475539391782375,0.023600740720816357,0.015989724240407423,0.00029280438331904135,0.009828042987406808,0.003892838883232609,0.00785467511214417,-0.0343070971514295,0.0002593199776576044,0.0010764005840478278,-0.024633499079735405,0.06755225395157807,0.05044409739497038,7.962198516308056e-05,0.016374197463694413,0.05457725909702037,0.1899376193999128,0.05193258765091656,8.431223191759066e-05,0.0222848802643013,0.018425622860248028,0.1871114772883562,-0.05988060553494295,3.376916829939327e-05,0.001019091591084536,0.007433239336066416,0.006056768427387664,-0.02636896880818708,0.0009464156948970221,0.009281248048843395,0.009917962493585241,0.022422799190840264,-0.03344254414387913,0.0001546658812434063,0.0038994877950968595,-0.049836891831559545,0.038540900856635786,0.1750469905498471,0.0006320529250561154,0.014053656485923764,-0.0010191944420280595,0.01245100550661687,-0.04719850563877364,2.4393572634793843e-05,0.0018364977213793283,-0.004414434694546178,0.010948066042630536,7.886675751685634e-05,0.00011978121822148191,0.0039632201131301,0.008280725864643415,0.04487916111249708,-0.01951843454486744,5.1938032686608726e-05,0.009830427558286246,0.03814052815817823,0.027625535534551066,0.03726267344645768,0.002692768197590908,0.007412720380031726,0.014391852932093422,0.09910960503941989,-0.03552708686061368,0.00011949591930510374,0.007002098503153823,0.03915988471329284,0.18695133985982362,0.02710027142405051,0.00032435534160533426,0.020873114420368447,-0.017552026049157683,0.10614444309578801,-0.0005278387054148918,4.657908446149564e-05,0.010552351548103701,0.010238273601233137,0.05860306781512053,0.004888230248110204,0.0002879341568517111,0.0006900378659558406,0.05101993765598965,0.7995928689492281,0.05099195181590429,2.6478979451320402e-05,0.018516064458315842,-0.011280936305925504,0.13425323368625403,-0.06841815627738124,2.807385814256306e-05,0.006559501106718513,0.011546842702498339,0.03572532734019418,-0.02955245614277692,0.00010411415739207253,0.005946564257377953,0.029354107178894966,0.20624165970568328,0.007117944898313664,3.287644549393806e-05,0.0022795796220386605,0.023313531617142263,0.054553584046622694,0.04070012776492418,9.474627866669218e-05,0.011237526843264494,0.01445615958272002,0.06507258858065013,0.029096345585309262,0.00010157888610614656,0.0063840078594100975,0.03921804044765619,0.03871443096185833,-0.03139390399606267,0.0005790133421444484,0.031907480611649476,-0.02560987193437606,0.07374098480166848,0.018351028495028683,0.0001461788303457748,0.007586200443304266,0.06140382891552285,0.21672197755174277,0.073642696434726,0.00181849316380885,0.022136098709431618,-0.008185660539963722,0.07785955937921185,-0.013047836116152898,2.7034851233674605e-05,0.0381161647426321,-0.03896448180551947,0.10914630772752448,0.03639779591226462,0.0011671619634933596,0.008029893794511633,0.0026234730755504932,0.019531686516005682,-0.01635380538143657,8.944632657290584e-05,0.016389506158888865,0.04039365467564151,0.06693195372801912,0.05712108527191395,0.0001424377263013365,0.016079312664795124,0.020518039358323584,0.029485210299165475,0.0008403687734155256,0.0003994252748383052,0.002008148143886923,-0.019266740789741447,0.07230981746732232,0.01927828502651119,0.0020651962626729568,0.00030109156137273765,-0.02741450755529792,0.11238852855863218,0.030602889359703404,7.82616201370596e-05,0.0010240721435099986,-0.0850985773511909,0.11366470187958042,0.07725275814680284,0.0018611178495485112,0.02634742224144329,-0.00630537521366176,0.0213489810426121,-0.0035101091696718833,0.00011701723181864911,0.012601000983700435,0.05166103376031969,0.1290181290199887,0.05975953040190556,0.00016232025969211387,0.011322339135023403,-0.02369301666832769,0.1088651087599593,0.02741280010785318,5.311847206569127e-05,0.005051171900705412,0.044030556084843075,0.12720783588841394,0.022728846844855818,0.003280638400520155,0.014438960310546818,-0.028178907059405203,0.12066079244454354,0.040718790839655836,0.00011617121783207721,0.029081991721709135,0.0057136930350235775,0.03179443537472164,-0.0003221701477887343,0.0001303246513999917,0.006677395436051043,0.061270345593850514,0.32735890826667474,0.000976451394176625,8.852682019454782e-05,0.019900796049114128,-0.03581709963944879,0.18161589378131313,-0.011033795158480558,4.9566009712465254e-05,0.019308286169041972,0.025352811625992164,0.05126606758481903,-0.0367074497912217,0.00024111571554540862,0.006498290738703779,0.005674707433272728,0.02174594761066557,-0.012966840946962578,6.489026000453992e-05,0.0021073282692994316,0.01402593955433273,0.16238532951477247,-0.022532274281615618,2.2285195969105988e-05,0.02450907045084026,0.004316314645795117,0.01160493441725576,-0.006584066590729041,0.00013001078182216466,0.010868630083338715,0.005070642999199459,0.021349239550765366,-0.02772820258081874,0.0003743765135838811,0.010156080346678096,-0.023712006876465585,0.1000894257518919,0.042003562700344735,0.00013569127106894435,0.01629811285079966,0.005542572368115804 +2017-11-16,-0.03361119916745902,0.2771802889274248,0.06158708341194269,0.00012823549369139943,0.007122366519602085,-0.09020183481054285,0.22249165557762976,0.18953746471080174,9.72774484306584e-05,0.010257971975969223,-0.08976647100536916,0.3219690681458543,0.35572889963807336,0.00012897252603179298,0.0024970464405998484,-0.006086822515642133,0.006279157106686297,0.007092169382052994,0.00032715769926206526,0.0036829855960481862,0.006067173383452793,0.016095622938688825,-0.002834557282491851,0.00019723155048064525,0.019673058345716588,-0.007186994725272968,0.022462762825982023,-6.635574743788913e-05,6.986037206970655e-05,0.0047907183428899346,-0.02948754826117203,0.10675160048711474,0.023746371144004123,8.10502063591643e-05,0.013165595007887028,-0.01575225386358544,0.13065920514483106,-0.004265783408198981,4.1342935026075085e-05,0.005444237883315796,-0.02520937693182632,0.01788644210941872,0.03683234855271104,0.001086883353614484,0.00021078382321812396,-0.009061106456020276,0.021931610904175315,-0.02488874767191786,0.00014446830816386425,0.003479246480413073,0.0061942022576501245,0.0035509501802498417,-0.0014747153620411424,0.0008526389365066092,0.01577546708672346,0.012037554235455794,0.15580118582156724,0.028724868110668166,2.3024504221871214e-05,0.0044033942298565614,-0.0697635949686935,0.1812988122873366,0.03919343048278561,0.00011431018586179638,0.0399383785760147,0.001970199024610286,0.008434576753953139,-0.023126334281160153,6.575194791731772e-05,0.005186023728399824,-0.008793176072959652,0.007556132256930493,-0.048171918498687474,0.002269703833471585,0.0020789091636073476,0.01811568509852097,0.1127262671269184,0.003443120629885952,0.0001322457563464718,0.0051797592147606935,-0.061185239751295376,0.3655373821219359,0.08839022446905793,0.0002591928999955247,0.012674952292698249,-0.026631516306011935,0.17741949450825936,-0.0003633137329558212,4.228199911643736e-05,0.025803513291423868,0.010040376334018577,0.05817625803177746,0.006947652981462245,0.00028444022621448004,0.043923730107310384,0.06776189898542873,0.9296642423218523,0.07412401811319191,3.024751303694171e-05,0.021644953828669787,-0.003732328616836624,0.03922085371213189,-0.007434800024224104,3.179395396813304e-05,0.014106877122789368,-0.005461122800790746,0.017270923490634908,-0.007694251481234736,0.00010185659124389436,0.007612419405762881,0.012075365613386381,0.09431902716944962,-0.10463481705154679,2.9572861711042678e-05,0.011380135253476994,0.013028198710578457,0.04534519527182316,0.006196095631179892,6.369868690315809e-05,0.00596134123143609,0.0038223735673008144,0.014483661603565828,0.0027168056281553325,0.00012067112326152784,0.0032639832714942193,0.010958833049913621,0.010629718688582852,-0.03724936363035941,0.0005892751145479319,0.0061457290966015175,0.0034962154775399486,0.01244669621185645,-0.020786796178168157,0.00011823065901840227,0.0035163966760785132,0.0012457622371679668,0.004319612198538693,-0.0022804883751947605,0.0018510134637567302,0.030413188940236535,-0.06301925175564703,0.6189704471654764,0.0895097668032728,2.6180957374046102e-05,0.025982904116172253,-0.041373904440037544,0.1208657980126326,0.03638024629076696,0.0011191656007896822,0.009869110264400308,0.010692716845280845,0.07145628530765169,-0.05935759482056969,9.964907557744192e-05,0.02275248448416518,0.005500437296676075,0.007242661975426845,-0.03765085888650667,0.00017924390130836477,0.011861451106062893,-0.014581599745454431,0.01911924253564354,-0.010153197116313056,0.00043776234723846114,0.008231731557013466,-0.015455285368841214,0.06032059961833952,0.027855437503765183,0.0019859198625962683,0.0076937974406914005,0.013729470279499448,0.05076138282515817,-0.042951391773237015,8.677821392510565e-05,0.016154175707197686,0.022363378582923758,0.0313323285074082,-0.002729210240876295,0.0017742790982183609,0.00248204860021689,-0.0020999023738832836,0.006520945467168057,-0.016109006161161985,0.00012758645558239173,0.011248697352099548,0.06986390472138347,0.17716612875289825,0.09303670740095128,0.00015985732282121847,0.0069243992946346105,-0.0543179987533679,0.2792986904529999,0.1477935847211557,4.746667232892109e-05,0.0059502051326574875,0.03265941827504741,0.105757820328302,0.0020852205016901504,0.0029269412912429084,0.027200628833999024,0.0038322711612219077,0.018014382521083155,-0.009754728818329525,0.00010582235477949001,0.007137607233322681,-0.013284350942608754,0.078953243084959,0.018749661133994674,0.00012202003655342488,0.0016593192436344805,0.03709221730419682,0.21952111390121698,0.009587921399221627,7.991994869391538e-05,0.008995486328070422,0.023666016188990297,0.10057854870193352,0.02099470885149043,5.9138075511444206e-05,0.023493413802930456,-0.011671286946410267,0.020583405341796687,0.0023631094445933365,0.00027645911545997665,0.027152718215119314,0.0023473040800724466,0.009063899726182198,-0.02834685249315252,6.4397445058646e-05,0.001362490151228021,-0.015534571464310509,0.1671117934220531,-0.13003603069429592,2.3984102016150125e-05,0.008846414387681958,0.03214342169178449,0.10344248628927179,0.09619023828058094,0.00010861807956773513,0.0025472898604020295,-0.011616117073140865,0.043015462558246655,0.020341282369774897,0.00042566148319193815,0.006128701178735414,-0.02358148809855068,0.11769175215214772,0.059347222511046654,0.00011476170055122477,0.004880391742385257,-0.0059809040916378245 +2017-11-17,-0.013393112194875196,0.09788565392255902,-0.0074112512542909995,0.0001446935074860351,0.002397395865524561,0.011071411043724323,0.03610285628251382,-0.0004909334326133843,7.358205946369723e-05,0.03367436706701697,-0.01838129489555088,0.06077925142338635,-0.042312265840570414,0.00013990007916035363,0.0020859628791643227,-0.011090254823644011,0.012730572529966616,-0.01104922841962933,0.0002940095557890532,0.011243747040443217,-0.00034570869327730326,0.0006985294791256041,-0.000618719719325843,0.000258954423474907,0.01389102323076588,-0.019955930803108465,0.05951546005445234,0.016607897152907506,7.32131232526192e-05,0.01887891264180505,-0.038843153786161155,0.13841901456392156,0.015325715231854957,8.233956843340278e-05,0.007289260162292602,-0.04126507472389566,0.3505177957133619,-0.001971173238630937,4.037115536401491e-05,0.013259555983189059,0.0042919194394437895,0.0038651373021283317,-0.03681613662268663,0.0008563108012155198,0.006794801733485867,0.036836377728944034,0.07116348323058116,0.002459045102296603,0.00018100126360642233,0.015189464044588019,-0.011132270130667274,0.009280985351672644,-0.012180754655625433,0.0005862920526139281,0.0020383825820095426,0.010318282790884533,0.13380433485424345,0.01887604845561289,2.298052955827343e-05,0.0019585577203944118,0.016333959034909872,0.04592576288455439,0.004786717425008142,0.0001056540430269695,0.009191999979599927,-0.010305413913486012,0.06166956440998015,0.024150942131619637,4.7038815511561695e-05,0.0069181762744131335,0.005945720235314104,0.005445424414759036,-0.08346932318919659,0.002129588578047145,0.011639206883283099,-0.04853051962269488,0.2932467956568085,0.061333159498271034,0.0001361864107238154,0.025552106473370913,-0.03408875937750636,0.18875819454171683,-0.008553747635490147,0.0002796492204827536,0.00942812012653006,0.04568341053417307,0.22535922176153006,0.11001330058037934,5.7101056116927505e-05,0.003860119857736484,0.017205808489176334,0.09597206510291678,-0.025917514627843793,0.00029547249005506035,0.017119406237524656,0.010144747423659449,0.1601648570380465,-0.0037323557582978535,2.6284773537729626e-05,0.006566699067208907,0.0010341927254336539,0.010316220420811883,-0.0033715166510428878,3.349365748392009e-05,0.002831787374887664,-0.03649779504246054,0.10049172650558896,0.04236589788434306,0.00011699278410798103,0.02329550361530345,0.021710868940320805,0.16949047183435748,-0.03658900043860045,2.9588591572917766e-05,0.007346831438131732,-0.02710953402722527,0.07228162077498755,0.09036853042208307,8.315178046341399e-05,0.01809295135219061,-0.0050688740252568705,0.01663452710339854,-0.003512212950669168,0.00013933160330728206,0.0049681710378442325,-0.0023595341835503316,0.002297722968444442,-0.003401550924658356,0.0005869541388659893,0.022235503579949096,0.05271236664957234,0.19529713623630374,0.12359253840871656,0.00011360636114009233,0.03435666255438899,0.034266711489501556,0.11481344174827764,-0.062114187303276926,0.0019155737046233324,0.007485385516283158,-0.0028633490585779683,0.02666893777928266,-0.08164859612484174,2.7609006015707564e-05,0.03362149488784268,-0.005412859930795601,0.013256870627981103,0.0017276933730132325,0.0013349255354261462,0.017105886180717834,-0.0041270440296976825,0.02777387479599699,0.005053014794756129,9.895284201854783e-05,0.0051573379599179955,0.025688785182023884,0.0391339736536662,0.022684878640070044,0.00015492981597880993,0.00908824366355538,0.015278958952659938,0.02067509244048118,-0.008963897281105814,0.0004241800294872735,0.003443788044225868,-0.016487294708758888,0.06301335216771464,-0.03178099300915791,0.002027996300552894,0.003067301404268158,0.014317206862623146,0.05496964791460828,-0.0029010516324956405,8.356524966650122e-05,0.00703479009061567,0.023066707748555536,0.0286031080519231,-0.10303121821473307,0.002004700867504001,0.0018563407196694364,0.00995949946953028,0.03960717815289191,0.011163500931028638,9.96275952001186e-05,0.006258507779029044,0.04095012196844232,0.12534552695483048,0.014945384509402089,0.00013243620739273267,0.008456174305486926,-0.01942807481473145,0.07763931619334055,0.016716534162659384,6.107479115050515e-05,0.005394662510319651,-0.002806131577728209,0.008807544204792246,-0.039137333386543544,0.003019751859336322,0.017605654346490494,0.03200875546724903,0.17206162239791672,0.014619930938127792,9.25391158421963e-05,0.006483053979179016,0.04740200806737354,0.2690646173360993,0.08558680311645832,0.00012776177402828211,0.0031339568650386933,0.016512276315897124,0.1107563139174274,-0.016414486309785103,7.051591614644596e-05,0.0018852614387963877,-0.020219511064243245,0.08150984364221213,-0.04110256407855929,6.234591231352087e-05,0.0017640006022974274,-0.06307431430986268,0.13351664325834106,0.1410467193550364,0.00023032788877715138,0.01727238815346111,0.0013745111234670104,0.005494863461750722,-0.003520037456445673,6.220219770356566e-05,0.004234288371483762,0.0008498324057901412,0.010522797241419513,-0.010594258592619577,2.0836912632507277e-05,0.0045498317516845035,0.0023000761732882556,0.006853463064696294,-0.013118970081809676,0.00011731164023200744,0.004009258323031968,0.019802451771855044,0.07943472317038025,-0.05175718703082196,0.0003929493265519312,0.0037972544141259452,-0.016151835202788428,0.08850079419955804,0.01736796865404805,0.00010453133641216842,0.00542504716447276,0.0012111911815704856 +2017-11-20,0.007602832106439819,0.05835808167065933,-0.047473272567565034,0.00013777200428938212,0.009139709495303164,0.07410086948251748,0.28433970286892746,0.10417656969663656,6.253113696372671e-05,0.028642570003085784,-0.03452167657197043,0.1143314908612927,0.020137194102992508,0.00013967645924024475,0.007505826035075212,-0.05721553407413468,0.05542497186757251,0.18508380890432202,0.0003483985438174172,0.003512869628105897,-0.027343432662961558,0.05909514544911015,-0.13001144359042352,0.00024210234770374037,0.0019833901896711475,0.013917279692784185,0.03405371521424432,0.04267458701839435,8.923528094547772e-05,0.003426507455957426,0.048791347410791025,0.14647827828814314,0.005714450416195608,9.773709808872283e-05,0.011482931522751585,0.014083153043092848,0.1254229924003777,0.0015484540139645963,3.8505374810413634e-05,0.026078820179863443,-0.0063742130195577765,0.0052387508185691425,0.0012066592801488816,0.0009383041085558225,0.00030175569433836774,-0.024254443045547986,0.04663629811348929,0.016840137476983874,0.0001818566233457594,0.010543131886690635,-0.022508826695122386,0.015067753909475257,0.022430312856682198,0.0007301779215951622,0.01566480564297066,0.01797803264245145,0.27228782518631744,-0.15630565192818632,1.967599624049479e-05,0.004737370189990761,0.003342311229508604,0.010134443842157614,-0.016080135749443326,9.79711047897991e-05,0.019833654321328522,0.014007804174243115,0.06954639541525369,0.07747818432783359,5.6696631187377674e-05,0.007445467843446612,-0.020704790376006057,0.014889146704050256,0.035398676538011965,0.002712214299646469,0.018369674107511412,-0.030596125186283466,0.16475171666504473,0.015403637664293464,0.00015282295340601895,0.02101317435522058,0.021403877147412022,0.13274556097459844,0.010500166713593204,0.0002496782285350262,0.020080156238560198,0.02009950246076833,0.12011965829897991,0.001446001706031778,4.713376964807782e-05,0.0204813039641353,0.03197045820499082,0.17877291309533275,0.02806138230125119,0.00029473651979315874,0.024782503544374508,-0.017950407266967908,0.25442124807215066,-0.0007015001672894726,2.92786574783176e-05,0.018659604734688653,0.009777085062999576,0.07233911483392994,-0.03443158207157911,4.515625454237605e-05,0.0073450116285288265,-0.016340867229970003,0.05277765265927544,-0.0529603580854742,9.973504467541927e-05,0.012361234182939627,0.04151710879735085,0.24264036686723528,-0.01183067074714616,3.952359353188636e-05,0.010185078336637189,0.016540030575071103,0.048942021862576734,0.005416111494791382,7.492586813615067e-05,0.0032807197518317627,0.012998125159391853,0.06302953331970826,-0.011780619607389107,9.429425173259145e-05,0.008016068421564795,0.01875830081772413,0.018578343503582263,-0.01139225152199257,0.0005771146102306789,0.005539382071605847,0.012730476416556715,0.056217025151399896,-0.01001308527387436,9.5315340912767e-05,0.018030954507263535,0.03159000647591648,0.1038695903182464,0.022816482422488515,0.0019520029557460405,0.002376501703437754,-0.0024252042426490335,0.022793308489987365,-0.0035106839215726885,2.736044434437542e-05,0.0055807276587681014,0.02481178569486363,0.0739593255893476,0.004746394776615849,0.001096822494846721,0.03937267370326978,-0.018806312992467066,0.15212735380520925,-0.03022952314226253,8.232315231486038e-05,0.01204875485612156,0.010707884420826805,0.01518692968001363,0.0029774815844542876,0.00016640986913820247,0.001116928717366707,-0.010480913728343411,0.014606158688323925,0.014884068366860277,0.00041187653005951596,0.008875741841047335,-0.05934774741240686,0.2449534366670503,0.19296871008474956,0.0018778938682001392,0.009613057762787819,0.015812018285334333,0.06207038692367912,0.006636995100472297,8.173220689297687e-05,0.011258505721785826,0.04498274273800101,0.060574661716199706,-0.02232041689596181,0.0018460018270822307,0.01715071422527067,0.04851469734447647,0.15624987296536277,0.042204993901311404,0.00012301829116581592,0.006474150985083717,0.00410818144885621,0.009184275216309563,0.0026360623053012138,0.00018132809706119534,0.007760876731634146,0.014840473728558465,0.0683775780586898,-7.830311794079733e-05,5.297219578163011e-05,0.0014232182583368259,-0.03380530853753803,0.1125449294996968,-0.0367282141537197,0.0028469315710027395,0.017178214337989092,-0.015927686682439823,0.07142664386351587,0.0012022297690207422,0.00011092591770022159,0.0007000257498016221,0.007752736508215227,0.04498568483667721,-0.019279008817526675,0.0001249802738567027,0.0103259370272544,-0.019240761126096167,0.10552008685751418,0.01130099555502707,8.624537335328725e-05,0.010657875069101009,-0.006798039980234074,0.03355434185702117,-0.0015453339739882502,5.09192952807161e-05,0.0004879895551601005,-0.01428068265712862,0.0288199574755423,-0.01422677317563317,0.00024159337834321563,0.015283031707996405,0.0017568561719939469,0.0061450389791118465,-0.005317375491613718,7.109285291095295e-05,0.0034766290686471255,0.02796656567429583,0.2584953174097437,-0.08497442352865375,2.7913721613399052e-05,0.017142919678529912,-0.012020638445028136,0.0353048882057786,0.010131476865537293,0.0001190149884025623,0.00016359539229009483,0.007762252691105969,0.03228925209036334,-0.006996294457230772,0.0003789289285378265,0.009801692290805818,0.014117132069962303,0.07196102422487181,-0.02984743599526503,0.00011236238207053627,0.005425922585446219,0.0030932742646187354 +2017-11-21,0.028226646003952385,0.22447276552605186,0.03066150818252252,0.0001329787368991466,0.0029852753142887755,-0.043421758525189105,0.14916622304624094,0.013603066414395851,6.984694911736773e-05,0.014941023214615589,0.034874685426051384,0.12621031641531127,0.04924011880028346,0.00012782407183313781,0.0026987773654420276,-0.005865944428844518,0.005802002314957089,-0.0035791431998645823,0.0003412148335817588,0.003440804803023366,0.03175636871987731,0.07304621168477947,0.011884620315790061,0.00022747355276329245,0.028846861049237903,-0.001233798739538279,0.003199621715918521,-0.04183476478614373,8.419618745371842e-05,0.014681386196881877,-0.01809927992625667,0.059545616504600926,0.008214013421697095,8.918695899995354e-05,0.011900837349278444,0.017644466143067004,0.17327339604864544,0.003979186352791236,3.492008159758043e-05,0.006508538565476347,-0.013638744276544526,0.010819340279619971,0.009819417221712538,0.000972116675809238,0.013671990419946722,-0.05714877398297994,0.13005727869918132,0.0863165555467796,0.00015365055794149552,0.03033486764618936,-0.006159839012502533,0.0038877902218365035,-0.018959399978674303,0.0007744455651539547,0.021178950545771635,0.003180864337813348,0.038158770845821456,-0.059286587753270344,2.4841256520704053e-05,0.0006890358815845802,0.019669183911526205,0.04667651161732644,-0.11000482127675683,0.00012518116456846292,0.00696990043676044,0.013560221469065782,0.07653051703439413,0.02722311814360592,4.9876268420865235e-05,0.0012562583534112717,0.02703380470440307,0.023568014460680638,0.021131925069845844,0.0022372120439625586,0.00042451056169060973,-0.00934872766368755,0.06388496875161817,0.0024027272845976886,0.00012042202602674904,0.008212874356760253,0.10177739054070895,0.5467460820065237,0.2055626112615167,0.0002882530187804217,0.014203336544651373,0.02466348101962745,0.13128413309203849,-0.0025261063244892837,5.2917959362009845e-05,0.005544000159391913,0.0032370775748421063,0.017466136534042633,-0.014827412466787862,0.00030545206384196297,0.024681653911017547,-0.1011330811873945,1.3264866907823891,0.10600308996361198,3.163884153743856e-05,0.004853362674018489,0.0014196682703383554,0.015938120740211077,-0.014472741319632405,2.9759900338322113e-05,0.015492561469087293,0.016637622524578104,0.04545419464838444,0.029210864937378032,0.00011790712645385106,0.007835841945013362,-0.005542763748168642,0.03286979086018718,-0.037644159349353196,3.895128621397742e-05,0.024221271213097,0.008412875191381836,0.020908487616624095,-0.08197856513313394,8.920705627083902e-05,0.01138146296990444,0.012797879795556043,0.05395138041188385,-0.00324917774355248,0.0001084636115569718,0.011244780055954863,-0.0056908586348961045,0.005268446098447832,0.00428086191112029,0.0006174059603691916,0.0033175972479480295,-0.03237127048029366,0.11498929544641559,0.03413629706339154,0.00011849181194111281,0.01167649597712309,-0.027063459156820516,0.07866949961415046,0.00288706761298846,0.002207984867956359,0.02922313206922516,-0.007588522271139868,0.07564952628533095,-0.006143225959120116,2.579486121164121e-05,0.039535530015330035,0.011242933532485391,0.03658325089506602,-0.0023875634969346836,0.001004774529470897,0.0063228347057041326,-0.013206130851210095,0.0921504538316928,0.015225461052655346,9.54341392740836e-05,0.006756505845042643,-0.017351031354810777,0.027802866184378067,0.015478546412959175,0.00014729266208517346,0.0015256775091093515,-0.008686285714407207,0.010361683087442343,-0.06675453673002114,0.0004811801673973235,0.008624933592269903,-0.03993063716946939,0.12161810646419982,0.05507324416313436,0.0025448274696713226,0.01736341172113363,-0.035852764562183774,0.12897245280218902,0.06739804312374578,8.918997871307775e-05,0.020130835597303245,0.0642927710302718,0.09494205148886571,0.0293114619419768,0.0016833744239322082,0.0073903085661330935,-0.014538157043725462,0.047444263494294564,0.0026310713638496154,0.00012140642844980624,0.011632367882195153,-0.005062057350225733,0.011551609006953992,0.006953825536942084,0.00017764171469133427,0.014726413893380634,0.011192835615749564,0.04454937275730416,-0.10915768965098453,6.132145583064293e-05,0.010839809619465693,0.05276945852272271,0.15968644696516113,0.005235097368388282,0.0031320784964965673,0.02671726298503166,-0.04017715876441234,0.20972001055393172,0.047395251092563866,9.529715183964676e-05,0.019683882802171083,-0.0142026565291242,0.06780894459021601,0.02405784100516018,0.00015189496701633647,0.0015633643226312787,-0.03932490213488829,0.2196106011289153,0.027649380556697325,8.469602894909032e-05,0.014977744953081969,-0.02506478154996173,0.11647207760508722,-0.014343821322682861,5.408657693452385e-05,0.005091598454098213,-0.008678781185942203,0.015658695094625502,0.0014883329925750824,0.00027022938029394535,0.012725501127597457,-0.012891817613672918,0.05550540022627942,-0.03503177711594854,5.775549230229769e-05,0.009436328965255435,-0.009353577966914382,0.10525683701132614,-0.12030359373025233,2.2927607632047186e-05,0.0010060589199875996,-0.018224319752177958,0.05567954631250221,0.01858020010344871,0.00011441016272410436,0.007131904494030995,0.000764600699767709,0.0036777987163734605,-0.03504827500899223,0.0003276986899398135,0.008393270191062223,-0.03103105723544202,0.13298467896415486,0.06766230203732417,0.00013364932175592077,0.008475191789875313,-0.00359604486932986 +2017-11-22,-0.016598798568230357,0.09614734206853673,0.009521097185399032,0.00018256854551033347,0.0012816663556086724,-0.006914586889628725,0.025677669331720658,-0.004967317996302876,6.461318704185755e-05,0.025577235546308415,-0.013584686432792951,0.042790496099735315,-0.029905486238313243,0.00014685863971606054,0.0038671113629290704,-0.015606205870083245,0.017680156938823653,-0.0275099905077603,0.0002979058778759882,0.013815606205299216,-0.013759010895679033,0.02997292823394865,0.02283405805690295,0.00024019049271070995,0.006787871351108266,0.01362132631182831,0.03626541184960613,-0.085599518623071,8.201126728326269e-05,0.0015748761158598213,-0.011931962415116688,0.042474397701488996,-0.0038927305213690795,8.242795070978839e-05,0.007110817024227707,-0.007089010839794008,0.06022195115307557,0.002792179442988138,4.036727494197728e-05,0.019136253651432827,0.009810611018638473,0.007582963009688207,-0.01674048754199798,0.000997704442130381,0.0007371420902661729,-0.003050341507808512,0.007481947210133525,-0.07817175183268614,0.00014255935153937826,0.005869970618509735,0.05055054998752717,0.03798219453067642,0.0899808955637609,0.0006505342842740956,0.017593819448373894,0.017869616247676166,0.2619001281564801,0.02921817461982606,2.0333039510525436e-05,0.0006617921022825563,0.03654828764184355,0.10767736043102133,0.034532223744925726,0.00010083090640668301,0.031177639486673125,-0.00020254788268352883,0.0011042873090816943,-0.019932493034437462,5.163063244215373e-05,0.008782484701413015,-0.03175314932531249,0.02739433908709222,0.022878930190054374,0.00226073132067848,0.009336977598561549,0.047589604591298955,0.28835807062049834,0.032075834374085635,0.00013581010754393853,0.00396351438723307,-0.06542320873378997,0.3227830718575647,0.049709176399626166,0.00031385519543911274,0.02970689875160816,0.012271109893716207,0.09361703607776736,-0.015135097933428545,3.692239925955327e-05,0.01608485281719619,-0.004819080778819291,0.033723375348392814,-0.0007739091244083184,0.00023551576169454587,0.0008944984315802595,-0.03108346726006318,0.47265464964362475,0.0034180601506192954,2.729076776219397e-05,0.031096643915555895,-0.006748064849635233,0.07011003562405162,0.00889255689641207,3.215738823123158e-05,0.009071324122582741,0.0007529978413241057,0.0015896188364693837,-0.024217670992409644,0.00015258909126211265,0.006797199111746389,0.006023694726406171,0.04138255044447099,-0.0053225336001899584,3.362312515694689e-05,0.0034435678788803485,0.007676079867176796,0.01990392524824203,-0.0055435314779145135,8.550236649995209e-05,0.0008273687587568306,0.002322424058186914,0.008076138381699335,-0.0034981012847852817,0.0001314880744646795,0.0027004591037789044,-0.009728303258655518,0.009028970237908171,-0.04697218456422728,0.0006158492831536935,0.03862027523292459,-0.013765066602785866,0.056145602698345,-0.012295052394814168,0.00010319260548856583,0.00215229429001166,0.06835475907630616,0.22253965406942672,0.05010415351507365,0.0019714261955752813,0.016217885359868775,-0.030356520334631914,0.31627073972873837,0.013314907946233072,2.468170568494335e-05,0.0032856750815001296,-0.022981433808359375,0.06365480489983158,-0.0026686964079226903,0.0011803673802675925,0.009441338622096292,-0.00433752402207165,0.030256576047917715,-0.004674194271595738,9.546578680287267e-05,0.00031159443790234036,-0.007652417147163859,0.010634168509107412,0.0024036053246512703,0.00016984019688014545,0.00017702910648035577,0.04455603950130943,0.07682252217105849,0.030779073708710896,0.0003329062377048393,0.006717029083116803,-0.005433873740575868,0.02407428583108861,-0.020428284616787508,0.0017494698877422255,0.005847977326547696,-0.0021085712620695467,0.007685539265613497,-0.0008700339060719834,8.80246501902527e-05,0.008660529039062786,0.03479962050925501,0.056520138831578345,-0.01611411073521798,0.0015305533767193313,0.005327258041609595,-0.04433761004125229,0.14400884681428314,0.0618432496291127,0.00012198295313963087,0.0020588940129175307,-0.007237667270409292,0.02077088123533965,-0.05043958537466769,0.00014125507740353908,0.004762532444971179,-0.0018099613953995641,0.007293843397459154,-0.01718604518891373,6.056570855767894e-05,0.0027668340754282484,-0.11553604767670674,0.36000154527157535,0.08648620960420494,0.003041803812429789,0.023012842406639006,0.00912944060655679,0.042489931966092125,-0.007966864667024417,0.00010688055555858861,0.02399066110044159,-0.005333583828065235,0.0297336758551541,-0.00046403477134665495,0.0001300862238311712,0.004243406082313708,0.011010636170365759,0.0655043388979588,-0.01863185777427779,7.950437779576135e-05,0.01903176479469551,-0.01993260505943651,0.09734086209894381,0.0003718506347850469,5.146550853894765e-05,0.002108099413131488,0.057222533704381205,0.10090027624889333,0.06820742687862372,0.00027650572163233925,0.031731805762603656,-0.011629247246475712,0.04496567613253892,-0.09268944664747569,6.431093915731603e-05,0.003087717506594922,0.033066943421295375,0.36415221499705913,-0.20061241367986093,2.3428386597359177e-05,0.0010804493853583282,-0.010959276742323271,0.030783208460033518,0.004712670788191828,0.00012444486331714694,0.01660745454207959,-0.007316349994738256,0.03347955908497952,-0.07777724255742909,0.00034446310647452867,0.003725498130817115,-0.03502257073682095,0.14788353835026583,0.07719659084243498,0.00013564381126260109,0.015305885716084456,-0.0022110594365991124 +2017-11-23,-0.014862772346341053,0.09952021997684002,0.010333276236179897,0.0001579337990619635,0.006720910063349992,-0.00018776622508745515,0.0006580591352680622,-0.0795178213926751,6.846412771855435e-05,0.010856956591140662,-0.017115070727043123,0.06159282362077195,-0.03815819761024209,0.00012854221776740756,0.0011527497942925124,-0.003459913081955983,0.003554193825675939,-0.019079654661993208,0.00032854278710549767,0.022135025007745876,0.022605354743470935,0.049379024784164435,0.011614583064794053,0.00023953368211791846,0.0016838816572164689,0.021170055099142496,0.05020113224203252,0.05960838805489976,9.207785969880435e-05,0.0008711735165199874,0.046383101192947654,0.18351992010833912,0.023884749331596795,7.415943733995615e-05,0.020206056141136512,0.039052129983461144,0.31534505280836467,0.020041222909114108,4.246756093127593e-05,0.004973103877792475,-0.0012038889163086914,0.0008995261496933283,-0.0307542694469647,0.001032089618687224,0.0024127869511477813,-0.006678109497373186,0.01519841378815134,-0.025741943339066625,0.00015364454927057188,0.01707830647315036,-0.022665173238839702,0.01588855137235118,-0.006445335517591049,0.0006972669792375623,0.005901632817132652,-0.0030645225027060366,0.0481408144682234,-0.05012674995886227,1.897021139748575e-05,0.0035006583628552643,-0.007972429064973008,0.023297710655464956,-0.07881221823122048,0.00010165493204417299,0.03437598581003601,-0.007687725425711324,0.04623409540916327,0.015408106609224146,4.680554614845254e-05,0.003025030013142351,0.023437049405516452,0.020386650359837576,0.016168779109686372,0.002242229352178108,0.00645643507919141,-0.011680892540847027,0.07528674669242533,-0.11284572161289125,0.00012767609925111326,0.02215639795771945,-0.006205803779254662,0.0337219044317332,-0.024006991971093482,0.0002849667426807349,0.012986983906330277,-0.03786476548790059,0.25582884468073175,0.016776559496997134,4.169142292606643e-05,0.006038309181577405,0.022791381982303065,0.13685476712435315,-0.07809943008288052,0.00027447167799397534,0.009122686095066359,-0.07160890176346679,0.9210747634188865,0.018829836871086966,3.226282268176912e-05,0.000870382150781235,0.006714069293934373,0.07336603051467493,0.002546155856137436,3.057542525748545e-05,0.000630429926222659,-0.043897017422342574,0.14084253828254897,-0.11088570998611558,0.00010039773742017266,0.007500900976023462,-0.050421813489675005,0.4321872118278668,0.08550271502503687,2.6948768613621622e-05,0.02264497904816444,0.0012522911385507074,0.004138891121210403,0.0024754214710999358,6.708087020768628e-05,0.01888232311234201,0.007766801977358651,0.032319551014894705,-0.011367011343488238,0.00010988173526102637,0.008502871030172474,-0.04460314448623555,0.04123308245007147,0.044189168668776015,0.0006182942905330298,0.00500298436318402,0.01395232286963038,0.06120768955250654,-0.04327355576029961,9.594592640756488e-05,0.03547609791986603,0.024418369222799493,0.08013333787122068,-0.027848313221252835,0.001955791695664252,0.010913639812766647,0.03639759782523704,0.33802445700812667,0.03498984755895365,2.7688969531937518e-05,0.01617637917461823,0.04128337264283592,0.10681077511011303,-0.0168110529248335,0.0012636633004683654,0.008411685083297715,-0.0007091059553056506,0.005901989337421041,-0.010309507733859045,8.000891028874859e-05,0.0020008469156070742,-0.01278868427981191,0.021193780537083522,-0.0589703435056583,0.00014241732337384622,0.0027099716794375733,0.02862815843697984,0.04040013999453139,-0.006243582431782113,0.00040673772563576947,0.007963089025024846,0.008268734581694288,0.03287911612545962,-0.035632137457518524,0.0019492577015698667,0.01236865680112437,0.016529340176393903,0.06910033628772626,0.0022119593612792763,7.674776323146589e-05,0.0044918816629157185,-0.05957816756426685,0.1050803779571904,0.04416984136313867,0.001409427390292045,0.010802906503296343,-0.00523549309862835,0.0152501284439743,-0.0001816734234719067,0.0001360191718780225,0.004209007428479551,0.03298703884405731,0.07595443341769387,-0.019981234016918915,0.00017605589827278937,0.011935604663982378,-0.03489824878861199,0.13605622969632694,0.013050020971385112,6.260357400002958e-05,0.008883237866423706,0.0013772576586206222,0.0042857609628940705,-0.06722026182617694,0.0030458275406599154,0.028243796942085748,0.05617920634317142,0.2740680689060524,0.07817674538300146,0.00010196655120305079,0.0021822269578329646,0.014825705248240848,0.07341691249039675,-0.0013731820201826003,0.0001464468482539083,0.01327315151446198,-0.010429275731357096,0.06086231879570073,0.01822768075657453,8.105024906691514e-05,0.018338015657012784,0.003872939769660037,0.018239835664217725,0.006001728266799817,5.336631518191553e-05,0.02413396069105834,-0.006761893970396874,0.011548562520246393,-0.00610974375610553,0.00028547614321189634,0.02431749851324593,-0.015854741989720793,0.07081009857300614,-0.04363966859090863,5.567732427525806e-05,0.008609492134582383,-0.04640181327091437,0.5739937814814691,0.17882429401177688,2.0857346216073375e-05,0.013990556220380559,-0.010109903721672519,0.03267241288015207,-0.026787060115935696,0.00010816201658001743,0.004623214023733178,0.040665354801458956,0.15711884123467798,0.15284991586572913,0.0004079662807591088,0.00631185378951438,0.018034410580609762,0.08971353632019322,-0.007459478371661502,0.00011513722892288415,0.002951253173158654,0.0006469127729559474 +2017-11-24,-0.04945344094551219,0.32761868515604037,0.09357944567079651,0.00015962997141481553,0.013757241757719299,-0.013288579795312073,0.04660343347818349,-0.0003087326560716309,6.841812701383174e-05,0.022617181157836768,-0.002022094387105053,0.0053629096418947005,-0.0066828660743407245,0.0001744207495400147,0.0009955230198402537,0.0002822373278817044,0.000319891263376535,0.00040285776498022365,0.0002977693061187553,0.00944653568023615,0.028453382273601457,0.06678123173960462,-0.002795699278954898,0.00022293448122391054,0.0019017311251754308,-0.012264313013158756,0.03757613539535276,0.0066028561400823275,7.126525672115302e-05,0.006054321319610247,0.04114589309826091,0.16025005184741195,-0.019063513339952907,7.53387083096617e-05,0.03129957716855014,0.03429101046097275,0.31393100525310824,0.0146923057848719,3.7458008729942916e-05,0.021431272443077704,-0.0038323981273418765,0.0033220444402293583,-0.0057159454808180755,0.0008896311232121883,0.0008604101057127778,0.029939719627999326,0.08085777113020494,-0.011073267196643722,0.00012947557540333432,0.009443000337467734,0.01558492968195063,0.013500791713549258,-0.018024321969442373,0.0005642479218417692,0.01406965394389713,0.004712929265417014,0.06004389757844394,-0.028845990854865385,2.339078707472754e-05,0.0031592486214558875,-0.08646196269013681,0.24020591892812732,0.07731915668126438,0.00010692824109489815,0.015333739400499188,-0.010476389718378202,0.06144340977351445,0.01821753064260132,4.79952386335092e-05,0.000316198252216883,-0.00048733803960667235,0.00048620892861113977,-0.02882630667881557,0.0019549261441322323,0.013545515894654027,0.018280771430281048,0.11816959469033436,-0.03373303816587141,0.0001273036572257986,0.02648475137121595,-0.08662899291608715,0.5023032279939847,0.07169475756731744,0.0002670579607755779,0.02010370286720501,0.025534280746853565,0.13655303571691887,0.03140884846675017,5.267241435946034e-05,0.020419507218135867,0.003304009779189431,0.018688828762849614,-0.0006932375859660005,0.00029137081364305993,0.010060060491195896,-0.025747636294056984,0.3918864385158886,0.001540795331185089,2.726511678927281e-05,0.03413040679544854,-0.011682180439302383,0.1221508346920773,-0.01123517400880942,3.195281905299174e-05,0.003415867194650916,0.056062363228182324,0.13435614213082075,0.2271918279195464,0.0001344115630789982,0.01321485032005734,-0.019877175819070142,0.14896650229616093,-0.013711490408882565,3.0821830980069953e-05,0.004727235850978664,-0.0062661687332422385,0.019564330577395365,-0.030566832130382693,7.10091763289618e-05,0.0017673070524721135,0.007991376835520106,0.028738877261591855,-0.009301011336739745,0.0001271453285652158,0.00674995411049246,0.030699831118146906,0.031129188404470026,-0.0002518867295237009,0.0005636944382322838,0.03080394381533382,0.005257611927519042,0.019876235920305556,-0.07466442121342139,0.0001113372251286033,0.02661641812540992,0.008476746288033646,0.029633256341622415,0.0006793340623363742,0.0018359843780382935,0.015569965830482807,0.008104300352341377,0.088574355394386,-0.017133067011474382,2.352825524008137e-05,0.009562819379212335,0.03859293111918659,0.10329224115013647,0.01906223026320528,0.0012215502406929023,0.01301524443779181,0.005887914749040137,0.04353247075417127,-0.01319934979127218,9.006868861829964e-05,0.014779551366538107,-0.0009623346638526695,0.0014971635384613722,0.00020050129094380297,0.00015170583109476595,0.009260124909407932,0.006760395777208431,0.011235944743556558,-0.0030427455199905497,0.00034535555093940357,0.0004969938695813028,-0.020383384825358276,0.07379869524977666,-0.003676746851659264,0.0021408091943132938,0.00046478411597506266,-0.04668008900737918,0.2020381650786837,0.053095455733836484,7.412908342793261e-05,0.0038547809417383253,-0.027897633938249858,0.03260334710841469,0.008814083429298377,0.002127072904729513,0.014085795423576675,-0.029191453150126282,0.09303453887519264,-0.00019776317857973902,0.0001243161471366486,0.00977745595452945,-0.00843923459019568,0.021757995347781917,0.013491239217208252,0.0001572333095803569,0.006067204594885881,0.04876302510334388,0.18635624419272107,0.06567877228094568,6.386466169026543e-05,0.010036510440956211,-0.007042886806451344,0.020420801959546358,-0.006941274010167216,0.0032688573805823283,0.019624360532764076,-0.048484859809160376,0.2832223583959767,0.055458275085153795,8.515676996278421e-05,0.005024626726973316,0.014237983301689919,0.08853898831196011,0.0021323093090641686,0.00011662044880552481,0.00878756187980569,-0.008275875521167576,0.04930741475201597,0.008452379072125541,7.938718745405916e-05,0.019678076790574414,-0.0669173638118891,0.2828748962233602,0.050413871714928525,5.945546923394766e-05,0.0016791219998045545,0.018875611202343132,0.03617164388685601,-0.09817427876609736,0.00025442639873210124,0.01739265725571662,0.0010523206591510383,0.0039107483167472885,-0.009853032957936662,6.691178341494932e-05,0.0004466675307589973,0.0014612836923919921,0.015408123245699179,-0.027363006627544813,2.4468992032961207e-05,0.02052889945684204,-0.005836304063321216,0.02042129045851272,-0.021415458793147914,9.989958682190745e-05,0.006886278103936848,0.021264429728174484,0.08968385935842604,-0.02165301839613713,0.00037373814200152586,0.0023495570952643224,0.015653887042985384,0.08380298651219144,-0.007341291229345565,0.00010698785875265472,0.00914315166446251,-0.0016209353071133764 +2017-11-27,-0.003476961043810159,0.024676426382582935,-0.00641815079003139,0.00014900613262028046,0.016166743275316843,0.02990203795327409,0.10681937561894247,0.02129607014219705,6.716782414573579e-05,0.013713879153690938,-0.018136499005906602,0.06113255987890956,0.0013720202041485477,0.0001372391687839186,0.01207942739659948,0.03144218556960524,0.03873891313165229,0.08413826353160755,0.0002739259339008242,0.010672548124445003,0.014896533778329628,0.0326037013968564,-0.07040625726123881,0.0002390650509760965,0.0008710256298003342,-0.004838002803783831,0.012111415905456658,-0.06661242010606404,8.72203725749729e-05,0.000716398072736268,0.029659638366622654,0.13093093281935442,0.009656483705553312,6.646812755822966e-05,0.005263999534988632,0.018372681772366114,0.16786977507979212,-0.0061950291354293295,3.7531736514303474e-05,0.001967389767980516,0.012283962462364389,0.009552750130883862,0.006733985607041252,0.0009916418550780341,0.012885169153607073,-0.03422748671393885,0.07323669456476095,0.026245390250564212,0.00016342111230404466,0.005976998615336002,-0.012848370697898901,0.00938855301920906,-0.0006786937872746124,0.0006689193411686581,0.001083083041946952,0.009737951225137164,0.13153234901419347,-0.04059468809008288,2.206265674448664e-05,0.003345312364379094,-0.008102449510147514,0.026105832034499853,-0.019907400987753315,9.219976876921623e-05,0.00843102626126472,0.021525636372487316,0.10419118351040978,0.10158362140377161,5.8154971426195614e-05,0.0008745185009789205,-0.021146234153297097,0.01870446525060788,0.0067407307887254395,0.0022050107593032447,0.020169364320561815,0.0022801518896183584,0.014414384210850641,-0.0029439088928774203,0.00013017266371725296,0.02213962209686401,-0.0069289905188640874,0.040366482839697196,-0.009008827144117448,0.000265801414838631,0.007416873023651778,0.0872418712608101,0.5307402004240843,0.192202456568893,4.630244708805728e-05,0.028399862796328803,-0.04728945252170272,0.2503877137192503,0.03392108433535679,0.0003112705828823591,0.03847043352022829,-0.0120083348576415,0.1754093446569913,-0.006252650825299359,2.8409284447073573e-05,0.030684274037083976,0.01652424758517872,0.1633209840908636,0.014509313571775453,3.3803480163772385e-05,0.004948160678003898,0.020587402151482127,0.05169706712441994,0.03078251908822095,0.00012827983671309637,0.01239204470297767,0.036372333793409255,0.21241228414449156,0.017639590251723198,3.955340853678587e-05,0.010166466145765935,-0.01437328160542806,0.038264694171692516,0.033065122101188525,8.327891727213182e-05,0.01325191008604823,0.022409782334279416,0.09230325766865194,0.04536832654717214,0.00011101181543817331,0.005234863389646311,-0.01458198849101293,0.014850815293670471,0.005471091022164089,0.0005612314708047406,0.003975796147483745,-0.004313000770537124,0.013679355453998461,0.001051808817614105,0.0001327088574327308,0.0028094105933751793,0.05425582644732605,0.17191229248752712,0.04107412099024065,0.002025623030642898,0.020325661236115095,-0.015162593443174896,0.14723579000715448,0.0017698591449867537,2.6481482520436444e-05,0.0006470426697672482,-0.02330756987213954,0.06415572707994825,-0.03333549317203048,0.0011877713167806959,0.018013139752295414,0.02240397957647129,0.19308706326627106,-0.021455387420861192,7.726763757607228e-05,0.004900775892035982,0.018345930129991042,0.025770578075487167,0.004733055373059584,0.0001680199924555258,0.006700472012103546,-0.0419445435069411,0.05881029609465825,0.1012173079873924,0.00040937943291199935,0.009297194343926877,-0.00843869254171958,0.03155536330569706,-0.007271900773071801,0.002072775756362898,0.009788227527462083,-0.00402689355287716,0.017287916264731844,-0.02252858055679538,7.473393838955175e-05,0.01701959001154133,0.03788556622960743,0.04772936571176631,-0.06567575832727898,0.0019731736688725944,0.011942589551571242,-0.004546426317615817,0.012550785963812445,-0.03781193265460368,0.00014352094000719048,0.019246046901706566,0.03290725672930497,0.08013520474245911,0.007395867041231849,0.00016646721147074736,0.025519715070001354,-0.09441077476970108,0.3935251364964849,0.2098619059497726,5.855486828944062e-05,0.013115536235608936,0.061219064435177536,0.18349253704505789,0.038179203469585636,0.0031621782035962873,0.054945279602224874,-0.05135840516349924,0.2556612320572159,0.05976311954623777,9.992800620068292e-05,0.0018858200612215277,-0.0025734810151700057,0.013741086534893759,-0.06982559237270075,0.0001358190469137328,0.009385562858753702,-0.00758602281586916,0.04444357696839502,-0.09062177920107906,8.073351068727409e-05,0.016918396069615593,0.08707828713429211,0.35764510480618245,0.21090917431947967,6.119345686193443e-05,0.0011028766978903874,0.09379412933789416,0.18705102007501637,0.18632454275103358,0.00024448091903096,0.03290317403283506,-0.003261953092164094,0.014199299136090665,-0.003759924118637036,5.712486395644612e-05,0.000782035443300662,0.0019266587189107098,0.01995020202715086,-0.02814025770839119,2.4916599965493065e-05,0.01569811451779146,0.006678166638462353,0.021942847380659235,-0.03510210920538575,0.00010638324507930731,0.00772232460124362,-0.002041207049868369,0.006549548685492201,0.007247430120937874,0.0004912512356332811,0.007174017355653228,-0.043271659992034445,0.24517040254485845,0.07654109993708783,0.00010108979406825896,0.006933205407190021,0.005626312526753547 +2017-11-28,-0.02432085237807988,0.17027396830100366,-0.024867040670222523,0.00015104874388345904,0.027165548013811366,0.013653278536585526,0.0528690542953363,-0.0010256987133346466,6.196492592481937e-05,0.002514854326543161,-0.012456321238684247,0.04668990376812493,-0.02413622222816307,0.00012341388546216386,0.0041918533074045815,0.005627603275318766,0.006269326941987316,-0.0006968210856911285,0.00030294961951336455,0.020251421912234994,-0.0166731489818126,0.03494563250511455,0.0411455649280528,0.00024964478466194,0.0031704935976461417,0.01924769588929493,0.058263061009436616,0.06819844640328737,7.213270029315831e-05,0.0008578333404862383,-0.05460086346527343,0.20881216365869937,0.04543290100421012,7.672441265879069e-05,0.008593394494433568,-0.00664039730173714,0.0532478561926338,-0.09294370089761143,4.2765204343694555e-05,0.002300918583605753,0.032242509285252054,0.029357667877991094,0.04902473727316963,0.000846938874004743,0.01676194690002302,0.014980491593772889,0.03481998899007122,-0.07464562964258148,0.00015043861350601742,0.008768758023210163,-0.0247731950929389,0.016160558405403713,-0.0016486171704568652,0.000749290140379315,0.006519767696739362,-0.011537609718466643,0.15621985631573979,0.11885344417449435,2.2009105866739805e-05,0.0007451954790234304,-0.03673352934185627,0.10610846733287338,-0.0006668870923743229,0.0001028403754647609,0.02427225416431287,-0.002789381219414498,0.014585733896848242,0.0006005190381439829,5.3832110263233286e-05,0.003737255530643863,-0.017532676706674438,0.014567893778850136,0.015999506320009835,0.0023473315233127536,0.002385938039847512,0.002744024299440549,0.016620998616976895,-0.004635344338443848,0.00013585729000652823,0.0001530508960430109,-0.025183322350913053,0.13925539065458764,-0.013099580716812657,0.00028003301772806186,0.015859510707998174,0.021252449208035592,0.1142141163403931,-0.009597513275171835,5.241434450582654e-05,0.015320346893213712,0.007462447997835957,0.042976274104281315,-0.0008027472693175964,0.0002861800559615487,0.0012552203178132215,0.009117839152688078,0.13460448827219923,-0.0029440611417511516,2.8110114624022314e-05,0.009067017973704308,0.04194991645178849,0.4771377474480929,0.20968869821736716,2.9374401951951263e-05,0.0059934119751618095,0.021579420999347263,0.06497980562190911,-0.03563710511453659,0.00010697545339036156,0.013542666725817916,-0.001130413120338435,0.008076139663009078,-0.0017853616492016341,3.2331491889503575e-05,0.012758911131612611,0.01369367792515709,0.039931437113628246,-0.08036565185021423,7.6029572901976e-05,0.0015613069143167904,-0.034129063175750256,0.14566810798945498,0.18255194812392034,0.00010712935335593036,0.00026999172398753943,0.021682259237389225,0.018160069755812695,-0.02267890358360406,0.0006824370259060483,0.001042313486925164,-0.015806764212772995,0.052819689048618335,-0.02358192308202608,0.0001259601426879787,0.011348750177162832,0.038854627980528245,0.13819148757607408,-0.00285648201892464,0.0018045986906737171,0.01272053629401126,-0.05080274165420467,0.49223694836578846,0.04961987885968769,2.6539646625798226e-05,0.013502840600939632,-0.0322554208246657,0.10199486788158202,0.00810274602758964,0.0010339407742171445,0.06956221120019224,0.023450413509753753,0.18205559025165519,-0.0069527705184629866,8.57772521028954e-05,0.0009218131162292714,0.002279076305768292,0.003776973505273998,-0.012622483096442037,0.00014241650181785398,0.008458996438455846,0.020668240708450837,0.027514947364607453,-0.0027604412468444995,0.0004311602730433628,0.0146814733905157,0.009863417844944813,0.04431470275104116,0.006278324308677484,0.0017251621937853174,0.008714572107745127,-0.012065168396190968,0.041192538504275816,0.0037883039174585425,9.397345664935334e-05,0.017462800608158448,0.0175583272378326,0.02347828906371431,0.00018398784511478283,0.0018590620490706459,0.016524083899632173,-0.04604510351845044,0.1563690487537771,0.0576566389082895,0.00011666717877998305,0.005598106210092417,0.013140549996495159,0.038100222908990636,-0.010689662211094944,0.0001398126291098895,0.00673764677261251,0.00512526392912884,0.02078042737807344,-0.002416051671759967,6.019711592231451e-05,0.005061957440042104,-0.020740832216189102,0.07162693065035947,-0.0816713489729621,0.0027445294480358345,0.022471687559556097,-0.007953097029863876,0.03876256719158143,-0.006930008454919985,0.00010206205761292458,0.029230986645820602,-0.011227662437751305,0.06865634208116529,0.006238068044972268,0.00011859584404789383,0.004965753837889086,0.008165322856859487,0.042163454169555595,-0.0038214796010374837,9.1597976060219e-05,0.00863404721899668,-0.035141713982432134,0.1590343418802319,0.006730228293625113,5.5536616658156706e-05,0.011827764964035295,-0.03622488525878317,0.068447295301963,0.00920599629115208,0.0002580358930515361,0.021932360698749827,-0.0015399056039505955,0.005546793006358839,-0.005652892730611891,6.903455282437485e-05,0.0009432584331585385,-0.003659432489806693,0.04269940096838686,0.0034488324475556087,2.211175647736665e-05,0.009488057011607933,0.02556386303454562,0.08615294822396219,0.052919210702622003,0.00010372066740290863,0.0028531669356923047,0.02366118672347747,0.09900993717624874,-0.052271194193270365,0.0003766914030978577,0.007654947016365407,0.026528265648251254,0.15643482869218003,0.004181421247941041,9.712861654338795e-05,0.014435133768885769,-0.0019512752354154418 +2017-11-29,-0.011973765644503682,0.07481740140143436,0.002772306732259705,0.00016924455981275508,0.011344473758754312,0.004428528613786729,0.012721932566914937,-0.06203805301133526,8.352507849184139e-05,0.003469397771097754,0.0022731028531636447,0.00836244024431483,-0.09445333478433025,0.00012574283975280405,0.009610908000300592,0.006146350318582751,0.0064828030435800195,-0.05887190379946897,0.0003199796350400933,0.004126033636680305,-0.008121000364178631,0.020126429738929093,0.0008607223079524168,0.00021112543664232792,0.005289762695639691,0.002859127472547,0.00663521042011204,-0.0006460210232531079,9.408611983051219e-05,0.004930921519508025,-0.04017228014923316,0.1385942423247511,0.021566174646844922,8.504937946784964e-05,0.009298287384211488,-0.04968439116129745,0.3635232803201478,0.09293772606618397,4.686907237605647e-05,0.013311009185292606,0.004389275492499853,0.0036715600589217285,6.162181578750512e-05,0.0009219067399199403,0.003239040517515609,0.011621590069727914,0.031006036194316508,0.002258972263935143,0.00013106332729426225,0.003888511685209169,-0.010268219214378335,0.007431785439198386,0.0002867192131529526,0.000675345992709232,0.015878233587545164,-0.0041341932348961585,0.05111673933122073,0.020034627839866717,2.4101852174211905e-05,0.0029063357065258963,0.046349558578964827,0.13910233444187278,-0.029093303547660085,9.898336681359633e-05,0.010892095388680972,0.0015293367127988866,0.008072979207684409,-0.005362198343791634,5.33250287890217e-05,0.00019651564148981735,0.011114153169947651,0.009839597446770992,-0.015667429585582336,0.0022030381564841486,0.012612694322390478,0.006010493178822678,0.037601962061910015,-0.062433633146851894,0.00013153814393915267,0.0015474859983072968,-0.0002576423672786789,0.001363992599429375,-0.021305441937901428,0.00029249166778126337,0.004278541287882443,-0.0032090967481928673,0.020329022076431575,-0.0076029363824277755,4.446591965727088e-05,0.01054793668672894,0.020693722477547465,0.11021787943976703,0.01454587712057505,0.00030943780865396326,0.011420475321199709,-0.006882880388069959,0.08592240836284334,0.00011803088548295637,3.3242525613325e-05,0.02412541793368953,0.002271789416269953,0.023017054306794283,-0.1409927777415289,3.297615673361282e-05,0.016650230108863063,-0.013396139579044055,0.03934282145186686,-0.011870160858209204,0.0001096823931822784,0.009738310905556368,-0.014142083018466145,0.11125110142239639,0.00047151778979804637,2.9363068557585105e-05,0.0012200727563012018,-0.00589753538871709,0.018956524296203096,-0.027326736871255777,6.897460563459142e-05,0.017321603201568295,0.009320311192265198,0.03388738222743869,-0.011370741628578623,0.00012575955369850239,0.0006611171547239308,0.01836843255766275,0.016663791549397552,-0.09693215540932464,0.0006300482869776643,0.004753111661556036,-0.02385780843793674,0.08169236738161031,0.02477977475313018,0.00012292354445453586,0.008863290276511183,0.028724320255167225,0.09386012119510977,-0.02857215706616772,0.0019642095768425205,0.011960445618295207,-0.02588754041100182,0.2421581475724453,-0.06071524060736107,2.7489946800077088e-05,0.0038870395126705372,0.03614190566042492,0.12080232721842285,0.016875173026628394,0.0009781535080296505,0.03161916451018228,0.050637647693578036,0.3588210740870189,0.01424910501814136,9.397692365858975e-05,0.0019300403444068076,0.006656484070689409,0.01134975531402222,-0.04061405199892674,0.00013842157438497728,0.01698829688248633,0.028213994201273507,0.04004037411374158,-0.024198375621326523,0.00040445514087447334,0.011392748391961817,-0.03967009298214624,0.17608101494344783,0.052198176019647685,0.001746228317870066,0.0012900609102944895,0.007530288526156352,0.028895867396189143,0.0034858666881161103,8.36115455618948e-05,0.010184770884730295,0.03378576129378368,0.045899322118402586,-0.001168758531797557,0.001829804239916179,0.023276386124298023,0.03708707044134993,0.13729772113816807,0.06493344232802686,0.00010702253575330152,0.0095357790097148,-0.0013991301351233196,0.003548093490189475,0.00573308765148159,0.00015985397205811282,4.8862651780765855e-05,0.08011173994612587,0.32380560837763983,0.11144114824883707,6.0384534507498954e-05,0.0027387426140245597,0.038184069182372486,0.12190507287217199,-0.002342740625096672,0.002968783227516347,0.009098810419205782,0.06099590522190457,0.39697139175560686,0.053658870812645074,7.643319987880378e-05,0.01589799385053372,0.0049343665807742056,0.026439056279977762,-0.13872809223255053,0.00013534625572298925,0.007602133348816001,-0.007955436707466273,0.04498027756007046,0.007282416866922901,8.365474748461505e-05,0.004455020121336385,0.0037537887604812852,0.018352446680315524,-0.001417419972427062,5.140711758866423e-05,0.009532926622838896,-0.02367505929548561,0.03901881377719855,0.018461124233152465,0.0002958328567231015,0.012522367008642003,0.018556070845143754,0.06806617138632425,0.027095684343744972,6.779053711480264e-05,0.003308723609416108,-0.00979927848059856,0.09840906878284737,0.009413573214011865,2.5691547429539394e-05,0.005777501510476337,0.007249914438876481,0.02145794576018766,0.002994492106403371,0.00011810103470507504,0.00017136804477169032,0.014394269537453742,0.05547953032740981,-0.07726282282277029,0.00040896376074095486,0.005733924274481981,-0.024124587424614086,0.11810227060280619,0.0025107691401197764,0.0001169966545421306,0.0020014782310913853,0.00607979736561489 +2017-11-30,-0.020022251363808398,0.13822260152242602,0.004730144301704946,0.00015318647778101948,0.00955491618663143,0.02301261488516859,0.07523887016971252,0.006451532331715671,7.338955103824715e-05,0.003758789805103322,-0.013027871344006526,0.0387256927412227,-0.0007658515050334206,0.00015562217121380112,0.0010754203522960212,0.008995599018268678,0.008960781356114495,0.006218637535353208,0.0003388067577415826,0.014854697329663113,-0.06505549074967619,0.14170300650789777,0.24950020259751926,0.000240216405947789,0.00042558647666047437,0.007625816965446064,0.01942873803015414,0.011101487228951318,8.57015199774759e-05,0.011602542760176126,0.03559784564650614,0.12315939400714464,0.018508505166532012,8.480979773983595e-05,0.009042287104314657,-0.004163961570226247,0.03290681039177004,-0.017712793482373243,4.3392986211743205e-05,0.0163819315995979,-0.031219124702985702,0.024645366319284722,-0.03762570328895022,0.0009768552870782813,0.007761258841172928,0.009405947413705516,0.023579643325659913,-0.005538350657950791,0.00013948490188003232,0.022000599798545288,-0.0242414441660224,0.017690066365764517,0.013719007882088612,0.0006698127113339893,0.01135663844200334,-0.0074303154929039475,0.10142026672658525,-0.0035759194034647272,2.183259182647528e-05,0.0015294698561635644,-0.011779401002871528,0.037844950086116456,-0.031060291835355122,9.246264391641281e-05,0.011367019269772944,0.005151315167273955,0.03339849426100553,-0.0035062984271805,4.341632429204818e-05,0.00830843757290896,-0.029479146902146137,0.022669088160268778,0.039745904919181396,0.002536318750887226,0.014931916925375575,-0.031505380991966966,0.2151004442630594,0.02199212668111934,0.0001205301053812781,0.012732161225109924,0.049339202452362264,0.25293891236031585,0.023252484546447988,0.0003020540826727631,0.009655346157458718,-0.05263885912139479,0.31852101964889645,0.02774577574229317,4.655103341718278e-05,0.026340451076700726,-0.02875507199413586,0.1665570312354585,-0.05273457464154547,0.0002845367033751646,0.009523863564319255,-0.017441015082163547,0.22695192797754657,-0.011890239624435606,3.189099815694017e-05,0.01105227241117822,0.008759925774362,0.09984518097045923,-0.03777422726698522,2.931264624764573e-05,0.0045188087755461265,0.004245008242818068,0.01268431837350792,-0.0402274067271965,0.0001078038223014929,0.011688430299209492,0.01065342450843236,0.07359221433478416,-0.019339456421799767,3.343872719065218e-05,0.01947829691710308,-0.008930028898913984,0.028145850817009647,0.017991423913284108,7.034218674549533e-05,0.0010435853912405058,-0.0016012423602674052,0.0069561153525796735,-0.0011629816623916019,0.00010525406824474643,0.0030833134815983314,-0.048675063250158995,0.043862639504914966,0.04770882993804054,0.0006342892097288045,0.018578516406764053,-0.029320050681399604,0.09655580283887559,0.039188671470995945,0.0001278122106461352,0.019842162315922465,-0.05851740253150738,0.198771914232793,0.055146968046016445,0.0018895100012659874,0.0014635369982771403,-0.010677055483065146,0.09808708695192592,-0.010343899893338341,2.7991221958040408e-05,0.01935360576248589,-0.005589392946878123,0.016283910258919537,-0.009961279546329761,0.0011222179526464563,0.01414141684097732,-0.03549197504643283,0.24584372119603384,0.08902552596854946,9.61383556709217e-05,0.0031209175724849557,-0.019200714015107215,0.031902497320526496,0.020169158041247512,0.00014204896852611882,0.00029611483443609714,-0.02128833789747007,0.03596131493202332,0.031274592554424094,0.0003397896180693396,0.003787561436975985,-0.007006111828415949,0.030035399334031033,-0.0026032900207769226,0.0018079815560643252,0.0050918487373920185,-0.0005193919748462113,0.002164355585756279,-0.037533050879222936,7.699401939976457e-05,0.006026739118050578,-0.056209311345385364,0.0833009602262298,0.05162070600985804,0.0016773954038396062,0.04661410207249261,-0.017396278940338294,0.056761381268084436,0.0011212087277982351,0.00012142816830987597,0.00198481412276139,0.010048922448839275,0.029590707371195346,-0.16974839038239425,0.00013766531205685416,0.009946995214808843,0.021599347866650614,0.09615757841954792,-0.013550085328651859,5.482404133951719e-05,0.024907592690885952,0.057530354790545496,0.1700651029002877,0.03186708389802873,0.0032062686164811495,0.03721835367935575,-0.030778508179379105,0.1543572704410589,-0.06954272915601681,9.918843693765504e-05,0.0066169799046433995,-0.016082977945741123,0.09102978811043183,0.037982027923549724,0.00012812790318720573,0.02030332947033852,0.027860437814298863,0.1546765860250642,-0.014803777417818437,8.51945979479049e-05,0.024855973025368634,-0.0443249109549199,0.17562484091301905,-0.11268125410650308,6.34321340831839e-05,0.0028975391005639324,0.03442372786301663,0.061335841054168824,0.014589370791711275,0.00027363583348995646,0.000192585054933702,-0.005563850760292933,0.02232541954222099,0.0005768808415047247,6.197124472640233e-05,0.003726517670278557,7.750678774736956e-05,0.0009409429933318234,-0.07449367569378978,2.1252386761843393e-05,0.023345891207241322,0.01545747526238063,0.040101751434887555,0.02154395637879927,0.00013473616564655972,0.0021400799160343977,0.016829876896329567,0.05307577723445248,0.005616214618624918,0.0004998187540715618,0.0022157826146162697,-0.002214919554560285,0.010773839999530771,0.0026481231369484453,0.00011774954339760559,0.0014244774232833777,-0.008709260720584136 +2017-12-01,-0.001892304500721402,0.012348239594842965,0.0001619590524939545,0.00016205877757198976,0.018158588554795133,0.0005228305317204182,0.0018013917462204937,-0.02088437538278641,6.964072748035931e-05,0.014909995034849863,-0.01323940016018632,0.0459835037784036,-2.205853517799303e-05,0.00013318749584639175,0.003954587864197086,0.01563252914321593,0.01616209672504704,0.00983492289317629,0.000326437017867416,0.0025786489855239595,-0.0026466419070283087,0.007760419490030976,0.002134799795474789,0.00017844638708732489,0.0015118126497832712,0.01496275187617054,0.036553430434959226,-0.08292426056976766,8.937788500465033e-05,0.00383084536387658,0.010034417030885057,0.03477725076714007,-0.002865773748723946,8.466165513257676e-05,0.02033044333278466,-0.0436341926682007,0.3702096101370243,0.03136239720005623,4.0418284002325914e-05,0.017476392200146375,-0.026982107540172568,0.02031414975571334,0.04294743748544758,0.001024287813632875,0.020910355342794326,0.02941919781305392,0.06568805105252619,0.014904662144635502,0.00015660525685909759,0.000932625221919912,-0.026773512965746163,0.016489933283752117,0.020906708532304207,0.0007936167375757984,0.00893775815080658,-0.00011822490051920757,0.0018616961490752865,-0.012864895072975517,1.8924436046239837e-05,0.0018723840137022114,0.027289659460109382,0.08610779532844223,0.022449837426897268,9.41470430343956e-05,0.010014211595888242,-0.03654349584518035,0.23626317851434966,0.24593969202628338,4.3538741022510066e-05,0.0006052421447558145,0.012524688536774504,0.011745971810813069,-0.11281440638136614,0.0020797012506810902,0.018488960616664555,-0.00587235081265511,0.03634862085937894,-0.0024208587553799198,0.0001329462716895787,0.006024630962277982,0.02958557121809972,0.18359368879255245,0.01465056147134988,0.0002495344105332086,0.013124743637855351,-0.025778672531166356,0.16609701191306245,-0.09022827450002396,4.371793963758661e-05,0.03809455202484204,0.05426678463496585,0.2713813058527385,0.10238344588105157,0.00032956491374439326,0.019763855721887904,-0.019196209004812434,0.26740610817458055,-0.018099253267531895,2.9790265770430302e-05,0.01465873740876169,-0.01607793529210453,0.1763921834870269,0.04780193631190851,3.0453179987060942e-05,0.0024083575424954443,-0.01317222617438939,0.03615401163895136,0.003033481353752594,0.00011736144322218518,0.0004077509715448987,-0.034311741989569385,0.24252892296265813,0.0032292277704144587,3.26792142364962e-05,0.005555630939958167,0.04734287490149478,0.11081570863506485,0.21365637180949448,9.471759915630563e-05,0.015367105809403394,0.0010742882976629473,0.004175482372479104,-0.0001776598045482319,0.00011764210476334833,0.003673755595931209,0.014556541226018953,0.013872482164640078,-0.019346938634390895,0.0005997628767825732,0.00882067331873722,0.030110956078809942,0.13263986327774532,0.022816941669759325,9.555127553381866e-05,0.00926003518818147,0.014980414785180696,0.05745856469689344,-0.0033816988835745055,0.0016733555943543208,0.004475861745258554,0.0351316140371978,0.3423202683992664,0.028917745664999907,2.6390503987922234e-05,0.025121411820341513,0.012207432426403484,0.03925700979588995,-0.13664354832925696,0.0010166661932223227,0.024383836478032692,0.005899515346395005,0.048093850724724996,0.0007314968536471621,8.168690232735458e-05,0.0025812209757486715,0.008951234711042614,0.012652042311373608,-0.024414358430677158,0.0001669812453085336,0.003122283715294177,0.04427349993590678,0.05473495610450695,0.025147496287823062,0.0004642832278389467,0.005354868159635151,0.008491762295885054,0.03853794446288407,-0.005417959830286707,0.0017078889292179904,0.006354893264860385,-0.012503697497335443,0.04473254235559636,-0.021742397879999882,8.968199213448788e-05,0.01928885790515663,0.04961753831595165,0.06819775841782467,-0.017347644033798067,0.0018085990792762454,0.06744435240716912,-0.0038248148853959143,0.011176444363944582,-0.008609087111535269,0.00013558848146145728,0.01635382138174892,0.016849842785109457,0.04195531610256002,-0.00011855743848207344,0.00016280555970100846,0.01241652465930061,-0.019826569319075078,0.08430469586419854,-2.0623939475632877e-05,5.739971444081239e-05,0.02592643717373556,-0.005958153005645749,0.021473685213207628,0.0014161991452267284,0.0026298024598210208,0.004141205933773624,-0.024239335054089147,0.10928816496931801,-0.004691798474854493,0.00011032860797464707,0.00888205783707726,-0.015166820558804644,0.08596525841210328,0.029282331447768154,0.00012794766364557271,0.0006065166875345194,0.023306941662444618,0.15277075363024742,0.0018698051456272954,7.215954179404731e-05,0.005788789734219204,-0.010562755415609203,0.04936166146129812,-0.004804969566468784,5.378174006881107e-05,0.023751700983687923,-0.0038202755251395873,0.006277663290919156,-0.007042888381843729,0.0002967058178224731,0.0003698222063403321,-0.012942288958135085,0.05138170108563747,-0.0014569572263546217,6.263498669974959e-05,0.010953953138895706,0.03136109945815964,0.36256354885350245,0.03711309509110862,2.231713425598337e-05,0.014214112149206436,-0.004008852281770947,0.010672486610132472,-0.011743868637115804,0.00013129959896331623,0.004184395894700084,-0.004594045242397289,0.017311475573468144,0.023713118851420262,0.000418301239485679,0.005996555739208353,0.014083623894743,0.0795400759836109,-0.06451313603045694,0.00010141453720071431,0.016722475478329404,0.0031897847891686412 +2017-12-04,-0.040428741606834476,0.2837032769890931,0.04446909175360291,0.00015069972342453974,0.016047770430891922,0.0916640927537395,0.2862533334881527,0.1670747333578882,7.683502167209243e-05,0.008249104279181749,-0.03036149757206457,0.11601528719224653,0.005846689107513017,0.0001210612556890106,0.001706309950141362,0.00826636647556671,0.007922370207935547,-0.02419862409220535,0.000352149745222242,0.008913498680071227,0.01975616999691711,0.05402992647510859,-0.003977513987143655,0.0001913225454291902,0.009032740390189033,0.013005209544675933,0.037531326478692645,0.013053263901155413,7.566066948903416e-05,0.00631500073225627,-0.024861302714885482,0.09648678606295887,-0.055991794423023065,7.560419548511131e-05,0.029863653580995766,-0.056006089832142565,0.498178099306713,0.07516893545382815,3.855220616775504e-05,0.009259693197578384,0.0008524820960457895,0.0006683503960149603,-0.012349752678167774,0.0009836165865407516,0.009642262103751407,-0.0002014377752717228,0.0005626260384055657,-0.023257677380859473,0.00012519384424394952,0.01478631622068152,-0.012218197411587518,0.008246424032934673,-0.016582648423154333,0.000724212194829038,0.030783643121971526,-0.005810815534900809,0.07947365671523154,-0.04166549882491004,2.178896906339593e-05,0.0010246473831292504,0.04726234477448039,0.13199292932411652,0.05733674964711222,0.00010636913672284904,0.017846542863402218,-0.01236811056827718,0.07469479521469888,-0.00833736670672286,4.660954211326565e-05,0.0025483155003283237,0.0033862601953995484,0.002793126131516683,0.001128581100893187,0.0023645731306239847,0.0012738032658155063,-0.015779114762304473,0.11027310484703123,0.010090527359210932,0.00011775114527409915,0.004361634088458183,-0.014270216773553793,0.08376467700576494,-0.027931333601576028,0.0002638018786874833,0.008917865593604649,0.024259219112204994,0.13136464966987343,0.012007133528745821,5.2018672044722744e-05,0.012016078968722064,-0.009952774536595942,0.052426816127117935,0.00020004296404481917,0.00031287977421662523,0.03430942573883806,-0.0048790514349432695,0.08042195518059574,-0.02332445683904982,2.517624756570534e-05,0.003802197331117234,0.00020517204032767695,0.0019848435902503916,0.0003908967043096023,3.4536124180213614e-05,0.00598669608058445,0.015650457691064094,0.044193851971650974,0.013605285816388198,0.00011407433401559644,0.010395285542872619,-0.021060297073451646,0.16455885801644993,0.002139455324973902,2.9562121951338563e-05,0.005230096041339797,-0.005822707555170208,0.01703224622808706,0.006208083068581098,7.579323320216714e-05,0.0019566440339975587,0.008735558962633143,0.034005718247580696,0.003590139321864755,0.00011745928229243844,0.018678101071317108,0.025339676504663285,0.025275847922951858,-0.013060513858561693,0.0005730214693208407,0.029609393584254264,0.004786923688116218,0.01898862081832168,-0.060746149698508715,0.00010610823510801401,0.012930931346031134,0.005113895005715974,0.016362992908498387,-0.0022325693984890367,0.0020058952027734605,0.004782784763028638,7.983228084724644e-05,0.0007594066736646162,-0.008826706627387802,2.7032506951383248e-05,0.013039272457138248,0.03494450236412376,0.10694143198620451,0.026083114011635572,0.0010683268284248633,0.01499711884266231,0.025599703441809733,0.18900239779027442,-0.005860665860280742,9.019724313761203e-05,0.0015226686511535853,0.024427200716082117,0.03589934490156826,-0.11095450867158638,0.0001605952011509423,0.008356096535639424,-0.004559315126644763,0.007645552928793164,-0.022110082524992386,0.0003422903259903575,0.006747826379261293,0.02972397807008852,0.12410930379901171,0.026619823347640993,0.0018563203854559814,0.0013209626475843288,-0.015866797826088647,0.05756226473027681,-0.12526931191185084,8.84385851228455e-05,0.002785280245463613,0.017985785454962322,0.025710032419390762,-0.04042399718542846,0.0017390175949943698,0.031057854776955007,-0.024334380991745085,0.09258067439568295,0.004053553681009035,0.00010413962267462204,0.005988119615230936,0.006369741806391227,0.018643463881269636,0.005789852222011323,0.00013850185791509944,0.014373005832234716,0.016889329615954334,0.06389025274453569,0.0014184835221923834,6.451960953568966e-05,0.025552408375298884,0.04590608897744661,0.1206825479242551,0.01649119637232927,0.00360532052816953,0.005073135683672923,0.017543803752232034,0.08869305453507789,0.01171809716975187,9.839538272435276e-05,0.046709296937363434,-0.017238624554620424,0.09900974752673006,0.01833825624713777,0.00012626571503486473,0.0037170135705974737,0.02093783086758053,0.10709388672019747,0.0028163630639876495,9.247316146485042e-05,0.007881805335829273,0.013014053264464035,0.0539066746449669,-0.02344574697913585,6.0676068447065005e-05,0.0022894220541029675,-0.031930430146369246,0.0639198512893545,0.024743432243394276,0.00024355576131884115,0.0327013049557074,0.01752455097292212,0.07753004001299314,0.0277964392171124,5.620711142173193e-05,0.0005750645194138395,0.004188641656769762,0.04851028839395382,-0.012476330744646916,2.22777146307802e-05,0.012368685263958934,0.0017783660592107348,0.005785746292823159,-0.0589482968877481,0.00010744117269013067,0.006736391789877946,0.0033733383122768576,0.01196414982423928,0.0034489102571278645,0.0004444327217349447,0.00936474615138839,-0.017083644977674457,0.09939614806157733,0.009810250336875865,9.844253285303668e-05,0.008746330495010102,0.003877023919965028 +2017-12-05,-0.033694673180269516,0.23992888165574916,0.021035066617482,0.00014851328433903698,0.02552262249748161,0.004401056436056317,0.014143400751217393,-0.0004499661031643178,7.466440645977716e-05,0.011924368623100198,-0.03459460007734447,0.10590014664633737,-0.0009021345935120263,0.00015111548084876102,0.013232542734482001,0.005221901989498014,0.006045058487112056,-0.06455524284881599,0.0002915386010220397,0.0035049047349747986,-0.005596646230928692,0.011927266903400888,-0.00854158382139841,0.00024551876457637006,0.02541698985094374,0.0060313795551467,0.013045290836874652,-0.004737684939929232,0.00010095076944019082,0.00808893454259696,-0.011064626244634185,0.03859821409970691,-0.001051303496659998,8.411227755680553e-05,0.015165540166344804,0.015347775256786485,0.13360601120085414,-0.017220573922616982,3.939290848886558e-05,0.014782906489888172,0.017232313319120417,0.014174070017097652,-0.0032160294513495554,0.0009375486121445954,0.010283599930198171,0.001897193327996098,0.0049054271174169516,-0.025181372237287402,0.00013523734857029006,0.008840307301526974,-0.01852504417493399,0.012642451358706895,0.005595092207962827,0.0007162296886952335,0.009968301648317029,0.001848440275205378,0.02374305131525131,-0.005566923838978733,2.3200197445182266e-05,0.0030783333408842747,-0.023927527329608383,0.06016230350951085,-0.1557094425585564,0.00011814746358146719,0.015456878959124823,0.02844736242684612,0.16298785666180807,0.03357493469712999,4.9130204909033215e-05,0.0035194791419127826,-0.010288118621369045,0.009195343458339725,-0.006530558431661745,0.002182182055740929,0.013715774590310372,-0.0021089165782802875,0.013050310948924573,-0.003472067663342833,0.00013298132286857842,0.0165233636872238,0.023990092134109884,0.11607079225863043,0.011332554701940691,0.0003200495338686833,0.004886503242823158,0.022599187841091835,0.1395086742065817,0.008928622146496023,4.5630221447707883e-05,0.007498184644189914,0.03406542250078725,0.1817884797763457,-0.0024624193932321413,0.00030884048750909516,0.005848462539874937,0.04385534403737992,0.5865859480949303,0.031700382610608015,3.1025664974135775e-05,0.012653059415533869,0.01086332192328591,0.11838157735369989,-0.012606912296888578,3.0659158901541284e-05,0.005371577841694926,0.014386442813463449,0.042466742605670155,-0.05568644279647203,0.0001091257470091663,0.003409142492400978,0.03070876336458332,0.22961823507461654,0.02770873644218457,3.0892163836731266e-05,0.01563006875061431,-0.008420768469490775,0.024544897740874302,0.007023114843657111,7.606202469945408e-05,0.022970360632989333,0.0005884497999083191,0.0018805295299531043,-0.034121236668168936,0.00014307964620084444,0.00021261253093513227,0.0012382451916327056,0.00103319566518652,-0.059371115763277985,0.0006850142976167117,0.006818514014229756,0.020812850068816044,0.07474387512027957,0.013476111079819589,0.00011720387066337614,0.0034845950584325063,3.51199079056408e-05,0.00013051296076836547,2.109827303820575e-06,0.0017271056346732636,0.020307810669149017,-0.0116359985345929,0.10648678248497948,-0.028430601099273454,2.809895366815163e-05,0.008412534828741514,-0.05135655584610896,0.1527495004987154,0.05281989639054117,0.0010992269352827469,0.03498230200941705,-0.011531246910071907,0.0781399517164599,0.017630162295260807,9.827176951391359e-05,0.014754373928840147,-0.005716639952388181,0.008683917958333343,0.006276267488549663,0.00015537119809294327,0.006577381448965138,-0.006626551433745733,0.010300518117539015,-0.003144983193072829,0.0003692601286735561,0.02354718174259569,-0.052224924249019235,0.18307684639983424,0.09119258819075395,0.0022110305180279765,0.008038535749305175,0.005760158885542958,0.02282168842595451,-0.010689135831991227,8.097986744187968e-05,0.004934466379892682,-0.0382172109805731,0.05233537399623072,-0.02670729494184034,0.001815268408700976,7.110644681386459e-06,-0.033196314034954766,0.11055282321383775,0.00690698045013407,0.00011896961690146842,0.002691140794857481,0.025962266292054285,0.061142543832249,0.00016305126721443455,0.0001721311509441455,0.003804520726134712,0.010934757054784219,0.04840274915168806,0.0022929270010462184,5.5138257129496073e-05,0.019513935218654212,-0.003013972091801023,0.009367271134871393,-0.0023867498393119755,0.003049609230844871,0.0008518680316019023,0.031843525276792815,0.17013195221581176,0.025597971351400167,9.310560491542455e-05,0.016055949418924985,-0.014967901954534686,0.09169674362370996,0.012519260582117093,0.00011837712850981307,0.0006930348100327322,-0.012617874125394187,0.06872099576935932,0.008912868353420979,8.684512518707423e-05,0.02010133460966865,0.0813323343232677,0.35843731971924425,0.16472487909324537,5.7029217274142585e-05,0.015610535272363828,-0.001981139134597834,0.0038732870203843513,-0.003886136433135469,0.00024938176280427034,0.011319124296867298,0.005021411229216757,0.01830726837275531,0.006861978774146107,6.820506344756163e-05,0.005366552550646138,0.005260507500763411,0.05780743027551015,-0.002878539945937079,2.347876589986245e-05,0.004826395398538518,0.0168804931751654,0.05368355063514371,-0.0018948538886052458,0.0001099139619871371,0.0010797770286163054,-0.0019255474352738672,0.009834499287787986,0.017265294803294876,0.0003086241732222913,0.007540197329423603,0.03505596134574017,0.14819153209360472,0.021516629875334797,0.0001354909504435395,0.01936883863393192,0.002419486183519115 +2017-12-06,0.04961830575541559,0.3930114533291215,0.09393892728077902,0.00013351292419224532,0.007501567649393045,0.0056669945772770776,0.018570979133239456,-0.02245512531987335,7.321979719537526e-05,0.0024127777112909737,0.0011981161047322682,0.0041640081523625,0.008820275937351895,0.0001331019871267093,0.005099060448776834,0.012799857276545793,0.013948426416451833,0.007066804877500543,0.00030970467973423244,0.0024309715918532223,-0.014189843111977433,0.03336213611416585,-0.0001401357248595608,0.0002225468831270321,0.00589364116398628,0.020175445588911014,0.044445858265343724,0.03985891732357791,9.91148157612776e-05,0.0039451664582415315,0.035294548479461396,0.11980522343757292,0.022612169816127275,8.644138806651974e-05,0.02057812501752973,0.02782056524010467,0.2757512725020983,0.0010769689454490962,3.4597684876271974e-05,0.022380986725328365,0.001977935241182651,0.0016548074895803332,-0.05551042950343434,0.0009217420005778701,0.014099142570950076,0.012943131081076876,0.0320650656500049,-0.0007465874406235637,0.00014114617142776774,0.0002678530247620255,-0.002225184297521002,0.0017676633813819196,-0.033125131846409174,0.0006153054751859642,0.013538499828854286,-0.0003619779633213441,0.004700823263729782,0.004453019100709404,2.29472685498754e-05,0.002190265003030876,0.002605900374889101,0.007325304296507312,0.0002945170862190023,0.0001056776570347677,0.009495892579093317,-0.03699464917346031,0.20583339994960315,0.16058415988529626,5.059235361387211e-05,0.010274655918607094,0.011031554986389322,0.008525787221991097,0.0035717289418008996,0.00252362730006411,0.019060973150085675,-0.026229211331706147,0.17013729026401908,0.0049398181113584185,0.00012686383288853538,0.01906783961168524,0.0013578329214310998,0.00722442708772733,-0.010086613213696307,0.00029103897605975513,0.021462850143007715,-0.035309865753556643,0.19403695683102648,0.017074876985663616,5.125928778190834e-05,0.015202152984192608,-0.031040038093362015,0.15564090370493014,0.0065652249293307345,0.00032868910528529286,0.026993169224604173,0.027631682011298765,0.4138157003117691,-0.10416491784766593,2.770962125172584e-05,0.012973535229398373,0.007048419535378642,0.07508672556929245,-0.029742569451887135,3.1362472212905736e-05,0.00021393493337248937,-0.05388943585121135,0.1642504434894525,0.11485111458372545,0.000105686579431858,0.0022934386797792963,-0.06542818552070102,0.5260856206166008,0.09481271941117134,2.8727697631726314e-05,0.005502989393790049,0.010467681064570694,0.028453844202967163,-0.043367624571381595,8.156182125521933e-05,0.0007860210752433916,0.0031919232184114445,0.013057517134138531,-0.05202228989272999,0.00011177390580115552,0.0021752128387227372,0.015624065249162938,0.01392570430657842,-0.09117760044053998,0.0006412869999702367,0.00601345857308152,0.0031554427139568767,0.013045058518832657,-0.11924002601222684,0.00010181230680130708,0.0011584993432101106,0.02898726721821464,0.07758145790302651,-0.0367413771657961,0.0023981067538566114,0.02521407975205576,0.01893994125509441,0.1787355757212329,-0.005725250631052144,2.7248952972301874e-05,0.0012305020034169233,0.00829850456536535,0.021744662471012626,-0.018061588759970663,0.0012477237340437549,0.011219321866237794,-0.010622009254161846,0.08142194114210567,0.001662049554221556,8.687420968055041e-05,0.0051256857317323575,-0.035929288056342414,0.054030632573966994,0.1119683193284503,0.00015694733504638544,0.013103612392025336,0.0011695763945283287,0.0014981032927685527,0.0014961178131709112,0.0004481163084206128,0.009835377973320644,-0.0014196888496890905,0.005440714738966323,-0.022001282115410227,0.002022495464845181,0.0019975358941495686,-0.023819730093220477,0.09660405940442986,0.03433277787732152,7.911008118230118e-05,0.00477576981874208,0.025755786431747554,0.03783189912416957,-0.010986503929339487,0.0016923643336258373,0.021910293296497716,0.01341131136582975,0.047372905457308684,0.004380054002609709,0.00011216497411879492,0.002284849552660697,0.025209801266619845,0.059179486002057094,-0.019895251893837795,0.00017268658827662614,0.014118555504532582,0.006206414630316224,0.028171333113185114,-0.04476795053510774,5.377090079683586e-05,0.016522053092562827,-0.01603594668225613,0.04795793469604364,-0.001133132704329187,0.003169218552252665,0.017237405659166184,-0.0025709611930622425,0.012650931590377792,-0.004409804869177363,0.00010109125420223814,0.030631818019895212,-0.02333124506294822,0.1188854332745768,0.015248566600700649,0.00014232135007982848,0.0012429314797803718,-0.00284326650448744,0.018178304230766402,-0.037567908450308496,7.397975693241294e-05,0.0015506156757706586,0.006142046164731632,0.028504988768378533,-0.030759350887750534,5.4155129293410816e-05,0.018040746011259524,-0.054856087819516085,0.09004691949047909,0.05927438460099044,0.000297019775588531,0.008581721769117779,-0.005149635388651152,0.021792041985601175,-0.0003989720010905355,5.876150758918496e-05,0.000380276075059963,-0.009155904277286828,0.09671267826677983,-0.019952812897230846,2.4425818105567656e-05,0.0018179690338479026,-0.018118523440223598,0.05694472264005408,-0.11678294238502626,0.00011121882043964067,0.0029799541557928065,-0.03817224628030909,0.13991115003216306,0.24870604661918766,0.00043005436660136946,0.013630449849396393,0.02950786444694925,0.12078876761607013,-0.010952589142537236,0.0001399210403100216,0.026590133312824872,-0.0017006359829273355 +2017-12-07,-0.02953347110194717,0.2476673821505539,0.01566468694076425,0.00012610498747164347,0.006479803417135908,-0.04924486951250928,0.15490555926387797,0.05561549046275798,7.627891615740827e-05,0.0391776913179782,0.008447421235225374,0.02638220088167295,0.01877578451458453,0.00014811885040233927,0.0007573813213293489,-0.04255950972673639,0.0378916016825467,0.11312722859553569,0.0003790718277945759,0.0029629455400864693,-0.007064900423097468,0.017350043064163982,-0.015749577265748025,0.00021306065619283387,0.029376029055951148,-0.0008342723753100119,0.0021499143977510697,-0.0031520342704876594,8.472926421092341e-05,0.003373758523980782,0.04856407297593537,0.22366212985571315,0.03332865769772268,6.371071837489886e-05,0.0014597794694645606,-0.04635142167930631,0.4086524962578431,0.048444888981223684,3.8896230719013523e-05,0.045061864219803995,0.008424413709977145,0.006618954232384939,-0.04031025135017429,0.0009815108272380288,0.001425148520623731,-0.0023798270219852345,0.00510449428323284,-0.025575394291374554,0.00016302513033296406,0.013422570585463447,0.003206431489814957,0.0029993868832849132,0.005411846679659091,0.0005225331351157382,0.016482478004149016,-0.002776233038515517,0.03736512486508885,0.012860485440888204,2.2141766664554992e-05,0.0018386124102162155,0.0014369357377067178,0.0044656404021203204,-0.003637277611331415,9.558827749025673e-05,0.03180403413718082,-0.01996845463977554,0.1065418735040329,0.026423494139983645,5.275771105322653e-05,0.015529214957783137,-0.020058657647774498,0.014608777372660208,0.0126714097837903,0.0026780024368859845,0.001043432218660458,0.07060949470698462,0.5585739262957772,0.101328890120887,0.00010402424011689112,0.0050540938225493715,-0.038738369007505026,0.21345994541591648,0.008741428812734337,0.00028101737303408945,0.009090828669503533,0.01691004400946742,0.08684276099429139,0.0026025123504063667,5.4849424016614385e-05,0.006352499553042053,0.026231246984388785,0.13456026129772758,-0.019950846789486294,0.0003212838698977398,0.0036853672314978497,-0.02564717900207192,0.3867242815248571,-0.024987704122613415,2.7521265049799846e-05,0.014348387963388241,-0.008857371192709554,0.08364951813875818,0.012067621282287383,3.537717182067573e-05,0.009226231129005068,0.035799802994930206,0.10941074136570118,0.056318140022650474,0.00010540068460379717,0.008477191815253679,-0.019487592430017076,0.10693030198010837,0.00285649597947078,4.209686657020193e-05,0.013861524161953711,-0.0036385429517460438,0.012045029077296883,0.005780945474283085,6.697258090362869e-05,0.0003298741227269436,-0.001596672301851437,0.006496219923688594,0.001078408082680609,0.00011238378842350457,0.005451367640177555,0.012949432287055881,0.0106831195352826,-0.004776152478549002,0.0006928324215830822,0.005631387855494413,0.0038003665919020386,0.01351960170188654,-0.008022501188691808,0.00011831712375919603,0.00484442411368206,-0.025750926194684023,0.08445285363797556,-0.02681365607314563,0.0019570309769690133,0.02767776125188802,0.020698005700691944,0.20687810906382778,-0.097585132257786,2.5727415446237673e-05,0.009911441276148967,0.007688413913655579,0.02034838421972123,-0.07491125534710295,0.0012353160848517968,0.019236592932716467,0.03455960112756647,0.2675559560322023,-0.058290480211688527,8.601609877863185e-05,0.01821111390199129,-0.027298026672793383,0.03887887304406253,0.017143583717810898,0.00016571543921285246,0.013217392551326097,0.051394751361510706,0.07230303342617667,0.042709665743591814,0.00040800563852011284,0.009432183742272641,-0.013404898626977756,0.042714311465218036,-0.004403577908408554,0.0024324306383988847,0.008321146163021499,-0.003638231405649639,0.013653569760236075,-0.011041079442818192,8.549377132475393e-05,0.0075562180133177705,-0.028295350816488853,0.05146126404524554,0.016532818945739026,0.0013668215738251973,1.7243529192062252e-05,-0.038183158267473434,0.10889036635572003,0.019110732565381375,0.00013893076437877122,0.013718422580302349,0.0318562975160987,0.07585332883609534,-0.04606485419098378,0.00017024761248768822,0.01402876501140479,0.06301695974931153,0.26548258717404777,0.0678901125639728,5.7934242196482736e-05,0.04689978210293011,0.0020874676415392128,0.006759037361047498,-0.01382061826475008,0.0029272038183490406,0.03769906171847499,0.06743876327198667,0.30839878030879203,0.10427919121787069,0.00010877711000752808,0.0037289486386208478,-0.015122222927393271,0.08357208564287387,0.015489479065945755,0.00013122457647508093,0.009361528505043607,-0.030323519564126256,0.18174148235929657,0.05226392552453659,7.891766735591664e-05,0.004223050826018511,-0.0037486474527775246,0.017259831664049225,-0.02058525185507341,5.4586523721231715e-05,0.03833482731528053,0.006326617884856295,0.012782314132972268,-0.02893794615927528,0.00024131899746367353,0.023953599653947263,0.02452284154293688,0.10387323144883785,-0.17892057497176633,5.870586955764631e-05,0.004424455489922898,-0.0044806840923771315,0.03923106339014592,-0.006997543864568909,2.9467651880197996e-05,0.0038698549152027853,0.006786223451254726,0.02157455148592512,-0.0699695094971019,0.00010995002799276002,0.0019982635567602335,0.018089308315971896,0.07470010293104751,0.005068431367916388,0.00038170577589795356,0.0006523398241286716,-0.01460393832499121,0.07033644242345596,-0.018706171603209792,0.0001189217764328007,0.009196774738481166,0.00042762138046403906 +2017-12-08,-0.025117106963061797,0.17741522005692184,0.005367964124267243,0.0001497150034779046,0.011270239778592107,-0.015618678471260384,0.05191378257428384,-0.004379869197301217,7.218918475142902e-05,0.005631777420804341,-0.04268121450596376,0.1295896071398479,0.029889522640928,0.00015235748678154142,0.0011947081654413911,0.0371074667247584,0.04723754658764527,0.09763358982879237,0.00026511959628163124,0.011640663133230027,0.029813690354664125,0.06758475857960146,-0.005003925754242864,0.00023081537901362367,0.024066485639240867,0.007595756742076361,0.018169145729961606,0.001780162463677773,9.128160745050518e-05,0.0042548231187052536,-0.00028065429475979776,0.0010034893643956968,-0.034258118041987744,8.206326155530419e-05,0.013229508549695188,-0.006116073818469767,0.04747040826187003,-0.21240611630786824,4.4182304678447624e-05,0.0021757003233236704,-0.001332524533439917,0.0008885508145663177,-0.016428804789114914,0.0011564789466020175,1.538980032767586e-05,-0.03709987684987057,0.07390588940663666,0.060544928603887965,0.0001755315980148663,0.007369157160957819,-0.013325494119730845,0.009404001972804112,0.00014992919685932158,0.0006926199053371725,0.012107135691769223,0.0023787135099141636,0.02470953760771954,-0.005152990570525359,2.868800250244234e-05,0.002855959349437896,0.07128281112339828,0.21209921687216182,0.09463292582535628,9.983821120190627e-05,0.00997749884752072,-0.006262446459584489,0.03113572535549494,0.00010533782618780292,5.661700040326526e-05,0.008370710184108057,-0.007461218444123938,0.005604361979106775,-0.019615540674276975,0.002596608949583724,0.02036689052334322,-0.06613553751952002,0.44005832446854026,-0.010337354500989365,0.00012367352931334606,0.011115248781607873,-0.0032301172134717574,0.016702304493376473,-0.0025829331968730373,0.00029946778971227185,0.02405039559430618,-0.032994330115143904,0.20103697893627498,-0.04403695277158146,4.623004561672772e-05,0.012435806655146585,0.04359535228333856,0.2508532687875414,0.047248236833093954,0.00028642256808738035,0.02263192892828412,-0.012491819129961994,0.15601400765499743,-0.0008486564307767218,3.322709136327292e-05,0.03433264273238888,-0.006069549826346754,0.05144002781383702,-0.007336972539979816,3.9421849474400965e-05,3.1104170448047934e-05,0.020809685704402357,0.054369453901603776,0.013608203421840792,0.00012329154812918785,0.008552735001467072,0.004432579451210608,0.033740926666169194,-0.024896772825397363,3.0345332390582257e-05,0.00517258644238477,0.023207140045988922,0.05786148717077932,0.01580633346989393,8.892203919640249e-05,0.007335561993480792,0.00597276612472267,0.021450679997622332,0.00013699739400162888,0.00012731601623949986,0.007620409378403484,0.061624119328564625,0.06310544738079285,0.03273540813363748,0.0005581609346768997,0.01447115649451717,-0.0037283000998005874,0.014392164981977809,-0.007045455557773258,0.00010903620882932816,0.012584544044226313,0.03706988277930788,0.12070198054657805,0.011261918354632182,0.001971178670343331,0.00989873710818146,0.0017836500160950466,0.01656860363212837,-0.03146224400313081,2.7682539536893404e-05,0.008869419779841528,-0.023422047945954698,0.08011535556087201,-0.13255904872851457,0.0009558293697740268,0.008744712205454676,0.03766852957239982,0.2481423070162276,0.02115574062310706,0.0001010889056485226,0.0033771257634593573,-0.024216848032954152,0.038265860523439735,0.031594418373544424,0.00014936592012132502,0.005242283977665936,-0.0345696508702253,0.06212394905622924,0.047419988600125335,0.0003194036335645829,0.027517163422539136,-0.00508449745310371,0.021808986726976086,0.0005908902967831933,0.0018070196994819186,0.01605957072687587,-0.015015069016072845,0.06465949843855563,-0.04454560026860212,7.450499187369765e-05,0.004324525380552844,0.002439834414262455,0.0029127930077566394,-0.04336867309559024,0.002082226269308066,0.03454591952317857,0.02120129403582338,0.05737560048519422,0.031040091324542197,0.00014640339972909696,0.03438210173785771,0.003174303625907622,0.008716137774909394,-0.07613285875945534,0.00014763344525822795,0.007827070874951086,0.024339726397422722,0.11307462883020424,0.009838886776710763,5.2536900369154856e-05,0.010626513810906811,0.05351532900146232,0.16576249972617715,0.004038882830666294,0.003059919282047362,0.021566468574371642,0.017868582184734815,0.0800302980727287,-0.0171898004648239,0.0001110647466477262,0.03551046526845055,-0.013862044681082644,0.0823667426629409,-0.008298014382911318,0.00012204955136869226,0.0008970045735186417,-0.017658674108200482,0.11410291109531583,-0.007736061083638351,7.31998288738361e-05,0.005582863212252816,-0.014505136753456199,0.06804064830838502,0.0015723932222909884,5.357976192299593e-05,0.03164605170426593,-0.05764267302041815,0.10697946727004194,0.04795861605448241,0.00026270786501843437,0.007879792977753314,0.014563583328106795,0.05216392028520119,0.029256721586643986,6.942444209111898e-05,0.004657543983753251,0.01699169629819535,0.16046072981748413,0.0019665927008966043,2.7321167848113133e-05,0.00018547695747265174,-0.01103076054846274,0.04047393826467172,0.0229372501298443,9.526622511556571e-05,0.007210752079446274,0.003899819736767901,0.014983248396120936,-0.008462840768335941,0.00041026694206376733,0.006884768083160427,-0.0002485320643531194,0.0010893217993660817,-0.10103410770202506,0.0001306766608117665,0.001188380527105449,0.0008736193086857267 +2017-12-11,0.042846002705212334,0.2931692803025611,-0.053908224350930956,0.00015455335388956987,0.011040249431661577,0.03310046654858956,0.10427540095864826,0.013416703342021481,7.616628496971059e-05,0.017781996398026786,0.021808773849366126,0.07074177776439759,0.015643125986975648,0.00014261082225978393,0.0002169437212963699,0.028298295061403973,0.031070531477834704,0.04375022613440536,0.0003073827167669063,0.005714662095197927,-0.0011330515772066372,0.0026581274766913645,-0.0178185018921733,0.00022303429475840263,0.010443256886062761,-0.0023907505729596364,0.006629022201156626,-0.04517079026681111,7.874654982420607e-05,0.007809231331299844,-0.021968784780142525,0.06576413756084369,-0.0812662607041347,9.80182084572207e-05,0.019713948442325963,-0.0004383410594537068,0.0037903302271973,-0.009225986705239008,3.965826574031616e-05,0.008215815593208647,0.016131125580329315,0.012292317087578894,-0.05157469884688218,0.0010119887956683287,0.012234171159574803,-0.010940333068990461,0.02490822778002968,-0.142789212713743,0.00015358528279583826,0.013017983611506934,0.01116409130832021,0.008173608068478905,-0.000703862889803408,0.0006676270568756283,0.002374224490348693,-0.007604225206690785,0.08515494276771654,0.03878021457229031,2.6611410754514565e-05,0.0006227174069534568,0.04098070052702839,0.11032175097817824,0.029348072121624415,0.00011034922050491325,0.03279905882948783,-0.01336673129726068,0.0635459796585239,0.006967693395174469,5.921053111961005e-05,0.0029336386602641503,-0.010120647941603297,0.00852736372133895,-0.05676333767069745,0.0023148161449048073,0.0026593808491845996,-0.0648894097314717,0.3879466300926515,0.06455037340373843,0.0001376429422986109,0.021884235543782868,0.015873928368551154,0.11216372266792547,0.0007147517585977606,0.00021914937338705825,0.004006466598177094,0.030116569198888287,0.18151961723264443,-0.058200921942469334,4.673506871295769e-05,0.0031485738875894316,-0.025266361068711513,0.14887698543649439,0.019605313316468125,0.00027970610092068946,0.03123961398420925,0.0783099166215601,1.1336392835557587,0.020015365953719517,2.8666330649218156e-05,0.017875027301262683,-0.0028684595526863362,0.027127435752402472,-0.017753225020503548,3.532821509296475e-05,0.008281341847493802,0.01915975926604315,0.060013165254885766,-0.004458444484655766,0.00010284099518909794,0.0005614278434829848,0.015534807947327724,0.11449048666725394,-0.05146669815857694,3.134215566107162e-05,0.0031567528674418927,0.008950059199216659,0.03235918658486722,-0.05326044900553664,6.132050093963366e-05,0.0028753859555657258,0.004745586812777802,0.01758855215522571,-0.179309307253829,0.000123369676863304,0.002086654594448455,0.003464136023765165,0.0032381437694215267,-0.0539092426109094,0.0006114688971982585,0.005020931899769348,-0.00841476708749192,0.026590102936140846,-0.020759085733015287,0.00013320118550570262,0.012711096612802552,-0.004304211893071305,0.0174294572987503,-0.20294118264731548,0.0015849988562992934,0.005230799569151598,0.023565860526757326,0.1834439574416886,0.018471189359626782,3.303407020464326e-05,0.009973902643924634,-0.033022238045306344,0.08713001164814016,0.030047099295964247,0.0012391103981448206,0.011893477790621587,-0.0007150032295231982,0.005018824487376716,0.004609628396461896,9.487059806181831e-05,0.013869975629766801,0.013798449349393343,0.017725102176788427,-0.011512363282848463,0.00018373289693234037,0.0014132488135473907,-0.007186394516887286,0.010278929513497665,0.0015943013952863982,0.00040129807935797155,0.010568543640072462,-0.038465128323098625,0.17276043230829116,-0.07775927849217906,0.0017257315724704735,0.015572120821486284,0.0013313276047916315,0.0053803847965588555,-0.07640304016478668,7.938929964026783e-05,0.006959628516736845,0.03200969331551655,0.047634859716616754,-0.00022696905630433548,0.0016704512830891035,0.04672116884313463,0.03616643330528879,0.1203138559857877,-0.05011759644207693,0.00011909843969316331,0.003410849968089996,-0.01779200672756227,0.04651153171017944,0.002207072502021087,0.00015506888649376296,0.007261243106092579,0.007070333145183194,0.032146763857687284,0.0005767508286540117,5.368049880679207e-05,0.01226482264586258,-0.05685593294196328,0.17744044507829154,-0.00901323074914376,0.003036975091819401,0.004344374385355786,-0.02511289397592616,0.1202674518379185,-0.014162612136235464,0.00010386978300673365,0.007487411789477356,7.574111725337376e-05,0.0004586410630615787,-0.11093623778183868,0.00011976214231177067,0.019768388291676653,-0.003954239957461199,0.025349351759834143,0.003349438611684826,7.378105503324229e-05,0.0012678579098804473,0.02122740614541852,0.10013814780933121,-0.004216810978241759,5.3277614364170335e-05,0.018973427417361122,0.007662524708897029,0.01607191161042379,-0.0037325643590369515,0.00023245224598974373,0.021398654566597904,0.0256676849187565,0.0867307281219995,0.06546486073968961,7.359157249938347e-05,0.0007527195479738719,-0.004206930379361454,0.051150291736845994,-0.002253575742861781,2.1220152239208704e-05,0.003645905664448561,-0.00229091192871545,0.0068022674770299866,0.0007212879703928648,0.00011772363214541385,0.0027586671944976084,0.011054607800231332,0.04172240190288755,-0.011620649615806286,0.0004176399237549337,0.006536323232660219,0.010195849820568767,0.04235849616594672,-0.07411272184095194,0.00013786521192566073,0.0239990901832125,0.003304210218511983 +2017-12-12,0.06759122721466462,0.5289419594172425,0.091548456914782,0.00013513532671642975,0.02157345883165155,-0.03843937959858503,0.12009480445364781,0.02730720922187459,7.680025762987157e-05,0.011629091239148822,0.02192979692941609,0.057536864965390275,0.04511790727124838,0.0001763135216370714,0.0016031487064544344,0.004082611957365222,0.004769059925272494,-0.013630174185138013,0.00028891705541092067,0.001448398616222798,0.045474350039607404,0.11319607148483794,0.060637646219163954,0.00021020009985626487,0.012902347402196994,0.014784503965766499,0.04515445722546063,0.006390156172378715,7.149124688161434e-05,0.008048043113394741,-0.008864875184776725,0.033642847728438625,-0.02350049323224929,7.731606286310562e-05,0.003542385021081272,-0.006967761488696301,0.0643938815224015,-0.00042707336496414846,3.710626880279445e-05,0.01342846809619776,0.010221219250006377,0.008166118258529493,-0.00322855258316302,0.0009652322543355056,0.009704741893421338,-0.006736026937998062,0.02184788959567337,-0.0015218873233814052,0.0001078092957706008,0.010429792473503502,-0.011169373297371952,0.007581292911155809,-0.03534252853227445,0.0007201283156295938,0.00011470224096016713,-0.009758578401420108,0.14546868558166662,0.04726903775770912,1.9991244482337335e-05,0.006752325617972497,-0.0341289905818638,0.08477400080268704,0.012296906447836993,0.00011959466365979794,0.02848209971192431,-0.010207989167289825,0.05513315476044751,0.0024398418635564662,5.2118172022392985e-05,0.001710339736514344,-0.03142868212551177,0.02676775958181643,0.0003843597232083903,0.0022900086356694603,0.015842131780951202,0.01668217454558947,0.11086899255777394,-0.016130276047425854,0.0001238211027359251,0.0028797162453138457,0.13282596403431834,0.6944322717241739,0.22156734564115751,0.00029618380858790306,0.020206738593087095,0.021272738284365177,0.13375757651808864,-0.00935435369443188,4.479875674603965e-05,0.0031446996879985955,0.009287814997840524,0.04410476027906317,-0.0511733323544865,0.0003470682593830815,0.021358768398089513,-0.023088034033615625,0.3048134240144323,-0.010180029976545235,3.1432801918922196e-05,0.009980870603920706,-0.002860452687269481,0.02996139854890482,-0.030547703763944934,3.189733475390084e-05,0.0012104783825506644,-0.019277330251559328,0.05835822001829643,-0.010322556419366325,0.00010640636477414542,0.00016945520532192482,-0.03216945449802604,0.23322795585248143,0.015108686946758425,3.186071125953269e-05,0.0005531285821614496,0.003263347156382712,0.00828238040325964,-0.0019395707783167943,8.735454089690228e-05,0.0009532471894977477,-0.009476209954473475,0.03916669081519242,0.03713230158284159,0.00011062833861175365,0.003247094008592287,0.03628239462585335,0.034030026485935026,-0.005542557955469901,0.000609409495511304,0.01311959548786699,-0.026017222083883258,0.11324664067949772,0.029446676837826667,9.669891588394817e-05,0.01814629837353117,0.027433916771141226,0.07734197051009525,-0.05600548462232889,0.002276626352732164,6.9016575690738e-05,0.019821559267418108,0.1828211638109161,0.011856929307087498,2.7880049556923903e-05,0.011542071566180603,-0.016947236534735545,0.049931697485758875,-0.03266736569457103,0.0011096699619594376,0.0054528203273781235,-0.002620039145827276,0.019152644145395335,0.004567453608615768,9.109712768790434e-05,0.014050227423272717,-0.009641596716677298,0.016450452750501075,-0.011720779773306156,0.00013833003704588604,0.006627433211490354,0.024145264792263765,0.0337341628935626,-0.1609297133238138,0.00041083359385125673,0.010812200573495221,-0.01601163431251103,0.06502798233500293,-0.0072788126429374055,0.0019084717021466495,0.021250219354373413,-0.025826349851468533,0.1018074141388412,0.015663830454901866,8.139055192305498e-05,0.005736159745918618,-0.007442687410703467,0.010012549492301613,-0.07793544281965832,0.0018478311976315937,0.010028366481401197,0.044840147308376876,0.18429384482792233,0.08054597948648155,9.639893514667934e-05,0.014661442819359652,0.05867827667395936,0.15581314376574165,0.08325454497212713,0.00015266294513499964,0.023719715815989542,0.018276662856091603,0.08310517371449894,0.0019626597518060526,5.367632378994928e-05,0.010570536091647738,0.043911467153656084,0.14078255944364634,-0.08236325786914808,0.0029562907827474305,0.006669045922441436,0.008727216463870816,0.045975420396142185,-0.02083538866067612,9.442578623469354e-05,0.0015127901756249126,-0.017468122782730255,0.08848250252945122,0.005480456442791649,0.00014316920820750607,0.0001349098453737635,0.004265872705390431,0.03148474851109971,-0.03571707239689298,6.408499605685981e-05,0.007969364404443274,0.003978105413383247,0.020816947073853953,-0.022881837731326005,4.802934277867646e-05,0.0015954801199498624,0.04515863825088779,0.08934261618959452,0.040163315853838796,0.0002464402075309687,0.029222625080635053,0.024817541666964572,0.09799025372543178,0.07169469177458808,6.297820139678761e-05,0.003929302801392551,0.03647570226425441,0.36865254507738787,0.020288707938922002,2.5528054070286883e-05,0.01220557384286753,0.004549333904823665,0.015259402017563943,-0.0001905774971635896,0.00010421236773355979,0.009218622163755887,-0.01431471356204192,0.05755577315731892,0.01635502060335699,0.0003920322010068013,0.0015915326904223388,0.030822272386534302,0.16099256456003586,-0.014849588399151873,0.00010965555352943978,0.00717855080145163,0.007780335016680381 +2017-12-13,-0.02684951118806022,0.1853938733354377,0.006236989285475205,0.00015315373389783752,0.0018176187053589312,-0.06212719686170357,0.20590650896943438,0.05130539060215506,7.23972733752119e-05,0.006557401030143393,0.028138050588589317,0.11147131937185367,0.046947514196567806,0.000116769136636588,0.00039686351312657477,-0.024676805841498096,0.026407985592166897,0.026921249607946438,0.0003153708335483377,0.020623281676150847,-0.013718310381666446,0.03644297155078155,-0.11274957983904339,0.00019696298389730276,0.007778731076410589,-0.009907548578732267,0.02461556993175576,-0.012602569645187852,8.788263190793879e-05,0.0018918722516898278,0.04268631498285923,0.20247522082636016,0.015153152195158745,6.18595332270779e-05,0.021833976287811165,-0.03276388596546106,0.3056074236184167,0.0029359493164471786,3.676462331055773e-05,0.002830585037486278,-0.017767119839914202,0.016910409081062377,0.011140540513857653,0.0008102288526036094,0.002344592127791717,-0.015155708880597087,0.04007166395315383,-0.011556973398736858,0.00013225154803702793,0.02545061121458958,-0.002354946605006199,0.0017037165092408121,-0.05013400225359834,0.0006756287021307681,0.037392809846882334,-0.013725190034617524,0.20807676614487616,0.038264561155714694,1.965701486570501e-05,0.0011783840900694228,-0.019510086859643245,0.049379531922450835,-0.01797077076047711,0.00011737166675579857,0.0024872260393783542,-0.015500273327068246,0.09289478513263048,0.012448605342506004,4.6968840627508726e-05,0.007376761897514867,-0.008861851427287456,0.007598999671043197,-0.04434987099119946,0.0022745265545913705,0.007634372835036601,0.032088408552862796,0.20581093907783177,0.02830853831034307,0.00012830152899839234,0.017161700822428384,0.046532971568765784,0.20215451073909232,0.0020101207979969227,0.00035643930057916584,0.025774026247829193,0.03406929195189814,0.1668130833283468,0.01669818939822011,5.752994436981071e-05,0.02374260930013973,-0.007442333571338522,0.03327185577713879,-0.13599747053693068,0.000368653969171354,0.004994678958126267,0.0264745672799027,0.38539074211575486,0.0005760331659345618,2.8507414068541807e-05,0.008427007259298036,-0.010140553557463822,0.11559855194958657,0.020380391816230435,2.9308323616718e-05,0.0036859469567910464,0.00916317032911203,0.024127411689258887,0.000598767841711425,0.00012233698711927766,0.003081632239468328,0.019376779903365875,0.12650616333125606,-0.10492575921531665,3.5380364076259744e-05,0.011495915602017497,0.012671803258770136,0.03498033960317096,0.005609482165077872,8.031409728149104e-05,0.0010739530153218624,0.005464311303153616,0.022375712256573973,-0.008792162436772194,0.00011166245200187427,0.0012156335606644888,-0.051816609499266184,0.04885453472221999,0.087209023795565,0.000606233138312899,0.017608463413890107,-0.015009673347886218,0.06695200662991621,0.005802415139788758,9.436124278135238e-05,0.012027678386764044,-0.05725986713055789,0.21827380138095612,0.13459066428961716,0.0016837123543894247,0.00019922373560132757,0.024703365872041673,0.22482264587619563,0.027917910743710642,2.8255192553656762e-05,0.006632956589388065,-0.059235998191608255,0.18272017144629746,0.08485833005486478,0.0010599136541249714,0.005478100544319208,0.0122230157442386,0.10886928139897871,-0.14096068027498582,7.476505516278322e-05,0.005862639142287981,0.005563541905153062,0.007318750233477643,-0.08548089299045056,0.00017941544373808741,0.00679671370076941,0.018711148049940587,0.02448279625328665,-0.08174921752693076,0.00043867545026686,0.0009251734799000286,0.05154942688287467,0.22817855378082103,0.143191369143613,0.0017510532738060254,0.02055165760273691,-0.0052618300270474766,0.026775522824389456,-0.03575760594212089,6.305060027711714e-05,0.007376205460113359,-0.01795816184047028,0.02576502219724848,0.0075998306061283005,0.0017326408602330178,0.02052169363602611,-0.0045796175597231205,0.015019964752052426,8.185552678127291e-05,0.00012080261484153103,0.006338974945145201,-0.028038323712305805,0.07232109119612576,0.059701980198381494,0.0001571619654345766,0.01583072054911912,-0.0017930370999859856,0.007766820463309054,-0.018573182117559667,5.634559048843096e-05,0.007678306821521394,0.00928385990986434,0.027790762078728323,-0.00040026832880367744,0.0031662571262892764,0.005465457383333565,-0.013591523160877146,0.07616174402775946,-0.014611997624334086,8.87711446408089e-05,0.015409420826125788,0.040544100190645076,0.24475071264879358,0.1498062160043032,0.00012013359838717115,0.0033215500795383593,-0.02791004601098826,0.1493767565855591,-0.07849434064396588,8.837434862637456e-05,0.005614312053972578,-0.04689677686207789,0.20323113377846644,0.03151753682549966,5.799628165374118e-05,0.0041144655453885905,-0.06943421807024731,0.1118201024308164,0.051775663838547176,0.00030274923708013585,0.01446195128768628,0.003860850044262499,0.015456277614751861,-0.0026439967822084976,6.211441511745512e-05,0.004875078054341591,-0.006775277195724005,0.07890398930181973,-0.03075162514437283,2.2154369376235455e-05,0.00649265009834123,-0.009697863558224622,0.03483255906904298,0.012927230970553549,9.731945135566197e-05,0.001224435531302037,-0.00332018472921823,0.014764503856237652,0.003254894071210585,0.00035446336912902315,6.535094489919149e-06,0.022876758460492138,0.09604052560225308,0.005179331107677279,0.00013643058917234757,0.008454609262622164,-0.005310904597497858 +2017-12-14,-0.008239570271817528,0.056393868593197935,-1.542643033433479e-05,0.00015451094827407215,0.023196747451413913,0.0009713101515505259,0.0033449115667993526,-0.00928847192143802,6.96760968253914e-05,0.0030591109896716314,0.008249614870377436,0.029848417809651737,-0.004944250859004536,0.00012785259977693227,0.006658413651118959,0.021605178960762656,0.023680232827935212,0.002691571431448421,0.00030792131743148383,0.0032148318864371637,0.0054865021505504505,0.015062661272419753,0.00044995982928031536,0.00019058627252634927,0.007476558853191075,-0.02399552286056295,0.07077172407876174,-0.005116777302357062,7.403160787063681e-05,0.0009751619145794341,0.042064213234139676,0.16817757150969373,-0.02159123476456372,7.338960471715977e-05,0.008784194375622306,0.03159054947274869,0.27512052056208763,0.023774311601935903,3.937611002259147e-05,0.004552838811434807,0.007333677392834926,0.006623392456001204,-0.00014878299052202448,0.0008538588793955097,0.006164843901186159,-0.008332508063181112,0.013890639907580759,-0.0061966894301855435,0.00020975647495366002,0.03687785023797238,-0.03715198368451515,0.027094772767513528,-0.05706071168107231,0.0006702253535419371,0.00022179675234821955,-0.02085089130690066,0.24141755705959356,0.12728771651567297,2.573822320839811e-05,0.008266434607764604,-0.014779862811355432,0.04019327629281829,0.0033957245656266602,0.00010923656429903835,0.017443735277430747,-0.0026278224622865443,0.013453270993453245,-0.014598566557955257,5.498319196333166e-05,0.0060179893459491735,-0.03862666508525526,0.03651059480771527,-0.058029157309557294,0.002063437307051812,0.015330793961626153,0.062473477400413036,0.4300809615191041,0.08214641514770069,0.00011953568376354694,0.0029324956923737263,0.025045680195160357,0.13900829778727072,-0.006918098573995488,0.0002789975165545081,0.04101077533196926,-0.016619230497762125,0.10031554686293553,-0.0009928911700435332,4.66663272487785e-05,0.0024953108422533224,-0.03239755940752167,0.15644474945213954,0.05247279798251909,0.00034130143186253246,0.004952539072717421,0.03972816149198039,0.4828988180076303,-0.015124923122661569,3.414071062034075e-05,0.00751189424031461,0.017716194527936067,0.2006611519176021,0.01147305709661544,2.949774713201611e-05,0.0015867405238866863,-0.04965218260835503,0.1471322400097183,0.08179414621756984,0.00010870593424853725,0.01471675525290247,0.0018874294834375059,0.01606835493243495,-0.030060311032736587,2.7132617640967387e-05,0.01734972275791668,0.007090041689013687,0.019016000312640797,-0.033650064751647425,8.266220679456214e-05,0.015344970206892423,0.008236660612264626,0.03453156489558153,-0.02037157709342239,0.00010906452367496038,7.261857330613714e-05,-0.009426758561884255,0.008102105933705852,-0.02869013879529492,0.0006650281489087214,0.003881633284721268,-0.03428596280616774,0.11411769964480907,0.026059306932441063,0.0001264588855222396,0.004796923502875189,0.008312522047767345,0.035423542211204605,-0.050755934686261946,0.0015061214654419613,0.017251096947450875,-0.00028725282807013025,0.0028321662897918543,-0.0014749709946976315,2.6081211391434017e-05,0.0026770207185171846,-0.045009006022851517,0.12948345105755937,0.010976730158438787,0.0011364659440594317,0.02631808710111334,-0.025244429871771133,0.18484131512170923,0.053658104356891514,9.094779209646983e-05,0.019859746505398426,-0.005709738033345608,0.009096338816406816,-0.12252495232712925,0.00014814770936094252,0.0005665423253324829,-0.026332627854069476,0.034012721109656315,0.03230339867671494,0.00044438228449776703,0.02572246317379387,0.029987606135811678,0.11575195137631354,0.05666552713179379,0.0020080005066316466,0.018325353178360235,-0.003780760579876849,0.014046860255471758,-0.034232854507377355,8.635555598786825e-05,0.01919226003555677,-0.014906756359423002,0.02283336855986738,-0.1275277104398496,0.0016228947610894876,0.0032679730814980995,-0.00822691657933332,0.026028970214574045,0.0004987969548807071,0.00012522647150206912,7.748580775891853e-05,0.020585382489566463,0.059660410552737714,-0.0487475594033341,0.00013987273899540012,0.008899784143084741,-0.017642406332853515,0.06654244920138203,-0.005105035638522375,6.47102330118934e-05,0.007029715205102297,-0.016975007698502784,0.05416461162435432,-0.010220582412339354,0.0029703826833408567,0.004362658794673094,0.015330290425650053,0.07095051913580842,-0.014922195219608327,0.00010748191006070691,3.927204679968102e-06,-0.0077588893568953,0.04280947875406002,-0.002660506540853219,0.0001314378369196549,0.009337156677163424,0.00874426249309645,0.05415228888918218,-0.1721427619131768,7.63756759574604e-05,0.00880719423947261,-0.02290660613813667,0.11221331986659211,-0.011828907939867937,5.1305477284845114e-05,0.010048053324011081,-0.003205607429950201,0.00683445438813709,-0.01358838372589721,0.00022868405298880632,0.011770244075347857,-0.03170786739865044,0.1378481317893256,0.16449827353367635,5.719795800843336e-05,0.010633635067212214,-0.0248057627206367,0.23661353995894316,0.03932467466874943,2.7048567990468297e-05,0.010058821552899567,-0.00694413976080661,0.02077747063243396,0.006302591388706529,0.00011682471775773861,0.005037282214907241,-0.029278571021533355,0.14902162015385145,0.09667392132134643,0.0003096909874467866,0.006530549321510684,0.025407814811179593,0.13785365034350655,0.0014600623736910527,0.00010556521600455128,0.005027785618644269,-0.0035600075152286397 +2017-12-15,0.008204011651894128,0.07003615200943093,-0.013726740934841377,0.00012387697048134592,0.03892894314896839,0.03953650895745863,0.11428496197313882,-0.10620191056142957,8.300796315003881e-05,0.017564817530658194,0.018187731471292073,0.06220980236253391,-0.21633316580966974,0.00013524366036671474,0.009613787675433803,-0.011989717136227535,0.011847260674431679,0.005530588808199317,0.0003415535858933025,0.0019508012065230299,-0.010371174070187766,0.021720646174799078,0.004301630006728394,0.0002498348130828283,6.202713558772766e-05,0.009539635177390015,0.0225130355266088,-0.013090110553338587,9.252188014123092e-05,0.0027285079814953284,0.006096620181752697,0.02694359617003576,-0.027769302894024673,6.639317443650158e-05,0.005444514771918383,-0.032107808996953695,0.3153671718816313,0.016336926764538535,3.491345286875311e-05,0.0006268266822829435,-0.02671445907864445,0.02290362934974227,0.007719385776629256,0.0008994703764262785,0.00379694048237433,0.0054327204035901164,0.012645660227297741,0.0014991683198604723,0.0001502234501891532,0.02512514788412406,0.0017134620913998228,0.0012513348830100368,-0.007723285485845466,0.0006693069079414964,0.008121219571355228,-0.007572074828345403,0.08998684961187585,-0.029347325548617565,2.5076021805410063e-05,0.0022847383322907797,-0.026008004260563388,0.06225980206158835,-0.07361041964587663,0.0001240938703310516,0.007502958999889012,0.0042992232303154096,0.023243539807054684,0.003404814050435432,5.206544033490499e-05,0.0029625766098844877,-0.014258308595082848,0.011060853920578187,0.0029277674644211005,0.002514214495068723,0.008156377726773524,-0.010047297310855028,0.06776630039254239,-0.006663665236654409,0.00012200779683883821,0.028521650419737695,-0.06523667445196352,0.35475989810047004,0.005100812702684261,0.0002847511747756171,0.016846451869660873,0.02533523620993404,0.15488990794265378,-0.021220276582577833,4.607472927511652e-05,0.00885242048592248,0.0036322254607481152,0.017584507045101106,-0.001032034782857549,0.000340431240848133,0.0047288305717105485,0.0016255247189953556,0.020471730628193806,-0.07700468689272628,3.2951049458352754e-05,0.015547236940222845,0.01412808264067744,0.16478515649468664,0.011582403015119154,2.8644869424883272e-05,0.0011771956483845021,0.01591564826565305,0.04857582372764978,0.007085739010209921,0.00010554238759222176,0.027067337653529228,0.048168265541718006,0.3400147434271119,0.07166991544625737,3.272319011484923e-05,0.005103803978904349,-0.010630802616138914,0.03272602935273288,0.013217304254166822,7.201950321765186e-05,0.012456996142518932,0.0032181285330854406,0.012695593521780152,-0.00010424956143336708,0.00011590414631158422,0.01721779275458915,0.021278689840464132,0.023741835777566063,0.007728169003514073,0.0005122785234203481,0.004170490788795356,-0.02426891006546615,0.08813362740403828,0.0203904569440808,0.00011590298903512225,0.000556768909779276,-0.07744999948201639,0.26081392804274867,0.1614951652423316,0.0019059425858351296,0.01776209349726656,-0.02461601073672516,0.23902596753899535,-0.13038857092661088,2.648224402527539e-05,0.0005966175471808376,0.0395520688306401,0.11997130244793079,0.01649109551505637,0.0010778618504795451,0.006855767108943586,0.007661444286992418,0.05934930150755943,-0.001417167255085591,8.59648043334313e-05,0.011368006708282639,0.029684748968349738,0.04050097472491643,0.07857047017851916,0.0001729869300854015,0.0020434218959667514,-0.017857053811440315,0.0241148018432494,0.004995118845980261,0.0004250402159808923,0.014631009987260277,0.0384559344557319,0.1342839508805238,0.06788902568824619,0.002219676067773957,0.005398462176951403,0.02311870266500802,0.0889049132688657,0.03932351975586679,8.343111875969988e-05,0.008465268453890135,0.0726555094182097,0.12127184794740066,0.07551138899142416,0.0014893122047624253,0.01430159751157531,-0.020542113505147026,0.07803100561724018,0.00877501369624869,0.00010430231727227797,0.007160074043973879,0.007591992532115931,0.020951376407112254,-0.14074923726374483,0.0001468938416768568,0.0041142296823569015,-0.01439218123209081,0.06234254834528735,-0.05596405252250095,5.634507917260774e-05,0.04439565373649415,-0.05148536767548597,0.17019636534284194,0.029009438402270483,0.0028671577959704,0.016945122966176465,0.00901903539632395,0.047667524540001005,0.0007494832734351641,9.411916449707677e-05,0.0016801155073918345,-0.04271313607001244,0.23224294813720683,0.09678671682903218,0.00013337662009714948,0.01158870244935758,0.009507472829041692,0.04856420303790269,-0.0911403630705736,9.259712986395303e-05,0.004631914846683675,-0.012585214393658126,0.04768551538092433,-0.013142766658399306,6.633176178395625e-05,0.0014265979618979935,-0.04813081457888078,0.08783767453298558,0.024848027122692948,0.00026716021017008935,0.007435265777827747,0.0068378889569689115,0.028953612721607982,0.0025420863055643224,5.872643783476201e-05,0.01587813871855438,0.01667282896251797,0.19398487852153914,-0.005783619929008484,2.217546336104804e-05,0.019968069420070584,0.0013928110423599282,0.003647786542150304,-0.15205523436663904,0.00013346633936166073,0.005659338308107198,0.023407149471407863,0.08981670326226403,0.00937552116615218,0.0004107895519368848,0.011723849684346657,-0.0011812443056679312,0.00551150380428839,-0.02781369946503633,0.0001227556279979988,0.01873427937527213,-0.0006648741878049482 +2017-12-18,0.04033903531737549,0.30417998718470357,0.050209665872405974,0.00014024308441393368,0.02371666736014851,0.0012613426664801917,0.0044570056849425645,-0.0005280725619549742,6.790479228452262e-05,0.014215427417792602,0.06381040072315758,0.16968930618725378,0.19860972290285028,0.0001739539130331485,0.012119988140857912,0.009670013482449544,0.009892139764575354,-0.003600013054319708,0.0003299169981733724,0.011767890947176517,0.05075274346765817,0.11938193361673734,0.09497849352599867,0.00022244297086408975,0.013954986638629721,-0.014488924444983824,0.03510206573464654,-0.03595664832071184,9.012602404475182e-05,0.011685675639206177,-0.016954678941728224,0.06658884015911785,-0.0356034009037969,7.470986902458852e-05,0.019043980997705205,-0.046318207398712626,0.4403479591532768,0.01020326877029272,3.60706833198208e-05,0.010687778223049482,0.007337478516428095,0.005560432742351438,0.0035389860864593263,0.0010176139158416908,0.00841156345082588,-0.007151661378275991,0.02194633301448987,-0.0800830971430556,0.00011394804134394919,0.014138365375221817,0.03917336888873512,0.03206384597979512,0.14200363909456448,0.0005971723166973194,0.007796154474481407,0.007027776793008403,0.08013008361376912,-0.017138082828675783,2.6136362985953874e-05,0.004421073548363295,-0.010028277255603225,0.02945334852382199,-0.0017307314981243552,0.00010114459830844435,0.00935375299058146,0.004868140119927422,0.025586326156808874,0.0043166720573828005,5.355708814139447e-05,0.0048133868840870495,-0.04253466263382253,0.04465226437662133,0.06255849342577552,0.0018579006114191868,0.0031852228150182483,0.00027064939702675444,0.001615385642488157,-0.04133446404430908,0.00013787418335611882,0.008152971454175054,0.006214842797408518,0.035906631084767215,-0.014689635715505139,0.0002680178506255188,0.019173077762663228,0.004270691462830358,0.028503809924150535,-0.03085199025906994,4.220425511203204e-05,0.013826027194100074,-0.010172360905639739,0.06115862082874599,0.0002886331653096746,0.0002741264136933542,0.02593728058515073,-0.025011735953247346,0.3003493314662544,0.00034903310415221436,3.455790424103143e-05,0.019807972496779826,-0.016703227875816663,0.18793376542721235,0.05593824350700996,2.969458771310908e-05,0.006027799700739689,-0.002844328195975072,0.008412207810205649,-0.04230183852062007,0.00010891619720866055,0.005447089980391221,0.025184343849225434,0.1740052979780697,0.004741621251750374,3.343186041079663e-05,0.021020883194666877,0.00627092809796099,0.019538834841472463,-0.10483431880689471,7.115583864477185e-05,0.006143482400890543,0.013003463858483697,0.04776863235738958,0.003348316393581967,0.00012447004403101202,0.0021144453551497546,-0.008221606105813137,0.010221605491017785,0.003538979123745852,0.00045974086895462477,0.03444363846753567,0.00017212213212414534,0.000564542449409563,-0.18530095010435546,0.00012832938796926855,0.008542485295093351,0.051699240880867345,0.21610101037063667,0.02080151014705819,0.0015354884128818587,0.043295874369444765,-0.00920794315530615,0.09198489195066673,0.0038202475191570534,2.574117234111122e-05,0.011830121131164165,-0.02739484873369295,0.08572540435832574,0.013757371179820519,0.0010447939141119663,0.01746219584123833,-0.040546607635077746,0.33226340399658677,0.09655775154398975,8.12638993633053e-05,0.020003636359822607,0.02317269067921405,0.037860608446244864,-0.009762940012698099,0.00014445555982002417,0.01608096855833529,0.0028784007796655645,0.004102020688970182,-0.0038996209497739742,0.00040277020031073696,0.03658497258237414,0.012188555426260198,0.048224238591041114,0.00687175467112694,0.00195901246066699,0.007434500934604071,0.013876605398843892,0.05787272042523829,-0.0014198956130869146,7.693070481893019e-05,0.0003539519564140989,-0.11106726170216574,0.1838751861021733,0.21267133816670133,0.0015015511510693654,0.028463096838558338,0.009086265242127117,0.027422018525161185,-0.0007090934846567942,0.00013128104558943413,0.003041532385315108,-0.0006610065270334814,0.001514474590715739,-0.042223953706356114,0.0001769310817149122,0.010667328008729543,0.022560405357361923,0.08579389922282105,-0.008767077314256527,6.418069523433009e-05,0.003484316704262702,-0.03771019657371798,0.12891932586362126,0.01840569427981464,0.002772418756570581,0.01491006172310863,0.006273872563994107,0.03453845031102905,-0.018258782976347927,9.035941616502049e-05,0.009380654730976235,0.002271114773459814,0.01080991933327947,-0.17352896342929636,0.0001523622626883465,0.00596365791455533,-0.015841495648982604,0.09427620731421665,-0.0189456013928786,7.947724025426169e-05,0.003870608200645701,-0.013870128920702883,0.06512323455020694,-0.0028557731346836803,5.352934504972923e-05,0.010243617648123924,-0.034203330240904196,0.07049414312772741,-0.034782125294362976,0.0002365618738963181,0.0085772703645859,0.023935073212537735,0.09856966744523436,0.048473356766317456,6.038177072737395e-05,0.009359439674787435,0.007750500138252946,0.08352979628790656,0.0012318342340041162,2.3939748939160762e-05,7.586674274916031e-05,0.006905655108146164,0.020499622776166834,0.009370758174014436,0.00011775191519200869,0.008604618847285438,0.002281446954020713,0.009206484546989501,-0.017083149870711176,0.00039061104363884093,0.009638257363279064,0.017099544210739923,0.10970187305282336,-0.00904908586711529,8.927755492822679e-05,0.005183264946756383,-0.00030631453903339124 +2017-12-19,-0.02257046450552165,0.14911283285242843,0.005624908187744731,0.0001600707795361405,0.015078016396539832,-0.009644840805627383,0.031243208806459928,-0.09369089071487943,7.407129865353875e-05,0.0052548200383195605,-0.009475810162481044,0.026393356081611384,-0.039446649832305336,0.0001660806129488015,0.023804011521335416,-0.02238153083031297,0.02676408027496085,-0.1520802718033442,0.00028223139355736717,0.004777636600586032,0.0045718820475124464,0.009356602697242738,-0.03415540515718757,0.00025566695607433145,0.002242277907337973,-0.01591055993241727,0.04180943533001226,0.044969365313359794,8.309174919357427e-05,0.006726438998873436,0.0343957210463796,0.14329363815980173,-0.023381194011552,7.043156911398218e-05,0.009208108328742292,-0.032667331591446185,0.2432934729946155,0.0037589996014432098,4.604493003559744e-05,0.009350618066304956,-0.005158800024624082,0.004702353048471458,-0.0013653625891601455,0.0008460153587943981,0.01296542785308355,0.024144430421561544,0.045032833271678875,0.01849846151542223,0.00018747768375900197,0.012683124399519184,0.014019664079283213,0.012350861671904988,0.0034949817907224423,0.000554836097372745,0.008704285209510618,-0.00179700737624323,0.02483547482707325,-0.11157798700159759,2.1562553082250505e-05,0.0047820140715180036,-0.01690945673638192,0.052978181017169106,0.005573924246404393,9.481644102299526e-05,0.02867178708254102,-0.011137391568199314,0.05436516855189573,-0.02791359516698217,5.766662947786882e-05,0.0045585909795583645,-0.025471514840544215,0.02249805840641239,0.0077526605310756554,0.0022081710242419367,0.011222310786030806,0.01956389894204127,0.13404005785966563,-0.01226199637432873,0.00012010827009750617,0.03097160378163256,0.05105604404554321,0.3141318770261562,0.015983930368551353,0.00025167691630788644,0.016232577759681056,0.014001136974401696,0.08838216147512873,-0.0027574844526487624,4.462309015019437e-05,0.009339270562734243,-0.008259178092280484,0.04553888072413752,-0.02727752094737099,0.00029891057928885955,0.008603916202817568,-0.07358392458243523,0.8676605770797441,0.06545127968840156,3.5193569154784886e-05,0.012420977114419737,0.030451695059921475,0.3210365121157603,0.08970436139836521,3.1691205007277374e-05,0.021611661190207635,0.018180514732051237,0.04296671417405099,-0.003867990175996947,0.00013630029252786497,0.006222552411716365,-0.008965534852285486,0.06009745883196335,-0.053038043964501035,3.4459777630437585e-05,0.013363511961171514,-0.016967248150435342,0.04195036710564174,0.036305335534847806,8.967120961482584e-05,0.013755218425108753,-0.0006928635042404706,0.0028854263828325096,-0.014469775165216902,0.00010979594049422136,0.010006983108536687,0.01931647927580339,0.016644866509231332,0.0005119891360259006,0.0006633201913754105,0.009413186598964587,-0.0096635803584046,0.0392294113442333,-0.029609765282569624,0.00010368412813664533,0.0012122895356320852,0.009538053027263724,0.03225920402742722,-0.009259038495140103,0.0018976899604030983,0.006701607864589938,0.022571265845188853,0.21342427764238073,0.02250516755319975,2.7195327365968683e-05,0.004555692684545002,-0.043154700911100144,0.12120371525522017,0.01119516805765974,0.0011640816635558548,0.00995597265609035,-0.0261461932040037,0.19572039837099753,0.016247886895313583,8.896066449010603e-05,0.013120484748660113,0.009689464420485485,0.0149702587226281,-0.001783432405626694,0.00015276218182078212,0.007513861424869883,0.019199345112444702,0.02919056413041112,-0.0015389252518873422,0.00037752684692119105,0.02516063056896512,-0.01011101054939517,0.04376213608181566,-0.08878558501043055,0.0017907971411662358,0.003995057859113824,0.04225802879408893,0.17517280794646933,0.13730111829819783,7.73985658479008e-05,0.011827898401377483,0.0026945984117554105,0.003332451132123347,-0.021559601302294992,0.0020100527358251417,0.014516315214605134,-0.027862223042737146,0.07677642149516414,-0.07722555032056531,0.00014378180620986896,0.011566667984638927,0.035097698539500094,0.07792686736611626,0.03192469060512798,0.00018257940919338302,0.01757391762354659,0.012088577119422685,0.043883038768810875,-0.0006120149918852044,6.7234536753204e-05,0.005823927061013477,-0.014434165463098307,0.03942439993928911,-0.011650835507837591,0.003470121215904112,0.022651971664064,-0.04278914654184205,0.2557784496240433,0.03548846459204442,8.321665300569843e-05,0.013223858732358332,0.017305960330285797,0.08815531958676776,0.029943743375000918,0.00014236655106359157,0.002593156696238257,0.0005500370819295168,0.0032551834793784784,-0.017220501833742678,7.992178874885107e-05,0.019421719737822005,-0.04202557863259427,0.1886618692476473,0.02447332264958482,5.5985680784523014e-05,0.0010635382670470053,0.035234820373968946,0.056774914227928346,0.02320004637126677,0.00030258330981329377,0.031219962507255946,0.01557199358456088,0.04802422095308119,0.01409094628327763,8.06302977435965e-05,0.008879954933193837,0.0028253112986895185,0.030860965883774346,-0.04254020691043963,2.3620445108010346e-05,0.006809238485042926,0.017876546196367103,0.051975568677110666,0.03211570882943501,0.00012022459710082188,0.0010174714758843326,-0.011995360587399539,0.05799757171717157,0.017363761693073153,0.00032601040999671166,0.0011820743437634038,-0.042388417033109256,0.17959863178444516,0.08393517424914988,0.00013518109830086637,0.009448602836032157,-0.0020108003193648576 +2017-12-20,-0.005390778085479289,0.03568646066317013,-0.0274590899425096,0.00015974768041894763,0.014503084996230015,-0.053509881896169224,0.17294709832105004,0.02116745494161061,7.423885056670254e-05,0.011214215379830689,-0.03140878889036144,0.0920552534088014,-0.01666791733371821,0.00015783372893138006,0.006331222349484208,0.039530727042447825,0.04399857809874757,0.07263791658844654,0.00030322431006789047,0.017072322808223666,0.05205886774168421,0.1225785950221128,0.05423309393731772,0.00022221729219056713,0.008428091113422848,0.018290077546650553,0.048331831613370804,0.028252144763387527,8.262834095109723e-05,0.0013511559752342917,0.051600477149079435,0.17329624810909372,0.02533531758943398,8.73684060461665e-05,0.004121020011814972,0.01140947726237565,0.10986243866705876,-0.007820235093254658,3.5613538507435766e-05,0.008596857711747473,0.002422447195043223,0.001885543102666349,-0.01905594068738315,0.0009907467149194635,0.023514921933693558,0.0245772791454473,0.06642266482869387,-0.1515691225975957,0.00012938364840647646,0.007589622008973958,-0.0026829777036026245,0.0021473866754675055,-9.525419067881599e-05,0.000610704567080993,0.0018768918708961628,0.0007178520909860909,0.0096434432525786,-0.007313324336731237,2.21832733099373e-05,0.00036814768645683613,0.001343396731995363,0.0038505670146742528,-0.007808003044171496,0.00010364077196526896,0.02805701729643717,0.012356483469394799,0.07073614008903088,-0.004265374852189481,4.917171470546859e-05,0.0028054034490749735,-0.023065943938607197,0.016660587576341278,-0.09118873673993025,0.002700249478802767,0.003232140145589971,0.054485240608129114,0.4011682639233666,0.05019127608589816,0.00011176463697609364,0.01167285093971444,0.019370842759261528,0.11384359012344569,-0.08564554302429565,0.00026348030936932315,0.01799342622706607,0.002548914844256782,0.01590712025119973,-0.007077744085498672,4.5136171436116404e-05,0.01938027360413281,-0.03691648171071273,0.20620322246625547,0.04806990682458502,0.00029506090067998723,0.008415703164036198,0.02466354763351321,0.3800444764317191,-0.12022462891425584,2.6930930093057234e-05,0.013632835080076632,0.012952923343083879,0.13908867614190434,0.008493992206100727,3.111413494172832e-05,0.005950344205804472,-0.036160221599951616,0.11352211457251417,0.04047450241469495,0.00010260614402737821,0.004479712891252989,0.04254339513752692,0.29341407135260983,0.0597818911185964,3.34921929023684e-05,0.01701618073730419,-0.01788056235983417,0.03938581987091807,0.04536725665311777,0.00010065113244578928,0.0027123398274797265,-0.009721561251826565,0.039751597484870595,0.01176152540065769,0.00011182271338902178,0.000104197580965701,0.02013999962455839,0.01932419526911749,0.00373977515070488,0.0005957082327925615,0.017309778249288935,-0.0020942875788225023,0.006306116419332492,-0.05220992399033853,0.00013978492631959728,0.007157074846097842,-0.012514113293969967,0.04417884738660169,-0.013626615796918207,0.0018180460359467881,0.015074588214586364,0.04263151150504667,0.3695054601298063,0.06762769221753033,2.9668259286267883e-05,0.00033546017300387,-0.0014847283180955246,0.0040757113429940525,-0.007457375865992621,0.0011910084522767292,0.02164967853176873,-0.020886989413566346,0.13873574913546535,0.012713946425719514,0.00010025663092753606,0.005537834132108191,0.005557213123396231,0.008741358699967876,-0.019041988944615545,0.00015004568036363508,0.006101159057384763,0.047836095189082564,0.06464493481827963,0.049389348358317306,0.0004247419272754439,0.03082024694214849,-0.03411857312775784,0.1418064330028768,-0.013591386279414726,0.001864855855291765,0.001212080016396235,0.0022948681056594515,0.008245450173865075,-0.0645967970890726,8.92963544159031e-05,0.009014225017148152,-0.029974361092352016,0.04099382651460914,-0.04261563453775644,0.001817643332779021,0.01954924208726769,0.040207082492861534,0.11455003429663499,0.07163754872831893,0.00013906677197759432,0.00868939080621075,0.010726105126798722,0.028660064615585797,-0.01788356300279015,0.00015171386069294407,0.008241645453000023,-0.017336276969808027,0.0744449879663699,0.011434952547693984,5.6837412388176076e-05,0.007100648346548255,0.03154570355528445,0.11643333624235119,-0.022266490660726477,0.0025679167137723164,0.003486671815060164,0.03998611113537228,0.2419847202395357,-0.008692727480505693,8.2198103114165e-05,0.008952190434310192,-0.011030620760560684,0.058454983316404516,-0.003504178533349029,0.00013684823391877458,0.0019528270267151408,-0.011530838390566869,0.07200254247701268,-0.10803469629219804,7.574635728743595e-05,0.0024075047681941055,-0.013948209482988914,0.06296643653247802,-0.005276917657161369,5.567455317783923e-05,0.028033271333347404,0.04875672862969897,0.08145020737212202,0.037044932613327294,0.00029185810499709585,0.013169577314558084,0.013587567240528125,0.06601484152845107,-0.02172612185778816,5.118167527618713e-05,0.0045232160303563295,0.03418687564833302,0.3201521745954646,0.05626800043043787,2.7550801749428792e-05,0.011854802928800331,0.007026765061719733,0.021237406627425574,-0.061504986836811784,0.00011565460117797528,0.0012069585320227778,0.010044180928711677,0.04997173691238393,0.0027618802858300857,0.00031682398574736236,0.00383280017418448,0.04438207116012886,0.21925345217178108,0.018737671054998538,0.00011593989995846316,0.01129598516153301,0.007864873334923998 +2017-12-21,0.018299491960822385,0.1413202079993363,0.010700365839995537,0.00013693717013819995,0.021873464316426016,0.013071329758767597,0.046800191863234544,0.002204933456489201,6.701664218644149e-05,0.007468463291674043,-0.045802509115915456,0.16532637941970835,0.06496575834128193,0.00012815758628931286,0.010038942301936601,-0.025192142207271773,0.026438113823974832,0.027943183867762986,0.000321589964300174,0.007574128969819018,-0.010047642304916742,0.021866444885298802,-0.004354350777185972,0.00024042728835907081,0.004025564903797582,0.0140059776827,0.034131360919513756,0.0010491794330179738,8.95997018627438e-05,0.00825465967278984,-0.04638469012360282,0.15817074942785048,0.06295864045532915,8.60475169355013e-05,0.010150368812445633,-0.006369217242142822,0.05990770967592529,9.483736588286388e-05,3.64587655731099e-05,0.02238061790735084,0.005216207273443964,0.004277990808420162,-0.006406931208785887,0.0009402855885816535,0.0008484831529993431,-0.06555450956100364,0.14637171278052252,0.2821442858623473,0.00015660560592706496,0.011199452681993785,-0.01969599673780071,0.016110002079761675,-0.17727279086002978,0.0005975946839083024,0.0014790854467559345,-0.004277066498248165,0.06754738282828751,-0.16212345703498404,1.8869494476605944e-05,0.0004019117241994103,-0.0035410976648951975,0.00869483813356122,-0.029232841601208127,0.0001209838613334286,0.02645544846051715,0.0014955307930052055,0.007119829234419872,0.0019240198989437626,5.912723910886738e-05,0.008419101372654721,0.009245063275002558,0.009240306358277987,0.0042611603010734925,0.0019514008515565625,0.0060946315725414835,-0.05075836541518229,0.41424543435594263,0.014538201145442239,0.0001008328413393134,0.038277227275838585,0.04120163065091197,0.21064536063997252,-0.04510115812192972,0.0003028800986474032,0.010587360678405731,-0.02947587427115861,0.15774847991742194,0.028779655161688285,5.263352640076392e-05,0.012459923006743024,0.027176554859852774,0.15233360658623896,0.023325150195469345,0.0002940258295555337,0.025148047869256226,0.00972547229979187,0.10593601536948132,-0.010920247156536314,3.8097572039809453e-05,0.01873425041986012,-0.006626943760128737,0.07141071748044754,-0.0002907589055251084,3.1004990132297715e-05,0.007449090388291517,-0.020301963049166396,0.0511332924061433,0.012910097532110766,0.0001278960204883921,0.03022664271313224,0.0018386316341096323,0.01430576709789463,-0.00120534241711686,2.9687659054832967e-05,0.0038021103493995267,-0.008459310585160112,0.024116249665003805,0.007209274889078383,7.776829570505264e-05,0.006089051993428682,0.0018009925683991432,0.005961261238521529,3.391505039599535e-05,0.00013814092576910333,0.004185634220483269,0.018556517585118455,0.016075778421131105,-0.0030685206710408266,0.0006597813381291484,0.011650256953903902,0.02418432096270477,0.08240466231484891,0.06879841844401963,0.00012352877168155085,0.014196475781115077,0.019042459506990694,0.07825548130828901,-0.06499028693239585,0.0015618073004505114,0.006291805669450035,0.027460925682782605,0.2598680954244653,-0.03053839442204846,2.7173426457202158e-05,0.001800953014547699,-0.0211904003353127,0.056729089532436626,-0.0012062812657141191,0.0012212501158501891,0.013219813954243955,0.012792883685356604,0.07771877501656003,0.002247785589701006,0.00010961453547347563,0.01449707025969254,0.01715793967395243,0.024658190091943373,0.01670531541672411,0.0001642288026467119,0.005003901306952828,0.006330030804828729,0.009137811532452902,-0.04569660886174781,0.00039761937728928026,0.017515631564737563,-2.9852007934554785e-05,0.00012660710042832187,5.751711473687371e-05,0.0018275355210294287,0.022173759580057264,0.013007236693859092,0.048868645298026196,0.01688067275197237,8.53974914791447e-05,0.000409350114622085,-0.04772695673640312,0.07385311862132725,0.0031722879361458017,0.001606468060989371,0.01079573727465139,-0.014171760960085426,0.043811298958626364,-0.047484212462463794,0.00012816036189712036,0.015106631110138283,-0.010714972361470659,0.025211044930869977,0.009141205083076148,0.00017229020384615186,0.0021015046705274076,0.03323939779143359,0.12552603559114325,0.011416543315703574,6.462986651923022e-05,0.006257215933401294,0.02003766669045885,0.07172185744869392,-0.19951297253443107,0.0026479737638329262,0.002320261397762561,0.019140154501626202,0.08856032423228995,0.003931814630215193,0.00010750949254404081,0.0127799277432428,0.006021306718522604,0.031706704618376214,0.010583341947708026,0.0001377210825860039,0.005596982521830407,-0.006389847278522093,0.033918223016515925,-0.016950701333296143,8.910582298225162e-05,0.004893414494908212,0.01892355168308228,0.09334822475153237,0.006483006754869107,5.094997583616079e-05,0.024318535042463302,0.0539491389164126,0.09807792205357267,-0.0050472810795933205,0.00026819004636053967,0.0054466835579354365,-0.030737613498498025,0.1262201903202158,0.09616862594051628,6.0555792279040177e-05,0.007637729617999848,-0.0002282552922366287,0.0027541111859089294,-0.05695629528294632,2.138310024936005e-05,0.002103718692767442,-0.0038944992026629702,0.012467810693678541,-0.02645483182725986,0.00010918686190911576,0.001424265010930455,-0.018249995585629883,0.08797802603366266,0.025747192750302152,0.00032697648525701337,0.004906529680320678,0.015175992023250115,0.07759508100255924,-0.0628180596507749,0.00011201977467675253,0.017086415235466737,-0.0004263450582039635 +2017-12-22,0.01036335956116354,0.07019093461137106,0.0018719592411751374,0.00015613710589405428,0.02312718397449646,0.01909401431515716,0.06973256263613044,0.0064628480329293825,6.570102496702922e-05,0.00038391105402660764,0.05115607755855433,0.1825096570548835,0.09249017855928572,0.0001296607688757868,0.02649327525721577,0.0014689144637787112,0.0014316797716882428,-0.0032832411353880854,0.0003462728764885547,0.0038946559052502406,0.03742315762229031,0.08545093864857181,0.023709332787627126,0.00022915079244768051,0.004799986032700613,-0.004768300677370064,0.012480842344712592,-0.0351525836005985,8.341928740742126e-05,0.0012476982094486763,-0.007493367813748611,0.026689674286112564,-0.026058492497984635,8.23803498497558e-05,0.004849091550558175,-0.018316976473520534,0.1544498037090649,-0.06674791758950963,4.066914492602411e-05,0.002892587412060753,0.004491285664447879,0.003597822029607598,0.0011056989828255718,0.000962666344506043,0.004817629772139038,-0.039316194395310304,0.10425932731651921,0.060068041039193595,0.00013186163050140517,0.02829634074892756,0.02847081525136173,0.020951728675704526,0.07216268582525327,0.0006642084557106989,0.00744052754070461,0.023722980484439913,0.30913726875647984,0.3009360917303467,2.2868657775384262e-05,0.006018470597293429,0.03735803694661428,0.09702535046756625,0.030476158341807905,0.0001143799401596625,0.023506526045028835,0.01364676517070775,0.08666003151778313,0.031105050281072428,4.4327444435812646e-05,0.010123010516193286,-0.023961755466349804,0.019389755184226476,-0.08928925169347049,0.002410289887619832,0.005075709956247321,0.007616137969814637,0.053935455912355726,-0.001779305988093541,0.00011620172001507457,0.02950489096933437,0.018215418902982554,0.09625533861479281,-0.002286445682360275,0.0002930370738648258,0.01806699868165472,0.011568502802137216,0.0711779288160365,-0.044574266626527206,4.57817896533164e-05,0.028754302092875588,-0.013208727903828064,0.07765245647211107,-0.011205486825841132,0.0002803448629901307,0.006546478738459209,-0.02802480448219076,0.47610950241208955,-0.08497385145615133,2.4426766067497225e-05,0.006500114711713367,-0.0019756224054348517,0.019838052760134332,0.00306978180308807,3.3272590190061545e-05,0.006390158110954466,-0.008990211189769786,0.027173472175674843,-0.05755556053072452,0.0001065730793085373,0.006236298262575834,0.016413407395852224,0.11620654473785387,-0.064818877287284,3.26257524898241e-05,0.0016159952281468875,-0.002936504057739112,0.007495859819210041,0.0018197799800369694,8.685334145121736e-05,0.006174505252027562,2.4330720368418914e-05,9.498534827410743e-05,-0.006086500962130381,0.00011712428254310373,0.0061353073672621074,-0.030767361945066515,0.029872941647464755,-0.039208726417091055,0.0005886915897960885,0.022964989602133595,0.013971311269325073,0.052714543492115296,5.463682655396356e-05,0.00011155594709924343,0.007214838881088261,-0.0038391850164490285,0.013630633905206186,-0.005840596211420011,0.0018077657879350467,0.004958256151847068,-0.001049584072296491,0.008836834478600914,-0.04011184334315859,3.0542368062105e-05,0.019340793252897073,-0.01971093640225047,0.058038656126550785,-0.05998458470323192,0.0011103532768264568,0.032081781709382404,-0.001070118229074596,0.007464024035298274,0.00011814113231010269,9.547383686574482e-05,0.01710454775899873,-0.024880529275896054,0.03453423584364944,0.03647007555506027,0.00017004158732301906,0.014136316143024977,0.02351958673099678,0.030301220082961152,-0.00718795758365117,0.00044552644186668437,0.011587562600203,0.018636764794197087,0.06411137638366973,0.011591947212752293,0.0022531274813774446,0.018442702151378308,-0.021773196947195612,0.09119642209533674,-0.0018663436124631242,7.660105857953798e-05,0.002707168859664042,-0.012153983524718286,0.01972761576025806,-0.038705490761016134,0.0015315149291131448,0.02463533942011005,0.009496710832996727,0.027735654592794458,0.005353806424269239,0.00013565969322224238,0.005484193637250915,-0.030555212816210854,0.08278146251937316,0.0723873550915707,0.00014962790460285882,0.013701538422308479,0.0018164095841988214,0.006987071099624002,-0.0361094013711109,6.345013452268772e-05,0.015850337171590678,0.01592249316478139,0.05168640052204142,0.0011251252498885181,0.0029197982264590576,0.0007128614690568211,-0.04157530624249648,0.21427576436861429,-0.019185015084190522,9.651681335696946e-05,0.02538894484762192,0.013981183167503759,0.06703125291382826,-0.0026317895900343827,0.00015126114124306767,0.004267920334603044,0.015703295058274464,0.09606488183805112,0.02642266484883358,7.731697192737549e-05,0.01037537073304806,0.05570892604986011,0.2689743230356345,0.05902732266831567,5.20548690167369e-05,0.020068293365230982,-0.05775777917619997,0.09930413177842431,0.04062250277982597,0.0002835780170635947,0.013931984597170129,-0.03916153318121847,0.1933827906030876,0.11654587681001642,5.035658139140223e-05,0.004982139288490579,-0.01201183950322097,0.13415299972702407,-0.17170752562176164,2.3101512666020135e-05,0.01236349792577118,0.0022630989193922046,0.0059329782313635206,-0.0332857726178968,0.00013333364351212577,0.001251988706072963,0.029457289348626004,0.12417971030940546,-0.05208590381596053,0.0003739126078346491,0.0018713720710993983,0.006587922883975361,0.029812515121441965,-0.004826613027933029,0.00012656734970160948,0.003401716227302276,0.0006011957891809558 +2017-12-25,-0.008422749277716498,0.05232546080518889,-0.05656717344019961,0.0001702265884297382,0.037874508107002595,-0.051298267630244095,0.1790298296191865,0.050573842036693246,6.875239432796679e-05,0.004864751047196496,0.051542567732772916,0.18668717162460363,0.0761203173828885,0.00012771702061884865,0.014130356966140907,-0.0371883682446863,0.030598874987054832,0.08980324021160788,0.00041017531450723203,0.0013330138047918522,0.003068041476014661,0.0068874917662824706,-0.01645659273915912,0.00023307618774874654,0.025903188680595685,-0.043541935277457804,0.12197693202014168,0.24894208615866753,7.794293617631455e-05,0.003924666032697218,0.03672695948447045,0.11975465516885064,-0.006359956217963547,8.99875497224953e-05,0.010149966595846681,0.012509312488088288,0.11350244981985884,-0.04942961062500858,3.7794344781560396e-05,0.00833214225012573,0.02392078224487297,0.020287924392808812,0.047596262657706924,0.0009092484021585843,0.0121139911373144,-0.06627506548037787,0.12573937926998463,0.09603354098481943,0.00018430653731113256,0.014443702428245202,-0.0024833666435621865,0.002141869905498088,-0.030662625620051908,0.0005667246629627234,0.0026119476291769496,0.002555388118166815,0.036010523552170236,-0.007438630671619974,2.1147071076237275e-05,0.004584878332914825,-0.024380356904789208,0.060892658872553074,-0.14616957793529828,0.00011893951382225439,0.011900963393181174,0.0033970592202542155,0.017393224985048614,0.00044623262763302104,5.497747902792297e-05,0.006362244141603162,-0.03099058580109515,0.02438612607852285,0.010023041929431584,0.002478619963754692,0.0031892198398474902,0.02496054445118453,0.1828252089732886,0.005026445383978258,0.0001123492256395104,0.01024549460639985,0.03693365637535603,0.22534257539866945,-0.12139148664374101,0.00025379746662612137,0.027242993783144463,0.015930119528846015,0.09860763813626676,-0.00693305489783588,4.5506080821129236e-05,0.006098823679363901,-0.009295715092561893,0.04870833484666176,0.0013707637894306837,0.0003145330808840045,0.009293442562148408,0.02218640157591441,0.31235518629803005,-0.005136657403785624,2.9475988571089526e-05,0.007731234253057075,-0.0009268744101862658,0.009260725391438554,-0.024706152690143236,3.3439332127697926e-05,0.00511041272625787,0.003201617265674427,0.008758763305391486,-0.10836657111950025,0.00011774687205806531,0.017057387086242642,-0.021330859829867366,0.14162438057317575,0.002026640509648411,3.479066375786493e-05,0.015649438239967624,0.0021580631971669377,0.006098806132820771,-0.006034921122948761,7.845068002106154e-05,0.0014909768311892851,-0.014485299968790988,0.051444224709168984,0.042355921164342274,0.00012874769492594046,0.00044364247607424205,0.016974610208278194,0.01817385384901009,-0.015457818840515825,0.0005338611780222162,0.001687534562551566,0.0043342476745255295,0.016011869992457718,-0.001328076293761183,0.00011393513695293787,0.004520360809173471,-0.04501043190086668,0.151429329361314,0.044979981620200844,0.001907753926013241,0.02915029783016832,0.028219044422765977,0.2620010475220477,0.02431062143144898,2.7696281892809117e-05,0.010708906972259135,0.04116680994961721,0.09661066093514505,0.006973039307131014,0.0013931357306861574,0.004640132549274457,0.002330103899444157,0.0193678965957474,-0.00033980945520917,8.011585505303288e-05,0.015086221273167215,0.0028173459487953753,0.004079206978369231,0.00015317788433284448,0.00016300833921694037,0.00394005567119967,-0.0513437021920965,0.06779345865365909,0.10958583146420155,0.00043471367622090196,0.005209686871016982,0.08205209475786704,0.3146656982587047,0.19684251797778812,0.0020211130723581127,0.03557000249083517,0.03529418002971781,0.13019497406604236,-0.043754008205775755,8.697596332849452e-05,0.00657653191738442,-0.08692162809087384,0.13156894800068428,0.08384580313084014,0.0016422967821203827,0.009677207541144966,0.012599882071111243,0.041312937806420626,-0.018143425937788525,0.00012083602702501019,0.014415445611170787,0.02538566878741769,0.05754137041705609,-0.0066650392088884345,0.00017884169799601087,0.02881848128564032,0.028277950751292937,0.12823148547756807,-0.02465450043359124,5.3822911336546084e-05,0.011037235392056144,0.0017426101101194775,0.006068637835637878,-0.0035475310658352214,0.0027216173627174966,0.018094559002103126,0.04397753256233858,0.20875228179652866,-0.018960590072652855,0.00010479491222840994,0.01994998903112999,0.018919378587695955,0.09499121805950544,0.0160758896598165,0.00014443890773043806,0.009023326750551286,0.005530853422039511,0.03845200143002582,-0.0002468395805324373,6.803335651006628e-05,0.0002467367860045582,0.009399014244078872,0.03389139823451883,-0.07292444384538266,6.97011937308855e-05,0.022355310498893156,0.055885542046380826,0.13180983919985748,0.036924829588666296,0.0002067193027462181,0.016421199771388187,0.017256237565975954,0.06932273720344431,0.012390564671985961,6.189916413072722e-05,0.004871454357931739,-0.0010636729177610465,0.011286482468574933,0.0019396391092958787,2.4315364033938793e-05,0.004326288195325975,-0.016960460068378463,0.05730250897876415,0.06612110242129923,0.00010346011466196765,0.0017334228842375047,-0.01000473104091771,0.045084875255316216,-0.018793421664762434,0.00034978607520228796,0.01763136444702569,-0.018287632078402307,0.10398426465254086,0.021681616579805402,0.00010073065240685187,0.009811373081982723,0.0026343081294601892 +2017-12-26,-0.0028087749373279136,0.017882608206364586,-7.449038919456836e-05,0.00016610115928625702,0.005351743597435935,0.03273034683743644,0.1158196945223607,0.0032812352205262947,6.780765399106074e-05,0.05004421404409708,-0.0278398418350653,0.10038182373466495,0.011869729309233955,0.00012829475048437477,0.021808123764076332,-0.00047541465028990944,0.0004650619549446821,-0.0386358683146161,0.0003450083484318366,0.001876427450746689,0.020583509961075445,0.04598424493595694,0.0046959005455638695,0.00023421146277212014,0.007751617157697405,0.007794085150073377,0.02439741352424085,-0.00031398586715337945,6.975383643186887e-05,0.0057321736695766625,0.0022560629707712235,0.008799689041001302,-0.012384001748967534,7.522700074071091e-05,0.024182237014186824,0.0078773702790729,0.06778258900769907,-0.01906426592806762,3.985306445681507e-05,0.006453353123299151,0.00025659962049027156,0.00022607405826044903,-0.009953234702433892,0.0008752861690083133,0.0018213171046910378,-0.00714821907617631,0.019475706596144025,-0.025503990360774827,0.00012834132460522648,0.0046541831149920585,-0.011329838767108209,0.008704073064015326,-0.0014144224586665323,0.0006362467249690431,0.0038408127612811877,-0.006241917979819789,0.08921828023462809,-0.04302894380781286,2.0849084980039403e-05,0.006557477333419646,-0.053626645740483994,0.15069654461517176,0.07482381706409998,0.00010571299494413892,0.005928077342107138,-0.003801391001908194,0.022341910438967504,-0.062044154975248116,4.789432469946716e-05,0.0057420358477922396,-0.010045533238624855,0.009030020600856815,-0.0023879360653794395,0.0021697376569124933,0.005729401691562037,-0.012851217807242701,0.09784829037592968,0.003400619718115545,0.00010807945598816397,0.02335432523346345,-0.0619973986274647,0.3693289569936032,0.08182553839251659,0.00025993714196469544,0.009333435345255452,-0.0377454476595565,0.20879588481416556,-0.149119143514468,5.092178297115554e-05,0.005895186238943682,-0.03301595060256669,0.17279462057515926,-0.0361798811651868,0.0003149056085495055,0.011530239430842991,0.0062191846574331956,0.0862629361762982,-0.0042701118302830385,2.991847457494032e-05,0.012095493018012235,-0.01540728989163412,0.15850316935532566,0.021574343962075897,3.247655933072561e-05,0.012905560330562019,0.010032347275650843,0.030099668137749096,-0.014584147894957362,0.00010736521684675236,0.011789951015867836,-0.035302556416911386,0.24582685666807283,-0.002551136787564066,3.317181264932526e-05,0.006156285499045445,-0.041045308244016636,0.12703889542398808,0.15325729011241856,7.163152460872329e-05,0.003029969625440882,0.007757519562898012,0.029048075190789453,-0.0875180709390299,0.000122110810822673,0.00900331912183687,-0.024192222805898146,0.02338626370179318,0.017153614189520557,0.0005912763285014165,0.005983297363984337,-0.027026948613382163,0.10301310605943129,0.03791652870105699,0.00011043088248013289,0.009592698481396603,-0.008396924211585492,0.02541736169307476,-0.05335741969671323,0.0021203567592799535,0.013057890157369682,-0.01925317924653902,0.19565835585740657,0.008209347430317827,2.53038293273896e-05,0.004191498672916698,0.07408490626665663,0.20427527338360033,0.1610271453558041,0.0011857283539091557,0.016210707079672634,0.0051480757848044855,0.04009305976575969,-0.016349718974875655,8.550694168805089e-05,0.024487726083963476,-0.016473173007288663,0.020515065320485634,-0.005205823573333704,0.00018951768456270098,0.003459269704456173,-0.01743606752582649,0.029811301267153083,-0.05043688277582053,0.00033571560011733115,0.02363103277575722,-0.0030691132248609324,0.010583925898260068,-0.0021960352280347784,0.0022475867398710782,0.015519531005891356,0.03538023798168828,0.11316231123534572,0.08453598360452771,0.00010031117355009885,0.02447467779871901,-0.008799192011975892,0.013823789997719443,-0.026983592304406976,0.0015823146859703637,0.018103887061316656,-0.03537648906322538,0.12434651490779161,0.03863064320984793,0.0001127190053940769,0.002790641168986293,-0.016305847958677074,0.03923668583204877,0.008749039733360177,0.00016846568316941152,0.004038111854846919,-0.014119938065662033,0.06593641809942427,-0.25665197236661025,5.226625292802276e-05,0.008399346544935123,-0.008500504630636842,0.027334720031069557,-0.06015641912158852,0.002947461466877244,0.021250494041121247,-8.141482097339654e-05,0.0003583699152336685,-0.07520464877788313,0.00011300886131426778,0.014475751367865594,-0.001407426849849587,0.008842816836055912,0.0005335550673309874,0.00011542396445118941,0.005879462364170694,-0.019766715956544386,0.12700965158512892,0.029801609849982622,7.361164036253517e-05,0.011049534691069736,0.005171032857541001,0.01957580656463526,-0.15196706713325017,6.639036056531507e-05,0.0019443012458626307,0.02210761502851325,0.04044401748397942,-0.10978960514219357,0.00026651214089439787,0.010398230115699847,-0.009245177807237116,0.03345320730879203,0.00791572020803503,6.872138160198198e-05,0.012178298384117579,-0.02588116107949003,0.2716841143316719,0.08301953417491728,2.4578240850847856e-05,0.007988956854645641,0.015764375664298506,0.04916251344065927,0.030368906431870252,0.00011208607512979277,0.0004134911921098142,-0.019447538013393238,0.08891410960839091,0.03172635295872675,0.00034476400426410785,0.0058151522188751,0.059213237830823426,0.29608310142628785,0.000727566413469667,0.00011454522352061228,0.005653055747680001,-0.006018855548278263 +2017-12-27,-0.03155990677574512,0.21924802554699083,0.010773650846305327,0.00015222521797835452,0.018161330830310757,0.02210276116102704,0.08614447683296655,0.0054583807107078715,6.156439550898408e-05,0.027670441625129792,-0.02202542424205003,0.06325013627031152,0.008487253160525416,0.00016108682484465423,0.014482782808612893,-0.007251155538091907,0.008420537595120361,0.0031043197021777854,0.00029062653095829783,0.007478312055801857,-0.029535619678134565,0.06963587688047593,0.023685763242242572,0.00022192734146315532,0.040952719365423336,0.009648370486462153,0.02358380708075456,-0.02377342734320809,8.932783282900142e-05,0.0011237364605696913,-0.01565191022851716,0.057271040041742736,-0.07775094935389752,8.019035453576114e-05,0.0007730543414210667,-0.05482399077128419,0.4365989074448361,0.0538868416914131,4.306124831976952e-05,0.003667813123764476,0.0029052316734330466,0.0026579951730145894,-0.09831909242127229,0.0008428909074771561,0.00343312210264277,-0.008873783192671597,0.022247890631716817,-0.016944818436716327,0.00013947033984859034,0.009910739088867826,-0.010897182018089318,0.006581878966403463,-0.025917859580729445,0.00080926111212344,0.012167519656649889,-0.012090863450240056,0.14573790580026327,0.003063338637815952,2.4723365041068323e-05,0.00021526120430399073,-0.01572574794947315,0.04316398941005359,-0.02629165176334359,0.00010822828362862926,0.012690731009162057,-0.0034780587432680183,0.018728220366283473,-0.00021291198896406904,5.2275984472155215e-05,0.008564961524689151,0.04503850564051193,0.042456897849932,0.26382341190114306,0.002068991402751291,0.007491414931090045,0.01693640939516797,0.12373874094927491,0.004587984272771294,0.00011263354628507546,0.0219282386799485,0.05939236961906399,0.3531159916688022,0.0030347434517697955,0.0002604482830984617,0.029415434440917567,0.02000069836559996,0.119092870946252,-0.001810483483823259,4.730644920516753e-05,0.01950413546346687,0.03422557312598686,0.20332351975638188,0.038219268415921756,0.00027742776145463086,0.01227125626396473,-0.029914857146273444,0.4728207805669471,0.021868349852040562,2.62555190844788e-05,0.025969662093684138,-0.0236902662815509,0.23549755171549308,-0.12292431997404694,3.360974789657821e-05,0.00361340306510597,0.04206725127436068,0.10945012514652709,0.05598057273097429,0.00012380854760833153,0.016045919305401807,-0.05765681727883471,0.4071947853516678,0.08914101791688142,3.27070092362133e-05,0.01268430613348529,-0.005969085280963698,0.014430516350447127,-0.013272408667450927,9.170717065552081e-05,0.0059950246323719055,0.02126330541777121,0.08203031759137072,-0.22876336130792832,0.00011852363977728314,0.006691880974813929,-0.012747515807486221,0.012545192315185956,0.0025485307986241003,0.0005807962414564416,0.0020236174111726646,-0.02353594445444117,0.09437765859650996,0.01579060038060328,0.00010496594999839073,0.001048891445987949,-0.018283383643404493,0.06805248750725226,-0.030358413514317704,0.0017243750976943994,0.051546837668563425,0.03589467309034415,0.3340614996911787,-0.11997388092263656,2.7630310869454295e-05,0.013332482843040833,0.024937345432238328,0.07432473241501265,0.0021673016827595225,0.0010969532940366764,0.016536701577902133,0.020323241747262327,0.1591892309380952,-0.00535942217269294,8.501683671150302e-05,0.005500999208709916,0.04783828819039012,0.06792679807498611,0.15448323818205653,0.0001662186970736176,0.013226587075695299,-0.0018006270160377399,0.0019894870985051718,-0.007621872648887412,0.0005195011921589771,0.006338694298313614,0.03671716539087283,0.16655560422234544,0.02532088346977089,0.001708678034989345,0.0087677452126747,0.001377426598884096,0.005376601077028173,-0.013207392274929678,8.219606386360524e-05,0.0057798577210607036,-0.013645715796553727,0.017815285048820947,-0.010151442401196743,0.0019040604757739666,0.004771905642321275,-0.051302564975397494,0.15509792066604042,0.015561544722937352,0.0001310536557566047,0.013367250791214386,0.01893851154850353,0.05959250529627309,0.00425284403193424,0.00012882927876617045,0.0015153577725400002,0.0026509300738668156,0.009867738120070647,0.0016753341260120637,6.556839935706096e-05,0.011754791897850862,-0.11259768837560026,0.3835281229614845,0.2580735195611627,0.0027825970319730327,0.012165220338474501,-0.04952174341375876,0.22246914248964353,0.07298992132048017,0.00011073036092871033,0.010697975519681815,0.0035015420163155516,0.020307032939004464,0.0016073225365091828,0.00012504710828219493,0.002059706942017662,0.009807982163761669,0.058445898654155316,0.003237578934029105,7.937327965659995e-05,0.0021287838870231992,0.02524414492663676,0.12505364388071905,-0.013792296738114669,5.073547243156835e-05,0.003138926100784086,-0.03690937313093008,0.07269537798943926,0.00063163868110269,0.0002475479101090107,0.011334905869026865,-0.01521275524419659,0.06687704638075,0.02062205503770569,5.656465851890256e-05,0.021467551758523606,0.015254431903367466,0.17955417973749732,0.00915942113499113,2.191955861713264e-05,0.0015370997469228345,0.002489887405315333,0.008254431099650007,-0.10581013875575332,0.00010543906016063016,0.001711282796145427,0.007006873029289731,0.02977857108036435,-0.0401315241725992,0.00037089276728664405,0.002465962511774861,-0.00660538397519552,0.0357873855961296,-0.0011534918863678593,0.00010571579784553564,0.019574046871698208,-0.0029792322471295482 +2017-12-28,-0.005226201950185498,0.037685294270876635,-0.0027030782497883777,0.00014665634617959768,0.03188611091383379,0.03266648091850696,0.11744959533103255,0.017725721979951797,6.673618144937939e-05,0.018821229206227245,-0.010138053658420422,0.03463424922624519,0.0024050734094135367,0.00013540852651840006,0.006495981713427445,0.02031434591018536,0.021519827036227894,0.016236452043715665,0.00031858984102122096,0.00269217894046844,0.008683760837717035,0.022143170335344582,-0.005253002724573739,0.00020519455174414661,0.02500243734704793,0.007558416145321757,0.01960292976471122,0.003439287163097012,8.418923344373437e-05,0.008431490737513902,0.005807847752754331,0.017189969645708122,-0.06602860432162798,9.913567514538267e-05,0.00923287993683755,0.012269860882788433,0.1243410970032232,-0.017842727844885733,3.383947047635718e-05,0.005426703168864299,0.022421316865324132,0.017505857105469765,0.052768188262549934,0.000987694246196499,0.0002603781205917893,0.004638386806287213,0.00987575169336521,-0.008109434556671185,0.00016423234240652137,0.0015561141266913804,0.03608190901714717,0.026629261566882768,0.11635438883073401,0.0006622999797482602,0.0054172939345305685,0.021098709787884865,0.28330897819283557,0.16366694187154662,2.2193119424176097e-05,0.0027424566843156145,-0.01959306702277012,0.055727896594417674,-0.04574098528570623,0.00010444335418600954,0.024937726583141848,0.004235339765303667,0.0225695228505352,0.004220748628647132,5.282356361961889e-05,0.003418285858282937,-0.04087788404013626,0.04106990860077175,0.01452434383388589,0.001941277601020789,0.016618753220501225,-0.023660548435957007,0.1714371452214038,0.00987169207499104,0.00011357218694520604,0.020772135875163134,0.02931079305865354,0.161212463699992,-0.0031023429133353675,0.00028153810695708854,0.017732565948075367,0.018190378282253207,0.12108541162807655,0.010027568340668558,4.2316609533297173e-05,0.01641263622259322,-0.04140431883039021,0.24173577469635613,0.035989403619710654,0.00028228742023903844,0.027852105486200505,-0.055821914962295834,0.7797813866277402,0.06605684506271346,2.9707225831885766e-05,0.020109661108208644,-0.007520237083121196,0.05909524977580244,0.0056746816871719305,4.2516809659491956e-05,0.007438614325799224,-0.009148589620595598,0.029706841971566724,-0.0035817150010260604,9.920199741403045e-05,0.0008045124364207811,-0.020744227924584618,0.12597018694435685,0.004469255096076385,3.803836818331886e-05,0.026414878385647086,-0.022599436138282948,0.06732953397241893,0.036030576898642135,7.441652350626846e-05,0.0012171993740431415,-5.151371033575637e-05,0.00017964002839057587,-0.01598401428186373,0.00013111981027558287,0.0006542112101259933,0.06263754821336913,0.06275443688816239,0.09747034191872596,0.000570513432987971,0.015865488546746496,-0.014093495999929533,0.053579473300542683,-0.018764055285580155,0.00011071495951056109,0.0069028067958733196,-0.032816662018651,0.10059189515238742,-0.00875872949807038,0.002093874213938705,0.015305534804928628,0.05082451155505001,0.5169502440767875,0.010104108523801086,2.52817227376969e-05,0.008663286522063713,-0.04808997325025162,0.12504050400742375,0.0023289674013165116,0.0012574047300447692,0.010283601724981726,0.006401124530253309,0.05237834714495275,-0.11255172897014844,8.138233189672943e-05,0.01656794320182302,-0.020998927104711716,0.03382224379542431,0.023361689803072187,0.00014653456403539817,0.0010984925982536241,-0.018530026937792127,0.02654757248778562,-0.006899269664073292,0.00040064077672858516,0.0005986586045472334,-0.024905023532964494,0.07566271974796025,-0.02526597551140386,0.0025512636971082394,0.016862393935528703,0.01989568086209851,0.08093426145280205,0.017691184745360626,7.887089487377566e-05,0.03035442566998987,0.03291896938578599,0.04517630681646386,-0.0010253746265015524,0.0018113930519739387,0.024110482751666207,0.024035472729935933,0.07070374996846199,-0.027754425686063598,0.00013468717886399502,0.00543226759500313,-0.00867459470300454,0.024298046433151213,0.010398229573734529,0.00014472321813515052,0.002030937677311488,-0.0017368891891363658,0.007210738147390761,-0.20082922702770867,5.879038608534855e-05,0.005960937801839155,0.014503026535499845,0.04385164036800185,-0.018903429505091208,0.003134662985887768,0.003137659614980228,0.023998582615994375,0.15295441497359605,-0.06634971414673148,7.804842544344262e-05,0.006522208010308609,0.006883267736152037,0.038701036527966554,0.0030229947710755795,0.0001289831117003138,0.0018056235430239376,0.04745548926578639,0.2950105154798213,0.18844530435108656,7.608475695243137e-05,0.005165081532002043,-0.023289461044695814,0.11501910656619314,0.014263642255088117,5.089051472122583e-05,0.013063538116578698,0.011795528609946673,0.02502812251500151,-0.0014220404441648512,0.0002297833359606829,0.001429109947335249,-0.03973352728080581,0.15544760641038557,0.08528296409656239,6.356052230042233e-05,0.015064194892149253,0.0013493614654796337,0.014468904639530954,-0.015296590853974761,2.4061568525654074e-05,0.0018055542116528892,-0.027270917649424197,0.09481732751921991,0.15770310861008172,0.00010053586204939694,0.004227232160371441,-0.0010567049152869522,0.0039571801903247675,-0.01958451741591614,0.00042091642405801957,0.0014866209611181331,-0.0016672470829570182,0.008497345094691558,-0.04160487877619847,0.00011237986499464227,0.0055035807100570705,0.0017404769583368352 +2017-12-29,-0.005879811555701091,0.04308809179196651,-0.009526116199004921,0.00014430877167632123,0.001891386657899095,0.016853742486475254,0.05528273719103867,-0.003960502170356002,7.315050734186237e-05,0.015383260349530272,0.035493580284143955,0.11966210374790077,0.02438320951320477,0.00013721145830952473,0.00897042798853856,-0.007252817907143343,0.007474934012863846,0.001107688127859926,0.0003274667933880406,0.0051536283166096555,-0.025865327185684083,0.054022597332300144,-0.13943800987640606,0.0002505187800151094,0.003435879912793772,0.006899157011228032,0.014090410975909412,-0.0008137678378726915,0.00010691019167527584,0.0002867488475127569,0.011716549708809377,0.040732707581367454,-0.02234092978601543,8.44007518106418e-05,0.0014656027555749384,0.028032560084783387,0.225679688274315,0.04989506470842639,4.2596008292490165e-05,0.004965107153780074,0.032120077428407105,0.0268653222542532,-0.028648336732997107,0.0009219965920145368,0.010357549936576832,0.02382657674238139,0.059544827036054765,0.025590145012931567,0.00013991990395451637,0.003311095199795177,-0.0017440346179439083,0.0012714467304170219,-0.03052947716423041,0.0006704729947418606,0.002810069959599164,-0.016225217553254956,0.1975161000877201,0.03912974292024477,2.4479966330247687e-05,0.005838812655486547,0.04765862851887263,0.14461860273060245,0.05757128453937814,9.789678220725699e-05,0.024774880583468203,0.016151528212715923,0.09212154433337168,0.03354314851799104,4.935307633090842e-05,0.007486432358106903,0.016097439036493057,0.014328552877135043,0.02893759210665328,0.002191176849873706,0.02685927494382456,0.04750411872178807,0.3465285110645815,0.017376398979833417,0.00011280916921600277,0.0017294807872561286,0.04266046756427904,0.24334588579935618,-0.004821197290970723,0.0002714624940734244,0.023996386278704703,-0.02298703829050537,0.11753197625444445,-0.08738678323655419,5.509192359857565e-05,0.008275390285468089,-0.05073636121819583,0.2696705266505825,0.04683531821535121,0.0003100792042208697,0.007425619910748365,-0.016335185763360897,0.1972362659428623,-0.0006711263888390766,3.436905071779594e-05,0.02721549615658248,0.014534275045260633,0.1442468761434472,0.020087575532235117,3.3664228567778055e-05,0.008266248537731193,-0.016448103870218115,0.050840898721229245,0.008587948132862105,0.00010421383469911176,0.012583980190446476,0.00032405540162062354,0.00209196296791374,-0.005681615505846965,3.578142634745513e-05,0.00510048599906101,0.009319390001857575,0.0252982669763002,0.0036288417247599567,8.167217051429261e-05,0.01790283937162213,-0.0060256033658929115,0.023827112946185232,0.021216630079541318,0.00011563191364938987,0.002038431272567035,0.032577578613782764,0.02645389264203703,-0.07874207595791265,0.0007038899688963063,0.0031911977207340486,-0.015991119647486653,0.057824004203995236,-0.03529275815286405,0.00011640100214453028,0.009441647166496302,-0.023912237915415985,0.07452371187341982,-0.05577820356454788,0.00205941996976037,0.003309102903202737,0.03042753402223791,0.30662690948363386,-0.01943739939455659,2.551753306805367e-05,0.013921634718276586,-0.010394729211105829,0.033520063959191417,0.00011330583548532486,0.0010138637871081296,0.03339649096185611,0.021962680347404246,0.15343229288827862,-0.05152675384203588,9.532223328940297e-05,0.008095367268421956,0.006167440798642461,0.008214441170805808,-0.01899079093329108,0.00017720352303830181,0.004190665945948705,0.020860977252293023,0.028274018636748395,-0.007821980163259667,0.000423497668162357,0.012066997570732166,0.007098055512783566,0.024852332585715137,-0.00351350705127114,0.0022137194243970633,0.0002715696690569385,-0.004292177203560492,0.0146678871710346,0.0026241094537834075,9.388591720832356e-05,0.023478082332617542,0.008990822768874545,0.012397116520196668,-0.024292833854626134,0.0018028348529802946,0.011061086463700102,0.026858083350642895,0.09613965823085881,0.02006639868987454,0.00011068492620837946,0.001120961044964128,-0.012268544285054925,0.029373819278600954,0.020769787218680398,0.0001693140477578446,0.008680677240043967,-0.0030102615901460824,0.011758051193780154,-0.0036034581322911116,6.248601309260415e-05,0.004630460284739027,-0.018799542051716665,0.06271406869746475,-0.05349471452816579,0.002841190479541109,0.0012892634338315812,0.06044016299813313,0.34349995483024753,0.04311702700906415,8.752649012888774e-05,0.009998505398641028,-0.0016035696869901863,0.010556745313576203,-0.011290140733169007,0.00011015864322336357,0.02106256957384187,-0.0495325675475795,0.2774351448560032,0.0993995419586686,8.444580178305875e-05,0.007541994457152839,-0.011583853376933443,0.051451007233085745,-0.049068056627157616,5.6585683422770166e-05,0.011711806418336478,0.01923425059418226,0.041206640167610664,-0.014042417694684785,0.00022758176371223462,0.012903001533732424,0.02834895112648802,0.11168563541232047,0.03693341139769787,6.311811955854534e-05,0.0006655549527539435,-0.019035445207591803,0.23458048039731452,0.04301167083728351,2.093642148663283e-05,0.006520340432399767,-0.01892507347489044,0.049348569389882115,0.010096042829322327,0.00013405159068906726,0.0035568818693049757,-0.004563209057148268,0.01743364917677519,-0.029632406212506637,0.00041258176979578953,0.002182335804483039,0.04012187197052604,0.20630321037466234,0.03019669046623862,0.00011139020352556664,0.01843328166857529,0.00593913936740701 +2018-01-01,0.005669944787686211,0.03723260689189671,0.0009382034486709271,0.00016104304321820444,0.0029717567087689974,0.01887524857544166,0.05602328230419648,0.004986467937392251,8.084155460818646e-05,0.0032562805886756415,-0.03852980022204659,0.11888582803177622,0.031771533980794395,0.0001499214847920558,0.011602329624801318,0.020339754120209982,0.022483444310053946,0.007526532711271909,0.00030531680705083873,0.0021098178669384975,0.006458108994739661,0.01241734294487476,-0.004555609073974076,0.0002721287752005613,0.0023884643819889265,-0.002457176884047536,0.006674307594310071,-0.01767510154994047,8.038535666347845e-05,0.007196722758949398,-0.035980242453410236,0.12511677881368446,0.05883337530196375,8.43797794627636e-05,0.005110620714115343,-0.00294855442708726,0.02713240116411404,-0.03241220721348905,3.726657955089515e-05,0.03558369096210057,-0.0006292977474359031,0.0005817328909902453,-0.11622398765614676,0.0008342137511517016,0.0013768817041539575,-0.0007367075158506777,0.001659333472587804,-0.048633117683057565,0.000155247034429358,0.01326788557232082,0.00807410103920825,0.005905434702011997,-0.03969999737451555,0.0006682926217649205,0.015317803485359549,-0.00895058538763102,0.11961094720228332,0.007459276179104673,2.2299919735200497e-05,0.001969384241234881,0.027420163466703885,0.07606009035942518,0.00016614619099838786,0.0001070937781766916,0.009917231484310188,0.0012614490787950985,0.007406862086880334,-0.11392297424546621,4.793991768048736e-05,0.005003613985121209,0.007769443575321215,0.007137687080302359,-0.010787393577969788,0.002123026353826501,0.011145458312242137,-0.06834844801404813,0.39059078407252756,0.0798902644077302,0.00014399876696018156,0.02911465828707492,0.005012824749774371,0.028228087285678036,0.0006471072352956512,0.0002749851884573846,0.03690580981918682,0.009451586975111736,0.059642011491531005,-0.03604353390457404,4.4638892286635125e-05,0.002432431924661825,0.004505555759344154,0.024506697023681603,-0.09725574380167139,0.0003030054183055177,0.0019695383299283367,0.05735866224969313,0.7518158852784318,0.05589788592363992,3.166049841192713e-05,0.02310468902151343,-0.022065928587238406,0.20834766549181916,0.029635975949519465,3.538468051774674e-05,0.0037347216175754694,0.03734881341509245,0.11325461706722736,0.04552906741858093,0.0001062291358248964,0.027854600897033503,-0.02270962911790554,0.16996537438060652,-0.014563501004654629,3.086327172639049e-05,0.024409691222262726,-0.006474548843605378,0.018503951819124797,-0.20782482694436183,7.757511085610037e-05,0.0018590596920793068,-0.021444300466755405,0.08091583833375078,0.18753640717905032,0.00012117888198014816,0.00315205927515307,0.0028539448660697747,0.0025939168066643615,0.0013316688751547647,0.0006288761105327747,0.026343826773385894,-0.04240928134159227,0.15921456841869439,-0.003250772313761826,0.00011211510246963875,0.014477575145166162,-0.011581322960675098,0.041245175026544026,-0.009896956154023332,0.0018022050257455117,0.005660674534666551,-0.030450636769168732,0.293968392346132,0.08117459148036697,2.6636547731906445e-05,0.0014004279425160208,0.029552358543069222,0.09597001000489516,0.018731683218679802,0.0010067644619918459,0.011035980702412096,0.014502057852797517,0.11329295070066735,0.00783316946210251,8.524175615072281e-05,0.009925578454100937,0.01805859407597341,0.025252811330755336,0.01201202247350304,0.00016877945811779037,0.00955072560224867,-0.002464097510224442,0.004182987288867011,-0.06114579571615253,0.00033812342450563167,0.00587018847252801,-0.02006656647121808,0.07064751536703126,0.014674951587032102,0.002201539675752913,0.013034289420790572,-0.01601028491665817,0.06170541737195741,0.007616203313418997,8.324652945530898e-05,0.008079298812743513,0.028957205266117753,0.03821612199499842,-0.028030643605236726,0.0018835936680405248,0.020187650216319197,0.05788112392628192,0.19573896076161548,0.09986107864947143,0.00011715901558306406,0.003967701514457035,0.01940954194318548,0.04785235794557036,0.002567867059543486,0.00016442669206782009,0.008735741591603485,-0.012507065014032303,0.045442633393638014,-0.021496643551400116,6.717471641579609e-05,0.006085430214473556,-0.012541207801468954,0.03706002507138421,0.0009230366869327237,0.003207389573767699,0.025846715179847535,0.007434154727107498,0.037745274268479186,-0.02588684419309801,9.797371613171491e-05,0.01520177888006344,0.004205826694009456,0.025889904632309935,-0.007633549968776309,0.00011780987815742485,0.0040188744682129905,0.0547329640596003,0.37104771889098587,0.1317738331067894,6.976986789955377e-05,0.007497319666668563,0.08131270594807576,0.4176085521660576,0.15582338922185443,4.8936896634641196e-05,0.0050597841059729955,0.022893888756215407,0.045576263211885654,0.010841590066021659,0.0002449121031055288,0.03310234421222153,0.0015058200926882722,0.005473648289763119,-0.011310529580477608,6.840857996449315e-05,0.013416916299378058,-0.05884165295067354,0.7534210039897987,0.19574269148922604,2.015015662958017e-05,0.0030628509704252035,0.013305769321904398,0.05426428543560913,0.033712570772994103,8.571066526299167e-05,0.00028993925402593876,-0.0059580284291453735,0.026768875603215826,0.0007338929266475811,0.0003508329801235435,0.02093041735245654,-0.014299677198391564,0.07299074015750827,0.02647687837499059,0.00011220966406569348,0.010359718300659428,0.001681578165345412 +2018-01-02,-0.012573491364677919,0.08484854515046646,-0.043306302577011124,0.00015671049111778515,0.007543387654474605,0.015044116329018802,0.04794517128920786,-0.15413581860684328,7.528913976179116e-05,0.04170898605932707,-0.058551373883322204,0.23054075581618327,0.053762931142989585,0.0001174861255563997,0.007426979720825268,-0.01781597396772526,0.01783802703840747,0.01367510556729926,0.00033707815479053275,0.007379836733527712,-0.03681522414527292,0.07032322877706568,0.07157467835943555,0.00027392168771442625,0.0241577408629205,-0.005743298483655589,0.014991619694357333,-0.012777535657726265,8.364877220026864e-05,0.012352458085428657,0.002801424765576784,0.011150001609118035,-0.029062222157683202,7.372145342564585e-05,0.009149461722514522,-0.0056023222793588475,0.05004704575586989,-0.0764934223858258,3.838736096440834e-05,0.00937678506143608,-0.009086036132925248,0.0073749825622615485,0.025948117060327246,0.0009500757833137993,0.007795070347861876,-0.016278986017932113,0.03542510210712692,-0.0008087961275568748,0.00016068603180493816,0.004152714576037046,-0.0032104705583506296,0.0023024754517834145,-0.010185317552016187,0.00068155050076341,0.008246414053162237,-0.008943570724824058,0.11192760844034527,0.006030665710403633,2.3812034923964814e-05,0.011044705430950798,0.04200384422525768,0.11954852848336175,-0.011127389251633445,0.00010437484469438512,0.0021709117080045068,0.002359468642807293,0.01414566650254951,-0.011722828524887152,4.695183965348639e-05,0.005127729897704201,0.049710614079619256,0.04878420562106522,0.16841014001924445,0.0019874346765980785,0.015003807746943232,-0.009987347122145641,0.07729968483033905,-0.0022965489693143083,0.00010632234071108748,0.010089402480004872,0.019550339411479285,0.12172727172681816,-0.014540658437685138,0.00024869934712377386,0.009856606484134509,-0.02087435861539947,0.12116146592782512,0.00727417453888142,4.8529920183308933e-05,0.010560316214939613,-0.015643157686860903,0.09007931870275675,0.0025176218147506734,0.0002862108791925813,0.0022292054956478576,0.02748429802205632,0.4284641872707034,0.00975625943673909,2.661952812631164e-05,0.022882929271563303,-0.0009866026232151505,0.009559954730059663,-0.00014938137546514362,3.448007002735958e-05,0.0016419142869470225,-0.016249580892631704,0.04486427280068994,0.0016228216127495319,0.00011667136723998978,0.0027266225364263293,0.010033020449455938,0.07242793101924301,-0.0026574270414832122,3.199764341180544e-05,0.006153938581928128,-0.0030547783016735557,0.008438784910460259,-0.0008827529213948741,8.025593556209486e-05,0.00939675998505884,0.0044965448993918135,0.01959433940255676,-0.013527703400872433,0.00010492933090776836,0.0052508433138185725,-0.001511879980260987,0.0015590863794846944,-0.004154520548063969,0.0005542716939673262,0.009323503248817134,0.0306517899734949,0.13362694476221718,0.09930845798567219,9.654900697483499e-05,0.005582164691511392,0.03712889575709624,0.1365591757750091,0.04258711473373867,0.0017450598279728903,0.00474938908119293,-0.028583309212568957,0.2227283671478593,0.06968958907653533,3.3000397383433365e-05,0.014687424874412146,-0.008255483896737081,0.02352638665826106,-0.0347525006848907,0.0011472513408801737,0.018856812037554863,-0.03047716277219175,0.26113597726938476,0.026995052835799165,7.772012101126021e-05,0.005661338431123894,0.002523643476305509,0.0044219070393288675,-0.029453681335628507,0.0001346988161104193,0.007281071088365525,-0.0610156713856797,0.08768626581889952,0.13477780769268316,0.00039940521623840655,0.004818864707191003,0.009024965060746466,0.035474049999354114,-0.015485102449571067,0.0019719009517015023,0.01931837005081607,0.00015255363785813416,0.0006134645139508788,-0.022387680914858595,7.978541217973313e-05,0.012160527198328476,0.039424671859125085,0.04825837582850133,0.023375789234484284,0.0020308253587658304,0.020313264632424895,0.002362211018975544,0.007253933666741321,-0.019054151709322963,0.0001290212210316343,0.0022942504415755603,-0.009646884685777126,0.023286582748199523,0.013879756890297438,0.00016793518684145997,0.013979529401283601,0.012532618181885799,0.05404684776470295,-0.0038698911096707875,5.6595951341364196e-05,0.025496028534633085,-0.018697481112811755,0.06348915933389034,-0.04556899501321937,0.0027912683075650927,0.009857439340745469,0.04206388675438963,0.1966966214790907,0.02439825857108325,0.00010637830591087674,0.019538143112970436,0.02696887921081366,0.1631049685783124,0.04355077248376545,0.00011991030058006624,0.001764100647283343,0.01480791050380369,0.08813726705931758,-0.010030191747454354,7.946628304651217e-05,0.022977288351863266,0.020897254288167674,0.10309994227299335,0.0037779522936852105,5.094225908088325e-05,0.01241709602414504,0.07796559014602776,0.1275832510555546,0.07467984145922181,0.0002979467826156374,0.020738501061854688,0.01730167134603636,0.07052639816329148,-0.000337643377907025,6.100293483957122e-05,0.011522666826790835,-0.0007221913638794377,0.007957052003509687,-0.0017113186313283423,2.3417006677780436e-05,0.008974516356396234,-0.0018597970812624133,0.0061439915327657245,-0.0010344146427508113,0.00010580931866032369,0.0010388734440690108,0.021454976644431356,0.08533408688480448,0.046307754150951064,0.00039630857680955373,0.005697155710428063,0.04381627123866666,0.22355734232222188,0.006941761899141272,0.00011225825171559484,0.014811427875121519,0.003929665114294952 +2018-01-03,0.011215243081105676,0.07246625075800063,-0.03800244705463738,0.00016366638215324487,0.0047802218151619565,0.025064149062692002,0.10949755325715767,0.015556504934334183,5.4923610223293e-05,0.014786288776570754,0.06329428677903243,0.20991460308183643,0.0474442844272567,0.00013948228804366131,0.014780123636302349,-0.004722601067622388,0.006219940066744135,-0.0002865375844042349,0.0002562494354571503,0.009701753972927059,-0.002101068696253712,0.005007242472860289,-0.0024235324466844784,0.00021955301338023875,0.0137331304114798,-0.01572291772713486,0.04094502401955463,0.01946028022104671,8.384530550779766e-05,0.011131649948370457,0.011609189983330447,0.04461238980087892,-0.01080085647310267,7.635478972034552e-05,0.0027169188151962846,0.044958493382525624,0.32204945967591875,0.07808864879624892,4.7872685281700606e-05,0.0192158807483991,-0.0082380733453363,0.004855535663320477,-0.0018077522343808953,0.0013083781795421834,0.00810925067833314,0.0003295353434727553,0.0007655440281535929,-0.0012859062765533825,0.00015051982820344945,0.007185098205710247,-0.0008299626493708203,0.0006408444676928227,-0.02751662847138166,0.000633038709144268,0.0016650284285879952,0.00015606628638851808,0.002352576970013951,-0.002859504087470933,1.9769152180201552e-05,0.00407497637888944,0.03119724006388712,0.0911272864258668,0.0049698099306143525,0.00010169948989709947,0.003084971133017674,0.007022078737382416,0.037576617805105496,-0.11389980497211302,5.260291672839211e-05,0.009731632044136492,0.00638365478998493,0.004909833104731851,0.009205583844073845,0.0025358621196545908,0.019701003876913557,0.022180138150374618,0.13738498761928594,0.0060821751843201715,0.0001328547466922748,0.004514991936531461,0.02667160892013489,0.12680186316694836,0.00044323504818305097,0.0003257105392551544,0.005778411618336197,0.02054230204683916,0.11728773625772654,-0.0035574266701638045,4.933526467802362e-05,0.00786927396849764,0.019927409640902883,0.11025419647154766,-0.0320491727857931,0.0002978808109591911,0.0002162994023422694,0.015919508820623717,0.21838427208365566,-0.02673255289792826,3.0250916558646214e-05,0.017545996373068758,-0.003932733297480399,0.042541395370250236,-0.018195309046010397,3.088619958809142e-05,0.012600139457198591,0.018911500758010805,0.05363907085204526,0.0052879824647122636,0.00011357101417234854,0.0005933408781854941,-0.006662379818970126,0.04483024823326161,-0.03356864938907328,3.432816748486091e-05,0.022943556271148843,-0.015609418974572808,0.04731948481207036,0.015441867451134227,7.313480578132592e-05,0.006820628325337171,0.010343183968528008,0.044751491726528314,0.02438224122793921,0.00010568061414479314,0.0037621681794939247,0.03068570259907791,0.03066224757367569,0.012196624160166748,0.0005720153024141619,0.008217793370821468,0.004282150630009605,0.014434667074272428,-0.044339815161278724,0.0001248651311118276,0.023966992505319522,0.040932690005824154,0.15599931486548205,0.0455400386157206,0.0016840957123956436,0.025255809019982638,0.03043689590509769,0.26008194171662574,-0.007985027499899131,3.0093476059125858e-05,0.012483042137577652,-0.011397123009274323,0.04080392057535807,-0.038755450014598736,0.0009131972855144383,0.014109923876255433,0.016979325293679823,0.1253856328316554,0.005763334615607722,9.017752171943365e-05,0.004989924044862571,0.004205064586362446,0.006110351511168592,-0.0017131549073046647,0.00016242462104667615,0.005968953307335574,-0.024174621232737156,0.03726663187023374,0.014315617323269718,0.0003723432187998494,0.022054945327624028,0.03615182851825215,0.12846460311188704,-0.059178928839002186,0.002181208241587205,0.004297105391704605,0.019704762823706437,0.062091857285521114,0.0160900044209845,0.00010181855555543409,0.004988587861714185,-0.004258762369765005,0.006634747669363392,-0.013384697749946186,0.0015956446824340268,0.010492192658074323,-0.03347999420603178,0.08895566255434174,0.0005648267745114705,0.00014911722461625148,0.002199573267425022,0.01777625215649856,0.04190803397945665,-0.01157892312770093,0.0001719504397532359,0.016338509919773276,0.0015321249709366628,0.006468263880222322,0.0014272219564639566,5.781231851757095e-05,0.0005945280198663412,0.0636342920661007,0.17468078110813345,0.08775200923523074,0.003452742174460223,0.00860739069235658,0.0028130454753872826,0.013459485257549366,-0.010682648767062052,0.00010396541047206535,0.0005283350708418,0.012734174732747355,0.0702542098589446,-0.005550310932899243,0.00013144958988789838,0.004604225214001596,-0.01177569839623354,0.07194428280565411,-0.0008032357140255787,7.741748969511257e-05,0.0167231740274286,-0.054699937105516586,0.21075881750843292,-0.06344429823613507,6.523016373274261e-05,0.014065078477669057,0.008184990244288651,0.017360557927303528,0.0002154746465380312,0.00022987083951578682,0.018626211223375273,-0.015054144635071813,0.06672958287118665,0.01417284556811064,5.6098603483932074e-05,0.002656432707530612,0.03585576497517135,0.47842786637710744,0.07162484384540181,1.933631936774255e-05,0.0006909839456165372,-0.021940080076279834,0.06436586576336124,0.00690836443714958,0.00011914931713838578,0.004704797713582106,-0.0028430916609376166,0.010438096251653666,0.00013133129553802411,0.0004293362267890448,0.0056265155598619635,0.03805708177260368,0.1567271140384465,0.00543164908309954,0.00013907950707799994,0.009497190469509703,0.009979035484020389 +2018-01-04,0.023752347443234314,0.161302500781038,-0.060180280903631804,0.0001557227342668444,0.006838037726377755,-0.05236510558769992,0.1654419416777856,0.05864057183623442,7.594634742826394e-05,0.01161417438469666,0.008617562755440419,0.03206162345435272,0.00015982189365437428,0.00012433578767287855,0.016183010463095403,-0.004368882175045928,0.004338180670603472,-0.00783223425890402,0.0003398838692817626,0.005671520134177951,0.02689496808847475,0.06525929802915002,-9.96061375050942e-05,0.00021563855239134793,0.0018283713887838852,-0.009859235610273265,0.024853392808052408,-0.043941626859057586,8.661723203375494e-05,0.005676027703155955,-0.015723855915431073,0.06407356498153091,-0.008159851282918577,7.20062215562266e-05,3.0994667540102955e-05,-0.016881753818952735,0.16862383044418425,-0.0354950087123781,3.433185161671e-05,0.007385897838169149,0.00738363159405607,0.006253215029862593,0.0013640600924473,0.0009105660273631397,0.006245343178001227,-0.013254734650685608,0.03502558465582712,-0.02048342366109949,0.00013232671488960492,0.005527169811572709,-0.007039225499377644,0.005242373659195626,0.004220891547700325,0.0006563285002491746,0.0050335873011586926,0.004825955281352415,0.07041746004102453,0.011271744127326976,2.0423291061376296e-05,0.00571632048958475,-0.06339737418905267,0.16607231049430685,0.09722250474445361,0.00011340314017976216,0.002130235247714209,-0.023616379966846686,0.12206204812553532,-0.1304261481557852,5.446211377166526e-05,0.013030960281429008,0.0003728729427775439,0.00034538172353734583,-0.011988501922931013,0.0021056417857347617,0.005402009580965198,-0.011080245430542437,0.06892318900908398,-0.00924703091614779,0.0001322927743875172,0.016976331152276213,-0.006036326306441781,0.03275997697824384,0.00441165684809561,0.00028532337497864403,0.006720560355353297,-0.030259794504958467,0.22522992453156657,-0.016207958880611016,3.784433158838416e-05,0.0034766812007133024,0.049169796423828266,0.3039691344992199,0.07720101493405955,0.0002665972901883481,0.008989525488849747,0.01768547087699687,0.2140725412293025,-0.0076164637439641155,3.4283558537486305e-05,0.0032124190231549335,-0.006084443721937167,0.05820550781860566,-0.00848786351497234,3.492516808292409e-05,0.005800458006977257,-0.02672561781727317,0.09041352089652628,-0.07939785950511473,9.52175773694934e-05,0.011282903649545222,0.00037544011161733343,0.002938009329176035,-0.11948950061278871,2.9517520662426475e-05,0.01587024274409613,0.0091484934561552,0.025920296137836238,-0.004199520152196442,7.825047906321337e-05,0.0010190230525465404,-0.0030241574045979987,0.012970794891417668,0.0033803195750435736,0.00010660716536325762,0.007037897996341338,0.04307053578692242,0.037016960608972506,0.03176208998115724,0.0006650511961281972,0.021462458943889342,0.011800377708339773,0.05630193165939809,0.018554275623689283,8.82182873602736e-05,0.00888567695260123,0.019144380034795874,0.06446952319499366,-0.01151735857408489,0.0019059259504248043,0.007647271424800337,0.01617757739226035,0.16881041916545172,-0.0012164252244832438,2.4643162064677333e-05,0.0018699442276758874,0.0031728754617225017,0.009601780137424071,-0.0028409635501639345,0.001080370055838374,0.009490295308583613,-0.039505820611041666,0.24985041927898116,0.08157187594309342,0.00010529473308301923,0.01824873996300436,-0.004516558896255421,0.006914757076708252,-0.0817713121391156,0.00015416157429024033,0.008147940140923762,-0.004236501486759797,0.005470343765907099,-0.0002595935689143077,0.0004445254783307133,0.023670522891718962,0.03947868710011886,0.1777011599615157,0.023757759832138573,0.001721958893641688,0.012194211767028746,0.009594968384760094,0.03449870767452368,-0.052850741136632386,8.923415014503194e-05,0.026021088282492253,-0.015314781744590895,0.02416713076766742,-0.015262383603673711,0.0015752986894238057,0.02578134653976577,0.00964525754773557,0.03334313326724396,-0.0017608250686143665,0.00011461024923040502,0.008858507792451717,0.00870745597355316,0.02005902375707667,-0.017062359159924836,0.00017597131142721878,0.014864629051897732,-0.0031737727721651504,0.01569508103023352,0.006522161999211063,4.935443594014502e-05,0.003609772898630462,0.036919781548134134,0.11469791565898736,0.023533128604631727,0.003050855616132343,0.016471793431097767,-0.024755542637027065,0.10252332482472286,0.023815999228898696,0.0001201130898851855,0.0037049699658385908,-0.046244991462863275,0.2356579380671434,0.11265501541930616,0.00014231262013825083,0.02226132204723183,0.019302412070584155,0.09830186551739287,0.01720655951233667,9.287493477947287e-05,0.03616624699117748,0.02079193029878968,0.0982237807208274,0.00964928975605392,5.320170601415276e-05,0.00038757033050192043,-0.04591487327451492,0.08542734309009635,-0.012358678054178677,0.00026205103821543875,0.02873877682954919,0.012511961883960424,0.0439393780535244,0.0030399498962459773,7.08085796958253e-05,0.005646088117226749,0.006706608882204053,0.07176010586596086,-0.002536890632397969,2.4112997132687446e-05,0.0030461055870124325,-0.009522628189247729,0.027701348512929488,-0.030059494833641322,0.00012016137269846096,0.010416221796434961,0.005651742409412082,0.025959561352491296,-0.12267029941698968,0.0003431728969119974,0.0004580200919103868,0.059691803483167015,0.28845474226787854,0.06882912641375698,0.0001185246859510338,0.003075929288325751,0.00011934187696297123 +2018-01-05,0.0038921458251763956,0.024677002608511064,-0.0403253077644045,0.0001667950970283558,0.0057407114575492866,-0.04321101587746638,0.15391813837211776,-0.011225881801020876,6.736203538672108e-05,0.000488495405960322,0.01280391954728347,0.04396364929435192,0.0009469126339695356,0.00013472444598083337,0.00018297946728217302,0.008995147736160102,0.009900515976255915,-0.0852843453890937,0.000306632601749432,0.014663230439288171,0.013537331252119707,0.032265277157885006,-0.007244197584636486,0.00021953078395582027,0.009271531388003984,0.004756481079167887,0.014095523823340414,0.005463274360550871,7.368028437654983e-05,0.004435334206627954,-0.024917150707102317,0.0776353030911867,-0.03615167801413065,9.417355851496727e-05,0.010402524651250964,-0.003957468204921754,0.032385436684450146,-0.05639921769344136,4.1905043072439264e-05,0.0015194399217521404,-0.0038054878535254857,0.0026770530395910457,0.004297548846414343,0.0010962210843842436,0.006873070171749316,-0.04054247862464939,0.1037170647872923,0.030814810564500132,0.00013668534873087601,0.0034111341232928916,0.02484947558197778,0.01921701827543903,0.041720154074979705,0.000632056035852863,0.01468884105404113,0.001391890264162584,0.017585255792644378,0.003439838397797115,2.3587347027933912e-05,0.009179829475741691,-0.027306110492368633,0.0750239384877532,0.014001662511298989,0.00010812124098973067,0.050545604680122536,-0.01910397784009319,0.08769409543054602,-0.006578103657558895,6.132185322777579e-05,0.0020769073650930983,0.00024846840972727387,0.00020167204864218665,-0.0018933832691885347,0.002402970520558047,0.002617486556858701,0.033270075041403155,0.20531179248303155,-0.056628476787968826,0.0001333496848257126,0.018366385182231777,-0.028411929905009282,0.16741026163231856,-0.015108559546319563,0.0002628009261149697,0.018583767561199758,0.04593054062806269,0.28337616755310496,0.07373495968589099,4.565613995448291e-05,0.014655669956267903,0.040717857749917985,0.20652009049533493,0.03156673146963809,0.0003249446728860273,0.008031656803011423,-0.032907454511511725,0.4732067364395581,0.008381954939307254,2.8858489947248273e-05,0.005939834118873607,-0.0038380017449689027,0.04313253098244179,-0.005801031369338658,2.9729111783242306e-05,0.0028638489813862683,-0.020664696959593543,0.06524612586827949,-0.03605067608441973,0.00010202275973742276,0.009659406403928336,0.04627502184366381,0.32402723276553624,0.06590054898929641,3.298811475299259e-05,0.01951385352730787,-0.02138046657414385,0.06822583523686825,0.036211229038571116,6.947774262998606e-05,0.008154991013382514,-0.0010117711032231482,0.0044143940833840205,-0.0007106643086584738,0.0001047996340411599,0.005863280550846187,0.016126118069688035,0.01599576610472716,0.000544548277387218,0.0005762359527855613,0.014381956222606518,-0.008065394553916562,0.0359121971163666,-0.009054625242776214,9.452999840184586e-05,0.007004774328709688,0.05217041342754573,0.18947452805857018,0.049023178603223375,0.001767228142948117,0.0054439285853452885,-0.02245173851809147,0.21141057301906477,0.04558587426818212,2.7308979254938074e-05,0.007586089095627111,0.05119703160961818,0.1427730679344744,0.06557643439717523,0.0011723836667885581,0.011716497833225757,0.0021746867593635884,0.015595737433747134,-0.060945279359604775,9.285738275039066e-05,0.009559402457577687,-0.015721131549444645,0.023477529676230898,-0.03863136446502458,0.00015804355492809243,0.013769385251683138,-0.036176402558910546,0.05452420843791897,-0.06474675787401087,0.0003808376899147721,0.01812733181442269,0.026273956673123794,0.09969230554104462,-0.008058658717737033,0.002042745115504486,0.017807276921969362,0.004545518322992274,0.018240835735759405,-0.006441550626489882,7.995194820427984e-05,0.010402542510409568,-0.05609359413870391,0.0730301571121102,0.027056505502715395,0.001909361778878326,0.06461840642202327,0.02383872287815122,0.0721370047983882,-0.040033826625688544,0.00013093052688447262,0.015852765210108487,0.02245367201963992,0.06641158544531912,-0.020267525887715424,0.0001370578460847667,0.0015471619215659128,-0.05871744820004595,0.2401077169437381,0.02577825226165456,5.968634433460592e-05,0.009037923187253334,0.052053507756033,0.16656999790225252,0.041766949775920194,0.0029619060480190217,0.005671964738043986,0.046766055463992866,0.2219808796142227,-0.049229010299822656,0.0001047986632587733,0.0051238909241035835,-0.012878424345176493,0.07331757761164978,-0.0037216105297020892,0.00012738415420958922,0.006643844864972003,-0.0075760228002477335,0.04205468657407219,-0.037799087650499386,8.520705814713862e-05,0.0056538775000064,0.0336860215912266,0.1385534560119745,0.024469329778001456,6.11054229507579e-05,6.019238750909375e-05,0.040761394293840694,0.09266710974860158,0.017890499420846747,0.00021446321268604225,0.03784718864699124,-0.00930204787002067,0.03754153525087775,-0.02030911959505988,6.161421462036827e-05,0.009341833405574158,0.033723913585924505,0.3420239686029958,0.04818127648884478,2.5439742514560092e-05,0.0006419186806375777,0.0032014287975543607,0.008500335634626674,-0.008939380831138679,0.0001316487493257638,0.0032485727142997503,-0.02070598486000279,0.08607592767654666,0.007732126925078778,0.0003791771439694258,0.0002467254763105892,0.03666333965129736,0.16546949028204305,-0.018126157193886085,0.00012690709096097036,0.013884440858934907,0.003626170603679187 +2018-01-08,0.008440328318649208,0.05753246860301595,-0.03579965655958237,0.00015514326082520052,0.002027499732174657,-0.021166989871126446,0.06814550051591192,0.0037649411423764977,7.453022680937152e-05,0.013618065862468824,-0.006634145632658899,0.02345402850678951,-0.03996303294059087,0.0001308472973568091,0.005584652070892357,0.006750806316491631,0.007162759530770408,-0.07533536961385758,0.00031808495876539796,0.012808543780418367,-0.02988266377480648,0.06857818595567382,0.031479980002867294,0.00022799802646534945,0.0018282766390960924,0.004992343547046633,0.013535126142330699,-0.004993432433282592,8.05357849281501e-05,0.000979025026924957,-0.017222157004340915,0.07418596561007858,0.012678964984505308,6.811702084220261e-05,0.006819031927141936,0.007838226730168691,0.06078750846826745,0.006676113271617941,4.421830523186102e-05,0.007236142595928741,-0.03024883061047248,0.032513928266498675,0.1351712477941572,0.0007174372688640808,0.00044659639573332226,0.027025422689758466,0.06640258369887635,0.02857362883242658,0.00014231458270758308,0.003032588457318143,0.0010564040299091174,0.0008984586862699903,-0.017387117953347696,0.0005747199802448595,0.005081560877112062,-0.003797211631986375,0.04238324997476677,-0.005162413664022891,2.6698898011570362e-05,0.000256053391119959,-0.04812964599816319,0.11701110797717801,-0.07686073449840168,0.0001221902669305167,0.0024740540723042883,0.0024750291096432243,0.013983182037551754,-0.0011071537281183551,4.982371630567844e-05,0.003861907115975245,-0.0015377532357140245,0.001424540081676478,0.0016678431778261397,0.002105401600759396,0.01987536056475014,0.002823295112558576,0.01861633240636518,-0.081430901105971,0.00012479990626222229,0.019395152129512244,-0.039849923465946194,0.24130433082812877,0.04086214653657565,0.00025572348069397477,0.020461060301547904,0.04411064380505339,0.2794004582856512,-0.001221985493912037,4.447103511926509e-05,0.007580972227479911,0.030366184015144525,0.17125877101269854,-0.03062308212009638,0.0002922296001327011,0.007304802943753827,-0.018358498913348373,0.25338907841280406,0.003614951237531083,3.0066266832772135e-05,0.001831456109160795,0.011246583938645867,0.13276634177248664,0.019707206812501547,2.830181899501324e-05,0.0132793106843466,0.04484634931395325,0.10740822833152115,0.06848231338910327,0.00013449690732372687,0.03321900457268545,0.056392737603542915,0.37882945844993826,0.09227329595150917,3.438522028953116e-05,0.0005348507591696036,-0.004456832044858101,0.01083848364493338,-0.09379525354011822,9.116646678492217e-05,0.00157079357059693,-0.017666618185901758,0.059398784948095584,0.07659843499348723,0.00013599547475711549,0.0008151132024762671,0.041620394343293246,0.03843492535285669,-0.04962634274404286,0.0006189502036739664,0.013008236306011105,0.0054235544445202285,0.01906301511170975,0.010973212830634928,0.00011975079936613151,0.007862587882018336,0.0619543678759228,0.21688081625104608,0.04697865188280252,0.0018334537783906836,0.017102120318744397,-0.018875877965071133,0.15735639453080483,0.030161888341455913,3.08464336713067e-05,0.008475404534833326,-0.05078532160309078,0.13041939195822427,0.032716172468793006,0.001273114034359673,0.011918450182933287,-0.025699928376058348,0.20444268630733614,-0.06294858048993358,8.371166450270454e-05,0.009067651185714268,-0.002601219790369961,0.0039054835405966525,-0.05501036642966712,0.00015719821994844308,0.004325689464290064,0.006911001439601675,0.009992722919414125,-0.02302683741009688,0.0003969730754361727,0.021711928409976884,-0.03323865885260225,0.12876793434005293,0.04375249189497243,0.002000719036299983,0.007118893038134162,0.038863923874289226,0.1430885013559612,0.033903305525317555,8.714295487942339e-05,0.01970483553640986,-0.02904839761212028,0.04077297224374825,0.0024363856761817617,0.0017710344160038775,0.009914704419650748,0.045268475211747684,0.16812024666746037,0.03769316671790155,0.00010668218062958653,0.022754280483517457,-0.031379322250187684,0.08099847678409897,0.06469245907952446,0.00015704607382835924,0.008691008574092019,0.011627506841701715,0.04304530489699685,-0.02680038299119656,6.592873463022268e-05,0.008563095785650461,-0.04644639460826399,0.11242707064627301,-0.01717111665430334,0.003915607670131628,0.001480631591600541,0.00046857593224650215,0.002441099852900477,-0.0023544212598937933,9.548496737851434e-05,0.009363648753798689,-0.022528440126699845,0.13537339193030268,0.018495447619327594,0.00012068647308637643,0.008750957331091167,-0.010153925289007704,0.059694693783445406,-0.010306057268626908,8.0453868924396e-05,0.008823119705672115,-0.016998438315887102,0.06509691403122361,0.0019804332291565247,6.562903485164245e-05,0.0022288003313982825,-0.007166622985164569,0.010803039464320525,-0.05061063119438244,0.0003234431735864047,0.03503601295381986,0.007465123217209983,0.03661086856939137,-0.007599258247946444,5.070389517430862e-05,0.0021629639833945467,-0.010696355057290644,0.10705517929730878,-0.003083675282832277,2.577860505306205e-05,0.0027300947279342235,0.0009007914791135782,0.002599817203237668,-0.010850677101211962,0.00012111290487387341,0.00850638494263609,-0.0014083472015078739,0.005341847801788997,-0.003040454631726604,0.0004155719211209309,0.009730492519159094,0.011819866117046676,0.06962862853856988,-0.010186406468837164,9.72291551992213e-05,0.006871558995552203,-0.0009657800319902384 +2018-01-09,0.001522830679988577,0.009688014720666433,-0.06715086901837393,0.00016622770607661446,0.01051524736383477,-0.0037004304718962306,0.012483065129750654,-0.02989114934895283,7.112815419684709e-05,0.01536535383839108,0.013139076144309361,0.04669135761922397,-0.003819742576113858,0.0001301743842727195,0.015811084441203577,0.012993538346662808,0.01177693232607025,-0.04329314113888084,0.0003723600751610796,0.006936824509898066,-0.046076746663061906,0.1044456413880659,0.08736645186118148,0.00023082840912722036,0.01044101634841958,0.01147475424282966,0.028418622903983125,0.02032165383931208,8.816315095455901e-05,0.006184076594585836,-0.031014030204383345,0.10433250516920681,0.0169359826672377,8.722247886770832e-05,0.030063140012768254,0.0011276366159410419,0.010481917727603207,0.0006343677593313568,3.6891561463272776e-05,0.00661985595284155,0.018884369623819976,0.01610394686384365,0.00894559115792413,0.0009043050372998289,0.0018729023680671567,0.012229703402692691,0.02726890361521669,0.01588126507096348,0.00015682313595307722,0.003742208285400673,-0.024007516233351026,0.015639973026043953,0.041702013504349364,0.000750301111370197,0.004383550834135506,-0.016168632092017313,0.20401111513910905,0.03103017162885063,2.361795216761409e-05,0.004068651682158943,0.05068187437011378,0.15380821789295449,0.02318228015282331,9.788680775227317e-05,0.014898316275814883,-0.012896166712532998,0.08280476322029731,-0.002407871540742297,4.383965597558937e-05,0.00348843763923279,0.016293750574435523,0.013120175043999762,0.021278359591998083,0.0024221688081611263,0.006173256524701947,0.011801538837490608,0.06824077404772293,-0.1033602205898764,0.0001423137306020164,0.013752768969939462,-0.004381746994159211,0.025464495714545128,0.006117096581851896,0.00026645289873067715,0.008096806900071135,0.028491500262335535,0.19159110081965236,-0.002876291188338424,4.1889091511912494e-05,0.024951605386510606,-0.028801758944636102,0.1629958750519569,0.005135906445024143,0.00029122536944660974,0.003821480690963921,0.0032596590699589503,0.04132838605740076,-0.12124915069299282,3.273059986579465e-05,0.008569849571272424,-0.011423594322196251,0.10744865133613245,0.012995378286202078,3.5520863294377444e-05,0.0010352345088450385,0.024185339805314225,0.06863470729853176,0.008384536002454193,0.00011350922631785289,0.018819458321156664,-0.05619570135676855,0.4378998032329727,0.08589744165232126,2.964290224982202e-05,9.112127319222036e-05,-0.007774452260443593,0.021853404209864993,-0.030868902201565872,7.887295001760458e-05,0.013255025355223583,0.0031898750427921305,0.013236030586662359,-0.0030072122942276483,0.00011019566352118721,0.004960938066698837,-0.0006506679153752346,0.000562294731970395,0.0025376830945658974,0.0006614102770739799,0.0011060221088857619,-0.0026646238171640743,0.010122348482048982,0.001399703846235558,0.00011080022181193728,0.0008845549794919737,0.09721580016027495,0.31857959696692567,0.14595442909896716,0.001958565369736196,0.021366731527517592,0.015842359336349778,0.14070197213060176,-0.006129472762706881,2.8953553337191902e-05,0.00679724987286656,0.00449751667096282,0.01322537342421857,-0.012103807028073614,0.0011118241629999642,0.009466895512468647,0.002538667168664915,0.01607437505532839,0.0020845936052765394,0.00010517131702816694,0.0015227288131690556,0.02978524807909847,0.0464426657907572,0.044256116679571036,0.0001513663950330895,0.0015627815049053578,0.003950150806264127,0.007122413885635068,0.0021855801208588584,0.00031833939231349094,0.003694368776497358,0.00998928126696984,0.04225689465276908,-0.061999703305901495,0.0018322595927169779,0.015098515113288517,0.008899659504822402,0.03372879206020593,-0.0038852136682924186,8.465701936405922e-05,0.0014899386909789343,-0.008839170984117618,0.010394727276425719,-0.02786009230982176,0.0021138571116692956,0.005857499984815836,0.017293836150134898,0.05252486349598962,-0.021281277086020456,0.00013044950757231055,0.007671012540569528,-0.018703354474281945,0.053057068808979105,0.0018264751572273307,0.00014290144742187764,0.025223455885306906,0.002294683963644759,0.009219453735262631,-0.002696564732758383,6.074794853256765e-05,0.004988736428231926,0.0645363044915264,0.1937578163150215,0.020483669505133726,0.0031569152256516585,0.006086789083911176,-0.0064002534649329175,0.033648995881715806,-0.021989007842480597,9.461622904015989e-05,0.006772708884706812,0.0005984909757021853,0.0031567830344481256,4.915931125635782e-05,0.00013749080566427373,0.0015229476991529887,0.027078810338775,0.16722799931655474,0.027354277272963565,7.658950897196365e-05,0.03510160615835787,-0.008682240311400686,0.03751920512155214,-0.007019963540381547,5.81601567454606e-05,0.03870877428415382,0.01749599023988984,0.030189359378536416,0.001492667342522653,0.0002825621747600401,0.010961585393234639,0.011779075581960275,0.05357297505505306,-0.02723598215544793,5.467387049948171e-05,0.004602953508459592,-0.04703338792350327,0.5482833019119162,0.09651681578133511,2.2132604784687924e-05,0.0012582865401432341,0.02069601361070535,0.06434162020693793,0.08108097669262503,0.00011243555631308999,0.0048911907839436445,0.015616131977246952,0.0619926748748282,0.014376158348951984,0.0003970645051335638,0.009235956050865211,-0.03416926187598855,0.18019246984262716,0.08843597351991253,0.00010861023545596589,0.013253833573195912,0.004211345196182653 +2018-01-10,0.0002933702040890425,0.0018503693273449792,-0.2501940930147386,0.0001676656767234212,0.007299138026796513,0.01122387092869987,0.03854482536925822,-0.023357090383700804,6.986941515161619e-05,0.007824654333439103,-0.04521735059628891,0.14739160209947752,0.04149648730626356,0.0001419154168745948,0.016938226322609717,0.004959342216082686,0.005904339993469889,0.0006696637848413984,0.0002834787937082076,0.017244644127946743,0.012303847870254063,0.030655654878408732,-0.0549387567459464,0.00021000427075765638,0.00022838808668402166,-0.020030241965272023,0.05571117982755091,0.0003637888467651253,7.850378195147974e-05,0.005218218674166483,0.02700191128396314,0.09391148662092313,0.016004684199264055,8.436564783139242e-05,0.003045731792608575,-0.006489884111090372,0.06023130205014182,-6.924882406861655e-05,3.6949903166803025e-05,0.011525383265210968,0.013621576393063635,0.010276493019701866,0.0068494536999757615,0.0010221796378403405,0.0034006135379397165,0.04065245636097178,0.08863305709387212,0.0778600192495207,0.00016038101202868523,0.0007636998438240665,0.007099607918502211,0.005680377352083519,-0.0084479757950308,0.0006109160515371195,0.0003613056318916472,0.022817207145506033,0.3011795071681717,0.10962890597093589,2.2576668506131713e-05,0.007265494393115945,0.0272469713244116,0.07897269964793138,0.004657053089485345,0.00010249254755805512,0.008787617397492682,-0.0038348808922241463,0.020144096505918828,-0.016294884234421728,5.358779714228813e-05,0.0034149809396335365,-0.013572562533580402,0.011292555491280628,-0.021987083517514685,0.0023441888207818063,0.011637168916625919,0.02203925770160188,0.14462224751009978,0.0029542981409924566,0.00012540474355497133,0.014014033771468995,-0.03100316483541423,0.15421726026619081,-0.17590225498229112,0.0003113015462270975,0.021555493553578654,0.06750749840536303,0.40802972216468847,0.12709578710470085,4.660378298018245e-05,0.023083323554339518,0.03317743906824174,0.1714566497261081,0.03393397489873193,0.0003189152847932888,0.009118842290516054,-0.0017320095996589022,0.021272855491221328,-0.010702397418950559,3.378739710592527e-05,0.013544215145323472,-0.004777713242752753,0.04059296146733133,0.0010857572755084636,3.932339923296681e-05,0.005381458120356272,0.014157339103845906,0.0494008794001292,-0.00815637074606022,9.231445507785893e-05,0.02015841048801031,-0.04283037518533675,0.2760624114358371,0.01878966883373864,3.583743989362963e-05,0.01891189602967793,0.02596494415756797,0.075826421614577,0.12770714333752198,7.591790480851807e-05,0.005086596673358149,-0.011523826676383438,0.045247979770729134,0.009724730272129185,0.00011645177689401605,0.0018504290683767641,0.020471121226895303,0.01593077125390103,-0.019135252473899064,0.0007344807024996278,0.0005296870084017702,0.02026840567294928,0.06950234408299837,0.020179132074207892,0.00012274565989461538,0.012908420957795513,-0.03919906894913934,0.1229186112064896,0.019425151073880133,0.002046808829642821,0.001998930834627052,-0.027730990275747783,0.26055323774580486,0.0423608587525392,2.7368506560994045e-05,0.016399143142781812,-0.06643306569236707,0.170131650770963,0.06406861495514768,0.001276645880421431,0.017031962443657976,-0.019163293948146285,0.14491614801919162,0.012964372997786263,8.806006931026943e-05,0.0008138200765511921,0.019981136264513574,0.03887169844206306,-0.0016750674668265225,0.00012131990202913777,0.0011965546868498067,0.04111277520249198,0.06138968952391388,0.04235151500939511,0.00038440167415622724,0.011115718081800126,0.0338405709571618,0.13523337066604507,-0.012488826343153752,0.0019395641584739256,0.034704939767176785,0.04431836599056495,0.1646525631906634,-0.014677873486744365,8.635860418121179e-05,0.007047334725507812,-0.04260213166325996,0.06271266471130378,0.011382162544694171,0.0016887029706308299,0.009065945745260831,-0.02184455210408531,0.0732077391047312,-0.02728340898465899,0.00011822305733782913,0.022728113805633075,0.019746488960479848,0.05037688679905068,-0.13831254710395915,0.00015889818534385968,0.001959619389046586,-0.01967797007202525,0.09046544111421709,-0.000413426032443836,5.3089852113744345e-05,0.003650011791147911,0.039539424146834166,0.12048128205764434,-0.004933210506257345,0.0031104900585633725,0.00026986786238832934,-0.012173402305486058,0.06724702794630376,0.00934335257797175,9.004911532091036e-05,0.012040869577743647,0.0003572458240493303,0.0016096756651417614,-0.0177541368095128,0.00016094947588774153,0.008929566243648534,-0.004226087446457585,0.025670797343624773,0.0018675635851686957,7.786599181436936e-05,0.007568111669854924,0.05056577747115515,0.24169767920981164,0.053428366663771376,5.2581334438499826e-05,0.010133189517663123,0.06852648733142933,0.1417604541307121,0.03178503807636321,0.0002356854480753372,0.014311668483788712,-0.01497001756005994,0.055997528378505905,-0.027088629517246058,6.647645123991034e-05,0.003128451102767516,0.018093165817628445,0.20705630102532221,-0.04062239671854579,2.2545371584355017e-05,0.021708838770733496,0.0008328701590460395,0.0022072902958940955,-0.004099898001815356,0.00013189453848873244,0.004358156312337123,0.010780760891541142,0.047678708272956484,-0.005356073424891372,0.00035641248098876126,0.00780116585293402,0.04158561238309156,0.21967328847512455,0.013054085814385752,0.00010842705095526465,0.000624570184794375,0.005922259857898685 +2018-01-11,-0.01642445313005746,0.12248780044102736,-0.042069922174470684,0.00014180275421140303,0.0018435739245073446,0.009395484783790771,0.0319752785235323,-0.09309459819613576,7.050426411004869e-05,0.010338708218486075,-0.02537355884399781,0.08274442252798081,0.0002795462722390432,0.000141853436021524,0.0328975042566054,0.011918941555227647,0.01217177534260661,-0.034371185864974264,0.0003304848980698235,0.008070156536372785,0.03873001054291801,0.10126092485616732,0.03349561103754519,0.00020012599208336392,0.003791892664305737,-0.023656543719831637,0.05880825061150846,0.03782070196328507,8.783341583179372e-05,0.008365898628801318,-0.03141940189045659,0.13595434319953043,-0.020694238609658324,6.78101464764997e-05,0.00821776117352176,0.0020962925258839094,0.018882050081471497,-0.030946552997954672,3.8071619839057605e-05,0.0012772099494380946,0.019287972285819032,0.015984331441448396,-0.01786714238735394,0.0009305439368506285,0.01093058935706069,-0.03387457630999718,0.07847410746451837,0.020446045507500583,0.00015094174742278073,0.009282111401600717,-0.0016851489621769627,0.0010518554727731002,-0.0003543897928135171,0.0007830808157931105,0.005859099870388785,0.0037459334503620813,0.0426136473893678,-0.020707345482442532,2.6195949165099676e-05,0.004229512293453769,0.013009908620859482,0.043217820009363514,-0.0004361172813982674,8.942571631117214e-05,0.015053261442434906,-0.0005518543430983994,0.003616420829625394,-0.05067062869968369,4.295436677498194e-05,0.002921785712839936,0.07266530753548987,0.05564729801517426,0.20738601731652237,0.0025468654779709724,0.0018264419810858923,-0.0019264582333606726,0.012911843641310799,-0.012829225010176517,0.00012277881776680974,0.009416224996410838,-0.02584968208045787,0.12431056778963061,-0.008299666701478569,0.0003219996413648433,0.013161771360377973,0.049545969616129476,0.29246017390379003,0.031101039484780327,4.7720232843737696e-05,0.008308671957057884,-0.014307988933352365,0.0698415262082986,0.0033297048953816123,0.00033763828202382006,0.023297456274836658,-0.041301610220308024,0.5136238677108731,0.014362675622325393,3.336967816974764e-05,0.01574626872542482,0.007844311536835086,0.08593694275649368,0.0004339414388952066,3.0496966521807735e-05,0.002519084164601677,0.03196048687586657,0.08548028983652459,0.031812793532340844,0.00012043983624535611,0.014029506476021827,0.006698724627174057,0.04318905004619307,-0.007842427477571124,3.582703346827894e-05,0.000984441576996518,-0.028415894803175794,0.07769437636866451,0.014327022727769112,8.108660801510319e-05,0.0059033104180285685,0.0064007911979032965,0.022584457702855415,0.002670672623848543,0.00012959032798090932,0.0076581746322485185,-0.020121370648514176,0.020500763853876447,-0.1071090284439476,0.0005610002818243745,0.014445104083635082,0.014329149707383287,0.05408938569530633,0.015161622083994734,0.00011150500976757879,0.004582949469563712,0.03159468748769912,0.10666782243705773,-0.043794852248133925,0.001901077445477565,0.04865623101702111,0.01255546629531136,0.14006483128338168,-0.01043320251443276,2.305079664334591e-05,0.015166961156434369,0.03837423657950713,0.12734431733822027,-0.018998021206306552,0.000985215983294856,0.014717600297984261,-0.007895185922318998,0.05819711305623048,-0.018644551484842738,9.034134736068749e-05,0.007552311058856195,0.007690961964517704,0.011675643777466292,0.00010359602332736104,0.00015546950420875324,0.001894532913090686,0.00628952952991438,0.007001519274649923,-0.013010563609015159,0.0005156200368796941,0.01294254075874882,-0.022735905586650708,0.09424626936615295,-0.006854493372185183,0.0018698140988384598,0.01089059678421145,0.01872766577002783,0.07183579926361267,-0.021260178244706593,8.364367235905444e-05,0.0051271629139256515,0.013554639872941565,0.01734456642585585,0.010945030856017612,0.0019426820497735252,0.004421145119424015,-0.03200374139470642,0.11617475666066744,0.03378925275614219,0.00010914529461075109,0.013376410249879785,-0.016467041805897323,0.04692626055991393,-0.0351703937233006,0.0001422525356570544,0.009616546381424203,-0.00843312657022946,0.0354202360148252,0.0027598763427284312,5.811002909878252e-05,0.004489300112505512,-0.04149671399035307,0.1160319364114996,0.021478665957842244,0.0033896450684481037,0.01969786316744749,0.019762866382098263,0.09440846416579944,-0.00669399009307219,0.00010413088812392432,0.017012660490421595,-0.023286084295908303,0.11931906418205734,-0.07787771702205666,0.00014152964298342897,0.0035842759521283675,0.0266159539027679,0.14234733109908768,-0.020628081706422434,8.843850766012963e-05,0.005529022963489574,-0.008011517376937102,0.03300852821274848,-0.05080558356938186,6.100086782315488e-05,0.03181033803978519,-0.015552185609424864,0.03083656074638842,-0.07803514664816562,0.0002458979399286376,0.012232473303390338,-0.02181821341871086,0.07107893888926055,0.018318864656544323,7.632953658562539e-05,0.004299692463516811,0.021335384286751104,0.2615475058073563,0.0189892140425204,2.1046562447836106e-05,0.0006031332066591005,0.007833158180854581,0.026427572708396026,-0.0009820069697674676,0.00010360687743194342,0.003113594771534403,0.009532051600678052,0.0400964133329606,0.007960323139205952,0.0003747216876510972,0.004343372494435971,-0.029223057874182758,0.14584159124061033,0.05498307707797139,0.00011476674383354121,0.0056944314955026405,-0.00010726939579338586 +2018-01-12,0.007623432973269185,0.06285488767285805,-0.004042696251467006,0.00012826203187711198,0.008815299998966233,0.03222821955873585,0.10880911809825988,0.02667116617817099,7.106922014961946e-05,0.019149150534631194,0.002510286698187913,0.008555285997678286,-0.0010952143208184484,0.000135733171560051,0.02058410022268667,-0.01558851956354822,0.015110734735003354,-0.016945672535459803,0.000348166632465674,0.012071017206812768,-0.02330194694254286,0.05228214598238818,0.022828730150356018,0.00023320431178007443,0.003930579163925516,-0.005301992562392206,0.014126781281623204,-0.042015648428418845,8.194880647276268e-05,0.010526717778377317,0.005930635793514616,0.01950065128943717,-0.06227236897129777,8.923639008074595e-05,0.0010934094305317362,0.037241122025196464,0.3463790874796963,0.017248597047881852,3.6869708836293205e-05,0.015867961361843638,0.02266608147185983,0.020061761635569792,0.03392946742783573,0.0008712688076051016,0.000825647405342694,-0.0443554985020344,0.09777173688181647,0.03853893649737838,0.00015863390699191968,0.015551667768022009,0.006875281319565861,0.005436694780169605,-0.11707546744211274,0.0006181300816387843,0.01229357169385291,0.007372769663538112,0.0996172887005705,-0.06316149902279805,2.2055592962015567e-05,0.0020175722911553113,-0.018158468943333634,0.055801255997161354,0.0020854466661804853,9.666879190198752e-05,0.009848383890533455,0.031211336403814398,0.14644170777323232,0.2122516150943772,5.9994218169015895e-05,0.011076173170637166,0.02010431404621221,0.02003467576034498,-0.02788042548670993,0.0019571761462836026,0.019481236556737117,-0.06414298605255488,0.37460037253495526,0.0270583689838981,0.00014090716483351043,0.03439088264164935,0.05332222361880978,0.317702859536048,0.03531412841371059,0.000259893465399967,0.03219095164004631,0.03261911566707091,0.18456960628484764,-0.010852527524286172,4.978207020603484e-05,0.0033989249070192464,-0.036037784249976425,0.1952527868913767,0.006454034594516295,0.0003041919010410393,0.020717035030012612,-0.04347603615189118,0.5978094262270921,-0.01873241639245386,3.017987341020602e-05,0.013806571671361317,-0.011302783925440771,0.11165007962102724,-0.03583076200081976,3.382268627256085e-05,0.02059167679391158,0.0073835343525806675,0.02086879680824502,-0.10841319502300528,0.00011396976298798272,0.002273121161582262,-0.014598573618602367,0.12529095299347284,0.003955217604274487,2.691429992687066e-05,0.010201667202679184,0.023683396513791043,0.06419351308033969,0.07938121290342175,8.179565315932528e-05,0.008189841447100405,0.0018132298917886605,0.005997710837011285,-0.016101882188519958,0.0001382343395578149,0.011163127849789229,0.0020589272476041736,0.0017994403885984202,-0.015274063150253018,0.0006540020330779996,0.008748852083692683,-0.005848093609283025,0.018653098486792478,-0.06521437117944281,0.00013196213747405334,2.8052737487303412e-05,0.030487649762329802,0.11390476590591218,0.007360051807536396,0.0017179132349313937,0.007506735745733973,0.04148909074787661,0.43211382906366735,0.039475947265441784,2.468982132665865e-05,0.0026951306855217596,0.0067402191851637485,0.019176311249708297,-0.032509185130425756,0.0011491592554563178,0.003225189778963857,0.0034996609037092155,0.02567654017835539,-0.020673928212985984,9.076430893788435e-05,0.0054339999937767,0.03889089977372481,0.060573342335724124,0.05967987075115293,0.00015153461131357665,0.0016578012453873745,0.020715591584945618,0.02804481418039574,-3.4838536832996163e-06,0.0004239832378921317,0.016518157742174105,-0.0032984976565139782,0.015378519555353602,-0.006013379337903738,0.001662463013120859,0.0065411465446266375,0.014318679443477204,0.04725517206232398,-0.023335191504037383,9.721739687822122e-05,0.0036986889434535357,-0.00012202646563287441,0.00017532353361051798,0.0023450490358076052,0.0017301788913005327,0.05480212223387589,-0.02090297154761752,0.07343088764877746,0.011410639836613796,0.00011278342727259398,0.0018045742708370782,0.01451813280004395,0.03865302715827809,-0.012247187551590415,0.00015226063226328725,0.0054473922624400685,-0.03804146094185531,0.15622203652267272,0.06353712404999576,5.9433159366159875e-05,0.013582558145243635,0.019744537968185198,0.05999784785840183,0.00231496242504382,0.0031191004479068697,0.006246116906942016,0.0165207444714202,0.08541130683698722,0.00053239394933469,9.621766600554205e-05,0.00622863046312536,0.01633397875363728,0.0859197739430021,0.021438129944825052,0.00013786678401507836,0.0004487890783542298,0.028857402236683097,0.16930570663746358,0.024450327046669697,8.061842977231427e-05,0.008569785555830519,-0.0164346290973411,0.08868965981541864,-0.007192411692883709,4.657301062796771e-05,0.002880002251017996,-0.012092957652381494,0.018777366896044822,0.005150729514876541,0.0003139982545776575,0.00037752915927683406,-0.009341700634761979,0.041128769886714905,-0.04519061782949135,5.647998869828055e-05,0.013373097775825793,0.015124968998040075,0.15198863184990166,-0.017543218017017748,2.5675249523920813e-05,0.02268416607299487,-0.00465325290258762,0.017846890944391788,-0.0037504211744638547,9.113874660782146e-05,0.007200234177700507,0.0008454327120499871,0.00295057338557969,-0.10140247079160919,0.000451648526850214,0.010524135803902709,-0.0028689059862707996,0.014519108501232642,0.002933684884619511,0.00011317438989174935,0.01252662148866206,0.0033973868666697486 +2018-01-15,-0.0019623605758234673,0.011571976349087014,-0.004005581766362364,0.00017933202676048346,0.00800773640577594,0.03313266931180064,0.09757189981810742,-0.01213987388705685,8.147834356642829e-05,0.025983543592822875,-0.06751918814453647,0.21691676343547697,0.0680278894763945,0.00014398965805632993,0.010910592698563586,0.007111136393342647,0.007336715451729991,-0.0062967194696815125,0.00032711856262755256,0.010264281357319525,0.051311307981105406,0.16468990071731776,0.05912774678936887,0.00016302112655713384,0.01460164241081973,-0.01448618619523684,0.037437380415824374,-0.006632677935553771,8.448806239500008e-05,0.005675429517705532,-0.01200866447979466,0.04542467665713486,0.0004004286459417497,7.756980889400321e-05,0.008402466137332858,0.0191597836940222,0.16523042465835458,-0.019673807988481985,3.976483614279268e-05,0.017510646788134927,0.0029342319048749695,0.0024418872126234442,-0.10723282283026181,0.0009266454999510772,0.0022412049228222805,-0.02552069911271691,0.07075824003079215,0.0011959704597205494,0.00012611810351457299,0.026047873060672435,-0.005428354445961432,0.004555130287179506,0.007094368166825834,0.0005824943969890927,0.0037532921706338106,-0.007527893325093836,0.10777065420574493,-0.00013396291580699304,2.0815925576471298e-05,0.007401025488231731,-0.014518956094443565,0.037941884532656386,-0.00909294422186173,0.00011367567239970564,0.00942694183840687,-0.002690571956806931,0.01373535098480387,0.0006779187299027962,5.513998810338381e-05,0.007735210221459446,-0.005242143122420711,0.004806596840653691,-0.005560324964417851,0.0021271305740178824,0.017377367537565004,0.06813008118441603,0.45493348108387655,0.09387531092067779,0.00012323756652765004,0.006527940442052543,0.05881427013430018,0.34362234932247393,-0.06050970107875692,0.0002650388516057134,0.02173796122246681,0.05419057739054489,0.3200477816316288,0.0458441560343734,4.7694677118974796e-05,0.0033336514610669632,0.01726277208616576,0.09960681977551479,0.009574340356750402,0.00028563292676287973,0.007714198294235684,-0.0025378921198157146,0.03976927642306791,-0.0016785252925181212,2.64822998837294e-05,0.019609832480219233,0.011683055179036278,0.14083089376569205,-0.010315473867797223,2.7716615777848644e-05,0.0017160534343263925,-0.00914991216820562,0.02515956008291002,0.0029148465418714457,0.00011714847456531956,0.009650359449918055,-0.05659562966549396,0.3778052173782331,0.0007692219515810432,3.4602487552833635e-05,0.012911728751031347,-0.004631298203074304,0.014327953301116749,-0.001430125760062337,7.166316262966258e-05,0.010281510349169666,-0.001767237894472043,0.006900344691875301,-0.003363521557926056,0.00011710429544847499,0.013146817268392974,-0.059744357968210836,0.05697198042773295,0.1918457288233586,0.0005993922776997365,0.015630447399149105,-0.029471006984843975,0.11965810112984364,0.018684830158176076,0.00010366660542699912,0.0037426031045175276,0.013734168863233285,0.0514643070619094,-0.1180105482934558,0.001712834602190281,0.016208299194169863,0.006085312430833634,0.05784555638283181,-0.03793646621763914,2.7051731812006155e-05,0.010740815586609335,-0.01811652391544618,0.04772597786477567,-0.025197393288556292,0.001241055792487925,0.005865057489496578,0.011568718735879136,0.07288882903520948,0.007171884117152581,0.0001056939022219129,0.010632680045356318,0.050309734815949754,0.07854223041761808,0.08221752232547856,0.00015117994547280978,0.012852049998543748,-0.011971589801018779,0.017878299595787784,-0.005223081100048331,0.00038435234109673573,0.014622067123156154,0.026024280041690977,0.11707085862510905,-0.016984765557656663,0.0017229800989893558,0.006589433080168216,0.01789951410688273,0.07331952818903349,-0.004932370738460616,7.832708256396123e-05,0.013060619203657545,-0.0227933718793384,0.03263735667619735,-0.11475800417808235,0.0017360842227790512,0.007389175292701476,-0.0022652995335236104,0.0063002521454472655,-0.013175828724539191,0.0001424569825650465,0.0014475336093756344,0.010943897144428737,0.02613412855671411,0.003176435531548482,0.000169755696049925,0.0041145651004418525,-0.0008016418533680514,0.003323005562083202,-0.007557729426568371,5.887938163126506e-05,0.0266271392323057,-0.04679297987975264,0.1622985354272844,-0.00610555212725859,0.002732650941223067,0.02756208058512588,0.007577722088619554,0.046038182983374434,-5.0509052124616676e-05,8.187683936465237e-05,0.008809340364680517,0.046163857892732856,0.30850187093846854,0.013322717203810654,0.00010851882372987269,0.002206940289204364,0.0322913049615066,0.16798542699265717,0.02845347339971779,9.092068253281094e-05,0.013866734381536851,0.03486186520710206,0.17667918528356608,0.011507504254573387,4.9592114529814244e-05,0.0017474853764807522,-0.022853022933501263,0.03702267955473748,-0.03732647108918343,0.0003009575213781424,0.012356970976965887,-0.003170555701323949,0.011549411978644104,-0.0053847093203976265,6.826371036547438e-05,0.012581337330430157,-0.05566010800080264,0.6064779103798209,0.10934953318349179,2.367883563345221e-05,0.01583126892835994,-0.02046311312047379,0.05888270033251089,0.055719164370873514,0.00012147669042680393,0.0044395294177138524,0.009121515668099624,0.03969791717227443,-0.05554414179150053,0.0003621823298286064,0.007687902189663562,0.04017721500948788,0.19638975904458747,0.012966010486386214,0.00011717441336047714,0.013370181664533307,0.0020019995482659617 +2018-01-16,0.04878249146008931,0.32717431386145474,0.0705059103001617,0.00015767809371870079,0.01032379169437879,-0.025096532641444017,0.08470765429879104,0.02016398613553768,7.108886725854339e-05,0.002675753665702529,-0.009505165731092656,0.0345658837002295,-0.0802312384754411,0.0001272064795617071,0.005499454889333431,0.028624255202700104,0.0353018903607072,0.05516100696622846,0.00027365544242016423,0.0003151718730002198,3.3726316476751966e-05,7.681933516899173e-05,-0.059308439939363695,0.00022971858845532734,0.00625987330082756,0.002812791791079183,0.0067444850275090815,-0.007410648617340708,9.106165326825091e-05,0.0019690633728244055,-0.022582419121566135,0.09499436827788375,0.006939497223092154,6.975293074828506e-05,0.014117243813681188,-0.0017974882632220352,0.014272067464705595,-0.09522612775800393,4.318946136908126e-05,0.005677331795972651,0.0041306222831745155,0.0031068206825310843,0.00025316460118931275,0.001025283769756569,0.0026057449483502405,0.01151635998175283,0.026433008036688004,0.011878120170263112,0.00015234581557090881,0.00474996216868743,-0.009044425787734284,0.005459300427516684,-0.11393077569973185,0.0008097824559431436,0.00933313598488453,-0.0029879432463772045,0.03947355273984656,-0.006899191453202608,2.255739360238302e-05,1.2585964370481545e-05,-0.02755029535571918,0.07067978072229829,0.01272904090299075,0.00011579294603191332,0.014417055342988712,-0.0280579116361225,0.17090989320443062,0.12391061549676673,4.6211488611274876e-05,0.010252254652434576,-0.00665146487485867,0.0051522489299632036,-0.05679485002153303,0.0025179287509607654,0.0073904122608040145,0.05318037590036554,0.4091707407444027,0.043319688289183464,0.00010695447006152316,0.006219912708120126,-0.012439096583786228,0.08222049169002324,0.011763821331182046,0.00023427017515539436,0.01910891435117684,-0.003953416053704877,0.023722549488391934,0.006402987353815708,4.6943137862429346e-05,0.004723679337635631,-0.01360287305975486,0.07082805185748847,0.001833585527589333,0.0003165280164049852,0.0010721655438301653,-0.018869920372109505,0.24384214216930963,-0.004019782456087921,3.211378783469918e-05,0.015347529307209624,0.019310677973768692,0.16811784703106333,0.027694975128009995,3.837650416765458e-05,0.008428375748288985,-0.01199763892349324,0.03233156740844334,0.009225433627597777,0.00011953409116036578,0.0013294526910819198,0.015114511917765356,0.0910546339088022,-0.012527795492247263,3.834285532265623e-05,0.03322279210175202,-0.003213411056704844,0.010519868951310385,-0.014663741401039418,6.772255525992425e-05,0.00833582533039379,0.012606349334152545,0.04915373745823068,-0.0025688550533204814,0.00011726850479168338,0.0031993320771758886,-0.022502996049312707,0.021159274540394166,0.020398215122357267,0.0006078761886097672,0.0010181706458578378,-0.02517061539274495,0.08869562884117248,0.03351274030833454,0.00011944765431442271,0.006964057839284761,-0.02191248785585923,0.08502358044495137,-0.010445796203468078,0.0016541369897266896,0.021236396309019197,0.055346584406731056,0.4648284651365494,0.053673352102728916,3.061824573662249e-05,0.011311578170284966,0.025363625909442817,0.0637667918130495,0.0004788579262079512,0.001300433178326627,0.024806662429502892,-0.003635291919191766,0.027529998726248624,-0.09321975776392126,8.793438752449021e-05,0.007244231724107567,0.013259492704959205,0.017675249503474745,-0.01023275878152004,0.00017705440736020457,0.011387072639477525,-0.05467938991685082,0.07192044368345346,0.08540952845619813,0.00043639042818104345,0.009479936460867144,-0.08389177273457303,0.3980125675497239,0.22263038394328827,0.0016337023259073926,0.004662813412549523,-0.011360833531800136,0.05129183277423939,0.04691947364972494,7.10644417856596e-05,0.005934589729690536,-0.050822307428549124,0.0787299125901808,-0.1538675002271196,0.0016046924211876763,0.01725570495335379,0.02655548954677769,0.08576386412863878,0.015416468022246037,0.00012267780826670407,0.00022990576599191982,0.011967463682203363,0.034696150523713574,0.005144319995243804,0.0001398238322694636,0.007698281050057596,-0.0005074990691953288,0.0018037608777188743,-0.03719318521016432,6.8670500372199e-05,0.022090848610515215,-0.04712090713150675,0.16203692433710498,0.01058244927921982,0.0027562443041973203,0.03164006013335988,0.026102411719038283,0.12209392998882151,0.00864287050901272,0.00010634746281517365,0.0004205245435242468,-0.0017441699792870174,0.010519704793701642,0.0012529159788526084,0.00012023918913396394,0.004192656647696113,-0.007918778371672746,0.04462975704599053,-0.012528926485668942,8.392326360035657e-05,0.013160043756241548,-0.013181309726280904,0.05997202982600969,-0.0006407040137093611,5.524045047687161e-05,0.0052581979941959895,0.036637426585465656,0.0792505418984288,-0.029763133108704962,0.00022539906738202646,0.01435470750324137,0.0030731684257542516,0.013627187864817836,-0.04434477237038163,5.6078255532458956e-05,0.009448622959395168,-0.0005461821816522834,0.004998045359668855,-0.0031448206985954007,2.8194774149274536e-05,0.008990039434963114,-0.005444795621438944,0.017886198988474135,-0.007557306749343627,0.00010640756106346001,0.002131137362419084,0.009473639905668695,0.042815460394910354,0.009260610094714329,0.00034877409917255026,0.003959849609282838,0.024507963355115833,0.10536308817978575,0.002330694469316177,0.00013322647188538457,0.0009570913574327379,-0.002482852712423285 +2018-01-17,0.036740310491916055,0.30009846134251594,0.04415627525848409,0.0001294689534365015,0.010967067244052624,0.006914458669641355,0.020896283471169484,-0.002524751865508164,7.939618966009168e-05,0.022861432892525662,-0.011322085495487329,0.03526062877283701,0.00019181614265917127,0.00014853663535567413,0.0159240038710746,-0.02938705199419008,0.026944450211527256,0.026648999378514077,0.0003680904510729278,0.0015874522457425882,-0.047546592531727494,0.11783638990334382,0.07353147812061053,0.00021112406626133383,0.008953820225936842,-0.018645178580331895,0.05131506738446523,0.008352326686690052,7.933564987566749e-05,0.010632995307237514,0.04358646306093194,0.1549117436819706,0.02816858802104062,8.255761559511955e-05,0.019009502121076122,-0.02054228342660452,0.18493110850460165,-0.03557392926270102,3.809231425937699e-05,0.011540563243682871,0.01689340913627564,0.011316501884873565,-0.0034709111224721875,0.0011511976298119214,0.0029401258980520685,0.024282531239649522,0.057792623842766434,0.00024410737539572752,0.00014692084930494824,0.0014291698457576342,0.015731577168563746,0.013361753103112129,0.005197608112220965,0.000575483903266654,0.010396354241883548,0.014624564692362335,0.18626318172042858,0.0375075582161717,2.3397999110996708e-05,0.0015445764230047753,0.021118392376706846,0.05483599548189227,0.006212267257478755,0.00011440530430913903,0.011926464600654864,0.0022929399408995665,0.014796078687322009,-0.014946641430298948,4.362223021822907e-05,0.009181854819223484,-0.0010207247423854047,0.0009251900575885511,-0.026949826028553402,0.0021517938291895538,0.01798315307359318,0.0282014891901456,0.1760271357250435,0.005277112057499238,0.0001318391904155212,0.011768629474892217,0.047241827371675225,0.31036125225233385,-0.005685529043417732,0.00023570425615474335,0.02537422230069693,-0.018743302394152596,0.09537133757844886,0.02770786655561688,5.535912209005507e-05,0.006541703356544042,-0.004915553569221772,0.02648345827792412,-0.0008222774977948168,0.00030590356977047,0.023618670038094973,-0.010331849706720393,0.15950093218355632,-0.11625875375508166,2.688097925590329e-05,0.01850445992853065,-0.006898462930909895,0.07441976045851252,-0.14277591827804673,3.097032595557165e-05,0.008588549500788006,0.012178380551918163,0.03818443664724273,-0.006199447470838624,0.00010273677033934017,0.012966173726116406,-0.04208630390179002,0.2948017991153401,0.027236472112995166,3.297638412589655e-05,0.011388473856426795,0.018700272936479287,0.05697457254930925,0.046249712481874164,7.2768638938995e-05,0.0025247334150320416,-0.011388158876553459,0.049642026817835846,0.02485721281071318,0.00010489447366691471,0.002648329103955037,-0.01863437043151718,0.017466496954378945,0.013872334700820329,0.0006097958626764838,0.0033817945280580908,-0.011047318202844644,0.03544638570292129,0.0012283930379856773,0.00013118099287988316,0.0037679854156671445,0.032171160019952606,0.09702117703023883,0.009328022251042931,0.002128233899315926,0.008509364536871964,0.01897874711478418,0.1541792711942819,-0.001892247656085404,3.165364634786672e-05,0.0006839594686170428,-0.019050296506673826,0.058309572353876786,-0.02966087194183613,0.0010681522338775193,0.007922220222039044,0.010298902587840457,0.08163479943346875,-0.036219525500799675,8.401198836464423e-05,0.0038369392338692115,-0.008725044806614011,0.013194625516783322,0.017169982968542052,0.00015606876128126853,0.012845379929049276,-0.008866793906147733,0.013550518720739048,-0.01604134443233899,0.000375590507345725,0.012622791514077705,-0.016509227559284387,0.062282311141061336,0.004520262741463122,0.0020545294701924217,0.012422471657924697,-0.010561044417650316,0.041656309430000524,-0.030936467793368512,8.134230013739882e-05,0.0019815123835231494,-0.06863702133843917,0.0810046473876764,0.05910106522983752,0.002106326462444994,0.02106268274410082,-0.023088090643278242,0.08804225809823017,-0.00753038591452983,0.00010389936242380282,0.024866834127224544,-0.002268801693809194,0.005628182864345812,-0.07403294962967792,0.00016341379440001948,0.007224002320448342,-0.02383820283744009,0.10541731445899871,0.006990579519604329,5.5191918119906606e-05,0.009881673347194572,-0.0025829290661239907,0.00733251782096807,-0.0026229559250792994,0.0033387001010858927,0.0394674338660148,0.0035076844096354406,0.01749951492859504,-0.07486588896102903,9.97091634543066e-05,0.013415445665110508,-0.008040728074589991,0.045695892853481725,-0.009043388199364932,0.0001276083203046012,0.004870432075161579,-0.021638204742145596,0.119679208977142,0.03209323058567767,8.55167553176161e-05,0.01575710407799571,-0.04182756771097034,0.21696891502518645,-0.0004395174292035623,4.845208702219056e-05,0.013137573748673796,-0.033064836375218405,0.05380115083468961,0.03004474701511954,0.0002996430482123406,0.05312969804312991,-0.004597056692243127,0.019328983476366884,-0.027016403022817003,5.914053115501279e-05,0.004467963274269973,0.03518556725815026,0.4349341029992787,0.04368824284588623,2.087239959973285e-05,0.021603082787994117,0.010615934509523821,0.03888311098251626,-0.032566813295465305,9.54346731143462e-05,0.011417405908959205,0.028090539275833003,0.1213495734473411,0.06089490340178663,0.00036487977681658065,0.00331396395829523,-0.0010401405173078016,0.00442619575947655,-0.08317748126870217,0.00013459632195341768,0.0011952864960744845,-0.002902458656415224 +2018-01-18,0.009230072638582497,0.0682130825681204,-0.005928466864382756,0.00014309485763064922,0.004912638028843178,-0.024389051767092298,0.07478774244687726,-0.06875714614946134,7.824831934734514e-05,0.02210049094125118,-0.009510253319165989,0.03236769070761629,-0.011014633406343502,0.00013591818739181098,0.007883976773678003,0.008879056259125459,0.00951713178293669,-0.10771098432773385,0.0003148680402319341,0.007239871412969073,-0.03785082600091492,0.07894485727568133,-0.04081960030833171,0.00025087032343816036,0.005366011209910018,0.017075099033253122,0.053115436682543656,-0.005711922878304918,7.019225821553752e-05,0.006045967812721707,-0.004255866435721139,0.01703216991960356,-0.11551519888377476,7.331753646452726e-05,0.010983582926724024,-0.017384927171811185,0.137541098482652,0.014060012365070904,4.334499943619543e-05,0.008014960640643738,-0.021110787406264576,0.015751196435791936,0.08893266098410486,0.001033559947468345,0.0023798483081135923,0.008392629230422416,0.018886485693586846,-0.022560143212162702,0.0001553848846244289,0.013534702206826371,0.03239020505936431,0.029757463259628407,0.0942342889658244,0.0005320373843594715,0.004297200570392368,-0.025850067521766447,0.3878703977314356,0.11391450810210076,1.986085019916921e-05,0.0031769947178508463,0.0035138389903020682,0.008588236367507619,0.0002929499866272937,0.00012154270755916853,0.019983263397080155,0.01294472157066284,0.07770289437229466,0.0020644951662465013,4.6894006109958536e-05,0.010672529359134424,-0.0016994181153436496,0.0015010496297714077,-0.025187047008821264,0.002208147928073862,0.006566946868092992,-0.013966101183489338,0.0822289129024978,-0.03677781975692656,0.00013976638844295734,0.027740012131764392,-0.006481930042448368,0.03576694652950719,0.004928651408936988,0.0002806278092943743,0.007661777682793816,0.03411019393952624,0.21095704794096484,0.008900306209364734,4.554609054710093e-05,0.029062338986626683,0.021426446752259774,0.1125435396699602,-0.022942329476359838,0.0003137735946521565,0.011395164540205747,-0.007090673024568647,0.09540023625834258,-0.0307111087946003,3.084382568646208e-05,0.012478851157106261,0.01755791003480258,0.17975009688280674,0.028968151267762858,3.2635133631600883e-05,0.0034643191551670793,-0.0038357508561078133,0.01045570723485668,-0.07218934273945221,0.00011817340034348969,0.026262113590645095,0.025687426983199278,0.20487322841755418,-0.032964293334537084,2.8961948014814785e-05,0.015371819293776503,0.013879216771964839,0.0369887614942706,0.012762089144310047,8.31902733232943e-05,0.0023124608826868885,0.019311832081691217,0.0889111969151069,0.0694084794994995,9.931517573803585e-05,0.002879764692260255,-0.002711932714292181,0.0024780305812785075,-0.004940288765183517,0.0006255295200172238,0.014082923475355679,0.0014392916395713443,0.005097709603194856,0.001553988967774463,0.00011883920012532665,0.028850581593691197,0.07193360173701813,0.249067192758991,0.0526022291790125,0.0018536786800249802,0.0050906847506059175,0.003350887556741632,0.032980522661249206,-0.029454623782537995,2.6126697454097755e-05,0.00927707496785933,-0.04148774082233682,0.10920058548582284,0.03465462421262064,0.0012421272492699569,0.0060469112366862456,0.04160492144568831,0.2795377723843632,0.09798768263305957,9.911282378065541e-05,0.007377651869363254,0.00020129908583193005,0.0003787070954105293,0.0030753865233009298,0.00012545377867061177,0.028829364394547616,-0.04632506815796267,0.06575414897765394,-0.04800461526881635,0.00040438665901339335,0.019228691323390872,0.052514731718528405,0.178586565700083,0.010967923148498093,0.0022792014191121133,0.01021955742042305,-0.00045168160609825606,0.0020816288032248042,0.00389978375946864,6.961767047333772e-05,0.018407424158414242,0.013295681621447234,0.020195675415623945,0.016326063834158938,0.0016365505207542482,0.006847559605298742,-0.038337552440706905,0.13094753539377849,0.0005701623701841631,0.00011599602067743012,0.00010448690087215854,-0.007703932242351435,0.019142056290595826,-0.002356740836721873,0.00016314893438007462,0.015210525302079976,-0.02694021076205987,0.12011780462010946,0.019310079499409716,5.474034472225767e-05,0.0011443019271843045,-0.0434003306257315,0.12037581711540482,0.008564379596438949,0.0034172114100751334,0.053725085909486464,-0.02157385503442523,0.10443778272154562,0.0003535084689829822,0.00010275682667339927,0.004532950431136521,-0.0011569084314974776,0.006854675924199696,-0.010179056811464138,0.00012239758349732527,0.006618684892219735,0.0038726857765034677,0.024808096038624754,-0.012908266383894787,7.383589179592148e-05,0.020911766104960046,0.003982965854354475,0.018822405267732868,-0.010180636965512873,5.318373797734075e-05,0.005014968677192853,-0.0589701089549561,0.10992786339077464,0.05123084612300317,0.00026154928514328726,0.008825316026731252,-0.02178565112052801,0.08867239442767184,-0.007536177375724121,6.109370794412675e-05,0.00263648054969622,0.003648909480421454,0.040774975603473824,-0.03919647485353247,2.3088762977752907e-05,0.00744402595970498,-0.006012570831403277,0.02072897772138261,-0.01143564675848066,0.00010138910406960696,0.0013143824219639406,0.009178607928985442,0.038442605317138334,-0.0013418121506805145,0.00037635004918748033,0.003124932164165933,0.011828227664071343,0.05837716828851476,-0.024222710275930707,0.0001160508822031942,0.0003135990763422009,-0.0009991393997502078 +2018-01-19,-0.01738583770199317,0.11074785328625836,0.019925672572397062,0.0001660148312724792,0.007747393076435688,-0.0053839293112592215,0.0169662175101693,-0.0012702019755814816,7.614209908842197e-05,0.020664902350098564,-0.016831118016414848,0.05889558330467921,-0.02867267369599207,0.00013219877847937966,0.04587325530088017,0.012191778486739517,0.013487708050287279,-0.043284471491471486,0.00030506807584331457,0.00896543399649339,0.01895769624758709,0.03849616959818232,0.011923924614034747,0.00025767116068792527,0.014755162580265671,-0.011647519490704767,0.03218139531642176,-0.03167476296142048,7.902696719838312e-05,0.003393599170409968,-0.02141081696228165,0.08055554891985794,-0.06662320636405165,7.798797299343216e-05,0.015205819430957128,0.022545708491647935,0.17013943516820004,0.019773665081347872,4.544200814699612e-05,0.015400732564359091,-0.006355749153235368,0.005548430641424247,0.014992591992206407,0.0008833674112181038,0.00656896814125792,0.0044342393413336085,0.009725430594760236,-0.09046967388513369,0.00015943078273440297,0.004667811089396473,-0.03179408411078917,0.026914906265129664,0.06191664978880836,0.0005774013638970985,0.009060970882533404,0.009719819239887685,0.1268483283351799,0.011618146542942513,2.283474833544119e-05,0.0004465037606859472,0.02253428695843894,0.05938712089279958,0.010534819866638984,0.00011272041713676596,0.01695205028116657,0.006593404584446431,0.034431664543105665,0.00548864789539177,5.390307308498196e-05,0.0007997373756746303,0.014917417699416596,0.011997380657422473,0.0027650295257977743,0.0024251029757521815,0.010877209005677088,0.017461601909443694,0.11128224169886007,-0.060193016308153345,0.00012912499719201087,0.03321625635793065,-0.013275450912439025,0.07661025827416054,-0.010270743917253368,0.00026833083781103713,0.008608124017075846,-0.0034440673320111845,0.024326912640480626,-0.042536445981422845,3.987912252608543e-05,0.02825682436496885,0.024730632694717043,0.12360414652725397,-0.0035095881016110383,0.00032975318160264434,0.013025399257434914,0.05609764925864835,0.81001082772172,0.11480077237977776,2.8739821717382615e-05,0.0012041938298630664,-0.00985452712505991,0.10610212858841324,0.006648287700310148,3.103083068488446e-05,0.008814535186670506,-0.008973452270636463,0.02331508091614729,-0.023531232044741734,0.00012397821691748976,0.004313801035951192,0.03736199958050261,0.246240254602115,0.046629632609621025,3.504801578663835e-05,0.01298119230967544,0.0033032550391162018,0.009849796747268437,0.0012955153713863027,7.435192544498201e-05,0.0027631592809906503,0.005306082823766249,0.01840191686059233,0.004768636965659211,0.00013184375273188125,0.0027134058076811194,-0.013774902511827388,0.010831640860073525,0.0025108382508838485,0.000726891923519759,0.017243476125350297,-0.02484721298653126,0.08376841335409083,-0.028944812124549885,0.0001248485210756781,0.004487561391903538,0.061851095345926095,0.19157484370648484,0.03508007815652223,0.002072182920968133,0.02123642238978494,0.02752152788216915,0.2352461843700552,7.027346779930696e-05,3.008376224515204e-05,0.008369029338054359,0.06285602694461143,0.15454020026441187,0.06065270858119783,0.0013297705954351004,0.003577970165898563,-0.022938231433915064,0.14595166801360188,0.031355749513235213,0.00010465898311717821,0.00794296942897884,0.0028018519609620475,0.0051352785653795046,-0.003972303472466871,0.00012877351914482307,0.011019266135490324,-0.03008041467646742,0.039905993955176244,0.0024484533562367395,0.00043266284366831083,0.01298400706448371,0.06407727770532602,0.21708258722107399,0.055032977519034895,0.0022878597869379685,0.02030511594651332,0.04690507379751665,0.1663518459532085,0.09052475331929899,9.046541286143579e-05,0.011670525160544754,-0.011055228601973053,0.017783867285849367,-0.023521831467036323,0.0015453210144237342,0.02546557231560761,0.02890708052755226,0.0757689254268883,0.01719515054677688,0.0001511573051870841,0.011807399839289079,0.04065545959040005,0.1032163489648136,0.10242737249303054,0.0001596727327426919,0.005729355511343269,-0.013662047849372127,0.05558399242408086,-0.0946555285918249,5.9990155754583235e-05,0.0006023662491019557,-0.010796641085599964,0.04196032351756796,-0.006966066101188845,0.002438753435875526,0.003600559273014764,-0.01617316097145117,0.09118020321822393,0.011992963514387634,8.823378790025554e-05,0.0190286542553589,-0.006393367593684271,0.04891539574323658,0.002863205604385021,9.478615103676282e-05,0.005860777104551969,-0.007897847579356368,0.049214412749549435,0.0017359625302474774,7.590408327864275e-05,0.004357745797432776,0.004962939477500283,0.02371870856546747,-0.0028342580737944958,5.258905115304753e-05,0.020743096410930584,-0.01358862725458157,0.024316119986901925,-0.030882990460015095,0.0002724649874956279,0.017778739376532987,-0.01225505314475704,0.05693019591641975,-0.042596950172208825,5.352872467897302e-05,0.006750036520198543,0.007587865084930144,0.07282093866690574,0.002957060598971975,2.6884044965252278e-05,0.011133250107785028,0.022822224052959493,0.06562621829768282,0.08833512027356093,0.00012155968062673506,0.003419999283935579,-0.006368809497965737,0.02583765225915752,-0.04917599038148624,0.0003885377139680389,0.0003333398135493184,-0.03100042818372373,0.18081488262172138,0.06342973944696166,9.819860417517834e-05,0.007492098193145637,0.0047566135718758425 +2018-01-22,-0.025479101931498837,0.18029849303981005,0.05304866203595602,0.0001494440412932622,0.008889779326557316,0.009312204773421182,0.0375058910987485,-0.00756414753148624,5.9574932061785164e-05,0.013654666343200105,-0.029941042049962778,0.10808050579813425,-0.06066684554253633,0.0001281494501946378,0.003284489465189939,0.026030495801575293,0.028179081029100113,0.054757191022363656,0.00031176220943425324,0.004451554724131094,0.003349903246495793,0.00678639000922929,-0.04593768334146447,0.000258280263844559,0.018971392518165233,0.022991525858184855,0.06717777706761763,0.08430075373410018,7.472895439596788e-05,0.006672638264816724,-0.024459481588163103,0.09483609775569043,0.019236229437143374,7.567691640000644e-05,0.0005372312796722302,-0.03786581500623955,0.31485663800413155,0.057589340185763296,4.1241368650736586e-05,0.0020447089990536967,-0.001341151640105356,0.0011393966004941425,0.004329985153732166,0.0009077113216172281,0.0013696072997565305,0.024159989632465892,0.06346083904547718,-0.010585911107359517,0.00013312291541102593,0.017552311484911785,0.0017121484487125289,0.0012716279867447278,-0.060282214560103124,0.0006581209218704118,0.0009842073769441768,-0.002387856030870557,0.03750815678364814,-0.08543704382855032,1.897165443265985e-05,0.0013807940565686478,0.013664115520172904,0.03777624569022058,-0.025449939623058422,0.00010745181818227663,0.01136839048881627,0.005707382432944394,0.03394365736841592,-0.021088666843995144,4.733039811886636e-05,0.0024433719865479177,0.006604071964708939,0.005779526714441165,-0.032973961746753044,0.002228653204604204,0.020538670256985827,-0.06690916184048064,0.45527602666202266,0.10819514795646624,0.00012093803696214049,0.012043793392475665,0.013624987576692784,0.07898201157569898,-0.0015098463351007926,0.0002671259971752358,0.020481437435135783,0.03209328146071186,0.20789629901383744,0.007390666681912815,4.348388343352326e-05,0.010925038239184814,-0.009611229188489586,0.053012426780963365,-0.0025126436827323066,0.00029880513412561027,0.0021894178969781336,-0.017315943171350195,0.23422985360861076,-0.010601780355298636,3.0678501046310534e-05,0.025825220418681034,-0.021182486710268372,0.22452820927188516,0.055893882621133116,3.1520111059091566e-05,0.007494313032115939,0.04737299983476484,0.1388646067932166,0.07339687285227153,0.00010989098693082264,0.013616168331758141,0.0438505671834041,0.32400014366600505,0.04348943972384462,3.126240524511825e-05,0.019960028530439114,0.008841916200844475,0.028834385090415273,0.011507521160340269,6.79849969813729e-05,0.0012653710565115612,0.0002479587165663608,0.0009587058379819008,-5.758531521778406e-06,0.00011826128765822875,0.008332117123055491,-0.06845742493112819,0.06443178470220834,0.10841421155302385,0.0006072897613442497,0.012764763747773676,-0.006570507965747861,0.02343227643753392,-0.029531703321721083,0.00011802403902818137,0.0059285557914401585,0.058636583660008804,0.17338705450439476,0.018228190345483886,0.0021705568489548206,0.045822168362682394,0.03309079727034223,0.33470959388801147,0.010565551779357604,2.5422676160134202e-05,0.005726968794552574,-0.005443541363207896,0.017037435797829778,-0.007813873140704721,0.0010445964961637434,0.0020799823290459773,-0.011697719160785729,0.08842260399586505,0.009154297583322694,8.809748965884172e-05,0.008907414673267163,-0.03249251325560042,0.05582054980493996,0.03019915726509259,0.00013738350157501832,0.003076240021846902,0.013628760804032483,0.018063301317179755,-0.019631995661334705,0.00043307504247668883,0.007276522202871923,0.036962391979621735,0.15364605771434092,0.010456421684567714,0.0018646142030729206,0.00621075506974283,0.00612683659161786,0.022702240878842223,-0.07404802618974213,8.658804625656812e-05,0.0021257901158887945,0.05447765411569464,0.08101637082720785,0.0976556839677086,0.0016715632135222722,0.011320666222946647,-0.00024277020831516593,0.0009364140193325545,-0.0019177009512796577,0.0001027172823404673,0.0015161426629391821,-0.0439561577372319,0.10501400584587327,0.06567833723069404,0.0001696808667587596,0.004836673644862472,0.047701996379461174,0.1746511126117124,0.18780178178395476,6.666212037473108e-05,0.009698456229061554,0.008656596105975942,0.026787885284902904,-0.00329865729248684,0.0030628574350361334,0.006802678648976226,0.01662476030789492,0.07111794056548712,-0.07321526565416979,0.00011628315092244827,0.030582165801987537,0.002567170062098032,0.014515170560171792,-0.011450837281271534,0.00012826060392086123,0.0062624581273119494,-0.03806888422448114,0.20745280503842528,0.07112307019758687,8.679596487344407e-05,0.02089396403326387,0.032013643914392764,0.1641547813438123,-0.041914684512768814,4.901499559401368e-05,0.017934042673455348,-0.018383217285914653,0.03316367850356077,-0.05573557891772601,0.0002702640112334823,0.0019498355062337919,0.003978027002137626,0.014718444159428955,-0.0938860263272075,6.720788027983308e-05,0.00260775526799065,2.3738492406568864e-05,0.00021517770309093372,-0.003603310917046622,2.846342465871819e-05,0.0031490934290828478,0.021508505403768374,0.07225986661934197,0.06065357293311514,0.00010404519820559114,0.0012564449638643189,0.02308965708643379,0.09993013128850772,-0.040643927810643465,0.00036420759324278895,0.005758687749313212,0.02035812639161537,0.10366986147956404,4.2372976994256276e-05,0.00011247528027808909,0.0026449729403685944,0.0028344245676968876 +2018-01-23,0.027885853478013773,0.20196878652220146,0.03715312687239148,0.00014601123316158437,0.005191162578820672,-0.09817769803209311,0.29578299779523876,0.20698595761858002,7.964346848003502e-05,0.007732137339430133,-0.0542899298345142,0.1854246890883178,-0.05151881379548162,0.00013544061757705784,0.0059822382387684885,0.01306096321342223,0.014240718397916397,-0.14064565269361942,0.0003095359984818799,0.007272550476043141,0.03631765725054667,0.08478011194584004,0.04567277254487124,0.00022414115847611593,0.003711347232563946,0.007665866591947867,0.025508518077380676,-0.17647711356379323,6.561796656683069e-05,0.00042087534281428306,0.010708827388126991,0.04310063179942204,-0.07885497478781514,7.290345945405702e-05,0.008560339578096593,0.057055217155975425,0.469959158506147,0.12343098588221642,4.1632631229192265e-05,0.016516926289918788,0.01544418125329732,0.013111094098114144,-0.025763237288135392,0.0009083866482032776,0.002751472252140106,-0.012298479750984326,0.02940282620251556,-0.1473942742835459,0.00014625955238291438,0.0033618700205108845,-0.009028740590928098,0.007560608462632484,0.008202885624810467,0.0005837068440022323,0.007813028726284999,0.005556026609441133,0.0756916556380306,0.005106623305474589,2.187454869302964e-05,0.007278330259008681,0.026780502508087976,0.0696813190387269,0.001273129201731846,0.00011417036687077027,0.023141564179651408,-0.010023321223043167,0.05124381684627023,0.010981530179567125,5.505946621331139e-05,0.012493586782638318,0.034779088051066456,0.029217677084518855,-0.03353855157476514,0.002321643207706964,0.00024091620635042165,-0.06055484410390212,0.3871357444413667,0.057272276864259536,0.00012871753859527223,0.01675811654980271,-0.026596579471672276,0.15628910168205384,0.0027813360008861277,0.000263514989100898,0.0012234432820591367,-0.026246564111363682,0.14005958446896574,0.04622678307263599,5.278622216028381e-05,0.029979109207043286,0.004389182820265214,0.02147492705214704,-0.0028716657323990097,0.00033685172899818754,0.020712064184702183,0.019948073693827183,0.23387557380525975,-0.0031573368459187,3.5395359622381966e-05,0.00047990905375089776,0.024967183413357446,0.3053259569239666,0.1093557861928638,2.7320430212211324e-05,0.005569775406314479,0.01828952485315651,0.0460076375109929,0.0032261095308874868,0.00012805461830647758,0.01099417308440297,-0.02724463420025652,0.18057309113701323,0.004185785423792895,3.485140771316104e-05,0.030333806505826677,-0.026153464325729625,0.07476391475527212,0.04262687365651428,7.755585195488602e-05,0.008563960766840508,-0.005328321520845412,0.01930245582539143,-0.037861893735815416,0.00012621949884477493,0.009060471707401301,0.04116065371261286,0.03539965485893824,0.031121227693809452,0.0006645976438034711,0.0006286990487557327,0.01965674765901677,0.06686442752403256,0.04143568020189877,0.00012373784294601373,0.008946359187023536,0.005214341758937237,0.02024847065448493,-0.06303734652549918,0.0016528233515205883,0.002913297187842468,-0.022264363986371025,0.19596572925400957,0.027441749317146172,2.9215435242599232e-05,0.007285708197536416,0.005068606460791403,0.01366166692070697,-0.025125536035858802,0.0012129870095412096,0.020559095973875643,0.01954743698262628,0.15256110385525817,0.0233959480049423,8.532408556833382e-05,0.012085872576470693,0.002072859074946575,0.0025115886389426114,0.0003441304913922935,0.00019478999822078726,0.0184532817831621,0.013080015407034767,0.013996049950967608,-0.03736720410430887,0.000536422129114551,0.006594536426522369,-0.06133098978306562,0.250490025925783,-0.008737905730431724,0.0018977538318970522,0.06817041707616824,-0.009274518226274068,0.0451470002565404,-0.005009849530868737,6.591023044059149e-05,0.009882759638814272,0.02574527889260929,0.039655215765906165,-0.10122012106396835,0.001613892024343553,0.01511144745719331,-0.004848234276929678,0.015277646373767094,-0.003352076128602494,0.0001257312348266487,0.011972562969653992,-0.027758559924517773,0.07723525781868737,0.011735549790247666,0.00014569401353036702,0.0023186604022616816,0.0028282892370697283,0.009756978015568728,-0.05756417992543158,7.07493443371887e-05,0.00017443631034475644,0.01422738715290805,0.050553753689654216,0.004227357567727386,0.002667410150175793,0.034533591348220996,-0.0060669678597059335,0.03274506122375307,-0.04042007051215445,9.216509141273464e-05,0.004314391553516738,-0.019178588147766903,0.10466424669717218,-0.0006001650984719742,0.0001328859499409315,0.0014800144837180279,-0.052225917640559824,0.3004433551149933,0.10263541096047843,8.221899711501759e-05,0.0036549298840218404,0.002242261777856716,0.009445994509448235,4.0945540015279796e-05,5.9660380654754416e-05,0.034215622638369685,-0.0004257311640856302,0.0009424802523030043,-0.049025125835682984,0.00022023816357882316,0.017150587831766862,-0.006926526832131842,0.02743378401624597,-0.04409370661409409,6.2783306133698e-05,0.008197754030811244,0.00884119058209725,0.08822638408533795,0.00323042721013189,2.585494138960644e-05,0.011455238014377738,-0.008888033618437409,0.027767882179470307,-0.022707344421410768,0.0001118850074790195,0.0065423136312164724,-0.008362922127322535,0.03432772685643828,-0.006441881722835816,0.00038400862403940676,0.0032495600710306487,-0.02150983677671775,0.10143399174562875,0.006113597520736875,0.00012145779546972862,0.006474152724686921,-0.0028871822210275247 +2018-01-24,0.00637835647475682,0.038153205478401446,-0.0018676980885126517,0.00017679270467023023,0.01251034631481344,0.06951723279672367,0.2451511744264486,0.07937488793480457,6.804073944059929e-05,0.009844954000988696,0.003677101241652831,0.010167853434008108,0.0021478980015113406,0.00016729136107462,0.0024375087351317733,0.0020216446934735576,0.0023897582087178595,-0.0021868111339711062,0.0002855082909904641,0.013781979059565658,-0.029009506225120565,0.07327725260484934,0.002947336662123406,0.00020714236532870815,0.012681047689016109,-0.014992336266546882,0.04076682292186848,0.012921444815994896,8.029882445881672e-05,0.008882782081923862,0.026236468623528336,0.10891283246816914,0.05454233505833536,7.068319658973921e-05,0.0011737129824664497,-0.0007777850403438402,0.007165407946789054,-0.0002064357961358972,3.722350628322608e-05,0.003958523562536223,-0.009539720497852587,0.008635414971409761,0.0188140015640226,0.0008519168828811359,0.01142144231262409,0.029762389761426093,0.06158467600365427,0.03899372243982489,0.00016898845106041988,0.009155850652667292,-0.015445901454724985,0.011969552656080153,0.010600009873266932,0.0006307535425243688,0.005277380484138575,0.02052009411970328,0.2755587328513192,0.06428971183519938,2.2191566435983955e-05,0.005341313415420327,0.016821461314544286,0.050475105752114335,-0.06981703119428811,9.900053042936037e-05,0.009285917803088423,-0.005881309689310886,0.02948832272943325,0.0023453816371241257,5.6141730592643705e-05,0.008854721858663258,-0.023692543224634415,0.020369218502380056,0.0292507614209688,0.00226861232538809,0.0136036134702024,0.09365430042798353,0.5740303082781871,0.12246765521513278,0.0001342594947693614,0.04645477721888302,-0.011820387658076057,0.06401420045222425,-0.09163266332727131,0.00028593256899053744,0.017576251532176106,-0.02238461113488247,0.13640063332277352,-0.03536906943273468,4.6226831134516836e-05,0.00730725511140922,0.02928025995264423,0.1681157117332354,-0.01769562138534719,0.0002870472773907503,0.006615066563909582,-0.04124796258894824,0.5325136604054629,0.031304358717839376,3.214415251170189e-05,0.019409772240239705,0.0017231038194605857,0.01971046435871078,-0.022541366990669935,2.9207628645743243e-05,0.007356989458934725,-0.02446694171818503,0.08265916030974696,0.04810978230402113,9.534797063804946e-05,0.006655004644719637,0.0012633440038389548,0.008274244406676567,-0.01637310241467255,3.5268391612861295e-05,0.0034430496660370806,-0.016402475714610044,0.04028414406830231,-0.10511290331120525,9.02719128608708e-05,0.005719291212229635,0.010183886092789925,0.03755484160858791,0.008474453871782866,0.0001239927219736992,0.00039382013465704975,0.0029766561623361105,0.0029710415289565728,-0.01668492238260615,0.0005726582352777404,0.013203822113778518,0.01710166928241076,0.07079132928032286,0.000754395174612405,0.0001016820855845588,0.015578948630204446,-0.08959989588499008,0.254833428149761,0.17570796201665775,0.002256681575154288,0.0015211811878208495,-0.003982681412263644,0.04694086738816171,-0.021662338198532104,2.1817583766809284e-05,0.0008854185642246031,0.03778691494250807,0.11689056705490398,-0.07422936622346903,0.0010568983997317745,0.016894336549528075,0.0008532489848976256,0.006124151669339866,-0.0012565065660506318,9.278023874371993e-05,0.0021741274078481494,-0.019085094241283636,0.03190674000301861,0.006775966393539852,0.00014117482617216894,0.019063604129795998,0.029646349579061287,0.05013228450218624,0.04687796915899734,0.0003394357987945445,0.016043831010567573,0.024681028030191107,0.10818051096723764,0.004831890179897159,0.0017683350617488046,0.002169465434345177,0.021007991718072775,0.09207662139679673,-0.03741144650885834,7.320243586472616e-05,0.004007774960516222,0.026374813280790287,0.03531049186995602,0.0219489913784883,0.0018567901273643247,0.016402538563991494,-0.004816451466828772,0.011623027429551751,-0.0355539153607063,0.00016418140287777314,0.011250201719009022,0.02898038798965485,0.08334540263534632,0.028146910515400636,0.00014095579086712437,0.01751603926227711,-0.008949116141009707,0.03614618895587357,-0.0028196995307135774,6.042707253725725e-05,0.004970140331484196,0.041944141479220626,0.14019575707712767,0.02618964931947351,0.0028356622217731798,0.016732815452645003,-0.017417600898886113,0.0760035336032913,0.019556472273176393,0.00011399744600290935,0.021144201009712538,-0.017379780011440343,0.09866631011294194,0.01734097330034392,0.00012774272387671866,0.004542071507309585,0.0003250510785975676,0.0017066177643288987,-0.013949930197448855,9.00873990227219e-05,0.009033921719285194,0.11067670860600631,0.524529496809452,0.23749277890185416,5.3031475960586496e-05,0.026632924503564335,0.018596308668510995,0.03470910299648297,-0.0024650673953644895,0.0002612238043775107,0.002704967488264511,-0.0002805725887903418,0.0009658953953199363,-0.0006368973344856549,7.223197996171958e-05,0.003419658147374079,0.0067203330951072235,0.08586621770439945,-0.021095951086569444,2.019294915603997e-05,0.023683978299371054,-0.005970644494650218,0.019182837619652594,-0.02905743353202189,0.00010879710193854899,0.002677547955297628,-0.007541712371942031,0.03283133931285247,-0.06629240334769404,0.0003620840017578763,0.011803967448171988,0.028372082275944257,0.10491992709495716,-0.05494180093159437,0.00015488345446916236,0.013926108962263073,0.0067141144758314395 +2018-01-25,0.01141458678997495,0.08721778792046767,-0.08578000645257516,0.00013840179122888928,0.005294102228921384,0.016360553899208406,0.051306154358617254,-0.0039378536945806845,7.651367574189438e-05,0.026633038222409283,-0.009434618171365908,0.03165472399994772,-0.0021718260017429616,0.00013787419881905577,0.021727488576010184,0.00783931299758943,0.008092348494201894,-0.01650755569305575,0.00032694242818614007,0.008886015954772588,0.003080018833667302,0.007534610910067805,-0.01805434968573549,0.0002138899181686102,0.018347494761849194,0.030193664061157234,0.07962995223280754,0.12154826876064599,8.279156714259314e-05,0.0008959110080971769,0.04038321346128793,0.1374538060409639,0.09139718620137754,8.620529850391141e-05,0.015511019685349133,-0.032764721761501546,0.36974874432872545,-0.07815738631615252,3.0387739235315525e-05,0.0008600616103940342,-0.012508301378521018,0.010544261544519689,0.027026241585518026,0.0009148016800463388,0.00205897721563828,0.05552731079153804,0.12736979435922746,0.11191814750782446,0.00015244110202040621,0.02521914788244167,-0.03693211255005418,0.033154771486904745,0.10614702026294716,0.0005444806744106726,0.0014742306372355354,-0.005153079375914132,0.06834389690431625,-0.01876389013640937,2.2469317622599067e-05,0.002259911880627776,0.03569416184937558,0.11698718370345375,0.009176551840473087,9.063792203261392e-05,0.013458198827820596,-0.011493429530866028,0.06701751045903431,0.014265150648373323,4.827509809490583e-05,0.0005972584642112266,-0.0013192520673149292,0.0011590533858458144,-0.04996791253704315,0.0022199710756966406,0.003972633365928886,-0.04801172415601777,0.34934156937228755,0.030053790985952195,0.0001130964942948522,0.023350622915319922,0.04869622101006872,0.2688069536353323,-0.025200317280436996,0.00028051945899775367,0.010673741178619064,-0.049971290934653564,0.325774009644255,0.10207155998532728,4.320809227360573e-05,0.015151551851749512,-0.022841588263789393,0.13257003110902146,-0.008828797303545355,0.0002839669180925453,0.0033473359325081747,0.055485604572031486,0.6605996453952244,0.07512327673320987,3.4855572269645135e-05,0.026690977947652288,0.004148319225380088,0.043499034358260684,-0.06913172311155415,3.1862090160958466e-05,0.002463655645693508,0.043364783960739194,0.11542733545496396,0.003922892608234139,0.00012101836258053597,0.013962251724368562,0.042803146090319495,0.3373491389679017,-0.02025261125001041,2.9308153771902754e-05,0.01888348730482276,0.00833480733405351,0.024381634590203777,0.009486085579073662,7.578968976425774e-05,0.003939559106377526,-0.004413990840469275,0.018630982407707598,-0.092955816365082,0.00010832888359669192,0.005041745452136232,0.021794489186524952,0.020403661823777293,0.0001789216742162057,0.0006105400236618014,0.00797655205605374,-0.007947553678139171,0.028534017353110726,-0.026204902452008356,0.00011723480297349558,0.0070125196938325245,0.003176545563781963,0.00993570401958569,-0.013896781670577505,0.002051991787338943,0.014046016977905832,-0.028238550913005707,0.292756240981306,0.02248028352443718,2.4803812509536316e-05,0.002461709437435053,0.05387262677780126,0.1585485647241246,0.0455258625322967,0.0011109054739109187,0.036840368886504826,0.03641796114734383,0.34457859916432465,0.05338026325455502,7.03806008867307e-05,0.01457863532552979,-0.01243216878621486,0.0170860737939746,-0.0823121605552357,0.00017173151698990412,0.010392296113754848,0.0018144749180820513,0.0025967822103967644,0.0016171326760654812,0.0004010692406297241,0.010150964504322174,0.02743393824937426,0.10749646531513679,-0.008393431367162706,0.0019780821040222604,0.002476383130427111,0.006387016986416384,0.022354410102017434,-0.005370480964945939,9.166957704993494e-05,0.0117404702923032,-0.02912413879197893,0.04569543627104656,0.011941991746989752,0.0015843730838733486,0.0080587447260832,-0.003646736266332781,0.01337614235864137,-0.0885053434438482,0.00010801635311113918,0.010998479479153585,-0.006574722129978582,0.015907406906131384,-0.013644576399810166,0.00016754766840476395,0.013625775644905257,-0.0353448580240502,0.1540971485459991,0.037573082676560766,5.598163315770978e-05,0.0069841017780567505,-0.014168672119237674,0.04726155624316203,-0.16998187442476836,0.0028414445814423073,0.02789825751920009,0.003287435823812888,0.01613381844804589,-0.12483735063281585,0.00010135861990287616,0.0033841615908325917,0.02990714231169517,0.160509073980256,0.061985396312601464,0.00013512512617791042,0.01600380069062909,-0.011420373903588358,0.07551850800100511,0.003659216563385988,7.15279240225916e-05,0.01274381646044297,-0.030096850499239297,0.13411856763350388,0.021572184242942587,5.640005653446728e-05,0.005631888462121269,-0.02290627160004683,0.04403222875893444,-0.01871253827589157,0.00025363730584306986,0.029710512820197887,-0.007902634018941621,0.038863860423844925,-0.011703679807217711,5.056387020253318e-05,0.0009117161811784285,-0.0164514349901055,0.17158554457031142,0.0014299437312424942,2.4737418347269553e-05,0.016982558640348016,-0.004517990017640308,0.014554438852951648,-0.0007389034967333483,0.00010850725220431692,0.01604727113079791,-0.0022319593873625157,0.011127472310356728,0.005601179134928992,0.00031616787230243613,0.019562837992139714,-0.058021404326604464,0.3045067541975157,0.1307785759980778,0.00010913476107749916,0.015536560639186956,0.0017217876425541993 +2018-01-26,-0.04012428002511143,0.2990421336525878,0.13962307750939623,0.00014189315777562859,0.003872896056180717,-0.017124283383752395,0.06357759153866639,-0.01511060055071445,6.462772390183853e-05,0.037064979264867064,-0.04112282255482726,0.15372632692763372,0.020213196926061668,0.00012374619952030332,0.024256563318719105,-0.012715896756054399,0.01416591979363754,0.006180342719295842,0.0003029493819868093,0.0030979276627955015,0.0003567701125814612,0.0007816779392124834,-0.0036969442496395787,0.00023881322990492953,0.03216052568798844,0.003952704568530373,0.00960213222386745,-0.005903620264954901,8.988214197012857e-05,0.014250528324675115,-0.005430266673719627,0.019376438232644084,-0.0030453285403985488,8.223128269895715e-05,0.006498405672349751,0.004299235770020013,0.0351998366219365,-0.0029810085332042835,4.18841039942576e-05,0.0014276773766569819,-0.007698440510088093,0.006567157458505344,-0.027425405011039232,0.0009040035072092167,0.0017938249068588869,-0.029038757596171135,0.0693573254108691,0.03546629461887462,0.00014640219242652893,0.019615421825866983,0.0065242033400717435,0.0042867702965069705,-0.10317460117845619,0.0007439121188426501,0.003175593429509625,-0.031802642922033754,0.5113654938312733,0.0739904287890098,1.8533377989912276e-05,0.006649858465596419,0.02401511716976828,0.06945482071858963,-0.014084406868518784,0.00010271487764338371,0.019184783590647504,-0.00999966147594795,0.050411109110962936,0.005030334314435972,5.583684404879355e-05,0.0030582631670474703,-0.023954883651689487,0.02335137362945818,-0.05971997140318253,0.0020008042704519552,0.0077088307845033545,-0.011667323165325342,0.09390108233662547,-0.005571833084265594,0.00010224750913662817,0.0028712282131567917,0.01228227812073325,0.061894526803259596,-0.012979396240557682,0.00030728043733172026,0.0042708986301894705,-0.03800945425186339,0.21118530576918668,0.04924511041041629,5.069777424271629e-05,0.00011421274813515478,-0.050146339978075195,0.248468168533516,0.024941671471680794,0.00033262530776041114,0.01507306722148239,0.0702646450758603,1.0055147128405548,0.038163497238511715,2.8998708640898812e-05,0.016382486768679417,-0.007340518987995813,0.0742099984090899,-0.0004074435055120811,3.304806629746362e-05,0.00705311049608681,-0.020120148938824755,0.06382046027392661,0.01989630923859958,0.00010155329405469671,0.001682394202033555,-0.08028357870372953,0.5495264552836352,0.1174902964312494,3.374663655896801e-05,0.011389279267125471,-0.015283859497190796,0.05245977852050012,-0.024729997158669553,6.459277847046965e-05,0.006067300883920373,0.013099259274921057,0.05484885869602724,0.043545810256095635,0.0001092012824539944,0.0075752178180713255,0.021581347914654988,0.025262991768468135,-0.07502320493747963,0.00048828046210328376,0.0019970895503126198,-0.0008132753800832523,0.0030726400018235775,-0.00864794563406316,0.00011140686521779198,0.005168213705833538,-0.020220849918328794,0.06391467448752432,-0.014772390073495454,0.0020305701567061114,0.027843148721584547,-0.047493492199263396,0.4954536737938708,0.02235196809597309,2.4649791303119984e-05,0.02002559714055338,0.0027386055698353307,0.006893845774747287,-0.05171759117562804,0.0012987907696459194,0.008724312514109078,-0.002386184271081798,0.01866989795823186,-0.0008991576814826446,8.51113888910267e-05,0.0035092939632364126,0.0037501895344606716,0.006041820527227544,-0.040875855539005634,0.0001464976922599863,0.006460525042699315,0.002826443938388421,0.003754475454407182,-0.0023477734712261124,0.00043211069968952283,0.006599531120326407,-0.007385094168184391,0.025727142450674503,-0.01418750943248234,0.0022249221897559395,0.02034677750121409,-5.052308690718569e-05,0.00020058539407247512,0.0010745248015836247,8.08129465473689e-05,0.0007166095479302844,0.004048924791561994,0.005558729152120618,-0.030554902052534225,0.0018106786801400532,0.011134372170406744,-0.002683487241806838,0.008671120460161861,-0.014632201253100406,0.00012261408224228078,0.026569681975192164,0.010361683958777046,0.025836735423308013,-0.0001511536484443204,0.00016257474442110692,0.005893201619717979,-0.03512310032981185,0.16023754342537946,0.03208496456344704,5.349860910372263e-05,0.02373438343990335,0.03007075771508849,0.10616436843628892,0.010838036569656208,0.002684625116041984,0.009880143385505299,0.03747647283228802,0.19395518706664858,0.028358453534180653,9.611648533832102e-05,0.008014604857132604,-0.0040498929106572166,0.023713488582733082,-0.003044072648053408,0.0001238536684310814,0.0022897826996048603,-0.0178081984563171,0.090182487873709,-0.05932502122728048,9.33999133898612e-05,0.003275149013142707,-0.07733659263190054,0.3848622785332296,0.09369001443081434,5.0504151812118496e-05,0.02000937139920765,-0.00368084658130902,0.0072793500500145615,-0.0006693160980016362,0.0002465383619485117,0.00917570539332679,0.005296273587241226,0.023588664883402444,-0.1524087056453596,5.5831773890843086e-05,0.004204311963891126,-0.01849581898544374,0.21779737233237192,0.01012533639813753,2.191049635530038e-05,0.010956638900727681,0.004123016944255451,0.012149191882573138,-0.08706820477385606,0.00011862512767390037,0.0010374194056224323,0.005248474152038032,0.020327879628315636,-0.004286459206809554,0.0004069761445788018,0.006890651109124881,-0.010647400070926795,0.04624660421236624,0.006855498414491684,0.00013186681593901407,0.009288266521059917,-0.009498458073282886 +2018-01-29,0.021776782552076143,0.14671519215557027,0.011016135395686737,0.00015696586285292508,0.014122093783417253,0.05557498597646703,0.21076649573926315,0.05446928741456929,6.326861295501185e-05,0.017998784740705664,0.0012540122495399036,0.0038138402196531487,-0.056897540832003976,0.00015210254785722586,0.005889567034492289,-0.006592796401571351,0.006469841511263123,-0.001664552736151413,0.0003439092668449507,0.005186235470529179,-0.0032936597447065217,0.008755639683757997,-0.016107922203140324,0.00019682879023705713,0.026599917384887435,0.0025277872626014507,0.007621221320655717,-0.006372932955778166,7.242069481765499e-05,0.016471362934952077,-0.007343651769679608,0.02637264242959813,-0.00980922137444703,8.170493399585886e-05,0.01322981512121705,-0.019040411279807927,0.15264128816701705,-0.007782215115451356,4.2776270469345405e-05,0.00944312476489497,0.007707073400856864,0.007212941888154917,-0.09764380030735254,0.0008239898243413057,0.00782508724016836,-0.006600058971030895,0.017627853808247503,-0.014378858256612012,0.00013092128587579622,4.758987654328653e-06,-0.00804996746803507,0.005654448444510509,0.0031573828373916866,0.0006958701939641095,0.0022930300735778527,-0.012504478483367661,0.16365662227291747,-0.012478298114894636,2.2769567925298005e-05,0.0035907996090698514,-0.016402883162997293,0.046878263538793,-0.024520255579375427,0.000103944068849232,0.019545623394065896,-0.0031052057959020736,0.01515453938052542,-0.04694449379260551,5.767790346700225e-05,0.0020811802606235776,-0.011887346920408553,0.010579784284269684,0.013978922020458254,0.002191447632808639,0.0011553676647026632,0.005710272398085593,0.0379905441280346,-0.026023761789090768,0.00012368966687163125,0.025875138615011943,0.014022214797250538,0.06045383677496661,-0.036078449382769315,0.00035917076389076815,0.011486186189138136,0.012160008308706451,0.062134387196706255,-0.021701228743264068,5.5126803166018915e-05,0.006279093022465517,-0.015469632372267417,0.08021159315860585,-0.07512792212747488,0.0003178554469389173,0.0001488207033183424,-0.014833029244979338,0.19089530789069675,-0.0012058889322490722,3.224518184524802e-05,0.007042296666955196,-0.012404294863365486,0.11730155127259355,-0.012550748647773497,3.5330520436359815e-05,0.014472596311795467,-0.0030718048938331846,0.010908561116038515,-0.0184768297229572,9.070869410272721e-05,0.00891880757861735,-0.042926260709446565,0.33202469851473543,0.02522116484860979,2.98637983178711e-05,0.039670278323967835,0.0009850766351596103,0.003121492034133661,-0.011694503757741389,6.996569774633265e-05,0.0054633325521112885,0.014765063887866664,0.05386886229583873,0.03530442988751662,0.0001253274267389072,0.004973204398174399,-0.030204376051213747,0.03698185345366865,0.0020368011931987187,0.0004668278494628724,0.006924633372333848,0.023868418787737194,0.09103154214888999,0.03267010726700371,0.00011036154156400109,0.015477308931271274,0.08970016942236528,0.28412237424470194,0.031123609129599463,0.0020263152029911793,0.010403480904835673,-0.0032621588001962368,0.035636283221954654,-0.02395137366621566,2.3539373063683203e-05,0.007540091361368595,0.07170738762019596,0.2320225640127787,0.08245106934302025,0.0010104270147537058,0.020617232850500083,-0.014970171632414304,0.12759526744913433,-0.01455017918228781,7.813000574138758e-05,0.010584838182578419,0.007672155995978753,0.010396544749860381,0.0003921147918184604,0.00017417017318959618,0.0051732797930542,0.014801693677815428,0.01960591273657654,-0.009515805656595263,0.0004333394828511517,0.01274472051259358,0.06593430898255481,0.23079670512755673,0.05891823856849902,0.0022142782574817903,0.010772984326006546,-0.015118871504109224,0.057103819817070856,0.03281665049813129,8.494632328218773e-05,0.007737611356009569,-0.020061538960689587,0.023686836724748965,-0.0014335791446011032,0.0021053987993335595,0.002819404430765047,-0.0042132354580219755,0.014162396649465682,-0.022250749959902817,0.00011786775545856176,0.012742835611045849,-0.020077252933144343,0.053022018576668994,0.014382973237557876,0.00015350001025437595,0.0037538160298100417,-0.014125745271792734,0.06499057171286793,-0.0018889308932041244,5.304872349839939e-05,0.007492672402932339,-0.048320444313765414,0.15909517021989125,0.03697321607556175,0.0028786706597650788,0.011925211912664869,-0.04318749399290816,0.18132984071153255,-0.021173803489987243,0.00011847570316789614,0.006884466660135644,-0.0016756046227525366,0.008647743927981021,4.013486680591718e-06,0.0001405172083802685,0.010550270926318866,-0.019460768723140974,0.10114558983985893,-0.0706448873086769,9.100426339913947e-05,0.004548116931784255,0.010175991912233404,0.04321221633858382,-0.003933835878573281,5.918581146156609e-05,0.0008480394896561052,0.00825140476446127,0.01484985306501814,-0.005220422431319035,0.00027091629593216924,0.004329153147877797,3.1402389251443946e-05,0.0001226513966851715,-0.1534786021627027,6.366556102272637e-05,0.003923108150690025,-0.003241759337590275,0.03288863388234173,-0.01064357811965772,2.5431163010624633e-05,0.00886590663659037,0.010535207333465864,0.03670710349817164,-0.04278320339371217,0.0001003233290878937,0.003269661179164415,0.010522264970683802,0.04264613772105253,-0.008374660183592907,0.00038891751288829056,0.004508491543849781,0.006204719853533725,0.02645766363316253,-0.024455325249791354,0.00013432055662158476,0.007135794126627171,0.0009494299289419972 +2018-01-30,0.010818677176883545,0.07159433999144411,0.0017225904180690514,0.00015980194318248022,0.006598442846077174,-0.00997062575612214,0.027564114454278185,-0.004692767731922767,8.679383886238641e-05,0.0028780811698433696,-0.009282130595863386,0.03244201245109557,-0.01542753254989083,0.00013235400647940127,0.01431042199410764,-0.02331299424605352,0.02323161785789516,0.0430663842730546,0.0003386775875176734,0.004728511647135173,-0.009133172034447665,0.017915573539768928,-0.001105239462556259,0.0002667403363672963,0.004225229850771217,-0.0007906316161944045,0.0021083075739786105,-1.566051157756877e-05,8.188171833981712e-05,0.0031723495757877687,0.0040804993765565555,0.015598882380398813,-0.04737893591267923,7.675553226029817e-05,0.012468783267473332,-0.009974214328175163,0.08451536842268895,0.0046896114441566565,4.0470784378747884e-05,0.0110333485608536,-0.001494281159246072,0.0011405551731455564,0.0004196728689560045,0.0010103243232597074,0.002974781572697093,-0.03811435797109577,0.08536390007871335,0.047659808249293355,0.0001561263642002536,0.01753302642679357,-0.009077998158923314,0.00754738289544484,-0.006857474369851089,0.0005879197711337225,0.005683184494838438,0.0007266727645694518,0.00880273870044883,-0.007008545578791173,2.4600495926624055e-05,0.005941267173363867,0.01594163410507857,0.04383200158072716,-0.009427894124394195,0.00010804198923593453,0.015254296399144626,0.011669420040744345,0.06072865790873123,0.027372803781254743,5.409005306127069e-05,0.0025511573915053586,-0.012847047580538123,0.010337367525803493,0.016718466113009988,0.0024239092056755475,0.010043366500016073,0.013496606940432018,0.07984230239968594,-0.06320437262065964,0.00013910529314804842,0.0016782097287284697,-0.007889082567945314,0.04910191488853263,0.004106505444991691,0.0002487919386227426,0.006402284367887678,-0.048271133346836144,0.2936495126784156,0.06780047338631563,4.6304070127501864e-05,0.0016798289715630468,-0.010232938365616406,0.05634175991311579,0.0055304738670920615,0.0002993344879303591,0.004552941601290794,-0.04897481582598132,0.7242774234746184,-0.014578542869668263,2.806067377115501e-05,0.010579721805645452,0.0009736194974584674,0.01015477222688079,-0.07313860240937002,3.2033233901932284e-05,0.0019914521997454852,0.0009291433255047178,0.0030081131567838756,-0.03968099311008852,9.949730055517103e-05,0.0066690060825973785,0.020758385358094482,0.16523574752552378,0.004303876531455058,2.9018966188850246e-05,0.03288084774541389,-0.005401573358875308,0.01656501346164855,-0.0009071142108923946,7.229460143683966e-05,0.003558136587022336,-0.008284209903194137,0.030686203158852184,-0.09813843978989029,0.00012344017650245973,0.006702451418292151,-0.009456740700603296,0.007138183443725885,0.0021935909933591445,0.000757232661096174,0.0016953822962430401,0.02799169537128851,0.1256558543802771,-0.08243043600099755,9.376321382382088e-05,0.0017334233248498467,0.005537462190636015,0.017229058326095018,-0.012053152660979822,0.002062853600148165,0.043553934392080926,0.013459287020075048,0.12296702324393993,-0.03111999890813079,2.8145929142851304e-05,0.0030277613851770026,0.026272266331221508,0.07405449801847887,-0.0023762214307382064,0.0011598914989648216,0.012521862501664616,-0.017928858119114797,0.15718287356844232,0.00024618904965329104,7.595791752140509e-05,0.009988963014781744,-0.01820236165042347,0.022203090992400445,0.020574620626460555,0.00019349051758420956,0.0003777839937041355,-0.045585770035101766,0.05917069274498721,0.048319308175074654,0.0004422079593954266,0.01845452618266055,-0.032725577542089504,0.13126321441600164,0.014666435334950424,0.0019323893073394092,0.016172183847092826,-0.02600894038659694,0.1050093290937069,0.04413350585972467,7.94666940280197e-05,0.007652166081546749,0.056484957718163295,0.07399006602094273,0.06184605783886515,0.00189773944654591,0.019339640477067446,0.015519890404843114,0.044465423775022,-0.12764340421373024,0.00013828728523941739,0.012095798303933238,-0.06913345834336512,0.16635138112147388,0.19870659558521875,0.00016846987274548526,0.007004729492712785,-0.006624073739226244,0.023687965413773906,0.0004896289940538014,6.825136210982461e-05,0.00884320872838429,0.014581985372891557,0.04111985014845097,-0.0013199482553806164,0.0033611136136529997,0.025532639180990375,0.041982399474125895,0.20652785967302373,0.0634114432894707,0.00010111816577295557,0.006957961917815335,0.026539134915349906,0.1329106449014205,0.04205705275672224,0.0001448064082047849,0.0151170453108221,0.012262225110204944,0.07362930978738622,-0.12201079854254714,7.877116235937537e-05,0.0013098287878150153,-0.02991557273755776,0.12923763414269193,-0.06688150987990289,5.8177588792023826e-05,0.018448853513100463,0.0003937855655911384,0.0006870330665861896,-0.009589090875502655,0.00027945478284469456,0.026126774246621663,-0.012847974925636534,0.05539652197564699,0.013564263128205514,5.767220516243305e-05,0.004686446670989378,0.004430985790478437,0.04832991719610082,-0.13071071484917787,2.3654599085346324e-05,0.017379826068088387,-0.019821282356346386,0.07187707520584052,0.03959465256032609,9.639406963871018e-05,0.0010450460439676505,-0.004204026102572031,0.017357011985644866,-0.006304132792330003,0.00038178460448685887,0.005570920715803711,-0.0032748600638960574,0.01640927770889912,-0.009393688692367425,0.00011430759255033634,0.011224673982109459,-0.004382939909054115 +2018-01-31,-0.025433214307077342,0.16653561178910406,0.035793701817877534,0.0001615030460664706,0.002472608581125432,0.003858563628925522,0.01430348991686327,-0.0042303164131327125,6.472829667670987e-05,0.003102993151520827,-0.014176835649742434,0.045943103441850784,-0.06196242053983642,0.00014274344728925457,0.012898118016202761,0.026486427541466764,0.02362554006938445,0.014507089875038771,0.00037836372838825384,0.005444929754610334,-0.008647964637989728,0.020155944233136158,-0.03622228441349913,0.00022449595969090583,0.003997808354704596,0.0068374716617744585,0.016432649176358685,0.005309829665380524,9.085204256340198e-05,0.0052172168398567755,0.005232525944984764,0.019188701708576276,0.0014750179558844947,8.001209720537967e-05,0.012800782754111721,-0.0359051620103258,0.2845983220479244,0.053460069096116884,4.326365133752011e-05,0.02037325710988131,-0.02514245603699417,0.020008319944234295,0.068964620362908,0.000969040353523075,0.003120434542161197,-0.026331511963441905,0.07155080505675056,0.012345428762433499,0.0001286835872245041,0.013254736393628959,0.02105815845354437,0.019445232510770204,0.04979476205822361,0.0005293362142461228,0.00446957209551012,0.02033075129773555,0.2334719704514684,0.048908775803826854,2.5950245361936342e-05,0.009902536578568677,0.010140724788889718,0.0305356114504946,-0.03664105548841711,9.865370805265654e-05,0.012419762343458667,0.03734072774940292,0.19472264390645558,0.190411396312272,5.397941063608204e-05,0.014330793285232592,0.018498676776545275,0.016222064332628648,-0.08682076588961567,0.0022241164248230937,0.014998715737491728,7.815726269257737e-05,0.0005746272756272199,-0.0026761168739475915,0.00011192708977309318,0.011089602620102801,-0.011153441286065805,0.07057431257463531,-0.0019411214117946677,0.0002447205616500905,0.01404110289128379,-0.03379433331527601,0.18909468036842045,0.01665103384515614,5.034142766491359e-05,0.013445459459195216,-0.004098351576370193,0.022243955044399504,-0.009718615784994339,0.00030365749868952667,0.010140687581690497,-0.06780029916024427,0.9206904497352177,0.06549099315806017,3.0559637839954536e-05,0.01215450443909426,0.03147348474739598,0.26080715011091327,0.15588610256448837,4.0318748792721325e-05,0.013136166645208083,0.023873265247021807,0.08161375077752317,-0.010266057948477535,9.422610554647645e-05,0.006089717874205876,0.05867876708401693,0.38119601530459507,0.05525105611376844,3.5556991181453655e-05,0.012443137708992094,-0.01945623803309276,0.056546179946173,0.030367854887631406,7.628391653644795e-05,0.017002173748130744,0.0055996592087546905,0.019334729823892362,0.0019081901053277853,0.00013242564130021552,0.0023468209967058753,0.009278993696708525,0.00800197122791111,0.0022770531013267957,0.0006627953541847693,0.02216558503652767,0.005846302073047839,0.01995274168292482,-0.06852944496252555,0.00012332884954035603,0.00022799346546698712,-0.009964926621757245,0.03382447567663399,0.013096455449944552,0.0018908723295366675,0.01100311552592612,-0.008175075210036825,0.08395402363002435,-0.03162203625982919,2.5039891164358286e-05,0.005414176269921352,0.06064510871334279,0.19234448608181798,0.040956799241066495,0.0010308306135825712,0.01477362948109798,0.023626281014586196,0.2044789040164958,-0.01440878385897422,7.694359959978188e-05,0.010382268176598888,-0.04179823500213816,0.06329408768731841,0.11888539332216945,0.00015586197865655356,0.014580094893526456,0.043058097815784624,0.06742192188289385,-0.022196734852051387,0.0003665705961083084,0.0034547254892109565,0.028378224344486083,0.10066769123075242,0.005580075420728049,0.00218496985954983,0.01449570935634164,0.017600000468523516,0.0691076648107812,-0.0007955170147899804,8.171030500849642e-05,0.0019769291553435276,0.01168097257467426,0.0154336792755097,-0.03788690601136251,0.001881424196451166,0.01509079312274853,-0.01973841157185275,0.06330814953541751,0.015617332516262497,0.00012352891229158817,0.0014575531109724807,-0.027144520861231144,0.07825683795267628,0.018500200850329513,0.00014061131197315937,0.006263622189771189,-0.004447619365015945,0.01638927539167642,-0.025228644145259917,6.62341221565979e-05,0.0015469561219780218,0.03238881222837546,0.0902947811413903,0.00416747300402614,0.0033997769882827453,0.010805082906661953,-0.036478092722309854,0.1794697033695565,0.006035733982392996,0.000101107075481911,0.005656190297839799,-0.022666479735452546,0.11445898603925964,-0.0190937216516161,0.00014361340078102836,0.012965732446009334,-0.024252106368356258,0.14323257403989675,0.0065362972989056285,8.008595640101407e-05,0.008746897580944664,0.033754071621725876,0.16431297155565028,0.010098230053693988,5.16299509734318e-05,0.016094093811959666,0.011109921961010046,0.021203019163038683,-0.13934876522865505,0.0002554716403609918,0.014351510034364391,-0.01313066347048214,0.05209153326415478,-0.08551392267742303,6.268070983461242e-05,0.0031541877536034194,0.0065641366214323335,0.06016530198925329,0.0004227475512492847,2.814898866344757e-05,0.007238333522612208,0.009359832361165193,0.028500594932243814,0.012608560713934281,0.00011479503616628076,0.00190164812594063,-0.03230376187975858,0.14911180234344595,0.16418864857952503,0.0003414829712545768,0.01117151653367546,-0.026934516942081592,0.11405028019421207,-0.00723512498842226,0.00013526474885467454,0.014560567515784478,0.0004673921242386115 +2018-02-01,-0.010632095104513774,0.06678917169025957,0.009701131574433775,0.00016834467332078963,0.01774628808001317,-0.01399546813645387,0.0420404883533603,-0.01108251677138017,7.987855578053117e-05,0.013840832254715354,-0.06415937477845526,0.22726269228907056,-0.12616612445009187,0.0001305957910596171,0.0013777492684634868,0.008193642636043356,0.008782707403846029,-0.006639524544245268,0.0003148592526090279,0.009260840345979179,0.004448568874797848,0.009541753996375718,0.0011005813110462614,0.00024394385113723883,0.016328042761750962,0.007681915068521179,0.02188923281268142,-0.02006655518580615,7.662768419021212e-05,0.00181997798903459,-0.024680456729809192,0.09792229448893092,0.012915629674433165,7.395396550585418e-05,0.007276363907828364,-0.005689915689191285,0.052179848376232706,-0.08655936840869026,3.7393974964786726e-05,0.007975243657119822,-0.02176989599630711,0.019265298791992406,0.04325110948317336,0.000871415723368868,0.0005584542248356243,0.011341122928069448,0.027300107467825747,0.004679134899688405,0.00014526252454568963,0.0007738463432703916,-0.007289637609571091,0.005845034371732348,0.002096153774119956,0.0006095975706657787,0.002258049780925062,-0.004079052621369737,0.04663283157913793,0.0021509623667593587,2.6066955492528686e-05,0.005022499721615904,-0.005968395783395381,0.017621522165590285,-0.019597383966820914,0.00010061557934930205,0.019404761570350954,0.001542143994731646,0.008983797744719135,-0.005499610886802634,4.8319983733002484e-05,0.004485050937750205,-0.01577438194163298,0.012754661980832716,0.019976493915051966,0.0024121614420950983,0.04259397198830757,-0.014232841479918672,0.10616068144436423,-0.0003976307017494578,0.00011032654616220349,0.004482494194619721,0.004442542644685562,0.021137005853610936,-0.017574202480226772,0.00032545906288003376,0.00030218805177528274,-0.027283073406371552,0.14054820392829348,0.015851339651768943,5.4680055586327586e-05,0.00780369324234722,0.0717016346038394,0.40032298572792124,0.1383396987605025,0.0002951925120609452,0.0038925059572193846,0.007930826791729241,0.10007605727382159,-0.005588882811416907,3.2886564659310144e-05,0.007668122328657191,-0.004458209779302823,0.044330301795438155,0.0008003646575986615,3.360017360627444e-05,0.0026936309156380196,0.023555195658569596,0.05808562914109739,0.005880758258753613,0.0001306293524949961,0.0035206510484145402,-0.0939335764201876,0.6513911908575456,0.11371377214500561,3.330974845054061e-05,0.046414640011207854,0.016307144606667823,0.04498924989303252,0.01385145327142358,8.03612257619919e-05,0.0007109849367030311,-0.014959400244180592,0.062004438005136865,0.04651925328253748,0.00011031637999778818,0.0010743676632423867,0.016029504260818252,0.01660534064873381,-0.01862782890225106,0.0005517570148558477,0.015024165265045734,0.017020636330571583,0.05818506085502247,0.021322816216686424,0.00012312615251298457,0.0024482587847193954,0.003983068363805541,0.015187485874473279,0.00019329851252062257,0.0016832593991722017,0.004561761759183018,0.00910639066828373,0.09403175549012768,-0.02509141878835528,2.4903129616184202e-05,0.0009907164886309129,-0.01946232319637474,0.0444344078933865,0.007229494856315052,0.0014320116550114162,0.02305206829035723,0.01402950995103727,0.10583882729641422,-0.005411236534876903,8.827203229410436e-05,0.005560700139652173,0.0019285687191980252,0.0025674964834036316,-0.00045541855853228755,0.00017728445115683093,0.0047672850817413355,-0.03858319818507536,0.058939922775407,0.025517644372800737,0.0003757444504957336,0.006646433600025661,-0.01829269092608683,0.07875424658622825,-0.0003343527884533492,0.0018003376199825368,0.006891023605440916,-0.011457733005205613,0.04053519565298914,0.020248423786284924,9.068945555679835e-05,0.005227465074999688,0.04631474171050142,0.06473174711631838,0.059876389825517476,0.0017786033639644425,0.01469975407166381,-0.01620927917169121,0.04875176565972088,-0.03978062864787634,0.00013173142485892276,0.013576312039792145,0.02025751733868772,0.045769263612781705,0.003970275701114539,0.00017942075106587718,0.00047301113159255604,-0.031381703995483984,0.1504077175716663,0.010564282020947283,5.092374394676964e-05,0.015959370085243976,0.008799440906694177,0.027277132041573827,-0.058939723113827336,0.003057556077654304,0.03475463319967425,-0.006031926389915471,0.031211691035573173,0.0023738691807583157,9.613450723411353e-05,0.00332760595898718,-0.030900247156606567,0.18294944838475288,0.027528575518099917,0.0001224874612214168,0.005176663998810902,-0.07128046825522807,0.3658582804303146,0.19537025849055698,9.2152337091953e-05,0.010989480144498784,0.010746812685539559,0.047125610252090756,-0.05149499866843208,5.731523627190295e-05,0.009232271694469248,0.0034157101011077096,0.007290262556970698,-0.0022295535399396438,0.00022843741051533712,0.00965986549132538,0.0018227132786167324,0.007595439576334724,-0.015128099666638726,5.967326766954336e-05,0.004033760056732883,0.015726330730842376,0.1353193942693193,-0.044999001531190116,2.9984626618677658e-05,0.00648109359754673,-0.005876507071329721,0.019079941667271703,-0.07083146326032895,0.00010765920909939356,0.001085283589121375,0.003730728308393347,0.013425856455078173,-0.0037769560044283203,0.00043800553023859136,0.0037379780778393316,0.05697657984093943,0.26904455448647446,0.041191350309384506,0.00012129529800145793,0.012685081663449126,-0.004265024715222346 +2018-02-02,0.006400781023004398,0.043178801146976906,-0.02182193348186278,0.00015676495195107119,0.002961415559385938,0.04764030744045242,0.15859399077624908,-0.005751916095602456,7.20772742352942e-05,0.009234427978773732,0.019534221258057715,0.05729772052357824,0.0289093552949592,0.00015770881272563766,0.012810378819708763,-0.01591046518563885,0.018093719632467618,0.03466746460716184,0.0002967719685040015,0.00152331148041747,0.0075666904871717925,0.020389307980626502,-0.024425455256700913,0.0001941785510268565,0.0165354376342842,-0.012263109257344416,0.03126923170846897,0.006514377091121748,8.563082471383e-05,0.014461608477053701,0.04648750528417298,0.1847624488337406,0.10088119105962053,7.382651810746236e-05,0.0020266033137095398,-0.05043757231745018,0.41573974624743715,0.08950046145653885,4.160363165398791e-05,0.027635323161572915,0.002010363447234028,0.0016441414936577132,-0.005917987694037059,0.0009429315689603293,0.00047800739988876936,-0.0463213833210078,0.1150470588420286,0.05378262888751223,0.0001407887283940768,0.014856206140295578,-0.00802179091253965,0.00550636971829702,0.0008541780944014965,0.0007120825249652516,0.008739864256938594,0.019119915996471296,0.25212533352611927,0.040694889021303526,2.2599159304344142e-05,0.006169126735330904,-0.00038407810146051126,0.000986766925114141,-0.15099430502334923,0.00011562613260926307,0.012119149614104522,0.006699532428115794,0.030113871948271406,-0.0511542028497336,6.262384262530528e-05,0.004241610160807017,0.03343746393671301,0.029345970202962653,0.04420849065861884,0.0022223263274922405,0.01223825160989846,-0.003835946520919998,0.024668602014879852,-0.002186854142593203,0.00012796173299163056,0.016511947856884392,0.028303908341313713,0.15919439132135715,0.018149121891220556,0.00027531310110775494,0.006867193422132592,-0.01373727059436053,0.06659077436187545,-0.015877597804344657,5.810952745643122e-05,9.912194785399752e-05,-0.02293840255982887,0.12682231536460392,-0.036859032847096844,0.00029809473113167365,0.019643491339212508,-0.011225023658490279,0.18114854051082158,-0.011713230011770714,2.5714770753644805e-05,0.023044075328544415,0.01636551078086441,0.16048144223848115,0.018474035158099342,3.4071123516640146e-05,0.0047361174262670214,-0.031035183360343683,0.09539983463160574,0.01445596955830832,0.00010479231860175398,0.010046398894313566,-0.04418499718884872,0.3993613637409229,0.0165258935877914,2.5556487335990573e-05,0.0023828866943116063,0.011370421756007484,0.030581370790989177,0.00479715228708804,8.243222222684997e-05,0.0036347303011781008,0.011751085516621828,0.049424368630084224,0.02400240930266995,0.00010871399421139933,0.005592885386117598,0.03986248744785627,0.03646382048168278,-0.007532046209092356,0.0006248528962466101,0.028779349448544017,0.017793981998676527,0.05885590642787076,0.013650144163178297,0.00012725331461255386,0.0037982299256786468,0.02293640287905137,0.07780379512374357,-7.837880202919637e-05,0.0018920983261901734,0.015289679287842846,-0.00897968031856839,0.08475117634763726,-0.0016238995402964483,2.7245660216240342e-05,0.005947404098922573,-0.017633289425484894,0.05291358012115153,0.012200109887136225,0.0010895256496515592,0.014924045597510708,-0.031937443806272475,0.25987998530434625,-0.03315770020710803,8.183761478070964e-05,0.011812198804397966,0.0025364033459747666,0.003071951228599949,-0.0016431661376981644,0.00019487197527748223,0.0013207878098711549,-0.029534602383668562,0.03831968991615771,0.01915139288600669,0.00044239789937532814,0.0007342575368016415,0.03090401770677505,0.13072620758283504,-0.00753921677175191,0.00183232548823207,0.013324263077369627,-0.0325368337360299,0.11618620301771197,0.09900813280301812,8.984855550372218e-05,0.0025241622745503906,-0.03998639898128924,0.05191784749443981,0.021672807302160965,0.001914576872432902,0.010515834443749634,0.03766870327160209,0.12865113508308454,0.06975954067242016,0.00011600670307058007,0.0028664455511230895,-0.024497837477788872,0.07013365589347192,0.007256298490609664,0.0001415994762738977,0.03405501637567678,0.003652200929362661,0.014352078283000877,0.008880893763991442,6.210889364015796e-05,0.00641652218055745,-0.023206409487055404,0.07986825876442401,-0.011865856236062788,0.0027539229983599843,0.02529353943962572,0.02871326372234184,0.1814397458411451,-0.003156822451582971,7.87210180054595e-05,0.002029833853446745,0.03272736593221815,0.1777144119821995,-0.035734359161876054,0.00013355162845379596,0.0011910725869866152,-0.004529456711111068,0.03024602159986436,-0.024904000322126498,7.083151878588567e-05,0.007592276618721455,-0.013319320420351978,0.05719004437861639,0.0005682543284995968,5.85341111797218e-05,0.012295180920976359,0.060064135047156804,0.11395096848126968,0.041814604330959904,0.000256996140245619,0.013721144432486879,-0.018472671132878985,0.08479190643074719,-0.03434071493729954,5.417384671716938e-05,0.0032191026543525016,0.06318468013882182,0.5784088088646387,0.1682757546319249,2.8184360056747306e-05,0.0065755519584843386,-0.014245104533026501,0.0468830969145127,0.020252486505612507,0.00010620826474684189,0.00587351938436124,0.02072422908101067,0.07967598570525888,0.04002892400693975,0.00040999533015190166,0.007273676554876279,0.003464301152616745,0.017796734433326366,-0.07720079856384343,0.0001114928749900163,0.01478910965340057,0.0024114225572788384 +2018-02-05,0.001506879505529978,0.009873852198431704,7.462404306150347e-05,0.0001613906936540285,0.0014746217625229926,-0.0029848268550173463,0.010486240817950923,-0.03935571055285524,6.82982919888273e-05,0.013729690912928054,-0.036930851510874114,0.13062016021136927,-0.02565549967082661,0.00013079053421007997,0.01278695758347271,0.005039197495045672,0.006125644139776477,-0.0025066485621371578,0.0002776370826323837,0.0027032299866086105,0.0063478580199974564,0.015702624884464358,-0.006127343396053708,0.00021152062483914023,0.008982125083262493,-0.0029185404722439938,0.006692403796261819,-0.001932013088993842,9.522047050837526e-05,0.0075258416793717335,0.0006173595683735371,0.0019178976191193305,-0.024549962557810397,9.445014278162849e-05,0.012718463764100997,-0.014270268930994097,0.1069261618111784,0.003629308291909112,4.5766404465137295e-05,0.018433414506354138,0.0025799679808140557,0.002358238594892677,8.601522715319297e-05,0.0008436675788164972,0.0124926570813643,-0.021181819765947876,0.04815453226788048,-0.030358143127109848,0.00015381120901290034,0.02477159020597505,-0.022767114514227655,0.014975371804635321,-0.0360052579503019,0.0007431127905057225,0.0009165587149813277,-0.027280722036891438,0.28147950441199693,0.0818026211898729,2.88823064909478e-05,0.007095524367221505,0.032623969796428356,0.10243646407229536,-0.023729506230852054,9.46091771433561e-05,0.013076913007274973,-0.03195864683643057,0.19415235368412326,0.07072442589988859,4.6334826489722114e-05,0.0008828286956855171,0.03479504137727745,0.02815660865755528,0.03922315530274965,0.002410238309939486,0.009025573206971003,0.044227829296001796,0.29706239956616204,0.011278298067595104,0.00012251804201977634,0.012396302891632275,0.012678135521029144,0.06540057777652873,-0.02800163900774908,0.0003001801958542853,0.0021400376967336847,0.0033496789683402665,0.01889665423618712,-0.03174357008251602,4.993203035479448e-05,0.008077480709718763,-0.005168251212587353,0.031678557555645366,-0.04537684443174824,0.00026888403971461413,0.02205481714563481,0.05623879028489983,0.7573573138983131,0.059727994990310895,3.08152274573889e-05,0.003293723820218259,0.031237250004418314,0.35197691068148956,0.08899003145811284,2.9651067082023294e-05,0.016891411982954033,0.017669254421171558,0.048048242306836304,-0.03495074345305962,0.00011845774882581175,0.0022576969009078856,-0.013005165705998053,0.08535903746607756,-0.03406815481921017,3.519319995601543e-05,0.0025530590595541558,-0.0017841720584402222,0.005248755187425512,-0.04183298578556665,7.536293421342708e-05,0.008038342414608123,0.004603619844781147,0.01739449733628329,0.000863467078780666,0.00012101415316239241,0.0033503901023537123,0.04571460088963261,0.04043426212968449,0.05031352178049611,0.0006462208581311985,0.01593618535747054,-0.005170388619988999,0.019966826306327953,-0.004603812655423917,0.00010899338888716251,0.01501909407878541,-0.0008166965769479386,0.0032779404071923684,-0.00649205124502851,0.0015991119037152138,0.010278017016095516,-0.025251000271087162,0.26801181497913834,0.005583105509591917,2.4227401805939985e-05,0.0015451040795236067,0.009017847355072712,0.025910720540998463,-0.029548729837052094,0.0011378752711635265,0.02654993898313646,-0.008624399764454482,0.07380865711819823,0.004623663725084029,7.781211473269714e-05,0.007239562332611919,0.053995009297706904,0.08421765326356441,0.11049172033886306,0.00015131983915720904,0.007212353940793022,0.0035752221895933058,0.004489071557252453,-0.029112071735884645,0.00045714126176586673,0.007787338341756912,0.03368795236745368,0.12518591860282927,0.005356618278121639,0.0020857846884331874,0.03068512766377915,0.0246320562762486,0.09942854549319816,0.017434935345193192,7.948404347310581e-05,0.001680265725886221,-0.005563277783024573,0.006762376508752626,-0.05167290533966239,0.0020450719403354066,0.010248128148805585,-0.007397201498895269,0.0262001869852546,-0.02624023039144877,0.00011186110231758249,0.017638839453858312,0.01354408869535046,0.03931816575834924,-0.014508418364660897,0.00013964227513752468,0.015700941136587123,-0.05830352139819547,0.25590666370163595,-0.0019338020215942237,5.5606699182009736e-05,0.008063909944241289,-0.03018664411439965,0.08942422808830261,-0.04053595400737604,0.0031994674235969207,0.01983538181900087,0.008381337673554645,0.038372779706908916,-0.0815072077661516,0.00010865022961197132,0.012615586636539921,0.017934059925673578,0.09855176509614985,0.009291613014854469,0.0001319699323119923,0.004557546571936055,-0.04668212946595419,0.24512696622092242,0.051075624785783445,9.007582887891018e-05,0.005884319127478256,0.024023641135989687,0.11644557275063247,-0.00832211550737391,5.185172933010491e-05,0.03896573395156429,0.019152506241379454,0.030667469781116147,-0.03280274323971565,0.00030449282299245106,0.022829776543590394,-0.002892760923811297,0.011581928468248187,-0.0013063207867846302,6.210778484086574e-05,0.0025500524069123343,-0.01878040398823217,0.21698475313444696,-0.01768708043232,2.2330939621761818e-05,0.017491705504902214,0.00885434653363934,0.024660618417330776,0.009352523857152508,0.0001255051411010452,0.0016354648144559785,-0.035055500346433933,0.14656947407445384,0.10504055659837146,0.0003769993588184531,0.011674699154629195,-0.03868111757142123,0.1840757649780801,0.009511012731286045,0.00012035778737693714,0.009206657489340696,0.0010783858240157825 +2018-02-06,-0.006477125759088356,0.04574055339005158,0.002641013127649672,0.00014975023019833287,0.007139202351918972,0.004347381179582121,0.014710577283478767,-0.013021874278352203,7.091017081295875e-05,0.004860415457249543,0.001275729252707328,0.0036984081209054586,0.011138061617730635,0.00015956619335623959,0.014866336247446833,0.02070537488037245,0.017449688977448356,0.02658552469546062,0.0004004637997583769,0.00037157858897469585,0.029585112274464045,0.08071717962822052,0.0037885315222532757,0.0001917807512011334,0.009136574395468703,0.0018045413533532273,0.0058486400172242745,-0.002913692697156151,6.736878071945428e-05,0.011973494120569531,0.01694109689572165,0.057159486718904765,-0.003877871820381698,8.6964711666953e-05,0.004162907051030975,-0.01967220771617829,0.1597826896197874,0.0009044355748443763,4.2220365488942624e-05,0.014420515066830378,0.00014550118094645728,0.00012762446308119452,-0.10041555168834207,0.0008791791434207842,0.0045320838915383485,0.02968420717746987,0.07452238565766686,0.004532444630395213,0.00013928379493023188,0.009032840365209202,-0.0153767435989112,0.011532603122947523,0.0063958706599549,0.0006517205033876532,0.0016545724999228084,-0.005461830374604625,0.07790780526645866,0.0012669216782801578,2.089200050746104e-05,0.01010475574536934,0.017606213995935503,0.049412214592743524,-0.16252893232650448,0.00010584800945481513,0.004442219301469097,-0.006133347794708586,0.03530501187295481,0.002536063454316229,4.890159772496586e-05,0.001920132112331056,0.01700973068521562,0.015366876068356811,0.0015970612471961616,0.002158911408433587,0.0058690573572309345,0.02488969303694074,0.17505060503268466,0.006119712475364772,0.00011700597290466203,0.01595016063433891,0.022245194277342145,0.13916845578539205,-0.05859783251828735,0.00024751619868709405,0.0002885069137697376,0.06788498636980832,0.40721720802872907,0.04682849094175424,4.695788946168722e-05,0.018623765810804715,-0.027234781196444895,0.15947111685237236,-0.01164818160851871,0.00028146776340883905,0.009907206812646736,0.012370930162463647,0.15625435917676156,-0.00012214496437258515,3.2854922291963376e-05,0.00021614007275221536,-0.0008134626212303915,0.007663135772836127,-0.0033302041683557562,3.546604743410139e-05,0.0073646565675984915,-0.01895533732425066,0.05716157556021918,-0.03175787877696537,0.00010681938724573333,0.00573974374334603,0.004595878820119656,0.03620982129759887,-0.05349630099782069,2.9318015066308166e-05,0.0015878567853791943,0.025171561539413825,0.08026561084376628,0.057771474565625466,6.952772599264338e-05,0.006117954639453711,-0.0012218483385771739,0.004092893299491609,-0.09107652473609668,0.00013650088759166898,0.004600624410207708,0.05373172609007275,0.04836739653302486,0.02851106943492506,0.0006349706364427028,0.015777075635632208,-0.012437559609373688,0.05080318614393944,0.017414525684014814,0.00010304578550608395,0.002249192459576946,0.0005233392235118891,0.0019745135325625607,-0.020490102099925793,0.0017011489671610583,0.008344957271602588,0.010656542787593986,0.11307659658778882,-0.015520028626945367,2.4234038853061168e-05,0.0034514183653301988,-0.02647734854336367,0.0705484976562214,-0.04048193749887124,0.001227037943119562,0.03286548591779276,0.006687177050554983,0.0502652553351633,-0.04266361327095358,8.859323738619421e-05,0.0018839310114956338,0.000979778163553223,0.001526377573513587,-0.0017060799754779156,0.0001514994882529382,0.012253234276960501,-0.017974629120639886,0.029220570168431777,0.0029109213759716604,0.00035308166514072255,0.01754955728969477,0.012818819588462345,0.05358913086892142,-0.027464245229041777,0.0018540509432758106,0.0027304640833202016,-0.012991232203014276,0.055933076770322,-0.0397224726799811,7.45198558392252e-05,0.004340519434320974,-0.06516556848713578,0.11202442940459875,0.0635878404781797,0.0014460477683761455,0.00754340427344882,0.006600177112835055,0.020251165307817624,-0.11340333000888068,0.0001291283517485598,0.01413207118543081,-0.0014548831449337795,0.003801477922243611,-0.023780893601528928,0.000155144368517721,0.006363159254675951,0.006381788541294745,0.024449906430127722,-0.011458519977769211,6.370582341989435e-05,0.001694223801305603,-0.050364056002015004,0.1751818744440991,0.007127125418144055,0.0027248938401185233,0.002998714914120839,-0.01790067841990226,0.09248263726768703,0.018666588099746265,9.628305365159094e-05,0.024966819023727212,0.0033592952043443483,0.02036154037501629,-0.032880402771922355,0.0001196460387541197,0.001081085047535711,-0.012606389972588127,0.07755702586109953,0.0002444969807743821,7.688087011729893e-05,0.013999479684156713,-0.05414471140071474,0.2751361885195948,0.046450852980635005,4.946018328823932e-05,0.009261575518081877,-0.05800771372450875,0.1223649200496478,0.09226873632421972,0.00023113100735752437,0.021475353294595555,0.005017378897751993,0.019574982591339624,-0.015907736891366427,6.373674643389061e-05,0.0032708271377038826,0.02854559888327866,0.3066017642633954,0.018707121128269867,2.4021260599648468e-05,0.01668573000673711,-0.014635978460487907,0.046013697053954354,0.036826057236299906,0.00011118433359146651,0.018197155898978037,-0.022698117152959954,0.09708236055520106,0.06026790971167141,0.0003685339283457967,0.006641850619421379,0.007600721703173132,0.034678939272826795,-0.0024510115998469945,0.00012553384239824447,0.00716776525876842,-0.00012747604761786463 +2018-02-07,-0.0021060306453762104,0.014401359900630104,0.0009750439084433425,0.00015464923159803063,0.009204427115264056,0.034725692531726186,0.13323300796931126,0.015713483332475974,6.253880943316328e-05,0.003208496432823358,-0.024411200209841163,0.09039043187919718,-0.04605981450182642,0.00012492917605787127,0.00011908472713227885,0.01776695890416484,0.017450922842174657,0.009788561230548533,0.0003436074375559709,0.012686182631971188,-0.02908637140383839,0.05922021943212708,-0.04650210676850211,0.00025699063965543167,0.0060667106540980165,0.008504160707422591,0.02226356255312683,-0.007610316395882911,8.340335832991771e-05,0.008577768891415585,0.013428498819024635,0.052356790092083674,-0.045496302105231104,7.525655046645425e-05,0.017359721483854163,-0.011953415858577884,0.09073254704183939,-0.0010572305366665267,4.5178056142918405e-05,0.009691217699558554,-0.008378306066954017,0.006491936841821142,-0.03514712773648727,0.0009952374780603833,0.0006841477043604193,0.006649264082872252,0.016247955973637252,-0.0035044630272950115,0.0001430990447171698,0.0017315157400234892,0.025610686208965054,0.019725578824228797,0.042561742917968395,0.0006346230140511837,0.004861053138061625,0.013007522346482942,0.18495251494068468,-0.008508491644084137,2.0958351943013095e-05,0.013526356947382655,0.030167085113193885,0.08919521423629138,-0.07881008645952699,0.00010047148782222192,0.005876460685860318,0.01967708202015821,0.09865388935622041,0.019336068994722563,5.614464014078819e-05,0.014131348611320411,-0.027798822588426125,0.02653249376723834,0.04567084190567006,0.0020434842914295952,0.012988755690185321,0.0265823637060851,0.15528802565416078,0.005904922771694069,0.00014086650360245733,0.03783086906715118,-0.0646834011881317,0.4021615491234284,0.15604189756245088,0.00024905802205845866,0.02339113733918852,0.027701157667321633,0.16637741062535827,-0.0006584765638936518,4.689910060078219e-05,0.024093294997843462,0.007530687596070883,0.041442831619184446,-0.019919915568614065,0.00029948289164238455,0.03578467149316055,-0.026281006359103645,0.3653774164519023,0.00899235718346531,2.9849050583927263e-05,0.033759966382007546,0.0023769966764328344,0.023617102714344654,-0.025983771350968153,3.3626654766469e-05,0.001472747027571258,0.008351806228702784,0.020113587440480904,-0.016919355126869706,0.00013375610932853314,0.011052450064678466,0.07302131788484612,0.5108685008211182,0.059627942879069924,3.3016643251848424e-05,0.010022467795742153,-0.022081003014224863,0.07600052544131293,0.04113707187993494,6.441389848152962e-05,0.010719191618088608,-0.019618349093334424,0.06491480183897873,0.1209867234278124,0.00013818704123427588,0.013028258743321313,-0.004250686931976898,0.005196929933667773,0.0006478254026543078,0.00046750667886528193,0.02141764818831387,0.017308606675933515,0.05816558868485763,0.01792236905595374,0.00012525122734578415,0.013053010977958558,0.042255722066783345,0.16093432615308104,-0.08108340757120427,0.0016852177162899064,0.01758335384757769,-0.03012802199034652,0.2687559134962996,0.03371680916330729,2.882669054983566e-05,0.012874200286875581,0.05102786697080337,0.1551057969205618,0.030272888287305903,0.0010755996568534698,0.020230279508875328,-0.001139904279119114,0.008737097740209669,0.0003151183219887017,8.688140452471354e-05,0.01030057360476549,0.010101979386908674,0.014706534026475414,-0.026202783790071082,0.00016212184300694115,0.003143468324497734,-0.01425141348554606,0.024764741630536543,0.0005342630155872777,0.00033031481533365195,0.0016170208871314358,-0.051914930745076936,0.26009642958321705,0.05817056416805118,0.0015470638195496623,0.01302950988570355,0.0028735966588780463,0.012334640362596173,-0.0009777062757695043,7.474629817802782e-05,0.008398804159462158,0.03451897095511439,0.054271413126216896,0.027696765892006422,0.001581116614684478,0.022784450756917644,0.015005384701288491,0.050333828503026014,-0.005565176395318894,0.00011811449721226661,0.010688549016027091,-0.014070909805350031,0.04602631679370719,-0.004095781483809369,0.00012392996669218097,0.006825797317361987,-0.0351132406842407,0.14465754290404093,0.011494489952481987,5.9243915570194565e-05,0.0026918064165921073,-0.026620152434127377,0.08691025888759848,-0.09738288379646509,0.002903070297755015,0.00790471639354427,0.009429079065367609,0.0486722707121313,-0.00018924464775118966,9.63669780456179e-05,0.004845188013635569,0.006597424674506214,0.0370651481148743,0.00114117827633344,0.00012908312918638704,0.009840148718209178,0.0031094468261114367,0.01809283232100076,-0.041643840549137355,8.128778223036669e-05,0.017764103530863797,0.0045908711637438595,0.021171305434355144,-0.0014654522083918891,5.4499794197767766e-05,0.011064151450013203,-0.06764867104888903,0.156531797177143,0.08758270351902589,0.00021071045840396582,0.01778437155212495,0.04635514172111333,0.16790876750371445,0.5218757739180929,6.864974292579651e-05,0.006543573789650108,-0.034108295776233255,0.3855096394329347,-0.04322953215567136,2.282737977009565e-05,0.025624292545471012,-0.00828706138870883,0.025023829381499853,-0.058371763417056965,0.00011575926224764119,0.004779953894912686,0.00859049466053914,0.04134988212281174,-0.013443027484437526,0.0003274702620295536,0.004079014579453269,-0.0008129515242544,0.0040251653371027474,-0.03334487251684212,0.0001156785194664601,0.015764999825215644,4.491993729659335e-05 +2018-02-08,-0.0055459818161500436,0.037754616340127875,0.0029294062665813233,0.00015534417173615565,0.014910237835005653,0.016900258461316705,0.057009311087917056,0.0016933421604445231,7.113086337474216e-05,0.013988416960945813,-0.012046007616413739,0.04135503728786955,-0.025807378294338153,0.00013474477116595174,0.009424231982667253,-0.016113812749262022,0.018122996774773026,0.03737957756800829,0.0003000793813270765,0.01986426044487677,-0.043963567352589425,0.1007350698510227,0.06542086345393294,0.000228354726816081,0.004039452429922124,0.008747289157954441,0.02094952814672913,-0.04141380768557936,9.116874518138142e-05,0.007547714839669349,0.012774885073397888,0.05468856582065925,-0.021377376817591928,6.854098203952834e-05,0.01946674682208401,-0.018173342682412878,0.1378567096972926,0.004767726055101961,4.520698272241251e-05,0.009140797074622307,0.01314703630078796,0.010410079932602234,-0.0017867501658035455,0.0009739094603701871,0.009290429592236547,0.021758872456747538,0.05635707517880425,-0.036658913439045954,0.0001350049918301143,0.0021795101598506873,0.01085370247942622,0.008424343596969731,0.007194554790339535,0.000629747133093643,0.0015348644445359939,0.011880928014058172,0.1567825460331465,-0.037817201083598484,2.258267795126247e-05,0.0031922724484176454,0.0014678141983964696,0.004829120831550913,-0.016005047901669046,9.029299319433573e-05,0.012384971247668387,0.0008486967040840474,0.004852902329478984,-0.002296491254040719,4.922806702483955e-05,0.0014162314013235378,0.03444074229821637,0.02682305136728056,0.016186504245727852,0.0025043054259418214,0.021607513453571384,-0.07514536846850073,0.5273810652744172,0.07726225169318096,0.00011725457394238,0.001961965898275659,-0.035899756060715875,0.18407799319813697,0.009518133440788175,0.0003019936828593467,0.006275548635449273,-0.019997868968683632,0.14839564326087906,-0.06837238501917214,3.795976575011272e-05,0.007619474098142445,0.016609555031602222,0.10528970107865616,-0.02978941518641632,0.0002599913581131942,0.0005180273500960577,0.03675926995373903,0.449891883079883,0.026558445109307972,3.39069675913879e-05,0.029736902798746186,-0.0031053414701360826,0.02801517105684134,-0.0031988481837724567,3.7033758794489464e-05,0.01036790826950891,-0.03372014735197949,0.1012052661517222,0.07010710517444062,0.00010732702918402446,0.01647514299820668,0.03814578165871758,0.2785376099093761,0.0035384297575352607,3.163406845151731e-05,0.03284383784763393,-0.012778278022476478,0.03634675996713757,-0.046279039325117406,7.794423741927693e-05,0.004974832269699283,0.006814627353614703,0.02898159360007441,-0.03394481102114348,0.00010751484807883582,0.0029033504868624486,-0.06049662464969887,0.06564141660418404,0.07278947882350395,0.0005267793725989818,0.012680623040377067,0.027211056862109815,0.10679407517505865,0.02397596440198669,0.00010724677952560168,0.017331527541446352,-0.06400734123960039,0.23176835728244358,0.048348377046615654,0.001772535001526286,0.030822252996067126,-0.002738992267444221,0.02443362400609979,-0.03192046066012428,2.8826048630435018e-05,0.012303793442449857,-0.01752358401636063,0.05369253314748755,-0.09924151386025225,0.0010670390440071305,0.010167945662886865,0.01760313999984661,0.1267335822258907,-0.014814698910516925,9.249623927675828e-05,0.0040339912317667185,-0.008016800652995638,0.013166409565263057,-0.006717573998369275,0.0001437073927947662,0.011141385701112404,0.026176393145230292,0.0355838361100631,-0.03680025567215511,0.0004222415364901735,0.0058054686168851465,-0.010824751569340964,0.03819547158915862,-0.007920393009024317,0.0021966274307581137,0.03590129180770914,-0.009781465825956497,0.03839518343861532,-0.0929629666827923,8.17367876658946e-05,0.006078982541942104,-0.01336185198815652,0.017747601850507194,-0.026841663013393986,0.0018715617955081454,0.00964318104131211,-0.006880160410726772,0.022934848555923176,-0.021453908352037043,0.0001188553468308879,0.002063729979030509,0.02116438101722388,0.059890469265037105,0.002597695576081658,0.00014325448627038073,0.003123411510536853,-0.01885464261377624,0.08600933739212173,-0.000414597834951863,5.350404638911282e-05,0.005106499108221223,-0.003634013241487244,0.010520679489458076,-0.060378162808917425,0.0032738650472506816,0.010205620705773775,-0.0091331083554984,0.05028188658382557,-0.003684295581035012,9.035404849178009e-05,0.0060329472828780295,-0.01801153833958916,0.09767975586402287,0.02354175307538333,0.00013372328161450817,0.0015814878704408291,-0.0002604290407676564,0.001583954180318079,0.0025049830844296713,7.776702686466779e-05,0.007818913348363129,0.013202525990857658,0.06300800014194628,-0.036664932747290546,5.2663380166291656e-05,0.0026252855363150156,-0.07732095963383741,0.11719479917380361,-0.023350668388743,0.000321675726410105,0.001875920489471585,0.001790924578853888,0.006963149093506294,-0.012046115459615479,6.395668986917866e-05,0.008634531317057617,-0.015891834687524788,0.1560438516836426,0.006180161090880954,2.6275964266024038e-05,0.028973156335313905,-0.014617828590431588,0.043673217387586796,0.027898203328309907,0.00011699751624876938,0.00019405845320799407,-0.005157150360260271,0.01875084034804059,-0.0052155978578789465,0.00043352787657497955,0.0020798700162004326,-0.005543986121616001,0.02365906274274317,-0.0533263579256847,0.00013421355947309833,0.017846541024828372,-0.007085974326650245 +2018-02-09,0.003825732163236565,0.025765272434055884,-0.019273844126761225,0.0001570241340699557,0.0012154992208535844,-0.001525793853857251,0.005727614460288923,0.0011434084080091222,6.391938840155102e-05,0.019834598852071107,0.03337256836957157,0.09672820033254133,0.11721631300239685,0.00015960030918052827,0.00477080247314393,-0.055036204482625,0.04876137794219925,0.24353782362454693,0.00038092577699922267,0.010611996154859474,0.024978131675930132,0.05319596051749942,-0.031807888293931746,0.00024568524102172167,0.00927698598989083,0.0025051566292239747,0.006980243576482125,-0.08774170645778474,7.836299866479082e-05,0.004448746627606279,-0.03207094744701501,0.14013641556883297,0.002210904428275976,6.71507148815569e-05,0.01873946244857514,0.0007838130931594112,0.007688520571339536,-0.0008858701134928944,3.495975236208543e-05,0.0039805330152636745,0.005985372421503755,0.005229523555758667,-0.04993868539230815,0.0008826201565719709,0.010956721966150119,-0.035442743124234795,0.0859166199510285,0.003071353189728932,0.0001442487407033857,0.0008166161660760709,0.022523975800818365,0.01600509267719818,0.047760049389351925,0.0006878776787510124,0.006988125037222339,-0.022842906409276248,0.2780097490416885,0.05022320430868117,2.4485790204529876e-05,0.012783229763768583,0.03723233356799136,0.1077574943417898,0.054332427847906484,0.00010264169385542764,0.0034101798052862484,-0.0017504444328079738,0.00993335513581128,0.0005319563931128708,4.960371282753691e-05,0.007669499977485946,-0.010607757697752618,0.010056997458257812,-0.1851063893244026,0.0020572080886203134,0.005032926114711211,0.02052701490118424,0.12995974553495482,0.004331784452766715,0.0001299777614528066,0.017063978844270824,-0.02180614520358226,0.13819085832455527,-0.0058153449224432035,0.0002443474534666778,0.003640362072605723,0.0010791099419412838,0.007317829456970926,-0.05303410139124657,4.153788367453054e-05,0.0265258207311208,0.02372061272664565,0.1595164505363129,0.01570889526898842,0.00024507963966228656,0.017989637904141976,-0.08212347596418178,1.101864977819438,0.07639158500570717,3.092923475183901e-05,0.02017723955027703,-0.006794334117697769,0.08173891195060164,0.011871864839637593,2.7771526792320593e-05,0.002211013439683956,0.021219957729831363,0.058694052122027156,-0.02378103590797143,0.00011645903224582953,0.018613641217590248,0.017768527792214703,0.1130667184114313,0.0037517886659709085,3.630020138320615e-05,0.020738983102609874,-0.010727648209388947,0.03701690108851041,-0.06423076871967565,6.42512893368653e-05,0.0012366113091597528,0.00040032810042796513,0.00152623034346851,-0.003947116027127322,0.00011993462671692653,0.007445285650423885,0.03277263792959621,0.03257430782043716,0.017059566365308382,0.0005750581532069023,0.008105701979350847,-0.012878641989518078,0.05003619292574517,0.006427225787891137,0.00010833575672425165,0.010023406179365821,0.02715211356779896,0.09702969826975784,-0.002084514683409037,0.0017960488111713783,0.002089033623403203,-0.027231343568533746,0.22764977897519084,0.02720862122718586,3.075983714765593e-05,0.00811333709289251,-0.020359511161649205,0.056080232343523766,0.008238346648660364,0.0011869401254179768,0.03188343906455118,-0.04489077848939393,0.32251665469949875,0.14067267412435366,9.268952012968088e-05,0.003853856684667479,-0.013923526064275086,0.01987530447021897,0.010210713105077294,0.0001653411020737554,0.02328497710902855,-0.006925257552429928,0.009620988374837595,-0.005137499262925535,0.0004131617930366837,0.007210829070507907,0.03033139805052281,0.1183936567095888,-0.003154983344040043,0.001985703198075384,0.0034896327018428485,0.038409589501103,0.14611181630076386,0.0701369163503329,8.43421556443184e-05,0.01814758232467496,0.0402496040881822,0.04893319115241464,0.02796360647779455,0.0020447266888161263,0.014148640593887074,-0.008779308658081358,0.033233642065145313,-0.057171912414048585,0.00010466426220765613,0.001101470863904905,-0.03065932869809137,0.08106338146528998,0.019718750940206958,0.00015331982036175898,0.003636682028810398,-0.01217438615111633,0.04523302891115597,-0.0015457690256415143,6.569091749715249e-05,0.011306699459188416,-0.015417606509183394,0.048260813329571446,-0.027785458331235156,0.0030278919864440246,0.014665549139542718,0.008599835212840497,0.04540013771229554,-0.01320112572237576,9.422660203198171e-05,0.014437421071377453,-0.00882388853710265,0.04339108999963029,-0.030433941565924685,0.00014747562248748866,0.00045234596691868536,-0.008472634459547275,0.045348648740952534,-0.05398944717731467,8.836958543840992e-05,0.017792658694569547,-0.008782675995458906,0.04310135125929865,0.00021788584179794715,5.12133718522889e-05,0.0016207861913494416,-0.01869173644317547,0.033118155592457954,0.0007088992894148877,0.0002751774872749235,0.00858006201137647,-0.01915303221537437,0.07836797764102044,-0.011512406652688899,6.0773363845149114e-05,0.0025684746301140845,-0.01002336950834256,0.12934911982891234,-0.009622315406178389,1.99931649187302e-05,0.03680333350429599,-0.012360710533898029,0.03801362204304017,-0.00010361197802758304,0.0001136614385377086,0.004093041560842688,-0.0010863492057380298,0.004040843259882104,-0.007608692679134531,0.0004237653248825068,0.003007798222773842,0.015120989925006116,0.07182024716431114,-0.02004459826960869,0.00012058828664960408,0.014504424415284442,-0.0029107347038579536 +2018-02-12,0.03438051789030507,0.21898945713366258,0.0527532964071979,0.00016602588017971436,0.0161164094995598,0.03203473966718756,0.11226650588394464,-0.0002007817478149186,6.846703476897377e-05,0.036395617925525946,0.015079385562730944,0.04943612851861459,0.023976058691151374,0.0001411030488178709,0.024022521335252674,0.007227353436647057,0.006622808459482915,-0.013269409240557556,0.0003683027442627936,0.019178121430856752,-0.022804232888225088,0.051096553720744106,-0.000749888031509625,0.0002335186817750951,0.01586999715771754,-0.007749482737436757,0.01814892571492053,0.006661357834382878,9.323275806474146e-05,0.002903434789381153,-0.0002942604880760435,0.001155675298377669,0.000281120956649644,7.47112453228676e-05,0.019422074024253215,0.021068117273996094,0.17020734830392417,-0.046985919014171734,4.2446905638168184e-05,0.006892413468637087,0.005402578409717333,0.004346681652007885,-0.08474120675620943,0.0009584909825147206,0.004955124308692189,0.002328345582332171,0.005388677268821129,-0.05681630167043162,0.00015108701905504758,0.014281397170930852,-0.01421504538061124,0.009534442503692436,0.004593395365171239,0.0007287478804064152,0.009332256064191049,-0.009493204029119746,0.11768164046435542,-0.0017561656442249308,2.4039580818692178e-05,0.012404142671396862,0.025103182093506052,0.0762940852756944,-0.05141865462077131,9.774373803095256e-05,0.0014480663648964278,0.037603181142100664,0.23727675031603707,0.038438356059670276,4.460989688578342e-05,0.02226834024528165,-0.008276208853302755,0.007534152590328901,-0.010682619423694494,0.0021424959147900856,0.003790105455466315,0.005039294580523262,0.03040691668753673,-0.05597690203340127,0.00013637961814276888,0.04546356385784442,0.01600164027697259,0.07751340655120113,-0.05960425997176856,0.00031966560593999074,0.017299056612396294,-0.018220768238479648,0.10341575453469347,-0.02423638345508031,4.962961830579443e-05,0.008745704079054442,0.008050981679627556,0.05126811075973465,-0.045746257906311476,0.0002588143379352778,0.0006469997270124607,-0.00041275410530100504,0.006314431486633831,-0.02390309247744816,2.7126101182503695e-05,0.004657574332888846,-0.006446328033270919,0.08600590588886471,-0.014039833568379236,2.504181691998238e-05,0.0035613231229346767,-0.022404334976652427,0.06904799272384497,0.027531078903249556,0.00010452104793416952,0.014411468133852657,-0.05412370804480536,0.3600732326405744,0.029316687515960293,3.4720748666374866e-05,0.010407184085630105,-0.003971847873860632,0.009729789967239048,-0.06633717517261513,9.050373928577607e-05,0.004856604082030841,-0.010916889804954094,0.03677835409315752,0.036859981972044376,0.00013572355682044061,0.008551028368853087,0.0126344444470581,0.01324356743785584,0.0031101180888849036,0.0005452889841332302,0.003150826153079634,-0.014732544312830154,0.05283663164400376,0.01606450770315761,0.00011736230804343366,0.0038286670990743702,-0.015429716303372,0.06406482579402675,0.005006215492910474,0.0015458148183684387,0.01593860100742213,-0.01789116439228137,0.15024631317272732,-0.05767869867635718,3.062083135919825e-05,0.01103202273723782,-0.05596968684452927,0.14728337620679577,0.08760622464715434,0.0012424256696649523,0.042998147556805526,-0.008306186872648462,0.0644891476659367,0.004320369721076281,8.577104548819256e-05,0.011157493028832975,0.027781380971932536,0.03904873921917497,-0.032059874868452874,0.00016791604638437195,0.008132895271233405,-0.024002371130153605,0.0358149991321151,-0.017841098241686032,0.000384674249776691,0.005244129651724293,-0.017540954317054342,0.06298486676094539,0.007375720930080618,0.002158575998038995,0.016538539986453882,-0.008579852434998543,0.02971076530042151,-0.002020484204635439,9.26523310441781e-05,0.0039754506530185665,-0.0881568285909412,0.11064150656318864,0.12249827286692228,0.001980683433976889,0.03481263704696402,0.012261374097858485,0.046958164869371904,-0.017285035646100195,0.00010345323204983719,4.341758617553413e-05,-0.004886050810682499,0.014917445331081018,-0.014125680396753364,0.00013277732048403706,0.006452381274059239,0.046582098325763655,0.19787153437795177,0.13491733899830027,5.745788705755144e-05,0.024955364595212044,-0.029413726664240036,0.09102112862969113,-0.016181003054432704,0.003062851168962572,0.021909012201213694,0.023399199158769937,0.12929992078039176,0.012196088727752467,9.0020890717406e-05,0.0016346930675173892,0.05091519502730597,0.24981719988332984,0.12474079069568202,0.0001478038885008366,0.0008983481706605961,-0.023496107026303153,0.14234437157549806,-0.0720302385481278,7.807361901472738e-05,0.010398102366189862,0.014557055292752205,0.07004093896494633,-0.0017533283623306722,5.223588618382192e-05,0.012324025163942268,0.013368959531211857,0.02757436073457284,0.012873551764524782,0.00023638589009476735,0.00320297880017647,-0.015138138267969148,0.06687532742062278,0.013143657725739815,5.6288661578143424e-05,0.0017539236655127524,-0.008220867240097636,0.08874626345080128,-0.005579110682980807,2.3900051873417882e-05,0.018739905581511954,0.011739161405021832,0.03905281896666814,0.030303649957036723,0.00010507360920591762,0.011468624480964232,-0.019337013214374997,0.08153653483734351,0.03384610918252505,0.0003738222216420616,0.008584809738489317,0.004683522401069488,0.02392842826173518,2.5153619995989798e-05,0.00011210635308867889,0.01011727831175726,-0.0033566133911652352 +2018-02-13,-0.059168700843357534,0.38516262081656066,0.18034830044048492,0.00016245552440483205,0.023809513805519305,0.07318347472442309,0.22474129429144346,0.07131444916447678,7.813411091842104e-05,0.013566358534198865,0.03271671732504935,0.08691319792501241,-0.028134466856043903,0.0001741330457577621,0.016422609442882305,-0.015394555149759643,0.018493225508211513,0.013185896878793183,0.0002809456645233166,0.008026720284082935,-0.009056851232777214,0.01948775379522768,-0.11417220457122748,0.00024317180711214262,0.010653089671189315,-0.008484929048061227,0.021424403598085735,-0.026133938638985204,8.647413247435142e-05,0.0017253675723239708,0.07255143887028169,0.26456383085417084,0.1865744019169354,8.046470338322992e-05,0.023713194514844146,0.008542019608582106,0.07899365653347847,-0.02019808976308565,3.708232545510779e-05,0.001819436922457812,0.0060096045309548755,0.0050252709466580055,0.006948449269043995,0.0009222129104799021,0.010047959650036102,0.05279990715856587,0.12926483558762317,0.0640273077909809,0.00014282842499166185,0.009328354533200953,0.006530906815085633,0.0048531206364071135,0.005043998358972123,0.000657774084020725,0.0016677723902502176,-0.001086342576177658,0.018199294316520145,-0.0031176267312295457,1.7788324437537508e-05,0.00010198820902321227,-0.02581299459328037,0.07479257037214493,0.05553707750329899,0.00010252528130468043,0.014342926393399251,0.015200179874662023,0.08772902036169426,0.013186844507099645,4.877162948672655e-05,0.015209480066620809,0.012252763358539828,0.010397392411810728,0.0021331406129437604,0.00229843688929702,0.0046966506867362765,-0.024557969017551924,0.16454232967807564,-0.048022330309428735,0.00012281938345014173,0.004589080074867797,0.013468637418906132,0.06922165788582292,-0.09269530170813768,0.00030129359334558626,0.014028297319625672,0.030819839256023343,0.14151671295858934,-0.054468616704582994,6.134562460807242e-05,0.008042841291447589,0.0030599689128095464,0.01474092364609522,-0.009322076959915925,0.0003421205213316586,0.01758842124868086,0.003917081705715861,0.050435554567813644,0.00041426445617140893,3.2229685026733166e-05,0.00561730012344293,-0.03289527778088926,0.3423172349022221,0.1311875009162615,3.2106022206390075e-05,0.0022489105333500137,0.016729473922612762,0.044305371113241634,0.00426921854205814,0.00012163222783797234,0.0076267403434105985,0.0004602367238662017,0.0031415955962849134,-0.03358365715557047,3.3839455486798756e-05,0.013662885445915377,-0.002271055791961946,0.0059095748388191425,-0.0010647407270867081,8.520183510427393e-05,0.0005711406160629248,0.003327367929876011,0.01190300292782587,-0.0014073886024596294,0.00012781825424816262,0.0006018769085069946,-0.037545732933636285,0.03765956246810675,-0.045411431959015924,0.000569850426943094,0.0001384134910455189,-0.011109386063343767,0.04525385032330045,-0.06284102078230978,0.00010332859691896239,0.00024402892442169184,0.04515580717514711,0.16684916843100453,0.015927946959976555,0.0017370356750974595,0.03621701306197227,-0.022579872439280207,0.2368447399552314,0.012601419695574897,2.4515453723038516e-05,0.007861899022992204,-0.02282745299781496,0.07067479332141845,0.004812770465003347,0.0010560006362798603,0.01864313165437942,-0.03846772329368776,0.27048677508686736,0.06801799880052802,9.470569394331668e-05,0.008181810091851203,-0.027353325095823954,0.047532605984960966,-0.09457413749321211,0.00013582005067580476,0.0005309045614511358,-0.004248726893400373,0.005418692085212393,0.0001539868617214075,0.00045005776215305244,0.013092073284516729,-0.028187505818683213,0.1308115942281016,0.009916342532892908,0.0016701702806915526,0.0018897334486707175,0.02881843908218283,0.10915430533754421,0.028409153657112402,8.470712744034007e-05,0.01105026866786486,-0.02974794910261868,0.03462367674109102,0.004178774073419258,0.0021358022376522755,0.02472142842351178,0.026362640938043698,0.09252555437521458,0.04867278201613111,0.00011288682414437617,0.010983731647463926,0.04281579629026805,0.11293639951109556,0.07181384870347464,0.000153684639787602,0.011570763075475575,-0.030871319971137328,0.11778181528768425,0.011085444607956282,6.397214023724473e-05,0.002364166551213735,0.0487421836813608,0.18718065749781948,0.05816295335553188,0.0024680961322738697,0.015397533493925933,0.006800088460154936,0.030541036736554984,-0.0003913423520462553,0.0001107570443384972,0.014857937625391391,0.01758687805475265,0.10405597120823536,-0.08484836933020871,0.00012256953248582098,0.011329556403759418,0.0034948725593761942,0.01870294122472839,-0.09497624701250315,8.838328382858589e-05,0.0005621492379102635,0.026203964893716205,0.12964927226216752,-0.00855796550825515,5.07977317629675e-05,0.0012917741546494773,-0.035032093486757995,0.07083701968152496,0.009047606005665785,0.00024112109339716485,0.001250891289160591,0.01586767403698231,0.06039805815818844,0.042816569159889885,6.5328798407596e-05,0.009578335624509726,-0.01665842822758018,0.21951157788061385,-0.12632272891641097,1.9579783076004157e-05,0.007046339203310748,-0.006963117190340185,0.02115394778453347,-0.04989594501380924,0.00011505917110205853,0.0006309102618962995,-0.0433938625366517,0.16757393296233664,0.13273231907484254,0.000408178210292,0.0004777373207799293,0.0026849829457058555,0.012332425166015471,-0.05735071004816748,0.0001246995363451444,0.006695929270425811,0.0014445253308095218 +2018-02-14,-0.005195541757456646,0.03559363067215508,-0.09163583252790657,0.00015436368365457425,0.0010901806824563523,0.009185973904411504,0.030167612979000426,-0.02053536654643091,7.306254332894822e-05,0.0006231217902733805,0.009148437987497784,0.031332863763422626,0.015260105027821403,0.00013506538556733888,0.008236201619355229,0.01123111650452251,0.012708848888915266,-0.03947460970671791,0.00029825282972286256,0.01287819324514131,-0.014726513252891755,0.03434669942625876,0.0026809148976781605,0.00022434308896314482,0.005130938187957445,-0.016946915453448147,0.03819907844506372,0.05652178500704439,9.686893320258778e-05,0.0029143737377730584,0.05046101493596521,0.18381345501604676,0.02477126906067598,8.055055522212455e-05,0.0023275850892892106,0.030835863154187845,0.299047184889257,0.06247377577305619,3.536022384815767e-05,0.010205437000074194,0.026998814838858663,0.024759320686903473,0.12852429022835957,0.0008409124107843488,0.003347015241421732,-0.01791634743381093,0.04371453918798091,0.01012129108351488,0.00014331295714435928,0.016371491108347114,0.018384440931535878,0.013980361869034997,0.02363985320401416,0.0006427711458441311,0.007850181078365534,-0.007385180224512352,0.1075156850923201,0.0029386441751380146,2.046972748588855e-05,0.019687436340645684,-0.011366269275798037,0.031326280260758274,-0.07489059501833706,0.00010778545253464962,0.012318174306105942,0.00972561502909102,0.04206991231050265,-0.08208413385871116,6.507396754179516e-05,0.001249718055743123,-0.0209377833552346,0.021297925631256754,0.027828625635284574,0.0019174160932429463,0.011939795351139766,0.07158778512446554,0.43186104794372043,0.03275208214419349,0.00013641024827239332,0.027818021829639005,0.02374028986306794,0.14219125545281658,0.009490128231138786,0.0002585361995476231,0.021962762997871362,0.019706301872317464,0.12446002346455212,0.016045120540229163,4.460013864173872e-05,0.006302804120146019,-0.076693913646568,0.3430921905929341,0.19752680981786322,0.00036841463572812597,0.013248660117122064,0.020287729898003287,0.2676279549914112,0.0012660862096463754,3.145807981206651e-05,0.002518109402079123,-0.005315597485217853,0.05194986786361291,-0.026220045470982827,3.418608350381032e-05,0.018507382811826796,-0.002194245374347597,0.00635388802138787,-0.00897345713087107,0.00011124189811507195,0.008120963103673393,0.03189690799566863,0.2110792049359083,0.009603547172945967,3.490563251407972e-05,0.006500644823665181,0.013530554070846095,0.034081702473809185,0.025616677486930636,8.801803781723846e-05,0.008666337636671725,0.015411627140153488,0.06890586428300935,0.015516754257717152,0.00010226826887601556,0.006806794052571544,-0.03131175124784625,0.033808699853509115,0.010907787298602893,0.000529364056516759,0.015242187451430099,-0.03718929072108294,0.14716959543128666,0.06607263573409335,0.00010636183187205267,0.00925484339036609,-0.002959546405661852,0.010105442176152377,-0.01270119168504287,0.0018797020169468166,0.011145469905328876,0.047416701824256245,0.4419253346070027,-0.0364667012605512,2.759082192543492e-05,0.007470132279318635,-0.07867447603163606,0.23161773721415374,0.11262747646877179,0.001110537720884848,0.017198228163206573,0.013011788345129142,0.10421648438075574,0.009514334062654298,8.314310031430125e-05,0.00977717528462956,-0.002801990450708186,0.004357301071454707,-0.015390519317965883,0.00015177298238072315,0.005639359990665922,-0.00022581102601292957,0.0003027650633301994,-0.08135806382381124,0.00042809809794933204,0.012639444643027473,0.00930403045197875,0.034558910831471105,-0.12638743766729155,0.0020867067344480686,0.014196853994211892,0.035028251176626966,0.13286196091095226,0.04531142446001001,8.45878853035886e-05,0.007210974314450972,-0.046966476499815446,0.06302276785358829,-0.004754647199439478,0.0018525404477928078,0.011666590682894213,0.016930054339579597,0.05511629909351908,-0.027995794192222513,0.00012170105424076694,0.021506657547789913,0.0028015941369317686,0.007516113361538375,-0.006967134243740615,0.0001511027172534439,0.005295121629101208,0.03487263146833229,0.15909149951617985,0.07438511877642186,5.3499739818514146e-05,0.012037037327180266,-0.0012294547169586947,0.0035166574743346227,-0.047278293788392524,0.0033136033893686667,0.0004912000162549824,-0.012060592387980554,0.07004531825003892,-0.02224321370168955,8.565053848508207e-05,0.0077280718800077485,-0.0030804035110371,0.016746302254237577,0.0007328943321504831,0.0001333980461431074,0.0018122695773765958,0.027428486034923462,0.13564297233639983,0.097399206039732,9.564301044495114e-05,0.010082097055020148,0.007978742872613786,0.03461161074276979,-0.003030463988826184,5.793754030016609e-05,0.010474910711017641,-0.0034311382572169984,0.00733731199758032,-0.04830884599911715,0.00022799778390196989,0.026644623386028427,-0.021206025285282655,0.08784879947359271,0.03263601929874695,6.002578107017301e-05,0.001398099588459246,0.021190536594623253,0.2193229575049036,0.018474990604542278,2.4928098158344902e-05,0.0019014375466977658,-0.003094442237831464,0.010006804381871359,-0.0023287981248758453,0.00010809259293597217,0.003747648120701016,-0.015804951049414026,0.0648585410247209,-0.0025580846437444618,0.0003841085292351292,0.005709543369334296,0.0021205737863771177,0.009726603608213676,-0.026003972569435686,0.00012487168361815867,0.01911418126812904,0.001862650747375491 +2018-02-15,0.004380564220314689,0.032683737725386394,-0.06825413304837313,0.00014173754909099076,0.001303384334910423,0.0034044786963534526,0.01330073280572265,0.0005842664819641095,6.141657284212136e-05,0.020705375971913357,0.0110865314026892,0.03602441879779006,0.016241061566093926,0.00014236260069874155,0.013663813711810269,0.017016775175716974,0.01809607308139006,-0.039724671530040695,0.0003173662760065095,0.021090326659231516,-0.015248397342008614,0.03509087810801433,-0.08146462136818867,0.00022736715967491,0.007873229061394845,0.008645611128116426,0.02194340403678449,-0.05813445646766061,8.602772488508434e-05,0.0019528044808619133,0.004910298757926141,0.01783316635132971,-0.03717736663892748,8.079217710020273e-05,0.002096933782493285,-0.011863414586083669,0.10597458699517481,-0.006319008769124056,3.8388981463327675e-05,0.005430905772378515,-0.01784743975433421,0.015063382588628854,-0.009505075670350109,0.000913688596347618,0.009015275154004597,-0.013091725857980418,0.030451724575152973,-0.010444604762854205,0.00015033042866591172,0.018471665867928633,0.01029663881610219,0.006976203763571204,-0.01035922692818909,0.0007214407675258549,0.0006100110152302196,0.014581834982059953,0.17853628590593087,-0.00013823469165169245,2.4339321798156795e-05,0.008609330683910368,-0.0272145697582743,0.09397814493965712,0.1109793436572872,8.602519041362227e-05,0.0034544908414213646,-0.0012101010340070195,0.006908095699578744,0.0024643675399323994,4.930887624691189e-05,0.0035175965568219943,0.02990279907130547,0.026898807860507235,0.03972285114527822,0.002168212193562093,0.0017276086138985477,-0.05689505676237972,0.3492383860093648,0.03214946826289493,0.00013406168396968814,0.01295742402077705,-0.01212079846882422,0.058002812173056875,-0.0681411402360184,0.00032358651304791275,0.02616237887832816,-0.018377546420743563,0.11213414041158656,-0.00026958845595364926,4.616476468690788e-05,0.00907700292540003,0.02274068373311713,0.11986418237213833,0.014852104263400123,0.0003126805724861165,0.004755724153178705,-0.020697455696635152,0.2792940282005954,0.004862996893951873,3.0752862262193375e-05,0.024046053522000916,-0.009519412163202151,0.090886285594779,0.004404450304622161,3.49939917641596e-05,0.010119919598859387,0.024374682725793042,0.06552334882181785,0.016813407287489923,0.0001198300227034902,0.009334843219676814,-0.042706515556169125,0.3025258130316629,0.0006171961934524001,3.26079936617933e-05,0.006514903996093321,0.034296922892062716,0.10211702939211581,0.09345867735937288,7.446194339481138e-05,0.018188750977468516,0.01652936753714073,0.0578897491462547,0.0030795597876636677,0.00013055790256553086,0.005999370333584506,-0.013604475374791777,0.01206484369430138,-0.003763063035094492,0.000644518904826698,0.00383345812467349,-0.03513646832886523,0.13102633967633948,0.08411561865276164,0.00011287181466818462,0.0012961089585917848,-0.025887233544755917,0.10336507586413557,0.01307754564379886,0.0016074260000360494,0.011577749688742,0.0040579029806990935,0.03260581434465762,-0.021119800530767546,3.20028608583794e-05,0.006541863434129604,-0.015037904708495385,0.042609264784747476,-0.0023113793116554685,0.0011538638243234652,0.006221988884647259,0.024205642070955758,0.18895968741624963,0.022983835231480162,8.530472523966492e-05,0.005792345223187856,0.04339677952145946,0.07266230820998529,0.11446158006859619,0.00014095928829017902,0.004542311702258119,0.009919036500836574,0.012197372705459298,0.008813060055358011,0.00046677448430725997,0.011192800924985008,-0.008770760901090706,0.031982121491534815,-0.006278892370809951,0.002125594141216739,0.004159582949378326,0.005083981092175104,0.019460166391707133,-0.012447354268974127,8.38200176181319e-05,0.0016058167620429274,0.07358908148316258,0.10140185444116849,0.016282890707020437,0.001804033826723831,0.04596054199486849,0.011823355875288424,0.03414977869988126,-0.03841807933403008,0.00013717308456841633,0.010752841694220104,0.019193286765685897,0.041827404002214415,0.017420623061102956,0.00018601536429145598,0.014034599318707998,0.006447289266297933,0.027577331480150322,0.0015432394314990553,5.706092945318179e-05,0.006606464676564136,-0.04759238883233478,0.1429206850806246,0.051113026345568614,0.0031561706201425526,0.012548312133893427,-0.037857739113651284,0.233621814704753,0.06548412766921378,8.060868784136748e-05,0.01460631810048543,0.001007005413588075,0.005698401448057394,-0.006344059121597541,0.00012815617830118446,0.0018194416350777154,0.045800817388162475,0.2777993638619571,0.14982476397669733,7.798133765082012e-05,0.013222990431628135,-0.008827810098133401,0.05067349617331216,-0.03256923706274088,4.3784410608593045e-05,0.005895654444836262,-0.05430477704499063,0.08294568232602223,0.028308107049084468,0.00031920791022839836,0.020263768340551915,0.005683332258009878,0.020857705375224335,0.008599820799583758,6.775648901487552e-05,0.005802382483628977,-0.03613299970954017,0.3640150257557596,0.011898655349453249,2.5610378219774056e-05,0.0027537737761262064,-0.030780210561587952,0.11485246489715681,0.10310130499841057,9.367856528533295e-05,0.0021813335762518003,-0.012526611417074257,0.04909173299336043,-0.07829400364827244,0.00040221032314444915,0.025447007055017668,-0.018326116672131996,0.09360240131271665,0.010621698216621518,0.00011213863172639867,0.021280113057831215,-0.0031949367610493093 +2018-02-16,0.007148516431893103,0.048858346430736714,-0.002393764849994528,0.00015472615708805586,0.006218427648828514,0.004956590421158623,0.015334106495202629,-0.02167091856537324,7.755951501362258e-05,0.02274397715619602,-0.053084691608486854,0.1462831277775015,0.0645693346913011,0.00016786968113376732,0.004209432841192089,0.019898865334482825,0.023241374226142267,0.017651899057047844,0.00028895776240858034,0.009331994002428401,-0.0353497930438929,0.08044534657385702,-0.008847173104186916,0.00022992369003086273,0.0020815399149308232,-0.008691282586080314,0.019428244721420622,-0.019951188449124795,9.767806445323596e-05,0.005277859822406144,-0.011775059685716856,0.041976866798694876,0.008728177851458059,8.230817137388184e-05,0.014918404868451456,0.007689424465328196,0.056014168288152484,0.0024795163641248177,4.707545841086371e-05,0.0002071990523545734,-0.007529143169305862,0.005985026456194393,-0.04928770778727406,0.0009701173407158093,0.003440995967554048,0.01658962713848759,0.035491140189788724,0.006081613818332117,0.00016344760444694055,0.021633445489165022,0.02757705516013692,0.017397191670804186,-0.02104891005024909,0.0007748062187344794,0.010431126182047275,0.0007261292157701549,0.010491553774824094,-0.0607073529381831,2.0625139251236064e-05,0.010289814601795838,-0.03462023822151265,0.08675190154247824,0.11994230260708652,0.00011855014425668255,0.010343741052319317,0.003184345273928935,0.015430777696087802,-0.008334587020676791,5.80890341156232e-05,0.007345979098713577,0.019051631440058336,0.017283981133625285,0.00976375144586209,0.002149865846177167,0.012904879185200632,-0.0012200651995327284,0.007861028937258404,-0.001787992810367716,0.00012771907147525824,0.00917508347063914,0.00419194901558446,0.022200117524975114,-0.0010851572856515085,0.00029239433241215875,0.0011435657270214214,0.013600283478307426,0.07783681352826084,-0.030955906321129784,4.9217989372355316e-05,0.017489151734887617,0.04361899490228143,0.2405952721525292,0.03684947429710999,0.0002987964082077539,0.011253016317298716,-0.005292511752479498,0.0706315897959435,-0.0003332998927967174,3.1095180401969316e-05,0.01644598661082943,0.002286071165476269,0.02382546581789827,-0.02880172102057458,3.205752979244392e-05,6.260694562843427e-05,0.0033879454867439666,0.011246063166813664,-0.0026498186737681584,9.704175698973798e-05,0.01386995607959945,-0.015446822633124812,0.09928843106791613,-0.0060113061032230465,3.593626091478611e-05,0.02696185068472043,0.00977016285823749,0.028245724063468685,-0.00961689408702873,7.668783428793151e-05,0.007930240708053937,-0.0020961428064854813,0.008673026640717757,-0.05851284444483958,0.00011050928836345827,0.0115086599174419,-0.005287308477324281,0.005002366506019493,0.0005806638620895919,0.0006041359818874058,0.008890504875050003,-0.03084801801986097,0.10050630367050871,0.05771975552071487,0.00012918734526586777,0.01928303664787425,0.01038375322634786,0.037798459689964814,-0.055706679947232725,0.001763191285402749,0.014622079204338107,-0.021294211263488117,0.18433079077876816,0.00821984531908427,2.9706115653283218e-05,0.02219505922903328,-0.0713747244435443,0.19106009484380898,0.04984652064921465,0.001221365716736197,0.0052040236489354,-0.006579639097063781,0.0488812441890328,-0.08524569710050278,8.963661841667672e-05,0.005128145749232546,0.0173832754676824,0.033545413566926974,0.015192539368628608,0.0001223048975474534,0.015061305317305127,0.005753448819591282,0.00846915011580052,-0.07382838618867858,0.0003899351064439935,0.0005317566008261588,-0.027265074879526136,0.09721485722508967,-0.018663917766425984,0.002173824069969999,0.019420597305447682,-0.016696422666229237,0.06755271222733875,0.02320070784728936,7.929960245803749e-05,0.01927026216923243,-0.013249510842110426,0.016429313961838013,0.0008263986627380868,0.0020047379313884285,0.009463321618767315,-0.01233666983702625,0.03899524139745675,-0.12574706831202506,0.0001253436581255612,0.002741786114967797,0.0007305408351047088,0.0017265614952835819,1.76572253188293e-05,0.0001715231806793996,0.0015988374397573866,0.003371171613057259,0.01736287848974696,-0.007661440786114122,4.738851072681208e-05,0.033360448792336996,-0.020062065824968407,0.06748524699007423,-0.03297276021777498,0.0028176358688162075,0.004900724529248134,-0.003140140314900556,0.017905882991442804,-0.017968775188309527,8.723562624958782e-05,0.010404258200796651,-0.03321386290709905,0.19678860221248443,0.07019061763504886,0.00012239966585192316,0.005344505910981227,0.0189933676003318,0.10187751442348929,0.02418850526738907,8.818045427195477e-05,0.010510547175667498,0.057617432044676585,0.253676073867142,0.0498139651044229,5.7084971117437066e-05,0.006812910704523055,-0.06938660487888555,0.11107755070610602,0.021838041592528747,0.00030456411874095875,0.006139908781763341,-0.025577087298468575,0.0962375671268737,0.016123817274609594,6.608772866960224e-05,0.01383411664368846,-0.001398955616077309,0.015549690743668972,-0.0009157907136959318,2.3212048293571528e-05,0.0007951930400158212,0.023203805813977473,0.07002362974573598,0.08503543913112047,0.00011583066981832184,0.0033426962739898933,-0.017677635787477105,0.08253452803817109,-0.012537622560791628,0.00033761091628005494,0.0025614593695213236,-0.01155815721261118,0.0690147037311374,-0.006328490725971654,9.592211928386586e-05,0.0200146634092126,-0.004705244761635454 +2018-02-19,-0.008324489424426332,0.057442875648190284,-0.00961806535431282,0.0001532526584259155,0.027600294569712445,0.03779860567000691,0.12742047502041165,0.006778123206079378,7.117821399825324e-05,0.01517129700351327,-0.009947479438544996,0.03858570331104934,-0.0009718547531292049,0.00011925698732476777,0.009824467913414665,0.031033035496447703,0.032883568172786856,0.04401296367329436,0.00031850274385520407,0.016468726481034698,-0.01368891896926702,0.029640324703630705,-0.027310157137353033,0.000241648424562948,0.0029657882767643255,-0.002605866092463257,0.006803426344281133,-0.02796042213847258,8.363174283937827e-05,0.002248993164836583,-0.07072681884046426,0.28922882926532495,0.16715874882966852,7.175173389034916e-05,0.012117879236871356,0.008625206324235324,0.07906288313003981,-0.02373543255187319,3.7410667722115964e-05,0.0011109051396745414,-0.006079801529578674,0.004894141126543331,-0.00040169462533729314,0.0009579827753823193,0.004801164921672812,-0.024518260413949847,0.05381608266916948,0.016799854962085074,0.0001593086869282486,0.007241749072246551,0.007235874095401907,0.005454683989458148,-0.06991310209822552,0.0006484041180765349,0.004854214823454373,-0.016733957676901393,0.2240899720587659,0.013104964709750413,2.2253536241546673e-05,0.013637829482210475,0.08654017628797861,0.17800156918126975,0.2609080495824123,0.00014442586673956586,0.00029111649003139796,0.0276138413740749,0.15985269566275315,0.053829305781482165,4.862601500000295e-05,0.0010642372270832185,0.07152849955907634,0.06242987906422499,0.1984119411179384,0.00223465042260306,0.0005928256600595528,0.04599084875350643,0.3133345917739955,0.024206072842570762,0.0001207856078212997,0.0007862983222551604,0.06421547774349512,0.3663584925924125,0.13285622844543274,0.00027141990017239107,0.006841472823580317,0.015962520358012978,0.08141315779380875,0.011819225878499554,5.5229081415242985e-05,0.008045879077046124,-0.02470256318697363,0.11936347583325406,-0.0015964924340339684,0.0003410808757933253,0.025686395655908592,-0.019893412113538435,0.2454014867586652,-0.045260755728967504,3.364049064289359e-05,0.02873834053672703,0.03630006337323091,0.30645177766173104,0.10889401609420714,3.957554892406706e-05,0.0018873170214407722,0.008687209249950182,0.023620585787264694,-0.007350890925261982,0.00011847108734798099,7.075604086743677e-05,-0.00529390289220238,0.03603158803857789,-0.019577865403614236,3.393789825239619e-05,0.014784691188049011,0.001132092179885426,0.0037208184007794607,-0.001071277327565726,6.745601765033806e-05,0.007787958498903613,-0.011854227821386721,0.04390291806987739,0.03962541650281092,0.0001234606269118482,0.0004795775439024191,-0.027836076184807792,0.028846024597636067,0.013148388137445998,0.0005515661537570548,0.018432257434493088,-0.0050146120146759236,0.01989691192779709,-0.03298912175965916,0.00010608101546297582,0.0003949057622153647,-0.022092999263571684,0.07321405885112484,-0.03838963383527898,0.00193677588390191,0.0013669250286766394,-0.01522451819488773,0.15828580323248348,-0.05189876824114558,2.4733398135032458e-05,0.006209526747431396,-0.032875794369493484,0.09678527062712489,-0.04096208800425771,0.0011105503578494396,0.015622245076638605,-0.020586481545818224,0.14389385711783786,-0.004852753017355805,9.527205136521647e-05,0.000685754286580365,0.017361523928460902,0.026265070383828092,0.013222470531032057,0.00015601079881935506,0.026844146964960958,0.013613760319674083,0.0177369204500718,-0.029532111643962442,0.0004405587140880893,0.014593224744315795,-0.021941025556990214,0.09445278026183129,-0.06598596788733621,0.0018004974820324416,5.855661049199981e-05,-0.04077602500724108,0.17226047214429496,-0.0077705077931845045,7.59468252545696e-05,0.0133981438541527,-0.013948342777879782,0.017816785529447297,0.001026593851824662,0.0019461237430914034,0.0019606633747366346,-0.0249521476319914,0.07595692424881276,0.005763923211856058,0.00013015372359185493,0.009204618418793085,-0.0035468381179847987,0.008703890343568022,-0.06527066388708391,0.00016519174177488755,0.02091154255315284,-0.03465375675834308,0.1641111198172697,0.023031781862614748,5.1537843072234317e-05,0.03321976750458781,0.10295401599093366,0.32518005664559857,0.28633592214562836,0.003000802739733381,0.007243793371342256,0.03247434722785698,0.14319452695404644,0.0349695126542581,0.00011281181372386661,0.020723235405278047,0.0036828095252745144,0.02288927662686929,-0.002853779433425132,0.00011668310417034906,0.004121678854058554,0.00442249596104386,0.02367672555197634,0.007359658560117142,8.834754861545107e-05,0.0021108747897829257,-0.029960279326280738,0.13757914700799928,0.020625497908582775,5.473191457842819e-05,0.010942034889936248,0.020025487917429252,0.040473303333250533,0.023196879718768337,0.0002412369608807884,0.03670211044472442,0.01201004731204427,0.05076127343665133,0.012880806148292219,5.883375742320907e-05,0.004499381899976393,-0.02976825261646766,0.35421827275475326,0.03497408344037899,2.1682715275704392e-05,0.005549615391149446,-0.016684108879345037,0.05720918711297613,-0.054862934538590175,0.00010194036939853923,0.003643563123836402,0.031733208886881616,0.10935856685128656,0.11832676917612646,0.00045739261817871854,0.00871427160150294,-0.023473203169537528,0.1184420732894691,-0.014737333261587111,0.00011351105308109534,0.019677514310763106,0.002269991696048566 +2018-02-20,-0.04040542215003883,0.27271664739429247,0.04662283305791525,0.00015668036809301126,0.0009921169171158337,-0.0172249719718599,0.06125766412283159,0.016226639278877953,6.746967500693991e-05,0.017212191407129283,-0.007217798866855409,0.028346267197372196,-0.011920678649992265,0.00011778937128055137,0.014466036191186528,0.022063992543626825,0.02156374924893738,-0.009696546757142785,0.0003453247334969663,0.019039437190918787,0.016017913468187546,0.034591503737400574,0.021929136598924683,0.00024228932148721066,2.3312042419491473e-06,0.0035552311613525397,0.010966672687057564,-0.0910566683866198,7.078474991317015e-05,0.007882188691345507,-0.015930592152537896,0.05050252407017148,-0.011488075572272771,9.255687648503601e-05,0.02799315495984096,0.02732997616251973,0.2828680118179042,-0.0035252481711146788,3.313248648016919e-05,0.02483658257799076,0.021187112608010164,0.02082882273322072,0.0756628313978123,0.0007844257427391286,0.005796965390042793,0.02035090553670341,0.054768697064927346,-0.0051584904682127185,0.00012993113001145347,0.01640726174002357,0.00026425730147331306,0.00019194190629305942,-0.00010829309705810312,0.000672948067479297,0.01423508957196879,0.006091670153182316,0.0776915135420705,0.0064853385600707305,2.3366065333815773e-05,0.0031929586074820734,0.05393725156410199,0.16467705144779735,0.053766511763499385,9.729863962102195e-05,0.00012322348110068836,0.02885014796058623,0.1767448773190653,0.04988160486942296,4.594762076060242e-05,0.01354519838343527,0.007058101174861912,0.006140587988224293,-1.8685272424292304e-05,0.0022418207949761065,0.006110595613549412,0.006160209457718519,0.0350343550326093,-0.05908819063327855,0.0001446949787027551,0.011422918634858167,0.0015222893903422887,0.008432324064385278,-0.002802519895352828,0.00027954914211628443,0.022037045795265754,0.002197022722968509,0.014244314828722892,-0.03650501649297501,4.344641445013013e-05,0.0035387416706892817,-0.02735592840988282,0.16544714962169216,0.013876070416896214,0.00027250782444774376,0.011875026612633802,0.02075575945942227,0.27598222460142136,0.005257124781523183,3.1209567422598707e-05,0.024701367786298816,0.007728366036167185,0.08223126890564472,-0.04556492296857857,3.140019899991837e-05,0.016398447246834813,-0.018358107367711582,0.05178612335931776,-0.07038452119434939,0.0001141924155411119,0.006220323578439881,-0.02574982165136931,0.16404490122812201,-0.025817326446009523,3.6258001707380755e-05,0.01726481435700184,0.022759640426807958,0.060889771421448774,0.042872559095687726,8.287020917418632e-05,0.0012274282242927125,0.011030848264958513,0.04042838325722884,0.020416073474724298,0.00012475878372729537,0.002742602115978733,0.02606596607222624,0.02586685473480556,-0.1010440671142729,0.0005759778241589149,0.02532017963248946,-0.0119160691184752,0.045471982847187724,0.005809105502162426,0.00011029990294596372,0.0013381277665935531,0.0568535328774243,0.23615138360477678,-0.0031946201803656404,0.0015452051152536784,0.016200746035681078,0.023656531178901697,0.2099166759786906,-0.035303111235880716,2.8979195035073766e-05,0.0022619888675582283,-0.024578511172414184,0.07787774123176233,0.006278792236377284,0.0010318426982559219,0.003647039256637185,0.0005316466906601754,0.004133536070608939,-0.004526136177280587,8.564993275525564e-05,0.008639362811528363,-0.005902701683272316,0.009670619262958365,-0.05058817804557709,0.00014405951091419478,0.014387085556261073,-0.010826013700696092,0.015990351332071277,-0.005296090335037196,0.00038861045476890483,0.009848008022334775,0.0050955331288386405,0.022967514869179445,-0.03168803178344953,0.0017195941716957278,0.0187859730368647,0.005953851134310947,0.02314098959032424,-0.00010815113169402274,8.254797331449349e-05,0.010369313123359045,-0.03486157939648812,0.043250062948670745,-0.0286129447147933,0.002003722185329562,0.006272335408635406,-0.01998058133456352,0.06804766061601536,0.04313779076075583,0.00011633515076704401,0.0010546650097140963,0.02669472972147485,0.07852977023465964,-0.02494050247638245,0.00013780074876406032,0.006111560251401982,0.001981110259553865,0.00881666708686089,-0.1071182388864489,5.4842611861293105e-05,0.004007075120865794,0.012720409072806436,0.038562531859271276,0.0015751673016965203,0.003126465176118781,0.02138284463615924,0.019811364462950225,0.11063072951723583,0.004573742902942415,8.907978950243434e-05,0.011373036509617422,-0.019282821983802607,0.09369914654820923,0.02130844600555746,0.00014924360851191387,0.0023820919998898513,-0.011961044475250667,0.07057128405366145,-0.027450220501133507,8.016592063476359e-05,0.004874475960907712,0.047972865832064136,0.20768946997200233,0.01777968176357315,5.805352301083377e-05,0.05212799934282085,-0.013677244360767858,0.02717308780895165,-0.0005604810316955385,0.00024540816499174153,0.03277854577360708,-0.003416791350261283,0.013428197481573432,-0.003860449296718437,6.327251760205037e-05,0.0032709896523411604,-0.018976372726764307,0.18835662264694164,0.011523726914619453,2.599343009506855e-05,0.02233418191112094,0.013855872897499937,0.045151165737166,-0.043842351812484755,0.00010726891496802237,0.003251716221284573,0.015864163495872757,0.06163329597360016,-0.02523227502985605,0.0004057231183589463,0.01941778631012741,0.020552447154038554,0.08973020298018508,0.00039181250693306015,0.00013118877778682325,0.006695675066141837,0.004791814587429787 +2018-02-21,0.00788987434521247,0.04354152946975654,-0.04276470257567213,0.00019162536287400066,0.0026871753879482117,-0.007979201431447154,0.024945188511940476,-0.25149122028765325,7.675084491005175e-05,0.004964886687437415,0.03547613069446884,0.12807054213960864,-0.009493190051000303,0.0001281398474766752,0.01498735490723369,0.031117865604809322,0.037463646557948975,0.03910830022957927,0.0002803287300340366,0.01762389644446538,9.616538826759094e-05,0.00016370042241511325,-0.10273197003948031,0.00030737374011610577,0.006633263361199726,0.0002012616839444604,0.0005767259971379711,-0.011156789571018377,7.619707728930692e-05,0.002773318377635085,-0.0025880580504022374,0.009729899984705366,0.0014612136892952934,7.804687030857547e-05,0.0084792165169237,-0.017371648007758582,0.17424718450186966,-0.16649844374324818,3.418801343314908e-05,0.00025695767041251336,-0.006719746112273684,0.005485583069441288,-0.033527635053792866,0.0009446585404103453,0.0035879403574323185,-0.049402186752150294,0.10818804643749383,0.060764102514581274,0.00015967200571688383,0.0016370555596880005,-0.040347984950986626,0.03186307042000174,0.12101297658195737,0.0006189543008864132,0.007997351515952036,0.00672655760459575,0.08472683042622908,0.0019005871933769302,2.365890798079114e-05,0.009126399328701636,0.03742097603653646,0.11027021870822955,0.011237961369360975,0.00010081099767559225,0.003572633515153815,-0.007412651095240107,0.04413008748934695,-0.0062071455178034415,4.728251714984473e-05,0.01961568465572856,-0.0033807967812953276,0.0030112160718364037,-0.02564608747338658,0.002189778155540435,0.0055264208702022425,-0.07604386741791885,0.4557493506560105,0.030354391427904522,0.00013730623071480099,0.007442307231763029,-0.06673041933192038,0.45271504589442507,0.11523964396605371,0.00022824809285986315,0.044878772983904705,0.013816838486236122,0.08619539022407166,-0.0031861610217914973,4.5152894603016026e-05,0.021753379925353013,-0.03458396455395226,0.1817855781968221,0.02092258259716851,0.0003135466456276207,0.014323969507804415,0.0301699273739668,0.37716889064521264,0.008615883301949068,3.319469110081478e-05,0.006683320438205114,0.005223834291932179,0.05505027704033301,-0.0443613370859382,3.1703819895339824e-05,0.0062191476145495375,0.004246141497175424,0.014251746235390465,-0.014894608064355322,9.597301478102258e-05,0.0033036378505487225,0.027667417746186623,0.16781905659798216,0.008991812228150594,3.8081998204229313e-05,0.013650723226724547,0.0032814959310389293,0.011196861888453721,-0.06981194043503892,6.497599385854517e-05,0.007809042022501303,-0.01399234076117921,0.049668501807125336,0.04089562377975249,0.00012881247017091976,0.0010018602512731037,0.022654573812364576,0.021562194621355522,-0.02705028138241353,0.0006005352384001151,0.01134087486736723,-0.013908277565454425,0.04421705341297146,-0.01742095140814629,0.00013239438304067232,0.0012521789659791652,0.014834055868220708,0.053791911616958975,0.0021635270516011853,0.0017699545190558237,0.0015691747941427255,0.005171486093542673,0.051942365256099125,-0.0023765210796345003,2.5602114445610425e-05,0.007429067607320909,-0.006698822539096059,0.022299172498054073,-0.001170248877229291,0.0009821571793549562,0.00771645965091831,0.02571526454874732,0.22360135107515008,0.016234984967275053,7.65847354332387e-05,0.002090254590603889,-0.015566289073632797,0.022073605831441093,0.014460581270486382,0.0001664398035212766,0.015462240621342566,0.011755750373018958,0.013527938634239733,-0.0018565353773675893,0.0004987956355569456,0.007857380812445323,0.016439163195042992,0.0644890506281785,-0.09469195658421738,0.0019758049285981184,0.010259526941912506,0.03623161843526778,0.134828937179206,0.05739290786649893,8.621741416340303e-05,0.005615494570833046,0.008536078843600171,0.01435461769207178,-0.010736355365788729,0.0014782366965098738,0.02007554063748557,0.002643940852957515,0.01085876112129277,-0.002200087536813593,9.646893690721362e-05,0.0024914432657193748,-0.07350147790789292,0.204130998150969,0.15143993353230129,0.00014596458220742444,0.009045466785239391,0.0030294662997427226,0.015327623859883392,0.00021895886571701362,4.823976866406771e-05,0.021635784622503405,0.03854332524207603,0.1360222549249361,0.022040384813168147,0.0026856985677835023,0.051104613120864145,0.005453620563384583,0.025005144912054557,-0.002015083099108805,0.00010849159985257704,0.0062169072591981124,0.020416340959499134,0.10867677311377683,-0.003549872421136794,0.00013623916076836086,0.009006802150572644,0.03452065157618128,0.20680131997912998,-0.012020319261114836,7.895404351853408e-05,0.0011192575668154481,0.06397452457385493,0.2876658028726147,0.049094581243403164,5.58941331421208e-05,0.010829487919362883,-0.06074053978146866,0.10273454914665754,0.037618587740821406,0.00028826473880382095,0.02502169778376429,0.0032397711929062433,0.012467133814410981,0.0008955732976759884,6.46192769783857e-05,0.011660789604430791,-0.002553400485976109,0.031047449950474437,-0.007276088078612001,2.1218969400360822e-05,0.015402598161166948,-0.010927857077855162,0.0375322209427139,0.003363913656614775,0.00010177467088969473,0.005369869826289987,0.015072892844880023,0.055741168817013964,0.029639932553419526,0.00042623441401757,0.003480740427464166,0.05378426399474247,0.24952507293772636,0.107075654212388,0.00012345617996973763,0.018002064312335895,0.002310916269963185 +2018-02-22,0.040307820272500704,0.29227942637442317,0.09169607492123408,0.0001458403342538407,0.0020515490469989075,-0.04425936246191074,0.15160794316803816,0.0058139683407512025,7.004767494845218e-05,0.012882201746252979,-0.015509177303909018,0.047668222132741196,-0.0002798176770468172,0.00015050710804248756,0.005707262441089435,0.024581605681755783,0.025052189095749067,0.021689157435989526,0.00033115584354518685,0.011606914488000695,0.012488167305808354,0.023801143298944817,-0.014553833018006739,0.0002745355953683058,0.007816676603608356,6.433297702993182e-05,0.00015631876449158504,-0.05933672487272357,8.986059191600484e-05,0.0018478482785366475,-0.010196953182170159,0.036494511047010514,-0.005686414269415991,8.198468477095192e-05,0.0046109543894945135,0.018712663239717122,0.1548624287051155,0.03463052825126945,4.1436985215330556e-05,0.0016731108873180667,-0.013882076516493029,0.011493006971902604,0.01266404018382405,0.0009314628756038306,0.003932169066620714,-0.06685486640346058,0.13787591656986578,0.06492219376654541,0.00016955339849887205,0.006445580656250326,0.007491150814250597,0.005443671513871135,-0.01088629725593233,0.0006726373638614225,0.0011638091807389857,-0.013197985378664576,0.1600890453115091,-0.04328443941384229,2.456794423137392e-05,0.0017779368605784528,0.014643692737617316,0.04416409864960883,-0.00017141626695012983,9.849910271005283e-05,0.000485987164196197,-0.021637399745386084,0.11082085413104252,0.049013087432488715,5.4959831667080635e-05,0.004739848153803443,0.04823888888185029,0.04169632850739356,0.02678522863556128,0.002256433052842692,0.004627842876147155,0.056040696821118195,0.34157665301886897,-0.07602480472956992,0.00013501047206890664,0.013935015406180695,0.01781161890148969,0.11381876060146283,0.0010062973610985339,0.0002423247504258274,0.009755880514722396,0.02023266744425962,0.12041040321657323,0.004481380810649775,4.7331480435104655e-05,0.0021706318365126973,0.019669498898579447,0.10332442463183182,-0.012804187965192344,0.00031374521269922774,0.022731101327878676,-0.03278192959464954,0.3754252577572742,-0.009638100731682598,3.62360839283029e-05,0.011089428101516828,-0.004796968036397818,0.048622743696327665,0.00486779231775171,3.296165975157388e-05,0.0061776921170952695,-0.050233234033481136,0.1755644302326074,0.10169946346426266,9.21674057496035e-05,0.019666860492091754,0.03371011660573915,0.21170741174053465,0.017711645233702906,3.6780410177856365e-05,0.008448531425397018,0.0014843238372445199,0.004423014238591304,-0.03720954349245284,7.440253054659206e-05,0.02068282819890776,-0.009513972795133897,0.03670872046822787,0.0034749734266123944,0.00011850624956965942,0.002064735357856606,0.0054213698909710865,0.00449357798942216,1.1987428163239503e-05,0.0006895921630602277,0.014292355805296848,-0.005654964882222748,0.020696062164864235,-0.02447940987253593,0.00011500803973421988,0.0022437654269248084,-0.039022476548450896,0.13291540287486073,-0.12149593406235709,0.0018843374997139187,0.009729514241436456,0.02035183553609826,0.1959855126158465,0.03811254698756916,2.670310789379435e-05,0.0017007705819506065,0.015794475736607645,0.049504368382996156,-0.020197399179368927,0.001043116850357394,0.024388832055846788,-0.006648887002165141,0.04479094152976204,0.0009028554045185262,9.885175947362583e-05,0.0036627237436274067,0.0023225111202278873,0.0028467846226112293,-0.021006825057768238,0.0001925522408376844,0.009537581550039535,0.03644250436871455,0.04578327974502728,0.02349197063286305,0.00045688324067618693,0.01622652885307276,-0.03015637134728016,0.12352078918519792,0.01411558500388564,0.0018922972839419796,0.0031753997079905266,-0.015146751601913073,0.05874581746320879,-0.005154959458088909,8.272426595847608e-05,0.026805837538117883,-0.0033782280595917847,0.004961400432572717,-0.014992448650571406,0.001692629386092824,0.010782045585663013,0.028151626997477745,0.0807017811966893,0.06226385617560257,0.00013820902899105744,0.01036416325224142,-0.018142807853146432,0.041841820848809365,-0.029161335752924244,0.00017577386467718283,0.0007940048255517048,-0.02761667638787661,0.09640104104339187,0.01112833237427542,6.992035297046051e-05,0.004660595646710619,0.00654898057367267,0.024290900307954683,-0.029239404231441696,0.0025553367949053625,0.027785264237100885,0.036586796233193844,0.2330674405888614,0.028420700433218947,7.80878283860235e-05,0.009426621673727629,0.022757807842736177,0.1347672853153653,-0.002927809592976401,0.00012246351772729038,0.0174412515376169,-0.03326759663707632,0.17627332991002448,0.026148917047247644,8.926547435678877e-05,0.022741507739997672,-0.0410849806364781,0.17956755430690896,-0.13825445367616715,5.750460357801388e-05,0.00578237855588873,-0.05361003785314818,0.09684397444777168,0.00013590751930970355,0.0002699000117710036,0.033231416022153404,0.01282489512779235,0.049122916567280274,0.020675946848977816,6.49208285942448e-05,0.008697868267946478,0.007756679875898639,0.07474160515688688,0.0010900997364338943,2.6775940424272476e-05,0.0013392665548464277,0.029946785486381047,0.08978308565799419,0.1445960431806837,0.00011659089848221038,0.006040913178509652,-0.016351144102237477,0.06671052019738483,0.007780723861107047,0.00038635077670944284,0.00048445774762997636,-0.03617343946262174,0.15898110941359886,0.011367491842727766,0.0001303215021599986,0.00869196022337457,-0.0017062210435663232 +2018-02-23,-0.03524255993079961,0.23248205614989706,0.03363298107574944,0.0001603114686634547,0.022815431276729015,-0.03407152796827347,0.12896466680902208,0.057730697279312564,6.339155372880883e-05,0.011056325092402794,0.007217185396514531,0.028264892032264087,0.005685902848773638,0.00011811844890979639,0.007197752552073727,0.026119257557097143,0.024387871108303184,0.02198933442269129,0.00036145546310254687,0.012259301853790667,-0.011898854342427587,0.03205426506644924,-0.001522379336967682,0.00019423035172066937,0.005219970487412478,-0.012836731310037977,0.03125261336896775,-0.214267364812527,8.968397552738262e-05,0.002187627557000034,-0.007979104811781402,0.031406151587750966,-0.03392645474052489,7.454685096434551e-05,0.01883738985889173,-0.020384811182041926,0.19091861366681293,-0.029763391860506725,3.661483112629927e-05,0.02507635554623873,-0.0021363159189934046,0.002143829052015235,-0.0172450342027769,0.0007684579561409912,0.001563934960597632,0.0091739343204341,0.020214747187082934,-0.091298000962389,0.00015868986791745047,0.0010088337844322043,0.010612953792882945,0.008529162463141159,-0.09814210105423199,0.0006082109639631752,0.021592163486154857,-0.010103721512871202,0.11762786086452653,0.005136543126461811,2.559728816336699e-05,0.0021911589801983477,-0.017298346354914833,0.05355426835316375,0.011792199417675148,9.595365802054804e-05,0.004878976296591298,0.00027003868452694593,0.0018497993741155877,-0.01959371914477143,4.1092557720297177e-05,0.0005623907099338471,-0.04518834570425438,0.03317101507051577,0.09431090593758033,0.002656994488421537,0.020421771690261718,-0.06596368861268291,0.4303947976828526,0.03119140099709097,0.00012612176140289427,0.002698521051375242,0.04300157402866808,0.22252720536458645,-0.012187145819976992,0.00029923298911231476,0.00665309307829539,0.07374071145428855,0.4331975021079551,0.07463744699394496,4.794930709266334e-05,0.02195906011313094,-0.03566827943010803,0.19829651687448124,0.014178991940839636,0.000296451656874423,0.01897703793145592,0.029343150579719354,0.3622558481646317,-0.03739811020396844,3.361410622936766e-05,0.015531178514362393,0.010009976971901114,0.1161451044883055,0.005513898032747642,2.879478753710003e-05,0.00020164593593665183,0.02246813951050744,0.05588079113996073,-0.0656324474488177,0.0001295171626200335,0.02243489140303284,-0.031753605673103626,0.22095164539168996,-0.019631789774652374,3.3196185543452285e-05,0.01901061918074931,0.005399475998382994,0.017286470235723293,-0.002911654674760007,6.925046191300329e-05,0.004436826727601895,0.008110374104375154,0.030084646138400704,0.006162598462900517,0.0001232663610155402,0.003467580749868548,-0.037923528474241054,0.03849215858201072,0.03525180128261755,0.0005631343680703853,0.0044317089757991415,0.027068847956028406,0.09684408006858078,0.054122061406491694,0.00011764750020909412,0.0029982412151636265,-0.024011209185854407,0.074110481244171,0.017813359375453194,0.00207947437319034,0.03769594154704214,0.015281923151466804,0.1364681014814456,-0.006955690421573829,2.8795793926248428e-05,0.008285769993903408,0.0013960891306671406,0.0038400092544995297,-0.055298299439823145,0.001188644936426694,0.008452088773881096,-0.01576902297724805,0.12814064969185596,-0.07718056941118882,8.194897155694154e-05,0.01046317639911962,-0.017620849552820235,0.02629555899727419,0.008939063517209316,0.00015815751108275242,0.004097402546228952,-0.00871509385792294,0.015033839448025691,0.002184272341946119,0.0003327408138434286,0.003198475322239323,0.017372090425370797,0.057062160352961154,-0.013303667126350043,0.0023596859821181132,0.02242662999371014,0.02651054345494925,0.11310912045206768,0.0291826551189775,7.519888060220697e-05,0.007994829606392868,0.02661133425307312,0.03694148255343827,0.0059669017403081535,0.0017907275739841432,0.02414384420367937,0.01963854207931679,0.05121917676527422,0.020342210762803917,0.000151912211541475,0.0052982188415086106,0.003860096786543949,0.009949678080909748,0.0030496319612224377,0.00015727132320150018,0.0012790937845706736,-0.0061287379264104245,0.025440455541821488,-0.023690604624795084,5.8797666706348725e-05,0.012490081995771304,0.05639742795708634,0.21077864277723832,0.049684460038110584,0.002536008777501497,0.015683864034447447,0.009273698755577035,0.04984179403358789,0.0007406312186158675,9.255500078071842e-05,0.0026327513655195135,-0.00822231082073802,0.04465575074024665,-0.02893453691329444,0.00013352951740398686,0.0026439136735903267,-0.0026457640065318984,0.01267671164821433,-0.00048066027573752976,9.87172823617459e-05,0.004004025842218353,0.014209174646310151,0.061498636993255744,-0.016939624659613118,5.8069857007068565e-05,0.004076109624679405,0.026739837808716783,0.05458945245487766,0.035195447059759306,0.00023882480099332476,0.006925439591799457,-0.045328728280635125,0.14811819625871675,0.1609561576128617,7.609909571378315e-05,0.002236035292136898,0.04078994062103537,0.5443480353452514,0.07617657975431683,1.93333760657389e-05,0.020260016870948916,0.0031916162295208455,0.008162642911244295,0.0026415355131800358,0.0001366749209567072,0.008549459965060548,0.0088195327190803,0.034855381479442914,0.012421505563848825,0.0003988445907131998,0.001209576496732511,-0.02345529274284964,0.10793853880383836,-0.09465334374814853,0.00012446181189752393,0.008271407481787368,0.0006720194273835041 +2018-02-26,0.020303159986887472,0.1255517264383453,-0.0336038258038417,0.00017101237236002254,0.00726101991036332,-0.014879595680147824,0.041667445457074105,-0.003139850469749388,8.568499611401312e-05,0.01074087427522554,0.006064724144789655,0.019047854335031013,-0.041247673808843324,0.00014728624662718707,0.004827561239897318,-0.0004691637645286951,0.00047304603176662934,-0.015896948074281787,0.00033472558943109396,0.00191946318748185,0.022196746187668797,0.050773192438226665,0.04958505216253442,0.00022874553057273422,0.025011674568665942,0.004001624059971809,0.011105291516464326,0.00020025389542807797,7.867795479534249e-05,0.004351536211355025,0.019734071409809366,0.07051002492513779,0.0066186077952118,8.212127478901996e-05,0.01606574263586776,-0.01355902661662199,0.1443940079967294,-0.0018746993346240846,3.2201637467111126e-05,0.003002343812524382,0.0014624699545126032,0.001316022009544531,-0.005510096898202965,0.0008569758561292855,0.004422596796454105,-0.026737829500712105,0.08048296727627902,-0.0023324563242434256,0.00011616734300914472,0.0035062225338250994,0.020106079339915546,0.012776372646598344,0.023887546995264314,0.0007692086863671171,0.00474132571428338,-0.007955233276680684,0.09872191239131342,-0.09922327420639035,2.4013869655192686e-05,0.012879796027109858,-0.03554633697609763,0.08091715989741399,0.05303352519561083,0.0001304984220665041,0.012109199369245259,0.009621855527028968,0.04468295523427426,-0.019420284763940542,6.061481182850059e-05,0.0025937230333671537,0.005344064829587298,0.003590141132586838,-0.030326599491994326,0.002903241538943102,0.018930241311177928,-0.04634762830175575,0.3210063581332963,0.027640067606152223,0.00011881355447839838,0.000556599155235594,0.041502155286359685,0.227009316710445,0.03418006652619073,0.0002830969572030224,0.01480737741076087,0.041617015527053006,0.2430293233325633,-0.016588392067787512,4.8236213731587465e-05,0.0020478139298955615,-0.0038915757655108066,0.025392444244705655,-0.04821761955048851,0.00025258513616558705,0.011187130677061403,-0.0468690423951463,0.6218295186054008,-0.06923918937258432,3.127843225941333e-05,0.015772699071589198,0.0015105929093400326,0.015834818406843417,-0.009458979531821194,3.187249514338911e-05,0.011783580463869613,0.05921278563177788,0.16022325835107376,0.14431774724569743,0.00011904541931275303,0.011907533922025116,-0.040350158018607106,0.24106608914141806,-0.05761932829382665,3.866352918221145e-05,0.01387252891939147,0.005619226908211789,0.014118730073317536,-0.03817952572106519,8.823854059178805e-05,0.003351993147175725,0.013171333699971808,0.05047675291375247,0.00034585574324486203,0.00011931277282188655,0.008671890454802014,0.012673804394212469,0.011774040877742642,-0.007422743307986767,0.0006152576496489861,0.007814035358884367,0.004062100860999593,0.014084268384967456,0.0017848948082909311,0.00012139545283087074,0.002201327257768946,-0.003298364696007937,0.009672823709672585,-0.011626509059192089,0.0021885908306230294,0.024770944821518863,0.02976806055621573,0.265362803045467,-0.05554779842840924,2.884647096259932e-05,0.010842978593955896,0.015675050232538346,0.04532619506401901,0.007302820690284229,0.0011306571867313886,0.0034919678339344834,0.012221479464200909,0.08635551746656922,0.016109356276021978,9.42452204565958e-05,0.007518592860274373,0.021735279206044057,0.027840643339666692,0.01875884870359763,0.0001842601171653439,0.0005807112836992924,0.00591835119693048,0.00898959479636887,0.0017580215988575512,0.0003778892435676553,0.0005302621827928818,-0.015097018784606345,0.06795434829384704,0.005020697750948391,0.0017219648607919539,0.01877916907854452,-0.008228744770717627,0.03488845816761174,0.004024837590103494,7.567321500225217e-05,0.014356283498992324,-0.06105917560971842,0.08900998371933859,0.045131154050801446,0.0017052552943892575,0.0079585819605691,0.014333420023165512,0.048303098754352417,0.0057964955375264,0.00011756847133644682,0.014511947311811924,0.018829499099758968,0.04803543864975733,0.010242769564118777,0.0001589049340010002,0.01454847129757328,-0.02185216296700269,0.09416494542343186,-0.021071793174535572,5.663945902898682e-05,0.00965614785269545,-0.00579328542735048,0.017807498525397956,-0.012130839555414788,0.0030834724113230623,0.0006007611380912895,-0.03795810052939118,0.19552734930763824,0.019988306043750608,9.656895451491856e-05,0.020771352947045088,-0.00179728653542224,0.009984436058604185,-0.0013390307010066613,0.0001305432934111471,0.012939156226041828,0.011422711345420274,0.06927563985742703,0.00433279598493491,7.798971892612144e-05,0.02119504558515603,0.023607445502032483,0.11841642267962248,-0.13754427020092563,5.010539078200112e-05,0.003533252419295508,0.022991547812730564,0.043600805520449204,0.02303061925397176,0.00025710060023081185,0.014976370488686674,0.022044094830889684,0.087409425891442,0.03839480350896588,6.271167182344936e-05,0.012573618241754837,0.01534004552299946,0.17395876339043737,-0.003126097967838633,2.275158315326251e-05,0.010644409085638209,-0.001322176389031527,0.004611935822522575,-0.004214450166068269,0.00010021093326241166,0.007144351865923875,0.016370394531941928,0.06816707585175506,0.022033782611884153,0.0003785405881206548,0.0030202479354510354,-0.004474450594461061,0.017838583766148698,-0.0032981793909790157,0.0001436650541922036,0.011580437979095961,0.002161428755514464 +2018-02-27,-0.007319316227603725,0.049874219481530285,-0.025755718903544396,0.0001551961640938301,0.013095033130841994,-0.00157157690119994,0.005303242939530563,-0.0680719038053833,7.110573682952835e-05,0.011476726027702385,0.033531212187849734,0.10605696464122447,0.046108756339691685,0.0001462538357463343,0.005104444530870533,-0.02249480887220529,0.023786282336862672,0.03361097849385793,0.0003191711249236049,0.00540769414070129,-0.012198147669114612,0.02864520153433347,0.0035815456634833744,0.00022281261556005363,0.0023295414934347393,-0.004342658746860745,0.009754395098359108,-0.0007159431922955334,9.720802071456848e-05,0.007424928944764213,-0.03195179505955336,0.09568755688348912,0.029553197219928072,9.797824384632882e-05,0.023355895273146923,-0.008541300246536043,0.08533623326472593,-0.01018917785578074,3.43233077144404e-05,0.01947723355699787,0.020138806551981667,0.015913508131515517,0.0525713175907123,0.0009759163330232993,0.0008101015028472171,-0.015248490326044323,0.03511471503628512,0.0005343554322053444,0.0001518446820703006,0.011791406037475706,-0.01342073158347162,0.008997518532117065,0.011632199900106046,0.000729084388322065,0.0020319158894843144,0.016945775997255736,0.25328075707073056,0.03013010799652112,1.9938021272796365e-05,0.00531238507558611,-0.0065890271629715155,0.018885023833132866,-0.010420998600818182,0.00010364653755833612,0.01715865633796239,0.02327139593201943,0.12218371775597596,0.012648044545015592,5.361309980012889e-05,0.010394639924640896,-0.003446361444161257,0.002784017976149497,-0.008789952879089671,0.0024144141097583198,0.022583024060182578,0.037634111364453215,0.29968980047639954,0.020052295738437954,0.00010333841852636124,0.0007730521817237764,-0.011482396329924847,0.05545785577738565,0.0027294849428992915,0.00032061046275367737,0.000934732932793333,-0.03282820981715935,0.18814417085201335,0.039093835491936416,4.914930591140564e-05,0.0034177097682188337,-0.04698686391126687,0.2278796003777207,0.0416911920148004,0.00033982695006052797,0.011010935875605529,-0.009280982234176522,0.12378891564927334,-0.0010196980724189214,3.1113037607431734e-05,0.007543127049719314,-0.010668558226422011,0.11890800140740748,-0.004923519374676666,2.9976185064573396e-05,0.0007294482268771596,0.004637621050047001,0.012531317500463216,-0.0012247155725561502,0.00011921235867137268,0.0001114101533227739,-0.002515442531449642,0.018899646803154528,-0.022241795555570654,3.074348438199059e-05,0.00874097723248553,0.014545162815020697,0.04067703924944981,0.013333942128677521,7.927689550881057e-05,0.017455393712520723,0.007490597330295776,0.02827982667246507,-0.03010442820879821,0.0001211123145009598,0.0034123196960913127,-0.01022858141246843,0.010741510528047286,-0.022960829177298882,0.0005442840518041956,0.003302011561975275,-0.002617045104653574,0.010241551186343985,-0.04051022244303822,0.00010755521603191252,0.005760106477680492,-0.004690339298278608,0.015213908557492198,-0.17053018345476278,0.001978712210161031,0.010613007807709083,-0.0462073528059134,0.44482655052362463,0.10973383855763537,2.6711764844962018e-05,0.010321701325682936,0.029018212418004372,0.08516921725320165,-0.0861214039682572,0.0011139335113632756,0.004118140060386184,0.014817267538820508,0.12218538150790638,0.010430508185565403,8.075594741486281e-05,0.0029665498894932574,-0.008340374579593995,0.012076601884289174,0.004043232593363714,0.0001629994701120681,0.022900199247801938,0.03263016003167751,0.047617572202588505,0.041711363731528006,0.0003933289099874118,0.0006469613529653628,0.031471641745259425,0.1220458897489414,-0.10896856397635651,0.0019986952582809457,0.010278459360224482,0.021333688707021934,0.09241974302735267,0.003597542847978189,7.406134034097001e-05,0.005796594123513698,0.08647004702784038,0.10370170766073994,0.10403721880481066,0.002072797990672186,0.0137414193039612,-0.0019108831204146068,0.0058662576070668505,-0.0026647427878247138,0.0001290592182902793,0.00321918176881534,-0.03095966262834851,0.07925941795179292,0.012440011646406375,0.00015834549675811734,0.007721058060384788,-0.003586715372638664,0.015568062073287148,0.0001999047981255554,5.6231061847373134e-05,0.0015753085303616171,-0.008277340836780755,0.027214015936475402,-0.04113148828616177,0.0028828116053145926,0.03598456165978933,-0.014226322680449722,0.07995781118520486,-0.07119169930890233,8.850592163388452e-05,0.009707016557592147,0.03586901676600108,0.2107006726085039,0.05335041521651007,0.00012345660629783047,0.009295065514743767,0.0035593787204849553,0.02178276071954615,-0.006118351303471879,7.728762779302441e-05,0.012085710928260019,0.028940184001957716,0.13427050296595208,0.010985959803222218,5.417115147916401e-05,0.007951331997799233,-0.04018586433274094,0.07654817992136474,-0.001136696383720631,0.0002559574877253573,0.011812615871256826,0.0007462625018477212,0.0030719354062078174,0.0002609661786635928,6.040792473220837e-05,0.010819479608953183,0.010007354378723087,0.09290481764828304,0.002899260467991821,2.7791521866986767e-05,0.010366396532797978,0.014500144244360424,0.04613755276734964,0.012574417733832853,0.00010985674631934079,0.005036839165288924,-0.009367190268385783,0.03526874609980004,-0.013661917721481674,0.0004186463345759615,0.0006127423961491373,-0.01029640001493193,0.04546184133572395,0.0009882954337591529,0.00012972096794895753,0.0181711355522996,0.001355467297449186 +2018-02-28,-0.0011292463308475368,0.006150623380471059,-0.00946784398230134,0.0001941583788954839,0.005448855562714773,0.05101415573825062,0.1732528228988264,0.05278627148639999,7.065142255469151e-05,0.004890407506734448,-0.004530889996028242,0.01234992108677088,-0.0015761098743871742,0.00016971355867637788,0.016806716682914793,0.0440447388447757,0.049416230657537016,0.019903880387195382,0.00030081000722985505,0.0008586424439431858,-0.05119917162908478,0.10157755082642177,0.12433460192289916,0.0002637320858033063,0.0009232159679995726,-0.0010945763139908894,0.0030508657218059,-6.658033351441193e-05,7.833749724691598e-05,0.003935336615463933,0.008593568919065894,0.03497049854280407,0.0010261666057782403,7.210437152287992e-05,0.0008916433301957343,0.010740441297321985,0.09169785416947158,0.01333659396499357,4.016627593427332e-05,0.0062124416975512485,-0.006821234172838066,0.0049295265372312465,0.0053811577698946785,0.0010670936531832127,0.006784684440851504,0.0247729938813651,0.05100996797540308,0.006484760167821621,0.00016981862921098008,0.02713605068560158,-0.000283764943515944,0.00017472361999408998,-0.010570041098045846,0.0007938372624624416,0.015055159825091095,-0.0004858788137874849,0.006057482006734597,-0.0002875409776173452,2.390334166679813e-05,0.0055206863177925045,-0.023043775430297092,0.05972406222269656,0.024202231503503563,0.00011461866158056096,0.004744683620036738,-0.0017515781218451132,0.010013344320720199,0.0053069729194827305,4.9239335137064754e-05,0.00912794231548443,0.029558669740671333,0.025939014505893095,-0.0038272916564544308,0.002222564563583002,0.003521795228402593,-0.03729875019634361,0.23227850035522982,0.013535049360169027,0.00013214093457392605,0.0041724757823251146,-0.009039593924737924,0.04857868411351846,0.0006163316085470091,0.0002881452116548353,0.027919668802138694,0.008976180945811962,0.05041530811444659,-0.07630030725005493,5.015221619220827e-05,0.0006935735892432536,0.013225334071505607,0.07590058035196733,0.006270835612666216,0.0002871761454139513,0.005635027113087717,0.035990176700808105,0.49158686837722443,-0.004048333612864357,3.0381830535954405e-05,0.010227172776618611,0.00758260852304166,0.07491560605255924,0.001615754758020739,3.3816452528061806e-05,0.007385350205219448,0.027249848484328203,0.06628213906895473,0.021659152522532057,0.00013243120539792167,0.0025413508828286196,0.013594188999914858,0.09581260439635002,-0.00441998283016938,3.27735158912154e-05,0.013043910249399073,-0.03128013994544348,0.08861328855870229,0.1284600936529132,7.826132845293933e-05,0.002132154058353743,-0.0017962007623766698,0.005990104783603071,-0.015691629107422358,0.00013710997527264954,0.0021069073123314037,-0.06718167885014995,0.07459934463532965,0.11664679786093848,0.0005147441288321303,0.00983210199527453,0.010433070806725299,0.03356313934275791,-0.05181229047962732,0.0001308385094696252,0.0014595061463998143,0.009382827823737996,0.027003519402543353,0.001530542288732,0.002230142179411252,0.011031580936986174,-0.0008818044465351092,0.00968946367199721,-0.01188641447749948,2.340209515745418e-05,0.02006050622519534,0.01691458474823557,0.04953748424885203,-0.011587663395454747,0.0011163455946128012,0.010378948564072302,-0.01013437720028269,0.09391048385886411,-0.010950739392921889,7.186354379651425e-05,0.00045690665314661837,-0.011139660510378435,0.015930026928282423,-0.011393452324159224,0.00016504441472129375,0.0009644476112996207,-0.013425984766147994,0.020543602355650146,-0.08902359871082334,0.0003751228019476451,0.013204058530225514,0.023021721882932077,0.08352010543711601,-0.0166643190227772,0.0021364715319338503,0.005071390078768832,0.027028742489688187,0.08724312532368182,-0.017214054669816174,9.939968224583746e-05,0.006781705685780239,0.04662534820180221,0.07203215310803517,-0.011965876919338448,0.0016090623889797638,0.02175338494434982,-0.015387192746805164,0.054263079566286884,0.01685904391737455,0.00011234946095923815,0.000784566358968218,0.02969543106952154,0.08048785183599347,-0.09447983782394909,0.00014956145227382772,0.006354123167454168,0.02313498263310038,0.09483933700022264,0.04150030984680522,5.953804823539385e-05,0.004103507906580807,0.02003152437268132,0.0658445944314645,0.002824888838874675,0.0028834467185576158,0.026409766523086697,0.00029779596300780317,0.0014932996910604103,-0.07548518692647628,9.920016659824194e-05,0.003875684237854893,-0.017481382036859255,0.10408126041443377,-0.004839640678264768,0.00012180468851119736,5.5267687672070015e-05,0.031530354410763135,0.19053252404345764,0.03292763687934566,7.82723603411156e-05,0.02378900999786945,-0.0016123683659440434,0.006841573926850139,-0.037545671632624,5.923189669946147e-05,0.005398351611300757,-0.052345653899720956,0.12088328977121654,0.011670814362627461,0.00021112698843316841,0.02070850341249104,-0.004352347862058454,0.02051305096724139,-0.007211502790233024,5.276035583528103e-05,0.006461924512588281,0.0018495465763539213,0.017506650154630106,-0.00045900538638331853,2.7257969724945685e-05,0.01180983800586582,-0.00980453320154052,0.02770736909306392,-0.0276656916634916,0.00012369171070942053,0.01233707458965631,-0.00509048892990882,0.021948094182204256,-9.042431350058011e-05,0.0003655869233644681,0.007106685315762732,0.007232332150678551,0.03414650593443001,0.002985674534499769,0.00012131203511045115,0.002467135223811916,0.0030027121141734973 +2018-03-01,-0.02410040365096342,0.17222814519765658,-0.002672414949665067,0.0001479812787706871,0.007709855158120489,0.015484157663812016,0.054317050641360755,0.0005547914198209349,6.840091812665854e-05,0.015132348293176763,0.0238083906558183,0.0714973140947333,0.014270515528876428,0.00015404142137199947,0.019669417167330165,0.00136247623234693,0.0013158494897560018,-0.013310998046037567,0.00034945444974396095,0.0015769311307929264,0.007908950069373812,0.018406099131365792,0.010268149897843365,0.0002248303048572299,0.0004122957733193113,0.016755729925419315,0.04304318245533189,0.10193434891199386,8.499741492510461e-05,0.005776298350772365,-0.003602156233330073,0.014844793754303299,0.0004806207150964051,7.119971123519442e-05,0.00569003864590502,-0.025840352756376247,0.20750665158746484,-0.03230640418268176,4.270365325450081e-05,0.0019608146825408953,-0.012085816340841344,0.01181969279370657,-0.06637527412801184,0.0007885234039289032,0.00013114580848548715,0.01776950103033597,0.04394595452998612,0.004112486657635191,0.00014138984465006447,0.007565366756527057,-0.02715235091298008,0.021035804430365086,0.03835390738668865,0.0006309176419674867,0.0040713457211458285,-0.025899722151281522,0.30728980343010864,0.010935608476407524,2.5117114469167506e-05,0.008687742073541083,0.023180653040894682,0.057253294501287945,0.0056716847523070974,0.00012027523728524416,0.014102615204382423,-0.004941872444227488,0.029462375476273533,-0.06975651700167163,4.721560836783428e-05,0.004129441475888345,0.07485116853162684,0.06959524032989127,0.12068952191324996,0.002097693431710201,0.024873027106680837,-0.009827886908504488,0.06667991135481437,0.0004214915926356298,0.00012128783510354139,0.02268639126463292,0.02761362132112588,0.1740336273400861,0.008077521381508392,0.0002456961915087462,0.02300473628924715,0.0736780889746257,0.42392964748761713,0.052940974011573216,4.895595408924015e-05,0.008873272393097306,-0.013670838752568575,0.07948396198512239,0.002115982559450974,0.00028346696985960995,0.00978561363859715,-0.017857646352695457,0.23563194896304013,-0.08572571236205105,3.1449972782795306e-05,0.016256975167155484,-0.012381964090050608,0.13275358164019754,-0.06634475172095713,3.116197696567909e-05,0.0011792235060998453,-0.021749020822779703,0.0568439973154591,0.00717821374127237,0.00012324742507223026,0.03551142637563473,0.07294080358704536,0.4844667491323111,0.029551022350919786,3.477754687421146e-05,0.0043693249389979575,0.008585971493299564,0.025799002391011655,-0.049032276178330766,7.378429156064292e-05,0.01357773417206343,0.0074472332288417565,0.027542763137722633,0.004449588862523027,0.00012363346564987155,0.004432308779996994,0.019791943701186674,0.015798543685164566,0.007030984809262421,0.0007160559419086709,0.02741812555984472,-0.016455484992274942,0.05761246730789107,0.004327352163744819,0.0001202209681767505,0.005996183038343721,-0.054393025101877976,0.1514533001904033,0.0832453734318514,0.002305067495391172,0.015206161541307515,-0.0456138638681442,0.4394899397214286,0.07922795946289643,2.6688865879966868e-05,0.022201201763243084,-0.0013760602059857702,0.0038952196334514884,-0.108287704703663,0.0011549860929474232,0.004154787407250375,0.024418907681130964,0.1911861725927089,0.002462470070670066,8.505412814774916e-05,0.020294768952139053,0.04505597223894612,0.05996448574494963,-0.02308169403230224,0.00017733874809905945,0.0033724368151665345,-0.04741903534379634,0.06910696712731552,0.009516837307584741,0.0003938535777427622,0.01004002322059754,0.007039761433031611,0.025577865040550325,-0.02995719754977135,0.002133260988840044,0.019280490908975094,-0.0006403328000731516,0.0024135183949762773,-0.005918774820856009,8.512272257000047e-05,0.003042642208275473,-0.04410878228740853,0.052365989994003735,0.01661106829773344,0.0020938855593170195,0.017208677703431954,0.004686777844559842,0.014480904206724344,-0.04210483936577024,0.0001282315004812295,0.017602703351405895,-0.004384813623870434,0.011126061728246135,-0.0238903435648946,0.00015976073482833683,0.0016272064177298587,-0.031143167434440906,0.12368664344810355,0.020659203384858504,6.145453001802373e-05,0.0015117283793926787,-0.02971826316328476,0.10239458686695868,0.0006641753528927607,0.0027508346366381963,0.001200716947045024,0.02930831943381349,0.1463221175678783,-0.04108235818154502,9.963719882807012e-05,0.014874921030139673,0.0388215501704318,0.21665930585890775,0.02537117083000122,0.0001299440235655639,0.008788394962638444,-0.005022311121949852,0.027595093657191754,-0.01574854930619559,8.608360364617396e-05,0.0019065843144580128,-0.01997170725544121,0.08320327752668835,0.005968589805271295,6.0328447904959286e-05,0.0020036164754916397,-0.03479060236026346,0.07010304960249279,-0.014055283301784832,0.0002419660480071059,0.016972322542992118,0.00107207908531261,0.00442237870141175,-0.008375878206522582,6.0281669247578573e-05,0.005242063609944383,0.02832052754248608,0.3057282861225958,0.027839553947581728,2.389995056768172e-05,0.008237939788181133,0.011322984230842995,0.033742264968778565,0.005225296348770324,0.0001172993581033659,0.002116590413924867,0.030811291866580923,0.13346750531446133,0.025462823863184193,0.0003638834770084363,0.007671624088078343,-0.011414027454482804,0.054568517092163434,-0.023648938333334275,0.00011980323820134174,0.006436072057878366,0.0007487613206571351 +2018-03-02,-0.007456714692302155,0.04967458877703729,-0.0016290187928001303,0.00015874491763703138,0.016654503292357348,-0.026240249561728594,0.07855571783835943,0.021018872863950183,8.014947578112334e-05,0.00395550154429848,-0.05083666587889464,0.16342973605676017,-0.05104382653965208,0.0001438941654770743,0.023644232887227574,0.021929049352458194,0.02588767700960071,0.009245089369399126,0.0002858871135375133,0.02003050188678915,0.018895195469484954,0.04067408036974284,0.024862917420820287,0.00024307003240636745,0.006004417400118379,0.007393548573566432,0.019045688486737336,-0.0016649166716651029,8.476235091980884e-05,0.0017677602118596283,-0.028191825034352008,0.11330040550325293,0.005089385355421511,7.300987121799218e-05,0.0008794909903013325,-0.022530565346138714,0.20451044233675036,0.020530207007194948,3.777941387224479e-05,0.008639626192102082,-0.015890083144294805,0.011958563993450515,-0.03496735146443177,0.0010246886467477764,0.002861672607959557,-0.03360479498501852,0.05945795160685075,0.01251876844198333,0.00019763014687907608,0.0164669759725299,-0.027552722121575876,0.016408943454350695,0.05209807156498837,0.0008207450120460112,0.004885663722614704,-0.01384699800355809,0.17494178906822463,0.014559986676072015,2.3587659800666536e-05,0.0027594340662626515,0.005073359520102067,0.012695672478351763,-0.004843078687118881,0.000118711001044384,0.007069737744391754,0.014182265079738361,0.08228407631833552,0.0056381727769197094,4.851674078186606e-05,0.0020626576739933233,-0.016449662439685906,0.015044757111298447,0.0010418952003310052,0.0021325281965469682,0.003321078711253303,-0.03772142033265715,0.24212498665471066,0.013208909080165625,0.00012820369282498504,0.0011680365669924045,0.005443271990387837,0.033747786312642476,9.554271338199195e-06,0.00024976005258043455,0.009758862913132065,0.012888589469888705,0.07667846379238077,-0.04523790597087135,4.734705197568434e-05,0.011567361155381652,0.00682660499605612,0.04303017060331845,-0.1421674716160059,0.0002614679812264283,0.0003303503130191996,-0.018507051885477004,0.2427196460818421,0.00477973572443668,3.1641899267225454e-05,0.00033412707495662644,-0.0038463059763304973,0.040855731329040884,-0.0007345390577257135,3.145375863799761e-05,0.0005423831607426549,0.019570923190677932,0.048657080968231174,-0.0058668951084288965,0.00012956509478136982,0.007841246138426135,0.001007871501990707,0.007257888300046363,-0.1353672593956777,3.2076521198486173e-05,0.0029592701455453483,0.0036836802843289934,0.009976432421778498,-0.016283533123402593,8.18623196966424e-05,0.00021115212158281005,0.012607934982427073,0.05294990685259981,-0.03336097646780281,0.0001088747963584942,0.005467230921658531,-0.031403429734163,0.03272069178105735,0.012660567000731761,0.0005485676168717557,0.005789097589174121,-0.0015430015598945782,0.005697496383994654,-0.03412493883533095,0.00011399041006212693,0.01704968504614794,0.07344272352509873,0.24007923334246795,0.12889061081816772,0.001963420643384633,0.019294390110082764,0.05542702114163018,0.5153210275675405,0.12770048792539415,2.7658324633479365e-05,0.009066840327300756,0.046632957327366,0.12739115588235977,0.0801481850611812,0.0011968092843371969,0.010885175249730138,-0.0033495576334248963,0.023203391296259087,-0.015995068413218332,9.613059582199003e-05,0.015294930119983398,0.013662784822775314,0.020356621926311037,0.001372308359684157,0.00015840865412703823,0.012340460383148243,0.013779889263004486,0.020298681609019185,-0.058496486542455456,0.00038965639637805006,0.0003092129958550924,0.0035112765348014495,0.01604401679169171,-0.013257779688379498,0.0016962984588577048,0.00296153045368561,0.017740856598315258,0.06808210954376315,-0.005669293058985549,8.360494236702542e-05,0.0028119646756660515,0.027866588258946553,0.04553541490117869,-0.017602732160492674,0.0015212888931038701,0.011572432299203182,0.05194841696804291,0.20396804684999303,0.13338641670190432,0.00010090814371740708,0.0037690945764108346,0.00017997218556324625,0.0004620768887875579,-0.016263846606672152,0.00015788887104194662,0.013950960368740571,0.0007019739389915474,0.002507868313640136,-0.018505783576678956,6.831722005799304e-05,0.013508759117099391,0.04388814793629898,0.16499275181145565,0.03151765348652233,0.0025211602210212184,0.03445684118979932,-0.019480956631972836,0.10943225355238814,0.024605835619547115,8.855345442123235e-05,0.0016700096723193157,0.03216976714770556,0.1646386362594165,-0.0368205013777679,0.00014170231379714637,0.007949940236541855,-0.03731007553180047,0.20036478048820988,-0.1305337873269401,8.807516024895813e-05,0.006933079161949983,0.006266684200772294,0.029983575863805133,-0.00024580502735235994,5.2529319984742714e-05,0.028574254692366158,0.028195061346511605,0.05602086319451601,0.030002473598916054,0.00024538761612852576,0.02048952811886682,0.0023569771086065275,0.009702645016303954,0.0002439209945099531,6.0405933197106e-05,0.01655573776877706,0.004696634099208183,0.05867005539567275,-0.007252162359694225,2.0653873564648404e-05,0.010545860426598542,0.002043172779379443,0.005887893289760993,-0.0009352952647008697,0.0001212981362944014,0.004573558325068175,-0.009379690761779361,0.03718159177401028,6.9942044532789e-05,0.00039763857885961456,0.0022216328808260643,-0.016088496166308097,0.0790864401949208,-0.15462877946689524,0.00011651590684636976,0.011269626276440622,0.0033287959814875968 +2018-03-05,0.030408707370802958,0.22664775529157236,0.048513253557437276,0.00014188390115046464,0.017744750383356468,-0.02093568971231664,0.07432545188604467,-0.025593638803914586,6.758654425824047e-05,0.0006480966051433798,-0.04815916329277097,0.14015773166663076,0.06284349962649671,0.00015894946748707777,0.002119046000949671,-0.009456256949721064,0.009685794167227315,-0.013025717358662047,0.0003294973189890627,0.006577398981064595,-0.013438158989530435,0.03827958626406863,-0.005928002515450134,0.00018368357024460774,0.01780407488219087,-0.008043303613693181,0.02471840689654705,-0.028433753261414313,7.104945080928155e-05,0.00014503361479536038,0.05322993355414749,0.2028554223291,0.016559395178788575,7.699440343737193e-05,0.0026279333992005084,-0.015343752092157034,0.12483403162040232,-0.13213043891653836,4.214996233366639e-05,0.005040695176803972,-0.006215665569990429,0.006226366258102548,0.006138131537294195,0.0007698351951463528,0.012898769575527139,0.014870090317274971,0.0437282128835652,-0.03352206095815944,0.00011890873640771875,0.01103970376937264,0.009151220345409935,0.006541671675400638,0.0005381262475059863,0.0006837772189813319,0.007933612985473964,0.009149133117976292,0.10631649012043468,-0.04630562634028017,2.5644964686294098e-05,0.01071231365185161,0.02777162076296082,0.06897457885259768,0.005993803885807084,0.00011960882017899887,0.006786272896210971,-0.012460628595695685,0.061162136545001786,0.02774607167564475,5.734811162188497e-05,0.003479459502899631,0.027758514787727513,0.02414753712837478,-0.005149000665793001,0.0022420554830522104,0.02159025443213709,0.0029000643279687654,0.014870454507284402,0.0006682452690396759,0.00016048538794683658,0.05133599227762591,0.020069441972728735,0.12178368386361181,-0.007519768430551189,0.000255184576654918,0.0018220269129093365,0.06390463755842622,0.43624087498226893,0.03319643662920592,4.126358683288046e-05,0.015703381637736526,-0.027008764965741276,0.13796561608263183,0.004377499743062559,0.0003226418271228032,0.027616524301077104,0.008312465406177362,0.11820431896338035,0.0002240059271679228,2.9182785100686163e-05,0.004918889200687787,-0.0013340277406684714,0.014457430850361304,-0.027735806192213747,3.0828716641581856e-05,0.00044028541207653577,0.01141186221933918,0.03630028219419657,-0.041677966615896296,0.00010126731008725208,0.013242976818258355,-0.01391140477454742,0.0891532554327986,-0.03768328516960766,3.604343367500521e-05,0.0049308966902340615,-0.002622310180787187,0.0065519678031569035,-0.003350311041699985,8.873392428544964e-05,0.007189073044406803,0.005891262638514043,0.02201302939636426,-0.01805620815343161,0.00012237062171592384,0.006299851654513442,-0.017103903691639968,0.018795657431615223,-0.037990551659966516,0.0005201316517351054,0.016316790024429005,-0.0179959223444994,0.06849788127650985,-0.03407376105737953,0.0001105816284266771,0.0012656322843171302,-0.018936187983966565,0.06929109501375538,-0.0013474322992321774,0.001754019052280871,0.005422249203737254,-0.006095630134464875,0.07058309272245264,-0.0009500192851058588,2.2207522911523682e-05,0.0076732660787625934,0.0038743254025304812,0.012458035203064042,0.0022461582391221755,0.00101675849616344,0.004975194788916482,-0.045825649048045466,0.3898506584147957,0.059546972427361115,7.82773286135537e-05,0.016258743832235394,-0.023038859091156414,0.03619627685641494,0.04252148671846214,0.00015022508328987777,0.020374492296077552,0.018334825923892142,0.033028860037159255,-0.03403477912192837,0.0003186303349965927,0.005659553456213412,0.050388492466337996,0.22031795277479585,0.06364560730201752,0.001772686017021885,0.0208888231370516,0.0017595236079439255,0.0067533788811297915,-0.07415687696415978,8.35919301482944e-05,0.021228032091052902,0.03441575691850352,0.051444600500855135,0.0015969570035008734,0.0016630094549816453,0.030121284731852604,-0.040498394601342164,0.12289976008171893,0.06696565474995449,0.00013055779573745017,0.0012301125204144888,0.05691577600563431,0.1682563213789332,0.09124790802439263,0.00013712658105984594,0.019513822826972876,-0.02918776690398109,0.11565674616687059,0.012607130426561763,6.159476809141329e-05,0.030122188579212453,-0.02515479323514668,0.08028530509148972,0.0017090116739076559,0.002969632775257181,0.016809851110543714,-0.007326098494761076,0.04117235628467352,-0.03329863491894159,8.851311024469705e-05,0.004057585960441456,-0.011267288989430524,0.05661672568353489,-0.015575594048993975,0.00014432297369311282,0.006676097717034753,-0.011381892248845832,0.06366448140923714,0.00468346458568137,8.456019246822222e-05,0.006956771115032124,-0.09275655101448017,0.4699273644498954,0.2294330575146073,4.9609088946204845e-05,0.014650466505187752,0.030094077144935134,0.0582665275017868,-0.06378028692246093,0.0002518206193306404,0.009736579957161267,-0.009499205412589355,0.039765671673615936,-0.01586605907810937,5.9400942037291626e-05,0.006504907324307243,-0.003039230463160571,0.026776480678210944,-0.17008667019241933,2.9284743430792848e-05,0.017017718919862323,-0.003668646052517657,0.01199190817689739,-0.018935098289654253,0.00010693662752621576,0.005889476220095379,-0.0038127759295809947,0.015175874925627218,-0.03653155056260854,0.0003960185375086949,0.007692726267140781,0.0035971227712220367,0.016383780129856522,0.00011983413510853064,0.00012575143382203088,0.010705700823695817,-0.0011453591913221572 +2018-03-06,0.013789412249310979,0.09828201477709206,0.010550953957748528,0.0001483741651999829,0.007980988168736528,0.03965188439379839,0.1558893891890171,0.030516083086472554,6.103202819354076e-05,0.020446225628272384,-0.06788622971898463,0.2144578309730435,0.09220767377117964,0.00014643233399402127,0.006651404827148445,0.01725762847690416,0.018064804523205823,0.0025852821895639496,0.00032241534624061083,0.011102051044228303,0.029419835360152653,0.07718008440274543,0.05147019556575567,0.00019944941237865958,0.02088938098441467,-0.0019913238092221968,0.005416826405177262,-0.0013243529098627093,8.026823406061064e-05,0.004043327210765401,0.023727385347477096,0.09214165817710294,0.011211813388790955,7.555856742647413e-05,0.0189790879700825,0.0011277057776032929,0.008934024333490243,-0.009566128643429556,4.328598343806993e-05,0.0007803455776797788,0.04352719667444192,0.03141598881510661,0.26044884951273195,0.0010684513465719922,0.005063128036616139,-0.007880705822471329,0.018364472558071148,-0.008142575274463748,0.0001500543337565643,0.003037290127203116,0.02216005497913084,0.01645175803295498,-0.012756635745721365,0.0006583894730784304,0.003921476793364832,-0.004319184529665451,0.055759373384582374,-0.08315752544932788,2.308376602902638e-05,0.006755071259456936,0.007984924651788511,0.02530536063050966,-0.01316958647999662,9.373662860464049e-05,0.01772842468594651,-0.003485712041131912,0.022476479690149702,-0.12005611079491717,4.365409938223521e-05,0.00042335265445075525,0.033455777749100496,0.025380211426241594,-0.0014856557936528485,0.0025709810014110665,0.009739735731209086,0.04656895862190775,0.26967854715344525,0.0029081689297910146,0.00014210266875467394,0.011067686391515898,-0.020360430566673582,0.12069110881292482,0.011478260950201663,0.0002612281125635643,0.022539689075808216,0.09070029128565103,0.6144077568086178,0.11146685700985434,4.158272516408052e-05,0.0013613982742282662,-0.02249233308838002,0.11749333256891578,0.0062011577054819555,0.00031550634061867916,0.01264983820889485,-0.12002117255806295,1.674681988894163,0.20233807759528916,2.9741012332171544e-05,0.017068172996315443,-0.0026395644712291434,0.026620435617950796,-0.1290166566715267,3.3128275193344714e-05,0.001184847293383774,0.01698644372903928,0.04825629747080394,-0.0007585575361555596,0.00011338907790223446,0.01757527461943397,-0.02981299746617889,0.2082134039930332,0.016899555569391066,3.30741989869701e-05,0.020395700695626913,0.014837670744697076,0.03693964261302203,0.01152865997941584,8.905338305826957e-05,0.004709475972817509,-0.0212921458496574,0.08459410937154849,0.11278570206738985,0.00011508743359791509,0.00441142917085005,-0.008503036330395406,0.007975670112001376,-0.06503128728236107,0.0006093718857835111,0.013942332851446177,-0.03894387027662638,0.1580122941581237,0.07563786979270502,0.00010373713281771912,0.0008607815621782971,-0.030790404491330997,0.10800763435367675,0.01850643197051331,0.0018297009556921952,0.0032277207757011395,0.03799590918623098,0.3693023127115242,0.02899233917000775,2.6456781396555725e-05,0.048434769302964205,-0.039399838298137015,0.14163883182115147,0.01091057409143808,0.0009094595191258964,0.03498103998624247,-0.01199200249862971,0.09248245197687897,0.0025261571777885935,8.634914027822705e-05,0.006546580615737326,0.00659719337815279,0.011032099956902417,-0.12230353330459987,0.0001411387973705612,0.009866904942046412,-0.00475505207159111,0.006915794595920481,0.0019226981577918905,0.00039465454169525824,0.0019239199695624317,0.009268585196242619,0.034790413337170215,-0.0386199061896386,0.002064924603576903,0.0016797477325551386,-0.01364835099279491,0.04723419873396711,0.004810806454630266,9.270731444016716e-05,0.009598172860689872,0.029461737756929927,0.041132762630804544,0.010544164122798058,0.0017805233438806382,0.02321730177342691,0.00880365084868538,0.021277331571976935,-0.005876567130580839,0.00016393122540298637,0.019767413509458247,0.020567006646265228,0.055754091864198115,0.006331375134592943,0.00014953908473419304,0.020410477402386214,-0.018724460388276076,0.07892021493640108,-0.09976787696177344,5.790752141847812e-05,0.007323991568974567,0.023385980819215866,0.07775040803168402,-0.011636910198064577,0.0028508277017768894,0.008487413486486343,-0.0004223766399875443,0.0020981126724610687,-0.0027905255713939234,0.0001001409379624002,0.006357862491628406,0.004958576922116906,0.026498528143033245,-0.007520889149946776,0.0001357050743842165,0.004403371041581436,0.028964382905935466,0.1906543599828788,-0.07079408492628667,7.185652942177928e-05,0.007626636482348688,-0.010772031185968596,0.05981505911321413,-0.004866570336129176,4.526207507972888e-05,0.007028010513587113,-0.08127715085029262,0.17287852460677072,0.02046102453190446,0.00022922227456153828,0.029293723828319383,-0.018152267331054184,0.07352630833146989,0.019723112994868106,6.139068702567126e-05,0.004380307602435367,0.0009687550353410445,0.010515890778452578,-0.01709466702316364,2.3768358623980857e-05,0.005664795382743899,-0.02137130015661212,0.07061762022493044,0.03314133815018325,0.00010578566743739294,0.008097011149524892,0.021870637916699544,0.10221694506598285,-0.02762170980019988,0.00033726131138619867,0.016440042469820157,0.01882442429019405,0.07278435462833414,-0.052315823950865814,0.0001481342433365527,0.009513190452224752,5.30023403431538e-05 +2018-03-07,0.040422757614426444,0.271316774421366,0.06914836630294982,0.00015755633725792612,0.004127076830653115,0.03250208119480573,0.11717659359096054,0.016571210879800645,6.655502162553742e-05,0.016425281386892438,0.022576357760029725,0.07881320482076051,0.017366088643083703,0.0001325110500008439,0.01968569476603799,-0.042882873303978046,0.040212353955918684,0.1096281235481365,0.0003599086102542052,0.006005963216817855,-0.020541649034334062,0.03757494293710301,-0.049344651163534994,0.0002860452546052597,0.011693012685084396,0.023088535358845842,0.048958083887260286,0.1803820917343386,0.00010297189653268896,0.00711464317984046,-0.025137285613934152,0.10281954615411398,0.012203667572705324,7.173523945513132e-05,0.027602240915656454,-0.022259674468157322,0.2089975224753451,0.007852338401094727,3.652382770601612e-05,0.006484153310784697,0.00621521429435948,0.0052832933233647,0.001379684326593955,0.0009071856480527785,0.0046882280708021645,0.012022262916174458,0.026444195459508588,-0.025711314845948675,0.00015897094255479447,0.00857935385008879,0.02276549971883085,0.014705157777816552,-0.00048267895150010364,0.0007567141542560876,0.005183167625493354,-0.01413433272356749,0.189244559627383,0.019287552742196075,2.2257413617957854e-05,0.009989192616993582,-0.05431891528164822,0.13774743153420232,0.08853141091645961,0.00011714361362728062,0.010964014645923859,-0.0003048737955819871,0.0016882187665657362,-0.012309601925695836,5.083387214721146e-05,9.963180569338261e-05,0.03157929966777538,0.02973480236759551,0.008348004764189919,0.002071383014716904,0.019703221968577562,-0.0611594690951381,0.383785898976129,0.025295411668244172,0.00013113746999721744,0.018019377372879456,0.013486089536439615,0.07425067093778709,-0.0061762622260526845,0.0002812508789039897,0.025134146683758206,-0.0317005621827406,0.20308824471998313,0.011820181779157753,4.396865027502199e-05,0.0024112590289164177,-0.01806790013010277,0.09275704063451948,-0.008038359848438219,0.00032103146788244876,0.001982753140178478,-0.02727975534200913,0.3954736699614003,-0.0040882735978381305,2.8625503095772674e-05,0.037418477375041725,0.024284070376841476,0.22230093140016247,0.09464224278499268,3.649739850954441e-05,0.005112311294797286,0.012494207285715866,0.02728258315962997,-0.020568884898378933,0.0001475183258450769,0.005864690896381496,0.0069226466758795435,0.05721647862558617,0.0002973876317531506,2.7947529073822864e-05,0.014879790943723171,0.01254395396761651,0.02816925953889253,-0.04252726946522379,9.872710509966037e-05,0.014620119545918481,-0.00573221848383656,0.020116362107598776,0.007092959290137986,0.0001302932407180313,0.001050706024664303,-0.05950405122572104,0.06281552628103722,-0.0472835478625608,0.0005414459300431431,0.00042197933035672186,-0.006516486868006981,0.02403703670406498,-0.0007864166328260532,0.00011410866038363365,0.0016359795326629516,-0.04028536183044443,0.13801594379263846,0.027955285437116333,0.0018734287632695065,0.021605135851586577,0.020490139963743555,0.20731745613268707,0.008745955446925609,2.541506642033214e-05,0.014465178263114145,0.00884868536322827,0.026783174434679265,0.0021318019432296402,0.0010801597072193972,0.012848053146113704,-0.014245322504966988,0.09978411576995597,-0.0006080993899052795,9.506847247206625e-05,0.006548509711964562,-0.004578836369614111,0.007337698027028138,0.0034808417874809708,0.00014727894856400535,0.0021021547150946226,-0.012296535632436306,0.01733106138216675,-0.011805634657595548,0.0004072504060477152,0.0033588760843631265,0.017499834967240994,0.07395758320969027,0.005618693181699822,0.0018340095104560977,0.013293290156076127,-0.040079277989312524,0.12301554380054446,0.08916267419028572,0.00010453224289297211,0.0008689097535954128,-0.038136631858453736,0.04782285045085238,-0.032452974854900576,0.0019823670383551364,0.002363991911808997,0.011597251634369808,0.03942528587304738,0.002787026628450418,0.00011654570301043664,0.014591114322446318,0.0018632471544972082,0.005282488857485388,-0.0005853572117278336,0.00014298558386327607,0.008990518668618105,-0.017729826936085175,0.07501938721847176,-0.004015190208928248,5.768261081153227e-05,0.023516357866932996,0.019465975027398,0.06586704406392903,-0.05294648235081849,0.002801083439660848,0.026960488353497195,0.014407797489738425,0.06288545222032793,-0.013522751570666396,0.00011396932547999721,0.00048357615981995284,-0.036104516959840766,0.18294469393458734,0.08375982075750635,0.00014312071773045246,0.001410915836104156,0.02587348865385431,0.14062380426701365,0.009912014702189765,8.702516329838203e-05,0.011159473323652613,0.02579278587360033,0.12288355321780674,-0.05446570342102954,5.2753573881549264e-05,0.006309454537127703,-0.007743997071726914,0.012984214811715503,-0.011041436423716433,0.000290789608183424,0.008377550297984667,-0.01641793188035721,0.06729819070009523,0.010414135753092442,6.0663775647735715e-05,0.005736874510293899,-0.004214990461984115,0.04509859427103642,-0.05410906610173158,2.4113756804986014e-05,0.008757753784908714,0.008231007009134336,0.03128117515805728,-0.00799858381630653,9.197692287203465e-05,0.0058047921213653176,-0.003153873886667733,0.014745623723110859,-0.032287857280155874,0.00033713911835733253,0.013657579795877763,-0.03968215260937348,0.16618888754994202,0.08349704820074637,0.00013676187245899364,0.0077510483477934485,-0.005490148811246575 +2018-03-08,0.02756775479710467,0.17430451990821197,0.02574543224344331,0.00016725508570926832,0.0014249482783016477,0.0008512845974605097,0.002511358933256036,-0.01869412317822112,8.133482077388112e-05,0.018109149272017473,0.019265999300495506,0.07202207973992067,-0.0013168895100993648,0.00012374369689126675,0.03165025356759976,-0.006989312164504968,0.007775049818382158,0.0004861792333622315,0.0003033884992872351,0.008820130976170064,0.01653938366997251,0.03710798723009571,0.0013924476185023578,0.00023321135679520505,0.0068159349463692885,-0.004264533656779671,0.012581415832495049,-0.013118558605871116,7.400972143017136e-05,0.003816966577035747,0.016384073598234402,0.06069328976255764,0.0019517147644717795,7.920836835162187e-05,0.008961375689972703,0.006246715877371397,0.0548911656264524,-0.002338598295081197,3.902544953588788e-05,0.0076052979087811185,0.00990770817732527,0.008832765082173644,-0.007059605286558002,0.0008650103680361131,0.002557481411210228,-0.00011014088745001794,0.0002559973690133768,-0.0032213359765537893,0.0001504440291016022,0.004070598847553868,0.00786515137898103,0.006380557761646383,-0.030817002890193023,0.0006025218480419862,0.015919254486192316,-0.003962519448866776,0.05701510740623613,-0.04550484282170578,2.0711151689380456e-05,0.007364996156376859,-0.005383962105730842,0.015547725126466521,-0.01181479966564187,0.00010286939327804119,0.009074530489381684,-0.0013150288763992533,0.0064686942969030955,-0.015540621922981473,5.7224298895864025e-05,0.004696510610716617,0.005741708929877266,0.004706751388711216,-0.04566617473348982,0.002379265382224296,0.021306625230329453,0.009540671423025561,0.06324443614729568,-0.010856724162114239,0.0001241391370145418,0.00631081354413631,-0.01907126063023725,0.09468831329359073,-0.10148703333991152,0.00031188267667048086,0.004925866141221092,-0.002080415017037625,0.011044309520109836,0.006159790226641131,5.306062565680744e-05,0.004751021593397295,-0.02684808597848365,0.1523238296349611,0.0019561482002383537,0.00029049073634517924,0.002230557729398298,-0.014801175040579052,0.1824504705788572,-0.0035638423973957554,3.366521854299409e-05,0.020644388111266152,0.015269030384895351,0.17356125549161108,0.029042777751739086,2.9392761140048876e-05,0.005417989859588445,0.0009647833943626693,0.002570302406686789,0.00032881024063828194,0.00012091170709664254,0.021321670488853296,-0.009986053378011544,0.07949058868161207,-0.10905394965670417,2.901820510184259e-05,0.0055736764691702,-0.007942277705469087,0.02557611079290623,-0.06286914857428683,6.884746374574053e-05,0.011763278509918238,0.010538097465064044,0.03760835592208913,-0.06827919187219113,0.00012812281093668625,0.0007902109897851407,0.015446328151002553,0.01433623166257849,0.02084345358803583,0.0006158370425806452,0.011755012455990574,-0.002438753172086943,0.008936043973948492,-0.04677648257571058,0.00011487051260768739,0.008951978975802757,-0.03898105172876359,0.1256620373194464,-0.020524674623769546,0.0019909879455760238,0.005457210066759001,-0.01889432175597975,0.18448615696354356,-0.01756201680376471,2.6335994202097714e-05,0.0004502743979384479,0.01457956503175256,0.046451899478061394,-0.06827615324028191,0.0010261535681336867,0.014100343279682103,-0.028124716858579007,0.20244301076094476,0.02749864673457344,9.251475746257967e-05,0.016333371878077017,-0.017661851870110344,0.02741676019055921,0.021077060491571237,0.0001520426711723208,0.006432087344507428,0.020212735941467833,0.03333032035010313,0.0038565885040187445,0.0003480883821011876,0.0012017654673291546,0.05900812259461866,0.20854085201055642,0.004215753302404834,0.002193163426578143,0.008511035238572589,-0.03508683940670819,0.14274371392582613,0.0661577631931442,7.886378691925511e-05,0.0004993993753693339,0.019328272530036692,0.02922414407263077,-0.009724792874523654,0.0016441007676868428,0.03591005854879587,0.03358624954786053,0.10268924054507378,0.04115651043488845,0.00012958436503703632,0.011332560271544735,0.015540216141420083,0.04167309199233516,-0.005714833090823209,0.0001511686401172633,0.0013920596261215892,-0.0375705449783027,0.14556729061648208,0.0067178618391779575,6.299377299051381e-05,0.004977069293212609,-0.0456790303260025,0.13953042641229005,0.031259549798512205,0.003102887376965272,0.026128617145789273,-0.005904275716651913,0.027016055941771346,0.0008372573410705031,0.00010871394450253903,0.00033959392520073196,-0.015566255121788476,0.08694526652020731,0.01507958256582747,0.00012983715340720282,0.009593018729981887,-0.026835247899723007,0.1579457147458857,0.04733614638352192,8.036120917369724e-05,4.166471856815036e-05,0.02115273349123075,0.11306211211273688,0.004555203496741052,4.702153455489337e-05,0.020091668561445574,-0.07238320197906181,0.12586677000448823,0.007250602991053087,0.00028038585310040875,0.00425643039436514,0.0019039774702079482,0.007299368065893128,-0.17877787048608945,6.486208689919772e-05,0.019598372180945147,0.007820887902194222,0.07768115550255086,-0.06651873719033544,2.597596374974378e-05,0.00993998660520878,-0.012874793404243908,0.04601439238378525,0.009424895375955427,9.780375787119368e-05,0.01508959849608303,-0.0229713826327345,0.10759525630259222,0.026569679367453636,0.0003365286027756054,0.003402434722981282,-0.03239559372544669,0.13951363833091465,0.043786191499348225,0.00013299676431557697,0.013050938785615135,-0.002763997480358151 +2018-03-09,0.010463452210157773,0.06973947162887405,0.0003859818227474971,0.00015866565405645686,0.008900464819707406,-0.012710680596372906,0.0393989698213289,0.007194608867944212,7.740953628026212e-05,0.020238703615692043,0.025843230500833238,0.09120918093658864,0.01346486002883461,0.0001310706490135527,0.025768940235700828,-0.001484352235993521,0.0016372449069763785,-0.016408540764040313,0.00030597868877681633,0.011363986808155327,0.0427168212294153,0.10643676302573904,0.023232015826086302,0.00020999310795788222,0.0008959933604059543,0.0007169176734068517,0.001811855114656546,-0.022317493127578036,8.639578603902104e-05,0.0028234438324055435,-0.04434486083538316,0.1398317495702314,0.04091824713480789,9.305235308879342e-05,0.0012561749969316226,-0.008521727778489224,0.07855837101461176,-0.01893263753370149,3.7199217288027876e-05,0.005792654202904523,-0.0003313375816787933,0.0002654341694948776,-0.010222883113058504,0.000962628367515571,0.007890046138208052,-0.041267170109111455,0.09608975691526528,0.013729084431599991,0.00015017217811869274,0.0015353278804970602,0.03561541281624734,0.02600243341121922,0.06579647467006723,0.0006694965570676116,0.0091565262453694,0.012329554117507786,0.13299333966269328,0.00254496504845494,2.762741609715914e-05,0.005411964762312825,0.012663840179454279,0.029852291200169984,0.0014747979219169236,0.0001260198009988859,0.004270753813453767,0.016371329870987588,0.11040459479860305,0.010117154909260056,4.1740594421614385e-05,0.0010962200592232853,0.01711834983260651,0.015325858091669938,-0.010774917528706572,0.002178512569554359,0.006725353492364467,-0.06671519055710336,0.40493089689985057,-0.012767882240186193,0.00013558009165825632,0.01328965841184849,-0.007381366565962561,0.038764802357044076,-0.04523708892151537,0.0002948542766055138,0.025992426186919902,0.002837585901498531,0.014635363658200907,-0.02474128945091966,5.461431054535707e-05,0.008170738283495326,-0.028417093829540618,0.15875614959090695,-0.013002813992891615,0.0002950094388995502,0.01614140921671272,-0.008214248196162089,0.10654718371809259,-0.040521969549622276,3.199308188049037e-05,0.014690021036490655,-0.015396269454353104,0.16101445831115027,0.028647844251412126,3.194716589532125e-05,0.012234143686318815,-0.005983023507413561,0.02302142765112525,-0.06289705226156167,8.371652879350315e-05,0.0052330248079735615,0.030199570830319593,0.19303605219115044,-0.01448231342831534,3.6137218372242106e-05,0.008695379375199036,0.0014677070758558253,0.004535162399549786,-0.037757072732889474,7.175033398395228e-05,0.0008401471456991223,-0.0063920077379295975,0.02327642563484837,0.008303516072215187,0.00012556528812009235,0.0027719490886975355,0.0010363903114627478,0.0011249645772782157,-0.06644098779464815,0.0005265747838076445,0.0030203672330810444,-0.010609494618804977,0.04071850206237776,-0.11625581698823641,0.00010967027007835795,0.003959154825936591,0.030395911816572592,0.12313189290981738,-0.04497485051729966,0.001584396209139416,0.0013288366402720289,0.04120282754269092,0.4071275854850723,0.04401674987807986,2.6024277797394646e-05,0.014597838876321871,-0.01813825077936273,0.060174885081721384,0.00019849479594856697,0.0009854881406896022,0.012167555397622879,0.013563794130826815,0.07199505046656679,-0.009040011643829952,0.00012545968484916343,0.00801572207536288,-0.012912178124601553,0.019224475187987682,0.0069473367786960765,0.00015852231357167728,0.0006271584264381409,0.0076736806657526175,0.011109152620728976,-0.035016782716305775,0.0003964849465100933,0.0013112201232198277,0.010267476920597022,0.03325817613566647,-0.010953441044926907,0.0023928509504774825,0.025794061560252757,-0.023419866868377916,0.08194663280779543,0.020582790627300923,9.169458289187213e-05,0.01288411485647157,-0.07629711511805233,0.12328985482156991,0.06574117317512476,0.0015383599600974091,0.011890707049742327,-0.0026792984289265367,0.007548672922395412,-0.0046228071864959416,0.00014062628948206362,0.012575753049789471,-0.016537313483374647,0.033745555330370464,0.0031037599410280287,0.0001986592335831436,0.0003737080970094065,0.03036212247863602,0.1344904217650529,0.057970893430232255,5.510039311334807e-05,0.00057522312210511,0.014304786359017479,0.040419255832133655,-0.0011634497190427084,0.003354371199862841,0.0001473262203600557,-0.01683136673179787,0.07615807479017851,0.013422533397575934,0.00010993702909290586,2.808799953159496e-05,-0.0019485596961112566,0.011602977387943202,-0.018331507518570163,0.00012178815573356666,0.0020147781821608303,-0.014952238301010345,0.09166071542128973,0.014437203862005778,7.715634850672854e-05,0.011958367354174855,-0.03737286223457225,0.20843287214744297,0.03529049067044417,4.5064809737948894e-05,0.0012530764225069223,-0.012553750089502666,0.025319436000204698,-0.047355825957684984,0.00024174018241607882,0.0012062922282882358,0.011820924319065855,0.05371963146933019,0.021859586474510584,5.4718324184122194e-05,0.0007216950703964439,-0.01621877826760307,0.17173768254914523,0.0007661184861357134,2.4365976653433607e-05,0.0018534890712129048,-0.024685581378548763,0.07568953650442271,0.0385124066667863,0.00011400305215059581,0.0005035977550485365,-0.005068384497635305,0.016384418574240212,-3.694746599182203e-05,0.00048760313634906504,0.005230437386269289,-0.000584036551371018,0.0028908628444079547,0.000928037374790672,0.00011571358170416351,0.036371881101681755,-0.003858268513229727 +2018-03-12,0.0406920183018319,0.24688138106830418,0.04848164089930067,0.00017430404948067302,0.012061988004939015,0.032453745707693035,0.11214892611159308,0.017112685309853725,6.943528719753766e-05,0.008818155353140487,-0.020552979335069166,0.06879861452534507,-0.018668300849003512,0.00013819498962995704,0.025690766609938007,0.008413314535638759,0.009996798009038462,-0.17185139453937764,0.00028403644265394983,0.015492776677280704,0.0010872169479814427,0.0023927571848435933,-0.03346166842823284,0.0002377471705479959,0.005752776198256205,0.00967190605281704,0.029204561868713962,0.025917174353908456,7.231162379322573e-05,0.001439601249522722,-0.02122225666292091,0.07940723829262497,-0.0120094687457944,7.841900469451288e-05,0.010877991630534701,0.015603030241973256,0.12834882742591472,0.022301559650745862,4.168844148023139e-05,0.005507112954444468,0.00202369709986886,0.0018493950010775434,-0.0013877622059940606,0.0008438409878780098,0.009183242503172677,-0.019337841222009933,0.0507388753877114,-0.019536335004599288,0.00013326896946359057,0.004852501672046391,-0.0064799315223553105,0.00482162176686182,-0.013830299841887536,0.0006569035904694665,0.010282745696378293,0.02664530369563708,0.3910665757491009,0.07933459318674602,2.0304521784650986e-05,0.008933785501616389,0.009032337936326811,0.027411154474887407,-0.02414890069600491,9.788674532148625e-05,0.0164302507178415,0.006634486915804665,0.03890525192022355,-0.007565752033604655,4.800217638723896e-05,0.0032921869312366155,-0.023131694915006606,0.01785504582429214,0.022474296272321517,0.002526791801968694,0.004514595510232311,0.08161705855810361,0.48924598855031454,0.08494211114610067,0.00013727952672260252,0.025659700733784728,-0.03869674085165777,0.19072998951488834,0.037524715047279444,0.00031416922165119365,0.0027825144549728916,-0.04462406616347668,0.3033242213013077,0.07348883689417604,4.1440310948794995e-05,0.00024311445101363616,-0.04043864347191132,0.2350373437695193,-0.019668047709661324,0.0002835610107240924,0.015097895140731562,0.008978102290578596,0.11944830014632331,-0.08908477849806783,3.119139558621973e-05,0.006417203890745666,-0.012254410195315446,0.11887816900276581,0.011936130678287998,3.4440703602320885e-05,0.004556466499026581,-0.013521556713300041,0.03759524951702258,0.005582476931186557,0.00011585545263900123,0.012741173973855472,0.008379825081781318,0.06462729021511454,-0.007375417139859795,2.9951003844558683e-05,0.006329650250666332,0.00948731857637471,0.025542911507332535,-0.032892593886601394,8.234750923507013e-05,0.007679742095813708,0.010354898848746831,0.04511616129641244,0.01598293477003199,0.0001049451362738054,0.0024763889827817695,0.005039037965162462,0.004237589213346187,-0.05272247576455323,0.0006796797599936257,0.008515881143194987,0.022213069838548975,0.07419036543960189,0.10004319654990186,0.00012602220693417378,0.0011184330140602266,-0.01750492888202416,0.0618168824198291,-0.016092626375962024,0.0018174916599164735,0.015575092884756263,-0.005270506217528775,0.0596102891590378,-0.02597116104488894,2.273596001290781e-05,0.00603042155707427,0.04331355065141624,0.12806209266902338,0.06308277746642636,0.0011057945931809891,0.03665359784724116,-0.026624719317424644,0.18707394621644463,-0.05992932326957831,9.477578140437754e-05,0.006541492932299124,0.01930295167113981,0.030214861334038973,0.0009840025628600007,0.0001507816543982029,0.0122735326944572,0.006236402979958055,0.008477809573157425,-0.004957249258208495,0.0004222351913271673,0.0038912009466365465,0.011890094209312465,0.04937185204036251,-0.022492952186037526,0.0018666213034278917,0.0008104485139577935,0.03953815800436438,0.15510283705461247,0.0032249300245814905,8.178752409979238e-05,0.01273419971450354,-0.005822462572394433,0.008053282411863484,-0.021307383985434882,0.0017972602459623121,0.00181899246332017,-0.03685956060970593,0.12269830213367108,0.08105079884575947,0.00011902210784680829,0.012997235149073848,0.004758445364731636,0.012521648418247653,-0.03751690145159716,0.0001540507999232883,0.018037908343444015,-0.01137730474981132,0.05131416855294734,-0.0004116548870173853,5.411479527619894e-05,0.00771858833295104,0.010542331007009607,0.03553718524565771,-0.010036571522842016,0.0028117174734250223,0.005253840955350487,0.019829005398330976,0.0920287698491765,0.01619150052012394,0.00010718101978598538,0.0020649570790327405,-0.008135692026111715,0.04561401906759739,-0.0007393672718131766,0.00012934717405031543,0.012586407408769592,-0.01932733698642541,0.10695006917882659,0.015788396978851503,8.547510596544423e-05,0.005895551852905783,0.0012831234682875276,0.0069145173524558555,-0.003117140980403859,4.6639509280041314e-05,0.007613220678574645,-0.036345607899118254,0.059399608978855954,0.0031430175465026744,0.00029833056117768757,0.036718427225790946,0.014182319777773884,0.05358932973205815,0.00587206607528203,6.580870188930781e-05,0.01544068357807711,0.05348434260032555,0.5692332586040509,0.17960972971890798,2.42419572398681e-05,0.0016745072941541622,0.020597968991697174,0.0827795412151796,0.032755240369721675,8.697818672060983e-05,0.012881618961249784,0.0051211630028895495,0.020108033049272635,0.00343720599184536,0.0004014458566488316,0.015767072545062592,0.034244274977707156,0.16370872144461704,0.05641696399746282,0.00011980858942985549,0.002169182773331787,0.00427694553638692 +2018-03-13,0.010461285688376004,0.0726726711945722,-0.029515862230886508,0.00015223009651583525,0.012323125128182736,-0.02858132926369368,0.08392624866539254,0.01345800000173093,8.17137493806875e-05,0.012435876309369605,-0.017198524997791953,0.056344920417643565,-0.002388989030008348,0.00014119965534821087,0.003683629994728202,0.019164797869774403,0.01925189630642841,0.005824750526341823,0.0003359685195156833,0.0070359610243926635,-0.0053280109076351565,0.01334839463283094,-0.020804073630798368,0.0002088496923619192,0.00383019442309497,0.0032317197215786194,0.009544304640251518,-0.01431249068779902,7.393262656610406e-05,0.0007563269248498509,0.042192773512771044,0.15703206792584384,0.03927913353938238,7.88387227414163e-05,0.00769424179430035,0.001472055872354576,0.013586246533538194,-0.039414514135737794,3.715552632257982e-05,0.0005941921850219844,0.013127604039643609,0.010348151038776409,0.01111639169680603,0.0009782897349544081,0.0008925884689328186,-0.0664792119124662,0.16650684258155252,0.09604896374537276,0.0001396097223201288,0.004184341555723106,0.01580232213926074,0.011102414012541102,-0.01426244417652491,0.000695709367230855,0.003390108567534066,-0.00012265972151734162,0.0016223428906580383,-0.009454429664458155,2.2531085404753533e-05,0.008030438926494372,-0.017704019565999683,0.0554313739227615,-0.003436027671230491,9.487838324879236e-05,0.0006365886228878747,-0.007451275213595494,0.04773908801674846,-0.10579171147569826,4.393577631859491e-05,0.005226789308547486,0.04269284606545244,0.037671008169601124,0.005842662879313134,0.0022103998217491085,0.012194898762272557,-0.0356687094757173,0.24331780674088163,0.007370191152302762,0.00012063285634160108,0.0060361122285191035,-0.028980407974577894,0.15562529254842902,0.02745451119527479,0.0002883583594816155,0.002703466317592624,0.04825060904335997,0.2608865594898635,-0.006467715197086557,5.2096920220527996e-05,0.021188123821856215,0.015004607024948779,0.07941689337631237,0.011733813596131994,0.0003113856099742402,0.007545095111771794,-0.0010056285027439302,0.014257753278024718,-0.00021029015603187223,2.9269594797408088e-05,0.01426958573880346,0.0047129628942387475,0.04754524223592159,-0.0020228158315636962,3.31183479913044e-05,0.004665367521839168,0.04376295807487105,0.1319959858778623,0.02807709382942871,0.00010679937258432116,0.009457904568045634,-0.003423856522275529,0.023864777928581236,-0.07785141160170037,3.3139849805388706e-05,0.012378976496113425,-0.001793521986194637,0.005205815853297548,-0.005609340780014792,7.638274919321798e-05,0.00771769384387223,0.005056455279969186,0.018927787759732022,-0.03453551827578423,0.00012215040429269257,0.006138485051088325,-0.023630498927954723,0.023785468623248793,-0.01599359968667705,0.0005678540667043944,0.020092907970190775,0.0003832137739966964,0.0014057852897214906,0.004820166878973517,0.0001147382245252802,0.003792786671223847,-0.05598257708908257,0.1863168152452698,0.05214373118146641,0.001928501626104161,0.0038055813991649855,0.03465067985465335,0.34303666825351015,0.007295580298787707,2.59748716154765e-05,0.0053119871954433046,0.005287851199331126,0.017354205768042755,-0.0501780200800029,0.000996198200211461,0.014067562305279798,8.088477676189533e-05,0.000593115555205909,0.0008390892972403521,9.081406592540714e-05,0.0008267589063352973,0.005587915468383232,0.008427309736768777,-0.036268328170482075,0.00015649708685671408,0.0008877417379064023,-0.049951619124595004,0.07430153462161543,0.1327997116590135,0.00038588304777214676,0.0011114397569438354,-0.010490786648714494,0.0450018188270253,-0.012084787330513307,0.0018068759157770524,0.013842737615364904,0.006132900543753475,0.02320383868160552,-0.004092400726971209,8.48001176483243e-05,0.016124049852242302,-0.0021638469622853387,0.0030676366321058953,-0.0864497269808737,0.001753475970318996,0.020081777125625613,-0.01659686077308872,0.05735378506780053,0.015097941756377912,0.00011465154271704567,0.015414552159956088,0.051536632558990124,0.11021084964194888,0.06526583421705301,0.00018956234111183157,0.023525006227800904,0.008816219330953792,0.03689970241810376,-0.117709255106953,5.831408255627856e-05,0.0074150517692737165,-0.029372358105967653,0.11312980823020391,-5.843941795620316e-05,0.002460819850767293,0.009615315430425264,0.03373189926961252,0.15574347852981638,0.03023896629231899,0.00010773864147674399,0.009647196207048504,-0.021895125467566938,0.11613599793934733,-0.08822640512567302,0.00013672293304229586,0.003809941251706221,-0.027650878246504057,0.17250393869664307,0.009895098288576475,7.581560642198551e-05,0.017652469591517592,0.037099182603750475,0.15912491780925764,0.01765076627057089,5.85967519605876e-05,0.0168344018346971,-0.0010341270556064105,0.001927346869106338,-0.01597920305849222,0.0002616034168020275,0.04112536137792433,0.006889367813927907,0.023665452707292194,-0.008244282482517755,7.239005905828276e-05,0.001605526949086217,-0.01667009849111699,0.18291552523486151,0.013401368871911944,2.3513586833729376e-05,0.010015203411295233,0.0014354821128854396,0.004013211109904365,-0.013561697394868708,0.00012503014762274689,0.011451714594131378,-0.02686373853928853,0.1205420538067516,0.02170246129422677,0.0003512819509295851,0.004867911783957048,0.02179230677769747,0.09315098330648751,0.026389615100853935,0.00013399468012418754,0.003617259789012459,-0.00010644975358314667 +2018-03-14,0.019472881666872107,0.13852172490263728,-0.14513747776097408,0.00014866163941106684,0.005372526294372985,0.011336056650679365,0.03543515939466129,-0.1388433501002527,7.67605616057353e-05,0.006672417317740923,-0.004156686819276277,0.017157033195533158,-0.03617981768768111,0.0001120733406067842,0.008649773735884115,-0.019051327627265958,0.020858910436121984,0.011236321519633097,0.0003082488625129031,0.0013492145469417148,-0.0023835151021176157,0.005529104876001705,-0.0028797702897526245,0.0002255593594441355,0.0012032193532811528,-0.005203199556541666,0.016124885770444103,-0.013508312077786924,7.045642055184464e-05,0.003727255952048594,0.01110536530769272,0.039554965670761916,-0.11438934950079166,8.237998193393745e-05,0.02926394390369654,0.04159202404902812,0.4076466598930665,0.13898677274790283,3.4988456306999054e-05,0.015732784097230154,0.009298749276714955,0.007814332786023748,0.0033723743560566586,0.000917650746309899,0.010722056087841617,0.005587269655993727,0.012475161458126988,-0.10450035170795269,0.0001566085048303752,0.007257862609650712,-0.022454340748065387,0.017194916435635525,0.04756133066767022,0.000638299637121344,0.012212227667675471,0.006437962942305865,0.08819720936857392,0.008565608093647495,2.175286266695788e-05,0.004767298083058106,-0.015621451385151707,0.04363430189063568,-0.010282288494650607,0.00010635168801769156,0.011187346971628364,-0.003457257938657686,0.021658031068238486,-0.010289695419514274,4.493395318549418e-05,0.002049187874125043,-0.026206126786560036,0.02402742835179554,0.046488309769713576,0.002127249937226463,0.01303130893159093,0.021931318854570586,0.14773816073036894,0.005083562119051261,0.000122158634322999,0.008661255364385879,-0.051399035710821,0.2997428583831502,0.07111666523597976,0.00026553046669832136,0.01842865935289657,0.012189499245544792,0.0847781255192337,-0.001926773882435249,4.050074489686239e-05,0.0006707210857995664,0.009587289229241827,0.052034600247582656,0.008496814731468067,0.00030366197640619195,0.0027659149197220142,0.04901981484503328,0.61252511782392,0.06561495628899368,3.321069737827928e-05,0.03483632080327011,0.021804231115569374,0.1973685864088886,-0.09348340459700706,3.691003484240609e-05,0.0052993563626599,0.005303056239986688,0.016522095800805537,-0.0036455542566163675,0.00010339126588735578,0.0011212799653779139,-0.03567645400408415,0.26167646140554357,0.037637925464575464,3.149266400699188e-05,0.012722013824608363,-0.01264658986603248,0.035637080813811776,0.04022274636063777,7.867716362217724e-05,0.013489837298653898,0.004215120448978846,0.018064004867602082,0.00045874644712292706,0.00010669511682921641,0.003736365236441553,0.010412116801564647,0.010256658352015481,-0.007727375663179994,0.0005802413878696943,0.004599988300339315,0.011152088303217025,0.038744122869599475,0.0295834380824394,0.00012115361446679029,0.005804289410083012,-0.01899271593790821,0.06280526378216301,-0.05541194025158888,0.001940931478243717,0.0088062299422228,-0.020613371346562468,0.20471941364580584,-0.003367808500103668,2.5892393189343804e-05,0.008091585173030564,-0.030066339063389517,0.07258347804900013,0.007203215805210251,0.0013542974030935275,0.03017352898335728,-0.061474007119556674,0.4779018614893975,0.11576304395561289,8.566007378790137e-05,0.011004009881342945,0.00015449828513780433,0.00023581832627515877,-0.057427243592200625,0.00015462919571565233,0.013836706223155734,-0.00911538363595242,0.012302150218497206,0.004239478532181338,0.00042530240581550616,0.018856802360187913,-0.0423475225767559,0.14756517527926613,0.049520144606495196,0.002224305682546511,0.016886193771181158,0.004460177309286405,0.017514453578016363,-0.027749745549829778,8.17044859148286e-05,0.0003232826100909047,-0.08258986505829473,0.1124560150191171,0.07506496866925692,0.0018256657094631507,0.04099949995762905,-0.004106370723265412,0.014386191734971927,-0.025098463098484187,0.00011309107889320828,0.005814615582413121,0.05735177267816669,0.16368730765939685,0.03645721387467832,0.00014203396686964453,0.003017188147695281,-0.022925728395047505,0.08719326949167099,-0.01723234735497799,6.417326047827623e-05,0.017448802854936243,-0.06300110683435003,0.2065908711621926,0.05340188393668728,0.002890381110788208,0.023784288873818078,0.01740971303039954,0.09107852540497396,0.010490905218749909,9.508591558081128e-05,0.017891682926328464,0.0013522282398176055,0.007423480312808302,-0.017618344906370202,0.00013210012383865096,0.025465668709846727,-0.019100615319957524,0.10148515407982012,0.017815143674501783,8.902121992108274e-05,0.018043695943320646,-0.0028284774464546057,0.012813565276979974,-0.007181705803177463,5.547919225153464e-05,0.00858066935028064,0.0070668690971319335,0.012751657708032377,0.014191139631110426,0.0002702027684162121,0.012763733329664144,-0.027132365077817563,0.10644710190883074,0.024164362395538215,6.338232791122061e-05,0.0040806018482180545,-0.006090127605462134,0.053680305674429274,-0.015422035818215066,2.9271346297586423e-05,0.006106120614357173,0.01274476226137785,0.04879970125869393,0.011584195257998338,9.12900699427144e-05,0.010591939505612734,0.00012829776384596714,0.0005412145852629901,-0.12593421856118417,0.00037366082291766017,0.00718375575099806,-0.025062498799458235,0.12996389403283873,0.01843160033412257,0.00011045196580370833,0.017158664925657242,-0.005857871397480582 +2018-03-15,-0.00657905233231349,0.03454558328948993,0.0016577533968502014,0.0002013990394425012,0.010189641406796955,0.06552407379349809,0.2266907613400892,0.13088773104332077,6.935497128961094e-05,0.011547532018579781,0.04196122452329974,0.14300395811907005,0.05361958262458491,0.0001357367041203097,0.006562880228064283,0.011895183802081783,0.013607264904080913,0.00018077911966311812,0.0002950313548943722,0.00663195614538743,0.03987787990203532,0.10397971429426746,0.06888391844195667,0.00020066942840331567,0.003217139450911224,-0.010519442116714465,0.025758878068062152,-0.05482832816874666,8.91687143055479e-05,0.0025762109718542206,0.008547246197473907,0.029529797653891746,-0.07478752231746869,8.492891929832007e-05,0.017852347259206057,0.002854474975699779,0.024650665496336,-0.0677853659477965,3.970966342669043e-05,0.005169180962265296,0.005646252746400217,0.006859789642934678,-0.06382524200991485,0.0006347377138016943,0.005755366979996175,0.011461960763725751,0.033482497146584016,0.01602747732286575,0.00011970242904424166,0.006844033520151978,-0.053970028699890316,0.04172629667022953,0.1638721787153574,0.0006322184500751123,0.015222773989952382,-0.0006286128116015312,0.009496414511762995,-0.006701045661266511,1.9726332739614145e-05,0.009209018797872908,-0.021263249151079005,0.055700555929961655,0.008071530087088536,0.00011340211022966467,0.009013795158659492,0.036253111082441405,0.19536907333835893,0.1384337380691228,5.2233759305963265e-05,0.014040084247893738,-0.023586209944419047,0.021482533452005795,0.0048877483349575096,0.0021413893369625135,0.016779699420404557,0.011476738506446017,0.0735685183188408,-0.06193337458427291,0.0001283744467356525,0.026168385050893,-0.05628266249540492,0.36154204482687735,0.05386812436649483,0.00024105939142538043,0.0220198568108264,-0.05663649978538694,0.31642261255765525,0.09631383487426817,5.041849171877004e-05,0.02420168989292144,-0.013294360413308703,0.07438972259637679,-0.13777754647046503,0.00029453798858471543,0.0063630061547665555,0.06990599595814198,0.9896250906085017,0.09278795163334554,2.931392423846705e-05,0.021361179573980364,-0.0035957429930903034,0.04599131418566226,-0.003538751985967457,2.6121284681434794e-05,0.004964969186075946,-0.005969201381910507,0.015076784568887263,0.003921329854157591,0.00012753525574632583,0.010382146193782093,0.01698001775765765,0.11331576322552524,-0.022918368088605357,3.4613075358773104e-05,0.00023449085429630423,0.0024287909597569793,0.008203497788775183,-0.010194347424310022,6.563998220732878e-05,0.007853450505544642,0.013349958760318583,0.05693519506069704,-0.010848892046818156,0.00010721306378066608,0.007724982154073779,0.011988453667611696,0.010402040507079843,-0.0014709480741113728,0.0006587493351621702,0.003344545603125129,-0.027689418951169824,0.10333421599829123,-0.037326013186951626,0.00011278613196557001,0.004373735007412634,0.011773476054210143,0.040357800762128256,0.008923215247266178,0.0018723903214237583,0.006424113374725092,0.01442402413299295,0.13021247243281966,-0.04887866763701375,2.848498862727528e-05,0.012799466918920014,-0.044943114071253884,0.13617034730107125,-0.09443362995244255,0.0010790756329771359,0.011930023801868358,-0.008119261591357093,0.06470677359425263,-0.017952622761180023,8.355884564858932e-05,0.0007869525848307575,-0.02682052375384085,0.03861852685625853,0.057488816042923954,0.00016391433558962939,0.0008484157054857769,0.00010031784970228531,0.00013663075912821808,-4.5326096295132823e-05,0.0004214379561179565,0.0025510258470847545,-0.00012329287523467022,0.00043719578630029444,0.0005114686635647498,0.0021858097266792896,0.005188614349339774,-0.00037318257143131167,0.0014091435572450928,-0.049427378314214745,8.496821288939575e-05,0.033179660540481624,0.03314802164104449,0.04902099638803184,-0.010436780004792265,0.001680941777628033,0.016960589493728334,0.006776370312192781,0.023617650238253286,-0.01037211450908726,0.00011367801484449592,0.016310811415098558,-0.04828863106533604,0.13279216242630898,0.08025384985996553,0.00014741199600422318,0.009027999041754655,0.029577931459790895,0.13305453596476655,-0.024061847788590683,5.42565329678497e-05,0.0052181530585780605,0.04989170500777134,0.18983589755268498,0.032937953519592056,0.002490967514534058,0.017054743155043385,0.016948325109742746,0.09027625834979844,-0.003831421787426595,9.338858738224452e-05,0.005700385734883099,0.012745863804057912,0.06843617231248404,0.009343879437826788,0.0001350654739208188,0.015957642252403176,0.017225010709653644,0.09312122780513686,-0.01798411018875475,8.749021943903506e-05,0.002779741388224579,0.013327199435421613,0.05548211799799406,0.0012423414691301211,6.03716798082399e-05,0.047724590652600665,-0.013551198281209476,0.023831004188667623,-0.005135958592977054,0.0002772456565364753,0.0009455859070362769,0.027582014873317944,0.10928435132205375,0.048371579333580994,6.275992059400902e-05,0.0058232428790694415,-0.00541254476606249,0.06748904332284933,-0.01678972373236673,2.069185921567219e-05,0.01946229044602367,0.0012492404987704655,0.003588884274064102,-0.0010635518649442753,0.00012167337790976999,0.0015169252600841906,-0.019686676278877616,0.07497886065386578,0.011728325329594976,0.0004138677005315604,0.002210840588099365,-0.015005780411226943,0.06805080254587165,0.0025116366157575576,0.0001262981914103114,0.005083156536426817,0.0018219415430542423 +2018-03-16,0.0018330389976078333,0.012125843287644872,0.0008687695606944887,0.00015986240317582628,0.016305959073581847,0.005957252596138943,0.020403585395237678,7.143811997592083e-05,7.005676059412118e-05,0.012453615958360018,0.049333291292894724,0.16400735351023904,0.06166104091659038,0.00013914704067659274,0.030893603522777226,0.021893039927377816,0.024806686711050602,0.005628909362030206,0.0002978551842595218,0.017735746412102845,0.010008869006768643,0.02442130658521157,-0.010227020127990118,0.00021444399130999593,0.011442284389440222,-4.1404342915653854e-08,1.215329970753305e-07,-0.020721899230652586,7.438723714195076e-05,0.0008609877878576206,0.0313445883370633,0.10071311262349125,0.03451479856158162,9.132010606029663e-05,0.0014281552583175028,-0.028960798208498315,0.22499614365057957,0.04888670465540865,4.414017671630939e-05,0.015204828983854111,-5.061921947635385e-05,4.5562520220432346e-05,-0.04769659275887212,0.0008567468029686813,0.0024311267973553064,-0.01909632520005523,0.04124704760243207,0.0018411036559358755,0.00016188955167241226,0.028071583307234853,-0.008013860524877705,0.006098278221573297,-0.0022241465385087933,0.0006423310314201284,0.022212377924261666,0.0031951926247106217,0.03865067933216106,-0.03432939476233159,2.4635574980807213e-05,0.0025688591880288405,-0.05365298181204983,0.17932800840300828,0.048460573618405625,8.887851216303758e-05,0.030321205244406232,-0.019277792931968966,0.09948935933601742,0.058684100243173117,5.4543436257896916e-05,0.009938262657272845,-0.0069872346516344835,0.0049921080808699786,0.0037985200427212997,0.0027298848072781264,0.008600190699895692,0.005357520027755499,0.0379217898359697,-0.027978803169011936,0.00011625913409221922,0.044867432731987573,-0.03358289682160438,0.17631447029833405,0.01711888493588238,0.0002949432288708003,0.02716970269751008,0.011455172927151138,0.07114992029177337,-0.017858206899048764,4.535113783952472e-05,0.02083036630370373,0.02395938736177635,0.14699697404344764,0.0035159825068160366,0.0002686297584962282,0.007279812655132261,-0.0035436614960853868,0.050427729298138046,-0.004592113053305427,2.9161714123153875e-05,0.0061493643507636656,-0.01775774528111013,0.19836060761187868,0.03745772496165151,2.9909840788625654e-05,0.00948935910163295,0.03653002539922065,0.1088948618921288,0.02538725977885007,0.00010806009413900871,0.010425892065999285,-0.005655068388088174,0.03978547350012406,-0.05286644379291008,3.28326325539098e-05,0.010537128938942382,0.022205327324135656,0.05950383065138479,-0.08883160764647434,8.273506962164015e-05,0.012651204733148916,-0.0018774396491538445,0.007331366155952296,-0.044667001625093024,0.00011709265963219336,0.0036183036327876736,-0.0004947737181834555,0.0004372810631585554,0.0007964272883564326,0.0006467277757422138,0.017506212642491463,0.022831629333098874,0.07788201512185054,-0.0028593320505045593,0.00012339163937312734,0.011956277373969027,0.0288067236484735,0.11070196403581725,0.021481624608798006,0.0016701586030929167,0.02403522457358962,-0.003085210390851605,0.03332090193583483,0.002425018820951745,2.3809497637454382e-05,0.0133388981901624,-0.04586654772194587,0.1393070099874443,0.044297807097720444,0.001076451213926679,0.002640810443085957,-0.0059866062900507805,0.04467667942629779,-0.051302717483998714,8.923299174855294e-05,0.0009556422852734179,0.03059365797893018,0.04393439862666947,-0.057285587767056764,0.00016435090781551296,0.001350324737184844,-0.028047618426657893,0.05020335167021098,0.037804223998813925,0.0003206765420446679,0.0033837007178171862,-0.01380905767125801,0.05751610611483199,0.006441638908824633,0.0018609080228502361,0.021263597898107188,-0.02068028712476311,0.07327697798253913,0.016416029852569385,9.054810886634721e-05,0.028944228694487314,0.051549444002746636,0.07875486112546924,-0.03377449010855701,0.0016271358254591809,0.03817198097613214,0.030385986619444246,0.11723816549201552,0.03491165772110154,0.00010268815824110821,0.001156399664942807,0.01103728719044131,0.03373903477899214,-0.003887695094682935,0.0001326142108289177,0.021025269974161633,-0.009234208901243749,0.03611381929095101,-0.011987402170720219,6.240799062350934e-05,0.0018226999896967554,0.09307986978608555,0.33672017566157825,0.05763430156560662,0.00262002047764839,0.019560035978239087,0.020961560044102046,0.09351965547256248,-0.09228084991347198,0.00011149651010334336,0.0035373973297112065,-0.016969122965762327,0.10227697983197871,0.014801841812075065,0.00012032123640870633,0.0013287093451582483,0.009790247968427842,0.0535193122768873,-0.08915387698713656,8.652305920184275e-05,0.0029912735440832173,-0.04810756715822127,0.21231057597089478,0.04605251445709415,5.694940109299973e-05,0.011559169823375065,0.011337520739311328,0.02047942258715185,-0.0017846035785689426,0.0002699167157543979,0.025973124348224477,-0.0009123568324058835,0.0036755739795269263,-0.00415686693108951,6.172398204190596e-05,0.010669639374248457,0.0006603957981166411,0.007622560703046383,-0.08611470641256701,2.2352942203446332e-05,0.0008552301045379213,0.0014127407786386605,0.004991156129545354,-0.1015636567886683,9.893963193454649e-05,0.00423597520602565,0.0072239053610796185,0.02850789674294992,-0.009498407368240855,0.0003994246299990091,0.006425640142884266,-0.005213601517530746,0.02329589649544428,-0.0078099033490636426,0.00012818293232931576,0.009724195160368862,0.00267244635281216 +2018-03-19,-0.015865351491554533,0.11731624527554019,0.022391699141998383,0.00014301385955744648,0.004332779534680328,-0.022308061028824468,0.07271346456685698,0.018549080189866642,7.361350772813856e-05,0.007791682126845465,0.02280694083207502,0.07198670699714728,-0.05383290339244026,0.00014655881099383304,0.026876769821958902,0.04163906159448929,0.0414128408634292,0.049842013091567466,0.00033933899257829956,0.006792514435776551,0.05245191446817505,0.12330275496679569,0.03205503258369548,0.00022258010167155914,0.005257053298632915,0.009584026183474117,0.022714639489221526,-0.005185071603670092,9.212741446691579e-05,0.0003571633122964597,0.019378840042856886,0.06973726229668598,0.010455241428134721,8.153662651953165e-05,0.0253166819090256,-0.005076298573784173,0.04187544942359902,-0.006472215367256959,4.157059987819484e-05,0.009786144323275575,-0.006352872065800427,0.005173141376782879,-0.002923264869530047,0.0009470230482753446,0.005195191048370382,-0.0027613022488962116,0.006604308898400641,-0.022817632243829426,0.00014620036436948223,0.007108569979279684,-0.0017867195755884547,0.0013474194420980553,-0.03913412828509396,0.0006481536101170278,0.004116289078736975,-0.010511200588972406,0.13219526661382913,0.012859710721981773,2.3695136142200675e-05,0.011250291486774202,-0.0007648470537808386,0.002226103589548284,-0.02613642535608129,0.00010206580518910667,0.007246083340536768,-0.024971085088289026,0.14326925432821153,0.07832606422664991,4.906211118121829e-05,0.010093704746294339,-0.0139188642780725,0.011888249153743593,0.015059673178425567,0.0022835413187439666,0.02858698963521294,-0.01694482826453313,0.11910204086046679,0.0013009591688795071,0.00011707659309036922,0.032602613341311454,0.015571364015791962,0.08790326004411742,0.006981322291553909,0.000274302589454842,0.015062664876869804,-0.026837382498622567,0.1974560457648092,0.02830190739735623,3.828517850655746e-05,0.028365482871114664,0.04685273222748629,0.2622580911005782,0.015042257349849469,0.0002944373047632616,0.010668196389276036,-0.02544445134903645,0.3138741920582019,0.007497589034841987,3.364090837998175e-05,0.020687819878460703,0.004763418551418798,0.05043024459784811,0.0006452702319584181,3.155799319621111e-05,0.007167203443474133,0.018292055708216577,0.050508968669921196,0.003649992901341183,0.00011665860270677957,0.005110361560289212,0.026646243498684958,0.20380256592209844,0.014088947477843984,3.0200819016842636e-05,0.007631854651838474,-0.0027749071688508704,0.008468476738941686,0.0006780530871269428,7.264747802513115e-05,0.0028286079989357556,0.008329780131891647,0.03020597067729274,0.00627304378103448,0.000126092523769595,0.000809430968193983,0.019745388037212094,0.01831762115456904,0.026147839941397372,0.0006161297248829913,0.012709564461110242,0.008370674085333062,0.03116709072455868,-0.05191448966025044,0.00011304469248176831,0.003919177813095639,-0.05112812170541848,0.17578687398599185,0.03181637915266684,0.0018667775520714472,0.015105366439883139,0.007045524296607075,0.06586063860371072,-0.02494081436102342,2.7508668815690975e-05,0.012926812061023278,0.07376042898746718,0.17431097321559194,0.02373532653067573,0.0013834707324704351,0.02380546842610668,0.01211192418148291,0.08568104179989178,0.021639061016558468,9.413563322525114e-05,0.00036359707353336994,-0.029474545003653263,0.03626420560122396,0.04268578873284151,0.00019182902861675284,0.005289205340725885,0.018400598085816986,0.028532772083612733,0.015547139078294105,0.0003701620450553432,0.01020682598314123,-0.0012991278800329367,0.00557643937488145,-0.04078717897833719,0.0018056985910796003,0.0023173285890289437,0.00031579782134919144,0.001411853818574132,-0.010912718465266277,7.176451715173821e-05,0.013027856372637718,-0.037114405844950744,0.053795023629157585,0.014695180044135682,0.0017150532215852682,0.000789992476640735,0.03869785461288695,0.1449195714305442,0.045943364926169274,0.00010579761661573956,0.009309241387880985,-0.03351075067146647,0.09001389828580714,0.033299433207425504,0.00015091588757947308,0.013982384064833668,-0.02146302019592476,0.10021642910139,0.0009817697342958352,5.227160499767035e-05,0.0015024554779793392,-0.03386172185031423,0.09853249281754364,0.015014199844934694,0.0032572239960298533,0.033372934239114416,0.03765412167185525,0.19574795718911514,0.04618031577919316,9.56876422846982e-05,0.00935712499861336,-0.03513796583692934,0.22259209666687377,0.006842252609917696,0.00011447948325197609,0.00405339835071894,0.018330741731073324,0.11368999008538469,-0.0013335822401707598,7.626170464364907e-05,0.015467632151585463,-0.030199283589512894,0.14298183244825258,-0.04006685317320546,5.30839433029915e-05,0.0036987308477811178,-0.010721988524965854,0.019354844102717917,-0.0505730401324105,0.00027009407334955475,0.030623497225906706,0.005457824978014496,0.02259158187024908,-0.048015212239898845,6.007410911195597e-05,0.009552704208963265,-0.02752688470601195,0.2592242052689189,0.05785124721743278,2.7397617466903053e-05,0.011285878057822303,-0.03329687034956572,0.09862672839317461,0.07260424425504065,0.00011800971254922839,0.005289093044527143,-0.03907242297587633,0.17800585206960876,0.10020218693455164,0.0003459903884561926,0.002276364162027801,0.005946489444408178,0.025066417916797663,0.001964844865441482,0.00013587519243826035,0.012634137187382304,-0.0009129272768140534 +2018-03-20,0.023216466066435442,0.1712416389523453,0.003150265685355058,0.00014337496393676544,0.004520796428817595,0.011864452511818557,0.0434341368041417,-0.032000174666699244,6.554310839857548e-05,0.0034516067839842693,0.00916713070415909,0.025974481052880753,-0.002734636086909733,0.0001632614872844664,0.01163390033574067,0.012718368757706967,0.014903650726983587,-0.02247115929796864,0.00028800936190548533,0.00013449332667592618,0.0069980850342551346,0.014107109120198042,-0.01891602634845525,0.0002595607150779693,0.01403636211075621,0.019092963626055427,0.054169236379012754,0.09046753429279226,7.69604098049483e-05,0.009503845896063816,-0.008564162772744154,0.03157637426360415,-0.15093259468273906,7.95815708291552e-05,0.015001016672015574,0.00047922972357336856,0.0037618689562756097,-0.008570439990037607,4.368563957021755e-05,0.005553415145944498,0.006932359622355566,0.005171878829996315,-0.008680559038262686,0.0010336595686141572,0.008073996858343188,-0.026578022338420878,0.05947002785195637,0.001779192996936721,0.000156273884160279,0.010396186364559488,0.004345090857680408,0.003158012197292685,-0.0022699825677933265,0.0006725265240731164,0.00898168252789507,0.017885517138771245,0.2307483123447567,0.01520506671772676,2.3098605299427305e-05,0.009093515128681557,0.025285162901236946,0.07886146200001487,-0.16554810092717087,9.524714565013136e-05,0.006677604978170123,-0.016628055819900872,0.1063829222243145,-0.03112966823823048,4.399784205449975e-05,0.013870142047718992,0.010335892106515735,0.00787840313457656,-0.09673640731756933,0.002558778777715376,0.01861651763453434,-0.05304064617598691,0.38961778050784174,-0.012198592655116988,0.00011202685554565221,0.00966475364433796,0.008859835460215881,0.045769954159656547,-0.10279337151869401,0.0002997460101051293,0.023077120545555017,-0.0004663454295045756,0.003064990456637406,0.003055921353077306,4.2858755298103665e-05,0.033157238024104876,-0.02234790070754941,0.14050077777548825,-0.002425898406580779,0.00026214695179574665,0.007210293636799003,0.050087022339430985,0.6918069472596378,0.03949171710453026,3.0044883617381784e-05,0.02210058655700836,-0.003312745794669515,0.03298801602908886,-0.16920434900077205,3.355162997317318e-05,0.008695985068048768,0.019247055651206085,0.058899052062383085,0.004864453344478477,0.00010526372941045888,0.007213206223476857,-0.05492786530253315,0.4463964688865718,0.0951223605527235,2.842263556712169e-05,0.008807534632079884,0.008456789275798317,0.023569255795917878,0.003259610121710578,7.954942074322606e-05,0.010387531424186885,-0.0010877299068096193,0.004058595630853722,-0.048026398829299585,0.0001225445162026994,0.003934511544330147,-0.0026124900299048983,0.00210669283498242,-0.0170629378653831,0.0007088086109157791,0.017775811970608228,0.032405930267136986,0.11346667379076966,0.10227635519829181,0.00012021043763606187,0.004278001068093188,-0.09317890661816919,0.3503870584250004,0.1227558053257623,0.0017068239477477708,0.026344886093413393,-0.02283942341031358,0.23861793884587992,0.013368527391639472,2.4612982395894374e-05,0.004201541987158306,0.0028794621558045908,0.007601378364476792,-0.031411186130140156,0.0012384836980580082,0.011053654601849455,0.018735277078894365,0.16496513121661127,0.022752471397493017,7.562991403412922e-05,0.004763838377196341,-0.010629446260877997,0.0160090180541621,-0.016487505395659224,0.00015670805938495404,0.01854616731893578,0.01056528712485384,0.01397613928606571,-0.003604319842634215,0.00043390834004959357,0.008907280484438031,0.034337602093018026,0.15225247896309888,-0.005697071125872177,0.001748058378526765,0.007900545020230828,-0.02385859450428088,0.08547787917955446,-0.05019318591772124,8.955327818875215e-05,0.01753203451989511,0.023579292872390467,0.03454015859607078,0.005258348933516737,0.0016970070290826132,0.028311297161143476,-0.013611548016519124,0.04444781395783148,-0.022504301787482604,0.00012133138350987132,0.008855155155123612,-0.030626632779069927,0.07541277347212419,0.02385884451588887,0.00016463217436747657,0.00028230627909374276,-0.0031065471372873333,0.015339366792790384,-0.04055280551027513,4.94292977544315e-05,0.0034875029322638507,0.029858235701154333,0.09088634832088821,-0.1184012052008328,0.0031137486017980224,0.0035858932948795792,-0.009496779547447319,0.05168857862901025,-0.016488872287604074,9.139497904301665e-05,0.0013901122796189948,0.024784446927392345,0.13059861253992447,0.03241534707407661,0.00013762630600806628,0.013424713244299521,-0.015474933002562953,0.08511816431374042,0.007917287713419041,8.599144111483944e-05,0.012015991890547518,0.006413650566283435,0.033423208280242866,-0.015156381149145326,4.8228588785735255e-05,0.006090347658625595,-0.07756616983453343,0.14462356781727737,0.040242107567190745,0.00026149456673547065,0.028409954450875206,-0.012740348402143088,0.05642047587566584,-0.0016685343465180818,5.6151186243246836e-05,0.012042465896336375,0.07168191858027072,0.8266561751456047,0.18392925015149234,2.237257599503855e-05,0.0011615770498903894,0.0012337906998907348,0.003538893157337987,-0.02749904634173344,0.00012186612605463223,0.0018817193754652522,-0.006517885423000623,0.026772020741712078,-0.07881693084272048,0.000383754551911091,0.006682234695065407,0.033791283580808414,0.16834620523330418,0.03637709669844984,0.00011496698807498935,0.003615315397363623,0.0013807511517851655 +2018-03-21,-0.0270055827772276,0.20419983762100286,-0.05039892076856251,0.00013985717295652013,0.02086349479703695,-0.0135025481815951,0.045464789482421344,-0.0036846667654206345,7.126086303430844e-05,0.03133729191559602,0.03876880059063174,0.1268773371424509,0.02702627564215841,0.00014134990289957122,0.0014293409198012385,-0.007854887901366075,0.0091231527256026,0.005664558822007459,0.00029057811532022293,0.0057417392515021195,-0.015742780673298713,0.033888968181598714,0.018999711137154658,0.0002430641290419266,0.005882986374348409,-0.02087548211587124,0.05544750453938818,0.13591738944978607,8.220557073716271e-05,0.0012070932839277101,0.029734139833214254,0.12102610962101329,0.014786033628915365,7.208852865528534e-05,0.004796441205560236,-0.021604757497431036,0.17108936686841314,-0.051105431166766635,4.330369859234531e-05,0.007559178452469876,0.0011029672839718379,0.0008856239429020198,-0.04544386174426446,0.0009604130842884152,0.012142433952633463,0.03531045472291816,0.07671949340790472,0.038020246523271586,0.00016093832252424913,0.01771114771424997,-0.002917797981313772,0.001879095533467209,-0.0002881726190241287,0.0007589806738790108,0.0013053990078991957,-0.004920478504741358,0.06926069536885467,-0.0028520957408312985,2.1171093045087857e-05,0.00802655320790946,-0.015161265785729874,0.03863648697594699,-0.10490199629651724,0.00011657055597430951,0.004071067552947451,0.0036044025013005957,0.021644447504976447,-0.08033985912197356,4.6875789593532276e-05,0.003554027703852803,-0.007778274601825741,0.006386694853689997,0.007113187602721001,0.0023753634908349505,0.0011069317633768656,0.057309439326587386,0.31596214463233196,0.052238427370769135,0.00014925992341201883,0.00018020585360032184,0.030387234628666063,0.1805090101191277,0.032813762397543196,0.00026067568682097074,0.0250721817663251,-0.08558318644973724,0.5392660063744461,0.13370605372547056,4.4703997853257944e-05,0.005435458438675467,0.006716226438006178,0.038779287433074475,-0.0010308935106422982,0.00028543834376846985,0.01990928694214417,-0.009641240705587395,0.12453417862734059,-0.006710247141344417,3.212732719325739e-05,0.013807332808508155,0.030114733440812256,0.32311231597423623,0.14111335247635395,3.1139183464326624e-05,0.008640928533459824,0.008348567832708063,0.02304481849415976,-0.03382596379776627,0.00011669747093364296,0.0016326444560579192,0.011902383714502725,0.07666351259309136,-0.014701385375637368,3.5862256231723146e-05,0.020533817725647163,0.03638479116823647,0.10776146744167267,0.11499552768686436,7.485723338161073e-05,0.0019001790509831245,0.004659799964115245,0.01880111762599555,-0.01856519687134469,0.00011332668961643123,0.005081428876322548,-0.05811345153856819,0.0537568010271581,0.0532861230768747,0.0006179008817779997,0.010389022296553429,0.0225834583436672,0.09851119341078782,0.027869411659401953,9.649190433420905e-05,0.014752876903703194,-0.04488836781806549,0.17230215424998946,-0.06912791711178137,0.0016721001340107807,0.0038690396994404954,-0.045689167503124246,0.40762344269660133,0.07106480749777541,2.882280792197822e-05,0.013130736154352852,0.017650229126740368,0.051146985202524045,-0.017341712193200003,0.001128240219774774,0.01858291415804383,-0.016736197248927245,0.13111957982375297,0.0037647957640992063,8.499920819625275e-05,0.0042345005799606815,-0.03788675404338273,0.05064134557940676,0.07894120709982387,0.00017657432233296268,0.011958762937799159,0.017246155597469958,0.025769529043325568,0.007289992779312279,0.0003841401771175827,0.010605118439344597,-0.02117516184835441,0.06407715277880176,0.03575337375185632,0.002561379171791668,0.0146674485093689,0.011858918043366634,0.04215746535174305,0.0049793035260828605,9.025285445024347e-05,0.0002119780303517936,-0.03372309423935495,0.05038006410372405,-0.0009713336810506398,0.0016639715331935269,0.014214165377335539,-0.0070137484046476056,0.021290330731593744,-0.02101243409918763,0.00013052202751646848,0.015913494650720585,0.030909659990347865,0.08586129022254285,0.004821699240995098,0.00014593423761881803,0.02204824487912481,-0.0042183566512638306,0.014844197896420813,-0.00563924509485258,6.93586266050804e-05,0.0038011436557818606,0.015425359362876019,0.044850595753948556,0.0005228590874501937,0.003259756292163231,0.0010646369730325119,0.06936742701388582,0.3207974511019922,0.19698923680739905,0.00010756357985099605,0.002482404261606072,-0.0032397022258732837,0.01592744030250044,-0.018749699371960044,0.0001475094666369584,0.015076470873684177,0.0008300302473887375,0.004874872822730934,-0.004874945201231405,8.053401059247968e-05,0.030361201936958643,0.023248833663279785,0.10353141799971553,-0.03454499081237942,5.643862217885054e-05,0.017095260945799527,-0.03412286170909579,0.06731641022900936,0.0018668170656349228,0.0002471461740648675,0.00408456944853108,-0.01840193875848174,0.06812345780879836,0.024886882052968698,6.717091637338774e-05,0.006977430750967106,-0.004920636167779295,0.05344278266889157,-0.023111676109170406,2.3755461774154486e-05,0.00021154499133187036,-0.005926868147804944,0.018260681098017827,-0.018170450775976277,0.00011345333281179754,0.017132943832106895,-0.007894328505612721,0.032302958104205366,-0.027277064467465143,0.00038521294355702495,0.011878575315830031,0.05453873460633645,0.2315847776808641,0.09831676735014318,0.00013488599005453394,0.010542444765257349,-0.000988321827427409 +2018-03-22,0.018415619476695354,0.11539139198690242,0.005380132427541397,0.00016877165302261194,0.0058101824345764405,-0.04012956688580303,0.13107534474000027,0.045891849010920194,7.346051867979894e-05,0.019983156532736215,-0.008129505121560025,0.029684548206012535,-0.020316194383466754,0.00012668665522618154,0.010663058762338064,-0.02218497921524529,0.021285841773418402,0.013621598275100686,0.000351751576812054,0.008603878801406364,-0.014029632895437258,0.029678758089427465,0.015454571683612346,0.0002473422776552043,0.031712472648552974,0.025431732326722165,0.06566203371631567,0.11640962398486009,8.456844672539701e-05,0.013098307237902632,-0.05388374183492123,0.18445210556411598,0.11367061423752817,8.571641221756632e-05,0.0016599657590063506,0.03600969729362958,0.31129718761798897,0.10917948963440567,3.966823596724903e-05,0.0034273957567746097,0.0361564666988384,0.027017581674897182,0.13302377101044954,0.0010320109305002204,0.007646642597717889,-0.03523197796893043,0.057371271154475954,-0.026888399090659716,0.00021473579262831232,0.00418024562907833,0.006534261467065855,0.005938581566209107,-0.07667039161601381,0.0005378214770164318,0.0030152920621542927,-0.01260138942049303,0.1574649598137117,0.011736958968860596,2.3848292819532953e-05,0.011225905050991636,-0.039857505547148245,0.11788580424309106,-0.03451791265821573,0.00010043836685179925,0.0015539670007056656,0.014508554308629294,0.0767891741813342,0.017940140890285127,5.3184607804555856e-05,0.0019750716265445195,-0.02113658325329344,0.016913353189128257,0.019695072367746095,0.0024374069162557063,0.004329500920772192,-0.0365117652474164,0.27419750899300877,-0.04519857642019414,0.00010957751144619831,0.007164999253246306,-0.016252805111716184,0.07718898480767396,-0.09520131446351808,0.00032604776725930746,0.01516271138773525,-0.0060654891546864,0.034469634860501114,0.002305652365481418,4.9566711155525194e-05,0.013269717126465009,0.006743871401590419,0.03970495121306334,-0.01962319295927723,0.0002799312741379066,0.0020679933264854426,-0.024604864327161496,0.3442245794896109,-0.01103912738389601,2.9662607684331835e-05,0.004893713775370632,-0.010486297711617586,0.11340061329833015,0.018403850345710304,3.089502060134103e-05,0.011275980834133257,0.044392009042403084,0.1182228631051371,0.04756203189539257,0.0001209556287241596,0.003185392010073414,0.02954488379091323,0.21128996646786558,0.002912250352532986,3.229949914865037e-05,0.007663560217951549,-0.0323566568816807,0.10494361547191756,0.16675976215300597,6.835731623595379e-05,0.012059173143246296,0.010447670000262897,0.039809072495154425,-0.06696063984019962,0.0001200013088741454,0.0018563596547510905,-0.017743883178607058,0.020171636298351274,-0.03418712924851913,0.0005027859137693617,0.014823285023105561,-0.039386476800657065,0.15147151244709742,0.0948542146210524,0.00010944657647176966,0.0018074965815899015,0.0757581607140406,0.2172908703509216,0.12636674359311575,0.002237727079097905,0.013786476366405355,-0.03955662445776734,0.3366589015189201,0.04920403707538693,3.0214215154634305e-05,0.0025847324975249945,-0.02079611213828851,0.06457246979820681,0.014343781898796848,0.001052945814403984,0.0026117311444820678,0.022522562511537274,0.19037776736280726,-0.009824524480375973,7.878203864227889e-05,0.018304384233107703,0.010531413719487914,0.01664336359514621,0.0006730539213796457,0.00014934509358574124,0.013643927485900403,-0.013877977972435366,0.017333558233726423,0.004120315434747977,0.00045956017249574303,0.013659643260327385,-0.048288767593019935,0.16511066378377773,0.10742256594300305,0.00226684246348026,0.010241322097554616,-0.03279155656336652,0.1580445026407567,-0.019270950008809545,6.656914955764804e-05,0.006710477188018791,-0.025960221240248646,0.03743629784252623,0.00686433949462886,0.0017238230647346297,0.04357778325191069,-0.02543739048480358,0.06570602336150212,0.03995137065910462,0.0001533851832629013,0.011457251410401288,0.01705718385606579,0.05070200752020745,-0.13495283117817095,0.00013637744551242824,0.010081963387735919,0.00963373912281718,0.04413617683988211,0.012569788888174527,5.3273851482294235e-05,0.007685691975962215,0.008589083370607369,0.023717620431099165,-0.01651003422575141,0.003432367346887125,0.02160936583619374,0.014000150154499893,0.07485638988887487,1.3937766750200264e-05,9.303457666762391e-05,0.001207256260537454,-0.032687367579463666,0.19319285744773051,0.030448988231550365,0.00012270144159595202,0.007168302269111601,0.007586000755046497,0.040097497573815095,-0.06537285477670263,8.948377776152181e-05,0.00957755076295138,0.0552618029801464,0.23493581472589717,-0.021931648945455757,5.9118474281335484e-05,0.003424663020611833,-0.03714194711336663,0.07589760948602979,-0.025329404918497625,0.00023859754128645807,0.017536576769968244,0.020447462272494065,0.08773722151212024,0.03944170379844123,5.7952198274686054e-05,0.007917491735946473,-0.017765862990405508,0.1696763355763411,0.023173015609140278,2.7014461674686026e-05,0.009425639957459398,-0.029513919259048352,0.08948966310960721,0.07559502611687291,0.000115282391242173,0.010436745209365684,-0.003038999731574648,0.012130382979359108,-0.031923007771731834,0.0003948972596887256,0.00032011289381632954,-0.014299938515738604,0.08164335417100518,-0.09897709648515875,0.00010031944654850983,0.00669282844831866,-0.0060107936204655136 +2018-03-23,-0.00412527461077356,0.029440103930214564,-0.04869801969417955,0.00014818358894315106,0.004927187978873162,0.020239676629243652,0.08070913330610814,-0.048725221090363396,6.017157957485555e-05,0.01991123521079894,-0.012111290869027683,0.04842985172940762,-0.0028749336855258545,0.00011568432036704917,0.0018848638144673925,0.03252313404902731,0.03470301432800768,0.018446645119116905,0.000316295523849482,0.0006643328512094516,0.0016935181664341876,0.0038285947700233774,-0.0017499480704561575,0.0002314452277038721,0.0013057375401503229,-0.003992362778585926,0.01262567112611052,0.006085657475697822,6.90434151568332e-05,0.0017351604422837865,-0.0213495133704508,0.08563017725851303,0.011465755860009431,7.31561754088905e-05,0.00701868692003078,-0.007384190854477484,0.06805150120771483,-0.03148746114007639,3.721035535066589e-05,0.024408920372411835,0.017644985650901727,0.016015079730693226,-0.023428013352265107,0.0008496439924811162,0.011523460007393637,-0.00818092744280011,0.016819677357052195,-0.11065335148315346,0.0001700774620632491,0.020336344406181664,0.030338795790893932,0.020584704243969562,0.04830544872348239,0.000720407234509182,0.007138655603726429,-0.008643649383487334,0.11729243486856303,-0.013366279110113085,2.196088964644274e-05,0.007423414589625958,0.03222181515783344,0.08046803508917554,0.04616620697763343,0.00011895361456823458,0.00344991163642733,-0.0018833113399336079,0.010408397952825919,-0.05444357632594977,5.093309310333471e-05,0.001920075392024085,-0.027209785670366422,0.024019403711348853,-0.024305729518238953,0.0022094586173686957,0.008782021970245257,-0.004478058047559716,0.03350685307809964,-0.052650681603526525,0.00010997859959192582,0.0004261263052411145,-0.05423090173014695,0.2574439986414747,0.05494207486842696,0.0003261912337560071,0.02368670270629527,0.029349166591563253,0.17509362392122713,0.003523481844410325,4.7215696218855104e-05,0.0003406506067975838,-0.020227972063913777,0.11229962966411372,-0.02689163368159848,0.0002968662513887303,0.0009364262642517366,0.03267683359082217,0.4440537023960439,0.00713929094557689,3.053758594573969e-05,0.010785732999615286,-0.013094668259161115,0.13909202216243777,0.02267066528838486,3.145386282739579e-05,0.0055006300975916494,-0.011047186048665739,0.030390488545330437,-0.15514486657384577,0.00011709456627183529,0.008184356321608825,0.0020629272634346348,0.01667490604017691,-0.03159375134306375,2.857675399321682e-05,0.0090757105290358,0.01323006498830681,0.03244253671783719,0.010671150024538417,9.041168328003634e-05,0.005494531428636519,-0.008255964520548454,0.02708994994365107,-0.010149488732842587,0.00013935039721271777,0.006459525664607669,-0.014728752764310835,0.014168553129934086,-0.009924739468864642,0.0005941772652089553,0.011802009751332419,-0.024404559727147137,0.09113091953158706,0.03171497773567157,0.0001127174703959915,0.010375309924905988,-0.08951136046028382,0.36968490611338106,0.06708910411301819,0.001554052239403338,0.03301564713805012,0.04047213948950184,0.33627685034230415,0.030376856422828374,3.094862704639711e-05,0.014810989666400513,0.02727584863744933,0.08120653423199665,0.010232350839937959,0.0010981421607274824,0.0008425363204254706,-0.03012638598439077,0.2512542380447067,0.02682732700601208,7.984712498099816e-05,0.01813719998107826,-0.0131686686637471,0.016636778881473233,0.005169080860624381,0.00018681769629275884,0.0138083275559358,-0.005733229010243287,0.009740288030654331,-0.06841413483955995,0.0003378558194780023,0.010174375881073346,-0.04336227760125072,0.1687590780496392,0.03458119496714778,0.0019915686554958126,0.009916472865161296,-0.0056464033041611576,0.022245384186187718,-0.007720136638550471,8.143711032808879e-05,0.011462296835032923,0.04748643865583475,0.06789235778793759,0.027441366996890645,0.0017387049900214585,0.004938650123424,0.006545693837795836,0.01837012797336273,-0.02525437686041807,0.00014117556772460984,0.014302975566171609,-0.03145376906623691,0.08246639477254152,0.02324855645783769,0.00015461657946260032,0.006376625238487756,0.00197337617604547,0.007420786484504648,-0.02244431560026348,6.49043597020632e-05,0.005198131430351376,-0.023133171820268694,0.08370863940788124,0.01565773879065931,0.002619286222210165,0.027681919676185725,-0.014845381546643237,0.07313182022675983,-0.009485811441243107,0.00010097771797920641,0.0008801661218931125,-0.00015754346770907035,0.000865818936053828,-0.030792617411215528,0.00013195750790591284,0.01520114563313046,0.02622557218278307,0.155255295003488,-0.015178310561760939,7.989640719120653e-05,0.01244449497764742,0.03172892202616279,0.13766193235337518,-0.015953193837344153,5.792804220458055e-05,0.03148072332446481,-0.031394225675762416,0.06591401209027176,-0.020162167964406157,0.0002322209634801418,0.006423655302882195,-0.009730708257230478,0.038355848984641325,-0.012037110782315756,6.308516273684601e-05,0.00866160173568542,0.022333837580562507,0.23128622719015812,0.0098455302127083,2.4914080714231078e-05,0.006108343115338276,-0.007294402135775664,0.022841453176541047,-0.1044701656088988,0.0001116284607386655,0.0008589403731123501,0.002164583218575571,0.009232516734051408,-0.011806712186619283,0.0003695576140881974,0.004418535839008235,0.013712711713240492,0.05503904620418061,-0.04120189247603022,0.00014270008853725885,0.005679635521912109,-0.002376058208111153 +2018-03-26,0.02742493896695142,0.18632715715221038,-0.08127456309635474,0.00015565249833041634,0.0048325329616931015,0.03224921296405225,0.11071240848743248,-0.023261416730472634,6.989294626596462e-05,0.010362786042952076,-0.0043917192430189276,0.013669813273338743,0.0008694436423981359,0.00014861723966571542,0.002365892306299288,0.013260232755558769,0.012647857965523198,-0.01804676195634198,0.0003538360056057797,0.007186467536673786,-0.04956048331511283,0.10292711831343176,0.10483671193847911,0.00025194369326350674,0.0329657428053968,0.013411341612962849,0.03535348885904309,-0.023445220964633407,8.282981401467827e-05,0.004377962311124513,-0.0031782987636901775,0.012787308551220365,-0.0018806483513280343,7.292986834434064e-05,0.00010287769994675997,-0.015334372562718687,0.14521922155866068,-0.009944462696560028,3.621100019083238e-05,0.006201835957696611,-0.011860532525023075,0.009153483699844176,0.028800703969941353,0.0009992233242347055,0.016680833956527235,-0.03557377189622884,0.09485960831602527,0.01419893573245234,0.0001311325405570619,0.002173195816990053,0.013033839561327334,0.010009472059119897,0.002776774689900497,0.0006364811665743256,0.019319708928525445,0.008539280970662198,0.10758788313064425,-5.568672277460827e-05,2.3652700379707413e-05,0.0046698424466510334,0.0440953705306518,0.132402724592437,0.08987921429565818,9.893435164753929e-05,0.009535208635499755,-0.007760701020927467,0.048092127792134884,0.009213612291581227,4.542435596782849e-05,0.006178376764427198,0.0285245279127765,0.02452982977380762,-0.05836803058268313,0.002268020123697278,0.0015375851252574172,-0.013343644748931804,0.1100177915122572,-0.047514336896961204,9.980761002616934e-05,0.019321042043829235,0.01296864029204735,0.07913207408975836,-0.05833984639862841,0.0002537757544013098,0.00788550784553858,-0.014202321881006199,0.08537449933956441,-0.04923808860304503,4.6858905173505395e-05,0.01679491589417179,-0.04112193354051641,0.21707023192830124,0.014162152144385723,0.00031221952885715195,0.011744185023724034,0.0013268638769894606,0.01767882871460032,-0.015516165433011118,3.114605986844487e-05,0.010877505634194852,-0.0051558261596058065,0.05585578349112166,-0.008874475819881817,3.083981944202976e-05,0.0028801426811466027,-0.015849169853234514,0.046647581741920165,0.04271615844445208,0.00010944606234357073,0.00507443889272138,0.032391185481208104,0.22186550392903634,-0.0032127353487316425,3.3723251121510754e-05,0.004723484175061473,-0.011656709395513306,0.031881712962518266,0.020252383925709418,8.106095284468618e-05,0.010856111877064506,0.002975904193068684,0.012156546135133254,-0.007068504352535634,0.00011193279240864656,0.0001050780141189922,0.011975915860061281,0.011625261881648974,-0.007649482138317435,0.0005888186435843733,0.004230585310219789,-0.02266857761184838,0.07792197831414813,-0.026818002914980453,0.00012244760902104017,0.019250062317693804,-0.04425762963287426,0.15072190158317483,0.008354543104821316,0.0018846510901592717,0.00212425100546981,-0.032060305893164484,0.24704506196358278,0.02167720819386206,3.337134259632494e-05,0.011811675927576513,-0.004063151938020453,0.010433331291923177,0.0017952427639698519,0.0012732431096840982,3.1941209303757334e-05,0.00021349206003386711,0.0014152582586823674,-0.0008334753623327994,0.00010045502665269586,0.014030484702951505,0.011022756112608738,0.015300311030208631,-0.003633803482459129,0.00017003382526268216,0.0008637318026338725,-0.023962328339517943,0.03896039714512821,0.023221270956918633,0.0003530283259458114,0.017280306876199303,-0.02436936813414401,0.09600949287804206,0.015825786812970092,0.001967344583976053,0.009056518617579994,0.01752831264895255,0.06833721168507817,-0.023191244225508223,8.229495779470532e-05,0.015426892575049261,0.04324548815013177,0.07111039176952716,0.012882435655417633,0.0015117672201090857,0.005362180443364022,-0.006031782844069999,0.022260200345906367,-0.010007561301471317,0.00010735756817532188,0.0015767974169097188,0.020005761615786915,0.05166597403370286,0.004928100626717378,0.000156967898627346,0.0166674189953246,0.02944984960360412,0.11593933663245287,0.08050500129546521,6.199636052354523e-05,0.0034859823714127724,-0.030582144790624856,0.10352878905004168,-0.028425150871144077,0.00279978616963559,0.024892625361514046,0.025516701896748307,0.15748727770468698,0.013194701156987572,8.059714067277233e-05,0.007692474941283467,0.008930337600468928,0.05765152332931873,0.004956136038406672,0.00011233572030983594,0.0030958889038952583,-0.010383242084483107,0.05844637926958125,0.005913489753831844,8.402800767768454e-05,0.016871468999042155,-0.03726983841125284,0.15857996281692432,0.027927319933220212,5.9068588489326e-05,0.004234323197621364,0.048502145006321704,0.10810122704613598,0.05110113992979409,0.00021875587031815392,0.020093093071584252,0.0022851128822566017,0.010012707113907051,-0.17475738334086607,5.6750608416913364e-05,0.012617233784100117,0.028787175048257608,0.27209175278066483,-0.028139098973202516,2.7297002265479948e-05,0.005670344091346446,-0.008468152305671139,0.028312552209748147,-0.0029559835724385273,0.00010454869225748697,0.0008196262538837464,-0.0058836858137136985,0.02086385241510032,-0.014716233940022,0.0004445114399578538,0.013466134967874823,-0.00399658764154466,0.02196431816360499,-0.024642390811648915,0.00010421816233461706,0.003333674094984832,-0.0012416080793225062 +2018-03-27,0.017686311318216227,0.12247774510756021,-0.003346893884096037,0.00015270971515557883,0.0007554644791988687,-0.008918216921273064,0.030966683538800083,-0.006842753633941806,6.910251634343677e-05,0.005203325481072449,-0.02943476656056647,0.10704566905996643,0.023702300194937204,0.00012720046514463334,0.016612770183227012,-0.00013585693892733005,0.00014779125438251118,-0.00019595653344276447,0.0003102422533343337,0.001621886632628423,-0.011384782215469008,0.028015046666211872,-0.007200588636071965,0.00021263323632226836,0.011864416350397257,-0.010435018488653787,0.02710826880065122,0.03290349531499062,8.40500893250016e-05,0.0006240513155528147,0.017354797279811457,0.06274712245004048,-0.002508893782155218,8.115505682525733e-05,0.011826300976557956,0.0042889094618138845,0.043635363898348385,-0.0033372712292711573,3.3705974726903625e-05,0.0015209574670728588,-0.020332562187883475,0.01566556591565941,0.06782028191826324,0.0010009002727570091,0.001133371144610322,0.006964903088722043,0.013267633234516149,-0.001028148760388021,0.000183562306803712,0.012924484373549212,-0.012921171636568333,0.009636122881121164,-0.01147105703677876,0.0006554263905211636,0.021764914476742267,-0.007802029505662384,0.08934489899966609,-0.00036126261032788664,2.602319497329707e-05,0.00502544901973252,-0.01402466222599029,0.03802667786328435,-0.029215416918776407,0.00010956076665455642,0.003091835951556653,-0.009993713294064774,0.05778717693988043,0.002809432415018573,4.868074610061024e-05,0.0014948650572269016,0.012587093135672061,0.011899361208503321,0.0010842159447612592,0.0020631213360410494,0.01051019008552099,0.03826642312635029,0.23605851380941456,0.0021797708790205067,0.00013339830415520906,0.019652618888180547,-0.0004306683979467672,0.0023304232607141056,-0.07775724849664792,0.0002861649438966462,0.009470160047437785,-0.06092250987091406,0.37225871503836055,0.03088892722787176,4.609925098346497e-05,0.021979538826172554,0.07762438489780861,0.42769955337030585,0.2760596021273363,0.00029912050304610504,0.011642351842531241,0.0342911909415148,0.4101276247903631,-0.012453241477946278,3.469714786937703e-05,0.0018652371320371833,-0.012866913226849104,0.1187571973866374,0.020540248677150985,3.619896399401046e-05,0.0055116235097161115,-0.024114508547708535,0.06636434145660858,-0.06909765880870261,0.00011704864273037163,0.012460516760839709,0.016175951179208836,0.1096527768675322,-0.056461050290363406,3.4075526064728144e-05,0.01955449435282363,-0.00930903475408042,0.027093971803297926,0.011210701476625189,7.617445566726018e-05,0.0005554412277709391,-0.010434056482344798,0.04816890008988225,0.02195639771836438,9.90455685697175e-05,0.006621485719097092,-0.018256946297445866,0.020014924000929128,-0.017450434786938963,0.0005213744612656907,0.0127937550252715,0.0025357781888600056,0.009518435962372089,-0.0012834961477192462,0.00011213254486558431,0.011241957080337659,0.007986633792283737,0.025430552301148004,0.005519567331111767,0.002015705838603318,0.037298801073956736,-0.012699580083984585,0.1588226449658241,-0.02012439266562974,2.056170538205091e-05,0.019279235207636067,-0.0059462794692585735,0.017857966179975676,-0.0006405361464225237,0.0010886407589986075,0.014634292271618008,0.019392848178501274,0.1415904418795227,0.015549472282048123,9.120807790528403e-05,0.0008336663170275926,-0.005257406082820545,0.008062847444000898,-0.032384252811191686,0.00015389640217363686,0.006175595062577755,-0.01964993214943264,0.0245553510348257,0.009438378768260867,0.00045932366545139357,0.0039580470984476,-0.0346905722913072,0.13083290414694648,0.029876725469371222,0.0020551561449579426,0.000837218054008573,0.01439399692187162,0.05696342615539307,0.01287023845406157,8.10728934693589e-05,0.0014116622660781722,0.013908254182995256,0.01975453909857951,-0.047015494980732465,0.0017501807770253664,0.03380094419220282,-0.012250387795693747,0.04244785617169717,0.0002340659650526421,0.00011434313946567989,0.014139965254829518,0.018496413779840758,0.03917547791818098,-0.0002148832202967713,0.00019139632963465525,0.002088885425069231,-0.042992400076766954,0.15224201149855224,0.06535309880479967,6.892409972638356e-05,0.006966598175253582,-0.002422411212976335,0.0060994013457766755,-0.0007239677911811959,0.003764252216661486,0.012973756968269225,0.018453750072959612,0.08738895600238507,-0.0955495353748055,0.00010504337188613227,0.00315351130774202,-0.015021836241449898,0.08054255158994612,0.008178404202029987,0.0001352565867716815,0.0022743144591749363,-0.0010807170416343719,0.006028905477785208,-0.008549116792154225,8.478562454306529e-05,0.004931951378835992,0.0008985822383983396,0.004223683089498799,-0.012549471321923454,5.34704575017565e-05,0.018785519377921313,-0.016631550337988753,0.027676377881254738,-0.03540458032529807,0.00029299005347764763,0.007917598757991702,-0.018557399175435547,0.0839445275039204,-0.027205938928812345,5.4971690994937985e-05,0.0046631933822422105,0.024025479600911573,0.3012023843474744,0.00965333525015776,2.0579979882780342e-05,0.006409080922923655,0.001015179929399726,0.0032331348777141287,0.002115402146421257,0.00010975597318530248,0.008763441817207627,0.033408683414307784,0.1359925872749053,0.09267273019456551,0.0003872327635812552,0.010230610780786546,-0.0006670174060386205,0.0026655908871143336,-0.00121191447446564,0.0001433228607282281,0.0013999774407414793,-0.001058713868913631 +2018-03-28,0.042469147050652266,0.2716232849933037,0.046585751736200054,0.00016534578387839124,0.009412859685264756,-0.010829406144077862,0.03291632307211412,0.007379258952131672,7.894122329349234e-05,0.009317427667501054,-0.005747104940662829,0.017569823402133016,-0.026467697022507012,0.0001513139384836869,0.012784399588463514,-0.02832543736192467,0.02972937690738576,0.018280427062369257,0.00032155752232439455,0.01131318306453502,-0.010843904011303864,0.026310968984799663,-0.0012411052575849709,0.00021564857578430433,0.007263062980376344,-0.022962449857688718,0.05512039745419852,0.09755561063941431,9.096045420842944e-05,0.00795534994812443,-0.010441650414746989,0.0329900936120304,-0.029893396590578367,9.287000229893502e-05,0.00729996334016729,-0.021546170969812574,0.16607139619240863,0.021895826719487234,4.4491175387780245e-05,0.0038311470809283916,-0.0071381598819732495,0.006974323123010093,-0.015045612653458043,0.0007892761746409126,0.007121440615298209,0.029256113370942947,0.09074351076593623,0.049900651549478,0.00011273608242804036,0.028768981025257257,-0.043078606164598264,0.03517937493916836,0.08384893878504827,0.00059854648194526,0.02748699540446467,0.018744188918322108,0.31639021702819564,0.010129333113602665,1.7654946091145175e-05,0.00306752247456528,-0.030056369187131175,0.09645039171863218,0.022459923441636127,9.257283386045423e-05,0.006372781010752785,-0.023066178517023545,0.11749574654225343,-0.013551608831476925,5.526056515454488e-05,0.0011799335349908522,-0.03156686565205113,0.02968648178711598,0.043083983850955396,0.0020739376847484386,0.0025371232806449383,0.08838982620460051,0.6376705599294135,0.09615054435853002,0.00011406647503402857,0.0014653527513612506,-0.00469971065799474,0.030749444822977888,0.0009003412856699352,0.00023666938044783307,0.006768733025499064,-0.0016749772751139319,0.00901026384899114,-0.01356996876014622,5.236394602477649e-05,0.029311685982189462,0.010939739520097873,0.06297199463859911,-0.0442146992576913,0.00028631647529940677,0.02776771524008485,-0.02742758398606299,0.3504619612137718,0.010714134384053147,3.247707422511655e-05,0.004630545121214012,0.006528000334306935,0.0659652741445256,-0.007777209863075674,3.306332342563322e-05,0.0032445999007090433,0.006093968503149217,0.014151534332809195,-0.0005093091871817807,0.00013871372414551175,0.0057553432745227374,-0.023420505534468863,0.17008115791886788,0.024927476447702775,3.1807712504551204e-05,0.01550755661613618,-0.003976438856184583,0.01276884082801682,-0.014295904713118457,6.904308970181436e-05,0.008720501792693697,-0.003368040097745417,0.01297275236851862,-0.0007343170402680353,0.00011871175371050427,0.0013710611386717755,-0.010208511400676317,0.009198394237530185,1.4149891174691675e-06,0.0006343456415677995,0.0340128660293421,0.01937680499389799,0.0750257281996411,0.030243755218513572,0.00010870711205107496,0.016916926709658255,0.09248605908402928,0.2882715695264815,0.13031694305068334,0.0020591767982131785,0.013537403325056225,-0.010988114017436771,0.11097367827188089,-0.04888750745508915,2.5461581251371357e-05,0.009670222706749833,-0.004770085589293225,0.013281860728744809,-0.016301828228271094,0.0011741903839808112,0.01577358393158784,-0.005647327745657976,0.03779849280197223,-0.022594557371320437,9.949337274225261e-05,0.00440334636460671,0.006005675410987118,0.00985094513352325,0.0022144220475271105,0.00014388957911019306,0.012219041131170994,0.012979795935257459,0.017284748532423008,-0.056953568219181086,0.00043103120533908917,0.0018919773525388817,-0.0027627515913542177,0.011697869195697421,-0.02768786362353337,0.0018305661110347283,0.03225074050306965,0.0033909020234768024,0.013305311785231989,-0.02790223796637274,8.176746919402313e-05,0.00309722714733323,-0.005552624433668086,0.008991711466365116,-0.08960034738759705,0.0015350874783495402,0.00458340225085177,0.005427142655353422,0.019477357579347467,0.0007068644371454875,0.00011039699103299763,0.00583182321742179,-0.017144190921818233,0.05343217592254923,-0.02338266211648575,0.0001300692123152181,0.002619878927734699,-0.00795319835112605,0.03857051648357313,-1.3402559749278666e-05,5.032691211987992e-05,0.009192357229227564,-0.06056404704504462,0.1725975373226896,0.06557033244861073,0.003325817018582093,0.016309425057231437,0.0001604287080958898,0.0009262323155088887,-0.027219372089209225,8.615941227394983e-05,0.017293297287282863,-0.005582537148632468,0.022355187563036026,-0.08191689891016775,0.00018109818098506917,0.02259383687310589,-0.022074960412917066,0.12246049880544534,0.023647796908436484,8.52614291669009e-05,0.004237542895809138,-0.0312079104380261,0.15520883339534472,-0.004405328704674128,5.0535393440952537e-05,0.0016084817414248312,-0.03253544214949433,0.05853413298663791,-0.00500003369136708,0.0002710047588894668,0.004750706691511135,0.01477585732284957,0.06845010038016268,0.03306770904726125,5.36775858737435e-05,0.002821321762459462,-0.008737278283701307,0.08489335298095026,0.010032866784445909,2.6554233312480555e-05,0.003841982031922303,0.005329968408502643,0.016911087001073147,-0.031243415053563216,0.00011016967686700103,0.008908927216826115,0.0005272072817385517,0.002560641200876671,-0.002422635985784642,0.0003245343282742557,0.005424699673292498,-0.02249547660144385,0.10428257048674616,0.01936747063119317,0.00012355356105375493,0.007153749105229194,-0.0045221892288749175 +2018-03-29,0.017220799723029267,0.1289700044469291,-0.008086086613994785,0.00014120536087214864,0.00966660639394336,-0.02766615362513869,0.11207516118615886,-0.034985787815923444,5.923111915821676e-05,0.004019596400881795,-0.03352249627050905,0.09718778530937794,0.02516663865279859,0.0001595592072797364,0.04100914553075463,-0.016176360574182314,0.01671294997221753,-0.06332419641874522,0.000326659702336052,0.0014006881720992795,0.00603629996013665,0.013067710985482796,-0.10853271917037756,0.0002416957781938161,7.349784831077314e-05,-0.01868921090165041,0.055343433070606886,0.05546233574838088,7.373464758830024e-05,0.004488834024612843,-0.056912844362690305,0.195084446586909,0.09848874586025667,8.560073630835975e-05,0.00048691809656364535,0.022928805151305933,0.20574326902743764,0.03315010005591731,3.8216807271718665e-05,0.0036096622396262932,-0.018855992095720864,0.014021081086358807,0.0374744839486144,0.0010370809890150956,0.010313841607965184,-0.057152829475887956,0.14127638704053141,0.04375813983925336,0.00014145882373410243,0.0114182234005866,-0.01826713828227801,0.013319777085516737,0.011565424609872135,0.0006703442954412074,0.01822237775291423,0.008234784497269899,0.09848344738140064,0.010364556166729934,2.491791988361511e-05,0.010926247884247512,-0.004496203644751399,0.012705304836899323,-0.011489046706897649,0.00010512643128202963,0.011530523503747262,0.020563118378504944,0.11098885690807925,0.05775567385628915,5.21520537301251e-05,0.0007131287935385044,0.015253835095155011,0.013283553968144013,-0.015050595820706265,0.002239689093162389,0.015987821789660395,-0.02634850801405039,0.1602966298880509,-0.00889254451790231,0.0001352644728445086,0.006340346944185923,-0.03901980897138406,0.23685982882121676,0.028148857767106426,0.0002550950079015044,0.0025761181853833897,-0.006637040587395566,0.043581270427913,-0.00016752174520529763,4.289785168536749e-05,0.033705126232445225,0.0010409607498931225,0.005795751938033249,-0.007239306410209,0.00029601340106299946,0.013585754470237882,-0.010511890926369706,0.13278995072647543,-0.02107937772188705,3.285079373898359e-05,0.015752158056759998,-0.0023891725845872716,0.025453596179241245,-0.007491554651116902,3.136029085532535e-05,0.005368945965756924,0.015287047448242125,0.039614243854886884,-0.020084305851969034,0.0001243068320706655,0.001987621970327887,-0.044083881666033484,0.3118190200705006,0.06564069958629565,3.265649735280699e-05,0.010023350351475425,-0.010880912713154937,0.029345732824204076,-0.09356713032993956,8.220490834869516e-05,0.010090042331343394,-0.004206939672870736,0.017865989453233554,0.007142352887143997,0.0001076682877821502,0.0045940893590617395,0.017243977797719974,0.019091680827771903,-0.1074194976793193,0.0005162604446493959,0.0029326138860966775,-0.005725043317342394,0.02025612393900563,-0.009994717039139645,0.00011896205026584482,0.0013877076808661236,-0.018016094088448266,0.060259875368873644,-0.004753601716207062,0.001918896659604997,0.008718316602938234,0.02865271583128373,0.24167760553820877,0.022187203874873083,3.048678152016648e-05,0.04054619098325543,-0.04228385541123713,0.11785084858685094,0.042161577957685624,0.0011730408462050086,0.015712739672714998,-0.02030485404364531,0.13783282165817223,0.007476833791524444,9.810087212583563e-05,0.006547393600659412,0.0011712120632925494,0.0018824800076443391,-0.004745420433717536,0.00014684208777081983,0.0005531269307251048,-0.052685059937367884,0.07982748189282085,0.11741848466652526,0.0003788252882225632,0.0203217716190135,-0.04617939097393262,0.22529430001629178,0.03660663789044899,0.0015887235676216008,0.02684190749172169,0.0011989569367837224,0.004432633637746964,-0.05135479911026927,8.67824920688218e-05,0.014309133961144029,0.02752107518122053,0.03490146064369415,-0.021238657422648004,0.0019601936850586663,0.0015179173144673518,0.03516834918427066,0.11089548008673719,0.03478151153432714,0.0001256475931792822,0.011611006535907091,0.049645870716147025,0.14336179624599485,0.03527761095679978,0.00014038156324088394,0.012057187780086335,0.013066588035078722,0.06202176651819664,-0.025541592602014492,5.1419990504490314e-05,0.005361543754289772,-0.033117060671644785,0.09205696428362246,0.007881942835615684,0.0034096766256346517,0.0038047162982220556,0.027684349235687418,0.13492893849052026,0.005100602800953727,0.00010206334229707034,0.0003412911863902283,0.05088867695965548,0.29173117007209537,0.1500047123560371,0.00012650250061730425,0.01743811997250676,-0.01795909602545196,0.10444206713186385,-0.05893603984067253,8.13312996897934e-05,0.01589734059711244,-0.023988328862735133,0.10547023094776783,0.0077247064140352215,5.716332627256555e-05,0.008915491318733981,-0.032330485098198226,0.05537263499416673,-0.01887708106248111,0.0002846730958991067,0.029682133031659307,0.0015173448984146568,0.005944809297584659,-0.00037305982875946835,6.346886868339232e-05,0.003012446379858728,-0.0009384007643589932,0.01037137503598266,0.0013900064764868752,2.334443135164734e-05,0.0005275914851625401,-0.019051623359477115,0.04687332841436864,0.023127105221386935,0.00014207418008388501,0.00518225738373693,0.01822043813070227,0.061587480775437846,0.033659382692930735,0.00046633106476132223,0.0076085319206565544,-0.038088383806034964,0.1576002748626471,0.0585901156402007,0.00013842271722809324,0.019823019720050426,-0.006969466028450665 +2018-03-30,-0.03612702467146143,0.27682510715478664,0.05877419250496712,0.00013801087294764504,0.005286456186059409,-0.004280031996903193,0.014978582403779604,-0.0044270497582585295,6.856252911233081e-05,0.02314065596311645,0.0296210970698515,0.11524549961527031,0.008038294588754805,0.00011889795057996042,0.024892749742092348,0.011389769655867842,0.010404618228417909,0.004394826990631857,0.0003694508311438136,0.013038388907190081,0.047519266289559936,0.11018516000907524,0.07581026182890328,0.0002256547044006671,0.009224679877160694,-0.004602703809595688,0.013436936491577471,-0.03099355692677361,7.479275032159439e-05,0.000539341471050249,-0.06138515508180371,0.22711999671203825,0.08823739485413086,7.930450146403838e-05,0.011529362368852374,0.018154994445352585,0.18690442236591348,-0.011120456405015288,3.3310040250364576e-05,0.008221895240593177,-0.008166182851119292,0.006559714753346196,-0.009447960168271985,0.0009600170187086575,0.002851299389212111,0.018596251936812285,0.04321618161080726,0.0015467073122514422,0.00015046687998441949,0.017367409798548766,0.023480218440812037,0.017886704541286113,-0.0015035505135807532,0.0006416469850270254,0.006405886317139096,0.010894208502743486,0.1135926189765627,-0.09936218162558035,2.858040374677597e-05,0.006021287276997407,0.009224735382193802,0.02876966474074454,-0.019701277435259533,9.525113378816692e-05,0.005474058481779071,-0.0030281905247555425,0.018513921010960464,-0.0011661404659887556,4.6041197207120786e-05,0.01338785121353162,-0.007883593698376943,0.006936859402042438,-0.17334639840614616,0.0022165846125451905,0.009485599341259863,0.005514307757268789,0.036364512049878915,-0.0010374882973237891,0.00012478585069047854,0.005361504400608504,-0.013036463340586694,0.07955768310221922,-0.05432268467852105,0.00025373822216633767,0.011608161489544976,0.05438530234071621,0.3064988653564434,-0.0317177935051505,4.9982000220851397e-05,0.018143716871160766,0.010402798703807203,0.05554929889943918,0.0015166619324089733,0.00030864441333120353,0.015722474893414516,0.034078885463364926,0.4305792216145205,0.016044104443366184,3.284449175358595e-05,0.014830133111444866,0.015623927696272577,0.15860249899432838,0.010505358756534362,3.2912578171875976e-05,0.005123423364867276,-0.023262938180750474,0.0681295907048,0.005895877144276715,0.00010998957970625692,0.008116058937822164,0.038031718340179516,0.2400518350117374,-0.11487440120279205,3.659597261782376e-05,0.006969939121232156,0.009464207514381897,0.02623943075313572,0.0015081544179595433,7.9966341519716e-05,0.010309343722607424,-0.006543455179415473,0.02438947979282571,0.007020111748173733,0.00012267418752349047,0.003309942553112872,0.025332092376410598,0.025043075702179313,0.015507908562740565,0.0005781745327892571,0.014911696204419197,0.0055934995368351875,0.021269201451284966,-0.006409817355732109,0.00011069255982001924,0.004430004047536334,0.012289972899744279,0.04245769671875558,-0.010945544436287404,0.0018578629304883253,0.025281070345808475,0.04595436351754701,0.47594841420012546,-0.013701877102171389,2.4828419037519734e-05,0.007270709758528936,0.024114136066629,0.06418366952763004,0.014373021039974229,0.001228339545387839,0.017698068726595545,-0.015297535302308122,0.12301262981994149,-0.05344136890405007,8.281278766030725e-05,0.01981345799561412,-0.020239735906852522,0.0267407211938182,-0.13209765864412448,0.00017863934256138607,0.008964148439044532,-0.006854118441649862,0.010445333746279808,-0.0841696841119524,0.00037664585966089417,7.456160715738221e-05,-0.016972986466001073,0.07231902499574253,0.00041391023181469827,0.0018190977794822567,0.010704061925218085,0.030904516772431164,0.13218550807791793,0.06900240826351324,7.501160932018661e-05,0.006422076059876844,-0.001410002208840199,0.002106345158895002,-0.03235981235125573,0.0016640541168488844,0.008652196339913992,-0.04255895285237481,0.1416272577841048,0.07992610103595686,0.00011905842249787727,0.0042335624631201305,0.0045972492084901655,0.012205677766162213,-0.003978380827710991,0.0001526850524251261,0.012076191343089964,-0.010155443753223277,0.04436191089071082,-0.03430137266168652,5.5873076469111e-05,0.00970273057344025,-0.025462774022415556,0.07935308063789055,-0.0033478729268430585,0.0030413050436211408,0.001965433137306432,0.019904801013280106,0.10145421877196321,-0.012031207957053732,9.759516441013963e-05,0.006390264300011197,-0.01424826939118473,0.07816154816535939,-0.07446441563567127,0.00013219948068720602,0.0019928189404464984,-0.000558115263302869,0.0030722794973609413,0.0009060028361807467,8.592348350114637e-05,0.010105882320647842,-0.008358438424011108,0.04267010036892287,-0.0045225725936246615,4.9232158589324634e-05,0.007744299910111591,0.011153801733883494,0.01862214202402394,0.012740798804937154,0.00029202678008468454,0.02585179087760715,0.019344555926782993,0.07461175680198444,0.0461071161821365,6.447121790849345e-05,0.006656597998761236,-0.008816178630100095,0.11549649079716315,-0.013926913403734892,1.9694405589025918e-05,0.0015129869537296179,-0.0008805696518178334,0.0027779006384690613,-0.030995941438557887,0.00011080413575507246,0.0016492807882132995,0.006889601340403793,0.02406409981472392,-0.08258302533482936,0.00045128660517989254,0.009895445311639071,0.05859844538472142,0.27845637853695243,0.12662263523396383,0.00012053154395514059,0.0006742553591528682,0.005319499187449275 +2018-04-02,-0.0012596457267960322,0.00847557321039429,-0.01073718960734088,0.00015716864972271374,0.0009930107123071635,-0.016163779149904717,0.057137383364694316,-0.015650244514298584,6.787863287753402e-05,0.00624213464516785,0.015435101767545412,0.04868764514005574,-0.05558549740953478,0.00014665198038918867,0.014595448460909004,0.006494262891627674,0.005981041479837113,-0.020749269341908436,0.0003664552155167169,0.0024269352643655003,0.0015280088445207935,0.0034503038976722903,-0.005901584604349116,0.0002317214788910973,0.02180457660988768,0.007662872847860362,0.019299774884891055,0.0005534614248861354,8.669341596192508e-05,0.0017559294256086673,-0.0022591618510038026,0.009186270442608892,-0.014021339430049235,7.216024085975521e-05,0.016250881716174243,0.0030795910708425766,0.02363051597198776,-0.032603647199154644,4.469083424039632e-05,0.00812779013308637,-0.01691171709627659,0.014437616088844694,0.003736929918862728,0.0009033103833278314,0.005709767585509967,0.04571969943083408,0.1116696211268305,0.07285500947883582,0.00014316280874660512,0.006014393442389097,-0.008397463371641234,0.006291413912523451,-0.032010362113258445,0.0006524154213720249,0.007447668682720357,-0.004445002547362277,0.049473150443377405,-0.0400842597661974,2.6774738416526616e-05,0.0032696413633215207,-0.01431516934537184,0.034342908612698904,-0.0007576229764737358,0.00012382560359834954,0.01936224335011877,0.0025368413270958697,0.013618129261610773,-0.02460931439493186,5.243697985825797e-05,0.002714063484418697,-0.03824750497819425,0.03300746520467288,0.053890600519283,0.0022600284605984026,0.018745315971084697,0.041844365393150174,0.24178707314372996,-0.0013275239263732441,0.00014241509222511075,0.014216571827587631,0.02461827851027833,0.14623742514023982,0.03891912401098994,0.00026067980105229236,0.0009266008839179234,0.015540769353767763,0.07266733181204654,0.0010485839768161955,6.024128911353057e-05,0.011591461021763632,0.07685221532706656,0.3992910946766049,0.16224006593125676,0.00031721489674574305,0.01280413576641768,-0.0868924015321527,1.040933602834285,0.10557219750014361,3.464088695395872e-05,0.002582051787527011,0.03791213440352346,0.4517665571216625,0.15636305304213702,2.8037924767957363e-05,0.009852717419265536,0.020243004902085786,0.06407496902939838,0.001061187453421457,0.00010176755279235452,0.01189531017452306,-0.02162272998428266,0.15056337788887383,0.01582808987184941,3.317290855729777e-05,0.0071024464737979584,-0.01830918264834474,0.05827830359458398,0.043935494619437854,6.965293767272091e-05,0.0007835763406126043,0.010213953002001293,0.04580065297234186,-0.015858303715114274,0.00010196961535384034,0.01165332586072808,0.01439343386796213,0.015214228148842138,-0.011657388548783211,0.0005407419384653653,0.007965758056873518,-0.01953332544882019,0.0635741163630027,0.016131677862433372,0.00012932481403506253,0.004587926114511786,0.04910068837223968,0.15023040708316196,-0.035262498318063495,0.002097726726383666,0.017934900791150565,0.044096274832103675,0.35833668414629766,-0.02795525751575215,3.1644105757896524e-05,0.011715241193671205,0.05952919981560573,0.18055209155218668,0.03206127719340186,0.0010779504319493559,0.016981426442957536,0.022831439889140676,0.17595854238427897,0.05250667418767911,8.640693279255243e-05,0.003028676153200175,0.017323959701816976,0.02850867914569423,0.011815733768728992,0.00014342189449646404,0.002283186509268745,0.01640018696594113,0.01964392994011949,0.005760496968279968,0.00047920830536151977,0.0058584983741591014,-0.0282775891093513,0.11834751516628919,0.011084637226726398,0.0018519684206069577,0.024967149926253283,0.003824973161673147,0.013765934620089909,-0.020502343330348415,8.914829880418836e-05,0.005167470134963834,0.02324686115564874,0.03098183653858356,-0.0036627424819397356,0.0018652384323189026,0.009650423109853746,-0.005116863897321395,0.014308818014516634,-0.1022862871545767,0.00014168247726438973,0.002477641319623287,-0.005951735711399059,0.01636260778758422,0.0037217831659794144,0.0001474522804605006,0.021118423258429896,-0.005597084074435115,0.029634029200820557,-0.0022702120253961047,4.6098314986246075e-05,0.009516158551435895,0.017395161789646153,0.06284069014055348,-0.02985164857360265,0.0026236481002607746,0.008913500559970342,-0.02570457867799979,0.10230155884820068,0.023471631340558748,0.00012498814110487865,0.013729126744159104,-0.009975024736906708,0.04707461978849972,-0.0739972883064009,0.00015366959431967184,0.010100289139244389,0.010109086006739041,0.05422726108476853,-0.0664892578089352,8.817448273388589e-05,0.0062867072129723514,-0.02539313984462341,0.11126444251854956,0.005476165053712848,5.735977023760144e-05,0.007992050178585527,0.044002859302451194,0.07684693806520665,0.03460341770304784,0.00027917962785551075,0.016404097662600026,-0.001073139729051884,0.00415126524529774,-0.0006495547921981777,6.428211622228348e-05,0.0016954820876521409,-0.02334383360472361,0.22331120852990613,0.03166210027236489,2.6970744970859806e-05,0.003108605228543678,0.022300239253623212,0.06592078459833596,0.08582895698190883,0.0001182486304061129,0.0049989677748341526,0.017228148787163125,0.059051047989662875,0.029621219324529057,0.00045987412572143173,0.006888732891244204,-0.04747731132802998,0.215473916459805,0.0631240691658539,0.0001262011193994784,0.018279390922359785,0.004690619939877708 +2018-04-03,-0.026859717443947703,0.17404593313450392,0.05350744032020915,0.00016320149917570487,0.002288512167811175,-0.029091493360579593,0.08902782526025463,0.015016427080913141,7.840626704875928e-05,0.00437967319323053,0.041544566384603944,0.12171409466374264,-0.031714440682702925,0.00015789579413953526,0.008555298756831153,-0.034085874325397454,0.03187500603535563,0.06482875402152857,0.0003609042688827828,0.0027635466946164334,-0.046668337106742334,0.10697463024332046,0.08530671021511547,0.00022826498875915186,0.011286227101932264,0.0005922781957464396,0.001383536970715578,-0.009348366555948865,9.347203883874235e-05,0.002465579976328746,-0.015307584832867066,0.04845784725091106,-0.07651227878075728,9.26898999782831e-05,0.021523430275754065,0.01402708827430528,0.12063123784123157,-0.0071898017051885,3.9875520064731026e-05,0.010950179201147095,-0.0059204997091899724,0.005063067154597704,-0.0004907958335008818,0.0009017568769504613,0.0030529885709576826,0.004027634548904283,0.009259209976600341,-0.010098787888864922,0.00015210308092304965,0.0035827990709875975,0.012011520280035047,0.008300496944616946,0.0027383716594985914,0.000707323753806187,0.0055022425330357744,-0.00687408534514427,0.08411575794072564,0.00551471229605771,2.435344175636723e-05,0.00857344612607643,-0.05042967042304985,0.12660855911717217,0.020987766468888457,0.0001183243429348985,0.006020609435810808,0.010789763838488935,0.0628536536831925,0.0013577056759094125,4.832181398366836e-05,0.019138004033801684,-0.030105206808920024,0.02370641246234695,-0.001566929111270748,0.0024768445537494627,0.014581982965623335,0.05177846994910031,0.369946417066326,0.027199430216696623,0.00011517613353078172,0.013937172225377159,-0.0431955030719554,0.24822774606550208,-0.009678074166973817,0.00026946132712706537,0.00237820905964464,-0.0076289307664048935,0.042942884760500406,-0.05993399189755981,5.004185660307977e-05,0.014475815332672727,-0.006813581665225766,0.03228746998520801,-0.016610610308617994,0.0003477989428268807,0.011460022243590488,-0.017878143918880894,0.20149309721882006,0.0005411365515762857,3.682073790166951e-05,0.0025458562783219935,-0.002864456469205523,0.0317985307404408,0.0015114777528034483,3.0096561589139024e-05,0.0019626460182365344,0.009689811919159881,0.032834746394422076,-0.0006592368864205759,9.506145054904725e-05,0.006704627691440858,-0.004554131507381131,0.03703044983791261,-0.005494555867973958,2.8407888562286464e-05,0.012262585606109464,0.012395744548662876,0.03439937715888794,0.012199051036858434,7.989128761845829e-05,0.005485288950781212,0.0006592707074718341,0.00309434160740443,-0.008778390120706567,9.741910118126243e-05,0.0022623814268813835,0.009188033069271776,0.008116762082020015,0.00024013377420602396,0.0006470164088572919,0.005758129706524312,-0.014434353047331287,0.05108078829136133,-0.005289875822169281,0.0001189393995570225,0.01508737657289596,-0.03889048786967115,0.1330487853608882,0.006830725060122755,0.0018760812881330117,0.007318043546806629,-0.041575796002078516,0.38519782543154146,0.05473863283297211,2.7754853636650274e-05,0.004591189072311571,0.011513717075819961,0.028609830170305314,0.0021939989694050865,0.0013157444397143545,0.004223858628180569,0.002512146366199951,0.01692755345345768,-0.06952140793324277,9.882717671054834e-05,0.014874831379749006,0.006567699944225315,0.010004869817649363,-0.02129325422100088,0.00015493418337056232,0.008797096359153697,0.010141776441586432,0.01504986014160659,-0.017361302136269817,0.0003867991248358387,0.004660189883780773,-0.016019117940974933,0.0649164206305793,-0.09526508190496107,0.0019126450217742865,0.013825644380637573,-0.014915137269857994,0.0561461212949055,0.0062780726903075255,8.523105526048264e-05,0.001893141186276885,0.04910932097717091,0.06857654194902277,0.019439441524459478,0.0017801866488261727,0.0025222801465855146,0.017785235638270752,0.06428049323088975,-0.0588900970373685,0.00010962168152574877,0.017640471339070013,0.07995193081162393,0.2115096677877995,0.06978489585411357,0.00015323540102692442,0.0005923927874252629,0.05723140810520097,0.2546048639521894,0.16508936194803547,5.4863266340428336e-05,0.006467394784622474,-0.06652570950413085,0.20303686918070996,0.05607969052738238,0.0031055080904072592,0.025539431892231748,0.009343142063206538,0.04701892227450675,-0.02030547514308309,9.884639904858992e-05,0.0015248685963083555,-0.027665770970867802,0.15325886261978647,0.02622845025664865,0.00013091154957059042,0.006962297885820685,0.04830097714215196,0.2915474636497052,0.15637971480940147,7.836016609882213e-05,0.014372244025416406,-0.0357380827098682,0.16340784789030427,-0.1562151021043599,5.496746824623761e-05,0.003324826087084126,-0.027350538800848864,0.05989074869734645,-0.044293207273899196,0.00022265658208561783,0.04122116490706255,0.0214103618129611,0.08300159568587753,0.036725206118789384,6.414339471035682e-05,0.008016809535941043,-0.0024260084684147192,0.027628259852457215,-0.00029650753248403283,2.2655312963203227e-05,0.014375173697070595,0.014283838894167825,0.04587866516032021,0.03589023993235156,0.0001088286230010875,0.001236360845780001,0.0005268749087839542,0.00204422126929658,-0.00020011317915262988,0.0004062632936160541,0.009580044485345756,0.02479148605369575,0.11870914795958121,0.016232922238874615,0.00011961624591993099,0.0013956358649302523,-0.001475674419351707 +2018-04-04,-0.011715238756915923,0.07797784327902121,0.018776986318155504,0.00015887900400924574,0.013971002475190626,0.054560714298672035,0.18459772830298093,0.04364449670025266,7.091926431330551e-05,0.0026021065430402424,-0.048609021811460984,0.14636090513791927,-0.07251124303166019,0.0001536345877721638,0.003773471554760256,0.011412568199113161,0.012754191332626943,-0.008275157390576068,0.00030199399987159656,0.0015409150123012398,-0.022082378195295706,0.04392778922865794,-0.0037735009201435334,0.0002630293846736656,0.006004974661906307,-0.0034447557921987657,0.009833201169388843,0.0012566891336687376,7.64909852176208e-05,0.0009482729378260541,-0.029073233588991595,0.10777363948362641,-0.012950613879467063,7.915359487292103e-05,0.01654753086251831,-0.0118905295327554,0.09370391255844597,0.012664991219745191,4.351531036527263e-05,0.013837973097640571,-0.005716783485392172,0.005263998254146541,-0.180146047891103,0.0008374922451561781,0.0012360354964055832,-0.018273032798214753,0.04394402800359199,0.0033888321825836227,0.00014540276237124536,0.013300646625780127,0.01134938930672504,0.007802072129139128,-0.017075432640185486,0.0007110283066253356,0.006712846271363291,0.0009663685439525614,0.011304270156985242,-0.007195749242744679,2.5475519343253138e-05,0.0016598687539010066,0.031135600059091027,0.08516692838768965,0.043637728095703744,0.000108601867546592,8.670329922626403e-05,0.017780201270313954,0.10444911199936213,0.03377157971499684,4.791745449572895e-05,0.0157351377489524,0.024377141070814363,0.017225665231526237,-0.024316615354421145,0.0027601312897204515,0.015240608479529176,-0.005913154466574522,0.038577130440309096,-0.01923649303236056,0.0001261366847578566,0.03633991390932312,-0.06596231318046128,0.39870042706081366,0.08268490633308045,0.0002561871888803271,0.028738955647946627,-0.04111593485378326,0.23226830008639415,-0.13654274256890075,4.986331913647454e-05,0.008337556300379023,0.0016106894100500844,0.0068823261201245356,-0.014517381049199052,0.0003857121885687405,0.010990007257637893,0.04071486222551095,0.5115458354961796,-0.178814977159186,3.302924506888714e-05,0.013867564853701598,-0.017899134093542157,0.198312677267375,0.0378999013401321,3.0155272200873276e-05,0.013471169567355572,0.03775864818642058,0.12636662473369611,0.05025190803321502,9.62513451726655e-05,0.01754651978616485,-0.020162420631244193,0.14048943234298678,-0.016952400035609837,3.315059969398276e-05,0.018193226105612074,0.016386306375920846,0.04814164538054075,0.004622362165113546,7.546360070201753e-05,0.002114052308688003,0.027490703839537407,0.11329733058962092,0.043278617924127266,0.00011094679915333263,0.0024958947998893546,0.011952168354298638,0.013584787990067577,0.008998126792754265,0.0005028858296377565,0.008405714009125887,0.008029561465359323,0.029542347290284522,-0.07558317130227915,0.00011440179447634537,0.004019402328553844,0.06471169466793901,0.19724004871268883,0.05344674311433879,0.002105750181698034,0.03340807090732664,-0.04225361204004691,0.3868016260127652,0.012984260067191814,2.8090388432495353e-05,0.0034464919551981986,-0.003854928912189896,0.011845019104297859,-0.03939039564626604,0.0010640251123942065,0.011586806315403797,0.0013377041908466322,0.011200740414056174,0.0010167977965569491,7.953146797903654e-05,0.006963388775719843,0.0641919752725139,0.08823085703803292,0.30600636045610385,0.00017171396961577037,0.0068151146523205254,0.057132838752465845,0.09667114718176997,0.19140374885527145,0.0003392289005546996,0.011970080057471025,0.0435152053331228,0.17777958670526522,0.07658040483553359,0.0018971841429554163,0.019093358557818546,0.00945661402109581,0.03560336209954914,0.0026475990034106767,8.521872309484917e-05,0.009650884044888303,-7.119055182140514e-06,9.982394573692974e-06,-0.012430807114925814,0.0017728207198831748,0.003431315301352364,0.043892309818342794,0.11779661213408649,0.08259193493045883,0.0001476289980957737,0.01674615127317374,0.02034521285719146,0.0506052965008202,-0.00011184956279558765,0.00016297712045434343,0.006874961575924453,-0.049169114469243165,0.1867764712598664,0.0799918450712331,6.425162940044899e-05,0.018868629247699855,0.006056005183495142,0.018775801779671617,-0.011498352593983067,0.0030570729655621308,0.0023441160812421235,-0.014801810917694112,0.07123222553059169,0.03114186776478634,0.00010336628536229277,0.006596279087009235,-0.04234906194957755,0.2294071860492549,0.0584254616502837,0.00013387440743931558,0.0024630309964720006,-0.004985915153308408,0.027870567287926293,-0.04609250933744277,8.461508087095832e-05,0.00041688802970594476,0.02253245943029879,0.12794099596730807,0.01710297267200955,4.4263552391658504e-05,0.0005301835769628209,-0.002357568919149626,0.005023785447211441,-0.08710810740743608,0.0002288035233718486,0.0068816280156655755,-0.0031515570756477226,0.013373835252590718,-0.03793518544978797,5.8598106620737125e-05,0.003775101802431584,0.027936032890129386,0.280709784223874,0.02327037035922514,2.567665633785568e-05,0.001729398561739428,0.013910868575204717,0.037301191334784656,-0.007773285421192767,0.00013035884667950232,0.0019433912830659624,-0.011030052532923633,0.03926980708735808,-0.0444161351959025,0.00044273798480659496,0.011234558671809485,0.052545089357499616,0.24634877403329192,0.06055741510946974,0.00012216689208139958,0.002343327966914906,0.004574710277441875 +2018-04-05,0.035301066763856324,0.2633926965319115,-0.014653708803998914,0.0001417329038017704,0.007380204608367139,0.013481600345988517,0.03794837211771163,-0.02461149679298076,8.524301942055105e-05,0.025056384577468005,0.05545982555855349,0.22802770799032743,0.06679430079577474,0.00011250921168687472,0.014690731522256325,-0.027418944680250447,0.031759121770598205,-0.06044442577990488,0.0002913735378553491,0.00710570935181283,0.006584638728628167,0.013030547741813754,-0.016189937259430118,0.0002644034104033694,0.022095581548897538,0.016182721760033672,0.049260657978602046,-0.03798622965341255,7.172954871011748e-05,0.0005930114316433938,-0.03440156040905067,0.13054000305504007,0.010818167932385006,7.732579232242654e-05,0.0028040315448947762,-0.03571391470273003,0.3182601652044045,0.05449306806236283,3.848165907273806e-05,0.003496244936285391,0.0021911479221260436,0.0017074951323062576,-0.004576956574793283,0.0009895939002224421,0.0026334311250574786,-0.00060721676151551,0.0012627232397239235,-0.00996491499809403,0.000168150229403365,0.006395244495790186,-0.0006652640940470046,0.00042282071594734847,-0.026925527634685604,0.0007690634734961229,0.013119543677888267,-0.013652174633544659,0.19648641189753197,-0.003066337350237121,2.0705804180447374e-05,0.0012862972583708944,0.007978341019890423,0.020130649838093498,-0.06584272752720693,0.00011773506794869245,0.0009644019000608131,-0.0033339645988105506,0.01811929673941585,0.00141318283591671,5.179424000226454e-05,0.008695604872971791,0.032451930933048795,0.030481050970401657,0.0026714392432757054,0.0020765078555411436,0.006830172297564111,-0.004441823595175221,0.02608335991932613,-0.05802709765162502,0.00014013605272836712,0.01953150924014164,0.005463150801558202,0.030085779906566607,-0.013157764971734782,0.000281183703338506,0.0007052327374711576,-0.0012249031618221304,0.0077759289530018975,-0.008840848667462575,4.437214543722707e-05,0.014690294947637902,0.001962825482828189,0.009199907166878235,-0.011143955601938206,0.0003516292951190739,0.009770497134305882,-0.009261697382189222,0.13454635211815721,-0.015256220970730105,2.856596439157359e-05,0.016809398440555103,-0.005570137272202951,0.052225855297623386,-0.04496930967475367,3.5633792454322536e-05,0.00016703145502524382,0.04860564690017777,0.16361464219052185,0.08520583142840958,9.569457466943953e-05,0.025301961847346562,0.04094138820400842,0.26010921989253394,0.05664054131234516,3.6357933733973764e-05,0.009384004434469627,-0.023779638059381648,0.06624370540416452,0.04715752830426411,7.958624330845408e-05,0.00920626288412028,0.0011797588194143178,0.004074578203920695,-0.022346743221948035,0.00013239121582335172,0.001629556679089384,0.08034548938597044,0.07499971799896431,0.11729527866581446,0.0006123185709953685,0.01786600394976612,0.018340118463821723,0.07310857545762424,0.020410156431827402,0.00010558927891173357,0.0028173051776944264,-0.03574236655096511,0.10826779461613617,-0.0025170801048516153,0.0021188645189296742,0.02678447725331578,-0.029039714063940604,0.2876696628423233,0.005494675418241997,2.5958552205812802e-05,0.006381995310766242,-0.02811974446460818,0.07124852083267745,0.021501709714629946,0.0012903478038833057,0.032737936538938375,0.007731736211905828,0.05729028736032854,0.004711250746583155,8.987143394907862e-05,0.0032586841932810313,-0.03560800360481975,0.056184010053842076,0.05576270704391565,0.00014958232468902877,0.005334376287042363,0.012256207670703364,0.015105616781839908,0.003027784245354112,0.00046571643263249084,0.00932030375850094,0.01436025264058063,0.05468277970457352,-0.004312555562624607,0.002035456561771642,0.016553644044018278,-0.0016587801604031024,0.0063739041758748526,-0.08650111779734761,8.349753850492906e-05,0.001104717748118128,-0.0357780236037577,0.053783449748812474,-0.0029974454295597333,0.0016536549034495333,0.02154258395728705,0.033774167068396,0.10258822469364126,0.03618689872326199,0.00013043771117116776,0.004952767351126284,-0.009103926051988502,0.02598939392396817,0.006479009354869893,0.00014200150449447422,0.011628194454888436,0.03612674853599788,0.14072813583300556,0.0426742150251584,6.265588467008203e-05,0.027257066498016985,-0.028107975993786925,0.09553641503757752,-0.005886643368402875,0.0027885516396203534,0.0014167588801297314,-0.018493772423541232,0.08936894496465991,0.0445445954707491,0.00010293888240113088,0.002907188127578658,-0.012469437450701443,0.06343680330591975,-0.04002271725776949,0.00014254971569067288,0.008303180105140251,-0.03503598211457636,0.1937392958940351,0.017413032456667154,8.55352792650247e-05,0.016269237884158943,-0.027272175695712286,0.13411648131703485,-0.007731988015687524,5.110754623966257e-05,0.00046787415754136804,-0.025451585189820415,0.04640202461140843,0.000696576835686553,0.00026742826112907594,0.02063357982956348,0.009001871989739407,0.038672841512780824,-0.0352857271134943,5.788167966085611e-05,0.011140026935626303,0.03416559354591135,0.3966626332933774,0.028484187880711605,2.222280956971851e-05,0.012777615503213408,0.0043591426566199085,0.013945420884760775,-0.006650527866564337,0.0001092643333300147,2.497779579937673e-05,-0.04471758939679339,0.20992889138002827,0.15015325769367657,0.0003357640096281105,0.00983637214134499,-0.045353821028157375,0.2023409293675135,0.012320487496558256,0.00012838134979662594,0.0005904332264438483,9.367228619783967e-05 +2018-04-06,0.015060748559382112,0.0968468579596326,-0.017058350203278977,0.00016445519862911794,0.005178044812796888,0.01653304558998681,0.0521252802425712,0.006712951981723791,7.610531485273278e-05,0.019345435176386018,-0.04693473310783123,0.17042468912952943,0.07423898171285985,0.0001273969546702473,0.017944752265780187,0.024139644193632744,0.023477421470332865,0.023960547801381103,0.00034701506101357293,0.007672870439979417,0.002458514987145854,0.005901970803011816,-0.006964568875432974,0.0002179583821992892,0.00537283689208318,0.00017331290403951473,0.00048127206655786505,-0.0029045687013062303,7.862976607167435e-05,1.9535183595863984e-05,0.004170370487723761,0.014542063127385929,-0.013001755858274162,8.414696725918225e-05,0.013400974690145454,-0.007756366473492205,0.0728947040838123,0.0016348763325690994,3.648891566382561e-05,0.008267002828092269,-0.0038651845108298257,0.0031126903368921574,-0.012861374511495544,0.0009575888921177396,0.006447958122664296,-0.014689930960339109,0.03645221235178193,-0.0010418252766889323,0.0001409151701928007,0.010503578193090177,-0.0012024418544851977,0.0009345821136627218,-0.004238136122363993,0.0006288846259693996,0.018507462010684168,0.006232110060375776,0.08043230373867835,-0.004133166193139337,2.3090184119419137e-05,0.008830873097182876,0.050093315561853806,0.1472002007197654,0.0993816991782382,0.00010109330925566343,0.003838688360019677,-0.012319145983530521,0.07571559998603136,0.015765650844175368,4.579911140457036e-05,0.007752954129854452,0.016830225561711862,0.013785291090967558,0.013594108873093208,0.0023812059987293487,0.01855118255330177,0.04992532085206396,0.2901494678325345,0.02505785901785351,0.00014159606815696742,0.007546596186747875,-0.028947239774602385,0.18864939761904995,0.0036182903657069544,0.00023760740300970761,0.0012056330748094323,0.06707450360721932,0.32509674920284176,0.10756689605499385,5.8117349079522544e-05,0.03488714442107402,0.0346071301634676,0.18769173522427304,-0.0054700242802475495,0.0003038835872315969,0.0056386813325189225,0.0431158340433567,0.5553945092824211,0.02029468459008099,3.221554189324838e-05,0.027495398149160615,-0.009538326025131506,0.0870923585826714,-0.014085285253973697,3.65909613525155e-05,0.01066124062734736,-0.01684183366498003,0.05628263407066996,0.03068364894572878,9.639127282554116e-05,0.0022827761271141623,-0.08691187545059734,0.6954067589291991,0.2189524492886863,2.8869056481956943e-05,0.006064590367219845,-0.02220800640919535,0.0612172767035758,0.03911622253276615,8.042905215601356e-05,0.00529274510505548,-0.005304917221394984,0.02147461974350402,0.002103093153977208,0.00011295402851971615,0.006716088204192655,0.014133867247438718,0.011980301049588317,-0.0010387852148753007,0.0006743243428319025,0.0019268883157864047,0.010206377165020543,0.042629195890275126,0.005293709726608589,0.00010077446043688967,0.014526069773869266,0.027895513178443784,0.0975150178685801,0.001429270662404119,0.0018360395214283684,0.036797684351454356,0.022574784689455514,0.18987540894666297,0.008406948234316933,3.0572931967904635e-05,0.008432656107280594,-0.00856661959998114,0.0242491317899138,-0.002262525564058169,0.0011550068461307949,0.017135559918690074,0.008783147479026227,0.07015250881774265,-0.024683351576185158,8.337437883799834e-05,0.008349986418166524,0.02243592640870286,0.03365734099004574,0.01110857670826081,0.0001573292927663973,0.015166590814648613,-0.0517770506986288,0.09014349751399214,0.07239753970769969,0.0003296907922116701,0.0002526024805376533,0.039911104650739694,0.17147591527001363,-0.06559995331227134,0.0018040183875261862,0.008646172453241058,-0.0039721089497553,0.013589456077962402,-0.08527340059767448,9.377983152856482e-05,0.006214946976632288,-0.007020614944493388,0.009747672165848785,-0.004915035825676678,0.0017904056160301105,0.01750834169673649,0.05475297647185893,0.16255238162896637,0.06512910982473702,0.00013345364274728672,0.01059031203907717,-0.0007880257095302211,0.002229594307701107,0.0009033421474461732,0.00014327648414975868,0.027110574835729723,-0.031636621493285534,0.13891108387527293,-0.013949933124529221,5.5586217653083185e-05,0.009976239126122445,0.06428333047254033,0.20813618998417194,0.05481363568783022,0.0029273107441588116,0.03340015924288033,-0.04314714052146191,0.23389050831066588,0.11345011168148667,9.176561765589044e-05,0.027701227465720995,-0.021829844172955262,0.12768794437227765,0.007578655942617256,0.00012398282412023984,0.029216493090062794,0.011796482117183307,0.07784456708435923,-0.021965840093937854,7.167585870261454e-05,0.006251855900821854,0.02903414813611669,0.11090285203134491,0.013522963298721434,6.579816293384111e-05,0.01951606867999346,-0.04509389303163282,0.08165815639723589,-0.06267684831347271,0.0002692449422040519,0.003500917764174012,-0.010161300593166396,0.04033667588629232,0.019594105493836063,6.264170490703504e-05,0.016140652470957285,-0.02790351975110662,0.31394125373094833,0.04017114589877155,2.293199750304614e-05,0.01581277732215812,0.0074409673688518455,0.028099530216035767,-0.0051441150974614516,9.256340145267238e-05,0.00980807451511433,-0.010095749202108806,0.036461586250068755,-0.022858469539768975,0.0004364464503138798,0.005469983897600791,-0.003209536103024168,0.015265233921902715,-0.02926314835157036,0.00012042332034765401,0.019472207401832812,0.0023146383091839197 +2018-04-09,-0.015900254041557337,0.11786132060260643,0.02430096248881897,0.00014266562527801837,0.01106776281017609,0.02549425947512541,0.08947738047263704,0.007482531305916086,6.836592070745133e-05,0.026788712521366213,-0.03590686933577602,0.1360628598173453,0.025286110153206053,0.00012207736621751901,0.013865547186296403,0.003931244110270363,0.0035949957676519972,-0.0010323133743295127,0.00036906213095045125,0.01540870521389005,0.03978429217491135,0.10697245267585316,-0.008031419229434483,0.00019459758869455143,0.02140735922200401,0.004158300296642525,0.012380219263984815,0.0021943789159496172,7.333887649768603e-05,0.0013316691334042683,0.04138669563150324,0.1595443136430961,0.02801024295172394,7.611482940335076e-05,0.008650978852798774,-0.011934336245061208,0.09908909449609074,0.004255039212481669,4.130199449919946e-05,0.008053472839221034,-0.015760923649547176,0.012340961333963134,0.03190088491470986,0.0009848667152952035,0.005999127806958101,0.05495247442797166,0.1314528132414546,0.07361269108491283,0.00014617707057999657,0.02129714942171546,-0.011172072963383869,0.007644172850762875,-0.07561945882315066,0.0007143772618677609,0.012842950391220102,0.011562128498046142,0.1551615996369888,-0.003009762201318057,2.2206306652544764e-05,0.0007759801370233771,0.0015365786190203218,0.004040246339639003,-0.006607211757379212,0.00011297906551104489,0.007029804921445394,-0.0006596513268290624,0.003796228762617094,-0.029733411522330448,4.8912953025444106e-05,0.004210871274062594,-0.017845366877991455,0.01610407115056016,-0.009482783767904682,0.0021612886502459044,0.009466400931656951,-0.07153805307323167,0.42113708372301384,0.010345160813663967,0.00013978666345016393,0.03802615067339884,0.026950223785230494,0.1364669090277938,0.055789184245967634,0.00030580406406516367,0.004509621031569528,0.013418277271830743,0.08636769302531551,0.004725554013843686,4.376293075282546e-05,0.02029602509793112,0.00862528804720332,0.05131765723995788,-0.03268077457953437,0.00027700881745960004,0.026468023264612128,-0.028619567200571388,0.3327893081849006,0.019028262250606224,3.56881411768181e-05,0.022555791703993442,0.011001709813453013,0.12328189066409374,-0.012809076029030699,2.9815535133072012e-05,0.019312848434019723,-0.014098172567720738,0.03838786458960225,0.014380663839128414,0.0001183018738820602,0.008729234093434474,0.03444619508723522,0.22462762770153072,0.006455698717313519,3.542178661227697e-05,0.01630349093304649,-0.007915824830720725,0.02457905191982096,0.0035853748076929764,7.140168002064936e-05,0.0076004808816701975,0.009069882195348503,0.03213624860629165,-0.014438121325643056,0.0001290491247587131,0.006228270072040725,-0.007570000035455508,0.008126382756192128,0.004619337264784512,0.0005324442838932666,0.00594485180299904,-0.014459747873262863,0.05563610529030467,0.0065536363400472706,0.00010939312004470062,0.0009429583763009069,0.1020446313669284,0.3080216660419812,0.08934533429250821,0.002126317288219311,0.01819191308196351,0.014750052758622194,0.12719664931398914,-0.03941766795404067,2.981948220637254e-05,0.015182461557672474,-0.025558445527664304,0.07365036300643758,0.007689796386209572,0.0011345687422026688,0.027159548725548793,-0.01956289595986117,0.15691816374943193,-0.002611187487199941,8.302054329185081e-05,0.011501025212801453,0.028947296582420463,0.039678959113395904,0.024210866681751802,0.00017218413220001458,0.0025384950044991562,0.047463545158651435,0.07384613375695954,0.08208687213533114,0.0003689235038908806,0.00548539242055948,0.01858368773439787,0.06818538665175713,0.01269826455268167,0.0021124718621883644,0.007740669733919278,0.007370075158336013,0.02618743057379311,-0.048134445446738935,9.02961842429969e-05,0.0054309804631224035,0.03390136834101551,0.04395197984122204,-0.09297813601598703,0.0019174143646824363,0.016207454866734868,0.02375936691591172,0.07759595153964984,0.009434210670618854,0.00012131425562518765,0.01084265920701992,-0.014766463585792514,0.0423527579029807,-0.0019232750035495984,0.0001413367755516725,0.0007585440672375527,-0.02993763662650623,0.14222909631106148,-0.0077094440187946475,5.137395336398794e-05,0.006824878967919201,0.048052189461105,0.15071544715565344,0.032855021003035376,0.003021853962547294,0.0028876525587212027,-0.01355555458210523,0.06212905431762317,-0.006012402781236165,0.0001085333273609444,0.012942110636994745,0.0009449117975241959,0.0057777971499536505,0.0024355130364310585,0.00011860138629630981,0.003714518274903245,-0.0011185814201344474,0.005389312977356413,-0.011204184659349397,9.81709276137104e-05,0.005765748717099955,0.03175689480955527,0.1374936700536855,-0.0012472389423371507,5.805006640275861e-05,0.0009661790240193659,-0.09124737033787891,0.17540427009848086,0.15067369628626173,0.0002536352373876419,0.025653074235712232,-0.021000141189140727,0.07644556004800374,0.04617021691162136,6.83100060507435e-05,0.01020865178247644,0.014866462904284956,0.15799323762089512,-0.01286275892455011,2.427730297086017e-05,0.019539579068575785,-0.005485855172554101,0.019128201718515668,-0.06135190407407652,0.00010024879463686052,0.006201353733621083,0.012208036639403114,0.04829381195031551,0.01928997454042945,0.00039845777751979145,0.010306480825810635,-0.0009703075988983858,0.004778700404600969,8.754257353038487e-05,0.00011629778004943467,0.013227176998987103,0.0032092997046269563 +2018-04-10,-0.02319271942446531,0.16813711057347439,-0.027260560120673696,0.00014587292057517272,0.006621225337089669,0.022256646648781343,0.07319924258440619,-0.015016816417986956,7.295644609593178e-05,0.0018085822619226604,-0.018886562899194034,0.059756247458016436,-0.0017109124159228287,0.0001462065457900574,0.016851389320023703,-0.007923965653530122,0.007402907007797363,0.004444990851750575,0.0003612502420308705,0.014447833681118037,0.023591625565168552,0.057119966971203355,0.0157120366949847,0.0002161064311616827,0.009680476784062685,0.04477209802460686,0.11575412074788531,0.2440980220982055,8.44535141116878e-05,0.004217198492375079,0.004173060127174938,0.016585140829271837,-0.00505842114600962,7.382871913674774e-05,0.029425993870748193,-0.04839256734081828,0.39848002132628596,0.10949845572454173,4.164575363234586e-05,0.0025954479165981323,0.020455577527861042,0.016844758807693764,0.05974353687518234,0.0009364653986036152,0.004513808378582677,0.02361785705874393,0.04678058657331795,0.011960053551471714,0.00017653739473351415,0.04106395245126411,0.038744187622317725,0.026639424794962355,0.09952904246256217,0.0007108960059095585,0.005299578817984873,-0.0077197115083306985,0.1069356085432307,-0.11924597437623617,2.1513026634354097e-05,0.008149241907451974,0.04762630461447052,0.1341881753137879,0.06836676431965123,0.00010543472650112717,0.0016960724216572216,-0.002100901921981052,0.010419559468231318,-0.006592440570877228,5.675684410283051e-05,0.0015967026444940829,0.012266268194427355,0.012317190589885443,-0.0056826340654951065,0.0019423333499407301,0.0018020148994313887,0.035493005495605585,0.22036032873166458,-0.06559650216644554,0.0001325444271618489,0.010577442344798675,-0.011884675956119679,0.07391444902593433,-0.01375130258456213,0.0002489810148983301,0.008367361696732146,0.022974656463776263,0.1377309461237958,-0.017317397868362328,4.6987079415877055e-05,0.0023717734547852023,-0.049058675918671905,0.2758443191212937,0.023516514172030874,0.000293115365731367,0.005275002930658633,0.010380269588046937,0.15629761119336658,0.0002048051822432749,2.7560463916177904e-05,0.014991941975418923,0.0092916329652111,0.08623377142151804,-0.01269936857247185,3.5999492209377225e-05,0.00964403645450628,-0.031075845175807502,0.07990955131796981,0.047754123547059824,0.0001252699813343231,0.028599868823361033,-0.020387821637979676,0.14402665071326887,0.004106220938768675,3.269793605434056e-05,0.03849629042260106,0.016332785466913368,0.04534038682741172,0.016818916257375575,7.986425023282713e-05,0.0010796246532055746,0.005803238743550638,0.02226507455197096,-0.01478902357440238,0.00011917766703562518,0.003447498794565895,-0.005915837734415772,0.005587181816053137,0.0031644312173081312,0.0006052001268235933,0.004425778936818692,-0.01594475611695076,0.05570009693750494,-0.01596788675344542,0.00012048914953595423,0.001685143435013712,-0.02585644450608729,0.10080091174307589,0.002605096635037274,0.001646355123822119,0.006614777527356628,0.03693936318888813,0.33801860004028406,0.03809688083156055,2.8101596963028808e-05,0.04444590452315946,-0.05622021119432012,0.1596399432219118,0.018816609990514474,0.0011513892699442766,0.009068212889029204,-0.010083792812309016,0.07440427894867294,-0.02831256786857808,9.025092146507475e-05,0.007824418657480984,-0.012456538967972797,0.016554250500609727,-0.0052881179526504795,0.0001775960305143106,0.006064917231688812,-0.008774777699298646,0.014812867154470718,-0.0014201712801993618,0.00034001721720608615,0.02469274794702665,0.030238329346931193,0.14143460869780733,0.03392332839716877,0.0016571142076244418,0.01660463565361807,-0.019693704461758672,0.07394849588776853,-0.100769367289485,8.544535172277968e-05,0.003540907947834393,-0.01366515963591203,0.019603471531933155,0.004751319883694195,0.0017328417975244824,0.016620997205580492,0.021622836340881902,0.07343996329878995,-0.06275397460359411,0.00011665308982936803,0.010182292728089274,-0.02207623236503893,0.06402891951397646,0.019751061218104597,0.00013976845339938772,0.03839145252395811,0.00859232938368695,0.04335816375430273,0.0016663988908018248,4.836753570730026e-05,0.01693706028583569,0.044583809099747455,0.1416552504661476,0.026441493226512767,0.0029830638701407526,0.0025385235557963243,-0.012849069871703183,0.06264592766949069,0.011987736958716917,0.00010202801016352106,3.6368752107376326e-05,0.024165572501756726,0.13514279430935125,0.05321275422681157,0.0001296776042027904,0.00665215640326757,0.025185461471510535,0.13763341348234606,0.016901786828255057,8.655152622143092e-05,0.0007929145601539273,0.027712679597319302,0.13481451370801845,0.022043008016622918,5.166414731939187e-05,0.009029884287390382,-0.03363159248506963,0.0665507444287522,-0.001969323038589282,0.0002463904713104186,0.014172742927152157,0.010375769176871883,0.04402492740191613,-0.009075401145669765,5.8605183365489946e-05,0.003550832287872214,-0.00939700209196944,0.09524414822307997,-0.08047825278231474,2.5455539555985742e-05,0.00043370793012831516,-0.0004914267977781876,0.0014823106732398123,-0.0561659614901913,0.00011588535724878434,0.002972644518051822,-0.005409762046711509,0.023214625128113998,-0.005433465993303099,0.00036731990098309283,0.0023540460944663022,0.041945040777935885,0.214641916664586,0.013153555544123778,0.00011192777722320709,0.020320576141783602,0.002850883693633314 +2018-04-11,0.0010508566658891435,0.007946952812760854,-0.0029958346555865965,0.00013983936173870017,0.01497145662949367,-0.011863079691641276,0.04140278565119223,-0.026549291299520376,6.875090387128147e-05,0.018286775476746345,0.03795351609277403,0.12141322343431396,0.018809194984787964,0.00014460497378594917,0.007944167068409499,0.017720418822384898,0.01857237934465091,-0.0026459729836306317,0.00032201365836567774,0.0068672104972854475,0.022861376109088224,0.05638804218578833,0.009981454801288632,0.0002121353890903699,0.045747028669584196,2.951526152753087e-05,8.846015426978986e-05,0.0002285207522081996,7.285270525436227e-05,0.0032126459284338963,0.04181161716873482,0.16458724373616557,-0.0009399773931249522,7.454021621039979e-05,0.0011511083018749557,-0.025147891651634672,0.22451415788298582,0.020802496429737978,3.841107503286216e-05,0.0018062587321534252,0.006567104154974079,0.005339740703480206,-0.016939332781538197,0.0009484152369892533,0.007823946396987278,0.02543426794358058,0.05459269368188135,-0.0978632617640805,0.0001629095728663956,0.009467428919264142,-0.01620703820111013,0.01176854729559299,-0.0064356907828435235,0.0006731396258399439,0.011186124016624274,0.008836360621788455,0.10582420706990592,0.016194638384755367,2.4883484632739984e-05,0.00612635897709789,-0.007125587679474727,0.01891688659641336,-0.006306638120009605,0.00011189793343573019,0.005031873865422634,-0.007679725865977562,0.033037447151225516,0.0003067911556376841,6.543363614983995e-05,0.011607996821720302,0.011719639078816657,0.007874973825505257,-0.08600839145203386,0.002902606014531876,0.0049815343299281015,-0.030912824753707577,0.2033829369493132,-0.005916925327988512,0.00012507666278579427,0.018513147248937864,-0.03752348156435793,0.21315568023457943,0.008490697242462231,0.0002725928426492059,0.009964303229878017,-0.08494462058947684,0.6282546477054289,0.06073294833170931,3.808562849401401e-05,0.0005531727437602498,-0.05581106247795825,0.29645681180036054,0.09096230370771273,0.0003102741996197226,0.016955799941551303,-0.011030976469273547,0.1238467078115132,0.004251455064905595,3.69623625981971e-05,0.023628915068516033,0.009409717941800032,0.09645181688867371,0.005316098186744767,3.25947685588957e-05,0.00860276809332638,-0.005121576506597468,0.015284238301290496,-0.05081603244291072,0.00010794005130549818,0.014323096072045342,0.08123172876675898,0.6608360178072774,0.13825724056073227,2.8393855417386303e-05,0.004760406943334486,-0.010734197353589353,0.026966390576325105,0.007726625880394996,8.825191490887688e-05,0.013434129207848595,0.011051391149480358,0.05030189607285096,0.01949220124270229,0.00010045722807655518,0.0016949106712951317,0.05045030816036541,0.05728244991234136,0.04493009857948848,0.0005034053197894413,0.009513530604711416,-0.014095870946855675,0.049344597520805424,0.010204983499457426,0.00012023705018629892,0.011398417799392732,-0.0037027201478789943,0.011672696374354355,-0.0240871430395848,0.0020359582827944576,0.007792392689127351,-0.035057468967704224,0.4072780298272347,-0.006784894735185907,2.2134604701815136e-05,0.016514528480508543,-0.0098468072879603,0.027126516440640833,-0.0018969919226087854,0.0011867867323810432,0.010147047486333922,0.0032771663021589946,0.024731994056562914,0.002105973672974974,8.82398965561327e-05,0.005160918900818607,0.011693143521508341,0.016207944069297705,0.003932433896104782,0.00017027415634737202,0.008355190662516606,-0.030523691321569454,0.036529947662411674,-0.04413599767828475,0.0004796140718807509,0.0009741527365870341,-0.02338966347166591,0.09225927143900485,0.006559934050041094,0.0019650078682765483,0.02678444619303043,-0.026562547596894262,0.09986655741758803,0.06136150341192868,8.533751983384764e-05,0.0006282871325353936,0.03831918048856575,0.053137239515979935,0.020025008792347018,0.001792645500001891,0.033251752559823586,0.0240781630677598,0.07737237026803731,-0.019595636730250485,0.00012329727728537911,0.00659424433290534,0.017767267403366614,0.054136221007318776,-0.043026653024608945,0.00013304332136614366,0.009573316379585525,-0.0426251913178012,0.18595363069504398,0.048370555477574205,5.594684546163905e-05,0.017398122454410036,-0.02844797336366708,0.07687188566418218,-0.0006613616029521222,0.0035075337307301294,0.030012008696054342,0.010168876626363345,0.04757840977267704,-0.02672020568888826,0.00010631722355824396,0.0004992413389371686,-0.004678357630512621,0.028066900770573742,-0.012569618984801325,0.00012088147286297108,0.008752542534828989,0.01908281370566715,0.1254084489083542,-0.036825388804229676,7.197212290158497e-05,0.009178453979216515,0.0037578548143357227,0.017245376014083203,-0.03881605010302167,5.4766466807544216e-05,0.005306930146628149,-0.033090963488584646,0.05810373737579541,-0.0032545860614380806,0.0002776736942645803,0.006068259846058185,-0.007467259847415874,0.029692863107445275,0.0021855723961062773,6.253505902290155e-05,0.01821117115985074,-0.0017022329054952262,0.021106721940182233,-0.015822024960440696,2.0807958747880842e-05,0.003855805235300586,0.010348653416487696,0.034257773088873844,0.016376353412110432,0.0001055926473792147,0.0049126889464799,0.002740094093679848,0.009295925196713547,-0.03991275668034087,0.0004646231310363819,0.011016627885327483,0.0040835001984448555,0.017239346832494142,-0.008076969461004035,0.00013566992029248313,0.018071694055047736,-0.0013548752892225424 +2018-04-12,-0.02789184697663234,0.1685118532677109,0.02624333813400664,0.00017503842740832973,0.00855788573892453,0.007893450412949851,0.024400509140170584,-0.0012136415671192518,7.762087305325642e-05,0.009404876231844243,0.006059305641229224,0.026457897870766526,-0.0017787693529767862,0.0001059411610805895,0.008631800380412747,0.0064883750348226224,0.00633122731424128,-0.026623421905107452,0.000345872389544754,0.002854168489313958,-0.00510012665722994,0.010582511601208891,0.0014350057586816514,0.0002521680038589145,0.01070960672625281,-0.00983697864882128,0.02401117661336136,0.00835157597967833,8.945302393888733e-05,0.010585143389186855,-0.012002062095397524,0.04725752538763479,-0.0053044612972482225,7.452032636524983e-05,0.0050773812349289744,-0.029245464996669954,0.2226378236680413,-0.08958797514056822,4.504620380563267e-05,0.005148193881838418,-0.009639894910076385,0.008241505636527832,-0.004794030158994745,0.000902008283965044,0.003954319332166129,0.060244959225910714,0.1448969141681681,0.09429551000812891,0.0001453862934795435,0.006842559051295395,0.019646869732916978,0.01215980678391584,0.0022275709470862045,0.0007897525733283012,0.004047316888294615,0.003622996100427674,0.04885148873435652,-0.005745401719045955,2.2101047234932204e-05,0.009133863871506002,-0.019304341731056777,0.05329860843139737,0.003231463007846341,0.000107594523021359,0.01136991819654943,-0.01690292877040734,0.11048034188803614,0.024480806724467452,4.3066419866929247e-05,0.0001491804383752932,-0.060518904501935165,0.051867156695352475,0.1282765758405187,0.002275734479040232,0.008408123244487795,0.005890549862045439,0.03646283519608504,-0.0037521030590902554,0.00013294056180694242,0.03397675318429931,0.005391792641583213,0.031460559333026154,-0.02739613857132279,0.0002653841456056134,0.01553221232383882,0.03192808183774065,0.20271493230870372,0.017839525602259286,4.4365772025876116e-05,0.033106934941930136,0.03283191420116279,0.1856025198994051,0.014770592868727258,0.00029154066719580296,0.008959929538146783,-0.06415137928444718,0.7922612850464992,0.04111177533045932,3.3602206434591034e-05,0.03540570456836397,-0.00020535776906824142,0.0022031389502846907,-0.04556585436939495,3.114231965364813e-05,0.009168174827341847,-0.05443644275670533,0.15346010512096722,0.14706676199331645,0.0001142659940724159,2.081355933528442e-05,0.035433174683680804,0.22686983885956974,-0.005798379326776632,3.6076606447024995e-05,0.0014562555947560103,0.0030643465550346826,0.008310775094249465,-0.010008893405024807,8.174735920026804e-05,0.004640991700711076,-0.003971892692569324,0.015240867684509832,0.015266339845359073,0.00011916162297959266,0.002997177240060378,-0.02538589409683409,0.02681290196167243,0.03173175484601861,0.000541158152080696,0.006422482126800862,0.0028134988087534967,0.009928691527590594,-0.009551784568244324,0.00011927261107393366,0.014717960810350393,-0.017044255084968277,0.07062851623205826,-0.0005933137517104131,0.0015488776651427336,0.05280081351532185,-0.023788378524933994,0.2468981462372801,0.002890602976091718,2.477588671385947e-05,0.004250005448106024,-0.004600057723553132,0.012247932555168838,-0.014411028288456024,0.0012279247837470864,0.019491957742641296,0.018066653551096826,0.14462083816415866,-0.22399646510750557,8.31902607569143e-05,0.0085897692534748,0.026493265935717412,0.03681147779702919,0.024928922275057344,0.00016986254731576317,0.002622203696665374,0.02399719351885361,0.035419128498500096,0.01905466789091566,0.0003888897500172715,0.008989725406816097,-0.009711343518556997,0.0377568794955275,-0.03538397675036176,0.0019935795221834433,0.020151185995375555,-0.013505802982480952,0.04831805001849092,0.006723963421141001,8.968119394114618e-05,0.013020445113996066,-0.005867567954642988,0.007658506540077313,-0.17368996112659527,0.0019045449727367039,0.019846174577212657,-0.026345273361746968,0.09659105311891146,0.045249389747980914,0.0001080642004620858,0.01504005741379242,0.0161514676747325,0.05560506833653554,-0.06592053409843197,0.00011774920668650697,0.005745205237273781,-0.03117776649875643,0.12275795693414228,0.011804339191868055,6.19882353619012e-05,0.015639096668459262,0.01085740334809977,0.038800283664387536,-0.05226512265396481,0.00265221745691252,0.006055896628046044,0.006666738725516049,0.026724620295316658,-0.004994992565668857,0.00012409162232409983,0.004266051934399499,0.030119869809289837,0.20887267068437984,0.0593118648489279,0.00010457605509478042,0.014634321218471583,0.012647664399252323,0.07114237178802749,-0.03031205803247463,8.40873550610756e-05,0.00879031760998612,0.016664083990749753,0.06387502300832651,0.008791819128676175,6.556888087235462e-05,0.010810859942974609,0.04893600001907017,0.08141930153369284,0.08478346663314361,0.0002930424180903308,0.022644848183265325,-0.007464475234840826,0.025566648858579788,-0.07699505919117941,7.260053994640814e-05,0.005942835239844263,-0.01881990678538456,0.19809996178433686,0.01726320445181554,2.4511188042444354e-05,0.0043167697694671695,-0.006894459519473915,0.02498165908581148,-0.02141965327100504,9.646903031499512e-05,0.009063941351191162,0.027344404150818392,0.08709196017913699,0.06622894879056981,0.0004949010439198042,0.006511397104575703,-0.046850384651640785,0.20677318972214484,0.041116006267639914,0.0001297749079692367,0.023208545192072907,-0.0016569194484774708 +2018-04-13,-0.015256457583996614,0.09853858647953502,0.009112778069761846,0.00016373214890400852,0.004988334221684176,-0.007711605689436965,0.02967949642729858,-0.14117096098991866,6.234459580858727e-05,0.018420937036680192,-0.007775438925895675,0.02671495127222427,-0.031053970971219723,0.00013463802506503657,0.01217449482748936,0.02362658106332799,0.023013856015159442,0.019573631997369577,0.00034648093709049795,0.005091419182251514,0.02698049174918771,0.0554885436627036,-0.025838770794171743,0.000254415933440975,0.007734130483027333,0.00704413019846228,0.018552309338915354,-0.013007262787173304,8.290412449248809e-05,0.002905316708990912,0.014033259533177826,0.05790038721663264,0.004863363901490954,7.111593826426309e-05,0.006782681689403932,-0.025051527436833334,0.19786055411379067,0.007867115950034894,4.3418378893371346e-05,0.012208585253958551,-0.015484337915720476,0.01154015176105749,0.0151141716187581,0.0010347272983853933,0.010810206155057043,0.037756184771011614,0.08516009302999061,0.02561384070764546,0.00015502932708955856,0.005573711035118247,0.01463771238411819,0.011429419512075798,-0.1573205140036043,0.0006259986463711449,0.0152415524570557,0.013946318998936285,0.2219342439270264,0.039426513351478024,1.8726562576632337e-05,0.007601774776948606,-0.015950542691648483,0.0448347416463105,-0.004983198078196993,0.00010568462972061486,0.008358015317325364,0.0047172925022922465,0.028362011460016597,-0.16718449399795568,4.681851087614966e-05,0.018432857854062335,0.013913951808990391,0.012297533839051173,0.0003097673474577919,0.002206761716728252,0.0005336050247269296,0.0025329397882964165,0.01894807631110387,-0.00032034863345621004,0.00011000485394194316,0.013508452332948678,-0.0011063114108731174,0.005581873352483446,-0.0564255988941317,0.00030690618820016337,0.0005489447608551454,0.0035505439448160923,0.0195812494699936,-0.03824348485539263,5.1075831760779956e-05,0.023562972732028863,0.007909169433202197,0.04429779172731508,-0.008115194800952612,0.0002942629671561832,0.010845680844348962,-0.012515974389456614,0.16073901318679507,-0.08952417483342244,3.2312726099628826e-05,0.023301612594925268,-0.003297453789951404,0.03643752892876704,-0.0003126779628714354,3.0235107028464377e-05,0.00889294016331377,-0.02916123697259969,0.07699233934092212,0.03165076469605065,0.00012200599819047908,0.006653268182830401,-0.03072180828828958,0.23313130032998178,0.015593090149530697,3.0439573618551968e-05,0.010044491735589722,-0.02194039904779205,0.06366680083956894,0.03503209051296249,7.640272995976241e-05,0.01297980054930685,-0.0030782816951916486,0.01042168567213649,-0.027493307699204536,0.00013505758668583308,0.0007811051312525101,-0.0007115996880853937,0.000756806031428282,-0.0007285676714717468,0.0005374359649963718,0.010555561645093636,0.03284118719413269,0.12382536239439904,0.025559983343656674,0.00011163368210499672,0.007402848789460511,-0.004380240863632945,0.0134320525194373,-0.0009528642977728769,0.0020930267837971626,0.021301730307893535,0.010818431255429969,0.12959682656379246,-0.0029877502094943355,2.1466049076739537e-05,0.016562737128738653,0.009175262608026653,0.02156316433570537,-0.03815009478249823,0.0013911606352551233,0.012712606653982788,0.011803039212961943,0.08645380317850813,0.004515794881352379,9.091496799685031e-05,0.0010682821502915052,0.028566078994800136,0.042198589415958346,-0.011248896579652102,0.00015977104847120005,0.0023976782891144736,0.028102001845826615,0.048082639997240835,0.02447193937926867,0.0003354693652991365,0.025735240428667767,0.012870638427654355,0.043481746910373945,0.010753825970215295,0.002294264299576978,0.012615279001318046,-0.0442252563791549,0.178279463677568,0.1432001077306024,7.959016604296978e-05,0.011157465524120943,-0.013706610216493376,0.01914462087042794,-0.0011062650716099284,0.0017797560757498781,0.03154036459449217,-0.028689082571177076,0.0873636895910173,0.051271429729036706,0.00013010731959745928,0.01042907573469962,0.050351478782420314,0.11851410593333422,-0.02608305420220993,0.00017222752535633046,0.006352740980726982,0.005234851699833844,0.02176879009883784,-0.035784356396179495,5.8692690216826754e-05,0.0007260058164622319,-0.016301774238984715,0.04602335570707453,-0.030034498412183842,0.003357180184452747,0.009007796316329097,-0.012429821073261042,0.07178408633594177,0.006863884177823256,8.613452650322886e-05,0.026276266152379227,-0.05715187296086369,0.37600842256367634,0.09918317827033267,0.00011022844445855522,0.0027699830133909673,-0.02822188566025629,0.16418144002701304,0.05622028002964557,8.130376667081451e-05,0.0005467839451026463,-0.02799138024869876,0.12078524570065115,0.014601375044304157,5.824488897657645e-05,0.0033917927232593693,0.03315556237705559,0.06915841505969357,0.04657738278734624,0.00023374415570351576,0.009244691082016646,0.014778642400767492,0.06212651394603079,-0.06706619752419424,5.9152340261024094e-05,0.009429041857590685,0.007925055491247768,0.08482992097263205,-0.0024807487121482536,2.410374559450985e-05,0.0011987730616991141,-0.02896613793209138,0.09236779519801577,0.09139412968954976,0.00010961726996880631,0.006854745874217053,-0.011814194240615623,0.05019710973426805,-0.01663676985163712,0.00037098245079817814,0.0038138426122182913,0.0020200645514830535,0.010033632151736945,-0.007145613614518162,0.00011531315866508445,0.005600842954719762,-0.0014449036602823518 +2018-04-16,0.007519536741306935,0.04870553603301579,0.0026021207421491844,0.000163267349426665,0.010125545195056996,0.012673973395664567,0.04635969330779141,0.00513224238960436,6.559681657541326e-05,0.0084290199348214,-0.023950211512214607,0.07370535688185158,-0.04362072138075505,0.00015031679394510514,0.013890170910311056,0.001671616147776957,0.001728336652251539,-0.019520154187095698,0.0003264194841300205,0.00548033324424528,-0.02164404745899859,0.05410627350333163,0.01883507843425599,0.0002093093487025093,0.010529732061695054,0.010675234515690621,0.025976123849557966,0.005306640116786189,8.973251041551046e-05,0.003375448341853108,0.04297212710157468,0.1792893762744373,0.02575100758441276,7.032700950695281e-05,0.015199490591404165,0.03164452675082794,0.2596315298696533,0.06233438236325278,4.179648761438713e-05,0.007054523573525904,-0.02542459299810981,0.019861097020723573,0.05852576301739712,0.0009871782156297177,0.004319905861665041,-0.0029189739016934205,0.005723508749298023,-0.013652165341825674,0.0001783321918163011,0.008732083908319642,0.01091489679474783,0.00787581621250126,-0.003754934118171193,0.0006774050326645402,0.014290690576997216,0.020264950029078136,0.25641070994604703,0.07608517622713126,2.355223713913413e-05,0.004063431567408835,0.05897030235423264,0.19753554987013847,0.004412401026036028,8.86827448655529e-05,0.0020144428069376425,0.016974635106596418,0.08348870268579299,0.01686996874904123,5.7231424133802164e-05,0.004641337794828221,0.004495095700847094,0.003498788402431414,0.0023585595616623127,0.0025057874893931313,0.006711060325944242,-0.023457890894044504,0.15986184985586227,0.012695277596147608,0.00012075252910663542,0.015122641907776067,-0.0010544547212729264,0.006093517453692159,-0.016515345411831257,0.00026795885180780674,0.011603342269597725,0.0011225008751393093,0.006768784429930886,-0.003566966813452025,4.6712914144036234e-05,0.009993628566249435,-0.010462020976707842,0.05315057144141639,-0.00037723884579375134,0.0003244101664406363,0.010860390848443684,-0.01768365803641892,0.2412524818341841,0.0035802041735948356,3.0417992572838547e-05,0.02912991451237014,0.014783005520144119,0.15901601716855676,-0.025319061449395594,3.106015198777943e-05,0.0034876230152504325,0.023177662862848177,0.06214010701831524,-0.024916654267766764,0.00012014906635406996,0.002943442308506552,0.06024533925668679,0.42244788706055464,0.05058399102754611,3.2941448207266645e-05,0.020142658807886737,-0.012046073888923628,0.034790953139497954,-0.04315106140164958,7.67638199495244e-05,0.007244383482529,0.00334001058937359,0.012415890066049626,-0.005064302176815381,0.0001230038148166836,0.005743128013650657,0.022065535591225652,0.0172559503939289,0.00828151932952474,0.0007308885379805707,0.009814959357227544,-0.004295218401595494,0.014459604727842539,-0.03129190756338355,0.00012503017513840702,0.012345647581494397,-0.01789062194732125,0.048190030530431985,-0.005286472736209113,0.002382799014656024,0.0015233207965667777,-0.021598039275326365,0.1844229826685112,0.007121258804137012,3.0114903807812357e-05,0.010858867319836566,0.04053303054755063,0.13388651895975298,-0.013380621096282252,0.0009897909889955397,0.01450677756836892,-0.005838099937646682,0.03885820282891927,-0.00021716473454885178,0.00010004939284620078,0.01636061227859227,-0.032350103053100626,0.051704211807516345,0.02061828765163885,0.000147670971740977,0.01823463893761997,0.04848081200042702,0.06400009946729539,0.0348601079891618,0.00043480361883899984,0.013881992415228875,-0.012489865223132605,0.044871253614053745,-0.0005446896139613434,0.002157445780398434,0.006754035589538257,0.03507687528221154,0.15461575372893616,0.08617055622255575,7.278762134047586e-05,0.029260976347768922,0.0069069728825494996,0.01077746339317817,-0.05836866504448547,0.0015931196205039768,0.002151530342884971,-0.02883818892123652,0.106444600144566,0.023182359661353135,0.00010733970174280411,0.00894359341827475,-0.015739745180971782,0.03535796047008526,0.015140469895186819,0.00018045580914320366,0.004726619466622074,0.011726251223467168,0.047046580645386166,0.009666921912937197,6.0833815321025536e-05,0.023157465384347604,-0.013377963078344558,0.04084063268412846,-0.14913193540511957,0.0031046710326627677,0.024218717084263153,0.03565728048161134,0.1724423580957952,0.026729768716302938,0.00010285960088999569,0.0009112072984261087,-0.02406095530788593,0.14507842515886626,0.006828017819368288,0.00012027374064095806,0.003996706661421587,-0.017120875207620387,0.10316555236108894,0.01852482109435134,7.84946310896985e-05,0.014536066576122605,0.005792168711384345,0.024503736636610134,-0.06382800947691385,5.9409552639862244e-05,0.010700349615817928,-0.010888143261541462,0.02077764596775543,-0.01293968027988897,0.00025549763152378773,0.015890176919398095,0.017938665019146163,0.07859126014609995,0.04018231601944632,5.675841296768461e-05,0.003689149756847361,-0.028586124352862785,0.33557681492781477,0.04080582517594568,2.1978326277399838e-05,0.022505253728330937,-0.012202531419132936,0.040581683408904855,0.006245768203435896,0.00010510632238754528,0.017217485082343956,0.013300124021062735,0.05263346656579912,0.00970532354539618,0.0003983104374835818,0.00844175567700221,-0.013673971347626263,0.06823596418120442,0.0048213096600091855,0.00011477654010900261,0.0038346501834746645,0.002802562546410267 +2018-04-17,0.027055781799991498,0.1643448707277467,0.01842353083107453,0.00017409669134512912,0.0018206943750603427,0.009885585061024374,0.03181757796738934,-0.024301760588921473,7.454968057336108e-05,0.011061663152624765,-0.041142086280283686,0.13515257221867674,0.022994521346452804,0.00014081833321870935,0.004383354072532172,0.0027009327108415164,0.002780477401659618,-0.09856794777449533,0.0003278402341366262,0.004754686888502651,0.02379189600390316,0.057853140788008815,-0.07424557541399708,0.00021517899947049379,0.009295658386825173,0.0044623940792479855,0.015297318355747665,-0.004075498144213332,6.369412202042083e-05,0.02103070075377969,-0.0051187194617469695,0.017120190422308234,-0.01529615500331843,8.772888151584361e-05,0.013527624114672334,0.012136176261110075,0.1177263201683311,0.01662486001359615,3.5351424663937595e-05,0.010287475346194033,-0.026677470263690987,0.021763129031242605,0.05378955849596746,0.0009452965963438155,0.015758014096319443,0.0011529045218879978,0.0031310136655848552,-0.0014759480779627447,0.0001287568270428921,0.03251470530499335,-0.0017735355753975626,0.0012601643639980067,-9.766257121161675e-06,0.000687918626086626,0.002254824290259933,0.0099384478717199,0.13175163564824335,-0.028184522406477987,2.2479432235783508e-05,0.0004574664893424354,-0.005874047009248277,0.017513733640345565,0.0021048110407456476,9.963449301587162e-05,0.012028114298996006,0.02255796966778371,0.14084515665824165,-0.006764082580443572,4.5083737194574105e-05,0.005452602158532893,0.05645147188869339,0.037765569681475375,0.12400826489980585,0.00291542720670337,0.0153307009624395,0.012172834113803198,0.06937520413956381,-0.0066341915364919865,0.00014439080490872018,0.00625402059405888,-0.038778860223085986,0.1874322456671945,0.00517072059171449,0.0003203752540681866,0.010623789949346653,0.006283523332793503,0.033660614993877,-0.0068953770478108875,5.2582610315623376e-05,0.02612593934607357,-0.024997602110533694,0.13820258422155718,-0.020702255981737146,0.00029810481760236655,0.00849399777021306,-0.024822942767560086,0.3469728994094594,-0.0005130033682217508,2.9688478564468487e-05,0.01843462435163102,0.017071131833352238,0.1819313627118244,0.024734605160828232,3.1349921146847636e-05,0.00024608187151576146,0.020311991706333944,0.05518751155573357,0.0024891402417422503,0.00011855898005715423,0.002126628085001526,-0.0242826865479603,0.16502649742107148,0.003738971918383989,3.398876838179937e-05,0.001511991773510297,-0.01560300359769123,0.03885659194273755,0.012141695817673501,8.902682482201455e-05,0.006233836082847913,-0.000848822234704086,0.002894194570144749,-0.009943153243218076,0.00013410272981191626,0.006939511709813273,0.03103227677708416,0.03272644348208702,0.013702230953673655,0.0005419888974412301,0.0018536284023130912,0.0010902847125459087,0.00420045418050029,-0.005257498275546497,0.00010925207144414626,0.01132265546200382,0.027646774975073864,0.09291539220294433,-0.014751468903285169,0.0019097476661556455,0.016412789278056804,0.03134628079695182,0.2621446275519745,0.027872238350075983,3.074873497640631e-05,0.012537444247031243,0.012629678336649198,0.03711100975719895,-0.14263469401993195,0.001112655677222748,0.004929879067619123,0.006984670001453757,0.0642353768877128,-0.00891916982675449,7.240978514652748e-05,0.003192908941556217,0.006440326689735809,0.00922825582949876,-0.03947004283740806,0.00016471519257873877,0.016090150588960444,0.023162979764892216,0.03059665205480785,0.004336164459479217,0.0004345346708479199,0.02583390956265873,-0.01913159748608913,0.08702258961063802,0.00369244432659786,0.0017039999331541315,0.008373406855359748,0.039987941989883584,0.14262039171621602,0.10177072038362184,8.995758728493458e-05,0.01150030872094743,0.006651545917573052,0.008168930792478837,-0.06548728561178634,0.002024112135029421,0.010075764972950416,0.029617025366110494,0.09607137951933307,-0.017248865998638625,0.00012214155560167842,0.004626334343200899,0.034512506028428515,0.08854308456259063,-0.030946353003169114,0.0001580091454221496,0.009897576069405145,-0.040025878931671,0.14983623751121775,0.030628742133175943,6.519855091944343e-05,0.016426968716824406,-0.022292166670113564,0.06132687130811469,-0.011072711134874893,0.003445240393277186,0.0003301125112861645,-0.02937297346263297,0.1458687047858765,-0.0026710048012292204,0.00010016738979533894,0.02612319245060398,0.0123043364480249,0.05629059470322865,-0.016513592907073268,0.00015851966481167563,0.012049735226140841,-0.004219594960827584,0.02224467266320069,-0.017438776723994,8.972086343186685e-05,0.0013890788566173653,0.0018561481246416904,0.008325483864509613,-0.0322088713164571,5.603386021247136e-05,0.012020948944085315,0.018059029839151648,0.03380396006216614,0.020258278700374437,0.00026046911218112365,0.02743078229482028,-0.014643441937133659,0.057592565062952426,0.028268320902713643,6.322533276717352e-05,0.009198335946427254,0.031656944589698234,0.32464047138569174,-0.008070170654124706,2.5159245981590796e-05,0.006978776522082545,-0.003992010179828375,0.012839029282926845,-0.11046114277687134,0.00010868470107847544,0.014289010793704727,0.0257989458974191,0.10042674823750278,-0.07437570756066707,0.0004049305393792781,0.0029158222854034676,-0.027102338460469593,0.12957326953481957,0.01874493018370564,0.00011980174475900276,0.002196835175764758,0.0037519912318283834 +2018-04-18,0.01439419839950146,0.07476484714618346,-0.013786510920443962,0.000203599458483962,0.006214490927799177,-0.010985708989782222,0.03273778299226222,0.0037879197515484964,8.05173274822141e-05,0.0027168880811461026,0.0327929753053196,0.10774398915340908,0.0291486908361863,0.00014079426841203576,0.007553580970341953,-0.004780623504595753,0.0049679848019638095,-0.008399363378187119,0.0003247671843819378,0.0009597043612864925,-0.006691315732749471,0.01749340380896308,0.0001393735518700566,0.00020014049692618284,0.0029401459037842435,0.002395714881939283,0.00768413655381737,-0.02757932502416603,6.807486620477429e-05,0.0011441485659636496,0.0007368147283944568,0.002540229050695145,0.0007296206022948318,8.510895836610188e-05,0.015956043583607808,0.022896164057086384,0.22525428507906547,0.03638370610175153,3.485686154035441e-05,0.012596014826746167,0.017591333229075582,0.014798800076509501,0.035295718664067624,0.0009166784862775599,0.001713415438019672,0.06592590515260094,0.17379813668626662,0.04796990883410554,0.00013263949865669326,0.009759896559933302,-0.025249642021802868,0.02085014381949564,0.05507478773175585,0.0005919302415629006,0.01387125452112719,-0.00010249237876878732,0.0012642183651915364,-0.047277764582176994,2.415974061692776e-05,0.0051211898922794916,0.051148723209337,0.11923970418863147,0.04427417780670914,0.00012742802295718098,0.0004988677711210718,-0.010280077527600368,0.057340524391357464,-0.026566280199184843,5.0465728615875044e-05,0.0014046693631028335,0.04785764177609304,0.03949389437082918,0.06606560735381924,0.002363438505713543,0.01729024585192853,-0.013787528523562364,0.08250506560998197,-0.05035031462067964,0.00013751748391511938,0.011361463631589307,0.04372182558055099,0.2359026394868394,0.0834897322362736,0.00028699459594113763,0.00034736452506364053,0.007245883577533205,0.04223903635982923,0.0015939498781217356,4.832126622100851e-05,0.009389933893738524,0.05537674546555778,0.29068972913313895,0.0403372661634475,0.0003139673942170629,0.00748413589554677,-0.03418649172041624,0.4093527928718823,-0.05118774773235709,3.465668416170393e-05,0.02422670484578211,0.02751619344569003,0.33209598540207075,0.05914121115685456,2.7682571956693602e-05,0.0050885804928359445,0.024010691734417215,0.06141313244532509,0.006530148070781668,0.0001259407218502123,0.020809820263453252,0.022843186714944806,0.15851606531860019,-0.047796239854515914,3.3287086298135936e-05,0.02106109246830519,-0.011743955845673617,0.029397125023070996,-0.009995990148685713,8.857005872641891e-05,0.003089677422025195,0.012758829163049781,0.04812888215441714,0.033240037816855604,0.00012121424008918814,0.0009546852622453956,-0.06164905435018682,0.06386480732504582,0.12393770339724904,0.0005517475003969001,0.013525893867592459,0.02021507891764841,0.08304067998631136,-0.04568862067332091,0.00010246382246271211,0.0089696199764424,0.004227955329052972,0.014117683240584246,-0.08407575929046145,0.0019221449342373491,0.02030646109071567,-0.04508784619407229,0.4401354670985018,0.030136470696394916,2.6342398711992878e-05,0.013695207285683474,-0.025606625223018677,0.07371486387897225,0.02018284350798346,0.0011357128694863918,0.008340144674403211,0.030632554628677644,0.2521979780155847,0.05656846976591066,8.088486400040192e-05,4.075896777539401e-05,0.0389368807349564,0.0676868109465997,0.03790231894403535,0.00013576958493544177,0.01123923454277682,-0.002744474887042825,0.004445669766053817,0.00018570594055485978,0.0003543447280985909,0.026789249841163532,0.03018353204120608,0.1271512429400215,-0.01016272734099538,0.001839923601450569,0.004104651490912947,0.004247836935913403,0.018062993951772244,-0.028980464934054453,7.545160296847928e-05,0.0019628045560821723,0.0025793306832465708,0.0030044424394079323,-0.00849115883312046,0.0021341273337867005,0.0016622092740196971,0.011308196332146959,0.03867184255496355,-0.01094636297992815,0.00011585492800300519,0.016220524775589877,-0.030313716403850638,0.0692540780130538,-0.0007591034976449128,0.00017744109446656735,0.002717807316527516,0.055042360907577186,0.23924469212122915,0.10561687883740399,5.6152444510572895e-05,0.026158164997989893,0.038387049265574034,0.12793165889744798,0.01407933326543317,0.0028439683347533315,0.008428072902020503,-0.005490603945375739,0.03140331158446305,-0.0028862624978535137,8.697315811964452e-05,0.006817564313670374,-0.012703765379719331,0.06681188885065334,-0.03716325572375765,0.0001378921359319446,0.023319955601833673,0.013078369629492608,0.1076207379892666,-0.007332190284683154,5.747862103119838e-05,0.0015766430466733071,-0.03660991432488401,0.1791719961710434,0.04631571137943463,5.135420083642768e-05,0.012891585329600384,0.004406440584942714,0.008505099527657147,-0.06673984660947978,0.0002526026559367165,0.020112356422909424,-0.02606534658158252,0.10075257629249938,0.06243013098202515,6.43312099529436e-05,0.0012732129907419292,-0.012152031616567104,0.13534491313944805,-0.1923880037283051,2.3165316518292888e-05,0.013691067798063854,-0.004006699469502626,0.011430563906387617,-0.0016159089823373795,0.00012252594958444453,0.0009551268709895905,0.010456958649008984,0.03999448076250372,-0.0028698642359716166,0.00041212911712791626,0.00998596274221969,-0.013701539431637048,0.06595875258046384,-0.02164004493249506,0.00011897856518419687,0.0018549385097198993,0.006334813743414227 +2018-04-19,-0.05278940689866809,0.4309623188327829,0.09474196977721866,0.00012953706931989156,0.009339517910864448,-0.038261940673933355,0.1606395120921227,0.06161231372989587,5.715117243062303e-05,0.014575771406126063,0.022949318536584055,0.07935710005544867,-0.026490178741558096,0.0001337769251398138,0.013829220613377005,0.004891181981249439,0.005553933871753071,-0.004006526107851669,0.0002972220144266348,0.0023027383134557435,-0.03509947038409515,0.07808987748796087,0.03740301646573251,0.00023518173733625815,0.00284917207850783,0.021407231775613628,0.050608664923096715,-0.024297819237167555,9.235966955105132e-05,0.0014461841513473868,-0.012017734427899985,0.04809702792953514,-0.033464037100726346,7.331523264967508e-05,0.012988074990776899,0.012080349095431316,0.09302357554765697,-0.0030943492624065042,4.453331971708966e-05,0.021543067048992465,0.01577504698393052,0.015625549317908563,0.03341985412559915,0.0007785386076947666,0.0033101412330552344,-0.02006367145388906,0.05024879701254184,0.005810535405167097,0.00013961967573090486,0.0005423080668563402,-0.019522952742842988,0.012602033078281942,0.027420319156959028,0.0007572325011817951,0.005191959467543842,0.015018920609378645,0.2068546407703671,0.01868078880538164,2.163696000558841e-05,0.0013686919860791634,-0.014699010104482532,0.04156084042785083,-0.0004582630594176025,0.00010506421142219358,0.0019233819021981014,0.022648740832904194,0.10421041760893339,0.06845037713933756,6.117792521746513e-05,0.0029296555859096764,-0.002050547627975732,0.0013535536679907475,-0.002165712698024708,0.0029547269512362005,0.008241537349108178,0.03938382077759266,0.29198289923167453,-0.02594208667791909,0.00011099733141412732,0.0003816039494843219,-0.021307903890188006,0.13084090000360074,-0.04752787235278333,0.0002521769793641712,0.022542213254839155,-0.008583367526509207,0.04862941410018815,-0.12425178692923547,4.971868432182996e-05,0.013188628065343582,0.007376409916710733,0.04088382861146587,2.8333889963921827e-05,0.00029735845489664705,0.016888924904006314,0.056190789071363004,0.8481091597473384,0.08616673450564573,2.749435959053862e-05,0.003039575403384562,0.01668945848124255,0.17901805657408604,-0.056340099186488135,3.1147781281279884e-05,0.014583491460012287,0.0077727904969495595,0.020794639282167075,-0.00025213664963537487,0.00012040605483897131,0.00949749020863195,0.017564640549742393,0.13280249784542567,0.0015554411340247343,3.055099781113247e-05,0.052541467497344015,-0.0013872668579668563,0.004483631461208874,-0.16807627398071986,6.859737317622241e-05,0.009167822722791607,-0.01127550032194016,0.03812891983078445,0.05385830313089357,0.00013521657001361307,0.0003294123644202154,0.011450891839879584,0.010834882240485738,-0.09913895722238983,0.0006040747438192929,0.009327888239167996,0.010953231787639522,0.043481711982743095,-0.03202371597494875,0.0001060282643490866,0.0054654370968569895,0.013011648708929539,0.03765377724559946,-0.027963406124450276,0.0022179050779132584,0.009252455436558782,0.06244035301833301,0.5836159502722861,0.049699938559690834,2.7511887844379516e-05,0.009907590564812316,0.018488015950860193,0.04714044976406994,0.001115955593410769,0.0012822356728810522,0.017101495642433198,-0.02101786877660645,0.17253222052666375,0.016141899385443356,8.11230195706695e-05,0.004893027500799169,0.02369899851200238,0.043238050152974404,-0.07045397858427874,0.00012936276184990553,0.020592387459252043,-0.007378032665432361,0.008870213315337272,-0.0022729470779097234,0.0004774307897112552,0.003593139492732421,0.006950035706651659,0.025825298144816936,-0.0005262274502902865,0.002085893030343262,0.018125268498044838,-0.020187315133926027,0.07813603685286791,0.014447499116974023,8.289294195999548e-05,0.006767029551922868,-0.050185376867896626,0.06682906289650903,0.058783810614406906,0.0018667622517403474,0.01306681288896779,-0.00148773043303078,0.004899403806976443,-0.0039201990957046145,0.00012030870393104243,0.00521925154160814,0.0035980097749456616,0.01050935109143162,-0.012810981578823611,0.00013878636910213813,0.01539728318149971,-0.06011989501670979,0.2627053863899021,0.07615326477072622,5.585514211119486e-05,0.006904590581415305,-0.05422328342230438,0.16214184074158,0.037294348393075195,0.0031696314764660806,0.00219129839666659,-0.011401304508139,0.06532407281145071,-0.19346449956303607,8.682041582252057e-05,0.007700330233163545,0.032599323958587424,0.16746142310374262,0.06162257497370993,0.00014117396116320588,0.02999091369301704,0.00830749967881011,0.051370084744934194,0.002712686763919262,7.649072014071345e-05,0.000590591693580526,-0.005880197457213562,0.021706875873967402,-0.017699204485275986,6.808351698920312e-05,0.00032381072324112205,-0.046715107625435785,0.08900666580699104,0.014001500979327657,0.0002558964229629595,0.004628743950997698,-0.02096046352847444,0.0912903466207137,0.010836345115597517,5.7093991022898954e-05,0.0001804179455264089,0.026055184462142493,0.2946725648578909,0.031384102472314095,2.2813175127050743e-05,0.008620726647882453,0.012597773499958935,0.03757706246718014,0.028905272298676683,0.00011718713414156092,0.0012315938855940963,-0.01635733466575061,0.06676041683104791,0.021668353745924646,0.0003862081822894124,0.0010900772052887375,-0.03282960670790005,0.1352374507250636,-0.05921255370472805,0.00013904023733580246,0.006873560556023937,-0.0015869294986175988 +2018-04-20,0.007342482268706011,0.05439662612699031,-0.011132962782602902,0.00014274388950571347,0.006727429620694012,0.004253821577032549,0.01248940775490312,-0.07583186196291535,8.172368698438442e-05,0.006766143036445996,0.03927183766460876,0.14555762649186632,0.04278726222091079,0.0001248082986773953,0.001320718888741031,0.030207560374602812,0.03395242639688253,0.014525378222646993,0.00030027051722799963,0.025188835335721582,0.014650743272019531,0.03318490028567225,0.0012479971841141164,0.00023100262417816074,0.002355240301253946,0.019614356567782047,0.05670572317085452,-0.023813251526616484,7.55255527557821e-05,0.007898045628024078,0.018780954825520616,0.06334273699385501,-0.05062187462853875,8.699828636870064e-05,0.0021120281643900994,0.025699684520080878,0.277685118471217,-0.032930553517687665,3.173757942148283e-05,0.018812561452069356,-0.010320632435343856,0.010446754445360813,-0.15551284292351944,0.0007618504197664023,0.00405181669405622,-0.004312787526452684,0.009978976584468339,-0.04137363242260402,0.00015112417588782735,0.02303746493816843,-0.013079017734743167,0.009683572983070153,0.009437958243724075,0.000660182270281531,0.0024451860255161064,0.0011387018885220294,0.01788396468571191,-0.06371093241491883,1.897444259811207e-05,0.006394365994167576,-0.044455161594298416,0.13343821929986127,0.010531524453825483,9.896758968393488e-05,0.011992925644308278,-0.014786409436822606,0.08757705964946041,0.008450219028762578,4.752631980988345e-05,0.008989018565341386,0.01059291207685648,0.009025955841352244,-0.014387237088768661,0.002288996537344839,0.010416915901862929,-0.029645379686061114,0.18781617224495162,-0.010062083058324192,0.00012989012642766726,0.0008649464055119635,0.051981865369837885,0.2969555069760659,0.11663014618914277,0.0002710620437199965,0.032868494623541904,-0.01673584471995948,0.09014370085344629,0.005496814126095046,5.2296570491990185e-05,0.0073511368913186026,0.016574542396885956,0.109794017988401,0.0021083547838448963,0.00024879959877971175,0.012047120616320448,-0.02631242383070527,0.2798676434750647,0.0012896292901465073,3.901560953846158e-05,0.023305328772060804,0.004400262756852003,0.04601889066122002,-0.02641650035978612,3.1946565458701024e-05,0.0027722018504139287,0.013977771806990526,0.04334625160317199,-0.059879179266307536,0.00010387454977886034,0.022763514240377928,0.08428165498376596,0.5244548651115185,0.0838100851552128,3.712079874541192e-05,0.003384753935403855,0.0027431177343043593,0.007576133905263453,-0.08131783481790453,8.027386765732437e-05,0.004849658227183141,0.009956126756995058,0.03706083233020239,-0.0023614307426557102,0.0001228354847753078,0.003071929882088753,-0.04360738073237344,0.04491509327340477,0.05450823006609158,0.0005549364570779418,0.02339391747862471,0.013237425148510201,0.048032070271020286,-0.10649501098633624,0.00011600006177975849,0.008588042954403376,-0.0031692011538574103,0.010954838090512987,-0.051907809551404296,0.0018567909763978676,0.027919606873706836,-0.004368751886513787,0.04191771314726276,-0.032750872251607326,2.6800444343135987e-05,0.031843374445176605,-0.027690237701850084,0.08516085855026281,0.010255393717893425,0.0010630603558190335,0.012276642758112155,0.04449666070285206,0.3057856901381981,0.1188682413796463,9.690270614630903e-05,0.00920624557680598,0.003045203472146992,0.004324582620164855,0.0012184794189601105,0.0001661948278450364,0.0009284613008189472,-0.005748789194995296,0.009979273788216165,-0.005721288890947595,0.0003306597700936185,0.021446343515662294,0.013692807998430754,0.06104292482781225,-0.05037117753133455,0.0017386314260271125,0.012759623295976484,0.01679858869175056,0.05834983978536608,-0.045171643065247714,9.236841665096267e-05,0.0019171228546323608,-0.03304104452089662,0.04518376795245009,0.01687257957740985,0.00181781011336367,0.013812145284034535,0.0045694818087982,0.015068900719621657,-0.036617436460434985,0.00012014381483898103,0.002753999325244144,0.015019678903637035,0.03755655104830118,-0.0009101807382464643,0.00016211952467045027,0.006172182510684107,0.0018325466623418404,0.007471406166374222,-0.0040737034228119475,5.9864122438986394e-05,0.022511636886989404,-0.04104045724916341,0.1516090482396946,0.013549808874852865,0.0025656955879944034,0.004159456718617847,-0.0013445573425907406,0.006253928583768187,-0.014936109941298622,0.00010694659991449535,0.010942393156518066,0.028573923198533926,0.14412510423907024,0.01004166982380607,0.00014377753153122305,0.009517954924333005,0.010151330959331935,0.061450981574426626,0.0022390574158106806,7.813450433722156e-05,0.00581973312335265,0.0320023975327324,0.15499341617197712,-0.07214835466463967,5.189394175515463e-05,0.0019348544561084613,-0.05375824411667363,0.09163198199283062,0.02063959369729292,0.00028604040794266206,0.010332463275540328,-0.026242027646735677,0.09867089935589368,0.013843629508181746,6.613367821211384e-05,0.004806107702295527,0.006345499961065204,0.07202758851602262,-0.024783783066852683,2.2729938277300543e-05,0.00987446267655653,-0.023271740561513186,0.06783933291866451,-0.04329123374879256,0.00011991023730461949,0.0019826759073780674,0.013442217096543115,0.05808148158406181,0.004887465667622216,0.0003648053425508665,0.007707700972961595,0.04146845117616794,0.2139321889140283,0.05036405986364502,0.00011102313236428022,0.03931488535132986,0.0034404394017088042 +2018-04-23,0.0019601703231544782,0.01434550112182658,-0.0005393871761258666,0.0001444989428669417,0.014361830117046517,-0.005845596633013376,0.019969626254859478,-0.013673290798862063,7.023756288610089e-05,0.002186291186464041,0.011106412251647836,0.037091896165963326,0.0002689151172915687,0.0001385134539379051,0.018313794117197715,-0.00861806078092112,0.009701417112773955,-0.059248068390537374,0.0002998073195194944,0.010868589718880613,0.034253844797256,0.0713786555731523,0.0392789724023773,0.0002510953870486117,0.005723494698119364,-0.0015349738222333014,0.004781780044374521,-0.0036806660824202867,7.009033212186139e-05,0.003802193428033943,0.02864701626388013,0.10237834218127698,0.019028534567402913,8.210340282938676e-05,0.024409423002359466,0.0006167057998509308,0.005402756979927065,-9.762301102824648e-05,3.914364050397683e-05,0.013215041469959719,0.023043346728769284,0.01984376803952159,0.033928639844809566,0.0008955012563336777,0.003456243316776678,-0.027655790548904446,0.05935948771368422,0.025926986980868885,0.000162913779658554,0.009324273581928489,0.006678999989970193,0.004683300800037314,-0.05664951807047804,0.000697081807174029,0.0027437987796739443,-0.0026098629797953916,0.03803353157868894,-0.032605115735398246,2.0449083254850808e-05,0.00716152717253751,0.022700023842751993,0.06313123215054413,-0.010093565768082494,0.00010681520677723673,0.014614502433091876,0.001576868059361999,0.008904814639622987,-0.00042900430036399634,4.984622699719646e-05,0.0024479764656424696,0.0028389556753933083,0.0021808567330911096,-0.029051548634450447,0.0025389517524609293,0.003370289521384122,-0.04050375981006146,0.2908873972034504,0.037743714111449674,0.00011458362063919922,0.02621761108848715,-0.06170105069883024,0.34657177734840905,0.01833823025974629,0.0002756814840367466,0.012364105332490294,-0.04803970076934476,0.33497689666592195,0.02563583270843062,4.0396747035725675e-05,0.00395650476934706,0.025926286995548505,0.17177173380869018,-0.008522444875507833,0.00024875706974697486,0.022712185762824393,0.0136240982310943,0.16478190732405207,-0.021383998536743724,3.4310612587970694e-05,0.012249375282417001,-0.011339986154261187,0.13498723856617512,-0.007505613921248466,2.806735710723413e-05,0.0005993402310346986,0.026703875419868055,0.07370035121977499,0.019473166279523103,0.0001167152196171014,0.002752535004585618,-0.03613452740294657,0.27642467607899585,0.02617981336035619,3.019520245007766e-05,0.015055986034897653,0.004885165417242064,0.014564937640526186,-0.03646921228781775,7.436148032762535e-05,0.004886194829356294,0.021680335151893423,0.09758883735840972,0.07002676690659478,0.00010158145828847693,0.002465335509040823,0.10258834068417995,0.0890134758539999,0.202964633061178,0.0006587457203860886,0.007439148339886946,-0.00026954373035520385,0.0009910157322280738,-0.06518655149773767,0.00011448133749307705,0.00404603809679898,-0.0031610900417268903,0.013918015553090938,-0.11809750799969719,0.0014577354786278736,0.0006366919380863408,-0.0514174254173635,0.41377053355559845,0.01999438833121789,3.1954568887980844e-05,0.001286513264746388,-0.007537396202989559,0.022036454424165068,-0.029660212663740353,0.0011182808676348979,0.0024808131288823615,0.026129256922454384,0.19024530909687815,-0.04775693564542229,9.14615896405122e-05,0.020528699945229212,0.006982610737078241,0.010266160016254746,-0.021621992155067226,0.00016052962417734636,0.013276009911956363,0.026156969801991416,0.03580631152460129,0.011345500599548612,0.00041930665851503795,0.00521589576596228,-0.04274302323888314,0.14787192588476458,-0.001719060512515423,0.002240422104238258,0.0345156903172481,0.010569424158114694,0.050773049257087914,0.0008741058138811858,6.67895397529274e-05,0.002109099319550751,0.004088611305158452,0.0062819802698852656,-0.060566196795969626,0.0016179177844978768,0.02256200077102094,0.028838637398126504,0.09636753217006859,0.015594629734749142,0.00011856596367612334,0.001469931818136118,0.009018301366183024,0.02453351067670163,-0.05347301780549842,0.00014901343335567565,0.0029745218750054526,0.0012914120474266915,0.0049226547724643965,-0.0002398555897834664,6.402939215435835e-05,0.01861259448091712,-0.018665326724785034,0.05494460680452201,-0.0018010292612142102,0.0032197976902894223,0.009055844450734854,-0.006969417492382751,0.029562336679914827,-0.008234609578508134,0.00011727306962623608,0.0055036463074052255,0.045304957328370185,0.2485370055239666,0.07712242805008403,0.00013219512767243137,0.006605519895475646,-0.021831779161145558,0.14205590436884077,-0.00809396883247914,7.269064776790482e-05,0.012827068911051261,0.0014785960257237885,0.0064282929808573315,-0.04701582031315303,5.7809773412842276e-05,0.0005140181178655491,0.08078036305314402,0.1487120594588477,0.13543260787696704,0.00026484330980810345,0.0017630139765024756,-0.016904136120487582,0.06570414686102652,0.015700590363148383,6.397563077353967e-05,0.008174756106717924,-0.02976233032992306,0.3182494898451841,0.03843170864231011,2.4128509889081488e-05,0.0023005706609198675,0.00552527317322031,0.017074406090520026,0.0008072335855994196,0.0001131141960017707,0.00450152333182209,-0.007586752062374862,0.03044154108730226,0.009714233347528472,0.00039284137976437235,0.002928982606191688,0.022282528468694815,0.1250678811807524,0.008331751147116088,0.00010204470480235946,0.01712431154937558,0.002656309460286084 +2018-04-24,0.009879743657840235,0.074021532678766,-0.027014123277262582,0.00014114782393625852,0.001238487313733616,-0.05442858936541792,0.22135932925947296,0.0874135879649045,5.899833766988656e-05,0.014922905622166725,-0.07845993618194909,0.26022563760386114,0.12925908827755558,0.00013947458367282733,0.020012596583121902,0.011683246448328233,0.014387250128482488,-0.002896037625079093,0.00027406501479572924,0.0034644042672671337,-0.009717985375941115,0.020850490043773574,-0.09213403271947325,0.00024386964548814088,0.004407712860506502,-0.00908601698640679,0.024944858947185133,0.005980803249640106,7.953151065260682e-05,0.000672837069102331,0.011097888637834985,0.04225367843908594,0.004230129505626238,7.706651047813768e-05,0.022640398728533358,0.035975806245348504,0.3077712641792756,0.059800633767291535,4.008492558198037e-05,0.014206728636682485,0.010223925042595084,0.0074748514639543144,0.021098801360661758,0.0010547751181794484,0.004668799099469424,-0.05000158983762325,0.12763274723947968,0.03405497759856627,0.00013698833347754283,0.009560060680721013,0.01567070257913273,0.009801948163855528,0.005548046700887086,0.0007814486132217886,0.014700908693834811,-0.006734197035418262,0.0975597731491934,0.02778153316305325,2.057016744063385e-05,0.004857008769348513,-0.020500791375346775,0.06671600625168184,-0.026529620110105328,9.128336122665056e-05,0.01196121318438791,0.013312150394520368,0.0833842773074542,0.010572153904700295,4.493925461208193e-05,0.0004393476944725386,-0.011434544649030223,0.010543875210260577,-0.011550307913724947,0.0021151520371733724,0.01931519801856079,0.00441282892236214,0.029795137191717502,-0.0062789237697415175,0.00012187757633637237,7.334839598855715e-05,0.03141699501928708,0.16324974666750508,0.02779242170909785,0.00029800280989591987,0.016685236628329655,-0.012420039594737387,0.06796139541764522,-0.0007237446999876546,5.147799802819409e-05,0.010710178373822876,0.013651074343463783,0.07123218175296148,-0.05313357116104195,0.00031584746299252357,0.03206854040623862,-0.004325723573004944,0.054328545842347226,-0.0011627721527688092,3.3041588153701114e-05,0.005935590085536067,0.015586645556798248,0.17155720678246986,1.3140923272079803e-05,3.035466204640273e-05,0.002866343786259646,-0.011087555931686258,0.026137855547218713,-0.005413462984822856,0.00013664338939142932,0.00574814725531641,-0.09165489524193994,0.6669038580438454,0.10471234350130366,3.1745692969943704e-05,0.019349351444088107,-0.018201070197153713,0.05988770441854539,0.01922889885858783,6.738087411373041e-05,0.0020411335724327176,0.009843787053283206,0.04148349285899863,0.01041939168310681,0.00010850143686403132,0.0017270357939999689,-0.009725702225738923,0.00931441342312093,0.0073560254708500625,0.0005968167723203698,0.02307184294051264,0.007738718911008398,0.02486474163878717,-0.06900202353394128,0.00013099995015569351,0.008678924999466271,0.003773250182208756,0.012570735517591301,-0.04640972592502774,0.0019265225075991881,0.018750046549692437,0.061900266530446967,0.5732670471358844,0.0566887342799622,2.7766282386213708e-05,0.02812788963927127,0.001574898145305066,0.0038501728988033783,0.0009304607804622044,0.0013373451548645398,0.007891156637152728,-0.029150132121199882,0.22271350413697186,0.08466977014996577,8.716048128171844e-05,0.010646175271460355,0.006479134815513066,0.00869311575732344,0.00023082611688223528,0.000175908546547939,0.015199550715087017,-0.005335451058961188,0.006565312658978511,-0.02026032332287321,0.00046646562078392746,0.01551215820878329,-0.02787236709888994,0.13098028724617541,0.005577268768857893,0.0016493706264560472,0.008379640236001944,0.0382994744530036,0.15023818762588179,0.05845954235980737,8.179049735975358e-05,0.00396408657213527,0.023878652089687417,0.03455584855829197,-0.043902647710033396,0.0017177716769890567,0.0006739345836242847,-0.011487515286950507,0.03731146677517241,0.006793280481898586,0.00012198314229605135,0.004454435681951085,0.0015277096914722765,0.004377534311979492,-0.0007110609792344564,0.0001414723771305571,0.012916523127787247,0.025534457262370993,0.12782683895640662,-0.0059281366049103845,4.8754926606497255e-05,0.03321151861686203,0.0055483266099687015,0.016764451742663545,-0.004512280236585442,0.003136828112101616,0.005012193320732739,-0.031193548512593674,0.1382766291511926,-0.003531508281396163,0.00011221646116135136,0.004485526513467784,0.011974833624867837,0.07373764200218608,0.0020970732075678224,0.00011777172251059838,0.006777178830279262,0.016497141547615255,0.09953343462417304,0.009223249994699308,7.83950080095473e-05,0.005455147797406871,-0.019040055230748854,0.09689521031706019,-0.03803636236039556,4.938707313780516e-05,0.018972100130199423,0.01754746988200808,0.034686912759816474,-0.03729199292656238,0.00024664837112431317,0.003491669035853414,0.029332969202393883,0.12268030151691654,0.09511550012598786,5.945598349874894e-05,0.006033286082250751,0.03350673797921947,0.39758446900873934,0.015260856112012956,2.1743728863758277e-05,0.009806186508088488,0.025647947431345044,0.09266148555626527,0.08358910083771373,9.675252789720152e-05,0.0035443458050784717,-0.018391921041843513,0.05907105478564602,0.029365213237381598,0.0004907726350402023,0.017890398740620272,0.005971683908189475,0.027333635399617837,0.0014302383303536547,0.00012513281383416216,0.004987632489478869,-0.0006834906414565926 +2018-04-25,0.03773309944229569,0.289189883369719,0.04639587554553035,0.0001379831222833489,0.0065057310489721,0.014667833445267028,0.06670900377440271,0.01034591027908484,5.275845165272454e-05,0.003943737178514752,-0.037270731899044576,0.11684557700264954,0.008481141364384886,0.00014755463230003423,0.00027648161242980313,-0.01528118502606807,0.015809312780623468,0.021799588540563068,0.0003262209879734946,0.01409416266922231,0.03828065065414234,0.08120984763864522,0.033814201520368216,0.0002466427689948151,0.022552584460668993,0.006301684031624986,0.016547641743182056,-0.020136585723702284,8.315095733389387e-05,0.005344464946309865,-0.007398145404787683,0.030826342055020033,-0.009195609752939662,7.04191412912396e-05,0.047454908892383615,-0.029269616410230768,0.26685246599008083,0.03209632283423788,3.76135586976382e-05,0.012040559295236722,0.003150465654056765,0.0028058860006070258,-0.024398416697058743,0.0008658636618029758,0.0054373669493675515,-0.023961229169627507,0.06225360616769833,0.02161131206850175,0.00013458803900267012,0.029428988410621554,0.005716583619880066,0.004098544193794959,-0.008094452466181722,0.0006817596540034731,0.008592737715313142,0.0017431755431058878,0.025538991075841646,-0.036835161919049134,2.034043222107847e-05,0.006000496904215715,0.009959722880745462,0.029179496993154284,-0.005476494098811401,0.0001013959226797766,0.010182438371583141,0.006857116172489252,0.035257445487214926,-0.014992732901826995,5.4746011275667704e-05,0.002310503817111683,-0.0330652276187596,0.030452318071241574,0.034420766731360485,0.002117747276869908,0.016026886241661212,-0.002712918262718484,0.01535164010585621,-0.018268311346363742,0.00014542331365988801,0.018553214611512384,0.018267173046734544,0.10044642895016352,0.014644056180994272,0.00028160805525190557,0.02899751473427936,0.03865043269708099,0.23882319492540183,-0.042327607713393695,4.558676900074326e-05,0.0039192508234249385,-0.014024826570414742,0.0766906625159112,-0.09743723642412426,0.0003013990071796317,0.0021224402081717986,0.033580682913583494,0.428312286039316,-0.0011517208040707435,3.253563018071294e-05,0.03421539536167095,0.001505845359770951,0.016495227339179127,-0.0441421081617465,3.0500276655695266e-05,0.004393941463634506,0.01645959863462111,0.04783890059046345,-0.02099003794462217,0.00011083088629845091,0.015836825710036872,-0.044778481720048335,0.288505983751467,0.01835794212424611,3.585146567462563e-05,0.006472835783997438,0.021184924567357124,0.056640399475753354,0.09929339049342464,8.292357107347039e-05,0.006096876917487151,0.010588623082089755,0.036331363973113706,-0.041523608007326386,0.00013326201694843342,0.004467416151167491,-0.012855550619660795,0.012629575567444228,-0.005011178239290717,0.0005818050524131899,0.020323404244258138,0.003264685109865572,0.01088678710516257,-3.289151044773462e-05,0.00012621982603911242,0.0012619728818198178,0.001644718614822876,0.006163925217153815,0.001370643678786511,0.001712590069367185,0.020099906185504945,-0.03459910869734858,0.3414218957076858,0.01993351670930503,2.605887946367796e-05,0.005182681554123311,0.01520826563843425,0.04548323617200358,0.011133678580067165,0.0010931999467047428,0.008620397251016198,-0.013663236157400598,0.11913901356156024,8.272596262859274e-05,7.637042687500414e-05,0.01303679820673438,0.009452984729782099,0.012789422325425563,-0.010148469280401117,0.00017444696335867815,0.004220670803886736,0.033942511466851566,0.040340619456795866,0.0012321415002014956,0.00048295350735756346,0.0071376984161498555,-0.006812820295539426,0.023033301672262876,-0.0354291797062636,0.002292561944357728,0.0079660976827817,-0.027453603995893566,0.11747581231217434,0.03776999159983996,7.497928222206641e-05,0.0009191303760716074,-0.03315855035130255,0.049227270815113126,0.04292836794350526,0.001674429891726798,0.0025289146130063576,0.04043157062213282,0.14679266512412578,0.016212210695309124,0.00010912701941474757,0.0006741042668132718,-0.020596995453528975,0.057058035622648016,0.026234423616784273,0.0001463347376888111,0.005707638133087376,0.06914662742925054,0.2967733456063145,0.08198366223557275,5.6866962969034524e-05,0.005337265741538659,0.06313566631807417,0.18422487651799785,0.08871730892314937,0.0032482133886610628,0.0033423567924152184,-0.01391733228203246,0.06438824433148817,-0.031116558600784855,0.00010752018021747427,0.00986131518538471,-0.010561383637892188,0.0645352595684064,-0.003439908878071848,0.00011868191401801744,0.017115880391416514,0.013213360906370035,0.0714007306573617,0.008438229713560993,8.753048604942222e-05,0.0109511596047749,0.012417168456300521,0.05390676859923245,0.009962643167457168,5.7893081787511106e-05,0.004356297322341257,0.043666481532823744,0.07700354047660404,0.038700649890563835,0.0002764820239837991,0.007421903879902681,-0.044532025780612085,0.18012406259650676,0.12135645334922673,6.14773436582151e-05,0.01380588002532259,0.011822533257144698,0.11764390688828937,-0.021838361947755677,2.5928201377502415e-05,0.0016434762280133591,-0.010527105742808412,0.0376238181306744,0.015446767368203147,9.780365465687907e-05,0.001962454693122523,-0.052904162799069857,0.22678294434183552,0.12537692866218914,0.00036771168215248424,0.0038087062068711095,-0.00804519747730549,0.04148375854219496,0.0008042117167828919,0.0001110786024482579,0.008866039408492577,0.0024366833207022176 +2018-04-26,-0.04750629151694445,0.33684233310519845,0.004604904116799876,0.0001491458063751722,0.014245397122840918,0.027855333830020635,0.10934120653530395,0.0298172518580543,6.112727451823608e-05,0.03306247157674267,0.01311214901202864,0.040774607514806376,0.005004646889451118,0.00014875832899086176,0.009547948458296391,-0.036210014149761965,0.03815496497071451,0.04041482161198674,0.00032029155773909265,0.01342016961287932,-0.0401677049436834,0.10567578413861875,0.06771341175284519,0.00019888375519546125,0.015995509388777775,-0.009168339249937367,0.025058645160291187,-0.06733149239573562,7.988768352391622e-05,0.005868384430873175,-0.04785669095521037,0.17048092306422144,0.058157387718796034,8.236766092871648e-05,0.00018769779100572936,-0.001631734694246522,0.014215748965439609,-0.01628674011322466,3.936211415095483e-05,0.012033613095997785,0.014417869559132643,0.012790529735427521,0.03194568262451334,0.0008692753149325536,0.0030377905560780164,-0.023416720176973244,0.06313215797580976,0.006190754396601023,0.00012969920620420456,0.00841448346583143,0.004779267820398755,0.0034869006725119253,-0.14530442930525087,0.0006699557982405021,0.010074072948694456,0.012615232331875245,0.17642669780429818,-0.0420723458306014,2.130854211303951e-05,0.007085521656785515,0.006651092656471827,0.01824039809496501,-0.029915943074869382,0.00010832026738140014,0.007407530217721841,0.01810939981105885,0.11926394762106542,-0.06511790930816748,4.274218256487162e-05,0.008404090854618093,-0.016296631524462517,0.013434289508743837,-0.022935959899746207,0.0023659530133078852,0.000675398816968701,0.05875928331860335,0.46255721435279407,-0.07858361255123246,0.00010453534068933884,0.002673220916469942,-0.010594657773236668,0.060576237828363834,-3.4960379546008945e-05,0.0002708275664297493,0.012812317960944683,-0.018924919018575913,0.11825065067669374,0.008639121931310003,4.5080782587944e-05,0.011963527700910376,-0.006293607334656463,0.03363076117695653,0.0038963582156801846,0.0003084251280950946,0.006815566634670728,0.06932039165853279,0.9838493687818712,0.093836691434449,2.9239007571797467e-05,0.01151055404218396,0.005375874947736848,0.06454963636945142,0.0001329732406081765,2.7825121328746744e-05,0.0014254371008885778,0.025870515741565035,0.06841207315005332,0.017373176084411985,0.00012181340725682521,0.006131674787416321,0.0007133111062078779,0.005066230252719895,-0.005174576656982454,3.2522688397584634e-05,0.016185940561769488,-0.004036535632193244,0.01109064318122226,-5.975136467576407e-06,8.069180676947542e-05,0.006532249571887107,0.001283767307582599,0.0052761297288979585,-0.014188156654912265,0.0001112549753801839,0.005085341704865299,0.07525235048607913,0.07501511706039263,0.06177240911731928,0.0005733856762224582,0.022444451418342223,-0.031005259071018487,0.12774906049538007,0.09560645150184655,0.00010215594808252426,0.0036356131448980933,-0.013141405398703983,0.045606691340633644,-0.11928487899197555,0.0018494066776422375,0.0231981209793616,0.02427846577339603,0.22805017618825593,0.006023471932942389,2.7376190993820413e-05,0.000743226654414298,-0.005751756390360898,0.018563326706239235,0.0001848320983737898,0.0010130151613938188,0.006560467772865595,-0.01008901512421415,0.06409783522278752,0.0059198486407343095,0.000104816837937804,0.021119889195247345,-0.008014091276873471,0.01461086975681605,0.01383865354331771,0.00012945642255777408,0.011375982045401904,0.02836513635956973,0.037159447066935795,0.01069519297692886,0.0004381467013911395,0.002967737836851924,-0.01268422893190615,0.04535464172030862,0.004028955202953339,0.002167667530683587,0.007855062694775322,-0.02539335378328145,0.0992556606761964,0.03177360067116759,8.208336448260156e-05,0.008908675058063496,0.062440872508825636,0.07186728660248169,0.12362546440069505,0.002159806812523965,0.009117859539495241,-0.019908873093265264,0.07033999344315602,0.030230793868684058,0.00011213995855545863,0.004380625274345537,-0.02632610287831925,0.07344379989605976,0.01748746038674855,0.00014530876496488858,0.0031248192497471544,0.02994460856261599,0.12490718801110094,0.016248192092742073,5.8512025735603656e-05,0.0016537645580299667,0.014842441328652844,0.048702961732231785,-0.04817947899136643,0.002888471098359677,0.012815556436326671,-0.028924119485107046,0.14152313278528073,0.02782359945205918,0.00010166542581674697,0.008398954532071472,0.027622077696759208,0.186163436501899,0.021666050290492216,0.00010760259365064216,0.0010081677064058738,0.028165847732631814,0.15496990486935505,0.0010584604518976545,8.59654932514223e-05,0.015613691859900336,-0.041962817922200274,0.21886057384132016,0.03154640492845171,4.818862183437589e-05,0.008996706568042733,0.037234797821849526,0.07123166110953931,0.013844266546130876,0.000254862137983649,0.003925752568074455,0.005291598627096914,0.02576556672077641,-0.01697830327649966,5.106949597570178e-05,0.011023748798534072,0.04187099920849537,0.45518737426857225,0.07778729804786251,2.3733096392668984e-05,0.010119957949220722,-0.013533400219090384,0.04318206561387646,0.018110323473028,0.00010955002394915109,0.008380255067319032,0.019056729901509365,0.06632191839637172,0.023120249331850265,0.00045291767535309577,0.009956202527047708,-0.022849081554757133,0.12295255121230816,0.000337125796262183,0.00010643954249873948,0.017870801966772154,0.0034245639861646268 +2018-04-27,-0.013402295597383717,0.10415434463160901,-0.015734859862074246,0.00013607814667472402,0.004922965016828614,0.07289168466374296,0.24603044949208847,0.14924613419970117,7.108854971409534e-05,0.011996027446146062,-0.011485739335609495,0.03796597544094103,-0.01583008014966499,0.0001399463570928453,0.021311571562755816,0.003911887454880388,0.003804126542685269,-0.0206384460789206,0.000347055756905849,0.010432003719248118,-0.02897705329495514,0.06956413301873034,0.035883044612618764,0.0002179548888768961,0.0017753791033430792,0.012842352483073938,0.032970339400832355,-0.07021820189761246,8.504874467152482e-05,0.0035215566737197878,-0.001632896541916303,0.004994686137207849,-0.08415407008245823,9.592688055182028e-05,0.0043136248812704284,-0.024364909233178213,0.20281391255950318,-0.0068081868836254,4.119700735766872e-05,0.01281414961053128,0.01025295130367863,0.009379095057857407,-0.016888739403715918,0.000843010033914489,0.01661064351854416,-0.016895381088910925,0.0438985723284255,-0.07307234594390456,0.00013457967715992672,0.0024385222400201104,0.018291660443270134,0.013310669582540282,-0.022097514853930994,0.0006717034611911931,0.0008830753056109633,-0.011786994589124078,0.1448946040383019,0.06431467907794629,2.4242291060725542e-05,0.007684574839463101,0.006174407292761389,0.01642075918435174,-0.0024391365999910375,0.00011169997604378124,0.0023836402227418105,-0.013793844368215269,0.08139960908307,-0.00046729364821178473,4.770070752263697e-05,0.0018226913827688173,-0.011127552225807255,0.008285702964071932,-0.001943448701815459,0.002619348314713924,0.013289543623210602,-0.0008900039187437223,0.0066365050869260835,-0.01871650192378932,0.00011035819662846617,0.03275426705586694,-0.05977960125511062,0.3608578126335742,0.037645100225586446,0.0002565223049106764,0.035916629245258035,0.027770701080469102,0.18418117177006582,0.013246290732821143,4.2471985898733746e-05,0.012780055100514068,0.02053844554986983,0.10826955259271931,0.0044947477702930155,0.0003126425154558052,0.03469094599838756,0.06189739215004292,0.8035044613287884,0.0613048168531355,3.196791343969461e-05,0.0026320767044750557,0.0015779331196920125,0.014686641015117461,-0.0076278070917578785,3.589614586624261e-05,0.0005915994489679752,0.009536996224642004,0.02233351552895262,-0.0032513707472351682,0.00013755528327031685,0.0026356506474431033,-0.040418856100091806,0.29406913780833893,-0.0032182174758691898,3.174877303498553e-05,0.022448636613870865,0.01796168385729953,0.05535628977420161,0.05212855588853062,7.193785039811395e-05,0.015159301564173857,-0.011087269742997981,0.04241103252438283,0.045158882304555156,0.00011953480116507322,0.005915322597155876,-0.013296502257375314,0.014283426266849582,0.011324379835814972,0.0005320844607726365,0.017934456131504576,-0.020884227185606716,0.08175608817251465,0.043485309926846856,0.00010751877673480996,0.00434975179732598,0.028591672627772766,0.10916160629563594,-0.00367117990822498,0.0016810816965629647,0.017165851676028847,-0.013665746073834778,0.12719271185845982,-0.008696442691380205,2.7628246050605052e-05,0.039184164044050326,-0.058613767411747335,0.13895405181886053,0.051494495617482934,0.001379112488888266,0.0008955857886653132,0.013761652628410552,0.11457151079615654,-0.02762207572653563,7.998703427065896e-05,0.01135991036228868,-0.021954129738070472,0.02956633696112888,0.0395756355056914,0.00017525244694255857,0.005869739145329641,0.0041417195795993445,0.006454890475467541,-0.11543268156308721,0.00036829491886511607,0.0013719584634824065,-0.018143190252905672,0.0722654224033839,-0.0647252675109041,0.0019459579450432306,0.022110033901700837,-0.029009520135914096,0.10351273772330949,0.035279004110172436,8.99160293296322e-05,0.0023082477109593173,-0.07334928670968342,0.09986474990244124,0.13622870479375562,0.0018258322253392183,0.00742628018698611,-0.0010389272845378055,0.003660923401888366,-0.019321623332290146,0.00011243733575909175,0.023692308728159268,-0.02263640527810624,0.0641597301534558,-0.03601815889301752,0.00014302281058999527,0.01059779416771112,-0.0010512347367799138,0.005066748538205762,-0.0029869789664601193,5.063890165215145e-05,0.0042268279056014765,0.03440543140240533,0.10727645233112451,0.0016149322439056517,0.0030397695682892576,0.04235866245852623,0.04539143621917133,0.2128438075150981,0.09132532972645836,0.00010608487665210334,0.020035068974874067,0.01656514457187123,0.0847825508962349,-0.07101806259738688,0.00014169337198504878,0.0018083454234723104,0.012984730754456286,0.08870358571582639,-0.028166196898253608,6.923735546200342e-05,0.015358203982565004,-0.0006692271486923034,0.0032199484224376992,-0.01897354453578537,5.2236254664785414e-05,0.010175226495409119,0.05622981685694879,0.10107083385667621,0.031050437193809722,0.000271250291972325,0.012341820311741974,-0.01377615084390086,0.053892995127485674,0.005104505006441358,6.356381353943039e-05,0.0013961671654165587,-0.019372561750417606,0.1931574234098672,0.02300809479237234,2.5876583508953535e-05,0.0023500792759977218,0.03123080666258498,0.1134661042148699,0.06369501455141587,9.621128661891567e-05,0.008619566233913982,-0.028319552166866744,0.10825506771516584,0.017642484890992596,0.0004123501114038483,0.007766479435086849,0.05599134649537489,0.22181057786196143,0.03834633806393532,0.00014458074371113462,0.005033750663204871,-0.00030302761586503614 +2018-04-30,0.013980559701474977,0.09303269960833993,-0.02742465126336817,0.00015891888850958969,0.012676255296133027,-0.011231699209406303,0.03808574726029016,0.005230662188845982,7.076092636367255e-05,0.003049900381393995,-0.017059833803789733,0.05097861713891698,-0.016662425171824577,0.00015480463152233692,2.5923315771406163e-05,0.006786637726158589,0.006278598276709646,-0.005655264158996736,0.00036480419752017354,1.3767610537610084e-05,-0.0033841193393719816,0.006940100294022947,-0.06668918767878627,0.000255139497283305,0.028952069589831896,0.006227857216483874,0.016207005358116856,-0.01780503210272921,8.39039894834243e-05,0.0064463427500784124,-0.006204144204936642,0.022835526588705284,-0.12979639105700794,7.971879179676566e-05,0.026890370561210238,0.029468747295838954,0.2713004805768528,0.02611168382257273,3.7248580418320834e-05,0.011937086201304091,0.002302423154809458,0.0021742497646704485,-0.00523845956008512,0.0008166209156673317,0.014681483699109502,0.01743776147255834,0.04402811261213268,-0.0006460193390949009,0.00013849131867767344,0.002323315517914123,-0.035782955717816596,0.02898348681827348,0.098367808819524,0.0006034620138882954,0.0035250210654890687,-0.014287210330844645,0.21685362385110757,0.055902093450882186,1.9633762970830046e-05,0.0057576715210205945,0.05330764709250276,0.14387186330218646,0.05877824758964015,0.00011006891451929646,0.007981858100048854,-0.0027674947187162984,0.017352237729779178,-0.0004383069959350951,4.4894499073111045e-05,0.015009362920122374,0.02868754384898113,0.02562738358208967,0.020921385498228078,0.00218329323930584,0.03250938045711751,5.6947976011072725e-05,0.00036810977556154075,0.00026203193604743566,0.00012730722464365105,0.022166442457360675,0.0022399640729454783,0.011942151038510476,0.002009790470590185,0.0002904468862651546,0.005029766305958046,-0.036602465464283016,0.20834915241786456,-0.03365680321034248,4.9485681713900646e-05,0.01435246615615707,0.0281702895842897,0.14938264852814634,0.011265332220723887,0.00031079781990332435,0.004296305830115674,-0.020341340407823198,0.311878690945723,-0.011261792248403865,2.706600117126536e-05,0.0024501730858515476,-0.029043475227416717,0.3045624362868013,0.14426941916394884,3.186060015460284e-05,0.005224643172546381,-0.001071832305491129,0.003205296715088596,-0.029478526189873195,0.00010771628335197723,0.00867343573124511,-0.053503589750521094,0.3879054022474407,0.010122139564478431,3.186027129391442e-05,0.02240830835732195,0.011948933038727325,0.035613645108341155,0.007817967996620255,7.438580769996934e-05,0.01690181077621366,-0.021481417147243338,0.07952146480743595,0.12752085478994554,0.00012351711892737797,0.0016570428331031018,-0.029694593193371102,0.02537221500852267,0.023484289054111516,0.0006689513866535876,0.012142974391962508,-0.009056032171355281,0.03348790902181071,0.00390748376452028,0.00011382454805883605,0.004151449565424271,-0.006429888827166976,0.018879049225491558,0.003976239031586837,0.0021859615561422726,0.03498658624631798,-0.04179931964641872,0.37642277587186973,-0.011131808280317033,2.8554562812342132e-05,0.02449154596767395,-0.011397699011487782,0.040771990315112853,-0.023212040797858113,0.0009139586371753242,0.01843554149322883,-0.024518215783411686,0.20793734499107366,0.029864672783567688,7.852031111489703e-05,0.011672690380262156,-0.00988132338410483,0.012883471291237653,-0.020772645306315767,0.00018102043526923312,0.004433706403907249,-0.01716077669565407,0.023742146608474138,0.016887230649025604,0.00041487844482051433,0.011371482691780796,-0.022616227853415712,0.08355983415142063,0.008754952865410495,0.002097842805580626,0.009527981886451427,-0.00668771779024479,0.025097013432386416,-0.04669092808232403,8.549609238308345e-05,0.006613373050765767,-0.011727261179078147,0.016679167488594174,0.0026063766304077044,0.0017478309261273993,0.006870958487836898,-0.006044864023287653,0.021114867961601468,-0.08535120591649582,0.00011342641414918572,0.001015686973201642,-0.007411803413411079,0.022582938247778662,0.0041867662850508984,0.00013304661234174082,0.016138043714776985,-0.012610544533739554,0.04679781060179297,0.0010440310018173446,6.576915010577815e-05,0.001450768504153134,-0.012228426986649318,0.03260907026671522,-0.009739325820871175,0.003554268529183637,0.00545671377388139,-0.009708065965678112,0.048646688260807223,-0.039360722888339514,9.927045430366716e-05,0.012959542776722394,0.0028956760285407655,0.019044003891259913,-0.006847356716090923,0.00011026876073573039,0.0020538594486326166,-0.03425939430307312,0.17702504097924363,0.09292138915638483,9.153636783654436e-05,0.004325642568141383,0.00884370615211887,0.04009638367779353,0.0028584050317100747,5.543403526656927e-05,0.006121553959290803,0.007240601427057687,0.01389639347011095,-0.00082430781006986,0.0002540399000318612,0.008987861693277081,0.0063598899715562795,0.026880293945863897,-0.0314172258263271,5.88342151819671e-05,0.00012587606432866113,-0.0007750828726805267,0.009152583696099635,-0.0055825433323441285,2.1849208885473636e-05,0.02001533461043655,-0.01502226729982921,0.04693401113077779,0.02749837840770105,0.0001118811129497657,0.003130622570631029,0.001391973729342144,0.004936261294773087,-0.0041820655465745005,0.0004444888481719272,0.011817056788967103,0.039300005103349786,0.17097761018889931,-0.0400848910344411,0.00013165130252157462,0.0020446521918605384,-0.005488188559109881 +2018-05-01,-0.036348359341201,0.24882920581681506,0.04289174929102613,0.00015447921125278806,0.005224610993281541,-0.015482146373468586,0.04895383559280294,-0.000830699378580992,7.588483090372786e-05,0.008068748301807049,-0.03310453030827362,0.11458683461398496,0.006141741887183519,0.0001336441374705615,0.03266272538594546,-0.0016897116048929408,0.0015533148662646434,-0.0020150709228825983,0.0003671309045783537,0.0018650375897079007,-0.008844518232610392,0.0210472038966319,0.0030941904371160566,0.00021987585715657498,0.02596815926804213,0.03844606523419368,0.10057487661108298,0.14968580692596922,8.346590945889468e-05,0.005658078678660662,0.007426085133508052,0.02477142309714858,0.0005836483830715369,8.796275474400927e-05,0.0064059607051842864,0.009947629238223411,0.07907271352792304,0.005247909791950438,4.3141134522134e-05,0.007846176012000513,-0.004432510979077519,0.004031136187206308,-0.03026345080882732,0.0008479439309029195,0.0011822446324348374,0.00011925561967411958,0.0003501039214907645,-0.03939109677650786,0.00011910877676791438,0.007791171945498877,-0.037802233927246506,0.02876580637962123,0.10837459758280638,0.0006423404484794846,0.007398022403339201,-0.01404923997199367,0.17003408673437231,0.05068296081248435,2.46229241325054e-05,0.008104838788767362,0.008303723542346543,0.019941832547786715,-0.012180078707129545,0.00012369691099363536,0.03047888832277778,-0.0030356520479643046,0.017263123845348356,0.004570814283140558,4.949877175133626e-05,0.010783428754536774,0.004986456283818306,0.0038595050886283035,-0.052115660253662675,0.002519900371994167,0.015194644244491767,-0.04682266205307882,0.2931728257986128,0.016081659520324566,0.0001314269701851904,0.023891235552178418,-0.0666013408344011,0.38583784187643316,0.039680500125965516,0.0002672922610438538,0.0017192050197155286,-0.04637409983911682,0.27254003751734457,0.032884779006700546,4.792985744573615e-05,0.013656088143884408,0.03355167940573435,0.18275741756004202,-0.11686920428598882,0.0003025701343809305,0.004556789491857771,0.022873524120438384,0.33696717262525466,-0.11712418027174418,2.81692781921008e-05,0.023098647521332307,0.014029966703382392,0.17413434946899892,-0.12238671311984245,2.691868879156154e-05,0.0005466462785219911,0.030541107706281198,0.09885016158969812,0.01579770692961595,9.952453492330611e-05,0.012868233457860166,-0.012555603607338477,0.10625377513069584,-0.002373854467970435,2.7295157398502078e-05,0.036522100225614404,0.009586891330436704,0.024768998627144927,-0.013548343401267097,8.581174584340072e-05,0.010036075537395571,0.005540799629820262,0.02155736301855524,-0.007936043189094548,0.00011752368640101249,0.0060869988386379635,0.049947311986409074,0.045213875302739,0.022585588324358804,0.0006314165339842717,0.004554038314700444,-0.014756514111815744,0.06181184756783671,-0.015588473770720195,0.0001004842653361594,0.010305003306982816,0.021416555942694305,0.06986095822858218,-0.03538756571618639,0.001967588467756622,0.031913496310565774,-0.013325330236657544,0.1359988739408761,-0.04317713959180021,2.519560920389575e-05,0.010402038112101279,-0.0285662233233728,0.08752309495116976,-0.13768724384235154,0.0010670909342679862,0.0021486862535118985,0.044975256101310986,0.44903279195401796,0.0859816337479456,6.669929299208093e-05,0.008275612041492339,5.6220859993999896e-05,8.256188007387468e-05,-0.0007363004515802521,0.0001607175475996572,0.005405735074024279,-0.02372698450278291,0.03755974704002585,0.03707423182292538,0.0003625966619862453,0.00599063447243907,0.00037923622629288864,0.0015175328396252786,-0.03183625131541963,0.0019369662762806642,0.0039679040495320264,-0.023720733620124654,0.10173162634874335,0.015347779784387405,7.481049001689099e-05,0.005972183825595237,-0.04710136926181903,0.07874097661354566,0.028253544868059772,0.0014869964349374667,0.0068224894995178665,-0.012470287054211594,0.036499044541755475,0.01083848974891708,0.00013536643494459276,0.014512225416284573,0.007945859219463287,0.01876562498874813,-0.0026112352545079533,0.00017164778721564042,0.00843559015981496,0.02466767795054951,0.10692929415118452,0.010064004256665213,5.630480968516833e-05,0.00970495075754295,0.06666630859108082,0.1952102329345669,0.06637996740142321,0.003236844875867494,0.004382365938168852,-0.023074324017214428,0.10537444489296269,-0.004808427001147037,0.00010892667771056869,0.001972890821468384,-0.008203157527442917,0.05835161728663016,-0.0011981140968577472,0.00010195040100674486,0.007698220335393691,-0.03878751734755945,0.22122747037947507,0.08743533524718247,8.292808337406704e-05,0.01136500002516807,-0.037236167422765115,0.1651056174163515,0.029863224983148556,5.668269876882049e-05,0.017461016604431747,-0.024309219729799193,0.051976974272179045,-0.01881351040253737,0.00022802865147102447,0.02743336925104278,0.024267695954153044,0.10127415745142129,0.05693311079708482,5.958600685287016e-05,0.006718459080322666,0.004495200808006928,0.0503323808592389,-0.034226085034425334,2.304267574006916e-05,0.004161392560463502,0.001849919540703134,0.005930546673310299,-0.047690046923216954,0.00010903528830869405,0.0009480222379989701,-0.0019564368352824745,0.00811934149974414,-0.02350787330132512,0.0003798157708381025,0.005016358608587542,0.0019623362635309794,0.008429490945994603,-0.0604011749405167,0.00013333491151815624,0.014618161660930861,-0.005078385053331824 +2018-05-02,0.03448377206535894,0.22614434202004333,0.03298857540974902,0.00016125590362278002,0.031198258515592266,-0.031926433378682686,0.11362383172000183,0.005917043560803398,6.742042724552302e-05,0.000164374554563431,0.02733934277833413,0.10530907086416039,-0.022579375032951342,0.00012009349767025634,0.013946572322992682,-0.026140735756412414,0.023805369145058083,-0.03916361475557572,0.0003706045466138808,0.007266492397401193,-0.016067832206475147,0.04263553714318303,-0.0737255366671979,0.00019718928910907426,0.0035579361998908004,0.021279073776143253,0.050026272047911685,0.01374196199944919,9.287553310175586e-05,0.004994371749288865,0.0036294349592797654,0.01366456431442441,-0.01360957812213126,7.793509771267913e-05,0.006955538803901798,0.02816229115695096,0.23065220408765713,0.02652183826254112,4.187058122735954e-05,0.0024178186486259598,-0.0021600346637028257,0.0017435861240977712,-0.003880396837891887,0.0009553491095577191,0.0018363694346527227,0.02850149642015166,0.0712863102338793,0.014525434269759894,0.00013980522814691917,0.01300718818599574,-0.026422149084052462,0.019650600494564352,0.030923564395414157,0.0006572289278501558,0.014027536454019163,0.01281565629534292,0.19236124816266176,0.010347777881217747,1.985391026011817e-05,0.0030158357048791166,0.004026265809343786,0.012032689348606053,-0.09467983834109361,9.940100524074205e-05,0.0012769487879182976,0.014538079171778193,0.06650187188852529,0.011796656333971329,6.153680983594683e-05,0.003214256634277251,-0.013797339557990458,0.011284788291078882,-0.029037917574074007,0.0023846514469328243,0.00695195219777868,0.007578316940528616,0.051252496520102026,-0.061277766393178924,0.00012167737932127196,0.00995313275930039,-0.016346821863899075,0.09825222687093761,-0.018699468456526803,0.00025763161713729296,0.006564626145791568,-0.014473926512971667,0.07922929115008259,0.0017306189001705201,5.145902447527838e-05,0.005414013163846696,-0.02516975297155161,0.12003420198040789,0.026020513324561758,0.00034558966888710433,0.006950920154812819,0.047446156552549835,0.7370850581135334,0.023516344595416298,2.6712446251698897e-05,0.0066479280798052605,-0.008350342101336127,0.0823995552929276,0.01343277441899511,3.3857985097485014e-05,0.017948937898932645,-0.06252117139881462,0.17805078255655496,0.16009106288625172,0.00011311129520458065,0.000571181625631554,0.03616507827786038,0.23061809871447125,0.0159594483162255,3.622333215181531e-05,0.045607177502266914,0.021019129450587655,0.06358528388257363,0.03580493980911353,7.328844254970509e-05,0.015790094015973224,-0.0004632068388766447,0.001853832557777395,0.001513556533368566,0.00011424916988195775,0.014467920114478526,0.08658896613152112,0.06950037071699382,0.07402519165638008,0.0007121164111573371,0.0122966652117266,-0.014757755497129205,0.05717934229594526,0.000920491537924482,0.00010863434852704966,0.0010663981886183055,0.015051153513111051,0.0535368855621066,-0.05004066670654767,0.0018044126244214744,0.007917060669141213,0.03522586431736209,0.3623848938559613,0.003961009029103192,2.499618714695388e-05,0.008716982463501022,-0.025125766455494043,0.06730891427268479,-0.010374591880428162,0.0012204444119692324,0.008379187644393807,0.00916109335521929,0.07460816407636893,0.00117148765643726,8.176860692685683e-05,0.01597361084459163,-0.009754650504611844,0.014341244646912398,0.012912381526336433,0.00016053519342302635,0.007521696984505257,0.03198425557725267,0.04055369893188235,0.01592719788203435,0.0004526991595957503,0.00026941700675561786,0.00424896870802957,0.017625109645142235,-0.011369731393711877,0.0018685384820436727,0.015593782673840323,0.008831794806898757,0.04010234143816845,0.0019689307113095462,7.065934551138505e-05,0.012945488323092056,-0.018391452477379333,0.027722923306321326,-0.06443091148186507,0.0016491273623966635,0.013855169494169631,-0.003153551070263116,0.01067524149578058,0.0026694834910019737,0.00011704104659518655,0.010519677372183532,-0.014526994848255273,0.040013713027344244,-0.22178843697662967,0.00014717271628910495,0.0001131851304291548,0.0010969840646824927,0.005236469896795621,-0.06203923706470779,5.112998115506358e-05,0.003401557865509902,-0.043911226757527386,0.1297774032891016,-0.04416822339426283,0.003206967421332166,0.010817911069220507,0.05115610814274373,0.27210301566965445,0.16340277829031596,9.352004615128779e-05,0.01050102989258089,-0.01616396672836837,0.10323438380598757,-0.018642610705932892,0.00011354927414087574,0.006305028142653423,-0.019023126929246383,0.09402254865140816,-0.09538689601091568,9.569705767749034e-05,0.0019784140209336215,0.04674012825312303,0.23245377609538764,0.03530748252227123,5.053597966927554e-05,0.009225813749241382,0.019756330718196203,0.03866476883247515,-0.0034551639640290196,0.0002491266933473807,0.03014904314400962,-0.019380946328975968,0.07241217292545114,-0.029947725487820317,6.655455360632781e-05,0.013570763723402449,-0.005580331195892877,0.057456185276663484,0.0025680086376599267,2.5058465493637363e-05,0.0004810521638636681,-0.02375045783138887,0.08492194487165956,0.03248639770006615,9.775996076576126e-05,0.01136090319655702,-0.013633980912821465,0.057829144554429564,0.003714170718518704,0.0003716241121077659,0.001041294596059702,-0.0310503994661471,0.16304960223031006,0.016181579750445495,0.0001090734987250398,0.014648201140315372,0.002623732529395783 +2018-05-03,0.008824894514565392,0.057719282866846834,-0.00016797487011194784,0.00016168702874000068,0.020551083652341328,0.006051941135858841,0.022775681769675715,-0.08031147625565549,6.375787526459863e-05,0.002526604510264315,0.012856361926161502,0.04086621664150911,-0.029655927790916012,0.00014552944111655226,0.001002640948179625,0.005620406593920265,0.0063622046000897875,-0.007526950067704516,0.000298145294603472,0.00010055208947258652,0.003450067043346942,0.007175747628449592,-0.02512077182246316,0.0002515695950812368,0.0010010808529558803,-0.015329561813049767,0.04129999631543034,0.04949964325303998,8.104504502620474e-05,0.001563956898663031,0.049990889975449704,0.16804208717489794,0.03775888776697587,8.728963079596774e-05,0.0020291582279116037,-0.033356572851446616,0.2948377867952648,0.03274116755948409,3.8796888402926555e-05,0.0361610871217741,-0.027832182930146315,0.024265603864033782,0.08555953174738586,0.0008845063464232155,0.015516686358266165,0.00463810130442603,0.012180931040688752,-0.014823880111813533,0.0001331440097613039,0.015977340809310427,0.016273517878692585,0.011804503578379694,0.009707017302986893,0.0006738419981079148,0.01908131484174923,0.005343350195249432,0.07338350122048047,0.0015079349935313675,2.16989140165307e-05,0.009949643682733779,-0.011262299510512528,0.036568374642499867,0.00022714682197855134,9.148975256418231e-05,0.0020421923664636164,-0.0034068393959670526,0.018050954584276628,-0.03390892320970774,5.3126756910300515e-05,0.008347579727348951,-0.017933096448316314,0.015653664782769586,0.0017770069762997355,0.002234406712921318,0.0017181758626676504,-0.044224198106761294,0.25846864183266033,0.03957835182783755,0.0001408005054468597,0.01638436916930334,0.02850487116055631,0.17667386244260302,-0.037534435273331106,0.0002498359957454714,0.04448402864213978,0.03220208358730817,0.22382827336201813,-0.0030597951322525953,4.0525649544789695e-05,0.01507966170054831,0.005855327406808679,0.031065888753299367,-0.00034422819835540727,0.00031063773353470466,0.027349761744085727,-0.010824119668462022,0.14234912333944683,-0.017758513047377675,3.15549880065352e-05,0.005591458571502951,0.005903608002146768,0.06652354889386437,-0.06462157347949832,2.9649939527787333e-05,0.001899826331421581,-0.07519863325567525,0.2256182986101676,0.11570272964838346,0.00010736392579756755,0.013784395841314368,-0.11118202441649638,0.8822600468261157,0.10636568654248327,2.9109204752984314e-05,0.03858376133223401,-0.010941707000128578,0.03374602620418888,-0.02740262398096873,7.188525602260204e-05,0.003118492123450076,-0.012356747726369306,0.04520435964083581,-0.08467126177164903,0.00012498919023520822,0.0020761480181295485,0.0009643789643647827,0.0008412886547673086,0.0024184657331985933,0.0006552065914626418,0.017263821039151184,0.04080929976525189,0.1437129429138398,0.14866625328878633,0.00011952239008837977,0.007279086478298599,0.062399107681847844,0.20133455847308573,-0.006675462779628446,0.00198920355770724,0.013575173621191072,0.014059836509736181,0.1580481276424906,-0.02864363144475413,2.2875632488827666e-05,0.023634057749526385,-0.026493815554324947,0.07426895005180277,0.00740954205615207,0.001166295215397517,0.004052649671722379,-0.022554405646392765,0.17727131244170047,0.03836489671505861,8.47263642014195e-05,0.004022975843147659,-0.0063940543924514825,0.010206875537189818,-0.1554600141947534,0.0001478525753560953,0.0030210585329077493,0.009546334119722985,0.01266086601360027,-0.07470280789729608,0.0004327899143726499,0.019537561799012906,-0.0444345894356196,0.16550915347643044,-0.00567882142971253,0.002080891784113384,0.012651834703867009,0.04684777487340484,0.17613016149688474,0.0976711871040059,8.5338617934682e-05,0.016059590337580663,-0.04916900331343238,0.05980069714834397,0.03683460559656747,0.002043912735818152,0.004243482704029155,-0.014140929109995306,0.04800922287652747,-0.03623259150185928,0.00011669958335080659,0.018053630776832773,0.0016151995817766992,0.0041445639091905375,-0.02502624667798252,0.0001579820440824306,0.004741714766903449,0.010763329126019567,0.04364363619695009,-0.04947567190930001,6.019211708074841e-05,0.012077312595507051,-0.0263461049596705,0.09259309505225376,0.01671158079540673,0.002696844305155021,0.04904633705358952,0.0349430775350255,0.1597991633323058,0.0604618236857549,0.00010877453150351992,0.005945209637871127,0.016322978064425273,0.08683952403139653,-0.0690932347885459,0.00013631471722279614,0.000615673737513613,0.041197562653414545,0.2010436236576935,0.0925300171332094,9.692368514688044e-05,0.00781032106017832,0.0228205365259636,0.11704150941056493,0.00044831192925187007,4.90042031594672e-05,0.00905664907903666,0.03580185472958907,0.07141595647360488,0.01633453199838336,0.0002444216452137881,0.02820547790555807,0.019793589881423834,0.1001350994727077,0.041595657787685834,4.915329202270911e-05,0.00019248945870527733,0.019504609804314798,0.23655675415534733,-0.016643644732757056,2.1273218435399842e-05,0.01039299787804865,0.008793013732108113,0.028167205313803997,-0.013932718913670004,0.00010911964804344536,0.00480147837126965,0.010458233021416847,0.039901965665580276,0.009223407771863581,0.00041313500511702163,0.007392879655145775,0.0023936382699967403,0.012272038905005063,-0.07393134165505458,0.00011171554084790276,0.01470274302484176,0.00018359757622421 +2018-05-04,0.01990367874714117,0.1289457013383372,-0.032579219661640534,0.00016323491922566813,0.0021698978849942745,0.005869730692853947,0.020606934524772694,-0.0040711829802206586,6.834634765675053e-05,0.004803704856692723,0.014182608820055332,0.04669087908451075,-0.07261878477399007,0.00014051454395121502,0.019767535228709818,0.0049502217039201725,0.005994792243275465,-0.0735299517867564,0.0002786880646241727,0.0012324428684974279,-0.012691172094649867,0.030318115046482397,0.009287177896807965,0.0002190268256299923,0.003240595613682554,-0.0072971277880760806,0.0197173727287747,0.01592764158112525,8.080712310998271e-05,0.0024246371605395997,-0.022271101807963444,0.08333497137807229,-0.03546807024250395,7.841592464463918e-05,0.017133946733531125,-0.014331360968325144,0.13513414765115625,-0.03540831408346539,3.63681276418816e-05,0.0003328232242037995,-0.014023546134111883,0.012282087409168757,0.015919114036806747,0.0008805022099888017,0.006678033095055385,0.005417560856017945,0.013022133465608085,-0.001311373147157039,0.00014547338440288314,0.0001637682380159493,-0.03439146097750102,0.021948656510885386,0.06046113471980677,0.000765891133160077,0.020543317839954164,0.018238453063273156,0.24197386959914907,-0.013488051310343462,2.24616843345456e-05,0.006331395554432257,0.017509649109979063,0.05071237966788605,0.002045204449496814,0.00010256861486779815,0.006322385313122625,0.002683334175345639,0.014428570570654437,-0.0036980208483212954,5.23495885128208e-05,0.0029020850113089802,0.010480039973353072,0.008275353865504239,-0.03006897026842693,0.002470013562127765,0.006765292817292057,-0.007180097458939141,0.048209087780613856,0.0001646148530933886,0.00012256134919389695,0.008849697622982808,-0.007054463355108081,0.03560481696006895,-0.0033886718613805556,0.00030680572288393,0.004931152980155694,-0.05034710953206836,0.2699384822718158,0.0464536748954331,5.253765649610287e-05,0.015802467259951745,-0.025442419071801017,0.13462050285064572,0.02800236080086867,0.00031148275032660805,0.006216888707674866,0.040723181701822854,0.564236868335128,0.019087952640344207,2.9950941091603744e-05,0.015656485942553536,0.007535028665792606,0.09040679246264675,-0.014350248144441928,2.7846175549924282e-05,0.001016228398571177,-0.008704083507245473,0.0245678026133459,-0.0652866472274207,0.00011412465841157794,0.008684888997499434,0.006868628951742124,0.048367081166458284,-0.017678354920852762,3.280292361235383e-05,0.00011987868325832331,0.00852500707943175,0.027732015532300792,-0.045140579826169876,6.815389735551376e-05,0.012738103862579217,0.018376687685928445,0.07089850424251606,0.062419525879203165,0.00011851648354313544,0.0049677490827196545,0.0012827684823108042,0.00129993553959492,-0.056371474552251874,0.00056402976711513,0.045685908798454654,0.0059941401295281116,0.021195145671128523,-0.021782778539391767,0.00011903549845550054,0.011621059545157643,-0.046173634038460254,0.15914602502085423,0.02678829708824673,0.0018621618946304149,0.014398723525090695,-0.04465472711629306,0.45285792522301554,0.023417798325560037,2.535640399005247e-05,0.038044342192964216,-0.00638847578583262,0.01893217004940916,-0.010997660124025133,0.0011032352408596674,0.0053919265769096355,-0.01246215602192689,0.09748060071572455,0.010918562289003371,8.513352786677202e-05,0.008366870562108282,0.02336537108430312,0.029476912202948135,-0.08317792514929673,0.00018708375630995677,0.01037463837979391,0.0025615641689904775,0.0031436141980202325,0.00013355592706806513,0.0004677135069690368,0.02777808243611251,-0.007029627799102673,0.02802266072380948,-0.014637317628350178,0.0019443448909729107,0.003597722081656963,0.03142150558246683,0.14218641403898832,0.03783351444687171,7.090212633268625e-05,0.04012282594196547,0.02342902336676171,0.03373976808701811,0.0069208779426669104,0.0017261927339740372,0.015320185314629182,0.021387989414533303,0.0743930017133945,-0.023484518569341428,0.0001139079181241288,0.0027273871229232024,-0.02344556631356247,0.05787216141424602,0.024410765041572226,0.0001642295869823498,0.007943061116789475,-0.007602915519081436,0.032403622254572106,-0.028250700700645778,5.726648526569965e-05,0.004518106758934819,0.013625260422817897,0.04578609570080042,-0.01739498468868373,0.0028205204835583834,0.018284406848496283,-0.010831144554731421,0.04934369062474521,-0.006369715224622435,0.00010919010752493658,0.00873215514056093,0.010980235727168356,0.06069054959921636,-0.010349212872930308,0.00013120529976236764,0.0005418514195654741,0.046052402176148824,0.2918165410804075,0.02250937035914912,7.464334306557928e-05,0.022276356860953066,0.0020115812850607516,0.008452860228998054,-0.03475917666617407,5.981103166919767e-05,0.004639363497912214,-0.013150690824007352,0.02408481352575028,-0.007000028496247211,0.000266216318571348,0.023935330378198578,-0.0036617552198597936,0.015462185606532087,-0.01204133964391349,5.8888813341236804e-05,0.0023647042876146413,-0.001531640178932515,0.01676949818914126,-0.05034405158380803,2.3565028482126748e-05,0.0008528432975667842,-0.010247699759260686,0.03163538491719044,0.0020823596384486657,0.00011323018955027809,0.0202746111552048,-9.966082827451651e-05,0.0004166273784852256,-0.10446559936076917,0.000377054959143895,0.0003519192493284958,0.051266543188084275,0.20559980115826085,0.011513448923969948,0.0001428180636050913,0.02931783190210296,0.0013646198855633111 +2018-05-07,-0.012935267391941887,0.09239620311749312,-0.00716869374204728,0.00014804981522090584,0.0022744995018262083,-0.023336334206386793,0.07834802639112767,0.011949575919888475,7.146857147728493e-05,0.007938607496368499,-0.019263249544780297,0.06111004588533734,-0.037807776334598156,0.00014581901000720526,0.02123426195763881,-0.015428269525040781,0.014752167086040322,-0.024270936534697172,0.0003529630559188835,0.0015461013542192896,-0.008557183493784617,0.0173504710370065,0.004533817446113894,0.0002580580120725406,0.028225052042441953,-0.027310535375560177,0.06780613375597826,0.10950270532191266,8.794435572240778e-05,0.0016333106476363534,-0.05026262823021954,0.23565097261424625,0.1297316723103508,6.258435961004601e-05,0.00298580214557019,-0.042393404071724365,0.3713828616153743,0.05815478541689303,3.914488727954353e-05,0.001349059793718882,0.030466972025434764,0.026922246518966974,0.09205314634810902,0.0008726955949111099,0.005805806995113413,-0.00763484363790739,0.015234024477770903,-0.006670837986200821,0.00017524570561915765,0.0020952677559908004,0.00012587604516671648,8.40276546575202e-05,0.0004121653777472988,0.0007322261013959845,0.006193245733567398,-0.0056465591576726785,0.07691867766736875,0.018344060946561956,2.1876349966940798e-05,0.008491102060346483,0.014547763943099678,0.04301059632376249,-0.052845043837040126,0.00010047819375836131,0.0008705787911157681,-0.0037585768997010095,0.02009551234934404,-0.028034405051724078,5.264852097003267e-05,0.0016506192207808251,-0.007722660052277992,0.007094637485533536,-0.006208387676994493,0.0021230473543700293,0.008528268044484684,-0.03548617247692772,0.2266399756981143,-0.05476051385309667,0.00012884713076142214,0.011231475309462549,-0.007127550882016003,0.04624278456472953,-0.01071049531583645,0.00023867370810152664,0.005184237950496427,0.06148544165300983,0.3480968739086036,-0.014879274635722443,4.975458748120762e-05,0.0071969258955661775,-0.0037385336734448785,0.021333124487941765,-0.029582344513106498,0.00028882423820577154,0.007536714704087082,0.001892501815324241,0.02557283495211889,-0.025629311168416068,3.0710554664991714e-05,0.04725509641740111,-0.0044202582338966085,0.046862423368869505,-0.019809408937735938,3.1514078147533065e-05,0.0012884303034950576,-0.043320547928048486,0.1390792604952606,0.03326099804910635,0.00010033543180380569,0.0036949786191866306,0.0066889316309615005,0.05916862660963923,-0.0558965702299548,2.611305264270928e-05,0.024416256202395778,-0.0376467656698218,0.10331983197895395,0.10605097149216071,8.078325753568242e-05,0.013181424479586944,-0.0041933741311583695,0.01474395004198538,-0.0033599579372032974,0.00013004640667264354,0.004490081756167131,-0.04145477482527653,0.04225443992520307,0.03608262221260924,0.000560760962209263,0.00844193383764778,0.024067575276187907,0.08520797744938895,0.035573269963443566,0.00011888801916110245,0.005886648175513378,0.0022568337941046785,0.0066180131759662275,-0.01002493837106977,0.0021887246223368587,0.008456340934639242,0.016638233903759982,0.14803300444129727,-0.004832647436956182,2.8902197680979583e-05,0.0005454018419268755,0.014219842494733117,0.047556084196095604,0.026589532653461857,0.000977597243813753,0.01631939320097598,0.01731074033587711,0.12305249755128442,0.009147254920874289,9.368085641439563e-05,0.0027661475147861977,0.0073686047924697755,0.010952574472882743,-0.01924102737257849,0.00015878681428304668,0.0036529650485606123,-0.020514107711630276,0.028855135482283575,-0.1057515558410892,0.0004080688344331798,0.018864850858498188,0.023945028967744673,0.0933985101797509,-0.056526777954295504,0.001987127616893634,0.0039036231489662657,-0.032757981373050075,0.11680589190264304,0.03435702501655282,8.997932939506159e-05,0.0018259797306654332,-0.020552980460576912,0.03165633972467054,0.003711841768790624,0.0016139545598190964,0.01752603995804422,-0.014862809395317833,0.04321880836740124,-0.10755999258173946,0.0001362523986436729,0.002050963870387346,0.020821202993517144,0.05620694336910855,0.02736250062903511,0.00015016759524774306,0.009255579506900447,-0.02316197532914188,0.10706559445081962,-0.011270531136463969,5.2800688680891586e-05,0.034144754518559875,-0.029352187902077526,0.08680857927158668,-0.04532402765780574,0.003204762782117434,0.03534911775629997,-0.019151030751432308,0.09307050818357898,-0.052707994597452706,0.0001023577283901018,0.007565236693460344,-0.055504882267962005,0.32465173441601386,0.11781090023221608,0.00012398645497493295,3.6688987457510723e-06,-0.02114904487604509,0.13285848957226035,0.024562173393307137,7.529222765283226e-05,0.011204565422331064,0.017304372218616203,0.07545856895577115,-0.019164224700363976,5.763611224092941e-05,0.009443810651602028,0.00986623205604372,0.019063570067414992,-0.03199262023863323,0.00025233441417998154,0.005524038012914848,-0.0124664448137443,0.052301130948181764,0.0019177488382318532,5.9271499519747196e-05,0.010022595608178773,-0.018641650210514588,0.19342242873656992,-0.02716391280585422,2.486616481528939e-05,0.007765290294888011,0.008002429187743803,0.026630756156781437,0.0012197629859268396,0.00010503820859719675,0.018859840754248458,0.0007730422512138216,0.003259893675046077,-0.005263630987358369,0.00037379007603381427,0.009675764669299924,0.024587229070081065,0.11203122309511573,0.010963315512163412,0.00012570203425908404,0.0057399862498797765,-0.006887454060875596 +2018-05-08,0.01914335218096573,0.1065515254741407,0.01009280479445885,0.0001899961940049266,0.007737736468913765,-0.0050002117078357675,0.016459671328881806,-0.02336578877600904,7.289164651019643e-05,0.011781599592695247,0.0046067031504071106,0.017428867679973536,-0.02504354142207773,0.00012226953472197784,0.010603667352691979,-0.023626827952341868,0.021594363704708127,0.05404044302256912,0.0003692605084893477,0.010535734782083667,0.006977945473948118,0.01576367512423807,-0.06594876532329984,0.00023161563248414067,0.018046771132530805,-0.030520865882194045,0.07769616311995507,0.10209090776466874,8.577169997515617e-05,0.007512379416268437,-0.036480226387300044,0.14453201825322864,0.002396674012929842,7.405993264852898e-05,0.003697260332553199,0.008557812725347438,0.06015666491960275,0.0020810179478197906,4.878402638024914e-05,0.008680425860723671,-0.014480795650147135,0.011737707656416156,-0.003289118394304067,0.0009513797930367978,0.002604645105343228,0.05447147730244939,0.15105402217115654,-0.001213181776548666,0.00012609525559163315,0.005386752578749178,-0.015420103005703909,0.011979498493813929,0.00459294558239416,0.0006291772281487425,0.00044692031496011307,-0.014078165617053748,0.17489254781780483,0.04491906339028383,2.398819413228675e-05,0.018151353128199505,-0.01276686518813253,0.0350158242657829,0.012628594763092882,0.00010831059866544836,0.007566895107992532,0.004361997318978621,0.02407685223489264,-0.0006921941051705379,5.099733778877359e-05,0.00520227416854144,-0.02558167623074494,0.01958506085142024,0.012864916452225771,0.002547575393031898,0.01192650672961889,0.02005165481939883,0.1308287828901849,-0.09385716185649984,0.0001261243747994149,0.007296980640728413,0.04978293893157483,0.2653436514423203,0.04386036344422549,0.00029052269369537966,0.004792788924348135,0.07399854826446094,0.48166523969128483,0.10656054643067345,4.327517670401307e-05,0.0033320288176115175,-0.00801419392833081,0.04875821797872097,0.0013571629714397334,0.0002708936533093881,0.01974999884164535,-0.05010942147356689,0.6499824861663628,0.03595124886890892,3.1992484285294803e-05,0.022997063401786207,0.014286157070166006,0.12605282592038952,0.00832234854753561,3.786557389260883e-05,0.012701580015657606,0.04892642152319274,0.1560619058201387,0.06775907684574493,0.00010098789091436183,0.010463666680291774,0.030783573588865295,0.21438111555661973,-0.002553335180112262,3.316842764405349e-05,0.03205700199941629,0.004548869861512836,0.01527650772637184,-0.0008143276075864122,6.601715591289436e-05,0.0012632208717787544,0.0018612037323295849,0.007954474166631876,-0.009974183503374642,0.00010698700613502784,0.007545778468133301,0.05396553259233966,0.04412611798788129,0.02097420796751392,0.0006990307925702348,0.0350611283063991,-0.046586406729845195,0.17164629619782976,0.1382395065851952,0.00011423805138131896,0.01349823421010449,0.015708457241909942,0.051156518648693854,-0.2787053899090378,0.00197084162928486,0.002774398536157464,-0.009527412613502954,0.08652646229633854,-0.004082189809264316,2.8314455981856318e-05,0.008257663836541335,0.023599693154256415,0.06774839523124104,0.03168442621622879,0.0011388816973517222,0.0016801741125200772,0.02550084036624588,0.1865523470585874,-0.0038642896679544235,9.102892594033398e-05,0.021005383155909964,-0.001967765972058149,0.0031411081354168605,-0.03997892256629935,0.0001478549759060051,0.011904132921778322,-0.0038336762647819857,0.005699425782729992,-0.06816479605869025,0.0003860897278894415,0.007516078580873001,0.006023829004961119,0.026042313315168226,-0.023692569307962357,0.0017928477762200838,0.012587464562174591,0.010581434622949488,0.03670713630557846,0.002129472621977437,9.248779358696989e-05,0.03274233167749893,-0.053032197965980694,0.07531230126479777,-0.0019039732628178987,0.001750454799290064,0.0001879659263208215,-0.010241994865193872,0.03584088145949669,-0.022157427357537538,0.00011321967613401488,0.003776952228466572,0.01507217214340279,0.03779553538245153,0.0011756731969470556,0.00016165744860484742,0.002756759910362017,-0.015714893955567518,0.06280783372873897,-0.016505885919265127,6.106770023939283e-05,0.004828058147636059,0.042927617355402965,0.1380320345934337,-0.008629120841516992,0.002947643469879065,0.014113910757891859,0.033667947849426394,0.13019832549844873,0.04322211666311191,0.00012863282800992695,0.033651673002449624,-0.014599629484124788,0.08947081567739007,0.010539404287706645,0.00011833718168416323,0.009446178724544096,-0.0036577245532734004,0.019698452794725898,0.0011405175775362935,8.782690534539297e-05,0.006261757715497116,-0.04663883886069064,0.1856646111738448,0.054789017066616555,6.313439048028361e-05,0.007256791318262248,-0.0550192148568463,0.12656647005536897,-0.08566171602761002,0.00021194594641746567,0.0008741404084191442,-0.005962764950802494,0.02410381798161678,-0.017519318542416947,6.151431989118946e-05,0.007836550947959816,-0.020545058882923756,0.22273364537472456,0.018743308619683725,2.379867897471819e-05,0.015510514153370871,0.0014931064769743386,0.004883107682417122,0.0006267516185162929,0.00010688172206417945,0.002639825883970941,0.0002950724659178217,0.0013744201362940274,-0.012573516759806306,0.00033840529339523786,0.005012423778749891,0.003466240289163291,0.013784768191404428,-0.0008747725409676385,0.0001440227153206626,0.0027158481785233696,0.0013129491001368843 +2018-05-09,0.025044004566174213,0.16833884009111638,0.0037604999020717216,0.00015732800216386995,0.008991308282133079,-0.05697265645574215,0.20767994422060096,0.07663996349159127,6.5823722303483e-05,0.012814816127182882,-0.04001709221481781,0.11154157247069878,0.02990184312402742,0.00016596097203736208,0.005751606383187986,-0.004200854140432559,0.0037733057254137584,-0.00368868385204112,0.00037573656803585224,0.009675700996883696,-0.016077666488582124,0.03727285554047243,-0.01887472595836025,0.00022569821362859087,0.0153736136610027,0.0017776577763349126,0.005234355564003742,-0.1312040874764494,7.415350377051663e-05,0.008479452564245957,-0.020271335174971195,0.07373952286094747,0.014060234551317755,8.066253871962048e-05,0.0012879981760773591,-0.010191508249046228,0.0954375732111836,-0.0754718575496596,3.661994496429699e-05,0.009465694573564689,-0.03198347126317541,0.02553046107246471,0.040799286285472525,0.0009660769623621782,0.003922174976885227,-0.011298346611736947,0.024140187921734457,9.200694333636029e-05,0.00016365758329779933,0.022188819253759953,0.002974915740216779,0.0021843643954168345,-0.10365142710375055,0.000665692921120504,0.0027598562663368443,0.01922706149021365,0.25695303414968423,0.03089233374041658,2.229882372419339e-05,0.00032829441806628756,0.03053978506524659,0.08783588129566999,-0.037451662088491544,0.00010328685434690389,0.01244366032980615,-0.010211743327412568,0.049460121058652766,0.02295017278410183,5.8117447716344094e-05,0.008146043538008801,-0.02260018800446933,0.01961756837625925,0.011664541330844672,0.002246931586892909,0.0042564900383021366,-0.004118034797411278,0.027722762610729926,-0.0523204430687941,0.00012223782497510958,0.011558692067003475,0.00483668942039229,0.026990510062387407,0.00088349326208435,0.0002774887246397538,0.0036531382476054893,0.024705207309781655,0.13314308738983507,0.001417426108833222,5.2267392558475173e-05,0.03841771907750498,-0.0001912702679264473,0.0008344414260946,-0.08842645668253159,0.0003777795257159755,0.00866107967617243,0.07935215479687939,0.9285789256693467,0.09396523291455859,3.546256400975903e-05,0.016466007350395658,0.02972993231219989,0.3130167191923473,0.08973328491216286,3.1732778063827614e-05,0.004570706284877112,0.05083178379272763,0.1468227178091522,0.03998902747843003,0.00011152310363148387,0.0019117061116664873,-0.04011719308084034,0.3212569944340177,0.009734942392644073,2.8844985358781426e-05,0.06714713152840503,0.007675801914935125,0.025780257380110062,-0.024072197452499028,6.60106321903988e-05,0.0013497632256745597,0.0024177355080871018,0.009756725088761508,-0.003136975350499449,0.00011330610647428462,0.01013088443165723,-0.011965377348861047,0.011725095929873232,0.003073605702070749,0.0005832913770109735,0.012420325359663571,0.03499500616583434,0.11258058566286853,0.04985626837691243,0.00013083639817935925,0.01654019668641699,0.030936644488183094,0.09168071429713806,-0.007979284736603805,0.002165780269948733,0.00014382954585132036,0.028445681030208184,0.24097019809752007,-0.012100135872190327,3.0355346628868756e-05,0.011970809730715397,-0.01989632019714616,0.0637107241480549,-0.09518671554095676,0.0010210135129290888,0.007932373461045937,-0.03464087004070843,0.24882028395582192,0.06440991627074456,9.271044232195508e-05,0.005131729202923205,0.009015187132010436,0.014841793273153407,-0.022931167183453886,0.00014336190197723717,0.01040863434000907,0.0017774669400613427,0.0022145688034641915,-0.011244555916990992,0.000460697937438966,0.016523273892405217,0.02710878893845021,0.1355165613640815,-0.011998212961064738,0.0015504868392391526,0.014832997637551974,0.006298081963817629,0.02163284115380786,-0.010132464702313881,9.340822455310236e-05,0.02464473865667156,0.03313098298454538,0.040125606126976666,0.04251400773810736,0.0020525318616512016,0.014283593779140806,-0.03621019418793112,0.1264861759475385,0.03997379011954114,0.00011342370451233553,0.003043329513550257,0.01777720163096594,0.05028140668936526,-0.015263953235312004,0.00014332315348137572,0.004811574225045924,-0.01508587018960359,0.07489537163434776,0.003907849883299184,4.9161973834114496e-05,0.03809106305527819,-0.02992141542210111,0.1115009883867981,-0.022597838543979905,0.0025434398687516403,0.02210672128323469,-0.0010360346333259565,0.005488038103808558,-0.0066507464783276595,9.390694802908781e-05,0.02527903062483026,-0.0033957493837793707,0.0170232215721285,-0.01577466949449156,0.00014466206594572118,0.02166297086060717,-0.0055531438921281265,0.031060722066623428,-0.02071944288378983,8.456216202835382e-05,0.002358598888470382,-0.023008687944279974,0.09447374066986279,-0.01686877872236987,6.121081153128747e-05,0.0023866051863669115,-0.03575382818124881,0.06695453840979516,0.0030055344398455296,0.00026035859695894677,0.03162082558198766,-0.01086954292004968,0.034954558329282286,-0.01345136421769899,7.732534007604188e-05,0.00793714839671026,0.00923298094262685,0.09584124590333457,-0.0028052320912544735,2.4855400983878028e-05,0.004036137494705652,0.0030764564534891026,0.00858447891456357,0.002590173657204224,0.00012526963108360474,0.0010425237131992835,0.021020063269382678,0.09116274923385145,0.0325033162359417,0.0003634499185828636,0.012641542488544641,-0.004988043391465415,0.02654188653941794,-0.040721507168766616,0.00010763914277870215,0.021873403778679527,-0.00042761015597506444 +2018-05-10,0.005686349589208437,0.04713917866179901,0.0007771767565338612,0.00012756693725083517,0.016695091057184766,0.0267325944211638,0.08228996507914878,0.027886016041934338,7.794796078807282e-05,0.006184849093817315,-0.0044154704258257006,0.013711493847319367,-0.050031393297502245,0.00014896677358597736,0.004753271880970503,0.011771000845739277,0.01176821403648695,-0.01789609997877148,0.0003375753204662853,0.0013873247816615182,-0.0023919598848775223,0.004706319715685334,-0.03358959138820715,0.0002659317780498556,0.008226143146232255,-0.016959758459487072,0.046049459824393235,0.03148362893549025,8.041588807113251e-05,0.004169014779155497,0.034371589129299,0.1136956402631597,-0.019067420287454482,8.870450060240096e-05,0.025007993750995272,0.01792305213905169,0.13351105322394163,-0.013275159172276476,4.6035552606010026e-05,0.005998737678156472,0.015136724471378083,0.015145556504411975,0.017196127000943046,0.0007707108211786598,0.0031305082545669163,0.025884425267798102,0.05180504586081022,0.0004835782597887756,0.00017471425888571015,0.019765099356822094,-0.0021495986732893526,0.0013688422154101317,-0.008180132991509938,0.0007675883120038786,0.01814007458605534,-0.008240018708788589,0.1106559930197515,0.01787239217633118,2.21909577888166e-05,0.0008629454960066682,-0.006423243752692037,0.017693540880581927,-0.0006581425738095645,0.00010784268377896303,0.024084120764207836,-0.01503383417312729,0.0766266477649709,0.03128447810625514,5.522703749290832e-05,0.0026519493121794505,0.04240246955767565,0.033442161168144885,0.05959841254996405,0.0024729753534747474,0.013705803300253882,0.04475419526016115,0.2725618056342097,0.0568083934952797,0.0001351203814154902,0.03105673068771763,0.06187646619614884,0.3654672115606642,0.05607557015971127,0.0002621714011789144,0.0227202779267975,-0.01816749558994261,0.10412835802167755,-0.11908430338203078,4.914586680443514e-05,0.01966359101716158,0.029296127695778117,0.1462779432521899,-0.13215236048795728,0.0003300792182963451,0.011981045552753804,-0.06777823255740999,1.0452283007809422,0.0749493955993957,2.6909728163817735e-05,0.00940293499855654,-0.001940204533750197,0.021680663362426664,0.006698705298396781,2.9898999642943408e-05,0.00810620996238683,0.005765388994847682,0.017170874387578847,-0.00012863724670332617,0.00010815807757067115,0.010559205301059074,0.06647632456841464,0.5551945535957948,-0.02220925937118042,2.7657580084545018e-05,0.005519050685173589,-0.011668291322605901,0.03470950401364114,0.001965155545054751,7.453087812473755e-05,0.0029909720889488072,0.008383986592577875,0.02703847541008051,-0.009237941325570721,0.0001417806525514317,0.008327240630507098,-0.026348102552449397,0.025320384482175044,-0.005139681776347118,0.0005947776087213489,0.0009503851429614604,-0.022792175052767268,0.09622133951750375,0.01820924258904826,9.970119927898844e-05,0.002701966468707544,-0.01637860900526191,0.0594837117231419,0.01891864862587688,0.0017672505679221307,0.006824083818877344,-0.0514596292772686,0.6426911527119405,0.02700445445071042,2.0589534454875374e-05,0.03177184803446158,-0.054542263493993035,0.16073287625639662,0.1044711805121539,0.001109429502260686,0.01462885810064626,0.05305266399002033,0.44365907570135504,0.09884281785384105,7.963123837195017e-05,0.0025814038942360454,-0.01560626875361545,0.024132360352292454,0.030184367481930673,0.000152631673553205,0.0007557414886206334,0.014612202212115628,0.022894711324501563,-0.0799505703932288,0.00036634006273785386,0.0032595410385018865,-0.01691674682756477,0.06909673195097939,-0.010721984142785504,0.0018976219000171163,0.007384338316747303,0.021208269530377712,0.0878891599723075,-0.011906519666636447,7.742126996652154e-05,0.00931803587477631,-0.08492411766394439,0.1160974710319772,0.05176028861934385,0.001818383473577234,0.00024222847504939689,0.04312474724794949,0.13459755206292107,0.07067336963925268,0.00012694202962897782,0.020862904247200772,0.0048724692082125895,0.012811668107035596,-0.013089725846707588,0.00015417139420406225,0.008783577707737997,0.047933644838868694,0.20788190486280822,0.005156302950847473,5.6277875064344516e-05,0.001914831998038549,-0.005881646087322617,0.018523255087858757,-0.014322310875321908,0.0030095366661406003,0.01294679744315055,-0.031046558312675613,0.13464297213650178,0.03194114225129834,0.00011470182926831489,0.0032107484121337757,0.0310382324117206,0.16395399155508525,0.027065004108697315,0.00013728900923191446,0.02075418754372273,-0.005823237223967376,0.028686124259632868,-0.013263128179151715,9.601549073688283e-05,0.0007808820561479663,0.09458208235531151,0.5058730533784498,0.3096528303169085,4.69910035551431e-05,0.0034486679058092218,-0.023766634879602337,0.039640526576494306,-0.01127538826547608,0.00029231942344101595,0.005262283909862041,-0.04159666178191826,0.17101871842505634,0.08424516007326105,6.048242662925583e-05,0.003019335880236969,-0.017241875084279476,0.16653605769842186,0.019236712908768615,2.671206729441469e-05,0.014679364962393847,0.018256311742715452,0.056189311049367155,0.02638737804775627,0.0001135712224679021,0.012531625832742265,0.033100159904688474,0.14801945628468557,0.06916575159422732,0.0003524838781963598,0.003284830621510401,0.049781618908606634,0.2571953198067876,0.06433041202006116,0.00011086073417719695,0.0016407145188738852,0.0051968971219174005 +2018-05-11,0.0057216289928360455,0.043522525571830964,-0.034237816540621566,0.00013902477095555828,0.006220472341359696,-0.022166002769874224,0.07945649499113902,0.005236174508518749,6.693734867024541e-05,0.016350117604545265,-0.07509490979822211,0.2576811005256222,0.11773141644709005,0.0001348109402816784,0.0025110483848037263,0.007602580764199421,0.009741752206562619,0.0017715747601877792,0.0002633854744506896,0.012676039051021964,-0.015541520640543,0.039920620901440454,0.007813173884362831,0.00020370139089506388,0.013078215853718593,0.02368741670832409,0.060994416425155004,0.028517767505074357,8.479580345635047e-05,0.0057841314366049,-0.041407659375051295,0.15499192370973758,0.05034338309347059,7.839014516409296e-05,0.006786809853075743,0.0007289617561150874,0.007542538337399761,-0.04106799835967717,3.314254331151456e-05,0.010570456556534732,0.003926399592916532,0.003516376897108571,-0.0026033182752567973,0.0008610807186618142,0.008211254799434613,-0.03235323908772893,0.06946634377272792,-0.054188150711166075,0.00016285654324539936,0.016026773871072337,0.004617304769729291,0.004018750001820767,-0.03594889125499106,0.0005615932889373125,0.0014344245765159293,0.008669802675695056,0.14536078689328447,0.00613495225238136,1.7773982047771845e-05,0.004239051899337824,0.01887149831729601,0.052195191520334916,-0.020591936760946564,0.00010740559987837391,0.007260919002735728,-0.006905720750212661,0.043314472621637026,-0.043438942899043057,4.487844493557085e-05,0.005209932942778619,-0.0032172204431769134,0.0026708923681174664,-0.13085870261819307,0.002349348287681627,0.012902919406847967,-0.038859134946882014,0.2764556526234458,0.03480051537297383,0.0001156697406750539,0.0014782681336050903,-0.011863792308718358,0.0712767854296224,0.001976641555271086,0.0002577410908351857,0.01017571193123891,-0.016040785844471817,0.1086545452220287,-0.014646766009859641,4.158519079000336e-05,0.020371809106247727,-0.026850296986218217,0.14194072760275717,0.019061996845885682,0.0003117660883529131,0.004653604408412739,-0.05380465536090941,0.618521354665943,-0.017432020316072452,3.609901790205255e-05,0.010277481829442157,-0.003910931971201385,0.038312985051257444,0.007671430538200577,3.41048371858724e-05,0.0077474604644681404,-0.05068049354517004,0.12260670706852436,-0.00810382577409689,0.00013315251164531557,0.016785961387368663,0.007299646757139818,0.056699010978822406,-0.015415617893813132,2.973847794844676e-05,0.007647894245658174,0.0021272001658540663,0.00657862713530751,-0.0008407499572779166,7.168866095129357e-05,0.002483316353894467,0.005788499692320683,0.018771640139151252,-0.00479297756953714,0.00014099781745829888,0.0016509449618581846,0.04129148797413626,0.040722445113985706,-0.0019832378664734703,0.0005795651302365782,0.0254630268532023,0.03206810020332257,0.10772184522050321,0.043631511231359874,0.0001253012654288658,0.010473870372672271,0.046259948265475546,0.1550696755109946,0.049966291063367745,0.0019146854601427771,0.007130689886944232,-0.05938011932022783,0.5279905488271392,0.050941568495790505,2.8919921689007765e-05,0.015625849800389904,-0.028337679517518432,0.08775485690114018,0.014939662541808046,0.001055758026266489,0.01200510343075702,-0.04337477861260521,0.3000969089669031,0.0759203275773463,9.62501449501068e-05,0.030004196541901732,-0.0008835866222910748,0.001123161622574294,-0.042350737670648154,0.0001856744998026417,0.010945474586803068,0.01400515385924459,0.018872146529897802,-0.012887929284670805,0.0004259616476096244,0.012135117303268361,-0.005711560900900379,0.02274397657308554,-0.0010777169271509103,0.0019464298389101633,0.006398562916859784,0.0016453885464519328,0.007291895069221601,-0.00870439358709008,7.23966431897065e-05,0.004540028703836414,0.002724268403634191,0.0036274746993034007,0.004461651555259157,0.0018669070391335823,0.001892227808158785,-0.04067592624100443,0.10692698514760772,0.04141841326905213,0.0001507183620657931,0.0008147516158094658,0.044007611535996305,0.11113261973672575,0.08287078128392954,0.00016052645770126068,0.004515107789917996,0.022182353532074393,0.0944763952377182,-0.02600140046823277,5.7305754284137755e-05,0.027101000851213027,-0.012614498320832595,0.04324636000039288,-0.0007675942158209775,0.0027646393297382217,0.012129203443569067,0.02988727372724681,0.1600468318706166,0.032020435955618536,9.289231584380241e-05,0.00751582252731941,-0.035296945603406855,0.22763253871461125,0.017521834394635127,0.00011245106374983101,0.021506544997930498,-0.008810132404673933,0.04111197061080724,-0.0045539040676109265,0.0001013591219841402,0.0021942692258019284,0.037597122456125745,0.1792561335578835,0.02412441913529904,5.2714243345529e-05,0.035898400571900954,-0.06822426938247585,0.1393100629047985,0.05544577917018324,0.00023877332063879374,0.015356893861833578,0.004585027400683987,0.017836686448360867,0.007530124794864135,6.392078993843394e-05,0.009424234436036818,-0.008409859038818196,0.09858781679896116,-0.01735196560717164,2.2008819696582142e-05,0.0070747913667979475,-0.002654055448055422,0.009268449405337935,-0.0026608857730739477,0.00010009488220694346,0.012132166886221893,0.020731683632839466,0.07722907770932326,-0.018141482118587727,0.00042313767493649333,0.005757614599844309,-0.01297382848484853,0.06269683651834429,-0.06849709589833441,0.0001185207305971439,0.002213154623689894,-0.006209488745400743 +2018-05-14,0.0065542820883479755,0.05367548576369465,-0.013877399806356173,0.0001291325506502945,0.004874667678786196,-0.0009584011614591046,0.00352187370327888,0.0001505922234402098,6.529562453079023e-05,0.011475966631606648,-0.04680625185864238,0.17135413923663764,0.029231704903622382,0.00012635908428682328,0.02660653002163188,-0.015288125758807284,0.015468076622928558,-0.04769933337849594,0.00033356908073447827,0.005800018791154521,-0.029192195178642726,0.05703080250871121,-0.02396012219561964,0.0002678274235840611,0.014200742744142496,0.016754969149531448,0.04780063687632433,0.014175319022768274,7.653440131713496e-05,0.000322102078067067,-0.037157575045937856,0.13655716134133203,0.026672274579551514,7.984040630972844e-05,0.011796812340875809,-0.050616834916825754,0.4789218725561936,0.08805374273069347,3.6243399629310904e-05,0.007859477709953397,0.004888748210928229,0.00409414539639773,-0.014062459971386948,0.0009208294380908315,0.005338905421808878,-0.006305952859876207,0.014409231776817476,-0.04205604111920543,0.00015302830895021503,0.007208482807475377,-0.006594877511853358,0.004942165056817398,-0.03135141940927855,0.0006522496372294084,0.011363194350445551,-0.015414258280218121,0.1957721846113471,0.030850484552990876,2.3463588530137292e-05,0.0015898979239566226,-0.0425707429097109,0.10888621192147006,0.07069937815121888,0.00011614202068789924,0.006943052769461911,-0.012398405706166848,0.06193610857369995,0.03150406829871067,5.63486799429502e-05,0.0031655650098555204,0.026427316731107535,0.02220066280155485,0.0180317058752371,0.0023217213860101376,0.003753934370505951,0.0015740014288910433,0.009076400033106247,-0.0003708567562007776,0.00014270644956217775,0.014373259750242699,0.03677522496581185,0.20527956946315373,0.023765895354761712,0.000277407272202284,0.019970771717099465,-0.023413444266642085,0.13723772489198954,0.010179111768917058,4.8056568003200974e-05,0.003904266934188952,0.06217711927909859,0.3449632540551711,0.1449737905774991,0.0002970602679595923,0.00022199303459788725,-0.017986470198151312,0.23585006384998397,0.0029793764398827454,3.164755589404976e-05,0.029668288146062483,0.0009477916448385604,0.010768164904456699,-0.007717960176010808,2.94071466428152e-05,0.0026466306197530376,-0.0316402611376812,0.09643717932028437,0.003171020382835423,0.0001056862079963311,0.0052891283282064635,0.016254693538536716,0.13526871922237416,-0.0013624567007331145,2.7757080437845894e-05,0.004003697906883995,-0.026080118879841328,0.08683142486241374,0.019843428198283827,6.659015431876303e-05,0.004781138635961852,-0.009465204654848788,0.03658807403899537,0.023745143767533936,0.00011828755498983496,0.012407511236568174,-0.05239391928593538,0.0506148339868768,0.04604535808093119,0.0005916687493179996,0.034810607774964274,-0.012467020267254403,0.044000392426235824,-0.035250705634708716,0.00011925926397947704,0.005094066332838527,-0.07676736009428257,0.2361541041257666,0.26082613789629056,0.0020864130154841596,0.022969823147305786,-0.0491544515705699,0.4764309074298818,0.02671962847641024,2.6530480921528544e-05,0.006096782005098635,0.04166625136210444,0.12550647449280522,0.08138982432414378,0.001085399379539093,0.03241604111107656,-0.031950408842337054,0.2375691349483794,0.03364797221183683,8.955957969563824e-05,0.029951497976053166,0.005450741761733786,0.008185301836943076,-0.06189520691010634,0.00015716878450686017,0.006516469794608321,0.026944597647767306,0.03863293816804561,-0.0028411540037931123,0.00040032976134861615,0.0004340991752170969,-0.03838192187284672,0.16729455426485532,0.03651355353834286,0.0017782599774517683,0.011012493517725172,-0.0079795650059707,0.027057720764261464,-0.07691629540677035,9.461900504097578e-05,0.011819077181556016,-0.07806292186992259,0.11249924329909522,0.06658364978913457,0.0017249336452230333,0.019566925244490073,-0.01672503954107486,0.06030774453604307,-0.021545672563387904,0.00010987783742502236,0.021953065056560576,-0.021155812296435792,0.052723560147036545,-0.09469930873143802,0.00016266171727855985,0.0008242866233009935,0.009641311673504908,0.04162077845733929,0.00025811717809672843,5.6537922826124826e-05,0.03781675632037597,0.034777255202664135,0.10341272408799118,0.021652967742811998,0.003187420649247027,0.01517968709813683,-0.015346395568933613,0.07416416716106553,0.002725725649388008,0.00010293257443233694,0.019195139375863042,-0.010684392141764304,0.05775842194879578,-0.11003596174688024,0.00013415142323407338,0.007293916381422079,0.03151130299442366,0.1712488915065148,0.006176749499338826,8.703366886492116e-05,0.0050133346488907705,-0.060162230971256274,0.32360799728083645,0.06178620485416565,4.672529820962161e-05,0.00521898035809316,0.055298222302013235,0.10003218948019499,0.028777967085293506,0.0002695260766150965,0.05537038857359685,-0.006822205675249494,0.03259695467853526,-0.02806214106382302,5.204297989297126e-05,0.010105807811040802,-0.028311362080702885,0.26634166210321575,0.044109119511092365,2.7425398323343238e-05,0.0019527596163476735,-0.004295643263383959,0.016215408029790605,-0.08040743818207763,9.25996384297415e-05,0.0019330001939587285,0.00661107887212809,0.029955903146804665,-0.008931081906649825,0.00034787073245010834,0.0099921640249204,-0.004863794270693983,0.031127322299778062,0.003317508927959763,8.949633079629671e-05,0.009068770808309222,-0.010123219157998752 +2018-05-15,-0.019709146206151756,0.1353869323583251,0.021155278960422946,0.00015394927469523982,0.010308019494434563,-0.04106825001397115,0.14605521304220445,0.025781604151629382,6.746828351956701e-05,0.0005703018891319126,-0.010088562661174734,0.030200465575983746,-0.0033266478860610755,0.00015453002046628375,0.009328865156482772,0.0026675132768394874,0.002648160996427977,0.0010761243143537775,0.0003399617539794311,0.004419812707409055,0.018805440838011167,0.04520438445635593,0.018009828250958836,0.00021767107949270006,0.005043587848166285,-0.0037497248256832495,0.010646820173459415,-0.0012489682846731126,7.689997862830896e-05,0.001332485318956926,0.013092533138145755,0.05117883730587106,-0.060176863559728615,7.506251676743728e-05,0.005618615646258254,-0.039458458385409186,0.3616533048531703,0.019466820340779532,3.741504656316164e-05,0.017395663210845663,-0.003020942533212879,0.0023997406342494607,-0.05189788656678162,0.000970784749326423,0.013370227837611449,0.056153097764424516,0.11643103105895221,0.09571435970403662,0.00016864243439583868,0.005456511361200652,0.01250747836504839,0.010440619085377637,0.004508479225830218,0.0005855552340120723,0.008180188336700426,0.0027378587290533257,0.02999541344211354,-0.06382037919944976,2.7200630579315418e-05,0.0022447798795555713,0.029618453135182736,0.0828846862158328,-0.07590674978487275,0.00010615467214120078,0.000975489466463254,-0.003031977801873966,0.016308833955269685,-0.039783190966080524,5.2331709826095205e-05,5.85300916233487e-05,-0.04276972913360529,0.05086382095312844,0.07959663958815304,0.0016400250840194384,0.006283946425130249,0.004910514400049321,0.02926017944437639,-0.008563981609205922,0.00013810268159006482,0.02230756739360608,-0.005397111175995423,0.03184835842968107,0.0006659503163881613,0.00026241130673628995,0.020804495350495653,-0.02345932753029381,0.1801292783397802,0.009108577661167568,3.6685311042254905e-05,0.020597006519764417,0.03961559226682107,0.20175034638196812,0.022675947971704948,0.00032362247248611504,0.009882390945807312,0.03701682277685219,0.5141006978685707,0.005395047907890904,2.9880040209465306e-05,0.040066156046104945,0.00922998312740639,0.08310671618086614,-0.010009013563686895,3.7106201101070685e-05,0.007954022566798748,-0.023608648815191566,0.06974478711401044,7.174684966326902e-05,0.00010903906901561755,0.024473519114634287,-0.019958618889392578,0.1428064863181316,-0.04466723076426804,3.228307743132998e-05,0.007688318570709587,-0.016296994404117478,0.05286905217833916,0.010836162186258106,6.834132177847411e-05,0.018992866823526272,-0.014751194676293235,0.0629810653646459,0.054525326122585864,0.00010709415967463623,0.0015466020149751275,0.021371912051374935,0.020048066530954933,-0.00021605055033698193,0.0006093214190210718,0.011241938719564972,-0.02362174331910191,0.08552032584924905,0.027134363479582414,0.00011625954211014799,0.007912497854175275,0.005447821471296683,0.018237396334326507,-0.014294664283102105,0.0019172520263007551,0.02072836499369668,0.031578664476543346,0.29685123383254836,0.020607795589167623,2.7355023727534072e-05,0.009188764392307529,0.02202597336448968,0.06687970676172675,-0.04923046027558729,0.001076742906227895,0.0007778563177864748,0.019564542269382815,0.15151662377064562,0.007856779455952671,8.598744614349905e-05,0.0004222188310910929,-0.011976132979181155,0.017779058170293207,-0.10331782607692627,0.0001589839361186697,0.002043685145128084,0.026833496218347824,0.03456870872078954,-0.08722116136885114,0.0004455516112128562,0.0035637979744466003,-0.003624919371544675,0.011666806336437723,-0.0005117616687641731,0.0024082230196477614,0.007892816106575646,-0.006994117671605168,0.025327220509194347,-0.035449195144924874,8.860041857811585e-05,0.010732642250864032,0.015284006042925949,0.021561148212463754,0.007928611286165692,0.0017621485123478287,0.01706130351333841,0.034925981694550405,0.10341521447981772,0.019020412613023535,0.00013380742757663686,0.009503809078049234,0.011556371660561443,0.0306855928452587,-0.007793648374858641,0.0001526677687603717,0.012942721032751283,-0.02314476786279267,0.08595021800484727,0.02092513617072023,6.572336208625057e-05,0.013612501088921808,0.016450454999798268,0.05541598912178518,0.000733434356629499,0.002813590462172779,0.028306858793564635,-0.000836692109599385,0.0042747383780906995,-0.047860265116389494,9.736361802181106e-05,0.0009339812871351882,0.013657183676035065,0.0737775652296133,-0.02545424679760465,0.00013424484442585937,0.0075616228408519805,-0.017993733823018554,0.11348882060282454,0.0015571879646676151,7.499234044198621e-05,0.004477736189707881,0.04400497941587691,0.22986291311081886,0.0340003486574018,4.8114980126711536e-05,0.00125568656404109,0.011485330972573694,0.020888946089929642,-0.0018654469206270095,0.00026807504019004476,0.022660965171181376,-0.024890582603210542,0.09572404228523823,-0.02691570145932474,6.46589142991732e-05,1.4632552331076808e-05,-0.024121125665734197,0.26306724123970987,-0.01247463918203477,2.3657131628669648e-05,0.003906545768314169,-0.013033648778010389,0.0319226939653191,0.0023973034926596235,0.00014271691319116923,0.006736543961285524,0.014370493492682681,0.055452127891870186,0.0016081256325804125,0.00040849000732053574,0.007767666052994177,-0.023363339993602832,0.10056236077568464,0.014742915709773971,0.00013306727547438165,0.024188676108555376,0.002234562163837254 +2018-05-16,-0.0031262863885541652,0.02177611811864622,-0.024732412959270967,0.00015182206008225563,0.022691382022704588,-0.016739628767692253,0.050643207974358416,-0.00637972347670288,7.931131323305954e-05,0.026536354086455098,0.06941300626978995,0.2583774622510797,0.10564799368643946,0.0001242749022524552,0.010517641203492429,0.015902771635383024,0.014725029742969575,0.03313365758607183,0.0003644890603794988,0.004648516237749751,0.04181548355767254,0.09277172951501288,0.0698037280635407,0.0002358409646602721,0.0048964744772542566,-0.004564771544931758,0.014114118196613309,0.0035250193003718957,7.061745093522422e-05,0.004891794208487616,0.026960045675676555,0.08501438700018461,0.033537370513549,9.305035860287485e-05,0.015755399403790452,0.001934542790456653,0.015273766833845574,-0.006944143442227455,4.343409715041249e-05,0.00875233778287505,0.015253008602327214,0.012499519047509526,-0.05603503014949485,0.000941037649266595,0.003944814876400748,0.01945701097899935,0.04318671227954101,0.007997808785327897,0.00015753892115254932,0.014532233683924476,0.025559999530105904,0.014664731268974015,0.07209276876315189,0.0008519440826910947,0.0022575447646794125,-0.0013827681546686513,0.01920200131717628,-0.017037342349360524,2.1459799667534802e-05,0.01201324255047367,-0.02297142697053465,0.06289678186820093,0.025136924874710143,0.00010849521550122286,0.005342825823139266,0.009858171482930497,0.05187454684538467,-0.07324099895645714,5.349385188085275e-05,0.0022462854077772106,0.0283942096598674,0.02547211245859401,-0.08659838205084303,0.0021741414398307305,0.015677604794288928,-0.005848875534838172,0.03479734501269079,-0.007341985793133831,0.00013831789729975912,0.006929273713174394,0.012500835323462967,0.07405899532874069,-0.027861674545995113,0.00026137825238575725,0.012788050554503593,-0.007204854474432211,0.04014628598322732,-0.0015503618905853148,5.055228551861886e-05,0.0010104718803577468,-0.05100144869245006,0.29078256486754983,0.0845119367173284,0.00028906862513486034,0.0027276751153382925,0.023896714877991592,0.3086830974486668,-0.011687543784414247,3.2125920746401305e-05,0.034615758537840664,-0.007858842673012012,0.08324542737240538,0.0010606781784414925,3.154132377247906e-05,0.013517546087233639,-0.004920357377559023,0.01331257296488607,-0.009857354335895714,0.00011905767643474355,0.008990357250692388,0.043557464127072155,0.30592518602013946,0.02471183717060049,3.288817168608438e-05,0.004371902855897067,-5.889194351179268e-05,0.00020215300447579333,-0.019943777298564506,6.458818324882308e-05,0.011700070917375769,-0.00027532993788823994,0.0009447784784112639,-0.0003654248008668175,0.0001332514797978221,0.008758908587704799,-0.07493792349708102,0.06331142556991406,0.06560755455209691,0.0006765425618510503,0.010038574912045892,0.011564437908935977,0.04265094357533584,0.0060547919087574256,0.0001141252900113002,0.021385022147545653,0.063107222967597,0.2708811581443126,0.07572738095462359,0.0014952694028154243,0.0031396125299739267,0.007624833544146956,0.07351010908636274,-0.019699506650144274,2.6672608792331554e-05,0.02088213359234551,0.03320237270454719,0.08377060001248894,0.045362395784644766,0.0012958321895442228,0.021249581129529287,-0.001067438312048336,0.009047127883984828,-0.00040793199691189184,7.857017134574204e-05,0.0029224340464041043,0.021726219772708763,0.03544615079204323,0.04121808157326061,0.00014466400154957112,0.0059551452206947795,0.018199664111310184,0.02583688927814515,-0.010351408738255422,0.00040432171112415833,0.02222083054947089,-0.012949342392611784,0.0507466985386026,-0.005959954087472656,0.001977835929314346,0.011670373062058415,-0.04619871951141926,0.16449940098404728,0.027387267282081365,9.010647245258637e-05,0.0001706840592285146,-0.02862657255152113,0.03615552404854827,-0.008903490028425965,0.001968212040754901,0.0014334079564357444,-0.004322205696910747,0.014183663305730482,-0.03675845933247517,0.00012073496333998564,0.005994038527028376,-0.0033836464820408483,0.008321016214384481,-0.07205094480462722,0.00016484242323405013,0.0019879098561871,0.02249739043398038,0.08196374709261431,-0.04952225692390676,6.69922039714914e-05,0.0004031276791140804,-0.06679200036788645,0.21955655193116347,0.07736500364295695,0.0028833416584316284,0.012796993788967311,0.02267963943347137,0.09707556577753093,-0.009743278306582857,0.00011621623081628502,0.009727016241283077,0.019974258584664225,0.09988639259928858,0.00781373722409904,0.00014501907259213207,0.005597674025320298,-0.011223602756790817,0.06919845692982021,0.006035307738315634,7.67157571436362e-05,0.023347680404932288,0.01804517283731394,0.10479351134381573,0.00418429728775464,4.3278684191724436e-05,0.010491123947517823,0.04280680089200437,0.0764166138447909,0.01903817412862446,0.00027312054934260267,0.028622822760129438,-0.012364038839967478,0.04255182304216262,-0.00122017769936997,7.225311334213974e-05,0.008254884101892759,-0.004541401308816478,0.043172181093659154,-0.05892154573113632,2.7140458246700772e-05,0.006679997093295081,0.0039032360017011263,0.011070570985823537,0.0002627086159645696,0.00012324342366497996,0.008092990439842886,0.02964652984981886,0.11880492554711976,0.012287214077642283,0.00039333934530823007,0.001612700464716233,-0.01307921075178951,0.05800818975793675,-0.022567598947005687,0.00012914096312674437,0.0014735807654863372,0.004963670635092394 +2018-05-17,-0.0032419757326889484,0.02337841153879244,-0.0072034336695872975,0.00014664975581769678,0.003807220894948583,-0.008015898482235478,0.02736368525663274,-0.00019721084942256683,7.028912687245914e-05,0.0024214662291834046,-0.05366248401911716,0.14270049061935408,0.007491187975366918,0.00017395724073695189,0.0242391046698908,-0.020436648277959817,0.01859011048100428,0.03154754921478489,0.0003710184922090565,0.0005237794040129874,0.026138439601536168,0.0579359009025578,0.03837075486103209,0.00023606394762172266,0.005942712410476899,0.021452303261791893,0.07699736675789874,0.028114851470956007,6.083377885047167e-05,0.006026104029203131,-0.049433752285126725,0.1568236076297976,0.05788966688080319,9.249153601419622e-05,0.00569472250659284,0.011038480564732724,0.09529966687681751,-0.017529926031389198,3.9720666688478586e-05,0.008054493838895999,0.02584006557623181,0.019753357130904526,0.029682722086607927,0.0010087823671718998,0.008502918906255812,-0.0383885938138203,0.08123175090127706,-0.07852595304910615,0.00016524878544502757,0.0032915329366227223,0.02212892571302425,0.01500551629732662,0.014264415703705543,0.0007208314824058842,0.004607536555686906,-0.016489381192076873,0.20405752908076383,0.05157021033875121,2.40810003391489e-05,0.004782147727094992,0.021941738223622366,0.05131538844152877,-0.07178127331012833,0.00012702068384337636,0.01429373201519054,-0.01788869726460669,0.12043358119421782,0.04070856031523305,4.181122887644119e-05,0.00454075146340982,0.018634139785171495,0.01744672293981023,-0.08806250014865916,0.0020831399953298324,0.012799819768395585,0.041893459376745455,0.21883192337897833,0.0544301834943322,0.00015753884395261069,0.019259992943527218,-0.029738650249641726,0.15056998168075728,-0.014146994333505854,0.000305837748344491,0.016354284446414926,-0.06268281809058616,0.3997380543996807,0.06326585327646846,4.4170668779073474e-05,0.0020328209925676664,0.009816116748053019,0.04959176473391011,-0.07301598029469704,0.0003262247894140871,0.0007952111204475852,0.07568392453564167,0.9635308243027636,0.025239275693738218,3.259629672537002e-05,0.02407184793558373,-0.006103180524763668,0.05996367959114014,-0.07167307686489952,3.400553800367711e-05,0.0023709172462181628,-0.05762648237119192,0.12524917780542982,0.040927740820019015,0.0001482074320419867,0.01100851141863127,0.09483256126234987,0.6773270203405132,0.09127906234627446,3.234085187418158e-05,0.009535437354597479,-0.018948369805807535,0.05420908966278014,0.02110244309866542,7.749561339351865e-05,0.0010543477384216328,-0.003231714961051219,0.009809273909905965,-0.02530022644630275,0.00015064155243313322,0.001280841356967642,0.02623169774423868,0.019195367176330885,-0.04200361534237577,0.0007810980201782683,0.005279844483924436,-0.028256944013156083,0.10352014256144489,0.014680456712441581,0.00011489108711075853,0.006758193143635082,-0.000305994994069625,0.0010745053760969792,0.0011103448660808133,0.0018277841361182738,0.023705691999858412,0.07410556013553807,0.7148091241050082,0.07040917585299684,2.665894153398283e-05,0.005428653009880091,0.0026543440728884968,0.0060283368656465905,-0.008971950222746099,0.0014395639921520973,0.005023032173141368,0.003469969807382048,0.025500425409555924,-0.025681623417700895,9.061579679656315e-05,0.0192617741839845,-0.0019953722643217585,0.002637594055944885,-0.1638939087646854,0.00017855061980185755,0.003606713289152807,-0.037250628761959094,0.05114097930593827,0.13612775088804296,0.0004180887497435861,0.001723336601822882,-0.01055075590181822,0.041546471142271515,-0.08293213477339445,0.001968338444195815,0.005809878546190719,-0.007267200183616101,0.025857673806571953,-0.00016471135183832744,9.017123987740135e-05,0.019700694920242092,-0.007547546669169765,0.010200335467663154,-0.005759343087775968,0.0018393676493216743,0.009904250279106208,0.014610645249079224,0.04642476856328348,0.004097987169372244,0.00012469116574824842,0.007087398278925694,-0.006055965471890392,0.01645108848521299,-0.0618351316010671,0.00014922759099573072,0.003741319367884033,-0.01993101829831992,0.069857015022498,-0.050611960007041205,6.963593135885188e-05,0.020694026051161798,0.019104266575193832,0.061799951936397125,-0.019941839767630115,0.0029299505465335773,0.03649715822440838,0.006095950053809751,0.029760898147271075,-0.0002933725048908437,0.00010189102641271608,0.023790141242830985,0.010002166038469614,0.050773291580584926,-0.011858220710395311,0.000142862920783806,0.02898339983795436,-0.0014484409270352984,0.009860448515874698,-0.006032222179474783,6.947888121205487e-05,0.017754193720376354,0.005448467501886217,0.022599148702627254,-0.030252320535558964,6.0594007997787094e-05,0.007836440388394345,-0.01544361783220499,0.025405628878461536,0.0055816703521816115,0.0002963797247846212,0.015096375406472198,-0.0261654172248222,0.10767032786007122,0.00022041835679067998,6.042908309279334e-05,0.02718632568745911,-0.00432323327589466,0.0553552247395257,-0.006378248439337392,2.015029169059145e-05,0.015576062575541328,0.018868616672794075,0.05470676592807709,0.03623374748295353,0.00012056131729627064,0.006267608715108136,-0.005433521202855394,0.01843121802717224,-0.0017101589372583378,0.0004646814121707786,0.008398475908428418,0.01405503503674148,0.07316416141762504,-0.012009393976088365,0.00011002853470668556,0.0007176113401838821,0.0003002418949608417 +2018-05-18,0.009173252797400437,0.05162400815946264,-0.1346444080657094,0.000187913605385297,0.0005627304849462626,-0.0002851526738911993,0.0010296624803858595,-0.025699047883461293,6.644970955762636e-05,0.023750366005590957,-0.037241189848226317,0.13201376613186802,-0.009438354339346953,0.0001304973016652805,0.005394365989406732,0.0013660476080494888,0.0013089445339575865,-0.004121104961881892,0.0003522187306605051,0.011070565059541279,0.008276789342691571,0.019477878088636564,-0.04875322209874053,0.00022234021992013992,0.002561567471662379,0.024740639191112013,0.06909734699860319,0.01004361824209101,7.818011098904574e-05,0.0020181986082435273,-0.05653045499909623,0.2229530305497493,0.06427066477796092,7.439760520582125e-05,0.02662767635208381,-0.052661785860696975,0.4010385445624732,0.07557623072980711,4.5030636095208266e-05,0.004730889189457241,-0.009246197935797762,0.008838173131532795,-0.0032095776170183625,0.0008067620635607482,0.0024384242939542904,-0.02818160146035088,0.06585248522481343,0.010830991410385729,0.00014964264836753188,0.023817665910376914,-0.005960238708142029,0.004588242840939243,-0.018858452864335833,0.000634953053738957,0.00693775263909208,0.023240396042776782,0.33362168578835794,0.05665210820876379,2.0759268283293532e-05,0.008074249179548888,0.041455870135634204,0.1364725805333467,0.04077389377478342,9.023845882449615e-05,0.004599952671126617,-0.005795518006098649,0.031913455414289686,-0.10805123557423968,5.111875264892064e-05,0.007795760626708071,0.021356476305805585,0.017129617519484937,0.02512148047930863,0.0024316715008795542,0.007203610338651326,-0.003021393674588405,0.019009324113893795,-0.04806891587507502,0.00013079548356959326,8.298748468900754e-05,0.009054145424939966,0.05141901882077509,-0.00792070049381781,0.0002726665809831202,0.038948555006531396,0.012355665452188896,0.08707292991555841,0.006339806988011467,3.997090103413376e-05,0.03152283736922035,-0.036814119887891815,0.1718100476997806,0.06090486291303895,0.000353144682598051,0.003282286400769458,0.040610248764267005,0.4791288920251524,-0.013842016280826878,3.517333278070719e-05,0.025491792568848894,0.0004350506501905068,0.0054185315696191946,-0.03430580357375772,2.682501188873777e-05,0.004963333825712004,0.04278447263574609,0.12416864194020232,0.04037639190784379,0.000110993362367258,0.0007429314207398538,-0.012100471362240536,0.09141446011150497,-0.002802057485571039,3.057593634531376e-05,0.00884672166083371,0.0297954653972088,0.09870070354154986,0.09129402161652343,6.692791679739907e-05,0.008582759659231144,0.008455082855022365,0.03733704661400942,-0.017977315497961537,0.00010354437271016146,0.002594786389568891,-0.000809820393437483,0.0007913846582735826,0.00047648968883831215,0.0005848932963977742,0.006111170944452295,-0.005152986938590125,0.02314769544666086,-0.007557685617161569,9.369950379224464e-05,0.013548382235038648,-0.015968142051968198,0.06036232481356705,0.010764255297360957,0.001697882390693243,0.019281989409865356,-0.019445053586292064,0.18222339706634594,-0.06019674656064415,2.7440195483930047e-05,0.002998546090755968,-0.012328386058842544,0.03757173694608319,-0.020998659567304862,0.001072793719769688,0.00511371007777044,0.0022548850030379656,0.015773952020648446,-0.015410421661561856,9.519398901677064e-05,0.0053937228312600895,-0.010444950980202324,0.01751872436636586,-0.07022851353757167,0.00014071788944828976,0.003489324352527489,-0.004550216593814744,0.007503887414485725,-0.004077230597693255,0.0003480564403767009,0.0099712446382527,-0.027801589585111412,0.10467177427757585,0.002895018588484532,0.0020586872893738136,0.0033244194823840944,-0.0030109493760637276,0.011608378093562285,-0.014164702285982931,8.321895905452903e-05,0.02374911789138022,-0.019618169678260824,0.030442807482320908,-0.01563298166670934,0.0016019574518620523,0.005647819526076902,-0.020282543869003626,0.06844773971844773,0.017669403225263537,0.00011740304175876123,0.00013270228975064725,0.04159822454745212,0.11062852514553032,0.11964228789870066,0.00015242915721661786,0.0008434309489036926,-0.018490428030127445,0.08600561187495474,-0.1245723746664046,5.247278315175226e-05,0.009791587501497294,-0.01668779802477008,0.04633611402446782,-0.048255457313731764,0.0034134809527478003,0.008043759741209045,-0.0038241023258900092,0.021137476869428826,-0.005101413112737162,8.999469926502733e-05,0.0021570879532162982,0.00918887358060256,0.050434112065909815,-0.03281305269127258,0.00013212916239358356,0.012490267871573276,0.006456273434879968,0.03301010314535538,-0.0011072663353439748,9.25089459543156e-05,0.005994245005235801,0.0015961281058947683,0.006641913112454256,-0.002139308833107695,6.039791547302724e-05,0.027880849319601456,-0.030202645786013144,0.05039818745344359,-0.020128691346480456,0.0002921860422773217,0.0014535335732452064,0.03529922924889383,0.12835972909691157,0.1068509708529217,6.838341839521616e-05,0.00373797140518171,-0.02940979652197861,0.25550715033874066,-0.007536252856623329,2.969752433660976e-05,0.00957785540236971,0.013247838137788627,0.04041582076929556,0.0016742567029443705,0.00011457835290976116,0.004873125779275638,0.008317879320687761,0.038116865380726665,-0.017771720286421683,0.0003439722503992632,0.020783097284061653,0.00032740016837572156,0.0018287524268950867,-0.05505166145961252,0.0001025405822028543,0.0023462306495406885,-0.0016081933786096449 +2018-05-21,0.023453696758337098,0.15276752848936653,0.021403258617795358,0.00016235543703056382,0.017841010157382042,0.013863086103894336,0.04256912009917255,0.00861203861631153,7.814042586679942e-05,0.010967312668869881,0.00579998083962047,0.016280603043934118,-0.045157175025332466,0.0001647985081761266,0.006378768847552438,0.02388615841945038,0.02658347750053438,-0.03751627123851704,0.00030325109125996057,0.012515424927072874,-0.015443771549677411,0.037582153798751294,-0.0007942993512029649,0.00021501535501887973,0.013574413174161538,-0.013233165876450403,0.03515120622721032,-0.003692240253428198,8.219970588184935e-05,0.0018747714744282858,-0.025141642998939857,0.10784810404210461,-0.014375900006255826,6.840234581667715e-05,0.0015518650624709823,-0.00200554784896056,0.0179997184735428,-0.034947787274363026,3.820902273216172e-05,0.006286236906813734,0.010499632005701027,0.008360387144391353,-0.009195568534961673,0.0009684840571411152,0.005627529247421542,0.044903539824847856,0.11805651110064301,0.06367336704999232,0.0001330002693453692,0.0501687493616954,-0.014637448720757604,0.010760939574386985,0.0025271595146864403,0.0006648743092820318,6.372781839728133e-05,-0.010071868983967206,0.12065561465979419,0.014315427765836162,2.4876273373755643e-05,0.00436082777361284,0.013387840648626921,0.03673954142736696,-0.1088862467153089,0.00010824998405190859,0.010103554816567085,0.028038434797490644,0.1565677460891811,0.1408894176840571,5.040960389198259e-05,7.69295520997632e-05,-0.038740054232520256,0.03360239874902876,0.057298301452893725,0.002248603673255539,0.008911466797154507,-0.04084847795421267,0.2647577388666253,0.020475307470865584,0.00012696362784393842,0.01038385446339858,0.011418642162861153,0.06380784356695045,-0.049772592600218664,0.000277107721635583,0.019121337317971308,-0.03869253128097393,0.2925245660449954,0.016807127613431345,3.7258533293617865e-05,0.008655077025922052,0.011025294681746806,0.060223382356665446,-0.0034322220533976786,0.00030172539888838665,0.022920085681793895,0.0074325371093136835,0.10030075484101486,-0.022236402317359738,3.075127422086713e-05,0.0035919512400719024,-0.008706729581358073,0.09117297606250861,0.0164399910646299,3.190587312923138e-05,0.002269993152235012,-0.007491407072170798,0.01928090125213838,-0.006431101751575127,0.000125158059794105,0.006333603116468003,0.010321990103011866,0.06699945634881511,-0.07202554655501785,3.558643930315858e-05,0.01180189501516772,0.008502421908387101,0.02797730880962927,0.00547429486319842,6.737737663352393e-05,0.008978931033518645,-0.006959390987758481,0.024287266610377185,-0.004444106882691571,0.00013102108506549896,0.006770735639214336,0.03199344050947251,0.03137292951791794,-0.02440720557716849,0.0005828830592759229,0.006407497774622366,-0.03142969766780495,0.11980497077210293,0.021762600102828912,0.00011042092348443166,0.004862797896159626,0.04046518030404349,0.12241733757594819,0.02497728852711933,0.002121571753770466,0.007021015801261226,-0.02716275694640406,0.23194683766233762,0.007941628678629397,3.01139404377016e-05,0.011077601665170468,-0.04408444718294741,0.11074735290097688,0.03206300237702532,0.0013014374939634109,0.010608296805058644,-0.02977666882293615,0.2074715823141123,-0.03597326346524325,9.55747421000133e-05,0.0063255790908546316,-0.015791428025448598,0.02542154610974487,0.03925179359609719,0.0001466104177335929,0.013903195256739921,0.02295390434024206,0.035423323275231657,0.007685068762966107,0.00037193853716891237,0.023866023466763864,0.011917582040837538,0.044607367035272315,-0.005411136387988186,0.00207077017769602,0.003856494527342501,0.018147990976566816,0.0778252580582458,0.0021002272279025368,7.481666677494233e-05,0.005511290580157653,-0.03740319835093694,0.0526677759289273,0.0024211002215265907,0.0017653911817681264,0.015249280604612924,-0.03471342862963783,0.11615944415831862,0.04485309221274188,0.00011840199558152409,0.00541720995159904,0.010530471415808729,0.028544163669205518,-0.006021956917558684,0.0001495515321773381,0.00030198533092047543,-0.027280609343681834,0.12565644233637563,0.042713389542680044,5.2988695996151244e-05,0.004895771821309638,-0.006006534069613152,0.017971709184232645,-0.034964926774996415,0.003167762551964352,0.010209357627954333,0.013206498389819098,0.06367391091850073,0.004886747301158154,0.00010317315894997705,0.003936355865387171,-0.005381589402341476,0.02692309597410521,-0.025664711624852874,0.0001449593872278656,0.01311408922474074,-0.022019386931199775,0.11875927648341886,0.017407818629986534,8.769733152006862e-05,0.009080039961822538,-0.01951009195948351,0.08503119656836912,-0.0038353803492427005,5.766714101316833e-05,0.011317235345265244,-0.044217309017228375,0.07577902228901598,-0.015235592164657832,0.0002844937337771202,0.008355147650440053,-0.005807177976158701,0.02507638479897417,-0.021763845510421577,5.758569155515644e-05,0.0076946678554900855,-0.020935789701099078,0.21645236674338308,0.008790173549404997,2.495504134869595e-05,0.006290386619344891,0.0022669819137413937,0.009121719719338188,-0.0703977959671286,8.687209522476667e-05,0.007337360490370341,0.021230661221433307,0.0925595745230748,0.014390447955482786,0.0003615514783415054,0.0020114371693787545,0.03687951240694792,0.17398627179375145,-0.010230065791849515,0.00012140651266388798,0.01395032589238881,-0.0031825489117524204 +2018-05-22,-0.024231005618255808,0.15505977779591543,0.041065084077359294,0.0001652566196437619,0.012490874479894217,0.04150537109131174,0.11284985770326664,0.06042139422963253,8.824981668705306e-05,0.0030879930334833496,0.051561302216737985,0.17510558273767798,0.06997954062555167,0.00013621379386610303,0.013630572993267077,-0.022240861090808747,0.0258705630106437,0.032669865289467435,0.0002901439864436837,0.001456450635931604,-0.006800988354520756,0.0159134142386797,-0.0667308800277084,0.000223617833504327,0.004548132858233143,-0.015077703850562178,0.045259825033429006,0.01939347353998944,7.273929340149473e-05,0.00952208066357272,0.02084661895942957,0.09206259766700679,-0.014281655109570078,6.644193294939234e-05,0.01960353883784982,-0.02418714580517038,0.21111055089081904,0.006662783158139034,3.928921015170074e-05,0.010952139567276455,0.01880649652811514,0.012714659280021766,-0.01451902209312958,0.0011406383209430415,0.0048166518195874655,0.002900698944328856,0.006105510628719448,-0.021081714580857055,0.00016612789098113936,0.016002005556555562,0.003672702113936373,0.0029208239256051658,-0.0030213964859798414,0.000614617166027718,0.007230548048914846,-0.010633349434351215,0.13346433369046118,0.014222582913451524,2.3742565935007818e-05,0.001523158013648691,0.03732191178669823,0.10552528635141843,0.02964666083996023,0.0001050650763835406,0.013152771307194023,-0.023875303453888466,0.14091570684351992,0.09206711066658975,4.769263470817067e-05,0.0016140824823276877,0.0006161069732819762,0.0006172227789017745,-0.0008905245653712219,0.0019468708892163783,0.012920303812286892,0.015218622708441643,0.09530287488513257,-0.03149122571694988,0.0001314078944024419,0.011151495465128392,0.0045545228152120195,0.027597029555680178,-0.08741984594484335,0.0002555575848517522,0.0005133670945146474,-0.029347581863148838,0.1699532320346707,-0.021325406414097192,4.8641151842615844e-05,0.03105687813994941,-0.045401889642666914,0.21072452400033587,0.052893281989729896,0.00035509589737456505,0.009790882590340014,0.048710424876983655,0.734395075606392,0.01424108691140021,2.7524687244026484e-05,0.023290148663598204,-0.007755381622622812,0.09090149320443847,-0.013136409118211028,2.8504528721295925e-05,0.009856264596823547,-0.012153231799110223,0.035994344763145066,-0.019533709500103576,0.00010876277130159863,0.023327878007070285,0.023689740249499103,0.1715517437034708,-0.0010772806379868722,3.189756552316038e-05,0.046450876814341194,-0.0011076695626260093,0.003268638033561518,-0.0018730809852759336,7.513127768011349e-05,0.012235351619152238,0.0033839844528747976,0.012259022033183412,-0.10252842927123171,0.00012621795200207656,0.009437072941375102,-0.04583527691954993,0.044039765414280355,-0.07741312048330029,0.0005948814462966733,0.014554341558708462,0.04901563302702047,0.16838647143105728,0.11456305934842555,0.00012252181694910402,0.0032542562998210903,-0.005332283035683825,0.017019987182677793,0.0011601166257928382,0.002010819737922658,0.01773534863880348,-0.05211106530008398,0.44162588883938136,0.001043447870891672,3.0342937479556284e-05,3.4504214190280184e-05,0.030063400426073514,0.09825663169992073,0.045874092611547235,0.0010003396867658916,0.03745380485203008,-0.011804952557184452,0.09247160871577967,-0.026244735528881256,8.501224325018278e-05,0.00418882244517817,-0.014510657178660907,0.024146862553592437,0.015415341320143874,0.00014183119368012644,0.006054919789929771,0.014714981834169425,0.02194020704167605,-0.019232172719734923,0.0003849664857847105,0.0070153597439140715,-0.0012157373412396172,0.004469029804872987,-0.06913671796760242,0.0021085157348833187,0.0012709622000409396,0.006224018606484323,0.02277622567456349,-0.003480858047827863,8.767575116536628e-05,0.007063474472710475,0.05135219679352733,0.06456836950314342,0.07015761358808874,0.001977044292858102,0.020727406602953507,-0.0030701508942802486,0.009764768592436654,-0.0446458583827088,0.00012457009677059575,0.012917340153991928,-0.027946072142737442,0.06750448816343346,0.047961084509025004,0.00016782184961247932,0.0024669871383721127,-0.004326334934331484,0.02028427888410625,0.0026223869099633434,5.205644311236725e-05,0.011405727593162118,0.004837793889216514,0.015396686622293548,-0.009572906087010705,0.002978092268702204,0.015871110000003436,-0.025642814990011212,0.14377875082554364,0.02537887709905739,8.871796339760595e-05,0.024545375074565213,0.02870988699550687,0.14093924874218192,-0.0573678788911603,0.00014772714860596087,0.005235502689005553,-0.019056963029537563,0.12780725684452493,-0.004864365608020524,7.052561412204518e-05,0.014545144006825899,-0.0668810143067285,0.276155357385157,0.08636646575773653,6.086908493483002e-05,0.01597828530177854,0.010197131151319446,0.02037001024079305,-0.09445562400856923,0.00024407098385021707,0.0035183868142164743,0.012727346417776586,0.06263058581986428,0.009705369037733044,5.0531916172980974e-05,0.0014486919697113696,0.022139616628014395,0.24665915467068156,0.0021711353500669444,2.3158164950783214e-05,0.006144706911115556,0.00489309864569425,0.014789045882129027,-0.0004591626799245474,0.0001156519019987778,0.001835750598358511,-0.009895896772286635,0.04440188923926243,0.003250118943288903,0.0003513028540824728,0.0023143655656643457,-0.0550779778966959,0.22842361451575577,0.1280633640900164,0.00013810480341067553,0.02445267223239545,-0.001090007305482905 +2018-05-23,-0.002604588224716644,0.01967147162482608,-0.0014193675658682587,0.00014001959139426097,0.0018167531717269033,0.021152350663965907,0.06977620380629213,-0.05907272673131576,7.273807885197972e-05,0.027908381912226547,0.005369606097512727,0.015284667348727845,-0.07873509071648298,0.00016251132871784497,0.007154606130031821,0.020637956354635393,0.020532287508275796,0.034236275315494544,0.0003392323094771308,0.004086010690075923,0.025954408090964054,0.064774368792107,0.04156545333848779,0.00020965523529454806,0.005505371035906069,-0.004174285728157445,0.009784674306672137,-0.005515295032084497,9.314993122208618e-05,0.007431862470649381,0.004471374738191188,0.01551662808236015,-0.006653911582009585,8.455388625916667e-05,0.007669730292334417,-0.026391529378670668,0.23676920949726857,-0.0677890469598102,3.822415983868282e-05,0.012343645781483234,-0.010209523440231174,0.008433666698815593,0.008945490910319596,0.0009335419183955551,0.013063484631573474,-0.007187855600535817,0.013092577036794785,-0.07667802393951183,0.0001919712055684578,0.005356080618855867,0.03439715049859931,0.020647607008758413,0.06688996036318302,0.0008142862460260256,0.005600895361397974,-0.007268405218838937,0.09967645757294898,0.0009554793489616926,2.1730480320876985e-05,0.006608251719180037,-0.03458603020488168,0.09620561934173129,0.04661407581749082,0.0001067950969885134,0.01859868071463648,-0.01500027400892592,0.07420066976706245,-0.008333465929697137,5.69053613232912e-05,0.005199374121218601,-0.01991187109568294,0.01594860111734658,0.00912070421160217,0.002435075596835194,0.027626725786517446,0.06911488636761809,0.47258180270974703,0.13396005921740176,0.00012035017094343748,0.03770556849630616,-0.06249893186382269,0.31641383311998106,0.07395667174997674,0.00030586188809438464,0.006146586188013115,-0.025916923706155632,0.1567971926584115,0.0063025191560962535,4.655926583450916e-05,0.007834857069089426,0.03640131441521384,0.20255369112390434,0.030863871288658765,0.000296185444172382,0.009533081286305988,-0.010461409346440206,0.1590527597253213,0.004104094216057143,2.729475612710002e-05,0.015561424267142219,0.008729443374196517,0.09449394871292777,-0.026426780348921094,3.0864856601135545e-05,0.004546125386400141,0.011083202572468793,0.035861567998372264,0.005795970501959558,9.955400871290942e-05,0.03049218999143061,0.05476525141816672,0.34515647998410404,-0.05662361452883244,3.665062884659525e-05,0.006352489324792749,0.00369627337898963,0.010990959526712942,-0.028939388842496278,7.455999292726121e-05,0.012864343321262982,0.010525725439950557,0.04411233277361563,0.0037993678086446657,0.00010910398364863917,0.0034661042820640633,-0.004038834160406933,0.0036468417897632826,-0.0016086639490087479,0.0006330159593784067,0.010716142247124904,-0.019447099182839045,0.08290298458721984,0.0053024076214838725,9.873489584912807e-05,0.006059690799990067,-0.059027143686368265,0.1828273310470221,0.09153204482763176,0.002072191193105402,0.051638868454571114,0.03360599481795892,0.3598434743189008,-0.05150456965458172,2.401515091229077e-05,0.011254652372896266,0.009229341069114369,0.024149238498712845,0.00547733349319574,0.001249506514463415,0.023151555217729037,0.010381145718310088,0.07260625012311211,-0.019516805429158724,9.52131477101762e-05,0.020061279182008458,-0.02045395363096953,0.03602726593072459,0.03704902721814338,0.00013399585003456312,0.0063400912141530616,0.03239974564381231,0.04345844456344111,0.028688462064465927,0.0004279286230469011,0.007257812404685697,0.02125054232990054,0.0819443237592443,0.031002025940142817,0.002010025113661748,0.010524947628082402,-0.00978852497036609,0.03703908569221382,-0.0699007566576649,8.479053310924473e-05,0.01951595672264535,-0.029463101175448946,0.0449998676237298,-0.02412544518881119,0.0016275877508468081,0.01737622626368817,0.03084239284439204,0.09618673417986004,0.0490683699339823,0.00012704246788508073,0.007523068369002555,-0.03929462492754526,0.12863673423094862,0.0815625718290584,0.00012383075417490884,0.01502725938881628,-0.0020751795802537447,0.008775701799318148,-0.01648152069524564,5.771487414567591e-05,0.003484999916206369,-0.0041675137319036794,0.01219498710018991,0.0009474309834271458,0.003239020913876773,0.004464826164117271,0.005992715663972631,0.029304333179453905,-0.04058450393152073,0.00010172610111610284,0.012172855958434044,0.010692982191350781,0.061212769026316526,-0.0013252796438113872,0.0001266827849543163,0.013494273504849783,0.001852814619035933,0.009423808699893942,-0.013337827076960665,9.299384525078256e-05,0.014034623954385709,-0.01898391595958439,0.10136061563898513,-3.45795649669069e-05,4.7072141640006194e-05,0.007179479424617966,-0.053342964731333535,0.09360280947516238,0.046060666653257296,0.00027785464368512567,0.009506155691891316,0.006177899735988886,0.024131426003632855,-0.05941789295057699,6.36608224401197e-05,0.012564803419966856,0.010353099525492255,0.11543298284749248,-0.07556456462199024,2.3140447657224937e-05,0.0010030163337375376,0.021581771807606193,0.07308209409682753,-0.022162075117936206,0.0001032250442361776,0.008023433565752953,-0.015439731893444714,0.06856352547639599,-0.007110103304337533,0.0003549560518008805,0.007070802352054279,0.02646609221803823,0.11280737711094962,0.012624409625864762,0.00013437674465026088,0.008510561589231492,-1.0812236010362746e-05 +2018-05-24,0.03461133758007383,0.26319186690881,-0.010851373191443298,0.0001390696950921193,0.0018004579464461212,0.027763776055491827,0.08267011405675281,0.01590603894816124,8.05824602206357e-05,0.01673236336661934,0.020105242723717325,0.07214209913239014,-0.0031042260113149705,0.00012891924401722138,0.025279339186545752,0.02881799428973087,0.03273694791297458,0.07215994376304209,0.0002970936845188607,0.0020090821174282127,-0.05541392325261604,0.10269331986777842,0.0444862722471734,0.0002823413436921152,0.006496948316024607,0.0063302139946563845,0.018909516780339353,2.111764531831237e-05,7.309450016292707e-05,0.012750799734575402,-0.02397711777678012,0.08719395709103234,0.003340962207077015,8.068641956754915e-05,0.004990242133836583,-0.015580065212359816,0.11044600149699771,-0.012498084847566935,4.837465581068133e-05,0.007151160455027697,0.02549629164636267,0.020975779428596793,0.049855169065997205,0.0009373541303222747,0.00672623389960493,-0.021166403104896456,0.051783517952491455,-0.004746106960407016,0.00014292802676886215,0.004488802744477827,-0.0006222137235904564,0.0005732763774999507,-0.0030992083216533875,0.0005305177235608259,0.007044308414744989,-0.02553742979529356,0.35252635522978365,0.08079910085416858,2.158779992134437e-05,0.005231988173653363,-0.00249352678611826,0.006576638980736643,0.004918407597155732,0.0001126318126371635,0.013621464053080184,0.0035795887564666175,0.02321593572180495,-0.007801709430345401,4.340190189582082e-05,0.008368267046337835,-0.028421932741921528,0.02449147524712232,-0.010890836292847988,0.002263401681893473,0.003171350961597743,-0.026856691133740014,0.17775918910542818,0.017732232477185247,0.0001243290318732959,0.013863355982269723,0.03710476928728714,0.1836383744087866,0.023886071269761614,0.0003128776404796815,0.008469700465348666,0.012788694542582212,0.07892990389305886,-0.03135676862715906,4.563999586299046e-05,0.0038057289647106017,0.037859502575501566,0.2451528972261738,0.025176895543169844,0.0002545216212455345,0.00936519755350881,0.005418234462263486,0.06688206228019891,-0.0023341696158974455,3.3618502905348396e-05,0.00791445149289307,-0.009139581382826901,0.09400355884995068,0.017623941705062086,3.248356736687899e-05,0.012876405612363081,-0.004919732650521523,0.015128377190265416,-0.010109775466084533,0.00010475431338178155,0.01753713604732266,0.03927486093661724,0.34534420309355346,-0.01548450313952106,2.6269684787658797e-05,0.03227985650191465,0.006345938051041208,0.018257571722754426,-0.03583857968167955,7.706021122904926e-05,0.00903415109470571,-0.014110860703372415,0.0489722666381633,0.010414089667738635,0.0001317503855803392,0.0011935479881284114,-0.03510200829591799,0.034680004151652136,0.01637292297303595,0.0005785333311723578,0.01135604709997064,0.012927650176599144,0.04283402125536363,0.007810476541526071,0.00012703305800198497,0.0010853394783725129,0.025231079285872714,0.09393413652244792,0.00752843465007038,0.0017239773492554937,0.006717742870668333,0.013108822577997729,0.11848413923837944,-0.008186841259987905,2.845022222170285e-05,0.029286928755249866,-0.016365172214484705,0.045793649427426204,-0.01217076555116522,0.0011683866727753775,0.005383373055220416,-0.013730434895115533,0.1272594880234229,6.093294789382679e-05,7.184884064804256e-05,0.011769005741229393,0.02247477203349659,0.030702787985451195,0.07551228817427028,0.00017276782580934047,0.014979078498105973,-0.046970847855863855,0.06951979928611657,0.11921934720543903,0.00038781428650537536,0.010336622945538042,-0.03726530218993699,0.13823765426143578,0.06270576318970326,0.0020894338815401346,0.0113672905600815,0.023724530632418275,0.08867692206695019,0.0024393455092669787,8.583756493338096e-05,0.011072749908501489,-0.016618351086600817,0.022292989617499613,-0.003103601572903242,0.0018530912605642983,0.018938230179015893,-0.0357796909380109,0.13984769012959386,-0.04232048412893223,0.00010136717045561113,0.003292746087403196,-0.004570966033037155,0.011976209547152965,-0.017799423782875943,0.00015472090032324053,0.011705846366046702,0.012942873326067106,0.061253105861926456,-0.1892948633317104,5.157230127452767e-05,0.0033556578011426203,-0.027412095728441534,0.11277081994995411,-0.07034671170033199,0.0023038996541844907,0.014585751724023429,-0.026071219407862067,0.12801035671534777,0.0216330456521919,0.00010131104790059115,0.02131916909929566,-0.015489470837647639,0.09005452774748045,0.007873928172188018,0.00012473599986682308,0.008120858365749193,0.0036248210653229873,0.021408058323871722,-0.008792237819642628,8.008625626758915e-05,0.01566160044351647,0.04529425901729814,0.1668074529779811,0.02992019693341175,6.82456702086315e-05,0.017113990962565714,-0.007173903032576825,0.01547132504181322,-0.03688096542232866,0.00022607752277307695,0.009795730652245337,0.007433797957725992,0.030904649960846867,-0.0976508240614009,5.981378705164167e-05,0.00043980306941420925,0.01641804600049887,0.16230289349805943,0.011916444643664065,2.6099157680303905e-05,0.011525038898761972,0.003607060892932747,0.012219336639988932,-0.022250299256702594,0.00010318458191344243,0.0020317560723529934,0.0014061429591923393,0.005577445588514428,-0.2263651026147202,0.0003973947317331486,0.0026007856906320207,0.01576574177495974,0.06117567605568427,-0.00398887208788986,0.00014760716108172867,0.007394743429482532,-0.0007294935416074044 +2018-05-25,-0.016934812414576818,0.11610307387289759,-0.11814863640417574,0.0001542493193375392,0.0036339328125804407,0.0417079039080496,0.12667099208609986,0.026188636037475902,7.90044799963205e-05,0.015417523532406125,-0.010539262237052528,0.035071688713706244,-0.0075934162384328225,0.00013901150249911968,0.016536751703875162,-0.0036683678803552783,0.003321764022992436,-0.1045434898095628,0.0003727107862413756,0.0069977445670193926,-0.00866163401818041,0.020493929844068844,-0.05862102121851045,0.00022114257211522902,0.005780309773522992,-0.007223724743899616,0.01773923629195078,-0.0026964657375108127,8.891458589968108e-05,0.0019163591592149943,0.023460496902326423,0.0935087158754775,-0.006100809474396592,7.361646659833746e-05,0.009648527932441983,0.0029108293329085395,0.028265353792285015,0.0043231972908038445,3.5315139929797163e-05,0.011286270338251442,0.018749548946435456,0.014774850520236495,0.01015201444922078,0.0009786164581571581,0.008509392710100993,-0.00835769778974393,0.019718163210163803,-0.019682282631560025,0.00014821156482219683,0.01015953730138577,0.014775096013437626,0.010474668913971256,0.013506591128093265,0.0006894683987835832,0.0005135304133906636,-0.0033479972427183776,0.041494540585705876,-0.031824713279321265,2.4044564779310544e-05,0.006157975419707254,-0.020706313271504864,0.0629081315556739,0.032650723334892356,9.777932431256523e-05,0.009428388302240236,-0.021376093540040737,0.08697239455325022,-0.024217885081754008,6.918448814294487e-05,0.01015104239894201,-0.045550883370450344,0.03883577953155254,0.06651140809864117,0.002287640356089966,0.015796024344691226,-0.003117992837696974,0.022236024321863702,-0.08418694192722526,0.00011539050675124186,0.0026776490096275425,0.01117497311842774,0.06114199284635993,0.0005930413387994658,0.00028301869827203693,0.014549651195079623,0.03842059524679062,0.2237641126202261,0.03538395200577517,4.836538058921985e-05,0.013669658006535529,-0.015196223799414982,0.07584990850587892,0.006665037228151416,0.0003301926692790682,0.002515077500394126,-0.01870621894205139,0.23564427151474807,-0.028176052569820836,3.294271263213649e-05,0.04247074743074528,0.005197708303157652,0.05712678065482685,-0.00030094738934345806,3.0398619535964145e-05,0.0007292424720113291,-0.042480999624112344,0.12435977940329856,-0.0022330565035415624,0.00011003669569456142,0.0431311900348258,0.020154743212525063,0.13925217672189838,0.0013780555019069186,3.34324075842846e-05,0.012565361592238424,-0.017139552503938317,0.04103635945870484,0.026324475675260865,9.259937079265834e-05,0.0011814285423708275,0.004720557946538104,0.020008342979272658,0.007843410127874276,0.00010787748310360207,0.006323639010050648,-0.04608654587995569,0.05183356781235096,-0.049413018048898937,0.000508204630409553,0.0035543897792400846,0.005318602966457618,0.018761896102901437,-0.026448393069821528,0.0001193182441730841,0.012704522383949876,-0.03145189563022043,0.11756536917683753,0.01868396974311582,0.001717064417833079,0.003403192020450779,0.013645808250618629,0.1391453001936952,-0.009517805113333448,2.5218132226538714e-05,0.003951100805104495,-0.06195720563941103,0.21143117365371966,0.0829174908109096,0.0009580630070689199,0.006003802048257101,-0.01865232773669698,0.1434199576045205,0.008035924053417694,8.660622146394319e-05,0.005003280112502502,0.008272478082612012,0.011987561510937068,0.011474298493544071,0.00016287340015552561,0.010639740441033545,-0.0157549871275664,0.023356646942989348,-0.012075747626788442,0.00038717871172913305,0.002294645410206114,0.015410845129090057,0.04988579055919539,0.029720485539166907,0.0023944178318979293,0.00010285223091137429,0.005124332446651591,0.015401525086113935,-0.029125669419279996,0.00010674903067785939,0.0004713525024634688,0.02466220335741646,0.04256272495153526,-0.07692731101158144,0.0014403884880360787,0.011202015291606396,-0.005017573719142736,0.015982468136083627,-0.00892439214402997,0.00012438441019961254,0.011835786042613958,-0.009251834081747786,0.022793293833310496,-0.030364014995545984,0.00016454364842951095,0.01486444408025552,0.009178063003120959,0.03833843953426983,-0.04922668560535141,5.842927903611712e-05,0.0014135520705662854,-0.007668516008599058,0.024338785573087315,-0.006480470931151616,0.002986279699291161,0.032475924404869294,-0.05036697442055948,0.29870296772410737,0.06570880603052005,8.387777401937653e-05,0.0058726587689533205,0.008905367531085461,0.04373718797537298,-0.03505264019314276,0.00014765962971486648,0.0027232472717892958,0.023240203289958714,0.11982398679761136,-0.012767038988649494,9.173706808988771e-05,0.018319666025042806,-0.020629557188502862,0.09204065072394446,-0.02207587826197996,5.633231776432705e-05,0.016742321642325086,0.024119137327012773,0.04653224529174109,-0.01687824643312422,0.0002527185700560737,0.03288583230661265,0.02231574376146294,0.08863745633807388,0.04164066915773954,6.260491892328179e-05,0.007511915539778838,-0.008470274347069033,0.09358164150654256,-0.16854931293570807,2.335275396068356e-05,0.008476426100092516,0.010059123843254495,0.03227583586356081,-0.0336227970492635,0.00010894106618925941,0.0028997645063752985,-0.036685068851182855,0.15954113694104383,0.1390018881178556,0.00036244709794057525,0.004039558734628688,-0.014957763688037678,0.07932233751803926,-0.012167180450834708,0.00010800477584574944,0.00685554374998097,-0.004512445018025646 +2018-05-28,-0.018757119189211087,0.12685696113002598,0.013831804402487873,0.00015636459285849332,0.005292641424782608,0.016455616438604142,0.05889410922604422,-0.14632043608403614,6.704290512577903e-05,0.025566158692856587,-0.015638630763112893,0.04810757073568059,0.0011197125463858252,0.00015037737629967145,0.007517310687599315,-0.0057996093404323245,0.0072175047794175475,0.001475758928055009,0.00027119365030459373,0.007501351359832095,0.018084345014819897,0.036316209047771435,-0.009938772668866206,0.0002605553823321466,0.0058267874586288146,0.006631778358466797,0.017110071430250576,-0.007819970094117565,8.463011292627468e-05,0.007312091665926228,0.003868727348472205,0.013877913278426458,0.0028927432610192693,8.179632831952119e-05,0.002665424194945771,-0.016804002398314668,0.15348631645645927,-0.006296030414701999,3.7544098950834314e-05,0.007015900381063348,-0.021572063144644445,0.018908576011040002,0.04202925551075716,0.0008797872134092675,0.0035597561048491865,0.03968027464355435,0.09278356452202088,0.023763302216438503,0.00014954279819460745,0.0014126153861098324,0.013826343241633038,0.010200685523733941,-0.009209065071841053,0.0006625250956026029,0.022035012347294124,-0.007265180897491156,0.09565379886772757,-0.008116897287349076,2.2634296422862886e-05,0.0030846651455984503,-0.02112612690854008,0.06251612680591802,0.028811565540527117,0.00010038731967527604,0.012885968462135178,-0.002092495651268828,0.012886069450228707,-0.01410264761233083,4.5709441484188724e-05,0.0028251587980223647,-0.026152360807733428,0.021168302192515993,0.01562357908631021,0.002409616038021915,0.0020151237033147334,0.007513610595460296,0.043040569398459745,0.0025304786834875704,0.00014365567362825246,0.004228255477883074,0.01596942414721828,0.0774258746331845,-0.0793538036356892,0.00031938268512874903,0.018067261981915612,-0.03469838799502109,0.2069613587286843,-0.007239373810850023,4.722598099843262e-05,0.010927437386943318,0.005165317724365491,0.028274587235835518,-0.007502360940317099,0.0003010839287870275,0.017304554297601856,0.04316663637383877,0.47755011251649093,-0.02251391146603517,3.751107310300009e-05,0.03530412548152761,-0.012944835204185079,0.14266924689897015,0.029454176120906658,3.0314322480714287e-05,0.004236670752953796,0.03742662690827118,0.0894301793319521,0.034703284046088634,0.00013480914121008443,0.012119369150803047,0.022952013061256566,0.15889946112619766,-0.028253070689821694,3.336496964555121e-05,0.013304066195138683,0.007861664747401933,0.024376700752207714,-0.025465154484546063,7.150180020056879e-05,0.009302765642900307,0.0021414383912579044,0.008530531565801117,-0.02307872213028744,0.00011478313590503422,0.0007329493809818258,0.01802443497102315,0.020227587383577047,0.004476951397957088,0.0005093228196988765,0.03234246189397621,0.011602822595013502,0.03620883163674448,-0.009174807470938531,0.00013487614656178555,0.008577458485610498,0.027187141143992025,0.1060592665360062,-0.0011792631898084876,0.0016452583256827468,0.043776897943030725,0.00971114365720766,0.09037609546283162,0.00252955206494618,2.763115248158377e-05,0.019850679835432004,0.04187856621776406,0.13137346407367687,-0.002155317759031721,0.0010422104481308523,0.018631262249572934,0.025773044928889533,0.16944572739755626,0.019199902721523006,0.00010128864272084386,0.009989320881035546,0.0013991860844769746,0.0018317821764816692,-0.055810471831812834,0.00018027978628955285,0.0006130934182002634,-0.006400722177166107,0.007877511296654236,0.003423594370800222,0.00046638422913553365,0.008963342284254577,0.012055345271894093,0.04310555168976769,0.00974436911717458,0.002167688066140964,0.003201972791769444,-0.02782225014006368,0.11782713496892183,-0.0035098173488451604,7.575953556177057e-05,0.01673063996527606,-0.026952294737527777,0.04008122349814094,-0.05404206898592488,0.0016715984852893387,0.011498319863834174,-0.016083678795234695,0.05396344630756649,0.0037937961988661483,0.000118086907754442,0.002346542359349069,-0.009263579806785004,0.02709123584359662,-0.02357449645788829,0.0001386150565245514,0.013518974054843619,0.04032370169952677,0.20161396135588547,0.09870213763928726,4.881504742045709e-05,0.011244223244287564,-0.04048879272938245,0.12179754290834624,-0.005403440328190525,0.003150752998706971,0.018001016061730817,-0.020002429782442235,0.08526324819777827,-0.059009226139441616,0.00011669747296068547,0.015023560089881418,0.018120136704576073,0.09356942204753031,0.0029764950240037664,0.00014043918718532777,0.0041759738441889075,0.005421594839970516,0.02745418278772319,-0.008278823238424557,9.340437895570491e-05,0.00022677263974188677,0.014604773360854913,0.07601548177885464,0.00206389639305755,4.828810522202178e-05,0.02201368586335522,0.05666781263638393,0.12463473095488084,0.0010082374337943522,0.00022168012764918244,0.03310860757550154,0.012874877164915569,0.05217714325303991,0.0039264538132418765,6.135884454353563e-05,0.002398646444771532,0.034758677938769085,0.33658480136890423,0.13084323983035734,2.664403734175759e-05,0.02086998328853514,0.01679825880298447,0.04697531981468445,-0.09121492173606771,0.00012499812166995338,0.0011332473382165828,-0.023148641822114215,0.10468504673192276,-0.023867522442419478,0.0003485530078310246,0.002103787002425958,-0.05164713835368556,0.2559982104352738,0.018847689820003684,0.00011555297465494105,0.013517848738557076,0.0036153736636779592 +2018-05-29,0.004978111816929874,0.04124250204068762,-0.007539768747620631,0.00012764571099944526,0.011463241532333449,-0.0010174937337065959,0.003418457121847534,-0.003640677281013451,7.141873162757023e-05,0.009025860165119136,0.0018331859465609435,0.005720281418446185,-0.0006633940571295239,0.00014824714168398004,0.002154418337223476,0.01847797954113573,0.018322941482683087,0.028961898018742566,0.000340351088285057,0.016731778316489674,-0.027550939204144476,0.05606050644277873,0.03250301092154617,0.00025714445511230353,0.02216156638936821,0.028121600079790095,0.06085936418248161,0.049713309584991185,0.00010089260995526176,0.0028038792196716502,-0.0035173290273072142,0.01466247578133837,0.0005265508422858535,7.038750052095749e-05,0.023252700806315835,-0.04719570497262187,0.45181542808296227,-0.021440408559933795,3.582119216284561e-05,0.00783300493145145,0.02695713174388377,0.024596788717633634,0.04697179112879304,0.0008451621847762914,0.012383794607092529,-0.018974184247824086,0.05196639508961885,0.015536283782494456,0.00012767398355225445,0.01755684324316745,0.013623630309980593,0.011061200308961431,-0.06710879058254518,0.0006020255890102031,0.00911983870705039,0.012461381584669817,0.18632746027163696,0.01111539068027935,1.9930221251738546e-05,0.016848381283860046,-0.050690578042106284,0.13165579611999847,0.013289874806740798,0.00011437689378697499,0.005943305822906456,0.021527607876233926,0.11310765780275642,0.09877978473771618,5.357541986762241e-05,0.003717975629008108,-0.027917876766460445,0.02307085328003894,-0.02970030062120874,0.0023601613885296598,0.02257473546578184,0.03608976566612152,0.2618893691233325,0.036618991281886885,0.00011340136978368845,0.015050308665452207,0.05461447895622145,0.32248321337289576,0.0592114313269513,0.00026224602489354854,0.010615774771031827,0.04181344604885402,0.2319099133983663,0.02513560992954814,5.07875898445879e-05,0.016416078542195952,-0.04070120783316552,0.20303491352660705,0.02640276932997891,0.00033038732675195933,0.018156460541624713,-0.013515374463136115,0.20648388166771506,-0.005709577043443551,2.716265129638847e-05,0.011701975497534394,0.0033139683902147217,0.03027394163374668,-0.15713502450282885,3.657304340630658e-05,0.002985726500828499,-0.020348182001645506,0.053003007393454156,0.0005258369921723181,0.00012366530048339808,0.03240278811387152,0.034458284845919354,0.2638413165521091,-0.052181541536230926,3.016777132511792e-05,0.020965697047754972,0.006221034901894048,0.024346993046125275,-0.011251081796051618,5.6649318352466966e-05,0.0010923443972109222,-0.005068112556949119,0.019864527248232396,-0.11946594972777756,0.00011665856052532244,0.0014379190489265847,0.033332864842769705,0.02734882933715784,0.003814544346326193,0.0006966416910528334,0.01441770899253082,-0.009383211539845148,0.03557188894001799,0.00022308060843151376,0.00011102750710707674,0.0011573359779828412,0.03520239826184172,0.12448034569516038,0.013110749010794657,0.0018150585581259125,0.00932062359715347,0.049047239880357085,0.4562916244272604,0.01941079910610038,2.764103308881374e-05,0.03319391011417911,0.03914195569290832,0.11910494490275676,0.04769033090068309,0.0010744445275374303,0.014654440413066185,-0.0014673080898867522,0.010856809346806249,-0.020012581929997112,9.000046304561195e-05,0.01506412636574957,-0.004730504843074803,0.007358738843373572,-0.009952227080556165,0.00015172232434098413,0.0023771329083986355,0.005307565196260071,0.007239577399051395,-0.018599293249773954,0.0004208099846239988,0.017701599229854748,-0.047522723488587756,0.16246054744093322,0.08199364025161406,0.0022672726572667613,0.007325923152329744,-0.014372015625003207,0.05688332287922564,0.008475781523199865,8.106307855115906e-05,0.0073999792965621786,-0.006028237278456775,0.009622868237191048,0.0020957317787722624,0.001557266678594139,0.024190604798016657,0.008435934024023498,0.028655148425695005,0.009082798899809078,0.00011663974156457507,0.010169012923205786,-0.011711536367840466,0.027692201360342103,0.004829822179826081,0.00017144181925914692,0.010337506144012102,0.02339589208129402,0.11410257204273545,0.011736618026287456,5.004470116590603e-05,0.0002118873340789299,-0.044152974902547444,0.13602698219464393,0.03412736707622019,0.00307647198872876,0.011912871081145825,-0.005944561371700645,0.02918324913727518,-0.0017308092908389775,0.0001013273636011562,0.005543542465114162,-0.04119000517386562,0.26287838000458563,0.09107762444476032,0.0001136312439821694,0.0038898175000475006,0.04974802919696331,0.2447993789409709,0.06421602785840308,9.61201118747339e-05,0.0007197047484433721,0.04355831796825539,0.23024175201081715,0.024484696591401938,4.7548236525457436e-05,0.005674134925633337,-0.01325036424897925,0.028870634552667324,-0.0016351617592621245,0.00022376949498426797,0.010766152354208242,0.008810982837898551,0.03492497149000559,0.0028695842659308577,6.273395541541986e-05,0.012960757348721683,-0.01935210445131892,0.2348751817861231,0.01767700339464126,2.1257997696373078e-05,0.002131484379712627,0.010731433319957587,0.029223424644387895,-0.056631410174767915,0.00012836173752166208,0.0012927435269110366,-0.028650899096727085,0.11470345097446717,0.07702370215740147,0.00039372205369586985,0.017680104050169763,0.041370815866569245,0.18157570766295747,0.004460097164579093,0.00013049928619704158,0.012970811123718022,0.0022110709952922404 +2018-05-30,0.019852740677277634,0.13909543415445924,-0.09681067067862281,0.00015093646668716624,0.011819120028053132,0.029116507012918284,0.11150506113287234,0.022197926920508055,6.265492575563555e-05,0.01543484379167278,-0.019990855642316528,0.05970221232454237,-0.011339708480909125,0.00015489527246024339,0.02040746208635062,-0.0030319201436923,0.0030817742088104557,0.0006191226401668362,0.00033203571341903045,0.0113614652239959,0.010511085045194758,0.02285682350813269,0.007660847701732036,0.00024061873953177797,0.0022210255153236698,-0.020024503183735814,0.051041244409816215,-0.06981541359249246,8.566180781205533e-05,0.026719181287145625,-0.05150751572232459,0.1753515094004248,0.03723728501135933,8.618882307865074e-05,0.013451472796877572,0.002723525290883311,0.022326414543806464,-0.013016396848028078,4.1832232519849764e-05,0.014710398673323225,-0.020675157633026,0.017061313066375615,0.03383364073561728,0.0009345039984283138,0.011189021078731815,-0.016254460594854653,0.041838195745200736,0.01308229434725013,0.0001358505812353656,0.003247497691973093,0.022269075294206162,0.016728091231689023,-0.08865585660060318,0.0006506990213422737,0.0032567637443813788,0.004357289994384909,0.06711381368820295,-0.018254643584327573,1.9347610527279048e-05,0.0003427837466360114,0.00276776732818691,0.007857641048431552,-0.002039995851948106,0.00010463775920262321,0.01941038490914463,-0.008570853485818637,0.046198657227642236,0.004355181269599877,5.222236508390715e-05,0.0019883016176518316,0.01881030398990099,0.01303530630686502,0.020976140576614757,0.0028144759761199595,0.0003540765170362125,0.028727564568781304,0.20458345823756047,-0.04032890050353288,0.00011555278089073561,0.007238011474476178,-0.002612879863807128,0.013328418575263441,-0.12847735365977556,0.00030356314999886497,0.0032228724603273863,-0.038433036527453716,0.2297879434092321,-0.010568048676549216,4.7112745813812305e-05,0.03241595659389238,-0.017974958867663423,0.10895531350998862,-0.023945182505518425,0.0002718981784067409,0.0048756084285869195,-0.05183537374552371,0.655910701645844,0.05243087481833549,3.279531062519289e-05,0.03714530248701526,-0.010112253961321952,0.13321887084479273,-0.013563011553550663,2.536085720987233e-05,0.00018850463692914542,-0.011397431327415315,0.029973689644779807,-0.031379369261978006,0.0001224868691042024,0.02780424698720438,0.03964367342012402,0.2510398308386103,-0.004274503981022901,3.647737956967026e-05,0.03577757460350281,-0.008736210625678698,0.023276610203142103,-0.007295638963069495,8.321100064167203e-05,0.0008038382667824905,-0.016468177731257066,0.07081539156438416,0.07219470685415912,0.00010633261150224557,0.0025614310666052104,-0.08798997956936286,0.0896970693874393,0.06557672532203215,0.0005606999590540065,0.03688849706864685,0.0068946945319723115,0.025431177649872388,-0.007125190329807193,0.00011411285391399531,0.006919738496168764,0.05121407659830178,0.17709860204845398,0.030035627918302134,0.0018560658849263285,0.015501603319165788,-0.026661458416691233,0.23306399962078478,0.009427025026320547,2.9416493471995675e-05,0.015221340773969833,-0.014532306069253162,0.04106419077838811,-0.012761305176577864,0.0011570244512515537,0.003369065525940399,0.002798282581029224,0.023072561038990212,-0.08351449671791522,8.07646673564353e-05,0.004525502315436759,-0.029727318319396834,0.03858554645240509,0.11471296771792999,0.00018183457453179187,0.004807880650075938,0.009042806737069371,0.013473001092143517,-0.03770158484961662,0.0003852501513584315,0.001656974237892387,0.029872214297314136,0.12858719900137353,0.058904264089175505,0.0018006115064025643,0.007992523010002235,-0.01487022698060198,0.06650509016433169,-0.017703332248623437,7.17386304710191e-05,0.013523124714784977,0.005660478714842748,0.0075473878155053525,-0.009092892444652615,0.001864376787415777,0.015619893049917915,-0.00015898774937489403,0.0005317316691299781,-0.0012642099373256638,0.00011846421229824166,0.01738262098428418,-0.028767188498475614,0.0696017323499288,0.03963035794744993,0.0001675474205405934,0.013271302857997562,-0.004546838289144212,0.019789926460368062,-0.023593814900140682,5.607628744029819e-05,0.0018310395477356234,0.006399675052256894,0.02204717814543123,-0.14237667044962632,0.0027512051109500404,0.007116120406171492,-0.003597241161773637,0.01593563976946553,-0.01815398203305863,0.00011228988087782674,0.007983567557870615,0.008790534012171055,0.042903886688382874,0.002022428071155961,0.00014858651819709773,0.0017742265292133765,-0.015125648758156732,0.07995609558741153,-0.06123419683552213,8.9476941654822e-05,0.00501436492656527,0.02031482666670212,0.08657386404748918,-0.0260747292492099,5.89757828178183e-05,0.0016657218386735807,0.032742852465415806,0.058365394309614245,0.018076991792944846,0.00027352087770504745,0.019785399266217425,0.020300366847716283,0.09390679958366802,-0.01282776452306775,5.375529162754082e-05,0.005235884625995605,-0.03468025026399262,0.3412021740805873,0.05679285540155575,2.6224168004932765e-05,0.01862164314935822,-0.0016039169699982707,0.00483667873486346,0.00586672851780703,0.00011591605855928728,0.00415041699352295,-0.012876511100918314,0.04542268949932444,0.013652238390305192,0.0004468413261699495,0.012496886804157167,0.08204839825080944,0.3829601842029602,0.15761925165443794,0.00012271235188204737,0.016238565280242763,-0.0024689207513052683 +2018-05-31,0.0005561151626423956,0.0038213372144877654,-0.07292316296272588,0.00015389905622437678,0.005490050346721792,0.03095763200703604,0.10644453383743976,-0.01374896215626057,6.978384513892177e-05,0.02470000544250903,0.02075740789299212,0.07266215686197727,-0.008467099408181033,0.00013214843946493637,0.004385915091301063,-0.041262666278421165,0.04420764042889138,0.08988499495665475,0.000315012515393115,0.008706736488702738,0.009380217522410613,0.02144053106591443,-0.0034941411473620302,0.00022891547025142268,0.015559973260530732,-0.006248334413997492,0.019425833619797342,-0.03893511053222932,7.023140233948127e-05,0.0031568389810461774,-0.024631466725716422,0.09433128743624754,-0.0020487303858091827,7.661686311720645e-05,0.01746799570259398,-0.00835226005701944,0.08127250543079911,-0.08587364081650062,3.5241872400728125e-05,0.0033610268275059063,-0.012085705175356235,0.011835540519690328,0.011602950171692994,0.000787460332136834,0.004440948780728276,0.017084474096535275,0.03918653458596939,-0.013620142159340338,0.00015244972390799453,0.0009098818041303725,-0.0224362490490324,0.019327176085527885,-0.019052800043585453,0.0005674220480755394,0.0006514121324888923,-0.014618493331247087,0.18221676829640987,-0.0049345550524543145,2.3907659587192725e-05,0.002310945677140329,0.030492337716146917,0.0938149572208488,0.030840681041275138,9.655386746374767e-05,0.0020768857707019073,-0.012101615432060097,0.059295201568954736,-0.036726683681387616,5.744941574158021e-05,0.013299448368400787,-0.0148075274712276,0.011457504363511969,0.0005313858955787503,0.0025206670728111775,0.0030506601302657064,0.004424673656119373,0.029659502633713045,-0.00048628826045000605,0.00012276356408093676,0.0012703207469560403,0.02459893903487126,0.14288121201290246,-0.014825964195674857,0.00026659345468166865,0.005004558581927861,-0.024782206068991022,0.15517401176925105,0.0055837847815266625,4.4986471593141165e-05,0.0300529556692101,-0.005585492428319988,0.031774306679022896,-0.013182835007662985,0.0002897158075389563,0.016340231320859117,-0.05216834302989583,0.6340305723358398,0.020110287380470538,3.4144996655089706e-05,0.033425869967360064,-7.586106563263917e-05,0.0007384849719154243,-0.01852158580759544,3.4320925156202695e-05,0.010479231909717137,0.03129713282338205,0.09283940641239581,-0.019352890142826488,0.00010859128036302448,0.004028599312804073,0.04092845004588285,0.2909747221139361,0.002836068227117923,3.2490950183381414e-05,0.018220887789785485,0.007504706282562579,0.024814922863326115,-0.046133172925540956,6.704990276193956e-05,0.008292007237552593,-0.02372443525389322,0.09128708609745385,0.13625073977442606,0.00011883247270946813,0.010743061007138614,0.04091250579905436,0.04356213111245489,-0.08527467771799005,0.000536812380542561,0.010721065863591579,0.04169141663317069,0.158279906314811,0.04598667458930636,0.00011086816941982265,0.028183219186500793,0.0211417205668659,0.06569687694484537,0.0020049765654998773,0.0020654504381104415,0.007145126530115706,0.04001045474550756,0.430986245356833,0.0064299495530055276,2.387219056084622e-05,0.00999621382783318,-0.0036784835392209563,0.010451715937884316,-0.013277181659839082,0.0011506745004400173,0.013415092754063022,-0.024107535700725647,0.21789004618560656,0.012350109187332375,7.367855009506323e-05,0.007445173390273791,0.013748070937746227,0.023121552021279836,0.02042460691846255,0.00014033634720051784,0.004230914643200096,0.01414065720952258,0.019175200710524268,-0.03776783960416223,0.00042328569314621547,0.019506409794561586,0.023172287117739065,0.10551263534999486,0.029939090386866155,0.0017022164054209248,0.00480086944174486,0.003064934508492733,0.010492760493836076,-0.0034412829178207495,9.371774053301886e-05,0.008261033675264018,0.021204086008996204,0.028464427747118326,0.0254339026122758,0.0018518009043317612,0.00828940206612691,-0.0014383654452568017,0.004930572913836961,0.00038443530525164056,0.00011558138442763804,0.0043535148816844,0.001575494432768888,0.004131979779461706,-0.009022605055747075,0.00015456781276058763,0.004405679268978645,0.014007174582927143,0.05894873441160136,0.007733286875045631,5.799492366745474e-05,0.0005246136539332434,-0.030327759298550215,0.09438026853399147,-0.02404689802595263,0.0030456302254460127,0.025495525295151863,-0.008325487535346511,0.03649537618056271,-0.1180377133412844,0.00011347819025995727,0.01695179971482195,0.010281808204001479,0.05227161545404313,-0.007716292882727465,0.0001426475643121145,0.023146356413824263,0.013998835898530796,0.08339326395766279,-0.019761321656145196,7.939801576369643e-05,0.016201183680720564,-0.021235770904807667,0.10723607443445872,-0.015111202141172586,4.977078823598336e-05,0.0019245547274663762,-0.002628740909765149,0.005425296319749692,-0.009823849612795772,0.00023624015257006672,0.025601842355209316,0.002205440744971842,0.008898067087494486,-0.02544909222273999,6.163311157947809e-05,0.012627352545969268,0.04102174660119062,0.45767470788656867,0.1384091094415919,2.3125360945428795e-05,0.011683252810104567,0.00820238716472217,0.023122277018162635,-0.17841484547347322,0.0001239991275024098,0.006789779175059356,-0.0026559731439639994,0.012951991552296316,-0.014680958395375827,0.0003232325569566323,0.005889559539636812,0.019972602136851134,0.10567037077056307,-0.029047832189491956,0.00010825630893886124,0.002939655662700634,0.0031289127643473946 +2018-06-01,0.03107858554098478,0.21850773966158285,0.06298341426191463,0.00015041148679504197,0.006615868680511708,0.018727812188406995,0.06716410763310264,0.007370933389903191,6.690526928957531e-05,0.000649017489492423,-0.04793081960623284,0.15845144174267825,0.026341684680192917,0.00013993162086921375,0.009548319993265759,-0.0014911182479488173,0.0017165231296457496,-0.0031937139205585295,0.0002931772599243303,0.005019844776478204,-0.03525396928766228,0.07796906860538567,0.052064793503672824,0.0002365829527421954,0.0014464008905496818,-0.01975138723085376,0.04782020921542402,0.01147969270921854,9.018470136625804e-05,0.007651228237265017,0.06223785643111862,0.2556134948712634,0.04064516182232957,7.144316786928197e-05,0.016567115675256733,-0.02230805934540309,0.1614035905286905,-0.014337391416675801,4.739660276756283e-05,0.01476616400030413,0.011368308191675088,0.009069485914619042,-0.05580878490939722,0.0009666248474641169,0.0037789590022719996,-0.028399161787114817,0.06778652202074185,0.030576993084286307,0.00014649542312241383,0.027126244848086768,-0.016332305100693455,0.010225908653341805,0.01837855373454648,0.0007806743918970167,0.009422848768601833,-0.007256491691958626,0.1035380724352312,-0.005592948262449469,2.0885718311424892e-05,0.002797230808810702,0.04098515785804614,0.10589477014875695,0.04206897761768104,0.00011497492580366949,0.01787312331983237,-0.021695202424716703,0.10108778501049373,0.04110439639156542,6.041250503835401e-05,0.0035879852554541436,-0.003905182605819947,0.0032866442410262116,-0.004136822475168413,0.002317456665166555,0.011934608688217668,-0.01661102978099304,0.12171608830687577,-0.05253933545924763,0.0001123054100812007,0.0018828458437541262,0.027900391899899346,0.16373297828237993,-0.0006163769760322994,0.00026386535615253125,0.014288456799607479,0.03123067995457415,0.19520805312102377,-0.0012358120371191857,4.506554895482079e-05,0.0006602802267817314,-0.05019783853918472,0.23782552143107344,0.05452029621036925,0.0003478671083853599,0.00696205463820937,-0.04364818038650452,0.5608663592851049,0.02491634461097192,3.2295125970246314e-05,0.005258888146950955,0.021004410577351727,0.22577456977591562,0.09036083303524414,3.108258891228913e-05,0.0020332976947259294,-0.039971947443578446,0.12034800244523698,-0.07185069658036364,0.0001069890120829722,0.0012205404743094875,-0.02090553419014729,0.1462557424911967,-0.25402891527144195,3.301723634414419e-05,0.02754951545309625,-0.0035041821070962284,0.009484675785366447,-0.007818566547912959,8.191087401698244e-05,0.0014399762552962073,-0.0031119049539475793,0.013409066986457979,-0.025141679456552657,0.00010611489758254087,8.421319196459057e-05,0.05296294314085264,0.040292498681836264,0.051287435566651884,0.0007513174429950768,0.01029344686378073,-0.0018748953414424606,0.00788764934551603,-0.0503906184003347,0.00010004962006390439,0.0037826848072803287,0.02929491696688492,0.10319889073093368,-0.042945947762332515,0.0018219498427854042,0.010545673827285777,0.014282229957774948,0.12715572823239624,0.00011296798142703177,2.8882999131008108e-05,0.036374973937129434,-0.01553237722787691,0.04746224992947796,-0.011100681411543934,0.0010699435804459078,0.012961439361455301,0.05081023303446075,0.4096468084809758,0.09988062723195823,8.259756689150918e-05,0.018219869229854937,-0.016946507918730154,0.026384060624985627,0.025435296324040593,0.0001515946829094371,0.01448673427598347,0.029257756578700975,0.04565688334535069,0.03494862553837943,0.0003678228236452911,0.0264122497084384,0.030490719724840906,0.10723666048678249,-0.03068172826042181,0.002203812977349351,0.0051126188799692895,-0.020377453942071376,0.08892832953822037,-0.11078454025258765,7.351909564295768e-05,0.003780771734418305,-0.03313413447289668,0.0440095388466056,-0.01795256427151792,0.0018715696953583063,0.01733528523507831,-0.01806396539295366,0.05822858594005039,0.0038992532906335954,0.00012291160378642528,0.01023887577852552,0.04590398557922763,0.09334817013161952,0.1045792835754917,0.00019934482300828157,0.0037596353693364892,0.045742082928482856,0.23171648635864767,0.09145928493659271,4.818068026314338e-05,0.021715667992115918,0.06207904063350495,0.20082420926106392,0.14536465681940122,0.0029298608128145195,0.001790652463080423,-0.04620489872097711,0.23096801112936938,0.000835250119524321,9.951229876409715e-05,0.016081949823007206,0.0017470023535293851,0.010222894965056383,-0.012370580712520984,0.00012393112035203506,0.013793968264095478,0.005429207731072673,0.032249208802818015,-0.07480871265087836,7.96280523673121e-05,0.015179936619907743,-0.04657122172161627,0.24785634178426946,0.032941886693503064,4.7224241431596605e-05,0.0029634046697827113,0.015747494541461543,0.03276587831014547,-0.022763711736662837,0.00023432522708312687,0.009425296252596327,0.027072670046297535,0.11041977254405584,0.024999937235404588,6.096753242688005e-05,0.0029971589832744833,0.02026075495566192,0.17867361688983016,0.001934339553283057,2.9256776938581998e-05,0.004285189633064044,-0.001673551083555499,0.005119013592044516,0.012215215352196442,0.0001142777431969626,0.001119786639840359,0.018498124355609328,0.06809765124564997,0.014666708051835616,0.00042817719493267695,0.019972686741016377,0.003239431752576435,0.01725064355629686,-0.00023286163321422967,0.0001075561700681661,0.01034805032344189,0.002556732395467265 +2018-06-04,0.02014020713732393,0.1503317800122028,0.0005926135245828065,0.00014167711902801227,0.0038384630794935214,-0.04187313918748749,0.14685466160529115,0.07130560461534548,6.841609944243397e-05,0.013980114258809134,0.02564161868136929,0.0754558874174778,0.013439989288315406,0.00015719890294420383,0.025373836620536494,0.008550839599484305,0.011028357917478278,0.0043188618725468015,0.00026167712748159574,0.005780978886040788,0.0023118732151408434,0.004923173704454058,-0.0032045496145668433,0.00024570648913962143,0.002458267803933098,-0.011855870836283823,0.02691614412306934,0.005451336084767519,9.617614247478175e-05,0.0004944892315760705,-0.010801361120726865,0.04130282079904974,-0.002490394648948435,7.673413966029054e-05,0.03200867956530401,-0.007334070830447799,0.06315786389045468,0.003512721113473838,3.9821377719388465e-05,0.013484842651151656,0.01748871722971155,0.013719060360133331,-0.010892525895838353,0.0009830562656303397,0.00937578378894766,-0.02549326647110705,0.06018107553220861,0.020844964117461676,0.00014812468059930556,0.010311761119393324,0.0011168323263957866,0.0008160302120956216,-0.12654497539832513,0.0006689691588912749,0.005460106780603876,0.02640091186390707,0.3477921129498559,0.058151804148186076,2.2621530660048678e-05,0.001984441176751167,-0.03388200761773189,0.08889949471072633,0.034947604221141494,0.00011321940836000078,0.0031860266276153024,-0.011911160388643052,0.06851207754802356,-0.003813671336218988,4.893828589842249e-05,0.00417679608967658,0.02884070640995397,0.023650174732223597,0.03545908194839833,0.002378452663432529,0.006044343203504967,-0.018575024584920444,0.1300945658195957,0.01163909297170361,0.00011749580172491507,0.0064949328756386876,-0.009835414853048377,0.047823264868049144,0.0032772267638706,0.00031846498803027464,0.019235158042248353,-0.05695674592660881,0.3328841361882202,0.011291089064812205,4.819622531295076e-05,0.010358139869004185,0.05111407037852046,0.26892362213411686,0.05502589884381712,0.00031325522376921585,0.004439339281006801,0.019528828054018926,0.26322673519535567,-0.01581108095055622,3.078764112731975e-05,0.01263342093546607,-0.009727886019516862,0.10926064661526426,0.014361863951045207,2.974653715668657e-05,0.0015119898647541839,-0.012908409931148637,0.04017030926457552,0.0008473680715599568,0.0001035119116804531,0.003491154242023277,0.10783900857811733,0.735469253069462,0.15729267363541147,3.38691066191326e-05,0.004547758361502608,0.00801235058370167,0.025561230583471355,-0.0012179664989477744,6.949532144060106e-05,0.009199574328433968,0.0025889313444431503,0.010388658771993832,-0.10100522095178736,0.00011394877157075562,0.00013053206183042017,0.07532703796230948,0.06833963121476878,0.08146619061751988,0.0006300192520962624,0.0024100979873904714,-0.012459368853785242,0.04509741244174011,0.006248979163143716,0.00011628680226122505,0.016777215315457575,-0.005082795135360566,0.019156436304378497,-0.0509229769483373,0.001702970247028412,0.018628833683475773,-0.015816744245426482,0.14596495331632747,-0.031253153857857194,2.7864464088238396e-05,0.03063487431379449,-0.006989257879442227,0.022808978749655272,0.00017883005482356745,0.0010018356778200052,0.004957103906817545,0.018769579518322192,0.14577907831161768,0.006678272018576141,8.574029762236014e-05,0.014221365763256139,-0.026978841936427356,0.03488889792930209,-0.01047247057363622,0.00018250780369217717,0.00524469207149242,-0.015441854164266714,0.020019581361295904,0.020989904957114325,0.00044273960053486824,0.0024489662086159994,0.009063895593927207,0.03205484791406525,0.0014342399829022684,0.0021916515893914577,0.02121957099568001,0.02056316544237135,0.08546071851882577,-0.04360917765072589,7.719937782355462e-05,0.016950696992623387,-0.005370978716309675,0.00809080103723932,-0.026592277928476078,0.001650209571341998,0.03424700801192506,0.03191356714229051,0.10329661750855393,0.02864600265031322,0.0001224067271460986,0.033645884172321915,0.0012864005803175321,0.0036801916500803426,-0.028431869616618807,0.00014169879850508372,0.00447221742539451,0.0013482085790315838,0.005517404653739497,-0.006156574306817851,5.963979946896456e-05,0.012105813516370818,-0.07567398193912105,0.2152232458455552,0.10254793535551843,0.00333254074604439,0.01806410007789787,0.034416142588514075,0.18517200038159243,0.08030810174233013,9.245437027155802e-05,0.009201490212364324,-0.004148465155486443,0.02010651444270913,-0.005679802216206307,0.00014962750728264877,0.005980673952547696,-0.03425404053043744,0.19535300874145883,-0.050541854814718824,8.293548745332192e-05,0.0050951527093067855,-0.027755764611401668,0.13812771353884773,0.01212370869111859,5.0503301265601205e-05,0.01699173598800673,0.010338798806074998,0.017991560572039152,0.0026923942296136092,0.0002801758142614735,0.003197936091151463,-0.00139095618278392,0.004764442568065854,-0.0009796592868483568,7.259650765903273e-05,0.0002458230142951051,0.04037014477594735,0.43249174421795883,0.09571660014806371,2.408317661869603e-05,0.005096359762727399,-0.01807336187546546,0.0530902620893639,0.08310071560501162,0.00011899618538561116,0.009901156904442354,-0.010816845990390785,0.03840730837695368,0.010718479614637302,0.00044393025545246857,0.010335363502092593,-0.043380034942535346,0.20145141981361564,0.011707467886293533,0.0001233364264104966,0.018157315179997465,0.00014331950713038788 +2018-06-05,0.019793316118087306,0.1437513878203603,-0.012730230114728226,0.0001456106359135363,0.007176503017900442,-0.02420546780873013,0.08788932098944524,0.0014210725378180557,6.60827180759768e-05,0.003249856398934779,0.0005696355354437011,0.0020379355809207814,-0.0011644684108204667,0.0001293015784645726,0.033585114668431476,0.013308606428064938,0.01472897489790554,-0.00424420371125376,0.0003049494934316483,0.0010032561195629105,-0.014856800445980324,0.033165928747789584,0.005246695476900345,0.00023438558522635616,0.006351863489889933,-0.004082268359893313,0.01311209780569062,-0.05396252928338663,6.797920960023801e-05,0.008166814386337212,-0.030564339251859772,0.11727699958752637,-0.026914086130092454,7.647016376877615e-05,0.001705499794693604,-0.008284757144357582,0.06901707652550124,-0.04173110715008198,4.116440453842336e-05,0.006377994381883137,0.0013616143775479444,0.0013267561624291933,-0.05247858288685338,0.0007914214224360419,0.0068313085350012355,0.0006238995303863335,0.0014713756691105413,-0.0020153167780003873,0.00014826989326289087,0.022135333224033913,0.02153562403882875,0.014396206239542776,0.028498339701808203,0.0007311959199634747,0.010798243533748222,-0.010353929803981912,0.1290617287729424,0.006784332234645531,2.3907299793613616e-05,0.012515401038692196,-0.015290437113196042,0.04207690079007013,0.0022133358027554423,0.00010795113050492548,0.0037725772542113144,-0.0035238623559169734,0.019067649188656628,0.00014643009302387633,5.202158755637551e-05,0.004811275819954143,0.001566641088814023,0.0013568149929035873,0.0016435599167606784,0.0022520179686427795,0.013818689867409391,0.0183273459629964,0.12461619988170486,-0.044567427803898274,0.00012102558270528055,0.02902420205956401,0.00034838356143966403,0.0020202069183456028,-0.006578543798791076,0.0002670361343065965,0.01059455227728983,-0.018701618977338987,0.10663535169391557,-0.08096365088078698,4.940136567005997e-05,0.005350001729211674,0.003719058945321892,0.017351056153712727,0.00023092513094413608,0.0003532595846045949,0.007094296752541065,-0.0059995221542670585,0.08199075290888015,0.0004075991921293007,3.0365610578622294e-05,0.008098371141201032,-0.0117588656535142,0.1304876996485674,0.0248883175334834,3.010769879059215e-05,0.009440829460352093,0.03360420533580544,0.08846923807549784,-0.0008484325790461901,0.0001223556697385984,0.0009692353696934958,0.012711236838990158,0.07490483559830063,-0.004028717578245745,3.91985797265713e-05,0.025380013314027207,0.018366472791950212,0.053236856681465425,-0.11557065998803615,7.648754769668811e-05,0.008280814038445355,0.004861200406996941,0.01628788709446581,0.013751937957297095,0.00013646691408775383,0.0014893395027734855,-0.07165923112360605,0.07237608189120001,0.037932600531544576,0.0005659168651331708,0.022791797389480572,-0.01859012347127455,0.06452489347689512,-0.009531753401172408,0.00012126654020029129,0.0002451905201099208,0.044782792983055805,0.13943207231019597,0.023284971563207173,0.002061425616025694,0.011896642759649039,-0.005971405760614332,0.050556029229309636,-0.004103134953265815,3.0372869333482442e-05,0.01714985631764962,-0.07704557892661516,0.2726951104714373,0.126134740685137,0.0009237227539240961,0.012463081958234173,-0.023711132335806007,0.17005982155345156,0.00906929275647517,9.284878362937915e-05,0.014845481904831532,0.022057446286396467,0.0299670098791796,0.05955982948323837,0.00017372295401776644,0.004464130764142701,-0.007700178201202946,0.010882156901030783,-0.02505034599001951,0.00040615303829275967,0.009828865865104992,-0.009115720899140404,0.037044834645110075,-0.023170676837603498,0.0019072766866304143,0.015819800259843586,0.007880522586825095,0.03054750607600028,-0.06045944099129106,8.276936601787042e-05,0.006321122306490302,-0.037606383463565395,0.053051717581813755,0.010750506728495887,0.0017621355500791439,0.008614346255549568,0.030090941702536275,0.09308738183214234,0.0403516167333153,0.00012807400786107837,0.0009026557273964596,-0.013824139341265574,0.03447836816187836,-0.0056637066669638775,0.0001625368264978687,0.006476226736975738,-3.285050315257861e-05,0.00011602456996900965,-0.036603842065587096,6.910444500365924e-05,0.012025233845454075,-0.05272016572833224,0.17779249035508035,0.030109649863025223,0.0028104859050131934,0.0009877372712509766,0.020229572655727238,0.09316801110968359,0.016683877144396408,0.00010800912670851905,0.009078986426143847,0.025077682813239868,0.1579702326880173,-0.14413550827155602,0.00011512587170492434,0.007815167720739044,-0.0013078892385152317,0.007088054051547315,-0.027860252183132463,8.727556005270428e-05,0.0063607396861147525,0.03346239548339525,0.16437342451631862,0.012419799347122893,5.116498125828043e-05,0.00472326014811668,-0.04569604259254278,0.09886416581532571,0.027131139609988718,0.0002253559755652623,0.013234578952403079,-0.002107892516139714,0.009300488966864551,-0.012052916840831927,5.635819247422568e-05,0.00768517137017447,-0.016008947597688426,0.16927644073954368,-0.003563951804818805,2.440043392441172e-05,0.010759900792967568,0.0032090790495306375,0.009848699691379083,-0.0018390804568973402,0.00011389652784343345,0.0006107597251238714,0.025062435199751647,0.09659477001329207,0.0357251882671778,0.0004089758137403564,0.00038263740959633245,-0.03686368151712387,0.19900306620361607,0.024345297335263964,0.00010609886385507672,0.021719537889406133,-0.003892592649206933 +2018-06-06,0.013128273703426785,0.09194969432470672,-0.010052426657590152,0.0001509885159763809,0.0003121026040133867,-0.007879406183975132,0.02731599636585184,0.0015678473821709796,6.92128877050927e-05,0.0017622894158484776,-0.006917525267389206,0.021779611689114752,-0.0030453420843288555,0.00014692571953133987,0.010972873353091755,-0.015284459110318695,0.01688604813301869,-0.026917418825849897,0.00030548501237303286,0.006733576519686545,0.01033341787660321,0.027253180939941533,0.003480897144705244,0.00019839218703535908,0.014683762032745467,-0.01028692047435827,0.025961680134971053,-0.07517802279033022,8.651657680780091e-05,0.01642142904313893,-0.012265133976434845,0.04358930997828186,-0.017014617138279724,8.256237122233708e-05,0.013693486418025045,0.0010224791655284254,0.008474779304687225,-0.0168423751310502,4.137373081398674e-05,0.003942252168953006,-0.011100813143138846,0.009064817279422665,-0.009210422863005061,0.0009443663953295234,0.006753265778637663,0.0013195433194696017,0.003156684475172271,-0.09167300913004778,0.00014616869322991923,0.0020568373091049675,0.021495971862671378,0.0165285067065247,-0.023417909871966826,0.0006356935791825216,0.014518261489895424,0.010439181207821054,0.15564016759113294,0.0013301682932480583,1.998791693600124e-05,0.012165634617887734,-0.023702181010648277,0.06360795704429492,0.01152707310688932,0.0001106949736316836,0.011585413837292396,0.027571555483824724,0.15846263246247883,0.1277316838368644,4.897745564887312e-05,0.0028422435123909963,-0.01744033630190281,0.01551771783995621,-0.009433595505441076,0.0021920475818366578,0.008652945365283186,-0.02794540377431449,0.16936323938220485,0.028225358068848592,0.00013578235756552036,0.010457080136647236,-0.02834157273732952,0.17438959660199094,-0.0053415186249088685,0.00025165850100072515,0.006501036596595794,-0.0316724291667173,0.20069573911840508,-0.1505769006566944,4.445331748489383e-05,0.010381523929289945,0.03879053891771818,0.22380893862708928,0.02914143601911292,0.0002856506345049546,0.0019379757010169975,0.0014237297647922567,0.019458088855433448,-0.03437030640822082,3.0363904273538828e-05,0.019565940003946035,0.004975263075510458,0.05094243636392088,-0.03585356280852425,3.2630073136432536e-05,0.002953310753969499,0.002171213211791669,0.00557594178414746,-0.06429161732371391,0.00012543161034470307,0.000494836607582912,0.021801486225598164,0.16091815263012982,0.000267885119645934,3.129489067786043e-05,0.009131051862174396,-0.00011087832625631216,0.0003344046301428362,-0.002670580571899378,7.351090370729429e-05,0.00951233971472007,-0.005271039083913346,0.01862336769202205,-0.0019432900438584029,0.0001294155952362027,0.0019055871785462642,0.04993119140758178,0.054318396061189926,-0.0048613099524171,0.0005254126839476292,0.03325824097961847,0.004073100332276423,0.012270978119272625,-0.08603798097381823,0.00013971142925134255,0.0018569777279722954,0.041647873450455286,0.15717788002891722,0.017087684794695947,0.001700672068470242,0.014720774050342668,-0.020366168174125593,0.20016365784515006,0.00592530734721549,2.6164129625103293e-05,0.0013257939392915374,0.012572395847098785,0.03844054568684959,-0.01075978324017165,0.0010693005055768046,0.0032458781324019954,-0.0008290878243994715,0.005946225624225021,-0.026006490422075444,9.285061752985567e-05,0.018428330843376618,0.0029277725224023,0.003702134136906801,0.0035718857586372835,0.0001866511055488363,0.00011889892052628203,-0.020043656708081153,0.02654772844365041,0.02844710212640554,0.00043336467046477793,0.007617403917994621,0.011739705060019721,0.044918671154082025,0.0052622153255628395,0.0020257256509266758,0.0034092163566168013,-0.0071127776713123345,0.026065349607157746,-0.011184954150901734,8.75519956772485e-05,0.01462847118647384,-0.01004883835847535,0.013292382010627673,-0.03278505036445899,0.0018792745751611483,0.005991847983512722,-0.016672786282405188,0.05196164217625045,0.00541073735905987,0.00012712804017032316,0.017562494145184702,-0.005738657315853933,0.014756823593986687,-0.00828702303462113,0.0001576441219924732,0.005470410637542559,-0.01799951597916791,0.058671817702875974,0.005129845991503944,7.487644359466861e-05,0.0038643021961598887,-0.03193307405905925,0.08354293573556205,-0.05746173340484455,0.0036228391615656065,0.0410245115412525,0.037995318023681064,0.2040462510466343,0.014167149081431438,9.26279462102926e-05,0.0017086163145529618,0.007379586855428724,0.04632221136191389,-0.02229339215376907,0.00011553233454410672,0.009483598826076136,0.0038048112858828772,0.02015620667880321,0.00013878238305397377,8.928387216554205e-05,0.003712906742967017,0.012522149928040663,0.056061462083937946,-0.03357921078024226,5.6138638306031204e-05,0.0012593774801839277,-0.058488551597613535,0.11856136714160322,0.006369180065403241,0.00024052324929148532,0.008037362757363364,-0.013134304028662726,0.04489570969909302,0.010896731377518598,7.274725317996832e-05,0.005037076101603722,0.004907104744592895,0.05679524589290871,-0.014703085007265398,2.2291773908621843e-05,0.009826622363959632,0.029972011897388618,0.09256112718372927,0.13543496242115502,0.0001131869158161871,0.001977706534153469,-0.021130998950107144,0.08847002746363034,0.03377914844666279,0.0003764886059674056,0.001257157484131499,0.009886966135087827,0.043809176495191095,0.0013400595987815085,0.00012926166717556507,0.002317488174156717,-0.00030483901406088565 +2018-06-07,0.054214648956304685,0.36968772043154086,0.15412372361470356,0.00015508443375432596,0.003664229468529093,0.02250400729553342,0.07187872905822369,-0.11178226437128395,7.512249390087199e-05,0.0003742315571485678,-0.04901285479473738,0.1670292488271662,0.013187722862961139,0.00013574213498860076,0.0008291951671633982,-0.00450806246651098,0.0042331933098720105,0.0002712915286808396,0.00035940960607510334,0.0011063266600037738,0.01651651901725859,0.044670101780379064,0.006156831194855614,0.00019346363880366963,0.014548727293672032,0.007603835313119312,0.01877042608941139,0.006110598177366003,8.845152209589605e-05,0.01035538514454025,0.0037024463367074994,0.012145408381426628,0.0006833966552879533,8.944714959923408e-05,0.03360751382027181,-0.005910493082878996,0.05141396428598096,0.003063515796973161,3.94222344439724e-05,0.00018037159463401485,-0.0047758265361548015,0.004050730764443365,-0.11036056033774178,0.000909201100180401,0.004070566960630543,-0.02200430049691369,0.056172387250546504,0.01108980498727504,0.00013697666002213295,0.011508718793746304,-0.0004984269728581227,0.0003191815531132301,0.004233987980818536,0.0007632874313837441,0.005054764968113074,-0.007576887388411474,0.11085887099642323,-0.056433648462564406,2.036775539224541e-05,0.003598068928587739,-0.025906187253445324,0.06846914434170231,-0.01295773509015971,0.00011239827282620633,0.00286785412934352,-0.002820143834004554,0.0171071031656137,-0.00302125988406076,4.6404126585152745e-05,0.002328930894030817,0.00477060216412736,0.003701645811151164,-0.009085609333094371,0.002513629774968905,0.0003446940907539651,-0.05384994514106282,0.4084129400409416,0.09283682528640481,0.0001085020339118323,0.0119722049156534,-0.08818135813949936,0.5912570162731252,0.24004523729209712,0.00023094507645117713,0.003524139133486611,-0.015475253789042779,0.09696444620647908,-0.044770513865602435,4.49558501181054e-05,0.004119875791037119,-0.006377137984111402,0.02728787886364027,0.001194864020572359,0.00038516147661873864,0.01300476890948184,0.015956369410791094,0.20621105436584605,-0.08637301725212175,3.211089205932638e-05,0.0012438417861876914,-0.0032428384369535025,0.0323979498718088,-0.22270855812157633,3.344178819891255e-05,0.0053614941426389316,-0.029505383876885186,0.07631729161079925,-0.07580259016390141,0.00012453776735907518,0.014409365381365951,0.03813241494585386,0.2657666386630721,-0.09410987588681455,3.314257309046491e-05,0.025232038251306342,0.028301327832613,0.08634130817240307,0.09873119899087165,7.267174187395426e-05,0.0031231559717386235,0.012871636388373084,0.04614242732589231,0.057922820671142135,0.00012755042839372247,0.010401355552489796,0.007394781516888937,0.006226738849373226,0.00016516450125334344,0.0006787975352715397,0.0453591555738197,-0.008652655833948579,0.0323192604351868,-0.05359167888326451,0.0001126870538262041,0.008241496970549716,0.038654478622085896,0.11776012292994685,0.006457741857374997,0.0021067875544019156,0.01482015316788457,0.021603178997297027,0.19048528072910823,-0.00656007873079799,2.916341896899295e-05,0.023656877961746266,-0.017293017172375833,0.05114757086917973,-0.0013975831233180409,0.0011053938137282678,0.00044530229569888754,-0.01159089630985135,0.0820273640773575,-0.0368141786900045,9.409876164981415e-05,0.014960984422923458,-0.05064779349076248,0.07884367592315965,0.18107860750272134,0.0001516139113510378,0.0008178448822423678,-0.02062564838259763,0.033720096979932244,0.029156496303323596,0.00035109343486298684,0.02084597385508761,-0.020635562019539633,0.09347586054852818,-0.023470642451855324,0.001711067611755328,0.009554399136765033,-0.0005346603016799042,0.002039256547096466,-0.0064226369590611185,8.411945382467597e-05,0.007556801555819573,-0.015870113168975283,0.024882814261986033,-0.05108731787966325,0.0015854688643946917,0.012863273821298643,0.01202400705629168,0.039042739681774026,-0.03969097977418617,0.00012201830109426569,0.014516370986544578,0.007965297037712916,0.021945045646166537,-0.012329688846359906,0.0001471383438714182,0.008927104836184377,0.014273826775651676,0.05977621561312475,-0.01954762324444131,5.828085712836497e-05,0.015537225445585527,0.04259076386225405,0.1412265980589884,0.061888499390217434,0.002858360419302286,0.016650420058694975,0.027305236065770535,0.14615589578364654,0.035750614586155444,9.293304498633245e-05,0.0011424055408805673,-0.016783298016497326,0.0998969490064595,0.02659694963900346,0.0001218388710556638,0.012955820947740832,-0.0438392206504391,0.2248823615617087,0.12020723131897736,9.220535204506812e-05,0.008074297254101645,0.017612298235692884,0.07760507520045846,-0.008843745397204733,5.703918371648867e-05,0.028655126028045222,0.014972560088895972,0.03195484473906269,-0.009205810182591237,0.00022844872945518296,0.012170396254412179,-0.016192025528275863,0.06995780429616012,0.010714050932640233,5.755451327548808e-05,0.003598391912834931,-0.003471098370449491,0.03822920650972977,-0.004630717570085362,2.3426258071890815e-05,0.0074071873376877284,-0.03141697131724468,0.11727322219862528,0.22873226155290088,9.364280670443522e-05,0.001916103832634078,0.007791169598484983,0.03095254853333413,-0.021057464200792145,0.0003967657868712852,0.004239969742008203,-0.056934893435470556,0.2567828884341165,0.0662257906892317,0.00012699429994728788,0.020144804719858262,-0.004295431456855251 +2018-06-08,-0.004461433021926877,0.02889817274948305,0.008953432274563756,0.00016326405483698731,0.010336936892244304,-0.0005748917089875624,0.0019598851145490185,-0.016746584467308572,7.038270557732917e-05,0.014487042587493518,-0.029466429566012666,0.09623898578419948,0.00784817995115427,0.0001416360096408565,0.01991409533093107,0.017486710276706702,0.01984574416364513,0.012777596604870408,0.00029737782618961627,0.015406133596739733,0.009915189263608855,0.01922634122534144,0.005016870691918632,0.00026983739468185305,0.004858458187443627,0.002310274287536853,0.0063490826882256525,-0.03181660581635716,7.945098782453352e-05,0.0024926763442772977,0.028044151658485998,0.0924736640573738,-0.012645330995281602,8.898444505751219e-05,0.0020637001445251322,0.0039057622273776216,0.033497176435222584,-0.04397959682358542,3.998491846547847e-05,0.00039246308513900036,-0.006800669556376436,0.004869133752246518,0.001024783717504364,0.0010770720476442237,4.0776057723863847e-05,0.013578504909021058,0.030741415163253405,-0.01901297845243488,0.0001544507366155023,0.002413317833522639,0.017527352611512646,0.012794909207482903,0.0018829658437906948,0.000669581542575715,0.00295440523585463,-0.011446247863711479,0.12865476174684087,0.006542759396196412,2.6513073189309578e-05,8.202881043356514e-05,-0.009388157678380507,0.02649716188841992,0.0008351009224191324,0.00010525241123061471,0.009808352446110358,-0.0021998099870675857,0.012073076824016255,-0.01254815981726018,5.128956592657522e-05,0.009175257763490728,-0.019074699693371798,0.013755068904124465,-0.0787043029349374,0.0027046925923513887,0.015027563940263257,-0.009034990183371892,0.0624645658217367,-0.049085183351005646,0.00011902715883775099,0.018508189622413407,-0.026918749659784368,0.15041179813872907,-0.05936421106610753,0.00027712851357300717,0.044162848251205075,-0.02334098182571805,0.13573324504576462,0.001584622766015331,4.843885227927196e-05,0.006737808422535914,-0.022778161707111683,0.09829890296036677,-0.006546373070280208,0.0003819062873034781,7.492652777467759e-05,0.020633571678449425,0.2425968333026478,-0.07600283984962651,3.529551431640266e-05,0.02086991495996537,0.04273845776296376,0.47786848225792483,0.5210257525108851,2.988079636327807e-05,0.0002702032644298037,-0.010817628719322172,0.035056925555277604,-0.00674098259531815,9.939876787312408e-05,0.0053842655595010575,0.02303161403794471,0.14498404874165588,-0.03156532472582218,3.6694124208571466e-05,0.007408278879987688,-0.006095856268791034,0.021202780757462264,-0.013585004005974283,6.37410595114036e-05,0.006453537978833808,0.01166256890418757,0.04037322292778444,0.020019778411563532,0.00013208375240880447,0.006608423492385318,-0.00967809294398662,0.010703505338034937,-0.005977191941931157,0.0005168200097939841,0.0017046795854059257,-0.011276578134392904,0.04570142144921253,-0.01952486232223333,0.00010385648846450961,0.021584050551188522,0.032569982853143976,0.08575212210326474,-0.00975970413094054,0.0024377649489104323,0.012369586275676497,0.040968182344893,0.42769654140660657,-0.02294131535019441,2.4631630030119436e-05,0.0009061939543344516,-0.011131145171691809,0.027508919644609997,-0.05271375355518639,0.0013229321836460885,0.030425940912192348,0.0016502812759679843,0.012102855678640338,-0.12941495412134382,9.080207245254164e-05,0.009640356355865382,-0.022945362932840843,0.031095341152610503,0.013985607255733628,0.00017415862683206008,0.0018541973774572496,0.03619783215016338,0.05344169218421471,0.046930544084921234,0.0003887821117960052,0.0031045686588592864,0.031486065073049255,0.11686750089341769,0.042595103797973995,0.002088213853964216,0.024607774475279245,-0.009678905318950813,0.03411969572843552,-0.05069372819334618,9.101468332624634e-05,0.009162874038302038,0.030235165888054878,0.03683047290829717,-0.09074056397886168,0.0020407145091688606,0.0010927403753541794,-0.009324745694492504,0.030099489806526783,-0.08339522389769675,0.0001227421987442838,0.013257382370512608,0.03914286120922137,0.10155296698427353,0.06987911238469753,0.00015625010853574572,0.004478424395269756,-0.001412396251198567,0.006234556834342138,-0.09354396308491544,5.52923301958075e-05,0.00918530800221077,-0.030647551727722183,0.09770392922701825,0.006406761702075467,0.002973047275800567,0.002364702168067596,0.00699501406007139,0.030319041158499906,-0.03262248280204124,0.00011476612015169153,0.008958325427025415,-0.02500653161946517,0.13179106792552447,-0.00614039219385588,0.0001376031154936612,0.013376218105666218,0.01713567243840656,0.08467992368938103,0.017214643591482635,9.571266139927318e-05,0.005284890473383904,0.03825513604322422,0.17387606073691844,-0.12154931761478359,5.529646304548859e-05,0.0023150895258082903,-0.016432995564825196,0.03449669785181274,-0.004358905502065026,0.00023225689047692567,0.01897676887201078,-0.01601881052745624,0.0660632850216986,-0.11377093918856515,6.029544087868253e-05,0.002519902404090422,0.01129801058386314,0.13846595165909126,-0.006015808727635443,2.1051850045173308e-05,0.010066788829059125,-0.009516463587429615,0.024950717791365238,-0.004280095543296523,0.00013332190503931174,0.00970663091634555,0.00696083496877475,0.03179166617086761,-0.06664060834587211,0.0003451246814872801,0.0126307229754078,-0.003031380134936872,0.013871926356062903,-0.05024685749830729,0.00012516284369690968,0.0070008361143516825,0.002731775671196555 +2018-06-11,-0.04612288992325703,0.28486381923344595,0.16090110602727042,0.00017122445885358904,0.0035445044849903703,0.0327976611492284,0.13312716240755526,-0.003167133357542778,5.911350710057506e-05,0.004631650330182993,0.03473891031985558,0.11484411433437818,-0.058184980339550864,0.00013992800849099804,0.00012588004774529652,-0.0008066690000165752,0.000809081135020032,-0.0032398036832384054,0.0003364892148322525,0.002083785434989577,0.0019612533022645034,0.0057555657820008484,-0.01045079531991223,0.00017829675462844558,0.028177788423142475,0.004434215344211042,0.015198662217720387,-0.0612801181552075,6.370274651425304e-05,0.00036226962159385877,0.019691191362235173,0.07143339070986285,-0.01177930934774837,8.088362049114072e-05,0.022001087799390834,-0.0011773345188761546,0.010134591800721843,-0.0036524093281515855,3.983751417863159e-05,0.002073051301555295,0.014063470351875282,0.010239772224087468,0.010523180159369136,0.0010591244463432055,0.008628579847353338,0.0065206533344275,0.014920530114887847,-0.0314745588424213,0.0001528159707939344,0.018624888207425926,-0.006981838484162033,0.004594139290610126,0.021239607729061888,0.0007428309622968958,0.008185759930833017,-0.005920618380616816,0.0815652893243495,-0.019422654281204765,2.1631392493151275e-05,0.0033095604987285468,0.0008073882704353404,0.00218956769347831,-0.014292599664344156,0.0001095405953813003,0.02015739037977064,-0.0010143377833995758,0.005601134871886303,-0.0003434753736861552,5.0976309503598316e-05,0.0047959516980843695,-0.04254365811756482,0.03665854961488553,0.05078654759525907,0.0022635105567695504,0.011610710190062672,-0.02027764480424235,0.12913680991500393,-0.031236835716258786,0.0001292169736715868,0.009779211939424645,-0.049596633573740126,0.3073280979402572,0.047953988108750956,0.0002498953431794083,0.005630320751962439,-0.059696644385238494,0.34508677923787356,0.05472227531219462,4.872844520903353e-05,0.009198531379636648,0.002476115792388029,0.012442816822060315,-0.01414211394441461,0.00032797372304581914,0.0270976582538551,-0.012446406498684955,0.18700224390289563,-0.06237491827785522,2.7620236590644618e-05,0.0003464038510667257,-0.02074937695290738,0.21221813311822163,0.05964211273368097,3.266662596933155e-05,0.009223581212685558,-0.019907321266553483,0.06151963027231809,-0.051080145789029856,0.00010423699055275336,0.008813176747601355,0.03681763195284404,0.264504416445208,-0.010640475771996272,3.215254096325814e-05,0.006232269929969923,-0.015477037020312008,0.047648253198202505,0.032479503002363,7.201421315318162e-05,0.00011928890436235882,-0.0040559665873404465,0.013387573466681332,-0.013897926447618865,0.00013852912694176675,0.005900031631516788,0.06620120817632359,0.07353282423016202,0.02991255385631157,0.0005145886822880576,0.00017031258970713658,-0.0001858613850726642,0.0007038202493040167,-0.060419392330093705,0.00011115101189208274,0.0005773727331883745,-0.02965759148000131,0.10663360503643528,0.012875582275779299,0.0017850934704263482,0.007087901027915868,0.0286923055963381,0.2920107194529711,-0.07536490858601777,2.52667189022566e-05,0.006283554120054638,-0.024333212574276206,0.07010387537841876,-0.0042780360712137136,0.0011348244736832794,0.01930658260223735,0.029216654716864406,0.20819896455602216,-0.039882325059512724,9.344962566244498e-05,0.0016319198206946586,0.022551315298546364,0.038206333720577156,0.05290648501700807,0.00013930987371416382,0.01131533005766704,-0.01414598168216985,0.023975474140771547,0.007606325347903166,0.00033866459814101255,0.005183254979432004,-0.02338607564883031,0.09416902780882373,0.020596686290497407,0.001924862024973463,0.015541474098370388,0.004020514377778222,0.01383945368505861,0.0031893318341056293,9.320796868503373e-05,0.004058695149842658,0.03031316316742784,0.043671389738975906,0.04165372205278231,0.0017254859862596505,0.018850215574837494,0.0017697195163826269,0.005942692951012135,-0.07634127662396599,0.0001179878222445159,0.006635227578882537,-0.02976146475217047,0.0615380490852399,-0.05005186045858604,0.00019605185417622976,0.0036304037495587067,0.02447910104543834,0.10015033917758205,0.00538011493878958,5.965638949645283e-05,0.0011376441217049926,0.013536119127871565,0.04588628323398626,0.012718316736031927,0.0027959496371773385,0.0018171638456253466,-0.0117362246776973,0.06106476127678463,-0.0349965009075685,9.560449726466686e-05,0.008684278707549807,0.04464795036618328,0.23314815382956716,0.020703592520460216,0.00013887700123957111,0.019817252208984545,0.021199962629128592,0.12405249227269018,0.019419877186169845,8.083106486633648e-05,0.0087886921490692,-0.032009116980266795,0.13176531499287616,-0.00597603435589239,6.105482404347597e-05,0.011501156975018382,0.007229571759566737,0.015426002255023363,-0.0833359656580001,0.0002285012479954246,0.013482213200337033,-0.01861805948889959,0.0660655850000142,0.03317681383393691,7.007667779787754e-05,0.009703336014032438,-0.03304625797579449,0.3189283270373235,0.04544421158049008,2.6733786757680082e-05,0.0020459565135442013,0.006149104908357962,0.02089338002290396,-0.0035001749846680615,0.00010287554843298336,0.004468821250352246,-0.015261010124826595,0.05481918316066691,-0.020277151072621225,0.00043881219790949523,0.005338302829564382,-0.014716269127538971,0.07636229265572421,0.0007550739737551518,0.00011038004291471917,0.034781277274805386,-0.002522827977861873 +2018-06-12,0.03745613827353977,0.26544107588413823,0.047690227362586685,0.00014922495429776586,0.008791334173232003,0.0379371171925568,0.13769654138011872,0.03213801414941609,6.610766548427917e-05,0.012685474291676125,-0.0067370948886147355,0.024303671536805963,-0.0419971704172737,0.00012823246230828097,0.010803309851217106,-0.026718573614206945,0.03190764976915196,0.039390877586382836,0.0002826092088410451,0.02404101469778103,0.007232547237518457,0.015992742464288116,-0.04098909832231284,0.0002366279860159395,0.000921736921286145,-0.004254712123657903,0.01179038256177097,-0.03745087772104005,7.879325172166973e-05,0.01186930305007782,-0.02164002851684336,0.08127358118086359,-0.019871383273146248,7.812648535692535e-05,0.026813486275761973,0.019445660828238065,0.16027230379171822,-0.02634120054273587,4.1606658796056296e-05,0.006902379208837355,-0.007269250025889004,0.005546538398879243,0.013247621496017138,0.0010106769692093548,0.015911657567012398,-0.05430958587267249,0.14023808633532978,0.09892851924619091,0.00013541675443479786,0.013634967020225514,-0.013970565034167664,0.009669448519794722,0.02588492027351572,0.0007062144898879941,0.003189779795706078,0.01818959864895541,0.2171707468088839,0.040830683901914085,2.4960000007279413e-05,0.004686583845139712,-0.009178595792652462,0.02892513518741977,-0.046589716405241816,9.426530678550749e-05,0.008372085917429346,-0.011803319686713637,0.06492839264919237,-0.001135885822806162,5.1171875728960914e-05,0.00876931755463382,0.008865982530231912,0.00711543325152443,-0.0370940679176611,0.0024302362510840556,0.011445019178959901,-0.014974928720470727,0.09347362332284023,0.006365213844482199,0.0001318341107216946,0.017302311031412623,-0.05397129727171281,0.24773438940329764,0.013735554742863943,0.00033735316680769074,0.009026482829646758,0.021253847769815606,0.13936153493595346,0.038448347477180005,4.2959142172279707e-05,0.028486466698214405,0.02945116295625402,0.15716168842449446,-0.06551175845497739,0.0003088464190798729,0.00767593698072321,-0.003576818045870586,0.049211127443149406,-0.010586067630272474,3.0162252013419644e-05,0.012785996153541502,0.0012915107726689079,0.016604617475039433,0.00015255568896873164,2.5986684096432945e-05,0.008005679373033814,-0.04539180170006086,0.10486436498543965,0.027712038235570797,0.00013943514277375526,0.02221721504584994,-0.022655344087282914,0.1443340260695457,0.06220449244905291,3.625720420921015e-05,0.020868831239926416,0.0035980636470395156,0.011754312002271991,-0.08944623789942863,6.786549317472026e-05,0.016457318116033362,-0.0018012422585919772,0.008163001955269263,-0.014608779589368221,0.00010089527360755663,0.002464713939746784,-0.0030071248721791747,0.002781567166966439,-0.030245528281602044,0.0006179274280478641,0.05729560897139426,-0.01683490480275927,0.06472442535494947,0.006644270231842762,0.00010947840730706439,0.004906359720250641,0.05117709821779802,0.22645917743047,-0.13432830145229538,0.001450457161311246,0.007122334643089894,0.04041123310096508,0.37066865735544485,-0.06029005485833986,2.8034862667330118e-05,0.025277190229113483,-0.009425861175949027,0.029273547828099825,-0.051517397796718246,0.0010527298772553288,0.011635119942517397,0.010490869571845935,0.07073552313188104,-0.05711837921689317,9.876420248257069e-05,0.006958957596177726,0.0017976993577817264,0.0023684034628842963,-0.004082259761995978,0.00017914585419775996,0.002942224003101389,-0.01757348792238592,0.02860241587862334,-0.014057396455742232,0.0003526624043403373,0.008316151717733146,0.01409866636969759,0.04948307269795074,-0.053696604272563196,0.0022083693705631964,0.006045167559761158,-0.0045049467009897984,0.016148791204366457,-0.0014313120099918972,8.950349785453421e-05,0.010379392777492063,-0.019366308322676946,0.028229523687326636,-0.14807648539901305,0.0017053773208489387,0.009896126819144712,0.016606858613941712,0.05802531633770258,-0.00015825391678378066,0.000113392937993048,0.0011867459085037693,-0.03322037546493111,0.08789865641214878,0.027353589178110514,0.00015320843490887074,0.0047611340944281304,-0.03228548571843737,0.12355428785614478,0.07543971229699455,6.37769032322425e-05,0.011249443593174395,0.03857357973874355,0.13532923411373987,0.007029201208297794,0.002701570955056605,0.021361521327317872,-0.029339636651588865,0.15044294166104402,0.02416713271154502,9.701155927900795e-05,0.0003912379339759566,0.01972069858020098,0.09685715210646045,-0.00362826592271666,0.00014765609691703773,0.0012599275278273245,0.00945899015842608,0.05837883244126088,-0.047062333611749094,7.663692441457234e-05,0.0021584597510884477,-0.04801706085999717,0.2390388292352675,-0.027936743805383465,5.048641292907542e-05,0.018516458034291146,0.0308559452885048,0.055882297644515355,-0.048705761505502945,0.000269211740422919,0.005765215495087938,-0.00601415894299869,0.021232816465785495,-0.000947562088353151,7.043388949281837e-05,0.012254281954715535,-0.0056793129716078295,0.06537321588333658,-0.0322432228101103,2.2414406196651435e-05,0.0025733383359964985,-0.0159512668251424,0.04792319887256957,0.03912389716099603,0.00011634784530443668,0.006880120754921598,0.012708689784275685,0.05263865326899192,0.010454595637807984,0.0003805607376090215,0.0008973787499049241,-0.05464304955619467,0.265538593315355,0.04999289410028078,0.00011786342970824318,0.030227920832512904,-0.0034975254737734007 +2018-06-13,-0.010311811549653941,0.07426896122731465,-0.01759921915124443,0.00014682979819068552,0.008758020088263197,0.034592812476902136,0.1356524523470101,-0.086617899617827,6.11883510670958e-05,0.019665717980817076,0.00761622014899975,0.026063082038668906,0.0006703301831282781,0.000135179526973572,0.013815212379155872,0.02208659391354078,0.02209185162176585,0.033536731629841686,0.00033741507722209534,0.007680069627529449,-0.028471853130884246,0.06572806747315055,0.02649529806582372,0.00022665361156992358,0.00459464960921607,-0.0029336963498020926,0.008364791187380309,-0.00051150057750227,7.657848960368234e-05,0.004647011706291618,0.04040939433492768,0.15766678017858768,0.04540748528447931,7.520245140601462e-05,0.01577822644999581,0.037616199700198645,0.35454892107309355,0.08865728336456787,3.638290427513369e-05,0.0072066679282933145,-0.011476772797230063,0.008439641993264664,0.01844831448966487,0.0010486741105026909,0.0033338674864526662,0.022105699540115334,0.05014792547077159,-0.09770341060318695,0.00015413922727043288,0.006743908831988747,-0.022646610991734747,0.016645417712512288,0.07324821164347786,0.0006650172033851947,0.0040023920253695056,-0.01700941064286326,0.17499790010884947,0.02522139795270627,2.8965379176725352e-05,0.021336964582879547,-0.044711635434806905,0.1276886123523112,0.01631034052762321,0.00010402061713925896,0.01603278315687409,-0.031280948469572495,0.1789055499309632,0.07867400510861972,4.921731504119867e-05,0.019245748682477967,0.015480281920273902,0.0143668938210308,-0.028522836116836852,0.002101546268585766,0.01456452346577323,0.02059510386247686,0.10427147413014447,0.012154491402116625,0.00016253637921763027,0.013481897939497573,-0.02531887119109473,0.11897453814659857,0.006212835961021125,0.0003295327204501971,0.03730338578206273,0.012261558882742364,0.083164534213019,0.01711958750997226,4.153062668895631e-05,0.00015027973710630038,-0.022085818083375196,0.11459924645854011,-0.03457822709030314,0.0003176278216505039,0.052854932301615976,-0.017791077120803526,0.2028254951567383,-0.01214150775482331,3.640071619760113e-05,0.003765732232220105,0.03813250003539896,0.36381225696488523,0.16734524838351988,3.501867114747545e-05,0.02160275967055621,-0.04323915226405066,0.11415798125820922,0.030077131494263006,0.00012200949969626831,0.018871120903641868,0.003224747264512253,0.02287231511361038,-0.03970124532046891,3.2567013442031364e-05,0.002402978799832524,-0.015221464373006083,0.04283846401779497,-0.005320956257420243,7.877708873562636e-05,0.006515576131286866,-0.0010410456914365335,0.003868729384407512,-0.048112614331474776,0.0001230410516870573,0.0008778668580215526,0.0007320103938711613,0.0007945770730774702,-0.004363879627402427,0.0005265708084372726,0.02373642438596222,-0.0010630674774796162,0.0032986041844537133,-0.029373013947859277,0.0001356490121643651,0.013497200726204901,0.02847612944854675,0.09564702014623822,-0.0008318419995540593,0.0019108592058108415,0.0014265369151655743,-0.0016128980427386236,0.016537112323799306,-0.00664315515887702,2.5080109826097253e-05,1.0593913595889192e-06,0.01525586524427973,0.03851101025257657,-0.00881680023776859,0.001295159341035312,0.008772953895889836,0.04180282298581825,0.29807610041600624,0.0772169489546368,9.339080059389005e-05,0.006758548774698289,-0.014712975704770901,0.02136911158337747,0.0028096903038398484,0.0001625022719632204,0.0011952435062581772,-0.0017437574059011207,0.0029023544159274125,-0.035099357763215974,0.0003448573880024961,0.015073609108311285,-0.014999993519610672,0.06126247413488534,0.010587670162044526,0.0018977844352434207,0.008190263880159672,0.02597705248812833,0.0944885755017147,0.07669855550096523,8.820657125685633e-05,0.019893215671139802,-0.0068267374119879865,0.010182605356679397,-0.01755016320395512,0.0016666003845025596,0.0025999468409688897,0.001485865032397726,0.004849020846831999,-0.07276491020085028,0.00012140633465045844,0.0076712580595704695,0.032880746830818354,0.08807475117999347,0.045870919585303246,0.0001513389179185627,0.0029173683784756354,0.010146814304737755,0.039623612583166094,-0.03641343026306893,6.250137458142509e-05,0.009013985530245329,-0.00590499503185525,0.02053202045314905,-0.014519001314821502,0.0027258748098814255,0.005676395503363502,0.03362473876844898,0.15336622659842725,0.051289190279232136,0.00010906107076761108,0.01884908953679661,0.021741883959073074,0.10806544551972617,0.012235563133520796,0.00014590531401990523,0.004287414895683326,-0.02681501856944557,0.13823883895916994,0.021778295861045207,9.174802477492757e-05,0.0033545554031763694,-0.03021503641928632,0.14858260583842942,-0.03041225648478843,5.110960755349089e-05,0.0203703078958739,0.05486492216400502,0.10863345357788745,0.0688509346867151,0.00024624111840896863,0.04394141972014784,-0.00862358471880972,0.02842694385636131,-0.04968231649276785,7.543485126585166e-05,0.007509361246260598,-0.010749992671391975,0.13006879728150708,-0.021839866819129916,2.1323884877657905e-05,0.03076321823951542,-0.00893786417127154,0.02989764600443911,-0.013738587862921273,0.00010449745645166948,0.00894785213301449,0.05355039265020444,0.2577144134695759,0.1827627274379314,0.00032753063109085436,0.0017928459821988634,-0.018908375599245672,0.08106456636809614,-0.0025708542339127165,0.00013359646068151023,0.0057502636735998255,0.003216961450236054 +2018-06-14,0.0027906116001475134,0.018380360324596293,-0.0036839234766989546,0.00016055800312911293,0.0067676720041420346,0.0347763590112331,0.11432463171368196,-0.024035382461390996,7.298856515847065e-05,0.002540365096003855,-0.026511557080339823,0.08711750488882188,-0.12380969976901737,0.0001407754783136486,0.006776331352837485,-0.0035255624322216702,0.004627759560800831,-0.01506588996036544,0.0002571138546453694,0.010490797043209467,-0.0005575178259038002,0.001237101735240747,-0.09052994209711422,0.00023580397084878698,0.0009406391086913214,-0.004885782504979321,0.011279795775038902,0.00032506760615458313,9.457571498808689e-05,0.007750317122609522,0.025857468835426972,0.11374494875483787,-0.001663059442363251,6.670275099904939e-05,0.0018358830268725723,-0.0003823229206409123,0.0036652360638564085,-0.002327965061490108,3.577066372402859e-05,0.013401215148692592,-0.02559595649632109,0.022035163770384187,0.05891149427639685,0.0008957769176200469,0.003146584018139495,-0.015354622353767987,0.03864338846951382,-0.020980092937940897,0.00013893952988166096,0.00018748337650864523,-0.0020734835875921764,0.0013744084701464618,-0.03469910913418968,0.0007374101946604236,0.0001135680833152645,0.008438720332428665,0.1089234769738945,0.01583514776508214,2.308755204648464e-05,0.013037426041851412,0.031405964552839165,0.07977676174370527,0.03054514004397769,0.000116946376583243,0.009705380694010555,0.01851630099955972,0.09855760069995545,0.030875867309858127,5.2884198652877e-05,0.0037998393477725614,-0.004839710337060208,0.003844615133426016,-0.05837884115610632,0.002455214672488793,0.005386354093002467,0.003524371231130678,0.019980448148177402,-0.0007802587007017425,0.00014515384030032403,0.022685468801850458,0.08544119884420324,0.6449262473541747,0.14776802670513522,0.00020514716185420604,0.03893785697242297,0.0311644494505587,0.18511485747054982,0.04693166185656981,4.742192049576944e-05,0.003704309159360533,0.007439592323045142,0.03631565483781425,-0.05867520661878705,0.00033763080587687907,0.008667910542001948,0.014770161075034108,0.22272524909844094,-0.006841908636938518,2.7519846644555247e-05,0.01015232540074978,0.0055442387576697056,0.05700067538570092,-0.006094535565369753,3.2497027060047587e-05,0.011480139253316196,-0.0060053183512647264,0.015279557139859321,-0.0002840081988096618,0.00012660417392865156,0.008381411722770531,0.0014098241636782258,0.009643601351866139,0.011711029260888704,3.376899041462715e-05,0.012750513274671653,0.0066507495354726385,0.01576840005611473,0.002160098089794153,9.351049270765604e-05,0.003220624835023444,0.001818224896177224,0.007680675043130688,0.0022861150990060525,0.00010824224831576985,0.00215157067932364,-0.060847694277503105,0.06582083142489026,-0.022325040238636327,0.0005283921093729161,0.014177985999340231,-0.018764754042841374,0.07411006716371175,0.007075217538128541,0.00010657410116340922,0.011226431098067532,-0.10533060288960477,0.34631100224418165,0.2567742925888271,0.0019521242455381998,0.021073198166876805,-0.024859535761796222,0.22270295050186675,0.030769510394923667,2.8704450577307363e-05,0.00572150874986221,0.014798209380561811,0.04093937049903248,-0.03061612934269843,0.001181787187401197,0.010704762955123208,-0.015061393811651284,0.11019661507331754,0.016177253275763373,9.101700761597949e-05,0.0006986149171401218,0.010509663516039866,0.015699225397515497,-0.03156711336393676,0.0001579995947759049,0.021695773781359663,-0.020122610347535524,0.024958218900934317,-0.004515428712600775,0.0004627800641901306,0.010169988094046123,-0.01679182763547761,0.07006123126536454,0.0053674940372500845,0.0018576784514021622,0.007204185972481932,-0.03226672995983814,0.14252517447454555,-0.08887732450724753,7.263630500029828e-05,0.0028788303025332543,-0.00212090392318541,0.0028879857461179925,-0.02022581064439644,0.0018255895531252427,0.0021474993709381584,-0.043090016049536606,0.1517797843527178,0.10810601501899465,0.000112480894371794,0.0065768069658330265,0.028652392440926846,0.08155693960299575,0.035518436667955046,0.0001424165124296755,0.02123943383036888,-0.007227557024144925,0.025582342034691393,-0.014067704688597535,6.895490282249277e-05,0.0029559996352678626,0.007044808390964252,0.020858281498799158,-0.05877071060511264,0.0032011698586719836,0.0034862530097987308,-0.012104821805780657,0.0623689138004501,-0.019065498148333564,9.654522316265978e-05,0.006488522245055365,0.0030977017577028636,0.017705570709006815,-0.012017368824942852,0.0001268792072606784,0.005866438731807824,0.01298115189997728,0.07524775139073872,0.002514952787012917,8.159591259286431e-05,0.007439449857879234,0.025892077090364354,0.12323774879933568,0.009562412090766729,5.28044507827605e-05,0.0018831566156996473,-0.049907638903578945,0.10492194746616736,0.007884957361508637,0.0002319156600588733,0.0077021067413369036,0.009003721712891056,0.03209686893201507,-0.014240308182057433,6.975474741367052e-05,0.0009544301863358218,-0.026535856726234694,0.22153644775067466,0.03219159071728561,3.090432137681464e-05,0.0217871460627136,-0.005081112071155732,0.016081826615497043,0.007709453688932143,0.00011044151691278796,0.009350654547787801,-0.006211373889291937,0.02276461276639564,-0.04779276898640265,0.00043008606931612634,0.010127186470028297,0.019442805860044363,0.10479516283056864,0.009352645404322358,0.00010626481705341887,0.0016300431609806948,-0.0022263972119302517 +2018-06-15,0.030628928812966187,0.19827361321406473,0.018253714876303867,0.00016336291393845715,0.003677189031036119,-0.029839534164052522,0.0955846919562902,0.06879657743791845,7.490558853478581e-05,0.004744097812249848,-0.0014453696143474537,0.004868606646112304,-0.07644402899176551,0.0001373319027520692,0.006680298432519856,0.019503425479742067,0.01659868273347971,-0.009912999494115534,0.00039655655005283146,0.02115021313724287,-0.01922043277984138,0.04857372972657811,-0.03519928677983987,0.00020704249025931923,0.003994666704021946,-0.003422135362197263,0.009288574808365995,-0.07621315281329014,8.044421918779302e-05,0.005604710663222493,-0.014267936075336617,0.05269356405325069,-0.052673610225631814,7.944991483456183e-05,0.009487202354572274,-0.014786781981966117,0.1182512376602107,-0.020055088561807804,4.288116632336826e-05,0.009909731272988753,-0.010491188818979638,0.00848435634260511,-0.04634939883104847,0.0009535656309005435,0.0041440130567464584,0.02281489906741259,0.05053772867729241,-0.013996527154088004,0.00015785731758564262,0.007732125011544444,-0.005687462653232151,0.0027414491790054086,-0.02600821392009362,0.0010140578159985247,0.011879116048718922,0.015182705600819881,0.21878604616154368,0.00827894000674688,2.0680085999544805e-05,0.0035557153270619818,0.005909819583934918,0.013270407387628096,-0.01726865202955297,0.00013229426118661179,0.04240752070955183,0.007525386923216911,0.0383256885549614,-0.006099576231364805,5.52714281829425e-05,0.013408193075399784,-0.003309469240856992,0.0030769265323706985,-0.03668785797970079,0.0020978005494124118,0.007472325658188592,-0.009143002602377067,0.0508629000224073,-0.05221191995153455,0.0001479244055430413,0.012054148382492634,-0.04183804531751093,0.1986731073698422,0.011148809284130609,0.0003260922921179903,0.03233231928923869,-0.013760332553762869,0.07834324710088611,-0.0618080755374715,4.947528652737956e-05,0.0019843875878380124,-0.019370484821666287,0.10235211355956977,0.004492609803286274,0.00031191085056312204,0.015234038615454581,-0.003759274724783403,0.04765816413547438,-0.13996828168353825,3.273384241850198e-05,0.0026694318076558054,0.0054317658729086706,0.06600127500445026,-0.004784253825436781,2.7496057412602744e-05,0.004403330747439812,-0.05642226912519752,0.16238250719287595,-0.0034624937344644603,0.00011192679326730957,0.0026280713727970147,0.037604184781447975,0.27078674368027356,-0.11822763077104331,3.207754733007558e-05,0.012675176103660413,-0.017059894657907627,0.050005792674662215,-0.010830102320973877,7.563684612109923e-05,0.0016936040242623762,0.005119183075262793,0.021018212999125447,0.008676950155212722,0.00011136621717883415,0.010428155690065643,-0.06640495587104966,0.061243175557333746,0.04221042905106413,0.0006197525927619915,0.05522897040218576,0.021578953099245825,0.0723693673006025,-0.012847835918367728,0.0001255051665643574,0.001584326923545743,0.055229488147726866,0.18998113108787926,0.026851244852476114,0.00186586287657164,0.015966723415627094,0.004126960188606467,0.04835261744009388,-0.11817999378077258,2.1947875413077496e-05,0.017211680405421172,-0.0006843751094976092,0.0020226547290925464,-0.0015509249537655919,0.0011062256432228421,0.023241434417703394,0.013651422795418908,0.10249910276421842,0.006572600005521627,8.86918056749345e-05,0.003361588211381209,-0.02219236618003026,0.031029993381366215,0.015506538736054573,0.00016879800641485598,0.0024857649492630775,0.0012995676773209504,0.0016174684304884027,-0.06289744778312717,0.0004611763226303458,0.005539112507289884,0.01248372422224095,0.049630941924581715,0.0007591881887443856,0.0019495841692974483,0.01228673181455648,-0.010483913847151733,0.03392234311344234,0.004468611301778928,9.915804856529819e-05,0.003733903116220854,0.041353603860935485,0.05921832391005986,0.08190866405098339,0.0017359389345624233,0.0027338605265600268,0.018124389287625626,0.056813037742266495,0.007228540637250501,0.0001263954402515535,0.003842772759025539,-0.01798218185708691,0.04562102394766556,0.010143716777411056,0.000159785634996053,0.027417497709405072,0.012529138030490551,0.05513105257958916,-0.028798398600032218,5.546753097468606e-05,0.007737664144667918,0.0690113050910959,0.19630060432181917,0.10851860905220888,0.0033320895294781877,0.029817589472134306,0.020902977160826938,0.1153058426054712,0.018284038355301725,9.017733634166267e-05,0.009681601369061963,-0.010552602937353784,0.05400768521482491,0.0150399067833496,0.00014169835809351618,0.0007774494419718811,0.017510570418433517,0.10320525747556494,0.014434195617867117,8.02503935401752e-05,0.009067986916967427,-0.037352084898915186,0.170852531103143,0.022691044228804216,5.49466002126891e-05,0.0045248324363897285,0.025445245103786443,0.048649774279310116,0.013341947087649384,0.0002550088208362147,0.011588197208206532,-0.007760779542739795,0.03369370736259366,-0.07228960138025403,5.7275768237100775e-05,0.0049885110142827436,0.0028685088229175085,0.02643724050941825,-0.00023808307176753312,2.7994412230155935e-05,0.017961848206138976,0.00616865143893805,0.022493940834119288,-0.031258833959702755,9.585916619774227e-05,0.0025772672284393606,0.009966286521323206,0.0368011061149499,0.0061296803211128865,0.00042687475052559826,0.0058327784018057235,-0.0007289181690003694,0.003690589955167296,-0.005854163015699325,0.00011312400600900695,0.008259563781037727,0.0015942042567954487 +2018-06-18,-0.03682709531039634,0.26465878912055446,0.08196256180963787,0.00014715252837334232,0.030199492061598276,0.013946732042140884,0.04579159916714539,-0.00934962752180835,7.307977018506072e-05,0.03323902444965082,-0.04103058659781918,0.11688780200731361,0.009729227138448565,0.00016238119693818396,0.0011107574820423411,-0.02436718823731308,0.025935354498990947,0.04876887366916502,0.00031708893402844604,0.012580583215530221,0.02533333153390246,0.0551559970986875,0.04210500678026599,0.00024032410794389266,0.012084404782141395,0.006155459177289381,0.017257239646562988,-0.1157904858128266,7.78817793461131e-05,0.007101360224008092,-0.004173526905993721,0.016750360450227087,-0.0909366931259468,7.310867548507264e-05,0.016086635619615357,-0.03414924119550276,0.2965176588516911,-0.08525435762039031,3.9493817046194966e-05,0.00844378902411255,-0.0023511864388842054,0.002001402541399341,-0.00753031684602106,0.0009059357703595798,0.005988320358252213,0.05815421652570915,0.13810726323076447,0.11231296192068349,0.00014724026020400665,0.015929991544174814,0.017617800494457728,0.014451365505832557,0.01248066820280493,0.0005958914588224562,0.008664080040616641,-0.00604180376780378,0.0788647012396243,-0.07783072754175642,2.283004369363159e-05,0.0017236750820984372,0.012857962787066968,0.035528624672588306,-0.05890095860095356,0.00010750899604081492,0.02242456823325343,0.014161068594172103,0.08798003715937408,0.025094891954250218,4.530787604812761e-05,0.008614612724447716,-0.010379340056191249,0.008618134053507557,-0.05453129000080008,0.0023489808070691156,0.009812571514733163,-0.046156492784749203,0.3531607331164154,0.0587718228292015,0.00010755051627790233,0.01517077835306329,0.018599452077997538,0.11247049831605775,0.005204927699780878,0.0002560765222601113,0.011036313912585673,-0.00291865667125928,0.01695876117616368,-0.011925162561810813,4.8478574680179995e-05,0.021376148844875455,-0.06830105302199373,0.3831649491576917,0.08504036078016604,0.00029378419821343314,0.02097689772381076,-0.034590901742542264,0.6006985688760741,-0.027015803177936053,2.3896567184226804e-05,0.006564405869295837,-0.020728701904052283,0.1947111974551965,0.048236859524706154,3.556828190640959e-05,0.002958423619310446,-0.026639097252006617,0.06935734054742002,-0.08640251651217395,0.0001237228247787157,0.014980917840908875,0.004711394024891893,0.03444392080498785,-0.030115320223019267,3.1595790164004904e-05,0.0037736962865777108,0.010996527843992148,0.026980455804465845,-0.10476062753978842,9.036155131383161e-05,0.0024273127451881586,0.01750940794994577,0.07590614983592181,0.06752774735706926,0.00010547343585655045,0.006935781663247833,0.004230995828689007,0.0039372202841739,0.0004596815023341095,0.0006142263516205678,0.01889817042813534,-0.027410077712503915,0.09814606713241324,0.04358635487339041,0.00011755020057571509,0.004743965831514249,-0.005463092623794338,0.017060218790651224,-0.007344272129904626,0.0020552901551643722,0.00994708109138885,-0.03426613833322335,0.3217195805755092,0.029863784731463026,2.7388602011575355e-05,0.025949333070094734,0.002173706377517486,0.007558605706828621,0.0015176556382336943,0.0009402221069157145,0.046081143827000265,-0.039685677298766174,0.29079573700419525,0.08613088462442274,9.088064575846142e-05,0.0006421043328007751,-0.003904787118574306,0.00574012666622512,-0.00039344902731591064,0.00016055405261302207,0.016663735162614234,-0.015138994428445393,0.023810320129970867,0.010019171820573223,0.0003649519667379343,0.005454209007190824,0.03061253481716586,0.127865729403422,-0.006167425418752673,0.001855647465801024,0.010846181396059803,0.005062590774483592,0.01901417719233045,0.004329649604433908,8.542513170098974e-05,0.0006522921077867564,-0.0007843834597525346,0.0011348296068878732,-0.010357662212514315,0.0017182049317473376,0.013664552502026204,0.01365649032244869,0.04574702869398195,-0.005944408334479796,0.00011827480651201163,0.007462499203052995,0.02125778055093614,0.057664354499892004,-0.05115186917025648,0.00014944137700734661,0.003332940428738135,0.04037586136242778,0.176839235956276,0.03741135933777624,5.572590056664787e-05,0.012414221875463035,0.02367751342736812,0.09122050506155166,0.012675667754069914,0.002460150506313019,0.013157639968562182,-0.004082376923533777,0.02066851501744179,3.760907897761961e-05,9.825267797832488e-05,0.012128514493450664,0.015211761040233513,0.0855480923719141,0.005711109447820831,0.00012895255433624829,0.007798371242429341,0.019482720464253072,0.11459899809057263,0.015315878810485397,8.041137295327689e-05,0.019046519653374585,-0.014884116334969564,0.06068008021428339,0.0005354183824930757,6.164875416085904e-05,0.000152766307403744,-0.024100870662986437,0.04833907650493197,-0.006403482522164536,0.00024308814357530076,0.013642710775757563,0.011164378224865896,0.04452237959044563,-0.11705268028956865,6.235489451241895e-05,0.0018477815240425853,-0.006991883784466475,0.07421159331107245,-0.03811018665840949,2.430825203606126e-05,0.011305424599106747,0.023818066678467757,0.07719856838075397,0.04277683635208654,0.00010784654207100017,0.011647073131668068,0.002507211365060916,0.01167992845030242,-0.004235680890373766,0.0003383597818807919,0.007559127488748223,0.02893132480690699,0.15638085506152136,0.01927825959664807,0.00010596355829064405,0.021892606004279936,-0.0013984754062062183 +2018-06-19,-0.028704686310542227,0.18251065461029417,0.029501270101760877,0.00016632256206130052,0.0015090955274376019,-0.01746502838165287,0.06365330168842735,0.04225518106316215,6.583531031252888e-05,0.008735974887678131,0.0023547976281350544,0.007096697567977253,-0.0019812309454415307,0.00015349509303631272,0.014857546171302362,-0.0018826383228264228,0.0026127075772088048,-0.037818260495321034,0.0002431890109314325,0.005529846476614617,0.016844318420369684,0.037208008500070104,0.012509705633660736,0.00023687257935321238,0.012352532705421316,-0.02744739043877461,0.07830281968019001,0.09471748606349344,7.653681732644073e-05,0.0010399775794563424,0.019040941899259412,0.06213533303098858,-0.01382687241579133,8.991655362625467e-05,0.00215862978195932,0.015328531018855857,0.16263943947738238,0.03642138875120274,3.232014367174877e-05,0.0056834944642244764,-0.019662840019620643,0.018031661043422482,0.022623202746539166,0.0008409211922782921,0.000654956322222738,-0.0014121558051690085,0.003210134403457045,-0.07217981761888236,0.00015382300316154335,0.020774448939525576,0.0100116054478887,0.007423082847199458,-0.03057432759287362,0.00065924034285046,0.009550768079811837,0.01251780188160933,0.16863964803487214,0.019788414698163965,2.2120308320547673e-05,0.019618198139561806,0.014715496663830981,0.04505983858843797,0.0018279899435626786,9.701442875142949e-05,0.002432662301917201,0.002696923917900566,0.013963419791276027,-0.08415664776007671,5.4367419301871425e-05,0.00215472843311792,0.03719186850862403,0.030147269937530332,0.07195744259267618,0.002406151566886446,0.009714451135862086,-0.015699070896867284,0.09963016090616095,-0.03688516585669325,0.0001296687208880129,0.012765293788727945,-0.06762764735355961,0.3336797097205415,0.04822597623685426,0.000313835965595225,0.02985646038957702,0.03108809313682984,0.2134528570853191,0.019196064671282268,4.1025423045790254e-05,0.016083255946880256,-0.012135785162849962,0.07287248912888292,-0.004881195729062225,0.0002744675988565661,0.009002948241656279,0.003968172302365108,0.055181624823504555,-0.00236141138116103,2.9841886108980775e-05,7.872986245807245e-05,-0.003782326027801934,0.038338703345840455,-0.0066385792137738115,3.296121786936402e-05,0.003985764435757262,-0.039267633052026255,0.11606900828181141,0.022052704485548462,0.00010897859538095721,0.030738290555858302,0.00936444465930685,0.06630590720379294,0.0009670120315737017,3.2622871245187405e-05,0.0009923013970028847,-0.0031961606503482344,0.011126081487716695,-0.0059805232199061815,6.368889973873243e-05,0.005294599800847636,-0.010358757559979575,0.0320328521876661,0.014252024962817644,0.0001478633885790247,0.00046509214039861077,0.07131328612202725,0.08069302975906481,0.044376999969203364,0.0005051379396482096,0.024797076061369373,-0.013191798292416465,0.04335653577254529,-0.04732907441322697,0.0001280664694020503,0.004102956399331699,0.009896543564245495,0.03405148978083209,-0.01142212184389831,0.0018653769158348005,0.009834105038815663,0.005964976507081389,0.05580184901869597,-0.032822907161292283,2.7487949426871567e-05,0.017815640068395325,-0.004900487134344502,0.015454929397939953,-0.04293118777102998,0.0010366770821501666,0.01887502933613075,0.012779633347971086,0.0962914717297186,-0.039454018916599096,8.83804508398409e-05,0.007564347052314748,0.050093282923378835,0.07074886697868583,0.17656220266060127,0.00016711113609771533,0.021924427175184044,0.017985969798404968,0.024232869109406165,-0.012432145916420728,0.00042602289288447623,0.011000482087984986,-0.019684155438799613,0.07237671184738642,0.020621220771643935,0.0021079886988906124,0.01340072753798804,-0.044963418492366465,0.14604234706759822,0.1200481385671166,9.878042467831384e-05,0.011761158110738796,-0.028056956169323126,0.03432499857099607,-0.021146197587248207,0.002031922866194235,0.015281545085212423,-0.06807149680910371,0.1797448648869871,0.1664362624454429,0.0001500461460142945,0.015164108608798571,0.009559107268742888,0.027291406047708442,-0.0009692974133890706,0.0001419880517611162,0.01594073169746093,-0.011026718726194809,0.04660938401796136,-0.052399346892127004,5.774133998419195e-05,0.008958218506496304,-0.007034810022361734,0.023815894759228927,8.152491039021471e-05,0.0027996486329299373,0.013171138158129187,-0.006231707877830339,0.029832763142013975,-0.008846556344694079,0.0001039092421837871,0.009909166030045116,0.0496127061668691,0.2951406544080256,0.10589964012690613,0.00012190588316901946,0.012426966654295752,0.01335982372780363,0.06259633699136914,-0.026333333044482432,0.00010094864799295978,0.01916232557017951,-0.008118034899718197,0.03601433137779841,-0.003970794420667776,5.665300524373218e-05,0.01514183144221033,-0.02217075384573496,0.05010505670632138,-0.02996394245426717,0.00021573881864015627,0.010542755424000346,-0.006145542079768635,0.027616902490454353,0.0007795590599127672,5.5334960728772405e-05,0.004797484302310097,0.006560295506944765,0.072144896547978,-0.023583918915801146,2.3461137941220788e-05,9.945721177901957e-05,-0.002484263905480473,0.008016590251342388,0.002929344723272159,0.0001083220842355866,0.019866860768250158,0.03390040804481283,0.12580575374555805,0.040539555660813284,0.0004247490268083669,0.015140043267988651,-0.05583176283378615,0.2824179666336353,0.013318624747042502,0.00011322981940412242,0.001662314140273416,-0.0024517673515471227 +2018-06-20,-0.03680435512682543,0.2296244514915527,0.02969959933778562,0.00016949920461270206,0.007766117737218638,-0.047475653957743225,0.1560290007231294,0.09628314954027171,7.300895884546909e-05,0.002172993990312056,0.010334888675654002,0.03347161214624588,-0.1128990715905277,0.00014283228267292805,0.01038693545905337,0.009244746557380628,0.010423816528876735,-0.03257172945076703,0.000299320255448192,0.007801588524101035,0.016775177906882547,0.02870040870147799,0.01642975742760115,0.00030582770505629806,0.018699966655892394,0.0042753064410606875,0.011133318617134288,-0.0137851250561838,8.384735185804635e-05,0.004853406852853464,0.03413896648155857,0.12838951072477559,0.022536412053927365,7.802085056620887e-05,0.005639024573427413,-0.02145798578799074,0.19534954828304696,-0.006042131051715103,3.766822505191176e-05,0.0005478171860554121,-0.030171403900961163,0.024836412169576987,0.027964753956393876,0.0009368098465773062,0.021877871995608117,-0.017443599535056836,0.04052771386014273,0.008195541897298887,0.00015050325333963775,0.017655120682012474,0.0012320842047672702,0.0010271994129043222,0.0011095030841261418,0.0005862866236841885,0.0035113411328984542,0.01065311647737502,0.1398923024812332,0.004527102640950485,2.2693717621612837e-05,0.003091910676982241,0.02004137480292012,0.058088004869047784,-0.042882378640282735,0.00010249250027779977,0.0026263460622199487,0.014794725016340509,0.06969574219945919,-0.01579239590182957,5.9753378897332965e-05,0.0008921160950669284,0.007082919972872676,0.00526021789088812,0.007316849974033418,0.0026262228363542577,0.0068461090835219,-0.0628837414504176,0.3875143056146764,0.08943330238315014,0.00013353734628125248,0.01365051839419278,0.010812109115806129,0.05438582772353984,0.002623638846029269,0.00030784557062993393,0.008647328042619012,0.00804618976684013,0.04647209084423037,-0.007857966785987757,4.877070287487517e-05,0.01422123325805365,0.003357604748066188,0.02260679565112537,-0.0411506311443553,0.00024478081090696543,0.023012893238165136,0.027041077432950464,0.39268681019670354,-0.06484447869645538,2.857642583018835e-05,0.016004530916046502,0.0024201592217359498,0.024904045690975023,-0.00784713075944722,3.2468015428267484e-05,0.00873015461166783,-0.009404012402784347,0.025051310890735003,0.0007167425831278906,0.00012092204754848334,0.0021907337210235393,0.01106603540514972,0.08505876553722705,0.006201575539625888,3.0051444753661224e-05,0.011762263280596576,0.026871082995156437,0.0767104328646843,0.10813871997447712,7.766191928589993e-05,0.0026773549686378217,-0.003603807665959644,0.016661845031325576,-0.0014691085144586534,9.889790902633794e-05,0.004902686192171206,0.03921593093010438,0.035583381887579334,-0.008245050059385537,0.0006299279359472292,0.009910371647068377,0.03583805498605397,0.1372406877465429,-0.07622336938869259,0.00010991261860187006,0.006827431674225913,-0.009528026129192955,0.03611216689310771,0.002447537214024754,0.0016934351316761824,0.01920047304444423,0.014337190659677918,0.14033103997590476,-0.12234911032520374,2.6271962298200163e-05,0.0010445930330626086,0.04062050762120378,0.1179014505265944,0.025744441551579025,0.0011264125172392929,0.0013290732818112795,-0.05045373339287483,0.3909876617618437,0.11596924969749405,8.593219364811611e-05,0.012067220471597704,0.04374439300395803,0.06829440557308165,0.0883985890938719,0.00015117593091664187,0.0018814085083147117,-0.028330853762407807,0.04186652373588065,0.018592129477168352,0.0003884156088818425,0.006912513284799613,0.014081614705131378,0.05439868692311851,0.004964673457590979,0.002006385504495842,0.02263926083631436,0.01952247546943741,0.0720016281996588,0.034586116656629924,8.699272574230227e-05,0.010362290619225936,0.009381607312709461,0.012150447656946811,-0.11067334326384623,0.00191938529669168,0.0007939607231170077,0.025869579737159396,0.08001475563034331,0.030019524472691256,0.00012809592871949074,0.013080504497347016,-0.004132092500328352,0.011251039307557957,-0.029107149416009174,0.00014888048301733376,0.010315700477481964,-0.02916634530715722,0.15091473697291322,0.07551595403655786,4.7169827398821795e-05,0.014147828445431596,0.06276049274829167,0.20961565367913887,0.07260153783856235,0.002837792854742928,0.021138683400316362,-0.00996463857912895,0.05195824119763962,-0.01855289854546603,9.53998474779363e-05,0.012910809843035118,-0.0019931491339137152,0.010382744596918,-0.021006524299507362,0.00013921576192580908,0.011983428950378901,-0.0017882364566279448,0.010746980539485826,-0.027417151051852443,7.870225586267277e-05,0.009514853289837881,0.04094050789127001,0.21980707075970785,-0.04869238817325931,4.6812190340963e-05,0.028964041507827994,0.040676233175096756,0.08553014720317142,0.03337165799566456,0.00023187338539363411,0.018384189819490835,-0.008435729998960358,0.03591829936300035,-0.003322663322481005,5.84011341239425e-05,0.0036173471769836594,0.03278764980739021,0.36811736345588586,0.026797601981554443,2.2980277594473077e-05,0.00013702357583182808,-0.0004103883765408052,0.001142768377187011,4.318716491475087e-05,0.00012552950094186634,0.00590970562706021,-0.005187124372049433,0.01868415049624072,-0.0035891480414104,0.00043760399222760336,0.005268780681131461,0.0008247998467224804,0.003788848118088563,-0.04105581850071866,0.0001246847019032792,0.02672590524785547,0.005354589390968918 +2018-06-21,-0.01810582665383315,0.10949212834396206,0.01350901517287443,0.00017487271155240382,0.0006724548921800114,-0.008242950444406835,0.029104128082508847,0.003872341493000624,6.795769226948868e-05,0.0021633757772075365,0.008860463380707709,0.031883351951139116,0.0041435770027781985,0.00012855520530836293,0.0064727041147163294,-0.0012855904458038004,0.001472625950237931,-0.03114307369831129,0.00029463073099261327,0.008305149117042228,0.041954337420193145,0.09338176284011035,0.05659265851223519,0.00023507831593638136,0.010366543171795289,-0.01231699735071419,0.03294879391726182,0.01480714055870165,8.162290845546118e-05,0.008983741525284123,-0.04846006713583612,0.16576790932293836,0.08124077303488454,8.577750434829462e-05,0.018336015115586145,0.055733642997214915,0.41520034652325927,0.2081134568637491,4.603184037906078e-05,0.00874274118878012,0.01643668632827821,0.013756659749717019,0.02893206276112406,0.0009213954390704413,0.0005813302920829907,0.038706459154933516,0.09204282834860367,0.05931232371808788,0.0001470467313066015,0.00777572364724014,0.0013019505381054938,0.0009149863762246614,-0.096609491642123,0.0006955113410820543,0.006614428053414419,-0.009092220180657468,0.11188193659799399,0.004022971917303125,2.421769239027683e-05,4.160890969146739e-05,0.0051196459266969535,0.016559122110952094,-0.02909168331768117,9.18446060012324e-05,0.0014032501495104168,-0.02058496184823248,0.1287858371963098,0.018956779575801,4.4992878541887526e-05,0.006444240021228312,-0.0032367856979567742,0.0033696366665376203,-0.00911565768211983,0.0018735006311946635,0.0020331633850422916,-0.030136008852123405,0.22348527422588005,-0.16092514758334225,0.00011096574427644574,0.003824716837050504,0.024510938163460602,0.11986503393956628,-0.030006602570078776,0.00031664720108215747,0.006101532823241042,0.03154070568468466,0.17277141859838066,0.02073152814434789,5.142336150369502e-05,0.017815115367574377,-0.0006549199992655784,0.0036551228340664485,-0.04438957879976445,0.0002953065525855815,0.015336101884800491,0.07020491519031732,0.8314297946262569,0.1903942419382841,3.5040651053487905e-05,0.0025980349187998257,-0.02866945519618759,0.327760104247258,0.07314390290780436,2.9224363436111586e-05,0.009149314597366905,0.012760326250432722,0.036623821288576434,0.0030866940766412884,0.00011223307914242531,0.01959374006771995,0.05389530106186629,0.41304364221623135,-0.0016796053308645207,3.0140283757277494e-05,0.003671224061858304,0.023925363799268823,0.07244807548392428,0.06377716885032114,7.321651937098085e-05,0.007377120481996821,0.0026315187656243706,0.009905287953109902,-0.029448051341393024,0.00012147529479822519,0.0007382612138675535,0.03492347851798108,0.04010981736002927,0.008609869189509864,0.000497671042502257,0.035542252413596355,-0.013336644595782352,0.05540530915597819,-0.014571277685378234,0.00010131673933151573,0.0025043983977938613,0.030499818662865153,0.11449931413096488,-0.07912391711896039,0.0017096749431285865,0.01518638695028402,0.014347686045434337,0.12369744979795654,-0.024321938729310932,2.982657006315386e-05,0.011701009785599221,-1.956674966318434e-05,5.922827771238489e-05,-0.004936473329693703,0.0010800922612126827,0.011056618272275139,-0.037345006185921896,0.20997864471355202,0.04775846014325348,0.00011843581438244173,0.03255697447325947,-0.009863870255954458,0.010186136803831207,-0.012633814387429457,0.00022855105629182636,0.014056674681077658,-0.021151244152406014,0.026726882901715814,-0.06658989446635745,0.0004542464284617766,0.01716451323306954,0.03188064378973453,0.12253767555201311,0.021579123621335895,0.0020165443883449334,0.005260642274542343,0.008709898603355266,0.03446472259437321,0.0077761715210964795,8.108278968889959e-05,0.00023927250462988823,-0.07659851420351596,0.09877454889069522,0.19801879803518352,0.0019277578598901402,0.004586430479653917,0.014296187349331125,0.04652006077562869,-0.030433484926973828,0.00012175757615923914,0.012390227126598008,0.0022177030066257005,0.005161800292354341,-0.07029326253437745,0.0001741656734763315,0.008446902433322166,0.014875441376398929,0.06671153804740308,-0.00155504106451979,5.44230443895742e-05,0.011242361431372338,0.032673326239358015,0.10287991021583408,0.016759925812732952,0.0030100993540688337,0.013760752280867927,0.017320645772593065,0.0859421108943884,0.012250051207509256,0.00010025329009449639,0.0035661217783712006,-0.02757884252384463,0.14615017983398224,0.055979105961665124,0.0001368476882481498,0.020131349053293633,0.017395381214120348,0.11149130435071276,0.008325330571738948,7.379750055842095e-05,0.006747143179334302,0.022409116357726147,0.12544615050306457,0.002803920735615365,4.489673794166212e-05,0.010077057239008263,0.0033719700270961736,0.006182849963094012,-0.06630237267952217,0.00026590370698325325,0.01323773705502351,0.015567518643416094,0.059581808830815264,0.02539650753300102,6.497108009655166e-05,0.006733464519615137,0.01594986056057667,0.16382295121412094,0.005569672796441385,2.511964114116222e-05,0.015435516437927468,-0.01592224384498766,0.044416922197461836,-0.0138933509456263,0.00012530395351237534,0.011108401841305847,0.008608056224062797,0.03737415776965885,-0.009615267007738418,0.0003630459959738218,0.00083442285163098,0.028916406472123145,0.12146862900313682,0.002988684961820572,0.0001363490094417265,0.004675509940449512,0.006569674531613088 +2018-06-22,0.01047619201529504,0.06034394854131279,-0.03273394019056385,0.00018359308072908066,0.002983240421434809,0.0382108578023923,0.14423623979031394,0.017009723794470178,6.356571290064759e-05,0.004865459650082145,-0.027220467676471335,0.09854780860228676,-0.014670386721305722,0.00012777497825274418,0.011941817466674233,-0.020619078104988153,0.023105286007180623,-0.04272806775724122,0.00030117973807919455,0.012974860486499307,-0.007850444532238616,0.015469322936492164,-0.15938792204722785,0.000265534353482763,0.005334110294803812,-0.004716041027141463,0.013730579753351567,-0.01670348422232887,7.499554047601592e-05,0.0014755733356968514,0.0021534292092532355,0.008330054640043244,-0.018399439978544378,7.585297253466148e-05,0.004312117011022551,0.06598519099568481,0.5821002468040658,0.19075014868111176,3.8872932944205786e-05,0.0021545898138882,-0.017439384229222473,0.01477070817330076,-0.055556254982745946,0.0009104888151311696,0.003648471073732041,-0.02283369223462119,0.05225553786808237,0.002465651345258457,0.00015279379127158604,0.006222937144945154,-0.0069399681043940615,0.004970305361903285,0.010312945965164843,0.0006824938799186189,0.006884182412921526,-0.010808364409794578,0.13148507095563103,-0.07740157411504596,2.449662889882102e-05,0.0028408759175344235,-0.026684626006340723,0.06980229099678616,0.018796026604861685,0.00011356447076340729,0.010847479467479186,0.00028699300784076,0.0015562016851080093,-0.0026842507411289846,5.1911939260382184e-05,0.0033814328321224198,0.023227264056645526,0.01676517200345874,0.011566076579727028,0.002702172166794706,0.005752422812247112,-0.03129165263908901,0.21025157722456547,0.005852107041952481,0.00012247327915273503,0.00402156351000288,-0.04005136397397429,0.18709474041264001,-0.009336263116404637,0.00033148506332690065,0.014774445482878585,0.02904629886866247,0.1810750629478365,0.018657811856589424,4.518487787528163e-05,0.01327342859521455,-0.009768588884325309,0.06504005405356486,-0.057689267115018004,0.00024753564527622114,0.0027927602330470444,-0.046217018962905185,0.6884017541264942,0.04793707816620632,2.786058252495417e-05,0.018364843122012173,0.014486413970405223,0.1714240503717593,0.008242593005013192,2.8233898454641325e-05,0.01896140593302752,-0.01641107672950892,0.04708152062347047,-0.0031725244709182726,0.00011228179599140856,0.002188694269962302,-0.10161863823931426,0.7305364770513286,0.39983711382579545,3.2130970315686685e-05,0.009277563323790759,0.016490041300178032,0.05163319245548314,0.02072385532852597,7.080601415462746e-05,0.007849967806695772,-0.008708873509764906,0.028102013039155164,-0.02995257235314797,0.00014170107579613336,0.0044728759368720325,-0.051405932015793764,0.04867826947901522,0.015555653732996135,0.0006036061670747408,0.022541112454026322,-0.012345558078302303,0.03747052123313642,-0.005998749235459677,0.00013867781859964716,0.00415248949818359,0.014230619261026768,0.0509335750564899,-0.0015706036946137249,0.0017932416338646076,0.0519357575892893,-0.04566532811999386,0.41686694272172653,0.11471216104583645,2.8168992917660674e-05,0.0035305109673396066,0.00327315958808868,0.009034181079380716,-0.002780727029763739,0.0011845398045972652,0.00496707537856148,0.03036970177039234,0.2443842742036974,0.02651898350945541,8.275474679653844e-05,0.009565368898202899,0.0010269225125627863,0.0017017041208281121,-0.022169309986007416,0.00014242919197183338,0.024648748962624034,-0.00035490280696111624,0.00042162110297632816,-0.11372858622725435,0.00048316003938333205,0.006814936243415179,0.008087006880419743,0.03315118992819962,-0.07748808496975566,0.0018907714334933264,0.008378096608544766,0.017600689740245597,0.06818594169088786,-0.021001770516796858,8.281809089917364e-05,0.011436490380092715,0.01803921532053953,0.02743169013009181,0.013117485772000755,0.0016347158289894683,0.017509610037011746,0.006361824567581704,0.019271626514220142,-0.047848852067661644,0.00013079145014191777,0.008637056994466272,0.015481775976922288,0.04679609064396105,0.007953125881065387,0.00013411321740050292,0.006092805217567994,0.019071698073441164,0.08452307750739943,0.0057101312592072895,5.507163703639843e-05,0.009708065269131191,0.0009782579065131583,0.003426019065452927,-0.011977502457146759,0.002706335592170078,0.023163438088522958,0.01985166446768095,0.10191454278503528,-0.009103853235835867,9.68949931600373e-05,0.0022805986844487533,-0.000558964503506511,0.0033301334638513396,-0.018880456632642033,0.00012172600653893827,0.019675914185047032,-0.01405510704187855,0.0839965882875898,0.01972877295869408,7.914458563277371e-05,0.006085390666231688,-0.02503208016177657,0.09645656382676586,-0.03717716233075266,6.522476893889064e-05,0.0018518053666853609,-0.021475347180924854,0.03971636326226874,0.011918602175313209,0.00026363320740395484,0.011879978829140268,-0.01868553076790522,0.09100224101274373,0.045539438475140546,5.1058461818178884e-05,0.009481859435613381,-0.0036589798128364133,0.036202282745116235,-0.007504829749457445,2.6076862854661292e-05,0.016823278926252953,0.010438533479687363,0.03290881644963603,0.010618068026062792,0.00011087565275132517,0.0063470697891112905,-0.01547999609492264,0.06155478638514587,0.01374498985175433,0.0003964030516679323,0.006218128566722291,0.02552608558366007,0.1222549479421575,0.009140493356217394,0.00011958854223340005,0.0013534126318882362,-0.004648333774521709 +2018-06-25,0.012434935829773928,0.09331109661667954,-0.008736647847833602,0.00014092785408567133,0.0002717413530072077,0.013315897873158336,0.04164893973726417,-0.03664015696951175,7.671442465420005e-05,0.006988044842826641,-0.010670335901931257,0.02920257094864193,3.079578721732887e-05,0.00016902627009171838,0.01232232027156726,-0.04185679824121724,0.045557770740675116,0.12801478170311406,0.000310078315623319,0.0016199142481845212,-0.013188786182523624,0.034547934103847246,0.007809537760398915,0.00019974711584783822,0.0008778553949818158,-0.022255154322416742,0.058313454287249065,0.0551606259097498,8.333138147594865e-05,0.0020451602181933396,-0.0010817263493616892,0.004265944691761894,-0.014387544522981795,7.440327347589572e-05,0.030543705723770333,-0.005082519475462538,0.04652923662785007,0.0009214885626224653,3.745861697106761e-05,0.008905033346435488,-0.02272362995958647,0.018972909768442514,-0.02776965561366954,0.0009236098455207843,0.00010742070346673842,0.05295864081375796,0.11511306112142754,0.08573215937764167,0.00016086964884393781,0.017890296836605618,-0.03041754128938327,0.01834791765286025,0.09819658247869692,0.0008103295606849617,0.0029309341663066326,-0.0012728418116040852,0.02056236417098619,-0.0018533892388553313,1.8446933236665723e-05,0.003276185284153396,0.049011711594924665,0.13647890283345054,0.0941342148573299,0.0001066805840396631,0.014608064965398477,0.006379087134056065,0.03356884835720443,-0.03558326290820196,5.349139333620219e-05,0.00677639985065926,0.02539926288667688,0.019062213245212276,-0.06280734010122517,0.0025987874576208197,0.0006526160105382504,0.000395688118606737,0.0023942342305314497,0.0025911301151973687,0.00013599986646610973,0.012603658319367548,-0.023314353244838253,0.14638240737924388,-0.0023381570891234118,0.000246628191932514,0.017595546443717143,0.0018560821897324366,0.011836180121938017,-0.041148365159760725,4.417195223073607e-05,0.024822463054402586,0.0021910822132725394,0.012055192562873566,0.00023901438624925408,0.0002995513828899169,0.016041841922019538,-0.05065693268267913,0.750304074717835,0.046069352396272446,2.801765709097034e-05,0.004114778727349652,-0.013467136232888302,0.15340690469203397,0.014160934376720374,2.9329999481579657e-05,0.012551664173832874,-0.004620426929844589,0.013101498342195214,-0.02567495721215497,0.00011360145557532032,0.024869919650218703,0.017263306538453378,0.12184332152841484,-9.03330927898428e-05,3.272763542851945e-05,0.026299557508514856,-0.014721179365460232,0.05257278138211329,-0.01197848371221725,6.208104695898164e-05,0.00015465701438916422,-0.00473745600845596,0.018268392682847405,-0.005474225448342511,0.00011857508577964155,0.003579513950405069,0.021447893775372345,0.02347149413707729,-0.024512335231934513,0.0005222993373666374,0.013077506024859702,-0.005718276402432903,0.020116616477411454,-0.00330016575722836,0.00011964545807124505,0.0010020241469872499,-0.005590118513440549,0.019655136287680973,-0.0324814123251364,0.0018254255729647825,0.004893354868780585,0.0016993922207769487,0.01661351072981006,-0.0018188796132755617,2.6303552352575196e-05,0.009482037357791365,0.06150042060424047,0.1741862055099361,0.003966459850741715,0.0011543449229676585,0.0029228023371088863,0.027100881441710873,0.20791292332482852,0.007350037778308033,8.680156886612452e-05,0.008740599019937116,0.014024749550778858,0.020427594774976816,0.006018126278113204,0.00016204038511550336,0.014746694857888779,-0.001153941004387273,0.0018503758182286843,-0.010521090544110686,0.0003579542931757816,0.0016185502842221361,0.0263370325196564,0.08984593177253189,0.015994120560253917,0.002272054602038959,0.009778647782832205,-0.05770515555148505,0.22148885244628544,0.18374812668527948,8.358976676313704e-05,0.012039877655381878,0.04159566320129833,0.06386647352518841,0.03975463830573929,0.0016190203524286252,0.006967823898971767,-0.014698247939760246,0.05059426912865092,0.008311234449897066,0.00011510131331446641,0.014588405645863632,0.06995905815191382,0.17821965666051837,0.19122955089844626,0.00015912877790029667,0.005760707456596063,0.03746713178815286,0.16562922290462775,0.04567508544825213,5.5211228247779e-05,0.006162906824430896,-0.08086628517632176,0.23368881486751972,0.09389698464066508,0.00327980198871246,0.03323509291879873,-0.0008204283515871209,0.0045280530702399464,-0.11398058181730604,9.013007289608379e-05,0.018830514737045376,-0.0012056055492027852,0.006977902365501909,0.001013454987652438,0.0001252971331204654,0.005677376276428395,-0.026704492377578746,0.16557325340178564,0.02638549913317192,7.628564862456625e-05,0.006015517156220787,0.025737291681536736,0.12241055746993952,0.008544383930329752,5.2843474317240644e-05,0.010212780398394732,0.029466311638019237,0.053802968850135864,0.005851002015048908,0.00026702315994696764,0.01808445139038113,0.011279277802287229,0.04220709607148843,-0.04725154046192597,6.645232741563088e-05,0.00809677960861574,-0.022498430559812172,0.27273974473077367,0.023094254608608013,2.1283109504015223e-05,0.015441955255836866,-0.005163565419967135,0.01788219020102415,-0.007632696258716404,0.00010093410545573588,0.010245551909270208,-0.012400605118907435,0.036483122287127544,-0.06723832012182479,0.0005357705652629911,0.018277354927737518,0.00048594587730407476,0.00201980460679015,-0.0018375998874400159,0.00013780035600513543,0.006504016881278704,0.0011896251399054186 +2018-06-26,0.0066916803402366975,0.04598258319176397,-0.016920646909196185,0.00015389638035025392,0.00133262303909174,0.058180893119016946,0.1805963593444746,0.08079537825467252,7.730043167492667e-05,0.004612693960450293,0.015243725839031469,0.05622305201143927,0.02040279473600854,0.00012542205626802537,0.01005153470641138,0.02712570624617763,0.03041714423085451,0.06304560980251171,0.0003009750349259064,0.015742440270330043,-0.00842625482618033,0.017157838485100257,-0.012456702303601557,0.00025696252190101086,0.017005177623234898,-0.0050002711389475485,0.014223263536893793,-0.021136654487980876,7.676107308988011e-05,0.004234083747523196,-0.01826513086010487,0.06337515895183382,0.00999074669931759,8.4565570223928e-05,0.0091124736363976,-0.03956826314555065,0.39888827845311625,0.042774197827477455,3.401686819326227e-05,0.009874632097967706,0.026521733519519693,0.021879876954097172,0.07201033226490662,0.0009347636558267228,0.0023121634376365024,-0.012413020566130698,0.029000451135761825,-0.03832375510665555,0.00014966994787939935,0.005554638040750664,-0.02011598263755602,0.015118792914735722,0.019855579144959546,0.0006503520175940681,0.007303746391801001,0.0018679186453483172,0.02192360010236626,-0.010190078366938984,2.539036095273882e-05,0.002597304729088804,0.020750642606359157,0.06386927067674383,0.0028136323732704956,9.65140702597411e-05,0.036783837363179354,0.0168855847698406,0.085982576431502,0.03213758573939067,5.527992807725906e-05,0.0013697418233213768,0.010557624185327545,0.0084846662510058,-0.03778439606796823,0.002426914113967137,0.01920255342907201,0.0022074323472015905,0.013280184048001754,-0.006358003249449671,0.00013678403667747975,0.0007782850815134408,-0.03353322131178541,0.20820216301040045,-0.0023650105164638143,0.0002494010456765033,0.00039553862168138277,0.003603257591366999,0.0191274065015892,-0.025324643963453686,5.306402373492903e-05,0.03539759196926659,-0.021210280054216848,0.09831813772913771,0.0019120240970817264,0.00035554908590607135,0.01420864478552102,-0.05632984844575331,0.8156081724550006,-0.006687256105470486,2.8660729828389163e-05,0.03575241356848981,0.019006969708756778,0.1508353821154288,0.010270827341938715,4.2100898437031125e-05,0.005056309444427344,0.026739351137290035,0.09473074099787644,-0.03650446007374138,9.092486936259905e-05,0.0032111307060686415,-0.013548611179900782,0.09007651740345866,0.014587424592332933,3.474366018792944e-05,0.045884059250629695,-0.012208091186155567,0.033987037987550275,0.028036848746948877,7.963643861087239e-05,0.018975046474321987,0.02009005320756907,0.10051092680200521,0.11397964885510453,9.139373056149994e-05,9.800589867748743e-05,0.0405435249052416,0.03738133747261142,0.009502047415436225,0.0006199293947682438,0.04338334262982664,0.015535119129802925,0.04865984745088126,0.009846552789529424,0.0001343785201064548,0.0036707296998494472,-0.06917647298247188,0.24869105962514904,0.12259947898685798,0.0017853255378088297,0.021387921916737572,-0.039486929784401686,0.39405551639621694,0.06413110500111213,2.5767848070355884e-05,0.00961175152741761,-0.00024304153639575704,0.0008937708604442512,-0.05046403596310013,0.0008890487597271441,0.02042159687572303,-0.009395669535276098,0.07726630044372979,-0.014295517390176071,8.097729366044276e-05,0.008599148469782292,0.02277865005098294,0.03740394313612013,0.022450901213241805,0.00014373283137298848,0.005729589900812988,0.01673027333590391,0.025880838191824088,0.03094515409469113,0.0003710467335579479,0.004719188508481036,-0.009202307017774128,0.035503298479013776,0.009035322657620153,0.002008992688316958,0.005836915397986283,0.023473062346846565,0.08590854878516099,0.015673721804652454,8.766449592872817e-05,0.013138158318392336,0.014400709743101568,0.01880298113590685,-0.009674687661216453,0.0019038572336422355,0.011413427509127893,-0.011768563965023718,0.032628913455504435,-0.005150057960052334,0.00014290153592947687,0.005727224679392137,0.02780412013814327,0.08480104647370124,0.006775073482962082,0.00013291326325736254,0.0035354444733291124,-0.019344429053239846,0.0795447504148659,-0.01637100604494524,5.935513781017719e-05,0.0053753791376552895,0.008939726157743404,0.029625174623884178,-0.019091104723194568,0.0028601009001290876,0.008177266504205895,0.007543051244715362,0.04607613164479927,-0.027599295461704306,8.143509707857946e-05,0.017350678133993852,0.024393617103022684,0.13284587901290942,0.01050589532679797,0.0001331646341293122,0.0020017266583942446,0.0007146624350591784,0.003912792767602051,-0.0005442234314458561,8.63898672124367e-05,0.00908388901189356,0.012891429829665265,0.05341549616808369,-0.0012247900954993939,6.065704051573923e-05,0.005963057175571274,-0.026453967605094966,0.04593826477149203,-0.05417176666078882,0.00028076671770451474,0.014779957694967908,0.00030270170029531463,0.0012155816706592353,-0.024894021244093324,6.192201687868727e-05,0.007024529974184014,0.01919034962350383,0.21103171517297106,-0.03827696848996813,2.3462076356550223e-05,0.01343387646779265,0.0009606060734242895,0.002797708591448629,-0.035835446677329415,0.00012001950082713072,0.0017376333325096916,0.006174428515383312,0.025841338337684115,-0.03799129893557743,0.0003766255124396575,0.010749082847480315,0.02948413937601336,0.14691589843564776,-0.028402143194734896,0.00011494536301696911,0.024766095038138113,0.0008897962370918912 +2018-06-27,-0.03243721832072566,0.22295416503981522,0.04470542406744835,0.00015385605689175908,0.018019814781489292,0.005146849581949743,0.015768361587155312,-0.002518241116974533,7.831869320269406e-05,0.007532670363635307,-0.006820757091271312,0.022482895579680053,-0.0033624166164940654,0.00014033873071961456,0.006374271046348771,0.004627801493916613,0.005269766027654501,-0.025288006133600632,0.0002963816045248518,0.005852316173458368,-0.03885878310129248,0.08566283330407122,0.05003436375025117,0.00023735289534966951,0.018235884305267906,0.004131035910186874,0.014402696540996551,-0.19325527500517323,6.262704201035029e-05,0.0024151909039463976,-0.01842970733518934,0.06607283319288702,0.009166972854176466,8.184372061305903e-05,0.0074923917752915785,0.01550513613215122,0.14246965971814093,-0.0680445295221752,3.7320874460542695e-05,0.00852586501242116,0.014192642229849983,0.010779197890640451,-0.056818544992192015,0.001015363615265514,0.005038158474457474,-0.01694597085722052,0.03965507634743572,-0.0022868485832064573,0.00014942716304959904,0.0026724054362703598,0.013876382727740845,0.009242058715984634,0.0007078880700224143,0.000733891579344381,0.002505393013291518,-0.0038582700682208847,0.04962968269688499,-0.02082736712325797,2.3167219562668038e-05,0.007914585358049111,-0.028761805053439733,0.0820112682432483,-0.05892937857632696,0.00010418222976294211,0.0023007965754626067,0.005072188014405747,0.02553728611032264,-0.047857353095230426,5.5909089493369715e-05,0.020820787696882056,0.023185583476851863,0.020261118247502267,-0.034581051116300575,0.0022319146918747417,0.003499231849218219,-0.009789033734706229,0.056544356176909845,-0.09218412202907277,0.00014246319154748944,0.008333561832100489,0.01808328301922289,0.09326131803585341,-0.05250716148181727,0.00030025065427141727,0.03662101985968953,-0.0020194207082679366,0.01083865650912063,-0.05655285215166646,5.248223339547831e-05,0.013655315198230284,0.014934321581196145,0.08150224835567146,-0.02468244620436942,0.0003019970611440768,0.005044120139944556,-0.024745029500311815,0.34586856915865377,0.0043398538477207,2.9689788915274426e-05,0.028606448907503693,-0.025908168249869003,0.28279407040527105,0.05345437864585332,3.060892793142932e-05,0.0017512029019442232,-0.02904410601743599,0.09307258145958322,0.007497793409103534,0.00010052151132206399,0.00367513268067124,-0.0678636688439138,0.4993483028919111,0.09519948744717147,3.13925166054155e-05,0.027331170912629647,0.002087683267892648,0.005583942759053657,-0.001368413276647845,8.288978918950392e-05,0.008510555205884479,0.012083462633135898,0.037015835652188654,0.02692351373681814,0.00014926309437922163,0.0002131194852731705,0.014457815635749636,0.013870237090276594,-0.0058113342737623995,0.0005957915769257492,0.0013107758740136194,-0.03326875940705461,0.10344413656758658,0.0669850668015842,0.0001353682256566603,0.014541545245989457,0.06661034350953547,0.22986229977528122,0.03554960254844556,0.0018599150151092855,0.03897035746444745,-0.023961912679660347,0.2226525967899797,-0.05354189317020015,2.7674253309876028e-05,0.01656966173242775,-0.027306588699124057,0.08129939921092119,-0.03265181903569985,0.0010981239976438249,0.014248068512716915,-0.003857011630742033,0.023303718248178337,0.0006212511480969332,0.00011021770681430536,0.02151998574434999,-0.007781106039364657,0.010841848763872003,0.0015656836932555118,0.00016938828666704682,0.006846621578353869,0.04226508351713597,0.07137961143310675,0.13620331157027918,0.00033986893124356995,0.02706257191303019,0.007013410418399835,0.02704645664866218,-0.15058918719576858,0.002009875790337462,0.003730153446457377,0.035049006114535146,0.13398874411817202,0.06409349156267202,8.392623893591842e-05,0.020248755876324347,0.04870358924100703,0.07460972327196197,0.06940053837452075,0.0016227167931532067,0.02330148243485267,-0.018130876391937223,0.05486978763613252,0.009493339484757163,0.00013091866083191008,0.0030159868348507077,0.01927672095974111,0.05906565064800403,-0.0097521525859255,0.00013229960407499502,0.023331805156538682,-0.016870099878068968,0.06441787967111068,0.009299804045763077,6.39182907642368e-05,0.007172146916120517,-0.034297493318209006,0.09398869623609367,-0.010456335214657478,0.003458635642982552,0.012441579623623484,0.024600809311755758,0.11353629765891014,0.014352796709216615,0.00010778423341924434,0.012100506578058017,0.019046398094929896,0.102060096343836,-0.11072430599151233,0.00013533734981573378,0.008437406656859834,-0.01772395533013836,0.1100629963504789,-0.11574123154232117,7.6167204033411e-05,0.014353126658074568,-0.03346490420179889,0.16329811020298748,-0.027845436389795048,5.150576265044379e-05,0.025256090727771113,0.064472669883145,0.1061461186598144,0.09308678960192905,0.0002961426313055202,0.028749451537814295,-0.00602620802166556,0.0257734514382075,-0.01109944608134052,5.814145747372854e-05,0.010523598303366632,0.03760519917390497,0.3347686613616234,0.040155869444606335,2.898240246570325e-05,0.00733193902899207,-0.010193433553684805,0.032362027902876594,-0.008416463036534021,0.00011010162602102707,3.5491414760325656e-05,-0.004886517081371846,0.018059242271661842,-0.06465249964936952,0.0004265086739516011,0.010115783384723628,0.023133843135612047,0.12301681385514539,-0.023301642519605988,0.00010770977231289043,0.059706510353039706,-0.00045851857601398205 +2018-06-28,-0.05322525700045577,0.36986123735198795,0.0801666525801448,0.00015218278682813406,0.012493186381774492,0.07057062751057806,0.2526383780743357,0.09259621038492973,6.70247466788594e-05,0.010958254929307203,-0.009056814421371653,0.029124882775357047,-0.007674696207216695,0.0001438495432887448,0.006015734081846634,0.020836868807217142,0.02455351675001722,0.035513193580860476,0.00028640896615291775,0.019191723567951437,-0.03694179303730485,0.08108369509189885,0.06854678001135217,0.00023838680408825845,0.01029349443315503,0.006701640623865435,0.016864508831749964,-0.014935539909760945,8.676691926156181e-05,0.0004765780392806452,0.03349154769874793,0.11953743012701282,-0.051381243430760566,8.2209339271602e-05,0.013633220555584285,0.049825416584790304,0.48593516096444256,0.07513051986971293,3.516181044774322e-05,0.015850312275809575,0.01721546759445572,0.0151490619735006,0.015926040808163386,0.0008763505581023554,0.009194519369776027,0.06609536306646846,0.1619198335309123,0.11253094494247098,0.0001427357726448825,0.007514172405561341,-0.0020944764002025253,0.0018889709635590067,-0.05538869106484265,0.0005419691263024928,0.0005643565368265804,0.007342039497591492,0.10279190434731875,0.005854822152219263,2.1285340109267057e-05,0.002154368040917733,-0.02830131536989916,0.07377671421458071,0.028960324715579775,0.00011395630253060326,0.015602749464162062,0.005082543779560419,0.024813602735282037,-0.004490869369655229,5.7657143399083136e-05,0.0034945932271806686,0.013270745389916258,0.010106180753159598,-0.009210217035741212,0.0025611276688991356,0.0003287691404530069,-0.04425046198163686,0.2865731271493511,-0.052036140335035994,0.00012706749082912446,0.009002848593352774,0.010485816508496308,0.057983579445318165,0.007080389474387198,0.0002800305825720004,0.029609532294071844,0.003643887048610084,0.023897986497150286,-0.03750405499836263,4.295013676192038e-05,0.018823409907394503,-0.014940578485094178,0.08897020492548319,-0.0024447030215850687,0.00027676401983235444,0.01059924063469542,-0.007144829143536171,0.09890611647785767,-0.040686295028350326,2.9977742813459435e-05,0.009123825043729068,0.009891202465682808,0.09719477284289743,-0.0025070799103678897,3.400070260809414e-05,0.0028286373460452287,-0.0008947396738068522,0.0022639441760149335,0.00625082390232179,0.0001273074258527468,0.01878885771994414,-0.04044270076140113,0.24700329151698883,0.020418894285723407,3.782071940674189e-05,0.0010756223563756898,0.009049421171985544,0.026100235981117673,-0.012844138188376125,7.68694457441536e-05,0.0023765164685000534,0.005004882892080106,0.015692640215884415,-0.06313482236111215,0.00014582987306786086,0.003076180390811871,-0.06332837000349466,0.06465913935876536,-0.04278485498903777,0.0005598142532078858,0.006703156883271479,0.007361625804726402,0.028699875298840292,0.0006660231435077807,0.00010796419168738063,0.0020594162155880844,-0.00771198904597439,0.029620965349748632,-0.016021199412778745,0.0016710381715856356,0.033504496972963316,0.006897797689333134,0.06453416047840035,-0.024002802940979368,2.7485458308738076e-05,0.024670559725058543,0.03350722419006234,0.09427393152277569,0.03767038504847775,0.0011620320387731053,0.002122894716213258,0.0034022134190522,0.024526296931067983,8.066302801453428e-05,9.237516233942875e-05,0.0003210028588326447,-0.007468446371744696,0.012287833720943215,-0.03514292017515471,0.00014344992557393577,0.013971567290342608,-0.01848992301044885,0.023835979106391278,0.01074981144100104,0.00044525214521282276,0.006167943386274801,0.002201727165657103,0.008941607738213305,-0.03243591296219369,0.0019085266484794,0.0009533621577768442,0.014335261614542384,0.05359987190828486,0.0014327545964908954,8.580888162168073e-05,0.0014313756812258283,-0.007283406150431202,0.00976618723700431,0.0011755398608394704,0.0018539015777017291,0.0036162274417603025,-0.02448256001633481,0.07922713219825941,0.02146311403847165,0.00012243312323103746,0.002160881139217451,0.021475024402690293,0.059428385076998144,-0.05067648629255026,0.00014648734688312479,0.0022663897510649955,0.010224454769893445,0.03597643341326998,-0.0030884518821327404,6.936429498776331e-05,0.002863794499341223,0.002427569642251435,0.009324899387231599,-0.00038756031407671256,0.0024674343202786427,0.010831915404839895,-0.04995200906768264,0.24541653181348408,0.1411221972609377,0.00010124876079300224,0.01696639142692006,-0.0060508647482984314,0.03450420914303467,0.011242136651708342,0.00012717629022614642,0.00732989123001737,-0.013505334004460228,0.07266565715924815,-0.002753343238917904,8.79072759733955e-05,0.006236790031188796,0.0407740564707241,0.23786595341933534,0.03762765243018279,4.308231487836129e-05,0.013041752787017389,0.0070334482537344365,0.015220219949189385,-0.01948705246103238,0.00022530807766952477,0.006755201278772617,0.004870643706293427,0.021260393453599754,-0.06837869710859616,5.696779893388814e-05,0.009902786623780364,0.02321440069759839,0.22476687743961832,-0.057563337007566544,2.6647498698220985e-05,0.007761449900374735,0.0020959374879306932,0.005454160130368547,0.0018801447082868027,0.0001343257906973093,0.005287740102612964,-0.014232639557704672,0.06914609980342033,0.0035264115821853383,0.0003244484720125838,0.001848549450042578,0.05169593508274311,0.19944373290024875,-0.08839556162961272,0.00014845943288960056,0.01101006012877111,0.0017967534577205692 +2018-06-29,0.0015505894803619794,0.011385595062956168,0.00013323533981345856,0.00014402161726175718,0.0004653207558613316,0.005155236703989452,0.01543421897978327,-0.009622588365245679,8.014463949315732e-05,0.0028569274248826035,0.055512012411953686,0.1909290917361309,0.1308906509025433,0.00013449683652380477,0.004859846933939925,0.01663567928495086,0.016080922664831156,-0.088014477166072,0.0003491382510548883,0.014123105491174397,0.015329919416793649,0.03360120171098717,0.00912231471257743,0.0002387167177677704,0.005392931746504808,-0.016872940620404096,0.04286493180121811,0.03515810089747485,8.594792196830951e-05,0.005220684768552695,0.016939125526127894,0.06302687127403356,-0.021620141271580608,7.885969494621517e-05,0.017099418547386107,-0.031190688448086635,0.2594006492154269,0.033475842945671845,4.1233719907117e-05,0.04243879865663595,0.00831553641466886,0.007844178988142998,0.002460814205255826,0.000817499623896444,0.00018369473673945382,0.01052192984716238,0.02984285422052633,-0.00334249928057696,0.0001232868995162272,0.002187354233464086,-0.022350799926077938,0.016126211616111108,-0.00036929707767740155,0.0006774622102487136,0.00019583358825556911,-0.00869930735686595,0.10686458298060338,-0.02492770693564472,2.4259043281523066e-05,0.001846775477279527,0.06430987018533768,0.17899083724712228,0.10546490752029938,0.00010673279226958585,0.010558008388957417,0.0025831540285132103,0.014033329380785779,-0.017646948659126555,5.1814510853987695e-05,0.017293006059249865,0.001035875930530794,0.0007267345243115703,-0.024730140840532853,0.0027800648212226347,0.0011736933106205225,-0.06686799928951098,0.4631682776630742,0.08464132436691182,0.0001188041550715679,0.016833608818787493,0.028888589991682836,0.15099028567651562,0.005302813018766343,0.00029626856245110775,0.010890210749765145,-0.018524367064935737,0.10844689290694726,-0.008181168616808827,4.8115745647041124e-05,0.006255800603259857,0.025093347120095085,0.1431232968611965,0.02898659527268039,0.0002889582311122485,0.010716911889208345,-0.017512448939976846,0.2463049937917322,-0.04710741694919993,2.9505562337517063e-05,0.011392309767180834,0.014562501004704942,0.1418796229944342,0.011292676870727724,3.429238189871686e-05,0.0009450056235094944,0.03169607955911119,0.08460030174981839,0.0013879916951388654,0.00012068586069634797,0.00338814135805144,-0.04096988039587356,0.32697993311376566,0.011239269660715234,2.894249530716389e-05,0.03050957955009033,0.0001520221171006144,0.0005181173059565422,-0.0008561757862532637,6.505131197549468e-05,0.0011643338373447682,-0.0009541697937294883,0.004055145354016302,-0.1742722789022435,0.00010758899077958309,0.007557427686090232,0.06634503041767476,0.06895251657903465,0.024210165612359977,0.000549963462492216,0.047068254207343944,-0.031995954791558444,0.11130585730582604,-0.10511383933093921,0.00012099378547864335,0.0065142556420182286,-0.04266841158849849,0.12232907161940737,0.03660953605261261,0.0022387003678923756,0.0327434712642811,0.0021516115586782394,0.020454731006011976,-0.06011593915176189,2.704906710862179e-05,0.0004705346966415809,-0.06342004074442803,0.15976972225345412,0.11607379847097707,0.001297786661657162,0.00417005739862013,-0.008679719202666464,0.057494480653539466,-0.018890052440191273,0.00010053219464909107,0.0037682842672696207,-0.006297571574904814,0.009264005861999547,-0.005545298126924387,0.00016044259485231192,0.006646550966557645,0.0003896178740818483,0.0005496367638533205,-0.01575368576249744,0.00040688062713518534,0.006948416822460326,0.029600556980527534,0.11050587707594417,0.017573975996127988,0.002076179259992689,0.016493753034601207,0.026185125956188774,0.10101143617728246,0.02926934498787378,8.317149189952631e-05,0.0031110163169374466,-0.012209607249811332,0.01582049083222631,-0.008441773586772651,0.0019184873171844336,0.013216970577751227,-0.031200344973904774,0.09244605231878973,0.03160360781243919,0.00013371713472694457,0.030877579712467428,-0.03262059786853077,0.08953558824315168,0.06796654092758145,0.00014769187408382347,0.014190032899592683,-0.02847167036095656,0.1317776213335059,0.04951185971483209,5.273333132279009e-05,0.016728669603458483,0.015240372304122176,0.04670376391369405,-0.011573279788222568,0.0030928706126476836,0.0334340318053314,-0.01987219947187233,0.0997650721631667,0.015802031293628945,9.908501684066637e-05,0.01740241970674013,-0.010922350793482333,0.058895496534221825,0.017813543408744602,0.00013449149385278208,0.008348538362848117,-0.045948362188551826,0.26724840809053174,0.09947496042276412,8.132116796891208e-05,0.01320907227970065,-0.03593449725282736,0.1688999251816915,0.01933954406906096,5.3472379550791904e-05,0.013011908876978739,0.00045233738745197125,0.0009497458089767711,-0.0004025195530449274,0.00023221191160255125,0.023217753427418625,-0.00611085288964263,0.0221769779211056,-0.0014619689541444459,6.851944563339883e-05,0.009938494714921392,0.029578759359876246,0.3475016566712822,-0.035870109616290016,2.1961113690660817e-05,0.009503909790911048,-0.020299264402118124,0.062282528398355096,0.02755232744462622,0.00011392604744614447,0.00043234960856533967,-0.01272575413677263,0.04977637508120931,0.016657294493105067,0.00040298439863338287,0.0033974307927447534,-0.05925576500026244,0.34029904044406717,0.05925541051421664,9.973364250814786e-05,0.017097760711465577,-0.0037883856898776962 +2018-07-02,-0.010637915099125164,0.0849249750815543,-0.030203656880827084,0.0001324669923192461,0.0006271538205163756,0.0006879215891482998,0.002434613609223246,-0.00019784644147856974,6.779839617855692e-05,0.01574149262907169,-0.02861761804299807,0.10546859484849871,-0.04800490970072695,0.00012551843838551997,0.006319423130104172,0.010781579331078529,0.01003409044349365,0.006442331203288491,0.0003626370956595009,0.0022011908366084,-0.03381129531895631,0.06428159540310241,-0.004982109017319912,0.00027521552841904196,0.012397673985920236,0.006009561940666081,0.015847935097941305,-0.026213631727689795,8.279743286075164e-05,0.00802730439557591,0.06700603417360819,0.22824071529494283,0.019127484100761705,8.614114694839528e-05,0.013855318822901511,0.04505771178095296,0.38923742610311646,0.024629134844390155,3.9696585732870905e-05,0.028651439920226795,0.022105828815293747,0.01714529898745755,0.036493605848604976,0.0009942750150965832,0.010333111120685018,0.0454537858712741,0.10711859500800441,0.0117086556771207,0.00014837716891754845,0.0021788393494236746,0.023895594252363064,0.01909519377158195,0.04149912024853955,0.0006116713284055098,0.0018676360299806033,-0.01035087018022669,0.15199554060777387,0.010356643823764949,2.0294053679101077e-05,0.002811748126953272,-0.00506327719816212,0.01517317350546497,-0.04857016436406093,9.913027663080368e-05,0.005987344718677857,-0.019731442251940342,0.12005659006844333,-0.010230854625754416,4.626309088287097e-05,0.005435654570328675,0.023818881656272474,0.020727952072130806,0.01905190826371365,0.0022412378252492844,0.01355911723349771,0.05237292477811397,0.3234345441233013,0.19733518959494342,0.00013325163089787488,0.04235888616674979,-0.005577113504143255,0.03229904032597725,-0.02587554611146186,0.0002673794936247487,0.008859095455335432,0.012061308487452238,0.08032606169361665,-0.0313409336972049,4.2295961971219425e-05,0.01245746803474389,-0.04476426528107026,0.2631590028307071,-0.01594259733251232,0.0002803496615558067,0.009699654036464094,-0.056650868020175084,0.730020318513171,0.02977381371638576,3.2203409307259936e-05,0.01488468379884746,-0.014582960065513318,0.12823140955910223,-0.01006562087830412,3.799557134019689e-05,0.007906644606938977,0.04460419305423255,0.11984458001370617,0.08632299172687816,0.00011988919520506273,0.002211962517981524,-0.015580475393061528,0.12020757823309755,-0.0029276684958201445,2.9939271812377e-05,0.011008229561169267,-0.002713162692975463,0.008691171755515996,-0.001246880552632035,6.921096210908113e-05,0.005979893615874607,-0.00875784089076205,0.030043015206342488,0.03304939284429511,0.00013329139978974453,0.00017193228256776245,0.014354101139616696,0.013760269512164285,-0.01974881506966519,0.0005962448256597053,0.01358230844257692,0.032870794621616045,0.11265128691623641,0.12011758025204616,0.00012281744390403904,0.0009395785049414588,0.10333350932078281,0.37053905854414193,0.10823957305989795,0.0017898900743827566,0.004936126945708499,-0.06451543123823031,0.5603444919963648,0.13765293164602407,2.9606747001205945e-05,0.01129167650657861,-0.022642574415862177,0.07706294106434053,0.005722113567708636,0.0009606197114774838,0.005717120125802276,-0.012389831156503717,0.0754319961892869,-0.08762051576256662,0.0001093793732420246,0.005567311058333858,-0.025887040899021607,0.03518000187325177,0.016643917325649224,0.00017367285267826953,0.0019724018855275497,0.01234043957469328,0.01988830637143883,-0.05032009314356349,0.0003561531109145907,0.00018644018278458322,-0.015679683550634482,0.060511767034307135,-0.009971683413721436,0.002008388839892671,0.006400367402621222,0.004404948448730361,0.018222002900848973,-0.020466496037466905,7.75595158083593e-05,0.020937398356062054,-0.09786417039575733,0.14089080125694786,0.20097952880828085,0.0017267054974145271,0.015543715538220879,-0.032362092386675756,0.0918129712858404,0.02293353487181257,0.00013965245909412454,0.011780274449635052,0.01340138884594869,0.029312300332399344,-0.0473817745300927,0.00018533621220034055,0.00845346530716194,-0.021531607475381975,0.08909821026854403,-0.06970230984669433,5.898225855907192e-05,0.0007287812646249289,-0.012149710605641104,0.03408033256753885,-0.05027238751891906,0.0033789375676480486,0.015091779467045003,0.0102327910916463,0.053566423216438744,-0.10235286815887501,9.502590847966866e-05,0.021110763026393572,-0.02788114864131709,0.12079168205938726,0.06298278598978652,0.0001673918916256589,0.0034794318220310095,-0.024011669972623776,0.15971088566147756,0.014082937639095159,7.111096075649717e-05,0.0010186530639040028,-0.013081512123496801,0.05734459739604385,-0.04672718755311709,5.733407826457039e-05,0.02082112629299731,0.03183122978782846,0.06557730519155841,0.015309184206976061,0.00023666238989817148,0.009937392360245488,0.041806541422524914,0.18455471435968154,0.17035311005059453,5.6329185693788324e-05,0.009101104012124037,0.014808374961189792,0.17612789636557952,-0.0074589815515474014,2.1692546649330147e-05,0.016661518437948313,0.006386754436899751,0.019461552189810005,0.010159809216160916,0.00011471275435801233,0.006970799063297931,0.010393071993142615,0.04386731949892808,-0.013510581368513182,0.0003734485769057006,0.008007853333780894,0.027952014002745284,0.11866660321503517,0.022300363705656853,0.0001349138047536373,0.03343385662737731,0.0010598267791720945 +2018-07-03,0.010933708163150818,0.07454254749418392,-0.01068901634767222,0.00015511358340962884,0.006291407977863641,-0.03682388428189848,0.11619929595164305,-0.012406935049410229,7.603904031658134e-05,0.00044416018074144403,0.03125421954624999,0.11270957367752588,0.014199958496955828,0.00012827589573665573,0.007256693479959922,-0.005417278933320017,0.005831731011109784,-0.001031205919521575,0.00031351012426964554,0.012921578593423765,-0.026006496746042912,0.057165363666164676,0.02786828204182635,0.00023803819877556728,0.008933326360615489,0.016494762633726755,0.04638383226188385,0.08319607865302257,7.764726850288465e-05,0.010797596770851623,-0.01823834018000599,0.06302968883376875,0.009514576997575018,8.490436221214313e-05,0.005165106239696588,-0.04393847580735465,0.39556348788297246,0.06237014449351678,3.809144117680122e-05,0.015037251350474116,0.014785022831102744,0.01126431208387498,-0.008372356715286565,0.0010121901618649503,0.014160481553170243,-0.0002784730878280796,0.0007473768458759086,-0.02642709873018195,0.00013028831811284048,0.008722272001383789,0.02961153953065316,0.02044418437415384,0.08016704218395512,0.0007079711438009906,0.00011766032711595315,0.0006191676951281088,0.009049792060700326,-0.13452183727847475,2.038883813625999e-05,0.0005161499472327906,-0.02166542919914697,0.05471338928757253,-0.0208041975760857,0.00011763179287151489,0.009611579285542354,-0.00814840275041828,0.04650860151086244,-0.010176030572204394,4.9317496715374224e-05,0.0018604875082448872,-0.022712804199727765,0.016636397945962302,0.011479454397466579,0.0026627747455789962,0.011434029969443503,-0.03280758397834733,0.21096448345530286,0.006792462330936571,0.00012797260495774353,0.010304627563520631,-0.05520437145430407,0.28256451068827226,0.025428665372200246,0.0003025269622993242,0.02558167726376786,0.0066536983744903515,0.03804859826854078,-0.11580835863519956,4.925897876006871e-05,0.01252597396217499,0.0018367234237695498,0.008395809453548697,-0.10845636983383464,0.00036055207435520476,0.004146568987968179,0.0572418864404277,0.8468291275874008,0.08421118941521549,2.8051002145231587e-05,0.0015320397586680518,0.013016570429044824,0.13023743164540438,0.002577717004409465,3.339200206169312e-05,0.003288885640252595,0.032354237854927775,0.10494229917725305,0.052241045148737154,9.931237200394126e-05,0.0140688842898613,-0.03153777470395597,0.2150164224288169,-0.14435997901278025,3.388065446747699e-05,0.026229879367910998,0.008676494930727007,0.026456009992012697,0.0008477085658006685,7.271053727388441e-05,0.01655585914667499,0.008746098763422555,0.032356119767539555,0.013488975986295606,0.00012359660413678627,0.006060188243096141,-0.04918344357298092,0.050498803018920915,-0.020472182699700425,0.0005566899869665184,0.003752417990241347,-0.010659612801051757,0.03922237947974809,-0.001585443237250339,0.00011439143327978554,0.019086129401126226,0.0452535972422014,0.17188889852050432,0.008422565158413456,0.001689757774941874,0.00679789668288385,-0.008959787650715412,0.0927217222670267,-0.0035361905737391194,2.4848399586040627e-05,0.006588658182485935,-0.006754375739560708,0.021447268544246577,-3.641567719755173e-05,0.0010296378438007237,0.04018329088600613,0.0020427265005626438,0.01460018172140135,-0.0170237661826583,9.317032385245774e-05,0.02344355587018993,-0.02203379112953789,0.032838507081162586,-0.010297277016568287,0.00015836208449666615,0.010334768747585422,0.00319159124101934,0.00400007095012924,-0.007546082333176348,0.0004579768058154603,0.015627897806693197,0.0069548257138923614,0.02838405934921181,-0.0009751184506029176,0.0018991623240874802,0.00769029095503679,0.008938026087794725,0.0349051255394685,-0.01340488260621002,8.21566616800337e-05,0.0058627885424183315,-0.03437368194739396,0.040941726655140426,0.016334683048567302,0.0020870703657944797,0.017111464130897917,0.010812186648119513,0.03054137457201898,-0.042389373452080936,0.00014026231136819682,0.004141288952389076,-0.019179483108105088,0.05657283771286716,0.02564740601394106,0.0001374324570850458,0.018624674053243646,0.014093943232190325,0.06096604194532272,0.010357986924816981,5.6423294734920665e-05,0.01159597567284066,-0.09099620298828946,0.31382637339358604,0.03798244177338298,0.0027482224985810565,0.018283032939105888,-0.020296281817699876,0.09816159007215601,-0.014815066651752681,0.00010285264638641806,0.0035033303729434606,0.014900043639099223,0.08400941565969018,0.0005851124191360921,0.00012862351118599636,0.008886673694867123,-0.00018931937255449444,0.00103720441697188,-0.04600954878577756,8.633350991116256e-05,0.0008637780413461769,0.023203085505430987,0.10130733668092548,-0.0050581382100360105,5.7564168692653555e-05,0.008815908959606123,0.026903353187883273,0.05190992231770808,0.01108694468165834,0.0002526884713911844,0.0010832462782625813,-0.0067089515270366655,0.02467483872501145,0.002591786396532179,6.761058709572398e-05,0.006740539110024556,0.0030127397494160322,0.03100943708998522,-0.07665209208066442,2.5066807178963026e-05,0.01217432525813566,-0.005666645931118714,0.019040991652763104,-0.029185840360139187,0.00010402685752277484,0.004256630829093444,0.00913653577784667,0.03263410098351039,-0.012368931880512204,0.0004413040133262344,0.024613757287328966,0.024050317296439416,0.1240377266719546,-0.01882002446291993,0.00011105517693664581,0.0011364054409918319,-0.0027308388439860535 +2018-07-04,0.01655312075376762,0.12300164387344376,-0.004422712789372471,0.0001423165972877598,0.0007573887607090718,0.032039688950559274,0.11358789400391246,-0.019702141182094374,6.768100053039233e-05,0.006908843794358487,-0.034621035159893565,0.1219099014861779,0.03328848390587026,0.0001313706271530344,0.017319692624481523,0.008892446228767992,0.009348619486065354,-0.006829435331731484,0.0003210270447674252,0.01594876677194182,-0.002287199251907718,0.00557812383433746,-0.007277484488602654,0.00021454264040074054,0.01556519317931144,-0.0069370911196623445,0.018797987671843888,0.0032484257962658294,8.057731253469673e-05,0.006883411677685929,0.0042773365675291275,0.0196007867303567,-0.04326005245497158,6.403092511323327e-05,0.006933396193512166,-0.03456155240438044,0.32380396067652306,0.03293427800499719,3.6602411510744445e-05,0.010326273600293224,-0.006218316621932516,0.00497978494866388,0.000787676925858973,0.0009629573002415939,0.009481927915273657,-0.002252393376049518,0.005636162676305774,0.0013844637174113981,0.00013974060147610017,0.01891320797219655,0.021089389350665837,0.013768721233550713,-0.0015173223330465517,0.0007486774559273757,0.0024675451626433504,0.003309481538931065,0.039355192230423025,-0.019805959158215668,2.5059979662717863e-05,0.006094478768079188,-0.016922303035542426,0.045739902567884634,0.0016464695390442032,0.00010990444831789433,0.00020419524234143935,-0.006983799571345264,0.03329064168193614,0.005335876540293905,5.9051565970722444e-05,0.001115758378945533,-0.02320391850858039,0.017807662509228554,0.04557684999099028,0.0025414255270117076,0.0023059837292868195,-0.011165852908610791,0.0699114569288488,-0.03933976051562333,0.0001314303478916411,0.0068248288207380875,-0.040008975343753445,0.25468911191302623,0.0032300828604249787,0.0002432513626696728,0.002784938813281592,-0.02046971816365509,0.12827895902051809,0.003210259917786147,4.494872654739277e-05,0.00416864675259996,0.01460037024461618,0.08448728564057416,0.013179251128429898,0.00028481267901395727,0.0039061966487109814,-0.07338312088721304,0.9307064584205189,0.090387917092996,3.27200291147617e-05,0.03845315186745797,-0.0013954698641314178,0.016590507128605134,-0.011697571393842136,2.810234167385126e-05,0.0017170446576867337,-0.023171621965638836,0.0693019998356321,-0.047678714128123904,0.00010770439442715343,0.0005052347788475655,0.0025415896950947256,0.015821627851075167,-0.003844491810545027,3.7106214607640124e-05,0.0019234814164184725,0.021900831014149424,0.05686237316981115,0.01471394051360817,8.539117613465938e-05,0.002532211108425634,0.009602898900411086,0.042191779131599536,0.014126393598409375,0.00010406941498970536,6.709909648623322e-05,0.06079239158323894,0.0636175214982262,-0.03441795186974282,0.0005461954086142981,0.030238745620707545,-0.059329562337025944,0.20077358978113763,0.168956395602311,0.00012438000489738425,0.0025237594008549274,-0.019922109382380045,0.06642235581715646,-0.00041199097397562643,0.0019250420484940144,0.00991818442535558,-0.00801932095362631,0.0763279109681173,0.00036222634569415006,2.7016955933305454e-05,0.013946644445586324,-0.08469996529591549,0.23874196473302,0.030082193625586284,0.001159913861759384,0.018741506287547595,-0.006931734686504487,0.04815297937178031,-0.020458502023780762,9.586154218436332e-05,0.01662404174897871,-0.0008096112683302937,0.0012258928816513749,-0.022712283273310395,0.00015587246632117204,0.00026945539948265056,-0.016585059862136632,0.026553021019788434,0.011142245143005557,0.00035851474162085944,0.018117488710049926,-0.029567841935396372,0.12564539054605936,0.06455806432745079,0.0018239940128301566,0.0013258277669606507,0.006992331055744192,0.027346770825458246,-0.0004749981064758449,8.203634471368429e-05,0.0002542292718354857,0.005157584447720483,0.007111831084737042,-0.01850551935139287,0.0018027774057280258,0.016743043109087676,-0.010913635183914926,0.03197909739636572,-0.05530970942659527,0.00013521325480173616,0.0010103310926786772,-0.0542787442609298,0.13475401102403056,0.11170473832585485,0.00016328581819046755,0.0065757080269879895,0.030384871956665636,0.1274315053949035,0.04436905568601049,5.819618582757878e-05,0.0013193287157631092,-0.058808064092683764,0.1938986484277842,0.009360179069767403,0.002874618122495213,0.007594472933766338,0.01095735697656746,0.057625524896401985,-0.011876202673058828,9.45870077980165e-05,0.014872925127356525,-0.012670704763000697,0.06636719799444937,-0.0062388830878183235,0.00013845481823383964,0.019054088694698632,-0.004404765046872954,0.019848513699876294,-0.0004187977925368911,0.00010496474502440791,0.007914902212734906,-0.020643216780585123,0.11190884601741781,-0.021069258529170076,4.6361806576981974e-05,0.029877836534617327,0.030304538675886998,0.05303692325472622,-0.04266696836973704,0.00027858565452681114,0.008205411481797958,0.015002313212039885,0.055527757377602516,0.03443957669541076,6.718347604875995e-05,0.01298983825150643,-0.010055444174689853,0.10818647002422073,-0.01334107026013588,2.398057510161294e-05,0.008105320305042414,0.009718912200188045,0.03216339710828198,0.013776957354080218,0.00010562451079036899,0.003204123562393902,-0.006349605740969262,0.026626431377659302,-0.03082355305011256,0.0003758908611905143,0.014382240945707527,-0.030917535460363185,0.1563165591731546,-0.00846040214864839,0.0001132848089906471,0.006978813163216857,-0.00860800969094262 +2018-07-05,0.0034939649648432583,0.023836674530006364,-0.007501357273751036,0.000155009909668108,0.002599138190070367,-0.01442794332778107,0.04970349760868279,0.008045484364319924,6.965110382302278e-05,0.0038370946761508507,0.018709375079941862,0.06696327505748927,0.019408383557860554,0.0001292468002421032,0.009426156878836895,0.02552505464583695,0.02998077766431371,0.021843118988805584,0.0002873370595482693,0.0012610350937254408,-0.009855099432460329,0.023634206334972145,-0.0067557557290082865,0.00021818141799589055,0.021758071470318652,0.00015792507965989175,0.00039144841554901314,-0.01066585621352425,8.808932962127667e-05,0.0060388687972816055,0.00977356700756941,0.03696546149495819,-0.013000710426258125,7.757947164686727e-05,0.011368149542047935,0.00731531772314058,0.05451637134211128,9.986314452080987e-05,4.601557643584861e-05,0.010638346435488614,-0.018544949148704797,0.01724909054697443,0.016458506334064982,0.0008290948766765292,0.005394016024323444,-0.0807159029487223,0.20812786140193698,0.18209644565940183,0.00013560970592003892,0.014150722071533872,0.007615229131807907,0.005923373574995868,-0.03279231690063091,0.0006284029423860513,0.008068862548961296,0.01629086758844111,0.21392730499234108,0.0379259738989966,2.2693463484891496e-05,0.006297817354486943,0.0147087487868965,0.04441746747534192,-0.011807509463909203,9.837233396352387e-05,0.004779872474110746,0.010531147057968574,0.06332771027139829,-0.08251849866032718,4.6810546353912335e-05,0.0032763043884270877,0.011818022334210403,0.008835735306632205,-0.021451362739837748,0.002608705667992204,0.017807617348926896,-0.018661841482498286,0.14750556626748207,-0.0024457176292348396,0.00010411137799491517,0.014069045658416747,-0.04897833357136853,0.2251348780657807,0.012681247438848976,0.0003368755217587343,0.023068058528629268,0.013649443317538354,0.089989499652448,-0.04346088370692621,4.272519546182947e-05,0.011429624546885703,0.038566486112805706,0.24988950449806857,-0.0008115201197226541,0.0002543600271043963,0.004812977471244741,0.07068311450737308,1.0113358509053898,0.10549615036160093,2.9003506437319097e-05,0.003475062930130856,-0.014642216809759023,0.15996516076475178,0.016986199044285187,3.058180645956826e-05,0.0038245079345431685,-0.021755282548528505,0.05523100052069567,-0.0012429408855566964,0.0001268833315438689,0.022536878007378698,0.03051421782888223,0.23220700879584913,0.00892752054014853,3.0354235146264366e-05,0.00804669452806928,0.027986535837053874,0.09251508138444557,0.06497740889898858,6.706778942272015e-05,0.0005552238519426047,-0.007205378929601985,0.024833059333633015,0.010938936973083334,0.00013267075317088963,0.006475506748960173,-0.0066539081650068554,0.006593368190102524,-0.01955188194920082,0.0005768262760191795,0.020357926193371748,0.03205643607320182,0.1046019455496349,0.06601217821793509,0.00012899161614176541,0.0016947530281376543,-0.0532326279345217,0.19256288443373146,0.028736208662490333,0.001774289565592786,0.00963486117519881,-0.007906727733940416,0.06204165035555699,-0.008188874824152413,3.2771448501228705e-05,0.020164564808074534,0.012869889643825667,0.04152599709293396,0.0002469214021248277,0.0010132719571976272,0.007794795712072234,-0.0036489107936517186,0.023724180432841364,0.0002680740894394265,0.00010242304214297407,0.011201471304103622,-0.01323285661110413,0.019651233365270478,0.005251815291796852,0.00015893120631969745,0.01001626170971364,-0.017801725489188132,0.02815266550336767,-0.004754814892095418,0.000362949743037206,0.015239953770276954,-0.016803836584176474,0.07169501738359116,0.01904960713881141,0.001816643947232642,0.003110332736860655,0.06580846307999544,0.23841053988827732,0.16096531957342816,8.856184741296241e-05,0.005307645938033028,-0.014218014821697312,0.02245839118601505,0.0013543920555567283,0.001573756410683794,0.0030710572275726867,0.00971726109457346,0.0368804720805247,0.008333203547760808,0.00010439109113229131,0.013640515133177723,0.035757869916012534,0.08727960835754425,0.020839379536977603,0.00016608072323579128,0.015115035324658471,-0.028719025410822874,0.12489273716994666,0.02620438924775556,5.612371869155126e-05,0.005902247763218687,0.03774287909722867,0.15711965090197927,0.005674487184754397,0.0022767879191330893,0.007542169538794284,-0.010261494829234873,0.048854111877528625,-0.0631765074713958,0.00010448406934027507,0.020428320354940573,-0.00025738275899844776,0.0013172341686908038,-2.0689245074841e-06,0.00014170241395793795,0.0034541509759760604,0.017414242344431615,0.10750205140698997,0.022525299439773848,7.661900909177796e-05,0.00514469375867728,0.029494382411264033,0.15417636279815805,0.021777392788677612,4.80804922985898e-05,0.00796502887612741,-0.012415961639606678,0.025499549370143686,-0.09766588796111805,0.00023739810644449885,0.0030549439517854686,-0.0021975690999892048,0.008725948112859651,-0.016667225021993685,6.262450260614049e-05,0.007398702685697373,0.0008463665616050371,0.00972750978167207,0.00044192220349998864,2.2448540276861507e-05,0.003920279939505378,0.015502203716913,0.05084498305535327,-0.09390554893506135,0.00010657474380749369,0.005371158262109937,0.012568464105583016,0.04293166280921346,-0.041151295555865254,0.00046145830911432565,0.0005290515103306371,0.011237452378332666,0.04599452696300803,0.0006989469235512012,0.00013993730432328947,0.013210483330082394,0.003855967057441215 +2018-07-06,0.017900926653094916,0.1333589465251453,-0.10019303749435747,0.00014195148523837078,0.012965809315182625,-0.018603708554125995,0.07983715397687144,0.018801416618055605,5.591199735547961e-05,0.020517706373765415,0.020282396735030357,0.059213622424975125,-0.05877596262582311,0.00015845095019987685,0.011820658031329664,0.0017163448713844085,0.0017884650282898552,-0.0035711957774644362,0.00032388583935379637,1.8558765684872393e-05,0.02177769156378487,0.04525375378487758,0.012201213216988653,0.0002517995822777062,0.01260749073759145,-0.029528197674221074,0.0846214766555541,0.11944488995524999,7.619089581305888e-05,0.011869979161379747,0.028449927162912288,0.09474875412551016,0.013953164321141326,8.810438135241867e-05,0.0028057554472122443,0.02412494740700953,0.224741926440346,0.006135203970477212,3.6811277587164054e-05,0.005262779970484168,-0.022275697928239215,0.018733774585069342,0.03160163139784329,0.000916960897804619,0.015197663075790353,0.028520992713978878,0.07245841357149196,-0.004342729807208,0.0001376377938548826,0.013446619372828116,0.0052365989759115125,0.0036341552373690446,0.0018180450925075772,0.0007043202903786642,0.015114362587449349,0.006015439974040118,0.06798551159321783,-0.007591111982431737,2.6367795205034687e-05,0.001038491727734473,-0.015155870270923577,0.04228895759285763,-0.015857006320582127,0.00010646452896939353,0.015747363342771367,0.006349996334370015,0.03320117728104171,0.004192570298837167,5.383711874790567e-05,0.01422418447481768,-0.016536438498264115,0.012952791664387748,0.024975915162026015,0.0024900127579798666,0.015489061637406966,0.033517774921940434,0.21980108628480224,0.036760044092675186,0.0001254866292272033,0.008262798196149937,-0.03101559026291377,0.1354995316063653,-0.07496985030988407,0.0003544463338652129,6.991362326741642e-05,0.0428127997561182,0.29485039896869336,0.05598190230435509,4.090090012275373e-05,0.0020652390061626945,-0.01787798927158391,0.07508956445857659,0.006658043469127853,0.0003923971952294287,0.01823398527670554,0.02292980405647917,0.37515070274851875,0.005271159239486926,2.5364412675366047e-05,0.0067123254121708425,-0.014002389112624157,0.15877578895371144,0.013469684939400569,2.9464533654681725e-05,0.0014948146671252137,0.018955865019080115,0.062138329939682546,0.014851392712720736,9.826679385029415e-05,0.0031459185674536086,0.006674152380940666,0.04063873422362406,-0.028749521196773424,3.793571916681719e-05,0.007411740011553052,0.026503055106118365,0.07216273852061018,-0.00876083339651406,8.142547784192702e-05,0.0008327463061559462,0.0064171969899162705,0.02586282481566809,-0.029062030762584384,0.00011345352883465831,0.002930391709594725,0.02561014160856655,0.02295660004971608,0.004522226902716137,0.0006376464897613557,0.020632775891748868,0.019755373778491268,0.07826017004073464,0.025969879329227712,0.0001062503753577693,0.009746947999679447,-0.002652458594510927,0.009415936576362673,-0.011013021151026219,0.0018080243008908945,0.006579145973503905,-0.009603563798533875,0.09155859905191344,-0.02169102796722852,2.6972144783428036e-05,0.017661008236832552,0.015615894534684639,0.04310019175856785,0.004191824768975899,0.0011845651038765702,0.017727559536542058,0.03671892083113825,0.2838119556823973,0.054340024381805366,8.615586869829146e-05,0.020352136016832275,-0.007124250620030554,0.010335260539056257,-0.1166078054335466,0.00016269085667844794,0.016633754666980898,-0.04351459013227722,0.060222411896954264,0.08430928627616333,0.00041474452923006134,0.0014954835397629068,0.042236672082912194,0.1511001120988697,0.050717385377436336,0.002166582577775528,0.025893276390874794,0.0007633257699763436,0.002863799160404983,-0.00043772393387881466,8.551803976222654e-05,0.00943570595565587,-0.007416703358434261,0.010575653074226293,-0.00262030331457843,0.00174333522440188,0.018495243851562194,0.003840735977728363,0.013049334150530036,-0.010614407848751674,0.00011661170305010567,0.001359648686371971,-0.021973361797266326,0.05816382631770622,0.022597620364285403,0.00015314538490609976,0.03265829064035413,-0.020462751290907737,0.09080204338588549,0.012227832285753977,5.5002487235216365e-05,0.017899477229616448,-0.11606308698543583,0.3743428772762222,0.14170348262687363,0.0029386143928503044,0.035791301002581634,-0.01965897965374294,0.10025293085420327,-0.025957590880910854,9.754487712696469e-05,0.0035941483109450992,-0.010300406281150502,0.05447017651319081,-0.011874793567572647,0.00013713754064562838,0.008967585635445013,0.010168480571305927,0.06266869550937232,-0.09253631766820712,7.674570982108781e-05,0.0016464173080405166,0.03197466756303337,0.13762770765784646,0.020059309646738438,5.8391220965409575e-05,0.007518753308176838,-0.04428601098268588,0.08164752441415493,0.07308819185307809,0.00026445570248993225,0.012748997096726604,-0.017473978448064958,0.07198745631825967,0.004878229061013164,6.036001563550955e-05,0.0023452614717831585,-0.013002310392353717,0.12628729030925503,0.01502834445716959,2.6563920384227958e-05,0.009526362496934943,-0.013781521570652305,0.04803803385712521,-0.11769691414165115,0.00010028152040228864,0.0011688421140391158,-0.0032611068038034575,0.012458244182548995,0.0026415010329205184,0.00041260658480198834,0.002401115100789778,-0.008713233324810459,0.039858066635854277,-0.07264635784720264,0.00012520881661373415,0.0016471255861319363,-0.00022221126298987049 +2018-07-09,0.005601406772428368,0.04302455998412045,0.005016390983607389,0.00013767885914085033,0.0004854614572005133,0.03695727394269426,0.12831190557135083,0.0143921922981136,6.911041501169235e-05,0.004484518320858048,-0.015631072866876858,0.05216144874574682,-0.02413618535775383,0.0001386233363196116,0.014857216039257432,0.03380217690710626,0.034667119419550266,0.05148479517678928,0.0003290749092082539,0.0033875081977280588,0.001665588057473143,0.0035914102494504696,-0.007737260459081053,0.00024266120662400507,0.0022839434560468722,-0.01272300716442151,0.031409444565931935,0.0030627328668545797,8.844560459130879e-05,0.004732351509079272,0.043175123338188105,0.17622739037021456,0.027704944744412794,7.188694571495219e-05,0.015044279445287998,-0.0016008684683238997,0.014907743495779247,0.0010403510557895025,3.682496590687545e-05,0.007077660539837119,-0.002716014985950732,0.002190969107672331,-0.0010807916365457393,0.0009559621435567947,0.00549734461904173,0.011138958390468112,0.02812284539524122,-0.0005269940401372914,0.00013849918209716446,0.011963390727714868,-0.00012854879644963308,9.758870981635641e-05,-0.02696676302607252,0.0006438620036256864,0.0071468885946646635,0.009071818400810084,0.12844758307639934,-0.02348729571930104,2.1047048438478672e-05,0.0027329346485105155,0.004470462088708653,0.015450143169789456,-0.004217300021011952,8.595496066369575e-05,0.006359180440895966,0.019341874593248275,0.0978833044260886,0.047061674636013885,5.5622660679074245e-05,0.007371043641856008,0.01967934931488248,0.016636853952300544,-0.01588248709704259,0.002307079196622826,0.006091554183151724,0.011410345155738695,0.07174220769214754,0.01866314437346842,0.0001308808637950923,0.012187204839136764,-0.021108008660479616,0.14138020259235073,-0.0015756623532694454,0.00023118885600693622,0.004422274083754537,0.0006032766800708127,0.0031806960435943523,-0.037208201773185984,5.34263278816807e-05,0.015575308651853253,0.036050236242840476,0.19910833525514668,0.05027148634526696,0.00029840457776333533,0.021554041570571468,0.057143948324907226,0.7699981824923295,0.046315389251936054,3.079716753595472e-05,0.009994490414300497,-0.0005240081029110766,0.005267700829641891,-0.13303260640695155,3.323522396954768e-05,0.0035791765346603224,0.02490609050412254,0.07598743995804044,0.03349705465454637,0.00010558117830324243,0.007248319654108525,-0.02618109163495447,0.17174665700859953,-0.007504310530323176,3.52120925293003e-05,0.03742133198551215,-0.026252979417481535,0.0672569197146078,0.08568940658758838,8.654042169482029e-05,0.0013642930044842493,-0.015406920185086702,0.058486593779815035,0.062052114587989184,0.00012045035914233924,0.003923190889589404,-0.020318419225237448,0.022559680544583346,0.005833039060611205,0.000514792881168412,0.01016703604868161,-0.01564882615132027,0.04852002466761177,0.0033015337300408977,0.00013575216418630737,0.01243553453999035,0.054851919586974426,0.183605157717886,0.018120982960061097,0.0019174591852682088,0.002602816618496818,0.047613277346969476,0.4736228741859316,0.022267797370729096,2.585101516436095e-05,0.01883966863896653,-0.04319985535744434,0.12381073107197718,0.03627371682782903,0.0011407626002942102,0.001732736546529423,0.004367026107522177,0.033947745291584334,0.00042465549217126714,8.566442349266899e-05,0.0016814346808580885,0.013603631377570997,0.019379254362706013,-0.024168610517736094,0.00016567736485758534,0.009124154549760455,-0.00908197826392319,0.015461155004352084,-0.10219794935843803,0.0003371649628944685,0.00654872089167477,0.05302569406115981,0.2081111928641276,0.08063637754816913,0.0019748825135063666,0.003868936881880737,-0.007815569962871683,0.034479167894588054,-0.001762967082405233,7.272676155502775e-05,0.003626129796680719,-0.06590731234586757,0.08959451825467286,0.043918763864243225,0.0018286447983211277,0.021232720333638277,0.020760489879053736,0.06560248872062752,0.031657592149375184,0.00012538145879155058,0.0025691289752386424,-0.04782781977927065,0.10949838529327999,0.03738387637578279,0.0001770652126177621,0.013402755379485263,-0.08537597493260318,0.3738354933204884,0.27779263442150176,5.574027006449128e-05,0.018260628367536894,0.004032797362645486,0.012622764680108705,-0.006064130248308601,0.0030280983210254657,0.02464253608183489,0.0023135738723880426,0.01261963067237781,-0.003874923415878829,9.11963164281387e-05,0.008063841872655738,0.005227949672808016,0.026534376864382914,-0.04837796760855152,0.00014288389794756936,0.002644727549390908,-0.024523900423388027,0.1483605413695932,0.010252874294469123,7.818435062126302e-05,0.010589264416935928,-0.00882035484925798,0.03794198608576961,-0.041388309700771474,5.842697368282737e-05,0.0003187453308358182,-0.012811972639745203,0.02292818457540863,-0.0037848228291923183,0.000272443046143735,0.00849074622546207,0.0035030940507335974,0.014991123706878658,-0.027137961545135775,5.810747249023138e-05,0.002345983295984916,-0.026463126166010105,0.2564536203140646,0.04811799496648594,2.662340498350199e-05,0.006921800932876187,0.0022173616519401734,0.005910155392248206,-0.011052491432571858,0.00013114344780706106,0.0003761180501377458,0.024153940451362446,0.10409338594611883,0.03502533715109484,0.000365757151698584,0.007876901276311268,-0.02185757966314322,0.10659508844494064,0.012669388570535007,0.00011744557855126963,0.006407330516215363,0.0006187478967693326 +2018-07-10,0.012571081308801075,0.08450043740700276,-0.05932939652979812,0.00015732591355245313,0.006504271244330406,0.033412951609967226,0.1115357151062732,0.0006570115602309482,7.188055343349209e-05,0.02374621075928186,-0.03647183224983255,0.12813580306183525,-0.005822950920322701,0.00013166922856899395,0.021488973865132363,-0.02620137076988763,0.028106881248906635,0.05292520712330249,0.00031461484462557505,0.02287746576116574,-0.019268823056017872,0.05063525231844743,0.00976279743810537,0.0001991131681139891,0.019626709112138364,0.004025402954238269,0.012550632366841098,-0.0013503346070150033,7.00310265336614e-05,0.0047948937312030145,0.0028911304508661803,0.01262203806871881,-0.0024303459905756874,6.720909654326516e-05,0.0016236787796263712,0.010651279741682455,0.09474143857649264,-0.0003731660805367945,3.855319994161999e-05,0.017603802941170532,-0.019142719612385842,0.017680097391540726,-0.0067848228860417055,0.0008349563497068345,0.0007930044975014738,-0.0026528982289597217,0.0059757802846484446,0.0015589295676909404,0.00015523435985088897,0.007167777159086926,0.003117335548984996,0.0022727928486107837,-0.004004394560785284,0.0006704216895061204,0.003483458707308139,-0.003562001265721211,0.045737695099240826,-0.0075381851792753465,2.320826014215646e-05,0.0056025511032760465,0.07460438637454644,0.203339537342194,0.16020897790952862,0.00010899173585284616,0.02250857220398354,0.0060132639888873084,0.031148797098921394,0.0016383534636306713,5.434139822893257e-05,0.001954564404657179,0.005894457969103307,0.005618438673027325,-0.16346409390820976,0.002046214713035998,0.009477122958390071,-0.02772627399097571,0.1818443170562254,0.004265875921737644,0.00012547115193911013,0.0008785758725250136,-0.016913701861163005,0.08089390370274917,-0.02086775791851089,0.00032376590267335636,0.004476021400639027,0.0027078289862975196,0.01694309539793505,-0.2489607850612395,4.5018335428376245e-05,0.006326638144889607,0.012795354195058896,0.07571277590868913,0.00766871530992534,0.00027852869892449646,0.00554311662101752,-0.03873199926540981,0.49080622723414996,0.014977382869389794,3.274839966257267e-05,0.014949702043382024,0.003301798925363974,0.0320027718482489,-0.03286002346771252,3.44702739962687e-05,0.01328256519922033,0.02315359489089669,0.07643884852692051,0.01960193348091929,9.757241402211715e-05,0.011162727972525925,0.007961494228860999,0.05361863314275673,-0.03251669467523796,3.4298191595059705e-05,0.02017618670140677,-0.04463324000195891,0.13110166764957898,0.1645248680847998,7.547925073668521e-05,0.0024772059566245154,0.009888516330090892,0.035238462212649785,0.01230341294729164,0.00012831067300344697,0.00553582585202289,-0.030699364596999602,0.03158664273245715,-0.032896045385854646,0.0005555222777441525,0.014455717805853033,-0.023387846392631986,0.0845434459809289,0.012860226935309436,0.00011643841800026122,0.011187164282622494,-0.049591798866424744,0.16761005944852767,0.017746212055987125,0.001899017454581128,0.0038608710135282706,-0.08981731371690278,0.8527391304755555,0.16447431223555317,2.7084826932405703e-05,0.008295149120056057,-0.005589387575641412,0.015173638985137012,-0.0095436611164689,0.0012043306743288215,0.024947825433740366,-0.013365950432813151,0.09774394338949167,-0.02749128809225847,9.106167472617783e-05,0.0015329695581329788,0.0024602421108632913,0.004054518788622443,-0.027547855094907862,0.00014321348623061328,0.01182860929820215,-0.019364952725278033,0.030089435609150846,0.007670949416218421,0.00036940801428811545,0.004795090128984951,-0.00761444782775924,0.028699411228093615,-0.0325353215447841,0.002056438704988216,0.014475051607198527,-0.010393788247501633,0.04114106852364513,0.007878095648771677,8.105665322131918e-05,0.0047816708762404535,0.008765561353663812,0.013804699689766779,-0.021115166788036033,0.0015784468484930183,0.03057411416038495,0.006066236002299336,0.02149074612954626,0.0033470252086219682,0.00011183657152867922,0.025996053418718485,-0.013294002722225999,0.03439484669955237,-0.01962102393641813,0.00015668331856252975,0.02605228739977988,0.028240982089984577,0.12758788357004425,0.006377547927950623,5.402369527005306e-05,0.0016186661807870344,-0.024343278548179487,0.07973819348249168,0.00019565245998400067,0.002893548287448216,0.006466892859801772,0.0035987857052808157,0.015208124497774958,-0.004145965965357437,0.00011771204326820965,0.015409132470142731,0.012565442117559321,0.07002504887105444,-0.09869270700772469,0.00013013230959594435,0.008010935420837454,0.0074320453243128136,0.042812504826392095,-0.032444788096666864,8.210817711802642e-05,0.008550708534215681,0.019586081727439343,0.10051005890006615,-0.01461643532613891,4.8976238796447616e-05,0.007278800909939003,0.03495558488969645,0.07159648376078594,0.01882258285197769,0.00023804237440064698,0.013099520766444656,0.02490534335564446,0.10073316667001755,0.022890210033993885,6.148007981190035e-05,0.0013310523657524545,0.04218445854167658,0.3983666186746352,0.013194498224761984,2.7321266351906898e-05,0.006814838637136659,0.027273596788924867,0.08708468359380038,0.13580174042899348,0.00010947365091556277,0.0008669452652473352,-0.0017426426702551077,0.006704870980887622,-0.02926185228381052,0.00040968106285630036,0.0008719806436532172,0.036145604983183054,0.17390053613703732,0.02320276527345711,0.00011904917034615693,0.03994277812119339,-0.0008231145367132003 +2018-07-11,-0.016033294569072147,0.10867511368276307,-0.0718715726305411,0.00015601963314498075,0.004252618537950159,0.032658857503158785,0.11462103291225278,-0.00625084874443,6.836710602435831e-05,0.01546063674786877,-0.05866377474568744,0.19350375461702315,0.11383684561033869,0.00014024190831731905,0.028452124102992308,-0.028097681178836556,0.028341931759942516,0.004797413068375787,0.0003345868656754632,0.004918710655217788,0.023873269025079722,0.05113184277252704,0.03267120432915012,0.00024429704823861903,0.0059287753050557244,0.01385087887814349,0.036641947708288346,0.05913035505637012,8.253639970567243e-05,0.0011294807692481424,-0.03495906843999098,0.13066192475656066,0.03211950861323531,7.85056032597633e-05,0.019239997147290428,0.02620800594065813,0.22987862547430687,0.005236042963613837,3.909615081606813e-05,0.003996588873407768,-0.013971422131991752,0.012517681171654905,0.006392624685256041,0.0008607192487813268,0.020941641441676203,0.016872830892706154,0.03859201101541115,-0.07461932900321927,0.00015288061818022187,0.010137952739845428,0.011149363279933155,0.00783821216747754,-0.011613505818161228,0.0006952762741630209,0.013427981872182273,-0.003480874499693365,0.04426864919258065,-0.06680915883115975,2.3432298151431663e-05,0.002600212646704907,-0.0504681928447128,0.10675253210383366,0.07139507892048451,0.000140439930776163,0.024265534104886837,-0.003168458947237953,0.015900046346964403,-0.02208559227982285,5.609336742329205e-05,0.004433219283387504,0.049823601224213435,0.04428578547941729,0.1519981297488854,0.0021942885427744035,0.0009096697456731321,0.020111453959975656,0.1337054170723011,0.03122541114089454,0.00012377888715842583,0.0011370071126716908,-0.0054220032091465776,0.0360726089447255,-0.029516456757801485,0.0002327504066825414,0.0191650387084501,0.006668113669010709,0.02900152653001354,-0.012673634702478053,6.476540600031387e-05,0.0029453947683308924,0.05363996805891835,0.29040821051332655,0.07376710533564029,0.0003044152655799252,0.009168061141543005,-0.013596962359700085,0.198390832647682,0.0008585410560227921,2.8441370929377038e-05,0.002034141525896356,0.010929616872737288,0.10582578026911454,0.011500706366306965,3.450604371955639e-05,0.0024394427584216167,-0.05704059502988539,0.15254755220313473,0.030021489857594508,0.0001204485454597562,0.017690505283140638,0.0242103689985289,0.16336636989699188,0.014613322132218274,3.423190955008017e-05,0.009036606494627362,0.009947350502481455,0.02822975740468995,0.0037048912907471656,7.812277423258967e-05,0.007045483473762848,-0.010955004107312354,0.03977462549832242,0.04040254312219149,0.00012593749226096963,0.006425176121618515,0.030816115029621064,0.02635834891870081,0.00991897511020607,0.0006682442727681727,0.012609437208414623,-0.02355535110519719,0.08776507478070325,0.007807458793091147,0.00011296759001810416,0.006213549298225303,-0.008232762003459217,0.03195065031984144,-0.021931752995347366,0.001653807790226362,0.011505327535848008,-0.012176870089145074,0.11953818808664281,-0.06834528435451048,2.6194565518439372e-05,0.022714305090970097,0.08958008485977483,0.20509911878366072,0.17219757590716475,0.0014279695441898055,0.04352652636273094,-0.018057322007752768,0.13946386882526063,0.005528795873895594,8.622183814641525e-05,0.011362375782031359,-0.007239153818983393,0.009268266371941301,0.0039349379281526185,0.00018434640978151035,0.0025504958553925513,-0.0026720226873483154,0.00355189587934096,-0.008350402955817376,0.00043180118391935733,0.016149013601584866,-0.01815956101946569,0.06435630708241286,0.025902790376569264,0.0021870795095235676,0.006211760664816402,0.033049906818731045,0.1277845861824991,0.022136195890494995,8.298166391810236e-05,0.0019433652651602447,-0.03339212623283163,0.04520550257378985,0.008724960481968812,0.0018362421974864901,0.010527931569880123,0.010619211378981232,0.04097094780908844,-0.00964118519452063,0.00010269097830579993,0.010213314283149253,-0.04481569494857587,0.1085933563125566,0.024520022652650464,0.000167296654114775,0.005490167711468868,0.03647568860625044,0.14821725153230347,0.016623063990834103,6.006461100938208e-05,0.0015830833342306192,-0.006897555758221842,0.02367865054256891,-0.022683955191420618,0.0027609359375042465,0.04339902992635781,0.017717526183986955,0.08167340950385049,-0.032126545859660294,0.00010791031694771424,0.004412906148328372,-0.0038631896769719446,0.02009336472803697,-0.017282620515925468,0.00013942933268094849,0.0025168621198673542,-0.02275335213564529,0.12821088971675668,0.01073735613298653,8.394004019941201e-05,0.00137688604129002,0.06725555867955342,0.30631079956429813,0.04702587368801498,5.5184011889910686e-05,0.0038503316526359308,-0.005375646272481249,0.010167855403803222,-0.009841460548915472,0.00025776901746609555,0.016490604341265945,-0.012814380780345084,0.05660864736785179,0.018263707010347904,5.628973745515512e-05,0.0057249296821961825,-0.0009134659826027659,0.010201800289092846,-0.004687811893540856,2.3101854638332863e-05,0.003242387668904668,-0.03276371205587886,0.12629159540652707,0.11796578788450683,9.068336254405298e-05,0.008016056810303306,0.004634424017798207,0.02055689451214113,-0.005703793215746812,0.00035535810873195644,0.0021424926018730325,-0.04564696112594652,0.20964561679027258,-0.02311052479163321,0.00012470902379013523,0.006446120264547179,0.0007209857188822973 +2018-07-12,-0.0038695263263085772,0.025128217328070607,-0.0012730227523699953,0.00016284810534137952,0.00806928507712547,-0.01039591608826941,0.029379715638934458,-0.004273125566906071,8.490352156432231e-05,0.030988916665077203,-0.018718329442473144,0.05837442971937977,-0.0019478307250406347,0.00014833431837019134,0.02253751273147588,0.01768373833359485,0.01799398331413785,-0.009116489178190244,0.00033167643967107037,0.009412823237340232,0.017954571919511348,0.045113939149351134,-0.011010883651314094,0.00020823900397185546,0.01087585117840088,-0.0084517333098647,0.022679401054907827,0.002477427442028433,8.13693681229799e-05,0.003330547718425991,-0.02273192020557509,0.0795394956827107,-0.008983355872300496,8.385773831191056e-05,0.009023441791984173,0.028957725633345408,0.2395607477809493,-0.01083142357355976,4.145218267878855e-05,0.015694652310336177,-0.002931469957558835,0.0024690765382453716,-0.0034372225380256863,0.0009155787020875019,0.013481485144144033,0.001511683796952598,0.003535107816464747,-0.0024902540433262878,0.00014952719303748974,0.007707047687056186,0.01250826415174171,0.010130491547830377,-0.053080231510264766,0.0006035189121268182,0.020820616713215796,-0.007043066122197606,0.08940609930245708,-0.07703242984039549,2.3475638198696033e-05,0.004982833794250228,-0.012912454863781673,0.0323867264586066,-0.04904052930497855,0.00011843847343476433,0.0023666462869273344,0.01641470615652093,0.09068302465549419,-0.15535930644899915,5.095290314291492e-05,0.004157831903429146,-0.02400653750825679,0.01898513304706522,0.06423267248687732,0.0024662599666005853,0.0017679302861052949,-0.052411361192962476,0.34848905365858335,0.006505737162627177,0.0001237623097012165,0.03799227967961745,-0.06752078821958928,0.35624463044106475,0.05336749405564809,0.0002934927707846161,0.017808948196123733,-0.06536263462581574,0.3385465462560315,0.3800648659088992,5.43841215267718e-05,0.015313813488886847,-0.0476300529759536,0.26428182266766137,0.05268519685914765,0.00029703018017102203,0.014780357905062005,-0.007647191911454952,0.10053596263923638,-0.001975109722849548,3.156536240168995e-05,0.022800550313556718,-0.0005409369623278646,0.005219261454098617,-0.15191266579124002,3.462735457020975e-05,0.0008276361985682347,-0.046263057912270915,0.14075732510098798,0.006327448624913916,0.00010587321133998766,0.005757625884397273,0.0457438251315648,0.3095615187697337,0.047054416003404306,3.4133269140929195e-05,0.006984922285137973,0.016101441902256472,0.04786557126558253,-0.012505925516736646,7.457940344364961e-05,0.008261122339541186,0.010374784421083546,0.037491297195948785,0.018490839395934017,0.00012653107843657078,0.0008011265694234466,-0.046777708218418895,0.047269527666748495,0.031082386020099717,0.0005656310467124683,0.014411399547349928,-0.021009261238060902,0.07991049158226521,0.007318910684817444,0.00011066059170534606,0.003707553431692,0.05138982015428411,0.1647885572604855,0.017647512625591957,0.002001562800854127,0.0056892891419265245,-0.06534442937200614,0.6295109779015919,0.06522771438862897,2.6692389713534892e-05,0.04642117020198328,0.0010627548681749273,0.0031955072274713744,-0.0033742573470975368,0.0010873380068466391,0.008259935233774367,-0.000636736797803947,0.005083502636670432,-0.09068982860109011,8.341084849979858e-05,0.015630966786275825,0.03222893717542982,0.04976035972209171,0.04205086615305051,0.00015286492899037758,0.005264854258497805,-0.03916345433395956,0.06648414088933902,0.0708325311573233,0.0003381168727672576,0.005714259483179756,0.040532294092894376,0.18820087935755087,0.030072130427132058,0.0016692826442201228,0.005171679575126554,-0.008397614851746978,0.02961330615839136,-0.007346579380274962,9.09828268004793e-05,0.012386064298547795,-0.009779944128558683,0.012460788491981647,-0.00013431322081977845,0.0019510483908894807,0.0012287221782641582,-0.006316068762790313,0.02486742179797909,-0.0021361487372652975,0.00010063107802328814,0.007817584557376729,0.057598481142655575,0.15863117671171395,0.05081802191483086,0.00014719154422952272,0.0012025601824061742,0.0024037678721080744,0.009725613675345088,-0.0029590895612686702,6.032390355438289e-05,0.013490964168043301,0.012335549720376244,0.0399310350639019,0.0045019143089690536,0.002927965790582644,0.04830928299320831,0.019459965241993313,0.08503059200444417,-0.05021406468487858,0.0001138432874000038,0.002567877100006911,-0.01768275602319264,0.10196193171742055,-0.0029979338857614875,0.00012576873259072114,0.0029712056295784317,-0.043839230280671,0.2370110305087355,0.0681305547984386,8.748690652492054e-05,0.02100147058497507,-0.005519096381845014,0.030010308081993235,-0.03252762176683788,4.6221594095715294e-05,0.01656099452674662,0.028457438472362637,0.05113009001951182,-0.04760173405162057,0.0002713617568333075,0.019413335224044523,0.008746192178315723,0.038765328813033136,-0.008411732203937644,5.6103495370165706e-05,0.014044173942755613,0.00882820461971017,0.10013144258473647,-0.015416475139873192,2.274747534959641e-05,0.0006214220858974792,-0.0286848992213029,0.10475325925119891,0.08258708012367207,9.571824972663734e-05,0.004078372896382054,-0.045212514496867334,0.15625595098908016,-0.03697699203922264,0.000456089491006499,0.006699647672514086,-0.007239439312337324,0.038593351215855255,-0.009696011851314941,0.0001074395637022366,0.034089324298243184,-0.007021476844243764 +2018-07-13,0.004849999678935035,0.026820855281417085,0.0018453075230656913,0.00019122984409222318,0.005905715361834726,-0.001428628032371159,0.0054057944681299794,-0.01547008760874216,6.341181218042329e-05,0.0019285635368264862,0.01492024411153788,0.051488126924620035,0.0013911445984651086,0.00013404975983044186,0.0023771713002972168,-0.014192645223642966,0.016550241074846962,0.013374618599316315,0.0002894188935428816,0.00351561063071621,-0.03419743889401007,0.07380579139621196,0.04733867236358504,0.00024243812307823102,0.003658994812470429,0.038436813272762674,0.09354180510531322,0.24710393342710585,8.971981457772363e-05,0.0008257319652545168,0.004455478512253037,0.017197082926937723,-0.014570826275504947,7.60202727062068e-05,0.03084027936511543,-0.014803091521804307,0.11709273164154325,0.008554906081121229,4.3353194181848366e-05,0.027583336064891124,0.023585603968029004,0.017392253300961582,0.018428742912785418,0.0010457694163488044,0.006854395749021516,-0.02572695849695048,0.053904263770783084,0.013254456029988797,0.00016688880829963487,0.013592708624875676,0.008135347665036614,0.006585615977984578,-0.001054613992739163,0.0006038152440466152,0.0028080746205075145,0.0027621481700599985,0.034317912050025566,-0.016974321863171157,2.3985507075420347e-05,0.002936380710698302,0.002148632848608411,0.006114558613865465,-0.01785981258921291,0.00010438741339628455,0.0001062489082988725,-0.016667487689072495,0.09272333535280554,0.03666137757838926,5.0599114439337416e-05,0.006905276327702985,0.022339460980691853,0.01929792407227823,0.004194446399629584,0.002257797923253764,0.012676618329324173,-0.0038150513190271605,0.027324359761250187,-0.006216640461416586,0.00011489536187991715,0.0047821854298233995,0.029293646627501363,0.1802208430297453,-0.15749691000374377,0.0002516961968372773,0.020153646674859152,-0.012227936503545834,0.06411562950995471,-0.022769768161128533,5.372175849947818e-05,0.008460748180283471,0.006358376225236091,0.032875474026949535,-0.0005664956820687853,0.00031875793554370286,0.022155601897690565,-0.01728419783060463,0.24055582482227622,-0.003908281061656399,2.9816975081919468e-05,0.02706597752145267,0.011019078655217823,0.09277915011896799,0.013938099659233441,3.968045123940015e-05,0.01265220182184223,0.03182028803811659,0.07980671162796389,0.03515493636739931,0.0001284361994708813,0.0057597341557025315,-0.031295485004346084,0.23227287221878976,0.011520070205661133,3.112257858538193e-05,0.026208452784918936,0.015199440885169588,0.05054004266149246,0.007788962639965003,6.667597740520085e-05,0.003052417604355971,0.009819806459025065,0.04221801049530969,0.015298142376247468,0.00010635398331589615,0.007577211586653864,0.06407446270041459,0.04852229597468181,-0.008343765352635354,0.0007547779284744559,0.02884624084542767,0.008800045350642454,0.03668943562832739,0.0026970825475238457,0.00010095547768024581,0.00041148480440342,-0.07481892245628408,0.2596153377049659,-0.057882218520223426,0.0018496956597136838,0.0299128356678214,-0.01294593671782885,0.11467813432029571,-0.0018293833261905145,2.902919924363433e-05,0.0031798154688708656,0.057180009247010014,0.17376860864909346,0.04782333419580496,0.0010758312798351936,0.005558610948560905,0.026484497888904283,0.20305362181953968,0.037866971953282424,8.685736432870991e-05,0.00026197138241152037,0.02052946878715027,0.02517399264712048,0.01468686456071014,0.0001924735236697401,0.0027055307217557127,0.034023088178259046,0.0468627683694796,0.08511961350253705,0.00041672514274712283,0.01832833446803427,-0.021795422341907577,0.07724559546214108,0.011902255730369913,0.002186965363140657,0.011177371387242048,0.017146792801636345,0.06644847138115652,-0.04418410453131641,8.279198127889033e-05,0.0068009119512448014,0.022338797706481575,0.03388246814377648,0.016603852165366133,0.0016389358249256159,0.005342045453507709,-0.022905763304461004,0.06831490443447924,-0.0499328152888748,0.00013284503880787126,7.936697202263923e-05,0.04702815267108152,0.13102124497278303,0.02776998078021335,0.00014550454985102218,0.024044579064380452,-0.05137522802599543,0.25737602810339494,0.0625904971044136,4.871913771461368e-05,0.006456386517450641,0.0050687991312719834,0.017027519729898164,-0.0005925702375985423,0.0028214460275955274,0.01829383532046212,-0.004427641900942368,0.019926013295052846,-0.009618054916135703,0.00011053317465256393,0.007355379076490534,0.015460730499786534,0.07900770099129278,0.015912826947454762,0.0001419127348850354,0.005460291009534688,-0.015167650847541667,0.07817561956805205,-0.01874510992203046,9.176893459346929e-05,0.01490453924922774,-0.01329235056225994,0.060149732825627855,-0.0015825440978636815,5.554122814584926e-05,0.004755560334624295,0.007384121707589709,0.014964627338713893,-0.08901291867032793,0.00024058155863418765,0.01348547939365081,-0.021515621675236667,0.07571074181187053,0.05644517298036064,7.06660430481125e-05,0.007236865596168626,-0.012724033393850075,0.17777827433405805,-0.045198599909864835,1.8466194239455614e-05,0.007157509129837464,0.005531795221170327,0.01781803668890255,0.0037646683599150917,0.00010852135568938817,0.0053086903863495075,-0.014383558881581647,0.06114565242454508,0.015148288025729241,0.0003707906234524021,0.0027708451656465287,-0.005337535119192267,0.028055439768265866,-0.005011146458490688,0.00010896711705141475,0.015961381166478137,0.0012074551632982812 +2018-07-16,0.019300067590000327,0.12917488059155957,-0.03540530146428445,0.00015800373204161413,0.010995086299504069,-0.001684452104821013,0.006003296457051975,-0.03557309483032274,6.732547142528977e-05,0.024841364340051537,-0.03235006050223729,0.09855236891369136,0.02222271867380737,0.00015184665655345022,0.015333272707886886,0.03630095604942623,0.03381154011820837,0.04907488839465388,0.0003623439096773827,0.005775699727993823,0.006340394977896849,0.015496415192857698,-0.008565794015065829,0.00021408332522040687,0.011964816054325294,0.004647531535296806,0.013706777769566712,0.004565507675226174,7.403442600108738e-05,0.006550523682637974,0.03566962695175841,0.11553367975301293,0.01774628330975248,9.05899075955733e-05,0.03762456870098054,-0.02053076589863545,0.16361921150684014,0.005853546923798442,4.3029814122804176e-05,0.009555509392841959,-0.026166117839024224,0.021234599368501392,0.03798111307909935,0.00095025465976291,0.003726566796477166,0.010511367045409156,0.018305902912909705,-0.004737852292659114,0.00020078438426584388,0.007014062705122377,-0.056274717562592,0.03779893069054323,0.32047482585970943,0.0007277097071810348,0.004198800775803643,0.0023162204637154943,0.029245025869061594,-0.07410878585418289,2.360210150720824e-05,0.001102353818007823,-0.056682815955219096,0.15471998730011377,0.08627457342091932,0.00010883185566225264,0.024038725211449147,-0.004185137345989512,0.019220240739493917,0.0036249115471412648,6.129325853001838e-05,0.001196978579009597,-0.01211201352668357,0.012412046677970056,0.016658883458052044,0.001903250355485309,0.006378818325494616,-0.1164785741403632,0.7011796967607871,0.22631681486986632,0.00013670009650310985,0.015973522177020236,0.010065183525466766,0.05375787216019495,-0.0002620251046951304,0.00028992646466790103,0.0031175456020962403,0.08012353403535008,0.5868666366031866,0.22846185728494836,3.84575516557829e-05,0.010684349955264575,-0.0023040852550454665,0.01269042306665961,-0.008863405536282749,0.0002992328379676598,0.012156527058369733,0.010185109617541092,0.14316644212179397,0.0035259136064350466,2.9522607076975678e-05,0.022299857394897635,0.004313099773546915,0.040920521604422666,-0.001815066866760316,3.521519136850203e-05,0.0033679274056491585,0.007176670823389746,0.02007344866799633,-0.07241760629125482,0.0001151658694573419,0.0005546629151486969,0.06588379156102281,0.489425678726566,0.05336565963444487,3.1094545185681516e-05,0.008965061906978523,0.01479980739161136,0.042834365600556645,-0.0282990577756804,7.660217599423397e-05,0.013895186999522427,0.019148970454647044,0.09637396781836441,0.06421344353625626,9.085195663947624e-05,0.0026661155562042733,-0.0024381941894129028,0.0020866533891879075,-0.07147637826077272,0.0006678724642241071,0.0230324920280842,0.0149323427832729,0.04724642128908164,-0.01252555001025536,0.00013302860651253091,0.008085598725008806,-0.04079227551341576,0.1477227105425264,-0.011963144235156339,0.0017723514261450844,0.02252092042163409,0.030219907560683244,0.2760729209579076,0.040488248856993675,2.814825758166805e-05,0.017182941921428753,-0.009807475968244286,0.025767827045935044,0.002180977491798348,0.0012443734189436983,0.028841735781208567,-0.008877605575266163,0.0640674948810176,-0.011302655817688086,9.227493461748828e-05,0.006218877083793424,-0.0018291588655505464,0.002425154946517614,-0.03705007642703142,0.0001780152961443263,0.007403243939607185,0.004794073214439676,0.005855083627488969,0.0029185536362911187,0.0004699757759746732,0.003919259664323372,0.002228173135694381,0.009714642409917587,0.00028953046548806354,0.0017777572393274097,0.0002463422598302863,-0.009155286465868703,0.03351891068441959,-0.0016021185643065679,8.763395493903049e-05,0.0027105413756479887,0.05902842890149983,0.08413813265368404,0.03495195635366168,0.0017439962504616632,0.034362075040731174,0.014965742815772783,0.061051955941049715,-0.0065426544088455245,9.712135480931349e-05,0.008336994604412371,-0.00666285149464487,0.014028968012574486,-0.008003766894872096,0.00019252839247637944,0.007510687282007154,0.022099264733073106,0.10400183534753273,0.009178975687986137,5.1862177356583615e-05,0.00418715254874069,0.022773890867409656,0.07829354098103392,-0.05778782019711825,0.002756952970727515,0.03223541170214191,0.01151333152188888,0.06044837524411566,-0.02271035370424966,9.474514148822625e-05,0.01862752476951674,0.008988039642934566,0.051379680773684586,-0.007151361965812642,0.00012686282030561217,0.0037099148085465174,-0.008842500820823995,0.056707720286997595,-0.041252788067594935,7.37533275047415e-05,0.004076794554172348,0.025101961277309078,0.1269541734906125,-0.04578108812610694,4.9694470527750845e-05,0.01443931948363431,-0.0142894162584864,0.02223236633826,0.0030200501522178597,0.00031337055857660656,0.007213232050635742,-0.012437304182194985,0.055957085905541874,0.010868877831339628,5.526950085868364e-05,0.00808977666564496,0.026810145670096687,0.2885575108085343,0.024078586467164192,2.3971658172951613e-05,0.0003845446297849279,0.009854142697184674,0.029700336283025843,0.007034071118007241,0.00011597555108818099,0.007802112534605782,0.002561207843994942,0.012313041002588506,-0.009734322857408693,0.000327874369509327,0.0032575452453892442,-0.015984310326490482,0.08054766113496327,0.008245742471690128,0.00011366133801366252,0.021260833385304618,0.0030821654581346214 +2018-07-17,-0.00883013193828132,0.0578844791016937,-0.05695624046206615,0.0001613212755372318,0.008932898854893047,0.022587485422422768,0.08329541662131636,0.004492948495027757,6.506647916473825e-05,0.0009724690152846302,0.0022683332394388815,0.008587694382455057,-0.038584781386985186,0.00012218769745872353,0.007991568383102412,0.023845588085078383,0.02554972826280971,-0.01914801540002372,0.0003149848083534335,0.0015452757818479163,-0.01723634062751628,0.03997604521802362,-0.027448347639178704,0.00022560203496320354,0.02020182379549096,-0.018121307761575035,0.05286443224075453,0.01675000589731981,7.484670805862706e-05,0.0015079096378573789,-0.046158522286256734,0.14149672552636422,0.07843848418958808,9.571838500934113e-05,0.00430368976438467,0.025000582800412778,0.1702187425499853,-0.02872881522453302,5.036645324786353e-05,0.008555904985601343,0.000182115615746963,0.00016006462222592133,0.000649611952688064,0.000877397957781845,0.0012535932693307733,-0.004841938354897335,0.010882822858433295,-0.058663119493162434,0.00015557491850894513,0.018665417863425158,0.020168836668462208,0.015809911108160987,0.0055967345776348236,0.000623556454664265,0.015211930714628102,0.001732154796645455,0.022855286609308616,-0.017346484060580987,2.258514163509444e-05,0.004591561387659917,0.01683780880368137,0.044623429113605936,0.002400481695849007,0.00011209175547774673,0.007466880806172116,-0.01277553335753446,0.05776052932758646,0.008810300067482221,6.226008282149606e-05,0.0007282702961030251,0.006916214008683304,0.006214619478836636,-0.02034496548981047,0.0021705852817627803,0.0005074642055381317,0.012271459912764635,0.08292778723225487,0.006415941505167167,0.00012177223119410376,0.010162797232209475,-0.013779455069969443,0.0873189021616955,-0.029047343304512672,0.00024436106439879317,0.0023715830914291334,0.0017898761061524925,0.010822869880875309,-0.0023896246415633137,4.658450545649435e-05,0.0007700018382634995,0.003983129797640067,0.026739516924146032,-0.14821586800744901,0.0002455035120718784,0.010433793846989031,0.01067842357710686,0.13334995391265853,-0.008517237763734002,3.323108376880965e-05,0.008921837882803933,0.001541567964992674,0.018727319690455914,-0.04802530333768164,2.7502283940421348e-05,0.008135274000271711,0.003916717717951437,0.010695362256397825,-0.019770111338029358,0.00011796401060835957,0.0064663804540065,0.006746724534327291,0.05012972424109895,0.0006224975893672595,3.108780355606266e-05,0.009844932429983957,0.016184530070487656,0.05153911976144561,0.005548729647111439,6.962103562860139e-05,0.020067822753058094,0.00895693276979602,0.03694638489932835,-0.04008247195575373,0.00011085006694666703,0.002269461552984171,0.0009400582921632232,0.0009612531908472398,0.0007305448520842455,0.0005589752149019518,0.005902936300190541,-0.04753195656158689,0.17720869775125225,0.048906863180870196,0.00011289810869129117,0.01688856105980729,-0.010476250849117076,0.030835853050848037,0.0008241253497087568,0.002180565297244298,0.00046467261462338426,0.08838837558179141,1.010602044308678,0.19571488982768526,2.249039977741181e-05,0.0002874126917589777,0.03646730628083399,0.08776226623966321,0.016837464279584023,0.001358523405453483,0.026138666791150695,-0.00016378296903643298,0.0012018544726576299,-0.07066317209189085,9.074913599783128e-05,0.013773802325952355,-0.01631941043379664,0.02482436522531762,0.02107797163614416,0.00015515711626056758,0.006978692118046288,-0.006665881036473229,0.009199855662110425,-0.005595358902054094,0.0004158918969214575,0.01106241490978649,0.016040960736494716,0.04880785942770041,-0.020411112377600408,0.002547363699890101,0.005494883147203082,0.030213739887866155,0.11595510656540971,0.01780084445102733,8.359974968436642e-05,0.023764109266610822,-0.04989313898188881,0.061376573116614354,0.025839266562617376,0.002020763009172283,0.000632387637404969,-0.02091469045007627,0.0704035225715286,-0.007255393337801001,0.00011769908549913627,0.012940183731431257,0.0038947736707645297,0.008636436532112744,-0.006310506485935112,0.00018281339575660673,0.005966900840058835,0.03447453027211816,0.14540575335683895,-0.01116931865796471,5.786696320306809e-05,0.005781375327861096,0.04652324796573626,0.15964962005488778,0.02504835216840812,0.002761977876263011,0.009666436156992995,-0.026145291973672033,0.1321496462898421,0.04906511646640238,9.841653301290951e-05,0.001650801638630946,-0.046187635063293105,0.2680182517684904,0.140774606890061,0.00012497471069397633,0.004929659824145283,-0.020982422146859588,0.11551656274188604,-0.049317576521969796,8.591323282019374e-05,0.005595848320701193,-0.024486263720661747,0.10197509238870249,0.01652814975493568,6.03497965063793e-05,0.003089531115888713,0.033440312488589585,0.06266215479274802,-0.00933623782198961,0.0002601922736302214,0.0055499585303484655,0.008302435756637317,0.03604471095020109,-0.005272782331203212,5.727674805100416e-05,0.014800558388945718,-0.007991715853514027,0.07495975649593344,0.001968429908336879,2.7506995251058633e-05,0.007825976193106121,0.021864336923685623,0.06961593546893012,-0.009716236184375442,0.0001097833836908183,0.0065372256760073974,-0.0002976270614280753,0.0011138005024271206,-0.001150996474426123,0.00042120447624515003,0.007247667535335928,-0.010659230083870418,0.051813687944882496,-0.01680983771434282,0.00011782925385249595,0.017650553202231054,0.001926420493295983 +2018-07-18,0.012364959842614508,0.0947659617118257,-0.025807496432547924,0.00013798342472524867,0.00752297730064613,0.044804248721228686,0.159683051731049,0.01039772477169244,6.732415359667491e-05,0.01054728754697353,-0.04410397302196319,0.1307895856853388,0.047374346372607165,0.00015599179455443838,0.021444944776016165,0.02826021706862341,0.025082257884201258,0.025382472669828113,0.00038025656516741226,0.019926499465806526,-0.01787882847732417,0.042572578190408356,-0.01449196320911647,0.0002197388657546968,0.00704379937616395,0.018609290657498192,0.05755676367942057,-0.021802234964804854,7.059601597018225e-05,0.0007252798102736021,-0.03735506504797298,0.16692313527222805,0.037001694229992665,6.566331721197972e-05,0.013276262514848508,0.010765147890732527,0.1106946928485088,-0.0012372189375720343,3.334969108550353e-05,0.0324503539374593,-0.021733224952045826,0.018406273455015453,0.005344673089771881,0.0009105485182646041,0.0039961659623988875,0.02101126453609999,0.045370754465512926,0.0052522740170715745,0.00016193401199761663,0.0012121422106370345,0.0037397739511762186,0.002410460979856238,-0.004350935902956577,0.000758349849540071,0.008455397833781329,-0.001855677676158771,0.02978916662465589,-0.060503728131173606,1.8563804195080576e-05,0.0014034831454014616,0.02902837432246911,0.07643340376377768,0.012630506390040598,0.00011282115782798273,0.012151470613878654,-0.015051089272892849,0.0717241070616223,0.04142897525073056,5.9069677515441454e-05,0.00698403033413968,0.01742554819831104,0.016490765301703028,-0.04790945284769056,0.0020609554847934243,0.00422305110765771,-0.016378169273208194,0.13815725147071156,-6.264125306611857e-05,9.755370731012275e-05,0.004046321894606103,-0.019944798431648557,0.10708555118888977,-0.07556436069129678,0.00028840780354912683,0.004124013502701286,-0.03061616064463928,0.22540872586871305,0.022634987199782,3.825964709802686e-05,0.015692627581792858,0.026408277456372965,0.14569341514081444,0.013011713771098285,0.0002987355848930628,0.01309555548026475,-0.034624529588327436,0.430569291671277,0.010964203651167551,3.3371141343523714e-05,0.008496334688122796,-0.017180707345417625,0.19294359973702524,0.03456993624522093,2.975037007041402e-05,0.001798987286218186,-0.012304078539382769,0.03325590179178884,-0.04450134377690226,0.00011917992875842617,0.008243786186187414,0.0057545889378715276,0.042632290732996354,-0.0013114109239474251,3.117941867210352e-05,0.028140211758312647,0.0004938446388784662,0.0013097484413908858,-0.0040861844370933265,8.359491017956938e-05,0.009296963658318076,0.020351872752517427,0.07131388589403102,0.025579504027703905,0.00013049049314775913,0.0012825100745683467,-0.0002139020054592229,0.0002262337303179195,-0.057505420751221094,0.0005404220507965567,0.004945939296658397,-0.00607359783120886,0.02508555624806916,-0.001530849153252965,0.00010190800620992965,0.006386710564270447,-0.013949495859511865,0.04536318148007928,0.00031786269560672904,0.0019736683712545827,0.005440335542397045,0.02051000793668017,0.16853144303339704,0.009841420603769805,3.129443278382453e-05,0.03256948628641238,-0.010118246618595499,0.027213172932486665,0.0017498940669569047,0.0012156186343848963,0.049596295804408254,0.013015103091934021,0.1058381974403401,0.00038476537126394143,8.188999056385711e-05,0.0037389571048910206,0.005943424760673888,0.009910507932881073,-0.14302767607704242,0.00014154229791296422,0.015449327188894604,-0.009928441938807694,0.013837500690829601,-0.027273458561298234,0.00041183889374511913,0.02283268702106982,0.040435228688095765,0.17454764831820352,0.011682846642023825,0.0017955447891599636,0.009429328826661646,0.018990283381302094,0.07694012433744751,-0.10648354724461667,7.918974274501842e-05,0.019493598278655933,0.040742289301827245,0.05751350126132812,0.030492799659434546,0.001760973469614258,0.027364649047164298,0.029756222260088148,0.11393842726215012,-0.15667459865549627,0.00010347218260554905,0.000982817619691274,-0.003554504156413334,0.008399622233496403,0.00024672396549397623,0.0001715456255979672,0.0005280702547804236,-0.032443937039090015,0.14888991188526435,0.01851271281624579,5.31841474798257e-05,0.0048545667027841775,0.014933536164907616,0.04261429000863817,0.006277670586848654,0.0033214327139651878,0.001482765745754216,-0.013753062657983052,0.0628996190145456,0.0093004777426043,0.00010876570454664429,0.006333206708828154,-0.015756994043611063,0.0734794230268712,-0.1601524451658372,0.00015551361530343215,0.0026764770015053328,0.03488957628441276,0.1501734664994619,0.10550816457430873,0.00010988823252072616,0.00020592640618263933,-0.027161324654570534,0.12404771624300465,0.02836307045320594,5.503127416172969e-05,0.009771819984676923,0.013834231302929201,0.02568325542780646,-0.032612580258418226,0.00026262396612756556,0.003394855713044422,0.016111079772794554,0.060651872811931365,0.0170237565471872,6.605334390053053e-05,0.0030322249072829944,-0.0033927095782012003,0.03128454952392496,0.007608435416453759,2.798002283099382e-05,0.010746451482974867,0.0020751923918773054,0.00621732193457938,0.0007763266500275538,0.00011667128341073815,0.0033614490185566613,-0.006949532569245084,0.026171983520626673,-0.1281984064521684,0.0004185495962693042,0.009918403547938808,-0.06560950301840801,0.3346471785956546,0.030563905810667348,0.00011229266172054137,0.034084226841240156,0.000643268959422201 +2018-07-19,-0.005867100221869222,0.04591715346456719,-0.08341252516769894,0.00013512482165274576,0.0008580103846265717,0.010647872874671465,0.03235372267884225,-0.10647693477145338,7.8967633888959e-05,0.03266678919042816,-0.007482445319459275,0.024968753826831305,-0.009943010414686659,0.00013862574358604454,0.004112312716620286,0.015855312151457964,0.01595425201273421,0.004315657884311704,0.00033540243023302114,0.02035368819456401,0.04575703600440741,0.08863851977782275,0.09775600626721449,0.0002701053347444637,0.014942171681822505,-0.01782847531902685,0.05076116689021005,0.02378313377736811,7.668834173481913e-05,0.008192865507592927,0.024024979680012985,0.092024119610281,-0.014248662991317329,7.660395861116314e-05,0.011130227110833448,0.013960113782741639,0.11842664558595245,-0.020270309405004776,4.042389381159134e-05,0.014748299275701194,-0.00984310219875292,0.008732758004383211,-0.052701742998754755,0.0008692112836251619,0.0043155808918579185,-0.007327572909210983,0.01684789994830815,-0.009047554879482833,0.00015208145538075376,0.016272938773474133,-0.0231378556922176,0.020241598679124156,0.03465433275733618,0.0005587308563915359,0.006377202969958159,6.098521586425845e-05,0.0007394808294474598,-0.05680741268284767,2.4576522699704063e-05,0.007662062479666122,-0.04457807505068996,0.12622225225317954,0.0339050994269818,0.00010491471945424037,0.011848703770999123,-0.014604498103682698,0.07612884347941096,-0.006550935563993712,5.400067926643742e-05,0.00961749290354904,0.00939966219805296,0.007758772598347404,0.0001832333658822105,0.002362882879529099,0.02268795426928342,-0.008688873262264904,0.06061033209977426,-0.03559860840645329,0.00011796927399629934,0.025598398936523343,-0.018927851584154352,0.10785164036009431,-0.019462260490631975,0.00027175828866696976,0.00018879379087065242,-0.00099726238417182,0.005679308487195407,0.0004501656774859619,4.9462371491376616e-05,0.0004705893728568799,0.04292992128728916,0.21290411423388433,0.05556065655529484,0.0003323248716309534,0.007123662816054705,0.07566670828129361,1.126076762360117,0.06914266462106484,2.7884770604405952e-05,0.050049201945248534,-0.012895342390879933,0.11388675397370121,0.014127257246977947,3.783043822097151e-05,0.016621735670331213,-0.024782007213916313,0.0605691335850978,0.018509128177887326,0.00013179771277676856,0.003956863389768984,-0.026755814992424052,0.17713259207574358,0.0030546196891317544,3.489089279794199e-05,0.015471256625206762,0.006198272444286271,0.016465061915610035,-0.031964242530118626,8.346120982468485e-05,0.003686733312431997,-0.008417841446705024,0.03640305903725666,0.021052968238292006,0.00010573321965336848,0.010479483700490972,0.018310539448916464,0.016479707595892536,-0.01538092518050993,0.000635078191023981,0.014261503205865469,0.0043576586660237,0.01469140827611561,-0.06497313024766668,0.00012484633283803742,0.0012307204877132142,0.016866143369788165,0.06420555626831469,0.0030255629452193445,0.001686018553379481,0.033511060346998016,0.002006828552452967,0.019348435093264,-0.006266354465700897,2.667144968670358e-05,0.005508420328591094,-0.006394823816871819,0.016556527467174943,-0.020345205809994237,0.0012627884459503488,0.000257091005909026,-0.02261945542050301,0.17739094179072867,-0.12056396221013328,8.491342303879649e-05,0.015095334275248633,-0.004621439062352636,0.006545939902793584,-0.16279252250333437,0.00016662900589714741,0.003284613041576751,-0.02083998951609094,0.028353318598339748,-0.016073576237142315,0.0004218883296320619,0.0037212131777709157,-0.02981522049891284,0.11773532917188187,0.06088192405485402,0.0019628249253199476,0.004881692772488913,0.014075954036363162,0.047591374567425127,-0.0026510304254460516,9.489426402035231e-05,0.011897285785115678,-0.01318688971972936,0.018964525094490384,-0.0034827488098068448,0.0017285326783014637,0.006821795047587649,-0.06594685832199919,0.20874895303551352,0.1863107480737172,0.0001251658466288156,0.012640923799499246,0.0029329023264295247,0.006945698291060268,-0.001198055971310795,0.00017117567998147063,0.03172747260535967,0.024443587398095077,0.11115411830591178,0.0008884987247943609,5.36726837178993e-05,0.0021488901302242416,-0.0795084323553423,0.2658512286432266,-0.008553635488174794,0.0028346051829032043,0.006476180609177817,0.048226778437682236,0.24307364610529616,0.1451513495914951,9.869404457788216e-05,0.008977676086299307,-0.01982723257424318,0.11161971717378762,0.01920802914023451,0.00012881960630983167,0.0031782381585461635,0.015163078741666546,0.10576544361955784,0.032394984772267855,6.780977348914064e-05,0.0049270441527959055,-0.008501168324148137,0.0420628605180297,-0.032735835184243355,5.079573003188774e-05,0.017456542635297473,0.013562024966754056,0.025270505618575828,-0.03386858680399082,0.0002616616057047754,0.005587720419693372,0.003806701988154323,0.01573017926282156,-0.010944166480843166,6.017686833784164e-05,0.010413003827735069,0.006034995898685872,0.06585774836610758,-0.043848104184371586,2.364293489805179e-05,0.0009784078462708983,-0.007912819985706195,0.025472103857233815,0.00485656624024802,0.00010858639961142893,0.006939931409504422,0.00937955420514267,0.03526806736180588,0.017319497729608398,0.00041920698155253417,0.0001782522636045122,0.025407512310259926,0.12483249653456047,0.015798451106018328,0.00011657523096500239,0.011940876463697826,-0.0019449186778007224 +2018-07-20,-0.0024316082394163093,0.0142828201314273,-0.0244054640946554,0.00018003884709883957,0.0038936894759518167,0.056944255092861516,0.16546834085839784,0.03447074036608408,8.257441972866074e-05,0.006450193418547464,-0.03439595634467938,0.11522774414431038,0.010983565717642686,0.0001380853273857805,0.01799579456679988,-0.01600698895656223,0.013793465485090403,0.021963558579522608,0.0003916553912638995,0.0021361690122476875,0.0032208097225075666,0.006976590072519044,-0.09143328564402316,0.0002415570044013529,0.01656152989384838,0.004856068384491627,0.012734929955032993,-0.007252983668997369,8.325972520725542e-05,0.0018164414765306565,-0.04129250886410879,0.19121958249797782,-0.017483587085203162,6.336198294436568e-05,0.01965938499364107,-0.015726621546723923,0.1438225472497182,-0.04650414844151646,3.749791100571857e-05,0.01669632182728682,0.015579561989552073,0.013475100030298753,-0.0024619174837618375,0.0008915958377901073,0.005067519033322844,-0.012554646662620083,0.027824372683211744,-0.021243556634458434,0.00015777602096120964,0.004388952852949747,0.003714549621969646,0.002478081294078775,0.0006928134274570629,0.0007326810737711107,0.00224698542476894,0.02042370214915644,0.34234225290645315,0.15623573792750997,1.7778567023473593e-05,0.007654039900532515,-0.002451393179602864,0.008531940067652807,-0.0008315546966786927,8.535249389909796e-05,0.0057814527263600245,-0.009037043339604933,0.052717711225835934,-0.05430191723512761,4.8253812971237754e-05,0.011540421387722868,0.012082257070359693,0.009386399910540655,-0.0076241999266420815,0.00251056801116182,0.010608381232848515,0.04700220011204297,0.3329384592919077,0.06399593722393605,0.00011617330092395093,0.009757808062301442,-0.013364223919442718,0.07674985932705011,-0.05441639851011825,0.00026963383422309097,0.004202905736062536,-0.019125678025765036,0.1148434378718802,-0.010274103006770677,4.691066738136622e-05,0.02154865861864989,0.009214275895390953,0.052689048576062034,-0.0011708385556049657,0.0002882223553048522,0.018043440299446954,-0.04349038485434934,0.6364332621009507,-0.052168728367573775,2.8357674477841365e-05,0.042517963147582306,0.0027113495920878224,0.02973338796140365,-0.0967261551472956,3.0466518513972955e-05,0.0013971810556456274,-0.004226468378391638,0.011249201981061179,-0.003915036293304805,0.00012102599592937892,0.00380160617089584,-0.050565479365747706,0.31629108401330275,-0.0334821464579844,3.692832039551603e-05,0.002068870979615868,0.010695632972604369,0.031018365537722654,-0.025013472717405647,7.64477951061377e-05,0.000865311911743397,-0.011330684404436778,0.04388013671302822,0.04546825697493362,0.00011806923975776121,0.005751676454269307,-0.03118084451110879,0.024202095252517986,0.005180764470488916,0.0007363943862497194,0.02194094272342578,-0.025594925782853713,0.10520876004635361,0.011361784034684104,0.00010239717647396566,0.003553426345592517,-0.08270396857701179,0.30014195742800953,0.05637561239790764,0.0017685559918208748,0.003356350437985321,0.025068577789890523,0.25172138177636505,0.009387757740608347,2.5608950704827535e-05,0.014377704592798414,-0.031898097934909414,0.09421359210384048,0.016198253911442684,0.0011069359552087594,0.03335877375740872,-0.023058138506297485,0.17946348472961673,-0.06616690478887836,8.556059389136892e-05,0.0019392594847957537,-0.011090469140549375,0.015592801684417294,0.002691547618179967,0.00016786924942440473,0.007980883920288827,-0.003020715876743706,0.0045021598778379615,-0.015063678810531432,0.0003851171674532793,0.008566777787769105,-0.017908144905545126,0.0720004073409706,-0.0025075615430375986,0.0019278178074377949,0.0026117345047488453,0.04074738455913228,0.17285390007140158,0.035395165718657556,7.563293006422222e-05,0.010134066245307652,0.03005875469981169,0.03987175140765511,-0.057536055264112936,0.0018740572901442488,0.0029249958476944317,-0.016151171831884317,0.05188498012749154,-0.018576049750084866,0.00012333275117404747,0.005925233624226161,-0.015558004403780721,0.03707411867567893,0.0075066876061903615,0.00017011532154497446,0.016199672964728642,-0.031039339650138997,0.11747036831358215,0.011642659355878514,6.449084506872397e-05,0.018028114239947924,-0.026532882257223955,0.0976051286977576,-0.027057681346165076,0.002576498235157356,0.021439659125231224,0.07254203415380259,0.3958963737251179,0.22341609281979127,9.11483426749364e-05,0.0071851775119445484,0.010838000199755393,0.06180022437713123,-0.028052476721167396,0.00012718031233270764,0.006781553440672385,-0.0009646520435592559,0.004941260413269346,-0.03749638223895712,9.233825112509115e-05,0.004612474866222011,-0.038210912231038216,0.21081479905115194,0.03868306099754939,4.5554754035932846e-05,0.029362805353271768,-0.032636526433670855,0.061008552780310865,0.05976778667411884,0.00026082102714653806,0.005810709534006145,0.012816271223692891,0.04770650415570006,-0.0067425831369813,6.680338543381874e-05,0.001982418851268422,0.004001440449394752,0.05170386565474039,-0.00693984745822149,1.996754302887682e-05,0.0015433600895213631,-0.012983339283854334,0.03791512213710288,-0.008166393932004396,0.00011969690239237271,0.002904573015598679,-0.0026412257643952234,0.011189325170124999,-0.015330334215468125,0.00037207423799886954,0.0022815707218553174,0.06780786574149215,0.35232728112142614,0.0838141080424212,0.00011023146991983767,0.013014778242353541,-0.005524243476590095 +2018-07-23,0.019508346231411327,0.14722733205548116,0.021326623763929783,0.00014012595856446717,0.011278390599229651,0.02589174121202732,0.0935516378574102,-0.011302502089700373,6.640799816522756e-05,0.009822283387430915,-0.0028873655496078096,0.01031723970292882,-0.008937202329554396,0.00012945995573512974,0.0002813104458167135,-0.0290227184126045,0.02708052515911753,0.024741098031354585,0.00036170029448496924,0.005126548468799665,-0.0051100072461610435,0.010157392561871733,-9.675506234432532e-05,0.0002632310104865543,0.005226435087589875,-0.013185012379416503,0.04245846790091895,0.012646330846506891,6.780519401264448e-05,0.013853506690704029,-0.03592245031619781,0.12394262051446366,0.03558233666710285,8.504232672486788e-05,0.003491869620071188,0.015131593157102653,0.10744546995118222,-0.10661971770637778,4.8294220496904686e-05,0.005152107080612882,-0.01483787307425852,0.011457433694089213,-0.005966426080512936,0.000998686285070021,0.010786565261859254,-0.014650535958593482,0.0407528915590085,-0.009642327613014435,0.0001257062787398461,0.013944971339273264,0.005517904060760062,0.0040387510615172316,-0.0016367633330277936,0.0006678076938103798,7.008341293201787e-05,0.0038587597775087364,0.05771115616831844,-0.05780485253826801,1.9925570163087838e-05,0.00042499234850369694,0.006074219180904129,0.017606278788640746,-0.012436706478499164,0.00010248821335122804,0.010935035715397133,0.002115428739045536,0.01149159963729114,0.001280962178525001,5.181789081027491e-05,0.0015902057516260797,0.010013741356421227,0.0082962799245087,-0.015575382758147786,0.002354159832265588,0.010756069917887582,-0.02900609932897925,0.19663814769301352,-0.0013542124427020428,0.00012138741500891374,0.014092585875392107,0.015937436852311054,0.08598855649158055,0.014607306946190888,0.00028700274500667594,0.020117637860286076,0.006150441595678872,0.031651160398740906,-0.02381923427111341,5.4736574865803e-05,0.008243438177065816,-0.052043679336307554,0.262219863136741,0.10262347027864083,0.0003271065295519294,0.0074002668601714835,0.020114568038757847,0.24847491862151858,-0.01007998645689782,3.359374217282739e-05,0.008866973495858682,0.009688308209221121,0.09909158373132392,-0.018832317396666024,3.2665768944798514e-05,0.005524821323174587,-0.02193584080325416,0.05559190851704225,0.006770337979902746,0.00012710582605348733,0.014662313459229609,-0.05384304411865032,0.4216032144007547,-0.11264154500567233,2.9499731849086927e-05,0.023035552672680773,0.011456266617664001,0.03492039259195458,-0.007551745145436475,7.273465395442295e-05,0.009107823493263858,0.002290447016487556,0.008525496862266878,-0.028677586276476756,0.00012284264153147328,0.002916401446927853,-0.0018530980794515318,0.001968951836461406,-0.05135979263989148,0.0005379462378107338,0.01974611102085111,0.01701644182589878,0.06553928683460826,0.024222171758675207,0.00010928311135083897,0.004285842769248501,0.021722803771196293,0.07838354023645513,0.0036261778362167776,0.0017787306108030467,0.013866311949116042,-0.01819862261992669,0.1628546284186904,-0.021398553029913347,2.873562242473806e-05,0.02809076260782714,0.0549038644415907,0.1524734229386878,0.04199558476624645,0.0011772807242251264,0.020356672941889892,-0.022126822661336157,0.18890502498389086,-0.043555267461347316,7.800118271071818e-05,0.002229064602575103,-0.010441381614612694,0.020466213057171095,0.009160278660692897,0.00012041091709269425,0.0059076650991577795,-0.006584788944315078,0.009274808793001505,-0.0008892846601596274,0.00040751238125729576,0.0034212115838762806,-0.006221852180047766,0.027476589019227962,0.004298716060467677,0.0017551216045565128,0.003281999764680925,-0.02714173482421267,0.11275761347767592,0.057579570968159306,7.722929993664841e-05,0.0010848592698596282,-0.030463419578355824,0.04750765631703346,0.0037337561760165364,0.001594014390932671,0.002002777446419992,-0.02566513768725433,0.07374768936930001,0.0037214347205735167,0.00013788315659213641,0.010688192815759164,-0.0025976307099206297,0.007538765591567408,-0.003320146632403404,0.00013968106781599344,0.012828857678042116,0.021160111660518344,0.08723555826283948,0.0022221635340853234,5.920226675821947e-05,0.010793677734842801,0.07190711943130368,0.2520504690877808,0.08932220135772735,0.0027039735518773907,0.009906006873793014,-0.01151742746152922,0.05713915985351241,-0.002107078645611785,0.00010026796619885926,0.014353370015470329,-0.009175532822992724,0.0453655990814215,0.002500988094222705,0.0001466781511555969,0.006770581442880093,-0.0038220962651173986,0.02159469554904505,0.0003068512990686059,8.371499090142097e-05,0.00129268307354525,-0.04166688017678627,0.1662120505089227,0.03230683179453798,6.300512409891384e-05,0.012858945810808911,-0.012918155321316231,0.02362830042893956,-0.014219824384608438,0.0002665614927942181,0.018586271528886374,-0.014157087141698067,0.05117361033212194,-0.01791489529806987,6.879267912934109e-05,0.005464880282015246,-0.039566190754930064,0.361766141089213,0.12417560122351959,2.8218089629663764e-05,0.007363444559922227,0.02126869356540633,0.06896811999518114,0.037690724652132704,0.00010779568854617962,0.010702003454697016,-0.007382662035061385,0.030375673304072485,-0.01753869721885267,0.00038310255229381113,0.0013779207625048814,-0.018298405557261862,0.08197111061484923,-0.003934809041695514,0.00012785691623634065,0.007467055311206311,-0.0045046939292191545 +2018-07-24,-0.04588052536601206,0.3504516163464418,0.13451743591519374,0.00013844806771939417,0.004888996121285177,-0.006725278614155767,0.024353713964023246,0.01762562703668626,6.626063699170144e-05,0.008067595565148074,-0.01535739512012223,0.05789045091222772,0.0012705126920482801,0.00012271787610017572,0.008393896215629434,0.026632243680097586,0.02732129755172151,-0.09800819708094438,0.000328983632079744,0.016163179287972493,0.002262472633655517,0.003819231766446958,0.0003385524202934324,0.00030995960099747916,0.004906068063620179,-0.019327389326477474,0.05435169208430532,-0.010976483496865974,7.764381492903307e-05,0.004528586806501728,0.03610838189390288,0.1424609282185851,0.03108374809453795,7.437074166816545e-05,0.03127650691176805,-0.026017971910884157,0.2219388311309535,0.02578071719292404,4.020117626897199e-05,0.0012812247547354918,-0.004831548259373983,0.004859081895721647,-0.036628330793685805,0.0007667907930946339,0.0174660381931919,-0.024078631788846706,0.07461939629119232,-0.051388763761088446,0.00011283451353611698,0.00902165564967143,-0.02682102280009576,0.019832157542148076,-0.012497047015662144,0.0006610430291796394,0.0030437847940481804,0.00756210240530169,0.10727032586379001,0.00976665825218957,2.1008050066056186e-05,0.0004444598748717484,0.018696108120897722,0.05555578672571214,-0.04380690068291231,9.997074919598815e-05,0.006580157133338784,-0.004967515369936869,0.02771203969177957,-0.00682982089391906,5.045829197797306e-05,0.0035994147488463617,-0.00592863094196803,0.005823833752539671,-0.011947468825196168,0.0019854932720964834,0.008817864811302352,-0.02733049825253527,0.1913470394638808,0.00044953751191260656,0.00011753789532777725,0.005256962499568145,-0.005804407930103556,0.038503874602269915,-0.0007375326574882429,0.000233432716709691,0.0033296008028522173,0.006635998932453396,0.044011544552742844,0.001101874114200994,4.247179864665114e-05,0.04352940724955405,-0.013201584399287777,0.06509225269828174,0.00830950516242632,0.0003342593483972474,0.011271820723047513,0.010554180503222124,0.15575763818166927,-0.02586423041027267,2.811935764761011e-05,0.008190795470482395,0.018868885009070628,0.20939659913606565,0.026926720141859862,3.0106365027216586e-05,0.008954561838151551,-0.007357904991801336,0.02222074263233644,0.0010144747540124343,0.00010666412186627264,0.008601511470569732,0.06902342956956686,0.5338512406946817,0.10407516609901504,2.986542188139812e-05,0.001286593311603503,-0.003813042841242449,0.010484998335318735,-0.02566415743750236,8.062703723067683e-05,0.010107402372431632,-0.014449095005325019,0.05587305222275889,0.05117195243833502,0.00011824610543528575,0.006509255948341684,0.07417444203615042,0.06093967331181107,0.07771805250205155,0.0006957123739229764,0.014573283729951167,-0.04412594884454489,0.1612550509110103,0.049041860454126035,0.00011517725916036869,0.02254246262269517,-0.008920528691962443,0.027892156885590724,9.312541618116867e-05,0.002052710339155183,0.02300784944513943,0.01949752185072919,0.15787733232533352,0.009588185636480994,3.1757172755431794e-05,0.03271910157347899,-0.01276857564097463,0.03820420536654381,-0.04951648812831655,0.001092704049150838,0.01509912575846467,0.012248661426534626,0.09101804264679744,-0.06212255958334729,8.961625306202555e-05,0.00571363526258904,0.0033840122349674475,0.005462417837735188,-0.02510189302375626,0.00014621515642314285,0.0010803404729298211,-0.0019310020106485916,0.00259323267639178,-0.00030532499475244924,0.0004274104678848317,0.0013938673926577466,-0.012902037258632395,0.039199199617135784,-0.009664644607419929,0.0025511232063647727,0.0010577033110173812,0.04603585196734219,0.19091522155875512,-0.15313543743353758,7.736526179355838e-05,0.004022871823767097,-0.026665678542605657,0.039727757138611444,-0.031756150445799255,0.0016685367779535518,0.0062089430312634595,-0.027074651541983012,0.08525819139109245,0.014182856093261963,0.00012581800562064716,0.003463040173919911,-0.041096006981154634,0.10754556294220566,-0.07665731454560316,0.0001549057380867199,0.0006163335143119489,-0.0241507404832985,0.09478897876228717,-0.032678498727635084,6.218512789784668e-05,0.017493607174881184,-0.028937560751417107,0.07929572333482758,-0.04822011733887893,0.003458837930989672,0.005329713502773185,0.058945722690078035,0.2488216898002726,0.10213630678652723,0.00011784322850544204,0.011749113794564663,0.014654478065195377,0.08553905239139699,0.02550412194850353,0.00012424150534618434,0.003880065112964666,0.03001371794059949,0.19052105536344766,0.0638209396964404,7.451187929131857e-05,0.0076729411569371134,0.010380550089827011,0.04812098965153816,-0.015322292531057605,5.4216716601109734e-05,0.00016788182991953277,-0.0007268295084615056,0.0013010203714512634,-0.015561887832257815,0.0002723816510953254,0.0022485200029269616,0.014276608028902264,0.05155703847782026,0.006611502087842949,6.885753142777106e-05,0.00020575256368790757,-0.01757615833555542,0.17891143059074074,-0.013131638803553851,2.5346450719263592e-05,0.024742415101816823,0.0038559403206474513,0.012412677609081752,-0.0004688355783822991,0.00010858598929021192,0.0037272924206225395,0.012158345639133109,0.04266137805029529,0.011497408898758874,0.0004492287848287985,0.006492292136897224,-0.025440695100471554,0.09508315183611439,0.012968102822924418,0.00015324884135926297,0.030773761755047653,-0.0012409172781636764 +2018-07-25,-0.029743120732636137,0.20546901961092415,0.03622305463060502,0.00015308293112189833,0.004879801728994007,0.02391848682400659,0.09045701682283183,-0.05626910061546821,6.344566686803565e-05,0.0007938849687995319,-0.03567279593969277,0.14050258437234736,0.00031989243527775823,0.00011744919417338715,0.0018243291125716135,-0.026203952179611717,0.02956182323883546,0.04102509276072281,0.00029915994082937774,0.012628946545550721,0.021499548418123862,0.04825327236370876,0.03214123355031234,0.00023313116788662794,0.010712823341394647,0.013946771231070628,0.03529813968648114,0.020212319066506265,8.627174840037715e-05,0.014297904356729778,-0.007139517900314018,0.027599094763843264,-0.007699859740409604,7.590386740351361e-05,0.0032464438353590115,0.005849355750195313,0.06220736314490399,-0.06132467199849402,3.2245183821965435e-05,0.008789854244921015,0.002085943921061618,0.0015180244757504562,-0.07040553211379053,0.0010596651248277794,0.0014415837687567884,-0.014050083959547465,0.04104403847023119,0.0013041989722240434,0.00011969905448091223,0.00663085560393261,-0.010796817264358913,0.007793391275227184,-0.018751920900472206,0.0006771636360536648,0.00939742294158973,0.006189694452957926,0.07476131673033812,0.0068501951716376935,2.4672608003956884e-05,0.0024073922251718924,0.0861955547867398,0.24369873035725026,0.14546846854006595,0.00010507094555629844,0.020671531931802063,0.003023691351569499,0.01491580024328554,-0.061484152047156335,5.706275262215248e-05,0.00028063288696164644,0.020549325819430562,0.018079003063046658,0.012997018043431272,0.0022168998417135414,0.01261857523700462,-0.05767989592015632,0.38268911138242817,0.02500864435013659,0.00012403106430158148,0.0010088672807788712,0.010052877774052666,0.052841588595024254,0.0023249721128924357,0.00029459323445718707,0.004660652998230704,-0.0018461886248290758,0.010518602886103364,-5.801545890584783e-05,4.94400575328188e-05,0.005463029483642584,0.09869053857754168,0.47530429969509413,0.20204798000125737,0.00034220833517462334,0.04508128484011443,0.011630287578103487,0.16895404751092394,-0.04077758230579142,2.8566174477145202e-05,0.013008479465933752,0.009544500822657119,0.11424134588425171,-0.03985269075040359,2.7913327937700922e-05,0.015525534282718969,0.06257928551700533,0.1906491448057249,0.0945343829877611,0.00010573493306667032,0.013433885326776194,0.055342211761570226,0.3419460839748303,0.058639624782179475,3.7384472185424814e-05,0.022267999040042702,-0.015072910720969215,0.04709381084878118,0.00922877688168903,7.095952079244996e-05,0.002502891258857779,0.02765468508995875,0.09265716910357788,0.05723603799950946,0.00013647034381603242,0.006994162989714072,0.028332619013280325,0.02466973664337948,-0.010600053271593659,0.0006564441309854667,0.027114633570271,-0.013519063019548902,0.06193480818350393,-0.022276413889339916,9.18750957511603e-05,0.014524000065231251,0.015477799850556995,0.05682539760022686,-0.039800016603160446,0.0017481790762441036,0.012448736606093004,0.010688047030145075,0.09232426025380139,-0.016029742934993475,2.9769032133729982e-05,0.0014438739154288701,-0.011085671631991433,0.037167722983721285,0.0014067619462652906,0.000975140792482242,0.012756876294822642,0.015491387073321192,0.12681126453751734,0.026276138349649647,8.135010456141114e-05,0.007196725814393446,-0.009232187193386077,0.015034781588841395,-0.07432075238151593,0.0001449281887277966,0.0028603737689102938,0.016665906683803102,0.02373206243919341,-0.00016567381158614215,0.00040308568704358106,0.015773880570080594,0.038507024210868025,0.15902413627017076,0.04008591101178847,0.001876840013123161,0.021402206093772087,0.03441077841457011,0.13503536744298406,0.014615889519321022,8.175933245569413e-05,0.002948363698898749,0.0015817629491459858,0.0018550545074643337,-0.007378140032868994,0.002119639066139627,0.021584208418914213,0.03754558447015029,0.11425701644459062,0.10054850696262997,0.00013019431668374686,0.002617416600064729,-0.02076452591214001,0.043537551619910894,-0.020477919693815707,0.0001933385217192354,0.0070494924702389225,-0.001156719557938073,0.005368210348661182,-0.0036756000717131287,5.2591127146839415e-05,1.0663517541604573e-05,0.05521234436760976,0.165270282502907,0.04509997152567511,0.0031663540655867597,0.01491831117851408,-0.04294555944604352,0.2082365911557918,0.06277265360757031,0.00010258923458739037,0.01738463992331031,0.04803188047835687,0.24623177242944203,0.1352255096852923,0.0001414641137154224,0.01868422788694932,0.019475749158527945,0.11934647366442425,0.032561960521099824,7.718506596426355e-05,0.0038948485237561056,-0.0010044188521437989,0.00427422628577806,-0.005288841313516923,5.906153629626891e-05,0.022428109026699325,-0.0028690684335386514,0.005444009728592059,-0.036614571290179095,0.00025695164873397344,0.003936349006495235,0.0006705174418222043,0.0029549701846821657,-0.0001681917429935859,5.6424971973951954e-05,0.0008568916698233372,0.023177847735952918,0.26158804680244,0.007706709980629928,2.2860540577131305e-05,0.002517739307160943,-0.0003968387748238555,0.001103799440291689,-0.00013100861687646455,0.00012567037041845506,0.001976486520566858,0.0006697911491929746,0.0027845605180088166,-0.006809930860443257,0.00037914969786014067,4.1486431748286295e-05,-0.015802435630240735,0.07994098186189515,-0.01607007036299153,0.00011322083352969492,0.025883221409374733,0.009519279428998285 +2018-07-26,-0.0340454152900913,0.23639452453347984,0.005267804228361898,0.0001523027717183935,0.003665896591293953,0.04919476591846138,0.14542623018302456,0.03450081547537657,8.116834272801256e-05,0.007931050843318811,-0.02000807049273013,0.07199406557269819,0.0014953319640071668,0.00012855995568798194,0.010394705135456348,0.02821283310940597,0.03175964750281557,0.024366909925645594,0.0002998050076164346,0.005045719013810878,-0.016907984466463983,0.03280887949118229,-0.050752190845701574,0.00026964862751856797,0.01705386379210259,-0.003581639281669354,0.00973541048493213,-0.0014466136163383697,8.032936177593981e-05,0.0016971149768463213,-0.009575734329725914,0.03146828466554515,-0.006981113315443851,8.928713205857538e-05,0.017408395573927187,0.0026317974790185258,0.02187666002838485,-0.004863349188594014,4.125437987646106e-05,0.015187028536175968,0.011667898731037114,0.0077803857339647205,-0.007777572023917623,0.0011564751597300932,0.004481157682306914,0.012433185793822816,0.031294529867824654,-0.005574018594418816,0.00013892355183262462,0.014402998589660222,-0.018795051854010293,0.015909945215905753,0.012197021801185303,0.0005774298120791343,0.0012875737189103297,-0.001515644540911923,0.02048713405839963,-0.010318168199378974,2.2046463807667608e-05,0.0018261761631314117,-0.023720537218737195,0.0715711918414321,-0.004812166988445472,9.845489404057614e-05,0.009066309447763562,0.002519056762872581,0.013341272689343958,-0.006215018379860778,5.3149907255016484e-05,0.0013558930661908834,0.02183107131549904,0.020522038352151134,-0.003029633326145259,0.002074806147124448,0.006769359680690935,0.001948230169661497,0.012534862643940305,0.004573506394232024,0.0001279006621400908,0.016888357327857734,0.0028160801084250965,0.016249258518888192,-0.023999649242603942,0.00026836117743351683,7.850587943181793e-05,0.031058182327976257,0.1847566648709682,0.02808573734329694,4.73518419257972e-05,0.019907873090638153,-0.031432553404820214,0.18893457712573983,0.029492256930142104,0.0002741921542137405,0.012902905105330296,-0.09775791546210316,1.3352827387654695,0.12387724616295374,3.038148017358756e-05,0.007759895474522174,0.011722897661859565,0.11909606379432103,-0.10881765177954922,3.288662262456318e-05,0.004843985757879423,0.006278736421677735,0.020742804385641824,-0.025832652704822334,9.75051457930501e-05,0.018831839894979958,0.024275166949044892,0.17287930977877508,-0.06063949224129211,3.24348266772755e-05,0.023404024744230076,-0.022718730891760207,0.08601257894164421,0.0602198961819351,5.8559785884865986e-05,0.002834824581047113,0.014536945981769078,0.05880318248121103,0.00808630921626307,0.00011303708284482998,0.008348898216789517,-0.016302557857199154,0.017257245905757414,0.007074755198625815,0.0005399578059477706,0.026462674382916235,0.015486644509835485,0.05325212476543629,0.0012801890353764248,0.00012240704042231038,0.026959887866836334,-0.042213722450987416,0.1534791798987162,-0.04044989121736472,0.0017653196489404127,0.023186132842136407,0.03678936979182439,0.350584953209922,0.016309086004624496,2.6984307114502745e-05,0.028255343680686558,0.01196842939900097,0.03497579343518411,-0.008305685251758456,0.001118770114621525,0.02366709928100337,0.0018788286015748127,0.011993347043630424,0.0003809021161807653,0.00010432115946969225,0.004250594557072322,-0.012242371546051197,0.02547550195257318,0.007831375088240099,0.00011341962115329222,0.01043131717915773,0.01448996736588039,0.019001594799207766,-0.11961192077980415,0.000437704758895624,0.010355770724570732,-0.01358801618802554,0.06483743187544451,0.011400736339694769,0.001624353662771414,0.005323732366579953,0.026010630015845623,0.08733942166050154,-0.013278501520473733,9.55500525362948e-05,0.007574327148305252,0.017883559377321223,0.024849902859378464,-0.04760879030473935,0.0017889840041561418,0.002767975959966423,0.022637267313533122,0.07166575891774801,0.028983243674814026,0.0001251492731142239,0.008992121345856795,0.04150423158864776,0.09970822596793785,0.04118479621854229,0.00016874144528681215,0.001939158144248317,-0.0014265280361390618,0.0052631279960511715,-0.0029182293059908733,6.615311585416968e-05,0.004741128941946112,-0.010729320770053064,0.03493427884284482,-0.007158679545428829,0.0029109751962235766,0.0032061497558340275,-0.022987528978605808,0.1336165374897166,0.0024193565798579387,8.558007191273972e-05,0.009326023959468258,0.01170748017401517,0.0662498463111716,-0.01560063007577454,0.00012815611700651947,0.018694002165474552,0.010965751893182768,0.05341574042560364,0.0038092065557000657,9.70996940374453e-05,0.005092134360689402,0.008645401238552172,0.0397956823757156,-0.02978009731571251,5.460049662741386e-05,0.020516103134893004,-0.03371438930607678,0.07335256139082234,-0.08125079140488337,0.00022409357649496784,0.004015902078857969,-0.04182580994276001,0.1608828719706581,0.1803225039815585,6.464708176738624e-05,0.010392727727948015,-0.01422460482905728,0.16625715928936094,-0.051902192195234204,2.2074513446200906e-05,0.01566160166439952,0.027386837669296116,0.08294252990829999,0.057224663925097556,0.0001154180078783889,0.007834206103243578,-0.007036051296104917,0.02608455881453214,0.0023252932197585147,0.00042518063118650057,0.009844494990171839,0.03766463107512517,0.15217754000540104,0.01970846652145195,0.00014176040801899153,0.002835451877732507,-0.0001971540628173313 +2018-07-27,-0.05376996012433458,0.4049457488967281,0.002991195970841182,0.0001404201569770149,0.006156779685910915,0.05761843696050491,0.1735129810786108,-0.04138625336553567,7.967829423129898e-05,0.006582714265362671,-0.028121519603013848,0.08840584547011902,0.0074941259024434975,0.00014714821817515543,0.0002665609530985481,0.012065371270524976,0.012004707727306154,-0.008491783816711528,0.00033920086861656757,0.010488702540109193,-0.012746242409861297,0.030824022317642,-0.05736347545212582,0.000216366806731032,0.007961207923620496,0.024899361727741893,0.0664854339984287,0.054845198570441685,8.177272044543934e-05,0.009898274923264687,0.043489836248041994,0.1830801585195936,0.01730431244386866,6.97005729103226e-05,0.008353375114396535,0.002795867999060893,0.0236327626694772,-0.0873535747112739,4.0569605454340076e-05,0.005519249497712641,-0.009698544977342013,0.007920088171947953,-0.03766461287544414,0.0009443247108361285,0.005254208154005912,-0.02035217385474775,0.041976766833561,-0.12762160032079467,0.00016953669212963312,0.008579199773597956,-0.016509884824089605,0.010810454661224544,0.015234821817349945,0.0007464907697554857,0.013078616940322205,0.007004506721630685,0.07676836179988215,-0.0014180874980117774,2.7190555028418227e-05,0.005748375449666889,0.017493006934576262,0.046086588796133546,-0.013239023620498927,0.0001127563326381913,0.009403925164333663,-0.0309711733720737,0.1608863348445118,0.146419234156674,5.418765031378153e-05,0.0020991666856507883,-0.008172701657587806,0.007016575851733424,0.011180791321752575,0.0022717649436392972,0.001370094262065027,-0.0025553338648950544,0.01815040745988719,-0.011167075365861865,0.00011585462593359798,0.021344373535081396,-0.021737567048245775,0.14193064148654558,-0.01744606458056061,0.00023716085142721659,0.020362419424047762,-0.04140955609141851,0.2479384648234894,0.05428466933902412,4.7045449573728e-05,0.023363607612373754,0.004467831082402343,0.026578655785593538,-0.009212616931641387,0.0002770451424361416,0.017630348037306277,-0.006731969134552381,0.0948236356898249,-3.963412266622347e-05,2.9461560364049655e-05,0.029653151356693754,0.015292975983788667,0.14242567485105848,0.022676234408635077,3.587446471411932e-05,7.829347050065613e-05,-0.019110543528287807,0.05151276184645825,0.012795360132694753,0.0001195035921245401,0.002523780219378881,-0.042135699584538486,0.27920867382045456,0.0024890003146571587,3.485890005895424e-05,0.033180168640283704,-0.005613988064303067,0.018049476561215458,0.003868753963555694,6.895793623165581e-05,0.0033117130868170483,-0.007180378465867474,0.027857449946498913,0.017627946830680183,0.00011785678029835386,0.011531885970008465,-0.03308263181888989,0.027438158561491635,-0.05403296695810841,0.0006891609349552215,0.046991112205494526,-0.0050927195716844054,0.018257473954324584,-0.00878218991245222,0.00011740729490769612,0.012097256302508012,-0.06175339001353694,0.2355102573983949,0.03317369547429437,0.0016829458838409504,0.016778428374650517,-0.00028083055812994545,0.0025494950089186555,-0.0008795113424732168,2.8325161339947625e-05,0.003671276752011592,-0.06073983163646387,0.1740665645062092,0.033081980318896406,0.0011408524927529722,0.020450882993729567,-0.01930910947760028,0.14170229594439943,0.027757218505663192,9.074255453599013e-05,0.005034108636874938,0.0038806485006742924,0.005905451658054784,0.00501002478756281,0.00015509456347670468,0.002504286002860242,-0.00489716900425686,0.006827509743381145,-0.01230703070565133,0.0004117055080225929,0.00036140818504288544,-0.022821410322451028,0.0910827811396867,0.023868429211979493,0.0019420326974167947,0.003963193891426207,0.004668926596336612,0.01684019536764548,0.005606184500961718,8.895293679734831e-05,0.0159667716174944,-0.04037306173676424,0.0559620508751044,0.01615882071028045,0.0017933921139527804,0.030073027850950982,0.0286183293973924,0.11366274538940219,0.025893594980592443,9.975672271065509e-05,0.01224700370165555,0.05209873007068064,0.15357363366935797,0.05934448888411194,0.00013752157997227272,0.013813873658439241,-0.010121915433934042,0.046514049336753405,-0.005338994605483962,5.3111978570374066e-05,0.008628665876907502,-0.03916073395766282,0.11610255015539532,0.008562160748960925,0.0031968857943841696,0.0014896560973236999,0.033460945931191886,0.17686733858540984,-0.04816417558733949,9.410899684312081e-05,0.017700446373007137,-0.016316867773777066,0.07959105977246075,0.011901607626281736,0.00014867340606665943,0.012281435452257917,0.029456878314194516,0.16805819080403733,0.04740458221314568,8.290404779024724e-05,0.006142121576235655,0.015872196329422068,0.07400858629275103,-0.043069524273657324,5.390168147052347e-05,0.0003004899215747663,0.009753001635080666,0.015817873712373462,0.0013942872229638164,0.0003006211883494233,0.010216372779475902,0.017674469916808686,0.08036221595521828,0.019507994450708888,5.469011916768012e-05,0.0037780337543783966,-0.019247385539267838,0.1938120389000672,-0.0066433594150332375,2.562254595662636e-05,0.001506284018560952,-0.0016662030158974583,0.004831618204661413,0.0008262628444688732,0.00012054363175961426,0.0004281873365082755,0.020686619891519684,0.09847452174277571,0.03581200955870343,0.0003311262609906749,0.002659748484616805,0.018846584719212855,0.08928104234889024,-0.05154524479373313,0.00012090526271973579,0.0007720334908555952,-0.0049579749616380335 +2018-07-30,-0.015421498454663533,0.10940399057665075,0.0045230786688675246,0.00014906647960293126,0.007053934012359554,0.03423900450621669,0.1165678970365897,0.005612906015708731,7.047785765122816e-05,0.013865404101002085,-0.03931444733651853,0.1442993872750887,-0.14974784983092446,0.00012603317947007685,0.00594442601031984,-0.0010934271173464718,0.0011311865664041364,-0.0026972551239458436,0.00032622967067080485,0.01068139786347301,0.016196817244888924,0.03221522591075991,0.0017343161449069754,0.00026306693993788773,0.005971333995663414,-0.014457294810336495,0.04521687264070701,-0.006507825736257602,6.9812510419535e-05,0.0028264735182593273,-0.033946275496449324,0.1465391270307709,0.02441092137068892,6.797173986876316e-05,0.005304725990470258,0.018531331951489587,0.14913664499952348,-0.04075714226416567,4.261091707513513e-05,0.006445378832613999,0.021240383559654033,0.01915750695870036,0.05050368656571183,0.0008550040061520932,0.011938161208697885,-0.03216514071312236,0.07414055318718937,0.024205531574931664,0.00015170207456728345,0.0023631533036060927,0.010142227332467908,0.007756246233281448,-0.02319231879813003,0.0006391548828965,0.001788435616948097,0.0008212042232173618,0.012471302786306501,-0.05715879386135802,1.962285253446866e-05,0.0019319679568556884,-0.003936517442019104,0.008997348800006764,-0.06926189563730276,0.00012997165851838416,0.014988974038902512,0.0016480241888288736,0.009105924867769448,-0.0017866443339776786,5.094497311930399e-05,0.007126498386783296,-0.01902478871533036,0.014922274738921272,0.03908021096211392,0.002486610614689837,0.0027754801286412082,0.028369847902884673,0.18520874186347214,-0.023476985035813396,0.0001260513884199405,0.004884745374599446,-0.05814520711686744,0.30379920064204247,-0.007751300058353041,0.00029637087813724896,0.0023230478221433534,0.011709058505483916,0.06462635895668083,-0.0070085417702559615,5.103560218287621e-05,0.00029475009193974107,0.02182545999136683,0.11800825628331987,-0.0019493443864063197,0.00030481604226414137,0.011373061263713447,-0.006439872714596285,0.08999834397041015,-0.0024623007000501773,2.9694293485013643e-05,0.020708892459999014,-0.0016139487320643703,0.017302800148294335,-0.02872558225762534,3.116413324071477e-05,0.005780964669542893,-0.01705735016005017,0.050475814915844706,-0.01621343895315842,0.0001088556515295205,0.017857367846565164,-0.0037289384629981765,0.027484730672250005,-0.03186431575209035,3.133907018008745e-05,0.01919195615610364,-0.018192569289454966,0.05537200525924096,0.03168529534064418,7.28418837558647e-05,0.009053638358617402,-0.010456100407304554,0.03905524676213772,0.025589727068428787,0.00012241621700127229,0.01023949972025134,-0.055675471638210156,0.05360195259417694,-0.0058259703398017195,0.0005936887997175218,0.02915106471082055,-0.022347268777535186,0.09213829359552256,-0.013657569045790064,0.00010208696594629132,0.008000576088787527,-0.024838041838543292,0.07889807942260224,-0.009742746723178616,0.002020552305872585,0.03728702104552464,0.012254984368783617,0.11556171978662523,0.0024698389240200166,2.7269737696806472e-05,0.020193294431140464,5.5639407400751806e-05,0.0001654262377285432,-0.05441394451736495,0.0010996370721692767,0.0005444760474833246,0.006004414977063736,0.04362591381779779,0.0016039699870057191,9.165408069254198e-05,0.0023984482524562686,0.016586635641860744,0.025133757495556585,0.0464579565943219,0.000155756532584802,0.006493392110953988,0.009683284249159069,0.01561257926416216,0.015077464246900507,0.0003560015903851887,0.0029741328499831494,-0.03276122735718864,0.13894545314148782,0.011726728728661295,0.0018275369452875724,0.004015942229271505,0.02696605599104289,0.10688361054558032,0.000899736649909206,8.094624113702072e-05,0.017421618170767688,0.04626896356016339,0.05422882921522323,0.05874411571367273,0.0021209807888229043,0.013997126564095715,0.025056737638881166,0.09183813099466902,-0.005632707091494032,0.00010809796678275603,0.0034844653167174847,-0.0006414012623433632,0.0015990452275282405,-0.019764523810508104,0.00016260333130792496,0.004068664819448884,-0.02063730216693472,0.10653091080336381,-0.007282616874189334,4.728149585773786e-05,0.026201349735302585,0.01965684341910197,0.06282498916495526,0.0025908328673147274,0.002965510142988638,0.015432048790919401,0.003676192834044457,0.016022987246213722,-0.018038182426467073,0.00011412883072690685,0.0017553217105162762,0.0013262752153009626,0.008653587884684033,-0.00426397717828737,0.00011114712400670439,0.0005782670510118362,-0.030381059276973387,0.14797614098014028,-0.05523024531788952,9.710909649958599e-05,0.014239027921130819,-0.040089213374299784,0.2275383476964183,0.010235375737529582,4.428129665362764e-05,0.02015214388948721,-0.008150240793759768,0.016399162464043868,0.005002977172110711,0.00024231380962942283,0.00754045189246841,-0.031963096860782476,0.14446590170505552,0.07342456622938547,5.5017122741211704e-05,0.0008903525843763086,-0.01345847934713745,0.1411081868055782,-0.05222473371671864,2.4607929081121268e-05,0.013704687309598786,0.014868545498114168,0.04296100163514851,-0.0309795217345476,0.00012097706732170072,0.0073049543927516366,0.011736661382363766,0.04208536639803323,-0.005764196045805946,0.00043958355123761194,0.004318893159776345,0.009980508947089536,0.05057340437643658,-0.0712034734492203,0.00011303222976054956,0.00904579439313799,-0.004942018572885952 +2018-07-31,0.017653065539497935,0.10742139667712278,0.023798414450172226,0.00017378645439550022,0.0009264564340079759,0.0007799573383957698,0.0030210489878426533,-0.00011070368618036875,6.194747477804293e-05,0.014406917940429215,0.031322813930366414,0.12191960346405328,0.08652955000863995,0.0001188459628845175,0.012948768065194275,0.008050570228139434,0.008961238018472649,-0.0010203996785237116,0.00030319810768281765,0.0011229863749795798,-0.036766460233792896,0.0898776370777336,0.011285239890955302,0.00021404148011132368,0.013916456536653283,-0.022228011011120815,0.06040181046284439,0.03616979922197767,8.035212874065002e-05,0.00644048307253397,-0.04034838871466353,0.18676594341368052,-0.07690536641957443,6.33896516857515e-05,0.027888196280596172,-0.024253692516074656,0.22635319466282244,-0.05744665709123473,3.674428944738013e-05,0.0030100157054635994,-0.007940731336120643,0.0058671255306770795,-0.06722933188395451,0.001043710154466749,0.008818266407119756,0.022352544457595932,0.05496086512963533,-0.06933757836159375,0.0001422116886862757,0.006909351542654882,-0.010444920517355639,0.008317016625247938,-0.02991781260848842,0.0006138495306504415,0.036599740437724806,-0.014408655712283527,0.21262462412186975,0.059524586022741445,2.0194480932e-05,0.0020778038357456294,-0.009437891073153482,0.02396540115081177,0.0014140909676609121,0.00011698799438140629,0.02232052355636832,-0.0101964439929036,0.07206088726050816,-0.03661879569924431,3.9830059142263925e-05,0.002776773137599764,0.006508571738128277,0.005455080413067929,-0.024512877933091846,0.002327059628279334,0.01687105611034023,-0.001284652790551858,0.007888432552408746,-0.06795005459380556,0.00013401306987164893,0.0014476191229487465,0.04949214046521707,0.2945386260365125,0.15179692719169244,0.000260196956391208,0.0015418048159792095,0.03631407473872902,0.20651292677923916,0.029932046144587804,4.953232311948584e-05,0.012316229878085876,0.030333653989432177,0.19707231279921736,-0.049181596180238915,0.0002536798210048309,0.020607867675481867,0.0155889686315162,0.21247067857738353,-0.03489708995555093,3.0447287598160766e-05,5.083950183888209e-05,0.015094547192221858,0.19745578377794193,-0.026337327504375865,2.554064961879795e-05,0.0031879131645719742,-0.003708517113644913,0.01065671104355405,-0.05977139495034003,0.00011209851340708805,0.004813343588323777,-0.05655887832590358,0.3309055292509249,0.05576797053160271,3.948109052471867e-05,0.033349427919765355,-0.00013047743390660164,0.000426200526795185,-0.0013572271775293373,6.78732752898256e-05,0.000407152553895999,0.0003706716093063234,0.0013967162566640107,-0.019622471836751223,0.00012134719201166777,0.01426618002744403,0.02665820848195271,0.024292173097609674,0.008462842991946573,0.0006272492552719924,0.026882915842908837,0.006279163660776906,0.018455134658328258,-0.06015105698951685,0.00014320909273739038,0.029350682330751984,-0.0025507489328450593,0.008964623317606876,-0.16080954201260916,0.0018262273498753049,0.0023379400081470847,-0.011377983329543763,0.12166537988600154,-0.0681097846513955,2.4048083539451345e-05,0.0009694013299868676,0.003832963010728543,0.009982597707624464,-0.007536368429680729,0.0012553427776516414,0.03650212034582018,-0.0027926635002403144,0.019587997742145855,-0.011331396236752812,9.494108855286321e-05,0.00144228203867208,0.08288525667332476,0.13918807490777757,0.5773142294520357,0.0001405466973573466,0.006820460505339396,0.042291457927667156,0.06493226332870346,0.13625276002237335,0.0003738488332216398,0.0015846357872399434,-0.036889998143293745,0.140038485258715,0.035156520389207156,0.0020417923391714394,0.012876679061827013,0.008896256989983746,0.03612922860500395,-0.0038250600660988303,7.900216653473576e-05,0.0012097325108753202,0.014331179224836347,0.02349720802387416,-0.14284348343905573,0.0015161523986213811,0.0006000224292611431,0.012314608586543744,0.03335101472733324,-0.03623792607614562,0.00014629436457005686,0.004113323019230267,0.010919251596296628,0.026367876133456477,-0.0015788182499864689,0.0001678719360550194,0.0029963771780865296,0.01161969905625139,0.048993307415781714,-0.0004698455183793138,5.788580092088035e-05,0.014953346449326355,0.0626594898248767,0.21100215453609844,0.05186218658985346,0.002814608679550275,0.004513238317179255,0.025860473042700793,0.13088919130976506,0.010988793748370288,9.828183376100628e-05,0.014031845532851963,-0.02038961355378022,0.113629981004391,-0.021546645682789176,0.00013012982476373318,0.008761310996429031,0.007324595739987395,0.044047553727501305,-0.026500022967622255,7.865214384465238e-05,0.012960285384258368,0.008290871976657592,0.047064189762402786,-0.003291647708520036,4.42748417405675e-05,0.010142541101674438,-0.03252226488533069,0.057113846222202926,0.006922030258723294,0.00027763151878495344,0.000552418869490734,-0.013289274752851786,0.05673575529443735,-0.11413136307419834,5.824502225755888e-05,0.007392192935428772,-0.015673622865680848,0.1730780323430829,-0.01129322014426495,2.3364620367426156e-05,0.013807855459003392,0.011197162489632784,0.03332464606993221,0.00506993899080106,0.00011744956146163361,0.002169192518914784,0.023911240423440918,0.08001528786427288,0.04942140091109355,0.00047103925902211975,0.003916121350480821,0.0034735087474602063,0.015890524692426085,-0.02144801651789899,0.00012519931576811998,0.018722538453560523,0.004705195976153846 +2018-08-01,-0.0063083097768255525,0.047052059716951214,-0.011436976369238521,0.0001417819535764607,0.0007279689503584597,-0.00620357229127109,0.023814670831373456,-0.09087903583985929,6.250399708579943e-05,0.01908990622345706,-0.011204502470863876,0.04091073689040899,-0.08349187429508745,0.0001266929588727581,0.0034835461682931486,0.008460634067266652,0.008169281536123616,-0.006573714995476,0.00034953196997663746,0.016131782428368237,0.024339733308836934,0.05498519093928586,-0.0013316851488161987,0.00023161562297170283,0.01401700495245622,-0.006735910746742177,0.01806986696416392,-0.025424423122525797,8.139319726005136e-05,0.0049219932415777295,0.05180011245272997,0.16815677681060356,0.0702016081180581,9.038704397980575e-05,0.007236737254757358,0.01605478360219607,0.13488178814065374,-0.11066632028774881,4.081781527430918e-05,0.011657952855412199,0.007958920921954434,0.00642490388344826,-0.025454171046911313,0.0009552836424762796,0.001608744533958158,-0.0033842972528449794,0.007559593627975719,-0.0010219220279150622,0.000156542381863792,0.008097810904693276,0.0019061829262277889,0.0011245801167746906,-0.06583306783470744,0.0008285114845034985,0.0033705176816898807,-0.006385143487705576,0.10571559638842642,0.032992116941710906,1.7999249061040656e-05,0.0022370977512469227,0.0006948710249147496,0.0019588165232091496,-0.010595454939439366,0.00010538079769911314,0.01868835676251042,-0.02188233402786191,0.10568466519997546,0.054090790271402976,5.828321303534279e-05,0.003351882743856995,0.004961635968158609,0.0041851837600136105,-0.051986599451895925,0.0023122422812399696,0.003530224397626406,0.01308588887945788,0.08899106420884745,0.0018102701250675023,0.0001210065657462861,0.014651037916462734,0.02220123563542091,0.12481753543140013,-0.014007377685829563,0.0002754290696739275,0.007974823563890414,-0.009222170929498074,0.050472153651666796,0.0029715459570876287,5.146859191466362e-05,0.0020626324176621063,-0.020349571792072887,0.12285022313032913,0.018597998949986465,0.00027300219118021863,0.000712061954283487,-0.052060961626198395,0.7073110381862365,-0.011576313077531512,3.054442692941263e-05,0.024375489357704536,0.011388480749074963,0.12168903853291359,-0.006606716532594117,3.126770755196e-05,0.01092000646086452,-0.05141706852682505,0.14574525122993795,0.027428289998643156,0.00011364115915555072,0.012834057846648593,-0.023047076627799642,0.16131548101285845,-0.008016408331891276,3.300138558550409e-05,0.028897628006311113,0.012710190930409019,0.032543628410419564,0.004678466743838115,8.658915158938546e-05,0.007260364093157688,0.00013200975214671087,0.0005886056220820056,-0.004545144685048906,0.00010254871087861251,0.001274059562239828,-0.03358477437020919,0.03245002038877284,-0.024369477730778008,0.0005915657509767716,0.0006988103901730681,-0.025328683674187932,0.10011425071181476,0.01040404946048614,0.00010648850450366237,0.006139184384340081,-0.01632296243465349,0.062031525686414526,-0.06078232813997294,0.0016889068335916434,0.013948714052894785,0.001661840555995851,0.016755662761478766,-0.002413830605662715,2.550409620181401e-05,0.008555911244899609,-0.026525740722321726,0.07208430258424753,0.010422770948409066,0.0012030899225631162,0.005427994462333286,0.014707532932295379,0.1223852508263686,0.02210477805261885,8.002697306613457e-05,0.01947135983036122,-0.006874354898452948,0.010023246628348704,-0.02706313404828547,0.00016187095134659565,0.010779932393280407,0.010152017350622485,0.015587863935197606,0.00837037487187781,0.0003738261335674706,0.00030947005881230014,-0.0030838081519808103,0.013259633174573805,-0.00214234935887806,0.0018026282952549046,0.007684216680854049,0.012533573462204132,0.04663442435405331,-0.0016739711137679924,8.623005458031861e-05,0.01043697149536235,-0.001793678139861161,0.0026435762643410503,-0.02263581695834835,0.0016866690012194985,0.01572049917215538,0.02651855040362446,0.08718253882404337,0.02057705252851826,0.0001205136679917457,0.003053465127960903,0.0025797098944936366,0.0071010166852089164,-0.006835209213750962,0.0001472687879123563,0.005084987962869687,0.03028082186066033,0.12965948062691224,0.02047440048263057,5.700032156094438e-05,0.031395614503223146,0.03676488172544986,0.10178241928282408,-0.06129642435412281,0.003423564084121335,0.0069110724036634645,0.015293010294792355,0.08894037004180191,-0.020514263458924688,8.553318015618429e-05,0.004565159957888004,0.025190903795423394,0.16499826416345778,0.02826014145764173,0.00011071976578443027,0.011769050712255966,0.03609189273724208,0.18439845736207944,0.06567058731605875,9.257656728441179e-05,0.004244851953488321,0.018618132052997005,0.08342986239384162,-0.006132996721299607,5.6086969390167176e-05,4.6922888868405226e-05,0.02852531522901388,0.06360997419583933,0.0040529512891359365,0.00021864252144506167,0.009742916948936236,0.02264522212081847,0.09053845061829312,0.04487202832800279,6.21953480695091e-05,0.004563169585155615,-0.00776905626924205,0.08340418874592034,-0.0025742481360031917,2.4033204946367777e-05,0.00615530330554017,-0.007323860142919817,0.022730918772674417,0.002990117363287396,0.00011262427722452908,0.0022958917045737826,-0.0381975551128974,0.15960716483323717,0.14436299827347823,0.00037723428256858306,0.00029928379179951486,0.06265406963178191,0.3101123135733955,0.08760711430640693,0.0001157183067933268,0.02550496241022743,0.0024996072495600875 +2018-08-02,0.00487349002017697,0.03855034580934833,-0.019439058449110667,0.00013368983485442505,0.021725598260526186,0.01663891881175856,0.05510231702583326,-0.007366311338909747,7.245456745627408e-05,0.00901597757624763,-0.06549540605020028,0.22692819471972497,0.08517853499467327,0.00013351177976585933,0.0038420340092441734,-0.0033191366276417583,0.0034697772714277846,0.00426031764387342,0.00032284301042459815,0.005405229127461416,-0.038930519818240555,0.0831963101821702,0.08037274165558558,0.0002448408674643357,0.006067354781246323,0.041608789274955926,0.11378898169714043,0.14285241833505283,7.984203687753229e-05,0.000952902747363432,0.007340924816410037,0.02439065599072595,0.0009796964506901202,8.83114774336086e-05,0.030337852315895683,0.00046761206969641976,0.004170796524630483,-0.10924884672207127,3.844725373662175e-05,0.0006045998533165803,-0.003575019144821845,0.0031275489694494894,-0.00017184541417790216,0.0008814933496032368,0.002680041955786856,0.02175919049013371,0.04966694776011656,0.0303692131726934,0.00015319237490625715,0.03428938284858936,0.013029413845030374,0.009883423510685791,-0.024136492919486722,0.0006443796716831865,0.008083137396599192,0.0244571757189064,0.36261264140189914,0.17838080399233167,2.0099541604193228e-05,0.0034471588359123954,0.013411593871394444,0.032270191500531765,-0.005210691834402945,0.0001234610280311749,0.011494226527283345,0.002588171946551043,0.014345181916718458,0.00458326172658975,5.0786570135345386e-05,0.004401526289478652,-0.03882804968438571,0.028058836920080658,0.08146231602383423,0.0026989751399692057,0.003574365789620332,0.0203308683396022,0.12490394885186248,0.0164713993263797,0.0001339466532217898,0.01516247255990444,0.04631833469854489,0.25068919101281056,0.06325445395689194,0.00028610507382602265,0.01213291780183796,0.028309238807886196,0.16011997031706646,0.002333324138380387,4.980164028497418e-05,0.0035152563772468965,0.04445748005758461,0.23384414955545985,0.022340213250800656,0.00031333228139316847,0.008379539153918468,0.013445331619563116,0.17463608309344067,-0.06570745216804796,3.1949772308652376e-05,0.018239791730118884,0.01227087765692968,0.13203669627712375,0.012912270219500822,3.1050077321161344e-05,0.0054237292255108534,0.015214813772427529,0.0411807398859012,0.0031137153739313134,0.0001190132326183305,0.003250541637321227,-0.06046811927030545,0.3948323956145225,0.05924441334003447,3.5375782755516796e-05,0.02645575706885723,0.0051583793822553205,0.01751194640025189,-0.027002359008935436,6.530647502337087e-05,0.005779502770991363,-0.0158142035111711,0.05232030156986048,0.04059717403001422,0.00013820561263609934,0.0023569484009331766,0.03257222122575274,0.037316665891039845,-0.04850022505933839,0.0004989075808062277,0.030182480173746126,0.01726849251855168,0.0786109729828404,-0.08683263076709172,9.24607185492111e-05,0.00459514702376153,-0.04970542394300932,0.2075911900924771,0.01860345076500356,0.001536788274761473,0.016760548593749452,0.003803286184503794,0.04136598679260241,-0.002261784182600168,2.3642740319683732e-05,0.008354681153847776,0.03767031033197865,0.10439274730830071,-0.1056436014175225,0.0011797775851956317,0.02949152470957143,0.024991460418193414,0.18292800351453534,0.050270968749209215,9.09781464280217e-05,0.008229153919780649,0.02857756574194457,0.05287205439769767,0.02813480804366813,0.00012756878908038504,0.005537021407738824,0.010323433951375855,0.015532195666115668,-0.0013851744055947948,0.0003815006167884633,0.0011378916355383613,0.009806274625756702,0.033892474070857784,-0.022355762806095403,0.0022425963978492066,0.0012588351923052792,0.05848059947586248,0.29332390329276486,0.0802172045271818,6.396681552985231e-05,0.008896245919693577,0.002812071398908501,0.0037142271299916126,-0.0007024768037016973,0.0018820669883026695,0.005400497775979055,-0.02981771636260617,0.10396514603229089,0.03204851451220868,0.00011363252256694231,0.009920144216833227,-0.04730261002889366,0.12751974190584223,-0.016221989048237406,0.00015037237380059772,0.010063693433897075,0.04731799163677235,0.22257938639241584,0.03307434363684763,5.188660884051192e-05,0.009508958601423704,-0.007236494604922027,0.020858008835109382,-0.039537815008597293,0.0032883153026872025,0.025171017984080425,-0.008665684642776304,0.04200542929041398,0.007763555486737614,0.00010262142088661814,0.01143105723880104,-0.00417376732482972,0.02371660121680168,-0.008224005983737069,0.0001276252388792741,9.427487510739073e-05,-0.0027893247868812205,0.015988054198191545,-0.0008988484762683687,8.251866115789457e-05,0.004585530717151085,0.056417627025762924,0.29012765663792967,0.07699851388096618,4.8873459330220985e-05,0.0010651119670404012,0.00016304352300591866,0.0002721414676222824,-0.0446953767924549,0.00029210448311567974,0.005659026697192891,-0.009169323869308705,0.04029829472542564,-0.016043632853150153,5.658027054895139e-05,0.003094392977480596,-0.009305147646332203,0.10122446822802414,-0.0005859120267601612,2.3717507691036106e-05,0.003094545324920032,-0.002482432829978229,0.0088667187198152,-0.0016082888918436654,9.786412989632793e-05,0.0032435396873665154,0.02878621605669417,0.0999226814193701,0.06133882323274747,0.0004540968317450999,0.0012252006355900594,-0.03210068255347993,0.14559319788786235,0.0016908450000156033,0.00012628302533196394,0.014775157802522034,0.004614721175752422 +2018-08-03,0.02552461235624632,0.1598396811262697,0.045440989737206894,0.00016887335617082755,0.0006885867541594254,0.048273710890634085,0.15392470991800447,-0.01646730447350431,7.525110263364922e-05,0.004681793699625775,-0.01895904488658899,0.06543135330851459,-0.05421662843666511,0.00013403794364234218,0.022807923445371324,0.025404210149474183,0.024514794035735546,-0.00024741708082050723,0.0003497399987551885,0.008920316859807379,-0.005798006580330707,0.012197161881439482,-0.0026471493580691625,0.0002487239970950497,0.005183918824249165,0.012107234585559254,0.0320784435294494,0.0091375537093171,8.240971443436055e-05,0.0008971329568541579,0.021558232675462172,0.08183489563176062,0.008875382598437963,7.7297327228784e-05,0.0014236421975831457,-0.018822990725136938,0.17475584906889538,0.04541740576941188,3.693648143725227e-05,0.0058599721283299705,0.012347473411610486,0.011294585448046509,0.005504730615258567,0.0008430485599699699,0.0032273352866464392,-0.005662993116524106,0.015334163305634496,-0.2869537670810241,0.00012913615047811328,0.018149849665415444,-0.007194369027996537,0.005745541967694562,-0.007723257689979319,0.000612048823917751,0.0020559809898440706,0.01455231956590573,0.20494616369877186,-0.012704937376931768,2.1159978361517027e-05,0.001025118269898243,0.0004826694472204029,0.0012296559331377939,-0.002889978217074856,0.0001166050171794847,0.03779789073048474,0.00045683518407342187,0.0022836479909554303,-0.029766181556641978,5.631086540308905e-05,0.002140816354783579,0.005413062973801032,0.00500862980376902,-0.003534394811980156,0.0021078859965955334,0.012168982076673626,0.014145805748876783,0.08132366310115909,0.0064283423544562865,0.00014314061052996723,0.01171644318253876,-0.018013962131753963,0.10143246550450617,-0.044795661823566396,0.00027500494009977404,0.00501847847254951,-0.007573406874073643,0.04357956562508277,0.0007094115269884049,4.895187693298632e-05,0.02043086180751075,0.03741925158390983,0.24976969759457032,-0.0011789501087772149,0.0002469119767656002,0.008862845853750207,0.03314920442680777,0.43584490724156144,-0.061410855259078335,3.1562497819274275e-05,0.0014093821072399368,0.004617450089480747,0.04853960562863129,-0.07943798306281451,3.17824721711155e-05,0.0001451870860171517,0.04786686972446463,0.14388976135085502,0.06330328162864524,0.00010715881220375304,0.011586023018031787,-0.015283590958990909,0.09861774446754087,-0.014107058236729102,3.579832583907263e-05,0.00737955776270258,-0.00046710724305113605,0.0013135242473597377,-0.05481460702415597,7.884168360149289e-05,0.001435857380396657,0.0016793203028483237,0.005805567843536156,-0.011499051592599369,0.00013226271386561572,0.014437072633308993,0.0031046237545770917,0.003250960087803928,-0.00124323849243983,0.0005458494786168364,0.000331425141242965,-0.027196406992400196,0.10363279691415789,-0.06523543314401642,0.00011045880015851671,0.009378036512900128,-0.041664143107356,0.14735296197652423,-0.012056122282357534,0.0018147748786110666,0.01461655785557445,0.01652532137987468,0.12296567332829432,0.00031901533157928326,3.4557969527986934e-05,0.004186155997008436,0.01594784019577691,0.04947172246564784,0.0011621314921431605,0.0010539405482276173,0.043977261518569045,-0.007880075228639415,0.06134918440997025,0.004698230140530537,8.553566050271544e-05,0.00900626645707796,0.021592487703078183,0.03017420933873954,-0.006447853274641467,0.0001688932015205185,0.009278997439546969,0.019615772186464826,0.02834208846840809,0.00901241638933559,0.0003972624105590504,0.016751093461089307,-0.04903334407178884,0.16974072820087205,0.06529571124005658,0.002239008762804682,0.021444740757072808,-0.01060211067153417,0.03693707009765449,-0.079262917323832,9.20916512513492e-05,0.0015742972801574041,0.011924900232632816,0.017183407136068314,0.0007211353070861072,0.0017251333298569256,0.0026303904976319598,0.002479849918820139,0.0077876661711560324,-0.002441074304118658,0.00012616361018552382,0.01171727421841651,-0.009848724559564648,0.027992266223141635,-0.032218142333048136,0.00014262718405879613,0.029477943984990995,0.01283143934330072,0.0534616603364478,-0.01240660823405993,5.857966152652011e-05,0.007458621279628893,-0.03358703108457468,0.11077525978883905,-0.0023582122804240665,0.0028737361881032344,0.015909705326854533,-0.006679287703129449,0.034600769459077266,-0.0033752701040173365,9.602514342546824e-05,0.0032690291459886076,-0.022607147468996284,0.12611094937744277,0.029057155627068496,0.00013000311440214144,0.0029373812305752496,0.006721094814637865,0.03887518522182329,-0.010788756298379087,8.177418972532367e-05,0.0003098697578790357,0.035235560060412174,0.1603395061021058,0.009165768207823393,5.523165186757162e-05,0.017007651243338563,-0.0895756967932059,0.14540689796857728,0.30315551194932844,0.0003003548019660162,0.00693190320394972,0.0018032249210686423,0.008257914612743266,0.0010943590384396998,5.4299257221258734e-05,0.009801884897013394,-0.02984740928978974,0.32437462007134277,0.041367579261347556,2.3740565516940032e-05,0.013845644565181121,0.00831023242427241,0.03048745367316382,-0.012685186828277004,9.527983176485366e-05,0.011684130486765325,-0.0037531378961128264,0.015079830431387073,-0.008756363621945063,0.0003923069790879377,0.0014322330556588866,0.019060046298202554,0.1122161234331588,0.005263539571309464,9.728379088578245e-05,0.027642392404394273,0.0016825158835487223 +2018-08-06,0.031049060992905688,0.203390215935302,0.03692517993395566,0.00016143771317532636,6.317753493666266e-05,0.012538707035104575,0.051932518606762804,-0.07329813898632832,5.7932716923080906e-05,0.007326235761652622,0.026370331180937352,0.08905900783682955,0.021573458354490125,0.0001369729899608316,0.008568666874554239,0.02479932048862199,0.028692222719104942,0.016449709459359783,0.0002917047117667473,0.002885887915669391,-0.038775829897478735,0.09930188219757939,0.0351150970986725,0.00020431553704219373,0.020270863782152933,0.008090347876548547,0.022448988229245966,-0.06013030808924359,7.868956849752003e-05,0.005893398991822683,-0.009998451345864854,0.0418675864447304,-0.018662085062093665,7.007202481135775e-05,0.032477380358397076,-0.0314173388847158,0.26355502725391333,0.05287707602739731,4.0878665193200703e-05,0.003135779417685252,0.03435593120267634,0.029696856640279923,0.10124223490636657,0.0008921461971016715,0.0019540854388242473,-0.015415185370344973,0.034781274752239785,-0.06230665085830186,0.00015497624818775808,0.012476927665528074,0.01371841009422461,0.009264677524530028,0.017200235002492688,0.0007237654243662623,0.014793064833508299,-0.0030090334742649766,0.034358840106455256,0.008550988396798034,2.609824562184326e-05,0.005258988835104988,0.009048047958672699,0.023550725193029868,-0.006193287115124981,0.00011413048082330556,0.011044647972446588,0.001550308737496702,0.008831220346977824,-0.013007929882615496,4.941505602626197e-05,0.006525133459960071,-0.019494560777907483,0.0147474910340009,0.008491918085001122,0.002578209988015762,0.007031776020959583,-0.004989728170245048,0.03598128001673632,-0.03170933257687354,0.0001141175358951897,0.02685127883615702,0.012204198208994065,0.06847166701171836,-0.011213129167994806,0.00027599841182464417,0.003674832476739203,-0.03730082148319773,0.23994532510007843,-0.006335095215490419,4.378920489613316e-05,0.006877930414566485,0.01262555620969396,0.08186699119415985,-0.017982588668880445,0.00025417246328047636,0.012552688009365574,0.02709365794199372,0.3023235873641243,0.0037818028400974303,3.718997124153778e-05,0.023429023654434326,0.008641401426316368,0.09603050471049879,-0.09481790343577867,3.0064686384323645e-05,0.00013269085909255033,0.013257259242654484,0.036416250083676965,-0.0051981359506964855,0.0001172684761838672,0.023459612012766373,-0.013339334239251271,0.11092403160743985,-0.0005346220838367653,2.7777994324232765e-05,0.0008803476618636039,0.00864100923108751,0.025096150481300573,-0.05341501616474787,7.633693903410092e-05,0.00867049233781703,0.0029507798933587075,0.012343596919696588,-0.003132824833843038,0.00010930591893770125,0.003665702921857028,0.007022554922246718,0.00641359657045352,-0.011755830851996463,0.0006258482864097329,0.00032031875686053474,0.023092503375245457,0.0907149075272773,0.01196316360513263,0.00010714659215039822,0.003552465136071811,-0.023763407425004567,0.08830063515554858,-0.0037693203611082354,0.0017272852374256578,0.029099224066580796,0.0046043689422750195,0.04650192314745045,-0.003872995737351633,2.546134824959784e-05,0.015375129269371832,-0.020989180184057047,0.06091552322441332,0.010004744008219182,0.00112651963742422,0.005882918154131394,0.005179270055398037,0.03730780230294078,-0.11548923286588973,9.244736410941869e-05,2.9900867111886222e-05,-0.004854158408616348,0.006726705124535903,-0.0029243633122461683,0.0001703165851715485,0.007289034014259852,0.003674968508950665,0.006379114834140373,-0.11997674918240066,0.0003306717665637678,0.007185393443810261,-0.004379128786041823,0.016941823916272823,-0.0588776762068925,0.0020034471715911872,0.00273124247612782,-0.0170636638076026,0.06727726173097756,0.03920468622007012,8.137562732041359e-05,0.001870332250714704,-0.00602067394060465,0.008215815349133822,-0.0003763691886888184,0.0018216780685155521,0.03029370002662475,0.012488312163757283,0.03304696658879617,0.004192730654519128,0.00014972288301706767,0.005946131580984891,-0.02350673583074955,0.05965910259450009,0.0015552183709301218,0.00015972613633810761,0.008168515221151092,0.006438308927535903,0.028791689267536908,-0.009087812906703959,5.457812227047411e-05,0.02176059023991662,0.015246511645639744,0.04591232662881052,-0.18164790588733884,0.0031474529473808784,0.016029800882932595,0.018623246127357794,0.08329033307816877,-0.020509584794051784,0.00011122472864517748,0.02142999699108926,0.009797522055285153,0.043960542633294145,0.0019371832124296547,0.00016162702890803112,0.006109539434858494,-0.010112888873212449,0.04986495336388942,0.0022198367635752982,9.592427301855722e-05,0.006983027442691385,-0.05884437488908913,0.28589119076754405,0.07549931917894565,5.173108353078818e-05,0.009152611286808977,-0.08930283566860017,0.17635055840417582,0.1425751477183334,0.00024689813211729666,0.005140937620899788,-0.005259691258969267,0.020047618355497492,-0.018570079376854443,6.523968295366041e-05,0.004499196875113549,-0.011529420755689298,0.11057623439744374,-0.0012935768430932509,2.69015298189713e-05,0.0005484421988262026,0.005873464258818978,0.016963262713865092,-0.025317322031356594,0.00012103024340990702,0.0035816006674135124,0.007899692898775908,0.03212056690265831,0.0027931763415741124,0.00038766355822062495,0.008646272582302546,0.01981757402013915,0.09455543968148487,0.0056902363599927305,0.00012004270318825276,0.012370466202154954,-0.0011098335770560078 +2018-08-07,-0.0013102586909436867,0.009593290603935576,-0.0036692013094113143,0.0001444361928528953,9.05908379148434e-05,0.013136960320462713,0.04569874796358929,-0.006830191436696712,6.897649356348446e-05,0.013180473288774806,-0.02302862363870174,0.06924477028912751,-0.00021735415419800688,0.00015384316559350654,0.023787013194639425,0.0029980274904494353,0.002847012626387132,-0.038728161239499424,0.00035539725890862395,0.0031029241099795792,-0.025551680842611776,0.06283533301325377,0.0181482914409409,0.00021277143637388806,0.02281176708010049,0.008564391150911559,0.024116061152053003,-0.015185513311585826,7.754197484206645e-05,0.006081201908979919,-0.003485571047517755,0.011819838291954925,-0.05235993363642242,8.652712219484533e-05,0.0037301950532791805,0.044835007962914536,0.38332585430950383,0.12245231730877981,4.0109546668422e-05,0.0036701860311150894,-0.00507495344975236,0.004131919264342473,0.0016125307590218615,0.0009471636503421375,0.005605932864217252,-0.04791984646993826,0.10426252977998983,0.13898395225156393,0.00016071227396397456,0.012560444784483926,0.023689537899651426,0.016902261923967443,0.051449409882087176,0.0006850718462044739,0.012687818337909267,0.008658589799459148,0.10310086836102043,-0.0015097899138618411,2.5026933045138595e-05,0.0073951987016313454,-0.0024185817438553475,0.007170730359009305,0.0007002235684352251,0.00010019554599184333,0.003563389456762504,0.008702304441939802,0.04074712828383273,-0.07015485749828299,6.011724699938993e-05,0.003344028954654543,-0.04640228309536603,0.04044462805940021,0.12609560901517902,0.0022376980119730295,0.005098150690540437,0.020961441642646624,0.13355173649724736,0.009197430797471635,0.0001291587153769529,0.027205791981242004,-0.0219870033924022,0.1159246124817465,0.0009157653454003678,0.0002936963995846104,0.008845028784176713,-0.06524443690921018,0.40183067150181306,0.10066853225130243,4.5736334992900583e-05,0.02699458354938834,-0.030244765086340112,0.15574699772787318,0.022770862366423044,0.0003200496373366201,0.02070908983292992,0.002312405066776738,0.028819239646220778,-0.06245989121980446,3.3297499813988676e-05,0.025442567261400796,0.004107588975941251,0.050385705888565495,-0.011519957761950698,2.7237129858857053e-05,0.0031154707033537246,-0.0176836950294618,0.05673877636288986,-0.013648450572366539,0.00010039586058869311,0.006641325382405503,-0.024623176515662655,0.20603304413023907,-0.0009943699720084591,2.760575156269202e-05,0.004823689959351183,-0.01407646981613518,0.04595712529555801,-0.04605827791903241,6.790758419878387e-05,0.010437270374056801,0.021384597906267944,0.07747259867889209,0.005451609655131423,0.0001262122649358384,0.0005295783522581707,-0.009183092824597556,0.007885271078666526,-0.0074148579698538365,0.0006656530214310438,0.0014226622092875772,0.019575736595999555,0.07007163162510269,0.040875068333400676,0.0001175876988731889,0.0029300233747532804,0.08044794535033381,0.28583276698956217,0.07655863484635464,0.0018064340793044775,0.0293351919229575,-0.005519531768514661,0.05045741992979172,-0.03436490917134944,2.8129330317214947e-05,0.004093253418039339,-0.04718403987968818,0.14416727877848792,0.0075309422268816,0.0010700392074350542,0.039224148264488064,0.014556190921160464,0.11087768475344943,0.021095571615137552,8.742371099476085e-05,0.0024516508466178736,-0.03694653424827091,0.0685486078197627,0.08474124022418095,0.0001272097658346946,0.007619142787183161,0.01813792931681781,0.023307382726070688,0.007655582520645599,0.00044668164951782417,0.004126009309349794,-0.020310465130438236,0.059341981717744234,-0.10876211229784352,0.0026528223330555215,0.0075361083136006035,0.002147385474416854,0.008826694641393455,-0.015630454508874098,7.805527875075709e-05,0.012527651705113541,0.06961265486832573,0.09564374570881508,-0.0021942571656953136,0.001809292624345092,0.010088880080865767,-0.05955531308300012,0.17478773127920305,0.1050703117841883,0.0001349974618700905,0.00026647873707844787,0.001381753910400038,0.0038240533727607437,-0.05536138235268781,0.0001464762231494767,0.010252416623210102,-0.033625800798957085,0.12795195872399673,-0.16241197225585519,6.414157536502999e-05,0.007483430368148157,-0.01794156764289407,0.05326151359651684,0.009132911393529569,0.0031927501988174454,0.007644114944887231,-0.011724026449356153,0.05892851257056699,0.01186515674509216,9.896733623873795e-05,0.010926166391424724,-0.004601514295909009,0.03048543977152912,-0.0013200566013831644,0.00010946344087757747,0.008868395421948122,0.019570101498893162,0.08686206699125507,-0.018523746233210004,0.00010656427070492541,0.002180751200977958,-0.004054290497329106,0.014656254206160228,-0.0014801538754095143,6.952472333685066e-05,0.00486648047913928,-0.02751092089109766,0.04564206520099388,0.007585910185789815,0.0002938794613050471,0.034158450097478,-0.021243170092935044,0.08688184770737314,0.02726839473830413,6.080015045009786e-05,0.023470385063707626,-0.02103312625012342,0.23610693371456262,-0.013323100049246944,2.2984040222639403e-05,0.005345363815802477,0.0029254495108194936,0.00865329135850369,-9.250847950344594e-05,0.00011817353987677682,0.005125354976757552,-0.007909575802440406,0.027048998537891004,-0.03868733302603372,0.0004609246907968927,0.013925872604254458,-0.010072896217119409,0.04365565501108006,-0.009418823253827834,0.00013215562306436357,0.012740760664095048,-0.006050455425911023 +2018-08-08,0.031649063918158624,0.25511458027348943,0.04500676459246986,0.00013119345617232503,0.01867426995005921,0.0015211457267870485,0.004358572010369502,0.01189088371163735,8.374080332004714e-05,0.03043328253157865,0.043554084591802565,0.1281560106917376,0.12913763271587017,0.00015721251479061305,0.007524245961094134,-0.010333423047545438,0.010314460902406961,-0.042662633234808685,0.0003381158516549017,0.008643650676322466,0.03181958217603387,0.06749470387365598,0.044299462860078194,0.00024667352992288394,0.003914450190464341,-0.006810187854365551,0.020329195610858334,0.00717545483441761,7.314516718129846e-05,0.012042328183329341,-0.022505385905582258,0.06298170378995067,0.0061542490999007575,0.00010484842582760316,0.03006271079093345,-0.0016723845226044708,0.013071310310076776,-0.0020318008042623003,4.3874848443023846e-05,0.009227164239652202,-0.0006003239998133641,0.00045559382116269363,-0.03670051885070922,0.001016137940023637,0.004056346537850971,-0.030902785316625013,0.05922716510878997,0.039449153092019754,0.00018244777250968114,0.010850158813957995,0.014904239608982699,0.009869164253481421,0.017463072684971853,0.0007381656047306351,0.017923995451843245,0.003192126862526513,0.04120569310438655,-0.013034375626935598,2.3085841451054335e-05,0.004534993515244142,-0.030028118865448542,0.08530488492779822,-0.1012001366706666,0.00010456955569137789,0.019805694194244012,-0.009299111929635786,0.054023797853911475,-0.02104405525447627,4.845272219565996e-05,0.0024199099456025048,0.009354164199139607,0.00615798015376675,0.0023118615070752083,0.002962713638626025,0.012575364668424007,0.025145678930125048,0.1346234611806022,0.01130934470464041,0.0001537073806207158,0.031185541897556283,0.023854079976121715,0.137123688599861,0.015443472194108956,0.00026937569979886526,0.03284111862776285,-0.018832327291390148,0.12478180309546284,0.0035648611912769746,4.251221097807912e-05,0.01487666041803099,-0.01902118055272749,0.121214664737461,0.014986310504414062,0.0002586241705489759,0.025518148562146483,0.047873565820826594,0.6396380547611218,0.02208463829116003,3.1059303616754014e-05,0.0239508963772829,-0.02043103096102987,0.23246758884132093,0.19227594142437787,2.936361896699289e-05,0.00346289831945999,-0.016821966644808076,0.04235498650598375,-0.01652409455734224,0.00012793665029502515,0.01761015148362135,-0.03533307841368729,0.2643042713613525,0.010674392178258852,3.087945818859176e-05,0.023968412420513514,0.012323680511464798,0.03595057243078407,-0.23055074577689613,7.599972191509887e-05,0.003005391230371403,0.004557750506769526,0.01812348767648771,-0.006412473150140251,0.00011498928321210175,0.0019289876092930087,-0.022367543002658186,0.022563572379481596,-0.010043440209024609,0.0005666122790619029,0.005727191984775901,0.041872965526559065,0.16547564492239583,0.10008065181641335,0.00010650883791917,0.013178882865150789,0.039145380363639265,0.1198054819278981,0.027668878179294292,0.002097118645311365,0.0048465775499786186,-0.019622991124147185,0.1707172327859451,-0.18187037759961858,2.9557659389180747e-05,0.00018413580003309423,0.024040336032102785,0.07203364683121444,0.006156033474709742,0.0010911297607347464,0.03639930847983445,-0.004457190490708226,0.03519240496313407,-0.016217363398199545,8.434083416682873e-05,0.010581375506859449,-0.0013197337645327776,0.001945530317704559,0.0012621288814665137,0.00016010087716319631,0.0178399879074998,-0.004463732336307226,0.006162134099938351,-0.03448048312433886,0.00041578700643219455,0.0013240322817560215,-0.008761637212010589,0.03850565367872898,9.59997988611877e-05,0.0017636447396244344,0.003574392225633318,-0.020716549890108255,0.07754152647388296,0.02895257715416862,8.571828125583787e-05,0.0325238863154329,-0.043014694877484314,0.0604503882915794,0.05158125008848271,0.0017688660379051062,0.0019072965245965363,0.021540547956897346,0.06148111371863302,0.014103501450017401,0.00013881329312890906,0.007425121763645561,-0.00770460324694389,0.019436142154753505,-0.003232934614109454,0.0001606943431166175,0.0006762477257518214,0.0004675468543509259,0.0021028130404549534,-0.021693943551127613,5.426732355301481e-05,0.008065570226872439,-0.03328638748205164,0.09882171275028652,0.01024664371887792,0.0031925105837117143,0.0059454991283041415,0.008238746979493198,0.0341555560035102,-0.0007833160262285344,0.00011998870791663526,0.0020133649289211675,0.027948467026812373,0.16405003542742708,0.03771998266191998,0.0001235499140790311,0.001860867230204239,-0.028348167996036223,0.17157320634620718,0.04482976331412005,7.814914467583895e-05,0.016301285915580426,0.019760429362977654,0.09241864828546918,0.000164530060807333,5.37383292076223e-05,0.01284264703015275,0.004341121123897887,0.008747563433236813,-0.038513819178384846,0.00024196034612432348,0.0032962757322893567,0.006258769416159171,0.027178874677304808,-0.05369331318429265,5.7262704593085904e-05,0.005411585531597822,-0.0036095145657735707,0.036230377729671415,-0.1779048123827517,2.5704385284097916e-05,0.010457590521535411,-0.01992093387841421,0.061846163175773315,-0.014822687289033227,0.00011259157557021912,0.0024725400243211055,-0.007154037168075295,0.03204640822328194,0.003203731681131729,0.0003518842287312182,0.010023389020786373,-0.0649985460567225,0.35324716813072066,0.06329285957067782,0.00010538935562321399,0.004754762231482079,-0.0007580630120134298 +2018-08-09,0.0024256538316613846,0.01798163483167021,-0.007355977009449949,0.0001426547484467705,0.012687346057919872,-0.009407601401684531,0.0323877153965978,0.03269535350693707,6.969620327859946e-05,0.004491683334990918,-0.025837508976442845,0.07048862372640387,-0.0570859879164444,0.00016956211064497956,0.017140441041521955,0.023291844218685156,0.021684747650114633,-0.06213045672590139,0.00036250780411002876,0.011227356206718938,0.025648204901424953,0.060000775715013145,0.0038739965526713425,0.00022366492400878617,0.004367743434423369,0.03929699174148394,0.09590547565143594,0.0832240318685376,8.946695199073264e-05,0.006157480763211737,0.010041737603442792,0.03789715721640973,-0.01821485263610358,7.774851282869672e-05,0.016694289710101028,-0.008453691572237944,0.07319147499892178,-0.028094906267403474,3.960814597334351e-05,0.011784096973927854,-0.007716573769331668,0.006225375169780742,-0.015301937353527025,0.0009558808692155871,0.00014929474323847067,-0.023763686390056573,0.05664070866192328,-0.02550232293899448,0.00014670571094186483,0.005587359297605862,0.010651989381269567,0.007738182734939378,-0.0008280985504840243,0.0006728466614175249,0.010609380561386765,0.021453139054130512,0.2925774366619801,0.07847830695241166,2.1851074943524105e-05,0.0029809815361537175,0.0267801744092022,0.07072399746935622,-0.04994522259324276,0.00011248578384646342,0.015804068430766573,-0.013370744409154466,0.07415766541207006,0.011009180189404279,5.075295767540687e-05,0.001465277489770444,-0.029316802082970286,0.024118865822457154,-0.09218043059210174,0.0023707332249284993,0.005009359647199986,0.039028450872990575,0.2500359087159536,0.024568670184915244,0.00012844909159777268,0.008417841994015744,0.0568029638996675,0.28676932759863577,0.08951904391920477,0.000306723132621889,0.011404366562239962,-0.010562338250942691,0.06498607837415431,-0.0024681884923996346,4.578262579139181e-05,0.030941322723677927,-0.022321642151738,0.09242379369673069,-0.026267890958657253,0.0003980422367208957,0.04410941956028345,0.03622208773896748,0.407564175925526,0.018537604608531877,3.6881426137114746e-05,0.012809955769455122,0.02196771442380475,0.2540011868203874,0.055557781374227844,2.8895541491370088e-05,0.0033219312726713687,-0.005235984109852545,0.01857292270170546,-0.08230114468384114,9.081149480309504e-05,0.001297905169332586,-0.005884600634641002,0.04140587824175889,-0.015124565924093362,3.282822260414192e-05,0.01712620884889232,0.003881952665342673,0.012641951359928662,-0.008791632492386606,6.807905250102605e-05,0.0033287204631311873,0.01164818570154767,0.04086741410830043,-0.023185479178105296,0.0001303255969445363,0.004349544031433022,-0.025501436799146876,0.02599129718058784,-0.005967322906213396,0.0005608054900677573,0.007866533906705244,-0.011616252804492378,0.043159993349800134,-0.014154377616943891,0.00011328455290547793,0.0029358591417568045,0.0026523922883223525,0.0078264900878956,0.003272547858155328,0.002175153406231377,0.02234153242535112,-0.004764030833613518,0.04458306394946883,-0.006500236855103305,2.747810932456575e-05,0.019117148857350115,-0.037457601175993144,0.11167562093553111,-0.12702769932726085,0.001096611649420821,0.006416846006563498,-0.009295873771488487,0.07920856539903672,-0.026194290639068682,7.815265086981615e-05,0.0035401587892801324,-0.02519632468446455,0.04153253650376629,0.030306851817963183,0.00014318388005834094,0.020805727547788627,-0.0032290671569296285,0.004702843724283562,0.0006049310481316133,0.0003941127126447123,0.007607137262998836,-0.01908561581224518,0.0859934943015921,0.0008579555113880065,0.0017202474465789718,0.01387804126991917,-0.015551825966346413,0.060646428557734645,0.01548836783956493,8.227474169467443e-05,0.0016401947939959217,-0.01583798540877473,0.022739655871659346,-0.021534440724890202,0.001731383371958945,0.00011021083455658152,-0.004869332907619747,0.014470063849146671,-0.004142920659722144,0.00013332606348801423,0.0032495706570796175,-0.04767661129873253,0.13435133955670853,0.007489973069957439,0.00014385460031375046,0.0011077528119614064,-0.028136111540021762,0.12077240649745923,-0.016377667578171596,5.6860448625860576e-05,0.01796117145611103,0.014974089834203159,0.049428066312820686,-0.000193360293162958,0.0028713416562654854,0.005881501995351311,-0.052488311425751354,0.27511271127396963,0.10011205186965144,9.490574775357606e-05,0.031425920593001956,0.01242473481661752,0.0580256599720246,0.0075671808778324376,0.00015528439842950025,0.005067733697415903,0.009438186646454245,0.05735204369959753,-0.02622493102532514,7.783740738749336e-05,0.006646884095610733,-0.008411283770261936,0.040037011856828224,-0.12086197344172098,5.280171433651125e-05,0.015123481913537655,0.0035257854841960596,0.0061446456156778115,0.003636134382519549,0.0002797618163216452,0.027921634289846682,-2.361094422046483e-05,8.983801573725907e-05,-0.0073041549699884205,6.535330872393812e-05,0.009976837895259216,-0.03324071108210103,0.4152826036420933,0.05583135268628598,2.0651797233670596e-05,0.0007529460870978027,-0.03334837930618718,0.10870095751014074,0.004092849946804652,0.00010723840043335017,0.002383526830253214,-0.006133402643940366,0.021392004589319898,-0.0006653649922989906,0.0004519370681593189,5.310977842322515e-05,-0.03411202828161729,0.1426028593709492,-0.017452850447343682,0.00013700963372285168,0.024577792459732628,-0.004003851606462974 +2018-08-10,-0.019108047892084385,0.1322068247506277,0.012500089393206137,0.00015284422362055213,0.008166640411540525,-0.004631528586674265,0.013442662342178018,-0.014631917630595076,8.26703136861497e-05,0.0038568043527703513,0.014247945712908591,0.05588375763345704,0.026318188488793436,0.0001179407420103207,0.015021876408782784,-0.03543072418779639,0.03372027030922108,0.1108553937973714,0.00035461478451398953,0.025192773587261543,0.028252775550170185,0.07326176159071475,0.020550841933021813,0.00020178158749248798,0.012622218813622344,0.006716000795594893,0.020426232089073997,-0.010021624076277871,7.179087002823486e-05,0.005738834912288054,0.026388873422117813,0.10970445984350095,0.011187696305132448,7.058077484004023e-05,0.005254832207360508,-0.027186239343944738,0.2221816542600465,-0.007649075394272754,4.196039371585887e-05,0.005018829364251602,-0.010349510244992867,0.008208829156115132,0.011590537925373083,0.0009722621258488847,0.007728540822401639,0.008244615740163459,0.016457786532451762,0.012689428580361786,0.00017517046408389297,0.017184022864930978,0.015046493601694706,0.010018097589925773,0.00519627366475922,0.0007341324228491607,0.005549607142610007,-0.0009808258287967145,0.012011942154952165,-0.027906664844320476,2.433332469401482e-05,0.00016955235581722562,0.033265580709596544,0.07507356746887232,0.019091844246301986,0.00013163127659363737,0.012966388924470974,-0.0009125867532471986,0.005017593073465154,-0.10468656190843412,5.119653179996813e-05,0.004192566815054725,0.03098604753246379,0.031390664571984764,0.032135091987718294,0.0019252567072520794,0.015151906794030483,0.08860133349443117,0.6315255859685702,0.0943769960968901,0.00011545198800321612,0.01975264865752388,0.05493817530296089,0.273933263840302,-0.061923988109967194,0.00031055440279665784,0.008818188112776414,0.07590750538938083,0.4335034448971372,0.045743237312321244,4.932341317178783e-05,0.004683271612903593,-0.009057818705293295,0.05435209327465131,-0.053458301863689314,0.00027465920365606707,0.020869283007843357,-0.026876303156417775,0.3895176342916455,0.01297151657188156,2.8633381424503888e-05,0.012255045523959503,0.015823254993903444,0.15338685242148326,0.013212232761136828,3.446588228125149e-05,0.0078468378941742,0.002739232747823586,0.008675005167204352,-0.06810099402206314,0.00010171428456818378,0.0045978872185867565,0.020582353521101597,0.1453858914540712,-0.033287432325602447,3.270130962651251e-05,0.014171163342386786,-0.008320788742738595,0.02407855162366046,-0.016423897975709506,7.66145964684128e-05,0.0020627431453313924,0.006947141626341092,0.022889145520339004,-0.005001799821943913,0.00013877945191306974,0.0028589157928008754,0.017589223201659034,0.014864826991720283,-0.043883552019349105,0.0006763357785597853,0.007625973272451857,0.00394164195583483,0.01352273156604839,-0.011934885894794457,0.00012268705846573864,0.026498884009987216,-0.0033131809746101853,0.012493597053585603,-0.06320433637808513,0.0017020677330527938,0.01671107482280481,-0.012442969100303816,0.11176434875902662,-0.16161762617951847,2.8628785594659587e-05,0.00826234990566097,-0.01801271699330109,0.05092582526857627,0.006190444392913397,0.0011564115477698841,0.02591685802927402,0.04114073028177585,0.3812013910232335,0.15899733525276222,7.186925831904096e-05,0.0013099475897219279,-0.006478547678942534,0.009390109336120658,-0.03219631699522653,0.00016283673898021442,0.005305638433711133,0.00957682169868003,0.013098272555237081,-0.16587597606614116,0.0004196732541299365,0.001083901886334162,-0.003803503159345051,0.01485346945153501,-0.10084889783924661,0.001984751848638414,0.017590120090418812,0.003963786198788597,0.014756258564761324,-0.015111669043415467,8.618354124803964e-05,0.0033678027058559423,-0.04768706351725936,0.06102705679199142,0.05288917630970682,0.0019424745911621618,0.009708206728817616,-0.030459007965439152,0.09402622237906502,0.021584077594648348,0.00012834613734504584,0.0002869141816426624,-0.011156965341969192,0.029294484041812344,-0.10279685609898896,0.0001543905117764609,0.0018627895425346241,-0.001785702787085631,0.008935415150675693,-0.00041868546342328143,4.87762453211482e-05,0.005685207575269191,0.011366510462488417,0.03978630187435076,-0.00023539796185052564,0.002707769178386998,0.012242184014416123,-0.017880121932350994,0.08011290728090362,0.007087999884578464,0.00011102187414927166,0.019789129817265407,-0.0021961789251889155,0.010990051522472944,-0.018367838242976043,0.000144920150252349,0.012140024243098638,-0.010602588939361529,0.061649555829733624,-0.10769991443416603,8.134496394275058e-05,0.006660871118561441,0.016967073247231446,0.08735693532303636,0.012089282349835136,4.8815409853903074e-05,0.006530070586773855,-0.05652051947680233,0.09253698625141937,0.009398569667106537,0.00029779691031460486,0.018210354214965235,-0.028726323999321395,0.11174971896867207,0.04002553632693203,6.39216520494976e-05,0.01757785047648346,0.03394260235400513,0.28837223479467233,0.12861661128250768,3.0368474648222037e-05,0.0019309644064704852,0.0011132901151288573,0.0034799143364441744,-0.09908941931791729,0.00011182753819223795,0.00558822578945,-0.010587348860905302,0.04161020367073117,-0.16458482051552398,0.0004010655441402902,0.004986215602949533,-0.0360486074713437,0.2010321217328846,0.022344197222863255,0.00010270576756662511,0.0023187456212641006,0.003094742682531224 +2018-08-13,-0.01347867337289256,0.08254379344219051,0.0021067435783434264,0.00017268289041879925,0.029715573360253638,0.003942313742935963,0.012445678273543351,-0.009402432486028865,7.600517100501446e-05,0.007295162536590377,0.02996389155333567,0.10882615962022628,0.03463372119032177,0.00012736852442826998,0.011137861771070144,0.008083118862223133,0.00855517169555564,-0.024027969954940925,0.0003188732524624633,0.011605102607189118,-0.035123718200106555,0.07976513924947763,0.0022863610537666927,0.00023040140797988914,0.010366648807107427,0.00537089500023098,0.014223010780564,-0.07904275370994274,8.24521268431375e-05,0.0024869095243627,0.006151630970068046,0.02002747623540011,0.0005809908720142944,9.012679031794474e-05,0.015646229260765407,0.025833722673899842,0.25305293658791006,0.030277301702930044,3.500855828271404e-05,0.0037408766208262296,-0.01228844931664696,0.010545684369439944,-0.04898279025164525,0.0008986014196691297,0.0009920552437170476,-0.0025748274414988267,0.006339988477647528,-0.018073189596212794,0.00014201085651918251,0.007267819788749108,0.007113938606090011,0.004244278857317771,-0.0012227922538270892,0.0008192766191520696,0.00585041377314034,0.0032614220015047407,0.03796336397239457,-0.00045646147775458813,2.5601481477833407e-05,0.0015391978526372058,0.03179948122225762,0.0771154460831762,0.020049677584584775,0.00012249819731203408,0.024875877775849573,-0.006428065586538429,0.041162360923243206,-0.026673372667818645,4.3958396426491096e-05,0.00814294152711397,0.01880685942007042,0.01652549924912397,-0.008414909566531417,0.0022196508323979996,0.004075327867496847,-0.03866707711259228,0.241647896563832,0.023299584034092703,0.0001316771545361333,0.00880818503600789,0.0015519703480378077,0.009202028632311251,-0.01426814683051026,0.0002611608485616931,0.020826857104143212,0.0018953894923357528,0.013058260248905896,-0.0037515859172378937,4.088595109949402e-05,0.030820920646454943,0.04218184165146865,0.254743789241214,0.02629574958433851,0.0002729032702655696,0.03340974125728798,0.008606430775554274,0.09414400555118418,-0.00570634472779341,3.7936795096693526e-05,0.014047349942464014,0.004374206116287504,0.04578981897396356,-0.0048110205540272824,3.1916262328049566e-05,0.004386630638923348,-0.002029278049813896,0.005392283303129548,-0.04318378096404506,0.00012122483793803727,0.02201414921231862,0.049414061585860244,0.31557690637979346,0.04317896996909216,3.61691009594904e-05,0.008595306468615935,0.012706140411134277,0.036888689659267816,-0.011407537249434234,7.63656062447635e-05,0.005058923295804671,0.006038082896459751,0.027193857637817273,-0.004886147180743878,0.00010152589976667547,0.0040341022514318444,-0.03325487905351874,0.02599467036165032,-0.07740511610079837,0.000731217572141452,0.009814796635678523,-0.026919685819375646,0.10083471169768012,0.018120547558213414,0.0001123688496951944,0.016074553267999583,0.0461947498248374,0.17477754259668746,-0.0076744181601205615,0.0016963918033227466,0.0075266650410161125,-0.00022553500366586973,0.002223686272115026,-0.01739318180676382,2.6080903694990497e-05,0.008501700167178095,0.030717513247175157,0.0886292755901633,-0.06350072793798388,0.0011331310086879485,0.024761091194293802,-0.007473293083214532,0.050199150287200484,-0.043847122001540124,9.913825989365452e-05,0.0035436141415443522,-0.007742068061800058,0.011474380020884384,-0.013001188821071184,0.00015924769026091679,0.006115461502290815,0.04081554371164062,0.06075034191178162,0.04632863821697368,0.0003856388449882913,0.0003124823765079626,-0.03656018388529806,0.14348207123586576,0.02843940679758424,0.0019749726022842804,0.0030889121646880814,0.007526060157787542,0.028523628975433837,-0.0007936711688923534,8.465512925793488e-05,0.004055551937220904,-0.04751575309502408,0.07362844970888636,0.03618649525312381,0.0016042393044703133,0.03399218460856194,0.060265230383289084,0.1954176463792542,0.08814231223146346,0.00012218533371609607,0.015287211525446808,-0.05781829360714438,0.14026853199180653,-0.0052021741741178525,0.00016709574634217111,0.0061692609630688,-0.05853353091282592,0.2267136811795381,0.027261594516810594,6.301456159809911e-05,0.010147679933528888,0.004992237492787962,0.014631229639520711,-6.919142036306252e-07,0.003233943803512397,0.018314175604540694,-0.029313294076337107,0.1453792572091756,0.024415046568561537,0.00010030041964988172,0.02928228402486366,0.021197238884641298,0.11453655187685,0.010981900223418474,0.00013421342955586375,0.0017352209457708475,0.007265101791936195,0.04752638452768604,-0.024693025096671935,7.230288469626342e-05,0.012301126556976384,0.042388351978951674,0.17283547587372414,0.051702069435297274,6.163977390857456e-05,0.005694330834789877,0.023624455335974383,0.051945971249917976,0.020772596034641315,0.00022173759247711555,0.017996291002516547,0.022621284493882506,0.10343267052391097,0.027892000973632525,5.438434466890079e-05,0.005216196590244759,0.017981072694352153,0.21203853302701445,0.0422303645116446,2.187923290340216e-05,0.005282100005160388,0.02415937784201827,0.08133849697054996,0.054871080693272914,0.00010382419383829288,0.013454801482508903,0.004118766596243327,0.01998840900759838,-0.024973019874623616,0.0003248006766407054,0.005417011721458953,-0.016206585437238713,0.08709308445935707,0.0030808828403112135,0.00010658096482933517,0.033532298371429826,0.002800906157340968 +2018-08-14,-0.03400721664063821,0.2595679345817645,0.012161001672028566,0.0001385500320532018,0.004118642408391072,0.04954513333525724,0.1860140581590531,0.020453111081929213,6.390955013079246e-05,0.006915058608328287,0.012679562791857816,0.03942157526149676,0.0036694415436081393,0.00014878786391331694,0.041633305936935205,0.013299631002037257,0.014189987148966668,-0.04937169774227566,0.00031631912148870605,0.008710691600525393,-0.025425052580604797,0.05801748381428314,0.015783521034632486,0.0002292982510900287,0.001684464052930152,0.014272554049847432,0.03203022401836534,0.00876684733402296,9.729453797172787e-05,0.010031071527505441,0.033699539723597974,0.1391135046111478,-0.0037100005948772535,7.107952758831668e-05,0.006289902942179295,0.0239913687549676,0.18116659876272834,0.0015557878334054019,4.5412510323675074e-05,0.004502156178536671,-0.0006453345850667596,0.0004917442923396863,-0.07986317964702187,0.0010120230390777182,0.00617820600176152,-0.028005289641500255,0.05247634005599734,0.0002769043429462223,0.00018661150582915308,0.007196704234127944,0.014949625222012809,0.01181339036052758,-0.2294769709484821,0.0006185575448415038,0.007994162556204694,-0.008978302708748708,0.1266236482607899,0.048139016431185656,2.1130132045713982e-05,0.005537666448718271,0.021907597835307643,0.057813119314211604,-0.11175145589431554,0.000112569152205468,0.023711339418879204,0.03495331193026565,0.1847470530650905,0.36680176706623674,5.3256501238476993e-05,0.008468472731664603,0.005807755589331675,0.005580953807483085,-0.006988531421407003,0.0020296580521813445,0.010293353159822683,0.020200881333194923,0.13481292170053227,-0.23007611247442505,0.00012330790077787174,0.0015187577337535906,0.026821672182999967,0.15863413879454308,0.011841227288630686,0.0002618167496324826,0.0016705689294095247,-0.01911567341053428,0.10544294011828607,-0.13387437857974685,5.1066142283218114e-05,0.02344213070135526,0.007848685549395705,0.049019142650489844,-0.0024685812609960517,0.00026388701838269817,0.006797549084950063,0.04010800464534312,0.4118155897652633,0.022596952250762577,4.0416481654295475e-05,0.03511957265120039,0.012429056721584657,0.12115750944359319,0.007953658005408459,3.427437482041068e-05,0.0025805528713854233,0.008637645287437034,0.02312184563437118,0.0012274396463749066,0.00012033601452894416,0.015116076884147085,-0.026617133613367615,0.20701207226542503,-0.08036932281520007,2.9700105222452506e-05,0.027954779761999393,-0.04591257851968069,0.16088849325720045,0.2998031458385772,6.32679964981272e-05,0.000884708438144987,-0.006507900676852915,0.02081466563221539,-0.02612459422203487,0.00014296182151533502,0.0024424687112968527,-0.01885793287103795,0.01671948506031411,0.007082646526516292,0.0006446837882954844,0.0008337956508518919,0.02844597051748616,0.1142913679439973,0.03045804970285601,0.00010475947996296556,0.005299037066081428,0.0015663498220832588,0.005359396606416932,-0.016096400911258243,0.0018758237916860264,0.005173321512331776,-0.035175646920210676,0.31316020993498056,0.05889041905236815,2.888402505893669e-05,0.0021336674606581164,0.006562473943403577,0.020894083995908773,0.001541853447236837,0.0010268701404505848,0.009236946420595995,-0.020091401004331457,0.1565675371643278,0.030215059539655482,8.545434406996445e-05,0.010267322403601856,0.008441426588143149,0.011245453719145974,0.002422476893348897,0.00017716757944204393,0.002331809417151829,0.0037146044709552473,0.005124075198064708,0.0005158134549620418,0.00041610314312913384,0.009100971817567012,0.008615163151468956,0.032857633289002916,0.009227756839463317,0.0020322520450345087,0.0035229810099533456,0.04076160590749028,0.14618932974973986,0.015537683034815055,8.94594000450924e-05,0.01372371810736241,-0.0540470737892076,0.08702291727897457,-0.02848693223895432,0.0015438878132669248,0.02694468871915623,0.012344111137584338,0.03475641664214908,-0.0016009784999469305,0.00014071515226983611,0.013630064502620508,-0.0043854429441536015,0.012624204407721872,0.0004860757939223032,0.0001408217779710618,0.011106931589914867,-0.019213835539685996,0.07535687478898342,-0.011189235629183118,6.223076145570832e-05,0.013900411761379568,-0.06932365590803909,0.20247518754470106,0.07885210230317306,0.0032450971722939783,0.036740587031408575,-0.022855727085482766,0.11872288939083618,0.011897636982660357,9.576375231389877e-05,0.011181331136746579,0.024261319535088446,0.11728111799202459,0.024727446594427095,0.00015001928971174877,0.0018067258401102582,0.010526137521404223,0.05467445732440049,-0.012476025973719655,9.106117655252938e-05,0.01062680969581856,-0.059673719655721054,0.2698291035394456,0.0700568027718204,5.558296552959711e-05,0.0006408592180589649,-0.009749903413205691,0.017077805391229384,0.00014254850353764882,0.00027835411576640343,0.009667129600698076,-0.0027092501773596303,0.010405280205602085,-0.007879571695406842,6.474551749929895e-05,0.0035676375164911643,0.001398728527050371,0.015865290256627137,-0.07356018714500263,2.274661075364096e-05,0.009374815824510508,-0.010960864426365619,0.037566035309606824,0.015567271823061911,0.00010199019173078345,0.005404919316486436,0.0024311534516490174,0.01026532459580879,-4.2636095843416194e-05,0.00037330830880368074,0.004170139507162999,-0.02408597714232632,0.10232587447913359,0.005073714291350829,0.00013481884464054005,0.012123766353920122,-0.0005855592169823448 +2018-08-15,-0.020283407413938276,0.14075808056325342,0.007988754103896633,0.00015238919045931326,0.003117722422525721,-0.006866880601925099,0.023819089170195328,0.035888960651203755,6.917431583549369e-05,0.0008630149016042336,-0.041099610384682406,0.14339055662927255,0.022119593043263004,0.00013259109545851494,0.02228281828353341,-0.014362168053724415,0.012610846443026723,0.0021252193286485665,0.0003843648130038191,0.00404081408483561,0.008475584651522492,0.018776580736030793,-0.002479807950984659,0.0002361842477910912,0.0015194244969213588,-0.018119677437276514,0.04366366384944745,-5.252453857348436e-06,9.061018709359794e-05,0.0003984452262904448,0.021006937232328743,0.08032471451908105,-0.04669798818046828,7.673675009373256e-05,0.01970766009299172,0.019417304358914138,0.18219168411781336,-0.012964183320905525,3.6547611710429984e-05,0.007002806315413419,-0.013617259971883816,0.011538543169042535,0.02381791538638763,0.0009100883106046577,0.005764193740945508,-0.07670779931769935,0.19250416020552838,0.2581912154487468,0.0001393353427623995,0.0009515839597341142,-0.019966459042003736,0.015313017464441643,0.009704971980965234,0.0006373303965570984,0.0013592057319824712,-0.001038443792517056,0.014500453741717961,0.005257078260942483,2.1341463194830335e-05,0.004698747116362275,-0.024835176654626204,0.06842894162479587,0.03455581192562066,0.000107814821563376,0.008220387359614088,-0.002464533097727899,0.012494383024313249,-0.010369909308325263,5.55241166360573e-05,0.009003584592976363,0.03344562214900863,0.022866164475254327,0.057630459282325186,0.0028527842528850928,0.008043643294843392,-0.000508449193504153,0.003787048035357484,0.0004315416053625695,0.00011048386455116706,0.01858114522051609,0.01891538078751055,0.09936378255861625,-0.008077811188668325,0.00029477809281978565,0.0015868550782932643,0.018620491699760933,0.11415182350795422,0.01152166373027346,4.59482787879349e-05,0.0005517592972404601,0.0182308605225587,0.09916630128765833,0.001185172573978005,0.0003029910922627639,0.019278453710501277,0.06567473800976834,0.7985726856412942,0.05871547228309222,3.4128258586190325e-05,0.007820634341529626,-0.006040336703175256,0.06565627443581058,0.023969311753430447,3.0737364078482905e-05,0.004464363031152271,-0.006905701144157142,0.01844649457985614,-0.0007440664448531789,0.0001205914971054115,0.02371735993332852,0.022964971177176517,0.17997359523293283,0.01415672438998074,2.9474706442175614e-05,0.016056230547758475,0.0007145712258614681,0.002516532340675213,-0.03588521498034522,6.295357393669066e-05,0.004114597941640931,-0.010364719913886041,0.03362265659686519,0.01899352102116131,0.00014095294079033104,0.0028900874257285812,-0.02948436084737598,0.02890299193094035,0.017128833436690003,0.0005830750758636141,0.0007201034644449932,-0.0050124472901998075,0.018204414810308846,-0.08780306899189849,0.00011589350695803359,0.005023088586600213,0.00036232446100310225,0.0011667500965237465,0.0008431253966692322,0.0019931454109115053,0.036025952456590724,0.04793456198077906,0.49148867725512724,-0.2270521146715989,2.5079417273323115e-05,0.02325578376845367,-0.00714811806173823,0.020713833121219383,-0.046680724837793085,0.0011282426516590009,0.00759183230256291,0.018503675576005175,0.13678542433289473,0.02574247646853301,9.008320445554304e-05,0.005676950631724749,-0.021571143212378588,0.03518162809120207,0.008964076116327513,0.00014471135668722796,0.011094487382056453,-0.0035784810636256903,0.004921438600267866,-0.007483110459781761,0.00041735975230034795,0.004234896982645264,-0.009541108246329219,0.03426383224974883,-0.0329144293997281,0.002158307048657273,0.010069495710116023,-0.015081334273081627,0.06129131398503768,0.019815405221599452,7.894619526595754e-05,0.011490786806879283,0.009094872235970847,0.0137119669457525,-0.03652083931323825,0.001648822998906298,0.005243497616466365,-0.0028535029928268415,0.009747045324735118,-0.010929560262317561,0.00011599022297591203,0.011879192542696936,-0.011315823357721667,0.02377220382615611,-0.005537959071560112,0.00019296435414295122,0.011165248703240751,-0.009645761244143371,0.04182695140959649,-0.05364216865814344,5.62852009663627e-05,0.0008131917624285919,0.018304667527552054,0.05472585460062986,-0.02768271465338645,0.003170205030577793,0.020390164068432307,-0.005578090760460863,0.028368604151684136,-0.01652612851203439,9.781110825715858e-05,0.008002945689065007,-0.004806301433085971,0.02480217150436364,-0.13425420629124468,0.00014053421844294458,0.001754833298976822,0.017711138594332796,0.12855924852076228,-0.046767549409395225,6.51616173366322e-05,0.009633831833758518,0.004638569032600603,0.020556847772233645,-0.009622691301781066,5.671199164065811e-05,0.026576345671013676,-0.02550674438802608,0.04659302824117207,-0.04689084358940311,0.0002669091648453712,0.007464474724349048,-0.010719370671444994,0.043506842265071795,-0.003532873709860964,6.126692753694052e-05,0.00866045684812615,0.009065435038445716,0.11315536970135807,0.020203951860259046,2.0670204233810758e-05,0.00942244072502773,0.00826269000521591,0.02674019967266967,-0.03991739469762421,0.00010801045066138068,0.004767475994946788,-0.01840707122186778,0.07773415997390232,0.042871599121010635,0.0003732508057030001,0.0017162440512775235,0.04694720959301702,0.23570416929027543,0.04592268225178706,0.00011408126164313928,0.006323254050799334,-0.00025440340617227593 +2018-08-16,-0.008002525920837042,0.05147160368703137,-0.0155876778878992,0.00016441671761912696,0.004424866980076969,0.0015561320397768248,0.005309952862258618,-0.0175936795116406,7.031796689426588e-05,0.0039821602441447446,-0.02836649143170008,0.08677340942795012,-0.02313743257530072,0.0001512224135659662,0.0030849993804252674,0.01743163503192956,0.018832918986417747,-0.026245530023860278,0.00031238368417784703,0.019080868556000913,0.01762617722460287,0.03769672636413972,0.0038713705561454893,0.0002446539701236598,0.0009124751173309356,-0.012469287553674565,0.031880464392424306,-0.0008653094671801583,8.540115437416307e-05,0.00404460180942325,-0.03348335472058579,0.16068992757718595,-0.008437666336106816,6.114066583175838e-05,0.021924876081635063,-0.0014724644254286519,0.011679311814614507,-0.0039684258475049606,4.323407505578655e-05,0.007766731287621663,-0.013098200780322394,0.009046323684793037,-0.03966888099207132,0.0011165657626501435,0.009779528245410262,0.013285223153091233,0.029459071847598852,-0.020624922838012042,0.0001576927331415884,0.006912430683277777,-0.0009901950730628383,0.000851437038879233,-0.0013484831451783213,0.0005684504054237538,0.003891457729236244,-0.03227173948360138,0.4454444164736242,0.27702032292875267,2.1589950414128613e-05,0.009139988184749483,-0.030559750586176267,0.07928266768724662,0.025097082296559707,0.00011450450891709503,0.02212386528989158,-0.0007916033679591837,0.004180168212277411,-0.01843931281404513,5.3305950692807666e-05,0.007704067670278135,0.023135200956567195,0.021027613262034863,0.010945420662873991,0.002145884129715103,0.010683168951827407,0.007899081169571777,0.05272382392711809,-0.013145969606528864,0.0001232882770388427,0.007220059403424663,0.005276122225888896,0.02495596106343669,-0.0225074505347104,0.00032737746414631373,0.011054327528052302,-0.013114684255447802,0.07942671422093779,-0.018752111451788647,4.651062745101394e-05,0.0003432975409430833,0.003536300118324117,0.01958953901875788,-0.005836752927542089,0.0002975169455621432,0.01677524223963932,-0.023610615202968834,0.31785042619780296,-0.011933572560170906,3.0825826979621024e-05,0.0023463674078237962,-0.00851680708901431,0.09464513391889846,-0.06282076176891573,3.0064932235916082e-05,0.004225183275488207,0.02831302720885118,0.0916668697059143,0.032264175246225525,9.949394724277378e-05,0.0031153516585670097,0.022259585471219083,0.17249099926901773,0.01307735427824927,2.98086982253194e-05,0.009509639430426913,-0.006216684680523776,0.015647952684768877,0.000555133157297778,8.808028230429939e-05,0.001685523843265404,0.004093693484742942,0.01726088048087311,-0.060631200270937546,0.00010844286227501668,0.0033884805124641147,0.05615802528753938,0.05064037333145045,0.0922886797532836,0.0006338558322621455,0.006142227485612078,0.028780872254392714,0.11096614014642799,0.041973754768118064,0.00010916903745791906,0.0057826740342283925,-0.0445343640072829,0.14046331023022265,0.02281961460318832,0.0020349396327692584,0.004619161655452956,-0.019545704610574033,0.19064826109964442,0.01597201003266393,2.6363355012513186e-05,0.006178856104883361,-0.060118887259094,0.1648216722658695,0.08580206805958715,0.0011925260844656076,0.008500042939133394,-0.018078023934329914,0.13575621686286526,0.015652610302965907,8.867820085191135e-05,0.001056273799278339,0.006097853176359825,0.011000482202114956,7.155772417333655e-05,0.00013083098972667816,0.005997476074425774,0.03456004751977812,0.05034298476527474,0.04145440027977636,0.00039403906881053957,0.001503768236774043,0.026286466088921753,0.09495709462437346,-0.06497827502580829,0.002145631454226792,0.00627552739772614,0.01071568928365127,0.04251145214649132,-0.0025763481916659657,8.087318410207638e-05,0.005041490845705271,-0.0828815761540182,0.12462398742238007,0.07357566746182384,0.0016532310394392563,0.025963796912167818,0.017244020241726107,0.066852771153772,-0.013522193495277444,0.000102196293831872,0.030070384228866674,-0.025985447142529924,0.07476142965945883,0.008009176713888155,0.0001409006422244829,0.007885921200373722,0.02863033862937961,0.13359799321546617,0.01054664316900225,5.23046710533855e-05,0.012176341734502953,0.005079199065761324,0.0169846943064723,-0.0034605476097017353,0.0028343635698931243,0.005986446312914789,-0.014294874484894323,0.07864829074603473,0.00041099514572887037,9.041315586651966e-05,0.0027219018080301824,0.018693911728507345,0.11296293509468976,-0.017221088220861186,0.00012001209137777271,0.005982387423188936,0.011699119104955252,0.06795288127727764,-0.05657196756259198,8.143179070032977e-05,0.00011952888572679913,-0.05652316877922736,0.22783477816075837,0.05435395831164144,6.23525009569141e-05,0.005882045229670702,0.003181539243635515,0.0065927248234529685,-0.01232058710794511,0.0002352890572935592,0.007028253949786239,-0.014828852936072771,0.06481805775673721,-0.02043719937401708,5.68886883427465e-05,0.005581053717677891,0.015281574074717263,0.18298732258049333,0.033457644747381866,2.154658136437088e-05,0.0036113771834057236,0.04665667050344902,0.14404454815913892,0.20831588102942145,0.00011322071222360558,0.004219699519944915,-0.02120279061761227,0.07886196600812385,0.043220385211416516,0.0004237926260969962,2.4019704233463335e-05,-0.033833080133600674,0.17720407092328472,-0.05689210857827605,0.00010935525021172861,0.007668297764658605,-0.003028359428355402 +2018-08-17,0.018907549503102448,0.16508748175511462,0.02798424827558417,0.00012111772011212944,0.0155163784188412,-0.024894621584848314,0.09224178153602311,0.07784674208495175,6.475724639839278e-05,0.03167239575285461,0.03389655547574896,0.11069430213417024,0.059036973770049364,0.00014165356401258714,0.01407825119092205,-0.0002136634268528985,0.00020805895481490014,-0.009624247365048673,0.0003465864928447468,0.011798146563110758,-0.01929429263337913,0.04152752445934042,-0.0768864393959728,0.00024310315250815107,0.0019868938849106335,-0.003377037400183577,0.008861232550538755,-0.028482675929657118,8.321248201157654e-05,0.0016569279355872584,-0.004700510214028,0.017859856903021536,-0.014086989487920311,7.722481579010805e-05,0.002783304412893803,0.017820236030560578,0.15068588243647923,0.006548830484949159,4.055454196914056e-05,0.009267395399728135,-0.05447503704957567,0.048264818819713846,0.3402801426046519,0.0008703854865739368,0.013637038764850857,0.02479399212424882,0.05697161501375184,0.060439774414198844,0.00015217727899351574,0.00844238686455728,0.007065364998532194,0.00498267939234443,-0.06101741582827863,0.0006931001887812526,0.004283405568095321,0.0036835761728497823,0.05792029055961548,-0.0008322167490025119,1.8952290850751636e-05,0.012257715476639067,0.029694072328311755,0.07881471338876031,-0.06401302810160851,0.00011192149414611098,0.011882492579911459,-0.012359651658446975,0.05398522662627852,-0.007073666269126305,6.444557758510149e-05,0.006108573219300176,-0.02171140175358573,0.016217042767198216,0.02400752802126951,0.0026111942111482567,0.008356588721497598,0.029493789227012093,0.21704661265129574,0.003918044045856194,0.00011182262106559897,0.012549310616778563,0.015788161003096688,0.07911563953926738,-0.023502917545463745,0.0003090134874346632,0.010285846836657935,0.03592928742959629,0.2149594578218197,0.03558452603480889,4.708179392073386e-05,0.0014100787256095598,0.04681033618028894,0.24449002567756964,0.00599865456336561,0.0003155494455622114,0.020849649097379946,-0.033324764552928376,0.40097986886460674,-0.05689375847230231,3.448853536911345e-05,0.005040096857519374,-0.0042767499292684355,0.04657769490088959,-0.05637834987081227,3.067733113282061e-05,0.0029887516275505254,-0.05616053715637707,0.21542692633015242,0.09241623490963363,8.397577561840556e-05,0.0010804756952701555,0.013813719890751596,0.08725308053390678,0.0011991950798893073,3.656977197800542e-05,0.014231920327423287,-0.010723960020807674,0.030069714492902168,-0.0032185394167103657,7.906845704625978e-05,0.004867323106881484,-0.0036650034790079826,0.017843017581228957,-0.012767380332406823,9.391926462092903e-05,0.003699020192031762,-0.07100270395645211,0.0650858814102644,0.08583060020955496,0.0006235390527225388,0.02637151078821799,0.021755419989226154,0.07573791545681356,0.020237732217776264,0.00012090385069898258,0.0014208085504640044,0.044529822738428926,0.12967770342595167,0.035121412287478004,0.0022039656950819083,0.006404637496992779,0.04764375282785215,0.4122367009259783,0.11742885017857434,2.9719500391313005e-05,0.00946505674196825,-0.05805642721286835,0.15808632301466854,0.06209752923051979,0.0012006800025750422,0.00512016105577122,0.013255035497360622,0.12751523315761457,-0.03078817709257827,6.922205196462113e-05,0.0037210501365817668,0.006157816651705995,0.009537678406558725,-9.19517274154516e-05,0.00015238052490683022,0.02235530242991759,-0.0034481528682641337,0.005095756275579418,-0.07427850593305427,0.00038840228580736225,0.008936452569154334,0.007309721636171274,0.02922731671056062,-0.0021387681159093187,0.0019384840603602978,0.0015079412977485281,-0.03464128146303744,0.1467313011808392,0.081510724656358,7.574632219488739e-05,0.009655441762138763,-0.08911114055248093,0.13513775108449025,0.10735048609836079,0.00163920211921703,0.020559694137916522,-0.0007457613862554236,0.0024538561795118172,-0.12199219674365867,0.00012041118328442455,0.034124344762050826,0.002933645320395962,0.00917702805537065,6.899890520991766e-07,0.00012958833887072166,0.0016427220440960904,-0.0023863473033026964,0.010943858080971328,-0.029821531568882675,5.322027601987865e-05,0.0007928341968232921,-0.006325983392421774,0.019348233047639437,-0.10520351398764696,0.003098880260501932,0.013372245203055095,0.00892102694956808,0.04013492293621736,-0.053535508383891865,0.0001105688999001894,0.016881920097856027,0.023528939316340123,0.11156358456556344,-0.032050862350567345,0.00015294689834664652,0.003264342755499091,-0.028561923169146148,0.1425931293581844,0.08811783753776223,9.474090853049605e-05,0.011458960158289176,-0.01331444718777929,0.058460135011398365,0.0014853410149155114,5.7241462360565825e-05,0.009869187163809858,-0.005634274900221232,0.009810036658653688,-0.01922205591194397,0.00028002499393413256,0.02678529287317663,-0.01605414774054476,0.06209811417131341,0.004130772843094917,6.428700890286854e-05,0.005335220722394618,0.0056219314345171455,0.05690633769947894,-0.0006733233959935097,2.5489199314640018e-05,0.005133947895759859,0.009615398705503654,0.029806799499218106,-0.009541572964879595,0.00011276151843900376,0.007254271451119849,-0.018918519921892894,0.07939381279800092,0.020974276032762768,0.00037560249512391994,0.008606253491651297,0.022850695699299997,0.09645569473000638,-0.0024685204096076244,0.0001356885962230806,0.023103594501063234,-0.0028311710020320377 +2018-08-20,0.04015537679582205,0.24917743604816825,0.079935763460394,0.0001704203985340348,0.013299828512869429,0.020689028657849298,0.07679201006169581,-0.07249901867251543,6.464494825998772e-05,0.0022002062862823872,-0.024303417537783607,0.06919072820676495,-0.011360582456568005,0.00016248626329837826,0.01913364626975105,-0.0093755486719916,0.01022163584631834,-0.014444617692746782,0.0003095595055014995,0.005314620725173903,-0.013917870765193555,0.03388943249469307,0.0015856442750078333,0.0002148850864958206,0.0035991715097378656,0.014365297469076754,0.03914425992491179,0.009753553857722865,8.012965572860949e-05,0.0008653790208662307,-0.014371801718016957,0.06019889320688637,-0.04889315636858336,7.00507138684256e-05,0.026810071057869794,-0.019589441671464657,0.16775976521399485,0.008850273731265207,4.0043576807124134e-05,0.001358626241687543,0.023364441374614596,0.018641655296905982,0.027153193779479664,0.0009665308384031869,0.007507917536007742,0.02721625959098153,0.05544833591227715,0.05694506553696338,0.00017163340093515292,0.006425292529549487,-0.000997919348304077,0.0007219250541606692,-5.415310847432479e-05,0.0006756591884639839,0.01564583681704333,0.012595732895816645,0.1475251673490939,-0.034993941950394056,2.5443691189926315e-05,0.007136354369282372,-0.03863953042963047,0.09281879719372549,0.06747689526829839,0.00012366503979509936,0.031939165323290344,-0.014561128841922113,0.08766144879369073,0.014488240098630095,4.675717016966807e-05,0.005414573237934624,0.02430337908382512,0.018703271940604733,0.02052707917892748,0.0025343818236711023,0.026090055868632604,0.00872992270747941,0.06751844977922385,-0.03764573266748671,0.0001063996119413508,0.021711849679653127,-0.027545871214898012,0.1685193285111348,0.026500959129533458,0.00025311333417120065,0.0022560959697618442,0.05347662366184662,0.31376896473572363,0.05418438893612222,4.800814779300831e-05,0.014901890597173848,-0.050947139778368226,0.2836178093718683,0.06857496239326463,0.0002960554883161144,0.004912583705127966,-0.0399025919034107,0.46810860867647186,-0.005419742180024715,3.537404384486078e-05,0.024025210720874927,-0.0009806550095409117,0.011172481979452798,0.009838053404736648,2.932569392184405e-05,0.00581142232519981,-0.03455811682663773,0.08561623657809295,0.03260592409374588,0.00013002195464609912,0.015807437687402785,0.03390737168800793,0.22193794351006654,-0.01152133153045524,3.529026711191884e-05,0.002442903122544364,-0.007549244539097926,0.023412935381070837,-0.023913833932449783,7.148666047348405e-05,0.0012514489019332799,-0.009383018704096063,0.03576133607119099,-0.008735889776561003,0.00011997132121245133,0.0025975818666291554,0.022373181131124173,0.020168189993016252,0.0016200851701477156,0.0006340687887588862,0.010938709464331989,-0.004339660325364828,0.01773364797069532,-0.0312982639803015,0.00010300152711824423,0.006836301751282003,-0.01969522373910961,0.06665840509864839,-0.09430484973746164,0.0018963791648903348,0.030802625718814897,-0.032919410206645495,0.3252494433890326,0.04254041455489653,2.602661446924645e-05,0.0005288276524048321,-0.04346566118653749,0.14120325310173415,0.01472479981789995,0.0010064051670500213,0.003016755546538741,0.003282665574104155,0.02669217678532107,-0.054417766426222494,8.189705621090943e-05,0.01045178074749076,-0.00158470878719218,0.0020367524285730995,-0.006276300627680371,0.0001836354863573638,0.0005026119068512777,-0.025971525932800905,0.03465908221438753,0.11496188737471015,0.0004301147364930791,0.00896194410970283,-0.02019378781257557,0.09310197759010012,0.0023832720050952663,0.001681160679395415,0.0015124566633178274,0.018339184551031906,0.07729637659333306,-0.035992364688357203,7.612218667521248e-05,0.002824758906792682,-0.04748222957806901,0.07470871880838348,-0.015745121529071714,0.0015799269477800942,0.007292555888022048,-0.025750699196604807,0.083332867483424,0.014979006553375238,0.00012243024993507736,0.007111161854278753,-0.02520517395045042,0.06395267423199802,0.006667688336093294,0.00015976857642502755,0.015416628355028264,-0.006729231309214916,0.028759714571054168,-0.03104309177407322,5.7107718541934923e-05,0.010866861819580983,-0.05365599818412961,0.1643537081227602,0.04335463381810695,0.0030942601881633553,0.0060500574683965795,0.03812027188644749,0.20168026070700482,-0.10933815064449284,9.402279692718633e-05,0.023035950648323845,-0.022551979532755433,0.13158414774052785,0.06508061127398425,0.00012429162932922183,0.0016382009860837258,-0.007750052123217112,0.05104102557247222,0.008611157110718339,7.18181030790839e-05,0.011867707203022142,0.02992027401030696,0.13584011579162097,-0.0052319383699805004,5.535857703742242e-05,0.024109644012443254,0.03345290291336061,0.06495581895606535,0.05120094322356726,0.00025109909157431455,0.006204531911992259,-0.0013365982022750156,0.005485794319085965,-0.0259025311828643,6.058648095986211e-05,0.013397434934969636,0.028113907731984612,0.27436906234790465,0.06917753933503608,2.6437315967528432e-05,0.021267378010120352,0.024067543802920973,0.06723300679095894,0.00042450442053564355,0.00012512906553546356,0.0057853425041652995,-0.011049163536369162,0.04235280596376565,0.00797952975098044,0.00041122090439168026,0.005582198959965189,-0.01575037242452959,0.06959799889948101,-0.09912442453458563,0.0001296181654825822,0.001186241155862863,-0.004464446447772762 +2018-08-21,-0.03172869003752815,0.2457350399801551,0.0022103725517934746,0.0001365436908534328,0.0027913162247876046,0.039419371472046466,0.11421592679644306,0.022837538829401344,8.281205344698416e-05,0.0013567462481101358,0.028167151588976577,0.08461022816980664,0.03607339740119457,0.0001539987761089822,0.0229993508930969,0.01724529471127383,0.021801755296758908,-0.06935948801239704,0.00026696050555312454,0.0047332003490826325,-0.027381969962326825,0.0643334595839113,0.020810648195773822,0.0002227027374770759,0.0009484968776775522,-0.01847557054847655,0.05439354941436854,0.015376021346199356,7.416469231367022e-05,0.004572561038311473,0.02390651764410898,0.077697650070139,-0.038625115743384106,9.028140106614294e-05,0.003400972546821776,0.005145689073785655,0.04140076584096055,-0.010222755949629042,4.2621995629393557e-05,0.015212823003203918,0.027792314470715087,0.018532080628292275,0.04879028084876279,0.0011564991576264506,0.002949901386103553,-0.02632091851919033,0.054352896773785395,0.008583054098923446,0.00016933246561256354,0.019187586582332977,0.0434946080581912,0.02808183764286073,0.19681962578963275,0.0007570668950078154,0.0013585428775835192,0.020847560921234878,0.2921630921937252,0.053657269358487296,2.1264378240035286e-05,0.004695021169773654,-0.021918771445991712,0.06846823925099398,0.02289091587174816,9.509946778262659e-05,0.004099810249508813,-0.022866929910526072,0.1496316164144218,0.04693223700909065,4.301761332294582e-05,0.0047153293510556835,-0.01667026860158272,0.0158561333832698,0.009896118528205256,0.0020505401609098545,0.008209183689542076,-0.04125117791675149,0.24821324529291594,0.027242009840523065,0.00013676139093726506,0.011042963575046529,-0.05514078814447744,0.31748085051042646,0.10973737795564194,0.0002689451185942766,0.01656258736240664,0.005879991409480057,0.04483706062845141,-2.6437581205552742e-05,3.694030812596839e-05,0.009814410339408677,-0.12098475263288645,0.5991106069625175,0.20849377899347243,0.000332820784289675,0.008281088372449799,-0.05000947823419631,0.7285074988746489,0.03700534596494535,2.8487118894840113e-05,0.016978418526020285,0.00192644132023197,0.019101447664617036,0.0014086755515165506,3.369544614548079e-05,0.005830025343507893,0.028620057063975888,0.08117256787586799,0.017740428790874074,0.00011357531922598568,0.03064867940674519,0.005920180847763943,0.04756669241619262,-0.04933410413531763,2.8749109446434255e-05,0.02983263067221445,0.00823381093733432,0.024839534371888627,-0.011463100239458027,7.349111261051812e-05,0.007513410369348325,0.0025744739623044183,0.009526999586167702,0.00013001781200651895,0.00012356086873084037,0.006538544250181978,0.07633513567525126,0.06633137019347525,0.1119984771583315,0.000657780621284827,0.017047612259949656,-0.0005708893176701094,0.0021861223867717643,-0.011470589475315627,0.00010991664253098937,0.014400702298922308,-0.03223805689008385,0.11199257583500451,-0.0003674602803387545,0.0018475610523071824,0.009685868240490104,0.0548678810088343,0.4807510672822761,0.0966089439639649,2.934810919960018e-05,0.0010216248402620176,-0.023433844335667194,0.0683200649343218,-0.10438992314273596,0.0011214154625049473,0.01716828324233624,0.022315556546604876,0.15914879900458134,-0.0319364151750371,9.33748678466917e-05,0.00763531856648936,0.00890944798530144,0.012312225466786314,-0.004714803973548572,0.00017078889281000643,0.008018787391077725,-0.010907474221821267,0.014416082726944408,0.013334398366961863,0.0004342910138471664,0.005622322837812452,0.008486975330464287,0.036407619603852526,0.017835752453895203,0.0018068038032040372,0.004909394997071315,0.011289057947776208,0.03840575787201605,-0.051699539853781125,9.430869452399157e-05,0.009758248987195958,-0.011570838959322023,0.015399444784691978,-0.002612439646810097,0.00186782841530646,0.0002102191973509022,-0.030610554123755695,0.10096857025836717,0.009597546754358642,0.00012011604427792559,0.00670435028733123,-0.016372313561890672,0.03596917906721358,-0.0015153155996331896,0.00018451849505183982,0.005184196280075605,0.013800780724206277,0.0621202614096111,-0.013085818507652402,5.4223095366763e-05,0.00994577689693625,-0.03435271852121843,0.12726744678699994,-0.08230746277408436,0.002558361066911754,0.003348458344988132,-0.017923591517631406,0.07742842506434436,0.005533515613302189,0.00011515032891724016,0.005004625053649953,-0.004849268535834667,0.026547226041275743,-0.007982048158767309,0.0001324701021474977,0.006950554246050152,0.026128984456639255,0.14869164897093579,0.024613447616455716,8.311600327311162e-05,0.0040343066256670395,0.0319280437050976,0.1307640302584262,-0.01929986514168784,6.136650741091105e-05,0.015943432299346603,-0.0028450890631699353,0.0061142733990007395,0.002579387434065247,0.0002268717421446675,0.012627302382569318,-0.008594183314784053,0.036852263105605874,-0.005171633569938023,5.799022926506542e-05,0.007845521777715622,-0.001336439907966475,0.011400009842171436,-0.07960306551115694,3.0246525619014244e-05,0.009793900967871284,-0.007969814216903227,0.024688007010834533,-0.004820299192917285,0.00011284209231603255,0.0028882685150162886,-0.00012185285787290704,0.0004500519621130253,-0.002464429284744703,0.000426777024141046,0.006591430536253523,0.015519746744513518,0.08268157936151088,0.0031287380181646706,0.00010750970302901192,0.01834022269220355,-0.001409945014754662 +2018-08-22,0.00939179499737538,0.06251611672244367,-0.0502989825978492,0.0001588704753011819,0.0029931271991787377,0.046848101638799176,0.17401766262839247,0.018375133449733256,6.459653054719597e-05,0.015990361914283345,-0.013270855880420509,0.03979092973962837,-0.0007624568777357415,0.00015428085979872323,0.0016335092487475204,-0.018902100564830576,0.022427094582812092,0.004112455744673382,0.00028444932733882297,0.004685008838667407,0.040607838812478605,0.08345390991740814,0.07949075065453,0.0002546015012490243,0.004877939402198781,-0.00082136357987573,0.0022665412452560025,-0.038235091918120676,7.912588038410476e-05,0.02138906317351138,0.014611183959456412,0.059380078783956326,-0.033350667125738864,7.219955061277181e-05,0.01993544338284654,-0.00131311041084899,0.014119706998285974,-0.04641819376530109,3.189144330272129e-05,0.010394004802443395,0.010771207384351028,0.008055570937741957,0.005959577060942371,0.0010311286356808158,0.004446468733687937,0.028940365472450647,0.07595169265885642,0.04311225548370555,0.00013323810299072772,0.01338866746321585,-0.003008678553146716,0.0022102901956678224,-0.08143407719910915,0.0006653510571321104,0.008949855143008821,0.006334686503345642,0.0862033435430877,-0.001434380957766318,2.1898975888633083e-05,0.008585441999928391,0.06934442294429526,0.19349112317067474,0.10630951086793398,0.00010646369395526624,0.007761479356334851,-0.005480800506421291,0.03400108762820668,9.234293017475122e-05,4.5374620262682995e-05,0.003232059588519232,0.022042675842983354,0.021729647348222275,0.01903725119672342,0.001978493411599364,0.0029998255559502045,-0.02013289511401074,0.166956232245225,-0.011252993553775341,9.923290457683793e-05,0.002870728031401793,0.015880403401369238,0.09636966441136188,-0.0021415824647907852,0.0002551698836891196,0.011816462629694264,-0.06105579772419486,0.36825985248232196,0.08785077632941878,4.670178616898188e-05,0.0134390215032459,-0.003063903982746988,0.017028613207674154,-0.0027668573520773137,0.00029653958654158496,0.00950642705536666,0.0016950381404857745,0.020747150102696666,-0.0021514146387643374,3.390402480215967e-05,0.0012253317056294178,-0.0176237918826191,0.22225285961954158,0.07431214628437073,2.6493156635841686e-05,0.006018988617656948,-0.011127348928978176,0.029756368942918242,0.0017984953942809768,0.00012045768924508457,0.007427295921819192,-0.0008686953807270658,0.005699219363444838,-0.10027732215074725,3.520825612946907e-05,0.011968058355622297,-0.005067882648494499,0.015474527025774716,-2.754001470672237e-05,7.26083467649168e-05,0.010777703105441228,-0.010600961094063659,0.04487163272352729,-0.02121468810832842,0.00010802442516177973,0.0015771946555275043,-0.07341460159664362,0.06679559087715652,-0.018941883720739416,0.0006282177625672664,0.02101963338776726,-0.0023273968107198175,0.008281229701918606,-0.10815068622906553,0.00011829369915842468,0.003580140312727681,-0.0002792497978189887,0.001006226428897212,0.0006319519946039151,0.0017812149107625855,0.006176539686996935,0.023465177992562366,0.24065550586260537,0.004971192099674973,2.5073227773380217e-05,0.004070643816298899,-0.013376751178642015,0.04546633263929851,-3.5812822317947726e-05,0.0009619045822742982,0.019654592029490985,0.012781029263322703,0.08728590506127758,0.0007951382468928572,9.750959508471504e-05,0.0004095482910727729,-0.007614140107562387,0.012674780280602135,0.004179968371210448,0.00014178353846842976,0.001372581996364855,-0.017426731931830104,0.023981232733406938,0.04701196329231461,0.0004171078473683788,0.0129725977081822,0.026600933193222417,0.12884198215485515,0.06381229766981711,0.001600257296556048,0.005862588101352664,-0.020541058413883796,0.06999786169641355,-0.028964653335155643,9.415175390854811e-05,0.0036636411810493665,0.008488152138667888,0.011039622069645066,0.007024238071701129,0.0019113320438647922,0.0070733744477326195,-0.00030534488642786886,0.0010585470608366118,-0.028959499605572665,0.00011428691695662375,0.01198039898483211,-0.058756416012492804,0.18000777670194026,0.04575941233351335,0.0001323196688377153,0.018142346242145963,-0.010101043523072792,0.042457618616001926,-0.0179870610068936,5.806635111105078e-05,0.01694307456838896,0.008572575933722786,0.028335420422413733,-0.010970716026193933,0.002867475644542215,0.011371589889623309,0.002651716827404132,0.012345949953501517,-0.13746864286556898,0.0001068422937577951,0.00590611763041792,-0.01962843041192944,0.10894375622589283,0.03825588427983175,0.00013066040859536203,0.017128318014768294,0.023536190434568446,0.12618332557528086,-0.018251468704319332,8.822321882447823e-05,0.004637304379365536,0.010375155761324433,0.04203057894634175,-1.910282069321568e-06,6.20406941261701e-05,0.01686064528667768,0.030988397016632762,0.04424271766195316,0.03913552680577192,0.0003414968557050958,0.010999392572797403,0.01320659085166494,0.04432599287291605,-0.0035306027657404588,7.408778773647521e-05,0.008543775884271953,-0.0012497047374431113,0.014899193375031152,-0.015954366852385445,2.164093122211346e-05,0.0030652092057384664,-0.006837000678946154,0.021080041568840493,0.011054393959061968,0.0001133712994810638,0.0034374621649789676,0.006289049382120483,0.03280665241135929,-0.012732234446100008,0.00030216980095868206,0.017578461758162606,-0.017224449972180582,0.08478135226715698,-0.007725413559735834,0.00011636351168766365,0.01410547944019328,-0.0003764523074458525 +2018-08-23,-0.023814193282976407,0.1598763892268883,-0.010419171384113624,0.00015752087908592173,0.01472228918533947,0.005899879821857033,0.017842774341163662,0.0034241973560469826,7.933983792207508e-05,0.0008510183200571969,0.003579553366250881,0.012436000156674535,-0.020211346760379292,0.00013315127432019658,0.007192964141357276,0.015586391493497574,0.015706410572426856,-0.06712277248152473,0.0003349164590254945,0.014924010549270728,-0.011383952626876486,0.027102756421627648,-0.02285034200347271,0.00021977454524997004,0.01425182859425887,-0.0028510919119748403,0.007241843149956377,-0.0055448880726559685,8.596246165925019e-05,0.007952268801247444,0.0039667409092838495,0.013524745899716289,-0.004913460677529109,8.605865928930544e-05,0.008152641883726056,0.006319758658555493,0.05810246455053442,0.00022968843113431312,3.7299632569685025e-05,0.0016427855301040268,-0.015274882881218714,0.011767612950220338,0.016090373808456553,0.0010010005131466486,0.004381428751663702,0.01615439455299832,0.03950516571776218,0.016305115305234878,0.0001429877012616883,0.011371480110085,-0.03047566004158881,0.02251341183800705,0.09598635159457793,0.0006616619531963763,0.007181416843730214,-0.003806142658758896,0.043499616026760106,0.004974809298031898,2.6074886586231206e-05,0.011802781418815803,0.016541414377310014,0.04292858277033613,-0.16540087131255882,0.00011446616376232085,0.017595771232815267,-0.003957347208136495,0.021610534581260187,-0.008195711133276813,5.154665215486975e-05,0.013402589096398451,-0.01028673163020479,0.007890721500504733,-0.012616769328319144,0.00254263292739094,0.027159237701734524,0.022347810553779667,0.1275367351923322,-0.1176747782569096,0.00014419552864893505,0.00661694015360912,-0.039230322003159075,0.18940902804948484,0.04822819689939312,0.000320722500531689,0.011952440517615955,-0.0031429102486825625,0.02012512222748941,0.0001571973725229607,4.3990045224952544e-05,0.0034573550379108607,-0.0022720103559643926,0.012808916622335647,-0.1308311609546993,0.000292337625664846,0.024571450024940236,-0.02478935546531226,0.3362200663094685,0.0048694063591490635,3.059650615870567e-05,0.017997052653204615,-0.026522081813740595,0.28722198864778614,0.16090304927233853,3.085116970166e-05,0.0038915337185561664,0.0004983536248307693,0.0015458635001488186,-0.13645462686192258,0.00010384587123155014,0.002661524817323225,0.022807287354364526,0.17017944216065242,-0.06868932073167829,3.095700339031217e-05,0.021384863052197847,0.019044242254142946,0.0504754332614348,0.04843102952511631,8.36490521426529e-05,0.005121259041824198,0.0161747030813935,0.06762269279045044,-0.10283841952030327,0.00010936854940716438,0.010239663024575124,0.01890829245769066,0.014963052479212816,-0.009514514877433003,0.0007222834657326133,0.006026346799430302,-0.0010669870344152616,0.0037867262974469276,-0.016179610646322368,0.00011859905688637436,0.0008330329656702439,0.06552078089585114,0.2451229664756942,0.08359484934893774,0.0017155928821236028,0.00735841165381243,-0.032572238945000956,0.2594155005797212,0.05117164622822636,3.228746027724644e-05,0.0020205221187005835,-0.016915921698040834,0.05223515930727956,-8.904385483823062e-05,0.0010587758149656014,0.017847943470832395,-0.014071792198305297,0.10613162274276408,0.02067870970628022,8.82938088141789e-05,0.00019577352177563311,-0.02496251871912321,0.04266699639492642,0.02520881045518216,0.00013808347841793062,0.001592444264134984,-0.015478940532468781,0.021571658693279608,0.03172621066027421,0.00041187137092118105,0.010988171942118074,-0.008072050291612414,0.02723684457660998,-0.11364663561587318,0.0022970868075738314,0.0014372033234486552,0.008884037825028878,0.037417028433021395,-0.03890076295645456,7.617833485700679e-05,0.010957842398432354,-0.03076360227560399,0.04170490370829149,-0.0007316552610111236,0.0018336956595484608,0.05569164248356519,0.029183165621792385,0.10654224289813734,-0.01580925172233943,0.00010852420203029464,0.02453964454983836,0.03769520168097246,0.10550903184353659,0.06939314556308666,0.00014482942598729786,0.004498555023375201,0.01957655971170854,0.07973317208433979,0.021122292515942994,5.992544339759431e-05,0.02045965258413493,-0.0367793745132877,0.11439566140836166,-0.05786288925347123,0.003047283383226525,0.0021676720913661944,-0.03241440087352978,0.16438143868770586,-0.03184280814898736,9.809023892505184e-05,0.0004785647398919728,0.04121210474384916,0.20162134283224203,-0.03584776534406802,0.0001482344261503085,0.0026722086614293468,0.02443194883877806,0.17502812485132208,0.011029660695654074,6.602356473339724e-05,0.0005314828860464937,-0.00803372662837831,0.03897124497890085,0.0022968261452980653,5.181078403261209e-05,0.00830428152492908,0.011294817472275703,0.018450534420622423,0.00928278094913679,0.00029846929586409255,0.010085224340547112,0.012175561054874523,0.051933399539838096,0.02306651640407522,5.829839606968092e-05,0.0067748833836039244,-0.011659615862351974,0.14406478164910794,-0.04640686662172942,2.0881308156094245e-05,0.000370705301833664,0.014342153815784284,0.054199240572431355,0.005228034529034639,9.249753071039037e-05,0.014254536942167812,0.001207992163432196,0.00483631641039971,0.0003213972932372581,0.0003937108482985088,0.006630850125857666,-0.0051606666747437925,0.021391490336990025,-0.00461176977768387,0.00013817725547171175,0.020788179094365956,-0.00018315743941031045 +2018-08-24,0.01128841553474551,0.06969341881592561,-0.031183202181547905,0.00017128834068411614,0.0015014588726733253,0.01658949683316735,0.05837737939222051,-0.049343796018639925,6.818661719483861e-05,0.0135312555515636,-0.04144189017059561,0.13952008969721133,0.028821750337895136,0.00013740420165448745,0.018141704194759547,-0.03472125478751451,0.033970812505246036,0.07932837933571603,0.00034495094073670637,0.0067296945642732866,0.000954661814248432,0.0022394343978555317,-0.0038604439922673094,0.00022305346752599537,0.011713231816759324,-0.022439527587286852,0.05806213920404423,0.04722595048741151,8.438542009393693e-05,0.0064854533533658795,0.032192458758612784,0.11991501384341076,0.019323947310546187,7.87717404549864e-05,0.0078098336456626175,-0.04308719037696337,0.34716057235965253,0.12127260716981178,4.256144795444752e-05,0.012273073489715038,-0.021939426137493487,0.017677363660025994,0.018252929229932175,0.0009570895049564108,0.009049891508181833,0.016021339588065526,0.030627668500203563,0.004683093789545932,0.00018291392725472958,0.004644975622393575,0.0012473435930114385,0.0008960173458372044,-0.04470374387101213,0.0006804465895589936,0.004313636763181741,-0.009270362911410174,0.1293493131198002,0.018062182897691573,2.1357745080597398e-05,0.0010775284224633518,0.005311215440264165,0.012894611683178146,-0.028113755550300937,0.000122359216665718,0.0072178936025504865,0.01306422600629229,0.06381620354420876,0.035840940684676866,5.7625477755152684e-05,0.007866086796182508,-0.03059511536870474,0.026808406099348772,0.014184855791594106,0.002225891925670939,0.017878445949542663,-0.02999577415219535,0.18596451309597953,0.05022410786785657,0.00013273397651585551,0.0006933358357528363,-0.03025586069576737,0.16217607075798543,0.02577764021927986,0.0002888889762278413,0.01419585215861099,-0.005247710107781826,0.03216854304631762,-0.018742889439400688,4.595146906111739e-05,0.003606942165738841,-0.003206792774809547,0.017022269748009567,-0.015377790862813833,0.00031048472252411696,0.034536377249832176,0.024138788021290887,0.34724877989500214,-0.1546652332109222,2.8847286229095584e-05,0.00898926906030367,-0.01675151127040268,0.18282203195386074,0.03689245049965232,3.0613090219177594e-05,0.0005436816403985541,-0.01275258950335888,0.03634500669604751,-0.002315311758170248,0.00011302548593533964,0.011463291059922743,0.07283090161490621,0.5910146137713591,0.1300095856447653,2.846491182337256e-05,0.030856242926889342,-0.01983916837959244,0.060417018808728545,-0.01231632663438811,7.280170556312858e-05,0.0036402001843358527,-0.005107784999123659,0.018303474121939153,-0.04369158193064747,0.00012759911856746902,0.0020963413749627187,-0.03150236556502723,0.0294194445335583,0.007924144496751058,0.0006120462758545532,0.036915059583124556,-0.0004963178624654282,0.0016680964706257506,-0.008749674810653836,0.00012523472063629112,0.02081525577004733,0.008489528452294679,0.027880782950758482,-0.023576882676985458,0.0019543294539620007,0.02264721440452761,0.009576423999323362,0.07759362675950268,-0.039708423951198654,3.173653511128438e-05,0.0006366041332151883,0.04017405477684633,0.11732716464675312,0.06133881090382237,0.0011194852133887439,0.0006183301705147843,-0.0009812490887769402,0.008229066633968064,0.001661286821844465,7.940618490393777e-05,0.0047024977271469676,-0.004836319442847867,0.006532447099970183,-0.0060982688768537125,0.00017473683433651168,0.009054257038471295,0.025038731694797995,0.03141260439930348,0.021136756585374956,0.00045752233004353057,0.005159587167553279,0.009063232428079904,0.04190771170553639,0.018864536477199767,0.001676252780424011,0.008453819863491563,-0.012508230409567224,0.050310122176930754,-0.010109179141239363,7.976839816399273e-05,0.0031707460304447755,-0.006921426640918057,0.009193270556575437,-0.017455785988544425,0.0018715557589996667,0.009362998940606305,0.0031619519679453,0.010924709316137106,-0.01210764165858381,0.00011467306348647933,0.005757898761426037,0.01673961995002342,0.048097942307687616,-0.05547850204050881,0.00014108455501152242,0.0016450252157684839,-0.01683923598675062,0.06502320272281108,0.009833936885114265,6.320740365648213e-05,0.020358360936055718,-0.02660311908522623,0.08123157466114729,0.008902352090221688,0.0031040288165597387,0.012014358649546022,0.019596379911423604,0.09556901861097379,0.005997006601322061,0.00010199979404685654,0.01174683410738929,0.02015956934141436,0.10793191987130069,0.013080970014157397,0.00013545409293614779,0.0029319046526956995,-0.006421855706116649,0.03141057009600659,0.007326992391233841,9.670154725668991e-05,0.004749387900808071,0.034992232660042824,0.16700415702792093,0.02255615878744639,5.266132311444198e-05,0.002392793124566053,0.006226545323708913,0.013161384305491594,-0.0060372853661694505,0.00023066142850316156,0.037294732532527484,-0.003943146791350833,0.015709200810351223,-0.12199761895336354,6.241704863964423e-05,0.005281819600410126,-0.01366338645743804,0.1317334375587081,-0.0009162565414857674,2.676046236278178e-05,0.013557680868468926,-0.0033878302463352375,0.010292474573000745,-0.03859789167302619,0.00011505640571390863,0.008005169213948424,-0.014236789730659486,0.05028098362961405,0.011887257739573633,0.0004463096494994377,0.007711014376466682,0.02082106187852649,0.10058815031453931,-0.02682279752353721,0.00011855717675022494,0.023507840747373342,-0.0013941864061856992 +2018-08-27,-0.0027453845247354886,0.01787881002030365,-0.12622804845796706,0.0001623869615094855,0.007017192801286083,-0.004384185790122236,0.014806675323285652,-0.08056274807221137,7.10463749143297e-05,0.001922480770037317,-0.018516558678216007,0.06364756387601471,-0.008566481462792671,0.00013457850349589306,0.007540396417183364,0.005292319761383946,0.005331316297818466,-0.0070246224649594255,0.0003350267492410888,0.001968682032459223,0.00223062674972503,0.005846374685605688,-0.0010995979070976282,0.00019963562007633247,0.007215112566429343,-0.007155729828337272,0.017791172908469592,-0.03612424385513322,8.782053819707283e-05,0.00828805803183272,-0.05951243524279502,0.21663328918087082,0.08866911050028005,8.060693046022011e-05,0.017277158504371053,0.04438404162534774,0.31793447212793885,0.09269639714933235,4.7872691184415114e-05,0.01369821901750237,-0.02708854479038224,0.022365291746534233,0.03553502567112109,0.0009340193940184022,0.014679479507880636,-0.016459306053854202,0.03853616825198693,-0.0029512339404034376,0.00014934987991585823,0.008555247102577473,0.01459501574006607,0.010944733284638316,-0.03558753634279576,0.0006518140887374585,0.002852951446854637,-0.005123118199982101,0.059673632473168696,0.003500971661867924,2.5584367823021157e-05,0.01776651534201657,-0.0595175135766515,0.13706835711053078,0.12906141604785287,0.00012899076254779032,0.01791391687753011,-0.004626855672480595,0.02503921049741964,-0.10070290633371073,5.201482476811452e-05,0.003613176196851012,0.010143378778804796,0.008580287416008458,0.005209339595958144,0.0023057052063939908,0.011763225009884417,-0.04267328140704841,0.24116186774125745,0.07260129120144532,0.00014561278514678698,0.0002495877714237802,-0.015587118128243056,0.09635083141135871,-0.005720488041049702,0.0002505062652177768,0.006672947514671627,0.05672702677826486,0.31384854086454095,0.025221276494607783,5.0913255038535435e-05,0.02393873545892953,-0.023697886376528397,0.15656807967482975,0.008153127794668927,0.0002494555641290763,0.016353684894087627,-0.02259644830702239,0.28997062464237305,0.011906491583290064,3.233824221453896e-05,0.01592163433744731,-0.010247148214510116,0.11066423237729292,-0.013888398775315041,3.0936946840848005e-05,0.0024295222747576753,-0.04010026023990555,0.13380590225048336,0.03949031795448273,9.653719507549532e-05,0.01844000254227926,-0.058842897972581784,0.41722390765713163,0.0340289006114963,3.257746171542729e-05,0.0036881121232779177,0.002378405014998796,0.008023351448669844,0.001864873218139273,6.572148654461466e-05,1.3512795604375596e-05,-0.027375674152643904,0.10490690474936022,0.1735502114468049,0.00011931892859684949,0.0001393453534672402,0.030180490367183108,0.031183860998091995,0.011092838281073662,0.0005531870022344829,0.0173499224580715,-0.022613357516606654,0.0892791958769048,0.03587630477418403,0.00010661069831667574,0.0028615698040298696,-0.03816809269630722,0.10604099250895521,-0.04020040724990061,0.0023101801561274853,0.0314872104810837,0.014432881916696842,0.13671734725843157,0.004995740460106893,2.714636165164016e-05,0.019097107339079655,0.007290148428092615,0.019845984988639993,-0.05336933476484172,0.0012009778065381822,0.009329165573531872,0.012327271628971029,0.08533386837782486,-0.04713162175273872,9.61991368397109e-05,0.001602270452742775,-0.009577053977596551,0.013233644741419155,0.0046086585956981695,0.00017080392629833285,0.009609475725147407,-0.03009552324312559,0.04168724378493452,0.08213223420766255,0.0004143836678461502,0.005366542127441549,0.0057744581585751275,0.022399254115124643,-0.0022970625514765947,0.001998149704875706,0.007542258303754757,-0.06474325998946966,0.2783205363737808,0.20616887403082648,7.463450919020301e-05,0.03045796148380541,0.04817756057871349,0.06252197766405772,0.05360424072025331,0.0019155314685711702,0.00039283763375621,-0.018403635059026605,0.062041636406875184,-0.009904330747109308,0.00011752666294996516,0.005929812023512162,-0.004418361727947969,0.013836228216083107,-0.13535613489467124,0.0001294505582799215,0.022651621142208013,-0.016908384785928182,0.0760090911260553,0.006507187870321176,5.429383366269675e-05,0.0035062987457541665,0.0008090589230679917,0.00253012893368243,-0.02452377444621739,0.0030307879850967395,0.009496658607710365,-0.013331322548021506,0.06266443569801684,-0.06074683008978762,0.00010582607133362913,0.007450254710488878,0.012720833629193086,0.06624356610495237,-0.029651734577492674,0.000139262008092322,0.012524391239152976,0.014781927393480282,0.07771208124402429,-0.03464710395435239,8.996865403762644e-05,0.013968985684821076,0.04532402831676035,0.23079272424513897,0.03348759445743108,4.9357571528085094e-05,0.011001810263102003,-0.03689230209011906,0.07200122286319686,0.006441387066006795,0.00024981889193717794,0.01396013499119801,0.00955953724495826,0.034249426193813916,-0.02994172412175324,6.940614858542525e-05,0.0031898184338649857,0.022552978401860983,0.25603654401059034,0.03027124726831629,2.27265353630525e-05,0.00808706822140437,0.033790293771120694,0.1126788821301267,0.06938248789726141,0.00010482343865395125,9.561686365615758e-05,0.018818279708906392,0.09135624054876519,-0.008044873139859503,0.00032469056657529263,0.0008497406726337502,-0.037593259914313976,0.17941532076468514,0.016860036875164956,0.00012001133240964262,0.002648933422938719,-0.00665387473542132 +2018-08-28,-0.04212399589997618,0.3676509954654497,0.08097029282855003,0.00012116589637202493,0.018119154027397947,0.015254392979628049,0.04857909709965851,-0.028536242157979293,7.534527429921442e-05,0.020525530711919798,-0.026387014666072087,0.10227155137702466,-0.01875643277376509,0.00011935280195252983,0.004106372569449325,0.0010253503607028933,0.000959543393151792,-0.0007146460465894988,0.0003606413543803402,0.004580684567118308,0.027138899848066136,0.061371675276382445,0.020434421099170114,0.00023137798368636056,0.025331868079542956,0.00792336078431469,0.01886879576686467,-0.016255006138958156,9.168789194627925e-05,0.01891880726510395,-0.019300138843942476,0.06752158698218874,-0.02687295717167556,8.387019396498673e-05,0.006312194726774727,0.038418814799917225,0.33433977272245397,0.04381667290163808,3.9405290595159955e-05,0.004459472600976121,0.010607022850662047,0.0089583468447984,-0.024353036939454384,0.0009130833380597598,0.01154331977947908,-0.0032338262626883055,0.007049015960472339,-0.02241906330247393,0.00016041688401202586,0.0012732911628148842,-0.014772376738803465,0.010430320647972629,0.03714553570944476,0.000692272489705018,0.005546492770081646,-0.018580625896144214,0.2925605081098023,0.05485377509784828,1.892637440441004e-05,0.0032325892077480958,-0.02145949557781972,0.06950219665719841,0.013897668506975217,9.172168326416505e-05,0.04662070628883581,-0.006704611190314121,0.038789076498568165,-0.002207971303848453,4.86548318512684e-05,0.003053093364666119,-0.011784020158968825,0.009819173557246357,-0.008838474355890216,0.0023406771362165318,0.02274241383899518,-0.011681549621856427,0.06489870828770873,-0.003643026143486939,0.0001481209582573549,0.018791920232778488,0.054552782695876434,0.3187134607031838,-0.040662469640365406,0.0002650481238271824,0.023048929012543427,0.0157160471486378,0.09863243851312795,0.0015476198994053122,4.488327190162822e-05,0.020764182967626367,-0.04317947698409283,0.26233644443574855,0.01589951350268579,0.00027127236707616463,0.006021275395516587,-0.04343892893814797,0.5706828736121126,0.04110239965927602,3.158744511226028e-05,0.0032229172655511107,0.019241372517379847,0.19384817313426692,0.04876976878530301,3.3163170543699775e-05,0.0021038863110986643,0.008204819200233039,0.023998307673445973,0.002216902196578673,0.00011013139854656278,0.025270602809580645,0.0066543593026334395,0.047495375702654746,0.0017063086308951867,3.2362889888863376e-05,0.004048022270617424,-0.015159208524434097,0.0464259727068957,-0.010302956794058231,7.239238710891255e-05,0.003880969942627769,0.011169719411295008,0.04604188045867193,0.007220454380064918,0.0001109271375458794,0.007612397540490327,-0.04445249415791629,0.0387545533636332,-0.016147010599060842,0.000655615116936314,0.012587492510419513,0.0031764988685880824,0.01335717150755696,-0.0378420545660366,0.00010009680413529314,0.008101527679824121,-0.010636584810499627,0.03619674465296658,-0.009335393204659074,0.0018860442066457948,0.010790199760797366,0.04650986273581919,0.3907191458862111,0.06437295740901094,3.060994576947507e-05,0.020176268962210822,-0.03403728510177447,0.09080843998809758,0.012004557721888185,0.0012254623339511377,0.004320220483805289,0.03742442088405235,0.24624885863194354,0.09991082234928247,0.00010120605715825726,0.0008119309217856816,0.01939945859425919,0.02720992677983966,0.003950013706152102,0.0001682703596023623,0.008621617449416391,0.007392690986888903,0.011997372235232071,-0.0009086251912145933,0.0003536880065728523,0.00889678184861344,0.008338916729246275,0.032390819554531956,-0.030030929186054857,0.0019954370954299735,0.004125301427917848,-0.03834242821550438,0.14975156717689264,0.018823838520887128,8.214830511982487e-05,0.015151735663492935,-0.012729518057876662,0.018002540067736942,-0.055673269552423,0.0017577429595932567,0.006369136540370827,-0.041561888234303075,0.1257239263716636,0.03455381666192396,0.00013097649702972224,0.0046406698403793295,0.011602470959369284,0.029741218057164565,0.01872632851284076,0.00015814377991883892,0.00456815055855741,0.018181619696592696,0.083921134454948,0.0013220128892988713,5.28780155706058e-05,0.002943612864673926,-0.01119042028158488,0.041717177540909,-0.017012914888684793,0.002542433123548218,0.013108914777987354,-0.0036803855818926087,0.01703405059127335,-0.003596307772587754,0.00010747710470852594,0.006127820751899505,-0.006994993687013664,0.037661535399796456,0.010665662354043206,0.00013469457048831382,0.007629449981669629,-0.04417107810416942,0.24349687639312645,0.07800358589645855,8.580118851920747e-05,0.009100495544373588,-0.01200385091597954,0.051482304569512236,-0.03747156621164032,5.860167213635335e-05,0.0027910563551459293,0.01786321468717389,0.032339282394451566,0.01666983866078963,0.00026931381570059916,0.018195032791408394,-0.014736263622927443,0.05844863257108806,-0.08042172608417199,6.269420547793293e-05,0.00820315094159176,-0.002691533979630374,0.02628521193075158,-0.010693489324795075,2.6419200418989726e-05,0.0016765925397913425,-0.002764057485341748,0.0101125182074652,-0.0029656190857015323,9.554252595716518e-05,0.00799592751877746,-0.026636267573342812,0.0887894070564589,0.029958814431332345,0.00047286828171923137,0.006737132042202178,0.008903384275264482,0.04042902211801082,-0.0008043253799934904,0.0001261344382184428,0.0031790820062168297,-0.005040289106973908 +2018-08-29,0.021796671098194186,0.16223123367207526,0.007743441818116565,0.0001420830542106507,0.0034034725260145655,0.009086701897334239,0.03249798656718136,-0.006533898472280811,6.709039554707227e-05,0.011474956026659053,0.006060076460395349,0.017439117253570446,-0.03501263331987119,0.00016074993667678308,0.0035059037010827655,-0.009269618185550138,0.009354701169866548,0.006424106504065421,0.00033442580681397886,0.000394623859754742,-0.023022161633356897,0.05015120311237094,-0.02674125016469935,0.0002401941992659373,0.005281632076733983,-0.021132478412774373,0.0577612482212525,-0.0042720557399634354,7.98841473462745e-05,0.004221738322316744,-0.016597877145358778,0.06150861877803669,-0.05112256266355548,7.917834615881386e-05,0.007113628591715783,-0.027337275250223923,0.3028351850364849,0.00708787315893857,3.095619028772925e-05,0.00414655133195971,0.021317659599270226,0.01871638257394813,0.03325509404042304,0.0008783394634832192,0.006897456979965513,0.05126819470279755,0.13492521947118996,0.07517893062730789,0.00013286689261941004,0.011455537024356902,-0.0003376117021939032,0.00024177629967845414,-0.019742001530324745,0.0006825400238710333,0.01399796057835359,-0.00244549296198487,0.030564412900781993,-0.029717802322864997,2.3843672535588775e-05,0.0022465833213777516,0.027118748991621085,0.0815635692096704,0.014144441469066082,9.876986655408884e-05,0.013149830880860037,0.0016509318780461599,0.007827529468284179,-0.0038293898310718375,5.9369892219916344e-05,0.005002777481571524,0.02592296962064068,0.02941050221732368,0.029493360422637487,0.001719116397713209,0.010443291078011625,-0.055997918404332575,0.32841401066451287,0.09106779513429615,0.00014031442297608666,0.005640224669433435,-0.0021201293806976333,0.013030123038084356,-0.036988275451288945,0.0002519544770399105,0.019331640415059123,-0.013165894425539431,0.08493302743133663,-0.017216873792678007,4.36651261808485e-05,0.004266208740077515,-0.005252560664813657,0.024059811307747342,-0.021854953145252702,0.0003598037351410155,0.010331394101314298,0.03910252363896694,0.5928261832325321,0.025260350315574824,2.7372069984366933e-05,0.00212171257160597,-0.02603177620181749,0.32567506256861833,0.057103523497587155,2.6705517967126133e-05,0.007353396961849222,0.002926195888820415,0.007625284294136438,0.0021856814756430662,0.00012361469779468981,0.01761998615226212,-0.016694455897791942,0.10911188404536792,-0.05811589155016746,3.5342119453962694e-05,0.002209043272413749,0.021846795448788203,0.06913329363561674,0.0645871707648337,7.006124922999999e-05,0.010097184477826107,0.017657623792812587,0.06271866692917943,0.05732915430054785,0.00012873126481403372,0.004032180935103138,0.03579369108311228,0.034149193322716584,0.010684701006883544,0.0005991031427750695,0.020918210501432603,0.006840665742570349,0.021311338393632983,0.0002446196591836012,0.0001351056943715215,0.00890433447072624,0.030418102841942535,0.0851871590064481,0.0158570684507056,0.0022918023679952457,0.00982974730680953,-0.002573547621406424,0.023650487861470552,-0.006975455984639746,2.7981713166600233e-05,0.002309204702259768,-0.002555806015682441,0.008048340827129578,-0.004268732972058368,0.0010382281463103063,0.00041044780617109617,-0.030346146368707513,0.22284638702364074,0.10103605674432643,9.068252288099531e-05,0.0015616849088747856,0.008151880610118912,0.012574038388817488,-0.3425556507173701,0.00015301302986640576,0.015006811970961088,-0.014772471949232152,0.02244220939092247,-0.0720810669742561,0.0003778256843758499,0.015764908001834246,0.0046944983393118365,0.01879807409011379,-0.0648452800092366,0.0019356470675173756,0.005196852830737614,-0.04144874182994525,0.14984914527661977,0.04033976924243294,8.874572719652255e-05,0.001797758242322645,-0.020357643913588908,0.0290566541056178,-0.015745951593079465,0.0017416428528026007,0.022808019133240078,-0.01894128127870248,0.06487400762427686,0.000634617164866205,0.00011567903642264644,0.01878311850707455,0.05053206266205455,0.10174639880735732,0.12724464852390405,0.00020132993590505033,0.004493065098036,0.0026655408806725463,0.011340507717847233,-0.006161588658846744,5.736761225349987e-05,0.018655595503450945,0.03497460038761836,0.09909674270512729,-0.08665889260824865,0.0033451179786204497,0.007508866162767329,-0.03781736940279225,0.1570330007639602,-0.0019017881572453135,0.00011979562474241851,0.029339268411758247,-0.008516417418442862,0.046406827073801185,-0.03517565411572864,0.00013308706515120815,0.004954335949966195,0.023252020042109262,0.12602645221218925,0.021768405843295105,8.72665238626211e-05,0.015601747827238546,-0.030957008240233244,0.11623265443459298,0.028885782192887625,6.69388460994788e-05,0.011713928081833944,-0.05244711867688325,0.108975212725697,0.025113411963461185,0.00023465148265798468,0.020100479214183474,0.020077782483204448,0.09130116798314653,0.04814946936530012,5.468318317465384e-05,0.00637679594183618,0.009466432182092322,0.09638170032628092,-0.009233777304073312,2.534095803630961e-05,0.007947154741833447,0.003942451520184123,0.01474453996401862,-0.0035972735345698088,9.346394307829313e-05,0.012723477318977987,0.004234724411933329,0.017091650481255657,-0.07122211386501578,0.0003905432359141472,0.0008443688429418477,0.0066614530180711925,0.03062855793448496,0.0016556531358489024,0.00012457021544600076,0.010033453651082916,-0.0007540498011832391 +2018-08-30,-0.01372424507075224,0.09314253682954783,0.006494759457167053,0.00015582135847211896,0.01060208388258193,0.0017189964910358574,0.005470995033739293,-0.013692694648530523,7.539094658330815e-05,0.007131274328820853,0.002157779682114709,0.006677284190107089,0.0014183178877611874,0.00014948735009907843,0.0007204334178842527,0.0071257124591211024,0.008080841610980962,-0.00139101159437097,0.0002976045421855675,0.004189413267041435,0.028665612743339803,0.07875642121108227,0.009476469684744651,0.00019044651451280442,0.004886417057219759,0.02039023283115041,0.05381391754370228,0.01966105444663107,8.273215096881223e-05,0.00948770550572797,0.007927350772751567,0.031176247664011347,-0.095113600159977,7.460949283347872e-05,0.01784893979021775,0.013690031014523882,0.1226781711521414,-0.0022331669525452523,3.8267998959210536e-05,0.00910736425013316,0.002514701814103616,0.002433692817525614,-0.0046041242829316376,0.0007968297151979268,0.0012878919393797404,0.0469905093386351,0.11388061344484307,0.06683176631205624,0.0001442853512105946,0.027108724606944367,-0.0009678413196802196,0.0006717829025735959,0.0025193804955916457,0.000704205756860061,0.004689918208131706,-0.014113340275609043,0.19507834628270507,0.023897526007286455,2.155974086941403e-05,0.00394277548415021,-0.04763614080412085,0.13427067059256068,0.0629803540781166,0.00010539170979115036,0.01265041024559221,-0.002911228188193776,0.01621867707654206,-0.06258953317576764,5.052689832489289e-05,0.006287126571433053,0.03138358018366171,0.0267841644316948,0.039581948167044835,0.00228532176441661,0.017788591890340575,-0.029477504594589584,0.20190555709725608,0.019115541760479315,0.00012014191530493185,0.004672291500500415,-0.031494971399394625,0.1833104413761202,0.026595260546404906,0.00026604937750567074,0.027424739519935844,0.048509870557182845,0.28076869465652726,0.03789774656350148,4.866787555369175e-05,0.012310528780405321,-0.013519443666592666,0.08774691071813014,-0.002457896942663217,0.0002539298713390034,0.0019870201499895,-0.0007380261397648864,0.008501597237379666,-0.05857004128804811,3.6024789262985554e-05,0.010486677341969711,0.010961414237227435,0.11063263370471202,-0.001215885544035033,3.310282423440974e-05,0.0066189307212997876,0.07835001661537264,0.2755288768864347,0.13491897670541528,9.159984246856059e-05,0.011521950215407565,-0.0414014896895278,0.29537905827463334,0.025718722201099622,3.237640637762048e-05,0.034649610843194914,0.00892700394239864,0.026553623419005776,-0.009794933469223098,7.453483888584255e-05,0.008145452049349845,-0.0012854998400375274,0.004886316422567959,0.0007118341106590139,0.00012029263424381031,0.004069792182569848,-0.020224007454574186,0.01850477814156411,-0.009835329522123935,0.0006246818610430687,0.015685891284256567,-0.031678926870894054,0.12868092845740842,0.02556598584391464,0.00010361968904826914,0.011513442283752397,0.028072848282320362,0.08476040905279687,0.0047891873768622405,0.002125752063420789,0.008080955139466621,0.030390842399129876,0.31555057059384267,0.019904129041679142,2.4766005432531496e-05,0.0004063198266006942,-0.011754329419292442,0.032936948295992696,-0.00629646444582181,0.001166771384989318,0.008765104227596531,0.029248867129057866,0.22853409996889973,0.033535540661909,8.522827171221217e-05,0.0019565891243508117,0.023575058544431437,0.03709976867687633,0.05692037698915027,0.00014997779507597964,0.00942014491163837,-0.005849353958114488,0.007819676215076503,4.9439763495802976e-05,0.0004293614463994031,0.00183091357149456,-0.03585342648358112,0.13503182926345056,0.07105847859792944,0.0020579975683652687,0.003067131867603354,0.008770353288534063,0.03602386116817546,-0.0038918874011606157,7.811189936179426e-05,0.009034333126881138,0.03423532231243077,0.044538281342646084,0.03950115081131209,0.0019108128729354082,0.032301802477751024,0.01599140375516537,0.049217740339599414,-0.017413441901871055,0.00012873035128943393,0.02262474339667477,0.003264800224067849,0.008132651052104966,0.0005959693820491272,0.00016273645425991687,0.012536701994388229,0.026929990679598885,0.11254017775146447,-0.008647570407878575,5.840399180734756e-05,0.018648542722610146,0.030375586393348454,0.1005340886493695,-0.017244468129236325,0.0028637122892144653,0.011905112152804983,0.0026105408956449703,0.011072571542728907,-0.023631263323856438,0.00011727962718190845,0.004065988819415316,-0.04080581541201281,0.22842341713241646,0.11989942327222503,0.0001295514329249121,0.0056302699680188355,0.019792673881153265,0.1083912780764322,-0.046910348051315415,8.636918678130693e-05,0.004792153588876094,-0.0008980965428875441,0.004386860564305896,-0.003955833142517622,5.1453697493983235e-05,0.01128598554894443,0.000632996343810354,0.0011854468652368615,-0.02838453816378942,0.0002603445574204091,0.00017990235886869823,0.021638245194388537,0.09017446613822172,-0.00574300658023319,5.966955977473021e-05,0.0015855620661049293,-0.01690490721864688,0.2053192099701521,0.01724701125635985,2.1242933641984614e-05,0.008045249624128949,0.008255561456524396,0.023668223314957677,-0.009986890364815966,0.00012192420177831095,0.005308377814167801,-0.009328933968691567,0.039932963722766425,-0.12684918178693827,0.00036823786711104745,0.0017159691107352226,-0.04422592437405678,0.2013083543773263,-0.09629778795513279,0.00012583078798510263,0.004790447608431196,0.0036238738399377536 +2018-08-31,-0.01207710636782825,0.08474079427707575,0.003938693459321062,0.0001507151620716693,0.0285723989485413,0.004009383779524939,0.01657326379376909,0.0022103334295661566,5.804704454755467e-05,0.0016902743392958922,0.013046677229945715,0.045024487331404676,-0.10817402722930974,0.0001340442985128764,0.0002515463340501239,-0.0011519549348464851,0.0011391621831301163,-0.001214909272063317,0.0003412854603941759,0.010905158890326762,-0.03097384413383815,0.07773304048552973,-0.01942118062296689,0.00020849095835991923,0.007448645563976882,0.006858875113354894,0.022311714539283944,-0.1314418726475316,6.712227847566504e-05,0.002109058577289565,0.017516633538999828,0.07002908915875461,0.010165346259433154,7.33942474554936e-05,0.005679008077291261,-0.035340067477863044,0.3086497044688332,0.053703394671024085,3.926450469921288e-05,0.0009621200192256841,0.014347534372756592,0.011169637672015282,0.014836532953747364,0.000990564991454361,0.0025224641374298647,-0.0008903963791269205,0.0022600706237588947,-0.013740172419066114,0.00013776004032188476,0.028787044097957213,-0.0007328747750231185,0.0005492334734679689,-0.004590080034533247,0.0006522245387852227,0.0054224596908605,-0.006583887637189984,0.10193131781561242,-0.0741342231895569,1.9248529671821963e-05,0.0069575066884369615,0.013151087830579018,0.04166850571415921,-0.0001602602416284276,9.375723471227988e-05,0.013637607615913287,0.010963724845556227,0.0692682895327675,0.02640588480773863,4.45538750299302e-05,0.003653646378825731,-0.04186242414558156,0.03163158539806347,0.009697233138144395,0.0025812281133657865,0.010896365326261917,0.07536806430154587,0.5262330004108214,0.1016905908951552,0.00011785863029424373,0.010521408759365148,-0.044152163849927824,0.23330954815453198,0.004686757154298463,0.00029304054413050194,0.005179918063639377,-0.0037472700114025803,0.025179716384351413,-0.010565172896493433,4.1920370219564585e-05,0.0219310322047207,0.005577323907692,0.02773268624417933,-0.044589610336881816,0.0003314520706013391,0.006333980538913007,0.034594719969173134,0.44985827637234027,0.018237547651374916,3.1912757776191394e-05,0.02918041713006157,-0.013515957925320133,0.13960894605495633,-0.006028742281000606,3.234560597077856e-05,0.006949630123220404,0.002913558927362932,0.006653709368052069,-0.005550648341677962,0.000141053132350812,0.022590691526924507,0.020363328455001772,0.1283163281992314,-0.07462445188125852,3.6657194070904744e-05,0.016783329423876017,-0.01537459035893197,0.039106501470781575,0.014198977642727435,8.716296006662223e-05,0.00920261691283564,0.0001261073608634701,0.00039545704479738384,-0.05257977457258754,0.00014581080780605337,0.0027298801480908994,-0.04428345285563466,0.03920335901823408,0.0006388646482298163,0.0006456449489800971,0.012798147891890965,0.03029339210771962,0.11808871617776454,0.032390778975628455,0.00010797557220117581,0.001714341424141163,-0.01446840680763989,0.061682502690758215,-0.04819950077811229,0.001505490084988736,0.006822314541673595,-0.0005488568377884798,0.0045125212244477,0.001324764361039742,3.127677866774432e-05,0.0036520125670036745,-0.0024898346778053056,0.007528254381961318,-0.0684681542264951,0.0010813032182235456,0.0016123037249694192,0.018500703642268395,0.15435288613256992,-0.013980176180808001,7.9817686400029e-05,0.010132582091432243,-0.00549801820433121,0.008513891893261339,-0.08091645688230843,0.00015241349724923184,0.00017238228600104533,-0.014209176291573429,0.02174970729739687,0.011038278031036864,0.00037498975241411766,0.012934837331138743,-0.03187536404230468,0.14064846613811602,0.027341016043799994,0.0017565903571759628,0.018353630454045904,-0.009196824829577243,0.036644923083042374,-0.14935159023372416,8.052198465831914e-05,0.01389482861513725,-0.0010187322458400916,0.0014129130232996448,-0.002025302991394938,0.0017923458584917906,0.013131559208625746,0.036384910657046875,0.13113801562947744,0.02616875522574108,0.00010992810506496643,0.006370052888562156,-0.05332822586105069,0.14842773608692186,0.014862666739236023,0.00014564730345367497,0.013688171908992543,0.02554412832578514,0.1253388042542939,-0.075894829486476,4.974156728726193e-05,0.006122444268296239,0.013151954012342147,0.04555886566864991,0.015005602196196137,0.0027361218681919465,0.02388661419566091,-0.03362404918879437,0.1992171602780283,0.033899317299408,8.395833895369345e-05,0.009356132591627897,0.0021916783315649594,0.011558311054252302,-0.0034522515490594545,0.00013751283016163836,0.018528833842973057,0.01143417267413417,0.060495617264797866,0.0006620294959977629,8.93983560893075e-05,0.013298608506228573,-0.03149756892829481,0.133035309053341,-0.04173338133956914,5.9505554573384645e-05,0.011435035639030776,0.08426503294845344,0.16841732978157042,0.1650205677359763,0.00024394392743983234,0.020147446640172192,-0.008465247144643378,0.033343986314361036,-0.001274645917523109,6.313010313025744e-05,0.00039885936116522896,0.010212371617987938,0.10577999999141438,0.0017745926267124503,2.490888759214678e-05,0.008563627793891759,-0.00652403973875205,0.01851934658029484,0.0059772797077273536,0.0001231402136878409,0.000279428781895544,-0.003224297556905336,0.010679398761807716,-0.17171740373870206,0.00047590063252806873,0.0012920940202362052,0.028053684893708707,0.12914978994789447,0.02458845689043974,0.00012441364282769895,0.011948414195364509,0.0006633382594232356 +2018-09-03,-0.024490847064605015,0.16066571313126227,-0.0142661138314124,0.00016120079682108396,0.0024592693875495892,0.013061768214181613,0.042107632593130176,-0.09254365081798932,7.443062648630934e-05,0.00916322552233483,-0.01504624880528534,0.044028615283634595,-0.004312751157118646,0.0001580849101028556,0.009857485244993663,0.01885907400835008,0.0194587379782389,-0.022207118376037168,0.000327094732994746,0.010779345628960737,0.02860369212953348,0.07435276253732043,0.033228525404731965,0.0002012902587414219,0.001151353862374639,0.005108245770774214,0.010967074354803015,-0.011004576010973753,0.00010170158842856897,0.0011358300332183452,-0.00013205752129668213,0.0004626157422163226,-0.01872157287847413,8.375921325622807e-05,0.006764838155258026,0.00196898031906398,0.01529834262628999,-0.015056931213494098,4.413626783091658e-05,0.014175775520572895,0.007283129906054113,0.007050132271890584,-0.006540483952996524,0.0007966463631554482,0.0004734493066542464,0.005768211927583363,0.01243329744482506,0.0011291970615867248,0.00016222462209272218,0.010846204256945076,-0.010031517624784048,0.006955174041584695,0.007187604171590744,0.0007049900650473991,0.0013942459618381908,-0.00187648621028503,0.02779026984659449,-0.03737701002542686,2.0122197293590056e-05,0.0061734316874295925,-0.044375251737933864,0.10514560873363668,0.0443721157646123,0.00012537205022286122,0.008975408138740657,0.017194183327960806,0.08568831408243818,0.05759697212147607,5.648352252484004e-05,0.0011627461463040573,-0.00016767109416308446,0.0001694250272228955,-0.0009237812873424366,0.0019302057582018944,0.022137595365168173,-0.021116784679700656,0.13701211073343017,0.007766793105126407,0.0001268296933725069,0.027272004259933064,-0.006090997612906825,0.036240025486674564,-0.006798330408028494,0.00026026044426263683,0.017378700470618163,-0.004075603269746634,0.021599053866635076,-0.001117611888546245,5.315181882466705e-05,0.0037383388554704513,0.020017845556046163,0.13809722543362088,-0.025024046640856838,0.0002389016716264676,0.018944489303095356,-0.018889114620049705,0.23033006837466372,-0.00840862999220966,3.4032291829375595e-05,0.004707320328133735,-0.004288709509925853,0.04313502630596185,-0.005524753795895269,3.3218366525670396e-05,0.006628029006830068,0.03663728196201778,0.11933422892944584,-0.02739910004732882,9.889651125389643e-05,0.030850144307115666,-0.012413591653578348,0.07731234907996912,-0.0023736637143249102,3.708864456889568e-05,0.007977880468221826,0.010125457002513674,0.034008525900089424,0.015401206335185645,6.600916031524243e-05,0.008864231912041144,-0.0038886439679435315,0.011872633227526446,0.0055709038522317005,0.0001497613430926488,0.007299020652263022,-0.002331167844596751,0.0020167046024107582,-0.001414005081133744,0.0006607038171540091,0.0180053684690563,-0.04488084327010233,0.1579729999641554,0.07682815711948776,0.00011958154266860671,0.018545775573650117,-0.06926410524087215,0.22202117998759274,0.06455294804025538,0.002002317746609134,0.03647214114073253,-0.04159132858864057,0.44505234022693835,0.06355816107540302,2.403111379065087e-05,0.008589941579396673,-0.015960880306677173,0.04542086693512283,-0.028465834537398708,0.0011488747677490447,0.014373298496227437,0.02828614546478366,0.21410860427490375,0.018758680111934746,8.797621902718637e-05,0.004113525683309565,-0.019643643143795998,0.0322814501363859,-0.039115485330972394,0.00014361982277687375,0.020302597483944928,-0.028792034242763578,0.03613658075516567,0.027233225735361924,0.00045732948983606155,0.013024723366021833,-0.0417318989758927,0.19066420373734014,-0.034570345820974555,0.0016964822672896783,0.012526661688452454,0.003699418258009366,0.01601975808533202,0.006492998159747352,7.409140877394357e-05,0.0028879751711282696,0.01060575451855171,0.01689788057352047,-0.0011376084983662728,0.0015602224623664366,0.00916282050414747,-0.007246186014151035,0.02443043328913435,0.0006568378691949339,0.00011751528155122086,0.0035009188363713294,0.05420308182104902,0.13348046499759572,0.1178071057074503,0.0001646139533765808,0.014048282160456681,0.01607812938291824,0.07504943716063336,0.0055535265140858586,5.2287996883894704e-05,0.01820892991535433,-0.023617601660185766,0.0666799357955448,-0.013395974345733603,0.0033570567149387746,0.0011808976896933532,-0.05756056606672068,0.2539561350561669,0.10929014261675096,0.00011274749926311258,0.009282731104832461,-0.01435223773854494,0.09250502790795571,-0.022650035054128964,0.0001125162023835949,0.0010488415315852554,-0.00545353316429689,0.03633693842347409,0.00529513979488678,7.098691853405509e-05,0.007818576348792903,0.014554591417190198,0.061981076957132966,-0.025115544441879026,5.901851735002157e-05,0.01712770609305259,-0.039011600509683726,0.07310223849343478,-0.08987969235819758,0.00026019112953845934,0.006357383717071544,-0.012939753142290214,0.05345269623132783,0.013707919900704219,6.01964320368901e-05,0.006776161053783772,-0.010030924444975232,0.10650785173716355,-0.06516791061576618,2.429912413256698e-05,0.011795660312731469,0.01213068460197475,0.03584779838436469,0.003223572585243556,0.00011828557555405622,0.00019042483709044662,0.00540117110031231,0.018232929803465168,0.022343101725717355,0.00046693824450577453,0.0077693479507141144,0.005159552101748449,0.024939591668946978,-0.01645954571605177,0.00011849348148573459,0.009868073588785395,-0.006287642270855959 +2018-09-04,-0.014865942351804065,0.09453061003808186,-0.05693162490049957,0.00016630548292015585,0.006641251897503321,-0.00843546402815503,0.036372318070139485,0.022609786805738902,5.5647867223296184e-05,0.017481824044344393,-0.02800578498069566,0.09944633672623504,-0.01043176608145447,0.00013027352505753448,0.004771085553672401,0.010134181260293189,0.011265361169447697,-0.04214049106191321,0.00030360673701332374,0.001937918017148076,-0.04161443382755317,0.08672343090920288,0.008087041859187481,0.0002510760639831833,0.007861051290515625,0.0002622834508084383,0.0007354422011575903,-0.005568138364378155,7.786980404718064e-05,0.005614191123977987,-0.04197195596355454,0.1871167408672223,0.07403733979502927,6.58167478820798e-05,0.012765601095216947,-0.05217351466191379,0.4507511035334753,0.06425601068599544,3.969281589035381e-05,0.0030402067051806883,-0.013512967071704836,0.01050859989899557,-0.07579020794038775,0.0009916322624080468,0.005789152063804381,-0.060454940691449494,0.132787911663108,0.07848175757131413,0.00015919709735420705,0.024897940403991292,0.01923237204247431,0.013245335156934197,0.013344193619826179,0.0007097317891009348,0.00491883984735253,0.0045182419569505024,0.05889857731876892,0.0047480246962288445,2.286059180113755e-05,0.007202322170887087,-0.019935891289375285,0.05511143177259159,0.0037534663645454724,0.00010745954581685287,0.046636113092654224,-0.002136851088057349,0.01103246161678796,-0.0007884505634938866,5.4520979737031134e-05,0.0015956346370169304,0.015544052701873036,0.012139961208777137,-0.008513484693793526,0.0024972954943460364,0.028085798285661774,0.01496633517327392,0.08892257869485391,0.001757658625863341,0.00013850183468948533,0.03741361525011201,-0.007461855641529148,0.04134179830878291,-0.0020336241999577074,0.00027948963780853023,0.021138191372146235,-0.016929089907571672,0.08323443792902671,-0.023553082203620627,5.7291674562233414e-05,0.0030041737218295802,0.03527946406325716,0.2251485186078849,0.028990244448729382,0.0002582496209199711,0.009029892664847706,0.06981911857959186,0.8432142688758353,0.07963579403315992,3.436106737167765e-05,0.026273843702815155,0.004142753953607383,0.04144876200757413,-0.009929041357603384,3.3393295912653644e-05,0.014478537916736917,-0.0020454303999762396,0.006182100791940762,-0.005254577818534865,0.00010657893609831633,0.006500133726222705,-0.01848136422985258,0.13797164249359947,0.004778287241361789,3.094115830824124e-05,0.010422581894590804,0.018651495312309446,0.06085731357001132,0.030774233198878415,6.794824755848198e-05,0.006742451650866349,0.020281496040562595,0.0756401944550643,0.06524073067875245,0.00012260154582002558,0.0018810986480167612,-0.026103528350824624,0.029757079088134283,0.0011524767990924209,0.0005014001689711424,0.007027773654342439,0.006963402956247197,0.025307504178842675,-0.020627976237430738,0.0001158132420630422,0.0017252132774916353,0.005106625491133446,0.021408974569574364,-0.014708249735443556,0.001530936992626573,0.01867962619528707,0.015533042676978663,0.14835113096968208,0.004005018634891987,2.6924513775636342e-05,0.022812066898887096,-0.03747485791237728,0.11420270710173265,0.015945584282469352,0.0010728397738961136,0.00773329029228972,-0.004490397795301555,0.03166275917339317,0.00846045073687942,9.444124453443502e-05,0.008177962172139074,0.02451132324815421,0.034978331592839244,0.08455271284212887,0.00016539144938859012,0.01761696123977207,0.007399501688890277,0.009599368224716107,0.0035292041434574015,0.0004424495281038924,0.023715867959163455,-0.030569886122916626,0.10742788031342315,0.03454228426909428,0.0022056020433352352,0.003292466467219524,0.006234860817371127,0.027745183018383728,0.0046646585374442,7.209904952744263e-05,0.0035553998100401386,-0.001757153898419783,0.002410510108284358,0.0016255143810294695,0.0018120827876602593,1.6247197359316548e-05,-0.0021643430559938866,0.006294369586207746,-0.006628312769600627,0.0001362353763520364,0.027225368155625856,-0.02039891358202681,0.05433566534522511,-0.0021322149308299716,0.00015218870613583637,0.004981844955172971,0.003191760915213174,0.012872512438252626,-0.002331659279911715,6.051749697500061e-05,0.0028522083452406453,-0.05119530066877252,0.17955116267405027,0.03836164120085222,0.0027024641046799022,0.008546856185140703,0.029114569951918707,0.13933953209602326,0.031715601643821444,0.0001039385376903407,0.008141600906040701,0.016145654883512495,0.07851416595870392,0.007066550598848553,0.00014913117095866622,0.009786384046600803,0.0095595319481702,0.06872448319863857,-0.011289504707805556,6.579211458429821e-05,0.005823204715350107,0.05796166895005731,0.28358791265922745,-0.00930729001685295,5.1368934892325725e-05,0.00770918173382302,0.06454228162638552,0.11534377797485165,-0.057093833963056166,0.00027282209270779927,0.0006257610247393376,0.005412355320162155,0.018690705165189832,0.004870816328829109,7.200704507225847e-05,0.00815461521958678,-0.002867558245725531,0.033887783917983624,-0.013279596969454898,2.1832343932090754e-05,0.0034088388181240086,0.006470050385609879,0.022199126742943703,0.00011463507607171298,0.00010187807646274494,0.0009539889879128159,0.00854401471006177,0.03580118846889611,0.003327004685270103,0.00037617723889313986,0.0038334728877879995,-0.012165646872151489,0.05202702049173965,-0.024902882130529592,0.0001339300549330202,0.040385898312893395,-0.0009693679891206145 +2018-09-05,0.010204076200785601,0.06607097871718916,0.012133827356021218,0.00016332382293070415,0.011395779603606668,-0.006947069739950846,0.023939142403896402,0.014943705096233682,6.963115468327502e-05,0.0015003181534131358,0.004796548883580113,0.019218635992783097,-0.01092737884582246,0.00011545254697036842,0.003660737561073393,0.008238399570342935,0.008246732067493929,0.004939503272629922,0.0003371543934849912,0.00792946445263907,-0.002356314634780328,0.006433033371551854,-0.023103912508956746,0.00019165283531146285,0.0026424846378626096,-0.015524386259575416,0.039130574235378295,0.019169341702705085,8.662534125005303e-05,0.0018630272212195713,0.012865301307436716,0.04009592066409344,0.00680666250149636,9.414768099227493e-05,0.009275499253292142,-0.006962055708829956,0.06867065304339236,-0.0661549342089975,3.4766816959739555e-05,0.019662634221836926,0.016941460324282925,0.014503232929402057,0.027180288711916117,0.0009008050405229359,0.003866914825287634,0.03385539677812447,0.07083498671447652,-0.019094648073913555,0.00016712521447486008,0.006057189242472798,0.03771215497058433,0.02854207133047415,0.06806507631238785,0.0006458329830611001,0.01181326952213279,-0.01921135131990339,0.2795640629397908,0.032670778280592304,2.0478557410428568e-05,0.0002545341388440392,-0.05054121250895852,0.12579455092604708,0.04521500874889823,0.00011935341930524984,0.01942748246023071,-0.0143939417025299,0.07740617332797628,0.008880544991809822,5.2343885783408255e-05,0.008216456335579046,0.002866026350790529,0.002482342296409984,-0.10131499281842116,0.002251860507197813,0.014178106834795555,-0.03191928535938918,0.17334028196672718,0.012930150367044793,0.00015153249306799617,0.019869829761019926,-0.04180891132013689,0.22667013678101106,0.0283901202038581,0.0002856161654032737,0.03639856640286136,0.04030490476633138,0.2763596158925017,-0.08127002485403134,4.1081309149082075e-05,0.02773806687107635,0.024271298980582348,0.14263678018389472,0.007552733350241238,0.0002804453870103215,0.008281669150850832,0.015338558207898567,0.21784265471010744,0.0021080672409948048,2.921943737025904e-05,0.005539950858220295,0.0021287509365627254,0.02289106608670121,-0.0029268362095751063,3.106994911112956e-05,9.331615537873524e-05,0.037048828944714986,0.1089506322005379,0.02912828975610649,0.00010953867576100884,0.00802074039034437,0.01265825239462604,0.0910063854971531,-0.01744934416648268,3.212878195251842e-05,0.0021147470701817447,-0.002449092843269241,0.006704114782874946,-0.016084840176753393,8.099182594552253e-05,0.0008892057445638684,-0.000966801821085715,0.0037468579730222627,-0.06900107139267352,0.00011798283407588488,0.0023641556740370074,-0.08481933506530653,0.07733414318313431,0.08529898526294935,0.0006269012657988815,0.005819790144542649,-0.013400639243708028,0.04843176412793525,-0.006727961633028127,0.00011646119346527895,0.0056943331614497245,0.018975083161537766,0.060452650132445204,-0.10719719768628737,0.002014593917341678,0.00496967948519061,-0.00853275925450489,0.0859927307819193,0.0018724689030300468,2.5515844523568945e-05,0.02222969870442932,0.0308119697932728,0.09797230274384228,0.026472639450079015,0.0010282232441507547,0.02714018290818507,-0.03423347329134759,0.276556526740033,0.09340104347473395,8.243140370004819e-05,0.011817289209565913,0.01847567168563859,0.02435133222095447,-0.07844044213701404,0.00017907002602954102,0.001753211708727196,0.013510204588016756,0.021203397279621103,-0.010725739472522821,0.00036572983400406353,0.0027604710099062854,0.0038771344456511167,0.017086688745382057,-0.003254568810124493,0.0017587466935102083,0.01786902015995519,-0.0016357708555133214,0.004915755788076779,-0.002454495121405721,0.00010676343474594413,0.012032983020993817,-0.017447019121657865,0.022125648244203894,-0.1292791922441474,0.0019602092091586328,0.0007306451931465301,-0.00093587760692476,0.0030566691540138257,-0.11836164202538926,0.00012130722221404569,0.005785093161484756,-0.01354661419260072,0.039654609887508976,-0.0016094558599807388,0.0001384833167645597,0.006426382479364188,0.01866582960212636,0.08906313092129563,-0.03474827105645833,5.115207594171563e-05,0.005436458858395485,0.004736369695679031,0.01632119489737371,0.004682693593408625,0.002750500326310277,0.000878661325459717,-0.032539251386055686,0.17834140469784449,0.01697292048812435,9.076030461313218e-05,0.006825769006203224,0.018408503316470762,0.09451856068482382,0.0057955270868447085,0.00014124144916348788,0.005873735621627336,0.012703439081754675,0.06535222087521045,-0.010503726434751212,9.194109190166762e-05,0.017403151499564454,0.010526024348761686,0.055928876538909,-0.0007826096770076869,4.730158239602364e-05,0.002241311937395159,0.06641649175505182,0.12617637540284835,0.058559005905443315,0.00025664173237066926,0.004391654492468854,-0.004149007913402603,0.016104679200875528,-0.04759324748811207,6.406289503816843e-05,0.0009078834353964958,-0.017756014143409285,0.197175713072063,-0.012579326439289603,2.3233965902168523e-05,0.008635993822556578,-0.01612411365090353,0.05349264065195073,0.032426591518702544,0.00010536364293489176,0.01184964406663184,0.02262763825276126,0.08901938551208771,0.1294186082123884,0.0004006661066282153,0.008188420365098516,0.019452434773359978,0.085788648767361,0.02532901951138592,0.00012987212191261364,0.024937152844839952,0.0021432873948469973 +2018-09-06,-0.004092686117899979,0.02877239746502552,-0.07587162440975645,0.0001504246366912117,0.007399479093621973,0.049235731475844244,0.15227765992225673,0.10494087882386115,7.758088450516297e-05,0.004167421282829043,-0.03093419574057783,0.09325107292137712,-0.06878969205127694,0.00015345540734613495,0.003992243450991676,0.005400938961405326,0.005623187334020313,-0.009727936372549673,0.00032415637971628254,0.0056004418305846135,0.03980821880339712,0.09047323877777057,0.020705633406073023,0.0002302238861646886,0.01891602355642387,-0.009174987986429116,0.025728390674780027,0.003771208174816241,7.786452209379235e-05,0.004957181913045678,0.003988372411909897,0.014508841614427186,-0.020793451685099846,8.065899732317471e-05,0.005985055311841094,-0.011607615382021659,0.09151348657175895,0.003758093197320322,4.349672130771136e-05,0.028252985516130924,0.01584845851410847,0.01447325334553161,0.020948299843448443,0.0008444338803669653,0.026798349551464387,0.021138187282292664,0.05571360531343411,-0.015096845054541256,0.0001326686666932076,0.02777547887316807,-0.014196618189929266,0.010484862876959202,0.018922045002395582,0.0006618300857043115,0.0020350755156021525,-0.003539177739562563,0.045029955212386834,-0.0047508253791953255,2.342198228274732e-05,0.007442460161017593,0.003237771826549843,0.009223703646315197,-0.011591286709676274,0.00010427781841988804,0.011313150146975636,-0.0035921183845231573,0.01682060929294077,-0.00779568234932789,6.011332304603929e-05,0.014061909396509585,0.0033668316099782322,0.0031971778383572506,-0.0012500210539302216,0.0020538918641583906,0.0027552854179370262,0.02453106889965557,0.17799392425616176,-0.0005053157574405037,0.00011341314712109446,0.03004230067495608,0.005136966060807063,0.034772855321625974,-0.013481653806469289,0.00022875709603224008,0.009446026093928271,-0.018193653856989313,0.10207238769184562,-0.0008152269990192089,5.020796391979046e-05,0.00433483026913781,-0.0025113219009624877,0.013077068744096426,-0.0035630721336532022,0.00031650369519336467,0.005349187547138232,-0.04285233837521796,0.4564388291936763,0.00014376706005365,3.896028939615097e-05,0.010057873841778356,0.010767496290645662,0.11144626548007801,-0.02026060115071906,3.227980628995702e-05,0.006474544679407463,-0.01953636778890423,0.04475905250218819,0.00321832093149924,0.00014060012086448268,0.02901567488458846,0.030418301316868367,0.19465736083378063,-0.028346301631888313,3.6095785966415214e-05,0.01896031858103376,-6.326033749513842e-05,0.00020171152701051127,-0.01804677573587901,6.953095104922023e-05,0.0028409495477347045,-0.012017588018494202,0.045698251431354676,0.02860026017425847,0.00012024480556307639,0.006463812776010387,-0.04669619721786922,0.04779117270963358,0.014149961732838395,0.0005584822677010673,0.004991157790792052,-0.021920856240312783,0.08883314671107732,-0.07777324560606332,0.00010386482093717035,0.0030668723990011975,0.011147021382411401,0.040279030086152766,-0.02980820589142529,0.0017762291973451188,0.00606297719633691,0.003957048008620982,0.03289456165530855,-0.016485935499533172,3.093352490950836e-05,0.015057696908787058,0.08362989153383699,0.2174655440036299,0.21496237937573268,0.0012573099361647862,0.009248762854779047,0.01745905243509736,0.1263917261991551,0.0036168013794033956,9.198725670174547e-05,0.0018257345011458424,0.01754171698940267,0.026049915363193614,0.03342334424662523,0.00015893193452890805,0.010121571459291004,-0.008428191790798014,0.013949125780586366,0.0024747860429342587,0.000346809777766469,0.015025301761949855,0.011595020607225483,0.04414461190117612,0.018208464537021112,0.0020358424368361865,0.01025935095222821,-0.0035145651868013694,0.012836043161538963,-0.007758552293788995,8.784778274908862e-05,0.00695793800013254,-0.06669755612097752,0.09148798543906725,0.03329153009663133,0.0018122706138647634,0.004759975251916301,-0.009396384995242727,0.0289928340373469,-0.016269919100285263,0.00012840625198616811,0.002025762257169701,0.011445387995771654,0.02773752996490104,0.00945948015819108,0.00016727194677463873,0.015100054068810249,0.00831453075189657,0.03262329094089986,0.0034655997263390785,6.220480023110621e-05,0.0012700812804028777,0.030561214517871863,0.09389444753970606,0.024976331236210958,0.003084954452450339,0.009391194824030637,-0.023801209443314406,0.12787897326234945,-0.013801112530096027,9.258496272328105e-05,0.012386541812919333,0.013852062432735677,0.08125737890369608,-0.02800695702913161,0.00012362673949026194,0.004346116639426411,-0.009396501413385046,0.050883332383467914,-0.06174869848749458,8.734525887727255e-05,0.01447781268949533,0.022368463002949014,0.08890980684152329,0.0021082060721422545,6.323155639302796e-05,0.01408015611933538,0.008642012587107435,0.01617893315773692,9.169209206509292e-05,0.00026043203700653337,0.01647891105768216,-0.0008676810068776214,0.0036255222423215204,-0.006773961217793819,5.951191057368917e-05,0.00041570343908984284,0.03437952317811011,0.3445795665547585,0.08517678072566719,2.5741960176391093e-05,0.0035584173236074936,-0.007314424782385499,0.02342983519311778,-0.03367988070251672,0.00010912390755931579,0.005767523681428705,0.012744075826222967,0.0577141471194412,0.03473730694031441,0.00034805993564475385,0.003827632524669736,0.013548866166628617,0.05946042372525215,-0.10057394966086584,0.0001305108893611787,0.02143572108940404,0.003658346424250058 +2018-09-07,0.007905315149776762,0.06542840838000322,0.007924127604496059,0.0001277730954482252,0.016481889804592958,0.07814127556781059,0.24734871351606583,0.20347557136937888,7.580212262477954e-05,0.012766114256483017,0.031195392998561895,0.11819038497192375,0.041287973067714354,0.00012209714768162048,0.009361604685069318,-0.00807824749014515,0.009006421745231561,-0.04155299134024654,0.00030271415612065426,0.0004887215717430339,0.01718597324797554,0.03606848802942772,-0.012650099181615202,0.0002493124499147585,0.009121626409747521,0.005335584099026247,0.014996759864865894,-0.18662667421848766,7.768394498624497e-05,0.007724559808125354,-0.046869025228706555,0.17869021738166901,0.08244137378454104,7.696176150410933e-05,0.008978934873815368,0.027450868720130847,0.22514412710516432,0.027307123645863945,4.1811339819176043e-05,0.0022840620993097504,-0.017269459495075266,0.012454149471877562,0.01233244826342191,0.0010693243538909963,0.00428039895621995,0.01002392829555069,0.022437270491584584,-0.016608309049506928,0.00015621754704047403,0.00035380564253539816,-0.02226565947050096,0.016599932329560935,0.044846033709149656,0.0006556221283907783,0.01423411979911763,0.008791516098281858,0.1252178103087792,-0.07360935272342918,2.0922831625449464e-05,0.014261892163012983,-0.054641177727087875,0.1468099740503726,0.026499941854338217,0.00011056445447416531,0.020497445292468396,0.0010737598561780509,0.005975204035696687,-0.02101040882377644,5.058435793405734e-05,0.00985801016218498,0.006362469043382873,0.0052088333986886285,-0.058526048264680344,0.002382364384155978,0.009586200744826199,-0.01008080503595744,0.06099782263012176,-0.025564494168125944,0.0001359981468263473,0.010983919461183178,-0.05896513927088249,0.3909992846917178,-0.020316080367401283,0.00023352189040100576,0.003479821875747792,0.022717163603264104,0.11680278144716005,-0.005479614786889999,5.4785026603228346e-05,0.023737898099461845,0.012675617243468738,0.06992373330884569,-0.001407635921731018,0.00029876609888276494,0.021592970842738812,-0.06389846478865052,0.6860930583486389,0.042372241277484464,3.8648943797704214e-05,0.002111237701796107,-0.03839385702079233,0.35180763045295516,0.07890708477467757,3.6461807808491664e-05,0.015548122513292248,-0.0321771903107795,0.09359487416678325,0.03102885212031324,0.0001107436441045874,0.005546348211755126,-0.0418336651977475,0.2941390352508152,0.058149795727834366,3.285228855808162e-05,0.018953031118952704,0.005661723361614735,0.01481592504294119,0.002257104072733282,8.472220602802135e-05,0.0043727365388421605,-0.0063378815041016286,0.025980843879672835,-0.019298190975257555,0.00011154226459844665,4.2040395622584955e-05,0.05002045264602182,0.04836082703041241,0.04876984079591396,0.0005911932401629798,0.01967742161371304,-0.007569012654098879,0.029932810657949605,-0.0035009826011121554,0.00010643335245620952,0.006145454946126724,0.057475705820342976,0.1953849149153162,0.0699855760046412,0.0018880455073718033,0.011679268960570574,0.025778235727028236,0.2418218242308967,0.00867783375500435,2.7411947602440254e-05,0.0028878027239314305,0.03540000497259146,0.09737675785727683,0.01818803846565119,0.0011885549965752664,0.012672917555279186,0.03938216411396674,0.3158379741879322,0.04302516517671783,8.303493986709274e-05,0.00010635664935352033,0.004980567611679268,0.00712268018266618,-0.07129288654380565,0.00016503679532125088,0.0006206835691687498,-0.0006020044089649104,0.000846440057738765,-2.2881764810752734e-05,0.00040823231297346,0.015608065532022429,-0.025009841026029284,0.10081560681875103,0.011248717495030567,0.0019227973008140462,0.016001566401595887,0.021367929165111352,0.083022006887772,0.02743809449050592,8.257709076502772e-05,0.0041685660236125376,0.03420141512560455,0.04808954432138986,0.05526651325141735,0.0017679525540579902,0.0020741332752472847,0.023132559677888208,0.08520284621176347,0.02237429252051328,0.00010756862693287664,0.015595824803240819,-0.033400006533037103,0.068862607362406,-0.023244270550012196,0.00019661808657594348,0.004593013377980592,-0.0031791418629097553,0.011255763084719381,-0.04666150440137196,6.893644597733608e-05,0.0023855715853374703,0.022960053577462055,0.07774634806493408,0.011447717619106842,0.002799051935917617,0.02663267530415457,0.007619546212151838,0.034666625204040465,-0.048945424206418404,0.00010933472399036398,0.008158012316757099,-0.003632109276668211,0.017546663048829556,-2.569750361763514e-05,0.00015011536771219962,0.01175582619666907,-0.028001465499061476,0.15960299193588057,0.07456525916654155,8.298286630837565e-05,0.008512241032103025,0.01662379154909992,0.0723967045232586,-0.0015842883791881842,5.771101089570125e-05,0.01744829445778533,0.014632224700231776,0.02813127548434123,0.001124706073882256,0.00025360063236129905,0.002299703910010551,-0.01796876865983313,0.0730263951280755,0.03468716739691046,6.118610822932908e-05,0.015811290919167793,-0.005100488143522517,0.059284972879620625,-0.10982690532150154,2.2197210588716974e-05,0.0021446667106015745,-0.007150969548858633,0.021791440156286958,-0.11082833767392933,0.00011470648199111372,0.015251962619282506,0.0038868863835959024,0.015025353223050507,0.0033753696928032735,0.00040776047511071483,0.00036126135805909527,0.028212864044861556,0.13219896711261228,-0.001048842024157881,0.0001222336865085498,0.006536416174207257,0.002185031866304967 +2018-09-10,0.0086758246201486,0.06248184335406481,0.0033220571333534023,0.00014683970876214287,0.007446553920518347,-0.034662184104243945,0.13295365367655956,0.0763214250936754,6.255559721232583e-05,0.009861396626611006,-0.003964367427367159,0.013478477569020757,-0.014847400825951724,0.00013605993634641144,0.013616776660568831,-0.005072658161375442,0.005419016766405292,-0.13583838758749486,0.0003159242465814261,0.005193938192863637,0.010458781417360502,0.023144844066680385,-0.025566779040076818,0.00023644198663240964,0.0007575171501519812,-0.009203080314492577,0.025353066914626236,-0.006487058772297615,7.925915706938436e-05,0.010809529457126547,-0.00949897273357059,0.03409437280360793,-0.027934489417681792,8.174925257352307e-05,0.010062886960794779,0.039605083158270216,0.368721445698265,0.021732387060897675,3.68341918751914e-05,0.006439922673826278,0.013479885741549284,0.01293311375176093,0.009598258704228353,0.0008037627965232557,0.001872372982823533,-0.016265197108345942,0.03838338004735393,0.009149653788458395,0.00014817604572205806,0.011448320489345527,-0.007256820222048897,0.006009881252794535,-0.008126976924074792,0.0005902076460161552,0.00639519796320495,0.01734312082843162,0.26958228135248263,0.07022163646911847,1.9171614823319324e-05,0.0062290799826103995,-0.0025281432438774994,0.00810959930760402,-0.03362350758109031,9.26090264603988e-05,0.010955068825991962,-0.019367303028780737,0.10371173407101501,0.04993727059659925,5.256577482182894e-05,0.00762958121307148,-0.03882377523021053,0.032961461410892894,0.05958932698228108,0.0022972818309882153,0.008710920562433274,0.030780707085849738,0.2011893218622457,-0.13878225938962355,0.00012590001245986351,0.0025547444754400322,-0.03854059869109464,0.22610670157383644,-0.0834162079418599,0.00026394488733952917,0.019915073236962157,0.01412714132429124,0.08844066484983126,-0.11189880059302634,4.4994895450577765e-05,0.0006742140694491821,-0.03883521092977941,0.20296498326727666,0.022488615891639613,0.0003153489276331639,0.02369781269774271,0.012987580691374376,0.1893929977721139,-0.004721520360375056,2.8457357633879012e-05,0.03723430402836279,0.03026638460952131,0.3786707384226594,0.08267173672069132,2.6704257621941826e-05,0.009524878053056319,-0.03461608521430897,0.0925253993162531,0.03183825465156516,0.0001205146209209116,0.014197099778648685,0.008182133576197468,0.05219734093412944,-0.005541460585584993,3.620850233760293e-05,0.0018797506042992679,2.918086712855652e-05,7.715848190907278e-05,-0.005135773086455271,8.384784421365592e-05,0.0007816910044493128,0.009285277576798841,0.03401769099236637,0.007897396846786154,0.0001248069169072144,0.0035674876705635373,-0.008178981828117196,0.009848944187157304,-0.01001752636507929,0.0004746627251739688,0.023744928396609053,-0.01512222701530414,0.05467740057784727,0.0062206621494685374,0.00011641096863282452,0.0004608184960670608,0.0657831245435743,0.2443103195658495,0.07195569439891752,0.0017281914831350598,0.028488318961810047,0.04631414572825353,0.44155184895436983,0.030613996270158497,2.6972061760253164e-05,0.009154948396154142,0.005892556588670464,0.015862058213306225,-0.001348063867832168,0.001214550262812632,0.002270839188697603,0.016291385575765874,0.12599295526928067,-0.05432955461083801,8.610679070522481e-05,0.00354564907761213,-0.0013562023764129565,0.0019216136597338862,-0.00705658577450527,0.00016657269414724888,0.0044605787748316994,0.015484196241894422,0.027151439998827576,0.011195518645045222,0.00032734047848722317,0.00030209158000202643,-0.030573203262159645,0.11522230704116326,0.032231678457486944,0.0020566231411616813,0.020151134352797858,-0.026626745631621068,0.10803203093536384,0.014786769656695462,7.907804413377215e-05,0.0005625184558200672,0.03710402932274018,0.0613834490616608,0.03334166879779914,0.0015026124367020768,0.013501526499119856,-0.029962030057260013,0.09260180097550923,-0.001251923352909643,0.00012819404125554473,0.00484360541317895,0.029978831537346897,0.0702535757821225,0.03184279599560685,0.00017298428220281412,0.018367494117418837,-0.02850872572572743,0.11946122514487348,0.05064250845593964,5.824582035916028e-05,0.002434067964878946,-0.01063852002194005,0.027853345492674327,-0.00857658463527983,0.0036201111662896132,0.013644863214837951,-0.011071095002351018,0.053453436939065964,-0.002122112246713272,0.00010302805795459867,0.01220035077917234,0.007138145820235462,0.046017460155255256,-0.0021501652046049193,0.00011249249651418093,0.0012830552768657954,0.0001752852683615842,0.0009177812278696149,-0.012707246297179925,9.033477062214754e-05,0.0046774870519426925,-0.01601838728377244,0.06957520997156716,0.0076825182211040614,5.786442725548706e-05,0.012852177459483442,-0.023455813993934736,0.048346485737627946,-0.057906411918454484,0.0002365456641914324,0.03496397047420871,0.0063229084057661025,0.026334927821397017,-0.09109341687413874,5.97034096249761e-05,0.008055203840506089,-0.0010194644171349686,0.012055878264680017,-0.08924100576778192,2.1817475826775308e-05,0.0014261439044902327,-0.0053063685483542705,0.015671882934442573,0.009915934428459956,0.00011835461466352467,0.0016520125959058165,0.0010379435553074762,0.004002431875374511,-0.009882841414111398,0.00040876881776391914,0.006768002738562712,0.028642852037829368,0.13663106850682297,-0.020033022750197624,0.00012007112806331695,0.015966003698086137,-0.000843952388401126 +2018-09-11,0.030886329483764925,0.20386629546766824,0.0661088424610593,0.00016021657840551584,0.010777343472187386,-0.03624994596832727,0.13726516745188874,0.07450597393382716,6.336618281206704e-05,0.010095344949097173,-0.010201246068349752,0.033317003478623014,-0.05612475227591065,0.00014163953548943303,0.008921011488552413,0.00463093543808561,0.00421928217737989,-0.004808523694801082,0.00037042305699839953,0.0020871479076168113,-0.025360683973373183,0.05975830731399215,-0.022920803445945905,0.00022205494404172745,0.009731554488005013,0.0028524068170093946,0.00869141947153436,-0.005761253076610689,7.165846400651199e-05,0.013437731087442773,0.011822299784196086,0.04624597856186899,0.005128048363925509,7.500977270503498e-05,0.012848228352640215,0.040139731653528646,0.32426271208929874,0.027961488065434886,4.2449841059294075e-05,0.006050387098812358,-0.0028512967286035027,0.002529623048342593,-0.007484357248499145,0.0008692233670453099,0.026560556676226796,0.002292122396710224,0.006921013377132807,-0.0007788536223238004,0.00011580571771108674,0.02488842644016443,0.024585292870948315,0.018906206409289857,0.03762327863202945,0.0006356167734690462,0.004137363001549259,-0.0003187945202441241,0.003824947405238967,-0.00443033315311176,2.4837516540972755e-05,0.003938015798763209,0.02076043083390817,0.06459423662737239,-0.016531733331691476,9.547587116670307e-05,0.013550965301141612,-0.005521212211233437,0.03352149500447786,-0.0010514064509986147,4.63631440075988e-05,0.004345129237509749,0.038414124311173366,0.02840915912010755,0.04804379128800798,0.0026372756852644594,0.007780083620231269,-0.012422892598767613,0.08118012304176911,-0.02726146279266693,0.0001259288197805923,0.012661068993353427,0.04944578066842936,0.3022826945350264,0.09388578551150661,0.00025329358168854697,0.018766272781523926,0.0026803020274908736,0.01697483323741809,-0.00024340427435281967,4.447737772940275e-05,0.010488918023733513,-0.02822089807357755,0.16186928626492314,-0.033440724447213264,0.0002873380802631759,0.010707653908059112,0.018105141383282262,0.23872204360094187,0.005010916901512642,3.147310772362204e-05,0.006810683920655839,0.014265867960524184,0.1295580728161122,0.023429324624801805,3.678878372796495e-05,0.0072391106029269445,-0.018297942684170777,0.05837310479570685,0.007329525461231829,0.00010097461946960091,0.0155804627532862,0.0542289430719607,0.3447077663784984,0.011092658600734016,3.633895614709927e-05,0.010735905503438708,0.018418237305267475,0.050100149714131605,0.01919377042875999,8.150540745761264e-05,0.007550744209954345,0.012452832407984811,0.0520983547886309,0.023417351817355835,0.00010929309634772172,0.002414195375092583,0.022643904855681178,0.020123068639077427,0.007010479892852457,0.0006431802116159012,0.02110385314943757,0.021185341100775613,0.07262955604506957,-0.003552008142441192,0.00012277447351344983,0.005027887511395147,0.05997609231517341,0.19400752342639932,0.022754176165627416,0.0019841694986220894,0.008166074217607651,-0.02415778215616663,0.22232373467456373,0.026714726638965545,2.7941738681562745e-05,0.017570879138098218,0.01621991667070489,0.043296563512169206,-0.016704971558865734,0.001224803619512664,0.014639110642399642,-0.0400328837396322,0.24816640577593185,0.1015399578434916,0.00010742355679024769,0.0034554385579531515,0.008609700103708005,0.011895998715036068,-0.007693922407984686,0.0001708175552332232,0.0008108835861442793,-0.013817624474723693,0.020319644249850385,-0.12491578075837312,0.000390320354189291,0.018160839504101564,0.010444173231100199,0.04108010481324002,-0.03624975520986865,0.0019705745281189306,0.009395535814414362,0.0035517308953890727,0.012953306032426514,-0.0038252470076049335,8.797308001895902e-05,0.0023261930280387448,0.05698037285991918,0.07465070327860715,0.05644210043302286,0.0018974422864669743,0.030860231473115434,0.024121773380208406,0.07395823143387786,-0.1363011273360297,0.0001292226825052942,0.02588224650569459,-0.00015962465626236295,0.00043347001833919744,-0.07225833546905469,0.0001492798833330639,0.014345884680767989,0.01192378240624158,0.051926119877739575,-0.21806243680290655,5.6045673896774656e-05,0.004967125475462835,0.04283411981613539,0.14287305980627624,0.06283127930841992,0.0028415647674570705,0.005909051648289454,-0.03706280778777804,0.18598730374946945,0.015260499534683974,9.912782779282444e-05,0.0003445018135276891,0.028145415624374323,0.1444965490232739,0.018207393134844502,0.00014125732431420968,0.009591743297185755,0.005579610352561238,0.0360097649172298,-0.0005675431596444657,7.3287901082607e-05,0.010235084570254037,-0.008328988885441166,0.039308914365605366,-0.0347738905068296,5.3253557810664236e-05,0.010944973618140334,0.044969714557447804,0.0948630754506204,0.021963343117111147,0.00023112787408403144,0.02096107450076733,-0.03796477345918277,0.12218883158365727,0.1019520868972106,7.726159626921864e-05,0.0023905437561395067,0.0013901984832439317,0.019448456333787778,-0.0271519611180097,1.8442634511659266e-05,0.008272150860510065,0.010180703293080778,0.026609325120323702,-0.032882055904641654,0.00013373740289398663,0.005841158783803108,0.003588742901523018,0.013463739895669485,-0.0008247964541028807,0.0004201502288429715,0.0012937832752885953,-0.0072594223484254775,0.038358772988947645,-0.009895831584033012,0.0001083949759831549,0.005037008578148486,0.007434603390764037 +2018-09-12,-0.007649689916516576,0.058703382190273955,-0.049808862021562275,0.00013780573484669184,0.006323343788088013,-0.02753901099985035,0.09938299661834613,-0.00899073786253104,6.648853724734132e-05,0.022928832610700552,0.013032698929444524,0.0418078983114703,0.0006711350190506515,0.00014420264656546524,0.010708966116322525,-0.0028066126208815523,0.0025654973088121364,-0.019980305531958505,0.0003692145154477474,0.00649695522611492,-0.01771707811350767,0.038590049199284174,-0.013685415020865174,0.00024022297438134048,0.017691152847055695,-0.012749505914126293,0.04395538107567284,-0.03980101008185303,6.333270608437181e-05,0.003588036579327285,0.052564396289435794,0.19723600380086947,0.06189630627359993,7.819794520666874e-05,0.020019929630834963,0.027486900341718228,0.2520293636339313,0.004841797584796771,3.740014099726246e-05,0.023721671710738055,-0.004789100365334276,0.0042092757499033176,0.0009454072520605299,0.0008773873084088076,0.0012206309892030091,0.04111938004203375,0.09283050084156794,0.005325737402455228,0.00015488799252134103,0.011301406574840323,-0.004158231286973551,0.0028229665279394145,-0.011048495028444849,0.0007199913374994438,0.004007689976387534,0.02689782044387913,0.3452744938430841,0.11486172561941384,2.321535784168799e-05,0.004169171684464108,0.0066140388246728465,0.020540218649714576,-0.01618218322884855,9.565610995311703e-05,0.041879289200423025,-0.02132697383749694,0.12601173718174577,-0.18788131416024934,4.764091080424018e-05,0.004556898797528604,0.015803358397173277,0.014163070002463753,0.006370729766200476,0.0021762809487991756,0.03138709246662036,-0.018058081666273245,0.11104316738399239,-0.01059476895455933,0.00013382334448217115,0.002658791024861217,-0.0418709328374548,0.2247056027913773,-0.012834083300138051,0.00028854062441907975,0.020239359993405415,0.03177231513224915,0.2015258408618968,-0.007223270371430788,4.4409826400851736e-05,0.014187482295055258,0.05242105806295056,0.2897152473201688,0.06117896791525654,0.00029820933741107387,0.023779921436957473,0.029179494742735335,0.37853850128888983,-0.013633528490031641,3.1988799402620095e-05,0.03209607041699408,-0.008497379034978447,0.0715296887956631,-0.021476464592080968,3.968993287205339e-05,0.002132830378378465,-0.012739712877991324,0.038204339466538804,-0.00019238878397852355,0.0001074161792483413,0.023328066915972546,0.006431585728175075,0.05339834520196906,-0.026176009739522065,2.7821634465073297e-05,0.002479521710500721,0.00396611086460073,0.010250540370922597,-0.24316342394704774,8.578186256480634e-05,0.00041921051583494306,0.009281305217907593,0.03469358249515811,0.006875154516924698,0.0001223231067000966,0.0008706757120404351,-0.03400075896816329,0.030144882301692197,0.006367710264695396,0.0006446894753704822,0.007085742783759315,-0.042158430757706145,0.16911051609888764,0.0348018590537513,0.00010493003823439666,0.019011880712664776,-0.02980794698661518,0.0820542352078529,0.023311795951174198,0.0023315795519858584,0.04899130800323732,-0.012951727909627588,0.1036509941415972,-0.0381410840328021,3.21319021372264e-05,0.010046643796294174,-0.015185194583789023,0.04596420111496487,-0.0009270897419619129,0.0010801197691043493,0.00031786255948370364,-0.0010263065453106868,0.008825948725117886,-0.02838973965981044,7.743572018451162e-05,0.012679725922371519,0.0053774246076806614,0.008320694957581538,-0.003156410883976903,0.00015253170180649488,0.003785815907677105,-0.02574580939067872,0.031776083286665424,0.030907039782698376,0.0004650611897456359,0.005389264875925228,-0.008394308731193258,0.031741344856724474,-0.010631684955451253,0.0020497927633474967,0.017378347919154893,0.011725638615805013,0.039406946895707784,-0.0824527917295573,9.546717839853387e-05,0.002835885663079786,-0.04415339302434085,0.06722169637572976,-0.011590818100956421,0.001632795545875928,0.021018235004956302,0.009765028312429085,0.032286829594069096,-0.0035446887153507676,0.00011982960886927304,0.019389723440571653,-1.2152358269973696e-05,3.315549785430294e-05,5.961926872428113e-06,0.00014858172197141034,0.006615496413132531,0.005820271456637977,0.021640843965644283,-0.05055534774357357,6.564217640131096e-05,8.050097166565858e-05,0.0014574076645875267,0.004828040635397393,-0.11459169061152609,0.0028610680689863527,0.013800154812724326,0.013951559147842749,0.05972521936126547,0.01853783828513272,0.00011619984849791972,0.016763076511882687,0.006900304695718008,0.031392642971389835,-0.02507549193290245,0.0001594047181715735,0.011085231929100478,0.04705522706394591,0.2702057229448416,0.11214351759898318,8.236866535795185e-05,0.008727889207989763,0.005684554646141429,0.028759438672487456,-0.11055700908267795,4.967792362159466e-05,0.02382685759071006,-0.009212545338131697,0.01850740888527627,-0.000388025227885007,0.00024269644356577816,0.025860563195159093,-0.006889864118363622,0.02965895636919554,0.0015546038509071324,5.776558390174978e-05,0.00912706257313672,-0.03287799869702029,0.37862577756043664,0.14109325475866547,2.240404731357901e-05,0.0006519744318792618,-0.018078419613065083,0.05643035252045049,0.028084958694850823,0.00011198417727857629,0.0016015963723049948,0.023450583459669973,0.099727752398604,0.08175561069302668,0.00037065135508570904,0.02052689964754128,0.006728714863524381,0.03011410667375767,-0.029746040661037296,0.00012797759264779926,0.008830660594042205,0.00014290085628204674 +2018-09-13,-0.0339219946763173,0.21914281628378232,0.03731454283344919,0.0001636970024804905,0.0006483596619690738,-0.002935950292881049,0.009707704491644863,-0.0029114982200276673,7.256758618499094e-05,0.004487376690250668,-0.0028397369803277927,0.008697552280705583,-0.060329876172314854,0.00015103523429008402,0.0022616196934425233,0.019860400221220462,0.020453954491148053,0.015344247638064974,0.00032770160390486016,0.0026508081848805906,0.03295849143332118,0.06699807274028258,0.03935930200875829,0.0002573965890003703,0.003906585764871995,0.006620528380336119,0.015861066281378927,-0.017976307307449355,9.113957759632423e-05,0.002437657863889855,-0.0347773779332329,0.14355189076264913,0.012590105107752363,7.108496813176055e-05,0.005396275592557169,0.0019346307194794163,0.017303553746581095,-0.007880969805996172,3.834081918971224e-05,0.015540218064096974,0.006355335827816257,0.005196680845389762,-0.0077034002599373624,0.0009430989159439275,0.0015916765702842655,0.010492325540239275,0.02180323623839149,-0.1917913335357476,0.00016827232011408933,0.005986737042150166,0.006618392128567949,0.00445486681296009,-0.03162575050517069,0.0007261763964925127,0.010272288934762404,0.00896248267032805,0.14189428273308882,0.011569385985919509,1.882288640621592e-05,0.01264573399678771,0.015153972120881312,0.05033483747827965,0.008621760898598658,8.94352759023617e-05,0.006315905983962672,0.0037631914197145465,0.021729528724232634,0.014523579526494766,4.874923679028542e-05,0.006368951758292312,-0.015852953736241054,0.011810669812231426,-0.026839372449728977,0.002617933656968288,0.02372524156719606,-0.005790212300055302,0.04915511012817475,-0.0006190236191551098,9.693439897932705e-05,0.012970411582831878,-0.004576782422717095,0.026498137193782686,-0.02390474280896431,0.0002674564984091856,0.02391472004547437,0.053454103343466904,0.2820870940153247,0.0523625367337383,5.3377568686565674e-05,0.020143011016017842,0.03138997705513981,0.170109448892157,0.013427557817402722,0.00030412307157409735,0.004777661817226253,-0.06984313503462518,0.9850772996364424,-0.017377703728642873,2.9422775990416205e-05,0.021602141281985596,0.011633621039948257,0.11194728635378703,0.021517056190611727,3.472026659919518e-05,0.0016290861715732544,-0.030627035231424644,0.08659880622557792,0.018349324117707542,0.00011392415307486104,0.002280805311629316,-0.004022110112659351,0.026856559453622725,-0.0045792450014846345,3.4593615731090706e-05,0.027984864097353734,0.007117107675659754,0.018947216897760293,0.004603314331318303,8.327899815109282e-05,0.005126611579282049,-0.0035162892956526,0.014442860889604678,-0.019294589794751002,0.00011132173488530837,0.008311266844483646,0.020196005023025033,0.01751884527111616,0.004705444252931277,0.000658924346502234,0.004238753480961803,-0.021151535224798287,0.07992067378392428,0.015200847366056574,0.00011139578732463524,0.012452041388568084,0.011892024431869206,0.03180251993108892,-0.00025550246458788195,0.0024000121150908574,0.010771394015644035,-0.011509981969843616,0.09721455504097207,-0.03554454942710497,3.0445670710305174e-05,0.028802460578562977,0.03267524651871092,0.09451777435196435,0.02937331837384234,0.0011302555701304183,0.030719303928738992,-0.0035681599433850316,0.025890699767162628,-0.004280170537798432,9.177537508005352e-05,0.019400046539882868,0.023100033433366144,0.033690812807703314,-0.032654055964667306,0.00016182533176668088,0.0037992850836678542,0.06543333294256813,0.1081240752383805,0.3325760688013733,0.0003473605950091367,0.01780129613452707,-0.03776163335144363,0.1427760256350003,0.055969469924224836,0.002049962061469293,0.006765866516596766,0.011623829735235899,0.03953600623949063,0.013966794968997893,9.432934387706225e-05,0.010900469507954506,0.02237031142058059,0.028709508785514343,0.009799457440730115,0.0019369725225650862,0.03496688007711906,0.009060960200207828,0.02440142652462676,0.005610563765872091,0.00014712112698775002,0.01747171469109873,-0.0012025254625213809,0.0031601150763521193,-0.0024616796305341284,0.00015425944312626665,0.02432193565530597,0.0069058073650768124,0.029549912392122697,-0.02227232501962194,5.703903732135744e-05,0.008086266212100877,-0.0008479947202865277,0.0025591620050185123,-0.013764785317761888,0.0031406057894789426,0.014919237895718035,-0.027158706160952662,0.13696541806604773,0.011522707084154494,9.863674214465379e-05,0.0029002978869372134,0.03652211391052196,0.20610178355336514,0.05867152119244249,0.0001285094133450064,0.01034227293296319,0.016573869357934316,0.08860222380841448,-0.001432997616496047,8.847651088417077e-05,0.007894207353485519,-0.0022684238430270244,0.012090094941501324,0.0017162563309003217,4.715653508751276e-05,0.00796128813636162,0.06435621202191157,0.12815170724212413,0.027989096767248967,0.0002448473858826941,0.005507145723495472,0.014398432945741568,0.05996908498621826,0.028056232859400156,5.970382858310589e-05,0.009420398337841657,-0.005293411815441528,0.05152150787132251,-0.003699780788190445,2.650808795544334e-05,0.007158459837111263,-0.020463803217135333,0.05187732029883075,0.05491943662455723,0.00013788524044188233,0.007056292006951059,0.023890208323626604,0.08889025996322424,0.023510651054102293,0.0004236368512713546,0.009161942094582425,0.008895968427496048,0.04398272098120151,-0.08638082613606032,0.00011584650486803764,0.017623533560365404,0.004417345668984651 +2018-09-14,0.02501506656125196,0.1571854755470062,0.03616714443357923,0.000168296790326346,0.008117727697719733,0.02585100120795694,0.10670338734360381,0.008433856247661284,5.813125352291847e-05,0.020070177963546564,-0.049456930302577425,0.15558424643450575,0.07356484983483066,0.00014704787091835144,0.009304744068903583,0.0019005171944845587,0.0019831017944835706,-0.03494638474538738,0.00032344068784518536,2.2204196750756806e-05,0.011704156321039227,0.026677417752453622,-0.006045197906534372,0.00022955887951625316,0.0033292414767851584,0.007691382487057253,0.01959337616101478,0.0019044286776599307,8.571204806362474e-05,0.0029202979596332328,0.02507497905087441,0.0890251645063915,-0.0031683990921080466,8.264520270305981e-05,0.021547393405983654,0.009199575251471142,0.08420891355213585,0.0003348354045915842,3.7463498097506265e-05,0.03185919390942846,0.0058268421090875554,0.00514191694172492,-0.009598492762473683,0.0008738823735575451,0.007144489199279623,0.07346987582133335,0.1484749571072856,0.12853744044663162,0.00017302863579777373,0.03371196548246601,-0.015453515985010925,0.010943471533214245,0.021885620985128976,0.0006902343229131461,0.0058299370737952706,0.00131078147040347,0.016233110739549333,-0.14445254448281142,2.406308646049161e-05,0.005432729461469329,0.007451250420100842,0.01882039956801568,-0.006042465556975308,0.00011761192483061881,0.021729091500737888,-0.016206563441032735,0.08327318123483336,0.024686916384993287,5.478322512552052e-05,0.0048633343185820604,-0.018237454866631232,0.015514172756819903,-0.007435239504189995,0.00229275991126372,0.009082781129986383,0.00028058594584672405,0.0018360720775994924,-0.003870104940123754,0.00012575587859493107,0.015549836691022478,0.014119705835518385,0.0734974421500033,0.010565064149489722,0.00029748265970439014,0.01900023403663743,-0.04212831984696925,0.22026428078352478,0.0596604010312818,5.38754635181374e-05,0.008244213524499472,-0.04790468702329996,0.23690890060570974,0.02705350943681581,0.00033326018971699005,0.0009006625496219324,-0.06871920034590248,0.9441478837826076,0.0565545015544698,3.0204267256837047e-05,0.05062572127649398,0.019676468514435958,0.2111194920874123,0.04097093269140927,3.113870389030365e-05,0.00040708811748953254,0.023383435358472638,0.08007833981056775,-0.007185087166729267,9.40623902618665e-05,0.02123877875071695,-0.00694765481346547,0.04699643768307584,-0.004279259604123771,3.4148031170700426e-05,0.014494115250042594,0.00952472694176349,0.029565265964544424,-0.003909539327381572,7.142465085899964e-05,0.000695843834585493,0.004133756699491109,0.01713591803555099,4.858249199131937e-05,0.00011030269693470458,0.010551784009131763,0.0052077825110767185,0.004900577650121231,-0.04956259455467877,0.0006074088637507311,0.002484614485053215,0.00018893363443183824,0.0007088447018209303,-0.06774119493653562,0.00011218742771443539,0.008908480510321344,-0.02506450970678152,0.0933294716133222,-0.028075012535603332,0.0017236916639431577,0.0420754754708317,0.010971488257440551,0.08702412124545016,-0.020852577777342736,3.241963278895156e-05,0.03428040528493055,-0.03663272378629956,0.11355315945043513,-0.043220659572196556,0.0010547299024829557,0.007174506376935993,0.007862725320494392,0.058378708133455436,-0.027331261869654854,8.969005020876423e-05,0.0038527123935149284,0.02049375871017517,0.025665767278602807,0.030544141262310084,0.0001884572080437472,0.008181582045715388,-0.01670114732842919,0.028439124472202593,-0.05947154205965656,0.0003370807867532467,0.0003604170789460301,0.05510111843149858,0.23673351065076287,0.13425420451314582,0.0018040601638166557,0.0008236268018886948,-0.0233705070830863,0.09035433374423261,-0.003245579052045815,8.298689550953218e-05,0.003730408277665117,-0.039014029666149405,0.05323409089086799,-0.07166775639158615,0.0018218313029306026,0.02109282788200836,0.003208009189034927,0.009985011778841762,-0.017791548191512394,0.0001272925710953718,0.007992945426304411,0.011537373779568661,0.029463304382564018,-0.013653034146034136,0.00015873982108360462,0.00630760730646685,0.03201514828614787,0.1307082763914885,0.01688700701700525,5.9781437652522535e-05,0.001987022003858009,-0.0657852566591143,0.25413451048649954,0.11428206204238166,0.002453482625242532,0.002266038200597504,-0.011234087933697491,0.04940527937676209,-0.0005945921092800065,0.0001131110490230858,0.013097649026116412,-0.0073790745667143155,0.04342642771811887,-0.0011201149946079743,0.0001232277667481761,0.004045502314671465,0.005693919120036488,0.032319448621442544,-0.0021502258634362842,8.332897689132151e-05,0.020463565850055453,-0.004204781934779037,0.01962490767492004,-0.13451045932967692,5.3849695302251456e-05,0.00462499751276609,0.08872091346735153,0.16578475084563885,0.09158530235600998,0.00026092207149736534,0.0026244798117600414,-0.01150316478474498,0.03815751026486925,-0.008556453913622046,7.496381622844286e-05,0.010872479491808092,-0.003347782861929756,0.03790961249626778,-0.022792583641634667,2.2784485285065124e-05,0.007598452326894462,-0.018036614840225226,0.056105538280479816,-0.15652017537597523,0.00011237203931959706,0.010428657922466998,-0.0007516150883465266,0.0029926624811747815,-0.06461023998689461,0.0003958819690959466,0.0019405257967084078,0.09761063175778538,0.4563061690197113,0.31590699011498613,0.0001225215773708931,0.007803484975970491,0.002242104070492016 +2018-09-17,-0.007387956950035305,0.050196838297979524,-0.02000895124201633,0.00015564478595015137,0.003633645187804827,0.017076411056717675,0.05760046565471797,-0.03445816387810427,7.11346391279284e-05,0.013778542266775242,-0.03187264796273592,0.10057756974278624,-0.05541646628281277,0.00014659333085564164,0.0022430348694170424,0.006884749672539579,0.00833844053517034,0.004046366609817673,0.00027865778097916575,0.0056656099912176456,0.02188972999558172,0.06174565136157399,-0.003157186144305708,0.00018549482609442116,0.005174199332129164,-0.023204149827257582,0.06841402788245707,0.07446405448377837,7.405719191197149e-05,0.004935595529859492,-0.03437615886759121,0.12771050503717354,0.03175431233644232,7.898062763378241e-05,0.005827709853209432,0.0090841388148964,0.081344941451852,-0.005611142526901521,3.829585989746583e-05,0.006793993182071367,0.014875381524816603,0.010667682810335378,-0.21847197942000146,0.0010753325846405988,0.014589925228592312,0.022965226022485,0.054496215980909576,-0.0010790405930816763,0.00014735547033654258,0.010282904984072545,0.031089781212848448,0.02520302824379469,0.05846992405936851,0.0006029611046865057,0.011223134464776439,0.015470106128018742,0.20203161501890052,0.031899616476951984,2.2819007280819095e-05,0.009214328820586464,-0.002757719765933129,0.007729605155457206,-0.030686726727051732,0.00010598486720252476,0.010166562825056196,-0.005955001390276391,0.0350880548870234,-0.011134415881158101,4.77732065099952e-05,0.0020765904687765633,0.020761439384350378,0.016851126759039815,-0.004073693049737641,0.0024029873623928914,0.004845600599327932,0.008978643433646162,0.06667762053416232,-0.02775378788713036,0.00011081096565190908,0.040287148665100254,0.0658632002767902,0.3503431324916503,0.12490150716567455,0.00029111021988567035,0.013750120673423566,-0.00529564689249471,0.03245461367353546,-0.012454377209033043,4.596248819264465e-05,0.009095785755940866,-0.023647324579214927,0.1081332997490945,-0.046989212847362634,0.0003604203997190485,0.02448469282238278,-0.07063983949661971,0.7352456430996956,0.046610469012097415,3.987011381358562e-05,0.003731217027636004,0.04731726078426268,0.4963098659498419,0.17531275259017373,3.185285728812998e-05,0.019646542954289622,-0.0857183662775185,0.2748911365128409,0.09228210425615616,0.00010044675337720221,0.017775417803414722,-0.07716292387368603,0.5202412722584038,0.14836601690915632,3.426070131240926e-05,0.015462163019258316,0.005094654773504883,0.011683568941681198,-0.03320661030488815,9.667554236366694e-05,0.0003438840847842981,-0.013249395252806039,0.05325081637248613,0.0325346717494934,0.00011376754367788766,0.008814131509935298,0.048268839146716,0.05130555910093512,-0.014233099741379958,0.0005377469935156581,0.009676836778517287,-0.024506883320197976,0.09402086159777456,-0.03857553448985645,0.00010971092214989327,0.0022360454537225694,-0.007821291525124813,0.02699719933014023,-0.02185551557886149,0.001859426154282286,0.032234058940958765,0.0006219414762625209,0.0061720889708188195,-0.05295971474069897,2.591191662796948e-05,0.0009729598398337915,-0.012495014216542708,0.0337112629439992,-0.06918963637266205,0.0012118057288957238,0.0036303344714945446,-0.003596780121670613,0.02720580798331894,0.0016375690730106435,8.803956824669054e-05,0.017588906193193376,-0.0023711554257633406,0.004138524417672345,0.0070264778420758974,0.00013522590188534835,0.011612838697961304,0.034878389502232945,0.04965442006113559,0.0739910967557578,0.00040318319606577054,0.005527506171706073,0.005899704495213743,0.021956395832442174,-0.0014252294907851095,0.002082665623820798,0.0002454919371599005,-0.02171476521547953,0.09409023505102013,-0.02527983824329457,7.40458895673733e-05,0.0028528474931676993,-0.037672667946910376,0.04562992471236052,-0.10816946082565955,0.002052361301913428,0.0004417121004752567,0.020422275701930795,0.06826088578708457,0.025884025102429854,0.00011853544973675199,0.0015599861234895666,0.03844400272238063,0.09148032564141649,0.03931671165881241,0.00017035750602920494,0.008215470575667771,0.01233293918738559,0.05463872535332595,-0.003896169300032253,5.509091121766688e-05,0.001369204796191559,0.036719380977203085,0.11657051415145955,0.04562546248754505,0.0029855523941797234,0.02668628733381464,-0.00598858272152881,0.042050346037433364,-0.01492134515990672,7.084269097919572e-05,0.021978306160126634,-0.0038288404829764405,0.019024554463085937,-0.01924721723227004,0.00014595318033894985,0.0037394921595309124,-0.014151185895886957,0.07505865340612956,-0.043660882463148656,8.917451708577838e-05,0.009854273767448166,-0.059017751615713716,0.2964147185938023,0.1578222104455223,5.0041496659731405e-05,0.0050917882939509294,0.0018751934304292472,0.0034265426214213583,-0.004537315255815307,0.00026682058296063557,0.03551313788022128,-0.002628969995227817,0.008922597102663805,-0.024448151669739213,7.326705282928098e-05,0.006822370928642864,-0.0331025435042058,0.3078627182129993,0.09198818628081348,2.7741858413703425e-05,0.0013451732236504851,-0.004352597018397933,0.014341743959026891,-0.009851412812876522,0.00010608536132616601,0.003611962342873698,-0.026424395694841896,0.10734588293349921,0.04933472624070557,0.0003880142205264813,0.002259031308702003,-0.007777085352165725,0.03477355564555692,-0.00016633037460300157,0.000128097177651391,0.021068137144850032,-0.0034636189187474725 +2018-09-18,0.026112457360766447,0.24410000198512993,-0.053106841498426684,0.00011312707150651417,0.006403354864259185,0.004997046499019234,0.01631711168679562,-0.0026840380028465205,7.34819429580503e-05,0.014249543108529213,0.030584892856686186,0.11036043346608938,0.062299461786750374,0.00012820081034864469,0.009295743329629447,-0.02449469316155772,0.02164518045596127,0.07702572961626196,0.0003819254939366783,0.003753659831211011,0.001990536770275079,0.004001796184843546,-0.012048532776693271,0.0002602633472627534,0.006794005893463662,0.001110358533268215,0.002855232254258442,-0.04802911364361093,8.491189502010503e-05,0.004531783991135152,-0.04055936197338855,0.1467274675796819,0.03653457253817437,8.110909354562442e-05,0.025330938975013585,-0.028056574015936957,0.22245427510002694,0.01456032972622317,4.3250635826579444e-05,0.02800949873729919,-0.014854452459297677,0.014141474748865795,-0.007453504687957456,0.0008100404988147992,0.005122358329405622,-0.025043851157247284,0.054504773119860586,0.03300659495070909,0.00016066765837486238,0.010826746063879759,-0.004803456485833177,0.003190643816990069,0.0026750351181246603,0.0007358679600693749,0.010182864697424524,-0.005503935466624575,0.07597130517170643,-0.012625077544538807,2.1589696391339555e-05,0.0056109433520095675,-0.002033826606396135,0.005121134369277587,-0.021889800962095148,0.00011797739193818438,0.0013033176236263498,-0.0037176123520575688,0.020671513032013998,-0.021208883366893264,5.062367335169264e-05,1.7841079402296242e-05,0.00617628126108539,0.0054221213751351255,-0.02456755621241918,0.002221676404207638,0.01907688513158358,-0.026858384847199712,0.16376849374032174,0.0026034610040065417,0.00013495893597277676,0.00778130075558848,0.0551584570345553,0.2830065795454038,0.07273753502470512,0.00030180317792549417,0.0074231145916752615,-0.008073549252113428,0.0414139724228868,-0.05063755840526178,5.491342918904421e-05,0.01482354491435775,0.057074454966456516,0.3455400208972324,0.04129492305925137,0.0002722263907142476,0.006551727052779646,-0.03590396516846886,0.4985276857387002,-0.002933240781394923,2.9887071552483756e-05,0.012614832478746644,0.013990599385196957,0.13247296525151592,0.010182785012569164,3.528505286267876e-05,0.00823803730718537,0.015631408517133235,0.0469101568213938,-0.010753590204955045,0.00010733811995013313,0.011689095645901522,-0.07103178919924398,0.48306980153462903,0.06369946568931949,3.3965283291312545e-05,0.022669983305030568,0.001487937573278896,0.00495495434454195,-0.02293753323658511,6.657672622169302e-05,0.0034456885737158185,-0.0026472918435013937,0.010615671230532205,-0.015932924795495476,0.00011402575520058106,0.007506735337093658,0.0034354595484481745,0.003913088145619056,-0.00914346014971283,0.0005018116847941134,0.051286685603050663,-0.004358992168051844,0.018101340259201536,-1.2053738227432858e-05,0.00010135877793495415,0.016636453613460292,0.01970667058767603,0.06091006962958646,-0.009458547262616447,0.002076554509450766,0.007147595662854467,-0.0037805388026100647,0.031840136922616835,-0.05112812148628841,3.0532401769481445e-05,0.02023733398681351,0.000422101359874734,0.001044518007647126,-0.049762998946415865,0.0013212107218413581,0.015320525151598813,-0.0008806852869137852,0.006375048880186497,0.0017389220845527053,9.199471220551505e-05,0.0023045947992932454,0.005546534311024857,0.008285233072123718,-0.005619187849783949,0.00015800191842450236,0.0004024294430707339,0.046897016944188345,0.0729781229363017,0.07252330744016368,0.00036885565304123336,0.003640998997544253,0.007577752340322643,0.027027618091006195,-0.002858578595812338,0.0021731163279901772,0.0047508673705115275,-0.03036370147238369,0.12590456700202335,-0.013122088861217952,7.737552335554396e-05,0.013049974964371573,-0.05652262102834738,0.07301784540291517,0.018400826437681442,0.001924289767723576,0.007782499625275471,-0.006546263794926078,0.019815131490480628,-0.03406894101550978,0.00013089184217062252,0.006371422310227004,-0.03121891687784105,0.08025708983315728,0.009500168540420224,0.00015768660379154292,0.0028498835147626744,-0.016060759639677635,0.05256965091988383,0.032815902102934315,7.4566698450827e-05,0.0027735053964207676,0.008115624100352268,0.02397082019542729,-0.06224078978042095,0.003208906676396379,0.007306752601819306,0.003220894848146451,0.013253931702185603,-0.10082420863647382,0.00012088499284104266,0.019723341384532193,-0.010762981604675306,0.06805765538815389,-0.030238551645590313,0.00011468758267413679,0.007659880786977179,-0.010023453821097015,0.0738642005916746,0.004033003993551735,6.418478498127331e-05,0.0010584516793044874,-0.005950198708219516,0.030251767090164274,-0.018394405754708826,4.943426896075758e-05,0.01574135526195078,-0.04090023369985734,0.07122285917820546,0.044812828324982124,0.00027998565410793336,0.007873040160928558,-0.002227784660056924,0.009096852476008246,8.181337875744733e-05,6.089707501484077e-05,0.004110899232708264,-0.005119885565950862,0.05157368625335318,-0.08826984284063932,2.5613171990252952e-05,0.013458908673618108,-0.02113525846279057,0.06615154029648929,-0.035784589309376336,0.0001116802986915535,0.004256755163808284,-0.0313356127368411,0.10949583831207292,0.10764004285554613,0.00045109555667858484,0.0012398639796309078,0.01580984860756566,0.07399726866273929,-0.014160817141766213,0.00012237249578904788,0.016791286302791482,-0.005567553192866567 +2018-09-19,0.00917286473385609,0.07172547479438987,-0.04311452633133011,0.00013524404184744616,0.020281969791887244,0.015280811390565113,0.05295337743961754,-0.028658918178098642,6.924099126221926e-05,0.010955515582906939,0.001883290057477014,0.006096813340577018,-0.0564098293447554,0.0001428931858952947,0.015120079016821372,0.01689257150498908,0.015982631821241138,-0.0014411073279071498,0.00035671003502821155,0.0027148694847494905,-0.006674561497560964,0.014460044482287536,-0.03648825994486937,0.00024151876665351238,0.008322688737304665,-0.021683296642881104,0.05372132808604745,0.018069431391229726,8.813031257853842e-05,0.0016756600472329667,-0.03867965928015509,0.12292286554216131,0.004468620615037432,9.232935872773474e-05,0.01446461454377068,0.02719398461762854,0.2822375138712987,0.01759694998628049,3.3041269411706314e-05,0.01585706291696774,0.009348704010168907,0.005157122238213123,-0.06605629853411653,0.0013979407697063003,0.01587579920280129,-0.01094919879640146,0.02451644642118149,-0.025126264762594525,0.00015616607911864995,0.00245949713684748,0.0046014469919750675,0.002800875652648779,-0.12178922349172475,0.0008030173953303503,0.012850371070010134,-0.011983310594943099,0.16475210748858424,-0.04715938873161393,2.167547515723367e-05,0.0009502211453332086,0.009617240817759568,0.027231402192150214,-0.0001665633823835212,0.00010491353591928683,0.039089098462369104,-0.018552137123567982,0.10446945254478195,-0.03210930925835164,4.9988078722834597e-05,0.0017487044760487928,0.008630214405923403,0.008052276526544585,-0.013487794372899924,0.002090383059087344,0.019645847173032638,-0.03476746486891288,0.22112935554558297,-0.010561061007372148,0.00012938345138464394,0.018509007898361074,0.02370406159716808,0.13974561808701919,-0.02753247179019568,0.000262659310617688,0.023430837330821512,0.003987829669188374,0.026862155507607652,3.152223493031739e-05,4.1817368242257464e-05,0.004925185113228451,-0.025860361420288535,0.14287751114769284,-0.24308118371631854,0.00029830293145544914,0.002048861449954388,0.024965821769979718,0.27200306277980996,-0.003477072937833525,3.808923961204828e-05,0.005955219307797938,-0.0011207172489686478,0.010874028886301942,0.0002467230243375641,3.443398476181221e-05,0.0013007217437772064,-0.008684414367854335,0.02349654538588861,-0.02230279966704396,0.00011905819081694961,0.014657125821405288,0.037143353517649434,0.2530682108983713,0.027931650471432496,3.390282540600644e-05,0.018157310803062092,-0.004499360949518692,0.01312545047591144,0.008695998590489364,7.600007123472013e-05,0.004377063070092797,-0.008135227727917466,0.030054071016822535,0.012824496057037086,0.00012376988911970603,0.006094651825404128,-0.007739423561041477,0.006744580013381044,-0.10265337586707901,0.0006558873660159946,0.0017532032089405795,0.008965421792807382,0.03176212793501496,0.01687610730850264,0.00011880839933647233,0.006352682168589056,-0.03720934178877258,0.1252568123567762,0.007873831496730582,0.001906644860756742,0.0048700913846891755,-0.015798197595421445,0.1553327144355192,-0.0818827903957569,2.6153318643312052e-05,0.0036498415947933127,0.032107289324495324,0.08459873923064694,0.004879117424897611,0.0012408263871347331,0.014029551101894017,0.002135374996933435,0.015400315655077504,-0.01567299703698664,9.233581227103177e-05,0.012903917096168546,-0.005655473248569634,0.007722721125429871,0.01213621317921247,0.00017283989203926468,0.006896897166096074,0.05850336856249026,0.08907790116939064,0.10972522948906206,0.0003769769627664565,0.006361795390544258,-0.021651597458627693,0.08788844730267856,0.0036532392419663965,0.0019094508913838283,0.009396820972404156,-0.022586773896758398,0.10480921161725659,-0.017561117770865813,6.914250672654554e-05,0.009700637718576422,0.010209170197462678,0.013945364321944318,0.002977616825146273,0.0018198591272100709,0.008705338427052184,0.00033486394033528937,0.0009595765672818681,-0.060314372210146884,0.00013826262110983183,0.011581072527086416,-0.002812284240066815,0.007005828001020655,-0.00813171510103953,0.00016272718750384244,0.013146838834456396,0.05454813546341153,0.2563719024828508,0.18895249282692958,5.193060822163044e-05,0.009282266644742724,0.019419026976576714,0.06811647505500655,-0.02262221458324872,0.0027020498518999002,0.02733653979450788,0.008288528959311089,0.036676420073290396,0.019620522387687297,0.00011241676709986151,0.02104742384906891,-0.0037838268304589526,0.02047906601934022,-0.001166965428578939,0.00013399293211681246,0.0057288902276579744,-0.03721123314269255,0.21546499718179637,0.07205991616094432,8.168569962307851e-05,0.004153216653626891,0.02207546476281777,0.09371412903072225,-0.016132452330994532,5.920415368961294e-05,0.0004491327218614684,-0.0065172273042545985,0.010923486429987838,0.0019767062586432205,0.00029089147172984094,0.012084641485829628,0.003490384271241023,0.015546511323604805,-0.004218987151526527,5.5828334414895665e-05,0.005776766502065471,-0.021931425780076726,0.20961811860363105,0.029512462444457252,2.69941298836488e-05,0.005816538150535234,-0.004884013112991316,0.017247572974446797,-0.003211764080723247,9.898235781282213e-05,0.007866219447704256,0.004815721263405807,0.016884784082236908,0.0010876014160342033,0.00044956635459629226,0.0014577344118099442,-0.02339271056791504,0.12323381451922304,0.0265757853233529,0.00010872325645237042,0.013701039806298568,0.0008588869710533247 +2018-09-20,-0.0027465632175645693,0.015650752205873343,-0.007390615986261393,0.0001855841867457672,0.001753717655424825,-0.019901438447461825,0.0636099668582881,-0.029697099539725706,7.507058928951916e-05,0.018941737438224297,-0.05015002176414488,0.19436624783809292,0.08531322754398304,0.00011935688596019045,0.010463603249809673,-0.010001381432288525,0.009735615968701202,-0.03539596826536141,0.00034670843898028126,0.004731224125587612,0.018877570657166536,0.04270834633708277,-0.048662841257099076,0.00023127629470867325,0.002138344062927484,-0.02655155771038503,0.07655823662593841,0.07670962083561693,7.572596618219944e-05,0.007195036416330935,0.019179325828507104,0.07661638290437685,0.006204739304848689,7.345164855181914e-05,0.008082249411762292,0.016366668593850178,0.12723153779688273,0.003472683609296595,4.411274939315836e-05,0.0011865827810512409,-0.02016869429781711,0.018609862314822576,0.0397591176108481,0.0008357558206344317,0.004387945030424029,-0.019245714002294908,0.04910285405803161,0.015615336299521823,0.00013705319941730563,0.0014996037182551326,-0.013444822035200955,0.009281447444747494,0.014885483719213825,0.000708049640091358,6.04246467553228e-05,0.01170125654542018,0.1352856074093502,0.018328083540350353,2.5775297979446005e-05,0.007191839246676814,-0.03501793971882421,0.08756960650313557,-0.13631348681678823,0.00011879228343083876,0.027858495706496542,-0.0011094551303542047,0.006142024414315085,0.001515333354538559,5.0846378109707465e-05,0.003463168971990746,0.013223501129811634,0.01019751670215672,-0.014507503553004654,0.0025291524254431653,0.0037189578934430133,-0.054761232515353565,0.3033678123072029,0.053492773526350956,0.0001485442421197665,0.017711985149447208,-0.03859344997727607,0.22063165506447047,0.0123433662341272,0.0002708656992654413,0.013092135943396388,-0.01965934734679787,0.11155368918300879,-0.11386500453169848,4.9641639295988564e-05,0.006305992974902798,-0.05995905472564543,0.33938200770277227,0.0885913177207029,0.0002911741191705575,0.018737918248449097,0.0015380131496862052,0.018002440723248837,-5.009058141291248e-05,3.545348160950611e-05,0.005648847683393585,-0.0019283552421502518,0.0194991901437823,-0.02081863161429625,3.304092351280291e-05,0.014975518231643134,0.044175225278804964,0.12599985325630225,0.04804454069355837,0.00011293576276716177,0.015799852952988594,0.07643902050396133,0.4491600678358537,0.09660458843050537,3.9310299319392807e-05,0.04083059381548349,0.005413543375279366,0.016224860894342327,-0.013744873891412468,7.397381573167828e-05,0.007355634018808251,0.02526832972892923,0.09289913306029922,0.07664345547476217,0.0001243693801584903,0.007363021841228922,-0.009476046012489456,0.008402517002057337,-0.07873463628021751,0.0006446044841280635,0.040361983585968604,-0.024100261272721135,0.0981334466097087,0.012648346065173757,0.00010336909347893707,0.006382290419945308,0.008215924873651269,0.02958014362208997,-0.001067939929915322,0.0017826880604007228,0.016962365931314255,-0.029982090692652532,0.3338687177429921,0.026590346093359408,2.309236320535509e-05,0.0034497348494899605,-0.010301685584557938,0.029040596222628,-0.0027254006417812915,0.0011597757721459882,0.007996971544330595,-0.011997785332844296,0.08953804142466817,0.008418871902468077,8.923169446914877e-05,0.002648735944271523,-0.01719440046940964,0.029091525591742964,0.038155138512560915,0.00013949734023467725,0.013676527103136767,-0.0038533686915346306,0.004789617918643568,-0.012807492363197911,0.00046178902627468294,0.002869434158741452,0.03384673284196864,0.12900379229834458,0.021168405966929416,0.0020335957110670095,0.010050003510081933,0.010483553388952467,0.0358042948008368,0.018612619095362815,9.394285559027753e-05,0.004543172726766463,0.021856752265881983,0.030010825266493436,0.010051577066073805,0.0018104431139749804,0.022796883399495375,0.012598155287379344,0.03545179688904732,0.006712432107167492,0.0001407941924833957,0.01022358751212347,-0.026768912198841262,0.07792069979203797,-0.08067241556516312,0.00013926380442878304,0.0005025397353143795,-0.0054454268938723,0.023020235718096225,-0.009975549541841298,5.7734590610028996e-05,0.0028291031887378287,0.05943150088535634,0.19041898448379058,0.08868610724980955,0.002958179419780775,0.0024041757382168285,0.026884758477890246,0.13922903118444296,0.06049173416744764,9.605432155439281e-05,0.004147556140099774,-0.03440425390586468,0.19702077694513523,0.0583311882998648,0.00012663708383862693,0.010620530657960195,0.013362626287623521,0.06708688722997969,-0.016852739751703667,9.421127469727362e-05,0.009421520534988513,0.029752344255157968,0.12657553148352668,0.022491585812027776,5.9077053393211724e-05,0.0122655260880526,0.016675225649860657,0.033055078683787015,-0.004082811971637459,0.0002459591130709452,0.006488183917273713,0.0028330150709510106,0.010309390907312904,-0.02392272454163889,6.833296311735656e-05,0.006434948236097911,0.011650189089051913,0.1245624389388735,0.024731998440887165,2.4131102066582477e-05,0.0038058361874100215,0.007660575599732621,0.030271541948983113,0.010281688298651571,8.84577368803731e-05,0.0025666066081703725,-0.003200137801484355,0.01070216655556824,-0.0007734529909787902,0.0004713298502048179,0.00024569586082968725,-0.05426963179499932,0.22593752693191052,0.08565069638990774,0.00013757524670114006,0.0029737863327008447,-0.002713580905377371 +2018-09-21,0.008371280670454234,0.06084004239669028,-0.02743183334117524,0.0001455087061407915,0.009246392699476805,-0.006993920359374568,0.02303878475257764,0.005352787686264619,7.284028594046803e-05,0.008334162319259332,0.009788786977090992,0.02791583481903415,0.008924478311578304,0.00016220919242780862,0.014960417651642865,-0.018142938518621192,0.023903319373461466,0.015643456055151272,0.00025616351331964445,0.006025592210224624,0.006513109168846077,0.017902965607383352,-0.011755749473678674,0.00019035362536934177,0.013262300757505978,-0.008374478454014768,0.021621004553200467,0.0005805839424767688,8.457239726056466e-05,0.003245502736001094,0.00404669906484965,0.015109853038569076,5.025969850811971e-05,7.858334730512962e-05,0.00866369635976414,0.01746978169054175,0.14901020178299618,0.00463701973768051,4.02040763963548e-05,0.0008522813746036366,-0.0033841039717070484,0.0020900437258425586,-0.02572799103180116,0.0012486281224572161,0.008073627605473251,0.024247909904154305,0.062715715660439,0.004660856258680021,0.00013519474582962524,0.006991575671742628,-0.015105831510245832,0.011068686005911942,-0.060238547325512634,0.0006670723304509225,0.00917158320849673,0.006930136668793786,0.08873923034503615,0.006206597191397632,2.3272815745543783e-05,0.0014786793341354592,-0.012590207373885436,0.032034223836669054,-0.024955560020631644,0.00011675344808374616,0.027887165571454407,-0.015809884837658522,0.09398042545379653,0.03134365814943241,4.735361272654783e-05,0.007250519439751988,0.005339891147409598,0.0045466935324549925,-0.007145267663982065,0.0022906550565035366,0.0031775836082935834,-0.022693670487565733,0.12824422640117072,-0.02487802867507806,0.0001456193305793446,0.012664844987268468,-0.03429300675478167,0.1568887771625118,-0.005315335170457298,0.0003384713541584924,0.0038652776826068143,-0.03510765378834137,0.22860110515332194,0.05633402828216442,4.325979303169739e-05,0.005656506139350755,-0.01764671234799869,0.09299556615930511,0.004208207080658726,0.00031274355689407565,0.02046127611019214,-0.06653047775403743,0.8403643731995611,0.042922877350741934,3.285362085916132e-05,0.004135555328991961,-0.015149479980010285,0.17605001455132152,-0.03241008036978131,2.8750365440984335e-05,0.0039622901897985304,-0.004330605855417053,0.011484316986062261,-8.988549393732662e-05,0.00012146922017325814,0.036488735650632396,0.06165888662594171,0.4165735185572525,0.043185163690630704,3.41897870620337e-05,0.03862003588069514,0.006366807794797302,0.01581889816065364,-0.04692715510639052,8.923246523711083e-05,0.009249453266716359,-0.005369076925553045,0.020478374262344713,-0.02652705938110877,0.00011988165947517008,0.004011444679667042,-0.006437302473540108,0.006168028344599207,-0.013401900802524461,0.00059653113601542,0.01156076547828214,-0.02391958003637811,0.08094180586891409,0.007636043908788269,0.00012438461602371043,0.008571401372229679,-0.049069435999526484,0.15240448086399938,-0.01472821511686325,0.002066486179091903,0.01827781783705397,-0.02339373187965214,0.23277013866389562,-0.023607529065902584,2.5843684947407186e-05,0.018015324970416385,-0.004917969349950669,0.01582406121471333,-0.010354835243621591,0.001016106274696568,0.01958824853344151,-0.03509597286142075,0.2764766476782162,0.05753952702951462,8.453264806401644e-05,0.016515224138667732,0.03288297411920985,0.05219334853717363,-0.021416793894138208,0.0001486966952098291,0.001243398274511537,0.0049406958280010125,0.007201179744031866,-0.01372323264287985,0.0003938114872932827,0.015700732101781047,0.011515079912793985,0.04841274174370317,0.010369157051647074,0.0018435614526366528,0.00878805049685294,0.01218408804307164,0.046294499759104435,0.006887609593705015,8.44411235655059e-05,0.0012947600006397203,0.052678677764586616,0.07239226753368129,0.03904139330747371,0.0018089221523851034,0.027811503377954003,0.010666680722021177,0.03296936558451799,-0.043939880853575364,0.0001281842722540759,0.0023197806850793583,-0.008188122962093666,0.01896841510786626,-0.03546734333809702,0.00017499018357306094,0.0008670671172974851,0.021865274227003694,0.1035144861341614,0.0038114795260619215,5.1554635774173794e-05,0.0036464038103008866,-0.03552486924907295,0.1187388590219572,-0.002450275868314856,0.0028356829680125095,0.008794530432692472,0.031226492914013654,0.16228900966905838,0.04539433898657912,9.571382482602655e-05,0.01877838143768878,0.022845726098959372,0.1336699722289289,-0.06558293505623082,0.00012394582205886164,0.005302545223372944,-0.016630033955432194,0.09982465444230258,-0.01115125084200991,7.879597236413571e-05,0.004849892433850428,-0.0021300615194251903,0.008306983782041808,-0.003607825717632434,6.44460314674272e-05,0.008965594861169731,-0.047874220002920055,0.09767355549847939,0.05011450587024557,0.00023897590127251037,0.016699929426354336,0.014188293200653608,0.06553728656699007,0.007613100133131651,5.383392858965198e-05,0.011743420666987081,0.02218824840216304,0.22037675124342027,0.05449616963067496,2.5976972119140966e-05,0.008992254251770918,-0.006530060265472618,0.02373723065077612,-0.035637222242691266,9.616036522105315e-05,0.003976053307873863,0.02052475596356633,0.08461585136809198,0.03599469499637975,0.0003823439693764639,0.0004540231153242684,-0.0035195351333637006,0.017824818834221115,-0.000731590985111247,0.00011309202391010265,0.015305155369658903,-0.0027459816264028885 +2018-09-24,0.045489261174935944,0.38171646973793727,0.1201923647830895,0.0001260243796890692,0.024460093680085834,-0.000538820583127397,0.0019161214142191017,-0.004402310230332123,6.747325780259996e-05,0.002114549980554053,-0.017072119743735834,0.0654884309475342,-0.04477954318432974,0.00012059243583975994,0.013188820328054263,0.02929431026610091,0.030617259443801646,-0.06756098271342474,0.0003229124717682065,0.010165319134725504,-0.00395039280227815,0.00917753020406792,0.002973595423427008,0.00022522273659548764,0.014104533602528228,0.04026623547122515,0.09795363250092227,0.2110129840796313,8.975677147882593e-05,0.009827290425356593,-0.01011327788354866,0.043971774113641476,-0.046426662727420284,6.748508627865927e-05,0.006064372320405983,-0.05421002312744705,0.489335811138744,0.034927789183278,3.7990167387110846e-05,0.004736496601905649,-0.0022435551057033566,0.0016693600354142633,-0.06238663091217884,0.0010364098107916693,0.0007862447274356428,0.032456734934992064,0.07711598764927419,0.012404498476632761,0.0001471710166765512,0.02278921833851685,0.00023337580565476018,0.0001863831718411136,8.967754341369614e-07,0.000612031098771274,0.017608145506202388,0.013083492708081235,0.15053105275529788,0.009334293867770734,2.5901229928462027e-05,0.00976488813460323,0.06573141668376734,0.18623548062275913,0.17485577827596172,0.00010484835144757456,0.012825954129488377,0.01780305208726556,0.10009222083625033,0.04089948273763437,5.00675056350114e-05,0.0018441899990056575,-0.04554225537825407,0.0398913897672827,0.061926241900655044,0.002226682725934901,0.008448865940269652,-0.06557115383416968,0.45703434587780606,0.06373388486003373,0.00011806362004771262,0.014298397341856716,-0.017026205432413555,0.10573299544248699,-0.008431077262874011,0.0002493535554189739,0.007149904127660382,-0.0034143152944565054,0.020054280185533326,-0.001168514573545064,4.7957606637172e-05,0.003909621072193415,-0.016822085988688593,0.07943275632059678,0.0032932744493317677,0.000349033428437595,0.019039210938756178,-0.05929757716471359,0.6861358030725329,0.010020296752153188,3.5863865610132114e-05,0.017571260875462454,0.017916398007995122,0.16226421966465432,-0.011646194519080926,3.689008408370677e-05,0.00011963519714698243,-0.004501458710322923,0.013970913663673604,-0.002106922800328529,0.00010378897378898816,0.0022555634890749935,0.07374854579926912,0.5425826214348163,0.0016535810750855987,3.1396407538112024e-05,0.012779807532367184,0.006350887164541538,0.01735536257198025,-0.12840691461021958,8.112936711294288e-05,0.000770259376127799,0.008383796314659568,0.03132863453788361,0.0016450148655251008,0.00012236236084431953,0.0071312106447028005,0.017242174556076545,0.0167522766165009,-0.002312750823272403,0.0005882931117646049,0.005735624380511218,-0.030557829976303574,0.12199939519308604,0.01670375751599044,0.00010542675554801928,0.006402663824808837,0.0045037354636102275,0.016069722800565008,-0.0006919639946122966,0.0017988032466282027,0.03120430760242289,-0.016154520802898704,0.15661564491413443,0.00953014931365299,2.6524129036933162e-05,0.0038780798569269153,-0.043594506208673854,0.13268321155059837,0.02126639086479384,0.0010742047233450016,0.01427501766426377,-0.00889056437251219,0.06281917274611246,0.0049658774073253475,9.424596402552654e-05,0.0032497612636228036,0.03390933970135663,0.042223073213660915,0.05829996239665617,0.00018954611134383413,0.001439018596815841,-0.010068732357646897,0.013993222133894844,-0.006472048035323564,0.0004130103947789368,0.008496898276697319,0.04005832033229927,0.14670329238336804,0.06581629349317929,0.0021164266216327212,0.007372144606039357,-0.0077864723599943226,0.03354591694991287,-0.0002055264308756911,7.447173111608339e-05,0.0032924117955245124,0.003908695708961437,0.0058244897745528415,-0.0011825349918638682,0.0016682117149018124,0.007288117752304147,0.007795706667191122,0.026964950817181938,0.002473933273382376,0.00011454388086163896,0.0035382683869683287,0.0037208614984047587,0.009897732107556113,-0.007921391602930592,0.0001523941113117408,0.006843391611689629,0.023681935401987646,0.09770953800033073,-0.03341386262278258,5.915536758411677e-05,0.012917484144294078,0.006192309935173326,0.021466742717293756,-0.024119496684794302,0.0027340382871892336,0.029838657226627558,-0.006904851189660136,0.03548558048905364,-0.03127980752222372,9.679278368069533e-05,0.008897060935409005,-0.0007801581561743913,0.0034305275568656613,-0.022330887792667065,0.0001649234933503507,0.007120465692323923,-0.011037469710951486,0.07228971848690421,0.004557804998780868,7.221737360943025e-05,0.003836139212257201,-0.01620257567963186,0.06977121153144546,-0.022783078475612045,5.836536277490185e-05,0.016884656695863365,-0.04458043186149845,0.08889574502228649,0.03703259318427339,0.000244507784955511,0.019946644592704347,0.0006347851628743507,0.0025221696037945347,-0.0006003211053112686,6.258450990951497e-05,0.00247867310069077,0.013438111255256962,0.12327687638388783,0.00941261572395035,2.812469984282709e-05,0.0025204700373331313,0.016556978013589768,0.04684504963411575,0.05024689145878432,0.00012354532983425257,0.006140465883448786,0.002052332882574562,0.010047960661422033,-0.025517897797552196,0.00032195698245104546,0.006132514288378176,0.015563942527009359,0.07499998661231361,-0.0035683732157779607,0.00011885849545597676,0.0035077912565040807,2.5670786183255748e-05 +2018-09-25,0.048407479634058954,0.294393440521566,0.1050098591282011,0.00017388852604166308,0.01702527307819769,-0.04560708058924145,0.18645541897182435,0.08073676899262718,5.8690497342320487e-05,0.01598547623922181,-0.02636324675144052,0.09099323516262744,0.01054960696684131,0.00013402536321565012,0.001926494230480229,0.012559474284529295,0.013349127347758892,0.013225100849194621,0.00031753122671801537,0.002290287887696062,-0.034271132540387,0.08434903390380516,0.06780649871999278,0.00021259160764545724,0.01307550104558268,0.011267663200306092,0.035002989152919634,0.014546732825048715,7.028707386544595e-05,0.012482457965648626,0.014491571682039165,0.050557998827870654,-0.06915901058621073,8.410377103884592e-05,0.0041705286133892384,0.010730358912673536,0.09296056083812324,-0.04532610004406911,3.95834941448525e-05,0.01570826566231482,0.016267127715358393,0.013651619758772646,-0.09649430074444433,0.0009189068304021533,0.0023143015657197136,0.04807091725672587,0.11638091926221816,0.012314880751685185,0.00014443169641585496,0.015512902993630865,0.00209250710172387,0.001534983725210846,-0.018548328868235795,0.0006663271720696304,5.3219931073905224e-05,0.01280678249637455,0.1614396015564611,0.013234622310135568,2.36402870790396e-05,0.0047076541460334895,0.01579571903444466,0.04334254036437164,-0.057536917497452926,0.00010826200743772562,0.021603588195655575,0.015822630078673718,0.09777964040051372,0.07578047503667895,4.555038555002514e-05,0.0004756812758546081,-0.010042650615141209,0.007705342206229565,0.0018688816465548663,0.002542022528858188,0.006178031001897617,-0.04957216056235939,0.31644779270053175,0.01035360029378952,0.00012891037885311857,0.004227494192531817,0.08808625009946384,0.46075541038167167,0.13748721250882068,0.0002960369427291254,0.06854849591216906,0.03537861721473618,0.2188272916224861,-0.05723626931429281,4.5540765361954675e-05,0.0041640897167835875,0.03499061208599243,0.1882823459572571,0.025340398858448417,0.00030628712842849313,0.013204165058844284,0.014207409487291541,0.17129217776883013,0.009823917266652321,3.4419741017310925e-05,0.014178743895953805,0.008570761121967613,0.08424104104378105,-0.013317334956700367,3.3992051402537645e-05,0.0009734520588752883,0.029784155620834498,0.0744503173085938,-0.013442942255148893,0.00012886693376816256,0.0080050559085421,-0.011721240561295686,0.08573417492461521,-0.046441552709636506,3.157998960159876e-05,0.021911548664977507,-0.02572783777203737,0.06969642986113529,0.22316549947458925,8.184085137408316e-05,0.005373408822909971,0.01427214279231853,0.0519668405306359,-0.13167321087816464,0.00012557739342428442,0.0010112780543858914,0.01703040413700641,0.014841985369555631,-0.01615140254844543,0.0006558560306478173,0.005005168023460802,-0.02609525165107195,0.08042954057764032,0.005378266813505732,0.000136562642069303,0.003941133798496133,-0.02093195186456591,0.06896278953787635,-0.021393677364832286,0.0019481127185335648,0.012484726270684098,0.019707897690874568,0.21163404821000864,0.007908368005191457,2.3946219274228844e-05,0.011035206628849631,-0.09142276722400582,0.25758250829586987,0.19824432317341964,0.0011604041260865527,0.007650946376759014,0.015119839844460144,0.12306235077481309,0.00307627335379158,8.181776793155548e-05,0.0057128730631498675,0.010674231047432654,0.015247606218936971,-0.03764517420543298,0.00016522673381273064,0.006718570016052327,-0.02184043927666946,0.027867372252072458,-0.016822298505776562,0.00044985159427082425,0.016101087792506383,-0.02223914041993892,0.08733567450840121,0.008510751230116208,0.0019736796327081245,0.010641844802181173,-0.006586026247552432,0.023001343804043783,-0.177035445815294,9.186722925665151e-05,0.008309837546260548,-0.007776905068300353,0.008831372492819149,-0.04265170854574657,0.0021890505294963397,0.04103852062775767,-0.027210625140154446,0.07597556141112582,0.029945837720609998,0.00014189942577822574,0.012790105275112934,-0.010781550426657334,0.025409102514460477,0.003634742554923951,0.00017200943493341506,0.005153055147916866,0.031810906605094384,0.1251625596573783,-0.029334352505961826,6.203196454734602e-05,0.006285314378118896,-0.02097676211089074,0.06421156325573944,0.016640744741725586,0.0030963016764127983,0.01606245090654403,0.0272717994664389,0.12061791351623317,0.05003857002073882,0.00011247151725281457,0.011179831342944238,-0.039978798667008576,0.20807569499140158,0.09819466150365258,0.00013933787092768748,0.021071092800743787,-0.005744660601286158,0.03328008845167204,-0.010815546876486077,8.164481366423708e-05,0.007381837318593272,0.01281071713479881,0.05563160217296877,-0.06724129073793497,5.7876101438223204e-05,0.0010006685402776507,-0.0488399067476238,0.0866953874579403,0.014540005593005303,0.0002746681031187472,0.0023425992067513434,0.0026239729252873715,0.009715837728158764,-0.013163349086394265,6.71573379437844e-05,0.00010731775389671231,0.015225130929990333,0.16711911187527864,-0.02504288806558839,2.3505321868533348e-05,0.012455372713579426,-0.001078746140469939,0.0035952967079730643,-0.19256934144523205,0.00010488019408599349,0.0015346188003229114,-0.005037734252084461,0.02369601006723512,-0.022952280483178596,0.00033511047187084417,0.004163622510641149,-0.0845913861447221,0.44515550990204156,0.14146543554668917,0.00010883941135842748,0.011592670956697543,-0.001269913902492092 +2018-09-26,0.001898723005313123,0.013047982231170811,-0.10075620749662816,0.0001538880298854499,0.017555695397979028,-0.03342155659243392,0.111093261714392,0.0298547430755491,7.218541901284652e-05,8.304260306247471e-05,-0.03433196502592641,0.1305993942185694,0.0160253062242123,0.00012160591600941368,0.0037918497977684888,0.017490035047135453,0.01714338851353,0.027860458136070083,0.0003443196978568835,0.002862488358334977,0.02344127058099352,0.05969440782827049,-0.007133647438970761,0.00020546851016364743,0.0017187069879897297,0.020114373158867646,0.051303285395452876,0.03516336340499295,8.560676090456395e-05,0.0038409620964375574,0.001209759553234787,0.004467045641037594,-0.005265744689147086,7.946365295117396e-05,0.016267820668641592,0.02386208488732302,0.22686679033755375,-0.02555477031539037,3.6069163796616776e-05,0.0035521388947679262,-0.00016790947723457664,0.000136243651206139,-0.006526073485414743,0.0009503940797805827,0.00740004876401525,-0.00877297588621637,0.020562521624176742,0.005594016421485623,0.0001491875046951649,0.016614583470130534,0.015190017647390185,0.011691772156422052,-0.0036443258788801045,0.0006350417717257819,0.0037725448670804618,0.02465863726701898,0.31842189636874985,-0.0009939673352086069,2.307750942775144e-05,0.007954966143174954,0.04043382942012704,0.10925292985422057,0.04484625304046869,0.00010994179418042342,0.0017600845384740827,0.01380652901206151,0.0763347952182214,0.04516493944921509,5.091242499750537e-05,0.003349100108782326,0.01333456882572548,0.009729210034614565,-0.0008775144807567811,0.0026731564109875876,0.005112537437570155,-0.009314630595043909,0.05202150659587381,0.00038386650593889106,0.00014734480155508055,0.02521588908946953,0.018125154413187013,0.0916116104832216,-0.039131423972759656,0.0003063651978109224,0.016867941773230147,-0.0066522277998256486,0.04411171338393265,-0.000573086518113429,4.247898605670219e-05,0.0034835484735218636,0.02622762668178145,0.15076932397135223,-0.024110536477551663,0.0002867033802383233,0.004808885047213653,0.046230741992352324,0.5752497369797737,0.02920852333767012,3.335067792440987e-05,0.030040774416155398,0.009963731739605748,0.09989766992637916,-0.012814478535406654,3.332332867595162e-05,0.00509444219266119,-0.02932951400753054,0.07785303777485558,0.016861553151017124,0.00012135343096503463,0.0027478224380402053,-0.004973961078117475,0.03585221575917293,0.0009610309452633885,3.2046363700743795e-05,0.01866200173403562,0.008477197192963271,0.0231764427630316,-0.065523530029099,8.109291068282234e-05,0.01335948294773916,0.010140031390176673,0.04223878282213432,-0.003148291209699632,0.0001097681892830511,0.004004503528760533,-0.042374488020288245,0.04607667782813414,-0.0034604968665195805,0.0005256526605038153,0.002067840805548054,0.01323320699601059,0.04670633196769307,0.024711360703095618,0.00011925465851945833,0.01947540855814175,-0.018159105943690242,0.05792638797797367,0.005114277338172432,0.0020120426776328764,0.009489628932065525,-0.024276674119352165,0.1870742026276637,-0.08066240203278227,3.337009792145782e-05,0.004012159933635656,-0.00048288664616536766,0.0012309290324198907,-0.018202278742442707,0.0012825770079719278,0.0404669301715081,-0.01029592480791172,0.07764817771293508,-0.05797670851956204,8.829980358231505e-05,0.01392344250865569,0.00633465078575936,0.009506068221657971,-0.010017992278450993,0.00015727769576227146,0.0016457256154373623,0.012008492266896858,0.01895534794253377,0.0017058789190068798,0.00036363077858771507,0.0058478362372426426,-0.0058839784916342765,0.023244549332034247,-0.005706497470434961,0.0019620058016076363,0.010200757190835042,-0.02633576683292467,0.1037978332244212,-0.047343175999289104,8.140443214938832e-05,0.006193139971095878,0.0312733496977453,0.046006667928395216,0.01649242473725578,0.00168978251790081,0.0003104054550351447,0.022802910191128463,0.07696842380324767,-0.11187115869393591,0.00011737989598789425,0.009993219609284468,0.034861109749767714,0.08859388844313161,0.03425946638135718,0.00015951363821678244,0.015315235597245755,0.06842653242102494,0.3152183385716138,0.20483088732049753,5.298183327305968e-05,0.015473528243651837,0.001079909353660334,0.00288691814315496,-0.0059457052164493315,0.0035454461289337828,0.005579049449431484,0.007486861263846126,0.035572083188475156,0.007217475834475616,0.0001046962332317503,0.005616351844405758,-0.02598079842779903,0.17078935677440044,0.032806507149785925,0.00011031954829453185,2.1510396539051787e-05,-0.02118430057949621,0.11529722950538387,-0.08654660784798905,8.690483852443227e-05,0.012533732865293709,-0.03227690837242504,0.16889759433622292,0.03542090856958665,4.8030362061594165e-05,0.01257486606684941,0.008533137730868017,0.014884377915692837,-0.0012617492156711577,0.00027951650754105226,0.008639958400462973,-0.002422647194010069,0.010895494100403028,-0.02483729908483481,5.529140415021166e-05,0.011258878094104485,0.007998600106040407,0.0843457893068254,0.00789707975569027,2.4467064300699647e-05,0.007227800667985222,-0.01335503004176635,0.049202525189730555,0.01793546863945079,9.487820102274769e-05,0.004666724418764254,0.0018030521265087049,0.00683044516119387,-0.08898962341549105,0.0004160899674419516,0.0013608048076574394,-0.022991718827934868,0.10270199370674164,0.010331331439465687,0.0001282225357368052,0.013793441965161041,0.0037260895292980712 +2018-09-27,0.0040024469868356885,0.0246604162416242,-0.014434793534040521,0.00017163733769817545,0.0020600969716918324,-0.032276377616359014,0.11960006794453887,0.02485875700386341,6.475359550630335e-05,0.0016240530619798304,0.028881960934389682,0.10358620338759088,0.052424205681438144,0.0001289798789491942,0.022659816279633087,0.008270190069220034,0.009079538941308791,-0.023435145228964015,0.00030741110463735905,0.0029871242489290404,0.010916598081179178,0.02495418599327211,-0.02841604396233131,0.0002288978353599507,0.02508174250242655,0.008872480558080775,0.023015708627310498,-0.03235244868746745,8.4171961006554e-05,0.01138424412872553,0.003429629863614745,0.012619899288979239,-0.003067708002129395,7.974091564467109e-05,0.018481901207794835,-0.000384910085388974,0.003933782621894812,-0.029739452831466753,3.3554250902802675e-05,0.0013901014550058396,-0.0048053782714770855,0.004142480202066766,-0.05090780937487144,0.0008945650475889712,0.008949247564475264,0.013435056923888756,0.03312393782577775,-0.039056364924089704,0.00014182716978252343,0.001756569366571635,-0.028839435886273142,0.02155082399562533,0.08215033862691322,0.0006541046541888076,0.004156280235332431,-0.01681870783343638,0.23983591257324696,0.06199521367650937,2.089783046634158e-05,0.0013191105819220534,0.01114275745453314,0.027895752544327135,-0.01802681133903064,0.00011866035226274772,0.013384779288530624,0.0003548502688722152,0.0019596739461582025,-0.0014080598427742485,5.097099813934869e-05,0.0005020801353383307,0.015404452918221291,0.013768546296560111,-0.019275090390178478,0.0021821327256884614,0.013648212467066791,0.022782540281349857,0.14249882860088608,-0.016419720581050117,0.00013156578468885517,0.016612383931527613,-0.0018146671824073623,0.009677986764543449,2.5894251839437088e-06,0.0002903489055463147,0.022522552178977962,0.01464427870408695,0.08457807525630825,-0.007148111401080983,4.8772064999082e-05,0.007240269119929644,-0.015790508603499752,0.07735909519879441,0.005468640890450107,0.00033641205081424367,0.04423507284380563,0.02115413362230243,0.2520758225771399,-0.017732036823382976,3.4825253105135496e-05,0.021559823007158044,0.006345493518367826,0.05987224274894259,-0.07127181316532197,3.540964618278551e-05,0.014669775116796409,-0.0017209530174043515,0.005067744724491335,-0.0002378881468077314,0.00010938985324605323,0.006091996640543535,-0.04559662697137876,0.28232756396667574,0.026785119444254657,3.7305409531013115e-05,0.022758621437037975,0.005328134771947471,0.01672859997290489,-0.07279652695544724,7.061435356057399e-05,0.0029531952552470514,-0.005847218294926976,0.022151720259725817,-0.030381505652864287,0.00012069532401948016,0.002566256967770131,0.05048117253059812,0.05060650634541446,0.030696449921454604,0.0005701624849742269,0.018456729573279696,-0.006038048981954433,0.02564959903375629,-0.01891747970210917,9.9083664577834e-05,0.007942193979653648,-0.0009690298017031897,0.003239591115225091,-0.01653935061208902,0.0019198447437819607,0.020719145371247596,0.055528911153847206,0.582368692366139,0.15781847017736733,2.451903272498411e-05,0.005051512657622636,0.025178431924536542,0.07096565983202917,0.014026951939945386,0.0011599832123368658,0.01537775061404351,0.014414043338670862,0.1043977679491204,-0.04019749748479044,9.194333515706146e-05,0.0037200247501589616,-0.015687748502287133,0.022385019508862746,0.06550535286441352,0.00016540495954210969,0.013741614385576556,0.024331169057031823,0.0368763290163234,-0.0017523401170534776,0.00037872084443509626,0.008600133078760144,-0.05685165449007972,0.279217630601609,0.07823140025508243,0.0015781584744050169,0.00444410322245445,0.02617437235194901,0.09880619667286865,-0.03376093439117968,8.499286408523154e-05,0.0005756936821975072,0.012848460936218853,0.017231588308224754,-0.007454440944422831,0.0018535443854027233,0.006468569863685099,-0.008426203340623247,0.029431184016874227,-0.03323631063256369,0.00011343321404585256,0.002018549198772478,0.030961015427890794,0.0922326849188445,-0.05032879960956111,0.00013607887827189838,0.00236104434331876,0.010263428850524467,0.048817846927840546,-0.007100234452633139,5.131304412133434e-05,0.007289661597926498,0.023336270565243542,0.07745945286932261,-0.014499469900976369,0.0028554534481246906,0.039506412819929664,-0.005607068881761191,0.03044956828113251,-0.042036505225770134,9.159996812583143e-05,0.024039656479289507,-0.007717383534336944,0.042953054089950045,-0.0005403338678367574,0.00013029772098840364,0.007650881118327972,-0.002505186551133162,0.01257563450394482,-0.037327941258009915,9.42234200063345e-05,0.009774678509109314,-0.0012105649498197995,0.006530768314088593,-0.03681434614760384,4.6587693898096236e-05,0.002077783669328325,-0.06228645267038347,0.11897846617284116,0.014768965412096343,0.00025524346162499403,0.01018278136548729,0.027214101001180928,0.10403498915688839,0.04720359902733807,6.504725019172208e-05,0.005856799156109612,-0.022887985148587333,0.2729732900599155,0.02459068693054976,2.1633096833729967e-05,0.01248063043455519,-0.029583985306470523,0.08748331166668165,0.09860733352107895,0.00011820624671510447,0.00358645861962805,-0.008060382536080171,0.028305955211848723,0.013425640360510168,0.00044885473314256846,0.004696357289772586,0.003114938148828638,0.016649780055576647,-0.0005738165803277458,0.00010715506961041196,0.017338283337151164,0.001993178641721159 +2018-09-28,0.025223974731810695,0.16882903199962435,-0.0008057449927134978,0.00015799850447995088,0.007667456857568652,0.022057024985578183,0.07872617251318682,0.015316204276829762,6.722616300086309e-05,0.008524458624277713,-0.058518330055098766,0.19483781746889092,0.09021571685091298,0.0001389363459153503,0.0010261468288936771,-0.0013915487950325758,0.0014945889666505073,0.003941374041425505,0.000314227741543367,0.009012080533542889,-0.014584235620711098,0.0346968925645422,-0.015106523276916136,0.0002199332353753767,0.0017836726451193902,0.003091884477273382,0.006892245716798873,-0.03948485307818091,9.795108399531931e-05,0.009091471821526486,-0.009757732068092639,0.03653801735212948,-0.004355307205075473,7.83598807484115e-05,0.014486972582638013,-0.01191596205158892,0.11297101751840466,0.0038246437775995407,3.617101415038954e-05,0.014438289834126318,0.02406540800203102,0.019293196768853074,0.08249631746222962,0.0009619086320160704,1e-06,0.035976900778457624,0.08328311934734858,-0.018521338759117222,0.0001510527553453736,0.014626337093657541,-0.01612048710456544,0.010380539267872729,0.02082231339439256,0.0007590713555542905,0.005501701506982477,-0.0036755817464883497,0.04783063059278676,-0.039382659392499075,2.290038421864429e-05,0.0015503810588541457,-0.023417971018973967,0.06575947224871925,-0.0437035019031475,0.00010578935833788786,0.014015578543437447,0.0028743502342719685,0.015714554355551493,0.00416516316545998,5.148721889324755e-05,0.0032926385684303528,-0.011599004849160923,0.00834156237376691,-0.041797269236017176,0.002712041313454481,0.022093005215154442,-0.013025872708417397,0.0795063948914324,-0.008945406389453353,0.00013482079266383527,0.004037459184239113,0.006968884509417547,0.03563657756754519,-0.012803510891273052,0.0003028136933520137,0.015669651821065243,0.053093346421734584,0.3579402577037938,0.015158020188245778,4.178212354714095e-05,0.015825317757004673,-0.002425077910838669,0.013492047249205242,-0.004428534750671444,0.0002962338274396202,0.0033102085375986403,0.06246992732503812,0.8671370373616549,0.06169417971846498,2.989602828025754e-05,0.0062321325662744575,-0.03486572455475895,0.3696998354109062,0.11911951826995687,3.150874798947915e-05,0.0007800983702900117,0.02411529063821272,0.07196279180462213,-0.12398141850419579,0.00010794617368671346,0.0073299918555928475,-0.04011180622986531,0.3130947947913727,-0.0014523695333118996,2.959298317502398e-05,0.04010515120538132,0.010265153856243847,0.032253131362464306,0.004134401103978209,7.05620126840039e-05,0.004130015374646392,0.023093647156635283,0.09063751975750671,0.08513604686851878,0.00011650192698937627,0.007610862901383507,-0.039396620810242255,0.033079201556423174,0.019437489190795628,0.0006807372494133133,0.01043920487391102,-0.018661635204587714,0.0694019465783775,-0.02141633032494031,0.00011317853108541374,0.0008558263573215262,0.011218172281498956,0.04144477170792913,-0.013411104670116497,0.0017372868337065007,0.022767007787422265,-0.05863114809487098,0.5513927668096609,0.07888123661800742,2.7343211959370732e-05,0.004308485224900549,0.032502975098509454,0.09437389068159605,0.017281601027319515,0.0011260107199570373,0.008874902951301228,-0.001669452062148534,0.013872888144275694,-0.045537947066493334,8.013693197552473e-05,0.005360848792531661,-0.023897216087185424,0.03908085867298499,0.0655988938359718,0.00014432069099864762,0.002829997169960493,0.01850760363994103,0.02334326785795071,-0.0010291324151444202,0.00045508492597943757,0.007186188535853948,0.019889108848730186,0.07540684811521568,-0.004182245834351487,0.002044348243140815,0.0033694092407118687,-0.06670348593260676,0.25602284164412364,0.28124592627908895,8.359112835982989e-05,0.0028338983952387446,-0.005623380057303652,0.008266011411787474,-0.020385896456569245,0.0016911363621479097,0.010731617492053529,0.0011572690313645293,0.003662299518907947,-0.010661502364455063,0.00012519774541772723,0.0016310069502911652,-0.04246717623046264,0.12027240121671097,0.06031615524208935,0.0001431356382328723,0.01746131144097452,-0.01884502078457205,0.08946212892135881,0.04941861036681081,5.1412807138636155e-05,0.004602815905956299,0.07918348603266646,0.21693408809476344,0.11794234890960352,0.003459591926465661,0.027150424432677966,-0.01628562883867992,0.08174326335961161,0.0029897615349453424,9.910444453915549e-05,0.0026542907808849406,0.01660501629967057,0.0835549677693782,-0.07573858454687818,0.00014412118177369534,0.01510391310677233,-0.018214285334399567,0.09712473024924574,-0.014397090577984465,8.870150913324446e-05,0.003748784203950251,-0.04858221064892253,0.1919474111267802,0.09053063154515592,6.361249190922982e-05,0.0075794185499229085,0.017807467823414285,0.0320888368656027,0.0008107135609169329,0.0002705687199311734,0.014187571968183248,0.01231800908589222,0.04868841250311122,-0.04276379546820612,6.291139009155134e-05,0.01106965581792934,-0.010236084790750367,0.10468275980865926,-0.01168190645057297,2.5228416749887495e-05,0.00020869040726352811,0.024597339972298387,0.08154993136144889,0.10791116033053867,0.00010543225818289266,0.00046484544767192023,0.0011891900777904947,0.004939773443503715,-0.016755874992689688,0.0003794654298582892,0.0026341466677752253,-0.027585893838312784,0.13990123545915706,-0.023343548777448393,0.00011293727554826471,0.007836471999023339,-0.0024106902058238884 +2018-10-01,-0.019299467042348417,0.12685048030585006,0.01781742058274497,0.00016089397597917623,0.007770244730760146,0.007109782626447553,0.022829863971240382,0.0011260595344468505,7.472458738778376e-05,0.009296549403166647,-0.025273689537025787,0.08883760450836087,-0.014804558167624337,0.00013160397634113475,0.016739706778012224,-0.004681007727372756,0.004617414701512346,0.00722068981567594,0.00034214353092611985,0.015268754149538134,0.02893351461625675,0.06838289555453107,-0.02684952020842712,0.00022138667494132815,0.007215967317130816,0.012989099729899445,0.03305154350378049,0.01280802946682736,8.580923798921004e-05,0.002920465586863601,-0.03281784077715438,0.12816883907102727,0.005997983546148294,7.513069533117699e-05,0.0038119450279745838,-0.03238145319335875,0.33978375034370584,-0.007325597639054731,3.268077476198605e-05,0.008648359615051879,-0.007664727728751756,0.006848385679901478,-0.006744737394558172,0.0008630844822740598,0.0010235137301993424,0.04345234013592596,0.11431059518987201,0.022921648731663004,0.00013291946078461097,5.90490973036888e-06,-0.011567875471150828,0.007757657315442088,0.00920356614163458,0.0007288654628151895,0.01792933422998245,-0.0028773998265699753,0.03434721853813713,-0.010397034161273659,2.4964991881965753e-05,0.007458191929474151,-0.009646027710260434,0.026052006179126577,-0.0055186899643127705,0.00010999130898797083,0.0008042117606851709,-0.0038745905856463836,0.02017643074271897,-0.029141397423847058,5.405592411335255e-05,0.00034428883502040205,-0.0010173073406268814,0.0009323185370660335,-0.09956299256602887,0.002128192123675849,0.014486788266967228,0.07742639264561489,0.4306587363192955,0.008486676723099012,0.00014794758202485696,0.034364102818847844,0.0493255929835413,0.27583313477538723,0.0022304818516961198,0.0002769071130249303,0.04609360533356353,0.006049636025145838,0.033617427102400066,-0.0029604139766817913,5.069040141627578e-05,0.022683492181606566,0.009003025636194035,0.04961904380543762,0.0009899986563736778,0.00029903836078481864,0.02074740530108922,0.016728205687287435,0.22515583279464665,-0.013490423749291987,3.0831623149403704e-05,0.03898007866277398,-0.012511878757209442,0.12636075181631656,-0.0022097335900333735,3.308202116907012e-05,0.017786781513532957,0.004212482752033801,0.01257882176122528,0.00046941030631867964,0.00010787502966646572,0.00804110912832807,0.02968690848123242,0.17922527985381403,0.005511799329856507,3.8261155570334784e-05,0.03932333766681698,-0.018624966711586942,0.044764274574394,0.032943585836356495,9.22446816881805e-05,0.0004525102428005786,-0.005028913594349341,0.020704627693091223,0.01177209569248759,0.00011105940536467558,0.003878617904817557,-0.007563688245783251,0.008474591735223143,-0.03158418305222754,0.0005101411963840672,0.002363103639586907,-0.03246883546838246,0.12162887177035907,-0.10177468933229945,0.00011236111579118055,0.004347949123935217,-0.037926913903861575,0.12972921707070792,0.02519650934316434,0.001876414945455862,0.031899350386123335,-0.012920809109814916,0.13475777069964284,0.0016693760424437354,2.4655742617987747e-05,0.028888598559118045,0.002628273787421803,0.008270601689462491,-0.0002252500618385879,0.0010389742107525227,0.024251748771385775,0.015995991367991638,0.11858017213408661,-0.0052784700559710815,8.98306884152379e-05,0.01487386680252024,-0.02777894403554955,0.037336681484830686,0.08330754104166578,0.000175600360933144,0.0035196874339712613,0.014930018197287832,0.021359700364360863,-0.01607691925397589,0.000401207547900673,0.020567046772354703,0.01007116280814435,0.03707687735994304,-0.0162127337589645,0.0021053621330085898,0.0025014937874428132,0.028467916223162967,0.10016929114010933,0.060330116091204374,9.118249028699413e-05,0.009701411058440952,-0.010428609266329962,0.015243486810832365,0.0024746948230940694,0.0017006669359337194,0.007437221211581241,0.03815257085271414,0.11938601199232511,0.010699301461404334,0.00012661536139468152,0.004952678181423216,-0.0005070861889810907,0.0011669371032574881,-0.09290374581199101,0.00017615489249556794,0.008751888882296912,0.02710512551050135,0.11278003317152328,0.001965424163478664,5.865879397862376e-05,0.006112599471289818,-0.04208006946634367,0.13314574289593406,0.044575053479195687,0.002995485494309644,0.025501337976966538,0.011118423789510955,0.05098837063005719,-0.026357259585579138,0.0001084707543133628,0.019163921018180475,0.012399335720653928,0.05644400091868254,0.008250642519421756,0.00015930940409455963,0.008901808663868624,0.00030104350181618797,0.001995783763927769,-0.01470382145087126,7.134515251064565e-05,0.000733401257407544,0.03452341670092489,0.16409704828821753,0.007365406327547083,5.2876219401946514e-05,0.0023205076986274513,0.01105083372103994,0.021895744090292928,-0.0724197221904637,0.00024607343389416666,0.008217837844150604,0.020234474357375888,0.07901072829216702,0.047398839215090686,6.368251958777594e-05,0.0009384988060237493,-0.02132105736186887,0.26961467727984206,0.011297974377844458,2.040311575161318e-05,0.0048360565047563,-0.02743253984286785,0.08844631536798232,0.06155651983513903,0.00010841646384825683,0.008799373253118343,0.04091227813202553,0.18216390307701402,0.153720613163716,0.0003540130820622602,0.017791256785047494,-0.010001594750551191,0.04437867751473662,-0.013062304478821347,0.00012908229952423677,0.013892291373305115,0.002561331623227668 +2018-10-02,0.008007441013978914,0.053136167466091476,-0.055753533959463475,0.00015936395712982032,0.0048057332421995785,0.017647161830981882,0.05159123960101952,0.0040345745004083415,8.20747241933042e-05,0.01000257879789806,0.002951465731459389,0.008776235775842491,0.007786394995469949,0.00015557029221674603,0.014633565666359023,0.013997119725840855,0.015870662071854755,-0.01746380520544916,0.0002976538396764066,0.0009060464565939972,0.006134344935720273,0.012846262467092074,-0.029181968013687016,0.00024985564970880965,0.017594534636187917,-0.009029739303497385,0.025311854951645923,0.004524007764628394,7.789291892951354e-05,0.0029568619302075554,0.05377782921896918,0.15444154314551814,0.11820381073986862,0.00010217131675574142,0.015290007608723191,-0.03408529355651172,0.338764393891896,0.043227865470881664,3.4503876922165164e-05,0.0015643099987292304,-0.008385837814560928,0.006483937677357752,0.009923742583177594,0.0009973610726014702,0.0014459656687824222,-0.03369401984299733,0.06841435055935398,0.05539181350832462,0.00017221362362300979,0.005116117237462095,0.0023692456383791927,0.0017961167920271723,-0.005989427087181548,0.0006447626549271951,0.005481889743991636,0.014550931950863233,0.19080791584108417,0.00966244324738683,2.2725696963524613e-05,0.005936935432025068,-0.05598363021541837,0.1816195646923081,0.031644634434944315,9.156920928024044e-05,0.01069257601111376,0.005468463145699721,0.025130856092610263,-0.05966913922268126,6.125193664408826e-05,0.007506911810622685,0.027926627275247258,0.02317182362546023,0.043871653356510124,0.002350613614042254,0.013207716458467758,0.011889485662063952,0.0671852828961629,0.006158108410213827,0.00014562670565440304,0.010068684573393659,-0.0217617903018193,0.11595830293445036,0.008481109545174764,0.00029060360816577914,0.017895378270638796,0.03445416829308509,0.1911821180715107,0.023353848368432524,5.076395587552356e-05,0.02072292601506704,0.022795508020206055,0.11649827295627137,0.002591938376192314,0.00032249025495960745,0.018578169558521606,0.06168556845843561,0.9361464175828732,0.05002334573076996,2.734450228241925e-05,0.02697529679065622,-0.03869646427080991,0.42756648440920725,0.10516935611303703,3.023774074703405e-05,0.0016933411732360025,0.031079270767927138,0.09684786523488939,-0.01091441085208735,0.00010337214395339475,0.0045660498169777615,-0.026361250247005513,0.18145152299107167,0.007846187791494716,3.355813078162781e-05,0.010004816097266528,-0.000843795075462518,0.002114902011056341,-0.00792896814139878,8.845535271027678e-05,0.0011702581921593561,-0.0020866391329808927,0.0072861601173192115,-0.004366522215184779,0.00013094750639105985,0.0034595321427640753,-0.003913546983235498,0.0034768285015929503,-5.0708010064699253e-05,0.000643373019315168,0.012476215163435833,-0.014747736735289122,0.05554998579830557,-0.0794799678030487,0.00011174482845822911,0.001977812003559471,0.012564165729804084,0.04021217004635323,-0.10149970906842852,0.0020053737264105506,0.051915621610358384,0.0014234121050584246,0.012302071143126845,-0.04732872542379705,2.9753264010658917e-05,0.00010367397666771511,0.0026759136861497865,0.007776221536340712,-0.005855740567449235,0.0011250575692235904,0.01886649707769356,-0.01132150942781037,0.09614542503315188,-0.04712212554409802,7.841539818748316e-05,0.0030805923703003278,0.01335500488908674,0.018723800599303363,-0.044216116661196195,0.0001683431425823594,0.004692868558997048,0.011127104508185593,0.014086061676976592,-0.055250916615928375,0.00045341563866525716,0.011507125285309009,0.03631736358740169,0.12382943359727845,-0.00566967721420496,0.0022732163376186706,0.00754658998959006,0.0310684063035041,0.12679482504457534,0.054860396864607947,7.861543425694772e-05,0.008296665118642991,0.020970439871215725,0.02942576644635511,0.006557888565201478,0.0017715644160840218,0.006097513666041643,0.0011295311142907648,0.0034845222040134904,-0.011581586775358699,0.00012843133556209106,0.008531681705872794,-0.014348456139265508,0.03970627941054729,-0.11294970095948166,0.00014648945263129445,0.007647288852254413,0.030754245579915136,0.12264103571669588,0.01365565539785514,6.120447732503645e-05,0.005059413221265482,0.00628253782164016,0.018552072869293064,-0.015436245776744736,0.003209672551588693,0.015109555190956496,-0.0015770423340389476,0.00716539005460369,-0.14839847342243237,0.00010948234368670095,0.01644613607568086,-0.0025063914729513757,0.013678266951198436,-0.015116172341165355,0.0001328858116561981,0.0032949767055966035,-0.0059791581854457924,0.03295138592278694,0.00019528223327884602,8.582524591528045e-05,0.00875805042847972,-0.07171088732517682,0.33634092447872166,0.15246620531554225,5.358617742035318e-05,0.010046151875619634,-0.059663797866582574,0.093881718417565,0.028534204968325032,0.0003098555349825383,0.010190137714607335,0.010943731708537881,0.04211727567481536,-0.012462619316293793,6.46129458602603e-05,0.0037597285962816533,-0.007265406667021358,0.08160568873675265,-0.002052877971823904,2.2970517478730556e-05,0.015543576456543216,-0.0021178118685036495,0.006769233118721455,-0.037781408785171895,0.00010935958960602833,0.01095015726461736,0.008687301354009408,0.042577635466433526,0.001306236611127873,0.00032161131408735397,0.0038505557061220214,0.03610363132912949,0.16421238522088255,0.025286043544096436,0.00012592639550855844,0.006386087190509709,0.0019315125324577559 +2018-10-03,-0.0003077327463382262,0.001974894727407044,-0.028452223074782707,0.00016478449533355882,0.0071595442440058376,-0.052967233491465746,0.17910813906284706,0.0664447457900702,7.095818445984775e-05,0.0085138378071838,0.04593018042178077,0.1496954106912262,0.09378901534090213,0.00014193413972269245,0.003290663462350964,0.02023205613314333,0.022486955668166955,0.03261795028269313,0.0003036527466820429,0.003749605434773336,0.0066117162022021414,0.014532656550574861,-0.12337075081017175,0.00023804933147299133,0.01648496055788231,0.006894295906566651,0.019103557183417462,0.005494978151831715,7.879931037667041e-05,0.003233293080505307,0.04451342696339939,0.16345314691029136,0.018621755766519508,7.990751031980126e-05,0.0045895228553614175,0.0036426829971299007,0.0371948489786544,-0.0982564838397886,3.358436903328559e-05,0.005579500438464793,-0.03242546420889168,0.0264280802518483,0.1298280791674708,0.0009461617170625165,0.0027841089313670178,0.017655651488242708,0.05008202535460996,-0.14367066155356792,0.00012327180358397632,0.009344167515285814,-0.0192034685923831,0.013944258164304448,-0.008425994463157536,0.0006731449980087801,0.0033489205717903555,0.005037956504012587,0.05487707143961048,-2.379762022004888e-05,2.7358121642263463e-05,0.0017939571559159515,0.044471409741275406,0.13594577734281862,0.04949891744113543,9.717760966789353e-05,0.015523535855919594,0.01988334067738367,0.12925357429875106,0.09534377195131505,4.3302065278107274e-05,0.008753946370726306,0.03377995726488701,0.026266306616289,0.047018143323619234,0.0025083206800540834,0.00012078822633568125,0.008007316598196344,0.051389379775731873,-0.006356581357640036,0.00012822294039337598,0.0076326744641011,0.0028384215380314404,0.015523779827629113,-0.0018327194159157049,0.0002831311487210173,0.00804133395600814,0.037658254827034346,0.22233429321407758,0.0058364071968589485,4.7710579514178096e-05,0.01819816998107647,-0.011862189540760123,0.07347310703787141,-0.025405501334611894,0.00026608675724973564,0.0027946887131980553,0.09686146242187768,1.1874893164504934,0.0484074838159248,3.3849444192125865e-05,0.03073229063616189,0.007590496073025867,0.08128882832925528,0.0013348450241555865,3.119758704875111e-05,0.0008670331226517617,-0.017393178320049944,0.05207208586040249,0.004743730167933776,0.00010759614974509851,0.006421916099361638,-0.02047546745515757,0.1781029738152895,0.0010933904511391402,2.6555533485566974e-05,0.02058988677104487,0.005996159963092906,0.017674747917343848,-0.06117926229666045,7.5213771104577e-05,0.0032255023796019166,0.01938211143621485,0.061403183856839176,-0.005705566618800659,0.00014433072433966355,0.0016095580243838778,-0.005954045304986066,0.006316327404308591,-0.010860440939326735,0.0005387943872215339,0.03763708528633351,-0.011520619123519624,0.03625643317960785,-0.04001669693544599,0.0001337447523636724,0.00476081202480109,-0.006332735411010134,0.02227632394774198,0.0018122957991459766,0.001824597153064597,0.003427384725702987,0.008944914596371572,0.08449725939991853,-0.007469777332908745,2.722173303334631e-05,0.004799648973209891,-0.06819755076863358,0.1879160610641448,0.06069592099571129,0.0011865229613191807,0.010977346393411497,0.03927479558049319,0.2855464759369559,0.1033125790744732,9.159310289034032e-05,0.022628358755854176,0.03085189663603624,0.04675043539588338,0.022132309168949815,0.0001557548554335577,0.007350322401255297,0.017276329112987723,0.026517326531325255,0.0010341780948594738,0.0003739604261745834,0.004164649422070796,-0.017658663361882838,0.08093052547428739,-0.019808962632007703,0.0016912032647440566,0.006194204723139788,-0.009867611536290967,0.03949642192197282,-0.0029148387525781195,8.015759175908597e-05,0.013250292068936869,-0.01426754834491391,0.01754845291326879,0.004390497755064477,0.0020210995710552688,0.009102680621679089,0.056785928278967945,0.19341958977212365,0.20891771659166772,0.0001163205128352291,0.011542564494297572,-0.013375725929008991,0.036425493361919116,-0.010183364586883707,0.00014885803944691598,0.018813741580116724,-0.015306579984922108,0.06262140431772374,0.03370735126818675,5.965808212023485e-05,0.0013755168062155425,-0.018193391007596843,0.06784951552141248,-0.05463882359337614,0.0025414698408546795,0.02302672406699167,-0.026051307741483593,0.11274991916927003,-0.023713896894173806,0.00011493541299340431,0.0024406237792185363,0.01321482127197348,0.07824673159559667,-0.00497682438402762,0.00012247737570169007,0.0012992556675119663,-0.022103051619822723,0.12651281253601163,0.010685889841554858,8.263545561347383e-05,0.004510410818488343,-0.047356253312534104,0.22294433435170768,-0.05804155000968773,5.338611156442707e-05,0.0031016910969081284,-0.03134704963674859,0.05550568641617975,-0.03864949304931532,0.000275352223555169,0.07415876955941973,0.019781109626864815,0.07491678601996128,0.038920871389514396,6.565773369320055e-05,0.005591122294697713,-0.024968283905205568,0.28206910180719585,0.03315290892511066,2.2838336299114042e-05,0.0072786958903292565,-0.015459765421348833,0.049018136986305756,-0.014244841406937622,0.00011024402559393394,0.005313184730728901,0.02797456657535067,0.10474596385731565,0.045397277647655686,0.00042097280386465543,0.00759747746544523,0.0475442307716181,0.20110315234876916,0.034654928919567,0.00013541000149935403,0.01855084321255576,0.0034930293344150264 +2018-10-04,0.007563523620597318,0.041445596066765164,-6.27756669516736e-05,0.0001929889136446038,0.006260615419467014,-0.04270698371034719,0.13611038755741234,0.03475504688828783,7.52866816210857e-05,0.0002914259109140933,0.015734866722653246,0.05494542075450527,0.011613773124647663,0.00013247342651671025,0.02342349331837554,-0.0009510732567631744,0.0009789898431241941,0.0011983146773484113,0.0003278714792923168,0.005559232006035759,0.021734874118931713,0.05149999984649404,0.009272934217820314,0.00022082471255996635,0.009929935797237893,0.017030137485618244,0.03742378514675004,0.002437282121752359,9.936128118236483e-05,0.012826214583626826,0.05055624615746932,0.18090861064369412,0.06259482066334288,8.199841102220841e-05,0.00232936154222385,-0.00559849432698109,0.04300388400417375,-0.0010458009109993872,4.464390498978805e-05,0.013202281900944085,-0.0040360464836069285,0.0036983973138791683,-0.03501871774276877,0.0008415644492919108,0.006407422657455872,-0.03265376249049469,0.07784183800590416,0.05610303149108581,0.00014668376003780062,0.005876504499781138,-0.0013515407209019955,0.0009905369659492563,-0.14479432244432847,0.0006669339196342952,0.0017448819864212552,0.014597432210136388,0.17427405686067665,-0.0908350138094958,2.4961260657366568e-05,0.0015599497977456845,0.02903333875106723,0.08745545160466055,-0.050210500186587716,9.861912216529447e-05,0.029859646187203097,-0.014374003648481015,0.0821490291142806,-7.770791648052912e-05,4.925350416550624e-05,0.00042660893581989817,0.007830900638612888,0.00936329296202318,0.001034659312172372,0.0016311957232894392,0.0017918288932110454,-0.043825674406208215,0.25751502947803373,0.01653171678564821,0.00014004839454291015,0.009658517566574255,-0.008085582430399568,0.05205414871560076,-0.030838546115483888,0.00024052719821262774,0.04696065656399599,0.04311231606216417,0.2653784691819446,0.005930227098372917,4.576111796231091e-05,0.03416324419405402,0.00924001526359422,0.05759814325946361,-0.013258786821243014,0.00026439364513480753,0.037228261556666,-0.007138723433403879,0.10035772287170651,-0.0031687289832462934,2.9518887756813463e-05,0.00040346976258236883,-0.00860692332106486,0.08502865605461706,0.006118120658681811,3.381927772475247e-05,0.0005106180417613947,-0.01739511442987069,0.04988091822096342,-0.045557375445680115,0.00011233513364615885,0.007608465459060367,-0.011511866927672823,0.0708603623925607,0.00047681795038345714,3.7526215455343846e-05,0.020780717025846954,0.0027695667124447397,0.008669270432096511,-0.0063129040673299405,7.082827459994506e-05,0.007841714181549173,0.0061951484690649355,0.021083908775674003,-0.0025462617403244183,0.00013435356231062144,0.0058148266336344985,0.0036475122963299696,0.0037127559417398683,-0.16684513879575133,0.0005615338280317021,0.008280102042884539,-0.04177189974862644,0.13003976925287236,0.07174849066951482,0.00013520540266939225,0.00959124546562865,-0.02683122054746256,0.08909301432927778,0.011613716505983704,0.0019329292181221955,0.006298204292495876,0.008186761492609123,0.0756883941248466,0.0033731094683759804,2.781410196934383e-05,0.016754719855697153,-0.005557675217106487,0.01508512497439344,-0.01547431572580022,0.0012045241753151916,0.024579312864701077,-0.008759259263775247,0.06741989040097805,-0.06606719479602144,8.651770331145755e-05,0.004011086762036072,0.0119131980224345,0.01834667313010909,-0.00919043694143189,0.00015325562498049594,0.010271547029857695,0.02527483365612686,0.03771277294799028,0.0073976314447776305,0.00038468367238871836,0.001182850705344333,0.010844318473025178,0.05238743624354764,0.0027690120971605166,0.0016044473090932017,0.01819066399473615,0.011594109253314092,0.04668905624584681,0.010188890564050477,7.967327392921138e-05,0.005733924880111364,-0.06330841205814661,0.08236863931319818,0.07144250995598371,0.0019106305626526315,0.00823860523602967,0.009593808986475886,0.032900894892827416,-0.004644650595588413,0.00011553122894752162,0.0010718430677612147,0.023170644626145376,0.049841871211597784,0.020588685003495016,0.00018845347663076211,0.014386568436256759,0.005742687592771063,0.023846337061293636,0.0007766035731142668,5.877700296564911e-05,0.008996290857316807,0.013383912349242482,0.03779689543688564,0.0006821574606355049,0.0033561782032382175,0.0063566823588644935,-0.07294964352401581,0.37802982808273256,0.2265000135692866,9.599258255007579e-05,0.009262096276693846,-0.001428395366638214,0.00751003347614536,-0.019300123944031168,0.00013793273391589028,0.006598812975513152,-0.006422602765693159,0.03566528352429925,-0.024217565987665918,8.51753800158459e-05,0.004910596345959516,-0.006588564466313291,0.03275864572527352,-0.009957732862883949,5.0548963548338656e-05,0.016104033647260096,-0.010562273332012801,0.01794193248360395,-0.06739846625798564,0.00028702358066917916,0.006331279009419096,-0.009587839237487688,0.03973526049739406,0.011759989770819282,6.00010782329423e-05,0.0028684743811199995,-0.009668186510046695,0.0921917791880553,-0.010951422894811566,2.7057278315965406e-05,0.006470283520825253,-0.00245337033912,0.008476431926665558,-0.007158214525285774,0.00010117168807442888,0.0021352748480643734,0.025388126249818094,0.11854180402819851,0.008461346457361954,0.000337588067847802,0.01094401318414074,0.022589113027040825,0.09497320042016369,0.0019355616750337378,0.00013622910433833327,0.020501171687018593,-0.0006708659259557719 +2018-10-05,-0.01901470097436091,0.1187356135838477,0.037069530824838784,0.00016935385351428596,0.004505552956314138,0.01914992259504178,0.07453410912935611,-0.05385438038160662,6.16484958132313e-05,0.005711093639323393,-0.025523990877005003,0.08624114042296882,-0.006441993325610507,0.0001369087780838999,0.004756235765867291,0.03681621536383498,0.03379634476209122,0.13423595202636512,0.0003676522823374451,0.0009454223744433353,0.01649014619730152,0.03957166666883289,-0.06944677569512522,0.00021804088502540785,0.0018173569998857517,0.010177937761575957,0.028371035081675933,-0.004257047668657383,7.833058136543632e-05,0.00644504512367654,-0.01726761648376674,0.07133107840644627,0.0076206152955375596,7.103026904512466e-05,0.002991434723305754,-0.005931515439127326,0.05854967147781685,-0.005550110203764738,3.474080016347365e-05,0.020052096110620466,-0.016400476493062477,0.013043350779363977,-0.010983518186303184,0.0009696434734351723,0.017277380740859414,-0.016247889279303276,0.0392102174288643,0.019151478785339876,0.0001448970643847338,0.007653488988936252,-0.010816227324890586,0.008274192211265394,-0.00629295044261213,0.0006389613059879824,0.0048594625853837625,0.003964317609374337,0.059079975907004034,-0.01901836326296532,1.9996358830935092e-05,0.0034323620201345004,-0.026786373901314022,0.07120225117129161,0.02387120195829826,0.00011175610056449672,0.0207686772847521,0.004214303565456793,0.02542699386117685,0.006125469721810693,4.665440077023688e-05,0.013812966573515807,0.021298029024262064,0.019903666932614715,0.016349503083163484,0.0020870328816128235,0.010631067073367311,0.022682362439818048,0.1355153343404774,-0.0027491359761353936,0.00013773742277541561,0.015884607879090375,-0.02594892612150969,0.148306116261728,0.015077826779350123,0.0002709371508257146,0.01943556833511467,0.07206824768308276,0.40023883354876355,0.08374308013892752,5.072075321211631e-05,0.008873066796305572,0.04528566878633626,0.2716355917726129,0.05087483817565048,0.00027476468910353865,0.020170039610229538,0.029183023126606755,0.44669572655878537,-0.0067223921344497645,2.711119825628603e-05,0.030708546531341797,8.834250898350515e-05,0.0009188776998404162,-0.004362687591057971,3.212134534329022e-05,0.004628935570154965,0.02049310979766484,0.05694371037011244,0.014838210722754104,0.00011592707041895035,0.009473058405865103,0.03539599492840626,0.2291124074746083,0.004055659184754964,3.568600166862034e-05,0.021919809823633722,0.011154891240623646,0.03160130200327153,0.017032341466917778,7.825962206909153e-05,0.006466640846225055,0.0013751949089506512,0.004833602515275375,-0.050139163285993306,0.00013008940208066594,0.002620676201489541,-0.03269009306134598,0.03205319231093945,-0.036918703619904694,0.0005829353993533232,0.017446302725001292,0.0034070327622597913,0.013027039512810095,0.024488400351813305,0.00011008207023752544,0.004001859021860063,0.012663553630918919,0.0407173096024946,0.0008655266159442812,0.0019961615887978262,0.012541322195901289,-0.00311013753237444,0.02738669280059609,-0.0016120275303028002,2.9202645687316835e-05,0.00722198503083285,0.011283323325097556,0.032524267633094794,-0.1333308382299534,0.0011342290773525086,0.03478110986315114,0.009257602287861925,0.06405614436110049,-0.012831075360161284,9.624171829696283e-05,0.015205542936635832,0.003419409672149303,0.004678363849691581,-0.010455739126991267,0.00017250533345853603,0.001623751102261171,0.02400238288827879,0.030794844792317037,-0.012481272042044947,0.00044738379958895964,0.004252459377111318,-0.003450942914160139,0.012542783380794514,-0.0030019826092584543,0.002132525310818126,0.001912293954050145,0.018127853346001952,0.06474413841419106,0.01897611309735489,8.983308074172364e-05,0.003433738430238375,-0.025316372065262813,0.03475791580789054,-0.06864344892329045,0.001810610083175516,0.018288248355830476,0.01650823924501948,0.04705845489407951,-0.017081891726969563,0.00013898858297481257,0.00555645076026306,-0.026966740216084712,0.08124986277698575,0.024425687899690275,0.00013454457504473452,0.019800301023920004,0.020727864340374047,0.08572587186329533,0.0017951503492160566,5.901420648572731e-05,0.003680290387553591,0.005812613139608042,0.020634159305464094,-0.01236456487532229,0.002669947354282655,0.01402289645110821,0.04219993467695052,0.2185980686548889,0.06977024260951165,9.602980098693498e-05,0.005953472418896724,-0.007717666496087682,0.04238259340850287,-0.00847958031916973,0.00013205634229931741,0.003639764679563515,-0.03485744873077081,0.20259754224810725,0.06115198067034548,8.13785830008894e-05,0.0019711350279504438,-0.0191303946595562,0.08176184469036647,-0.027440986087341242,5.880586507864858e-05,0.006390651957616197,-0.014231099153185676,0.029301804879147974,-0.0020619931228877137,0.00023679551180767985,0.01716708544718391,0.015891936533942563,0.05996502306453151,0.019768278913158056,6.590118027982414e-05,0.007905731366358526,-0.012709951716732875,0.14272470271507895,-0.13004446896946806,2.2976085523113217e-05,0.014882197311959038,0.005923216900070682,0.01942511082493748,0.02032533348865748,0.00010658671942735223,0.007790784189182823,-0.004742972297711835,0.021053433330019657,0.0047973103455322,0.0003551040533619526,0.0059909740893915615,0.015480729525370267,0.09140066029740011,0.0007289414672815482,9.700941500147122e-05,0.006733491178873346,0.0035621410302345484 +2018-10-08,-0.03653306684948399,0.2944293947775815,0.10602510390071834,0.0001312174365691423,0.014538576384931586,-0.08002379439157137,0.2630336355478098,-0.07211015791562675,7.299924675827382e-05,0.0004399860432714828,0.044485716141809864,0.13128472208303046,0.034117833497785695,0.0001567485751234373,0.0008892287977238665,-0.0032293050035028213,0.0031257767490478314,-0.011717121342409379,0.00034867351941534486,0.0032246555253482734,0.007349614176322309,0.01734398786269403,-0.009505445557927924,0.00022172433060639436,0.013809423463666894,0.01797233919307703,0.04559875986476238,0.023122020038416527,8.605940018717528e-05,0.002886595720122824,-0.0218098436222963,0.07358254979362408,-0.04303591432013339,8.696962027770084e-05,0.0020764558713039028,0.03629055866599903,0.3163524310554885,0.01915178541935624,3.933879856970014e-05,0.003250508446217705,-0.004615309350385947,0.0036932969977563064,-0.030453136579955985,0.0009636767239498496,0.011247522085630183,-0.03581010349164413,0.08583191525651568,0.05674784350514081,0.00014588769381071914,0.008408448984532453,-0.002044262436252263,0.001712831181266917,-0.039739425268319646,0.0005833731628599999,0.004774080198395831,0.00035046857983464763,0.004863411779633393,0.007177071579796235,2.1474884455186564e-05,0.0026890329195368313,0.024805306370148435,0.07449782025239211,-0.08264098980910135,9.891270240111704e-05,0.006521747561117103,-0.02397368576136838,0.1279715265654208,0.06884467255923861,5.273309676359422e-05,0.002214411340276635,0.008425328096468765,0.007454204629908686,0.0006412406192901603,0.0022044917807628947,0.00883304651640945,0.02248218554200384,0.12408170245641525,0.021114524990516303,0.0001491018018726122,0.029429595724379646,-0.008870208160100266,0.057743713987257715,-0.06359213510329517,0.00023786871694333577,0.007939771725982774,-0.0040722429116570435,0.022414251190162347,0.006872985995502022,5.1176478381085754e-05,0.008007651014107024,-0.004574908872838176,0.02553481271842492,-0.003021366679757033,0.00029528173115247607,0.012701070280734677,-0.08455122272603373,1.0507311791972254,0.02933739664977143,3.3393235795846306e-05,0.03657316667640711,-0.0018933084373679075,0.019526383601017255,-0.09132269624087049,3.2395244529077275e-05,0.01210509024883345,-0.022703136116268726,0.05924220133459005,-0.012220610706640385,0.00012344611338211743,0.030977767711979947,0.0008092388350655717,0.005883739258574932,-0.024609028347137067,3.17698872732434e-05,0.00773547325711412,-0.0007416115956267498,0.0018897771074946215,0.001438954629724769,8.700481948550064e-05,0.008647139534025402,0.0014265351395978164,0.005278885325068443,-0.023747608416904917,0.00012356311318186783,0.00032321639119986577,0.004171462053611827,0.003895198905172378,-0.08495944589070317,0.0006121166872783697,0.013014854897873164,-0.02111622143140506,0.06699742772723981,-0.00036448691712467315,0.00013266125078405675,0.004500428508627615,0.03504436412620073,0.10979021818654171,-0.05204216232020974,0.002048678032999455,0.038827604118999486,0.02078853451646921,0.2107139250455409,-0.009780432812649863,2.5369554053717474e-05,0.017835788042569606,0.0254773595170062,0.08187674505549453,-0.016022191983988077,0.0010173376469584234,0.014590439809274094,-0.0033968984268234557,0.026119182457877636,-0.10697594829300106,8.660612848052136e-05,0.000874743686733212,-0.023354318738493828,0.03379424555534397,0.06404794651438017,0.00016310596122650565,0.01093970639249264,-0.014009543163227915,0.01609394269019631,0.021975931113881214,0.0004996494767503317,0.015351774196497258,0.0051589719495296026,0.01753251671662824,-0.021856634100210257,0.0022807056898541483,0.027678253226232172,-0.0004896177872448096,0.0018746334399552345,-0.02451803735408035,8.379752611179002e-05,0.02859622804353883,0.07510412922969671,0.08891302817011272,0.08628180340695057,0.002099788754205304,0.006055651627425109,0.03404532212514032,0.12955087512516905,0.027107346563981293,0.00010411975395621317,0.027384247024039257,0.00949578897017085,0.022806983619110606,-0.04392115709803406,0.0001687810094372658,0.021559663202833187,0.0013859620095786034,0.0054557674805605205,-0.0056852893706340725,6.200252815670983e-05,0.015685487924267348,-0.015381175583033025,0.05201934496718226,0.002743210040147837,0.002802481204590439,0.01269777338342323,-0.050791462261515666,0.2223920367439429,0.07632793734242507,0.00011360882144007278,0.0023398062416434403,0.042151061575652224,0.2560757810375114,0.11200105988742053,0.00011937153959426839,0.00809052009100709,-0.02661259830028979,0.14850194454375767,-0.003950206100318122,8.4762515507635e-05,0.0035613325033188007,0.012622741303622878,0.05262914340149826,-0.006284830569939422,6.028021256978971e-05,0.011906833135484083,0.08119470845156679,0.12899332955782872,0.10399281620197473,0.0003068950389162401,0.003819740334001922,0.006774889430118672,0.027230432974464185,-0.05181940206154856,6.186742502922585e-05,0.011058179084801584,-0.03163430699211928,0.3554477444200496,0.057371383421118374,2.2962218631004852e-05,0.0058840472168459335,0.017015713433308398,0.06273738978596802,0.0628004827202199,9.480531415409853e-05,0.0014183668456851217,0.03021105004362417,0.1146360441235323,0.04790635565127393,0.0004154058423488248,0.022572945457017747,-0.010055199455624306,0.0525807895645046,-0.00818885481805738,0.00010953057874367901,0.009328391265069614,0.0002221977099783517 +2018-10-09,-0.04773205131657778,0.3141041004314505,0.12359841616580246,0.00016070266425579724,0.01417730824268677,0.035326379282506544,0.1197170235187707,0.04804412954958199,7.080333972527743e-05,0.025516478955454246,-0.04052869988694207,0.12338303019406027,0.028597809086993657,0.00015195130869174843,0.02500185585149849,-0.02434163779462468,0.022940658289409315,0.08109409662698014,0.00035810614722782,0.01371961650643647,-0.004404334930656976,0.010180213058487193,0.005894190050699736,0.00022637123633501382,0.0020628197579885257,0.002764201470002635,0.007615998635605248,-0.01418760731200079,7.92482308685127e-05,0.0007841339589699294,-0.013290501845435619,0.04959814086863967,0.0025216092995778852,7.86259376310811e-05,0.0028421248886077496,-0.02985206920357924,0.23177222947935247,-0.011778926182348753,4.416839884239937e-05,0.005045744366889744,0.003778332555941821,0.003369212751007396,-0.029574635775999857,0.0008648016934462261,0.00024932596018797156,-0.016779979445678626,0.04317224085048339,0.0006543168703660006,0.00013590915730027402,0.0009263835360644103,-0.013077115210864031,0.00881824427030251,0.009799049980948271,0.0007248600811500242,0.01447215025242804,0.008727954674371655,0.10787052142164948,-0.023211746130774535,2.4111958840984987e-05,0.002122131407104634,0.021914711659737227,0.060649506456922554,0.005215053208144366,0.00010733949002947346,0.00545758826208053,-0.006950732193247145,0.03566148611043201,-0.03644815042850205,5.486469088457815e-05,0.003536315230845711,0.016882433329410525,0.0139325914084344,-0.1057177265028333,0.0023633395064196526,0.009251421745140246,-0.03668036461111349,0.23719300288297138,-0.01768351077732165,0.0001272576439504648,0.01220370738132472,0.012791525215403462,0.06714885435151495,-0.038338694989332976,0.0002949795819313777,0.01812370004895826,0.03179740272377825,0.19933876176040924,0.009115271257340051,4.493252733232103e-05,0.0194962629531694,0.004467163322117561,0.02184711210940802,-0.0359009182857005,0.0003369958874680855,0.03699356744676861,0.029763074597756015,0.4033691173364246,0.006900911014898685,3.06200136063358e-05,0.02206775674311867,0.02803523603856507,0.30042651472656123,-0.007578277735318024,3.117795791403544e-05,0.0019752273262623192,-0.020082067277708473,0.055925099965679605,-0.01969534935832146,0.00011567097716624451,0.018345432423134182,-0.02235386724820116,0.1536892129367872,0.00760004385378664,3.35970895584402e-05,0.019790251732226004,-0.02148545767262359,0.059812261172467115,0.13839736030566793,7.964009520731813e-05,0.003537032157326119,-0.018386498082600646,0.0687187853752314,0.10284800542015765,0.0001223410326069416,0.0006862484148168074,-0.011908856898599031,0.011391144920124096,0.002914554907221144,0.0005975555177375521,0.0072171556685064545,-0.019462581962457946,0.07604809372354857,0.0017316349038533061,0.00010772044315548662,0.0007308816729427607,0.0789703752898704,0.272707247667222,0.05061740980446822,0.001858603267748086,0.018973026483384073,-0.03723048064314442,0.314963117176232,-0.06273285271644169,3.0396329121260554e-05,0.0030894812469161106,0.024690998336802137,0.06297049466056433,0.01732087950031653,0.0012819551019343663,0.016055502048375688,-0.0032165703548022017,0.025811601681047108,-0.026045057148119,8.298579209890016e-05,0.01434786592652236,-0.018720052384119622,0.02365798188682502,0.034578079015113616,0.00018675608063597197,0.0013484784213529375,-0.01516166155062972,0.02490554406083121,0.027901714495484026,0.00034942556677115783,0.013156176249147345,-0.008717570994586052,0.03278495967782802,-0.03289778524220539,0.0020609676749780213,0.0025998728456695505,-0.00294372087975236,0.011562445063929587,-0.02392199306054249,8.16840601416309e-05,0.0046415575500283884,0.042258464208425016,0.06861108505975556,0.006711314146119459,0.0015310755235745036,0.007440574895756125,-0.02437516344600901,0.08138213230115908,-0.026336225703821027,0.00011866824193555573,0.003766768279825857,-0.0012475031837376137,0.003055525575337341,-0.04722589400234087,0.00016550690429812192,0.0008820088078182039,0.05065519015961784,0.2085158076077042,-0.029904191582438677,5.9292380995337554e-05,0.002535956518159134,0.014691082388407883,0.049862219128647176,-0.0034594372737999607,0.002792545444115419,0.022533288864712554,0.04752913455903105,0.24233357180258733,0.078670953641283,9.756339257756459e-05,0.012004720208103902,-0.006060842615267091,0.03187404068167407,0.0015452441637628799,0.00013789758753277994,0.022595811509938453,0.003964941869043741,0.019908294409153884,0.0046797593264979835,9.420012271605936e-05,0.005195012649799901,0.0142090722703546,0.06503811464670782,0.017029261181825746,5.490920739933119e-05,0.012934597563099011,0.05578103579664897,0.11095365913219712,0.03464608558452444,0.00024511751162191155,0.004743426041502321,0.011432168220279707,0.04787934354660983,0.0060628262114912285,5.9373793113686084e-05,0.0022660574748415707,0.012542061327784215,0.13871569973394132,0.03332759400843787,2.3327843256148914e-05,0.009670110462437955,0.02923815543977385,0.08649020871221033,0.11828165776564659,0.00011816585183187684,0.008025020950356048,0.040927574222639984,0.1590823233816113,0.07883033194144042,0.0004055291249189756,0.020739346258619853,-0.0005648098058126143,0.0024961011264550666,-0.01340494039348403,0.00012960204302357018,0.027611280496483773,0.003175945739961668 +2018-10-10,-0.025594299889348048,0.15711988210159417,-0.003777025600856022,0.00017226565256222903,0.00723367566507205,-0.05249647839518979,0.15638698126763442,0.02803115616063173,8.054528095985709e-05,0.006278626427382951,0.007231233925576252,0.02701675118198212,0.005906592512875046,0.000123815920959916,0.02295103079951658,-0.030119735229100428,0.031409543271089836,0.10355390964202241,0.0003236364172855732,0.00920881894019165,0.04853916313613745,0.10324225228145026,0.052801462342018796,0.0002459985721667246,0.006373136218238258,0.024417497541668068,0.05895857366027092,0.04092223743935554,9.042758323677153e-05,0.00284793950912666,0.03411996640353392,0.12028435502737855,0.024148759653956787,8.323180369986671e-05,0.004457533472308988,-0.008233624691445849,0.0656535771399515,-0.06243602166720448,4.300622153815058e-05,0.005745168322039329,-0.018888001602559042,0.01636230594728157,0.03919647831768374,0.0008901973325104517,0.0059912787176704535,-0.03977546072672079,0.10939568946436642,0.05456133028372514,0.00012713844503485242,0.011532236367012692,-0.01716683066662094,0.011173561441491887,-0.08244452374435426,0.0007509704704772477,0.0026257968112098464,0.00370247476199316,0.05702160087531834,-0.007508889371447396,1.9349755883603377e-05,0.008530397489416827,0.002661734784755826,0.00757412103675761,-0.005962121963279377,0.00010439593229575708,0.0062431744096889475,-0.002368759976114227,0.014727456832860416,-0.0014023259470741815,4.527465152043981e-05,0.010075493325068064,-0.0003932121789815903,0.00033326697376398576,-0.06839169029365225,0.0023012174334762496,0.006429346020275228,0.0016392501281677558,0.009433614570614568,0.0030257797803880976,0.00014299445794139232,0.01830258685386674,0.010699944646954233,0.0585163538678592,-0.034069379539517795,0.00028314735258494527,0.004221659456153417,0.007812999474877727,0.045840020719507095,-0.002519352269415787,4.801024761340681e-05,0.0020413284553755066,0.019361003187996825,0.11228740138827205,-0.017267552969423613,0.0002841735368836234,0.0007348799457835185,-0.04132669832717038,0.4624690250873307,0.01047400318865409,3.708329287271418e-05,0.04725088932728731,-0.006532490727191135,0.0822556294333277,-0.0038442628972033977,2.6533520772718885e-05,0.004360706312555201,-0.0005347671417702986,0.001739420674881731,-0.006444082880974787,9.903366296038319e-05,0.016288939001760865,0.0009430226368081972,0.00603152435572116,-0.038804663529961154,3.6114982446544446e-05,0.0024791281851894807,-0.039806303859836516,0.12148448361687136,0.23521352951713012,7.264545097202851e-05,0.006944968642548163,-0.018915140647871143,0.06985793963185555,0.06661755429350484,0.0001238062011556857,0.008082441566414744,0.05244439907175167,0.04806761275262969,0.08544926666400425,0.0006236229956960348,0.024364659741578056,-0.0054772100825176626,0.022604181384691457,-0.11178599356742164,0.00010198977282547748,0.012951246158087343,-0.05013664290186501,0.18510603148741708,-0.042883589246418406,0.001738416579919115,0.01227190864641838,0.03509895563421699,0.33211165235372636,0.055248267556939415,2.7176421904623328e-05,0.009900416093310941,0.035005619670934095,0.09473370374970123,0.024642618656069117,0.001208104557633506,0.009441192354595625,-0.019972995400270224,0.15932912395683896,-0.10563113999429313,8.347831551466218e-05,0.0038432600927823446,0.0273456533750118,0.04227803193478415,0.03544882847640022,0.00015265777504255135,0.013157753250433515,-0.01102761713208675,0.013260624371215819,-0.004901938044974313,0.00047733317599322984,0.018341013038829006,-0.04642868755462686,0.20538376290069538,0.07696781203210247,0.0017521474136797776,0.00042590735261239685,0.0159207721364768,0.051102555387453064,0.013245992059267405,9.995669301670215e-05,0.011149356248656333,0.022117851611712657,0.028818623257028792,-0.046718590331574834,0.001907861755346689,0.005022724060460798,-0.004058320734025087,0.012101849789528702,-0.0023386932982638396,0.00013286501634743447,0.017429169089249984,0.01606982311605252,0.045775880831935206,0.015588138254356695,0.000142309785039684,0.004513315677645109,0.02269351310505277,0.09981696662503177,-0.00010675432966939061,5.5489561129965074e-05,0.0028416710847827013,-0.027106578926629262,0.10689480835969378,-0.01223418373424531,0.0024034558811084307,0.003449601978465347,0.016569008071176027,0.07479814318668049,-0.028648232240674375,0.00011019103524298548,0.016713799602207712,-0.003932708413631765,0.02074429503714242,-0.04293859515646272,0.00013748453562967386,0.003999828152144917,-0.02711050465606203,0.15050645170033988,0.014924721585795645,8.519834991623252e-05,0.00434133880513908,-0.02263348086531641,0.11864684013658781,0.005159003071269304,4.794491676189935e-05,0.021541367651467004,-0.035165928019705334,0.05645495374058828,-0.01178148831121585,0.00030370323712352096,0.021145084145155375,-0.01361422633893072,0.046716023795368884,-0.206556912279379,7.246719835757609e-05,0.005902980482272108,-0.008426995317126632,0.09652836577665118,-0.007177961223208759,2.2524184931550254e-05,0.0048488869608139555,-0.026067299384078785,0.0840924917977807,0.02273828070626881,0.00010835470719385976,0.016860916744012657,0.011174936006495918,0.052023105586540254,-0.001159212962690115,0.0003385920379052653,0.002904224719021984,-0.036706858096007496,0.1508848728454425,0.024080876397350005,0.00013933919836786257,0.010328076527466415,-0.0046692715915932475 +2018-10-11,-0.010334418527677075,0.0630543689470023,0.0019429797260948345,0.0001733234983132504,0.007597481692222782,0.024340132853527673,0.08654656968775039,0.020843286677959368,6.748132662497946e-05,0.006897908854721887,0.013787475703855167,0.04920504225634205,0.0008071901286616329,0.0001296201010039588,0.008001088076146202,-0.029524354775991496,0.02668150281388032,0.07411248627269477,0.0003734547472412075,0.012837136786218523,-0.01769269513337363,0.04427942457494865,-9.140207281329672e-05,0.0002090690751174355,0.01149168611006418,-0.002842230133334037,0.006829034248937868,-0.022301760358426372,9.087547388076617e-05,0.007010120572507244,-9.652221571158962e-05,0.0003250883448019528,-0.06769630580247095,8.711957311349039e-05,0.00216310076399637,0.04021386646065294,0.35956684839238734,0.03843777501314126,3.835259924224239e-05,0.013252619192977596,-0.014404160702951202,0.011358329008870481,0.016998125935368626,0.0009779537136671275,0.0003745717121654713,-0.032346181040564026,0.07466983447459705,-0.0007321952395702022,0.00015147456387165325,0.004513017490068171,0.005217163405469214,0.0040611156487962785,0.014626584739817497,0.0006279331925917514,0.0012512372336135036,0.0052417846500066225,0.07010833062281947,-0.09866634260457861,2.22808799195859e-05,0.00331925194052106,0.015519262608241718,0.04342928034677562,0.002716501201896874,0.0001061547634931895,0.030471920111104514,0.002610776489938079,0.013927298529169347,-0.05597303370574784,5.276727012118451e-05,0.013066801496707985,-0.014691802279082594,0.015942578767349568,0.01886042428524007,0.0017973782260109112,0.0066399026597568096,0.05949471183317387,0.4043710375845683,0.09664250215689187,0.00012107387175544665,0.009502729714679959,0.05047569323609914,0.25661005127910885,-0.01860039383190891,0.0003045908555324224,0.010925236877339865,0.017504996475665956,0.10884608514137885,-0.008392399502224075,4.530124838762652e-05,0.01699381668713258,-0.01800608419491399,0.10283239195002782,-0.05406945196274685,0.00028858658972960994,0.013437705930588847,0.02525260596807821,0.30515420969523627,-0.002156145178547491,3.434132660435884e-05,0.01009006708958591,-0.004998433448928773,0.04609908875024076,-0.004086152241662706,3.6226241876392045e-05,0.0010257719330381504,0.012985038270051298,0.03743887229515286,0.003926879494788142,0.00011172316516963651,0.005140245891506644,0.03475608735180803,0.216734794329333,0.016618491909746992,3.704201626871709e-05,0.029213573459242338,-0.014979516136066967,0.04347430465984541,0.02010015939880832,7.639105764488422e-05,0.0051499505014893235,0.006354414615407761,0.02321595374928575,-0.005779644304848938,0.0001251519480931757,0.006859632653384159,-0.008751192590185024,0.007866112406041646,-0.040287870437196276,0.0006358909656491466,0.0047534592541062706,0.008137395741060902,0.027288965486790235,-0.02067559134148682,0.00012551174692298985,0.0006345933731870322,0.04704237939537862,0.15485502216580235,0.04917058711279493,0.0019497689956552594,0.02600945814592035,-0.03527268722563337,0.42524150406778255,0.03298411329304727,2.132971718426084e-05,0.002630004555594253,-0.013921986973418475,0.04267434638532354,-0.0006329118207766411,0.0010666099108638217,0.011229269559607348,-0.03348730407000337,0.24882506032495955,0.10460929527834606,8.962139731103698e-05,0.00809840008047372,0.026545700980607774,0.03628524775911356,0.029588942611019024,0.00017266705886921215,0.004572141121541397,-0.012726106411794868,0.01833498789782695,-0.030479041030122632,0.00039839954753865224,0.015659961572866928,0.002882621823607466,0.013071229514640192,-0.0023407170409241083,0.001709312903128974,0.0019867989248308964,-0.019539898118970268,0.08550969713739079,0.0032562764377929944,7.331575261868932e-05,0.00038623248182512713,0.09764069465209793,0.16325631016343403,0.1154215825893372,0.0014867504400780313,0.0008668540721117461,-0.026641747555696583,0.10159970304184616,0.07597293779803838,0.00010389300470443049,0.004526733477805609,0.03787269026002255,0.10493665140506643,0.07170010364960695,0.00014630505463254431,0.010355407998977951,-0.024055649632784247,0.10166308824436485,0.0708583206477986,5.7752091448229264e-05,0.013942499035648872,0.024053305594357813,0.07221615285258655,0.010259488011955536,0.0031568829405595627,0.019642732251537055,-0.011065493926338472,0.05626993670736311,-0.0022138645239873915,9.782164193758985e-05,0.0028679502993392346,0.021663534192180277,0.11224893431995941,0.025491862008771664,0.00013996126748492516,0.0016707222793332427,-0.024603149603106146,0.13271801487067597,-0.23105180754047133,8.768181459213846e-05,0.0011269143732975313,-0.020860835610744408,0.10581702348110578,-0.0046978605401447006,4.9547706288157014e-05,0.002881167291482538,-0.018633015109972447,0.03551783549283622,0.0024464174438585846,0.0002557796794890152,0.006575600531433556,0.00894837714532051,0.033634993655691794,-0.03026229415324547,6.6155705574666e-05,0.008444007470262633,0.029978101134270588,0.3417867675868605,0.053843721288372,2.262977109781721e-05,0.005400855082980215,0.0010619142731228036,0.002989277484122344,-0.01219671758760194,0.0001241744347594052,0.000115534168598359,-0.01506699052130354,0.05501492784540775,0.018063405855899235,0.0004316919381420025,0.002165626627833459,0.029864855418252585,0.15727877178711044,0.015012251983991169,0.0001087582231255481,0.007298612023662689,0.004070458778288165 +2018-10-12,-0.006500764725466406,0.04668242816370639,-0.04579852697266812,0.0001472643398009767,0.006100688852644011,-0.02556330193292222,0.08821983462126706,0.005419503265276468,6.952824013374908e-05,0.02715745035557333,-0.026558229761676867,0.08443913671734346,0.007762051148991317,0.0001454964991522708,0.012852482915007504,-0.0070487384329467676,0.00880420755452858,-0.019214531893385282,0.0002702022611024947,0.0072339187743473785,0.018373305340198126,0.03580784997069727,-0.036553941892921896,0.0002684768351091187,0.0017264965804280063,0.03052284165978863,0.08230265411004514,0.05829262610494626,8.097628769126676e-05,0.0026356821898552794,-0.017391093188011852,0.06477412038809001,-0.026396493417949758,7.877986156134561e-05,0.011871239932699158,-0.00743536074126986,0.06645196504240593,0.001402779315973778,3.837009112308769e-05,0.008455093840725236,-0.02768651353062415,0.02060542489560613,0.05730933813627107,0.0010361711168803448,0.0025157851289617865,-0.02464981962289157,0.05949389271227882,0.014136961125308475,0.00014487826822865205,0.02129099601024841,0.019509303495757083,0.015255877834753717,0.06012908507290231,0.000625070381673192,0.0023779161000223744,0.008382577222712833,0.12165076508145421,-0.0010317123406603415,2.053456502281957e-05,0.0013837463836106176,0.01854526835896594,0.04759832932069685,0.002199887388020458,0.00011574239121793263,0.00022484681473747617,0.007310069798757188,0.03691923083044581,0.00801490276389655,5.5735345502851387e-05,0.007991063919512317,0.0445057040617408,0.03923946981494125,0.07752329584781441,0.002212154816608565,0.002659155011696347,0.010246894916712242,0.06379358111470439,0.004798919739364298,0.00013218050533477785,0.012060946575830142,-0.02237147158086425,0.14018169902265495,0.01855204085382491,0.0002471220313239789,0.005497925428490971,0.014498277620893112,0.08268492447732217,-0.047438087165393064,4.939136555340303e-05,0.020379490261782426,-0.02792796123371278,0.1487796234612077,-0.008106527999540597,0.00030937312571154745,0.017544370355622074,-0.01685579537432625,0.19352091738760696,-0.03993941076302738,3.614527784918061e-05,0.01133325920682151,-0.012708414200912455,0.14472191543842208,0.006778364626190846,2.9338558273442126e-05,0.0019806815520877407,0.02599108693339132,0.06889260640544001,-0.006526749877052435,0.00012152750505539115,0.026413841312393813,-0.023002425105828977,0.1635655456769426,0.006979787076977974,3.2484349511575175e-05,0.0004073636072991064,-0.013643696465951146,0.03930386084551588,0.004275995309997814,7.696162301318451e-05,0.002265724146536148,-0.002381762838084977,0.00812316602969536,-0.001785188454671021,0.00013406696579471944,0.004464278554683531,0.055704049881514485,0.05860576339015764,0.0878044917444124,0.0005432778579041848,0.002654105785350993,-0.03719648382151448,0.1446015082731138,0.05178414216844981,0.00010827172951558495,0.0005351364478596891,-0.018030501684351555,0.06365683806178318,0.0007499097741233859,0.001817949951198806,0.004839750606379398,-0.02053748718220099,0.21012584760942773,0.0068874245758869974,2.5133329352535924e-05,0.0037955688264480064,-0.05045208190209402,0.1273317173139747,0.014057691533873401,0.0012954294483672748,0.012738455461243973,0.033485760180580804,0.26533340189125204,0.10422629066840157,8.404151651488969e-05,0.018879881279910127,-0.028544915027245692,0.04568552881931383,0.04138254656292657,0.00014746721705573667,0.002944674211157512,0.0002557852566264658,0.00032939339171316335,-0.12302430337338541,0.00044572248175722473,0.002671336511627745,0.0011578593120876936,0.004779917178723095,-0.049620333185055064,0.001877525145983313,0.0028053248195635473,-0.0058097056482057045,0.022078098971551063,-0.010329770235819817,8.442728504165031e-05,0.005206740398109045,0.009274227244576029,0.013590880975736323,-0.0035145135189270167,0.0016963181770834558,0.005019775825240975,0.04160565267395687,0.1369052352981739,0.0635493898558153,0.00012040605289175323,0.012692444256476396,0.04289473569071656,0.10196782803286959,0.07249495890705815,0.00017053016156436883,0.0196776920731943,0.005299319048182692,0.022736520739379762,0.0013325334245818843,5.6886600942761045e-05,0.015906424944474883,0.031862246331680125,0.11489975265013058,0.016613926967253584,0.0026283025419743086,0.027003890937498616,0.03456883904709452,0.18798932842621036,0.01047906377995161,9.147284121968502e-05,0.0077642906223383094,0.02349353798976383,0.14994760679946514,-0.046687362247115366,0.00011362389418990334,0.007849185530340967,-0.003225130812234448,0.020303002379836014,-0.0887163979404987,7.513387148074522e-05,0.004493671813930017,-0.016507418974722854,0.09019628125065014,-0.001821397847928635,4.59978928242256e-05,0.0034722655178021644,-0.028300675139895065,0.05375290237235144,-0.0553595054411598,0.0002566990559034217,0.011653137574466739,0.02722147123997514,0.11267368579250911,0.07429804661746554,6.007634027406526e-05,0.005517142766012926,0.011607493457168107,0.11966553689418284,0.020370212949454264,2.5026530099567812e-05,0.009003341570101254,0.007866528911958931,0.02016887740166937,-0.013145375135670363,0.00013633594778402614,0.00028131054050148927,0.012791864936918659,0.05311761758482792,-0.016487505273019207,0.0003795974166903774,0.009669844259333267,-0.01224967896864943,0.053488003737358625,0.0012466397188684519,0.00013117168987061354,0.005453117440159722,0.0015449169673086346 +2018-10-15,0.04516999644840512,0.27664252006612033,0.05481698961151471,0.00017267032569701248,0.011133374592555435,0.03026305941136988,0.09170313940218147,0.007723323327205907,7.918431302444043e-05,8.665737612719338e-05,0.019971175566798293,0.06427197335552103,-0.026738705441516006,0.0001437405160572685,0.03262188337960618,-0.003841482636877758,0.003293323754142811,0.0010645283058296146,0.00039366998549027465,0.0009952115626769946,-0.001851886166853658,0.003938656675315094,0.005682937536989446,0.00024601632915060456,0.010490249161404817,0.008373148435910412,0.02346165434713372,0.0002459911188243731,7.79250156045946e-05,0.0006493583232979915,0.011498611724018226,0.04535329769003746,-0.01471191295644426,7.439202727302393e-05,0.020990815052733928,0.001551529454124378,0.013228859159868146,-0.0041953415842356035,4.021946101808991e-05,0.012986853140689572,-0.00904715966332145,0.007616819992397335,-0.013675048717279944,0.0009159744280783312,0.0038428095411826907,0.008859286764124537,0.020158630491939965,-0.13190627842471622,0.00015367372606919517,0.027323319768487148,0.014338102954529124,0.009591757472532464,0.021176839076821243,0.0007306642583926447,0.0030297662877692313,0.005768846770868012,0.07595461509036834,-0.004141486697529448,2.2633807911203532e-05,0.0025859087094025346,0.012567113684149308,0.03460702508186117,0.0010490181426463477,0.0001078753738852957,0.0013249156419311429,0.01559931408263617,0.08233083431847112,0.00023453433293946956,5.3334079542103374e-05,0.002792176098090623,0.043288352242811204,0.042926814052653244,0.033211130739906995,0.001966823416568656,0.00974226552313446,0.03310148814319544,0.19735661753974246,0.02582579056989095,0.00013802187830300235,0.039634661008283285,0.00860512694495872,0.047648738860824796,-0.0002404569476829105,0.0002796495359390129,0.02366448364521359,0.04147020431790316,0.26660945790998997,-0.07558072947048886,4.381487522132973e-05,0.004461293039311743,0.012549974464392415,0.07470736237185555,-0.060849475919417105,0.0002768638451477783,0.02044770481961201,0.018765093866788454,0.24957431339982294,-0.04550729988296816,3.12019033630826e-05,0.0038472555941544842,-0.01350397503675393,0.1296649743449151,-0.01276244478786777,3.47953057529161e-05,0.014660330398802135,-0.0011924015951964837,0.0028094306057177038,-0.016357614810215138,0.0001367184087033908,0.007858652252764537,-0.03737779300280698,0.22886901589188913,0.017079442872312767,3.772411225184764e-05,0.008543251926157564,0.01625419856434242,0.04016831874756878,0.026671588322077944,8.97138074570491e-05,0.005600351401728579,-0.008350029062326968,0.032800544131931994,0.01495794205216412,0.00011640068453047817,0.016793937270585035,0.011617904183514629,0.011506536887957492,0.001753585462126513,0.0005771101567964416,0.0031589875250497505,-0.01916520316627903,0.06656948453607363,-0.022203720508875723,0.00012117812893483501,0.011975791108728685,0.012341194994229907,0.04719353378787956,-0.007245772828781225,0.0016783938947727587,0.005748727794372721,-0.003920204177964582,0.029970207453495577,-0.010286541451694952,3.36357513506481e-05,0.005321650649951068,0.017429304483198137,0.04473034512688539,-0.009042723607411908,0.0012739403036867273,0.006375360471380834,-0.00227918526481857,0.01661784487246682,-0.005589641141474568,9.133359896823506e-05,0.024697859754158235,0.023392052583330967,0.03710786039490735,0.006081975660105688,0.00014878111317670223,0.01795844447202339,-0.016653665200968382,0.024451984211131015,-0.00012525334487238515,0.00039093057351362976,0.007790046519295915,0.026836472651971255,0.08823473735565279,-0.07834081725064279,0.0023574157246352223,0.008631743048119625,0.021147553677302994,0.0787621162921963,0.008333064177461477,8.614560581793314e-05,0.01166190062836691,0.020402653527943435,0.028030549854373213,-0.03208330745736135,0.001809390181365074,0.005876421344175938,-0.016209781780581273,0.05416315733758061,0.02833480097446821,0.00011857393484421592,0.0019165591282709086,0.018257231271867524,0.04636493810101815,0.0060922990005179475,0.00015962672693833768,0.02108018595940393,-0.019080022034904567,0.08726894701268703,0.03490912620484351,5.336211828082399e-05,0.015613207290976589,0.009979789720296743,0.026165060266969728,-0.12266623242269709,0.003615078307221601,0.008241940842667701,0.04186757273298379,0.2174392740705757,0.03547651960549314,9.578122003801402e-05,0.000922211010247072,0.01539221097010701,0.09843487860126567,0.010653107902142496,0.00011339992874840436,0.010212654046376987,0.00880663842168687,0.05817693778711205,0.01674174605731528,7.159917307412685e-05,0.005273479193219029,-0.007386155231947957,0.031105465726531664,-0.0011873783108262695,5.9680041643277915e-05,0.016890762689255417,-0.007772338028677913,0.0165474161216656,-0.14442016916979722,0.00022900812241358854,0.013417473177089466,-0.002510544764028872,0.0108965076730704,-0.04688165829731403,5.729213627936058e-05,0.005068598518799569,-0.007285475293759557,0.07301248574597928,0.0006134966169530595,2.5744949292420445e-05,0.00201451930517421,-0.005759794248797717,0.013771938083139769,-0.020447038365092325,0.0001461910794552082,0.011407318371144396,0.01581750540381075,0.0752186629143047,0.0016491937325525882,0.0003314670424506051,0.022465640685800783,0.03248777765519172,0.1770158331574688,-0.1644650451528475,0.00010511862867899297,0.0075545924175599135,0.008832534635734742 +2018-10-16,0.025913248159830194,0.16251456277951332,0.014841067852550545,0.00016862274475193522,0.011262882914077742,0.09247941970019777,0.31441059617923783,0.19707751132773624,7.057622880873637e-05,0.013753086934728506,-0.01573496470288224,0.05827037115788528,-0.016036194307662916,0.0001249151728209209,0.014427892709551688,0.012294454055540565,0.010404466802902104,0.006933877739622275,0.00039880195238063226,0.00011611532533277891,0.011274567081300455,0.03343002796597509,-0.0153496123319564,0.00017646594546040403,0.01283823250036829,-0.005362831198238203,0.015062588985547033,-0.06421015967853798,7.773941021059039e-05,0.013115348636329597,-0.023546347799676893,0.10954129212788309,-0.019769531910977644,6.307184718432469e-05,0.014971273935223867,-0.004181493068533021,0.029388991978077254,-0.004682817939562613,4.8791627571069765e-05,0.010659680257711525,-0.016482592673172165,0.012464967387830594,-0.045268767986747664,0.001019715841645145,0.0032254390839657173,0.001389690879786628,0.0038755751198301155,-0.019737923478183678,0.00012538452370797665,0.010260784626540148,0.019504383297637096,0.01527159636319393,-0.07978950575087716,0.0006242695392956365,0.0017629244177282603,0.012346720437971881,0.17903623959902956,-0.014057194861923937,2.0551023533634667e-05,0.007184370946408593,0.0050439619237880595,0.014477718018560692,-0.002882878419861023,0.00010349579947536298,0.015291813321655755,-0.019887634338905412,0.11328236501866973,0.058672232142907406,4.941771237177473e-05,0.001636989158234308,0.0005161612062961284,0.0004656219465721832,-0.003466241457340669,0.002162095590922476,0.002397696986844088,-0.013019172552679146,0.07919972536409675,-0.0017569700687106336,0.00013527321603253994,0.01377318093033377,-0.042946049034987985,0.23699649427525277,-0.017683847569629835,0.0002806012011284616,0.0038887815846319375,-0.017167589966549445,0.10042085187773753,0.022628495085891338,4.815555436114021e-05,0.002863179929880765,0.018493766740016186,0.10513233929406811,-0.012027725486373826,0.0002899184506410779,0.0038654309375788466,-0.04602208257198548,0.5886597277987278,-0.033274186135655304,3.244383419634345e-05,0.0124460184372012,-0.004008764101640094,0.04198535395786514,-0.17891613668142006,3.1900272349279945e-05,0.0012179131929351116,0.015498465218551197,0.04428161368051556,-0.2780233130695071,0.00011274259066026408,0.008507061712031744,-0.03513701043954221,0.25073891339399257,-0.06260335671326012,3.236945924776896e-05,0.02151093126045696,0.01733417732024389,0.055460882610867755,0.03953245987095688,6.92937141950061e-05,0.009785632596981422,0.005540177831179036,0.020927466533252274,-0.034138855313084866,0.00012104744991098554,0.008916874452029423,-0.012130770333115017,0.011999460272925184,-0.05938611764914997,0.0005778328521748758,0.005184947745988798,-0.01765482705402124,0.06264276167791347,-0.008178372474186665,0.00011862564336144491,0.01940251399687617,-0.04667112279094993,0.18482090451821154,0.04631421865996544,0.0016207511274504373,0.004555670252527443,0.025006545367020506,0.21815798699712707,0.03274495004108597,2.947574401192828e-05,0.00029703278562883545,-0.011575506695972558,0.032689886111620235,-0.00030420266328904337,0.0011577049034831289,0.008213518555874382,-0.048581669491673966,0.3110343029935445,0.14790578809438978,0.00010401351899168584,0.012001477831817688,-0.010101348674156924,0.015380740952384061,0.007622677328090245,0.0001550056364869365,0.004582423436710097,-0.0184396290099443,0.02539994391825534,-0.0030583061622275415,0.00041669984148375017,0.007867304239388279,-0.009482644728891593,0.03787667988594369,0.0034824387805394157,0.00194047439936862,0.02161611609135709,0.011693528412170112,0.039798203272117416,-0.010661530112001688,9.426977700123232e-05,0.013996490921206563,-0.004813020117069255,0.006757949219880768,-0.034365872626173626,0.0017704348286654236,0.001577888437622984,0.024312758923163764,0.08473183292392317,0.00545252628615458,0.00011368513428393489,0.005263730790996963,0.03480814174369367,0.0819854221132974,-0.009523469362599712,0.0001721093949551365,0.01177035624804377,-0.03949646363633837,0.17525189676270816,0.0985384472783895,5.5005917137270906e-05,0.015931034043109235,0.050920734282097486,0.15697994069134538,0.027824892015358753,0.0030744579315731685,0.017132328412797715,0.034629329469137764,0.17658471361447603,0.01852296104868733,9.755096001113442e-05,0.0011809950464626347,-0.004220911552829994,0.020044138016206775,0.00024308386388456052,0.00015271428098687139,0.005220497649578224,0.024023670675710384,0.13122747662687298,0.1548718928970617,8.658911216368046e-05,0.003294699973332133,-0.030084139303250136,0.1364132860529369,-0.060762227478843654,5.5427886008791396e-05,0.008478105406602661,-0.039290751596209345,0.07641859445481564,0.007922502147401823,0.00025068057664852725,0.005919686419773567,0.018716706412726387,0.07914756574753161,0.002724708619594383,5.880391507652407e-05,0.0005333940109659052,0.011649583421356224,0.11367705673642882,-0.05132671630205038,2.6440451112605917e-05,0.005339418203045835,-0.002849946889709756,0.00962191401013456,-0.0003482332964876301,0.00010353430200475065,0.014088961388216342,0.033065432122324,0.1271955975778336,-0.04143152193356328,0.00040976050243394103,0.012551685250492845,0.04806306000645945,0.22141284467866046,0.06008304680958474,0.0001243312791017546,0.021208720404220553,5.5399010102462516e-05 +2018-10-17,-0.02199672748066965,0.11702989940753245,0.0033797363130937093,0.0001987686218206457,0.006398865959632948,-0.06545865915354417,0.24636475388170578,0.049948972831796404,6.37527695162538e-05,0.0181176073146712,0.019898948119567897,0.061554596096890644,-0.017715906258677822,0.00014954325806398032,0.007106863396410354,-0.0002528676316094964,0.0002535262486071069,-0.045753522976341804,0.00033661864458609436,0.007106345372674568,0.030253796014833877,0.06763996393485139,0.03725361028822367,0.00023403148011621715,0.002446551696225115,-0.01676963845405943,0.053621885905848606,0.04772266255249686,6.828547819751127e-05,0.007141995735036666,-0.043259675623562574,0.16575256761262833,0.007334698965278676,7.657955691164844e-05,0.015714453362856526,0.016740198625961763,0.13944675408886376,-0.017223685179012335,4.116715091978116e-05,0.005093021529995481,0.03635191576719364,0.026848865511372267,0.21111897856224227,0.0010441097482194355,0.009121270828072193,-0.045166980711036975,0.08995629465925024,0.038751063272799875,0.00017557043622091838,0.0195567787881355,0.021529951714980972,0.01811742616699361,0.07738563362321392,0.0005808592556178265,0.01655222974009956,0.0011925530267745473,0.014189309065853098,-0.027756623776433505,2.5046049812988414e-05,0.0020028708482035563,0.002936473920828047,0.007895585291993591,-0.0021582858053121276,0.00011048233814639049,0.01655800640867019,0.00983901729508409,0.05064177207809639,0.011887788912974267,5.468958754121416e-05,0.0029015565878350367,0.009411283400032475,0.00826278361333358,-0.00039376508409173647,0.002221495533800765,0.01799432003361959,-0.06802027643921749,0.4296235096208769,0.059719780115919656,0.00013028741331113484,0.027489651200431932,-0.002599933596431758,0.011889919300668692,-0.05820695051829952,0.00033860360762990205,0.0017468219129763002,0.013863739370033715,0.08365628442831634,-0.019615096278907798,4.668128148508328e-05,0.012804648863593017,-0.002510813655113939,0.013663288597853145,-0.10871709995174415,0.0003028628798931091,0.009978669222935143,-0.013216835987347223,0.1584299748167256,-0.015419917999251102,3.461946712686216e-05,0.035324429237991645,-0.005664850870074776,0.05685899758140974,-0.030737602495972655,3.328671913513794e-05,0.00868057515955987,0.04224298755935094,0.12061573909478752,0.07410879846432776,0.00011281670173758941,0.00920841244174726,0.07602418099157564,0.47261983136146796,-0.004601382431707317,3.715627644425685e-05,0.016795406053401137,0.014315240161404215,0.04103496990567323,0.027448748188774977,7.734315812044075e-05,0.011551572869127048,-0.011898371937089546,0.04072156788575739,0.028993586458903705,0.00013360159565661446,0.009857038647080176,0.05395315434961573,0.04700955803648014,0.08910839511340879,0.0006560036168397593,0.0048771815598941505,-0.034434059852387705,0.13453875342538485,0.021721692580775713,0.00010772756406510347,0.005836789238159092,0.020045398793909094,0.0660955930716137,0.00035246157062990865,0.0019465312108131337,0.020281982811914748,0.014567151412017669,0.1442545195826974,0.012773068599521667,2.5967336203934227e-05,0.015109907602709345,-0.013460375449406186,0.04079044405101908,0.0011088710952432811,0.0010788722197403555,0.007816512950166315,-0.015932696218307545,0.13431270337330523,0.007939701245345517,7.899467715818407e-05,0.0011614461918780152,-0.014541059790025427,0.017526281889054,0.014285901333075375,0.00019581756867559724,0.009442497470857035,-0.013374265075502559,0.016195440284327962,-0.07667668775272751,0.0004740029900969021,0.015274884555925855,0.017928434534050037,0.060819317528966126,0.00976734250764821,0.0022848156686561026,0.012393065488028016,5.685337722141049e-05,0.00023312789710331922,-0.042403454918048714,7.82442428027459e-05,0.007646173112722303,0.0036857592305613905,0.00535242894366622,-0.08559064084190439,0.001711800871477035,0.011510534669893518,0.02303594813813691,0.0826296753493536,-0.0007583000524557895,0.00011045517859259861,0.01202029438535757,-0.03749784886398045,0.1009034413305824,0.018860944040279333,0.00015064709182127726,0.0022081037777809355,-0.02180585595688334,0.10551069965658136,0.01088691010496837,5.044179828236036e-05,0.014910095029137932,0.08347876367162195,0.2764415803058934,0.13233129965377907,0.0028621388548696635,0.013655519958911816,-0.01911870583217786,0.10897668806076727,0.01629617841291055,8.72700966064182e-05,0.016338321046525023,0.006760929658746877,0.036674858012004485,-0.007316577100080333,0.00013368994997779458,0.006915588449517314,0.0017559183775176142,0.008331954842923794,0.01444491326421921,9.967956072011225e-05,0.003187320691910766,0.0017843592000490358,0.009106427009072464,0.004463229660616277,4.924721418407991e-05,0.0032756782437772455,-0.03957624866413589,0.07629370118826935,-0.001255479791621454,0.00025291543599818215,0.0064529984255769016,-0.007311829412301964,0.025066886152216843,0.025726157104131727,7.253373443556943e-05,0.002633370904900593,0.02170880619330373,0.24149795160851437,0.0435419824988765,2.319283164697043e-05,0.0003196514709324598,-0.021299861137839073,0.06614182127304093,0.0005801866423294806,0.00011256660998564444,0.006377088048040092,0.0073155463207406485,0.030310769679636064,-0.13407513327481518,0.00038043263988913316,0.007416589901219465,-0.03081101897221953,0.16246164068148322,0.0111720386223883,0.00010862430795646424,0.0029066775918629483,-0.0006978964232717429 +2018-10-18,0.008346551941444198,0.06190718151558608,-0.0004194227803789976,0.00014257804393403572,0.01148626060965539,0.020076622938552044,0.052399813207127874,0.00373481288742203,9.193300377625327e-05,0.0030366047854382665,-0.05480758446322061,0.19975394024531723,0.0617007934655541,0.00012692363794878503,0.01550445617144278,0.015130827329407326,0.014610943237722841,-0.0038379998466351027,0.0003495041025480029,0.0032509829378696746,-0.0074020109821757015,0.015041157889393282,0.0016037567443878949,0.00025749347439187753,0.005423344626774674,-0.01144569689722443,0.030484526241199274,-0.041744101801049316,8.198030516008004e-05,0.008051060007373226,0.004025736487995106,0.015887072645974346,-0.05213938023479044,7.43517710319386e-05,0.005547902804719484,-0.0488320993217875,0.3965255616995519,0.05727316660443039,4.2231141527032514e-05,0.004470116892724253,0.02540153253370052,0.018507309753632867,0.062850121842184,0.001058428224222718,0.003229980675304424,0.07651441782628257,0.18237767215847445,0.16459976286070793,0.00014670114261091543,0.001830607413698157,-0.002475910002831122,0.0018960485114764823,-0.005609011884611327,0.0006382778417242128,0.004355576423495243,0.0026040204902043076,0.036223559229168006,-0.0926004359312089,2.1422791746142395e-05,0.0010219102583308877,-0.018112225600718363,0.043139865520225806,0.019178421086564694,0.0001247222881803952,0.005768600775199505,0.022071690294610896,0.12468825517704368,0.004455508613258643,4.9827817396671354e-05,0.004780716652911866,0.003985412597502747,0.00330940779340547,0.0013776947929075008,0.0023487996661488795,0.008011819510902416,0.018787515699842425,0.12274462443002271,-0.0043294339727926725,0.00012595603557171898,0.013619169613738947,-0.0553937016673413,0.3158371920426969,0.060621384601454845,0.00027158473117764583,0.008035434585749476,-0.0434915539825353,0.2375815872398954,0.1125006362226915,5.1564772037664704e-05,0.017195342540012946,-0.02008029810950026,0.10282687192256491,-0.011237459338108576,0.0003218476474820338,0.018120085153026842,0.030774075663447725,0.5200024774920938,0.0030572959385315374,2.455895230708119e-05,0.005078829149294207,0.005184388699150944,0.05555889453423712,0.007863238802429506,3.1176378717341525e-05,0.00036037398414047743,0.026569530167295016,0.07661621684731061,0.008370074993358553,0.00011170842457579719,0.005963093395582001,-0.02860223342356219,0.23489304714664608,0.0023876532395382005,2.8126918895358636e-05,0.019216085021554308,-0.0007506042559378966,0.002016810033787022,-0.0010142841133722468,8.25131964684992e-05,0.010687791685699045,0.000698069732332574,0.0028417823188737284,-0.016339046973993555,0.00011231987089527263,0.011290263422653952,0.06333550297556323,0.06309981401380602,0.09033715140613119,0.0005737130200687188,0.02117887062043285,0.015970222515039236,0.0560551067530614,0.04076647260751037,0.00011991728640287074,0.00040528302212714624,-0.029015267559138032,0.11399512385719418,-0.011076783996654124,0.0016336517397528472,0.02804747515283184,0.0393546696384566,0.36262447074653525,0.05335097096576499,2.7907527309933303e-05,0.011890963908333142,0.022938634039057666,0.06945535917581333,-0.012993141973460125,0.0010797744852304545,0.006414074841438481,-0.0224932749042891,0.17175477624845328,0.01498269228634281,8.721064757430084e-05,0.007851435476870222,-0.012455491375670686,0.021067086874278627,0.007495930356102543,0.00013954097895940191,0.024042131715978837,0.01474421468702691,0.01699118569077124,-0.20207366896369422,0.0004980831770967723,0.011430920972488937,-0.019194828145323122,0.08963736408950974,-0.004179458977646464,0.0016597607580761268,0.012487354612171635,0.015224272566499584,0.05918556347014742,-0.02025121599173953,8.252986495929437e-05,0.01667499474943146,-0.0011173880465914525,0.0015914953625137118,0.004310781105746261,0.0017453230947629497,0.00888272064055595,-0.04126971346624528,0.13247508432408384,0.1076658182038922,0.00012342788451185976,0.017756963711747203,-0.018273434411059004,0.05060316968350718,0.01589033193941246,0.00014638710893575993,0.020380505015128676,0.03198131220987622,0.1383129628825834,-0.04701383920942311,5.643484277255258e-05,0.014087932302676723,0.022389795614313826,0.07053220893268809,0.0009963187119666616,0.0030087125790105532,0.022838230036363583,0.005790441278259658,0.027401293150150826,-0.00017818529014313462,0.00010511898854497269,0.01837642391879129,-0.008353235144099075,0.045427874008711275,0.004477798879425206,0.00013335001803640135,0.024319071138008058,0.03384102781081025,0.17397771376196897,0.08795854125644072,9.200228718698875e-05,0.01880524720590738,-0.03193458546713037,0.1568140724141852,-0.02478428523694421,5.1182753314289426e-05,0.005747916098449534,-0.0008542934248532225,0.001777314988579668,0.002219897166065,0.00023435382942315307,0.004750278815946971,-0.000568749943923327,0.0019206849593120577,0.009826806511635946,7.36342058447149e-05,0.00687944884897309,-0.029113317197256478,0.23713856638060316,0.026576110285405775,3.167530370416434e-05,0.017147093671240687,0.01027276444597467,0.030631319860723275,0.013094600592241382,0.00011722779172884567,0.008279823948953605,0.0076520747828155156,0.028536756590045145,-0.003031825273150498,0.00042267111133246333,0.009911207790318628,-0.0002547338815020076,0.00103800887419694,-0.009247500228267293,0.0001405586064568934,0.01567594241472813,-0.00013767643532431228 +2018-10-19,-0.009139103076370357,0.06616091042152838,0.003569796138424737,0.00014607930256560532,0.0005882721694217162,-0.052059821996412646,0.19534417646185925,0.024033930086289314,6.394590478958493e-05,0.02114931805200738,0.00928373697742143,0.0271683254497021,-0.04232167217149083,0.0001580728054735183,0.00708288884350943,0.0010438549272575202,0.0010996405442780391,-0.010617164438157925,0.0003203739956616484,0.0015909330274858345,0.01486033943736494,0.032231284208055516,-0.0051289140858032855,0.00024123976250197158,0.010925405816764516,-0.013617088414945118,0.036341020652284624,-0.0686730774339686,8.181517744799006e-05,0.011038085702295959,-0.016527367752014202,0.06829797781752493,0.0006953410254197542,7.100447174780953e-05,0.005439786645732355,-0.004852739417004935,0.033584959163549546,-0.01629322341466513,4.954966938687565e-05,0.023605349136462533,0.02262700822677895,0.018013628956932197,0.029424593176028222,0.0009686585327401402,0.01524183525292171,-0.013105774600752323,0.04200693195627591,-0.004268923034614992,0.00010909469126165117,0.008608276587462943,0.032593533522547305,0.0208483680737615,0.11400425077487215,0.000764159009913681,0.0036591029983040107,-0.011420656873773354,0.14127291257387153,0.08590774671546388,2.4091008125718736e-05,0.0011657204350842474,0.029449687370461965,0.08201166109844088,-0.04190692527151221,0.00010667339526465706,0.03421807592515475,-0.0064383513726153,0.03238647730002887,0.009143502975622596,5.595936540929425e-05,0.0036108128072405397,0.001131134807984766,0.001003720356860891,0.001735158644746161,0.0021979844074424227,0.007892605427752022,-0.006014956953218465,0.036482360564027594,-0.043909559552711835,0.00013567558415064073,0.011042509698476966,0.0172479967146348,0.10191753407461879,-0.02568591464691453,0.0002620583398810335,0.033271561346009955,-0.02716941131000336,0.17131724286380254,0.01608200441347997,4.467248463522463e-05,0.006205437757118858,-0.014666950427097437,0.07233387050137825,-0.16332385108941055,0.0003341834415575862,0.005693657258825057,0.015038689786081222,0.23235860330252683,0.0007189277421160679,2.6858482712869784e-05,0.01572714116821956,-0.02223427603831117,0.24229712965306294,0.033209797110577734,3.065889039571249e-05,0.002685498687440058,-0.005912494386858954,0.016402985740693755,-0.06890373009227474,0.00011611025795153846,0.010415851227699576,0.0009363630897046292,0.005630962969913505,-0.08623638087030719,3.8410856446118546e-05,0.0043214478467060655,-0.023903591225427442,0.07699852637739936,0.04455104620118597,6.882688619963404e-05,0.0017932304135229449,-0.006517801401007307,0.02622287170127406,-0.09072243908095334,0.00011365000750979306,0.0008722422890116187,-0.014899139564098302,0.01632746825994011,0.005170153750002899,0.0005215763628594709,0.013606874711279183,0.010668527809124724,0.03379563126358532,0.05638706239843124,0.00013287091927379383,0.0003889365253762079,0.000330631645056412,0.000985443168606439,-0.002673721276854897,0.002153436200183432,0.0018842075988919288,-0.0100716963867411,0.08879848384625787,-0.022765704871571427,2.9166161082148415e-05,0.01130015562647904,0.021522868936523634,0.06273710579469942,0.014347055038883371,0.0011216231152983377,0.020027698827024286,0.02746839865287301,0.20000914562079203,0.04978006950945863,9.145535298754303e-05,0.011828243877044078,0.018224205272974147,0.030203773668303662,-0.006150856911696171,0.00014240747220938254,0.007583494964503829,-0.02120204538298515,0.029247666710548605,0.043943294898956625,0.00041609303720221063,0.010132763755612433,-0.02470136744019935,0.08829303775208568,-0.02202065425084175,0.0021684273584647493,0.022952086655333118,-0.012959815225072733,0.04447730607708206,0.007926385707701605,9.34868884353318e-05,0.0051466242553870785,0.05790344767062123,0.086602677216416,0.037581085557316776,0.0016620737749461318,0.015913727466614066,0.0055982087285929814,0.014716251474456047,-0.0010995473750718794,0.00015071897190560115,0.006645911021948641,0.0037197692761273735,0.009426896432401518,-0.03425593656645185,0.00015995861800954133,0.009838736560951241,0.013726091173778035,0.058950886531559554,-0.008199479090964138,5.682905885121984e-05,0.024378829650021586,-0.0046779611871877605,0.017888283829816404,-0.04374357895947647,0.0024785974296870567,0.00290713684275943,-0.021948234628431595,0.10225994872929364,0.004730575204044291,0.00010676639877806775,0.00293820571807869,0.003734092191116113,0.021442004633381098,-0.08985141385526577,0.00012629333593403274,0.003700093723903426,-0.0009738475013299246,0.006104378720483163,-0.03144410014043135,7.545676520530873e-05,0.0035084270154009467,0.013120326008287237,0.06630329806947025,-0.04256950134712054,4.973440075605758e-05,0.011697246316602485,0.007923963659722665,0.014238102115486142,-0.008618480400883389,0.000271343714479562,0.0017043086577359118,-0.041992148131742506,0.1679900857259944,0.3691995509996811,6.215825530806344e-05,0.00017372419466800816,-0.006103193071415021,0.0715675314192194,-0.011745500543913124,2.200251658293217e-05,0.005556174495169805,-0.003995182763563457,0.011373446108281095,-0.007905991336729446,0.00012278732604248968,0.017441522141586636,-0.012338878626021628,0.043168171321513474,0.03324104085858043,0.0004505469059087208,0.0039973657908243705,0.0700008673170883,0.32671705816914914,0.037180288766717945,0.00012271662624555884,0.012315373211981747,0.00022739085702726624 +2018-10-22,-0.006296257983302889,0.04467235687051038,0.00014364415282305766,0.00014904940010080123,0.014968893092422702,0.012337004817621133,0.04182873440495564,0.006773360916965373,7.076940372090312e-05,0.016469631695185012,-0.012735092790988757,0.04026919515328593,-0.005107952017093869,0.00014629395080197259,0.010337038069193302,0.0004903919317593142,0.0005255391086092955,-0.03337699847421109,0.0003149242708394003,0.010181410268714896,0.00666432316758023,0.01566007913355689,-3.048453702470338e-05,0.0002226690564355239,0.004127934940770379,-0.0011278386010935748,0.0032922707443648128,-0.019273530828498232,7.479940643434888e-05,0.002321206808604292,-0.0005267536068962285,0.001679046713331189,-0.0003598797814911538,9.205228943464214e-05,0.011131446713537123,0.0012702462120462023,0.010725271102455969,-0.018731381022294633,4.06142319093979e-05,0.02451204879808148,-0.022474798045219752,0.02041463977396032,0.030456473938436382,0.0008489827449383912,0.002132070700448181,-0.036433658190140175,0.08454047338153657,0.012505669854104203,0.00015069539828220022,0.00016886633980613824,0.013348861565608187,0.010303995743211518,-0.0072203611588371385,0.0006332320923339716,0.0034701113942800284,0.01235067793668571,0.18957777646761229,0.013608250236945929,1.9414497808177717e-05,0.0013604260045964195,0.06403611885187666,0.2038098860975995,0.07195847739712538,9.333634574078422e-05,0.005185651406626509,-0.00807441281501113,0.042925206219264635,-0.03155489215845954,5.294931884547031e-05,0.0006642981057449721,0.0021719758350449768,0.0018370465342635407,0.0016122616114281133,0.0023059920413120243,3.061314820843432e-05,0.009474776782926951,0.05861396862081477,-0.006261770630942153,0.00013302092621361462,0.016621725107740792,0.06553515724840304,0.3653160139730732,0.05364295443970087,0.0002777882471805721,0.01099119454605919,-0.01956562164871381,0.11371292157565557,-0.03676194723476311,4.8466849404749655e-05,0.024889214832390788,0.00831555360515489,0.04579143710855647,-0.024694642562092937,0.0002992910303860367,0.004448434273787259,-0.07589071760145313,1.0081271904224662,0.01683377313070821,3.1239463179128925e-05,0.032073407713944235,-0.01582215150470489,0.18296624470812425,0.0014312386017954876,2.8891911332056957e-05,0.015076440782589679,0.012836037421991563,0.03945090555487633,-0.002659924296929494,0.0001048085599571787,0.0022435079826536117,-0.07233164716712122,0.6035771193536018,0.011761419364168668,2.768139440655564e-05,0.032198094348364764,-0.007235328936406414,0.022164448916263183,-0.006808864605200729,7.237335816542617e-05,0.012679999228684125,0.009004225303591256,0.03639214512398741,0.005286949177805231,0.000113132476299937,0.00016809185546259376,0.007918639971770523,0.007987515424406243,-0.0045761307616241495,0.0005666494210535027,0.01593929274946652,-0.011251748807278965,0.04238420347133168,-0.0068460466239591575,0.00011173828755615587,0.009563881444276612,-0.028542129444334683,0.10356798108347494,-0.03464574964182163,0.0017688053198864685,0.007088534132285338,0.018599544064593826,0.1648531702033652,-0.006895049563295546,2.901263607648573e-05,0.023806696403345803,0.0003009364111466908,0.0010740959607064345,0.0003322250284776515,0.0009160157138200637,0.015117644916147994,0.010270139756103793,0.0850393918068224,-0.045932153548966424,8.04232929215087e-05,0.005956939611925473,-0.017162833427992727,0.024978760254754498,-0.031948612699215194,0.0001621673777103297,0.014055831821677349,-0.02220573301709635,0.034197854538470365,0.040106709753027485,0.0003727092463169035,0.019074660875068632,0.0069405865105519994,0.02862674099576731,-0.004118486857661823,0.001879206925546395,0.012956439143768385,-3.7160344918464467e-05,0.00011832906393974674,-0.005879937053922454,0.00010075780035726629,0.002586207384847133,0.01469807425725341,0.021716956548972856,-0.02890210243340734,0.0016824364414542135,0.007453639881877226,0.014097728527504365,0.04819287498858882,0.0014361348514097246,0.0001158997087336208,0.03009132958005643,-0.03991064819024283,0.09815337886925822,0.0672050025559826,0.00016483290126350814,0.03535079335721425,-0.012828880442179036,0.05285680145709329,0.013136509177093886,5.923819320366066e-05,0.014170745407454756,-0.03451145421492469,0.12031843326613391,-0.002093066999116745,0.002718624018447005,0.002631416644407306,0.01655215175316566,0.08791876247366208,-0.015475803800503809,9.365122524575918e-05,0.001223579590670951,-0.016573275535806706,0.0988221786216384,-0.004605440953429492,0.00012162271977050257,0.0068769307435471785,-0.027746661305400506,0.16989039200455874,0.027819887428517,7.724859926774167e-05,0.01156763042916793,-0.009421746815586333,0.049188599000637635,-0.004609549844597963,4.8140918419434426e-05,0.003024763014087657,0.03347070135392225,0.06153912258708234,0.016480563770696736,0.0002651813071174465,0.008825393225715156,-0.02540587907652656,0.09691467106532584,0.07786741014200152,6.518671208589311e-05,0.011121135504802423,-0.03435184599783237,0.356287798111801,0.02155651208965631,2.4875992453056197e-05,0.004677838914534855,-8.864158984926991e-06,2.915965385915538e-05,-0.0015180031648440223,0.00010625861159804173,0.006565319275480193,0.000299146848047858,0.0012576024900227394,0.0023002906944387465,0.00037494624931571924,0.0019641669840405893,0.027825426234560243,0.14358769642405306,0.009578387764860335,0.00011099320534685737,0.0017073042021951608,-0.003464117575683186 +2018-10-23,0.00458473457392391,0.03313340320740231,-0.07817745842227143,0.0001463304594820802,0.0019294535569641263,-0.0059177081794759,0.019255383424740466,-0.0009554429436582944,7.374148863481653e-05,0.02463451358482989,0.03329627114947532,0.12431369477317952,0.03563896416473561,0.00012390071985425683,0.005910818167957604,-0.009936833292050187,0.011085060113251062,-0.05116559396984115,0.0003025365203639774,0.011717560613382996,-0.015438240211382615,0.035025241585017464,0.02877462421537528,0.00023062927133409586,0.01345097909061603,-0.018129935624363266,0.058598368559894976,-0.07080403384380145,6.755499666165172e-05,0.003245400901067015,-0.08560334671685055,0.2860037447534145,0.22307325827837368,8.782312362278138e-05,0.03866136434327006,-0.023731167591947946,0.18367685793331245,-0.09046245957491611,4.430607510291698e-05,0.004024531269302149,-0.0033603525745079586,0.0025512896232311707,-2.289111575019106e-05,0.0010157103332677651,0.0165138899986771,0.01661333536784219,0.04118248235977621,-0.01866447732619878,0.00014106075287000078,0.022726707529749392,-0.016101643566672954,0.01258510457317068,0.02733106617500753,0.0006253710004085595,0.013266724631670463,0.021076085345377454,0.2872466409434103,0.05082798190566646,2.1865417751023744e-05,0.0016132150258298319,-0.035924749753633085,0.1153898619207115,-0.026491817599264646,9.248624257539347e-05,0.020023738630104378,0.0011916548805745474,0.006687182325544553,-0.037871471731482365,5.0161342352381486e-05,0.003927439431359666,0.028181714662144485,0.02524410708037514,-0.17739546268698572,0.0021773606616662037,0.0024657653021474477,0.001954176737296551,0.01259248731790902,-0.08313713311989199,0.00012770397767762607,0.0004097544338450476,0.037330454632435145,0.17697761374608734,0.006585168548371614,0.0003266278227158085,0.0021454134662435356,0.020726371266296707,0.12911721164945425,-0.009239430742951499,4.5216827757923066e-05,0.01790123947864012,-0.03717482597567817,0.20753659889108986,0.07608675462638805,0.00029521679182778926,0.0031878804016981267,-0.004888029805760303,0.0763775582928548,-0.04971823414890672,2.6558179775568485e-05,0.010532492469352929,0.005249049331563633,0.048338501480816136,-0.042072626359094104,3.6280158900452175e-05,0.0014087373180676497,0.051134485467152956,0.1320491498894702,0.10213996384390908,0.00012473864911746594,0.0009413595355540403,0.08917914914061371,0.6761901461554293,0.04596826351245919,3.0463995519868004e-05,0.017106792684890224,0.025900858881020568,0.06898773935684,0.07099452257709749,8.323761618252772e-05,0.011149027165126658,-0.002663789245973791,0.010570126427783913,-0.008381138274743025,0.00011523071987066715,0.001570997105756661,0.026996925014573223,0.023450297072094815,0.0069600926082149465,0.0006580236651427549,0.01154560051522032,-0.009322343043030347,0.033152947850001065,-0.023400461227544408,0.0001183556346689475,0.015210030572717206,-0.02545095972661458,0.10283347924957521,0.010953468997367452,0.001588505813361179,0.006356185153518181,-0.028797758138198418,0.22083729263057586,0.01873936447789078,3.35326951676549e-05,0.013465576557661446,-0.020027434862277003,0.055686539812139654,-0.029439323607711194,0.0011758349495338003,0.00282360161085694,-0.011856279913888317,0.08419332331313409,0.0028915408469151606,9.377702148682924e-05,0.02582976031106932,0.013476446624162933,0.01633521888552706,-0.055088217875280426,0.0001947133925096318,0.008466981337361734,-0.017336886518969023,0.025042399691534413,0.015016826696923113,0.00039737366089879356,0.004373866584086564,-0.01748380519731924,0.06113246249856003,-0.07168429593647468,0.002216738223971671,0.0031026493547572018,0.03564666860372106,0.11988066067729006,0.050961035635667694,9.540259575196324e-05,0.0008959741593075094,0.12306206636280012,0.15954886284727543,0.20857115186394776,0.0019173777430196433,5.620350221151901e-06,-0.0002846295743169173,0.0009099001913706041,0.0019496751666880105,0.00012393737782023163,0.01539327103965611,-0.021657964435700512,0.05531833752857653,0.01912652766599203,0.0001587116813455482,0.020313772391870058,-0.033052601751034534,0.15946369907308128,0.04692456351564492,5.05891918489125e-05,0.009320488632664907,0.020504722703973934,0.059119303462329846,0.00198967593387085,0.003287325055082332,0.008546725585017134,-0.0038618588513106814,0.0162644449992158,-0.0012510809879615421,0.00011811300504806114,0.009174152673242552,-0.031761058144211624,0.14574685004009988,0.0781851312053512,0.0001580361968905909,0.0005619929165996746,-0.02079435574232122,0.10990610489015606,0.01246593883364396,8.948955563790182e-05,0.0120150785710391,0.031284594890173524,0.14591925714197174,0.07421200772336159,5.3884681531872856e-05,0.008184287665339159,-0.05078138140101149,0.10421391777677769,0.008220996927980638,0.00023757907218063893,0.041514196521259324,0.004039841039593851,0.018845941278981943,-0.0008822197603146536,5.3304125042186996e-05,0.0028544096287108278,-0.017463128330052854,0.18791756000992263,-0.015930372760549875,2.39765099088121e-05,0.005295000964588872,-0.006815144559704059,0.02079830288991696,-0.03201348251798293,0.00011453972556880859,0.003203815901662961,-0.020227737526688244,0.08056062745395941,0.07263404547765097,0.0003957787207651817,0.0014236175883207722,-0.021098112067959616,0.08128873776773386,0.010606819942148592,0.0001486568790586324,0.019739862379204633,0.00012531774705943884 +2018-10-24,0.014635351906411144,0.1100824406223339,-0.10214840762025713,0.00014059559166726052,0.0005740035691168862,0.003779698489272528,0.012396234341781486,-0.016535965479441684,7.316070906988462e-05,0.021528940369557978,-0.001885287558110566,0.0066270405994705945,-0.013865173223596199,0.00013159978346645289,0.010563019682683299,0.025349540715725198,0.02673369232175081,0.04060961739181913,0.0003200213891231163,0.0039876543876867275,0.030855208058245827,0.06834618935059208,-0.10115423681590992,0.0002362174332264084,0.006071180492818351,0.018689273866585,0.04925360135549323,0.019957336235880932,8.285165286744737e-05,0.005492062982288476,-0.028503155576884966,0.12616062552952442,0.005901790828204467,6.629167077594895e-05,0.0030187546559113858,0.008137768927693403,0.06735102746779842,-0.003490827946046566,4.1434274883643235e-05,0.019991589699837952,-0.020907987173965043,0.017689195376425722,-0.00834421706394276,0.0009114837552164671,0.008411131416881028,0.00032231838068901144,0.0008536119649979558,-0.062263968422751934,0.00013203420808574972,0.007637883908122865,-0.011247288386070505,0.008636405640648962,0.01130653881929509,0.0006365597238918945,0.002354177294766964,-0.02102040914749619,0.31582343518497624,0.1486135523888002,1.98344243892997e-05,0.005649149938371834,0.0012805486768270775,0.0037087204443821834,-0.0007602930744283811,0.00010257063194407663,0.006805650435932618,-0.0023544358534162103,0.014703882466993983,-0.03302773073441477,4.507302005314326e-05,0.001938537121864013,-0.02593850527978001,0.021289783435531007,0.0784058411591388,0.002376274868160529,0.005247005335823341,-0.030385879952774756,0.18503275173194714,-0.035909469257459935,0.00013513732500209776,0.010127779081143581,-0.01393467196923974,0.07151832117955345,-0.13779020580813367,0.0003017085865413288,0.014882668606716372,0.014769847141636615,0.10277701476428217,-0.012842354637582388,4.0480042289398266e-05,0.012236842996550479,0.03321098104010605,0.18386798071972266,-0.0062515696614968115,0.0002976887384096087,0.010638798571510306,-0.024182487444337156,0.34590725156511726,0.01203919556134856,2.9011590290412833e-05,0.008545532783682298,-0.017084703102389215,0.16626357449050586,-0.009042474865890354,3.4331440956145e-05,0.004073276465810533,0.019445503680629812,0.05388160479866521,-0.0167894111446967,0.0001162522669295614,0.008796789371974943,-0.022346675980974767,0.14130865558443734,0.003882776304353453,3.6528895714904496e-05,0.03375846632444134,-0.014707097406517993,0.041302625534544155,-0.035091517590056784,7.894537485740702e-05,0.00974709576936083,0.010940281040422337,0.03793654348425413,-0.016556140827276203,0.00013186189590420322,0.0013295291293390868,0.004922848828751743,0.004567465043474144,-0.001952992056540375,0.0006160512296826378,0.003233502340848099,0.027065977158145148,0.10642275361193099,0.11164944807344789,0.00010704717933838397,0.0008826207143364743,-0.029724610093835386,0.08702670767441092,0.0090490149841042,0.002192213194269633,0.0016509061329448372,0.021060935273458946,0.18887638645202381,0.0016478168074604744,2.867359741879973e-05,0.0302655998637854,0.04218561409378369,0.12199600689156019,-0.16763892993591864,0.0011305506641417567,0.016908004969216774,0.02320888899869016,0.21135058441597473,0.017347702662990704,7.312679534100413e-05,0.0024381967882432425,0.0027229703033660904,0.003940412776604239,-0.007178790550792248,0.00016309722530657585,0.012538451431620891,-0.00812790436315886,0.015778978150913992,-0.03128882277563601,0.0002956675236171792,0.0033233307990113937,0.05279563851018728,0.1963164298711766,0.12298590154302665,0.0020844512388033774,0.009930440149837957,0.055679143419192216,0.2017564297619962,0.10806641787190689,8.854326485219646e-05,0.015624970572843446,-0.0057587518387164985,0.0071996810870799685,-0.00145634954795449,0.0019883475391612965,0.015740063863230177,-0.0504120707486308,0.17781032170111952,0.07740426429503429,0.00011232944312890353,0.004098479547877535,0.0096828764284067,0.024416356089686963,-0.0031107853847348716,0.00016076219062648487,0.010511009622080774,-0.017422817143821556,0.08313904417717788,-0.0057434583275174774,5.114783746287307e-05,0.012148706789816624,0.02282322707326486,0.069979853909927,-0.02191802059163409,0.0030911642183675705,0.050005069162131974,-0.007447568525333951,0.03481095698387211,-0.014520003086392027,0.00010642388676476712,0.010335070395634544,-0.0567798649231962,0.3675947839404756,0.10188094955142109,0.0001120174802141028,0.0028652745774010754,-0.005135377955589994,0.02724366045339916,0.0002838983473400064,8.91570422153493e-05,0.005400389902106267,0.02633767246961428,0.12233583196474077,0.028470517670672484,5.410919933626357e-05,0.003908592091678699,-0.05498084753147501,0.10858094633881589,0.008862869512172702,0.00024688073510333795,0.023907709010079374,-0.001992733380171952,0.009160222248435995,0.002763216331737597,5.409505426559996e-05,0.015828866016919324,0.008014837532510116,0.07105730826690047,-0.019497774194825998,2.9101626118795e-05,0.005166442046152652,0.004608279342303838,0.0162357327254775,0.005150444592204644,9.921466453868083e-05,0.0035684261054663314,-0.011860229008741086,0.0491256824396013,0.018468362093840396,0.00038055063353456856,0.004302111289574484,-0.047414712680267944,0.22469868341349808,-0.1086332235834036,0.000120860501350444,0.05060084603181419,-0.001786829215982028 +2018-10-25,-0.007567966737303727,0.0686471414625712,-0.00012518460597331824,0.00011658517824404407,0.008845558328421524,-0.02622894782182365,0.0900484900437774,-0.004556404140509693,6.98899871909928e-05,0.03372108138352124,0.036229601527511965,0.12757352655083026,0.006915037093951072,0.00013137121027931786,0.002582843456259941,-0.026767024641520303,0.026571526213997082,0.03912836856668868,0.000339978501169563,0.00763919443578209,0.017525525571798435,0.036591349002740796,-0.010257588365047384,0.0002506053870251648,0.003193922020812006,0.0017331314125686645,0.004510142754303888,-0.03064812809983922,8.390502001251105e-05,0.004250049564698918,-0.001525481133833054,0.005537238900488054,-0.0006390681370830632,8.083574307421621e-05,0.03000889444627,0.018654385137565503,0.15461530333654855,-0.013431504419347203,4.137395870238149e-05,0.00878311398131537,0.03119672527710326,0.02461473889477896,0.08688833819024687,0.0009773690040320137,0.0023249348885474898,-0.022098974729567233,0.04619834654601907,0.006187401373842426,0.00016726596459589667,0.003404890550128057,0.002900771613564152,0.0023840976304135967,-0.02175608512111837,0.0005947218011067929,0.0013298823683623234,0.008251676708780372,0.09681604666064131,-0.08464334740044756,2.539906029211176e-05,0.009982789529690232,-0.02089176051750375,0.06594086274218632,-0.014678157766675588,9.411773168276432e-05,0.012734391926380881,-0.003231171192801369,0.01776351023587571,-0.02939104873838566,5.1202715727872865e-05,0.003170329741624586,-0.014883695411695689,0.014389925622411785,0.04516620213667977,0.0020173218718208,0.0028610609839979455,0.0025778776280958233,0.01951228649627603,-0.004050721195369082,0.00010871919830985701,0.015856224488837112,0.035259407037183284,0.1847185241501904,0.02095075449188493,0.0002955784628873938,0.0005457033700053419,0.048580324143012846,0.29758120010919875,0.017689282040398557,4.5984966381844026e-05,0.02953152766029727,0.049617053382061814,0.26343801506637243,0.0877964641546016,0.0003104125926684863,0.00663725561154234,-0.03865945408493646,0.4808914101939026,0.001772001435577017,3.336098989255134e-05,0.02960044527793355,-0.00037580295336209484,0.003761890309507081,-0.02635286603687004,3.337611397420946e-05,0.010968660409306722,-0.00478260903373449,0.010811777572072105,-0.06701594151292006,0.0001424920167155888,0.0036307377784959415,0.018935601768409995,0.1313264322496297,0.009240274971495608,3.330575949260108e-05,0.003516740352581099,0.008528558316652482,0.023193972169412644,9.871746580545035e-05,8.15225721890936e-05,0.007538304398811073,-0.003932112927528172,0.012412225930188732,-0.017332003116232505,0.0001448521365810019,0.007922831691810968,-0.012077737863522486,0.011092550736935162,-0.05433878767673326,0.0006223428966793195,0.02765956306646745,-0.022625721904675933,0.0777275342018285,-0.03575422166932392,0.00012252185497971122,0.0148879558340453,0.07191580129683212,0.2502633358097389,0.11688298414005714,0.0018443624403581898,0.009896658892071333,0.012841204228560183,0.1079341225367011,-0.01670310977081003,3.059350130963802e-05,0.0042112230013956154,0.008029821623514568,0.024096035573952904,-0.00013739010474760413,0.001089510881049751,0.005393951830779371,0.004246128511601696,0.030701386975628697,-0.0036353394202021288,9.210024419822093e-05,0.0038676811729047265,0.0053824073024594,0.008387984255743063,-0.0007936604044235738,0.00015144827764600503,0.009619264913656993,0.012623522378246587,0.01518361354596351,0.0013050400214201835,0.00047720977007128926,0.0034434946677680167,-0.03003597743407901,0.12107741240173873,0.030100594837085343,0.0019227772706521577,0.0007242980436528777,-0.005049480161775034,0.01585382409697516,-0.035811426856761634,0.0001021887308644127,0.002523577254594085,0.008718400412562185,0.009111939568604703,-0.0009213643011857361,0.0023785000896447864,0.018914231913446235,-0.001402339195140085,0.004195629134920484,-0.009203912917209582,0.00013242562051932617,0.01321070920860112,0.034763434845008205,0.08166715658236737,-0.00021833112905833964,0.00017255820801486625,0.017657078441803274,0.03288892425436049,0.12740836586439488,-0.11125369136030715,6.300364099380771e-05,0.0054011553247673445,-0.01728665697278342,0.052083287396430235,0.017827361385470183,0.003145796927135654,0.004045901577433269,-0.034959049789198386,0.16626907930978155,0.030513292401228107,0.00010458964729930626,0.008709502561468473,-0.039301615683988135,0.23560371198797683,0.04491119362878699,0.00012097316978679005,0.0035117673402081683,0.0031003927613666078,0.021220252382510768,-0.005078861279459732,6.910585874619768e-05,0.001587714635506294,-0.0060149722969856136,0.0238076477290404,-0.015075994049627832,6.349865677555799e-05,0.007936321792804967,-0.042335029857490915,0.07774757450209781,0.007744452414719595,0.0002654864836189909,0.04289278252128567,0.01477733543731874,0.06122644328153814,0.0059584151152115095,6.001661209386237e-05,0.019930937315155734,0.03318084082435545,0.3440931632393719,0.09838163935706275,2.4879556182232235e-05,0.006969736848102029,-0.003841804706529624,0.011803459564153995,-0.011466675573359177,0.00011377187938832143,0.0011678040563725342,0.01813627156169386,0.08053041420833194,0.0009530034029478609,0.0003549899418186116,0.011635461633429295,-0.029446613124053906,0.12615394751496592,0.009967092497163023,0.0001336922713761872,0.03361269012308925,0.0024141478197000723 +2018-10-26,0.024936975475698453,0.17921910600143365,0.037531138459604985,0.00014714518504996716,0.013179007229854852,0.0225305185299804,0.07731260899067068,0.0015849089068281073,6.992482438184804e-05,0.002780446278493879,0.014371871442507471,0.04715573154075366,-0.0161634156461785,0.0001409860170743039,0.015198850099186395,0.00556764235997533,0.00560268611290639,-0.003155460170105707,0.00033538442825044616,0.004399268265055593,-0.010399154030827872,0.02701375535978104,0.0346363440035562,0.00020142381659171875,0.0060601102564022255,0.0011511143409446973,0.0029770331298351583,-0.00239174804909746,8.442703482955985e-05,0.002018468646142112,-0.04838753832652795,0.19354767335025946,0.0379576542193279,7.335596396891378e-05,0.004189181699670476,0.010711086508258931,0.10238987680220775,0.010528860135598568,3.587361318500273e-05,0.0020293006348519656,0.01389004038876309,0.012277340111578905,0.017074618183908943,0.0008724569532084307,0.0036324739980924644,0.011287623689513158,0.024321255649209013,-0.0019911444310172807,0.00016228501348826424,0.004502335204301771,0.015496574476147391,0.012950521601424039,-0.05927110153087976,0.0005848881269964038,0.003767042468068767,-0.001177121330299137,0.016814559806037275,-0.09850776765198245,2.086212372349346e-05,0.0007182395683293476,0.01791320437285677,0.06407926613926532,0.004221267445751406,8.30437188206312e-05,0.016541691017757786,0.018410047519469782,0.11285216714936978,0.05802353533347372,4.592052286052722e-05,0.009688916291117455,0.022397413617941644,0.019136415876667492,0.009077907045402915,0.0022827599385620793,0.0031991584727118286,-0.02453394253739499,0.1532524524956086,0.008910256365628822,0.00013173828890517586,0.011003277793527654,-0.053433138652582514,0.30585781357211145,0.08008633823579675,0.0002705199743571918,0.0071084563891158,0.03434063813182578,0.19254751985876867,0.008210185320285392,5.023788970741189e-05,0.00017665610171423195,-0.047438809612542945,0.22196594896959543,0.0991236751434201,0.0003522364003187152,0.010199497472148766,-0.027453419595181997,0.3495796966398325,0.005459470001179932,3.258970865202204e-05,0.02305433351343573,0.004474724553509572,0.0434921266527451,-0.005367615294338343,3.4374577744477096e-05,0.021138238156734823,0.05733171886493242,0.16386825764687052,0.11265297788906146,0.00011269973175420129,0.017633232594885705,-0.003347551043756898,0.02184337940675435,-0.027726461118638746,3.539971411430333e-05,0.028911108626841472,-4.271989799116474e-05,0.00010931397231841849,-0.004617309327270447,8.664268713808687e-05,0.0021690877588469524,-0.009643632962387782,0.03973380222821906,0.012591371201980063,0.00011097601927432114,0.007771717704158005,-0.014727804829246186,0.015851275133032736,-0.038811382863442906,0.0005310670757502679,0.013104914994514053,-0.02508699245696034,0.10355478463828159,0.008441085027650294,0.000101968126167884,0.0009152960445129645,-0.03513083872936038,0.11822638424567508,0.022336161661897162,0.0019071870340116673,0.01910889661049077,-0.011865773022810897,0.10272477247359273,-0.0945123401434929,2.9703186621183303e-05,0.023974020479714156,-0.04642556844452248,0.14352662496783333,0.060033724968692664,0.001057538111197072,0.0034735887935106015,0.01894114805330421,0.17018067465473358,0.00786669896897013,7.411766023961966e-05,0.0074422969385319355,-0.010235154592776418,0.015800283124561765,-0.008575737353119903,0.0001528885366267465,0.009225788645489712,-0.022011405758783673,0.02979319445005311,-0.020387210337588512,0.0004240671410644905,0.0035505842613048,0.03554530497931001,0.12394680359865524,-0.07498502087622144,0.0022227839618877724,0.019691643742741263,0.025412519438830793,0.10919580511234907,-0.0011465861143450144,7.46675909313329e-05,0.0007142498760675357,-0.0231931451716622,0.034375161927744105,0.022341559554487793,0.0016772279286773617,0.025304362738553434,0.020128262462744254,0.06200136367902074,0.0014389822130677983,0.0001286237246694899,0.00046927197487234935,0.016167166994203237,0.041373432065872476,-0.022289478951958153,0.0001584064100751083,0.01133775318111087,0.028007837078259486,0.106892004954863,0.022557117611787192,6.395113745314756e-05,0.031213364382667596,0.024260581694131637,0.07364670897272475,0.0005089316439117644,0.003122237411247464,0.0016909359805313518,0.021185738016804855,0.09880070329233559,0.010843558466535893,0.00010666553897304897,0.014056075733254915,-0.006852528520247027,0.03314908035074614,-0.0005059357138920096,0.0001499132956940586,0.004158381383479832,0.020807214284657205,0.11121554191297785,0.05799742377744569,8.849060334117959e-05,0.0016466230320235464,-0.03111205589647407,0.1477790945892089,0.01132125289105445,5.2913087544659286e-05,0.00761619021673395,-0.025257947479678532,0.04967052171006684,-0.04021556725302471,0.0002479297990150612,0.014019704365376088,-0.01734717980708631,0.0645549131405551,-0.010934599116612882,6.682115141641603e-05,0.008352466546362916,0.012262011995639005,0.12053434190322676,-0.0030758982209683062,2.6247154100877568e-05,0.004765536591506167,-0.008867335424099154,0.028376928472713944,-0.07527738007639234,0.00010922868767041577,0.009696731491759607,0.0028301551129072872,0.012021572496248826,-0.020869350294943464,0.0003710880163379735,0.017101604818790733,-0.005754671961715401,0.030695791606561162,0.00265485902389548,0.00010737755985505754,0.013838093735550908,-0.0008932818132307264 +2018-10-29,-0.026163129146975845,0.17350437827788326,-0.015061639990504057,0.00015946516643446952,0.006744135547227949,-0.041692483733758376,0.14378574455856724,0.006679220536476329,6.957487967536609e-05,0.027285076140880795,-0.00434710697514818,0.01479188263639578,-0.10072268003751837,0.00013594839345636433,0.0005022070872922375,-0.002952884279489072,0.0025405610646109097,0.00039755208343518966,0.0003922695940641651,0.013952342159025636,0.027089504351000653,0.06489434231288899,-0.027323492876468018,0.00021841979538083031,0.013781018646093822,-0.016572491862484356,0.04922488652867804,0.052137147902302006,7.35105768198654e-05,0.0033693190486661128,-0.047304569572038345,0.16808749991710398,0.031883473635629905,8.257670179655005e-05,0.02392636013424033,0.04223672114291847,0.4105016095913071,0.09258338477266315,3.528368583613448e-05,0.025352434362487554,-0.01833176718260093,0.016156707923968526,-0.03256956039119697,0.0008749762111718916,0.004580097170779996,-0.018208129533493534,0.04160858740498164,-0.04571829757157906,0.00015301860866667795,0.016095937301991294,-0.003654790731135501,0.0027484426099317356,-0.03096353554218498,0.0006499803092562748,0.008392348894357844,-0.0016369762252347402,0.02183056013267552,-0.00811326756427332,2.234602510295122e-05,0.002985569294520026,0.013919153658901257,0.040362107786137094,-0.024399979828189262,0.00010244482601935613,0.0031077024335869584,0.03074241640187995,0.18873903549856716,0.1318348513815674,4.584986778879047e-05,0.005490732064875261,0.0043555273371265755,0.004143791141689559,-0.030217892008983904,0.0020500566337378866,0.009659807873965247,-0.039856088845663856,0.30813337817999237,0.03330331295112832,0.00010644077813046488,0.00763920276707973,0.01592026489473883,0.09101265000443752,0.003704462073814209,0.0002708674141129127,0.00013328129379978708,-0.00020761657868607176,0.0011603836536221615,-0.031247642569080303,5.0398937840693e-05,0.001877028772670745,0.017671270740603207,0.07704183828278645,0.0078367492036053,0.00037803146672978126,0.00045399981838484954,0.03131247322921584,0.3858534674691148,-0.03630703067764997,3.3676364056350374e-05,0.006259463664486506,-0.0018177765552272718,0.01826618797220493,-0.0971081738500613,3.3248670523240715e-05,0.010338150609965527,0.038134881929659456,0.09988603467256937,0.024622960998243633,0.0001229816708884561,0.017937826098341148,-0.028077468047198472,0.22150480188558133,-0.012645025749703203,2.9279737056449862e-05,0.007924007766035537,-0.005005856865031488,0.014694832049675512,-0.01469636415339254,7.552507808486135e-05,0.003318120639813773,0.0008314119169082587,0.003675699430697712,-0.13096799274321066,0.00010342483808699403,0.00444010668781088,0.054396892442674205,0.045606141296037975,-0.0026960768503737076,0.0006817518469965602,0.0067968936501446465,0.008360493051251586,0.02994098289630994,0.03028910344508924,0.00011753084164133929,0.00046235316745414233,0.03416605855468754,0.12873263346567687,0.01959103123642646,0.001703434355080356,0.0126140602756715,-0.016625412555970668,0.1661301316337644,-0.1319951623883646,2.5733936035213677e-05,0.014262191363239949,-0.009831171100880677,0.02639613375473166,-0.02897182634838621,0.0012176884985530309,0.01221293029792214,0.007601188645402941,0.058159740961197096,0.0026312156770872284,8.703314766742852e-05,0.00805519772586737,-0.008355400205445408,0.011647340097371561,-0.032643955952644736,0.00016931127722691423,0.013473001150640353,0.036701798343221265,0.054235034328792404,0.0901032266544116,0.00038842872483628313,0.0052547506612100146,-0.04198557796813948,0.1489886185080415,0.06052275981154112,0.0021842250521627317,0.0057647181076439825,-0.017444898011299965,0.05630863050733285,-0.22345851602094285,9.93994177068307e-05,0.0038428971195397263,-0.04131671680479727,0.06237416095882928,0.036646722695050205,0.001646638549806556,0.016053424679433815,-0.0018308498826606664,0.005991383454638678,0.0012192382003784303,0.00012107142590079546,0.022893875202436586,-0.012495752907899936,0.03387054899398678,-0.06585125725291159,0.0001495548731932406,0.012263445295952061,0.0419807677022362,0.19666639186944906,0.030919401246564168,5.209957147588426e-05,0.00038189433041887913,0.023601356471282416,0.08903956414296296,-0.11101585280747535,0.0025123028845315826,0.01161719671021443,0.04553759499294811,0.23635400759762806,0.03818075727931828,9.584019536898387e-05,0.00804747725673643,0.0066110646943284635,0.032992436289572914,-0.013410300205381673,0.00014531746218432695,0.0014235109264356196,0.0325492471092481,0.16518955952345643,0.08489266434274688,9.319809837099837e-05,0.01339184424926641,-0.01882739232267903,0.08942501688989807,-0.0464743200192021,5.29149678409019e-05,0.0005708535739844226,0.03146709133003763,0.060029348999632554,0.018356708522575243,0.0002555773490294353,0.007285365071572521,0.013340991517952799,0.050320467724212406,0.001819370750220797,6.592616525405329e-05,0.00010403289156855238,-0.015458909150276957,0.13125580692832323,0.005965819425706473,3.0387264360850196e-05,0.001990815614191782,-0.011250754382438267,0.03862546347763213,-0.07661300575510911,0.00010181620475406592,0.00819588927026683,-0.004693342699351014,0.021059197573152125,0.010902021999407633,0.00035129212855104043,0.0007463961344630757,-0.025811333488038577,0.11328637754958672,-0.0026843807630003843,0.0001304982080104909,0.010123558107207558,0.0019302777432395153 +2018-10-30,0.00043826808152031384,0.003168268397837187,-0.010653451414283767,0.0001462865713833546,0.005575320363824884,0.035816441311454235,0.1348968863697038,0.022525303012629807,6.37075690402293e-05,0.015140470123883282,0.022626000284325536,0.08459024060976701,-0.016462484731867642,0.00012373276911834002,0.008267793878958549,0.014043773171663002,0.014591139970421892,0.014285324003265508,0.0003248347172877047,0.0020141389120349826,-0.020071925967939535,0.0384199385345046,0.046324833517342685,0.00027335697071707816,0.016486832618868668,-0.01088691658799599,0.028149953872466982,0.006655207905220907,8.444500150893634e-05,0.006209637158126509,0.0011444022588686477,0.004569502430118409,-0.009922639097886068,7.348516081758969e-05,0.00964176456377779,-0.010315581819746868,0.09426046222141068,-0.039417977175409596,3.7528635784137066e-05,0.007162324051125942,0.005993807336060953,0.005336387431194799,0.0056713780532676745,0.0008661641667251469,0.006684648506279941,-0.007755256695680003,0.01819751000638515,-0.08157017137394136,0.00014902052767433235,0.005831677811904544,-0.01646785026728014,0.013879989120555443,0.017431305519134858,0.0005799254151954113,0.011442484496699884,0.008092244013551967,0.10328054947854856,-0.012515422255718138,2.33492652925425e-05,0.004614695836074888,0.004513801216683739,0.012236672418985226,-0.008755662951607365,0.0001095797065776286,0.008223803007895606,-0.004637466959664644,0.026442960617703997,0.0012599194695330693,4.9366526257373475e-05,0.002477967565428761,0.031132236823180014,0.027503602335025863,0.017816016822283405,0.002207718607017511,0.00357660417108736,0.03048571763931169,0.2171225852317976,-0.11436586573688054,0.00011554297065302952,0.005997668918807305,0.09176917281764999,0.4420715750542179,0.11967540205664301,0.00032144928056966295,0.020001976857495305,0.10413528950906395,0.661609370926811,0.2112807639035437,4.433607436570658e-05,0.01022142311475243,0.025181043037600402,0.1134179822489125,0.016889426683565082,0.0003659136460695809,0.017299342902534588,0.06268508216068062,0.923469344026812,0.046519275077660176,2.816903359476162e-05,0.0026932638112856376,-0.0030491124765979058,0.03583787129614532,-0.006733975819779624,2.8425816532574837e-05,0.005695646912284963,0.03419993549008115,0.10146971534535383,0.015448947309769468,0.00010857044068753617,0.012940153770084985,0.026557395080363092,0.20234936316610005,-0.0032092751064390643,3.031628691281549e-05,0.013900818347408106,-0.0029406488756205714,0.007115965548041584,-0.025508568671421067,9.161924672120887e-05,0.008891429611800172,0.011141460455239295,0.045050743816508684,0.036285729322247266,0.00011308076891898063,0.0027569990073630845,0.050603934542420556,0.046210241314468915,0.03407507838105717,0.0006259240087347792,0.0075974784602221715,-0.023510476425673273,0.09362934182141092,-0.021447992073468907,0.00010569038223014817,0.010297264826843783,-0.01181242052749162,0.036017655933999075,-0.023229082274048084,0.0021049540955805296,0.016975230369222966,0.035988544635726955,0.3106856725991573,0.04507056093135146,2.9786896304552573e-05,0.014916565280350775,-0.03574085932646657,0.11459881591805096,0.033793013584385787,0.0010196617533143803,0.027562300097851447,0.018752135659437875,0.15015962301820787,0.004720278636248886,8.316167156098438e-05,0.020026200224862768,0.030699233054070955,0.05109042751733633,-0.0015199459347369829,0.0001418186592623279,0.004929605548952839,0.03901030018241825,0.0573403546636976,0.09460867567015487,0.00039050161216276115,0.015195773914195774,0.01874173296823523,0.07139199456127256,0.009602973801526315,0.00203474772421745,0.004961239459452179,0.0008747455230006011,0.0037370563612631456,-0.022272802973008248,7.510043473453047e-05,0.009240177196589879,-0.015524835789020504,0.023205686431263233,0.0034910525354955257,0.001663067158932483,0.028233323021477214,-0.0023726486586509886,0.009579572875170018,-0.03670938720563949,9.81303445320014e-05,0.010605462153104074,0.016770232260224324,0.04197946393958419,0.00683357991977289,0.00016194314343901441,0.00241806895309729,-0.0018912239789490393,0.008216702278114187,-0.014772118975719138,5.617710303663768e-05,0.020515022901198932,0.018050300528772035,0.06511612933721275,-0.08343489895968284,0.0026273257236009663,0.002525111788745313,0.011344592374552402,0.06159298836598748,8.207196202698618e-05,9.162166732601072e-05,0.00934675314434358,0.017803724460027568,0.11804166511220508,0.009364465875633792,0.00010937959767416152,0.023351424425188193,0.058095102679797506,0.352495365140237,0.20345020362906877,7.795335501396045e-05,0.004630564352788893,-0.0004720264789215186,0.0019547204377242033,-0.07262482378035273,6.069167209161938e-05,0.005214926601381867,0.004070822311866707,0.00894375857344257,-0.00480428659413737,0.00022191745994406108,0.02532580490756462,-0.0058457703604668934,0.020350412476375094,-0.024112754697293376,7.143037179040383e-05,0.006972000478427782,0.002178340956720291,0.02335528309397013,-0.018310296244977337,2.4064232044633107e-05,0.0008731367710135215,-0.0012328109076398088,0.003785958931081465,-0.09031154955573074,0.00011382287059602623,0.0013098939057665647,-0.005979781910401677,0.027137494771374462,-0.06111106125866313,0.00034733101317469884,0.002523104949011586,-0.02796648941414482,0.1406680857938861,0.020047624548270363,0.00011387127198240328,0.020313642218959847,0.012425529732192677 +2018-10-31,0.06047004215328299,0.3428858037130376,0.1835975429548255,0.00018649936206152382,0.0008188439626961819,-0.011751868698403292,0.03192855013981696,-0.0078102088017977305,8.8315769885015e-05,0.01753558827947723,0.022814308355896085,0.08744273505027389,0.010162916167578317,0.00012069263763544602,0.01513147756469325,-0.00011563482602027959,0.00014083413789621582,-0.01533775144529698,0.0002771076835887383,0.0004769805428071936,-0.0005132199994641361,0.0011534608413471903,0.006162404945047123,0.00023280831570595293,0.01205950226904406,-0.031706046472135464,0.08683648986302821,0.11209901094656725,7.972353946933626e-05,0.0015212796048643445,0.02225502171159963,0.08657616443996541,-0.06295436341411972,7.542573241335524e-05,0.008033794566215504,0.0118188039557231,0.0939415637104507,-0.05221588376967689,4.3143399087819754e-05,0.00197899422472971,-0.02568689382514546,0.02434097424757586,0.028194433722939054,0.0008138013769560412,0.00499922588423182,0.04111579081361092,0.0924365324584635,0.06279563100312202,0.0001555345541645799,0.020214641923176294,0.01394199308745553,0.010628187346430281,0.01595250699292661,0.0006411948419940285,0.004181690034775174,0.00021583038862110134,0.003074422841364252,-0.025372291424247153,2.0920486711059306e-05,0.008871605773288424,-0.018889766898513412,0.04632094884933038,-0.11946836558072067,0.0001211435202835244,0.01601868988586869,0.029895713100428732,0.16589249844835194,0.08977761588541155,5.072756166301457e-05,0.005317712175230284,0.0025169418698780537,0.002092246219070916,-0.013822709437962937,0.0023462990580831243,0.00870687200547721,-0.03269811368795538,0.20629629789864457,0.01892841177590815,0.00013043176550867378,0.00013685542798447226,0.015587620470498036,0.09089915994283622,-0.011218881616924288,0.00026553892042912854,0.009136052004024665,0.0068387541527820655,0.03701609706390092,-0.0012789156606326539,5.204120239004085e-05,0.0025078971126477963,0.027709158470700386,0.1349698381898542,0.007794402736683174,0.0003383556373345815,0.006798618930107021,0.02511683127705886,0.30290702948774245,-0.038336127134137366,3.441008357763994e-05,0.018174233474702976,0.0033762000480769866,0.03334793923725893,-0.18167317612142939,3.382523942084333e-05,0.00091025227327215,-0.009862191445176994,0.0271974147028554,0.009322650002211188,0.0001168069169784819,0.014090041711450629,-0.022690434492813594,0.16363252306062676,-0.002794462816560587,3.2030635947537154e-05,0.0034172972939093505,0.014062927862873758,0.03493005506237328,0.024952794409959234,8.925937901125492e-05,0.009462551000622745,-0.010417548806381266,0.03950717177604437,0.023983783728547193,0.00012056970511352031,0.001972307826814245,-0.015194326052640707,0.01405644994259908,0.014009836376738923,0.0006178475838526642,0.02166773468927101,0.0005807103932646126,0.002223992030788932,0.009288762638493047,0.0001099037171314347,0.010513614556615397,-0.027315018539762637,0.09562696671343521,0.010575456123492952,0.0018333285182517034,0.016747591554193857,0.009420716178417516,0.08917027667591759,0.0012710266281498496,2.716727012344344e-05,0.0036332790624502573,-0.007033220123076464,0.01910274795549349,-0.000610726154571944,0.0012037315239568057,0.004517118142664783,0.012932633039603222,0.10473825145573672,-0.000746007691267119,8.222564306195588e-05,0.01689580256810453,0.009457747915440287,0.011335329524739821,-0.004569644316627622,0.000196924145975385,0.008611198791704005,0.007813679566799755,0.01232749320357675,-0.004095398068736319,0.0003638184666938626,0.004002639143878687,0.029773230599889695,0.11453061970861997,-0.016248591754083407,0.0020149055432639967,0.025135689087935884,-0.005771348560136574,0.019415856989237267,-0.02866578069075757,9.536985234054408e-05,0.008481131499880336,0.021037091415803136,0.02478279258631432,1.1020466405676043e-05,0.0021101466745278873,0.03230143202254363,0.04969474888866872,0.14446487710301034,0.06991803953324698,0.0001362900856514974,0.033525809811673316,-0.02844542157392354,0.07991094107257705,0.027895016142900176,0.00014430005795305277,0.017878652244689566,-0.019080573810236597,0.09074282701035667,-0.008131832364183742,5.132075666829403e-05,0.007593292044976097,0.00024307307127096302,0.0007424014951975521,0.003667194745656561,0.0031032450297332464,0.003494242676463213,0.009020154391557829,0.05322954428185848,0.00011101807239575256,8.429499588437089e-05,0.02236631720255164,0.0019405281493314623,0.012122860607921606,0.0005678226220254595,0.00011608487013083848,0.004204546347745201,-0.03058723611957239,0.19659412837560356,0.034612473624674685,7.358993031139558e-05,0.01075625434458822,-0.028074230294802008,0.1293616531780077,-0.15718871492389933,5.454434062551421e-05,0.01795901918637274,0.0326250572380724,0.06044404050227297,-0.013718965458216248,0.0002631644299525398,0.043154308694155596,0.01522371438743457,0.04454358624666907,0.008981735242545962,8.498647647889879e-05,0.009963906728947328,-0.025163422763715894,0.2730027779306171,0.029843626961516826,2.3781209201415473e-05,0.013891634807288679,-0.0017005566127255662,0.005636206051876433,-2.812622892209535e-05,0.0001054661753867151,0.003163941186291072,-0.016453602200109958,0.0711894572117136,0.04727269953965405,0.00036431183707931713,0.00829207644925617,-0.018460835142931672,0.074910549784499,-0.01591017487979028,0.00014114976373996155,0.008877254993319908,0.0020832330345682344 +2018-11-01,0.005459359231689184,0.0375165192641267,0.0015572869724320864,0.00015388834106539956,0.011928473710409223,-0.04037664024977053,0.13903987346319538,-0.013527739651626144,6.967890884066555e-05,0.0340210375941912,0.013319601137731847,0.04203508790992732,-0.055458563324815593,0.00014658058963192843,0.0038180327591252057,0.0004043378428057078,0.0003599922674024006,-0.03590373775022728,0.00037906970194514654,0.0016721782045411064,-0.010269342864199288,0.019875445429356518,0.02586960067041838,0.00027034824574169344,0.002942695045192196,0.023352025250697017,0.05762152488232898,0.044973813825908884,8.848844110717041e-05,0.0017013119566571871,-0.028491615667307166,0.09537944459382708,-0.06827706628147787,8.765004500406966e-05,0.01419083426546263,0.011283638874085178,0.09011456480173047,0.004108523617420686,4.293908672967567e-05,0.0037958439185087085,-0.0026610315298620036,0.002342154887994761,-0.05071272320220863,0.0008761514725831982,0.00021711489795637182,0.003877264050847259,0.010735296085627477,-0.015070866377505302,0.00012629124303432427,0.017938441922090768,-0.018984812577830846,0.013545482250635435,-0.0009926018917850844,0.0006850719734946357,0.0042898272418791135,0.005275109483607024,0.0786309328622706,0.0001533125509493036,1.9992211568304394e-05,0.005489521307642663,-0.015072222586779826,0.042520064541274244,-0.037311993271474525,0.00010530146709361472,0.020549637662284143,-0.0050322724863375275,0.031228499953185176,-0.025705923503302985,4.536018779351414e-05,0.0022221269018263966,0.00939988883010189,0.008727975830702298,-0.040883689600668995,0.002100545798571393,0.0004218454886508276,-0.005639065792020785,0.036969322662892816,-0.0035813754794552857,0.00012552140034876802,0.03198072152864606,-0.009523376846175565,0.05597498644680401,0.004149826141552557,0.00026345424749972876,0.03140514059294987,-0.04789363855038057,0.2518278736454163,0.07926703163828398,5.3571645933914835e-05,0.01487855524359608,-0.05223158064304617,0.3134971799049515,0.09999674963671419,0.00027459102469779337,0.018129999289065814,-0.02438417164179354,0.34901445440387274,-0.1330483512172542,2.899311140878021e-05,0.006885760704303747,-0.011434698468131223,0.12504696657312941,-0.013153484848590264,3.055155114782209e-05,0.002338721971378181,-0.02206697800475593,0.05911797868595967,0.012755960656956588,0.0001202391898367736,0.0039340319381527145,0.0372740447472873,0.30509902867523314,0.01782292636052696,2.8220069131703072e-05,0.03736560601058782,-0.02410957851665952,0.07072871815046829,0.03974803624147213,7.557379186176805e-05,0.00733504086815264,-0.010764278916539827,0.04283993435644497,-0.09603221644439787,0.00011489066449716716,0.010138110280661972,-0.00784665366133284,0.007825125136864368,0.0019932696316001144,0.0005731506034360673,0.006124360208483816,-0.01854986480481075,0.08242443622625391,0.0043163644872503395,9.472634326810729e-05,0.0034085296807631837,0.011025060114092924,0.046224475091507025,0.0018738491942375424,0.0015308341877708872,0.041562085624785985,0.0398687982940333,0.39147971727862674,0.0558432164152039,2.618822567998659e-05,0.011248708392616467,-0.0073494344423252565,0.021851458097602187,-0.13551582356747507,0.0010996254136073872,0.0019434368096606887,-0.021481999207039394,0.1668792438229355,-0.0544530769904874,8.572312926407673e-05,0.011691829905294118,0.01598384724507836,0.028899357084427743,-0.04439330748554926,0.00013053847219413983,0.012015640569164546,-0.015277852885730433,0.019656663110001214,-0.009958008758307437,0.0004461248789393783,0.007616221830741987,0.010477877416531728,0.044375353022070886,-0.008092488800291535,0.001830129549833672,0.015511638986102649,-0.01197346205569449,0.05652775517784005,0.005306966903198927,6.795921810159044e-05,0.023491800083143336,0.0004214460943825608,0.0006297777288872586,-0.007917363988034604,0.0016635349396121018,0.018753620021753365,0.018940021279676592,0.06080858125485894,-0.08185702025339377,0.00012340467944791612,0.0019629465087382223,0.013337964264324285,0.04294807286512884,-0.0075919794747864025,0.00012589435129140982,0.03308770302647343,0.0064539132556369954,0.02447886239178207,-0.012024168697402112,6.434959501754719e-05,0.006134929497162536,0.006224858318168367,0.018359517959680716,-0.03159698092369025,0.0032135588284734383,0.0046020823415941926,0.017252835291191055,0.07238055867182254,-0.018180862335024982,0.0001185711729344271,0.003458782663581479,0.003584765527887107,0.01767388302247469,-0.00985137361206685,0.00014709217264125506,0.011937380086376228,-0.01848777248993929,0.09812292869444292,-0.005281464966115309,8.911745687016673e-05,0.012643236797294594,-0.004035237357681435,0.019764829502953066,-0.09330082051711312,5.131252760455019e-05,0.01604267439918557,0.05903258266881678,0.12133304379562465,0.062149828800586886,0.00023721496604483408,0.0049357220961396085,0.002824896137866721,0.01079464836022502,-0.031179850250412627,6.507412858898169e-05,0.009077642855805153,-0.0063514173814384605,0.0790583175557449,-0.028882322439002774,2.0727855424437787e-05,0.004280355437472334,-0.0004200590893315513,0.0012978173166113835,-0.03349187213072556,0.00011313729382069241,0.0018028849516467424,0.012850575509759984,0.05188453301310086,-0.03358140733562978,0.0003904025417964327,0.006905129362601916,-0.02432145306338115,0.13633682118824655,-0.04236738076883518,0.0001021758243047141,0.02243395314553586,-0.0022643275454956495 +2018-11-02,0.033493768584667793,0.20256159406843904,0.03926756934133207,0.00017486121561505693,0.006477211396342903,0.04599633685845903,0.14596675847336746,0.01617103830131191,7.561009937640335e-05,0.028347941503549728,-0.06815022097752135,0.22080081897547002,0.16702202568055982,0.00014277882150254316,0.007122465984991956,-0.004452286462643846,0.005279207779556331,0.0007715315234453719,0.0002846310010928672,0.005422972467336885,0.01850345901757578,0.03095426010271889,-0.005950210452557286,0.00031277372852610275,0.0001268908902962039,-0.020192129354575334,0.059885611015536,0.013429297857915067,7.362179035384062e-05,0.002946475233228641,-0.008439154627858244,0.028660080141045357,-0.12062747108272694,8.639953380791555e-05,0.0016453595204075863,-0.005618979884446449,0.04269176880210265,1.6600755365303063e-05,4.5134843716159036e-05,0.011999168652121658,-0.0033295218683990543,0.0030642645300419592,-5.405553023971253e-05,0.0008379158473413428,0.0007031411640688599,0.017489194874454196,0.04057005004009093,-0.00045532494494126294,0.00015073918399444123,0.007199213539747423,0.005541883653252969,0.003909529075327214,-0.0003121725828064003,0.0006928788660494035,0.010119821873824384,-0.0037377135705573767,0.04850410493662424,-0.020198113241684617,2.2964146668001372e-05,0.0017836322553884973,-0.024343866444225072,0.06646407757245103,0.012291093764414243,0.00010880619243220639,0.004125151474892565,0.00952980958451699,0.05335498826378909,-0.028239286393838256,5.027719182726517e-05,0.008537746287754742,-0.004150849151139734,0.0035689164264345362,0.013908829119851885,0.002268420404245364,0.005457254879612547,-0.03438042827949938,0.2656245233280889,-0.01754300041390165,0.0001065111863878871,0.003335267263515941,-0.011992203083660204,0.07932349278599828,0.002188788502191694,0.00023410213667176993,0.008530085855624743,-0.043295792894918916,0.28363291198510615,0.0410056174814266,4.299817567053844e-05,0.008646987811195453,-0.010181088392001986,0.05398301930895851,0.0026300622106737517,0.0003108306553961277,0.00019612683705700056,0.002626494257949813,0.03273727542015925,0.0013412829982822573,3.329386044411125e-05,8.605315232186172e-05,0.027993103432124498,0.27873741588849493,0.18932844417600944,3.3553473720606276e-05,0.007519842517390284,0.034529387770429215,0.0816256709440613,-0.02066202921283764,0.00013626517233072594,0.01811684757839334,0.10062701217550721,0.6293494204107354,0.14242617239326252,3.693304517927403e-05,0.011286158085320682,0.0031754055464879955,0.008636400472386545,0.00041910291914430155,8.151617797613045e-05,0.0030582092366238543,-0.008465617167888245,0.03110201870636014,-0.01475329423232409,0.00012445680342588079,0.003295702579316445,-0.020356263845998337,0.016906602979461043,0.0259616285222616,0.0006882041363010584,0.012038192023459396,-0.01320216503583947,0.05404908213722526,-0.07489581391841908,0.00010281177173848729,0.010934831405145036,0.0368405541008376,0.1298897197542128,0.008482831183329155,0.0018204155998821064,0.021499965675490867,-0.0021795007529442282,0.019230178982692293,0.0018752486600703703,2.9144451901448808e-05,0.031595618512392634,-0.05957648768574889,0.16032755277825717,0.12150558779884708,0.0012148929226988763,0.013636473882160443,0.008297547465356946,0.06274040683258256,0.0010901269749832492,8.807001253758878e-05,0.004692733040547819,-0.015175528796104785,0.024333058265307333,0.012890982332953878,0.0001471948188368086,0.005855430146163348,-0.0026098393990232048,0.0038289010569985873,-0.05126978014067293,0.0003912402728058023,0.00823982885787836,0.023512783988003442,0.10287353077763692,0.015616831621108922,0.0017715391295757893,0.004442021210298979,0.023580675409847388,0.07774110507762312,0.019305760664326935,9.731861080296815e-05,0.009797762085927562,-0.09546002992565528,0.1308869581326663,0.07329411199062194,0.0018130191165616264,0.0506541725179951,0.0026714276515587684,0.008067451226870933,-0.0010794508520608958,0.0001311967585043712,0.011911238962684291,0.007177426424508251,0.020001003838477863,-0.014097772788725173,0.0001454713041023341,0.006125181123992976,0.035364090247263884,0.14307911132733447,0.03635255564038013,6.032539595789331e-05,0.01873727481701435,0.027176113015022246,0.09428591186584055,0.0070293484118865565,0.002731860962668944,0.012356279232464575,0.06183915110386777,0.3364723588072732,-0.09710682797099458,9.14228376541007e-05,0.019985306627151873,0.023605486721373452,0.1499177746617663,0.031491553429036846,0.00011418803958733811,0.02603521245319884,0.031086457500424818,0.1946886782167095,0.039391706400716285,7.552300056595492e-05,0.01619244854560812,-0.036301663772938385,0.214243592537798,0.0558493150974911,4.258592478690631e-05,0.0014054717891520262,-0.05106710691508866,0.10045593789794267,0.03548195309401709,0.0002478534885205068,0.028005627568458404,-0.0054540645833651945,0.023863233993209998,-0.006410422673867351,5.683362434242282e-05,0.014378054736518542,0.03763741564658533,0.3609804259983537,0.09355519205434223,2.690093824672692e-05,0.007519720174626236,-0.024685863895910053,0.06725857689569978,0.0910532927908221,0.00012829496741531142,0.0010039536064217686,0.02629774282824417,0.10620620815542625,0.0029978217810204995,0.0003902981936011809,0.0008826515958026864,-0.017178908665854448,0.08121425278913874,-0.012093360354416025,0.00012115326253742544,0.028624351901347357,0.002083857886620269 +2018-11-05,0.002411603895733034,0.01616644029323386,-0.013507732512807057,0.00015775319289154552,0.02015539294078152,-0.0019002170346934884,0.006618995675396731,-0.006822772664964735,6.888451996629444e-05,0.042350134982007216,-0.029548123601262948,0.09747898305238055,0.006184443891283968,0.00014022198855611603,0.00010930758315141052,0.02483205649878101,0.02755922575335828,-0.06918015812577655,0.00030409797742617095,0.0005883212458119864,-0.011499175768145378,0.02723740168528858,0.018416215081798453,0.00022090157329312125,0.002644979420630352,-0.019104603418824643,0.045813108902039004,0.016888803295517257,9.1053155777686e-05,0.008808502277827163,-0.007703291445989843,0.02441644425634924,0.001983021434021951,9.25728780861827e-05,0.0006116777577024771,0.026896455303993583,0.23375638951867386,0.024102931159447893,3.9457555099145725e-05,0.00555340746585075,0.012325955354551863,0.009667438723547856,0.0014507080708565376,0.00098322734627151,0.00942423136785243,-0.01403814125487981,0.029330678795236317,-0.0011644276045180268,0.0001673591188228003,0.013859355570405804,0.0010407729460457438,0.0007732068521017483,-0.01960395131717116,0.000657937528055893,0.017936738119182782,0.01860154838086853,0.29833169759422273,0.07122148962615114,1.8581145588154495e-05,0.0018424455411098141,-0.05531574015110382,0.14794726410556985,0.10753232721751652,0.00011106899117775454,0.0050992299732744075,-0.014071493153970825,0.07935587932520936,0.03363295489183588,4.991405965469629e-05,0.008042638560250736,0.03347119237609029,0.029441624074897976,0.032934066577948,0.002217340519718758,0.0013900400238294104,0.05623819198344105,0.4432266586440659,0.07441874571735829,0.00010441372360257465,0.0013385365345259075,0.010012754630776229,0.06542959278629348,-0.018568410570350326,0.00023696684598579075,0.00561941150452521,0.024359249280813972,0.14352256222849336,-0.06604619399771218,4.780845144873401e-05,0.013812044983593733,-0.017923742350822367,0.10074142399767105,-0.0548300430567105,0.0002932293343310104,0.0012316289234238944,0.002442657928567414,0.030022567902293396,-0.02072478950890905,3.376331245564483e-05,0.025158441655075126,-0.009106378500620078,0.10180620317178866,0.005925432002599079,2.988499349958369e-05,0.0025704913366056546,-0.021580850405531826,0.06368164511455887,0.05046451859932376,0.00010916339552482039,0.006183290389533786,0.03370001088213987,0.23767956543571622,-0.0012266073363880648,3.27514530349275e-05,0.029941295630997067,-0.03122692474090849,0.08815658725309172,0.04616880450843451,7.853293518406906e-05,0.0071692486799557345,0.017904305837721506,0.06931755864368902,0.12269553705132316,0.00011810351543069847,0.0024561605637463844,0.055568997311491376,0.06190931314921522,-0.008591606892336045,0.0005130410739803656,0.02161877509626026,-0.00544483175029361,0.023380571391397185,-0.013677860051596756,9.8020147739679e-05,0.00484398707824215,-0.03686035412897452,0.1186750565825409,0.02364788919114913,0.0019935137272565776,0.009637442048965578,0.025540419671858338,0.2128839785799353,0.01345833125795126,3.0850857966672064e-05,0.015515608086642924,-0.07642516584864863,0.24252396896992476,0.13851216866492252,0.0010302745991298198,0.023308302895219127,0.0033277707997566783,0.024776724964553177,-0.0045614572829793115,8.944069184046267e-05,0.0005662418199965467,0.02321562981320015,0.030786934273809012,0.034755064374518974,0.00017797516810540156,0.006301910179042869,0.01891924853044843,0.02588174758226194,-0.01803324368345363,0.0004195794397987685,0.0007395137672875193,0.009682133627403422,0.040144753343473456,0.0013418366727347697,0.001869358596649572,0.02453113671043949,-0.001389769406069382,0.005619909777780763,-0.005782503959494854,7.934211515316935e-05,0.002386217546348711,0.039583206015207484,0.06127783528708956,-0.011332175743266532,0.0016057751899784716,0.010779815632841635,-0.03348518808127861,0.11279527385609699,0.04129695119170822,0.00011761910655688155,0.0020552448714524114,-0.0661133955196748,0.14776473135348767,0.14376759413680723,0.0001813756785587419,0.02226548894094332,0.06191205674662247,0.26139964481112143,0.09884405206690317,5.7807496773708884e-05,0.02354929899810793,-0.02431214318452749,0.07525491067618297,0.047505491037766495,0.0030620089669703694,0.007400165559321254,0.06579496127562466,0.32929495647262336,0.05462671660985717,9.939124421958926e-05,0.024711515178760406,-0.005984109267812978,0.03413928221684045,-0.0010401101084982953,0.00012711766699727238,0.0044082985354643445,-1.540376026556088e-05,0.00010039068761058714,-0.04824722174693261,7.257416048873332e-05,0.008333429036929144,-0.027657604269810048,0.14752065212864768,0.015797596472073863,4.7120417494029124e-05,0.008230734034294543,-0.005761032165064421,0.01111618352054833,-0.0013912462913629048,0.00025268181398233335,0.011211600048187473,0.022873562194070246,0.10022993824410249,0.024122032598390394,5.6748020565915994e-05,0.0019457282444901615,-0.038541643006464836,0.4308132674671392,0.06699339094220283,2.3081947047810817e-05,0.009406994047400172,-0.014605435139786087,0.05890063834048738,0.011044611003536415,8.66769185788001e-05,0.004526302820575587,-0.019334323319392315,0.07669635000121268,0.04218325565002959,0.0003973582657116059,0.0009808082559662925,0.04678067882046902,0.25376240675837386,0.05616115908373803,0.00010558714105219109,0.018196148410079712,0.0011328501207870639 +2018-11-06,0.0137459024404864,0.08708525220923405,-0.05064941170924768,0.0001669226332521142,0.004292474101011993,0.05500638105762799,0.19198856607071108,-0.04497447525778037,6.87461267914186e-05,0.013432695696325507,0.040204821835639504,0.13046226893499027,-0.00997769529801155,0.00014255761439498267,0.0023770147105739367,0.00029428849418846464,0.0003005605062595902,0.00035894117555643266,0.00033045263978222136,0.003304317986920929,0.01867823850278594,0.04747482134283755,0.010503876350940345,0.0002058592327700919,0.0027835916725684065,0.020416610148099958,0.04722915646157883,0.008667840783076891,9.438873962545767e-05,0.018150994998678723,-0.04985020688721404,0.1877825451691322,0.03846922691392902,7.789356827183811e-05,0.013079590368285082,0.006823032589762882,0.056131910872955985,-0.05366001615007495,4.168369727417587e-05,0.0035271501210413867,0.016571500431331553,0.015300033505549638,0.0202581085540159,0.0008352456783313935,0.0036013978469443056,0.004700139811391766,0.010016173751746191,-0.025109530669910868,0.0001640857299720108,0.015653079699087632,-0.022878873687126405,0.01889331075365642,0.06739957658821415,0.0005919035313551238,0.00324234781668874,-0.00221976890521906,0.025660630653305747,0.007089255474981798,2.577883146298506e-05,0.007789002312188464,0.039789064372754236,0.11112680702279677,0.03229314401161581,0.00010636431040707663,0.02423255598698884,-0.011943306618614593,0.0698375946351464,-0.057710080374226896,4.813900699703127e-05,0.009285976845488545,0.02184595742471623,0.01509992507647548,0.00992591313732111,0.002821754739069383,0.00960857624045444,0.01911499211273246,0.1291456067341213,-0.0036487057777627157,0.00012179980527112607,0.005927229069270957,-0.00165635517968057,0.008267068664273805,-0.0033864881518223867,0.00031024883350667487,0.003434352361605596,-0.05355944052443713,0.2875409373866055,0.06866406737484197,5.2468337511967545e-05,0.010523358845310577,-0.007640782475187833,0.04197499866223713,0.0008983675129067076,0.0003000087714071838,0.02231947151924076,0.036972001278663,0.39447540782099066,-0.08751379962685224,3.889405793936329e-05,0.010644066979017704,0.014958280649457105,0.19309876895489111,0.0448365013903542,2.58811685603661e-05,0.0082683225632923,-0.04286092149241031,0.12694476196144572,0.06930422757761977,0.00010876006893962618,0.0089747979897323,-0.03201282591928063,0.25125706922622254,0.017117960844302026,2.9430531102313354e-05,0.020096017567104184,-0.004155413252838692,0.014110903565901877,-0.0013627652176619012,6.528851324729315e-05,0.0011391005953200078,-0.006856188669582075,0.02383350168003892,0.0008733298256263877,0.00013153565778249658,0.0005783724480251024,-0.011028208513378645,0.01243336014334102,0.014664547348298293,0.0005069813887001098,0.0036553952392974097,-0.03578562765678651,0.1395777606568493,0.04568713614273354,0.00010791415677728867,0.00255679017815619,0.08788486544287795,0.3259316895505521,0.1011327989081026,0.0017306397674043998,0.037647901365651895,0.053378457704231955,0.47511439299348907,0.07710354001197525,2.8890165487837195e-05,0.009845914186538093,0.0022753067100668048,0.005871709400623208,-0.024391652323668123,0.001266912624421702,0.006600798665512032,0.025269050185234586,0.1829315163794367,0.034934941562509376,9.198690923270682e-05,0.0116809910225899,-0.0024446764585899544,0.003568259858301966,-0.045239220392709605,0.0001617001051766299,0.007327887255833304,-0.026078495158983504,0.03948141060749561,0.027510942468370825,0.00037913491415936604,0.025162765773138526,0.0051991405300223234,0.02314486866985023,9.359996256415e-06,0.0017411138759669152,0.010309879659290743,0.012002096205099419,0.04610039167054456,-0.0006082099762344226,8.353007259336999e-05,0.0023203478542953445,0.05207693795357289,0.06403314479328553,-0.024833761913914253,0.002021705072957291,0.02345690686107857,0.0019416863398074309,0.006432135535436486,-0.0392288146722521,0.0001196024083027678,0.008263164422614681,-0.06086368523804492,0.1497271337342934,0.10513512958447305,0.00016478516461488436,0.0200515473184347,0.015605579090174413,0.07022784522063646,0.0011013700028874274,5.423560271455385e-05,0.009655195945463983,-0.0273068161416368,0.08137617276005282,0.025974810518845738,0.003180474102833345,0.010503511433201506,0.01917210118264174,0.09137366343060067,-0.11897078092339783,0.00010437325933740184,0.028628438975182243,0.03296821391749242,0.1911244056285193,-0.03485866431718245,0.00012509503013142983,0.001746746594836918,-0.042010288925137224,0.2366275088657109,0.04392932604033902,8.397289684943684e-05,0.017072574439916555,-0.08291792194269397,0.3958000334744164,0.25206262766516946,5.265261892498101e-05,0.012920724319328733,0.033236188338124584,0.05893042358322473,-0.09828561411816945,0.00027497995884266007,0.010513500713440916,0.013784858579219633,0.05341515250858004,0.01132155619991071,6.417298163458821e-05,0.003566777914193483,-0.026277732168183545,0.27949789468747627,-0.014182257107691209,2.425719762184951e-05,9.42157022642102e-05,-0.017156899243278897,0.049605164142754975,-0.03821085647075412,0.00012089848935140393,0.009350224723675077,0.018212999225579663,0.07258058225714027,-0.03564589265709604,0.0003955387094105299,0.00347717904611019,0.023898353854604478,0.1328040694744785,0.014003952014630443,0.00010306908013318649,0.008468869978264973,0.0023749382650080563 +2018-11-07,-0.0010240444127766442,0.006852566454939781,-0.11317873282462147,0.00015803457773961327,0.009568297427541601,0.03523206520519491,0.12421466411826494,-9.256187078762297e-05,6.805746340180326e-05,0.005453368463556285,-0.03760563222629758,0.13338184856695146,-0.006409294214517738,0.00013042275409869166,0.005408820852434158,0.03500097247579912,0.03523081686559385,0.065874468076976,0.00033529359279686424,0.012573895762110418,0.014680561811053561,0.03399418952277422,-0.005749490003812322,0.00022596218046635214,0.006302110632695968,0.005704389838181611,0.015169539313909032,0.002887234080600863,8.210763547350927e-05,0.004941981618574845,0.037616438510139655,0.1603829689307344,0.0871489589065841,6.881914633085908e-05,0.014815746360521576,-0.028548839148142414,0.23476648636180483,-0.0044825437531545945,4.170143194409927e-05,0.005847522897000749,2.1295302762381096e-05,1.8899064310820625e-05,-0.0013122163421706524,0.0008689370250473137,0.0035074525110412357,-0.020938419769206417,0.05499597733133573,0.0037455833642370167,0.00013312967270637032,0.008253430134247544,0.03097735159292377,0.02364499074051178,0.04927883802024811,0.0006403678134058149,0.0023642098151383435,-0.00854890916638915,0.11457227164733533,0.032041092072384134,2.2235861897328088e-05,0.0008776131066973675,0.02172391595337414,0.06540007790101837,-0.0002492716545803802,9.86758522740054e-05,0.005415078569756139,-0.004637381171466775,0.026202030207307415,-0.005196577702221354,4.981953500827591e-05,0.006947053605094805,-0.026402707040145086,0.021641143287199464,0.08128987127841539,0.0023795302431307286,0.020166530749459066,-0.03849512965652729,0.30157602119291765,0.0030249025825571066,0.00010504154172610028,0.013051620597229334,-0.017294469924097056,0.11843332440814373,0.010133138438435784,0.00022612134878104555,0.002532515614159136,0.006596709051932812,0.03458150420813832,-0.012076273646156986,5.373341042818037e-05,0.060201000265711645,-0.03901792081763372,0.17766336276583686,0.041534473960829224,0.00036195372662989453,0.018966882617256757,0.0017183310418884745,0.019055994067698995,-0.021720421204412692,3.742014431588961e-05,0.002409992566134609,0.011752630803271904,0.12904691134612958,-0.1079876929928344,3.042770437020751e-05,0.006899442889474097,0.01788460776197635,0.05064822191039916,-0.03633666653979113,0.00011374648168564568,0.004281280070192502,-0.00835034672907381,0.05884166598872083,-0.006904421251919353,3.2780224576927206e-05,0.0431343155382079,0.00940646631882411,0.02333446549729054,-0.009160955209783665,8.937293693404387e-05,0.0011896282801131522,0.012839577038484437,0.04721343473745084,-0.012920491215823404,0.00012434654331386976,0.003715738579608989,0.013190594622344757,0.013511333603500606,-0.018958801012031266,0.0005580096607992091,0.018282353484639184,0.02729976714951473,0.09774822308999713,0.09849172247660659,0.00011755363975586697,0.0055596433938310055,0.06945053342468595,0.27527831790053936,-0.019062440621274226,0.001619282992990822,0.020178490043176754,0.02181082982246718,0.169307841303308,-0.07317544754558543,3.312663420107008e-05,0.010764599320311732,-0.07523346852873397,0.22276132742273802,0.06987303989457404,0.0011041868161182993,0.027301438015551877,-0.022404691391385605,0.18869689943530768,0.02617239912947324,7.906783463552219e-05,0.016615762459843787,0.03346326291158297,0.05005615214267142,0.026208850005626096,0.00015778154699596048,0.006204028593277999,0.011569016723926701,0.017443144945054053,0.007152709186458653,0.00038069359764537615,0.00595860758378133,0.005386851192835567,0.020751839548769302,-0.00430844527904066,0.002012003440532236,0.0014617784380343032,0.04590366582818826,0.16252996151883745,0.09247617587338124,9.061587891762706e-05,0.013678230397951045,0.0007676047514098552,0.000945083746611364,-0.00685869938794835,0.002019038274318353,0.006301224084919273,-0.01976554882140515,0.060885325386965526,-0.007719308806697897,0.00012862111877625962,0.0054723356760704445,-0.01249923160176932,0.028082337135487436,0.0027818186567724595,0.0001804307035397075,0.029867756933734373,0.019990271317704054,0.07637470119543048,-0.052751731651018624,6.388267443616998e-05,0.005782628288483901,0.0017364741465228537,0.004867449084349832,0.0025632255343283426,0.0033813097932971527,0.01425738794057113,-0.01911970643438639,0.09263715793502089,0.003944554302913091,0.00010266834655043075,0.0027930579892862214,0.0054125816174062005,0.025642293585199594,0.0005535149765465495,0.00015307644734242483,0.014851370299723103,0.006210288920669097,0.03617171615987824,0.0007118089450911149,8.120661162085685e-05,0.0059540708260238115,0.013733894399328468,0.062358749925647064,-0.0010506061845013766,5.535332304305513e-05,0.0030003662619640615,-0.04364207385602894,0.08404183441531211,-0.05942391767014023,0.00025318574528626777,0.013905397880823614,0.020866584384106483,0.08463689230649217,0.0238536935755367,6.130643088349139e-05,0.006942202321256439,0.01551397484213678,0.20290876617400955,0.004586656071935447,1.972665995069337e-05,0.004880764543679583,-0.01077558157714535,0.02984101507084887,-0.20897100827851445,0.0001262223006119131,0.0022231463183659357,0.004425019702227532,0.016241864369075234,-0.11937564161210204,0.00042944475227936664,0.0037514381710685987,0.03567004305534682,0.17826582175898498,0.02938285270848551,0.00011460599711815083,0.010784300700038258,0.0032810779679147447 +2018-11-08,-0.0036563070880137323,0.021941124071561225,-0.0471614348205061,0.0001762261588019402,0.005004654710734738,-0.022957414856436174,0.09029985043614366,-0.03707551273778873,6.1002337665051244e-05,0.026423986344285444,0.025419807747064056,0.08320436215692785,0.016164728419666673,0.0001413264241195093,0.005627197298085255,0.00505490121903252,0.006129817536023426,-0.09142781572054923,0.00027831267289368333,0.00045696266828226936,-0.008953835999621221,0.018088837251661664,-0.11712506794842054,0.0002589979081542749,0.00927352422025544,0.001876779658009597,0.004849381778330376,-0.058838937204684735,8.450329647983131e-05,0.0018922748486119461,-0.00591761058637181,0.019892853586611133,-0.06642265403190131,8.728490662235027e-05,0.0390965883492873,0.017804505488024844,0.1562372356029116,0.004434932440841782,3.907904879515481e-05,0.007582834833523559,-0.004158091455457732,0.0034501609032941594,-0.021102374227527577,0.0009293931652348226,0.000116868672756345,-0.022166741901556035,0.051452152338527714,-0.029678460969247235,0.00015064690171670892,0.025196616023088814,0.0005847122909452789,0.00041378939139098426,-0.041409620684638625,0.0006906964583656878,0.003003940533003733,0.004729102856153372,0.07244917322533455,0.000639171018814266,1.945217264892884e-05,0.0053790099644779295,0.04175961968349371,0.0946495707654492,0.04847786595839075,0.00013106566152410303,0.0001719758589036806,0.010507791998787513,0.05425377147268107,0.0022814188308676302,5.4518431414050936e-05,0.00256308112542961,0.015861600330654136,0.01281177137135125,-0.0016271217628276045,0.0024146867287929614,0.010991419646804272,0.00033541670764026,0.0025149979087496985,-0.00020842090750211297,0.00010974864606936994,0.023376452467276695,-0.005677181016482331,0.027025728816202715,0.0018998944552922087,0.00032528464216878284,0.0036359888152189225,-0.011230206996246973,0.06565571219404613,0.004179196701020761,4.818104338398404e-05,0.0029700549306560767,0.054696326664960056,0.2595163788184104,0.08504281724946113,0.00034736031143718687,0.010735365752443233,0.02504315995915341,0.30760158893087214,-0.020517077673313712,3.3785533741192475e-05,0.02422279148093532,-0.028124420187307066,0.30947784692075975,0.10364810240947822,3.0362373620776907e-05,0.004032765237663564,0.04531886723321223,0.1530383650340545,0.026963868946607135,9.538970032706899e-05,0.01896407521388783,-0.06418869323465205,0.4499953331706586,0.05528306421726071,3.2949050246978635e-05,0.022023454685071712,0.011252290252573698,0.03600165020376618,-0.10795331720786776,6.929404290352045e-05,0.013428898387897657,-0.0016656606344813986,0.008184175691777009,-0.08882925654144902,9.305938404209525e-05,0.0025242529268494724,0.04122596303650026,0.041063175623510015,-0.018758730426721503,0.00057384399113146,0.01045388206451639,0.004159401092990359,0.01681116016409771,0.009935193008131168,0.00010414037204443271,2.6555037141379753e-05,-0.0011377382446735892,0.004003464238451352,-0.042280776240276485,0.001824003125705011,0.0207304696940893,0.04140416925451509,0.35832297261215,0.014116271670280947,2.971334997200916e-05,0.005418195193634581,0.002348743117626013,0.006665319439279253,-0.04783904736480577,0.0011520884486995397,0.01744870778120748,0.0068162812125548145,0.041795216366232825,-0.01902695187481527,0.00010860418598155197,0.0011254276260471568,-0.009236705845084781,0.013697453570867596,-0.024940175590748844,0.00015915587054819626,0.015030397585708895,-0.0513473437354963,0.07055683442390982,0.1383773329481093,0.00041771763264630585,0.015913258274388706,-0.01796329163627016,0.06413697646274777,-0.07976436913167462,0.0021708398200909734,0.0024801371018495517,-0.011074158496824587,0.04625087577764013,0.018040081290281697,7.682121023231147e-05,0.008221911830074343,-0.014794827509582215,0.0192391768441413,0.007899142308028585,0.0019116157995920922,0.012841821518753719,0.0012392129392548097,0.0044433116296994,-0.0007048684634394207,0.00011049819977791971,0.01447320571700603,-0.0019544998476127354,0.005185073409892229,-0.008742413739948246,0.0001528062463545677,0.002473314949893302,0.024921266823566317,0.10104260132067315,0.0025756752131042815,6.019764778255642e-05,0.017797799746892128,0.011936685105132998,0.03426679294571593,-0.04904829059703705,0.0033016294878513556,0.005351662147958016,-0.021362581280967435,0.09711884211041844,0.03704637044053554,0.0001094185116179147,0.02186722347080845,-0.019745014341473768,0.1103249569752138,0.01787238334382814,0.00012979096790578828,0.021554429699880424,-0.01956184925960479,0.11284576387723205,-0.013985256967305125,8.199235226544724e-05,0.011251455592251238,0.03075951719861527,0.14954655779180517,0.06819392443372853,5.16952319561767e-05,0.001096401222044414,0.06417511491150386,0.09246513545158605,0.09658615278663317,0.00033839040396306297,0.019573507252205115,0.0048812643973062736,0.017931775281987333,-0.021291224227474245,6.768982952460758e-05,0.0018488217640939778,0.027214231121596,0.28687743912359603,0.03454186833709064,2.4475465411355233e-05,0.01937267656251566,-0.01141026299722084,0.03067235969228998,-0.0973846039385444,0.00013003415226517866,0.004751005872744198,0.03412662233294551,0.11807344993140796,0.08853722313774867,0.0004555845884973027,0.004542763783313142,0.008714807076778686,0.04537533087420343,-0.03237203147739924,0.00011000432702444711,0.013199691002350234,0.0046007661160074745 +2018-11-09,-0.01776634938599914,0.12157115801911615,0.016853674147174064,0.00015454474022422445,0.00015666152247872066,-0.0024086980653993265,0.008245427030130727,-0.006610114857311072,7.009382141738652e-05,0.006797917308053845,0.02023229540733152,0.052331572158105154,0.0056106206594988385,0.00017884573169515297,0.009609104458769198,0.0006357363128681674,0.0007188796363242589,-0.11977817604493239,0.0002984617585480677,0.011644166412351092,0.044787075429234754,0.08922330437923265,0.07790004919834763,0.00026264683588902966,0.010316520592973768,0.005025932403249411,0.012501929615096524,0.005243636013799062,8.777813181486e-05,0.010728873268696574,-0.005576246264944803,0.018734453798788166,-0.004614697661674268,8.733549071067801e-05,0.017727773768286242,-0.011883485429458178,0.10653544577555334,-0.06737159549058767,3.8251487207806526e-05,0.006421539064680262,-0.05566834862979776,0.03854598589351078,0.17329291017130502,0.0011137147382415944,0.0066316986583655315,-0.010992852418466604,0.029082594867175092,-0.02632174181813181,0.00013217189919160187,0.040920010691124296,-0.020177522034347323,0.013891303813398878,0.05665197568717278,0.0007099850087246918,0.005558986663397579,-0.009432062546582437,0.1280362009926047,0.03669230869671384,2.195314176357298e-05,0.000400409961190299,-0.011070401547929891,0.03441402476678986,0.00321687463491974,9.556061694732797e-05,0.004810146062901193,0.002342634569425523,0.013410817776508988,8.247523635756915e-05,4.9171233676412456e-05,0.010194064892462376,0.02584956623456225,0.023958364958414406,-0.02136169848299616,0.002104355242355548,0.02646691182653739,0.0010509911316951123,0.007293512518645297,-0.09872589880952115,0.00011858081379830231,0.01911381168665096,-0.06022069953889931,0.3454929200138835,0.030013298183426358,0.000269907452364547,0.004326862925047708,0.06609868835285973,0.3531747525577678,0.06109877358693355,5.271863391504594e-05,0.01405673438539485,0.013884714425932898,0.06912869586241165,-0.0009573961148729397,0.00033102850711130724,0.024184548240804325,0.0032655874636548033,0.04449111073761046,-0.014927480401336464,3.0459186719655977e-05,0.006297934262183341,-0.015858796176487378,0.14457063718683158,0.02044845606643427,3.664981876226984e-05,0.011240788360723756,-0.03865694232136082,0.10083113305486023,0.09484438298055561,0.00012349677247472797,0.02536649834861413,-0.08777352381081674,0.5854464227367044,0.06749637883177974,3.46312967350865e-05,0.001664133242075334,0.006280571046676296,0.016707174516678705,-0.017015366477174113,8.334383992747033e-05,0.003882209882979431,-0.005236760953692595,0.022404369805159443,-0.008951350843495437,0.0001068756115736758,0.0021753840954354528,-0.06924490398165489,0.06671189955923107,0.16310932769279785,0.0005932804968230917,0.0011315590047928231,-0.013918675397236862,0.05781804577323888,-0.016924229208741516,0.00010132590866597383,0.009854634693685376,0.018333346952922075,0.05165130247036004,-0.02609972085225926,0.0022781360402645444,0.004644797399208137,0.039909645464519417,0.3191461983008736,-0.06450301741845917,3.215661970893685e-05,0.0035854860671584426,0.07060580102841214,0.2334718000010651,0.15561147241424234,0.0009887288866334996,0.03530396781597508,0.014232848485762636,0.11811556086538344,-0.060793404311334905,8.024359048334439e-05,0.009545529085265757,-0.015332387862690804,0.02069475679693561,-0.019764930292742493,0.00017486176445524396,0.000994878040019998,0.000645555879753373,0.0008794744042067575,-0.0018490265600286124,0.00042132240093711214,0.006198542030059661,-0.005602759418287771,0.0242485650784974,0.00396906619563771,0.0017908791133018458,0.00841674407495561,0.017981873627642257,0.06271538018543157,-0.04012027674006055,9.19922523459523e-05,0.0029524665826982134,-0.07781076914422944,0.10188056984586015,-0.009603996277634254,0.001898565280779625,0.03226736012406852,-0.0026863090587955353,0.008440163839723146,-0.029198044534674648,0.00012610175647851052,0.005558654822774212,-0.03869464039550057,0.08912135337855015,-0.017523181638407184,0.00017600678824885758,0.0011675800149559944,0.017437466320282684,0.06468604691635466,-0.02865474043191752,6.579406134487414e-05,0.01939022805499975,0.012051560802729093,0.040312368372473546,-0.004520555968887816,0.0028334988468944715,0.0046856381105863315,0.010180436046388778,0.04807073585856645,-0.016710049450220914,0.00010534797219186634,0.007853505886817012,-0.04260172196716218,0.21941041560772276,0.04839713154595603,0.00014080909201551932,0.004468452085226131,0.007011954768346495,0.03929312468086734,-0.02688771711346807,8.440559552409883e-05,0.014489432962231926,0.02878735875035307,0.13001301092440493,0.04745258346352243,5.5649645081431586e-05,0.0033884206913460304,0.011257389429196782,0.021954969249803495,0.0025409598135505587,0.00024999668557954615,0.008727844262076307,0.009669135943520465,0.04195363324919018,0.0008235375824537799,5.731027135410024e-05,0.007382611810459907,-0.006614665301185718,0.057560462198504934,-0.04238568005551195,2.964933020709e-05,0.024754151802679085,-0.010062686726005615,0.03405535389450123,-0.01118054730018398,0.00010328506309778607,0.0029569924785786336,0.004014270036729919,0.018648793900688798,-0.035303869836826214,0.00033929995759522305,0.006521830708755221,0.02639553698912359,0.10672437079841494,-0.004133836961557238,0.00014165721348352893,0.003785162038816704,-0.0031208278856164236 +2018-11-12,0.010259928384776225,0.06718307084163311,-0.009211337916229904,0.00016149945546969398,0.03891117905068191,0.003527739773563829,0.01237735253344303,-0.013877473512138612,6.838790620886547e-05,0.009847866671163913,-0.021979197157972478,0.065157669646486,-0.006388024595158251,0.00015604271060698597,0.0308319070592454,-0.002312055052776955,0.0028136367094558586,-0.011411554367967997,0.00027733073692748014,0.00017074600109709967,-0.01797136799187829,0.03228795741926593,0.03872650320997472,0.00029123149366400933,0.008569883769888743,0.013828400028515622,0.04122133346898082,-0.08012499168751046,7.324814614426597e-05,0.012655000837446962,0.011789139245158358,0.04080925251639639,0.02348662419272595,8.476436490724967e-05,0.0005306821551087509,-0.0076885143065854615,0.07743214630700794,0.0002802754012436877,3.405020601405549e-05,0.018330651097913566,0.026395134796596924,0.023478215186915913,0.0012134092477426373,0.000866969046488345,0.00877283880416227,-0.018821166307048814,0.04381131744778446,-0.007795662488516074,0.00015021804499815592,0.002291835347796656,0.0011340133411926413,0.0008536984597564788,-0.022475461654241597,0.0006492889685661322,0.012875890585536164,0.0033854718401379836,0.04224337999412387,-0.008990425166544603,2.3882695159949098e-05,0.00028813535516506263,0.015966883676588387,0.04313081008352079,-0.0022272742076798703,0.0001099723698674089,0.005730112961156871,-0.021910452982887255,0.11384489234898677,0.07405441232151873,5.417508781293457e-05,0.004939727148799494,2.5610144507525714e-05,2.794823000506365e-05,-0.07190143516245052,0.0017872310168690984,0.0028439696955387035,0.004267194895128519,0.025596229778768104,-0.004384817812723325,0.00013718877758921868,0.0014734638012551466,0.026290114153441537,0.14170006695595436,0.0013253949692539299,0.00028729670711844543,0.007652433523480814,-0.03991465661471674,0.20920345782513494,0.029858538638335104,5.3743320416232206e-05,0.01494207146426711,-0.03210960488544277,0.1339492633352674,0.006473022595745464,0.0003950767199498286,0.02047635441891978,0.02188425893544809,0.2846287500236929,0.004342957100086142,3.1906804435197046e-05,0.004005124564354964,0.006336696329602415,0.06164096443288674,0.0028935044238127283,3.434592198878258e-05,0.0043526073486256315,0.045429775749107074,0.12978273080112626,0.025204850299496852,0.00011275776027088141,0.0104080450806405,-0.050250673858826346,0.3563059457696085,0.016967909915987383,3.257700814951573e-05,0.009332391579346132,-0.0026342351637334547,0.007694461204460865,-0.020129785143225894,7.590208584137766e-05,0.0008064689477705986,0.007871038639423763,0.031022542275599037,0.022245482856201197,0.00011601209109145755,0.006439333047900259,0.001754225347975124,0.0016307122648413135,-0.039327200193337686,0.0006148704274540236,0.01590285215647093,-0.026293106578795737,0.10381794219381701,-0.03449102941392058,0.0001065995802380554,0.001046703813675734,0.013193018447017075,0.03927610064045187,-0.006875011589018228,0.0021559316102798347,0.02520428967130381,0.030709828083019874,0.29381315957397997,-0.05105665567351664,2.687746698333379e-05,0.0033877878384237625,0.0483301791297583,0.1289765710905073,0.025828900137896318,0.001225120615006917,0.016468664410853706,0.008561205426565901,0.05741061587462447,-0.05557696622138447,9.930436885675766e-05,0.0021251247352323545,0.013288805255689762,0.019428525726384087,-0.06993959372390722,0.00016143268736386844,0.001423669622083141,0.024865242001750394,0.034938530978497036,0.04138436233250345,0.0004084999083659667,0.003936729725734906,-0.0006108542068671019,0.002354950867048622,0.0005283533047214316,0.0020105091767521803,0.006060878650123922,-0.011836538199497757,0.04875267692055525,0.013381069444864684,7.789626015133796e-05,0.011011787399787261,0.002663348634330312,0.003817398037683689,-0.00042884092799065204,0.001734354076792516,0.045786570061383765,0.029556987175796606,0.09145305577208931,-0.03411790932148184,0.0001280495269150686,0.029362616505421647,0.006663208492491553,0.017812017510290865,-0.06361552878432464,0.00015164589733548248,0.020116945976375634,0.014258756446663043,0.05549738347637643,0.0008815271495430842,6.2708017075083e-05,0.011006022794316143,-0.02711510408242117,0.06638083370488296,0.03468978098124363,0.0038715656786274225,0.00203765229101445,0.031237252003233212,0.1560800342478597,-0.004317089641019708,9.95556793488901e-05,0.01945439562600147,-0.013377635055010825,0.08635608778076212,-0.03523091934379576,0.00011234329808656107,0.011000508818246173,-0.0010187355309880398,0.006052643327442329,-0.0008970643061084315,7.960953182491229e-05,0.007220595104260239,-0.06720890056337635,0.30303883683643157,0.09836420377292653,5.574114629808802e-05,0.0028381700496779034,0.07645366233847753,0.16946260688330153,0.0960180013102848,0.00021996511254702077,0.005412955767681299,0.019257388467052473,0.07879407269255419,-0.02930211111601802,6.077405552957298e-05,0.0031171166930915642,0.017636383704129004,0.19276371370985843,0.009626126512835339,2.360562696368237e-05,0.00510211000899727,0.021398018811029176,0.07566131400361226,0.16375820132056051,9.885727845376807e-05,0.006599359788332263,0.027769062328011414,0.1241767606957025,0.041804455430128944,0.0003524916710806464,0.003745833716331205,-0.04525948119687039,0.19310014071091877,0.047164654241846495,0.00013424520336514478,0.029474220605164924,0.0029327317045974893 +2018-11-13,-0.01943559615735229,0.12892881750971996,-0.04981519588419759,0.00015941693350746892,0.004658820587293364,0.04401874278535911,0.1318906695317335,0.015069360815764134,8.008184830996047e-05,0.004916996804499563,-0.059394660650917905,0.2038155643785398,0.0808768380857477,0.00013480539211732076,0.0135483966797091,0.01020644244839756,0.010065469129540544,-0.005530879226775105,0.0003422222372447677,0.0019024719722242028,-0.034149440552996964,0.0772880232738994,0.10513235906108098,0.0002311900642889435,0.0073524723509019825,0.0015775246466019862,0.004455524008951934,-0.0123108048282344,7.730794068880842e-05,0.0017899316506419403,-0.049776339328026824,0.19764490704087756,0.010311679499455873,7.389706365185984e-05,0.0007200120117529085,-0.0059295145415229275,0.052267273556391845,0.0031131882856444003,3.890343117447797e-05,0.010686995633222457,-0.011575034667437043,0.01103150844172919,0.0026295483163116945,0.0008091558631504604,0.016188514566919374,0.029251609599906334,0.0745722982305342,0.029311588034802157,0.00013716210048322642,0.025541834245377388,-0.029571179455550427,0.02324178097426625,0.07275496367019417,0.0006219043591109883,0.009796228865790494,0.020306657683147593,0.291310339520557,0.07425254319933515,2.077329257616728e-05,0.01301966705492564,-0.027148245133112738,0.08265431439243608,0.02400409489908637,9.757246391813619e-05,0.0002890479997662346,-0.017834545599349577,0.0990007307094929,0.0191099866877904,5.070904911457365e-05,0.006048902326987273,0.017677796365934233,0.01595612801540006,-0.0869459969324418,0.002160844860298681,0.0010455830161883448,-0.02390699626886257,0.17600736590121424,-0.03897184078243956,0.00011177541169076279,0.005962273416336446,0.0385666011772996,0.19394336153557512,0.020960192799015488,0.00030792480843163544,0.017695435254797016,0.03462395213538597,0.19526024705575543,-0.007015762485993789,4.994865063505087e-05,0.024394893388755466,-0.01738310475268335,0.08672569396495432,0.0012074373312295327,0.0003303439603552938,0.0005521170500263949,0.03630994252535792,0.4613349809295923,0.02146873371231146,3.266174669156566e-05,0.004830314687593013,0.03226731262966589,0.25105384664196384,0.1382261116117877,4.294154104524783e-05,0.01471923588832896,-0.020580751814952357,0.05585819635118799,0.026294692208863716,0.00011868534129166975,0.009797210714087094,0.0024581682521679017,0.01859351113759839,-0.010009796213503432,3.053813939707794e-05,0.006955246020156557,0.008512019949846603,0.027852326759053168,-0.021396738733087752,6.775612078120288e-05,0.0091520517940449,-0.0001726593816949049,0.0007695058882688001,-0.02010349901654291,0.00010259514970780166,0.006805343288569249,-0.0589504611384471,0.051241416133871016,0.09484580128584799,0.0006575694747387173,0.02425585746331743,-0.04274622810379276,0.15380501563366175,0.07226735160214005,0.0001169804559631383,0.002302039488200915,0.002526397908005308,0.007614349335045865,-0.0008978942757741546,0.0021295514152702266,0.005747537646630196,0.007205527780152133,0.08086564546892622,-0.01770471330149212,2.2913104444398157e-05,0.001303304869283004,-0.003676028181153806,0.010867637765688798,-0.009774523539110914,0.0011058976815075908,0.009782937264026926,0.01489726899407029,0.0899692242163464,0.008549727943570106,0.00011026516388401038,0.00740393752706786,0.010579808763765896,0.015639572510750946,-0.03286431591521389,0.00015966080916800045,0.0032097871076918714,0.014274214068404628,0.02173882166390559,0.0038823755748883756,0.00037689477742977373,0.0041757628343123895,-0.05106246505978349,0.20877473461355658,0.09132358143636445,0.0018957199372210845,0.006432461780958038,-0.0017322525514566415,0.006756254599575914,-0.00366682661623562,8.226130087511848e-05,0.01688178494132818,-0.028864802314750946,0.04284731824989911,0.0072608763511934895,0.001674642597458553,0.014493835851863007,0.0031670012859210373,0.010360336187982103,-0.013598279902506168,0.00012111290687928445,0.009751056836763932,0.023917817329241923,0.06965706803932827,0.009920002223159495,0.0001391927868961939,0.006776938110926462,-0.028035977228965222,0.12206873570302051,0.019487074889329613,5.605639659619098e-05,0.0063955064574797126,0.008814492016128899,0.02662728183680542,8.133074326887015e-06,0.0031375345116547468,0.01272456368280702,0.012504184992372372,0.06542345413844498,-0.029399185903760533,9.507415873152199e-05,0.009840340088697039,0.03252096034671972,0.19365953098900301,0.04868990282824117,0.00012178260805802682,0.0075464250255989854,-0.011505687120889415,0.05989504877060865,0.006248407987154411,9.085949857340094e-05,0.0008177782906374265,0.06740658706979262,0.3145903517925997,0.14571726108191493,5.3852309651954e-05,0.018448946632710073,-0.008301448899476484,0.014359874829172566,0.00012036361249824265,0.00028185947500306447,0.01447639610920424,-0.013368338240885227,0.050457783457048364,0.020391797968151413,6.588152335420352e-05,0.0012528104099868882,0.01045747731098925,0.11383992221762734,0.004162922579779652,2.3700833869373125e-05,0.0036157896547579964,-0.00833391690807193,0.025140710151656035,0.0015015407925060295,0.00011587255666761878,0.0005181737247114058,-0.005530491361787826,0.024059444736694566,0.0005823281733537738,0.0003623314976667054,0.008424318805438674,-0.028959057111407626,0.13543118431297418,-0.005303010766231752,0.0001224722050344064,0.021996529523096574,-0.0016202208804049932 +2018-11-14,0.015710597788117783,0.11126909577361142,-0.020572854585791424,0.00014931544585190993,0.0020681044498480627,0.012646718113111022,0.0480180993268749,-0.13972165948224025,6.31950991377586e-05,0.0017012516873394772,-0.017356646313849543,0.0609761613298178,0.00108250828821705,0.00013167488196196532,0.027199685512104457,-0.010128754766396776,0.009443278680775989,0.020648336177416116,0.0003619937783018037,0.0010660024278389307,0.021057400862321447,0.04522086888456119,0.013066120091217527,0.00024364843955913674,0.0031643131376844907,-0.02199697319994767,0.05809872269941008,0.036224141474853484,8.266907551866159e-05,0.0008544630110742682,0.029209558216405335,0.11983710851955337,0.05916010145216301,7.151934395650307e-05,0.006825639517204376,0.01744101391668075,0.15299408116082416,0.01357887570954604,3.909270420262012e-05,0.002945977585431441,0.0014209448474107108,0.0013447266740392305,-0.014455180384344686,0.0008148693607023403,0.0038348695265218143,0.016518528815847172,0.042610418132249216,0.009834982265326097,0.00013555559754458105,0.004555697864149473,0.0065294057921460825,0.004743468323926785,-0.02591287994567219,0.0006728248350889398,0.0037040547823282027,3.487573460086797e-05,0.0005598815656608059,-0.019794578762367013,1.8563077811056096e-05,0.0009400389073642701,-0.018187013241448863,0.050641935772368224,0.010411058393052971,0.00010668469568982065,0.010253581663325184,-0.023005287400736568,0.11442221933757583,0.014574259756907695,5.659513685226882e-05,0.0011060529028019568,0.032288218165307726,0.032268613792039345,0.04391717482145599,0.0019515817238088622,0.005699727633742174,-0.026030867526251857,0.2116603253453747,0.009016482758128403,0.00010120484182145827,0.024853846849699445,0.02479437786936522,0.14726666993464188,-0.03283602521707082,0.000260709574656858,0.015771971965137452,-0.01168735546795573,0.0717366135922612,-0.002960455559805187,4.589193161178006e-05,0.016129591937294914,0.04444504183261322,0.2075576492245248,0.044192840934952946,0.00035291602864286097,0.008606751044529229,-0.042273500983234034,0.5926961210068354,-0.007912662499336264,2.9598272401558667e-05,0.013503069613142866,0.012310504913846752,0.127934930188597,0.016934961721103644,3.2149071787121894e-05,0.013520489611301957,0.012621075008776622,0.03758722739605955,-0.00016435835586705184,0.00010816302190106911,0.0006030071102856016,0.013161126543295602,0.09420473442160673,-0.008274683723533353,3.2271021403314684e-05,0.002768250777069975,0.026947171767127128,0.07025708333100786,0.04830704147170932,8.503553659009728e-05,0.0024525559915083246,0.011870062500836831,0.043413785005663175,0.034038013505114546,0.0001250184039309881,0.005844159653094273,0.057523695455666345,0.05516038012498394,0.0365148592230106,0.0005960670146801145,0.0005205006041660914,0.016188973793045982,0.0685230624949448,0.03492388251241029,9.944170557140097e-05,0.02132100948700076,0.028226903095195138,0.08721571291815153,-0.039830360139123056,0.002077244758726616,0.003057269818880646,0.042783408029395474,0.44376927286763335,0.02940002222899086,2.4791359548685564e-05,0.009611783294401483,0.022900218888958,0.0718390944208557,0.014250879947652067,0.0010421975650398657,0.002648574212205354,-0.005454599119160372,0.03535098855938605,-0.19333498039698535,0.00010275120371901855,0.0106599767393455,-0.02757587580375516,0.04634011543951261,0.07066202043669166,0.00014044865655560797,0.0036923180928686294,-0.007051027844317695,0.011836134612546664,-0.012378715038548368,0.000341937276104414,0.009370635846963522,0.0011997862801991221,0.004783203534605354,-0.0034107531235448856,0.0019441750758169625,0.00040660858721858683,0.02888541087296896,0.09044997465078537,0.0250216610946205,0.00010246144357903403,0.014137026874140762,-0.0632960225176069,0.08733112655774655,0.045205985687579546,0.0018017085909379903,0.004883042021552041,0.03192486227870657,0.10008690004071977,0.017548015602363833,0.00012637693862549423,0.0025072596015856385,-0.005447539545360778,0.015354906211369241,-0.0579835145937521,0.00014381811744396385,0.01606672540025121,0.03170015326838444,0.15734643801087325,-0.06701188965971135,4.9172056411794116e-05,0.010581761996453201,-0.009759425862495279,0.029455143241199938,-0.051007986746000544,0.003140372663167192,0.014116845902535806,0.024853321014367193,0.11049157254132597,-0.012645370755730367,0.00011189117782167056,0.0022168676417742296,-0.04474233894854697,0.1959163687005337,0.06402771326578466,0.00016561846125794446,0.003797034971558708,-0.014506006977950535,0.08140997899712966,-0.011724280461558347,8.427891542131955e-05,0.011944015926847858,0.03281105891688822,0.14270344425948145,0.018925340253865792,5.778740417561511e-05,0.00878214047623617,0.0055170864622714295,0.01045891125999759,-0.023644049084807727,0.0002571891872630334,0.002400030914721922,0.0073505219295830395,0.02927187019519262,-0.023443623771805328,6.24427588526421e-05,0.011869337007761993,0.023016883856848386,0.2741266304712039,0.01917059280589959,2.1663398262757397e-05,0.004330223199935043,-0.021394489727267006,0.06687555521504811,0.04908914591416204,0.00011182618181377657,0.0021864889777179737,-0.004756180415540706,0.015090738128274493,-0.07118614774694977,0.0004967933895827047,0.01294814744668318,0.013326392206891469,0.06739742716752015,-0.05185893412078104,0.00011325074527724029,0.023256356049414603,0.005095693866664972 +2018-11-15,0.025433557184217418,0.1680663301984895,-0.019639290664805294,0.00016003426235627948,0.01568473743641132,0.005119835967417437,0.01827158959315815,-0.10836900977905804,6.723420001479471e-05,0.007853782771159326,0.06065646286468162,0.26919618843203724,0.0768138467142679,0.0001042330339860184,0.013192156753970527,0.002823070759693873,0.003347694365025226,-0.0022001230105294614,0.00028460584748462485,0.0035824726946628044,-0.052194810520778186,0.12637735211004403,0.12788746565759945,0.00021610053693770976,0.0011313720917887598,0.010662337368884627,0.02342232149396535,0.0028230873526893887,9.93960720052832e-05,0.0018676946964422245,0.03337161187025311,0.11659033025383551,0.034128549816561306,8.398553761112969e-05,0.007421748228791297,0.02560409196942155,0.1984402558281795,0.019963197722014974,4.4246427872122684e-05,0.0051521880131768436,0.03831739241714347,0.03466223020503173,0.007081347576558714,0.0008524800633604329,0.0058995811424307695,-0.06315495198275044,0.14408383033220679,0.0601462239618274,0.00015326890348789067,0.013189092136235111,0.015160950960236588,0.011505871751321636,-0.019543755348291513,0.0006440673329276246,0.0050299909656326865,-0.015655324984535222,0.20953307463578977,0.06683746911696761,2.226549174037007e-05,0.001819987928903773,0.06622609706300063,0.1790182501964197,0.11474668458838012,0.00010989625458743953,0.0290860056829219,0.0037755476304105018,0.019170882601757835,-0.00809269315046709,5.543699284552028e-05,0.011813783059964516,-0.0014983081511433165,0.0012451662864211115,0.008431460000255851,0.0023469117611143718,0.005985478094853081,0.05752643115078353,0.329788154336932,0.004716901773606938,0.00014354381603155116,0.015115248851167521,-0.012909610803831607,0.06799642687283543,0.005257857995948737,0.0002939918490289142,0.0013320902526434727,-0.01483537234117917,0.08535518488314649,0.0030001730630769465,4.895865738066568e-05,0.023361241852817707,-0.0031048924756523553,0.015915182393992883,4.7642549783860706e-05,0.0003215301863142776,0.004321377752084915,-0.005602761729311922,0.06913055869973307,-0.004129885506635754,3.3632745264952574e-05,0.009957354962111828,0.02007473799994862,0.21274104893414214,0.036392940028878426,3.1526829550556186e-05,0.0016393541902164246,0.032919682352639645,0.09448487337216892,-0.012480155275498913,0.00011223184603408809,1.817181134871628e-05,0.012440788590165293,0.07063372856597301,-0.06019767976661397,4.0684422342212905e-05,0.017406971576755352,0.008068555437879595,0.021934876539852727,-0.014569671359305689,8.155263076695228e-05,0.007842158939377009,-0.007086336747050576,0.0248328406961211,-0.02848416418415858,0.0001304800094574202,0.0011502477706504114,-0.06134775740317888,0.061907456102579035,0.041857806877414624,0.0005664104985654328,6.8435926637534e-05,-0.0025319352570415225,0.00970320723688756,-0.04279378460518363,0.00010983058541362338,0.001550056162330983,-0.02644170429051654,0.09217667530260981,0.017059266656341977,0.0018411432458678195,0.013914238987193408,0.011879047101970323,0.10787046510366724,0.0013413886610618223,2.8317913340440798e-05,0.008083040406137469,0.015201819464987587,0.03389182033579747,0.005438520816846829,0.0014664658195236012,0.009820225080864506,-0.04476613736810111,0.34224539516500957,0.18380035018847593,8.710391046448089e-05,0.009047053843781102,-0.010661363796827418,0.017383872009771473,-0.009863442395067243,0.00014474768728329684,0.005210472967912273,0.013251231214002006,0.018786295143561837,0.0013520227433022022,0.0004048731760830406,0.010072637503161102,0.025710882376925374,0.1026359325004631,0.01227204670664081,0.0019416363333419528,0.015012148078357893,-0.0028007633663023916,0.01059359965450131,0.0033151975366513646,8.482487558059387e-05,0.00220409683625708,0.04173997238829349,0.053202480561425666,0.019444101971397003,0.0019502822471801071,0.020188596054611103,0.001339341434692132,0.0043823714789580056,-0.019683737684325988,0.00012108717655684295,0.002319979638595346,0.009549468243829528,0.02679180395147761,-0.01575020708270207,0.00014448993920313235,0.01470928737789765,0.017713973584066723,0.07493041410782485,-0.04465508979909302,5.769946482126892e-05,0.011488011302410882,0.032985466056637165,0.0875374611395048,-0.2169494789390507,0.00357146777649953,0.0022822044122045057,0.01882035301872163,0.10200798554158581,-0.03170640198047743,9.177706497652714e-05,0.02177958338960679,-0.009287635648595364,0.05443002725778991,-0.008031417947484252,0.00012374492660224717,0.0039180757106486485,0.002647975336080044,0.01519624468183917,0.00015361973843887588,8.241881322187842e-05,0.006280638927231121,0.05591817144953414,0.23325622398813758,0.06566858805109914,6.025139621777686e-05,0.011380685384443654,0.013556640517669251,0.029147628237969896,-0.026868197118263697,0.00022676616337889057,0.001885292436881056,0.02538514436678338,0.08992740496451615,0.04130435144836342,7.019431694846308e-05,0.002004911790190618,-0.044356932684169216,0.5354539006297354,0.05975406705180938,2.1373256884432095e-05,0.005698991151120057,0.001224042284188396,0.0037746454670303273,-0.037228828878400295,0.00011335200810704715,0.003959301867172267,-0.02159028619540329,0.0787349618403491,0.054430920653910024,0.00043223382371735384,0.004536295894281324,-0.07701480834116678,0.4604618969542786,0.10576020208392109,9.579709436772153e-05,0.0036526512410310023,0.004482601144239694 +2018-11-16,0.008782611160150616,0.04833339078405099,0.00013668634132124182,0.00019215999354948906,0.01633336574568892,-0.005719107003013978,0.021076674922278833,-0.0049947987936097655,6.510834431878568e-05,0.0006660383466335774,-0.026032480390675978,0.07799509173118582,-0.0485400438301231,0.00015439935481814356,0.025574260903655246,0.0003953986516383766,0.00037562501534352363,-0.016501353449801456,0.0003552618174186182,0.0007952724906446214,0.03655153392638586,0.1059040925971439,0.04833879482879712,0.00018058872682252513,0.019206866420735963,0.006203293073145378,0.01880931434028681,-0.0005431006962107835,7.201054124887812e-05,0.002259134924584232,0.0043855383128153375,0.01766322599593456,0.0002830134894688718,7.285221137425486e-05,0.016265614554630315,-0.003810846072329177,0.02924552804622169,-0.16940574635501196,4.4684875717886594e-05,0.004220533082313746,-0.020751725418443265,0.018393463486558327,-0.009998324180813834,0.0008700325169187181,0.006368281198718631,0.04828998984153955,0.12278255897127728,-0.1111270952235218,0.00013752521100149858,0.004675924316738951,0.0469385339993776,0.03807067315125634,0.1667133505445017,0.0006026474507179397,0.0034864464067181794,-0.004401863442339299,0.05392769107523335,0.006007135000898437,2.432470200660401e-05,0.004123232071724965,-0.01185505660682538,0.03406679011094776,-0.00549275572932517,0.00010337688819955123,0.007158589995411038,0.0015477910242485604,0.00870672120985814,-0.053537397321667915,5.0040253788271684e-05,0.0020103585433871394,0.009183026990985433,0.007592084645505404,-0.001706371811811711,0.002359107829209958,0.0020813846150470466,-0.03468102989378558,0.20887045004720456,0.012474537568066577,0.000136636613983145,0.005834025146953374,0.012733082554840585,0.07888058481225865,-0.0726858749344327,0.0002499606613127189,0.019845003555671616,0.05283677103425221,0.33741345557502417,0.00023987491138066736,4.410977347251093e-05,0.02299150761472215,0.04056148492062878,0.21548317336597517,0.028590409536955855,0.00031023249852294435,0.03519571930972498,-0.009185541309820694,0.11219791440437366,-0.017446950760969082,3.397427531443822e-05,0.032485162535467925,-0.002336004264618898,0.02484373497350208,-0.0010145985434427474,3.1415100449527477e-05,0.013093923397485614,-0.0009671937998372245,0.002579990172181164,-0.0014778010931848207,0.00012075863853048342,0.008136182005874295,0.0188719417328769,0.1277525877865084,-0.002073502703086779,3.412237543387844e-05,0.0017375489526128966,-0.03433383085252979,0.107116260917774,0.11912988891915921,7.106311508724612e-05,0.0009639075580069561,0.002891911518803023,0.010793502840731734,0.0017655714133634713,0.00012250990033501236,0.0010523114882278663,-0.07327321837504601,0.07227647797299455,0.025919324914176974,0.000579460514335388,0.02141328955417116,-0.04890242785969845,0.15719976612152808,0.067139090125136,0.00013093764771506653,0.006865166477545278,0.04877233221416506,0.17653355880848873,0.00600842771022495,0.0017732314348845857,0.010341772970615332,-0.0006691537824038114,0.006976313502871985,-0.008317019301572687,2.46650581496197e-05,0.005026623372065373,0.030344156855197455,0.0740325543020421,0.0075814848113098425,0.001340058045676365,0.027322574476562562,0.029970624904357528,0.2082158894498164,-0.008657085140918052,9.585341121336805e-05,0.007397181021865268,0.004671159471129129,0.0063864580844048445,-0.019858714611898053,0.00017262751318017442,0.005920370707048778,-0.010728800191995035,0.016145383203864865,-0.006412139939179224,0.0003814228560847034,0.0031705263614225736,0.024641417865520824,0.09122423676940741,0.002880515835699333,0.0020936582661245083,0.027514023534674626,0.0013338391328941458,0.005375887809300662,-0.00012898234832215292,7.960560155034372e-05,0.01382951594518437,0.05411352724866466,0.07300231743091239,0.028803150640572442,0.0018426650056132178,0.006371492809419816,0.009871042386054036,0.03708328099299119,-0.08748608521669528,0.00010546318946222936,0.012619127220847964,-0.004081860490484752,0.010527000165778419,-0.003573549331850782,0.0001571860149534817,0.0008084597188612892,0.0001308630932016057,0.0005353915082483545,-0.009080203675277423,5.9656755196961416e-05,0.003183125046526646,-0.002389507488325591,0.008689038270413004,-0.018948969006562618,0.0026064820820307904,0.006440311581518231,-0.046936409613345935,0.19475756521845547,0.11832691431942446,0.0001198825851426992,0.008881835145473591,-0.006585733605578807,0.031220319817271382,6.36957674069243e-05,0.00015297751300565447,0.015255412413907012,0.00237268229006595,0.012947368822595085,-0.049991444116789505,8.667757805667467e-05,0.018177172628925816,0.03237174646281193,0.14811858382781457,0.0017027139376273935,5.4929288563555946e-05,0.021400810535938383,0.05178125246029609,0.09574595909456726,0.03392564735689615,0.0002636826113000927,0.0006360955355713756,0.002182988048987075,0.009012327755199685,-0.0010636562109515616,6.02322042007684e-05,0.010139079968658794,0.022181802664035837,0.27120741009360344,-0.007332686672248485,2.110214347021088e-05,0.00220440096383761,-0.006084522468370482,0.014464860125907902,-0.06287163028286093,0.00014703516908132138,0.0016246832014933518,0.007504244203389608,0.030951923147884947,-0.00016270122026453498,0.0003821618150769125,0.00031552841074583473,0.018564994594089043,0.08908500084433815,0.01062551245957238,0.00011936088621748688,0.01736686653673377,0.006214220174569549 +2018-11-19,-0.006339924138548278,0.04482177193140235,-0.005080774770092595,0.00014958278807309226,0.0026649673727571184,-0.0014165599730338889,0.004130872288123729,-0.09268686888191396,8.228178872347356e-05,0.013433762846731435,-0.023998249978096207,0.07395750592891223,0.011084997807030242,0.0001501047793175116,0.0009486596195882559,0.005989952715839573,0.005727438998442799,0.00012552514797903156,0.00035296429716009833,0.0026537062544049216,0.0026719979909515927,0.006049066866062281,-0.005840258175405989,0.00023112424972451302,0.007678593418207002,0.01695060287606396,0.038713648599269235,0.018856521154017748,9.560217775814757e-05,0.004315902285668572,0.014630962289070962,0.05561731016142742,0.015256250659870168,7.718852908332389e-05,0.017199543840027712,-0.00517303726791832,0.044259201421352874,0.0005138938488386717,4.0081193779472345e-05,0.002625335744650478,3.750176526670329e-05,2.471994214798024e-05,-0.02960384550987329,0.0011699008263084032,0.011484157832499698,0.018238710659034894,0.04669466816057499,0.010451556655756348,0.00013658050893578487,0.017273452951180702,0.0019852347320335993,0.0014102991589926505,-0.0632578821869913,0.000688057884741537,0.01020329076189435,0.010306347826749107,0.1331118311768216,-0.018712711250878238,2.307336449538904e-05,0.0025696688253982877,0.030706139478703688,0.09762910603060232,0.0015784386289637619,9.34322792809186e-05,0.01190503458975932,0.0012966539504054109,0.007643723856146554,-0.00370083240055961,4.7750829123558136e-05,0.006090349199552872,-0.010632283419279255,0.008850591337042739,0.02435105634598832,0.0023430266540502252,0.0068447885885574225,-0.04038509735315005,0.25553778485173695,0.03446547751719875,0.00013005232364733237,0.014938401785366278,0.014507094584555447,0.08649632300490455,-0.0006913800068791493,0.00025971140918690293,0.0024777913205337168,-0.01744773504420159,0.11081827412388723,-0.008623604085019027,4.43494901381147e-05,0.009133815139893454,0.02146484129738566,0.09493831406741327,0.0013194031962493167,0.00037262584518910264,0.009523643005590558,0.031203636092854297,0.3811938349828155,0.01717217682875793,3.3969532298152794e-05,0.012798607317652541,0.0241193160275607,0.2525985779593449,-0.006427299750861816,3.190184464238655e-05,0.005509287918321903,0.019565674208457607,0.05302615094384906,-0.006955389733488538,0.00011885774044271187,0.006215044566451644,0.00621944371060577,0.04800248096681029,0.0006162023246158,2.9928174924594e-05,0.01707818413304895,0.005407437792098038,0.017769683431076554,-0.045559954157837076,6.74666619974186e-05,0.002017506496886834,-0.011284054879699398,0.04426176925954473,0.027533247464075025,0.00011656952195069457,0.01477457001268452,0.06286868717748162,0.05603638571293934,0.05510823578821487,0.0006412683960831695,0.0034371696787037637,0.0066869512299096295,0.025624880389287612,-0.008428313472886155,0.00010983792452035911,0.00503522352544268,-0.013213027076934003,0.04405965106162244,0.007367300757198092,0.0019247771146043825,0.0032191360013119827,-0.0014317960253946134,0.013250295078190021,-0.019500976774571584,2.77867528254693e-05,0.012754939532614746,-0.026282483730816954,0.0908982888801033,-0.0038760467432661402,0.0009453267908963559,0.01580687185974363,-0.03840426102809283,0.2730114968556856,0.09210476057001776,9.367509021013548e-05,0.002073814199784774,0.005126145432956881,0.006972039408215848,-0.021385045963511574,0.00017353076301387891,0.008387107815237209,0.017050247537839635,0.026334214731127785,-0.006975903485241712,0.00037163296458614663,0.0025348058610530503,-0.042676841632236784,0.20811055306931622,0.046034228477541496,0.0015894559962113957,0.014809751215175174,0.007586066782628857,0.0316815031154683,-0.026635869576482573,7.682476734265351e-05,0.004372773657487401,-0.033249694124425896,0.05282584752132622,-0.02191080621384614,0.0015646542091287718,0.012949644299362786,0.017613248631496107,0.05895107064757476,0.00982371495335912,0.0001183760393651044,0.00043599654469625795,-0.032716371488519184,0.07466140375116824,0.016096253202081245,0.00017763533358506394,0.019763149454158507,0.007503980550580867,0.032579841998967234,0.0005974692151362624,5.6215574193556176e-05,0.0017210042795492322,0.051588189310606686,0.15354473446203562,0.12435180730115694,0.0031844425271030144,0.003059220361510202,-0.035666969330392845,0.17276243445565317,0.031043564347956392,0.00010269693064708675,0.005292443998465758,-0.04600201464884772,0.2955096197198573,0.04704845671312439,0.00011289273985764234,0.005639576695653108,-0.006886209213305745,0.04092511683258648,0.0013189061022681617,7.958642264647124e-05,0.0116600885637062,0.020230056370106914,0.09672350043221228,0.0037600944460233804,5.2566914060237004e-05,0.02308019399347741,-0.030405107500458134,0.059992811942102896,0.01997420165949224,0.00024710226083579753,0.018325423380735957,-0.012166600788452456,0.062013179909169304,-0.17573162016243862,4.878649662648212e-05,0.012435815977221324,0.03179551700102437,0.3067624752080816,0.039406790716290066,2.6742065192237645e-05,0.0011159737139406377,0.008479880176225682,0.024466145573820968,0.05303758961037232,0.0001211527076458447,0.000799794475990945,-0.023040214536431465,0.09981010668555053,0.036891705619223066,0.00036386473755346924,0.01211139137986298,-0.02673053880399913,0.12802283345463183,-0.11438786437062154,0.00011958923118392988,0.011479914252306996,-0.00021854113346287502 +2018-11-20,0.010808142071457402,0.07131743026135817,-0.010002620271697701,0.00016026620107278781,0.021032231593009036,0.03763040767833754,0.13827763839345922,0.03209506277012719,6.529764165786109e-05,0.03723511351461483,-0.02999086583235345,0.10557757273364705,0.015200731856998781,0.00013140580021157001,0.015917818079716956,0.006427174648353168,0.00720449372644226,-0.0003762319711843674,0.0003010817905397392,0.012240639769509613,-0.0345874414069763,0.08752971415130749,0.0532692503327246,0.00020675722686577336,0.012410398824692042,-0.01777332981506039,0.048748913800945634,0.02783522622393462,7.960687877879902e-05,0.011104084564452351,-0.0104760564478188,0.028875644240646217,-0.002343142972841863,0.00010645253368233405,0.017749094979486575,-0.04864454970965016,0.34356491783205945,0.20486646704942107,4.855388567798398e-05,0.019184582938814608,0.008172835353119176,0.006158444427263091,-0.019333476581932282,0.00102340258524971,0.012363404593677334,0.032208490825268624,0.07352913218332872,-0.01216937602100001,0.00015316968594579036,0.0004909170305111884,-0.011079135022240314,0.008100948509182384,-0.003293185051980198,0.0006684891175358331,0.02234632057570226,0.0018525434221175684,0.02352386710592578,-0.02259422039783709,2.3468345239787052e-05,0.002257187812753002,0.008267662061546914,0.024105772026689874,-0.09386156709747566,0.00010188557704219898,0.019933796650502295,0.0011582454357759817,0.006076462399730469,-0.007294210566794114,5.3655173175095114e-05,0.010132017749835028,0.01387282592656481,0.011877367656858815,-0.0008588189876299444,0.0022780733811558784,0.013954642229961659,-0.07076545826864113,0.46594937101672357,0.09338126976537349,0.00012497832545815238,0.01726971274253573,-0.011080923550150093,0.05931340456217067,-0.06255138715066934,0.00028928861180494575,0.0039016040296584193,-0.030673202419100327,0.2136238295392802,0.010865264631914173,4.044551599476501e-05,0.006325292541073225,-0.04290271421463681,0.2514302186539792,0.044333531355797415,0.0002812251148617559,0.008517618484296921,-6.846080608203339e-05,0.0010090332403480246,-0.1581422416225983,2.8155728342100912e-05,0.02173020395643348,0.018441177116505565,0.19102217373708746,-0.015388451673371566,3.225422158915849e-05,0.010680302940890464,-0.008381529011193049,0.026311683899990983,0.011350324288965584,0.000102611814025522,0.014574085356768657,0.0310956394947086,0.19701136533257368,-0.05103338146851158,3.6458650381989904e-05,0.010217995609165552,0.016650052425531154,0.04781720490715853,0.018726374930193773,7.719848921178366e-05,0.004164469050509613,-0.015721654307717724,0.0613091818822688,0.0445856152443022,0.00011725228565350253,0.00470669474883764,-0.021876121687682607,0.022220457925953955,0.006273661462614628,0.0005627206946951606,0.011529065472258196,0.0023181469508062502,0.007906223585658078,0.00806119751442017,0.0001234121391726622,0.012518533459745785,0.022655179127955723,0.07159552424949092,-0.023237894170866788,0.0020309573416845204,0.007391909917660668,0.01599456798209969,0.14426005158951818,-0.00017768518249000137,2.8510748971236437e-05,0.011665800834025662,0.05401403692306618,0.16033914919127412,0.055648609505753864,0.0011013829066150206,0.006717146734002077,-0.031607519868622515,0.26108364964275654,0.06286634467375471,8.061881084218468e-05,0.004758663222061898,0.004966835329562087,0.0077059583669511315,-0.03893483409991423,0.00015212426383832492,0.0025483152205229916,-0.027952533781374266,0.03130905355750018,0.014716362305702821,0.0005124543161124747,0.006729695646897703,-0.015711583575767574,0.05887317715664846,0.008752123992560056,0.00206848715084786,0.012859932854532647,-0.014766448400225436,0.05997363621057823,0.0282268029862565,7.899617106032495e-05,0.004447852573983172,-0.021947879616251373,0.029855779611155202,0.0006248952205515226,0.0018274325027978708,0.022644908554382132,0.006032471893149745,0.017041068592373518,-0.0051153340109550026,0.00014025376199301097,0.0067317130433847995,0.016446552924196427,0.04453038118918632,-0.015819909614104725,0.00014971966620962957,0.008101189042623086,-0.02857324073048164,0.1282330755655497,0.041759706936413364,5.438427791631982e-05,0.006471519085111012,0.044735637723082415,0.15054050875061614,-0.019095255077786002,0.002816555486475667,0.008361726397454734,-0.0352216149383196,0.19134800295449628,0.04949743459893981,9.156424137563925e-05,0.006831095260957142,-0.012603021350943034,0.07671713597384855,-0.0012896299886863659,0.0001191360166245873,0.002612723316907092,-0.012204922720737114,0.06807252862091814,-0.02696062957726109,8.480312365192397e-05,0.0018685630440076996,-0.022629312497867357,0.11539626691374105,0.007585631310397148,4.928638840181117e-05,0.014186718904239632,-0.0007447753939824709,0.001569586898822543,-0.012439625324842047,0.00023134991749127384,0.0018185092258877857,-0.024329602656115147,0.1043938303971676,-0.008139804467297012,5.795281806220248e-05,0.007189101687646165,0.019280733186842192,0.22964601413814384,-0.043413224723051334,2.1661868658202272e-05,0.014943333228404899,0.02153135196061698,0.08414126702567955,0.15120583302504206,8.944812002986658e-05,0.011563834462667526,0.028259846403873756,0.10717404251000895,0.05833379683046059,0.0004156312140328612,0.008158532311763646,-0.007282313761672529,0.035634825758382914,-0.03620020171573692,0.00011704868614517798,0.005875838975512507,-0.0043198916748955415 +2018-11-21,-0.006859413901889041,0.04162211393002136,0.012116732686235417,0.00017428076578472076,0.000606141523262798,0.0001469444580463507,0.0004679375973634024,-0.0037954076171632153,7.534870580071653e-05,0.0034277138509784533,0.035214399614358884,0.1354762240314994,0.0029013555170218546,0.00012024150660606694,0.013260649118137886,0.007343947623679871,0.009397063678598393,-0.02714047869380561,0.0002637577669766561,0.008829724795854997,-0.02292462072082734,0.04847208197941335,0.011193523146936165,0.0002474618512100883,0.006456040369841729,-0.010317485552173745,0.027853121695508173,-0.019493320844418738,8.088104104124701e-05,0.006593321195805155,0.027405562940108017,0.08164726544791769,-0.12323087579604976,9.84888210433208e-05,0.006219584132731949,-0.016881935812841743,0.14379951813433345,-0.01803593653981326,4.025904127592898e-05,0.0035215204768098063,0.018361149687570598,0.01572766991326285,0.018082233743328156,0.0009002855343594013,0.005830299394346131,-0.0042939288966877326,0.011774864825144327,-0.007175910273550931,0.00012751486190451568,0.01197674444868341,0.003864329788709012,0.0031623197461092445,-0.0182295622728476,0.0005973003388951915,0.01045985805450756,0.008974414576471895,0.10781745081067776,-0.07335421135892348,2.4805035798230374e-05,0.0059634245739159375,-0.04478684797604203,0.11271561504470337,0.02096856033738427,0.0001180368065573331,0.009313078787075813,-0.010313608615826291,0.05985598342907762,0.012020002740045789,4.850258599524228e-05,0.0025992610444075023,-0.0217956997927502,0.02024478189458811,0.032673866332468396,0.0020998133267937165,0.0022673954341148926,-0.009737366981092758,0.05183448416758956,-0.003992186224866072,0.00015458767475263468,0.009261678191661668,0.04123748723799204,0.2211998444324885,0.005991039074287029,0.00028867927696094253,0.019145347070507506,-0.015874111004364845,0.08682218265813281,0.003842987024269434,5.150147523292272e-05,0.028485205333220187,-0.031250833155302374,0.1989706702914624,-0.008742213794553736,0.0002588566608786497,0.03454355417576713,-0.02863583741658282,0.3793032380573261,0.03256249263811871,3.1329507587098415e-05,0.006145565619191966,-0.0450572679902949,0.504268376894562,0.2132254286174718,2.9852783416908844e-05,0.0026275423858119593,0.028360388970010655,0.07391855447437226,-0.03657354848942892,0.00012358947103117035,0.013885229220432043,0.007244668954015543,0.040180981661713036,-0.09986945300943445,4.164763824118516e-05,0.013045767227646903,0.002820339396470028,0.007996750081730765,-0.06097664459981809,7.819252413478585e-05,0.012539655492395538,-0.005426927816234726,0.022371574420859183,0.0047052244871250825,0.00011091903731245697,0.0002862117762926261,-0.045761740687243264,0.04449460880658912,0.014991161876863696,0.0005878556604422281,0.022767633114754396,0.03602585370374216,0.14880610572506114,0.10579055314144753,0.0001019012564340505,0.0010001600661026172,-0.003842828203669778,0.014898790551197647,-0.02083665092805236,0.001655461668540176,0.022079868149436202,0.00963599136329664,0.09813004990492105,-0.1154324937929694,2.5250883468136285e-05,0.00884689907953142,0.0434477409558737,0.15376730501295677,0.02557921681199718,0.0009237925752715064,0.004987145256208999,-0.015543327037953664,0.14128312257830825,0.00581298127068076,7.326209661522444e-05,0.0002840579958683486,-0.009608587095954703,0.01434471133186366,0.004922875552478188,0.0001580931687363838,0.00554192728915371,0.029887283360689715,0.043626957919718164,0.021757678858354036,0.00039321984166196586,0.003873579989701204,0.0251949733062358,0.10994038711848247,0.005293347774943036,0.0017762618238582398,0.007806168936107324,-0.01529483437009526,0.06993189634572608,-0.019291970563240623,7.017135189125159e-05,0.004177511814652575,0.005228815134019991,0.006928312002220668,-0.18879810294797877,0.0018760872946988276,0.016152178692217443,0.011521789183196973,0.03590706373406708,0.0018152451773062281,0.0001271323481461766,0.016075044396960024,-0.012769926985641921,0.03480657801282897,-0.006884057440068083,0.00014872619332034355,0.005163217701208701,-0.015357651133886603,0.06368077204147832,-0.05032548998580649,5.886137499231563e-05,0.0008175424818925342,0.010873388999935818,0.035065565285774494,-0.006305273173906471,0.0029390172754461107,0.006386583571930655,-0.02143162173843825,0.1134442575046521,0.01697260940641772,9.397516333436564e-05,0.014870233323979493,-0.009209019771391587,0.047131939410014034,-0.01830489189357247,0.00014169642041137603,0.022022041897249114,0.007614433057454812,0.04841293184558076,-0.017637443828543466,7.439176926813942e-05,0.010872973274858137,-0.06295159989227034,0.28205079536666045,0.04390556359024756,5.609534691008205e-05,0.03268476421915988,-0.0849550051816872,0.16903417120379038,0.07043774912354937,0.0002450438776360079,0.041530310916302354,0.006956302069043497,0.023607275217171413,0.0006522460705070869,7.327350144372502e-05,0.012628778247510752,-0.0014840283369072938,0.016296658333027167,-0.01894251242877312,2.349497129195941e-05,0.0011992603846410668,0.015928096766358407,0.04927152636298395,0.06879454228208215,0.00011299958114207642,0.002797412256548515,-0.027840836908088237,0.10331963717313647,0.030181214857171214,0.0004247441291659657,0.004302206212972633,-0.021589044712879833,0.08906281565366253,0.0002736043222994018,0.0001388381444881721,0.014904683040554917,-0.004749029751870381 +2018-11-22,0.021964630260737687,0.13485439232747615,0.010997662126517383,0.00017224450847231587,0.015409392483399377,-0.01134118488514718,0.034672084651948425,0.010129976310147185,7.848542289631357e-05,0.017679793871745307,-0.007748514121246982,0.02899716748653567,0.0008128553489222072,0.00012361183579837577,0.022059249366747892,0.001926178883239576,0.0022499919308574872,-0.06847605863253942,0.00028892392965482335,0.008404512994126472,-0.039635107689710215,0.10787432206755815,0.01628778335792058,0.00019224707260038544,0.002028915413567432,0.005769289254433502,0.013741297676294348,-0.0351894262554104,9.16729708381823e-05,0.007483270350931718,-0.026301084178637694,0.08955906217220136,-0.003080891411990614,8.616957864133455e-05,0.01667118643023635,-0.022509463627200382,0.1762350162567252,0.03232642158110595,4.3799742571603774e-05,0.00844061250799536,-0.00030549457305157517,0.000210677699969735,-0.025860202980164934,0.0011182263398865583,0.004430953973629229,-0.041005981990732104,0.10013651137913714,0.0606450871112073,0.0001431913046029907,0.0006761851439451559,0.025160648891485185,0.01963211909701595,0.029880574450319372,0.0006264393288275652,0.004728522486409157,-0.007008613097658688,0.07908943710454126,-0.11376921728421552,2.640805347550098e-05,0.009200910892782193,-0.004164564459152227,0.013628817510228153,0.0006061893848420408,9.077420414752535e-05,0.02879008472284937,0.001827545709585933,0.01177193279738858,0.0001001391792886393,4.370008606232561e-05,0.008307370765489265,0.01708910609567836,0.015626267455310386,-0.07497165770646892,0.002132981385140225,0.004178690124147933,-0.04995250201489757,0.31741306407778913,0.025869529837659572,0.00012950440959670517,0.019260456941933242,0.029975538740416592,0.161683658606885,0.0016735444687592529,0.00028708407440980043,0.0002788547395217414,-0.0344474950451971,0.18503076497934176,0.019862768226932965,5.2441445968139637e-05,0.0017795410104681703,-0.03707039560441668,0.22114474192702283,0.004607563133596269,0.00027627234270640545,0.0053612667827055045,-0.016297836487412495,0.195442229981147,-0.01188708287710609,3.4605233046699016e-05,0.00435084902847748,-0.005276013760927692,0.05641917297504326,-0.022168085569521476,3.1243588769455985e-05,0.015842375093041195,0.041495742063407275,0.11538025718397411,0.025144960441845388,0.00011584966667562627,0.02562429984154574,-0.028840019977352672,0.19159851220236468,0.004938060684195399,3.476928825873837e-05,0.03179418835834853,-0.010481446586849187,0.0283507831366605,-0.011508845899402584,8.196596341398098e-05,0.012738410168889661,-0.002050833090935128,0.007924362817363476,-0.04087768191652042,0.00011833536656218781,0.003487654536219801,-0.05250569948370377,0.053268743268874055,0.027960742593967674,0.0005633905512042013,0.0014742095074221485,0.049216396845170936,0.15635846961521607,0.08840710113061222,0.00013248735005943232,0.00963637059338487,-0.025768722463623585,0.09016256294344238,-0.005992746415843748,0.001834365249124725,0.014215816181381609,-0.0370129443632146,0.32687872671053464,0.1781088582548663,2.9117170671525103e-05,0.011029244259204733,-0.006602897543162654,0.02079853277678725,-0.027283538149165155,0.0010379421035847064,0.008111719647430722,0.008736668661239965,0.062391822289191365,-0.024265444263146627,9.324892595418061e-05,0.022436707941507632,0.02762915657445049,0.03755667611880207,0.05978390928220678,0.00017363043965771044,0.007416902926923733,0.006044617206110252,0.010084389563421505,-0.005351665072441649,0.0003440512203087694,0.01281014000169483,-0.032441665718760136,0.13513495104885284,-0.052140799846671214,0.0018607404447521607,0.025796474204197006,0.026660906892743072,0.1358915721617742,-0.13522562140949632,6.29466707914242e-05,0.009247700256249021,0.045107071909676735,0.06789524415871191,0.04313106926066775,0.001651514813462496,0.021606237232613887,0.006446778964134463,0.025482254941025795,-0.18573562026839113,0.00010023536133395664,0.01891566294667048,0.02610852273121543,0.06296022510007498,0.026362139779098563,0.0001681033635891272,0.0009278548215671742,0.03649977000794269,0.14850128967492,-0.016187888653966833,5.998930459753134e-05,0.0009389727878693758,-0.010811163820431183,0.03629859027508371,0.007503919335957551,0.0028229341492910717,0.007341468065101303,0.029493951986455692,0.13088442467847985,0.007471956851293145,0.00011209482706282305,0.0001078677203837521,-0.020358447901890123,0.12119051610320239,-0.08830902541934886,0.00012182511061454004,0.0064800364983763695,-0.03448938669517431,0.1868814282467425,0.05594326651243406,8.729070997214456e-05,0.0017182812885195007,-0.0007758540204065013,0.0030383048794672784,-0.014401625624822278,6.417946001209807e-05,0.02171440735161062,0.009874576715116943,0.018126668731659253,-0.045294338497907594,0.00026560110910663586,0.006732626593291836,-0.0006171372761056871,0.002428768530717397,-0.0021644715113830104,6.318442360739834e-05,0.015870279431473403,0.028139472512452773,0.2957724394318274,0.023118378673765948,2.454649762559339e-05,0.002258166288276535,-0.002066876511629453,0.006398710777930231,-0.010757189037353579,0.00011290963772341504,0.0023701788554286486,0.0018489612560062805,0.007120535590373608,-0.01473891473512828,0.0004093012964478688,0.005419728794894115,-0.006350110436379526,0.03581773688373321,-0.037888396856076326,0.00010154415558320089,0.02658252173274758,-0.002755715609641754 +2018-11-23,-0.04213558506200738,0.28960226965748337,0.1282771948228014,0.00015386280702969237,0.002677092061898867,-0.016225405562232415,0.055462149834022076,-0.017733094628917888,7.019551874650367e-05,0.026592907898787568,-0.019036424139254274,0.06070856105946403,-0.02733941963708551,0.00014505497810351887,0.04130610722859388,0.027931576506838834,0.031110532355933,-0.08273603167608168,0.00030300923315544664,0.005443211330021104,0.00952386224658201,0.023123421077900982,-0.009634584762914603,0.00021550571398542816,0.005323506371641377,-0.013404065717748386,0.029461207376256866,0.012257040631725283,9.934196523192246e-05,0.0038221024584434065,-0.0011222933620949594,0.004420081362107424,9.712540230390768e-05,7.450166622216498e-05,0.00386641312165787,0.007368281194085888,0.0646098259985647,-0.015574398546998337,3.910805654460694e-05,0.002622870174126119,0.019783002735305567,0.017457406262891197,-0.03187192226273034,0.0008738910245759591,0.007790028703429786,-0.03628899638042881,0.1000663737055355,0.02579483889643614,0.00012680859246861677,0.005636097135400661,0.008943041641766014,0.006676585815726552,0.002981365364705332,0.0006547193488411814,0.0026829616474876553,-0.004364098567653042,0.0755268089104664,-0.004160637925321332,1.7219328240134524e-05,0.0009678308291465045,0.012349067556519643,0.029543181109767204,-0.0101930642642608,0.00012417322122986626,0.0020775902057566862,0.018380690521301524,0.09404434453463101,0.0365070583296576,5.501624651184319e-05,0.011810411555415158,0.03812652152477527,0.03109246158499194,0.016528729256358076,0.0023916358257070674,0.0038475684651613274,0.0854220010212816,0.5557786657957864,0.1855223523943067,0.0001264794523684239,0.04042550938268828,0.03589096300643089,0.17314382370648432,0.0007862442663276189,0.0003209861833840311,0.010560626429520905,-0.052439936347254974,0.378195181811641,0.006475814096706664,3.905774091067021e-05,0.005251772741952023,0.014838380055167863,0.08416580490110544,-0.05252192476305468,0.00029056119759264976,0.0031086978091892856,0.006314275554384958,0.07723741798796027,-0.06301911530576271,3.392548106748695e-05,0.008539704812213356,-0.008103697470417549,0.09001766617083602,0.007345829510751274,3.0077184469654643e-05,0.00562095859614235,-0.006006996343044689,0.01752070865108501,0.0011421903619578506,0.00011044052322530781,0.006913216392684741,0.03302020428379312,0.23266010322250102,0.011212443997817333,3.278311486667448e-05,0.002174718783825547,0.018885104027483196,0.06857617187787338,0.029125300648227076,6.10553219827281e-05,0.005511188681114981,-0.003665567457682092,0.01566091848194785,-0.00034575946260218893,0.00010702188176183464,0.004796489383148975,0.014164023135844566,0.012881573410384976,0.004141767458884093,0.0006284826254459838,0.03644778296571618,0.005509152926899455,0.025466765662339314,-0.006978726574737929,9.105358401459738e-05,0.0436339323448525,-0.04387806324793554,0.13073281457255947,-0.01880167729533484,0.0021541801178455167,0.031055153282253042,0.0627934211520482,0.5624601176058011,0.09623124801473075,2.870811036610262e-05,0.004720321822731898,-0.03793128925012963,0.1282346490139483,0.015348864346204187,0.0009670824154738818,0.0053086869226439855,0.02288240684078654,0.1631275404097481,0.02681394746091988,9.341143807099192e-05,0.0028186987040815965,-0.025979413499356965,0.042962653356083284,0.07213642064373146,0.0001427196044246468,0.018550800946560055,0.02919609214481582,0.04277447141960475,0.026648837816150867,0.00039178155708210084,0.02399040413486255,0.0259957791223694,0.11817727897496624,-0.009116483172475424,0.0017049796243963197,0.0070316400274373185,0.026461122431516756,0.09400749616233098,0.028064798898986193,9.031006335992616e-05,0.0038631709070421788,-0.00036703923880155724,0.000493801917858856,-0.002937066283513882,0.0018477232134706447,0.012876314920429285,-0.018157917913066188,0.052540197906255005,0.043632825866341554,0.00013692740593738775,0.007833150866105443,0.012211262388539946,0.029197947763383424,-0.04437071712685819,0.00016953860760770783,0.009417276755723424,0.02564562036300345,0.12033488783840535,-0.00989400928685959,5.201583524382885e-05,0.01375999677410015,-0.003490100749953671,0.010828806377762798,-0.025498966603590092,0.00305474831240605,0.010149585281635147,-0.014794040262448863,0.07992085108170648,-0.03303097202427634,9.208041478575063e-05,0.002128613381527418,0.008918177835660342,0.04542295514657239,-0.04097986291651326,0.00014238411079065308,0.005410261769311952,-0.004296875681941153,0.029503728918221294,-0.00034521094084023627,6.888498662713223e-05,0.004435883978566113,0.00039753701972868895,0.001482978776310935,0.00043067234562550846,6.737364390272643e-05,0.0023344101237904157,-0.08572767135601546,0.18455819300568793,0.08202168709453261,0.0002264733434694531,0.037962517244382175,0.011129677893853246,0.04218996556348042,-0.007904727538190853,6.559757737919574e-05,0.009029192964738326,0.005744795196776836,0.06785273182035254,-0.03470799077964772,2.184431842282509e-05,0.00667556627099833,-0.007689512368975264,0.02815197641450002,0.0019597071644110275,9.547702416471325e-05,0.004949357601006574,-0.011217171605297354,0.04402282026988332,-0.006309017923457417,0.00040163677685975586,0.014633978078839486,-0.0366968417508512,0.19186609282070494,0.00997165358703732,0.0001095474451423446,0.0005064807341546398,0.0016063934609292338 +2018-11-26,-0.007483383699936256,0.06535352841694099,-0.013862924347840273,0.00012109202937417869,0.01775892312379513,-0.015915887606073327,0.061529035448429185,0.006372758311079712,6.206707558474701e-05,0.010951000215835071,0.04107039226921571,0.13815715780336585,0.036643191888175296,0.00013751582072119394,0.022954932118876736,0.00770691867020988,0.006932456406264501,0.00038773330368015694,0.00037519883828693827,0.004546915047693232,-0.03214844698424127,0.0705772936743024,0.02745614964166859,0.00023833771384868237,0.0038594520075080525,-0.03360638491929631,0.08666869677080392,0.08981042202022015,8.466545975272309e-05,0.004754979751400231,0.000777938947799563,0.0030823195492372933,-0.06380141380115263,7.40555666877781e-05,0.0017279782692163686,-0.0025658480665217438,0.02496509782660123,-0.005952146676367261,3.5244899692220894e-05,0.008608551285728032,-0.007436265019904589,0.006431301022190419,-0.007323460738018537,0.000891663128217342,0.000986108734541974,0.04782010481419435,0.12948481434749573,0.06729198799201021,0.00012913785595300529,0.006587242007041472,0.014670446656560083,0.012515891788238967,-0.0014634161417366748,0.0005729357144579785,0.0015426999286425,0.00816395933400474,0.12321579076628299,0.012722031722004748,1.9745005253033073e-05,0.004055970260843278,0.02304779506641232,0.06429263857726161,0.005324143490147424,0.00010649253662004847,0.006893080575806442,0.007061193599114467,0.04134095879655441,-0.030838924239715848,4.807943909387674e-05,0.004957082204901068,-0.020246223793177094,0.01410234547462457,0.05891078869068781,0.002800113632309122,0.005765476788660746,-0.05274203963145717,0.35229636830657873,0.026345779822016257,0.00012319720706567688,0.03827538846076057,0.011586304801903431,0.06529489999139841,-0.09548060819064146,0.0002747729144558399,0.027486405444945308,-0.026591779967793116,0.16650511507270718,-0.01278366016865259,4.498635280722536e-05,0.006360314614260871,0.060424457743020264,0.2987520807449169,0.03769062784337223,0.000333340920526554,0.034324270585139656,0.024508348090807795,0.32884015232539987,-0.03447973264459215,3.0928540795161656e-05,0.0006607123539959434,-0.014234413091926967,0.14883394721327553,0.017465887970089338,3.195356175020357e-05,0.0035736649955511327,-0.016328420421638283,0.04837812355308519,-0.046154733879330084,0.00010872211956302455,0.009552450518015773,-0.04267032525514684,0.34655661211607675,0.025214520928065004,2.844095269601454e-05,0.01422062790392373,-0.0015226234717924355,0.0038690159067874767,0.00046469966560015665,8.725079390962683e-05,0.005190282340953155,-0.01335592533354647,0.053558389053582095,0.0211597774264603,0.00011402368500575644,0.0028715376911107203,0.011978183049413066,0.010849165399954402,0.0018051772675501075,0.0006310593078634023,0.004553910878357666,0.03187569359146518,0.15028289556980814,0.03033871325386747,8.927628261223397e-05,0.018813829140000505,-0.011188444095896422,0.03568727263116976,-0.029526638745466363,0.0020122202363532732,0.009163815199971065,0.00038814227880727063,0.0040813805481335575,-0.02389252419463102,2.4454909292514856e-05,0.001898396245829719,-0.04729442079315602,0.13808814324252658,0.0010657994524812693,0.0011197595906386661,0.004958947673687871,0.016184563614100932,0.12359768215841549,-0.004887326306275031,8.71999650286506e-05,0.005519261917608745,0.025704272347594277,0.03305055555527871,0.026595467640143134,0.00018355741641228057,0.0060279307051848635,-0.020316071833464754,0.030588332186671063,-0.0038635235907294664,0.00038123069040634286,0.006406152555660483,-0.02502008162789987,0.10171437627324897,-0.022976809293824795,0.0019065874198890393,0.003233045801251179,0.030645669349351354,0.14250680298954085,0.017412523442168388,6.899599541942966e-05,0.0005829316813445145,0.01690572662388398,0.02840921433442543,0.0036870254446033706,0.0014792848529730823,0.006215837826234764,0.04757316923059543,0.1673472925756384,0.10334151295350943,0.00011263138646434742,0.017333187616784793,-0.03046692650024852,0.0778189638241385,-0.00014539525290393733,0.00015870973890037433,0.010581886001670149,0.01043239875537359,0.047154237813094364,-0.009232021304439876,5.399796266188968e-05,0.0173876582107319,-0.016351934972534586,0.06096349992110754,0.013398758844437865,0.0025422445055933484,0.0009073703299488718,-0.009569963100711294,0.0459506253412785,0.0035232603049456974,0.00010359991710034537,0.015136007979625787,0.08114994645093021,0.4571220563377094,0.3041987899470828,0.00012874099024234257,0.01547423331105579,-0.005866708752517978,0.03877322556453143,-0.022785775206948394,7.156675003593183e-05,0.0028015017444494483,0.02500592207803259,0.11672890135725966,0.0007042842632309517,5.384084539132314e-05,0.0011665900087938846,-0.0013834959925171446,0.0024086919822087502,-0.0098823263256788,0.0002800438454350326,0.005652909605470184,-0.0007414004196891195,0.0033097637775452446,-0.06388889634286396,5.570192507015617e-05,0.0036459186371606035,0.047297009589118026,0.5068243405497355,0.07631953975640214,2.407728449117165e-05,0.009507223190993872,0.0019273532690606448,0.006291511903839796,0.0017663188842005973,0.00010708170231369819,0.008570078853946958,-0.01748039905803439,0.072415801351027,0.02464670058703998,0.0003804923880062997,0.015892781798570055,0.008926629462496862,0.044209311576902346,0.008757131467111143,0.00011564997726799082,0.02135010652617585,0.002892436069756293 +2018-11-27,-0.04582843869510436,0.29947233829917647,0.07663970614224663,0.00016183219774392385,0.00620172238344693,-0.040359505232324476,0.1558279596592578,-0.003980013620368487,6.214568450248221e-05,0.024092560964085775,0.016490435396956743,0.05130517619044726,0.007402952890572199,0.00014868533770427044,0.007062216215421194,0.04622737119533642,0.04909048221528217,0.2515546171317782,0.00031781160772730564,0.0035254887615793523,0.012429231822567435,0.02700243740470951,-0.025242933541570856,0.00024084580851012411,0.014613597236441471,0.0029755073648833653,0.007124938808776085,-0.011148578622322259,9.118567777744459e-05,0.0005117119307793601,-0.0013225074045383513,0.00453809625353547,-0.07817318920648206,8.550947979880478e-05,0.009497705866266814,-0.021608608943263295,0.19574021698986974,-0.09360725309982781,3.7856927128317665e-05,0.001505898337472594,0.008970979504572908,0.00780528740006538,-0.017559193873452485,0.0008863306180806331,0.018779242068337178,-0.044702692045160426,0.09402666603595003,0.04415105933183064,0.00016624344371828084,0.02082273585488736,0.013416741645708002,0.010569337426501393,0.004639556236692842,0.0006204740921691306,0.004009287069216304,0.019873028869093073,0.25834845083834124,0.09013705461350167,2.292350337665872e-05,0.004928125104278827,-0.05742550876345788,0.15056192152356174,0.0856085537438621,0.00011330282560448513,0.006887849709579192,-0.015705299816390676,0.10638148655102789,-0.09533956040770754,4.1556790139394126e-05,0.005488299755379851,0.03337105149954334,0.027680111918560703,0.0374684076967242,0.002351391922668116,0.015078622480858412,-0.02974062437760591,0.18684108968831936,-0.007804485938653933,0.0001309874833534192,0.01563608644062322,-0.054489285977621565,0.25945142895024204,0.1076313188423175,0.000325209543632844,0.007209197381648791,-0.05522035979259257,0.3504037337690108,0.03348106435411764,4.439064575419338e-05,0.006223834401413355,0.0055531914840606655,0.026534325759317013,-0.005512945612491164,0.000344922400408504,0.004881320055747224,-0.027002999069741178,0.35840106536851535,0.023472120986091527,3.126604443509625e-05,0.014032594267405541,0.004311103536433733,0.03803336181981176,-0.00016502254405447592,3.787088438739767e-05,0.010241586573132528,-0.012771128208412181,0.034211140925085565,-0.019292295267504304,0.00012024982766506683,0.022243275990259156,-0.03560026431088459,0.2517563896739631,0.00626199794646875,3.266367881876432e-05,0.008419530901566571,-0.018596956343629026,0.05515492206814672,0.03332707601368549,7.475409335730567e-05,0.007141562153291444,-0.0028619226093173195,0.011795371750324983,-0.001715026111541424,0.00011094170813203931,0.002319889528410687,0.02113613335754823,0.018446421233401202,-0.03441436406945457,0.0006549210962110694,0.02199062836021276,0.009578290039613888,0.03394833082628245,0.0010028981885488197,0.00011875600165677038,0.007708289875962235,-0.00823597992845809,0.02556143425498266,-0.01037200631245591,0.0020679938160986988,0.01130356505835539,0.016036923667760994,0.1484877522272582,-0.05557509088265851,2.777234964824371e-05,0.007058364907535289,0.045598770177807516,0.1566699455276058,0.03419524812602609,0.0009515655420108157,0.003211399613236893,-0.02707361630756518,0.1912744388509585,0.03593337461823618,9.425729591704635e-05,0.01620152844766377,0.004567624433776787,0.005445178012443707,-0.011716069099675501,0.00019798108116539918,0.009692224907780055,-0.048214621195474525,0.07125345963425127,0.0591546712453875,0.00038839776035369083,0.011316235762943373,2.5753661311500632e-05,8.530733227124489e-05,-0.0688249428718136,0.0023399305101935905,0.026733163225381197,-0.012559659749684687,0.044695250624338934,-0.015339834383796864,9.015853947467602e-05,0.002527369780801338,0.02808198446764129,0.032051665036279105,-0.005761945682850601,0.0021779825266623853,0.012162130462386943,0.020416688265110085,0.06644869681089116,0.0029236602791549416,0.00012173483354797788,0.0014900606987085009,-0.04060872921628737,0.10476422054019816,0.0352494448549478,0.00015713277819196032,0.008403460076826593,-0.015965052076936367,0.0742096064630741,-0.007091763042745038,5.2507837924160705e-05,0.01084962933793782,-0.04005021437132008,0.12337303473293049,0.08105345993029588,0.0030768240056811584,0.0001356055532642756,-0.004513195391196635,0.02325834008873546,-0.03797732028816173,9.652637351452487e-05,0.0264914514953511,0.01575101336463225,0.06477687101874345,0.006252166934784795,0.00017633938360141134,0.0006926636438073014,-0.008154843274791152,0.054996665801414664,-0.062175547121348984,7.013389464833675e-05,0.0037390412869457287,-0.029832916854199067,0.16718634134621022,0.0075666194267769585,4.484792134047371e-05,0.00046622731659359796,0.03232533149893149,0.058369214609694055,0.0006079272910429008,0.0002700153983695118,0.015376908579657017,-0.011154885927979846,0.04453209089288422,0.027175390009163844,6.228829203249477e-05,0.005003780697727138,0.010904887496356696,0.11890384087825064,-0.018499630936301147,2.3662280116449562e-05,0.02113120532655985,-0.013327107509294563,0.03888556826643313,0.005533794340921449,0.00011979988900556142,0.003358801661588923,0.0024037333445454177,0.009197541948302076,-0.001696499016881971,0.0004119480787259401,0.009380341524277,0.0183883576412863,0.08099102964605358,0.009485438311798617,0.00013004025656218268,0.002761692824803118,-0.006135968952521842 +2018-11-28,-0.03434369211348143,0.29505249713134146,0.056878945327032866,0.0001230932593628285,0.008766403120293252,-0.021580969197706718,0.06670938967575359,-0.013192152633760895,7.762372935449501e-05,0.003091230173462335,-0.027683354512121824,0.09150167772612329,-0.0014531237549018478,0.00013995449827799544,0.02578386981447256,0.0011313354900176443,0.001313039164187829,0.002291916774027791,0.00029079141947290524,0.007383758560414096,-0.007237391300694474,0.016397305100945184,-0.008401771934653402,0.00023094435372337548,0.007336171309096781,0.012983591535948637,0.03829726196217771,0.015023550503607472,7.402422316658688e-05,0.008263234399116973,0.033961324828083936,0.10777874781099503,0.04728594979055079,9.245732950008538e-05,0.010258130114734136,0.0036039832827201635,0.026999253916796334,-0.0010666382132158724,4.577513344490749e-05,0.009522749384415543,0.006754728303281076,0.005059363850823737,0.0004989725332468404,0.0010295720833328069,0.0073041593277369515,-0.03966231944804061,0.09777335337098819,0.03451654401307398,0.00014184678077338935,0.008354943888412535,0.009036704331800744,0.006214443067069244,-0.027974303353331256,0.0007107751204779495,0.004498630706369045,-0.004068323312317434,0.05231375941572567,0.0018513382182607525,2.3175137414442798e-05,0.00023545603542994564,-0.03094221277961953,0.09682283733368904,0.01877229078300371,9.493461662980628e-05,0.009719088677114835,-0.004770136778221546,0.026470608160043433,0.0001022722091596621,5.072577968898214e-05,0.000445972452715682,0.0007279718961458725,0.0005964493924922509,-0.025806610149126004,0.0023804769763803926,0.008991828864545954,0.08444890441368041,0.596182573440993,0.10367736832677597,0.00011656464627179162,0.042255576016659156,-0.08046698604770582,0.4472823427129372,-0.013733046881708939,0.00027857633009137204,0.021735505257435506,-0.02945633892774901,0.16708845408328013,-0.1923523992713031,4.965846413364112e-05,0.00475320960824861,-0.0033271342142359626,0.01950103146959838,-0.013521108182474503,0.0002811897882248145,0.005558455020983526,-0.0215246438010297,0.29618401689442,-0.10888027994420965,3.0158142278044606e-05,0.006130614569908408,0.02363795332498809,0.21964146675283078,0.02916987328224835,3.595648622626897e-05,0.008136322561180994,0.013659739547346115,0.04316436448293999,-0.025283571183304168,0.00010193887194319484,0.0011885451025253223,0.07929326989867878,0.6282846598944481,0.07634070908481981,2.9152261271231082e-05,0.010271577951582761,0.00011792278660321224,0.0003228282132555716,-0.000910423033199877,8.098482222715383e-05,0.0012777120813732537,-0.0030492820561008323,0.012552399872576421,-0.05183637308285049,0.00011107579439289023,0.004076327176711522,-0.006265000425105025,0.006103857603437404,-0.043131712764555484,0.0005866678279349934,0.005142565831076957,0.001741643058686628,0.00660645112090215,-0.01816675236044825,0.00011096267969331988,0.0016256907810152906,0.04219338097065958,0.1854139379559302,0.017768634643189805,0.001460565788595556,0.00871985166130162,0.046373145192562054,0.357139417849293,0.020121908591743988,3.3389580385798674e-05,0.0050529265366319725,0.05767680643931919,0.15024183005470287,0.027747793227160162,0.001255109481299404,0.010378993807478157,-0.008194981510750321,0.061052318997316814,-0.018200212917829302,8.938640205205006e-05,0.015737430589694148,0.009559318097204167,0.014882506784024446,-0.053809379642929256,0.00015159895602836503,0.00618256069004858,-0.03159953001972576,0.04272136118289989,-0.03036888184400355,0.0004245603723685129,0.0006862742997707843,-0.045173911456391914,0.19555853698127804,0.06757672014128825,0.001790446126603647,0.0039787425869946685,0.0118465867067855,0.05245279681775149,-0.0003665799893066467,7.246277437960326e-05,0.0014116275016206646,0.011727022094185888,0.017769420587448043,-0.00037297814341547193,0.0016405582997414203,0.008364812938195361,-0.00994915391090076,0.02916939838306696,0.01335358623297098,0.000135137137049116,0.009003728605672985,0.013364152099335032,0.03614849085707149,-0.005734733152019098,0.00014986893287113645,0.006645818031912727,-0.025166753918506563,0.11587841973983763,0.04991802341574932,5.300765154289947e-05,0.015251785484878643,0.003726793150836937,0.01330966731809954,-0.01036224786121987,0.0026539097282636754,0.004779020365694701,0.00412024596637677,0.02012830148208757,-0.0012113642003478795,0.00010182550787917606,0.0034247312041966733,0.007280727601727942,0.040483949209862924,-0.008011341167103734,0.00013042255261005726,0.017923104684131216,-0.034986833506477605,0.2003905509599856,-0.20244061595791665,8.258023182228867e-05,0.013077912088904383,0.07354002840604826,0.37405160401842896,0.08235413902047845,4.941282305743931e-05,0.023936046470650278,-0.002869591532314105,0.0068420908191243884,0.0005494734672720775,0.00020448461666021215,0.019783222627566554,0.02061613985390578,0.07029080399946278,0.019035171266729493,7.29328553467059e-05,0.01136755530270046,0.022302742294836454,0.23142390913376912,0.007575288157972233,2.4864591373550875e-05,0.007065373919307316,0.004716294362893635,0.013474461029925033,0.009989671898389969,0.00012234844814630757,0.0023008082726640516,0.033598645099511354,0.14385878561931426,0.06708526750060405,0.00036814028601034506,0.007805048054310747,-0.03100776811536117,0.14463716417855763,0.0037964069051018455,0.00012278983205388385,0.003791876200463895,0.0024521829916311863 +2018-11-29,0.03188712924578993,0.18942558162421275,-0.11015779538205635,0.00017801777827206936,0.005896051870337769,0.04321533035843272,0.1651352701558025,0.04389950801360586,6.279260820069058e-05,0.0008259143127084551,-0.03665182606251051,0.11093646805183364,0.002600870688725874,0.00015283347452507262,0.013866724508351235,0.017169255671103258,0.017753777474766638,0.0006556513023129398,0.00032638376807512967,0.0016101505313784376,-0.011393904988356152,0.021315964415848956,0.0010165256371251722,0.00027968255561664184,0.013034140431229909,-0.0017046831866249184,0.004835513741221563,-0.08383300332712863,7.697466291873033e-05,0.0053701402906041395,0.06960405168842469,0.2700328126738365,0.14956220751752894,7.563239201498698e-05,0.007321229127612575,-0.0016297574102137034,0.01452724729228928,-0.015284059760692746,3.847142290477325e-05,0.01156025734865442,-0.001884861309987936,0.0015754396414112523,-0.048077767628596196,0.0009226190498052158,0.014800022373069138,-0.011560397812810335,0.02936855605510383,-0.04771517038081113,0.00013764234757398828,0.02846796726077327,-0.023904086771552747,0.01838986866609696,0.04765729621509698,0.0006353570996390878,0.01208579441630003,0.001019943272061789,0.015742525898996374,-0.0005936361260143389,1.930742651179099e-05,0.0012928026065885166,0.010179415837925006,0.029096950138286417,-0.002963455322009797,0.00010392652932634856,0.0027182444913888696,-0.008612193061410478,0.043189289020324005,-0.16137028168357911,5.613057879314651e-05,0.0005324164907858457,-0.013926082074047778,0.009786680914753423,0.03208833460130301,0.002775341911395264,0.01988941670550806,0.04201018821081102,0.2466164024954634,0.017978135061349716,0.00014017958721616107,0.03424304398650184,-0.017947740129569394,0.09449251722280742,0.0002890353216247651,0.0002941173105530448,0.010026074894224999,-0.030323770046210327,0.18126201579713688,-0.004795235826820255,4.712347893539693e-05,0.0035397434428486993,0.01707077484819458,0.09829796570369545,-0.011149252388941185,0.0002862170569058486,0.018565157925636868,-0.02308390965673838,0.28737029858424235,-0.0006440601325756159,3.333478957454143e-05,0.0015338329030755557,-0.001270676009361376,0.00977375330991901,0.001021915560194784,4.343653426691054e-05,0.001788408637555711,-0.030998477792608774,0.09874723927259149,0.033867177896419166,0.00010112025615542869,0.021158258527236285,-0.039325600946305,0.26746555882821754,0.01220807263575484,3.396251768445562e-05,0.010280573246683739,0.013798689342881806,0.04057735573285964,-0.0006956830236074587,7.539307852357245e-05,0.0018122554919895182,0.01624273005800068,0.05006559251456834,0.07852666195013396,0.00014834341137156902,0.003610434761738293,0.07298868537737321,0.07057430935661355,0.08296082294986977,0.0005911319948838687,0.006290399228533994,-0.02004239921563254,0.07376669406903642,0.01348709951979169,0.0001143603292211357,0.024481863497570172,-0.022795213913242983,0.07604628207673199,-0.006351945475240864,0.0019239104810761113,0.016849991703772868,-0.03283902755867814,0.30708615852516385,0.11356657514799105,2.7498704983324153e-05,0.007025352750641346,0.016643820256906302,0.05207684129004864,0.0012733855312413208,0.0010449118454069254,0.008253753846306167,-0.017060097694690423,0.11226475301814663,-0.0021530967968627253,0.00010119608981279321,0.0026851665332768256,-0.004474770664396519,0.005457203234337536,0.0014629645892628382,0.0001935289947263985,0.006786396193746996,-0.0013031102967578187,0.002199973567559445,-0.005254793831265659,0.00033999116169957424,0.013086606036569198,0.04067140778034915,0.1847199039218477,0.031017408201317546,0.0017065768586656427,0.004516803604685985,0.03909196669136982,0.1724767194871711,0.0578610296442998,7.271891781085964e-05,0.001655782889753017,-0.017742204363102004,0.01966668565876758,-0.0037740634715244907,0.002242609165802968,0.009457580268492818,0.01674048097902267,0.05331715478256858,-0.10461023125093351,0.00012439903247678428,0.006592860908432153,-0.01289011084245269,0.03250780931244935,-0.012043839260338586,0.00016074198399898255,0.009584045665460913,-0.03033835390174788,0.11086070064075236,0.03192339064389306,6.679259535827995e-05,0.007559517664631789,0.03450228756977468,0.08712927302395916,0.042838078856319475,0.003753201300276902,0.011197089229493275,-0.012981354285683117,0.05605733538262959,0.007368900861204188,0.00011519353960507302,0.028932296166800153,-0.011000759133833476,0.05162095380380064,0.0025774871866757264,0.00015454587414595163,0.02690105296161071,0.025288995252511656,0.13551629593027842,0.04552921900466609,8.826504583313705e-05,0.011368286457943797,-0.036388709914071504,0.16851881482111672,0.007208916226115008,5.427072928670176e-05,0.01808795808711576,-0.008944787218454585,0.01658776215780168,-0.00976020570333311,0.0002629127260960496,0.007172168283357811,0.023867718203000116,0.10695081369907067,0.03256241126654578,5.549338086043771e-05,3.565076305032358e-05,0.007298364219868621,0.08453117853610886,-0.04785306421060499,2.2276137721653592e-05,0.01066848160780311,0.012925831354199634,0.036761569161273364,0.038518019476185356,0.00012290609176212447,0.0042903370861611,0.007816462516185946,0.032779323309199276,-0.02317785118000454,0.0003758704956595598,0.007360580495455435,0.0070811699553251116,0.035163677214603756,0.0005228718885489093,0.00011534068576984966,0.009866614574949431,0.0012554067733529554 +2018-11-30,0.021029586588959266,0.14227622992712838,0.020318552672970537,0.00015630935480920625,0.00462319557483315,-0.00591272619105019,0.01915214274327312,-0.0631765009216109,7.407658020417739e-05,0.0078527007274211,0.03354579560320897,0.10778347283593606,0.024594199046138,0.00014397368757177823,0.00423445854151797,-0.012557316936710862,0.015000763899668089,0.04735733941790697,0.0002825213912926349,0.0030853514489805117,0.012606102682725058,0.024296855109368447,0.009432883567836578,0.0002714741917537728,0.003094858103253906,0.00800775176392015,0.024663294287520128,-0.0538042516247628,7.08934736577672e-05,0.0042683098014353596,-0.003588721328718458,0.01384650998254176,-0.029422270190777665,7.604825757363961e-05,0.004658882008227444,-0.06036037379031732,0.5490322988260832,0.18980105296160277,3.770098012704834e-05,0.007662957628151423,0.005207389043898398,0.0037174159319400784,-0.0013914545776896683,0.0010802484597623356,0.007418228127842647,-0.037973913134157995,0.08246882329960117,0.023372376114907847,0.00016101170210276955,0.011980301527891084,-0.02484432190644558,0.01971217906559721,0.019323420778962527,0.0006160512886344888,0.0030631585920082526,0.013750509101653676,0.19657187609985735,0.031634788551596564,2.0845877660443122e-05,0.003722198472150816,-0.030152196210757577,0.09076012253238888,0.014369612237071248,9.86904012884368e-05,0.005028614845942506,0.011157622310836326,0.06517728746934834,0.04170047009723324,4.8187810354809003e-05,0.004966876892696023,-0.003451687614901875,0.0029382382735073545,0.008091446192055674,0.002291223448564366,0.0014406760900802337,-0.07084124944716452,0.4080674910021079,0.05213397926766347,0.00014285857783028012,0.035118974622332697,-0.03073461858173598,0.1597279560105963,0.017462427666600777,0.00029795805156391695,0.012017112877922793,0.008895906893184397,0.04979383932306618,-0.012243374227822046,5.032404838563635e-05,0.010345928024505633,-0.0023187658631282386,0.013131588709632236,-0.06522462115955374,0.00029102241053130187,0.0022611894304242707,-0.021433741717880962,0.3336216307827291,-0.006257441375964547,2.6660851961049454e-05,0.00837232267378422,-0.008832019553265631,0.09096810200837645,-0.004333811887389924,3.243789005110917e-05,0.003766991266015999,0.016370675884961338,0.041685974016372404,-0.017333777508171683,0.0001265025886094048,0.0078060633682550595,0.03331790580287681,0.28755426736779965,-0.0033461932244834795,2.6763952787301046e-05,0.019566999462421908,0.0005428944043548072,0.0014550668141754947,-0.06142097791497765,8.271986402263423e-05,0.019228694613546676,0.005654394381139945,0.022276695924025,-0.014353468288794144,0.00011606036046436071,0.009544728969082053,0.0047920707683090456,0.005150163697370181,0.000546891169373365,0.0005318360241512841,0.03178004723804685,0.013280417993369511,0.05268453824003005,-0.003957454669208489,0.00010609980250608928,0.005832683489435888,0.03992849761148576,0.13529075948526095,0.018999235472766732,0.0018942356644997323,0.021449890759880012,0.026141650884060622,0.2794691597363908,-0.01483105482461613,2.4053668234657233e-05,0.021889403767207022,0.002677802937206458,0.007075376337697507,-0.00151595635677552,0.0012373721544469253,0.016735851338097678,0.019429538507778142,0.1908981572151545,0.00624936276573487,6.777763215782226e-05,0.010574014893535709,0.03364714665438391,0.04623478898098401,0.06308696495808086,0.00017176107420398317,0.005136584774886489,0.00367753360363492,0.004971540813909336,-0.004278805033935321,0.00042458979773679395,0.00632784513559417,-0.04298125962317916,0.1596745293815665,0.049942332381236375,0.0020863820385628247,0.003869261445577746,0.025885246008729535,0.1066728063212959,-0.015117801180240333,7.785543698689946e-05,0.01096363018114871,-0.07044090113953226,0.11472330754421144,0.06167758624993375,0.0015263370119965771,0.002356131775111077,-0.003985437679541587,0.012560809262143634,-0.004090090400067038,0.00012571133490699746,0.006027832355585016,-0.011196590342704676,0.032884106228504704,-0.018630144620850792,0.00013802575210235994,0.011543135808675942,0.0176541924312626,0.07562112364037339,0.0028005208103570266,5.697950275613333e-05,0.00802930321474165,0.1338151340343603,0.404584359873583,0.5274067621360766,0.0031348314941229884,0.00016220597659891438,-0.01105331768459793,0.05645135679205302,-0.00041422327823536966,9.739997344740331e-05,0.02333388540530976,-0.004595994958214157,0.023432389637126027,-0.0005414467140495221,0.00014224065639182495,0.005925270726555227,-0.01010859720796935,0.06308150968474754,-0.01065752044897538,7.579446853641778e-05,0.0066555988393805455,0.008454880579164735,0.03862616552346625,0.00046326273842573276,5.50140066307709e-05,0.002465971029011052,0.011924083059180982,0.02341827677688039,-0.04338006016785963,0.00024825582763055135,0.006514020313608657,0.02090561948164718,0.08150511899939417,0.02562498658753341,6.378117728479073e-05,0.0023229867457912954,0.022948915234536717,0.23770582885364752,-0.005380352876759304,2.490884647953707e-05,0.004334322575497433,0.0009866373789802784,0.0025957341203956333,0.0012313171343297138,0.0001328636941622209,0.0010484129278293208,-0.0060243042320028235,0.02510546354128372,-0.00033031224240659315,0.0003782392749593392,0.004673188271427586,0.015620975934107302,0.0775545274086684,0.0003417956185675946,0.00011536466347783469,0.005189915506507881,0.003118107489125473 +2018-12-03,-0.016376318075415716,0.10196772833739734,-0.045545212660567595,0.00016984004835951232,0.005665149827802302,0.020336941623584893,0.0677289939475344,-0.05033318855300704,7.204793602419164e-05,0.0007446258982958391,-9.424112004826933e-05,0.0002892083539289096,-0.08103217864481771,0.00015073940958954573,0.007480426746156168,0.024964953134412493,0.024885910563785453,0.009478224152512463,0.0003385673508901018,0.012290668967267784,0.015388616604827715,0.037157775651488756,-0.004752024433364957,0.00021669437788433601,0.018061115640770547,0.005931079689853647,0.01680079735050254,-0.039933529492493514,7.708157955425939e-05,0.0061871877788668315,0.014890514356028322,0.05440795689181987,-0.0025334319391860506,8.030399237531745e-05,0.006549300519681809,0.026291318118782443,0.22833640249705692,0.052113411466683746,3.9485334383693924e-05,0.0060520097316183125,-0.015286572210139758,0.012149126396314797,0.019493343757883932,0.0009703085280443188,0.005452080744760017,0.01524225241288234,0.0306639374425503,-0.002641562538068958,0.0001738133441578065,0.005343349095326899,-0.026967767990783174,0.01772777602016928,0.05145616956060421,0.0007435584362927066,0.016751668469807524,0.002142042783293426,0.023838154889788875,-0.009839633593946932,2.6778009600220263e-05,0.0033656731319179544,0.03945969522928788,0.10788959937086684,0.023179757439555776,0.00010864886255536641,0.012893272995667823,-0.014228894712874746,0.08113350600426716,-0.011338639627330466,4.936654582133043e-05,0.004705273828379882,0.002420785376753828,0.002259541561716891,-0.0072421480094632205,0.002089579628874855,0.005932884056480317,0.000523253425643098,0.003022962793077297,-0.008916105849922888,0.00014243981015285632,0.039933370559643716,-0.002634238375642596,0.015494323685886898,-0.0019944071406839724,0.0002632635175765662,0.00047637081671384244,-0.04425786143267763,0.26360835505912833,0.0012674577080388602,4.729249315099573e-05,0.03239315592052608,-0.010602397612807337,0.0571809885985653,0.00026080704712404425,0.0003055900679621438,0.010931587231332165,-0.016008979282142878,0.23287817470437142,0.01068537621161952,2.8527590080533918e-05,0.0027971933572831418,0.005114319609096975,0.046907406930915885,-0.043795049732251,3.6427397799721334e-05,0.003917710608423189,0.004700904649624699,0.01297911641837995,-0.029777122532619275,0.00011666996569984675,0.015506704269976858,0.022196420473282342,0.14677770592494166,-0.12663617188586418,3.49313382136662e-05,0.008088579533021785,-0.009205623471280722,0.030526795853230967,0.010999654146157807,6.685738212811394e-05,0.009031037177451972,-0.01853258118641968,0.06814097125094704,0.0686055713135619,0.00012435870400296446,0.0003321931875139442,-0.007945695604127162,0.008979759615788676,-0.0034243772118177905,0.0005057580148546625,0.0029552143436476046,0.0015927312115759733,0.005524786424727596,-0.006703960508109354,0.0001213425188566955,0.012331112731832638,-0.05479366843632194,0.21167634093631005,0.06134359276216861,0.0016614115773846334,0.01969537199673861,-0.023367314143076016,0.25075253099073946,0.04713231626256782,2.3963247157965736e-05,0.002987487749158597,0.05385472788068223,0.14180229601075595,-0.02773274229445718,0.0012416861665795775,0.0337302705621505,0.020090432892834638,0.1170836061353818,0.018600204275370614,0.00011426647967631408,0.026394181050515688,0.005653880919987693,0.00843104679030797,-0.028265600648912682,0.0001582743519665958,0.01097101705968686,-0.015225044724459279,0.020665273542139505,0.006454120298568391,0.00042288407674728805,0.027004980114903803,-0.012477912327996986,0.04674656838442181,-0.02592246474074437,0.002068914463688406,0.002623703719491437,-0.016624176999555762,0.061348121013303156,0.035034006474343814,8.694192645800868e-05,0.012778551543116013,-0.025010806104074128,0.031613713763108314,-0.10797057602778747,0.001966660360695868,0.01123412809703789,-0.037205009988174255,0.10122173475506001,0.12224011439599257,0.00014562759788593256,0.026051589714420342,0.005213185416057543,0.012613674956918085,-0.002360947424691167,0.00016754131210755608,0.0065764674141363545,-0.0003208312217849232,0.001561308663493711,-0.02649865114733485,5.015356174326657e-05,0.012242254478761086,0.017155826108401846,0.064630260427317,-0.004391047445631693,0.002515902389597232,0.03470119661521761,0.02374038399093321,0.10431608577959571,-0.0914395120324556,0.00011320797632150723,0.0041632503214077835,0.040867799412905394,0.22310750169694157,0.0334310399088546,0.00013283969335187997,0.018888378289808785,-0.018359505998262235,0.10454159346590099,-0.11035427512161618,8.306547916039279e-05,0.008426145442183933,-0.006713261023122092,0.029713248451120607,-0.018107673272847125,5.67846291913073e-05,0.007452081775139131,-0.03851339189312307,0.07064400307327193,-0.015811340775606943,0.00026580666233405777,0.002888051815577113,-0.006808308214348768,0.025395493747176253,0.004280049760723778,6.666485258852567e-05,0.0008996250885527378,-0.005000411317755719,0.055169487951119534,-0.024415649939367373,2.338503702287166e-05,0.002813753528008954,0.012495420177938152,0.04148467743061332,-0.044962154361728866,0.00010528636004819184,0.008444228787176168,-0.03573138047169567,0.13505785005889095,0.0487139187820719,0.0004170210085154517,0.020180789611520873,0.002809073131161741,0.011920726989074565,-0.0044511316866840955,0.00013496840012950517,0.011740646838868954,-0.0013023039511076834 +2018-12-04,-0.03451611061176149,0.25993323459878814,0.0508120318608001,0.00014042570885411073,0.017010860756335604,-0.0713821638464142,0.23156139353130534,0.19804679844968695,7.396633172982725e-05,0.011097823768834628,-0.046244727229860394,0.19001178604208055,0.026080527983196454,0.0001125845733757906,0.0181012409417837,-0.012173328019311324,0.014087340782877171,0.019906508373909542,0.00029164071898995673,0.007170096299146792,0.028118252397648456,0.05397873646199159,0.03263811630812243,0.00027256079225227163,0.008349241177809536,0.00029538106919578105,0.0007509988141617613,-0.04900015808181421,8.587962645675853e-05,0.005078085816838189,-0.025647767183468884,0.10862594686401648,0.024141819858535817,6.927967518400934e-05,0.0029656182912921156,0.023986766213536497,0.2165078073853473,-0.008379722673252042,3.7992402266553575e-05,0.009846941460546535,-0.005435029280298535,0.004119163618104211,-0.004108672215148325,0.0010175075297013145,0.0008195377496037532,0.017396978445068857,0.04011493549993453,0.012852556876418654,0.00015164553007897938,0.016682013311976353,-0.020376387072929148,0.014413805790147737,0.025244175840319377,0.0006909917688850773,0.013129551563598567,0.008213421844297311,0.11249517508341429,-0.05849177674007578,2.175770190729715e-05,0.002701637640379914,-0.0018337993892580714,0.005760006036144668,-0.07301897245531506,9.457577810903866e-05,0.012176168759140365,0.001990319260463052,0.010427516368773895,-0.01376447665363637,5.3728372296389915e-05,0.0003567480019582618,-0.007836234521084362,0.006412142930175251,-0.03297651277986415,0.0023835661165414576,0.00943299070210264,0.00929605643300531,0.061285144175199834,-0.041484630370104525,0.00012482329630461337,0.05031045781946518,-0.04193134099045589,0.22961039795927637,0.028602036703838696,0.0002827843899950585,0.0038697011459871214,0.020796809766309852,0.12091039663937432,-0.005463170559937397,4.845002766603844e-05,0.027016294959753356,0.006187159594935578,0.033508523589417506,-0.00994111706069235,0.0003043146310163993,0.008423644184907618,0.01585249967185091,0.2219116795775421,0.012119854522050598,2.964475214754428e-05,0.0169882445784809,0.006875537884653441,0.07375825629862189,-0.007259397079595676,3.114424071229587e-05,0.001831786984047107,0.011477201996269741,0.031050079217365315,-0.02217642649278369,0.0001190682768235109,0.0028216819850431646,-0.04335787812651231,0.36244439980647836,-0.0037647808576147593,2.7632425169828176e-05,0.018673690011700113,0.009267310474042233,0.030670486703669418,-0.11679243671384726,6.699006937742314e-05,0.006169033016489412,-0.00655262716508925,0.025348126407994703,-0.09074726262197205,0.00011820019399072614,0.005041815848540503,-0.04133175288209103,0.04132703171945076,-0.028282198217136907,0.0005716433714617586,0.002250659419307903,-0.0032153345400300574,0.013771447004604517,-0.0008365043220961862,9.827263470967009e-05,0.005816098007435178,-0.02309142568350038,0.07600941723134369,-0.018032718260574506,0.0019498559108746488,0.011540860254243985,0.003612050469919128,0.030625729922732166,0.0028334418056987962,3.032840401907062e-05,0.006300966756870128,-0.01570321112564709,0.035686148090272235,-0.09902454132264767,0.0014386662850585233,0.009498209715126183,-0.03797215843011759,0.30162167620848557,0.061278717740926865,8.383558097378525e-05,0.0033054303437123596,-0.03697501607215738,0.048195933942020965,0.0923691124545844,0.00018106868904512632,0.0036208505518364204,-0.04313753448270761,0.06723406478626194,0.03829279133277311,0.0003682729875583503,0.0059358770610474666,-0.0023657743023170674,0.008598197520161593,-0.008462389573623382,0.002132633532647354,0.0014514712403333185,0.009585876672195128,0.028739199438538168,-0.007226627645589406,0.00010701571104806601,0.0036151203849862984,0.002176588290902812,0.0030256342948370048,-0.030217834298061397,0.0017882862865459214,0.004417139072932296,-0.013095312163994092,0.04079170471799133,-0.06828243050231965,0.00012719207043208734,0.0032900175404697923,-0.02440663169836899,0.06700683133457913,-0.11650435107663583,0.0001476553347340985,0.0020013026298023387,0.005022937148215365,0.019343225296058038,-0.14103708776992188,6.337862000735912e-05,0.007815879517343489,-0.015460307278092765,0.060130465642462716,-0.00948950288254413,0.002436921908443241,0.02774273957102584,-0.0017423134407566097,0.008807737086711948,-0.16354828655757955,9.840168048108158e-05,0.004558935438801562,0.026926009180431157,0.14833671951377544,0.01910294320737161,0.0001316388572723687,0.0029757145068871234,0.03775306859907042,0.20057342664877348,0.18025800522292618,8.90281936449041e-05,0.0012438410596762426,-0.03428652013396768,0.1635011753800649,0.005943989728419412,5.270477031302068e-05,0.0026966672604416984,-0.05458760470613459,0.09945878981355007,0.040235780337129635,0.00026759639689011625,0.018627249074576354,0.01043234283102814,0.04175139752334674,-0.03167203466340523,6.213341290040168e-05,0.0002003390241942808,-0.0010550080866843369,0.01138999198806577,-0.11160941650575416,2.3898115481320193e-05,0.007311981209234162,0.0064024658147808005,0.017912052412556,-0.023556835639508486,0.00012494269847162023,0.008016071915745089,-0.008089172995932259,0.03351220739645765,-0.01895292922087142,0.00038047756999398246,0.0055337169534469864,0.033604914302246346,0.16863664603723294,-0.031529265876855776,0.00011413599577086964,0.002436866119745241,-0.00756205530474511 +2018-12-05,-0.06838590698304745,0.5496078464126432,0.15884604480803918,0.00013158314758330192,0.015657770065688095,0.016415375905232295,0.052750340303357394,-0.07527857603482692,7.466827068917028e-05,0.006451561296482737,-0.05314295065205529,0.20045510995369134,0.0015883906706899535,0.00012263819132244408,0.008486024895782382,0.00829456878381414,0.009460414063846432,-0.006576243859120815,0.00029590446894367685,0.009916711684790906,-0.015254880814989203,0.028840816113647645,-0.010941480469993246,0.0002767572749032818,0.018544567470893458,0.002095199891254496,0.005518442615418846,-0.056043681228336514,8.290021786226395e-05,0.0027394206797904212,0.03277635682816656,0.13839385231743076,-0.07777975878255773,6.949182795224724e-05,0.013869354473053411,-0.00567369176882167,0.04371270247073688,-0.007224712297424651,4.450990793997954e-05,0.007385191187897246,-0.022339582365265665,0.022234736550342582,0.0171358631483068,0.0007747968535343951,0.002211246136068738,0.011927836262315208,0.02546788079950956,0.004899335741092078,0.00016376864156884138,0.024765009532342227,-0.018388968292319525,0.012565752803432813,-0.010479448945737378,0.000715308210943205,0.013990883978779825,-0.008296319879378646,0.10739499594567666,0.024923980413621285,2.302100250888503e-05,0.00023683991686100072,0.01585422849764076,0.04750575764545911,-0.030230769272504975,9.914022544750718e-05,0.015015402817613308,-0.0048827642261027905,0.028141131043896955,-0.014365670432567607,4.884116604168489e-05,0.005674116586013268,0.029213418747682483,0.021032522789817883,0.01993050506577158,0.002709031084736231,0.001713529672013653,-0.038205994835672996,0.24144976727565542,0.0019036355144581266,0.00013021374491356893,0.01165169204611384,-0.041669425960150885,0.26945126758712745,0.026766859816764892,0.00023946691458407089,0.030093257219598622,-0.07408271444680303,0.4404197478201065,0.04353043219844165,4.738174585322026e-05,0.002369620293594864,0.02411288074074933,0.12596681587031064,0.008469288174355607,0.00031548575465894423,0.024803100241185455,0.037571429148119145,0.46986995669190784,0.002031185207519374,3.318258909332286e-05,0.004057634357658955,0.006016964975186717,0.05954943596947918,-0.01077088308518412,3.375837554504075e-05,0.01357995347222642,0.0006830494838754649,0.001988668787147494,-0.0904539599493183,0.00011064007613034507,0.001525299004238404,0.10428812510556507,0.7241256325620877,0.16163092315237543,3.326697524139672e-05,0.0052917143166804756,0.010083805073408345,0.027689778758366316,-0.00035202829227099397,8.073880894840932e-05,0.005012159799097056,0.006402454452180378,0.02734455479088818,0.012812524563265888,0.00010705925978412075,0.007668912880550619,-0.05164484607491059,0.050886760156213316,0.02406484970635889,0.0005800931638685215,0.011499737051097665,0.010718448319448154,0.035650549006276344,-0.05258043299579597,0.00012654695662980795,0.01645165270918965,0.037730098623782425,0.11427474031706011,-0.11327701907947144,0.0021191264493566446,0.003194980277158651,0.03928269563295814,0.3842648812534313,-0.030002341637377108,2.6287711634790732e-05,0.018242037979982632,-0.0007394800436074263,0.0020669691624666696,0.001138726856850403,0.001169671021912932,0.009779802639402809,0.0023948596643019776,0.019369508287293048,-0.035565096262531244,8.233549801898504e-05,0.011259601879554392,-0.0015112091800003893,0.002831679484809779,-0.0004674887343686832,0.00012595803445683372,0.008898667278508769,-0.011943337269242453,0.01936172552236657,-0.014883591326177814,0.0003540670815334126,0.0015287606213446785,-0.03484506070463885,0.12744984087327244,0.020222844313771627,0.0021191039892250445,0.011032387574391183,-0.030298774423437636,0.11472996210505913,0.09373570112960368,8.473026838448237e-05,0.006668391427982338,0.0351590790056715,0.04575576167552618,-0.02881445925000992,0.0019101562452511194,0.01326313652693037,-0.014128353177597183,0.04590763767825838,0.022528010759275973,0.00012193338597693031,0.0057131445841594785,-0.04516293394051477,0.1257383614136685,-0.06870814705311236,0.00014560447644917042,0.016067382455761732,-0.00020446459456144526,0.0009348600370311419,-0.005945014640793044,5.338084516223803e-05,0.0070139266506980096,0.07367529409034591,0.2587234892001636,0.03885274624559712,0.002699007407335966,0.039369812485453494,-0.007223943705506375,0.037879105497551024,-0.02416379478080226,9.486700915899274e-05,0.003402433603659609,-0.009114188912118312,0.05121657167825852,-0.027848794011378464,0.00012905305982818083,0.00565681161536807,0.004403520206478983,0.026521957441103135,-0.09355125101924516,7.853135997251758e-05,0.0013761978647836024,0.06097384456418723,0.29660548282630306,-0.06580508367258515,5.166682798045076e-05,0.034022550383202656,0.0018044672609349498,0.0033396849548957444,-0.017565997564078544,0.00026343465183359025,0.01836342736774061,0.0171593634195273,0.06642442984875,0.008135269460360904,6.423736423635692e-05,0.0011577709621440892,-0.03169269559411464,0.30513405400927307,0.02542340868196133,2.6797839745535547e-05,0.01625420132024602,-0.0014784259590944504,0.004643545965563562,-0.05042343963344265,0.00011129067978850717,0.0010387352192936866,-0.027675310324737336,0.12670891700918893,0.023009552582980177,0.0003442811867112582,0.0023037054100791842,-0.00925483357785382,0.04408036776791153,-0.022150942330210536,0.0001202528008183943,0.03698990187305239,-0.000875380710748526 +2018-12-06,-0.01229939377141173,0.08245577102510739,-0.0009225571915909425,0.00015774268642778562,0.007766985984806843,-0.004609001908503592,0.017045541259677242,-0.041543048366432786,6.487936913375126e-05,0.014186433225393025,-0.033482137940095746,0.11577140232020838,-0.004916801997086517,0.0001337855141192793,0.023649919496369638,-0.0044132543263795225,0.004460790514777033,-0.07364522017439387,0.00033389889615839967,0.00104469798729922,-0.0005345509487272622,0.0012203946063532995,-0.012068905228731027,0.00022918521502160672,0.0030673799911737796,0.019498032607232894,0.04413550529071052,0.050939185891156306,9.646048231834011e-05,0.0025155065305205743,-0.016572322334907172,0.06870979696821178,-0.012262023949911802,7.077087444553939e-05,0.019475091073727347,0.008351664282482532,0.06004474256453299,-0.0188635150259122,4.7697614112829776e-05,0.0018956440822309251,-0.007879634166356647,0.007751440655629879,0.003314439541722848,0.0007839139895079318,0.0012307328994345442,-0.016591614927618535,0.04145775922222481,-0.002816058199621782,0.0001399409188485267,0.009624645739639405,0.03240032505315657,0.025673482253901012,0.005129090333340304,0.0006168633197582309,0.008412941312201333,0.0006144163008484612,0.006790797462860313,-0.030699968746606937,2.696278452184098e-05,0.007903899969941326,0.041938331535962006,0.09604483752480218,0.030656753828719158,0.00012971439077853652,0.0032592985974276853,-0.010572849579410858,0.058832449952716116,0.010418023910895318,5.058676854595866e-05,0.004894808888463704,-0.004904227786504691,0.0038081119200394837,-0.06689856049466446,0.002511793327646236,0.007716813960206556,0.023908288532975094,0.17912304644904584,0.0011763899059171747,0.00010983711806344274,0.00909294679003737,-0.07385957103025644,0.4085905762620446,0.08248261960777922,0.00027991531912644255,0.0027049502473771607,-0.031698373286400586,0.16837022533788454,-0.0039358271678088174,5.303134454920732e-05,0.007674476801068554,-0.01605346266138515,0.09558466988132495,-0.03972306856604822,0.0002768007644093075,0.021534951164685515,-0.022342213777826324,0.25543485674467153,0.020063853006704144,3.629746317110007e-05,0.0008471649837239713,-0.017283754969638347,0.18468416261580684,0.01740323662221984,3.1267283773739e-05,0.005231233710619216,0.01997309912209882,0.053690709118826584,0.0020866526110015493,0.00011983096954866837,0.010903709900085375,-0.010052512059716657,0.06024325688131848,0.00029124745496026555,3.854415562416933e-05,0.00032804592255621643,-0.013936050417948228,0.03556823816766633,0.032079777054864395,8.686698291005816e-05,0.01176782256902147,-0.004848260136440312,0.018090589983448285,-0.0625813847289271,0.00012254110130425043,0.0016293309964533432,0.0770079283540265,0.07545180232837578,0.07908654492193248,0.0005833663621329574,0.007030190301127089,-0.00743802199974995,0.02239814702729058,-0.024183440422591594,0.00013977560363776507,0.014393919533577167,0.023848335672859683,0.08403715120001103,-0.09854649508100823,0.0018214025022877806,0.0224265315493042,0.031679968588889815,0.2783023562816042,0.008013619975841801,2.927184213042032e-05,0.009244686283154531,-0.0015768519738733238,0.004509601928559078,-0.1385242142672131,0.0011432046658739787,0.004569216500046935,-0.0005778839836517828,0.003669340545820313,-0.016705303242314694,0.0001048765231736017,0.007999487318964816,0.010771463921424732,0.018244456020869854,-0.06559009858253788,0.00013934429688252864,0.010702220575675575,-0.012498947050745326,0.01640020529140844,-0.011485129325732832,0.0004374496341548486,0.006640362245099302,0.004150346912102432,0.015586122194085329,-0.001126355107848966,0.002063938078936761,0.011555288270447677,0.013964130025141373,0.05113037082133589,-0.08609371127971929,8.76244514107652e-05,0.0004640514414069746,-0.048618332890080065,0.05386535141236694,0.03129327886033538,0.0022437153403430878,0.02146400059355925,-0.0054956743517693175,0.020856633168416683,-0.03182360925466932,0.00010439815517849161,0.0015515479180408032,0.045001985486292244,0.11564714402992066,0.13116719720918846,0.00015774555821206223,0.011216920007186852,-0.003693867044295272,0.015879991162014724,-0.012872588752763758,5.6773403203995006e-05,0.018062157453070694,0.06460725444056549,0.2034723876958698,0.035198722636872876,0.0030094966351998883,0.0013299632563426233,0.0040352805309336525,0.018818446251802273,-0.009251086924974521,0.00010666711274315551,0.00907881318508637,0.010111995495326863,0.057864178340291055,0.002383175589715049,0.00012673245890001324,0.005363709284158713,0.011698391453496836,0.05929752432540743,0.01234520170619949,9.331216942568295e-05,0.002849761430838679,0.023179654122834004,0.10158522592943457,0.0026544074219507227,5.7348728757268236e-05,0.0007634291510328693,0.014514044521852603,0.029252166149952706,-0.01970899448445639,0.00024191333770037365,0.0020123127472740517,0.0013380588121091298,0.005262566710734204,-0.026925384930097756,6.32254551167077e-05,0.0020752480720956324,0.010630252072914858,0.09794962657918628,-0.0014706225313416746,2.800090472091109e-05,0.004391907983892921,-0.009171858854228195,0.02785516720143716,-0.006210184963722399,0.00011509608666871537,0.003928688479514794,0.03343235734374162,0.13539810400629054,0.06716832163414575,0.00038920856434270185,0.004057701682408777,0.002762578624641877,0.01359009919858253,-0.05103811969314597,0.00011642971016267523,0.012544353945633475,0.002680525037784398 +2018-12-07,0.056363604170227885,0.3891525721270565,0.13304351449828467,0.0001531670806798234,0.018186227121626226,-0.013831927248100702,0.051369394643079644,-0.01067005847821285,6.46083685628105e-05,0.007822122723746947,-0.03712046798325855,0.11109458393335338,-0.010340589329138162,0.00015456734976091078,0.0011949150533572869,0.008226289281612483,0.007246905197943385,0.00020574160639016048,0.0003831062647973378,0.0015893087102518653,-0.015292629105407804,0.03432736645197895,0.00343069024568638,0.00023309848008133108,0.00361153056515842,-0.013687219177954325,0.02998366269126438,0.026899747499053616,9.967294217966777e-05,0.006567010324773565,0.10008211597368712,0.34930391683709294,0.25977061171749755,8.407035445445523e-05,0.010951016618317919,-0.007748387800972503,0.0672263938341224,-0.02509719348244313,3.952484247917593e-05,0.02810659031933494,0.019143238791256165,0.018769924503472195,0.023615229104356428,0.0007864980995537883,0.0018646872720140977,0.00846148333293906,0.019899639924058344,-0.0034664900574747784,0.00014868363550908677,0.00045294577981113446,-0.011906522021314958,0.008973616724016384,0.007879761088029347,0.000648547458137133,0.0016891945549736974,-0.006873311823921873,0.09001372721888305,0.020914541845861324,2.275517037566594e-05,0.008888247973939204,-0.03897584066784501,0.10288519101272335,-0.00027006816524121534,0.00011253656655957261,0.012156257218108079,0.0023283259205595466,0.011724295129176164,-0.032791185092741475,5.5900906330032736e-05,0.002797209356546927,0.009382930418051372,0.007798970303572363,-0.005588830196155154,0.0023465196835633496,0.010318188141077107,-0.055222901058544424,0.4107796195919903,0.026076358616444285,0.00011062733167155697,0.03405986330393156,-0.05023240812299075,0.27894722359000235,0.02653835116996511,0.0002788497036882085,0.007740564103061507,-0.007099053411575648,0.04678108533186439,0.0011212633972531953,4.274556938348109e-05,0.00759745593848945,-0.031556263753132315,0.19033261612747285,-0.043045193616025525,0.0002732493690028264,0.022614876862159676,-0.06785356348442478,0.8645033890982889,0.1329336652090345,3.257138242248228e-05,0.006917413050165326,0.01940526949584785,0.16270570340609541,-0.04249835102399652,3.984727351211525e-05,0.000514946268018038,-0.024123769806708946,0.07349073805940037,-0.02898236601568153,0.00010573903011362333,0.0012425836921541417,-0.014848447062873108,0.1141931106506155,-0.04527652450684541,3.0035406056036183e-05,0.025555205733614854,-0.005146754525746699,0.014338982143178448,-0.004903976845365146,7.957790718677611e-05,0.0026432618061395024,-0.0077656451099800666,0.03411068527792548,0.008560306868823008,0.00010409639525176423,0.003373683048233913,-0.052342780864702745,0.045543106167949335,-0.005149906170578164,0.0006569157977776791,0.029855386190407795,-0.030615603231877588,0.13755307652114387,0.0417760732155894,9.368251077922373e-05,0.007829640685980724,0.004302360173931082,0.014016532478094439,-0.00018834177631562365,0.0019700867573038366,0.010285996092223746,-0.01444559534791314,0.14311681262500944,0.0036982606349335676,2.5955355704295826e-05,0.009133453677368161,-0.010349173577901266,0.03391986404302027,0.010936337993937601,0.0009975228160787812,0.0034063047271540624,-0.02637422639593708,0.21756411656344127,0.019405589760745835,8.072686841631969e-05,0.004067622791812804,-0.0048242730870286105,0.00796655430091087,-0.0053216709422557185,0.00014292452234672233,0.006087677116311799,-0.03583901363308303,0.05217881198602183,-0.049988664778065975,0.00039424461993895166,0.021017401524162174,0.011464452740296295,0.042871349616068595,0.009362709730538377,0.0020727003175621387,0.004829800074995469,0.02314901517640195,0.08463416407957078,-0.002867509376491386,8.775607304565747e-05,0.010486424203919107,0.018746412743874428,0.027833645749278924,0.010097908949755636,0.0016742691347693876,0.016894051491388555,-0.050443543045343806,0.17521547540661087,0.18313936560142088,0.00011406414725513537,0.0033947343858306096,0.00894932791398604,0.023106286661996423,0.007429930446472291,0.00015700758751354256,0.0009492390580695621,-0.013065963061132144,0.0509400904230798,-0.01781777402113537,6.26030712102664e-05,0.029002716405389536,-0.014693230530570178,0.050111755754762816,0.01554688175764556,0.00277904597271717,0.00921839442436607,0.019388377594960378,0.09499853201889673,0.004431430160897095,0.00010152316430829487,0.005154360061008662,-0.007904043445349848,0.04234090256383342,-0.008508885651713722,0.00013537859160836667,0.010168137507541499,-0.018324266710811745,0.11165718320119954,-0.0031504584609612744,7.76226804178871e-05,0.00815711642986062,-0.022095663560550444,0.10028660078837136,0.006230866569427721,5.537471859663518e-05,0.015838810786586936,0.006318852989660864,0.01384891455968246,-0.06527343099288464,0.00022245998808785263,0.0303123467879873,-0.009934347138189987,0.03882423306623769,0.029658219830314542,6.362837354374964e-05,0.00590164634185048,-0.020716506201483104,0.27986984075908133,0.03196878157420296,1.9098167549010943e-05,0.010533602036463191,0.0212630003557448,0.06914357723292348,0.03893016252435941,0.00010749336699355239,0.0005570439752985249,0.005197118862358627,0.02154759306723097,-0.0651399799351738,0.0003801822664128985,0.002065121530424218,0.013543806585099264,0.07221628328500528,0.005665337789475552,0.00010741808508124425,0.02310284840802442,-0.006587770396648675 +2018-12-10,0.01036609775454301,0.07492459723163099,0.001326968248992081,0.00014631116450606815,0.01815704103498129,0.005254319566005759,0.01647869036118679,0.0013798072277504115,7.65075537682073e-05,0.0009370495889326807,-0.06089322951754833,0.16821439583618816,0.026278162637233097,0.00016745690193074108,0.02652008303291544,-0.0038904966846270133,0.003277303290535927,0.00938315543704516,0.00040064181239853937,0.008642322593885494,0.0041644238690463,0.009438172253401525,-0.0923430975530259,0.00023086856316672608,0.00944173937046011,0.011234051159401116,0.030638615531581995,0.013151678469189042,8.005970770937212e-05,0.00522853459564398,-0.05330356840424478,0.1912078354096979,0.0817478123150736,8.17975797778109e-05,0.0030002044949139456,-0.0381300672653185,0.3136043624436025,0.05195207565557908,4.1695010786654786e-05,0.003141171805893595,0.006865189168520952,0.005947419101809651,-0.22948722224223092,0.0008901613872688626,0.005254982643985976,0.04993786102380354,0.11799733196952879,0.06296786323179156,0.00014798566048450238,0.005911100136301434,0.0020197904843929897,0.0014811740228116278,-0.023159283901938242,0.0006665375079185745,0.010286113494604178,-0.019624011785131287,0.2397868231116018,0.0864556547280499,2.4388510191081095e-05,0.0004041619601292668,0.015076713903764445,0.040875594344579005,0.002577537836126381,0.0001095705019248731,0.015052879489338047,-0.003286865287106347,0.01691505202169155,-0.008167555070693082,5.469786629949805e-05,0.004687868797743247,0.0528776494048034,0.05435225946365871,0.12641617643818873,0.001897481327512113,0.008255326799447954,-0.06636001048339302,0.40317467830039844,0.03344121232231355,0.00013544572607811824,0.04439796521574629,-0.016483938460876767,0.08735547403627364,-0.04076639188239766,0.0002921992464960348,0.009097702027610613,-0.013616353729630411,0.08767023409274045,-0.15159715649684546,4.3749149533219646e-05,0.0012084275390384723,0.030069390498553054,0.1777047240944729,0.020644594669742323,0.0002788768468130802,0.022925063366815924,0.01203463933869696,0.17916051151170698,0.007845178152704704,2.7875394167386227e-05,0.011099289262737577,-0.021417409283574787,0.2251639848805128,0.018390442871116353,3.177969457905649e-05,0.008860878887113505,-0.07248689293236434,0.19677078651709806,0.16953704434582642,0.00011866472001622018,0.008188624344502264,-0.013187768312143328,0.09869560490298712,-0.10519445370686399,3.0864970883135194e-05,0.01630678755112615,-0.011862196779159985,0.037982266828702115,0.01800702486104508,6.924072810253594e-05,0.007864828833771771,-0.011607239662428258,0.04346162050109136,0.02249303687537532,0.00012211573619036855,0.011111021473697502,-0.040984433847368454,0.04483360850730677,-0.027667429714329825,0.0005225054279437037,0.0237495207059343,-0.021421812012706563,0.07422587488498118,0.010575185517564365,0.00012147499438849476,0.005506355516658264,-0.05873060361180922,0.21000276564501424,0.08866092227293002,0.0017949759119076784,0.005594181821744687,-0.0429930561408937,0.42029321071250875,0.07170751501670404,2.6304384159646603e-05,0.007569191504790483,0.014916411436303522,0.04297049090983577,-0.07506233181081172,0.0011349201543239703,0.0038301818423521847,0.01836437264481055,0.12405843717582743,0.008066657403570373,9.857696301423993e-05,0.00680966876021138,-0.025378502141186806,0.03769403464135737,0.03224131129697029,0.00015890543336704175,0.010115913974720572,0.03168008795465675,0.04484003231792625,0.06056425278983563,0.0004055312959663714,0.0076925694078732,-0.014742227372708508,0.0636443023926348,0.0016637968430781244,0.0017953698006056987,0.01956663971789333,0.011669146759183404,0.039032146578918965,-0.006319612025252835,9.591952871067205e-05,0.0026099559518513943,-0.007242197475337238,0.009471550046583259,-0.09590954311386209,0.0019007565516958743,0.020091762299476568,-0.00503008215129539,0.013632002121533243,0.0013931551180571293,0.0001461946465056512,0.012388181725993487,-0.01179872434592561,0.025998876168610605,-0.04950550722045357,0.00018396739358957637,0.014695553478422788,0.016953006930858022,0.06952178061710716,-0.0009604848228675472,5.951682808892162e-05,0.014601665775701446,-0.03257987939445831,0.10587471096855106,0.0346984936038269,0.0029165893961460463,0.017542301758262567,0.03419651598133361,0.1489025056020085,0.05374980575615948,0.0001142405871053844,0.011314395232324897,0.017503075175081668,0.11261696077754822,-0.04630759327307225,0.00011271230717917973,0.0190899844387511,0.022161369866163756,0.14114262333023866,0.0457395515304412,7.426550107827843e-05,0.010198941256114653,0.048256434991292056,0.24074645941094655,0.018023404974509678,5.037820864884961e-05,0.011084108874086708,-0.014033393387378277,0.023028427964016107,-0.002579027869218691,0.0002971172055911006,0.004539508604651785,0.0017245743836996372,0.007146992215465019,-0.0025608030421801387,6.000300458519781e-05,0.00750069609577653,-0.02147554183714538,0.21795793903258434,0.034083740384026846,2.5421590747287967e-05,0.004871702125836123,0.032120299467670636,0.08540715999763887,0.10353030923464085,0.0001314601942001952,0.004700378649645969,0.03638737149545991,0.14894925799450226,0.0793213304016394,0.0003850705555656882,0.002122813145782872,0.044910124604120326,0.2166258970989668,0.049969194924634815,0.00011874236150653058,0.02109222343801274,-0.0029446665508339404 +2018-12-11,-0.012671834091465236,0.0864618364357705,-0.0041133451906140645,0.00015498926062317505,0.009702077275197379,-0.014246420116468326,0.051108476796709025,0.004965056006773964,6.688416908022212e-05,0.0040436962176959275,-0.032994896987936895,0.11182630288357084,0.005744203613884189,0.00013648974251700583,0.01237587289948742,-0.013672373768275478,0.015920803895329964,0.039836532975188174,0.0002898323016711037,0.00010185845770100234,-0.01877700723635137,0.045161515193616865,0.0008172041950514022,0.00021754827381181954,0.007273857688615632,-0.016794707177191986,0.04836099005051881,0.00803974329336861,7.582702073352097e-05,0.01232815717861753,0.0683058537293075,0.2247205507436249,0.06338365620685209,8.918770494569027e-05,0.009761826986845565,0.051367670256961755,0.40463932268066954,0.1419807501820116,4.353318059821203e-05,0.008300050270164807,0.004941061626349308,0.0047833816861996845,-0.0603880604920003,0.0007965811418263503,0.006750395756851806,-0.03933958224281567,0.09005870648212648,0.024281423945903064,0.0001527446210039968,0.008966643431645258,-0.003914415011270752,0.0028031570840176038,0.0011506788281300093,0.0006825646476343447,0.004694971334380148,-0.010025510131527958,0.12518125986512554,0.02677550737601675,2.3866566864515707e-05,0.001681183828897992,0.004514946012028032,0.012260567759227592,-0.005624797531178284,0.00010939387781835283,0.028921937773006546,0.009358391702032481,0.0503837065841687,-0.04099298117707631,5.228449565954876e-05,0.007898985316767864,-0.002418813825635384,0.0023934326462110448,0.002804488881382794,0.001971079787210034,0.005054504211494376,0.036816178558842394,0.2204681968643951,0.022431803006853976,0.00013741839292605884,0.04540659010343564,-0.021744761615005607,0.12311615374707546,-0.022310577307168036,0.0002734940254710509,0.014144183710325577,0.002232418127774746,0.014543173021070893,-0.00047072539573633684,4.3239167671382174e-05,0.003268502012504475,-0.07017652043186882,0.3786031516768834,0.11255486536555478,0.00030548818152977984,0.011195325266416117,-0.06210075896345576,0.8393613545622801,0.06772784865002414,3.070281313751918e-05,0.014914508186933632,-0.014531051765185748,0.16135207133273527,0.019357338866163386,3.008875471960444e-05,0.008819884862959699,0.019106221847292597,0.06048909238592671,-0.05526576327683596,0.00010174674014815617,0.02012584360294127,0.01805219049604417,0.12189627980526249,-0.0482391007719751,3.4208326796983566e-05,0.006702608335851086,0.0030592579347975797,0.00783412663817445,-0.0007988934496093935,8.657707115503723e-05,0.005795712286608563,0.0009716426247552201,0.0036184541577465985,-0.03262342673800975,0.00012278125811718453,0.008243001163193476,6.903008482314328e-05,7.792430236746925e-05,-0.00037918838861778864,0.0005063386106092435,0.015070221188948109,-0.006631351503930615,0.02033344396507381,-0.026143688801286334,0.000137270468125518,0.009486400071517706,0.030108477848863394,0.09958798233501168,0.018583684541773407,0.0019404436754768845,0.008802637651146278,-0.0654269778346502,0.5777095408080859,0.1344683022043672,2.912255776999773e-05,0.01089494148747153,0.0029202858733053997,0.009017500987202554,-0.03481613031156874,0.0010587914822179963,0.0011811211595543583,0.0012826425687202721,0.008207545442711161,-0.006415791281838976,0.00010406818889841416,0.002408451860338335,-0.025589625892102733,0.03606142526833934,0.03153458764857924,0.00016748134330293917,0.010673014218571683,-0.020131939362276804,0.02874002948112631,-0.030452207183460426,0.0004020706001265796,0.014323316331247667,0.02208923979751896,0.09951441712934651,0.026713908158909838,0.0017204620896785654,0.008798357713331262,-0.008597099458167648,0.031315329874745876,-0.007667130842603971,8.80816274926928e-05,0.006391287878250785,-0.029170379543522182,0.04382202756639185,0.01293009812300371,0.0016547287171409905,0.00392059844351944,-0.03825153505927397,0.13375671698062733,0.03185268080658291,0.00011330505978277973,0.013098744112787676,-0.060976902659636296,0.14141010337356727,0.13159896387823475,0.00017480155705373307,0.006241208029239602,-0.014981420790749092,0.056169022526113464,0.0027030106542399865,6.509836203850109e-05,0.021585484256497763,0.007118370000176799,0.021007772036445462,-0.02510252259031429,0.0032115790777706857,0.007256259429426078,-0.0023006315510813416,0.012180744962634743,-0.04763559901644223,9.395367928567059e-05,0.006425953081752055,-0.006580572493475446,0.03501787349433465,-0.005225367744603572,0.00013628080578343416,0.0015880146734755542,0.007821241356326935,0.0349671896991233,0.008734954293454831,0.00010579463806659142,0.006356683761311796,-0.021796901356603882,0.10229380282502794,-0.07305016174025189,5.355411287841818e-05,0.011071662225416135,-0.00764669840134589,0.01604555648367377,-0.12371789666411429,0.00023235315377944057,0.03413165462517258,0.009915208177159933,0.03962304118450782,-0.025652494033965894,6.222550172252257e-05,0.00886651926097707,0.049959759672523724,0.5463896092793714,0.08019992677852696,2.3591154469954167e-05,0.00190781110555898,-0.011522990801597235,0.033919926343907496,-0.012352877616090874,0.0001187460793021432,0.00567010082737452,0.016477539775605943,0.07758261205547277,-0.026702699358743386,0.0003347772535906159,0.027034646616319796,-0.06393311697368584,0.3062313626582004,0.0539278138449754,0.0001195770974869469,0.008286428852086736,-0.0060066017682471684 +2018-12-12,0.011065627520080952,0.05773638706392307,9.734678305343638e-05,0.00020268099490565922,0.018338892492375043,-0.061156683818072405,0.27122921113614146,0.03075530894798343,5.4102582230976307e-05,0.007043578727640883,-0.02767717459482597,0.09809499710577205,-0.0392600194315796,0.00013051850758158265,0.024333839638402462,-0.0045396627868137095,0.005057014082086194,0.008780055190470242,0.0003029683678498916,0.002466932107466841,-0.010144381684476605,0.024157600260157785,-0.03392436215851021,0.0002197199861234214,0.013804078309261725,-0.011256189442796105,0.026965973469292692,0.010869608072290272,9.114272952889282e-05,0.011131059899259424,0.031480081912589615,0.13805218503710692,-0.06486599376291617,6.690867415048709e-05,0.013759204945645838,0.017784782451310086,0.1527286758500185,0.015569112898610585,3.993250780009324e-05,0.007756160865145899,-0.027676610753312438,0.02029223999916294,0.07874522569138111,0.0010517867666590308,0.009776860996636588,0.03143384359711178,0.06749387978585134,0.002888587673793388,0.00016285270652692375,0.011647777495362619,0.0036363401095542095,0.0021194622655246586,-0.05668760179549709,0.0008386160417564682,0.01831671650723632,0.005942137207548309,0.08123911067596294,-0.08438453175948299,2.1797179698734013e-05,0.003181588923324162,0.0054952914195362055,0.013375024495188466,-0.019373160921491436,0.00012205264069905134,0.0006317203925719518,-0.006775164993143432,0.04407906447509148,-0.053170772485799406,4.326625700113579e-05,0.004030475166417198,-0.010021933410214016,0.008216257098110875,0.012090598812214609,0.0023790329924547643,0.005887446730129629,0.022051505510616572,0.172265893899676,0.008398682186196726,0.0001053394510642068,0.040607545528113256,0.03710238273724344,0.17356515309825282,-0.0027131557553389746,0.00033101486510151345,0.016426272161164497,-0.04606890094082263,0.26321946864537055,-0.06408663851176873,4.9300440461032595e-05,0.0037488439942096313,-0.04182363537271585,0.25603129443807376,0.03378844367258008,0.0002692250927049866,0.008220879210217908,0.053426541524541085,0.7761970295221067,0.05224020681663223,2.8563756139818487e-05,0.014152661797871623,0.012298407962940072,0.12479092572557209,-0.06308994827130608,3.292665384780053e-05,0.0052049488570197235,-0.0359089354386261,0.09194263950609512,0.03327147976266929,0.00012580801745384104,0.009160964321548162,-0.02647219409314323,0.19579790953231763,0.01865176700861413,3.123016392419737e-05,0.01632808029744276,0.02535769328845074,0.07311848871067154,0.06395669961432408,7.688824011493058e-05,0.010049090040568663,0.01909973261131936,0.07458352552142528,0.1451844531947348,0.000117093550430031,0.009051781864435168,0.057041400030392014,0.06522131089554764,0.01403541138693104,0.0004998920317811874,0.007748286879784785,-0.0041281168428791235,0.01472517383094373,-0.08487843095682987,0.00011799879161363275,0.012264233859113322,-0.021801691536818737,0.09071522177796007,0.009729343361022214,0.0015425142994550825,0.017553808582102738,0.049251453182077874,0.4347322686272845,0.0446918441560333,2.9132608111876764e-05,0.009702839422948924,-0.019170606706594855,0.05433184362604663,0.01798172240525673,0.0011535931943321125,0.01640792965762854,0.007269432001208478,0.050395769070558094,-0.011535262553543927,9.605766921752705e-05,0.01661370955921623,-0.021166872506058764,0.03219957255030679,0.013469519107870653,0.0001551500692426851,0.015050136874357117,-0.00943452388940417,0.01161107260460798,-0.020567611366356764,0.0004663925038764133,0.006412020893841927,-0.023398899586708315,0.10001973933739747,-0.05641447178779687,0.001813259896588102,0.010157909449005733,-0.009442460024138559,0.0369602355120824,0.013368908476866694,8.196733127296595e-05,0.0007247842077753,-0.0027601916851146195,0.004353384787414451,-0.013038715653547202,0.00157612036198333,0.007066486916349289,-0.009775582819344514,0.02734853345961681,0.0022600945873911624,0.000141620020624397,0.017987209106132336,-0.06562975796166266,0.19562033517675279,0.07727429572628558,0.00013600259030222009,0.009054299494314782,-0.014238473638514321,0.07265363103655287,-0.03647700586290116,4.783216477305776e-05,0.012738206175284658,-0.03973505273618156,0.1387069221601494,0.04353222594890205,0.002715149307381137,0.02403750870148504,0.014606777604083982,0.08007404368041324,0.0031744403775083615,9.074093021449614e-05,0.007881674078478736,0.008091184117082635,0.042930396262045555,-0.02856676856350783,0.0001366809444264742,0.009558581417897937,0.002183751350291893,0.013553120432855134,-0.004681608472159716,7.621010987803396e-05,0.006803695097878728,-0.06846620937343968,0.3976420688143072,0.03312013850498807,4.327442979516435e-05,0.013245425514265375,0.014840248976410956,0.026955515296743154,0.011754610254939282,0.0002684249882816799,0.017101371243980163,0.019548657599340536,0.08581254214321213,-0.013398977469748314,5.664747388770697e-05,0.001655494561716083,0.01281716089777337,0.16493674425533023,0.0005512470624042473,2.004959960246058e-05,0.016839520266890284,0.007941809711101032,0.02446789953649384,-0.015777754169285264,0.00011345711938937307,0.011467796192043127,-0.02442709752059438,0.11951468373796466,0.027933818153495917,0.0003221651585154854,0.008970800458429712,0.02530297421577211,0.11934355085128719,0.008958286527782721,0.00012143514999354931,0.014393152466949286,-0.0029318460801144317 +2018-12-13,-0.03587029740042213,0.2270668648140084,0.015325780820300065,0.00016705820003051636,0.0016748489088953585,0.026613627897420247,0.0840202747127129,0.0236005959038016,7.600296057062304e-05,0.007927113797073717,-0.014225682466951719,0.05766878961014792,-0.0002721514634524462,0.00011411151696242199,0.019352129283029772,0.027448824426943436,0.02735865558002823,0.023811758265344915,0.00033860771847527346,0.004842680130176852,-0.010020173213656778,0.019801949147387313,-0.034952956622927335,0.00026476773514696734,0.00010159924248275985,0.017300100732817167,0.04101554862038307,-0.014601357743718348,9.20972890681327e-05,0.017429232660493805,-0.035833874980764686,0.15372143883209022,0.04266964179715009,6.8398911208247e-05,0.002967273679928239,0.02231736311475289,0.21152238425131303,0.007704522275119345,3.618138280648267e-05,0.008013903525414682,0.005148398953329047,0.004359195664684448,0.0013813676281889187,0.000910773984777252,0.011978777605096786,0.02286838583242638,0.0626349467791263,0.005529647525614715,0.00012766759717174354,0.02275268326543935,0.0015054166322718652,0.0010935382319796519,-0.0013988857681997953,0.000672894683315123,0.0014040824043505856,0.007183605220060571,0.09877493570626295,0.012752560623929463,2.1672973058459314e-05,0.006257780616618413,-0.00703882862235924,0.020074649918024618,-0.008496319877095784,0.0001041605942339949,0.021729616207546362,-0.015869829724289183,0.08243662631561766,-0.06763887697708225,5.418934170186489e-05,0.0035197714358367197,-0.007452887625684746,0.0065436351147064595,-0.03192415294519176,0.0022214087147798584,0.010850656553687228,0.0713102151505286,0.5320860660908708,0.05594379874968911,0.00011028640200097352,0.023560202776323078,-0.012076414726899447,0.08003567181198408,-0.0267085362862084,0.00023364831657626215,0.015688553305956927,0.06581107874499517,0.4626324850771889,0.20794168069971758,4.007041504757486e-05,0.011215340239627952,0.000360737419950724,0.0021390720925385078,-0.050650123854504826,0.00027794097748433063,0.030115103705022545,-0.0028113157362589787,0.038172417879310354,-0.031075783758748452,3.056259211003678e-05,0.012465299197798785,0.01959401171986802,0.2144611013738101,0.017982362995836266,3.052506100455203e-05,0.012224255949961092,0.00624184506044149,0.016125434443459628,-0.004053144200074526,0.0001246879015225248,0.01035487957538313,-0.054049718612087294,0.3360451541991307,0.054561973079013094,3.715251140664306e-05,0.012984837969516175,0.021872392299182006,0.06569436651192476,-0.025989840012377013,7.381515565858567e-05,0.004564258663656148,-0.009180283509646087,0.03917855364691207,-0.045831932879212764,0.00010714114664629261,0.0037542801588737766,-0.037093429985347696,0.037216342979099926,-0.033871007565057225,0.0005696903458352331,0.0026266746027381153,0.007495447498351364,0.029044941567136724,-0.009128447996289082,0.00010862081785901299,0.0036488424008325267,0.01902745704735953,0.0706907774133116,-0.010962018149256349,0.0017275760201742598,0.028727719933946683,-0.06373880273942314,0.5620231228079583,0.06565792810891534,2.9162980875922568e-05,0.028757016901463997,-0.03603684809798501,0.10489768559674245,0.04463942528623891,0.0011231872442374624,0.01117238633109784,0.014244853131527352,0.09495061207235805,0.016929337121446907,9.990468400831108e-05,0.004537274911608029,0.022475707537842653,0.03508690304025039,-0.005450706222812649,0.0001511867467027045,0.010779792739497206,0.040423502384461345,0.06533348976131792,0.09777090156563621,0.0003551419675356949,0.0015945783063750084,-0.012887001915819173,0.05935643117105101,0.00023757974897613732,0.001682807555743497,0.0019941222782024885,0.02796641006914772,0.12013284414587988,-0.0026365586989255886,7.469049414124479e-05,0.019385653361206928,-0.0016363243954282923,0.0022376286939741787,-0.08272528448768733,0.0018178522182027335,0.017526821624884982,0.020793665119505103,0.07688166941604989,-0.029382475107215453,0.00010715792042972804,0.009044814033057182,-0.025523579924587324,0.06799089832896203,0.0055504605618152455,0.00015217775925101823,0.010835770514982345,0.009240476669255164,0.03783786264163738,-0.06330055682670463,5.96048642998255e-05,0.013735869329625377,-0.0010539232255042713,0.003328949240199728,-0.004684425370561539,0.003000681219245121,0.001843573358686942,-0.017580397507084934,0.0782966693128109,-0.02612940724827071,0.00011169300449844028,0.01955001721033521,0.040092962527498485,0.23941727468828788,-0.03274361410100152,0.00012144326916755601,0.014153239144980215,0.010269912086579073,0.04765622710655004,-0.002305280535410211,0.00010192853164448746,0.01857568531890073,-0.027449825484935034,0.1311525690177597,-0.0010181519675379058,5.260295973287774e-05,0.012914640840725154,0.03009100578593474,0.05722075741121555,0.025869997190729792,0.0002563967383365111,0.008960574503682579,0.01907847053604569,0.08201693015866704,0.024346898869607978,5.7843481120662585e-05,0.0018068666681586533,0.017923720325910206,0.18278353781740053,-0.005097299133683195,2.5300107428839355e-05,0.02989261933220093,0.01177982178991845,0.036866512233232555,-0.09355831327241014,0.0001116903448526439,0.00262270987690598,-0.01810018733037904,0.08316637569114611,0.012907239638289809,0.0003430546139793326,0.005089361342105752,0.05773953223424909,0.2732663419901061,0.08688977571163174,0.0001210204919279327,0.014420550999731574,0.003936164479320154 +2018-12-14,-0.0065964829087271784,0.04086909928167119,-0.028567632269098638,0.00017068838100510087,0.006221189144731527,0.007042433666925125,0.02631371231565884,0.0014623315120254228,6.42171709881322e-05,0.011837562741779314,0.04930623257442407,0.15078642435722978,-0.03644227631313652,0.00015126441831224573,0.00951447459777428,0.008495659859954763,0.007932270674010047,-0.001604794122271892,0.0003614659950877658,0.001820170005274519,0.0073419724908777165,0.015847031148243124,-0.105412054480391,0.00024241674396982945,0.006218000993478498,-0.01721004322744458,0.04430198915865634,0.018987257205493012,8.482140745774107e-05,0.004664291252606847,0.07378416671166302,0.2598564038699635,0.057068050657969174,8.331431119281037e-05,0.002604656352475327,-0.006781074262209999,0.06132909878589962,-0.028720963795145587,3.7916699975389914e-05,0.0003354965999231791,-0.0014001925902156513,0.001092816623571152,-0.1566226725339683,0.0009880644387051964,0.0010522151632612324,-0.002471475235454668,0.006388137804003207,-0.0842026879895713,0.0001352832018252974,0.006550331296425346,-0.021385980977956142,0.014056930933769815,0.019169286918886103,0.0007436404815704018,0.0011887016887304016,0.009780841739495607,0.11489271409852364,-0.05240056879412777,2.5369185986147463e-05,0.012020127040655179,0.005305700722995253,0.013605814201087163,-0.12060619606082805,0.00011584285465571902,0.02162519097699774,-0.003091581727987469,0.017711572774186266,-0.008999043475614699,4.913437343333632e-05,0.0002293683899586032,0.0286230512001649,0.024494111527792326,0.030229582202676217,0.002279172567560604,0.01128881374889922,-0.004346870905328066,0.03130950550447999,-0.03697575220191059,0.00011424906165439938,0.000129253658939981,-0.0582347045279701,0.3662665479381589,0.03683190365497777,0.0002462027235907105,0.04195355564876225,0.0561470816886697,0.4068146184814265,0.10763007230536248,3.887689697840629e-05,0.02869469701925156,0.028179005916875492,0.14506495652142135,0.02352628568938578,0.00032014738847178134,0.001521547970214511,0.008391568672370482,0.12184529695202785,0.006131947408998251,2.8580157219529917e-05,0.018634202439628156,-0.00566580365160057,0.048030479710036565,-0.028228714413644575,3.941180313770744e-05,0.009846355086933021,-0.030271676069084527,0.08867123198402971,-0.011396496276452938,0.00010997057117485818,0.02488404869938798,0.0259586042666275,0.18694049545967387,0.006575643423303904,3.207527026836268e-05,0.021712411947058446,0.0009920368949165132,0.0027540346586750666,-0.005351030994174054,7.986119514017122e-05,0.008507675315895118,0.0125775585227296,0.04508971970982257,0.05963585627830542,0.00012754616551828227,0.008731003602344594,-0.006101660018810856,0.005019579861031804,-0.03552884957961697,0.0006947942225852183,0.015126872146162134,-0.005230975549301561,0.021169135386342814,0.001498342393701128,0.00010400772061481781,0.008308274659531257,-0.013288474132625584,0.04908854778935321,-0.011300720327813074,0.0017374571623093803,0.0045888743313378475,-0.00129804532769992,0.012062999615519246,-0.002102126242873925,2.767048297344981e-05,0.017236347178890124,0.045496304269794396,0.13442569458365955,0.033941247317721496,0.0011065348598462749,0.030489114599944675,0.029107059747250558,0.2010208692482473,-0.03830852238384361,9.64234872179765e-05,0.010912807391678835,-0.00018920142409505278,0.0002754293473364063,-0.007260690309397276,0.00016212857823807904,0.012957868260629703,-0.005590284781628581,0.007306228617157008,-0.014331678883296589,0.00043918205723076454,0.00386588904680397,-0.032807138566503864,0.13873619256539196,-0.015877099496241994,0.0018328584345385297,0.010680638110020233,-0.014119168904275904,0.05798018849838052,0.022689286206414916,7.813037001612046e-05,0.0110925945889551,0.000591868543539374,0.0008499737582745493,-0.04585505492028032,0.0017309994621410444,0.007295272137618404,0.04390860450852248,0.156831490104996,0.09446643347564664,0.00011092575729722996,0.01581438444827955,0.00017526650909231194,0.0004679954076953724,-0.009581580825881782,0.00015181606173965192,0.0009181596722032716,-0.010239460280319796,0.04034858159818587,-0.021800609903671924,6.19387902079987e-05,0.007008924859018949,-0.04610133515542178,0.16178433783629054,0.040863750865194025,0.0027008165457141652,0.01262443494045382,-0.025777384027378572,0.144541516123342,-0.00490238434161877,8.871290614834192e-05,0.001936228941560759,0.01715856397629828,0.09129291060691588,-0.00395021066095346,0.00013630276604359868,0.00025822569083193197,0.014676320583271382,0.08342749156736502,0.017224977296344854,8.320639433582081e-05,0.007202575417041062,-0.005967568822147901,0.023776553663684478,-0.0517813806314424,6.308061603959584e-05,0.01968651792767658,0.03538227098019759,0.07266240027440854,0.026642215368396532,0.00023741347152485251,0.026718236619386646,0.009350872220542096,0.03350752334474087,-0.051498264344275214,6.939435915118753e-05,0.0018331002878544111,0.015406225910057931,0.14881336886066776,-0.13726446192539588,2.671072025363509e-05,0.021753810619554146,-0.0011754821241140624,0.003770826199441211,0.004335480979388804,0.00010896536495126028,0.004158625607030633,-0.011954464349353884,0.04650874593503062,-0.014332874936286818,0.00040515710828316315,0.028638741336859237,-0.014523767618197164,0.08039751172959787,-0.13975522600576407,0.0001034685778389114,0.009568759428216942,0.003147120415393311 +2018-12-17,0.00259594539851244,0.01641744651803964,-0.004769067065688759,0.00016721549826022463,0.014923981360375226,-0.009005689293157959,0.028952402459377476,0.00025285371388864415,7.463505868710318e-05,0.01522887831029561,-0.008453733016635528,0.029778822537591405,-0.002864299518683001,0.00013132221847206483,0.012837246210619557,-0.022486404068293775,0.029299840511916125,0.08581622804221627,0.00025901362519268863,0.009130898615974787,0.00026400546212103907,0.0006292326096947947,-0.11308411905221279,0.0002195328234232564,0.0026108896333456076,-0.003320767618600414,0.008325317136785774,-0.006933874226616492,8.709323838915156e-05,0.006012359286490102,-0.02966033244275537,0.1192915742482762,0.028131983640799045,7.295517436736542e-05,0.02695988727899052,0.026720170918595937,0.22260325899859754,0.03249622617267602,4.1162934503902684e-05,0.015113708235640247,0.008866603603557779,0.007730718048510039,-0.05506000839539764,0.000884468245867022,0.0007753390169626428,0.005065531280632285,0.012573633380261852,-0.05649459201523577,0.00014087245878138718,0.013781225426291852,0.010614726309030417,0.006185288450047413,-0.14714975051877968,0.0008388285457754596,0.01477424651357835,0.006670087086340301,0.0882499078573658,-0.004490669186349773,2.2523715497608496e-05,0.0013050844249221135,-0.09412828649713836,0.33563593499323985,0.2524486072294858,8.331107496305881e-05,0.002235832993321256,0.0028970495826546473,0.01519168778300445,0.0034414625253615153,5.367990273228045e-05,0.0010758503625808793,-0.0006235356485055881,0.00047943858632656315,0.002098791172388894,0.0025365958422372626,0.016958446698892394,0.06030160029166341,0.3822562948270326,0.032310278737005475,0.00012981542500184023,0.03353328891386997,-0.010677940997878416,0.06570997534482673,-0.015045768649490745,0.0002516311743668419,0.01945971994542649,-0.08919034066767403,0.4973870478040963,0.00194441126305008,5.0510806964254935e-05,0.006016981319422084,0.006469611762457683,0.030265675827479695,-0.04382869679843978,0.0003523016288030879,0.008381643020759211,0.041292389989797174,0.567165038463062,0.0568361624244019,3.0212787752200166e-05,0.002454420189058526,-0.007589090548251773,0.07648412232640431,0.0040987503229059224,3.315126890763602e-05,0.004140089978681602,0.025407980877851337,0.0756279272272985,0.027123082416503227,0.0001082207930311142,0.007417662763948628,-0.04794397640451582,0.30478587048614886,0.032069388984039195,3.6335538197080045e-05,0.023675462005854665,-0.023316236288523664,0.06782443364750804,-0.08193286179562749,7.621661457578072e-05,0.011622575125701567,0.004906945667389471,0.016239192072980142,0.006213380653771123,0.0001381641680508934,0.006839112945236406,0.014673378874707736,0.012522309118419275,-0.05922395398298526,0.0006697631858613337,0.01928117179021037,0.012143411157998177,0.043375025396985345,-0.1458276198135496,0.00011783843520885385,0.0010622051489816674,-0.01123959050714137,0.039408572309484205,-0.06533824905284766,0.001830538898491529,0.006524405514725955,-0.024457003610634746,0.1974374776035145,0.011802377904420399,3.1853403936226584e-05,0.026590689006733725,0.03495547919352792,0.1183738041463417,0.005212960698937773,0.0009654525306222576,0.041375712606651814,0.002410923338126116,0.01702438175641716,-0.049712955278916525,9.430564611137087e-05,0.009508103010220275,0.020544607570834792,0.030900850494561326,0.0262665338906494,0.00015691801421682529,0.01603372331750915,0.013203587803506736,0.019085937137323074,0.01339014245790013,0.0003970839949779541,0.017048215916225608,-0.01118892299662611,0.04746443452024241,-0.04384305485985071,0.0018271336457477997,0.012104677426474895,0.016948859364314246,0.07431183469465841,0.004757602423348481,7.31767071090627e-05,0.010635043677888222,-0.04418129419556889,0.06487338517994705,-0.05033782906864151,0.0016929692294201453,0.004091529287613187,-0.004440185607169664,0.01734701538354532,-0.0038190680012909514,0.00010141271217371353,0.01429613188798356,0.01858725034709382,0.043954252467786226,0.026107424638771675,0.00017142518471216343,0.01455345478239337,-0.027223070465810174,0.11124181433748019,0.045642978786905264,5.97286871305125e-05,0.0029050910191219586,-0.02012893529523161,0.06071407212867384,0.009682237186770385,0.0031423134153370858,0.05819047824788597,-0.004456859490044187,0.019746933652401995,-0.10050524453518803,0.0001122715830080456,0.003999729838692433,0.024703353633776595,0.14188330404263363,0.0036975971870313075,0.0001262657045750052,0.034593032208417196,0.0013327420560536815,0.007499882257237538,-0.00034827357234361344,8.405051057268104e-05,0.008163433011180493,-0.005459914616060465,0.02503846996309637,-0.02235891956753973,5.4805665951375284e-05,0.0027775396043019556,0.04517015092946155,0.07922332912656377,-0.013820070286369536,0.0002779891511329918,0.016836217673524504,-0.007145286971464904,0.02733899574102709,0.02017008871947587,6.499074184537244e-05,0.01438544662965911,-0.029703236125436884,0.3582179862638525,0.08202943686073842,2.139378687146087e-05,0.0005782794052176651,-0.00767850573697754,0.0221946391775775,0.006675683198864194,0.00012093098453871092,0.002662315260084383,0.004875305197745354,0.016330351216353955,-0.0022021508123622555,0.00047058085424100146,0.0059496383575070675,0.04008563929080089,0.2161481908326561,0.03542323427891235,0.0001062206623880988,0.030194554440858428,-0.0015809463370255363 +2018-12-18,-0.0017032229862698495,0.010108368255802946,0.000987613927284621,0.00017818741943357281,0.013278316022112917,-0.027799272736431967,0.08147025044826536,0.012695714604168296,8.187379281050473e-05,0.01768681286473907,-0.0055279865452965305,0.01371047987704254,-0.0015427756132199775,0.00018651403866243766,0.006013449090997682,0.019576886575050006,0.020366242951198738,0.0164923954562082,0.0003244147267465651,0.010474457609521898,0.0125319034955149,0.031000072067285785,0.020691638306833685,0.00021152032772484933,0.0074798758310645,0.03401803544036637,0.08662919104883145,0.1088784001760512,8.57416250038581e-05,0.0002502550366699906,-0.010101861327434899,0.04033501621392075,0.007292953487161737,7.348674678028768e-05,0.018432338022438908,-0.032567125385246566,0.2718082263668147,0.029799775833991578,4.108804181658859e-05,0.009591341298514237,0.02333476856586423,0.01783471956411752,0.07248759007404766,0.0010089787035938102,0.0008614529611122676,0.010347188759693348,0.026959776271234775,-0.006495892490714636,0.00013420477688222537,0.021687258157242463,-0.01143994642169059,0.0070587055151504945,0.006336745481917584,0.000792178926136514,0.0008785912929932952,-0.0020880860821110496,0.030534787370671276,-0.016558100178750004,2.037869117577953e-05,0.006573313045857494,0.04027322488778354,0.1147825288928151,0.016572044153713737,0.00010422974042244133,0.007003313326156292,0.007614809721509449,0.04880332017311524,0.02360017069827797,4.3920927748447076e-05,0.00024074402852566917,0.007941945872807018,0.007633520031951317,-0.01708056541620855,0.0020292008979572434,0.007487363129637286,-0.021997232242849274,0.15070579105071427,-0.009949157163526895,0.00012011305327662441,0.010550308160964288,0.01673747213745598,0.09397592648140614,0.0027406422726013054,0.0002757918848733548,9.396208643999465e-05,0.0210827919526683,0.14455230846740658,0.029581982434702413,4.108317953923214e-05,0.008353399136773285,-0.01807369191247105,0.09420447257056525,-0.012729636469062479,0.0003162002143468325,0.006225180556311409,-0.010015177792867995,0.14409764259340896,-0.031675991554555895,2.884244139114297e-05,0.008321460254376016,-0.007672689706918445,0.06502152903441057,-0.0514541159563254,3.942504213546585e-05,0.013963512555370605,-0.019652177647946138,0.05265092104487198,-0.006339340136367586,0.0001202340466768306,0.009387026756967856,-0.05572822282804753,0.37209715384293707,0.03998175360031713,3.459483165553991e-05,0.045354125645184096,0.0008089482272686826,0.0025859175107099813,-0.0020121998238505213,6.935590497751566e-05,0.007350917643871096,-0.005551532771928639,0.026348457956452766,-0.01721982734580144,9.633992420384898e-05,0.004140410315460878,0.008877766262028543,0.0077029547592488016,-0.061009778922579784,0.0006587519605220725,0.006319471794547229,0.009907250287414557,0.03446170368981995,0.001825624400126306,0.00012100474474414622,0.013135464373321814,-0.017910495279400463,0.06798714866018749,0.0028807397862958004,0.00169082999200142,0.021972409674057156,-0.0522696792523095,0.4622257024888744,0.047768059712869404,2.9078897674606477e-05,0.00039757715522964194,0.07443671293862031,0.1923829979103144,0.060349434485039356,0.0012650036205676743,0.0104447201509648,0.003451934904659205,0.029254077608911903,-0.08051936785673164,7.857815571277024e-05,0.00114620017013705,0.005481524219722901,0.008553835158301324,0.0002112215035462387,0.00015124667884261375,0.011992464108989544,-0.002620694736693098,0.004454788017087114,-0.019862524841537714,0.0003376706450832007,0.0030968652417897352,0.022034988527860882,0.07061365142226271,-0.0074409388543257024,0.002418658208111265,0.0013705066649338685,0.04373018833764653,0.13119901774863382,0.07805596751074745,0.00010694023511149737,0.016214552321493825,-0.011358013315075487,0.016228070623070617,-0.02153627218123048,0.001739853480321462,0.008074798575638434,-0.004545269248885915,0.013954468010040178,-0.01456389857929285,0.00012905129495274412,0.017177565128959175,0.004908858062279996,0.01141546286791713,-0.008841113008910622,0.00017432004333571083,0.023696289209540908,0.03306396324872612,0.166157413815397,0.08141182495802869,4.8567875954139936e-05,0.021257203680820933,0.00031360353605951164,0.0010425716564372034,-0.023071165881868753,0.0028509729383744604,0.01335206441416558,0.005515414989195025,0.030893600338409245,-0.07011805972845693,8.880762215126221e-05,0.0076139933224637826,-0.004388419920137671,0.023267414565809354,-0.1074202218601156,0.00013677944406627115,0.00629334188823049,0.03797700556913509,0.2281741829398155,0.09566795701366862,7.872323147439446e-05,0.00043209566795238656,0.014396898520062311,0.07222308563788957,-0.0046300443376977255,5.010029685645315e-05,0.012709730894625055,-0.04048081067309443,0.07631720231318574,0.01145206663783359,0.0002586164547580902,0.029788856575713413,6.918785260161218e-05,0.00031014812444952057,-0.039017994426818074,5.547215887973447e-05,2.9956109510752933e-05,-0.023540645100567397,0.29106328217617705,0.02001307889480412,2.0867106042356542e-05,0.01208598203754238,0.007525794911097058,0.025081929493727492,-0.0010168730115618018,0.00010488186487899408,0.00325794715862016,-0.026829331749079928,0.10155276082469718,0.008962275210077392,0.0004164339149938385,0.005932608226725831,-0.017424616241694956,0.08809765361654542,-0.013322989060371205,0.00011328454805308968,0.003315925113243748,0.001062903196409021 +2018-12-19,0.01861150904583856,0.1305263115459444,0.009970108077499349,0.00015078915444377984,0.00034940847020772307,-0.04231197071373818,0.14229523934245233,-0.034716510373106836,7.134826382013313e-05,0.01400228454002287,0.014420283886749197,0.05176667073142949,0.008318990944643277,0.00012886078707033578,0.007794560400027172,-0.015476495553669012,0.01705254732164448,0.041677491452745456,0.00030630297869042216,0.007430378389555607,-0.0024158066060430143,0.005876471631584916,-0.07000167392079037,0.00021510142765411,0.015299052173263949,0.014856213827451198,0.04412185136286812,-0.008915274721176586,7.351926459649531e-05,0.0012548789479814792,-0.041386956060109954,0.13786125558246407,0.03340377920119424,8.808685644779868e-05,0.014544860297061585,-0.005853424120890816,0.06078969554856524,-0.07171344265538453,3.302011937849998e-05,0.002547337402339398,-0.0073213016334353264,0.0073962989400036,0.005991602385074669,0.0007633410722093551,0.005654397081012946,-0.026646336331674323,0.06157688579546053,-0.01694667491065578,0.0001513148914632223,0.0007964599270866128,-0.012019048136122795,0.008666922161680631,0.0014865830522150848,0.0006778436572800619,0.0007376238216753278,-0.021391694505585028,0.25378947209252195,0.1390273090741824,2.511853896908106e-05,0.005029160570689258,-0.04289484604524263,0.12458843469351372,0.02551100128254734,0.00010227710386960965,0.02548527156304952,-0.002816017871748565,0.014119695968467691,-0.0020710888828478703,5.61399316628237e-05,0.003933792288890158,-0.01533822362734692,0.01383851836471068,0.02414125050357931,0.0021617648128516246,0.015706913574506747,0.04432859915271016,0.32680404825391196,-0.031623764083587816,0.0001116217140696531,0.0007620811761614797,-0.08568996288200852,0.5180381220137479,0.08081484906157475,0.00025613944627379126,0.0022861445300073877,-0.011868135737265516,0.07753533385645175,-0.0014924299064358318,4.3116529776960004e-05,0.03364994366683696,0.025629704787824326,0.15483792051967712,-0.018439099057838176,0.0002728054744831338,0.02083105145094828,0.015532378476749532,0.16759477909211562,0.010676302490615066,3.84598610027302e-05,0.008416799398297616,-0.014821831426323777,0.15094660148938022,-0.028632078446879993,3.2806525648513476e-05,0.011338807816465596,-0.0199755417919928,0.0625607767020498,0.008566101523552132,0.00010285352757228811,0.003032802638452217,-0.024303065713874774,0.16936474370290766,-0.010766526673583738,3.314594672894307e-05,0.021271803413634376,-0.0032508961029334964,0.0090803792890886,-0.03262400346433166,7.937367392555227e-05,0.0006695210030690604,0.0055779371002454775,0.023106917645799016,-0.037622461396963715,0.00011037740811375513,0.008713425753262189,0.048202734655559396,0.049085632497761954,0.03419412051942771,0.0005612971632916496,0.005235642272239983,0.017101268457482294,0.07008786334782721,0.010380396859337256,0.00010270025292168643,0.003358249181554411,0.07334441746199478,0.2335834390414968,0.13470332472335073,0.002015320812712482,0.021801287059229013,-0.02314257904331188,0.23511286979100626,-7.552875204650909e-05,2.5311480509899416e-05,0.01918129669416873,0.008563076672057444,0.02287330745313681,-0.036466917883777844,0.0012239738373310783,0.01223067609030187,-0.0037772323325082273,0.027212207382300558,-0.07012135698507338,9.243481359042099e-05,0.009925294978383742,-0.003696519719215827,0.005527515663394748,-0.0001265331147028966,0.00015783685969728828,0.0025142509078970752,-0.016604341535392742,0.024761796000367754,-0.014877375964557162,0.0003848960288318128,0.013273447706809315,-0.006750507390523878,0.023937007711443806,-0.0029918106285447364,0.0021858325984418295,0.007322938534561237,0.01223765103944103,0.04343283420230029,-0.03227539878884797,9.040038192622448e-05,0.019009240780762146,0.08118675328646648,0.11815012824186093,0.19286312615631448,0.00170815850812668,0.010564681481461096,0.007659382697517395,0.025458504586399845,0.0012023425011421882,0.00011920018130241818,0.009518551411745176,0.011427500418273449,0.030457739857572583,-0.007043373257633013,0.00015209465389993366,0.011924574276012163,-0.02037349912705839,0.08293364922042228,-0.023006046946182187,5.995822597048016e-05,0.007908190990239039,-0.004135820259369878,0.013514566753366593,-0.018719300154341985,0.002900531501188306,0.01797987295640641,0.028852775055487414,0.13134898641024056,-0.030793109993972913,0.0001092701237190226,0.0010488860522761972,-0.005361991736712851,0.02451313852016768,-0.012549777406179258,0.0001586309793238472,0.022474491642458613,0.02476968915506145,0.1354904029338459,0.016827732286137757,8.646905663125597e-05,0.004705761192900116,0.0024877896186846693,0.009814589930902378,-0.005953874830471068,6.370725420498808e-05,0.011097872994988732,-0.020022372070841607,0.04202305244560344,0.0024891293927364693,0.00023230434149819598,0.009867207677937218,-0.02561771492459353,0.09357813959290129,0.011855854339517413,6.807385692655018e-05,0.003357302633438708,-0.013981927600165407,0.13892941165738207,0.00962013347510914,2.5965945301082206e-05,0.009967707406527457,-0.009368001491332621,0.028090647300412056,-0.020641479367210037,0.00011657197885793406,0.0014288277244807995,0.008377469454131788,0.03247256483759273,-0.04340919556417382,0.00040665323475590806,8.12759540024452e-05,-0.033161886406954555,0.15801776851345983,0.033809087752249625,0.00012020017468315682,0.009327377897845534,-0.0019163105989404832 +2018-12-20,0.008275588161041006,0.06993551696565103,0.006486664144793066,0.00012513755463884057,0.0092521448625978,0.006491374337329806,0.01979457560855948,0.005953647721438209,7.868663727321918e-05,0.01836980452766589,-0.007583534415275411,0.020483550969368693,-0.054414486415640936,0.00017126302854281089,0.0055139973482681015,0.01336639254539135,0.017003317946621483,0.004684398256998726,0.0002653068063984629,0.004118888690752989,-0.013938131376521319,0.03194852840777731,-0.023535570374967944,0.00022827138154389102,0.0002841103042559404,-0.01042980679395108,0.031695863174712,0.0002572882465693383,7.184894902426959e-05,0.008225986991084674,-0.004754906769461335,0.01852329272401532,-0.001969548139011977,7.532058272204547e-05,0.011671885712833832,0.017548397111509264,0.1591423911921019,0.0030339345254421996,3.7813788340127565e-05,0.01832709237726605,-0.00572507847601563,0.004775162951031648,-0.03679356427615546,0.0009245662464103228,0.0012298339282360068,-0.044841626550485784,0.10375337114822179,0.04467294819234925,0.00015112664013779394,0.012092252799168498,-0.004994633220302159,0.0032620781102268475,-0.003077028646341637,0.0007483996981978609,0.007343115537930179,-0.013136438661903551,0.23104358131832273,0.019751469227199076,1.694363252922918e-05,0.0002943738530566194,0.05736724050976874,0.17025001415113755,0.04219424844919049,0.00010009856258239052,0.006708953647250523,0.01066065398516934,0.06385565063656407,0.018075774988266492,4.699442407069522e-05,0.0057941689806105525,-0.005650641264391523,0.004247417316283557,-0.03777260323024238,0.0025947515252598818,0.0024894062215153005,0.0721699420007646,0.48871550422182153,0.040967560708646,0.00012152128327248386,0.01856328596647156,0.0434730092757659,0.27332897101153986,0.0045114568364827655,0.0002462874427312155,0.022851957931481228,-0.003986571808705649,0.0272857369141817,0.0032614924283369557,4.115521358283409e-05,0.022957141966469186,-0.024793243196695156,0.12536434638545393,-0.009488779271542973,0.0003259463387704998,0.0026774235240474304,0.015916686104396525,0.20238270481542142,-0.005664173198182196,3.2636944048656886e-05,0.0046299865052235,-0.007195791920669672,0.0732592548272566,-0.19389602403103687,3.281691927049635e-05,0.009146006506307224,0.022706047095319783,0.06873214907408297,-0.011561403353508606,0.00010641537180193695,0.0005757505813870692,0.09091501622990057,0.627773036331369,0.11019386378565979,3.345225036037052e-05,0.023642849308365313,-0.014711940833019124,0.04682775176622578,0.031211546850474267,6.965367648355176e-05,0.011139511903965268,-0.015627907082028294,0.0665175653532528,0.049347747754436816,0.00010742690679607012,0.0020735239564896,0.019341483477622847,0.020957281448959506,-0.028401436869861914,0.0005275096351970186,0.0008597583656166203,-0.046445852806731885,0.15764038817868875,0.09220130030487714,0.00012401249780717084,0.0021883442511680027,-0.020858048409780353,0.06310388698220055,0.007085666249903322,0.0021214692181088005,0.011011251288699926,-0.01069761085143134,0.1026576451790181,-0.0031775874412330292,2.6796476555895513e-05,0.0028168392302944448,0.025708501571582727,0.07194248709130753,-0.018939270979108268,0.0011683220858087228,0.014964085734999195,-0.027466182373282234,0.2201534013501293,0.04033705405767148,8.308039314509822e-05,0.003535664884957034,-0.030102632792607,0.04029265747585135,0.0510058848191575,0.00017632908554026676,0.004280012397351313,-0.017657005541235133,0.02298859080621426,-0.05218866627439908,0.00044086804065770574,0.012069148311812425,-0.021386834954140652,0.08798849785225203,-0.038701632055204445,0.0018839568678315855,0.016995461048109176,-0.011476856138065704,0.04433999409255796,-0.010577758957315426,8.304580080082954e-05,0.011015226352695974,0.01979273545942818,0.025423178284811165,0.008183181408124178,0.0019353217118920447,0.012088953368851693,0.056390165301871305,0.19748301536457596,0.1236719911815224,0.00011313309135345413,0.02890504860988974,-0.031555635992924214,0.09654980882017171,0.014193052751093603,0.0001324908528222,0.01799266092899346,0.003232794826525041,0.01608643580888319,-0.011475548490300674,4.90492348753327e-05,0.008328667105658874,0.0029187220370366384,0.010393516044142981,-0.0004963655419380094,0.002661633808081345,0.0071181633614137265,0.03550546691007188,0.1711134749915953,0.03822797386806405,0.0001032170845189355,0.00968275435450168,-0.05164134418684738,0.27878486358655086,0.14456503939190118,0.00013433498530062733,0.01405413015404701,-0.019465146953711016,0.1210486743863611,0.028341575267984077,7.605825334190382e-05,0.007314050519522048,0.044473012891906506,0.19324908161493104,-0.035730620585016436,5.783976351208857e-05,0.010689680232510657,-0.013848196135544093,0.022325920862356477,-0.12638311677348363,0.00030242188708442646,0.011058251213841973,-0.028063434638072298,0.13255873568221713,0.1459914724150602,5.264375329307393e-05,0.003259574692534656,0.015698450152350468,0.16761591924590757,0.0029124003190485045,2.4164221087169068e-05,0.016098457177238037,-0.012988864121088616,0.034816957002161995,0.013560409834878245,0.00013040352373966984,0.010874024130555132,0.006529936297374442,0.027252860363146385,-0.03264422931466555,0.0003776807279182978,0.008657526239125003,0.056418828093988134,0.27589127334010455,0.057586123610642075,0.00011712723559853144,0.0011403206054916002,0.0027155541777995947 +2018-12-21,0.015774091707194484,0.11061049178300153,-0.008916235780502945,0.0001508115564381534,0.017427935230584495,0.0465295109740387,0.1543491496055131,0.0966719768221734,7.233271617329066e-05,0.009148585668625931,0.011204700165348622,0.03466279490687879,0.014205155685343624,0.00014953190508526973,0.011210048181393263,0.010010935125272376,0.01200901511002919,-0.00012588283559360674,0.0002813423508495575,0.00019103646125135602,0.004854058649104415,0.009990258325328629,-0.13129501453689402,0.0002542295761753733,0.0019114329545681426,-0.007971861080358881,0.021556328414852045,0.0040437904931749855,8.074798064567703e-05,0.012070009263962173,-0.0017688162786628533,0.00681045636246763,-0.01606191009062422,7.620726352128042e-05,0.014407550305424541,-0.014910145735392445,0.13934003490777064,-0.010939745409603447,3.669480531333253e-05,0.0006243492330660699,0.015379077499859584,0.012141371806111243,0.031462081879901634,0.0009768037390833568,0.005545923336976608,0.02560238358927231,0.06018601055102016,-0.012392648820873774,0.00014874649109819957,0.03234183699652209,0.01426107744101844,0.010314397480060798,-0.04380662412677628,0.0006758227900083619,0.0020223491088568885,0.013808504885720871,0.15589606038622902,0.03211789142187243,2.6395768268914012e-05,0.0026345235031963307,-0.030427769600557143,0.0795813846874769,0.01443194940047956,0.00011358204024313146,0.014555825457434186,-0.017937921206196986,0.09461650412639167,0.0721985942133277,5.3366292539376875e-05,0.0001853200024134143,0.024752564069541984,0.023780040850345033,0.014221922441085822,0.002030161415854875,0.01710133615661581,-0.03578198496679817,0.24269044883261878,-0.013488498738787458,0.00012132878591681206,0.019392349532027835,0.014898016473349398,0.08762367300276667,-0.020974608904145903,0.000263278398870572,0.01907913260605911,-0.003267149962684494,0.02096422810327969,-0.001785709738498539,4.389864837569179e-05,0.005778686200604604,0.021120543113873593,0.12119259512107068,-0.02558452267553156,0.0002872207448427113,0.00857799472884135,0.06763664712537955,0.9771704299594561,0.10997884167559518,2.8723806047912653e-05,0.0013057508639635115,-0.012000239026839553,0.12177854817720864,0.013630596957096024,3.292310700630959e-05,0.0014565719783744381,0.016547596659061116,0.04186271450004103,-0.061196068457088894,0.00012732987026501446,0.015795162991621897,-0.015475815746395883,0.10460554032973697,-0.006071443145991916,3.4173639945487924e-05,0.03504547558970736,0.01493839561373791,0.04011688612241159,0.014036097974455647,8.25570418915434e-05,0.005260779615724726,0.0073778670262794445,0.030189267585681034,0.018403687996587835,0.00011174467642889619,0.016222873160837092,0.08596137604057802,0.07910276006053342,0.047008782292469624,0.0006211368325894394,0.010727431236847456,0.006883375513288054,0.024957974414297007,-0.14945731697479817,0.00011608554281122806,0.019800260306919202,-0.042925153587051915,0.14015536549225252,0.022180477852715725,0.0019657184058574175,0.013784953328042023,0.024428492835575806,0.22546042040991351,-0.0047660163849805445,2.7861760579442597e-05,0.02660968885634049,-0.007587256822009261,0.022057731766799014,0.0007570081919850644,0.00112459255324078,0.033549351521907085,-0.023907825319599157,0.1689922042071523,0.03454731185593677,9.421044315665503e-05,0.0009844422012343476,0.002972258398511528,0.0038353021231107972,-0.049099040545711244,0.00018290785988409668,0.008036494353196671,0.020417516614353023,0.027132834119064683,0.027154364859190833,0.00043192831168918015,0.0039926028271086884,-0.024838779292927125,0.0809109058099041,-0.013359393136497102,0.0023794332522862442,0.0009229033451855595,0.019455227187124387,0.08099845156109614,-0.011150968701718918,7.706371841966034e-05,0.012410474236264214,-0.045597023809884805,0.05255385962209937,-0.007373425402439235,0.002156796011017987,0.017765538700611268,0.034064662622130044,0.11827076976030096,0.034999626962906816,0.00011411499225652795,0.015751472446646743,-0.010517184961021947,0.02669111539299449,-0.0420958373980147,0.00015973245440373965,0.0111736869786238,-0.025249762685364725,0.09833440046248919,-0.06707563363563668,6.267087401196947e-05,0.0020648261800396803,0.008718839037077309,0.02418125313304859,-0.003207270133113065,0.003417416520920225,0.013972751816154589,0.003975972311789132,0.022861843945639036,-0.05183299794837021,8.651126572580635e-05,0.0038494607709573304,0.01959715135333092,0.1041464205810684,-0.027726855474939496,0.00013646126188190125,0.01811808504824093,0.013844511382649473,0.08142230799872653,-0.07872381291735966,8.042349133101068e-05,0.009849055945515545,-0.015344487746316802,0.06667723933109204,0.005710543048856748,5.783918694475423e-05,0.0012200496539122804,-0.0221714621443155,0.03624053644371708,0.002079922900436075,0.00029828341800674417,0.0003235655230144764,-0.014715959916176994,0.05499870970647228,0.034409068084676954,6.653504749351547e-05,0.0039035942219085573,0.01730011498785116,0.18975782231576954,-0.01764103249810716,2.3522343487470406e-05,0.017471429614253877,0.026695659878367493,0.07896339353566288,0.09310527480426073,0.00011817451284675534,0.0008512950424383278,-0.01976620155853909,0.08291210050109615,0.01783393006197924,0.0003757796631591896,0.00555348733841527,-0.041727359170694193,0.1657491880256341,0.04869827063602526,0.00014419204010845737,0.0017114941508027512,0.0030757420239043843 +2018-12-24,-0.015655660294201117,0.09932988333035196,-0.035113379911673015,0.0001666779106107677,0.010398072671748766,0.005894173311808339,0.01694091343285912,0.0029802978111453087,8.3482722763047e-05,0.02555880134109316,0.0076815446092409105,0.028383766998509804,0.007542196890504933,0.00012519175523128842,0.017671347728967356,0.01112496223206572,0.01235711140936151,-0.039120027376145575,0.0003038431426844548,0.0007949010340740667,-0.022162230193260284,0.054462362340049905,0.031650454182112306,0.00021291916706512535,0.004348481200804023,-0.002295466573905509,0.0063008776724850545,-0.01873050180922867,7.954569207769562e-05,0.007474549047252023,0.02634612296943927,0.09957263265879719,0.0019251881053095625,7.763661290058484e-05,0.05314571778742062,0.02160743160121108,0.1717401815367702,0.015103169498745458,4.314493745630648e-05,0.004889839747945952,-0.010648385399026482,0.008336061071904823,-0.036715476248478124,0.0009850712865410519,0.013978307089330516,-0.03409313832330846,0.08392979370820455,-0.0038432835607133363,0.00014204066969296988,0.01454245468720432,-0.01048587582256351,0.00771130174600256,-0.01109533656992054,0.0006646627973571517,0.007027968124201688,-0.009518363409967276,0.12820266137927458,0.015202776989613653,2.2125242053845855e-05,0.014999981798449092,-0.03182622993647889,0.09084050109358106,0.00901634441679158,0.00010407746671216382,0.0030037499858394,0.01245034986759556,0.0624548446909464,-0.0513563179274487,5.61147769955223e-05,0.0015881184510476158,-0.033788022519088634,0.025497250379836005,0.022704564001444785,0.0025845943989421874,0.011756934067398995,-0.06973362078871598,0.4178883897943216,-0.009188788127564813,0.00013732007065196902,0.002186613700033759,0.050116372046128004,0.32473384396525673,0.02976971436869553,0.0002389793101392866,0.0026141643597257704,-0.027261350361831825,0.12147065984238496,-0.0203811424328998,6.321744359072616e-05,0.020756175135004953,-0.014239925609293002,0.0670616003370273,3.89441080580544e-05,0.0003499617784485708,0.005750884762465654,0.0817788877293974,1.0874979979410735,0.12360340050807958,3.1206349246822664e-05,0.004036620805897611,-0.01199912801487835,0.12181034968464903,0.009030613767002586,3.291146433386552e-05,0.007409780271225807,0.01983016103236946,0.05784868611517835,0.023708940515233475,0.00011042197159421775,0.016635672995483484,0.06427546815869392,0.46764477240253793,0.0325528542991826,3.1748377876487894e-05,0.011975754530433078,0.01436227176286065,0.041924027488211606,-0.01991361550640221,7.595170462732557e-05,0.0011258939320396258,-0.001465710131492256,0.005844447480998435,-0.001544621077183486,0.00011467090105638769,0.002896928429943304,0.021488941925304348,0.017446625044755,0.0018127615435636088,0.0007040105479316923,0.025103022678109203,0.029204532041153575,0.13549227339255515,0.06550121164799501,9.072390413901574e-05,0.005147832638854889,0.018495424722694515,0.06118459529066175,-0.0264711704895807,0.001940177177976729,0.013710918859781613,0.008790830864640326,0.09290071313312763,-0.07830729805141964,2.4332855205651003e-05,0.026463649818784518,0.025100740170170794,0.06737461534875328,-0.05204778919477964,0.001218039855704376,0.008285346214319743,-0.01667011502012595,0.12851562581127454,-0.025205748982089046,8.637902630856663e-05,0.0002532287570140507,-0.0122617443089768,0.01673015559315593,-0.03187408975921764,0.0001729807046646114,0.010701648591228595,0.022089255098863454,0.033613064513263034,-0.020672013477321557,0.00037720450894586653,0.025048630329636497,-0.0024431856894455736,0.01013656592785495,-0.05663532669925495,0.001868168167649647,0.024506217387763665,-0.042762428665066556,0.16537713850610325,0.13055112401123603,8.296162688062028e-05,0.021304069703748655,0.017454298564281986,0.021926914482858294,0.009664379159632254,0.001978800764601714,0.005630414103242374,-0.034077401105914104,0.1084061036275701,0.026705426356617268,0.00012454570848907868,0.010399777751081368,-0.034866030143449134,0.10068800468623137,-0.005339702512587961,0.0001403735046061413,0.009089809478808114,-0.034307088707192776,0.1400521741644096,-0.00819139112971828,5.9787161541931845e-05,0.0052123918344355175,-0.02050769046419953,0.06144450694300609,0.007972834424929928,0.003163382793682661,0.02525861485591821,0.0006276534743005355,0.003848529370169919,-0.027155219153697733,8.112705345237055e-05,0.006420903295018389,-0.018083131243589318,0.09616134382796869,0.028155595574658708,0.00013637472721066422,0.003447642148955299,-0.001496790691313328,0.0086066719940758,-0.0028228605707131295,8.225731327402774e-05,0.009973367630243082,-0.04138266375754922,0.18730898863508177,0.03419916753928714,5.5527384608102906e-05,0.035064838027749214,0.0053075591360439095,0.009248809165609119,-0.1835371979647903,0.0002797940129657662,0.0032361829189999154,0.014731855236632426,0.06815891080682797,0.007591120337891998,5.374637485100428e-05,0.011914931613831201,-0.02792620931968412,0.2607743089629778,0.04925207879806388,2.762984643729162e-05,0.0010270241260920353,-0.015578826704422495,0.04550902520062194,0.034284928676466084,0.00011965922282913266,0.004698391520347346,-0.023546426796232322,0.08054748954545327,0.02049279947549194,0.000460787801503465,0.005414893423745032,0.026159424389144023,0.11889502724335439,-0.030112331938891262,0.00012601907538199177,0.015575628859884125,-0.002138737775083982 +2018-12-25,0.021090523976888997,0.15990683804268177,0.020242606136902732,0.00013947838745656405,0.0028149034248883585,-0.039802408388192476,0.14910464683389452,0.025286661485829236,6.405141074223872e-05,0.0262217780535687,0.0030240225497186863,0.009850713072087635,-0.06862296265705316,0.00014200857207560387,0.0170646123960753,0.03294631698745504,0.034372637203868246,0.06311932179746188,0.00032349075587808105,5.951538416306334e-05,0.014063876724583625,0.028978424442665057,-0.07991666694124266,0.00025393821009742984,0.008028263107436175,0.018964491352093278,0.049627010050729455,-0.10815306538231827,8.343914175623648e-05,0.004261222877725503,0.07757003416552029,0.29139519764795113,0.05743658032483379,7.810906656610272e-05,0.038913337381062285,0.007191547618601537,0.06694725812403268,0.0007663344521981805,3.6837333007763474e-05,0.012932937666827573,0.001168554033848598,0.0010012186297988766,-0.0076317296976870916,0.0009000459117910188,0.00020187755839097337,-0.029882214877692815,0.06175050140975397,-0.05725538749750366,0.00016921317812294782,0.009713906592526573,0.0018803220121456834,0.0012663006178458335,-0.03218444256179091,0.0007258046891029378,0.01099388674819975,-0.0003207540443055754,0.004236999514262854,-0.01382703704239432,2.2559866025085224e-05,0.005397917029443112,0.013229381534368843,0.03785944093632735,-0.008192126128719723,0.00010380454830408296,0.04887087538668774,0.007073872536567447,0.03746291724121975,6.255554549008726e-05,5.3151736218268986e-05,0.000271877514616793,-0.041495397788745406,0.03395018799212217,0.08088944506798472,0.002383859862334503,0.01255619833143583,0.00833305658431451,0.05615935472837378,-0.02974651066332888,0.00012210524785593267,0.03226029310308065,0.01681827276549298,0.09069507234981203,0.005639597088565701,0.00028714809015427693,0.004782651456973192,-0.0037867993503262814,0.023389222880953475,-0.000427978366743818,4.560552478498911e-05,0.015310082125888816,-0.037673805482528556,0.1955389112937185,-0.08681640241714789,0.0003175360994719259,0.006636047150759653,-0.0015808594468170144,0.017556707242101385,-0.0064350856252506925,3.7366328089044025e-05,0.04125320267684128,-0.0035421230270282914,0.034557069689240674,-0.021586489412137654,3.4245888752142046e-05,0.011624037937237769,-0.028026308837414034,0.07757140179714478,0.015772747046547502,0.00011638232248286562,0.03268855034380929,-0.0044302118616895555,0.027592910647542827,-0.019846951547819475,3.7086799556237445e-05,0.04862067045043342,0.0009435663847579203,0.0027476127556942554,-0.0007044769289614905,7.613674726529235e-05,0.00503332377883547,-0.000361625313104758,0.001413730544070124,-0.038549028962553605,0.00011696092037458616,0.003197006981804816,0.014912316358192004,0.014633357791849861,0.0003293060316618991,0.0005824741797177749,0.007071901413427155,0.005781663122147395,0.02030128542471664,-0.07405288624560541,0.0001198713109955641,0.004147712021903092,-0.07555870064949395,0.2550841373682042,0.10687982150765103,0.001901166719211082,0.015963116694571282,-0.02300080375923278,0.22413263745820625,0.005373601014578016,2.6388828230842113e-05,0.01159509537884938,0.04756134467402939,0.13892624347296223,-0.07433539420981347,0.0011192860776441434,0.001516737822364836,-0.01860218257688452,0.11912783874754472,-0.010819421048235588,0.00010398633770607214,0.0009618284103158041,-0.00324656981641847,0.005640494212406022,-0.05398195151497206,0.000135847914304234,0.0005230028778922618,0.030959873829719365,0.04374632772138846,0.053182147768216295,0.0004062201796054357,0.004382317093865405,0.011038872333227725,0.04745116765605496,0.008410742748788816,0.001803134604023455,0.017509726376753045,0.003169250752333531,0.010985163582134846,-0.028934612306531205,9.256364414237129e-05,0.015772763977773552,-0.02639465048941284,0.03794479637604007,0.0005377387554605948,0.0017291826955501772,0.015225967924716392,-0.013355172590092137,0.04234515594158742,-0.06601415175376309,0.00012495734951918888,0.010822407206105422,-0.007976402903392889,0.023731601013918496,-0.008258891672342806,0.0001362512266390418,0.00455562369733051,0.04675175708256112,0.15769733211133036,0.17684124809034754,7.23581603366145e-05,0.003021588909484698,0.01144601101558234,0.04318337999548925,-0.0058392372921425096,0.00251220794989694,0.003631561155307516,0.0069802878745996895,0.034042060702844185,-0.01581710551364851,0.00010199950465247352,0.01704156671930481,-0.009478916993435614,0.05513066432967001,-0.20418293406842777,0.0001246884650772913,0.0036055039327719516,-0.0014016517519490766,0.008400678794070943,-0.005084387309513018,7.891770434184211e-05,0.007998492842759308,-0.03205118946196538,0.1488941791678866,0.003150039201965118,5.410206307836163e-05,0.004873797651290006,-0.08484218725089925,0.14369375185548874,0.2234994936337051,0.0002878746121691154,0.0006480935839084192,-0.021236299895883253,0.09033276115456577,0.05669845858531412,5.84585367265636e-05,0.008151968703865763,0.013147299642677435,0.1384040713865484,-0.0861179297104542,2.4508626916176852e-05,0.004885456134789795,-0.01866771817381064,0.059304864346243394,0.06072976373626531,0.00011002968849534026,0.01689606831770776,0.0017559189513475489,0.0067802291577979505,-0.011208696131128024,0.0004082141594005797,0.02258048259561226,-0.019334044324139446,0.08991072143838683,0.015081569706956609,0.00012316378401453377,0.02191088335154418,-0.002683524483391716 +2018-12-26,0.03802794378099688,0.2663324531063607,-0.008683625387995065,0.0001509959635641718,0.009015743440608221,0.006526642978564378,0.022004004743935567,-0.023399255508771748,7.117027651470582e-05,0.012105179349044202,0.08094723521720013,0.24984226581750038,0.20874201772524864,0.00014987642126415148,0.018278526443089457,-0.014367268261329716,0.01363179779289068,-0.1098970914122032,0.00035570414153460823,0.0002483896684388155,-0.006765561806007463,0.014958233423340161,-0.021232990664304622,0.00023665807741825981,0.004321941109679515,-0.0142236679315552,0.038771718834166226,0.03742433337858587,8.010198709632467e-05,0.004231828049566235,-0.01642823209259419,0.05654659111598115,0.008998995409372077,8.524604837384947e-05,0.007242394728070726,0.004955747966044968,0.04505290205565769,-0.021084897793347546,3.772116131759473e-05,0.007345577422612746,-0.03447976126969181,0.03395904176554402,0.14510848485860164,0.0007829853021104675,0.01371058413816602,-0.01385626056624603,0.03206260991116699,-0.04563654695174201,0.00015111551543211895,0.0021389577394689565,0.007250253685115079,0.004861940307661966,-0.01968367198905192,0.0007288999802722055,0.0006728016105799193,0.0013237071730591307,0.01735477626005267,-0.09121347131885159,2.2729804095669154e-05,0.0059751674591542805,0.008920512165923315,0.027170421184438947,-0.04960894083415379,9.753139971209095e-05,0.0038934988674496213,-0.006183286340558313,0.032761437366034485,-0.04816750148293564,5.312735924252283e-05,0.0006835522421907472,-0.010733350464738901,0.00921236812662365,-0.04746287065787443,0.002272411605753488,0.02312743689200092,0.007373121638855714,0.04180644586337204,-0.012346712398882645,0.00014513102368525314,0.018670791644245642,-0.01580196270221619,0.08569910704702453,-0.019568987147116433,0.00028552422904214137,0.0076094439876271906,0.05279924598769108,0.31603322812597506,0.038006523490555305,4.706043413453784e-05,0.013044613864483768,0.02258492790750054,0.13322927713390162,0.02271022459635534,0.00027938677495959174,0.0027954165658589524,0.05982596141479733,0.726590022738569,0.031455360950402494,3.416885987734092e-05,0.009890643994528112,0.0026415224385256644,0.026196469840942753,-0.002660372843154354,3.368939735137673e-05,0.003869805974264164,-0.029340740597184438,0.0951716914573349,0.019436359603077262,9.930841252836744e-05,0.0006009302494217447,0.003412836104135124,0.027179071894438776,-0.016347359505730578,2.900502112703082e-05,0.00437032323033098,-0.002647536021610824,0.007066966229881782,-0.05529600415159114,8.305891316172788e-05,0.004653288628823452,0.0008280226916362851,0.002642116905648303,-0.001316549372741262,0.00014329756290348578,0.0012315779579118145,-0.04498321742828883,0.04711089374227218,0.03774165917320173,0.0005457638091341677,0.013989243477399943,-0.011693407579402917,0.05272752990003538,-0.0013782741644596025,9.334470121751832e-05,0.006231205053018675,-0.0348851449953822,0.1060049467872157,0.015664984624699833,0.0021121928820083038,0.004528729310906129,-0.04139391179061651,0.33700855784256095,0.011723818780877308,3.158477124692309e-05,0.028914352401738223,-0.033518991608579386,0.08215809132712601,0.043028535109066506,0.001333864988377329,0.0006861588688990025,-0.02608308428924367,0.21448239344558062,-0.0031396951135467446,8.098282837541306e-05,0.004458015794542396,0.027681680945653573,0.03467392500534874,0.06289086813573987,0.00018842340144815167,0.00698415692747956,-0.033666779195482076,0.04584595833894215,-0.04384322867594675,0.00042150664834229027,0.0106494049416031,0.020379837716350813,0.06608846724446255,0.036506779739866296,0.0023901512431967996,0.00994200511139796,-0.018487337456393357,0.06241051550172967,0.012367707127755726,9.504011852335779e-05,0.002480961912495911,0.0016852768424245497,0.00205258069153825,-0.024174378734121996,0.0020410244426929576,0.003115959549191143,0.006985613059670971,0.034111107558128524,-0.014751617205792709,8.113808280807701e-05,0.01005010729816816,0.0033354304269824246,0.00872567837178066,-0.019453348123103488,0.00015495766425850514,0.00018442445168085524,0.0019417504830741344,0.00933207242334315,-0.005018434799943079,5.0784273775645445e-05,0.0032542635389445967,0.04280626271955408,0.12292644890933266,-0.014932835464873723,0.003300502261146709,0.025790171446458947,-0.012016622361673418,0.053941742977559055,0.017022490372123517,0.00011081486161512552,0.000373948420515637,0.0016024362138907162,0.00839756374258995,-0.006671460452890876,0.0001383847477519383,0.0019683425982218524,0.0009187017484205631,0.004790332403312692,-0.010850807116299571,9.07105063672538e-05,0.03401054629007939,-0.04979365414611173,0.1949119683868691,0.026326706971832398,6.420707503432687e-05,0.008866134212382254,-0.05278218159219095,0.08727398711566459,0.01245552427036061,0.00029487089868609914,0.035417203573122225,0.012385783599525612,0.04923722916436141,-0.00906844282399113,6.255244055210835e-05,0.005384155849912728,-0.02714585840002894,0.27960191634422066,0.036117285742827326,2.5049249653349087e-05,0.006656562684391821,0.0003743003588819087,0.0012150508941156856,-0.0305111304430707,0.00010767992359238269,0.002471817654761368,-0.01541695636905054,0.06253229246746027,0.007869593237441491,0.0003886174196414912,0.011236941534515672,0.02723718635382588,0.15269139293170766,0.006987096292759405,0.00010216907965132773,0.017077703174099707,-0.0016071754589789536 +2018-12-27,-0.022183411297912244,0.1635811585824524,-0.0209798993688296,0.00014341072638813395,0.013373775807820528,-0.0014968330411283717,0.004714041760562404,-0.006371509787346895,7.61886822775413e-05,0.011590023802674182,0.02626464455551636,0.08956093663706052,0.015737851222462792,0.00013565946670461947,0.025705884889976823,0.01102765290320971,0.011170027196427634,0.004133520096224365,0.00033319364840612124,0.0015000888837778223,0.005176667707207723,0.011507391923436026,0.001134084862724623,0.00023538086574837055,0.002618090568937961,-0.015091845053830226,0.0481413884857856,0.01801733050921559,6.844952922805796e-05,0.004080977282798196,-0.08776185006574354,0.36510482658035054,0.11123242019660491,7.053067671992332e-05,0.026619690798978447,-0.017125155412132307,0.15623046160514145,0.014564964188285932,3.7589575390428285e-05,0.004884736450508625,-0.005595925234945162,0.004197931997765268,-0.008475175872197632,0.0010279720127884461,0.00014022990144164156,0.008343071401864277,0.020026729877556798,-0.03945799598662147,0.00014567257821001016,0.0063777381474328775,0.0047295634422483525,0.003293273716190679,-0.011271239860928962,0.0007019684378554234,0.006453704813716614,-0.01602509987277116,0.18545669087823127,0.050121108319584835,2.575022498458659e-05,7.716400035430514e-05,0.014700817656258254,0.04306133761824582,-0.012438570485389041,0.00010141565791859839,0.01818558121450508,0.013346422779856947,0.07285288316337449,0.057351244205955484,5.156796016269524e-05,0.0034629187345291525,-0.008349632568350458,0.006973601014822814,0.0035621548018360373,0.002335249247756104,0.004640455970107741,-0.006404523800548023,0.051562970925046886,-0.07058529970081616,0.00010221179596820369,0.02747631551904982,-0.0025669277503417476,0.016296992152468867,-0.06585052850212456,0.00024390147152383173,0.030478013122949014,0.0629886310676355,0.4164128823527652,0.06780874779075678,4.2608767238492156e-05,0.026030825652638413,0.05002674952010176,0.2678398527460156,0.09248091591121539,0.0003078320932226614,0.001591187946666336,-0.08260075558750937,1.1118164252855443,0.1077545992243204,3.083054241698346e-05,0.019398177952634602,0.01187954090210021,0.13345874471662414,-0.07378057241599666,2.9739545742946993e-05,0.004048687938416678,0.01818611723115001,0.04905635110815905,0.006819514656775034,0.00011941736954766364,0.01741828359341017,0.00885368568478012,0.05279616380868457,-0.06609954132646025,3.873594080564135e-05,0.03934656062895703,-0.013963926568101465,0.045246463295937865,0.03602498223402232,6.842271462488893e-05,0.003009290822803434,0.010122525223677317,0.04017753580168395,0.023131568262962515,0.0001152004475949397,0.008200087071543153,0.013996097938133934,0.014161753170905796,-0.0017104920532956124,0.0005648921160435321,0.01322570880612673,0.01656962299209454,0.06443317344766816,0.026277057727503585,0.00010824033170029349,0.010484775009967313,0.055036488139623564,0.21261617356585327,0.022933803996952468,0.0016613976456259806,0.004222406303693011,0.03494306407395465,0.36098601369714856,-0.023075985703075064,2.4891599475133172e-05,0.024544870332384068,-0.004418451007447614,0.012723263546825207,-0.049862578827256226,0.0011353840540016006,0.008149120355320338,0.030385492456398325,0.2194597158480641,0.07629639667134822,9.22013139177286e-05,0.002334478255821038,-0.018365669411369752,0.032958763303407725,0.008683555275148993,0.00013151680244858426,0.006960493083067538,-0.04715081941794625,0.07190501615696303,0.04683462588232868,0.0003763864412169115,0.009244992645665265,0.030506580583096726,0.09950129903946967,-0.012025417570500513,0.00237637580342949,0.0021974885916762896,-0.0036574964339114446,0.013685644630902783,0.0009579832287487227,8.574504312182957e-05,0.0033061232067208937,0.046742893582184954,0.07182207410572096,0.05421149387424504,0.0016178372947747348,0.0026155591398014533,-0.0011704308781751679,0.0034780152326247165,-0.0018646476355980398,0.00013333075167796054,0.007689469168213558,0.036132429014404915,0.09820655569560587,0.05424202403988238,0.0001491478696535416,0.015683433231004903,-0.08246433933197965,0.44555123007479636,0.2740592251208016,4.517336700435649e-05,0.01868420427845359,0.016575849339884218,0.057934501697977536,6.00676020257021e-06,0.002711793233736788,0.0136688058850612,-0.0103764131678435,0.04539443926271257,0.017460269794395057,0.00011370646840282565,0.004878140617551849,0.029239610073727204,0.20220256512862228,0.03301387356262872,0.00010486865559836939,0.0013972073998393874,-0.04287900973117529,0.26647125950040623,0.047504270526194214,7.611023643316878e-05,0.0012030610636015737,-0.010510788601863632,0.045614152112543487,-0.11951179628071788,5.791393706330354e-05,0.017035007416260826,-0.04728014925414019,0.11037961056296959,0.031324584402268645,0.00020884273662262451,0.009408726800638584,0.018119232549582653,0.09014398923016588,-0.007765279715868883,4.9982434024544654e-05,0.003434072133936555,-0.019330034318237425,0.19782559306972677,-0.009540104959356454,2.5210498549746683e-05,0.005258775564463686,0.026322314980237172,0.08248083406870757,0.06724636336308033,0.00011155267840456868,0.00564972148215113,0.013525654413398553,0.053565636635299604,-0.06229793868937665,0.0003980155014402031,0.0015988801910339862,-0.0018241188016949912,0.007926758127519234,-0.030977733051062162,0.00013180421811737457,0.0012208689440953815,0.0004929846300928587 +2018-12-28,-0.020273255963859697,0.12004745908805613,-0.021928159073786428,0.00017858999098020007,0.005310040824922827,0.02493654161025247,0.0856171566753587,-0.03974480131404337,6.988531832536025e-05,0.03374825449795356,-0.03247071820933052,0.09955504858699651,-0.004706173722208618,0.00015087796250226295,0.027001366118728776,0.022473852495233336,0.02145293399980319,0.01627931778660563,0.00035355638582923015,0.00257764714307059,0.005554555983322069,0.011303937582738864,-0.010945248264937944,0.0002571090536326241,0.007037135187811107,0.010377780899771162,0.03448580061871019,0.009231094413637233,6.570689187295557e-05,0.000894652071503615,0.02056430040749396,0.07724060991126701,-0.03954773016906382,7.81192563289032e-05,0.01456610017287466,0.009581461547580385,0.07685123980645048,0.001646323011041442,4.275427017643628e-05,0.008121168034228805,0.021997166510377107,0.01898831478071608,0.06645420658697045,0.0008933571265325548,0.0006893477547727821,-0.013406308396115315,0.03149051239449455,0.0013345164527808991,0.00014886457597571188,0.00778744333212901,0.0037843201454777205,0.002818996980053548,-0.03317949496492119,0.0006561718836083554,0.011479706769147498,0.004552273266119838,0.05914213410084182,0.007126879004434532,2.2937924660408944e-05,0.0015091767834074094,0.011835106578800648,0.04073639195003554,0.0007575167466029366,8.630593273888127e-05,0.0014141849692699865,0.003697875131611974,0.02300597044079738,-0.013360830696107804,4.524530319899938e-05,0.00916762968520193,-0.0052304647048738925,0.004272578572775216,-0.008996933539831756,0.0023876638837467337,0.008613220148856118,0.03729993839453433,0.2338392914854862,-0.004431962651100728,0.00013126312393024726,0.011060363486014189,-0.017756786295927217,0.09101701116132409,-2.4262802772795805e-05,0.00030209951632288593,0.018126431296423884,-0.003909758466607487,0.02362501572651308,-0.009895370573585797,4.661640503034133e-05,0.003357320526080427,-0.01260309636921375,0.07856503546182945,-0.007967589238443668,0.00026438374718655187,0.0028035729589952754,-0.00958957143067467,0.13431420902544128,-0.0075373213667115,2.96283503089949e-05,0.028269457888786577,0.0003069886389417085,0.003185220381308973,0.0010410945457172468,3.22006416984858e-05,0.003607362133963569,-0.008065353372249623,0.019652423221987996,-0.024214392968736082,0.00013219957157385847,0.0209671405675201,-0.024052015534257346,0.19151843805073832,-0.012805272607265961,2.900903357026741e-05,0.019851071326193452,0.005341411400427389,0.015857623692604465,-0.02280393195708811,7.467845143600425e-05,0.006309396222971493,-0.008220575347863999,0.02999916674161722,-0.051783435421415704,0.00012529727272092371,0.0019799172697880724,-0.029905724606530112,0.029946701489694687,-0.04715166548204017,0.0005707959691317225,0.0051493519280823435,0.029596562814365762,0.09685889996494465,0.0373948194806481,0.00012861385449407627,0.007073554364553661,-0.009167488750036859,0.039086924539077354,-0.005172009282443196,0.0015053519865354257,0.00035778063043305,-0.012372831842862825,0.12069570135890081,-0.011654005862276226,2.6360855657124722e-05,0.0031972695960539423,0.01606558320738121,0.04291534102520098,-0.0001977119706724193,0.0012239261040732467,0.0013276060571924052,-0.000947960882429213,0.007137524922093983,-0.01398880854205114,8.844400941100242e-05,0.015216774351045776,0.03532109708161927,0.053405188062551574,0.0885818293403352,0.0001560975626571017,0.003278177172323903,0.01053774983733273,0.014312707151271089,0.009217497440754391,0.00042260050606339494,0.000644436758055265,0.029154513136737,0.10294999839479535,-0.04413922135275431,0.0021949760724348493,0.0023341494434550784,-0.04581657520464775,0.1904461512083064,0.04652855592432694,7.718640122002175e-05,0.004172961268588913,0.06352375144510837,0.0933930035673528,0.08270780758150863,0.0016908262702825855,0.014084369058093007,-0.04627586354693731,0.13706580746093844,0.04722322348030265,0.0001337646752247139,0.027704303935747382,-0.02382100051048123,0.06470233074498898,0.0055542916900703275,0.0001492452264046676,0.006214535563456937,0.0402388702862357,0.20942095746139247,0.04807366709257334,4.689640627624895e-05,0.005057919394925725,0.029752414516338328,0.10458788757366738,-0.0029508304123351133,0.0026962420814968433,0.0340368265417835,0.017125627742325678,0.09624351973477607,-0.010656471379755304,8.851473490640145e-05,0.006016765097118983,0.007255300574455385,0.042928960249708215,-0.014347441498139324,0.0001225648177359442,0.018589121439794017,-0.0006932144144723735,0.004281732472522059,-0.026903143175036927,7.657671903248093e-05,0.006103293658439859,0.02381929415799797,0.1060413392134036,0.0017482087741613605,5.645482673155435e-05,0.005955812823199255,0.03420721159554613,0.06099962189709096,0.044489353751561656,0.0002734134815490005,0.018428321129224916,-0.007761079978670846,0.03302810011456103,-0.03567365747205745,5.843229477645208e-05,0.001600979531235244,-0.007074613088827224,0.0853563034726673,-0.0032877732547631116,2.1384464527746063e-05,0.008660431573590152,-0.030800081132383066,0.08381515769746178,0.11131561625660548,0.00012845122743148867,0.005729664323420681,0.01444984709078859,0.05227266309756425,0.012450358117194608,0.00043572913096024416,0.0023027425614699573,-0.05145583822466901,0.24406229928378917,0.07660335405955686,0.0001207551759114822,0.006081631312273246,0.0023517423178375653 +2018-12-31,0.031236666848212292,0.19942424255847607,0.018537565316873193,0.0001656430880564245,0.007508387550782928,0.01752245514136325,0.0526029164085538,0.015228811515387448,7.992739533500929e-05,0.033905838775851675,0.010322547970616823,0.031718662160515006,-0.02739495029396291,0.00015054601117814605,0.027777211491565798,-0.011098168318626724,0.01161584931272493,-0.004637207992324922,0.0003224543158043274,0.012560029369030744,0.03922591353936772,0.08129739432030515,0.18057081333383054,0.0002524609504497891,0.009012652840138483,-0.023970858716029563,0.0599048278291186,0.06359254695045381,8.737124166954832e-05,0.014105254146361459,-0.017617834427406477,0.05781404191168565,0.004996015390215251,8.941472525157194e-05,0.018110172927111375,0.045876970889845485,0.3614968991309656,-0.10266843614744085,4.351998863282633e-05,0.0008579487049479209,0.005411572034904243,0.004630944627723186,0.00028984421772573874,0.0009011532271387216,0.004290847026694953,-0.019638876064559205,0.04310733510578219,-0.03592459534598313,0.0001593042419032,0.025958179046888685,-0.02393397973515173,0.01840005691254795,-0.004365135905661002,0.0006357993958687694,0.006951106104925987,0.018877156549617132,0.2501236121786682,0.04002326535108763,2.2490788158269206e-05,0.005498330044340531,-0.004357555869233436,0.012664764614152035,-0.018811880815937567,0.00010221082163054836,0.001537963257856399,0.016346091825539713,0.07884341665097311,0.03848431963471912,5.8359332594416704e-05,0.012796641119356907,-0.004581177962803793,0.0036358672101598783,0.0004969065257288887,0.002457492052766479,0.011157504096727854,-0.04387294526194725,0.23338721654025718,-0.04021732881943172,0.00015469341733181702,0.00560678995359565,0.029575770629722373,0.18900101868806513,0.02742095864258391,0.00024231492042382834,0.008319384143385825,-0.05585311962091382,0.3025814161494617,0.03421113998853651,5.199554564307007e-05,0.012940475636856939,0.03153076717644441,0.16791574823812114,0.03303121212010438,0.0003094780958929651,0.018459042970420433,0.025687881132229858,0.3291800082543267,-0.005455472100485743,3.2383595221180325e-05,0.02865286776287637,0.0009710480537175946,0.01040182920517749,-0.006469080920945324,3.118980881712479e-05,0.007477741749631733,-0.03341226304482209,0.09236055379080138,0.01171397613412094,0.0001165311733454714,0.011529412827373181,0.001153272427467204,0.007286183837361414,-0.013564438928356175,3.65615130708745e-05,0.036673053124904015,0.010758991688185953,0.02864363557960994,0.01572363438859157,8.32761837038784e-05,0.00979338711723379,-0.02306550594351922,0.08619913404032206,0.10788867088245703,0.00012235132531970852,0.007966994244174222,-0.006202598479363585,0.005004814210674594,0.0009889516676327304,0.0007083718094179381,0.018998288382129427,0.015825405970123205,0.056821990460569696,0.005000601732549376,0.00011722612951342726,0.010224429748254098,-0.017836724566178384,0.06941916052372483,-0.03127439946333462,0.0016491301177745644,0.0052674688795271134,-0.02067577978850504,0.20040942890719712,-0.02527934328393901,2.652930928109149e-05,0.008037226118623626,-0.02974551612821706,0.08683294408473471,0.04440194689694507,0.0011199748044217442,0.0041998950918894625,-0.007812980211644683,0.050833226621441775,-0.028246283363753687,0.0001023516127757288,0.014192690300291065,-0.0020381655901072463,0.0032330777322251165,-0.07387788682220148,0.00014878827375583214,0.015183642455593682,-0.03150952100011441,0.03923364843722304,0.023355268434244802,0.00046098523854430526,0.005749975301819756,0.025175851325719395,0.0936874357780761,-0.04492012725561322,0.002082826784308293,0.032098154608362586,0.02510792274681718,0.10325528443949974,-0.0017638192232670023,7.801693181560931e-05,0.009630268396970622,-0.007315640948458681,0.010162614679714434,-0.08992354553807748,0.0017894687333883785,0.00965186631834634,0.02275392727714808,0.0700956590162504,0.023705239601553997,0.00012861193697915796,0.012388413645434814,0.0027589065519029407,0.006941124051469869,0.005084982540730107,0.0001611267178040828,0.00752096683110061,-0.03194541104182292,0.12275738811356136,0.007860759007519381,6.351477532245262e-05,0.015518190078808615,-0.015271514697470883,0.04146459094082872,-0.257708806969145,0.0034907824760499586,0.00867796482798337,0.01904051697309038,0.0874046020842942,-0.008305657825701458,0.0001083639947437984,0.0021774874609612775,-0.02508409041357722,0.11982214264720113,0.04405376564045118,0.00015181757865025423,0.0085001886923491,-0.03735863040304105,0.2134261611422485,0.09380860748159817,8.27926897589404e-05,0.005769287438357929,0.03173420147601196,0.11888907802989136,0.026100323776060495,6.708617185857937e-05,0.009167040523563732,-0.03110059202302642,0.04912900738737704,-0.001445970670314178,0.00030864557905963815,0.009208031104587998,-0.016343210526393922,0.06986523103378595,-0.012315307946331023,5.816887325425532e-05,0.00402302930321384,-0.015000536962314874,0.15488709185983895,-0.028640527119219487,2.49875033476084e-05,0.02334958937277153,-0.017414034435884677,0.05185355220753796,0.031970497249832086,0.00011738966156717887,0.006308146193438159,0.010506791020751714,0.04469752101516864,0.01113899287571944,0.0003705225360552383,0.007112086655537419,-0.0786051020195073,0.41492833474586466,0.12497836112958803,0.00010850492188037441,0.015417470999430628,-0.004015798074549813 +2019-01-01,-0.004141327253124239,0.026699631714854854,-0.006963270921061137,0.00016402908541776712,0.006444455645174696,-0.08599265210738782,0.3024681732424753,0.14287318263366197,6.82169324662267e-05,0.007101153346126106,-0.023923961962671155,0.07514480673771784,0.004033773761703582,0.000147275781486842,0.0015203673975088192,-0.01290494689810878,0.014532218555629252,-0.01770107779006611,0.00029970373643709985,0.0022077227157372144,0.009492196036272011,0.02463169504213569,-0.01427176607983479,0.00020163697437539023,0.006314369935857008,-0.012924453515602409,0.037153629108882404,0.011648184812039265,7.595523072890583e-05,0.00791395961538064,0.05782744616170353,0.17221531317168967,0.028488311427243156,9.85262837870833e-05,0.012289739705521479,0.004140353978540104,0.03421275611984251,-0.01763023838243454,4.149999319500328e-05,0.023044325848095296,0.015058959884249146,0.010011506005377358,0.004193612005078537,0.0011599528887221962,0.014340895473838452,0.02688543872513012,0.062228089795721794,0.01999984006373275,0.0001510749796729145,0.0025571129506012516,0.0024860479883141414,0.002054711089770808,-0.06454843236909079,0.0005914024249096498,0.004272675901784012,0.0003471599185849918,0.005048026650683094,-0.0019565369868214675,2.0494188584480033e-05,0.005359137189786365,-0.011676257470014396,0.037880319510253536,-0.03089160547156171,9.156743889064663e-05,0.004024566950416096,-0.010548499486713412,0.05206291188275596,-0.023841537182874455,5.7032715458480816e-05,0.0029309159686535294,0.0014989825115695877,0.0015574663033133562,-0.00022239273101861952,0.0018771582193033624,0.009523962814493577,-0.0049788401216663844,0.03311903319546705,0.0006726986618581804,0.0001237093821675551,0.005595980447051016,-0.028447717736854172,0.16790464028571636,0.0030577064875912663,0.000262357185607273,0.002257776207786934,-0.0086868014888885,0.05134486007088375,-0.020282823195437127,4.765669037213027e-05,0.01940778136771715,-0.062703970709751,0.3489327906790882,0.09287249658107181,0.00029616931908750516,0.008721957901089391,-0.05561381179695545,0.775931618773547,0.043961327448498136,2.9743320071841786e-05,0.00432577213200548,-0.0027279087032212154,0.02985442468087613,-0.009093079940922068,3.05283149901371e-05,0.0006909042997105658,0.004095579271802062,0.010259673610069632,-0.0004756465546697466,0.00012858921565498568,0.004903347711998637,0.021236915158509687,0.12247748308283678,-0.0005473487332429536,4.005230873003995e-05,0.04181653790555918,0.008995896687535183,0.02691347055265631,-0.008201062153886149,7.410578922414725e-05,0.0069372079270799795,-0.02477295689688745,0.09450649810533018,0.0523906225569977,0.00011985737769575874,0.008670928966647494,0.011848681472805858,0.01152108461150632,-0.0003355081043882767,0.0005878306404913723,0.014153467164085925,-0.04703378641297824,0.1876392416822297,0.15035678651955625,0.0001055048155536818,0.013875793753753102,0.07894665376362739,0.2874448917630195,0.06989296871893003,0.0017627807784893327,0.03124830669650739,0.033756448427122554,0.3063297150398397,0.037077163031290966,2.8336735464929885e-05,0.0037337060583370846,-0.041793852317856955,0.12437227186779143,0.004057827752546036,0.0010986518871147438,0.005260338044221873,-0.006731408552670796,0.05064166618073403,-0.03750003142709342,8.851637241158942e-05,0.013726362956464302,0.025315894594323006,0.03253696166398091,0.044860691450395895,0.00018363762587566496,0.00489401845550647,-0.022459176686563078,0.03434808267251697,0.006781282704141048,0.0003753144158667846,0.008330368328871397,-0.005628004387044873,0.020357958890811323,-0.0063863846620405736,0.0021427452222133095,0.015982263169653364,-0.028661383709338396,0.1093905547510797,0.024289110812923242,8.40635447170289e-05,0.030809166193429993,0.004185416434179959,0.0065239086052340444,-0.01592754244655458,0.0015948065062489404,0.027690722748395142,0.017219130692238148,0.05497393136894867,-0.024337763790559623,0.00012409962320995168,0.0010704371845711976,-0.0029689608025168664,0.008287190416989809,-0.005579014833189949,0.000145230396192593,0.00612457711245762,-0.023334982831497205,0.11716104426955476,0.007793227275194358,4.86114053638543e-05,0.0006593093547318013,0.0014202618041118614,0.003968745868373754,-0.005366735328420539,0.0033918229539649154,0.01498484434359768,0.0008873033005529646,0.00439052862857394,-0.02688640851774498,0.00010053003977139425,0.013579313527909682,0.0051183529655931285,0.02609789605173675,-0.06902784827966373,0.0001422281363046639,0.01730203161816968,0.027161615653835233,0.1650685470111326,0.004827797288252213,7.782873465959416e-05,0.017248487962150557,0.010494839146187644,0.03716633171800201,0.00433813463930042,7.096978388080237e-05,0.020267921555271833,-0.020222778293676743,0.03372939907151116,-0.01425705932781468,0.0002923220737341183,0.009609330750683985,-0.0007795958855566937,0.003240694361299677,-0.00486011150895146,5.981992177854442e-05,0.0055637087490562264,0.048297668402899153,0.6129721732117852,0.13173171985145748,2.0329031621049574e-05,0.006489880729502306,0.0022173527454356257,0.006945525898036537,-0.012293570955568961,0.00011159342767231184,0.0036280447902714555,0.016531556163446034,0.07422063814018386,-0.05169247891068623,0.0003510888391360862,0.003302051880788534,-0.04698944534335228,0.20652548949207655,0.033770995992066954,0.00013031621410253792,0.013706804637214852,-0.0034037821012312857 +2019-01-02,0.032812837311813635,0.21218259346200918,-0.006320623380788435,0.00016353872810885816,0.027395923021209034,0.015750667819379824,0.04314022704861135,-0.0784671548766291,8.76046325713557e-05,0.014065132516554177,0.012563344301026529,0.04195514358754001,-0.024279470750017167,0.00013852152196992416,0.011418385463886484,-0.004814798465354651,0.005146577985623417,-0.017202012814874018,0.00031573840573979656,0.0010391699049993864,0.0019765259155332224,0.004967190207644138,-0.0873085378166455,0.0002082042041242593,0.007609498937258484,-0.0010757635110690484,0.0029621174345446496,-0.00017405568547130995,7.92978252290598e-05,0.01841168997616372,-0.0011919265973527483,0.005031871729950317,-0.010851187417471016,6.950400083206839e-05,0.007157079377105725,0.013181851570239503,0.10244998092720159,-0.013302706460643677,4.412280864210965e-05,0.03850372339695335,0.01603224036569154,0.013178996938003375,0.021241815969223702,0.0009381162200891927,0.0037543393556654357,-0.00879627644252627,0.022677275012354576,-0.011752993838883985,0.0001356344120315628,0.011262143675597691,-0.015494906819080908,0.011167886203925732,-0.02064725383029286,0.0006781758917352952,0.007361729376136297,-0.002654668326947802,0.03769083137039742,-0.02038614316387185,2.098927030882149e-05,0.0008249336822245808,0.01893981619924069,0.04570293451013473,0.008791626527772267,0.0001231069896702985,0.002303236216025332,-0.00931423917597702,0.05329399787793354,0.021911441288464454,4.919612584977658e-05,0.0030345602908829834,-0.0087710135422196,0.006549462794127036,0.0008539822264077796,0.0026119633256627647,0.017632405171670914,-0.030257327965072047,0.20417868957399474,0.012356864487640682,0.00012194732221626763,0.05346953889910066,0.01190608248544516,0.06509501779429769,-0.0066315692616573324,0.0002832235544626069,0.007757911407352211,-0.0105607339902083,0.051608417324688696,-0.009341607921699528,5.7641399770710905e-05,0.015219400028753714,-0.043291953503995964,0.19013177738816064,0.030077289270379736,0.0003752660558451367,0.001787289312760898,0.0858359086696115,1.0123246202146072,0.07189334920532543,3.518677314461443e-05,0.006653508103138977,-0.01166671231636766,0.14229702351659385,-0.0017497186735893496,2.7392671045469928e-05,0.0005465129911708115,0.06841924206277969,0.2078392351680103,0.17063621695193165,0.00010604091807335134,0.00439060445340272,0.008122211960366157,0.047856956371969094,-0.02639412229747645,3.9203209209370406e-05,0.04486722264027016,0.003112952601727699,0.013146733124273743,-0.008638735724595238,5.2496704765572094e-05,0.0015932599040622089,-0.0034888013626191232,0.012246742948696782,-0.0032762343522139345,0.00013025794926661052,0.0077844483310640705,0.020951322901563096,0.017998384697135765,-0.027595714187256686,0.0006653550867041146,0.014154860078655386,0.013982357358850943,0.04832708416234308,0.011402013481497206,0.00012177995635550839,0.0005162336923772279,0.0013984002915990899,0.004719651474958172,-0.00830153303261338,0.001901694504269077,0.02236548561275358,-0.016083121293977754,0.14173358290528235,-0.0019317075774747236,2.9179629059035073e-05,0.013163171091642382,-0.021861954632773857,0.0631788646455544,0.007734874741483915,0.001131327753678914,0.026497316160683418,0.014758402452759606,0.1206563326104561,-0.06852565353566165,8.145446052948188e-05,0.007841183629436756,-0.0028630683681520955,0.004227286487968916,-0.0823460011642082,0.00015985102434667666,0.011235550620200069,-0.01591491487339762,0.023849450113468937,-0.04939512089020287,0.0003830274186572062,0.006955121058687598,-0.00043293685776532625,0.0016839209585488807,-0.00014033856214114805,0.001992751751741659,0.010942279396479314,0.002711956198780957,0.009751702003566495,-0.003919070871566522,8.92262456838991e-05,0.007466223705764878,0.012351134627189205,0.017438405023068912,0.0016869989163498262,0.001760667253959658,0.00877954872290416,0.013926653244358057,0.04049291468394171,0.0020991976038513297,0.00013626482424893534,5.8594781809434386e-05,-0.011213984917731635,0.03086026346907221,-0.006499505106712874,0.00014730609413779824,0.00930864504712426,0.025254980837788595,0.11135512470813665,0.02630639240360251,5.5354223091653196e-05,0.0020967477769450863,0.0580570656591011,0.20243324371165652,0.06426760950800266,0.0027182619478407634,0.009368499626384188,0.031254504839204715,0.1328655805142508,0.05261421337068873,0.00011701477561191213,0.0026851631517591608,-0.01657445794697875,0.08107224266755456,-0.01447014423265172,0.00014826134361895486,0.0016500467092323678,0.008787401747835093,0.060603194077259497,-0.06482333775448053,6.858255599831191e-05,0.01028027589471469,0.0009643658359741839,0.00487351621555829,-0.02122002616056862,4.973324487469475e-05,0.033302221379778764,0.003859294959407325,0.007333500726905609,-0.04191947590167955,0.0002565819060038988,0.0018698570691347057,0.02043470147078367,0.07852891038590346,0.03209753748104444,6.470727365886411e-05,0.0028862516074311187,0.0037362514494404322,0.04432980132336814,0.001200305453221748,2.1745610113177623e-05,0.004196740212538559,-0.003987464524567058,0.013056410055033484,-0.002111987162586719,0.00010675347368319914,0.0066709784750814335,0.004065369037984679,0.016446548651931014,-0.0031551911706597813,0.00038963070298668934,0.00031407818216254,0.06431582006562439,0.2925162928388176,0.04696939809593619,0.00012593299923635887,0.020933433629392456,0.007281291071212487 +2019-01-03,-0.009960523478089671,0.06879575609944015,-0.17809311381943765,0.00015311124901082863,0.007217299876387603,-0.028873854898677873,0.078667256484308,-0.001443372971047724,8.806864040571184e-05,0.004486241906572318,-0.041120048269744296,0.15418606899072138,-0.022484473750941873,0.00012336889764839258,0.014945312837741304,0.005980872881598145,0.005854892463187564,-0.0019846080778096044,0.00034475732748734974,0.002953528608548149,-0.01668293567751388,0.03849199435136468,0.005641149963408336,0.00022677743260785378,0.0007879853140070417,-0.00034031985806631235,0.0009681089848611359,-0.000986751434608761,7.675554866947481e-05,0.005753252678341547,-0.02426749184994161,0.08653891680059098,0.0031671813963769528,8.228170697470188e-05,0.005322981478392332,0.016686469753610704,0.12802573637349318,-0.001857928827738475,4.4695705582276225e-05,1.2175865163877616e-05,0.022753886472833145,0.01989184708871776,-0.01649042904848375,0.0008821151103008669,0.002118021670890112,-0.02170671103699698,0.043032371369619044,0.004525191492813674,0.00017638458679658986,0.0024840306760799025,-0.030086529973001385,0.021524379826209687,0.0689422564020607,0.0006832282456586776,0.004622017403138133,-0.013307551765887752,0.16498570852131356,0.018791098728221114,2.403668806704214e-05,0.004430770804658441,-0.022120207687546713,0.05788658307225387,0.0031158995442301077,0.00011351737068084022,0.0013857228525833351,0.006820442209219126,0.05291767720294653,0.005683880495084808,3.628052634114746e-05,0.0005650846876385207,0.03401565593548629,0.028131908954006423,0.017057439708417138,0.002358319377199161,0.013637364571814154,0.06302480471029862,0.44193717006423133,0.02527160989489981,0.00011735540216137693,4.972430190801813e-05,0.04109403351143096,0.22830823566819725,0.0230827013205748,0.00027871826172159525,0.002762000499618441,0.04965395739195181,0.32030450197449395,-0.032311316034779054,4.366684156156898e-05,0.009009078815781476,-0.031229693502812694,0.16571821093635386,-0.00986573566935708,0.00031058772908406886,0.010715216641799582,0.05918600541982568,0.6075322138024554,0.01772216788297753,4.0427785233846456e-05,0.0028656286084947466,-0.0006170152810706,0.0073606502795592705,-0.014580073134057696,2.800666812374274e-05,0.006600205620582604,-0.011197240419085382,0.0255282583269256,0.0007256283582026923,0.00014129037345113696,0.013832064312388702,-0.024289985239544704,0.2088094056176373,-0.1580963251942218,2.6870117764863903e-05,0.0294780156652205,0.02673916842883193,0.07638401408066244,0.08284991106290915,7.761091467053182e-05,0.0056057704398736405,0.023803393627939512,0.09379369852315031,0.11306713703806939,0.00011604162784706998,0.010066382754539686,0.006603315969046689,0.005950138113310583,-0.05640724864149901,0.0006343231968187492,5.3098993652831144e-05,0.005052029600011566,0.01958838302002818,-0.0050657039480799014,0.00010855586896786563,0.01565988715987109,-0.0283269450919346,0.08974826527789101,-0.011101681647608374,0.002025782674278033,0.022419756164425625,-0.0022251084283810524,0.021399372201109355,-0.05121285462060704,2.6738210717473717e-05,0.015796981769182067,-0.004910301365921463,0.014107324590249479,0.0015546668661923395,0.0011379803375460354,0.011266667373559042,0.0004208384884502505,0.003518298334671547,-0.0010328139904291476,7.965415457930216e-05,0.0026522526592614466,-0.020488002686864966,0.03017748004581792,0.028353689810878033,0.00016023671659661737,0.003865169809592477,-0.03315982620031915,0.04460350746746176,0.02903052886111278,0.00042672407724900506,0.0114744312511408,0.016310252633770932,0.05571172000091936,-0.06004777620850116,0.002269156567496805,0.011451559224148042,0.010186347204869689,0.04671694279687341,-0.03716705077924001,6.995752417068728e-05,0.01159523588189815,0.04451841853798028,0.06218396175985196,0.014412880552143,0.0017796661183713705,0.006783094130384064,0.0024421337969935436,0.0076842527091881396,-0.0064402504618819014,0.0001259168502604424,0.004694727979954909,0.04624647491107882,0.1396495218782788,0.0444142151538605,0.00013424544463395377,0.0009537254677666948,0.0016860365764563977,0.007588119889512063,0.0007270833101615683,5.423089013713141e-05,0.015984863929373264,-0.036410394255341996,0.13110651517229227,-0.08188330487558572,0.002632201701682642,0.009338076208319331,0.003891948704071908,0.020346252084213784,-0.016435841747452547,9.515316914498924e-05,0.00462680437776326,0.006766223832515562,0.04379236986591408,-0.005251122514958678,0.00011204918366675898,0.0070880731252720795,0.031305640900132305,0.19589655501003314,0.04709321947558906,7.558654582958494e-05,0.001418436307653278,-0.0302273875337683,0.1494145697595395,-0.08242060990322689,5.084579712276048e-05,0.022650797139495468,-0.028547972900903763,0.05071823129251724,0.006978764953126079,0.0002744356772850469,0.018238917516772892,0.0045094437405552275,0.016626731842472483,-0.02745566679197099,6.74420024223881e-05,0.0044050043251250785,-0.010507569865002736,0.11078656715608778,-0.03592690148484699,2.447070414132002e-05,0.0062114766870702475,-0.011069766514540147,0.033746877271371406,0.010106611034391944,0.00011466050051469985,0.00030597653216529025,0.009809451719006886,0.04010414670708078,-0.05214436946765224,0.00038555241215408066,0.014269528998568853,0.03559471419076015,0.15919502678427322,0.016364474599730876,0.00012806422030874735,0.004004586090158008,0.0022631257114199624 +2019-01-04,0.03399951485508791,0.22937956768357878,0.020932426534993345,0.00015674892609111838,0.015768844847772065,-0.04092519882470635,0.13402804049223607,0.02563611589604754,7.326653558811323e-05,0.02065800045906395,-0.03323871190263401,0.11167178352123429,-0.0003185570434535838,0.00013768858519304744,0.016866757593056354,-0.024632167771600696,0.02331413538769223,0.07016196022609951,0.00035657523416979145,0.0013510185618516315,0.019748248082736664,0.04297333254871532,0.04876244169357146,0.00024045140131231677,2.270727498373062e-05,-0.019430463611835754,0.05727179697662735,-0.017068089634428046,7.40779734679195e-05,0.0021143629195582575,-0.03235351641581871,0.121545788014947,0.009891978493908804,7.810366821793335e-05,0.013232409983713781,-0.027203825396582008,0.28303288614120203,0.0538352443819947,3.2960340779057394e-05,0.01433622626510385,-0.006264971977424612,0.005509856509599863,-0.0033838689149301984,0.0008768466165426341,0.007428311324725117,0.011398886015034021,0.025737112981696363,0.0013883647104552873,0.00015486899078284065,0.008303930203579077,-0.007690822420702353,0.005184883259798838,-0.17607045927820106,0.0007250336435302754,0.008795253760340488,-0.0027097124670987217,0.03503362817829196,-0.0016879272096338156,2.3049466755624513e-05,0.003483857087892104,0.004016844786784114,0.010324913193530318,-0.04453370038841327,0.00011557121512395106,0.01819171539041231,0.0005043158332408354,0.002511289058825879,-0.031835403573541365,5.6528533267580496e-05,0.0015081121936186487,0.02104754438537494,0.015898054594794528,0.020921889011737936,0.0025821437883285095,0.015411400178694152,0.02981588006571788,0.22632630833263376,0.003162747950364711,0.00010840884089544852,0.03433405684185047,0.007961572509002998,0.05205472310669154,-0.08269221194827935,0.00023683557924252834,0.009579578078572966,-0.04150838081882143,0.30725677605958185,0.01075983350530172,3.805355885164001e-05,0.01353885739155716,-0.005556291462683461,0.029928661803422386,-0.0009717920264557853,0.0003059740026885051,0.00672708595482767,-0.013779627175997759,0.17901965879347329,-0.0050116532252026495,3.194235805878787e-05,0.026355496999518974,0.008490439162402611,0.09168197086223052,-0.01567918391144356,3.094054240558778e-05,0.0064931648800931,-0.023113424654588627,0.06615943466350317,-0.008715448103419,0.00011253698321742231,0.01059737190119037,0.036612314743913674,0.2552543069283573,0.028447876062781357,3.313191088550219e-05,0.009532770966752882,0.006373645623695708,0.01726060772427252,-0.03639838526119224,8.186706344599708e-05,0.004380566889209158,-0.0036453560123609497,0.012766075816244641,-0.0011053391824706411,0.00013056630836261998,0.006224009980970189,-0.037017507595676936,0.033625869365104644,-0.05809750688217408,0.0006292297010798898,0.011637337163382604,-0.014143361203038966,0.04717690089310469,0.007344177215078947,0.00012618543631903045,0.0180010739890657,0.022773461901187165,0.07962901912413625,-0.0008695402345581308,0.001835594988767324,0.029066279658879535,0.021154936229538263,0.18043173613521024,-0.01872409508744103,3.014956064953504e-05,0.0014664305210794566,-0.034258551779578275,0.1161970501997917,0.03631695589962179,0.0009639292670814883,0.021193799009555172,0.0334660723591407,0.2633086605031748,0.0945865854112134,8.463797131525613e-05,1.599526414221633e-05,0.003728930765990686,0.005712017266901284,-0.008048495454347868,0.00015407784468059004,0.0103398354116486,0.01569529016614712,0.020909441869981643,0.01620706857624044,0.00043085468772299665,0.030109908459905264,0.010475901897860905,0.03335023235908389,0.004550796150698461,0.0024346856714901853,0.0019074226786086172,0.017219174510649977,0.05419996258734976,0.0043184649896949225,0.00010193039592642115,0.009905039300271814,-0.008196090739830249,0.01371207958924058,-0.05847875085644458,0.0014858693499862899,0.006986544524416562,-0.05476226736224159,0.1568294109972155,0.09002237711640614,0.00013834706380460077,0.006181149460971751,-0.009407651999669314,0.02670991775217283,-0.07909591824340043,0.0001427805561785143,0.023033045920695678,0.041099414463987696,0.1547478558312929,0.05918578008381245,6.48223720916099e-05,0.012984696567811455,0.024855993566196152,0.08459510237237325,-0.10389981143531445,0.00278486383579462,0.006742699751020076,-0.011173405659677945,0.05359730503445789,0.027459199715334403,0.00010370105722546699,0.018362142759215425,-0.014683062301730302,0.07727011968510557,0.01085663529281312,0.0001378052746571328,0.00481160177506916,0.008133475826519933,0.060058531145311206,-0.002307022967657959,6.405457773400187e-05,0.009591489301410636,0.05719987697501097,0.29666667800860214,0.07906263694859929,4.845891891337121e-05,0.00566474028113246,0.03096459610427613,0.052064576234077835,0.02386607483599073,0.0002899696041561617,0.008785880404410253,-0.018811570997878013,0.08045166447850213,0.03499218853980801,5.814393339880991e-05,0.00604327585602952,0.02252173742529685,0.26090406348115686,0.017739707644811167,2.22716469314285e-05,0.01723168442448589,0.010877106615088384,0.036914274281897246,0.003546804179874729,0.00010299781582798242,0.0024469899253090396,-0.01105479057728646,0.05038637506758905,-0.07107486470758889,0.0003458321586035533,0.010502882658556721,-0.0188044987207992,0.10050601961276386,0.005111212538323892,0.00010716216596000193,0.00034081427564854874,-0.0007717227926667617 +2019-01-07,0.003337461995853882,0.025855325614241222,-0.12468599769219318,0.00013650636479738872,0.0025509265484223074,-0.005390451944673914,0.017182292808853587,-6.208289664149496e-05,7.527566304646108e-05,0.00015434045662524357,0.00954697497066931,0.03127403467819633,-0.021251735003422804,0.0001412144292531353,0.0013801455974479524,0.009979829028398933,0.010629320506156179,0.002263969862362367,0.00031687316004098227,0.0032851234072920664,-0.0063936430700434616,0.012578121433369584,-0.02379468107456047,0.00026596860587761766,0.0007799028752209437,0.005219185350171118,0.015424972402449078,-0.00672865053824876,7.387968999930448e-05,0.001982716771076293,0.019748574965688714,0.0735170918983587,-0.10085154819208869,7.882015756323982e-05,0.009864138807254393,-0.0031716647971941647,0.025951777826129188,-0.004466419932226128,4.191010818132875e-05,0.005470408063550122,0.01579217392639409,0.012288700669395393,-0.009962335548221046,0.0009910161667937344,0.00282242533277102,0.002074845863719271,0.005505257179501451,-0.0038578307980244066,0.00013178625410980687,0.011772628413902636,-0.008660956139087272,0.00734121952646762,-0.006565437474836144,0.0005766628664437006,0.0012375396666062057,0.007057085864026409,0.07881116344188657,0.012191904267494365,2.668458494932331e-05,0.014517438033083835,-0.05444776125561242,0.17498272430955847,0.031137879211187276,9.243488207951328e-05,0.015408914991671633,-0.019226226943938423,0.12702322532734192,0.0971239825210393,4.26061946064774e-05,0.0035439545212586155,-0.001715701524054619,0.0013905186857694287,-0.0033454338659791973,0.0024065111617511694,0.0011376060284189456,-0.02775381787389128,0.16384072430122454,-0.03279800885013076,0.00013939685726248755,0.013140315912088953,0.0025861663465307845,0.013832445573591465,-0.049458287919684,0.0002895114322358606,0.008120526134451949,-0.06482632891713284,0.3718473310506788,0.05681159251025266,4.910748760980525e-05,0.010771731658844637,0.014717324183682066,0.10125051670834825,-0.0021711942204685228,0.00023956226775947824,0.01566655142516262,0.08587446563585623,1.1249848853021454,-0.01661419087963373,3.1677258697923735e-05,0.034551643101006654,0.007915702936118497,0.0851733002301406,-0.07494487768778225,3.105043732029799e-05,0.0037832444563574955,-0.01455528633653948,0.0454936954020429,-0.006742162593769323,0.00010306051153823685,0.01725192534653832,-0.0741250925001323,0.5177751829460067,0.08874528237310768,3.306864452232334e-05,0.005694338291039633,-0.004033691148057641,0.011143876973688446,-0.0025358263212849706,8.024975504785042e-05,0.008076819569743623,0.015510397985621585,0.0499427473836001,0.03532840229411492,0.00014200351930911232,0.0018143164442872577,-0.03761346030474848,0.03210796999456366,-0.02899427495775062,0.0006695854404678727,0.0024876602796343322,0.02888805678035261,0.1146178458534429,-0.009184688261760911,0.00010608453964963757,0.003469109273439314,-0.015028444617889661,0.05583385291069588,0.001566185406988731,0.001727569833194362,0.011011422673435928,0.014848924412871098,0.15281314739464116,0.015561603268597237,2.4987135454197426e-05,0.018945034356509384,0.008421849541421006,0.021945419589334426,-0.003639639100643669,0.0012546854430610659,0.006060704562183877,-0.027443205157004158,0.22611824433976044,0.003978596657733062,8.082112115986207e-05,0.00043285859364491116,-0.024942867564434767,0.040612005356127676,0.03594477395606674,0.0001449563791599403,0.032736525560500815,-0.023339923652204175,0.03138722456561121,-0.023951117032420925,0.00042682557124826964,0.015547634704201438,0.020222120141098917,0.06931272260913575,0.015506393428735877,0.002261330649511791,0.004234509092167598,-0.022112881427815624,0.09073408217347041,-0.0005957580290435975,7.819252851222267e-05,0.019426445323841673,-0.02054822683085098,0.02417786520332328,0.011109439789883156,0.002112679367841813,0.013855204922649146,-0.041854291817132364,0.13294556370588265,-0.021047409854715565,0.00012473323459472434,0.008595931843117752,0.010702724151822237,0.025679319488953162,0.0020865026060492057,0.0001689550579858032,0.005917164662191033,-0.022450492969576102,0.0944672200024071,0.006676436704814094,5.800409720713636e-05,0.0047415517041833975,-0.0008872360507878068,0.0032023621181363525,-0.006499297644864939,0.002625952090569429,0.005683747358381216,0.004002310131700489,0.02319007154552334,-0.014012146919269301,8.585176349065326e-05,0.005775305768436503,0.024659033267791505,0.13113692554956385,0.025357036830284684,0.00013636779973916422,0.011528734179631947,0.0294045118979014,0.1645491497423658,0.0007308761672841715,8.452146789229716e-05,0.003277032963969719,-0.016512642985608995,0.06871650510622762,-0.0037742699901992657,6.0395269398720346e-05,0.0027374966700463694,-0.08245602805802874,0.14203743992669546,0.10317088320350978,0.0002830407516488589,0.04846946817405192,0.0029245673955492096,0.013500369504282352,-0.007320720086274437,5.386793837035901e-05,0.001964683939023603,0.012337425025070781,0.12781755235046474,-0.014351451898761351,2.490378252605334e-05,0.004560446592231755,-0.00029715348715563623,0.00100468380643265,-0.041205054456549935,0.00010338568113986578,0.00942831663602655,0.0025255732281895464,0.01180210659191874,-0.0018856114392758235,0.0003373093684534484,0.00426249005637099,-0.018961359510201295,0.11875614367969085,0.0018454475570830596,9.145031002176859e-05,0.010714284751863857,-0.00471948016941419 +2019-01-08,0.006273635249519466,0.053720123684580415,-0.0018454745531360692,0.0001235005367569132,0.012672173894524812,0.011881810115656057,0.03552908934017103,0.0056815514611942225,8.024335125543728e-05,0.002908761222350659,0.028815341231276367,0.11589485103010977,-0.06849847197209386,0.00011501562130129222,0.013862756479604027,-0.02459530366864193,0.028324577311743426,0.058492382275891236,0.00029306004212679466,0.008702685317664762,-0.03698802859044459,0.08286392509061674,0.15060661715088416,0.000233557305305024,0.019365068697929966,0.008088511937283613,0.01965088562969464,-0.008050437517602602,8.987382853206372e-05,0.0037164936049519865,-0.008856709096195266,0.035328521413417344,-0.03869295602455152,7.355916215563475e-05,0.0019104455865721856,-0.003894826463505509,0.035086050229938714,-0.08920333480729899,3.806731500434036e-05,0.006156505713110724,0.03812112638735308,0.03434782911528177,0.11622505896861512,0.0008558767277387011,0.008647148334291716,0.0012461462407893874,0.0035333933701359654,-0.11627168810377105,0.00012332153115523687,0.0008863836846858706,0.05139773141661933,0.03726083505826913,0.44885657708431237,0.000674241880421273,0.007417060119104878,0.0004955172774830837,0.007106888696824256,-0.07133255581059164,2.0777920364966332e-05,0.00034077567605059786,0.008359439719138575,0.02164868347219993,-0.0050748975876474655,0.00011470879501111579,0.023415679276328923,0.02410742518311953,0.12587947702912666,0.11562112404800655,5.3908558117827236e-05,0.0028946245733572676,0.023136627870803138,0.015763071148623253,-0.12726028629389377,0.002862741924353246,0.012729802087898536,0.0015275240425292559,0.010847773585868189,-0.07592177882636521,0.00011587761562428755,0.0019826575412040187,0.014934407845742978,0.08391440859482446,-0.0023188919964085898,0.00027558761805447955,0.00643471972147992,-0.024348156669135413,0.13942841009712464,0.00436548927235706,4.9189880605351205e-05,0.00960048767996532,-0.03920834677449877,0.19944252528139383,-0.010362067427153777,0.0003240019124017896,0.020158538948607883,0.03182038072654903,0.47399192931580403,0.0015436357769694636,2.7858944355161818e-05,0.01639723315618793,-0.008509700583864126,0.07699742751423094,-0.07661594645868808,3.692493785228637e-05,0.0029205055549483567,-0.021456711183002818,0.07182192880811958,-0.12446098604435853,9.623406855330991e-05,0.012973966508930837,0.024851115042278903,0.1480574409992698,0.010733363594196585,3.8771090558918666e-05,0.009663346050097638,-0.008531176530772178,0.02357641754550396,-0.013219828236329887,8.022477293575266e-05,0.001632740213461898,-0.007056302414940583,0.029672163885713802,-0.012780332347125441,0.00010873680345023612,0.002579439474316548,-0.04191215699431605,0.0354949024111728,0.0017815694042616222,0.0006749157874062267,0.017788426514040716,-0.02904581081043868,0.11261243559842227,0.02226833477819341,0.00010856333141416065,0.025805627713342872,-0.002605245352681766,0.009028079501502789,-0.052206820943701486,0.0018521341086600758,0.0021082323757113195,-0.024442132400823914,0.24929296278390461,-0.021221249751814508,2.5212230472212057e-05,0.0055942161226838726,0.0631119752534343,0.1990243273486324,0.08010385105543966,0.0010367567646722405,0.010999214707316192,0.033277085674021746,0.23337334535854268,0.051650058141352505,9.495540190566179e-05,0.009907124128817096,-0.0011359448074425122,0.0019909161337167336,-0.03698831727564767,0.00013466342342930462,0.005431602145850129,0.03753725397585747,0.05010536893739196,0.018117191844142434,0.000430013557547054,0.0020725787640270394,-0.06368885429737897,0.22340705097823332,0.22597217253649166,0.0022096164871259327,0.020697835058136303,-0.0027698651993872687,0.009962577150865104,-0.007393244176766527,8.920255761068334e-05,0.00018288783976288625,-0.0024796682129678716,0.0038432422698961217,-0.0020179070404924395,0.0016038841820588047,0.01856952484389485,-0.03174600348700501,0.12516276227792292,0.024601497516603333,0.00010049164532698477,0.0054971945722255425,-0.00879488714914299,0.023089425749215273,-0.0005382485468354381,0.00015441074397690496,0.002640041084422889,0.014386502594687869,0.0567185936413942,-0.0026047298573283434,6.190756176054497e-05,0.002716873813306447,0.05436533012193437,0.18346762637683253,0.05538245524271778,0.002808540204382189,0.009968053142304091,0.046409110201187986,0.2146606744979689,0.0684537009226651,0.00010754527213622565,0.011194849911361196,0.06855377646398444,0.41009480809541304,0.2023727132263139,0.00012122938371743863,0.018860474885564485,-0.007673682069193152,0.0472437287466487,-0.004915458200890873,7.682601969464708e-05,0.0008165298263810602,0.04148500969244425,0.15217726730052603,-0.015444421433892285,6.851549658319163e-05,0.0072407698420531505,0.060932103087670185,0.1013122359139082,0.08978427807861486,0.00029323355267580405,0.0008615614789425287,-0.019782874143264045,0.07736001332291546,0.03500907318403267,6.358976617928456e-05,0.0009619426537464208,0.006010946307987257,0.07294332201123675,-0.024667937860765377,2.1261240296591685e-05,0.0031219245411924874,0.0007229357628702045,0.00256043887756077,-0.11351053806115502,9.869479766655155e-05,0.003977306187351013,0.002049568812821852,0.00800309933275764,-0.13026039235380737,0.0004036753845302927,0.011510635159345892,0.011001026894056356,0.047319488694566175,-0.02791156548467804,0.00013315729958309502,0.006913962401307278,0.005415152435171157 +2019-01-09,0.03654022546069754,0.24769375223477527,0.03667806120224745,0.00015600652186116077,0.026589196468833787,-0.047235585585913245,0.17917760737731,0.032808322442983956,6.325518020441983e-05,0.0037877446534173003,0.014225436913807031,0.04663160227866762,-0.03166093073917149,0.00014111802193272942,0.02009941187963831,0.023069141918795038,0.02341069341908314,0.016021408229246848,0.00033257149254118344,0.004683464615632477,-0.004562834470731938,0.008677093692793571,-0.0286621481858218,0.00027514282958657324,0.003826874888127197,-0.009358494341383932,0.025786748028896495,-0.01803211280894311,7.924213083298572e-05,0.0025980833956520365,0.04665616005569282,0.15945818027756328,-0.03383240086090275,8.585232159218389e-05,0.016172467019740393,-0.050491531317428597,0.4970323404898375,0.04565523762705618,3.4836339054119704e-05,0.013654062153383294,-0.0007764632336162845,0.0006123239914156059,0.00221632549932432,0.0009778773952581754,0.01185725117612437,0.012753199350819042,0.028149123711648048,-0.04835355411311539,0.00015842224196544087,0.0046872206283686026,0.01714804269560226,0.012818578685356309,0.03069740979133643,0.0006538814858296599,0.007452001464132812,-0.0046965920460645665,0.06968317470262299,-0.01724023761969209,2.0085271155476848e-05,0.0030452213969155827,0.003345599011957086,0.010071691073010154,-0.0004828541188475464,9.867849763519066e-05,0.0044136029805075475,0.02255907249998192,0.1336221523872459,0.06689542909202241,4.7523081688709656e-05,0.00207942785767379,-0.06132272569205979,0.05581499497365904,0.2185443135099538,0.0021428586913503638,0.01394831388279124,-0.006933303676201065,0.04155723202922794,-0.008173964478891894,0.00013729215349531776,0.04226697936772099,-0.024871154266623095,0.11508100622352034,0.003471297485557436,0.00033465746937405626,0.013444784375327713,0.022623190984745106,0.1341906091182072,0.008606042019113745,4.7488963812527e-05,0.022322528925144906,-0.030197665276730453,0.1455863349919252,-0.0786924057383236,0.00034185313041267614,0.007688198862090518,0.01012666174547282,0.11471424769532902,-0.07474522019614323,3.663356411846232e-05,0.08123515066722001,-0.0005704367356784462,0.006305133828750981,-0.04394808838429377,3.0226988861256224e-05,0.0003313179253305251,0.029117499130435917,0.0772188845732185,0.019216969842221945,0.00012146560090973613,0.008489953108553243,0.016144583453736667,0.1296372693820446,-0.0011431664323883586,2.876665372914917e-05,0.016637929506429103,-0.015936940708217016,0.04822891581433958,0.0521942691465301,7.326133699015812e-05,0.004339216767509885,0.008327199910065494,0.029004829716893,0.010431949698228476,0.000131273560998277,0.005393311546243861,0.020598896622287713,0.020341226335931464,0.005081683632998712,0.0005788184783946072,0.004567816691014659,0.011191812498958247,0.04008253472653386,0.00043413612583344447,0.00011752526989192228,0.003244926093824758,-0.005863422389050587,0.018288790834155952,-0.017267161880475213,0.002057715659869706,0.011962123362526273,-0.026245900133972988,0.20274606523188374,-0.07509554691722181,3.32882705739761e-05,0.005994075993508298,0.03315039806586548,0.1048331116335055,0.015012208326807457,0.0010338595430826826,0.01300247119469951,-0.024155197706745412,0.1906664379392537,0.03546257877454771,8.436493701767265e-05,0.001991214394269367,-0.011862528867998134,0.017628312719555506,-0.03494926469958112,0.00015882246144290375,0.01512626293910271,-0.0012840618003609335,0.0018919416725097153,-0.010174335221922135,0.0003895669425692207,0.018128060611580628,0.006079346919171654,0.028084370113235165,-0.01962999112373116,0.0016778092351658145,0.012054547168385835,0.0002770993976725228,0.0010735456118161396,-0.0024967977756842875,8.281432208747488e-05,0.01133402005760265,0.001320554772723478,0.002191074587414801,-0.027362117241797077,0.0014982229629937375,0.033206050395985794,-0.0016147781570667126,0.005716966954844193,-0.03672964494884031,0.00011190853765522792,0.008581849895076385,-0.014688287554097637,0.033832072672553344,-0.1034115730850764,0.00017599605668139367,0.0013167543055156053,0.026065041356143147,0.11206602676522426,0.018429845890495844,5.676731702805881e-05,0.0028946993624218457,0.026269707149997094,0.07913726491019978,0.015050170026127494,0.0031462429321250534,0.028871725171517124,-0.005262666242332194,0.02925671511458064,0.00445394385888955,8.947894107879944e-05,0.002679503627300759,0.041355831955226366,0.2557131599567065,0.04113702659830301,0.00011728553880652351,0.014926250043494403,-0.0015291306737682368,0.01011152684519463,0.0019325632432783606,7.15280786976021e-05,0.002134585726671008,0.0009014748276189978,0.0037123357805014653,-0.006813377905032147,6.1031458389423e-05,0.007214088318235165,0.01009545363994394,0.023299244817749382,0.005368958361690809,0.00021125810901763452,0.016423326854670527,-0.02571789470845172,0.09599506430904721,0.03756907681011646,6.66194259223285e-05,0.005086482793770559,0.002913200976275842,0.02924061181999635,-0.11489559985906758,2.5704862014628128e-05,0.016702776769413126,-0.0025400044810536568,0.009673455285712732,-0.011078791860109937,9.178290911740169e-05,0.0025929946215331465,0.023279891368520402,0.1050632415190557,0.033401898500771576,0.00034926745880017586,0.018569580248970166,-0.00451844092747437,0.02104698174373369,-0.05688762354940639,0.00012296190431545975,0.0048460444867262165,0.0017818152723898598 +2019-01-10,-0.008089487531186969,0.053890481264401,0.010445423803351908,0.000158743346609093,0.0014351321754743935,0.020341688650539074,0.07813066858956458,-0.04448400781050028,6.247064479696463e-05,0.007526835597359791,0.024584428214662755,0.08276155805738337,-0.019912633645190792,0.00013741326487562658,0.005693837681498495,0.009315859119226133,0.009320189619237884,-0.0018163357899171647,0.0003373385861268721,0.01790697864407816,0.004859101282676705,0.011759169280050706,-0.007391799263975476,0.00021621064955734397,0.008925230334352321,0.023968168405898316,0.060516222720741364,0.05764495650133091,8.647882391960177e-05,0.0020383173744037836,-0.006797693009228568,0.02335219663748139,-0.012981158317306778,8.54129385743146e-05,0.03068699856977385,0.018715990818203358,0.16775865344642849,0.0015065665792815066,3.825837383205997e-05,0.002534502855995457,-0.022900359664526738,0.017025311087584784,-0.024074134325797643,0.0010372705168408426,0.0013253932544112772,-0.0033644674656399154,0.00699103101807655,-0.06798456049461664,0.00016828173864852686,0.00631545728326716,0.013835308268269333,0.010193354512033289,0.016390026825479388,0.0006634314719314933,0.002047926038920855,0.012624157906761432,0.1619630298933314,0.030971540825344458,2.3227866160479454e-05,0.00503079811320313,-0.0011477565780583334,0.003143985225827221,-0.0022688385784481783,0.00010844769651464864,0.007501930100238701,0.0021296587303389052,0.011178090043224018,-0.012085179720936933,5.3629559481082276e-05,0.001742780015531839,0.00928582474518694,0.00669513147432956,0.0048436045332244295,0.0027051063606534126,0.0024993388059231965,-0.05139285802435953,0.3243098685121103,0.0469036462258011,0.00013040514118770215,0.0006112407726268268,-0.07845112695683462,0.41337336682256726,0.09508900205869074,0.00029387654575404514,0.03822265497059767,-0.03248249355603513,0.22237446928373564,-0.013048363004225601,4.1145788781927104e-05,0.006789968651809845,0.02502063253791166,0.12054263219598989,-0.0084050821919005,0.00034209318430788386,0.012964457327006136,0.0182945001196415,0.22909864835996782,-0.012828642876280417,3.313814940235051e-05,0.036439132278168765,0.012487147483857665,0.15138843261974677,0.001524551288655101,2.755828946990532e-05,0.0006374402992546384,0.04809235917953838,0.12157746084639712,0.04011632157710969,0.00012742239653005022,0.03042448304758252,0.0033814389165990107,0.023767976660710583,-0.009192874207516773,3.286258408605594e-05,0.0009428862674196725,0.03240683699108237,0.10194285470593531,0.04835599519183243,7.047859470066107e-05,0.013973620306998176,-0.006030664021686538,0.022429269539605955,-0.054357576483961244,0.00012294152600145024,0.00802071600753905,-0.0062182408995423355,0.006696044417405765,-0.05982075972249262,0.0005307925009263495,0.001284473723237152,0.011296073627210943,0.036334757990138265,0.0011996831942246767,0.00013085528015913502,0.002398185435401585,-0.0683350962236622,0.23895107877763908,0.06810326835204589,0.0018354983119840914,0.016468793025173983,0.01439386941529241,0.13035586093343843,-0.08367039434348204,2.8394170861124904e-05,0.00068538808800154,0.03190464183441545,0.09721782496089604,-0.004176712689310041,0.001072949404024648,0.01119352502706234,-0.00880917592272746,0.07587005609130554,-0.0005969211030444503,7.731976425381859e-05,0.012606222319975127,-0.01381103719399802,0.020647927026484117,-0.019132757232228705,0.000157868406202301,0.0030663292306634437,0.019455661926102187,0.02698850286725965,0.017249423675248655,0.00041378155872853544,0.011222559071642317,-0.019254210450158855,0.06936162797669512,-0.0075889430124397115,0.0021515764282526834,0.012417929065145696,0.000789990424711961,0.00319078948152212,-0.003497782788507797,7.943539254394673e-05,0.013579561308174268,0.006174980953917529,0.008606800429873537,-0.0019137997832052523,0.0017834916538312289,0.01866981521891951,-0.039121878329730644,0.10731455156883513,0.03839426677234039,0.00014443655435213593,0.01852133302468766,0.03416889601849481,0.0979285203323863,-0.11325078643999605,0.00014144321873626748,0.0005410249145563976,0.04083693970995418,0.1756924611200766,0.038207196173665435,5.673015725630632e-05,0.011338121949693561,0.024621592889439065,0.09380097544528357,-0.054117684162820624,0.002487865223530059,0.009782886764370696,-0.004844232295310485,0.0226989683767715,0.002698011732173511,0.00010615963375566809,0.00840177628587605,0.02136475118853927,0.12140647413938724,0.00684114090939044,0.00012761942314514283,0.02977145321419052,0.016821159329250834,0.09229123931485816,0.007657251025923918,8.620732025810099e-05,0.003317316059720279,0.0385996655976229,0.15070342987406557,-0.07409655823328976,6.437360051386569e-05,0.03282699153129211,-0.04662063390878579,0.0824515377015612,0.011498814586149217,0.0002756822527221738,0.008900480510974258,0.025992436171608364,0.11744928582453648,0.028768489660178864,5.503145326293145e-05,0.0069321295940892105,0.002091231420409264,0.021037642474229516,-0.00904999310168337,2.5646984584873597e-05,0.002256509114876239,-0.010554334415465974,0.03659872244883279,-0.004147693718812,0.00010080310031361347,0.007536851760165746,0.010868544867514696,0.041205006544293744,-0.04738592586042632,0.0004157663970869201,0.00427163918427033,0.02720329065090067,0.11439064310809911,0.0016042912583401848,0.00013620803764969174,0.004178799351485272,0.004126432087278459 +2019-01-11,-0.021510951747595063,0.13116069320286042,-0.0568427023702784,0.00017343730107514986,0.005606455831876124,0.02203485635096201,0.06546357894365064,-0.007051355503106659,8.076459235066597e-05,0.007856779805458396,0.010428544145921329,0.03958220277440457,-0.013113337470898557,0.00012187676808367524,0.0006510965395166943,0.03400398385716438,0.0315466884731882,0.027777838178695734,0.0003637842400587929,0.0025424410522792845,-0.019757178556568528,0.04701125360892418,0.02816406368654679,0.0002198977900796486,0.002530152114969978,0.005016430262662127,0.012496784314454387,-0.0295213997146348,8.764824906792817e-05,0.0010440229330715178,0.044965332934744646,0.12878719985315198,0.006102824627454881,0.00010244599100054433,0.025605822273411547,-0.022154582267675794,0.17877587157322508,0.004795581705088653,4.249651105812863e-05,0.006766531340536651,-0.01050358289996641,0.008795399296362546,0.0185388383010162,0.0009209301546878454,0.007158078832267193,0.023887440969552507,0.05398836133273083,0.0034850142603840705,0.0001547146244142548,0.011884737111983366,-0.00674272113814459,0.004360998257789624,0.0021072386266316073,0.000755742148278389,0.019614630438285957,-0.002562229767707905,0.03416335609490274,-0.01218610388759322,2.2350144439150904e-05,0.0002150692699979793,0.0551646973016268,0.15827805816130283,0.07730899044343978,0.00010353604324162612,0.03455832759856732,-0.009370139013617081,0.05706997990259664,-0.031961254113097345,4.6216827738063454e-05,0.0030860002372602073,0.02186988665433827,0.020204178590273115,0.024374521496515946,0.0021111947930025927,0.002729552987766332,0.061467991635916756,0.3776989593621057,-0.017718859475313556,0.0001339230535506261,0.02695974873186453,-0.03583132374545886,0.172972774692165,0.016899839546092216,0.00032076969618139383,0.04042143875289523,-0.008821756338150303,0.05564800059331052,-0.06763654292582835,4.4654625265820975e-05,0.0022562810179889755,-0.02766000188386229,0.15175277380431246,0.012909408334993659,0.0003004016921877222,0.025663315990026726,-0.029508350747605747,0.46392403440799085,0.024434946366131825,2.6395402918754524e-05,0.006125232476460671,0.005799207360851767,0.06877458827015613,-0.12389129123869833,2.8172302823313856e-05,0.004017365778842577,0.014060206569522428,0.04757430053329311,0.004431825585377459,9.520111729505682e-05,0.004268933613284033,0.04481089039643611,0.34487583964639323,-0.01901723038662356,3.0013260570308246e-05,0.023942331261159196,0.012423499972104566,0.03415443219295352,-0.033990192853437,8.064441130028121e-05,0.0028071554218476787,-0.013895752090245258,0.05149705252233634,0.016838079797861047,0.00012338099846484344,0.0014840473730136081,0.011033171768148163,0.010874285459254937,-0.03727797702150921,0.0005799295137979682,0.021691586120246884,-0.007021857613944456,0.025678249511995585,0.003960077176988116,0.00011509928170167097,0.012940962146010102,0.02581081742804725,0.09338519961170634,0.005765816503877804,0.0017739561570044274,0.026288054598300054,-0.022632332363682724,0.20319712088519756,-0.10425306459921241,2.864138119438791e-05,0.02026942823073423,-0.057270260899547426,0.16410633663217503,0.04853991986992502,0.0011409722465048854,0.006693678809658685,0.002961493471517626,0.022167952728442422,-0.013731980813185064,8.896329015274316e-05,0.01828110413280423,0.02466537089797401,0.03759865397775403,0.007988902776940225,0.00015483200549667181,0.0010219315542257415,0.0025173618185662253,0.004432123468894025,-0.07290532790487769,0.00032601509146311126,0.008126523450430091,0.0005225626189343535,0.0022030750520988505,-0.007240116113109133,0.001838482025812085,0.008248884608625284,0.0037775199749519677,0.014440526959129417,-0.03984053986506451,8.392939610388327e-05,0.019638793055533416,0.06989191513634974,0.09256855900765495,0.08830641916884995,0.0018768978183123079,0.014464797607810335,0.010248246059019495,0.036153728762325865,-0.010296418235461466,0.00011230846339018287,0.0027385690678564667,0.027091046162916292,0.07791022023218039,0.0008138303522598556,0.00014095864632922793,0.007011436379583825,0.002314970446205016,0.00999275225112165,-0.00179350139452151,5.654240225109561e-05,0.017506141812688863,0.007246027448237296,0.026234636255525707,-0.002587929527085546,0.0026178393150832397,0.011111771397425372,-0.009881438511214948,0.04813442131152439,-0.021985669280198444,0.00010211863200037686,0.015510481504577537,0.032378374602051486,0.16842646029116226,-0.015546637616518576,0.00013941371697088751,0.007570319230256035,0.016533974239060396,0.08969398259486486,0.005686493522380623,8.71891908719099e-05,0.006917613934675736,-0.007751250041974575,0.04131962063883353,-0.02181359692392553,4.7147950191221225e-05,0.011368677186735452,0.004653366279624349,0.00787513755680899,-0.02225828393038713,0.00028809683291547173,0.0057081596316230065,0.0006106784972456354,0.002799333154777498,-0.04100525080787892,5.42465866353121e-05,0.004971906382495808,-0.0043606868001683135,0.053259770901270265,-0.019558446264135755,2.1124521810169682e-05,0.0070673467969870505,0.023097455757975078,0.07839249536438506,0.05466287918969229,0.00010299084454733163,0.010272018581078726,0.030893623706144194,0.11185493658394591,0.05803922847057733,0.00043535312618989,0.0173521521163113,0.06964464034283156,0.2514696186990752,0.02385031455946753,0.00015862585379291882,0.017746730095411646,0.007148894448530817 +2019-01-14,-0.010100181748800188,0.05939483928863951,0.006421029145619404,0.0001798320359702852,0.005784921167074422,0.0013937410487076828,0.004568125474105229,-0.0031758160570442583,7.320733434391739e-05,0.005054740331910461,0.004494951257169593,0.015493580432219047,-0.06128259567831314,0.00013420552647485574,0.00017630218772214505,0.012050710546306761,0.013534781137549112,0.0033818603113290042,0.0003004894811590608,0.000543810198601247,-0.002688383717819066,0.006250245010583002,-0.005212081347082488,0.00022505672078785316,0.0038173061076895824,-0.014269741206530443,0.037193951369740484,-0.009533530500485813,8.377038623342082e-05,0.005579757950000167,-0.044047762672357785,0.18529324231223157,-0.05008690536167661,6.975159267096663e-05,0.01478709338400087,0.016119077217294837,0.12098340549019769,0.009138409944257755,4.5689140181705574e-05,0.011121523807253907,0.007684947078317126,0.005778612153828537,-0.0012401169505857849,0.0010255624733557618,0.0030048542256279967,-0.039184439969533275,0.0871496415406462,0.06799758773264152,0.00015722077234057047,0.00859144375054514,-0.0029023056050742294,0.0018703099671963333,-0.03405666148915266,0.0007584970752966733,0.011674633636877367,-0.004554400940520484,0.0678758445167867,-0.024498898234382813,1.9995800898261713e-05,0.005684762935633224,0.04835339170866321,0.15629758250646686,0.047211367530074044,9.190216021284401e-05,0.001387019365281877,-0.009073620022061576,0.049940560427594,0.017238640573205292,5.1143329167946564e-05,0.003365676881533751,-0.012492839717484302,0.010026499709842165,-0.037794177800310136,0.0024301595906614593,0.0013283993747598352,-0.01684768449227714,0.12151509665429212,0.0052653141217669066,0.00011409381234825203,0.03587217023247738,-0.028285479125991556,0.17381197338045398,-0.042556802596934645,0.00025199509134802276,0.014018880894333067,0.025469727764199132,0.149106020110484,-0.04597353251148507,4.811606253628903e-05,0.0011296595052113889,0.04283386660710845,0.24684995559128847,0.03139082110347659,0.00028598353749342316,0.016267047070026172,0.007254903501308982,0.09260191722341317,0.0003175299180238864,3.2511865759127625e-05,0.011599118106140466,-0.008954633859437039,0.09450331177855342,0.012725118459824323,3.165792995130597e-05,0.0007906090556984487,0.009507324368652778,0.025586891952202942,-0.03183710522649105,0.00011969156124931573,0.00676115129652559,0.015200694545525754,0.10421201326007637,-0.006027315387302065,3.369287122444106e-05,0.038251993574220766,0.019791627624574936,0.05736238619261601,0.03619263361715899,7.649475965849314e-05,0.014325230825547756,0.0006384586186716561,0.0024930264659327266,-0.032370142817449495,0.00011709934358263847,0.014782505804993944,-0.040407222722918024,0.04055424804839373,0.04554122630901534,0.0005695058763877384,0.03846151062274217,0.007402998238349483,0.026203878315041722,-0.0022610150680193383,0.00011891265644099672,0.0022818711499743667,0.08354003174190644,0.2588189617104284,0.10707374442458792,0.0020716563713844643,0.0112684658738349,0.007765547339808581,0.08127152063173715,0.007773394128588734,2.4570606750413913e-05,0.01187355253874059,-0.010210579851061233,0.030059825664183953,-0.022495011891974354,0.0011105425890660444,0.003910590547049794,-0.0017682207677761218,0.016054305871829086,-0.06285525438205444,7.334501424510829e-05,0.016866504175777047,0.02284935556923105,0.03447102823153374,0.037153820898197784,0.0001564462307378436,0.012361900755072975,-0.012850166690429507,0.018253736759501496,0.0034117550013207337,0.00040407398613836847,0.01426396404467519,0.01941800777488614,0.08832976611269495,-0.03908237974409746,0.0017039150203538606,0.009144968750438541,0.02525336716368717,0.09183180860762737,0.025181758661687606,8.823005008204791e-05,0.0026598471676214613,-0.04111236899248352,0.06185197899292053,0.04905240499575445,0.0016523273619232482,0.013271290476071196,-0.01004675851068703,0.03354966749067899,-0.06433112274943902,0.00011864618538630183,0.016698655657720222,-0.01392964289783768,0.04566731269607966,0.012610444028160568,0.00012365022268615817,0.010677034373369748,-0.02704994939793594,0.10910981241487641,0.013979317054089741,6.050852591128151e-05,0.004076784053800086,0.03238331152842302,0.115462451602694,-0.09298718388512028,0.0026582666401890305,0.017196765569901594,-0.005385051729021072,0.028084859313337866,-0.07057155347994272,9.538019313986695e-05,0.007245126044737656,0.059617372385488004,0.344569218226105,0.08779277491639015,0.00012547498071187348,0.013163896197904082,0.006333347736607532,0.034885488774863645,-0.004806136534476705,8.586916117460602e-05,0.001496129697041953,-0.016379813669842275,0.06228544641513771,0.00810956246904643,6.60951770844867e-05,0.004850551241623705,0.01132934693439078,0.02048365247618631,-0.027500032688740055,0.0002696664210252587,0.015075808305311375,-0.008248844321460325,0.031587123706005374,-0.014858701477697958,6.493777468648683e-05,0.0007264104480238307,-0.0035119561836974116,0.03930329449282811,-0.01760942161195278,2.3054272323875923e-05,0.010772200432061224,0.008502505580772634,0.02259167262071471,0.012001490263391982,0.0001315550440091599,0.00240275483475378,-0.017781012286359192,0.07663393786361906,0.02110057579641514,0.00036573229434298934,0.0006534413587768694,-0.029699919794685715,0.17373412152711523,0.010230625792796738,9.791335904563126e-05,0.026324540059353346,0.0016077145925637692 +2019-01-15,0.010770343185511993,0.06334424208038003,6.186015461154422e-05,0.00017980798808117074,0.001975064236117592,-0.024959336463480544,0.08600528409423841,0.007598434208787053,6.96335324935479e-05,0.011503370549965747,-0.01543443199275869,0.053088259459099923,0.008473835036608065,0.00013448980662041383,0.007224964047074912,-0.005124824625938569,0.005749649355907304,-0.04852979443644766,0.00030081916719378455,0.0030856675662105666,-0.0015502420523437288,0.003793336912942704,-3.266107047067543e-05,0.00021383356113582335,0.010796743304113723,0.02339470704961396,0.05808844274091299,0.05740991685959168,8.793760173747454e-05,0.00030453413341150143,-0.05546554643975296,0.24349835741697415,0.03445339331579298,6.683702570709282e-05,0.007386718375121637,-0.01802675436939782,0.17902789340972416,-0.0186543539804927,3.452991061978552e-05,0.006041612710787826,-0.028751348240806492,0.02402876739605358,0.08135800733548613,0.0009227233444635712,0.026367710152325648,0.03489105027033332,0.07740557496948546,0.07824664433830979,0.00015761722896085787,0.000799412773512745,0.04468888636216364,0.02957475891182014,0.14728102556544592,0.0007385887316227145,0.014026718098065268,0.0022637722501645573,0.031521455147312014,-0.012939172166366156,2.140174885686468e-05,0.003027154710287653,0.029645627077092524,0.09261314675058832,-0.17047797942247842,9.509091763395783e-05,0.031367145632443326,0.004687175203926072,0.030614735628195982,0.0009399164511090997,4.309654874104963e-05,0.006200147824586667,0.013970722891615085,0.010647905355715024,0.01307682809761269,0.0025590435032033397,0.005337221860672491,0.1196681548137523,0.758860218540362,0.13912737394318406,0.00012976838979865136,0.007957000184164854,0.012118891375373697,0.07935348665548883,0.003473280630564856,0.00023648582330811307,0.018457608201311367,-0.05341159651501363,0.3111014814606228,-0.0817974532053859,4.83609068848467e-05,0.004755006944744825,-0.024056942517244245,0.11512733507104214,0.00449722881553697,0.0003443886151512476,0.000567775545521293,-0.03156075997478959,0.41802833325180627,0.022226408866361923,3.133083468727626e-05,0.03747448777017523,-0.017290062462668617,0.16689863429977858,0.0690357336580833,3.4611903830583386e-05,0.005396159438064774,-0.0002131274253490086,0.0006193134672976358,-0.017202922197044584,0.00011085405148190939,0.01065245017572472,-0.1087712045777811,0.8045014254044366,0.15035967611070197,3.123054019526949e-05,0.0022529562622971913,0.0026576574744264564,0.007988064536463607,-0.09528089459814588,7.376236361149449e-05,0.0004281540138034387,0.002684938548768249,0.009421983844712364,-0.004391781813006819,0.00013029885238174658,0.008848313293128879,-0.022773480809314826,0.019121270254611078,0.009968039147859833,0.0006807509201244337,0.002486360511272382,0.03906526711381609,0.1446778413604511,0.05931003891898433,0.00011365139922913636,0.0047324397660976295,-0.08209363952050996,0.23121060522517659,0.07945571466412116,0.0022788772568142044,0.04532576725745241,-0.029945583320439475,0.26702615685012576,0.009370258562641082,2.8837736372980467e-05,0.014470476868126199,0.04905806925100834,0.13789704052024343,0.02000397991704067,0.0011631260326613554,0.0006821559250771443,0.026163237082972572,0.17387969989074015,0.054405971205548326,0.00010020011915057514,0.008291873835968099,-0.02525967266690473,0.035751683045998496,0.015484177757011915,0.0001667541354819116,0.006776641054386529,0.015065913452447765,0.01883440448527128,0.0029776964359029077,0.000459142494113739,0.0029650291185929984,-0.042608545359364446,0.17269818659331623,0.08511634525130526,0.0019123142956456887,0.012937825820153265,-0.012757942640708269,0.04811474465218598,-0.007510232907350593,8.507321202580656e-05,0.003576353247470152,-0.04434818321529522,0.05802009334605783,0.0003279152220331769,0.0019000918785347027,0.010763364391774699,0.0013623020434748135,0.00372274423708352,0.0013222595292137177,0.00014498605883831952,0.004561175251719629,-0.03702936332416544,0.08806394191076936,0.05143324830384265,0.0001704545111962605,0.0279982726474952,-0.05538155974312258,0.24340446843678717,0.048923808862519215,5.5532926550719636e-05,0.00977871730631035,-0.06201902498342723,0.19244245124299297,0.16524357415627625,0.0030545139447007547,0.013541668102351946,-0.004222584483877394,0.02217354420219792,-0.00045891944323169057,9.472918530496414e-05,0.003988007518559129,0.007067101354520046,0.040147600252774224,-0.007451847003567955,0.0001276563765383411,0.013429371047025638,-0.009170097100005568,0.053488140920822075,0.010783489145734435,8.108959467662413e-05,0.011610468447693893,-0.00527766785359067,0.024557225125579656,-7.684766427143247e-05,5.4014474844691014e-05,0.0016757574146707857,0.015194227500298384,0.028777457864283467,-0.04472696853300625,0.0002574278870817674,0.0012744697047796729,-0.004999984613806987,0.02522900576548305,-0.0006509438401934912,4.92813853491087e-05,0.001441335381955238,-0.006458201733168836,0.07710416513718404,-0.052539192957305275,2.161051184142851e-05,0.0007204731496958029,-0.009122557082751274,0.027484215645998185,0.0021300276454427093,0.00011602249665075025,0.0015723671522689662,-0.017350585199955974,0.06918718925047979,0.035173215904044285,0.00039529053044475726,0.0023498032850003334,0.040044972129288786,0.16742991953598824,-4.891713501076628e-05,0.00013698932420086674,0.009100865877845133,-0.006744578343660726 +2019-01-16,-0.03598151255666497,0.2735802864516848,0.09910364394081661,0.00013908528982403326,0.006346046741674216,-0.028179402326097006,0.09482084038419551,0.00037938117715929947,7.130804077494884e-05,0.015913479644499996,0.023372627047824123,0.06424644614505133,0.007194939233397818,0.00016828895917481656,0.011011538830209089,-0.013838638829387778,0.013465238193775885,0.006535277133204286,0.0003468543863340545,0.00999397286412718,-0.0011706392293908121,0.0023507202038087747,-0.017659409812614404,0.0002605672959135845,0.010328878764189498,-0.007362191851308067,0.01977835276393583,-0.11837248625793599,8.127626762904767e-05,0.007788224164571423,0.02631927113245769,0.07899507037933891,0.01145214898315624,9.776056950829278e-05,0.04923142161151986,0.048479297830800655,0.39562623232030136,0.05578881851478741,4.202133593329267e-05,0.00018556885627870018,-0.013362490325737372,0.011880279337101276,-0.018841708016438,0.000867372279283785,0.007453047726823798,-0.024889033974298282,0.05882499901110024,0.005738117745746946,0.00014794762518460734,0.001697785983535048,-0.01068215136456086,0.007752073354053105,-0.0012163554147655905,0.0006735428220866232,0.007952209913547618,0.016231767662932425,0.19998204257792526,0.07342089139088634,2.4187868968067957e-05,0.0036501404947999966,0.02893771498202261,0.07629271326802994,-0.017692369580549615,0.00011267620526243308,0.01383724517347914,0.018430687269532734,0.10134293520816158,0.03720585055458818,5.1192916196978074e-05,0.00014226970149991598,-0.014137906383537433,0.011960318203975508,0.00020123705738005497,0.002305501132853397,0.005998958806339119,0.0012430905052996126,0.008153938696999137,-0.009032642651007644,0.00012545483832546986,0.012409030769275823,-0.03258430078327759,0.15959655371949932,0.007831214856593525,0.0003161499583018799,0.02093271297725217,-0.003999925575354414,0.02233555858069802,-0.015078978870815553,5.044475866620304e-05,0.0021579527160865983,0.03573737239369899,0.1953438252486919,0.03689796710384805,0.0003015155655410359,0.017070303048655228,0.000710908066050799,0.009267915263301944,-0.005198812106031217,3.18318308751948e-05,0.007794253570424873,-0.03454910230301801,0.32742205591014373,0.2718724631246089,3.5254174141008035e-05,0.00847863634893747,0.05164599847396774,0.13176138547215768,0.05876021922644844,0.00012626159785926865,0.005882234163261962,0.03144367212052014,0.21649630579018975,-0.03238079258130853,3.354865742888899e-05,0.0016287757579689674,0.004309464435746445,0.013074173438429796,-0.0022192052596417167,7.307796438528832e-05,0.000807176013846445,0.002773228098718521,0.012367539766113567,0.000704870434330885,0.00010252997985231474,0.005001265164546054,0.04579499085140575,0.0421993324682845,0.04237554005542249,0.0006202802551583169,0.0027277734202923844,-0.0009056415552309246,0.0029209740792569606,-0.00036020455855894165,0.0001305012428760786,0.004428897647199214,0.05252527388817023,0.17561778670419956,0.02844777703051803,0.0019196365082548722,0.00908532643957123,0.021652495652364746,0.22908494155608186,-0.06396102691838636,2.430488736108939e-05,0.011085908062545077,-0.016115030471000172,0.04902900468376464,-0.09036524099221697,0.001074606155374954,0.010075923330792137,0.009388599159930318,0.07413924584733048,0.006281341111712466,8.432925755340418e-05,0.013408747927428435,0.009463157996959116,0.01503832622970501,0.004612853410049137,0.00014851898604132996,0.016197549143631945,-0.004181611418252795,0.006268739952612773,-8.656360564186968e-05,0.0003828841006029898,0.0010878933116019699,0.028026808524404714,0.12179853058737126,0.011772151729518204,0.0017835362420631112,0.00547368866484321,-0.01657941399389518,0.052961269348088875,-0.10279829775933119,0.00010043871807864742,0.024123346187760117,-0.012767671105481201,0.013620080162524889,0.0010501007760274936,0.0023302859403058263,0.0008435133295335673,0.03522808874369229,0.11145526240259467,0.04735081011550542,0.00012522889242945077,0.013565512938920865,0.050635442214778115,0.13662199767283031,0.11443341790282714,0.00015024303637597414,0.01812055885224301,0.04626655570305352,0.17735640358125485,0.022043842907874433,6.366990783913553e-05,0.001739633218316488,-0.007977775677859929,0.0238789334730476,0.006673693867245587,0.00316653981337306,0.011064291260278743,0.007088223027821472,0.035033582655333705,-0.00012436454222477833,0.00010064527541421744,0.004291545035620376,0.018827111704625792,0.12597774872123244,-0.0026819044967625947,0.0001083803728434224,0.0027023242882227593,-0.028811053350187583,0.14402375647740445,-0.010584777637726021,9.461798635622161e-05,0.005445056365677757,0.05242277900314604,0.2449102203020673,0.06469267970175824,5.3797305701400324e-05,0.031283685329799964,-0.02534056816789079,0.04827150626464837,-0.010037244908668183,0.0002559498570962834,0.04428647285449568,-0.014451260357323121,0.056637782713690445,0.006622156131138995,6.344740414923073e-05,0.0025074955734770586,-0.023306848906070352,0.24285619070176626,-0.000774594932774435,2.4760856745486174e-05,0.004212072385785464,-0.015573766286323815,0.04129988380861968,0.008844473900063068,0.00013181164733271964,0.0030233566467089395,0.013127777554189217,0.04911392791398838,-0.07041314490879126,0.0004213223632986318,0.003231261070050921,0.010856086329719199,0.05619886082655124,-0.0031496825814357108,0.00011064137692828024,0.0014867242870096494,0.005446094749386103 +2019-01-17,0.015059291204723243,0.10734083705935607,-0.004224394338056285,0.00014836318146997223,0.02523395631948425,0.029601161272530555,0.1265867689453858,-0.0006044502191625268,5.610879744185176e-05,0.011146233665712282,0.029617307242283383,0.09659407165430685,0.016456284901709983,0.00014183790312333387,0.00611467552332544,0.004466425062756653,0.0048821930984418345,-0.030504713506345642,0.00030875425804787957,0.021197426536761366,0.030283495356215558,0.0900800029502689,0.08905702275931762,0.00017590386462992415,0.004366159093813862,0.002710742523532138,0.006363015000314607,-0.03255852700055133,9.30190846178102e-05,0.007195648215331766,-0.014882388039299994,0.055142727703678784,-0.022813938065919737,7.919070950256022e-05,0.016166854856629012,-0.006638862533081013,0.04734931615801553,0.000653968513557946,4.8081563278513306e-05,0.007710413277104461,-0.005967588993480667,0.005850244603778097,-0.0014968878411850625,0.0007866284802920492,0.002205026126032266,-0.044962507448287795,0.1257872690227235,0.04747798773340487,0.0001249901303381533,0.018570159082653394,0.004696660012353004,0.003506273865490602,-0.011767528182909624,0.0006547381496100677,0.013164989664774095,-0.001279782819426523,0.019306625486724432,-0.10513047039898837,1.975389281374507e-05,0.004981214242791296,0.003578452296679871,0.009464470683300225,-0.06746778828162057,0.00011231814951575993,0.003902097697519768,0.03425590423364909,0.18873034744858203,0.13017398914272454,5.1092307195221834e-05,0.004105997413776477,0.00923035051202863,0.009505748161868022,-0.00025845983719737403,0.0018938904822652692,0.008982285073870779,0.04835511357664394,0.3113328011627838,0.0036161434716096325,0.00012781141304719478,0.05362829210039485,-0.027903980013824565,0.15070573193271988,-0.12527393245403393,0.00028671117037540225,0.007255894518197091,0.007936303286181272,0.05233089082502563,0.003659057437799291,4.271900063344074e-05,0.015168514650988991,0.024719885633548256,0.13443908267063587,-0.0012232580761621758,0.00030304541955609727,0.005290737540684654,0.004800123683261422,0.06610778560626418,0.0014788019472353818,3.0132145034576944e-05,0.0410933783505327,0.020087236724796988,0.21369592443853297,0.07796393593133912,3.1405496759374367e-05,0.000867162340466817,0.028043005217490292,0.08577949085583648,-0.007352302801302179,0.00010530860127468545,0.004245342590649089,0.0006513208734578151,0.004732883610094494,-0.011375839076726563,3.178787877729615e-05,0.03947373218387072,-0.013005041971898158,0.03734007980705029,0.036340227865224714,7.721717318052956e-05,0.00879332236019438,0.0117459889640522,0.04564501157996004,0.02165160005737703,0.00011766433982709746,0.004324256943798973,-0.011622353888588023,0.0132017391280633,-0.0441309672306283,0.0005031975406430756,0.002781606212592812,-0.0031362578724094627,0.013795318305068084,-0.0067330209894294075,9.568988837073492e-05,0.008055462336700807,-0.007812971073134419,0.0290495411811475,-0.059792637519488566,0.0017262198793494084,0.007826395460682202,0.04324744248298966,0.4137129324639275,0.07150670535981662,2.688088284599058e-05,0.002676427588911779,-0.010599055985132139,0.026386378272533345,0.002489388215753077,0.0013132840561422784,0.015223961029886912,-0.025156586113724427,0.16090779678053446,0.0304342317320415,0.00010411187298261592,0.0077468625285766445,-0.015309591364166868,0.023804064779235683,0.013176220544519479,0.00015179513813209545,0.02466152428505658,0.01993944283099761,0.0275901412348798,0.015465563856374116,0.00041482317269181786,0.01295638277179805,-0.01009277617894071,0.036940127504451394,0.0026566157460580085,0.0021176910117224625,0.009369818389664171,0.02944106724864636,0.12578278046857233,0.05096026759463122,7.509702437362907e-05,0.0046415014091684,-0.00037066946015243873,0.0004935713983822477,-0.1132417408681986,0.0018668697223418402,0.0006960754549465281,-0.031364516885778335,0.08869839316269172,0.017249447690115022,0.00014010024235743608,0.00286613685610232,-0.01465664085862066,0.038194846180869095,0.0034384950983842124,0.00015555717835734367,0.003383161234511659,0.006997812295981809,0.02954325091366638,-0.006189513562541344,5.7811991633421365e-05,0.021130285142803833,-0.004415362890396208,0.015629491619904592,0.000226761348283634,0.0026775624521586956,0.01718297290967416,0.01257419278434697,0.05932008444352497,-0.04226857514845338,0.00010544328430235575,0.014144522265690272,0.009765577259341646,0.06247756768522803,-0.007344555750701315,0.00011335341038284982,0.000180729280907607,-0.009501761069444975,0.059853028828936256,-0.027472852580750027,7.508733172708328e-05,0.001569922494980113,0.05228259295159885,0.31606485023362296,0.05512672472035772,4.157462233587028e-05,0.02420308763585482,-0.007430477712159428,0.014540063821642546,9.11884162221399e-05,0.00024916085765144027,0.003937392702921271,-0.030277068216554487,0.14275509571142922,0.019349441244935296,5.273956892273607e-05,0.012776747127035158,0.02332571874025998,0.2700389215429906,0.02408616617822455,2.2286401754093216e-05,0.005885683705692299,-0.03481316118419914,0.09299098497121584,0.0974030076802148,0.0001308614046305352,0.0063151602688089874,-0.04332086519234006,0.1473784947905677,0.199727468032859,0.00046333059189191,0.005343731579043722,0.04239141494175462,0.19735718906308866,0.0038553277268941755,0.000123025958627996,0.04002569639418741,0.0038912443957234283 +2019-01-18,-0.012189951510028078,0.07994716995541402,0.013441959101997598,0.00016124470690336132,0.012999980700708447,-0.04350385760234616,0.14936845408399238,0.031406471789120094,6.988426615777018e-05,0.01877113956030354,-0.002449253804019726,0.007362129260304393,-0.004181291597151603,0.00015389607989852849,0.0031084021573529793,-0.00028184600807452974,0.00030938674932854044,-0.006305195983219978,0.00030745250435303015,0.015309492220947515,-0.03177417281915134,0.07534841781303998,0.06408066021981902,0.00022064692954945487,0.0022959458319959866,-0.006837985071735791,0.01694228786420598,-0.006576780532940549,8.812575112437182e-05,0.0072079524124531525,-0.008484515628037119,0.032736143488082195,0.000805457058516929,7.604827957294779e-05,0.015778879185840856,0.045606569267684416,0.3296894112831224,0.06915004191357346,4.743741546808473e-05,0.012580995508298314,0.0015528539956534766,0.001253909510958643,-0.0032610461722470748,0.0009550128473171425,0.009168085273700033,-0.021424042798323495,0.05432676646597323,-0.05306880237952464,0.00013789529780117846,0.010826787722272553,0.03208233902266657,0.020835688526842405,0.050763882626260484,0.0007526317332208312,0.012586174228858082,-0.010038333432660442,0.14869556966684538,-0.02075378942714973,2.0118072896267194e-05,0.0071446245142794415,0.010080220178951119,0.03256297514972664,-0.08582014475105941,9.19595798631718e-05,0.0011566968487263295,-0.0043229224856484935,0.022156939287343153,0.0036967910116030285,5.4919869793046995e-05,0.006442324092126533,-0.030413038308084818,0.025433307850404676,0.03400173544090946,0.0023322759474207013,0.007319510131272956,0.00105843480036288,0.008930733707947162,-0.05160682552172577,9.752794613541307e-05,0.00018386155117856048,0.027223931255008264,0.12680591730440793,-0.03130444816797324,0.00033244480540139693,0.01889606544980746,0.021821402781477598,0.157513330378165,0.015024678774119,3.902350800098952e-05,0.035216794789171446,0.0015585578519236173,0.008730068088805647,-0.01002005175534193,0.00029423349057303307,0.010207915265928569,0.009213839000363358,0.12051506532552256,0.0004764606051969507,3.172703663103515e-05,0.032043017560540704,0.03400826355146085,0.2920181796228138,0.19115302508461285,3.890955620293034e-05,0.0019209985485350181,0.0463423735737346,0.1229045831654973,0.03803073007526927,0.00012145990899974688,0.001033947160670566,0.0051100226590397955,0.04136355221540361,-0.11023104527849382,2.8536281072574208e-05,0.0013923285226657316,-0.004093427590883805,0.011589903605843981,-0.042232567715536955,7.830413039837168e-05,0.0018415416184764742,0.006128770751906942,0.026570427449843868,-0.03123358424999081,0.00010546866072354233,0.0011962485141134168,0.05807591572611598,0.06050878599701734,0.06571321754555892,0.0005485966965270213,0.013404870813312337,-0.004596735613537095,0.01976045052237105,-0.12321342718830895,9.791262470261393e-05,0.005141152897061834,-0.027354618321731018,0.10168528884568445,0.003132443335752046,0.0017265998845343463,0.011135349255459451,0.014639434734945677,0.14950303380587526,0.003301748617074638,2.518004473978816e-05,0.01467154290791564,0.033321688625820384,0.09980122398117994,0.009817101702272811,0.0010915971773231862,0.03233476427090458,-0.0377557451529851,0.25919889287268955,0.03390762058901872,9.70008515913343e-05,0.03740866119309711,0.0012611505517073698,0.001544379837835296,-0.05911509629632109,0.0001927339389600682,0.0007517655833003466,0.0007355432816811878,0.001121174444443604,-0.010313386281657105,0.0003765641372028327,0.00820045373389721,-0.03195387534031597,0.10643745696517214,0.0234125299023387,0.0023269089391979437,0.04060726624231453,0.037643276453368325,0.12907543012403278,0.08033328097817496,9.356947799848518e-05,0.012565743883972995,0.005273729818445614,0.007736991129608461,-0.006386022671726603,0.0016944274142267032,0.0008957212113422729,0.0052744029472644996,0.02031043890699714,-0.11081288163675382,0.00010288925754607886,0.011064862626532215,-0.020959254687092727,0.060483444699061716,-0.02096793507524836,0.0001404752111838538,0.011219269044936081,-0.00597061057199681,0.026398519669330888,0.0003286504016693216,5.5201781879375246e-05,0.010803081618497945,-0.02575642339175493,0.08645477543227377,0.033784023979513765,0.002823674465030737,0.0156634103213104,0.0034996467588354853,0.016824786338888054,-0.09259537185724566,0.00010347018449692034,0.0012881386924478095,-0.022797380890687644,0.1378225416156088,-0.09183054538425625,0.00011995696939238928,0.0010424793667812864,0.0010574303875369934,0.006649200086535941,-0.02447489897319512,7.521961106566237e-05,0.009285910705376333,-0.02024095629177436,0.1186733006493403,-0.022391313360862797,4.286722795799824e-05,0.04663648293440775,0.009908312773333643,0.020000630812244867,0.009626169391238353,0.00024153796785914987,0.027610050289909656,0.022058598317199696,0.10278825276906207,0.00984488987577914,5.33640527011577e-05,0.005165642446605951,-0.01848032618954676,0.19596452672935752,0.007869378018519923,2.4331195876842078e-05,0.019374046685183,-0.006551858649805286,0.019909466087867454,-0.006799039034474509,0.0001150307284912661,0.0020241047686076524,0.009608250680032447,0.036358882283541456,0.0035042755500921726,0.0004165448527187554,0.0011008682088347853,-0.02414676404863251,0.15601783110904954,-0.032575568223090726,8.864546003076346e-05,0.0016302239902694514,0.00039481197580724725 +2019-01-21,0.026882048621373906,0.14360346178956765,0.018601944302177317,0.00019796300462682039,0.0111376203346998,0.03071159618424637,0.1115480273400516,-0.03446828001523449,6.606189401583114e-05,0.017047046133952977,-0.004035210548192917,0.013612797196055189,0.003253708313786955,0.00013712480728466725,0.0060484772455721165,0.021178034814347324,0.01960556402382284,0.022815859130189773,0.00036456432963308304,0.011112162939548042,0.0497611671501064,0.10003563027805368,0.16260047680781525,0.0002602756967406218,0.014209542806819632,0.009098219424231946,0.02224451978980855,0.009001769095565023,8.930589181273655e-05,0.01286784303904568,-0.03232884387601996,0.11694372835720226,0.015906032792677462,8.111535876836315e-05,0.01752875871204454,-0.004124902558885973,0.050579559729211854,-0.012080000703158263,2.7966444985772818e-05,0.00011139984505403302,0.030404515204508886,0.02449981224570211,0.04821062940115145,0.0009570180160022139,0.0017345813234691367,-0.009248962985739986,0.020199741920748842,-0.05018898769919821,0.00016010655281625764,0.0017004058873435152,-0.012197164600888828,0.007530345510118531,0.007065213041806966,0.0007917140275166184,0.005664324055945369,0.007111630858957311,0.10111831688532934,-0.039996849762855044,2.0958594879895203e-05,0.0016378645234645481,0.01411819503757745,0.03548667510747975,-0.04840429292834584,0.00011818569260979931,0.0019433620007657706,-0.005037795268825873,0.029102414852010754,-0.04982312258501701,4.872740745102198e-05,0.0029369726815724004,0.022922431558245342,0.020364735333207578,-0.004353211860710252,0.0021953556529300455,0.0002384408094304564,0.011896515768184807,0.07407324096220336,-0.021028307019835556,0.0001321631999760667,0.011207583221403264,0.014189786806883053,0.07091199392068077,-0.0006625785759164634,0.00030985920713093166,0.031997049326646945,-0.01468266562453015,0.08927517933092818,0.0018060385443583544,4.6327101953045634e-05,0.013112267261586095,0.00590641048012297,0.040069836418722,-0.01200690635492541,0.00024293655241384353,0.00325487215909712,0.00014977468531750701,0.002204886097575776,-0.03246464443312518,2.818918293060809e-05,0.0039377974745651865,0.011800917325535879,0.12992502753886803,-0.001693997033050567,3.0346224007090482e-05,0.011579441891010168,-0.04070644409828554,0.09537281579837598,0.06263862814552984,0.00013748689917536297,0.0184092860544633,0.009741454210489126,0.06183928415013323,-0.00444978941027374,3.6387457902925784e-05,0.01092302440366023,-0.004451945697357122,0.013746663183454022,-0.00530954063794394,7.180091005676997e-05,0.0002853655258392594,0.013964734672696473,0.0646274104839679,0.025149606795889887,9.880172552884161e-05,0.004683449436729805,0.02398281774592188,0.024331974190755515,-0.14894422160377882,0.0005633761030009087,0.006104251749102925,-0.022282109336068404,0.09050726569435522,0.0415707753989547,0.00010362364515662124,0.003301686132362798,0.012292335157743875,0.035791986908620614,-0.016770765618168443,0.002204285073650134,0.054621598464887414,0.015961858898286687,0.15352062195768296,-0.013471431345801959,2.673615445357436e-05,0.012223681975759612,0.014603947575301228,0.04057288145310687,0.0013018432868637027,0.0011768081921552471,0.016155930894445857,0.030009985589288402,0.22822820568027563,0.030362064614031927,8.756329874601613e-05,0.010417182630837608,0.03468734839392787,0.047124950636014205,0.0823457748723862,0.0001737263040460216,0.0077078744747380865,0.0150213142268065,0.019304667286198358,-0.009074647184041064,0.0004466316791412822,0.02305878074199433,-0.048077910999176764,0.20109465776507288,0.06382708485903735,0.0018530852403176052,0.0025331020051006397,0.03980326174249648,0.1421870135818306,0.057200301986686845,8.981504674728076e-05,0.01351897064932659,0.08314092752961669,0.09857379479812106,0.07627426067107373,0.0020966724135912614,0.008047311605268852,0.04026735033303259,0.12226761736984983,0.01909343478065425,0.00013048411384050052,0.0009621258964071465,0.006928563588897968,0.020996705866303284,-0.003047313493538174,0.0001337680569750641,0.0005716043673323496,0.012203774923777142,0.05103883623789102,-0.009979682845641123,5.8358934093748415e-05,0.012151752770901874,0.014045029160507972,0.039448363869075034,0.0010114775197747005,0.0033745176789623265,0.0003530823220952536,0.03831108955364649,0.17317863829238472,0.12058307384619912,0.00011004511119660671,0.004773768877737911,-0.011539402958468866,0.07833920406917923,0.0164149242697882,0.00010682304880864538,0.008044471119107286,-0.011369188353747246,0.06522215319266916,-0.002899085948782692,8.244855111167682e-05,0.002335391383271546,-0.020820759881700256,0.08768520559981198,0.005474338282134926,5.967846525419163e-05,0.012119584013446745,-0.05076351832038668,0.1102886227775251,0.023710823684620862,0.00022441423167888992,0.031253147502425825,-0.005886217457337853,0.025670469244646995,-0.0117248347036506,5.701864216213455e-05,0.0022344919668397896,0.007456329883651306,0.07929974740469652,-0.017904300974511938,2.4259653601952847e-05,0.005573367715681976,0.010679583174620765,0.03357715825503466,-0.06841482041269333,0.00011117812089097757,0.010255616567376138,0.03178163767451224,0.14764295946145348,0.03149784130884875,0.0003393059701343896,0.010886119304260932,0.006334969368664842,0.03263029468807563,-0.030652627300178214,0.00011119757578537065,0.016772289145912844,0.007777564459818753 +2019-01-22,-0.055174864734328144,0.3274335340841283,0.13811220078116843,0.00017819877140044164,0.009239743259200996,-0.004719832806927481,0.014504754132842195,-0.004502235756976674,7.807765653209458e-05,0.025938466517674265,0.04631459021958626,0.18623680255692265,0.05060759286974164,0.00011504017232869897,0.00995551323634016,-0.016131105763935914,0.01941629854414958,0.026851057839310466,0.0002803919583576183,0.0035541275124976145,-0.0006082991548405056,0.001415178413822608,-0.03130773758020374,0.00022490742321810837,0.007980053302917603,-0.006762632415009845,0.019983866263382007,0.004133203033415468,7.388954751506026e-05,0.004242145875964287,-0.03466368941851977,0.14689751114368327,0.002380219157255012,6.923890681333595e-05,0.011415166429288177,-0.001292829001056801,0.00902609172276191,-0.011216564031785956,4.911791890488912e-05,0.004284736868544205,0.011439294257655089,0.008607254297823315,-0.005790680883328308,0.001024895022849518,0.00023769332116570663,-0.01994428406881604,0.04447613684042764,-0.02897928454267885,0.00015680260732109868,0.001312473203913686,0.0028817318221487317,0.001799074002138434,-0.010779260950505274,0.0007829407415202134,0.0038678806186520837,-0.003403127479595064,0.04828880834789379,-0.026214281363441796,2.1001703318730093e-05,0.006307941675091851,0.01959206343371262,0.05731998782743601,-0.06326166640045021,0.00010153718679596329,0.006556211005251797,-0.002542222826931171,0.013609395996434077,-0.0034746383218473603,5.258193709358345e-05,0.007325002983472218,0.001206989559361629,0.000934677452035081,-0.04215358073537802,0.002518632017880727,0.026124287170641275,-0.016193374989237397,0.08500108327447116,-0.07473671178499733,0.00015677074428303953,0.02002145636943487,0.04346794860310256,0.2184541269483131,-0.01787299697379641,0.00030811803758152054,0.018422891244385207,0.05268442632412835,0.29559540905203696,0.04988997136318138,5.02048329949562e-05,0.018755668534659993,0.003020027545812338,0.017765458648939095,-0.002089121060940574,0.0002801697789963757,0.0034822154434585107,0.09382447015259299,1.2282727119381356,0.022582723273481847,3.1699436958429606e-05,0.007757412302627916,-0.011004949924937455,0.1297903212118538,-0.0029787269846022067,2.8328753965075347e-05,0.00025459115750364617,0.04055664285036428,0.12159690013098717,0.024796980847230907,0.0001074390724999983,0.02726369212916557,0.004137494231820701,0.03542819439087251,-0.07138778571300705,2.6976199110599265e-05,0.025046518491344302,-0.014832445121121328,0.04303600772013967,0.030261070849897095,7.64113998005668e-05,0.001430305692320436,0.0138751144535238,0.047803869331649734,0.029472718855490115,0.0001327156441252452,0.01223637105286634,-0.016470115493182128,0.014618079216556775,-0.01027016189991058,0.0006439941094532792,0.004379420853583052,0.0014365123405778875,0.004845072415780523,-0.039718777050114916,0.00012479440012486628,0.014649993274157636,0.026101996468771028,0.0830421187042763,0.0042786854152788,0.0020174114445660313,0.006237370124490339,-0.039543432606110276,0.38564264355511535,0.0581524206739241,2.6367655142257356e-05,0.015227910210947443,-0.028765239563728364,0.10172440360414084,0.007993079908728364,0.0009245153211726767,0.012077866640755844,0.024223414684676148,0.16464805596765317,0.015581695971736875,9.797254731147719e-05,0.028041646597867165,0.022015885110193673,0.032701257606780124,0.010803269644559656,0.00015889750633463011,0.010567541070230214,-0.01198831443425714,0.014448885117125223,-0.023062155099795985,0.00047624200841838067,0.008500680331319543,0.04537603809793728,0.17487089699674557,0.06529485933466844,0.002011219065161455,0.0077641887836295345,-0.0011311228282186129,0.004094999665321546,-0.08629630965622676,8.862296323119727e-05,0.02606952813132106,-0.008114743172480003,0.012356156945062641,0.004172846426987382,0.0016325577578359166,0.029174769596108964,-0.007584601727283847,0.024197278141034756,-0.025904479042705274,0.0001241887627888683,0.014262774069280084,-0.03598223159076059,0.097619210407755,0.003190528661773349,0.00014942153032979655,0.023090743810131615,-0.010101695076747238,0.041312119857751045,-0.023500244481290747,5.968025903575733e-05,0.013154137282561294,-0.031341237891031076,0.0870511179474846,0.020300355552364105,0.0034123993531061944,0.0007641234498547245,-0.023840511600493615,0.12079102894795558,0.0756673776932678,9.817964574779062e-05,0.008740820403483143,-0.0005151900557831743,0.0030201290737434648,-0.026256683876341735,0.00012370941463145854,0.01059039727569931,-0.011383761697566332,0.0599848399377718,0.007551061796818853,8.976209707074126e-05,0.0015041652652334177,-0.031652847593255394,0.15005520258605698,-0.01832202465984136,5.3016264468854655e-05,0.008458580858364519,-0.010387803678482504,0.021156471410231442,-0.006325461091693617,0.00023939214264157637,0.022103140257612473,-0.0013012572444982859,0.005549135764311081,-0.027792701706370673,5.831122778912986e-05,0.016488661723110587,0.024468673722297555,0.30690772825971024,-0.0147232479384766,2.0569981011572702e-05,0.0007246534565949396,-0.0005385803516965845,0.0017261879359153054,-0.012412602777661543,0.00010906148154587488,0.008948326623610236,0.0028690828399135795,0.013278405087553529,-0.054886508355306535,0.00034058470851369347,0.0035944304991915076,0.017498926718819793,0.08722264104630803,-0.005555655025468785,0.00011490898161830394,0.007131761441268081,0.0002698711670401693 +2019-01-23,-0.017930445431317794,0.1103158835237998,0.0005124111513864929,0.0001718856476289703,0.011313971310567269,-0.0027211748200514354,0.008298467688598082,-0.026658429346567102,7.868085359870898e-05,0.0007210577984056922,-0.0011909327498877055,0.003712379137241058,0.0018607642775812427,0.0001483993912337879,0.009828969113145845,0.035905153011053056,0.030677311735578215,0.014757364304615642,0.00039500931629254867,0.0020422952643247448,0.01433327796159807,0.029032258284759787,0.000362432709836576,0.0002583226436239473,0.017452241251073492,-0.005892301061247056,0.015440338755167277,-0.05658841174915394,8.332490823358989e-05,0.005314614529769202,0.020155631039584024,0.07155417505293482,-0.10236653692431301,8.265160202073168e-05,0.005990460565647754,0.037185176554468874,0.293236872537716,0.04366033439775937,4.348604223947119e-05,0.007220819241190687,-0.01937996525376448,0.01472323542112663,0.03248607663355117,0.0010150665682393915,0.005972509757052282,-0.02633099772968741,0.0634927249317484,-0.008221727723632723,0.00014501243189404462,0.0062251810310841385,-1.7370242980578967e-05,1.2116915394349035e-05,0.0005265475527247985,0.0007007097755203033,0.012402391386766387,0.007219729990098389,0.08816825614078888,0.013964829923703194,2.4402341135095826e-05,0.007951909805586417,0.0024735392432275525,0.007918644917136541,0.0013930407845688909,9.279380296188472e-05,0.013574184028855692,0.0049726000171945095,0.02849182458631359,-0.0013242669719702284,4.912754742646425e-05,0.011976776210021346,0.006733886782173068,0.006237874811312609,-0.07922682328782041,0.0021054848859982087,0.009815476986127288,-0.06976826255259647,0.5201616549938732,0.08764072961130398,0.0001103752452697572,0.02185639425764346,-0.0036642683472986994,0.0195782451479682,-0.011870264688364895,0.0002898155880693073,0.013891243237184717,-0.017321988746184784,0.11805781407104325,0.004268174345839617,4.1329863451469324e-05,0.023522742441681694,0.034801095439200506,0.18673991419169628,-0.0016518486571218357,0.00030714437566127024,0.006516114888608742,-0.06321263411713492,0.7704705250661622,0.06288004786957883,3.404694038004648e-05,0.0019225369551123708,-0.0032594687117506365,0.035548338167512614,-0.0002918884306547807,3.063438899238551e-05,0.0005170514925776147,0.019413347683955515,0.060266720367428264,-0.029319641170025793,0.0001037637431580962,0.0039615661327581,-0.04318571327122653,0.2979772260849633,0.03520135348552804,3.347722106325823e-05,0.0046362481916343455,0.007806793808131767,0.026377610897942508,0.0034094208355175877,6.56167375721504e-05,0.001208986273594404,7.557253396005156e-05,0.0003331168591469688,-0.00015722356984216882,0.0001037327680643041,0.009556808519978968,0.042179071767042,0.04281697493153601,0.047311438898399366,0.0005630624928606141,0.033695726117693496,-0.024612716475055522,0.08702371289369842,0.03962106633199421,0.00011904412009275453,0.010694886970051252,0.007248954076393226,0.023803986779908394,-0.0729797287200406,0.001954541169862755,0.006276150614957714,-0.0556712829362118,0.4843449852342158,0.0861767350074782,2.9556881976890657e-05,0.0017247750635749504,-0.049622459366852445,0.16809152483551887,-0.00479673511418755,0.00096516982937991,0.00625436002675021,-0.029582141621533664,0.2607379241119481,0.026249668744306766,7.555288482353809e-05,0.01130246810407466,-0.013005504189134492,0.021413208311456693,0.013523913744297712,0.00014334773583021078,0.009931403822441148,0.03757393682199512,0.05559216649991058,0.022661129162646055,0.0003879511246583617,0.0004929790195827715,-0.02180809113254796,0.1004646626162213,0.01286419804801038,0.0016824984173853,0.004162643675761411,-0.0011283748100617912,0.004832035833984891,0.00041865386800718984,7.492273221532538e-05,0.01849155031719947,-0.00965114484987159,0.014818132522408031,-0.018545548214071252,0.001619058537759563,0.03478851260465071,-0.03657071748211636,0.11456485352869948,0.030096025978262553,0.0001264730852723882,0.01153372649551123,0.015377580375653652,0.04173782725591913,0.004308772409606112,0.0001493545798601917,0.0005893717386825164,0.007675532932605734,0.030647653283128826,-0.04357154632917971,6.112589606057482e-05,0.007027624605100967,-0.0535042481466107,0.15538771067544693,0.09058016800281456,0.003263545374846758,0.025565556341050566,0.02032800363318144,0.09929415749508647,0.017938425234478934,0.00010183840885044026,0.002804377895703558,-0.01944612672026738,0.10625997251681242,0.019464382870515353,0.00013271627896446395,0.001582643230514805,-0.03324578639864214,0.18146991402299312,0.06211407185889076,8.66524159020695e-05,0.005940486442186905,0.009887147900302314,0.04974429898267194,-0.03202420647153872,4.9954556848542845e-05,0.02344574481519901,0.007922104674821734,0.014243044298153512,-0.08805625287409888,0.0002711859252035774,0.0014624647493708402,0.010102584143873328,0.04374521935993835,-0.018163724378870292,5.7427016444532345e-05,0.01622501660415073,0.014907251809975874,0.16371010669448885,0.0032147264243297183,2.3493806173531354e-05,0.0015855923078893393,0.002505832399359565,0.006508428955052408,-0.022053329458822483,0.00013458133009316983,0.0016135229343118838,0.010772566181107812,0.040414105500963894,0.0023570905603576783,0.0004201594838657987,0.00445161239299624,0.04093230051700864,0.211921384977773,0.013568496751357639,0.00011062751738371445,0.01205640335652897,-0.003752401298053513 +2019-01-24,-0.03877790171556921,0.27738788719473984,-0.0035488500897878834,0.00014783708709211014,0.018310777442214505,-0.04917628280132316,0.156374485802206,0.0397842435370878,7.545713812002768e-05,0.046917565861996094,0.0016416556778326957,0.005845629421083224,-0.189429352002469,0.00012991161968616054,0.008502471290377105,0.022741809184470312,0.02537416237243471,0.0021057159367304855,0.0003024831262385257,0.0065559216488149585,0.003307695295020208,0.005987030201601536,-0.005105931484085745,0.00028907585501637716,0.004124389208389648,-0.002150031343839814,0.006949335217358484,-0.0223122599091631,6.755356448930137e-05,0.001533899743144268,-0.0006906922105771102,0.0025664468366875144,-0.0011162820991387158,7.89663639246818e-05,0.013585365676384421,-0.02181598677936378,0.2385445157207204,0.026020664393138018,3.136202090104571e-05,0.005509919208036814,0.0658324505614598,0.04443640785978019,0.1417752387598183,0.0011424727863889833,0.018690210796239774,0.02848957404742074,0.07116266277168631,0.06038431717569638,0.00013998956121368572,0.001843249347751218,-0.01504715431106061,0.010978675918916955,0.01754260754504,0.0006699289841510798,0.004461808497393692,-0.023975003030487205,0.33504570250580673,0.17235004126774378,2.132442887204812e-05,0.0012178461461596637,0.017644193023857724,0.05249328593819535,0.003369972522272998,9.985023211999564e-05,0.004069983234146082,-0.011566428563532785,0.06087174669257434,0.01780039542041071,5.3486642187131125e-05,0.0008952302892033824,-0.0006059703400963732,0.0005423732546019992,-0.007134501880786126,0.002179094550833328,0.0012907606503048583,0.06480889809072539,0.3869011327691884,0.043605846517001216,0.00013784364351738783,0.021798824167195512,-0.05506403139215438,0.33546850335882344,0.064894421313311,0.00025417011469693263,0.006472476124671249,0.02746623428040873,0.13994326591875259,-0.03961087380836326,5.528509639166311e-05,0.0022990097910730537,-0.07005620208457183,0.35753136723872714,0.09574302614851316,0.0003229380713297898,0.017321428660262057,-0.07073935671115454,0.953017323403628,0.03337008223828038,3.080282456107075e-05,0.0027712580622456244,-0.007800617654857938,0.09164646056067689,0.008034638720075446,2.8437735057126785e-05,0.0038872784863186547,0.03551779557005512,0.08321118992036511,-0.0264134571141552,0.0001374950383798381,0.008452900690848286,-0.022730919474879954,0.16430525329675238,0.007034659344760686,3.195640601077045e-05,0.011413022245290255,0.054770070103694,0.14999462795529825,0.3124103046434133,8.095524174589885e-05,0.006013824872230446,-0.01843641869932359,0.06043649663842916,0.05706656848947714,0.00013948447650275665,0.008474319573667125,0.010318362765437392,0.008922438378152965,-0.04942369253435489,0.0006610020350530984,0.0014372230817656035,-0.006228373465027215,0.020632734614058682,-0.0060937013525092934,0.00012705854060264516,0.012835724279497179,-0.03175419015581787,0.10346765070852672,-0.0032048935299470427,0.0019697704934533915,0.0352563270658746,-0.01595529414283449,0.15417061925664854,-0.04279318649624018,2.661248278194168e-05,0.01599664203076793,-0.013071125260189068,0.041709312685045415,-0.017935088330730747,0.0010245925954457389,0.027928997020073357,-0.014706877148824064,0.11292226208424357,-0.02252143798535406,8.672943924320026e-05,0.003373227790645481,0.0010631984829630034,0.0015079007218877169,-0.040663813796384,0.00016641289865980166,0.019860289266289407,-0.06015239585002089,0.09318378285908079,0.09670083475758155,0.00037052413893292176,0.005384921849323977,-0.0010377489570481378,0.0037186719153760196,-0.012377670499219074,0.0021629913511100225,0.001376034504760855,-0.014566725503254213,0.05495313264038508,-0.007499640962874216,8.504716713198024e-05,0.0050581612995719335,0.023028704654843916,0.03132352157498622,0.002845215835587626,0.0018275788341066055,0.035206732574058174,-0.0054126486235129825,0.017546272508616397,-0.006699601585401339,0.00012221964026079598,0.006269006929584836,-0.0016275398105389332,0.0038005516723758456,0.000358801610442873,0.0001735982548437013,0.0002157274390435801,0.031496664915234736,0.14469029841238518,0.02104309960444505,5.312991031541426e-05,0.011476628437989588,0.03155375009006816,0.11965879712499256,-0.01690917057078976,0.00249933463027367,0.015157201603423662,0.022685205278404202,0.09712063036538739,-0.005884713826063424,0.00011619081331759796,0.0013187832649220878,-0.03254417870903874,0.17554525347153216,0.06271154672679494,0.00013444510953525488,0.00902202554609468,-0.010000589154810906,0.056501911873585664,0.0024988277955091762,8.371651504557292e-05,0.017772039114030403,0.03450586507037096,0.15862509733548713,-0.06800921518830415,5.467243451225146e-05,0.024708619994979534,0.0700144654008843,0.12194719242607767,0.07852543690173475,0.00027992737080807843,0.009953417987042301,0.0005905086083582598,0.0023452502636815598,-0.01988948494902598,6.261111176870402e-05,0.0109315082656543,0.02456333974077863,0.2295785988129533,-0.03122601106475742,2.7604971279378478e-05,0.026372325159421534,-0.005614308705503993,0.020520967800986892,-0.00037869440403806917,9.563291955702003e-05,0.006554959352178526,0.022552554946847558,0.09796412264625444,-0.013289539156123673,0.00036287468109636486,0.0013289038998060942,0.03299007939879741,0.13952831152435557,0.0046642368697752835,0.00013542312087297167,0.0038988337850829934,0.0001382176030566227 +2019-01-25,-0.018849308511962662,0.1416817999241302,-0.00441273009174325,0.00014069152630327654,0.009142081663656883,-0.004187281296113385,0.013558532537193786,-0.0008265475439139352,7.410200792925879e-05,0.020919319753179143,0.013682588735387488,0.04717454525430902,-0.019083369234753005,0.00013417072157401492,0.011358654265903333,-0.0033387767438573437,0.003212965993687931,0.0011426404471995856,0.00035071077343455247,0.006803139194513053,-0.04187580594130154,0.09367037973686661,0.10419884498176264,0.00023391532197889416,0.0018101127224558289,-0.0070555828072560835,0.016500293460806458,-0.02411817108767961,9.33658305332582e-05,0.0045853642978182915,-0.03385787546582149,0.11209547058826612,-0.1234686135361423,8.862607048706897e-05,0.0019721091470440554,0.0011636647701554923,0.010906021154316013,-0.016372881297787276,3.658981090176033e-05,0.015864165892957974,-0.0006089582561348491,0.0005356792759923854,-0.004971211478932031,0.0008766524776134714,0.013946614328616694,-0.02370810124394173,0.05509428351938504,0.006369052918860237,0.00015047076189536617,0.005166607732892218,0.013673909983192635,0.009347253442367602,0.007189740696164862,0.000715044476928265,0.009372063853176087,0.0010130239039835755,0.01137632059847606,-0.0616711595585454,2.6536317838675207e-05,0.0006981110725028169,0.002254142255467147,0.0072694105579759,0.0007088870457015965,9.211559479118682e-05,0.010415127093516987,-0.018218447558710438,0.09648058467402196,0.04071687809767538,5.315367033654207e-05,0.007115300065696089,0.027310353378753597,0.024758551655751495,0.031222394146709687,0.002151419282917473,0.012412153491647083,-0.023728203591839366,0.15942653932981088,0.009366670320796876,0.00012247751010020113,0.03182208486155401,0.07709384297341643,0.47699009563300754,0.1534709964020486,0.00025027563130543333,0.02101890228325371,0.038338338756877394,0.2369244723347904,-0.05360076767374363,4.55810499051475e-05,0.015556602902126791,-0.011730432440958397,0.06376274380971972,-0.06261471719084494,0.00030320323658322994,0.007043616303394192,-0.03408228263459729,0.48370408531446396,-0.0631146189519857,2.9240119922608483e-05,0.02139063187889697,-0.0033221002202320016,0.03619192743530252,-0.01595759435229667,3.0667807360723066e-05,0.006753458568759399,0.04782721028141403,0.13447236430498985,0.03172884047786123,0.00011456837801184427,0.012630748815219594,0.033569759155549064,0.2200704710343537,0.02161960868893416,3.523536936860515e-05,0.00031848450918222043,-0.01906069520747787,0.05384962823177831,0.018504649465178002,7.84753768132346e-05,0.005730936932996078,-0.004219289678694951,0.015418921325791661,-0.01371544999180525,0.00012512207740139947,0.0021002469755007545,-0.03896120722242871,0.04210036514265796,0.035814115678043594,0.0005289591134076825,0.005545842480669901,0.011212376701010855,0.039935768018561246,-0.007995043973663815,0.00011817392176632963,0.023513232401009772,-0.012002565796319229,0.042829931248991586,-0.03808151025371439,0.0017986468142465112,0.006681535906930587,-0.031281714888322425,0.3005397601787526,-0.025379211173018786,2.6765219735186988e-05,0.008823119326913584,0.023500931758945746,0.0730082597918547,0.015951974612030954,0.001052408517602566,0.007118020805186792,0.012013796067414702,0.09105466727892383,-0.0376135510927611,8.786252644946374e-05,0.004060683807221853,0.005076764988744986,0.008311305377419961,-0.02742968392307653,0.0001441661187008315,0.0033050487588368723,0.0271877077007238,0.0403764028830236,-0.04172235884373232,0.0003864994504092921,0.012654102907392882,0.006228339460804271,0.020938590736212976,-0.028996270287301364,0.002305553304528033,0.0019071887859985468,-0.011560630741892583,0.045360973980171165,0.007803369126352145,8.176915861017489e-05,0.018670563987889303,0.07295654727876003,0.10703784557259274,0.054192259023047445,0.0016943538162016184,0.011899189471932109,0.02568479913232405,0.07508413153402356,0.0343224597287696,0.00013553268695153483,0.009650936548316518,0.0048036804570495695,0.014476410981075,-0.048822041830522564,0.0001345158877742815,0.00021402452345356462,-0.007209563501811789,0.028343442459881466,-0.1766056357186083,6.208265764764949e-05,0.020294519282053003,-0.056786135295795084,0.16747187840404104,0.07397792754559838,0.003213797283227248,0.020213924276250732,0.04741491116870795,0.21783671942057448,0.08663961719453889,0.00010827406048660744,0.007115071341001632,-0.018159558872282662,0.09688032121917102,0.007274605289255774,0.000135934755013294,0.0014775733999599007,0.004852819473041628,0.03148063082233962,-0.0977221493693794,7.291206661999196e-05,0.018569567902196472,0.014695413204446861,0.06044856835753775,-0.0118791629254677,6.110027674081944e-05,0.030933396390019564,0.008711366591365488,0.01822879530183054,-0.03336086316186149,0.0002330009630406542,0.0011892808060146012,-0.011580450613588988,0.04371877907932194,-0.038891052678399256,6.586759547830905e-05,0.008930991695377345,0.006944431034275224,0.07676843446691348,-0.045170480335677304,2.3339162647562744e-05,0.0180100494747261,-0.010241498590311402,0.03624773817343295,-0.10314873461830985,9.876238336972023e-05,0.010765913399672082,0.0028560168211527624,0.012816359445968588,-0.003135472894571038,0.0003512562437884253,0.005809195669915138,0.06936006483714106,0.35031997337401377,0.05981219765909261,0.00011340087021529062,0.010301353708447761,0.0029368931499584184 +2019-01-28,0.006028930862770131,0.03833895221907249,-0.010067333369966253,0.00016629785512347982,0.005364231938280114,0.017719896913183965,0.06933383704390803,-0.01098754579576956,6.13234362078635e-05,0.00793435088375631,-0.0034716915779099554,0.012859841527630094,-0.06485347182782557,0.00012488282763063228,0.0039010952116309097,0.0319694947413623,0.03391729176229063,0.03296898359044424,0.00031811376488197543,0.003895717089703183,-0.025559626161423172,0.05127651377340415,0.028931714839404567,0.00026081572935481153,0.010637275282572318,0.015519863698142655,0.04443887648887573,0.023767519995559743,7.625557006802807e-05,0.00888745636504363,0.025088465646646275,0.08488217095283922,0.005995771620299071,8.672563297919585e-05,0.003767558212544901,0.01279165297180842,0.09792394129147788,0.0015546123675738747,4.479570731921035e-05,0.01276929624064794,-0.02907145954245969,0.02328592062873324,0.04673720195103198,0.0009627603808242671,0.00978095986577028,-0.06219739310278624,0.15220698905590416,0.13470296746944962,0.00014288922275098047,0.009674366602879477,-0.018957865657136738,0.012877273991613761,0.024870909230369772,0.0007195978602300255,0.0015203306808198509,-0.0024070008771240755,0.035318889884333335,-0.003062450173886942,2.0309161504218746e-05,0.0017506557449678312,0.013761286604110247,0.04166915400454717,0.0007129361141059397,9.810596061769705e-05,0.007630448435127621,-0.0034260427650330983,0.017278444828364083,0.002675536372827921,5.58148738378046e-05,0.0019014174617473427,0.007213049967089202,0.006307382352785509,-0.0024375740196922895,0.0022304513480927986,0.005846095769730416,0.05686985558969486,0.4139788564667606,0.018138395310089168,0.00011304622716425975,0.04360470181149609,0.0220958366276651,0.15132383245733713,0.005418391453438608,0.0002261056164306372,0.020990288528380065,-0.08829047124762429,0.4707042190502487,0.13547042089812092,5.283560683726543e-05,0.027569157542987423,0.005003672549733565,0.02569175756199513,0.0019229982266826121,0.00032098288274480947,0.03150094460425825,-4.363484835306223e-05,0.000500054603953927,-0.002386349571905678,3.621147973866467e-05,0.006144702310462775,0.005741816003072154,0.061659925656591355,0.004451384623258979,3.1112003836717364e-05,0.004246487470202773,-0.022682011200944915,0.06554406744563668,0.021397114000004144,0.00011147331788531862,0.02546748214338737,-0.0008606631713604354,0.004853167102368478,-0.009187791115366504,4.0963810699429314e-05,0.01366350069409195,0.00831683431185012,0.02373357247933548,0.0006926342439568723,7.769128717857945e-05,0.0023408096566086512,0.005586599801435871,0.02109666027100585,-0.0042157152277551195,0.00012108279793401517,0.002044080255579244,0.0019727896494679945,0.0023091055979800805,-0.022385434760181303,0.0004883290357154635,0.01037355601490315,0.00047772215589143423,0.0015877065502141454,-0.05198726900899838,0.0001266459062671757,0.016491092757811784,0.003581125950543245,0.011308483396257864,-0.0012466683485920329,0.002032518024718991,0.007346385450956817,0.0037365574102466467,0.03495539065033272,0.0006090972831450966,2.7487781793950188e-05,0.013917914947999646,0.06946905511864511,0.20512417229971483,0.10024996652346606,0.0011072503341230451,0.005427909885033634,-0.01842633023830779,0.14558496749700642,0.01701225841412785,8.42845475413216e-05,0.005540280083475779,0.0077634358752118925,0.013261722031519162,-0.07889187975881803,0.00013816544357941535,0.004292210165555376,-0.027041252929988924,0.036968181726617075,0.019721387472596694,0.00041985819439402226,0.01249983725142774,-0.011707885769915972,0.04876536876870261,-0.030387426002140883,0.0018608754437007598,0.008432812312855451,-0.0063122619358735935,0.02137508903898916,-0.12450268085053974,9.474743250286344e-05,0.013802507107781782,-0.06919184021123838,0.10286525824372765,0.053419462748832795,0.001672104255827362,0.00964137666170004,-0.015660528954501342,0.04659375243748971,-0.050572818856181916,0.00013316643563746758,0.014332019331259648,-0.04767643316023716,0.12655714701028883,0.07004278123670261,0.00015271350924587245,0.0035306141290326826,-0.03767296700244861,0.16404855342946595,0.011341922715369152,5.604944867691258e-05,0.02390305706698231,0.04571965684646871,0.16416432339792628,0.023614776688177994,0.002639625036726232,0.019405722380082775,0.03827662085095075,0.21598942869426,0.04755317872842134,8.815392733195148e-05,0.008732682405054537,0.004900625551478035,0.029378239121940056,9.2186795887104e-05,0.00012097246859289992,0.016862114056390223,-0.009171509956093511,0.05810066843789284,0.004931557694999717,7.466351155145818e-05,0.0007655151146471738,0.026170270043671444,0.13309221740787763,0.002091204705793016,4.942002242759564e-05,0.01613369721459678,0.0014913761954074467,0.002660261871159417,-0.025911485252884465,0.00027333308999706525,0.02397658103696466,0.01466896932576212,0.07357704851672743,0.03241987176569983,4.9576014918612035e-05,0.006143910840012511,-0.0158103400051431,0.13877483148803513,0.024219783937647402,2.9394209586627875e-05,0.0015204034207926733,0.01776399233072094,0.052624177776214226,-0.03981088484657889,0.00011799516672613333,0.011983702244190746,-0.022318003416769844,0.1003953650469377,0.05428155592030645,0.00035040447787661774,0.005195732433004978,-0.02262118656316092,0.1098161767958308,-0.040724393123583155,0.00011798338649696388,0.0007103549456949701,-0.0024632199893585083 +2019-01-29,-0.0038606121827536363,0.029656442855428563,-0.0437707914292595,0.00013766505176727043,0.01829229740489723,-0.0384668459732644,0.12214912963709944,-0.000941762840525988,7.556257134920783e-05,0.007454905012814554,-0.024766995670146976,0.08197427430274462,0.0434081764281799,0.0001397632374676041,0.0036171784181851453,-0.013564318379477448,0.013853935012711477,0.005926806179203667,0.0003304400545190031,0.01314401588949252,-0.01258601433403058,0.022282123522117003,-0.07391605949284308,0.00029554894736401235,0.014431915551087927,-0.017898050003375788,0.05054293825457093,-0.0386659914354797,7.732002243585653e-05,0.0039382817250026595,0.03733066042972722,0.12525339719147957,0.032455852198334335,8.745124860141751e-05,0.024403389497453874,0.009567511473521252,0.080119495587409,-0.06691973223634963,4.095051800746797e-05,0.0010366084606030295,-0.018088783530762268,0.01608256787373689,0.022094686720592487,0.0008673587324435786,0.01083557860205866,-0.009274395969216153,0.022105476692257504,-0.004684414781494435,0.00014670591885996312,0.010656930362319007,0.013689617202432355,0.010437549063822707,-0.031416525056350036,0.0006410872394812113,0.007636524725042712,-0.010925581343398697,0.1392619119892206,-0.0761826132332665,2.3379487711213254e-05,0.010360628115895613,0.029748358361646063,0.08787907513952473,0.00950750885259775,0.00010056076412922001,0.0033798606574286655,0.003680601009889929,0.022790967031930426,-0.026944803607043752,4.545878316230109e-05,0.0068105794028072986,0.023889723572689786,0.02007565778983735,0.017803716127445822,0.002320942135887662,0.0003769053766678272,0.08122760853552394,0.5718576778552558,0.021733313419211062,0.00011688743231188141,0.020859012972495757,-0.021081696307982057,0.12423058554208695,-0.011283249518316017,0.0002627757307786365,0.014040611073793681,0.05273011185705533,0.26373598987503255,0.015799865262996766,5.63183924953964e-05,0.029465581640982796,0.03721111313924172,0.23931578101170112,0.010367451496173345,0.0002562643130919489,0.0030859255362424036,-0.015074478684886613,0.17779675754974314,0.00010719628383310022,3.5184282313334996e-05,0.007984683515360913,0.007754281384901355,0.06905977190179569,0.007246767000889891,3.751441046875032e-05,0.009610811311037902,0.00980664213010744,0.029748624367089548,-0.056760569704038075,0.00010618818430635801,0.005210252974016682,0.006853287226016252,0.057707496343410124,0.0009759409965660683,2.743210138177615e-05,0.017437249760882602,-0.007620849061002014,0.022817480462004786,0.01013096909238555,7.404795261568553e-05,0.007778665285113006,0.0017405829164796852,0.007214784384039061,-0.0888668582027088,0.00011031128805632258,0.01058208882092131,0.0026426884389664147,0.002500578781065526,-0.00085152017067825,0.0006040612605146212,0.019984579334406515,-0.029921464755534973,0.10534722783257279,0.031039246276884584,0.00011954894479071418,0.0058034481616999044,0.01340124437499391,0.041201969944998466,-0.003515973290066447,0.0020875953482006027,0.0032444358826342855,0.03634818158283023,0.29324617804617487,0.04431649365092322,3.187370315780949e-05,0.002096774334595759,-0.03958936069030874,0.10385815759899834,0.012712113305082933,0.001246261400749124,0.009089143797319755,-0.011460094703352026,0.0954916087336989,0.0032512190312394286,7.991874215458248e-05,0.00860308492090001,-0.00660996379076336,0.008708064487930968,0.004157995175724757,0.0001791524823457695,0.011687303606495975,0.038810782533462186,0.06230062922646531,0.024128322686021157,0.0003575723100742453,0.002408879566066688,-0.0492084929988727,0.1897214868702071,0.03231432039504103,0.0020103602409722882,0.015490934221851561,0.010709311764177387,0.04073450650987921,-0.028870171860876783,8.435085184921097e-05,0.003579916828111946,0.03593935179391766,0.05900564191234783,0.01283893861004189,0.001514097674158872,0.013679510985648622,0.018786496854437923,0.06172131892233616,-0.007189481361720225,0.00012059426160823217,0.014573228556022118,-0.013649598973665017,0.0315957299379722,0.005027749151080595,0.00017512650275630596,0.011117394151332052,0.0013397030146680758,0.004778497540415837,-0.03841994817987972,6.842756610299953e-05,0.009808761325401403,-0.0405299214308981,0.14293793454277579,0.0275489949779545,0.0026874866621679535,0.024072252731025683,0.029475237110503236,0.15594821631948808,0.016414314706880668,9.4019398044872e-05,0.006496012139473626,-0.00847568140458646,0.04726195283466525,-0.026187083407781708,0.00013005400938822148,0.0065305000185429795,0.012407840113151927,0.06841930230021168,-0.09065533322671898,8.577609010293566e-05,0.0013791381462447995,0.05597900548245656,0.2853909475263489,0.04747926736134913,4.9298349576502424e-05,0.0003068425144360621,0.028911497275173004,0.05005186482023589,0.0017155306692561978,0.00028163051848397814,0.008183879690020572,0.019507418025840637,0.09427679377783887,0.02494358851366857,5.14528412998004e-05,0.010005930979930671,0.035884632302569636,0.3446371577209469,0.035366899894797854,2.6864433449285232e-05,0.014821386135664113,-0.003267649211022771,0.009544915794113366,-0.035656245802516466,0.00011966641792232434,0.007993620990375464,0.05502150290219233,0.27367715902382017,0.16637092067635978,0.0003168997283513673,0.004907186090316803,0.03421237147843157,0.16883595510119484,-0.13772582341295422,0.00011606199621915273,0.008441179915587526,0.007177357269152605 +2019-01-30,-0.0055784191293960055,0.03931226537074447,0.00020887483838895316,0.0001500616282990681,0.023204071669747164,0.014407763107885468,0.045574011237674024,-0.14257579363342274,7.585598126420886e-05,0.01058683991300141,0.010550769501142811,0.03162194270210574,-0.03884130510155468,0.00015434508076771393,0.0036840723511630752,0.0038789149161027785,0.004179104313600609,-0.022376705803552728,0.0003132527542451406,0.02138066609441307,0.024411583364086793,0.052876601564817764,0.03046133127117632,0.0002415628732667538,0.018752096786302623,-0.000388051889214941,0.0011969556350698931,-0.02620587347581558,7.078781191372126e-05,0.011158956331973311,-0.003556714242537782,0.012862430897254987,-0.08822416276053963,8.113640754824639e-05,0.022626610267371436,0.0009989659073789295,0.00918466802303775,0.00011958638939892215,3.7298023471553315e-05,0.009795326314782513,-0.017987522091557274,0.013603874119206728,0.011633992150417842,0.0010196556319102823,0.004568815994318727,0.05720249215882797,0.1334850176106962,0.10899666366340496,0.00014984570988559127,0.019279782791850584,0.007711191475759334,0.00575843802414001,0.0010605237594200558,0.0006545474697577089,0.0016507269362238514,-0.01396127684455949,0.1853107371837042,0.044864291798903354,2.2451602508291657e-05,6.703738004791245e-05,-0.020975204742078833,0.05609884468604892,0.022405719145208874,0.00011107167704316755,0.011550457973565001,0.022067124205068143,0.12263968746522072,0.03283124783860876,5.064965863598564e-05,0.005931483226972345,-0.011993555664113878,0.009600190986870219,0.013085657849747736,0.002436638234565259,0.007729213943924582,-0.02546291769146506,0.14441708755922725,0.012761097863068956,0.000145091406784739,0.0028452661657634706,0.03136573756140348,0.17558590675580107,0.006705647426662623,0.0002766139520522493,0.03352716476756662,-0.03788737840568627,0.2663673087616504,0.01812675116723281,4.0065871030043594e-05,0.020200195877017567,-0.019089609335017625,0.11380530481209834,-0.07419818678267831,0.00027645302209415503,0.006279834524896445,-0.055368616198466905,0.8118681423690253,-0.00033579445040461724,2.8301431358610014e-05,0.017219979776314745,-0.012362520486031843,0.14322511855105755,0.017427218123551125,2.8838292532652155e-05,0.0019422839505485454,-0.02911685646347775,0.07340440475464201,0.04821012296562775,0.00012777477358914623,0.010525551302500382,0.026106269094587634,0.1946635215893584,0.004251730629241673,3.097794544297505e-05,0.001586042017551971,0.004401251490621697,0.01100144510415799,-0.0016153357684110324,8.869595852554706e-05,0.014456485453754088,0.018495924172046554,0.06487903764868161,-0.08898515717681402,0.00013035276043690952,0.009578338413440567,-0.02620397619276741,0.030285052363443456,0.01364643413555772,0.0004945548083345225,0.01770208547334901,-0.004516242090504744,0.015686748167802016,-0.13277785890256347,0.00012117981873563013,0.013162356092138259,0.04212677348330853,0.1417273467385639,-0.06932548503911254,0.0019077598975648312,0.0018524042742635264,-0.07409899813910181,0.5760700206997689,0.1081468506435727,3.307647779306471e-05,0.00840767965554011,-0.047191393311493184,0.16795991137684224,0.008660221469580363,0.0009186042130241155,0.004716451539499498,0.002209569367091852,0.01636301813038518,-0.0014012166461040145,8.99228104686617e-05,0.009197208888312505,-0.01666000271821269,0.020479555484502424,-0.029716977972664094,0.00019199942510082148,0.00032639873351361995,-0.0074689004870031155,0.01177128411471118,-0.017931071650861635,0.00036419731931069363,0.011098632586374989,0.0042023947526376405,0.01792800277428947,0.0039529295393501505,0.0018168341142878583,0.021081729661503425,-0.006049994945534643,0.023257400661788736,-0.0693324311275496,8.346111984307351e-05,0.004281500807629949,0.04981931845704414,0.08467764502392165,0.02923859112065961,0.0014625347792422733,0.00510959514041813,-0.046782203750841786,0.1553266668584034,0.03693829728537901,0.00011933028826379997,0.00917766667192194,-0.02641588807203418,0.07727434360083126,0.021363368966587633,0.0001385767166343532,0.002850780132865773,0.004547151103589065,0.01910874747848424,-0.02592004617215932,5.80792620971854e-05,0.010204430328559312,-0.011552069595182722,0.03857540929639664,0.0022819016291032233,0.002838358915061626,0.0013633873383613686,-0.02779337156768868,0.1404687019736405,0.07903116489659705,9.842427738551475e-05,0.0026464353882701707,0.01811861370887907,0.10125972765827283,0.0034879651297373138,0.00012976243762000312,0.0014862674833312842,0.01980437938638713,0.11025802717904286,-0.027264572654241787,8.495710767430187e-05,0.016205725596826193,0.042025597708487274,0.17482987881189202,0.023968195705281328,6.0415119280914095e-05,0.03994142880618464,0.041333361034589844,0.07278219364398843,0.02328441540887293,0.00027688853569002634,0.012671688069247133,0.036782028714296734,0.14933791753716077,0.1256918942186322,6.12463150483458e-05,0.0015408380749538817,-0.002613625787750251,0.023490477281899624,-0.13859098814012544,2.8706672262085842e-05,0.0017285156641525285,0.01094739287108341,0.03905318544600449,0.022895427563364247,9.798581400335366e-05,0.007151250357306679,0.011226826463560739,0.03812408000055627,-0.004339792700618452,0.00046417912805158475,0.002793812522313521,-0.03143284318739662,0.16196338069515398,-0.03793463094954605,0.00011115746364032547,0.006438035572631932,-0.0009558459056938842 +2019-01-31,-0.0033963178293766444,0.02364040095410115,-0.058432384708028626,0.0001519287871153814,0.005407022105479951,0.00260495872697526,0.007747791379837222,-0.015372783239250438,8.067397479302622e-05,0.017365790364616867,-0.001731269503789027,0.005258003831967765,-0.0012606547739984174,0.00015231440743760936,0.004852145446771593,-0.02226801072283594,0.021450679592056182,0.04641081092425072,0.0003503549212548987,0.01117949213441026,-0.033547607594714556,0.0760114601635846,0.04237915005157884,0.00023092994463292114,0.01200280495529818,0.001428191036307227,0.0038562571722986676,0.0003520280950989111,8.08662033751316e-05,0.0012428423639961955,0.031861573336242684,0.10003531023591762,0.03348897119109955,9.345525987379382e-05,0.00585771653033801,-0.0022631902324052058,0.0195173493465353,-0.003848349646811802,3.976480332935163e-05,0.012138394802816553,-0.023384764900363623,0.021294699159288905,0.015197576736095456,0.0008468495980666834,0.013757152046119615,-0.029074472448932527,0.07430636145052895,0.01456789271119315,0.0001368194164821261,0.0036845746736909853,0.015797035272243267,0.008532169122355363,-0.01507759381911873,0.0009049831451728808,0.02256754165113214,-0.0027836628591377545,0.03678833911820727,5.1301964654430583e-05,2.2549101586293177e-05,0.0012030644819838912,0.004437562937090833,0.011521312424836566,-0.002506896547586271,0.00011441780444971722,0.0036376088763058947,-0.01450872061030098,0.0776637846057883,0.017384894709446902,5.2586272293237086e-05,0.006101820236356983,0.014777056565749798,0.011921009567111425,-0.0033075211567299974,0.002417674733615198,0.006009450722938974,-0.032758068637318456,0.20884310047482316,0.0023643546795874375,0.0001290774164554347,0.004182429050548058,0.007279838279575139,0.0411214499527023,-0.0016963649584989147,0.0002741331420997946,0.004070899470028526,-0.015456672998293033,0.08789311855921265,0.0012531372328539792,4.953613303401693e-05,0.002878080111035604,-0.0670787875305411,0.2887319673442339,0.06195204622998877,0.00038289274847678323,0.021295494415286022,0.07622991367750187,1.0499379213358373,-0.01700619470451643,3.012950783399386e-05,0.0561150392314718,0.005866725976498131,0.05012073105908034,-0.012611412137926626,3.9107505561071085e-05,0.005636398764069092,0.04306086972318877,0.12493583682361266,-0.05613504235472723,0.0001110244225390002,0.006710864985443542,-0.008595856105725802,0.06155544484334856,-0.0003038138802296504,3.225633632786196e-05,0.004704181579131345,0.02530563138008624,0.07735372753976877,0.03217655206329085,7.252927117434137e-05,0.005706807857829215,0.014274574683029275,0.04911360893184879,0.013250729115965658,0.00013289539272733097,0.0038227368129706944,-0.018176056766736462,0.0179532874576664,-0.008585162854762879,0.0005786703722375565,0.00025742803705492085,0.013460757884742693,0.05896278737010176,-0.001224651251963056,9.608985011387329e-05,0.0018704714159951054,-0.05888436466688261,0.21040187333551316,0.0576659658904401,0.0017962615182590537,0.011038258029143077,0.013278471958855289,0.13485807916988224,0.007575558347080973,2.5319395138172202e-05,0.0023928514853129735,0.05378216171492217,0.14867586187658668,0.03845329815256366,0.001182684919728352,0.02970734162965782,-0.02323066226445673,0.1614901593802347,0.010834827544084486,9.579463147461645e-05,0.004738539457019058,-0.0009305346476199264,0.0015964914953050392,-0.00034365418941724387,0.00013756606834501218,0.0017363353286234025,0.02842090481690766,0.046701289466158334,0.012303333883370238,0.0003493115468716821,0.004494549705103351,0.030984269535730906,0.13055111360501367,0.041465975719478146,0.0018395475675075863,0.0031296899758359842,-0.018752652590508727,0.07482347758325689,0.03968066349627198,8.041094930972333e-05,0.015040778693482202,0.028194838061770425,0.03858903111687363,0.005548516664745389,0.0018162805062978276,0.00768455287811904,-0.03473099008749539,0.09928205314677158,0.0038059165259656533,0.00013859975123927017,0.011022768645084459,-0.0331008912043447,0.09385310573356193,0.028861865074259016,0.00014297213887254972,0.013342928632082718,-0.007267158783553157,0.03187070709412198,-0.012311245863656823,5.5652781551351104e-05,0.005064443880017847,-0.03010424233047417,0.08252167395438767,-0.05512482076316222,0.0034576237300310794,0.004161876488009652,0.021590356517200163,0.1153489942721331,-0.016315843558459102,9.31079087433848e-05,0.01064294846124815,0.045742415500149694,0.20249066980033048,0.021405806959495725,0.0001638229951970204,0.011324148998447657,-0.026710092668403303,0.1564899979804294,0.05556662180325056,8.073047514440583e-05,0.0022397000276906517,-0.012750130486041214,0.061139623034809944,0.013665514811700375,5.2413030071487944e-05,0.00454535303004789,-0.018573393144117052,0.04020008590036639,0.008098806978762576,0.0002252649714863161,0.006292638720559813,-0.0010329278977288866,0.003987106045109615,-0.031820890599967594,6.442087158245715e-05,0.003007318696244737,0.026412716344111423,0.2765813593568039,0.04370752657712995,2.4638907438052163e-05,0.0015257125265058513,-0.024630508650024842,0.06516720820439376,0.0766568704602718,0.00013211533465213256,0.004502465781543347,-0.0034877015962018914,0.015186559310231506,0.0047973096103668365,0.0003619994414429198,0.01616258715764981,-0.02127064449879452,0.0882461819252954,-0.027380001569497183,0.00013805639255104756,0.017336317389502195,-0.0018021246711773453 +2019-02-01,0.005003178941341636,0.02935813836901931,0.002885257841994206,0.0001802204653734898,0.0075958854927919255,-0.018508852855850844,0.05044776389879304,-0.011818913418934403,8.8033528347092e-05,0.018737733702087526,0.05370773378018747,0.15279671349279514,-0.0025438894343539223,0.00016259980444261222,0.012655660132298427,0.03282952671395352,0.03567048311795492,0.05139623186832729,0.0003106157596473427,0.003592443519803942,-0.020664614952834014,0.04257590712388027,0.005152666309064191,0.00025395757995504457,0.003015844873371876,-0.0016430355633945042,0.004540476555371543,0.00037409164422298383,7.901185645931245e-05,0.005005558019065226,-0.03199795110409769,0.11134168735504496,0.01033513024546771,8.432458781124048e-05,0.01825513784875671,0.02008096093819469,0.16506756693017027,0.004728485607115624,4.171779598687387e-05,0.011055704804645971,0.008448312548967132,0.0063998767714512055,-0.019713620710246134,0.0010179891453858329,0.007372425355945079,-0.02451321739688093,0.053507524062516125,0.0025841343743969554,0.00016019440648366997,0.017896583194337536,-0.0030566173793152313,0.002330569049504954,-0.07521975563602518,0.0006410670594841154,0.008437056271791839,-0.012241663834359411,0.20700916292041935,-0.006598605579289001,1.762274956159563e-05,0.0036991581307054683,0.0026187627419659294,0.006631025039592667,-0.043893815557077415,0.00011731850590291918,0.00267879501954023,0.01440999536458716,0.06615541525428596,0.014124956688888808,6.131408613122919e-05,0.005860533989363363,0.03910246643701248,0.037661072842569504,0.016190901283702427,0.0020250438742105796,0.018800061783089128,-0.02256833944663331,0.14997729873634652,-0.017214248809491618,0.0001238300892462749,0.011174918177196864,0.04420752665119405,0.2468102465739577,0.005003517729207672,0.00027735836174648667,0.006106192482536582,0.03727458456991012,0.18571507268830037,-0.019071748739440453,5.653620007694513e-05,0.027956108206123022,-0.08067414341529167,0.40732809078630916,0.10948702512572933,0.0003264200362522839,0.009285766480466256,0.02201859786146247,0.29001186954443264,-0.03351364079553828,3.15067870806071e-05,0.03197565007903636,-0.03697271018219977,0.373907812650293,0.15071446820924142,3.3036836644743584e-05,0.01168926522356745,-0.02470229841045104,0.07141075128586083,0.022633081484733662,0.0001114285598297363,0.004907688284962754,0.0423499357600238,0.31988898631046636,0.020370819492619267,3.058058888438501e-05,0.0066920435289675225,-0.02548364952413064,0.086006370582445,0.027094044570655586,6.56913799248051e-05,0.012665966732591214,0.007089435295877071,0.026988994449330866,-0.08802994944613309,0.00012010844234018889,0.0024352498443422576,-0.06653424918984244,0.06287597641207508,0.09603927035310235,0.0006048338369753742,0.027166941066747552,-0.014674672836995067,0.047344146694139035,0.011239164819261124,0.00013046323503141126,0.003153038492079739,0.007472457780924594,0.026111064992590523,-0.010109454867229462,0.0018367838784227057,0.04874507141489926,0.001992237316400697,0.019845238723489037,0.0011847929428128194,2.5814691439700004e-05,0.016547344634567078,-0.019295709495991232,0.06009301202115191,0.007145668455734335,0.0010498035795660301,0.008285466503464593,0.01886886593368032,0.14047615432345273,0.020780276642165776,8.94476288699612e-05,0.007444274346643687,0.004934656728027217,0.007559583389725099,-0.0340578340406971,0.0001540651713152751,0.026744708788753235,-0.008641115035923644,0.012878967300367907,-0.046887311355841114,0.0003851169735690276,0.019945475608949496,-0.010580074914601138,0.040642054513543975,-0.01390137086863638,0.002017731759619964,0.0022496752854755746,-0.03164987045334677,0.12262529248498213,0.0776280385343586,8.280989822437526e-05,0.015728164541143563,0.017012643440681943,0.027017976664907805,-0.019122832429483958,0.0015652948973265896,0.028445297969018516,0.00862889180444569,0.03162090441350224,0.006399582850537596,0.00010811769360890175,0.007313898391599334,-0.03978086514490553,0.10478091908337894,-0.05467235138238194,0.00015390488204606678,0.0073505291399400445,0.030404713740850096,0.1301776897810813,0.026005384199637646,5.700570012946361e-05,0.006005733857609904,0.012738705776179853,0.038354231984231574,-0.016692095658059385,0.0031479662975832903,0.0013682611865604103,-0.029454245285379134,0.13677690738838735,0.07300396396962057,0.00010712126435683481,0.003550083855509838,0.019964059537074842,0.10494541309752767,0.0017769140296443665,0.00013795777434933093,0.01315919683171469,-0.0037824965677529126,0.0212855234264192,-0.08693396351843836,8.40510043053967e-05,0.010904858793330656,-0.027289271085893296,0.13313090385934467,-0.00633559015907119,5.1518172612884466e-05,0.019597344830672384,0.000720776474373531,0.0014734513641824075,-0.018078874580608938,0.00023850318993792806,0.022281768731603643,0.007523251213910049,0.03142929513959973,0.0030655392195300278,5.95230667010739e-05,0.008766006631903581,0.001779169346232009,0.015906703490992626,-0.024647849510181227,2.8858143402067856e-05,0.005177768884530942,0.020833555734292856,0.06697970718655559,0.053938065340937105,0.00010872492549448774,0.011581683489819743,0.015752270781081205,0.06491559957411484,0.00434984193469546,0.0003824917453166524,0.00926889552120273,0.02288164475244651,0.1065934742858443,-0.010577185637045104,0.00012294996712531548,0.005735822237647753,-0.0003072889626569896 +2019-02-04,-0.02307268703115579,0.1644993754565757,-0.06069049246992743,0.00014832709995613196,0.01982391070358848,0.02466654095116891,0.09841704679864519,-0.010562346309528283,6.01379263904052e-05,0.0013862391007505549,0.022648966906888435,0.06352849867464976,-0.1010362992158763,0.00016492139879160532,0.008772889638011839,-0.028811808766126892,0.03201942717223951,0.016427384985181065,0.0003036860352718184,0.0038123299999348282,0.004209839029841188,0.00843268297090305,-0.023628010195084537,0.00026121462531416656,0.011647992986492247,0.01403494100389179,0.03146706706456111,-0.03995267325327762,9.738701746291853e-05,0.005460889169863397,0.01829373363915084,0.07112421235864043,-0.014597009836317926,7.547006718201194e-05,0.0067010899100858005,0.004175986033862601,0.03841515454761984,-0.04023188596077162,3.727821144025048e-05,0.0027481949521170933,-0.045946340070028166,0.04105081809263037,0.08171564734366316,0.0008631253912782779,0.015002293118452161,-0.01075152158216383,0.025845393210777407,-0.011734050698605513,0.00014546170492557957,0.0020792436911897566,0.007019027749616605,0.004721817976117068,-0.014539380283942445,0.0007265944503203187,0.011734623019113275,-0.03496367345669565,0.5158345972285717,0.265905615209157,2.0198977147138484e-05,0.002794149254544598,-0.03264633069148598,0.0849851033975604,0.0813980525273429,0.00011411496627138315,0.006613098241820711,-0.0017148667759056438,0.007745294010469927,0.0015514922498497672,6.232385327892193e-05,0.010442599795147771,0.04014168677534862,0.03709912540665435,0.04595177458203381,0.00211035209066253,0.01692777370660825,-0.07408485499972228,0.5690157568721821,0.06291103939529244,0.00010714138353042986,0.009790598097644132,0.008595924822091013,0.059472472461086154,0.00019859489754174326,0.00022381276194057505,0.002620877435875109,-0.015394292035098565,0.0961748958969175,-0.02019026415055475,4.508779035879937e-05,0.02302257382020173,0.0013005681889868418,0.006154966740652401,0.0011914006088940645,0.0003482524851121269,0.03766695920731613,-0.012519090148882063,0.16069250274941657,-0.0004921713141083481,3.23301249573676e-05,0.02524284617243903,0.0219241812534401,0.18923971143665694,0.03854909033431471,3.8707294412626684e-05,0.008137317250506796,-0.047565309310730934,0.1421240178026384,0.05962302174327815,0.00010780666334990402,0.006685236537435976,0.008849387286083627,0.05777595909442422,-0.020703939447063377,3.538004773642624e-05,0.017048622076264123,-0.016868742497814126,0.05123039858199083,0.024612438907818234,7.300159621387715e-05,0.005203128153121876,0.0032338107382204797,0.010583708699324394,-0.013167376935193263,0.00013970929991117628,0.0010856990602823766,0.00467998615892322,0.004057791583482418,-0.019825852236222446,0.0006592200275064933,0.008984175551158255,0.010567585855926457,0.03857778707526692,-0.0024733356913456102,0.00011529871901913838,0.015363630434736757,-0.004842119468956645,0.01667802042780486,-0.009268156926268766,0.0018634175171529535,0.0045194788642953995,0.01310695466105324,0.12030712010670067,-0.009743944170358398,2.8015131257736893e-05,0.003359393437722011,0.038264524926995724,0.11791327337106364,-0.005494722388713886,0.0010609743866625248,0.007118509202591952,0.04640697860424237,0.3458054293474336,0.04921062645146442,8.936698978572106e-05,0.008606239603344256,-0.006184508126394317,0.008988616095051511,0.0025385069284421372,0.00016238941554507213,0.002104317568073954,0.024265657522136615,0.03095363825503121,0.010439507937322859,0.0004499707407499588,0.025235163586245005,0.02225551410219107,0.09455305381127224,0.015867014784896275,0.0018243678578620294,0.00544642604962117,0.03587319338106993,0.1296453469218413,0.059782632774693284,8.877761526839402e-05,0.0006211784130039325,0.03912294698434699,0.055792928803736444,0.009240977529124807,0.0017431292600262095,0.0022000330211326725,-0.0068371908726122125,0.022944740560495308,-0.07055383981879394,0.00011806212321835857,0.0010978246075494136,-0.004176267828456731,0.010268169766907555,0.000426649154177748,0.00016487533021141933,0.0014305095201338654,0.007170067310253732,0.027002523533414084,-0.050549036433450156,6.480862456139505e-05,0.01583264343982138,0.030268129195832355,0.08808786024953395,0.006814754757386672,0.0032567736558146523,0.0046850064522958815,-0.03362804397334327,0.18308297951557054,0.05942996637503219,9.13680183558802e-05,0.018122231265067054,-0.02888552931022886,0.1361738935173083,0.03026416500868287,0.0001538322029690129,0.01775539063703127,0.02105724400805867,0.1276120872436643,0.03926545946779027,7.804739575237157e-05,0.00534984217473727,-0.01077418384242582,0.0503046335003865,-0.044178701648893474,5.3829926569764405e-05,0.008779458047655701,0.09741777235809013,0.1724439685528715,0.14583300834043722,0.0002754352876252906,0.028351440610435683,0.005457758098710833,0.021097387785844485,-0.02915241874945692,6.432798873159708e-05,0.0014468509974400138,0.013683034769105594,0.12662944500876996,-0.020683192744386895,2.7879116875525627e-05,0.0015577769372688477,0.0015451688816482795,0.00521238981690434,-0.016502655821590943,0.00010362105988237032,0.0034662552140618096,0.03148740134871018,0.12642447303669072,0.013766649191188262,0.0003925849428241393,0.005851212710491173,0.022263591084446813,0.13312872328904535,-0.023648578775388857,9.578450199321069e-05,0.028601355037190728,0.0038056997453853516 +2019-02-05,0.01666654355902905,0.14636679988323234,0.02321646907357657,0.00012041748376006287,0.007741173855104111,-0.0634151611156982,0.22208515808710855,0.1167508992792405,6.851475215811428e-05,0.0005282441403086961,-0.01813973685884375,0.07420731059108336,0.05599290051734304,0.00011307887913322115,0.014520878413658329,-0.025160826006618925,0.022025853438324142,0.04961355537935832,0.0003855316222350172,0.008693976996926103,0.011716755928273292,0.026523038346526272,0.012511764102207477,0.0002311436049668257,0.009427000123264187,-0.02142910656013348,0.05290447072631998,0.08752010799087041,8.844197461334801e-05,0.004293709254646764,0.005061349279268849,0.020228908995511895,-0.010143122846517257,7.341481406401406e-05,0.006009347249640539,0.022929558749113954,0.20160558177610033,0.013058798646730147,3.9002438413728264e-05,0.016087612543634746,0.016475899742704418,0.012666114327049706,0.0009706988044872327,0.0010031145352997221,0.013310790225880956,0.043296463192113346,0.0975073862753014,0.07497915593319027,0.00015526615286395014,0.017308881900630152,0.01801085416962834,0.013890090818315142,-0.011416148556572952,0.0006338019671285175,0.01024259483899136,-0.013510035416639421,0.1816186279108579,-0.005800238877176507,2.2167610735250085e-05,0.0037602840017040857,0.04500894438277922,0.15332416274583294,-0.13995421204276404,8.720457369849464e-05,0.004997246265707319,-0.003571148494175709,0.02253000406133062,-0.05075320520220619,4.4617831348577615e-05,0.0019934757884612596,-0.0606730206343902,0.05452941874089977,0.17546725793207227,0.002170139846768985,0.014348350353138632,0.013463323985699821,0.08362272156137956,-0.009630415988523407,0.0001324890868464741,0.005269224696044881,-0.014936764336088466,0.0818930740909505,0.003665255101431248,0.00028243439682934296,0.007114700374486278,-0.003307707792155361,0.01624916871406146,-0.0673766303062975,5.7339901740696206e-05,0.00994361185122614,-0.042572142273963005,0.23704641800021758,0.01285987821443169,0.0002959912789339301,0.008509036803644326,-0.035906217589164756,0.44556750942667395,-0.08237943786213722,3.3441548172748195e-05,0.03527450578853066,-0.018331611527992068,0.1757834345748395,0.017786358559508723,3.484210688413712e-05,0.006193053228776113,-0.028406870523781273,0.08029674941502826,0.020917934907059427,0.00011395888284736312,0.00861097661251028,-0.04248316912892813,0.29850750959525035,-0.07063418087376755,3.287411131232584e-05,0.03354316669747768,-0.004476958167233872,0.014714476509676116,0.00036015980250551254,6.74552261502215e-05,0.015039294746084626,-0.0026902327189232203,0.01039592145033514,-0.03135322267950227,0.00011832471212626117,0.00525970468221052,-0.01632971523009181,0.014566490454439023,-0.0233458192271084,0.0006407656823093507,0.015743167815691843,-0.015074084010504113,0.04890974638630262,-0.06156209592747697,0.00012972435784600446,0.006505622447963155,0.00038442625733147616,0.0011904281175530418,-0.00288129049056943,0.0020726646572126377,0.0013610608316912873,0.04483210741748609,0.39893459963069716,0.05518367471016488,2.889812365748708e-05,0.03301793792630403,-0.02086597015070264,0.049191427628035196,0.011134541224609168,0.0013868210491937583,0.02924015841760898,-0.003838288262686768,0.03042166896350932,-0.03183631697438989,8.401951978560923e-05,0.00361671523666036,-0.008593499024574904,0.01334047958655971,-0.0533031500040108,0.00015203513905270218,0.0014748924771876898,0.03108536481183567,0.040833484154424504,-0.011586836566982717,0.00043696177227997443,0.005309437608995375,0.03863958300103835,0.14681120625414476,0.03674493067161292,0.002039968986914724,0.012400221281127655,0.00023370651907151646,0.0010115789084097198,-0.03529705908468738,7.412444107406618e-05,0.00800769374466761,0.03823097308193323,0.05880280264838127,-0.0060833431105071535,0.0016161978254656832,0.017459195975337797,0.0327589690066213,0.10190519849068891,0.008261273253657638,0.00012736494793791779,0.011597411450218791,0.0033212761817849037,0.008400911448847867,-0.008332491375007321,0.00016026510045994235,0.010695877606955584,0.013939825640962817,0.05317486909158125,-0.02284706284549921,6.398303507602168e-05,0.008139051782908746,-0.02303943936828572,0.07918144978806957,0.008525962266994619,0.002757823802376422,0.014984818030871039,0.0004109890165050309,0.0023139797120300017,0.0013744585912309473,8.835095322174349e-05,0.0071607518309885635,-0.027135342980400833,0.14363628311691856,0.03437308689437222,0.00013700358807567498,0.04289584150636428,0.018490545765655324,0.12664267405630858,-0.05018759186615404,6.905869331096698e-05,0.010432886308143142,0.023373211298307533,0.10978335646736113,-0.016237273611600236,5.350930072358171e-05,0.005208631648818646,-0.032501953778991705,0.054445758977791914,-0.10231316108432253,0.0002910548269434287,0.014003931908564674,-0.02063970793199281,0.08963184275368996,0.03791697509944755,5.726056092228176e-05,0.013047436713629769,-0.024662859832124885,0.24761177048559774,0.08289819583637506,2.5698243190490105e-05,0.010981968447078758,-0.007947107142193485,0.024994037330769412,0.005030069279916378,0.00011114287290752637,0.011422744792269906,0.002618608555815062,0.009958126801982627,-5.5108403323712524e-05,0.0004144965321034677,0.00754986596921355,0.018862450206341752,0.08744854909040688,-0.030320608648200065,0.0001235427584718156,0.006962169652113752,-0.002856141051621515 +2019-02-06,0.015642969042567994,0.10234654898322948,0.016035337796976468,0.0001616339426059197,0.025641274260937204,0.010029361865861574,0.036388540174086145,-0.0020031690092492433,6.613314781090525e-05,0.0011289150889287984,0.02089860989470206,0.07850913676787807,-0.0146885769839395,0.00012313865384931701,0.001422211478933101,-0.01094594027635638,0.011453475346182213,-0.032719803526820315,0.00032254004720218163,0.009721168976436339,0.010982271810753478,0.02599174362116721,-0.04422373509986209,0.00022108259117370544,0.014870030832670746,0.008291523580377493,0.02348495769545304,0.0005373812022895305,7.708880221723119e-05,0.0017268439097565874,-0.0253016733776308,0.09999106678589283,0.013863813211025366,7.424682700280109e-05,0.011311765595637178,0.009285011161216867,0.07369126827329879,-0.0032619761434104083,4.320808449448369e-05,0.007708762955583351,0.01360480291868888,0.010008744244590898,-0.05526350659574493,0.0010482320874192462,0.009499562823288621,-0.009526423003458398,0.022383785096689708,-0.001791783650358264,0.00014881894467244723,0.015060970091477983,-0.02402601463432002,0.017820225885458892,-0.08479198712898876,0.0006590113444538569,0.0009898503700553202,-0.014028914417726846,0.22583637838207968,0.010211421210153499,1.8511983504922108e-05,0.006456408205840692,-0.0264362022933502,0.08602051589015905,0.08098047616538656,9.129522463097587e-05,0.010010847798356865,-0.020694440185142927,0.12119121187286236,0.005080907583772506,4.806670728123134e-05,0.003955719914945271,0.005032928815304934,0.0044175046734691885,-0.013352229985693872,0.002222116083666514,0.01477625435153837,0.050315229696516806,0.29639714106475173,0.018158706881304734,0.00013969393695861197,0.0043772428468171224,0.010160368156568003,0.048763894928762055,-0.002402827687260961,0.0003226408029364559,0.000426245881043988,0.03151263636696776,0.17036442269751875,0.007885445768251637,5.210348686726187e-05,0.04014264023725453,-0.0083865444741094,0.04099331243003,-0.01739878187278636,0.0003371761514718922,0.000561950334123582,-0.010018431953264122,0.13640354380378808,-0.01958846855221228,3.0479253809520043e-05,0.005689570379694562,0.0021079004849612845,0.023323228455715158,-0.002894240064268605,3.019556404573338e-05,0.0009569856544992848,-0.017635923631059792,0.04834999870140862,-0.005224191891608299,0.00011749638328744493,0.02158463289003286,-0.012427509236917086,0.09370811772628833,-0.007620254698451276,3.0633685982586534e-05,0.01481408330739148,0.0006158534789378538,0.0024100083857501145,-0.007344314543276853,5.665473697818907e-05,0.004925814522074807,0.00828348429197607,0.032826660285930696,-0.02214491047674166,0.00011538117247715528,0.0007102438066591392,-0.018548937802980434,0.020123674890588906,-0.032182890417766674,0.000526850399766555,0.026106901296660906,0.0279811914646335,0.09118384858966033,0.007930222294711742,0.0001291618609898066,0.0010814841060294215,0.0353694277397237,0.11046762709150566,0.02087907978438992,0.002055001686725941,0.023014533215093273,-0.01464257883338153,0.11456719873053171,-0.007466076751328716,3.286544157955542e-05,0.002590831299509444,0.07133849009500608,0.206562263058898,0.016456333011474096,0.0011291306590544296,0.012522152274873638,-0.03670404371123046,0.2743831938379687,0.0023347925923665135,8.908037767702825e-05,0.023567060217760925,0.008401986242976701,0.012023508706182734,0.005367105500920796,0.00016492865989789192,0.0020047844428289635,0.013686985650304425,0.019853983743460594,-0.03660635374573496,0.0003956981900707557,0.016295434960186643,-0.051040736209877036,0.19212903339870818,-0.036509593682522545,0.0020590849927736602,0.004981972212646768,0.004021874496132182,0.015586910130113327,-0.002062890795907462,8.278637248612352e-05,0.0008193138749248504,-0.04275219312612711,0.06093539170983674,0.04522991801004533,0.0017440783172412615,0.022781467171758038,0.027747788278415186,0.08157675261462713,0.0036627654479996076,0.00013476527304049596,0.003993675275239966,0.021998461471430444,0.05412441356133097,0.032395323317085535,0.00016476292014397693,0.004405126658529115,0.03268900475622037,0.12526824300043593,0.027555356811675587,6.369049691295307e-05,0.0020646925031835134,-0.014371232715217867,0.04835256027561331,-0.0727703523288596,0.0028170373488749898,0.034334136169394985,-0.03731001948073626,0.18783432349627355,0.002044985920772042,9.880776856367045e-05,0.0019205550182302918,-0.03770238714476286,0.21592631321329658,-0.0597493350131211,0.00012662634269654133,0.011155656780319479,0.01913795883980553,0.10570504559774954,0.0366538827028007,8.563446662110391e-05,0.002674025099291368,-0.027779728686849508,0.11135735205176861,0.011859558297354932,6.269840594184775e-05,0.021276546107816714,-0.004761919642733296,0.008915544531062632,-0.05336887476001145,0.00026041355298920887,0.0019256166607476268,-0.02085323912426006,0.10428872240542829,0.003509676666332095,4.9722224723097264e-05,0.001566708576616387,0.016317487339601585,0.17060690510544438,0.011769492946054519,2.467675022010177e-05,0.0016364394772969025,-0.012468277535577754,0.03544553506660049,0.012608017557450347,0.00012295717847357246,0.007238670434108794,0.00454673349351338,0.019081044866960807,-0.0013058933270585012,0.00037559976942795256,0.003594408760958751,0.009232609272629255,0.04473672645568954,0.000563041023295219,0.00011820396656192434,0.012795663121272118,0.0004876306416001482 +2019-02-07,0.009211339980203067,0.06797398250878633,-0.08224399882013167,0.0001433067610533413,0.01611858148654994,0.046702226467666,0.15463250622488545,0.02615134397167224,7.246817380315394e-05,0.017761382982793037,0.008484714258102995,0.03389459930493357,-0.0012661949093870943,0.00011579876334053197,0.003817756933527807,0.023580641745395786,0.02647652542359886,0.0011177746289595103,0.00030058166479347853,0.019720055441070628,-0.02379084006438826,0.04518085129250393,0.02231097778699113,0.00027552000657608236,0.008178247106396285,-0.017713847169962736,0.056296435704314494,0.03614032614901099,6.87034797263667e-05,0.010327491424399737,0.06529963526361907,0.22693431528712787,0.05452733231525151,8.443070956102254e-05,0.013713222455954643,0.015420132264736272,0.14358547203465943,-0.16299198366130607,3.6827837067180495e-05,0.0010476712150348322,-0.008134840718384835,0.007887259554440355,0.0002539268343853876,0.0007953672555668086,0.016870237045722998,-0.027944990827762466,0.05663496496899096,-0.0019393255504936457,0.00017253659443164729,0.02309710526485512,-0.020565647195568984,0.016520033953322535,0.035891289313742455,0.0006084933044852562,0.0022625365941365823,0.0009224465112021864,0.016335168764101522,0.006362192292883684,1.682830429201012e-05,0.002982433145977883,0.04634695556870521,0.11694796157075235,0.047772452128420635,0.00011772795307692481,0.026749095391622565,0.004754346833521535,0.03361452620079382,-0.05792134238763839,3.9813071587835235e-05,0.00024144787784645866,-0.03454584270750991,0.03192828086746374,-0.09620841916827051,0.002110295285222562,0.012870713500678376,-0.03669445720244885,0.23364442014361114,0.016489738454974614,0.00012924006324653353,0.05622076393071259,0.03523801364643042,0.21338303133102066,0.010947015568669807,0.00025571710016648007,0.010196049305828627,0.005447482632770759,0.03362103547306502,-0.008715814927459571,4.5640009427889476e-05,0.0028912747073920383,-0.041405602750789576,0.20318131365038064,0.011744160380277148,0.0003358629936854331,0.0019572627171429813,-0.019465457611795814,0.28274049251134703,-0.0014197922487364934,2.856977624556184e-05,0.02314037349085817,0.008444912141224788,0.0913437517913304,0.007363826903159671,3.0888583957724576e-05,0.008388925895825246,-0.023848349914393045,0.05983268747335868,0.015194466340151262,0.00012839336487555184,0.009049314801456234,-0.014986763771996372,0.11625143679593854,-0.0011578004813395575,2.9778437670863915e-05,0.0010264957764806913,-0.009581755248680318,0.023197709477587203,-0.013162793926391199,9.157508921590157e-05,0.013778255011629176,4.578014151926216e-07,1.7168353085279984e-06,-0.004213988856890612,0.00012192621443481989,0.00010576559087508374,0.027010055138435855,0.02889582053541361,0.009159945202478734,0.000534276412052954,0.005391451328837645,-0.0019343741436607426,0.007005900354888285,-0.01148620981714343,0.0001162150922998604,0.0069284449930073645,-0.02822574156153091,0.09414115338392504,0.012036592007441978,0.0019243542379589983,0.01092865163126183,0.010130881611545708,0.09835152126374005,-0.009345613425998303,2.6487950353351057e-05,0.025538471885736096,-0.015521704676585835,0.047346651060800216,-0.007545005290309778,0.0010718189225924894,0.01993166929819486,0.01443856631397308,0.12346964681957213,-0.009802233754810872,7.787346680234426e-05,0.008786368257119887,-0.029140630460466336,0.040669154243513604,0.07266042036002088,0.00016911385476443673,0.008052718569817329,0.01023887714230599,0.014609901555011535,-0.002519633351236794,0.00040226195144607834,0.006494087397142254,0.03491829989780289,0.14310678506879526,0.04005035503357966,0.0018912250275883243,0.019633825330169233,-0.04753657818717787,0.21067483953168,0.14435718024545538,7.23945070789201e-05,0.02316229753919497,-0.045389488645659413,0.06707343446272611,0.044406020320263306,0.0016822166885086252,0.012728275440075012,-0.03589696263392276,0.12265500284356129,0.04077695603551405,0.0001159547309677584,0.003014615534910472,-0.018760660282825185,0.052874327945511446,0.002917155222712061,0.00014383468781632564,0.005667449752276185,0.029994531887058952,0.15442166894838907,0.006868175116853055,4.740757836487802e-05,0.0011350617471082873,0.023937778078985786,0.0756659938346025,-0.0035298844461956035,0.0029984799811876048,0.021526895031594134,-0.036295843963359685,0.20063414691229112,0.05566780367390988,8.99896619218727e-05,0.01453855033438155,-0.0026772784037472006,0.01328690687843933,-0.049906708154332534,0.0001461269864199448,0.004074212297374454,0.02380460665627951,0.12653177234244542,0.05043180123537653,8.89836297353369e-05,0.006411868443122005,-0.008633112284504613,0.039802818764453324,0.0064771880281435205,5.4513109475299436e-05,0.011579009920953889,0.017271829990907425,0.03098509821984645,0.0024474723336533623,0.0002717783586242325,0.03047031183641283,0.00991055749149808,0.04113027476464744,-0.05103385985927921,5.991710898094884e-05,0.0025269562260555106,0.023892365514675197,0.29292030116859447,0.02848339705992441,2.1044613964859605e-05,0.0006680549418079504,-0.01822301478235616,0.04836495013632571,0.028707116921460447,0.00013170384305620053,0.005326029802491182,0.0028718635046929633,0.010727126766001726,-0.011299218121335072,0.00042199601783911284,0.005227642745823543,0.015397700763900091,0.07195023384791513,-0.012099830107741773,0.0001225731822952204,0.0017060139666865992,-0.0012026374776786778 +2019-02-08,0.013184265422174336,0.09033712518854861,0.022478118806186873,0.00015433920384808197,0.000978240112786607,0.0415303830541711,0.1397137028168459,0.039172953129123916,7.132429055786702e-05,0.0108548126021038,0.038003785671419085,0.11894521940456147,0.03613255551709934,0.00014780089806056077,0.00431269452963407,0.01709747972506096,0.020826424060466996,0.007697969678522476,0.0002770672834421612,0.0016716856275775607,-0.03875531998523738,0.08978713764278282,0.05290109447708645,0.00022584733620638377,0.00015423835516466884,-0.007153504660206253,0.024182535990151764,-0.09390449680305264,6.458977347854382e-05,0.0007092562274531609,0.007323492835854573,0.030839813971770096,0.0005125651086113552,6.967811072630611e-05,0.016920462468642164,0.026900353881285637,0.2674714658045325,0.014581985496495382,3.4488884672017886e-05,0.0028443624940450076,0.015337706280561319,0.014566383877477886,-0.001516289979485157,0.000811995181946036,0.0028894558268654173,0.010523469088838843,0.023568999651803542,0.00942022845393309,0.00015612759365764677,0.00204173998662542,0.010338722422499667,0.008302892501291192,-0.0054031897743015405,0.000608641860616785,0.008256839859134538,-0.013672108375947647,0.2044987959215147,-0.04794007778049267,1.9923586811351317e-05,0.005882779119152216,-0.043094286229143304,0.12714958427968756,0.12036566742659609,0.00010068291599729925,0.011582910061077898,0.0032226585086280878,0.014247783345519027,0.0007178865141935355,6.366911356173885e-05,0.004960113471099342,-0.008279594122093824,0.0075637523939661505,0.00400744962136814,0.0021349844524836898,0.0031329121404275856,0.018280251000162957,0.1344762242972178,-0.032651752309556074,0.00011186359067311739,0.018973446562878884,-0.028281055106464857,0.18254588791049156,-0.10826148671972195,0.0002399008493885936,0.009412356660922862,-0.03505230859473937,0.21007902738904816,0.0034222523738513546,4.6999678201386816e-05,0.0059453087323345435,-0.01235691156220779,0.053971746762538624,-0.02188613445792828,0.00037733776429209635,0.006524067313890259,0.01587018964538391,0.20410456315743,-0.0018324749726776712,3.226707759427004e-05,0.019656675479138467,0.004325404967234098,0.045978024255555694,-0.012538116675257952,3.143099855528363e-05,0.0010611047284980694,0.004349996893753216,0.013890766511307035,-0.03976885631802248,0.00010087545143755314,0.011413151619580354,0.0028119636871415227,0.024202951640275517,-0.00010034456080715636,2.6836986708030493e-05,0.00489929509150383,-0.003813824976690018,0.011792107990530773,-0.06592804412252108,7.170454645769951e-05,0.0007015972243753369,-0.01120234028448442,0.03629002953124861,0.035124439338640186,0.00014114647442128362,0.012824621801120734,0.10459846758190068,0.11440311065481816,0.2562381808220478,0.0005225923525664212,0.036194691729165195,0.01872289183164094,0.07348904363606718,0.020627406421143416,0.00010723494704984691,0.003654436728165412,-0.03072604387342585,0.101356828476172,-0.060034674977614354,0.0019456862434143838,0.03336203062541648,-0.009263850803586934,0.0824525838149584,-0.006185916949694953,2.8891459243209208e-05,0.018431201036224053,0.020277483604753378,0.06585433847769444,-0.008773653184694469,0.0010067020133548428,0.0014148759799362993,-0.010001622731177818,0.07985289410291685,0.0009123855025541382,8.340756661112236e-05,0.013622403394418777,-0.035353473680582,0.050449958622557446,0.08970371968411754,0.0001653928245402697,0.00256715197383273,-0.005457836407188959,0.007454120315658054,-0.0008172095462136657,0.0004202696511150245,0.017132976549090656,0.04225413701358588,0.14150117119188174,0.04277538658845037,0.002314512565423451,0.006102451866593035,-0.02558473566513257,0.09022299708800939,0.031714603131208705,9.098170160072197e-05,0.012905385496754644,0.044306776771973255,0.055904942551889235,0.015632811322674276,0.001970140248523897,0.01656634800394591,-0.019256137220395327,0.07115086655701426,-0.0365176480928713,0.00010722721217249838,0.007755005018961554,0.03059155240471537,0.07750086113036604,-0.010084622868434473,0.00016001303562782589,0.00479812504303572,0.013729713678121907,0.061742295659225725,-0.04762498190873276,5.4274100240695894e-05,0.011071868709984093,0.030682664999296623,0.08656298219630436,0.00989116891671236,0.0033595331153120156,8.145904971065078e-05,-0.0033460154113130482,0.01772968771178241,-0.000596786696536131,9.387877664460716e-05,0.01977452386483434,0.006593209320739699,0.03312239310405499,-0.013959870214822496,0.00014435636615425462,0.0012406864009399839,-0.00456968476928511,0.02804558989805102,-0.022088827293828665,7.706733862275383e-05,0.0027488413295635207,-0.050905259282957555,0.21484660931976715,0.05816208371629952,5.9549969672317846e-05,0.0128161359297033,-0.03201491775737647,0.06888766860143503,-0.02776913360128416,0.00022658976949622192,0.006771267130884362,0.025385981962349456,0.1068632780164025,-0.0026146531990512765,5.907175190739861e-05,0.011370802176961934,-0.014184043235230776,0.13584388134271724,0.02974057833992653,2.6939606641489698e-05,0.0026940486394910305,-0.0028682296201018383,0.00907966958567031,-0.006767209685412742,0.00011042129505994774,0.006790303333682642,0.011130244369734478,0.04789216755583771,0.00010236672765762489,0.0003663263655807191,0.016536019433108833,-0.035365844014031124,0.170425077088008,0.06696825934124624,0.00011885633213608039,0.02961163205386172,0.0023307592776713897 +2019-02-11,0.0071583392232927355,0.04968663468019174,-0.005669025306814365,0.0001523558998112385,0.0018365854539031782,0.011271984097502874,0.03887062502741127,-0.010614685006691245,6.958079235260839e-05,0.025245837658698665,-0.01604632078862688,0.057337684439402806,0.03798419243061795,0.00012945908240983222,0.009468113604281313,0.002405094012530525,0.0020944563711112886,-0.05221790024923421,0.00038755076214583257,0.0025135412657403674,0.01333030410530394,0.02667640108457707,0.0029009871843829675,0.00026146321132167763,0.0030268097101600654,-0.019187608593875142,0.05719985035330086,0.04177556140232761,7.324410861517055e-05,0.0002242290444381457,-0.018908064706471415,0.06862350477105814,-0.04534237831763024,8.084702441793803e-05,0.029403823346908057,-0.007387612765023011,0.06835471191809919,-0.046752322343422255,3.7062463263029146e-05,0.00307677459501322,-0.01901868519552575,0.015419206476436376,0.008706006272117121,0.0009511811880660722,0.0037767616718821333,0.008458401174450722,0.019202028558758584,-0.020794695512534853,0.000154029198170606,0.019674045771732904,0.014503078851837378,0.009987956753460286,0.0024438218517626657,0.0007097541052767613,0.013706906974992142,0.0005638741338976484,0.007207180682189666,0.0062110250574069995,2.331522187062938e-05,0.004504105328406509,-0.048063514231895525,0.13724175869923805,0.04143361012267722,0.00010403519482729812,0.02590319898973862,0.029313896782996986,0.1563851478776688,0.08870271405247339,5.276426192612106e-05,0.0003112472775225761,-0.012144946515779721,0.009041147687321418,-0.00779472025427121,0.002619962140585809,0.009417350762512289,-0.008734306992442266,0.05437794311712934,-0.025314410536351393,0.00013217757629999932,0.024888828000884097,0.002162860066295202,0.014156835741349476,-0.038556193802146525,0.0002365758782525506,0.0025022709145882437,0.04074296494665127,0.284840612501551,0.027389235834770057,4.029133666120313e-05,0.007192865837779385,0.06089320090770494,0.3155915101092768,0.08147257878783612,0.0003180023282549012,0.02980833440750923,-0.05084714097270208,0.7231400780532179,0.021725686338564754,2.917926431272996e-05,0.005676167186311273,0.008591904685580977,0.09325369491789999,0.003863702549155377,3.078258668055461e-05,0.01193332646787635,0.024036711710915194,0.07114391803793274,0.006502026706787738,0.00010883285735973815,0.03492124619415194,-0.04129433629053674,0.27184965880022216,-0.01798813025568823,3.508763318061245e-05,0.02898210094550288,0.013907698049591943,0.03616103106807772,0.002917894828634518,8.526912968818253e-05,0.0028986444486549167,0.01252621613641465,0.05200473517077103,-0.06336852940586804,0.0001101350637594609,0.004144109202059596,-0.01471751385958326,0.01503905671369855,0.0033787639468178914,0.0005593574383904979,0.026493709620910705,0.011073791048744312,0.036648644383819165,0.005721016734114288,0.0001271816393608137,0.000524144454472214,-0.048685436841806824,0.16582610042065088,0.028156223311119017,0.0018843664266747816,0.009332431967440814,0.04703929901348787,0.42976833009117316,0.047688378960281344,2.814547792405221e-05,0.01724419706785365,-0.027643033280673215,0.07567850486386035,-0.04440993728960944,0.0011942202277786744,0.0024641125947078265,-0.03210544035477331,0.2809246788743448,0.04005639549148165,7.610520868870562e-05,0.004820572566371214,-0.007552437007524288,0.012281656636539394,-0.04979639956921816,0.00014513613262832738,0.0037692221259078397,0.0024849682784220946,0.003805979418703474,1.0186536037028445e-05,0.0003747643985218307,0.019435562219790006,0.010095185887469575,0.03798681714437367,0.0025200084968741384,0.0020598317838374227,0.025483920862561963,0.013167820711189751,0.04497269924864443,0.007250726210592078,9.39410306279728e-05,0.009536668706975374,-0.04077535742430254,0.05393075532345628,-0.018102043326040443,0.001879483275921566,0.0020841509154664426,0.028889382721620376,0.08945296921993251,0.028499494383249696,0.0001279556708768962,0.011764975629584007,-0.003224724180251799,0.007892164767512243,-0.04438706126465083,0.00016563679047187896,0.007579246149881004,0.029191796312388742,0.12776910279799414,0.024316411407834335,5.5763355607593625e-05,0.002488780525942116,-0.022596442915037672,0.08246670235133195,0.0008994113370656382,0.0025970451995219425,0.018505512559953363,-0.005857463893686251,0.02746731849204196,-0.0027449552273100344,0.0001060801017450548,0.009620424376692374,-0.020806716555449602,0.12088452094077559,-0.025708572423071063,0.00012482271987509404,0.007115074246379966,-0.021553524719912155,0.1080956349151546,0.005959637514436946,9.431023866653944e-05,0.009306282846898604,0.02124816320297083,0.09419526439711692,0.003959312723553209,5.669434195428193e-05,0.02679164552511814,-0.02591159363969576,0.05639494313386656,0.021498541607787282,0.00022401822676121802,0.014525779723056827,0.002546379594078625,0.010632425514817015,-1.898356905873222e-05,5.955320955106654e-05,0.013116455272184548,-0.009573821126870422,0.1218358820473464,0.00939794996025796,2.0274090591536144e-05,0.001772403416189772,-0.013364992632857812,0.04622213426081914,-0.07321844944370387,0.00010107126318293841,0.008148863093861368,-0.032231149581153515,0.13536418397141006,0.043515745018815125,0.0003753185217124898,0.001695883976632207,0.022938817979115116,0.09738057040732401,-0.08257371987386994,0.00013491819338171931,0.022984882450412268,-0.003151783142406487 +2019-02-12,0.04743664202774701,0.33547682335830414,0.13420675839207252,0.00014953332842022017,0.012333111337115862,-0.00865238399213829,0.02630041468185709,0.0006167858326786573,7.893756320095968e-05,0.005713165488189691,0.004971827139550108,0.0174070578714144,-0.00021788433635083442,0.00013212586757123434,0.017337406231357915,0.018228020115192714,0.020214806994538377,0.009106397822300693,0.0003043250880275427,0.000390492133981116,0.03512103202018949,0.07714028722040335,0.05928600942626092,0.00023822305498744784,0.004956668461705275,-0.004618976992822312,0.014195942359623435,-0.022568537433836963,7.104414819996358e-05,0.0005396074204047829,0.0005346224275126976,0.0021418073559866958,-0.04627505776054299,7.324139759532836e-05,0.006577283289241044,0.026256376548364935,0.24912997325683942,0.015426203255108564,3.614160417361206e-05,0.019987708573647036,-0.014735039761797642,0.012074135453886943,0.00034503292433318573,0.0009411092781950286,0.004987890365728071,0.013952310533150837,0.03178937383426836,-0.012778490119783766,0.00015347090231636383,0.018432210142839883,0.0026351229562035566,0.0018365012136121405,-0.003657342164129535,0.00070134874307234,0.007736866385462298,-0.010848376313351303,0.13673255779233615,0.00371737818708999,2.364370832775423e-05,0.005091106072697318,-0.010660619347263683,0.028181352300437012,-0.05108923292404758,0.00011237550210201453,0.0015666482990230625,-0.003755352312299529,0.019514115097393637,-0.010735170422430523,5.417059965843606e-05,0.005308544347237024,0.01564776762868596,0.012859645375598435,-0.000797188346968948,0.0023732657314192184,0.00923419695738595,-0.008485293207722485,0.04623276564938486,-0.0034070448725726887,0.00015103203979401647,0.012332290482903546,-0.04316117733198154,0.2571310672403843,0.029848475036886993,0.0002599243473686824,0.011431948949859662,0.01153743710843253,0.07375242300565989,-0.008295608567739502,4.406502387788293e-05,0.0024758849929143543,0.03923894602350354,0.2360759725007702,-0.00563309828130766,0.0002739380459595789,0.005559588228452837,-0.030385223123575077,0.3786955224792159,0.002987631233402679,3.32967994866854e-05,0.0013218677170120173,0.019881003978030682,0.17746276481243975,0.027503003613996484,3.742939246136122e-05,0.0032302653122481006,-0.03645224826432549,0.08665291760710316,0.04003729760508949,0.00013550767231695608,0.01162712389849874,0.06909700430198844,0.515786896332209,0.10385676272146555,3.094434471829285e-05,0.01281788713790429,-0.017119505663497875,0.047986439246108716,-0.007830208188429976,7.909519066171955e-05,0.0024792431454641406,-0.019754324463371508,0.06792667876485003,0.15800509081317637,0.00013297512211478385,0.004768010525706012,0.013766666800729395,0.011610015787271322,-0.029503372153238547,0.000677753161747302,0.001931636432832885,0.03510127835959234,0.1420718820358434,0.09135690259831122,0.0001039922102617585,0.007099108231793218,0.0034911109712121437,0.015441182434407714,-0.13624676851849776,0.0014511164804464512,0.010239476492913548,-0.0058725937089602704,0.057016019315912665,-0.0007072368518266385,2.648593189021487e-05,0.008922611789522606,0.024127098786227184,0.07802805854710972,0.0031118096954110747,0.001010940443047333,0.018807942691586754,-0.03437981322029076,0.25959183985916734,0.0396535023208655,8.81938130407491e-05,0.005399504658888864,0.018580689987330094,0.0283338579105995,-0.016515217765631304,0.00015477524920498242,0.010248982331193732,0.023139527467451793,0.03499554150544501,-0.005610095007668294,0.00037952962540080014,0.007141105608417053,0.012736464544117428,0.046273722776346636,-0.005281954107987648,0.002133363162405435,0.0024197265011624246,-0.032182840520101584,0.13118835417956126,0.011283517397703448,7.87081056442975e-05,0.020720347194455986,0.002503478881026612,0.0035176506485535062,-0.032047817007800634,0.001769165322316841,0.00601740105367608,-0.023375691770941863,0.07229846219002484,0.013874980581455552,0.00012810068402135103,0.017766914976448292,0.04228288029432899,0.12563387854763788,0.09125761971194588,0.00013643260524653678,0.006911392953600121,-0.04745023036035971,0.18108467459902144,0.06738083558042321,6.395441830310088e-05,0.005219249760741871,-0.05842396694694018,0.19408416040618007,0.013207826617670063,0.0028531132238979653,0.01798093656579244,-0.009491739744903948,0.050551079303104,0.0026800218677642995,9.340195356952748e-05,0.012773035943313077,0.025090700749797506,0.14438832606910837,-0.13019781144194106,0.00012602058566351282,0.0009800220544482667,0.015985632212479152,0.0859090460655028,0.021487921703001255,8.801153972299242e-05,0.0016046580515893406,0.01392693994295748,0.05938537088193896,-0.010386245590756005,5.894183122807835e-05,0.016767149441148054,0.030625311502663264,0.06103177817494134,0.01257815619870121,0.0002446548814788676,0.00849516096974577,-0.03304618420017266,0.11936715552922432,0.09257256376298804,6.884158331039689e-05,0.00015377127394780468,-0.009975184975948372,0.10724294005542727,0.010945158071544081,2.3998468735362434e-05,0.020749895695795766,0.023709207480138904,0.08014769432428924,0.07901735745764737,0.00010340343561657162,0.0028909981150254914,0.011435977394256017,0.05047570473523637,-0.02409105940971451,0.0003571238606996022,0.0029431216621519413,-0.019179910577586456,0.07883562796520728,-0.023039934975131807,0.00013934642869570135,0.011806653733147703,0.0033272063158613914 +2019-02-13,-0.0017262392036894866,0.010975863319850544,-0.007501891946661956,0.000166321682297417,0.015029137048706497,-0.018279695218813116,0.06874765092815541,-0.006855592750000781,6.380013737092772e-05,0.030185698707535787,-0.0035096350184026914,0.011957301562831578,-0.02483759449802338,0.00013577692754765896,0.008223647763607235,-0.001784317517975052,0.0015236595139052251,-0.0029449979927447904,0.0003952319706701123,0.00972584177371505,-0.008223934891196985,0.015447767979670457,0.001580148714957087,0.0002785554742790183,0.010425211303366889,-0.008149536968519458,0.0211737252773194,-0.13095493148745108,8.403929491665441e-05,0.0006293982625482197,-0.027790223539203872,0.11611180336695852,-0.06707523735492633,7.022722780053744e-05,0.005073896084532596,-0.0037473699212673376,0.034560644212615926,-0.042802046252859244,3.718290798477568e-05,0.0013240745864778612,0.009074163102615416,0.007754942540789276,-0.02177969259435408,0.0009023453475962123,0.022221885198595377,-0.02902673453895692,0.05572531893303216,-0.04212727387414769,0.0001821409111496928,0.006469015823269418,0.016177101932198668,0.00985835094539657,-0.1394650519661244,0.0008020857594961387,0.018185096440924208,0.00994749793540551,0.14862296724271856,0.035444824418396574,1.994576598761744e-05,0.005883198160935425,0.012993801065990063,0.03216214792190084,-0.02085808316918487,0.00012001684512097717,0.0012692597630694909,0.01996305130458214,0.11346776009690154,0.03390195616965252,4.952406209314131e-05,0.004714676310723324,-0.0022787889142687713,0.0021570966813462787,-0.004917061642137423,0.0020604280801908006,0.003195376691673698,-0.0006894647084010335,0.004597297940007431,-0.15072028845561752,0.0001234131673291419,0.013128448682901724,0.01764639419004173,0.10246966553615877,0.0024630050496599535,0.0002666667633013576,0.0005459108442356141,-0.05424953614884087,0.30307148723972127,0.0017465473650254823,5.0421052269996e-05,0.018586909221684857,-0.0014901427380778166,0.008715891033775175,-0.005484002062081882,0.00028177527745254006,0.015403615850589945,0.034424998491465394,0.43063625665051325,0.019011678221118926,3.3173673769904834e-05,0.0025266195159620586,-0.007492274847017681,0.08138020836001861,-0.019869075099045716,3.0759311646927626e-05,0.0113260111383092,0.03480031036061509,0.09776459689557244,0.01969861651913463,0.00011466325312426133,0.013361019636981717,0.03206384441254438,0.18620536381912528,-0.22415623603932647,3.9775512254890827e-05,0.0028434160529093805,-0.009026277286332618,0.023330807560870873,0.0038294235418205817,8.577412208665377e-05,0.006784899129102556,-0.0068647683315941725,0.024868995662060453,0.0223728984258063,0.0001262165295139546,0.00999232052120271,0.03801365579594275,0.027290203428505265,0.004603400351792788,0.0007961747979161162,0.009897573856958752,0.02161884468956436,0.07727257588322804,-0.07579344818887895,0.0001177587266559842,0.0023179736654389046,-0.035869648014179446,0.13127787778142358,-0.11810327766247262,0.0017536977401260642,0.004170648122082574,0.012702091504441342,0.1201092213560804,-0.018367241990396282,2.71945001577234e-05,0.007589759079142637,-0.03394476854112082,0.11474722958978938,-0.012699960783645872,0.0009671679859017188,0.005882501871816982,0.021802019134352254,0.14808773646112924,-0.009973282274216545,9.803999146513229e-05,0.02086286648697838,0.01822354952926439,0.028233104029550246,-0.015896159967545433,0.0001523420268410444,0.0075611658726088505,0.01470608272412819,0.026833186559418746,-0.00023136493306279274,0.00031457823274955654,0.010329128173485701,0.05396414528821381,0.15385725128626293,0.016626098548529,0.0027185521887823296,0.001989588173100766,-0.016570391898320203,0.05685178465000607,0.003963136102122053,9.351451976942711e-05,0.0014566468196009616,0.022980950411470434,0.02654936660686109,-0.040926474928492586,0.002151746042719216,0.021358631568647323,-0.012112809140887368,0.041181955841235636,0.0028968391564440266,0.00011653434570382727,0.010143800070725467,-0.007087455355633057,0.015445105158556025,-0.03470568028158812,0.000186020086846667,0.021720108696602757,-0.03691006511717652,0.17377774188340453,-0.06932922234517182,5.1839951534216305e-05,0.017725678285933053,0.04361538359836044,0.14251158724318763,0.0017080274741911585,0.002900731808325412,0.01337152601919016,-0.03964847241637358,0.19020866907197667,0.05618994524536755,0.00010368996392209105,0.017015177256969764,-0.01115020335402737,0.07408779272242533,-0.0036695306237174608,0.00010914325865434696,0.007877137874758959,0.0012164011998184873,0.006431033833665842,-0.003665129580928511,8.94632650573394e-05,0.0012792049670928545,0.027878031582731805,0.15335725232533565,0.007367674397902566,4.568831925729463e-05,0.01603016750976159,-0.04978984224049137,0.10459669882878457,0.05575408002294913,0.00023208772223915104,0.03430493928652125,0.0056848623305353,0.022005757450018572,-0.000660217982423416,6.423888673573678e-05,0.0027277196457985795,0.009869540631312656,0.1041748728491629,-0.0076320582550517616,2.4443604361700113e-05,0.003779828042809395,-0.0069009364356977495,0.021193846240252466,-0.002246704420272564,0.00011381702049768542,0.0061490207285162125,-0.006269062429335567,0.02886701119355599,-0.02073744249358863,0.0003423172187929095,0.007692939794022508,0.060648705835573094,0.36130163700468093,0.047724106711707424,9.614426965125546e-05,0.013688468139994537,0.0011599140880561244 +2019-02-14,-0.006822583171520974,0.05472453558620161,-0.05209243979599585,0.00013184186504121664,0.0021119048954279813,-0.00868825765947525,0.0324790355112011,-0.017649400048763805,6.418596787471554e-05,0.0036974460441086933,0.0011345286860324434,0.003640534642285597,-0.00862443430041282,0.00014416091089132483,0.0215758173006528,0.007704448100387561,0.007769262496933884,-0.019824195386766358,0.0003346798727915306,0.015550491009028986,-0.027707072977146287,0.06801338775736088,0.023764668312102895,0.00021315425831078995,0.0045112489180622155,0.02364561671201985,0.0645431330477003,0.1550828331429613,7.9992144939718e-05,0.004498762735796408,-0.03693705159008716,0.15185692267536582,0.01652338934196211,7.13702940993056e-05,0.0013651051336002356,-0.03328991926917955,0.34349588122975006,0.018918787896123498,3.3234551514082735e-05,0.0007482279285632566,-0.003910750874580367,0.003404296369171413,-0.00557838081836803,0.0008858854649711813,0.0012987470951959608,-0.015213425463291368,0.0361330081454452,-0.006101385881042362,0.00014722609004833956,0.009604924102503382,-0.0059567834917415565,0.004352236548511,-0.011872040604707673,0.0006689962476799417,0.004798705350807245,0.005060773408359556,0.06826442600248718,-0.06982809666099274,2.2092519102408473e-05,0.0014314104422144252,0.012814469309722874,0.03443013249807175,-0.02147747490579562,0.00011056380317371461,0.018446019945562716,-0.0043674246978399785,0.02406062833779634,-0.022639111925527852,5.109522070139325e-05,0.004032793337282006,-0.016808438446505168,0.013687512416180096,0.0038419202841765096,0.002395111932962911,0.015829641205910162,0.01293984817680399,0.07656133494956815,0.001854131059848835,0.00013908227669552194,0.0209531668891582,0.0021875236486760116,0.01200642532644009,-0.03518282161522146,0.00028212869793824586,0.021942081950583912,-0.004437932420213714,0.02723794453469894,0.00010111184455159702,4.58952045101617e-05,0.01297868207550299,-0.00972042960887699,0.0510938871126136,-0.02995428130248101,0.00031354748598706007,0.00596667068489531,-0.02331683881363938,0.2576530080422402,0.0028050614954648547,3.755473351734972e-05,0.006916476157493204,0.004482389460515491,0.05665090173644577,-0.11191088935563158,2.6435313812915493e-05,0.005825256591105502,0.009364898219634307,0.024960501670983154,-0.04866365551813286,0.00012085719425092035,0.012720580930682873,0.009498720639819404,0.05875539222162544,-0.022503322569042455,3.73430478795057e-05,0.013025832947499169,-0.010654223196775718,0.03385285733276541,0.003321030758749079,6.977564214252244e-05,0.0058537716196458535,-0.0038076172239730377,0.013690932535721616,0.009053097501696852,0.00012716536668600282,0.005372209832648453,0.015399609630677803,0.014459047789526756,-0.026404748660712674,0.000608759259603499,0.00480939499987392,0.0055756229472236265,0.02528204850210156,0.00115446171146807,9.282546762326205e-05,4.669337351028194e-05,-0.034652243526436664,0.12090911304167044,-0.0775288698863705,0.0018394648662370964,0.0045622592115233,-0.012963752564782261,0.12481496235526192,-0.006100322305990483,2.6708302005616342e-05,0.009750200339232051,-0.05571501864518689,0.18429959217160913,0.050521845622613006,0.0009883691374462916,0.015820450248432198,-0.009052088484434624,0.07164829616164736,-0.00794011636642842,8.413342454909102e-05,0.016418357396383785,-0.012333909846297814,0.01970989746922057,0.002095338574078211,0.00014769363890396932,0.003490166596796054,0.011277860080541366,0.017207230745055486,-0.006354032170973508,0.000376200729580385,0.014201609354453363,0.007159942538363314,0.024832849816370028,-0.013747498597014358,0.0022347724873933057,0.0070747996548877114,-0.0010613582300502558,0.003425535002480476,-0.00861086677466514,9.940859890319729e-05,0.007852268857513417,-0.02488026291729968,0.031426295547664275,0.01144530946356619,0.0019680628644073465,0.020530899460275115,-0.026380512576948387,0.0840496983523789,-0.03510753461830974,0.00012435495854667462,0.020911808596160396,-0.010729789750751251,0.02887491156237463,-0.12092001001834266,0.00015063674592809506,0.01239631638021957,-0.0207065024254863,0.0882564180521137,-0.04993437803417669,5.726303670600557e-05,0.00472051709121463,-0.015291424199220598,0.056195610635424345,0.0014753658851814,0.002579072789489109,0.005033757768139967,-0.0072805914250427956,0.03842513485677538,-0.00045164153439664084,9.425227249252466e-05,0.012946972902082446,0.03749007598114545,0.16314052371214596,0.06060737132269428,0.0001666538123084359,0.012333459482383312,-0.022607796621717757,0.1325628379960414,-0.024723853302757826,8.066500093664509e-05,0.014301454124775513,-0.031018554357583553,0.14995036516900986,-0.021116511536882685,5.199019190741859e-05,0.0022008265704935815,0.0629590488431026,0.10537368937613267,0.044394811051992215,0.00029130998200330307,0.018416259453620437,0.018063429439685627,0.07157755832351526,0.00012131756410180215,6.275346391282478e-05,0.011611946948653487,-0.026918244376940424,0.3412613806976552,0.016111887859694266,2.0351239885768593e-05,0.005639528187127143,0.027171361101360904,0.07068614633647231,0.07944291002113131,0.00013436496806852735,0.01164843241438698,-0.020019018914162946,0.09015418205129315,0.031604502708214584,0.0003500135708810729,0.011768227547144412,0.004567070043416496,0.026108082078069594,0.0018393642173071163,0.0001001923352012665,0.009696269258309043,-0.005696234945521252 +2019-02-15,-0.017165070942969006,0.12438299655503078,-0.0029140610552405286,0.00014593893454127203,0.0021260086718629186,0.01570932129923803,0.058626512744921214,-0.019356603820034818,6.429450941711048e-05,0.018112260217344835,-0.026678579127198135,0.1031891155134584,0.03646155317804946,0.00011959857644882096,0.01605948720461576,0.02939204964622224,0.030407781266700417,0.03683557856179524,0.00032622181243134,0.011712227118904368,-0.01028534322281474,0.02525262683896185,-0.04291094203674584,0.00021311302804718747,0.00467621978466809,0.003607195379446405,0.009687721014635246,0.0017895605159575084,8.130079310543035e-05,0.0037996975326890616,-0.014404446351421404,0.053222075352787696,-0.00035876384793927067,7.941355173939784e-05,0.02504010922236888,-0.007841626529202325,0.06649048193436391,0.002468582869976688,4.044317923642001e-05,0.0012914168167577657,-0.01101936338025056,0.009962784977753582,0.0029852195694628453,0.0008529440308195896,0.004864740989806622,0.03168306725320195,0.07370029854246478,0.005308354756565757,0.00015032107002208438,0.015661532371465156,0.02217054064818641,0.015990177464207583,0.04045204398735901,0.0006777154062931311,0.007783307405873206,-0.0030240413595223623,0.03831948915434406,-0.003159895207886317,2.351748118966664e-05,0.005251188447931716,0.04184633912988257,0.12842614648921133,0.05501657980496877,9.679547530547292e-05,0.01287658941462787,-0.00485095130326022,0.023861422178621642,-0.1315302121398695,5.722587060451123e-05,0.0022245993418869656,0.013861405133981807,0.012242223847912282,0.003741181401165653,0.002208360209387689,0.026897209556789342,-0.024709196989065683,0.16579451604999298,-0.024953599721366362,0.00012264238233248518,0.00565749939912008,0.023110060916731026,0.11968494715884585,-0.027539730278512878,0.00029899903714832856,0.006989085316618836,0.011241536101988768,0.06484439836600314,0.0009269250025188096,4.883308375517725e-05,0.0025609669976887073,-0.02922082034892771,0.20551207838638794,-0.012183032289835184,0.00023433753662664995,0.0020750105433990033,0.02563401076792728,0.29638917240956125,0.013415879639295017,3.5890909152273156e-05,0.02458855832719438,-0.0078151782271923,0.08389249735013161,-0.024421757590100412,3.112414807833467e-05,0.002890916322951185,0.03341569074719946,0.09796813779654848,0.006924272253924556,0.00010987233288848672,0.025798310082485704,0.004052953140033592,0.029229587451818917,-0.00016877879195447784,3.202884463782083e-05,0.007821027763970144,0.017831403468326762,0.042024165304900066,0.018577534772110108,9.407274419473126e-05,0.0005022743945380589,-0.009420046344608418,0.03687984999132406,0.0067079048368954486,0.00011679183692115337,0.0007313401771779546,0.002078378442497953,0.002032798529518494,-0.005387474728871411,0.0005843941403082994,0.011405224802367935,-0.004835654398182081,0.01724744849638095,0.0015506774988681624,0.00011800934688939912,0.01494930778317339,0.010246999044540623,0.03475272145705644,0.010701918289897347,0.0018924614907326704,0.000626298064996754,0.001933186334446065,0.020540986659982215,-0.04916454397127003,2.4201072418150572e-05,0.026729511761437647,-0.0016355550015290045,0.005084921890074087,-0.0016742231917492377,0.0010516037766962914,0.0038050270155107757,-0.0004845990893099621,0.003970408622292496,-0.016163263953349414,8.12780043304893e-05,0.0032678465291837325,-0.003920087716351893,0.006368068996394869,-0.01722019391662523,0.0001452892262866474,0.014084817263196978,-0.03174470359265574,0.040974777108587726,0.06010769362513024,0.0004446912563699678,0.011193037414677283,0.05278392238546129,0.17113815097229707,0.049618261271464,0.0023905903679674045,0.010799612630291687,-0.03363102385599609,0.12418063171419123,-0.00814897700926933,8.689135999299618e-05,0.013180585476367752,0.026523869454675875,0.04077470940394732,0.001594450252736612,0.0016170490701035512,0.028817486452643554,-0.03302949741760016,0.09812284824491896,0.003187965131373136,0.0001333668383784707,0.0016771655699314226,0.038207939933318176,0.11980503698917305,0.08391195189964591,0.00012928225566132074,0.003321393942332874,-0.007566696140438302,0.03614478508166237,0.002933403236289337,5.1094549273711166e-05,0.007132802809741892,0.06273292882894246,0.18278001284393283,0.1016827568614886,0.003253006405677238,8.1882915616474e-05,0.030321513646839358,0.15612199382225966,0.024972391543633655,9.661117390067416e-05,0.02235369657906956,0.028492710184020605,0.1702313598439035,0.03779332039582173,0.00012138219218041192,0.017866813139763665,-0.01670375646898287,0.1192483437895519,0.014224718765987937,6.625375423710298e-05,0.0019142143923209015,0.011466990500569738,0.04256700266887536,-0.06531713571818276,6.770547307692502e-05,0.008887114742133963,-0.008803090211059702,0.017648942171266075,0.0006925293585452431,0.00024319008602767617,0.030912762484327526,0.0020232471414455464,0.008687557941432182,-0.08889852284098723,5.791160444114053e-05,0.005196741671742162,0.025154883443327877,0.2715098272137297,0.005005520015711432,2.390386026809901e-05,0.006236263285654635,0.007594629761781959,0.02771035363706862,-0.11698291792837488,9.580176341119701e-05,0.00400553262266166,0.010965039842746284,0.04717446292455714,-0.1311161879950564,0.0003663795462987279,0.00972489160107946,0.028085044650838085,0.11763645605313083,-0.01879985166246322,0.00013674296179493685,0.0005410652695886742,0.0067846766128846015 +2019-02-18,-0.023622346490176672,0.15180197308586588,0.016866603079865643,0.00016456300260733734,0.005164223807257901,-0.023219565520906926,0.08108826696594115,-0.03845600274853844,6.870788766927712e-05,0.00891418116988723,0.016384850446337987,0.06195534045335323,0.0016629659316745075,0.0001223378766323749,0.00896069946786298,-0.004099074891671614,0.004229313859191788,0.0036981948552348514,0.00032710244766072805,0.004949206844973088,0.00979633937480571,0.020280754701580878,-0.022863847565053653,0.00025274203737823145,0.004675820563885952,0.00645349829231697,0.019090213370686285,0.0090543444224844,7.38127110590171e-05,0.012612355130788577,-0.0122479687236272,0.041826904909603335,0.001787934180182048,8.592077681551123e-05,0.010400901596621341,-0.01718774971962437,0.13681250394089375,-0.07899861589315707,4.308160198497816e-05,0.002179266279956775,-0.002268468754803097,0.0018215376905204022,-0.0005315499774542253,0.0009603718606025115,0.011391857268822102,0.0117981410456395,0.027607214475430946,0.000670151463782048,0.00014943519030517695,0.01777946725598028,-0.0009577647660994532,0.0007046152043951777,-0.09420356985986045,0.0006644024179491114,0.0017778779192623606,0.002296387448019574,0.026590745481125243,0.012261454120912695,2.5735786239911874e-05,0.002312399937321968,-0.024644901473459845,0.07841112542395473,0.025950366736104357,9.336851184274992e-05,0.02637431351602622,-0.0223778470571955,0.13682608561896956,0.07006035710686416,4.603744542083957e-05,0.008048401353220894,-0.024003974926687745,0.01691301801195471,-0.015583214111775961,0.0027681207168711716,0.005880210826029834,0.0005089251624300397,0.003400096943972627,-3.962222468708749e-05,0.00012317277667892872,0.04515738131081722,0.03657085919786129,0.22531746636873617,0.010840637728853743,0.0002513324337187049,0.011969075741595388,-0.014169319598176643,0.07538103154764494,-0.0034202468621366707,5.294779466386694e-05,0.004435901381410738,0.016704581218081084,0.08685696440359525,0.010324848425756365,0.00031696970297146913,0.024413093127318323,-0.0021901584844943615,0.027015227135136613,-0.003396257131777341,3.3643188616700136e-05,0.01647335218716621,0.01747008948121487,0.1874448455831653,-0.09315144905287216,3.113890495830289e-05,0.006320521644304146,0.006461626650156064,0.018898029239162287,-0.04533364239943058,0.00011014076795867593,0.018164283805603317,0.03734453148656102,0.2650905459942521,0.03433434477960182,3.2540569678507563e-05,0.010764534289535346,-0.005247854014560177,0.01693813924916253,0.0007029271368299338,6.868998613011365e-05,0.0057343689807245355,-0.009191919608723943,0.03736572742640302,0.016917830116940518,0.00011248157053940539,0.0009354556874460547,0.015333555315661062,0.01526016369288958,-0.05195166034582784,0.0005743269997025965,0.03522155460845383,-0.022850603006159115,0.07743744488203345,0.04421846388743228,0.00012420316408248518,0.005584253522135535,-0.018750080110239455,0.07769861803320126,-0.009143594344948972,0.0015488487439398516,0.01500633268520237,0.015437485082201607,0.11336929846407141,0.0007393517536774954,3.501573823682951e-05,0.01110492472023591,-0.00952620578057361,0.024422263044942553,-0.018620372189360974,0.0012752793396303495,0.02515185239680331,-0.004221195171193844,0.032500717254110224,-0.05117477008692967,8.649044476799058e-05,0.006793851650265483,0.03368265134992205,0.05076068110239701,0.09939296587243639,0.0001566117041886816,0.01752184079590425,0.020441268424141103,0.03152199549897431,0.006552674121698883,0.00037221858372277563,0.0018273690828162522,0.024585340675514895,0.10285611135041124,-0.02965685169315777,0.0018526631814421862,0.014904217204366032,0.017921164333455655,0.0680151399557235,-0.06054582198797505,8.453781070278197e-05,0.017556728265063454,-0.11843097121404517,0.15276931368694752,0.22706142843163674,0.001927109334474141,0.024941242404692917,-0.013882703273219627,0.04458835644957748,-0.002264517966262419,0.000123358367506295,0.013318438204877788,-0.03498654119206055,0.08270119344583422,0.02511017639350425,0.00017149426808818743,0.014100956232049912,-0.0148510496514877,0.06313728627907594,0.00938505384056903,5.740968496264541e-05,0.009230230259673709,0.011928289222566597,0.04628693012830551,-0.005132009330545523,0.0024425183806162957,0.0060526721120289905,-0.005900420117383122,0.02736557698244541,0.0005218998615299263,0.0001072553332058562,0.010924538138772486,-0.014689994301560642,0.07597043771161661,-0.011420041538070655,0.00014022898258544384,0.0026497355297104273,-0.049882054682871456,0.27547414373671186,0.16802637933787867,8.564700704513222e-05,0.007654921439433677,-0.0019834811622914165,0.008973537736224143,-0.015065618573896022,5.555354552788835e-05,4.728402212737684e-05,-0.07632656819516498,0.13757387020603212,0.10466553408679126,0.0002705011869637569,0.0548076923201476,0.013358733931236858,0.06058928032640838,-0.022074265443446667,5.482566168876052e-05,0.013004395294045307,-0.03124268662068759,0.34725284542119766,0.0526470198287447,2.3213137561685085e-05,0.009338095489606745,-0.001433979915770366,0.00499409606857879,-0.006008798115699648,0.00010036797010736457,0.010415467314466907,-0.014182383237421011,0.05672580146114726,0.02850058145264028,0.0003940910274061547,0.0005580592933396421,-0.017079130723964574,0.07818272590739417,-0.013785142014267008,0.00012512000417988161,0.0066991614819306485,-0.0070412133071389256 +2019-02-19,-0.028538457845818644,0.20881497195692522,-0.02035502850837208,0.00014452915076564588,0.007917776702175852,0.02186442199717754,0.08328179889247232,-0.01565365700622067,6.299389034415914e-05,0.015188199924019275,0.011729654381299902,0.03910150222753246,-0.005437124150479593,0.00013876788764730023,0.009178010810172763,-0.01326871368638609,0.01115710658312532,0.00403141980695755,0.0004013701745840368,0.003593181231030514,-0.005490334568201144,0.013861779482202229,-0.13134277636281025,0.00020724191504598477,0.01509627988830204,-0.015742164203181263,0.04171249650661062,0.007942142205278382,8.240337408162931e-05,0.004891485156358131,-0.02570338922669602,0.10136964356478882,-0.011017746225407904,7.439989601769655e-05,0.022814194144055052,0.008891693282357978,0.0837189110388151,-0.004590557535249748,3.642164165888601e-05,0.009225184471416794,0.022232257925491182,0.02032129533635865,-0.020570000856394977,0.0008436784793477034,0.008040834100886022,0.022887387410762395,0.06587771330417133,0.02032871668345336,0.00012148414218567876,0.005743397412364867,-0.013147375793585218,0.01061486159259586,0.003647707261127324,0.0006054093153580331,0.006796842072563227,0.007458330809318387,0.08669952090224405,0.0018644919970156688,2.563585072875866e-05,0.0016641680072671018,0.030019585340805413,0.0940905924325403,0.01956555897329069,9.477843295246024e-05,0.010447649290444224,0.0146766658111905,0.09048491378274688,0.026197062901615643,4.5657596620393565e-05,0.006635562258457465,-0.017616270355364404,0.015902298773858063,-0.004851627417727051,0.0021606132275396837,0.03799385716912739,-0.023291063469348106,0.1497392941873672,0.0034867458731230607,0.00012799872537865234,0.0009420156789322912,-0.023687218603812586,0.1395627131703688,0.02658237645394663,0.0002628166626957202,0.01399920130520969,-0.056560419514505376,0.3020418941639168,0.05346056874629648,5.274804801601975e-05,0.024299003134933352,-0.01232735852636902,0.06314818222124971,-0.004142631970278933,0.0003217332759396348,0.018290918670792772,-0.00989354702036589,0.13551904496142805,-0.0007783514474110712,3.029576483576893e-05,0.027897391018269935,-0.000890571906821474,0.009570016562363686,-0.017753254166314052,3.109123768365829e-05,0.007199093207869661,0.031401094142459354,0.08189335551176301,-0.030760347365904998,0.0001235147632911815,0.021969199088229183,-0.058441225384722115,0.4469022194911271,0.10462306158814426,3.0206414535746395e-05,0.02262771710436596,-0.008262947700360571,0.023583126722448652,0.0032286574669487043,7.768031921745554e-05,0.014352735269515433,0.0022378223710807646,0.008278103884211904,-0.039191964276551215,0.00012360707641829245,0.0013963426248276812,0.011754555719451597,0.012192681985793711,-0.007196221490617825,0.0005510392493845469,0.008070480613568652,-0.02604103958849878,0.0898561745881272,0.01421105074691103,0.00012198218300128509,0.003043611734375996,-0.018463459924905716,0.05633118383508369,-0.009208790626700363,0.0021036979536567806,0.01898146534247698,-0.004538067679923886,0.03674537114396807,-0.009183874990975737,3.1757808499594186e-05,0.0025125794048239444,0.014863440506378237,0.04028258326328772,0.0001500329470108734,0.00120634993585707,0.007267478464822716,0.009842876397486308,0.07432421151554669,-0.04535706315567435,8.818959823762535e-05,0.01036177166050649,0.034445896313203786,0.06209980275827774,-0.0012410438562130545,0.00013091597831045544,0.009503334993571633,-0.045095335999688506,0.06568991171058712,0.09445984662966624,0.00039403687196521884,0.01887706614079759,-0.02447041690292141,0.11429657216883518,-0.05318628866488046,0.0016594283441222183,0.013124655171702512,-0.0006965806243883237,0.002232041014743177,-0.11540311140125713,0.00010012893339962482,0.0014819930378840646,0.017539622874251613,0.02644502097264078,-0.06462934517561755,0.0016487451356171161,0.01623045500734177,-0.00601764407218497,0.021152344559780458,-0.08531816273303809,0.00011271559840010656,0.009828053710133781,0.013741326606671442,0.036385099159911,0.00796872836855539,0.0001530965751435665,0.01445288750417346,0.020174075177200667,0.08253429907868017,0.010385446044198464,5.965860479095645e-05,0.0054249036191628686,-0.05288796395556277,0.15181932383775026,0.03841261435495864,0.0033017778767768517,0.005785834006991491,0.028898459368493713,0.14072334451108293,-0.020161958318099898,0.00010215252659755746,0.0014059584994062539,-0.02273330352893782,0.12108985473984885,0.014285373690341979,0.0001361493513971601,0.011468351367247196,-0.0026819175544834364,0.015186897379503787,-0.00339957372581192,8.352664996493626e-05,0.0032493065997628947,0.036887439847532955,0.1748507755130724,0.014128787671483681,5.3022273593465796e-05,0.002932062847057078,0.02495310399272595,0.045432115596447636,-0.037073804222403625,0.0002677879372472976,0.03275810154616198,-0.0004021278603021741,0.0014046378510605706,-0.007265887437965684,7.118920969326548e-05,0.012358075211423823,0.017193456531144298,0.1876875790689416,0.009340479696659427,2.3635181839991493e-05,0.013201887739943713,-0.02731978569609122,0.08613048586602315,0.07677974892055132,0.00011087390806645662,0.0009012744212284344,-0.007855497909426232,0.039827585826857304,-0.03467152084428683,0.00031089784097991237,0.010196828142559776,-0.03675200855039418,0.1717200091543716,0.06716673086556403,0.0001225834872323373,0.018445974404318288,-0.003187068130087318 +2019-02-20,-0.020298777350980905,0.1640594449030125,-0.12200183400697381,0.00013084442594017289,0.00044109450898804177,0.061504595588627094,0.20819586587811115,0.11640863715512227,7.088363690634568e-05,0.010354862284903583,0.03729045800824158,0.11028116963641706,-0.03524992223503129,0.00015642045988900486,0.0007248091170503195,0.008550270567867401,0.011172413120309492,-0.02524794766345869,0.0002582859176489363,0.010325495516710352,0.034489041554121434,0.07686810574981183,0.08167727534274351,0.0002347646585852675,0.003919850158989485,0.010761133913607711,0.03336951800876959,0.027070575263343843,7.041332326007309e-05,0.0035201755162412264,0.039757629605707674,0.18036032329447904,0.016174480168854748,6.467989906018902e-05,0.001013598954015153,-0.006810374607254584,0.06310617837875222,0.008074884372813758,3.7008180608025574e-05,0.002778437609945875,0.021569078428315885,0.017258996731100994,0.0170768954843391,0.000963742097066718,0.010606885799615991,-0.001052038574973026,0.0024646349557274684,-0.009100824006225064,0.00014925914412186315,0.010128057000874312,0.02489342642749099,0.017191805879892934,0.06260586324309488,0.0007077624835971235,0.0017533765316212362,0.0013044937192622282,0.01574338927690794,0.009105335309688885,2.4692584450351183e-05,0.00012192953041888156,-0.05327975752733746,0.13274936743095686,0.08278589752116382,0.00011922870236391603,0.0209437200490567,0.0014268553845788682,0.008049097925348862,-0.0009211975706350697,4.989931292609952e-05,0.004030709400763738,-0.008191338696896651,0.007294395728705615,0.002863325882253022,0.0021902240103381446,0.006199297964308258,0.0050240231638178775,0.03418104113121926,-0.0018075832957592808,0.00012095350390498219,0.020672874109594334,0.00703766964749421,0.046390973643459996,-0.032507686713555514,0.00023491114481459234,0.0021533250019188377,-0.048084883631997595,0.2760597926978503,-0.021554735599869486,4.9064385938616084e-05,0.017717628798942838,0.04165732678577918,0.19465293289366303,0.0432782171157588,0.0003527095776455944,0.022145056180423044,-0.027345065608143437,0.39252700886548475,-0.16384866466941903,2.8909438466626807e-05,0.007036423753727303,-0.0005812339507969377,0.006052947410068756,-0.016922890000497123,3.20823212058354e-05,0.0020254587983181533,-0.03125317900307753,0.09148734957832909,-0.0045075029797401675,0.00011004134983833922,0.02167323755144695,0.012054954553566711,0.08591865363091931,0.002435607420535032,3.2409362664958334e-05,0.007200243504512611,-0.0036595987880381118,0.011107801267523046,-0.014739162444902885,7.304369869207968e-05,0.005289986711138049,-0.004579570621727925,0.018677678570590977,-0.043277788007820416,0.00011211157635481317,0.0021927116031296933,-0.018482326027212132,0.021649045819425616,0.0017811233879544471,0.00048797034374792005,0.013063847980913881,-0.016842242439033244,0.06468242774129349,0.020663590234732434,0.00010959723855075993,0.013035081439741176,0.01809339445165064,0.06875224857340524,-0.016867479387043288,0.0016890881669610028,0.014732796610847332,-0.025079612861310916,0.19933052975314572,-0.02392726523407679,3.235409099424224e-05,0.0014280667884545547,-0.025277389449798748,0.08001808230086681,-0.0029605502249156067,0.0010327979102567769,0.001427082520462401,-0.008987579760329139,0.06972479281212988,-0.042876967717818515,8.583831193559679e-05,0.019805006650634224,-0.0030465296948298196,0.005052099006306043,-0.03652818539206463,0.00014232426478089202,0.005883941786728087,-0.013564393452638863,0.018248919035165338,0.0017705910608905463,0.00042664547906987494,0.022040040370199212,-0.01593553089582966,0.07181272530054912,-0.019349490203022558,0.0017199486035313438,0.00014216067786776074,-0.00945627575725882,0.03476456872615726,-0.0030560896413350906,8.72717435637101e-05,0.006337021876529576,-0.004286475585878605,0.0064197350682174475,-0.0008261030321774223,0.0016598178871046958,0.0014500617005211939,0.02194974210511197,0.06569286531975725,0.03746883035633432,0.00013238148654408762,0.026067392911317256,0.0071136553440442965,0.017379594429059717,-0.03371303720913742,0.0001659256617595138,0.016570397082856618,0.008713708373661287,0.03394204435301858,-0.004398155572907974,6.265834930491452e-05,0.004463762034515151,0.004209060879461254,0.013623673472719762,-0.01109478545959686,0.0029282559827740863,0.02568659859126569,0.05516155439967417,0.24419887047530445,0.07231502695643709,0.00011236561046016914,0.003148143964362257,-0.0038864598525067255,0.023014691169650287,-0.00019209763459752895,0.0001224643885946943,0.00830963302151488,-0.010306803559557506,0.06371898077326613,-0.0009568491773913666,7.650747642759774e-05,0.005162940387553612,-0.019402138963663478,0.09538263027121799,-0.02374507364111158,5.112433963420416e-05,0.0005273489987022737,0.009552900949598389,0.017345364907540035,-0.004296411718375795,0.0002685228376214161,0.0024351817717343663,0.004254000412591868,0.016664834458637808,-0.0027821020741139748,6.347619704894098e-05,0.00517252429345922,0.004832154190900077,0.05432705212003062,-0.02523386682697096,2.294858589658575e-05,0.0010365236539071764,0.003174880181965968,0.011054718329191525,0.001907211558572606,0.00010038957672440997,0.009266321510480187,-0.002712391524076605,0.010688940543269096,0.0030955547168787854,0.00039998682651786914,2.1752559512895533e-05,0.01617785381289535,0.07866747957062976,-0.00046341861502379193,0.00011778702877693577,0.006188806073007178,0.0016023732214294382 +2019-02-21,-0.0013459915612106029,0.008663016021033886,-0.012588767005566664,0.00016430841392411268,0.0005830390208267258,-0.0017429105787266437,0.005969216833755575,-0.00019591572277161918,7.00597006611215e-05,0.037960433323947794,-0.0008845327410510439,0.0029565241362447038,-0.0002908657011536979,0.0001383979600178336,0.00974312931098331,0.01331196646839462,0.01367394304195586,-0.05784940705133324,0.0003285612217521846,0.017367996401096413,0.022735984744115787,0.043913431352208265,0.01768253596398359,0.00027090322033816776,0.010313897212786655,0.023644959471869467,0.06417676454510629,0.09456152596404943,8.044656323758912e-05,0.005858903960424,-0.0244804348626003,0.06582488765389874,0.005609798992112182,0.00010912364318994284,0.023422735536093614,0.0030142176098499045,0.026662379833278772,-0.09752787368271494,3.876808117563769e-05,0.007386116950496719,0.006962900876855348,0.006120947752988764,-0.011375454027718163,0.0008772357593430646,0.0012375213660882022,0.029760449889899482,0.06357168667318415,0.007719449610537902,0.00016369584057208286,0.018714275203108824,0.014570132119701297,0.010855300578977144,0.01276866369762883,0.0006560636786137725,0.003056133123075085,0.0022633666046733727,0.031579727531481,-0.02109224987285499,2.1358429448786314e-05,0.009901700813789495,-0.030992432230010317,0.08008215760854229,0.02422820635522281,0.0001149664000551341,0.01845079088748386,-0.00044014253636782567,0.002421451872061404,-0.00268603630029692,5.116574694102248e-05,0.006327426698502242,-0.003824410403584095,0.0033387911946916268,-0.0016869829080195912,0.0022340773423127134,0.01903719780396554,-0.03561021609488791,0.24461491135255897,-0.05458645563655514,0.00011979640612096902,0.016290029812106907,0.00855729244263825,0.04522590747860776,-0.002726443665752542,0.00029299304823921304,0.006013445104386553,-0.023454018424922698,0.14805528863865522,0.0029888372131556666,4.46225405295092e-05,0.016198682326318492,0.0026651342625258734,0.01731911531384677,-0.030186214301079754,0.00025361807166287236,0.022537792055731143,0.003349862496078871,0.039734308384565424,-0.04927625916676461,3.4985779433532966e-05,0.005629303209525399,-0.0019427615087441023,0.01983473851572788,-0.0011138366070820567,3.272462811936318e-05,0.0004175519180963207,0.002377630681996056,0.006306801168757047,-0.008995450793458894,0.00012143895260157641,0.02149197498701885,-0.04668707268438502,0.3425664909539082,0.007811150487971345,3.1480682641488946e-05,0.007190160831437334,0.0006938221540783036,0.0017979105442602961,-0.005364511175806135,8.555737783248963e-05,0.01483354364534735,0.0055682014078614625,0.020935165950978756,0.009544326063032202,0.0001216149942315557,0.004036617567464761,0.027061883329789326,0.02290392734629229,-0.020318443106067428,0.0006753417849681672,0.04954389809233795,-0.028468505028265714,0.11235342202233449,0.014337793320288988,0.00010665086104784423,0.01174684596077907,-0.029049558225647067,0.093978700449242,0.003577970334893253,0.0019839433710141926,0.008451872604611202,-0.025519254781861622,0.25088742477269327,-0.07052618775708927,2.6155997636540235e-05,0.007322694266857043,0.0720353124216009,0.1976398834812489,0.04234333516373855,0.0011916319107070658,0.02921296072577425,-0.015893729383258857,0.12824812970896937,-0.02798920746737294,8.252782832977701e-05,0.010838452953053596,-0.013448202084670175,0.015757336411451963,0.0009185454606807967,0.00020143123050684524,0.01152522717185505,0.014235094643195579,0.01989643399127235,-0.035535939723392355,0.0004106662640468477,0.007548981956574606,0.019444140630643564,0.07105080458283662,-0.02201288404488947,0.0021211437143358485,0.0012957217668551455,0.0008151574432427737,0.0029296834573103053,0.0020529596869662656,8.927115835520886e-05,0.014618095070821692,0.00527223178533543,0.007017309126890546,-0.00196320789655777,0.0018676740231266418,0.043989657860367036,0.015111277858465836,0.05117556131997061,-0.01969863103762279,0.00011699158176417537,0.023799936932970747,0.0021928944784250543,0.0053404985140904655,-0.012790279430135314,0.0001664547955096579,0.001577952446548921,-0.015695153889634213,0.06036299012816085,0.01197186131459251,6.346126992862021e-05,0.010169653790876556,-0.050814433721233156,0.15695763807995589,-0.004683981500742212,0.0030684757351852592,0.00613198681209401,0.026697211597329476,0.1418736624981406,0.0072992604445132414,9.360621700866272e-05,0.02047791285190675,-0.001714098199706733,0.0089785354533553,-0.012288775369742416,0.00013844936918031941,0.0002288284409648581,0.009596279435838585,0.054376303296761755,-0.049980474857959305,8.347220869896122e-05,0.009419668031093164,0.051448453342275484,0.24712172699544713,0.06110789241589947,5.232494589772347e-05,0.03680318978408473,0.06519495524644385,0.13588069256811297,0.04677982969283827,0.0002339298454308198,0.0028286222087185835,0.0013273944093182579,0.004979637422336587,-0.0029259463160724794,6.628521022719948e-05,0.0024369179780781985,0.0060594622293950835,0.06936671285643435,-0.007750079063197314,2.25379418225705e-05,0.007851738951452747,-0.021610264139551038,0.08359971469159905,0.04220937799589242,9.03575079254044e-05,0.010854898938912193,-0.002926111779969297,0.0120609995567944,-0.00044996141260753405,0.0003824155838524222,0.005549161001305364,-0.049853862196752516,0.24543580557151323,0.05898411577171702,0.00011634097109703604,0.01777150455089736,-0.00036398765568984364 +2019-02-22,0.008035814141257137,0.04942153993828263,-0.08522631414120424,0.0001719492135556905,0.013941905236998224,-0.03869691580115141,0.14102281231654287,-0.0255411007395409,6.584116517072425e-05,0.008055749396539387,-0.012727218632010755,0.04592819411781945,0.020567862766399936,0.0001281891712135984,0.00012880143451480391,0.002200392611701665,0.002371254181998276,-0.025677333802874378,0.00031317704682858586,0.0006154157156236227,0.004684794621697405,0.01262801225033004,0.0009664921560962715,0.0001941124245851653,0.013047388694610166,0.012623557414072348,0.03125568430322368,0.022304650866359493,8.818596827391849e-05,0.008370929240120461,-0.0297819560838936,0.09816799121425682,0.02366869801634297,8.90170442752134e-05,0.0034744626617741084,0.024065802471718092,0.2288569206146424,-0.027257589033624012,3.606076305428659e-05,0.0061738936206229824,-0.006406328174027589,0.005546891491472352,-0.23679482416023823,0.0008906443119590851,0.01509776617234614,0.008583299174860504,0.019277824987809597,-0.02174242103178167,0.00015568906249089647,0.029325866163624564,-0.0074774954998435604,0.006323156424513015,-0.02612581559461304,0.0005780249607735056,0.004514079298756401,-0.024677301109620884,0.3278466667710676,0.005322909196977912,2.2431053811051432e-05,0.011536070775183085,-0.008312228080804278,0.02330080347518927,-0.009095013280581899,0.00010597357668158346,0.005961863325792105,-0.004176279856385959,0.021756170343549673,-0.015714663735299946,5.403422927660507e-05,0.0025957203237948995,0.0052930162940191825,0.005010105415879129,0.0014491589011956544,0.0020605318870901322,0.0017748924159187252,0.03534864485672816,0.2315367739061549,-0.052807690262944074,0.00012563333806699353,0.0015577652304801304,-0.02300188205011396,0.13383092085485288,-0.08214325105056759,0.0002661430550410034,0.010524595315954486,0.012029446209109958,0.07055372065665205,-0.01457673502273066,4.80271337984798e-05,0.010338052835946906,0.003980789323320903,0.02410423799398792,-0.06899130760243051,0.0002721840015455092,0.04059295061026155,-0.007578178910113463,0.0960660249461579,-0.08917556866676986,3.2735973820749914e-05,0.0075244732805859905,0.0060712821504136675,0.054657962337077017,-0.0063918004220765365,3.7111515379440274e-05,0.006746131092057638,-0.019808757605737297,0.050617936856278696,-0.02583912463826832,0.00012605949232758417,0.009951686765501604,0.03480814373569222,0.24587036743850305,0.007968856134155992,3.2701452977826083e-05,0.022844861379548484,0.019381152942414468,0.05341242742726167,-0.24727566718572525,8.044789322987254e-05,0.012140581442984116,0.001354156232672402,0.0052956482246044505,-0.0862988207054119,0.0001169225396961701,0.0017511754792639246,0.0046504217768597745,0.004275378024953812,-0.0012256086777937786,0.0006217179185511115,0.01849688764859447,-0.013195002313352513,0.04535504517326936,0.008585783998426138,0.00012245312588893956,0.002325742975484546,0.01561962008864336,0.05529339085490894,0.0038959197478968806,0.0018130777044340878,0.03145011357420175,0.05486677556956931,0.5563456177022813,0.08492462411461471,2.53598664402602e-05,0.028745737602476937,0.01151592976521304,0.038340343159371154,-0.003959750888206977,0.0009820063172477163,0.013018019572002265,-0.0024088373230322755,0.02125767138239162,-0.006211686191495065,7.546010857412254e-05,8.443813747110486e-05,-0.00802062682667645,0.012270291492632113,0.004013047815261999,0.0001542761586902813,0.009045272994086615,0.0235981364087536,0.03315438724564767,-0.15022036677534997,0.0004085456731304626,0.00019329685011714652,-0.028368213507413552,0.11351051650734406,0.03630421029140139,0.001937074072591741,0.0008521050565160186,-0.007854891543277948,0.02815769380106772,-0.0027352834503199877,8.950215276362053e-05,0.004675239774318671,0.029314626677334265,0.03472014957251564,0.0033387785837615367,0.0020988430916551956,0.015874505774960076,-0.005928057271637919,0.01976653940868263,3.858943491256409e-05,0.00011882225349380739,0.01564053603090453,-0.02138919464392034,0.05400084756636624,0.01180403304209781,0.0001605662380912785,0.0034652090481031147,-0.047730286631242624,0.2069665190038404,0.049864691527525484,5.628697019574003e-05,0.005817687296951089,-0.07713009785282707,0.22572561663167579,0.06284747300982874,0.0032386281930676785,0.005322411930305678,0.019071550041866638,0.09421436594416321,-0.0035651879188641445,0.00010069535394886597,0.016211643523399568,0.03233508456022297,0.18400351507720294,0.0025782899782506976,0.0001274408518837387,0.004954126864460031,-0.027216784316340982,0.15375906685805107,0.0382196657839294,8.372299883720715e-05,0.0028400268186801352,-0.02159940135620035,0.09081118581806337,0.0008371770567021954,5.977915373626769e-05,0.009791430930078966,-0.04360238663726642,0.09783459433036656,-0.018464013861666177,0.00021729373610354067,0.018741940918738462,0.00617681263650722,0.0245454279776212,-0.0005840794289498346,6.257605709829016e-05,0.0009836243210932943,-0.016794116138905853,0.19113938087977722,-0.0065626182205491,2.2669307979138102e-05,0.008651834365335133,-0.01078085691129136,0.04092361142933389,0.006319936460044931,9.208487312864727e-05,0.003262117472001281,-0.009082802946504612,0.031432770174778565,-0.017943892171684902,0.0004554756936895844,0.003433608291155378,-0.003103415108780304,0.014000442462481721,-0.017146973803279997,0.0001269608744608702,0.010008567189703436,-0.0021954523207401867 +2019-02-25,0.0014761901153403732,0.010203711717842144,-0.026143185435214718,0.00015299269564633355,0.01215673055367795,-0.03870699898246072,0.11948060585617137,0.04251264400525045,7.77324957000218e-05,0.007023172959706984,0.02267389605262656,0.09371005429362177,0.011952428709835209,0.00011192759349836241,0.004952208304540604,0.017953772751921622,0.019247331992868315,0.011221784335879123,0.0003148132789043897,0.009713760755333516,-0.04744006854070306,0.10275685034698531,0.020492464656274852,0.0002415640465742516,0.006892658070311485,-0.018675818605110847,0.05211402528046163,0.03709614018613272,7.82477336449331e-05,0.004120940715828477,-0.03785566607479259,0.12711725346651287,0.007780448617587086,8.738084626562136e-05,0.005229234857787771,0.03526570332180756,0.2774684648023929,0.08654514035135266,4.358504842419174e-05,0.007204794824876038,0.008592859501803765,0.0063156866827148985,0.0111763694142317,0.0010492087909248764,0.0008713356384283447,-0.01407727195356928,0.02861898056147975,-0.011332944003015231,0.00017199912097349887,0.017494503186932797,-0.007131898559232113,0.004676769184566191,0.0018560956455925517,0.0007453900293646956,0.012301482358675685,-0.005638899920782087,0.0740170736077829,-0.01057514524120905,2.2703105416762778e-05,0.006429412976123444,-0.035292327364920696,0.11461168325979823,0.025081039628613196,9.147500585748457e-05,0.014874002686939423,0.0027061877750647846,0.014873636171009293,-0.04990249630063226,5.1215638607385326e-05,0.009749786197265133,0.005586340032967398,0.004520299098478895,-0.03273830377433124,0.0024103669707199443,0.009845711956939989,-0.013482568742470002,0.08033144104712713,-0.006536825019169081,0.00013811447384722282,0.020893633068890315,-0.03563886776805189,0.20427781760469205,-0.11064583070097146,0.00027015370046106846,0.002698329306636385,0.03969296459812259,0.2314768087271032,0.00226217855108517,4.830221053006988e-05,0.05306129152167398,-0.05395318253756487,0.28899111541795725,0.043842007307059554,0.0003076942522761479,0.006730665068367282,-0.09465024654797756,1.3528807500836322,0.16694481078447457,2.9033036728738633e-05,0.0034872175062885037,-8.060546015082409e-05,0.0008004872897795788,-0.002664562167681017,3.364276872817289e-05,0.007625017325140784,0.018023561883823553,0.05955149255483782,-0.06449884015766205,9.749239222484151e-05,0.0007072972880844796,-0.032866722535714085,0.2123451642115522,0.007767635766891803,3.5752498690366196e-05,0.002701688769529827,0.006807708887380235,0.02408300810525409,-0.03192513016455491,6.267114460080106e-05,0.004709531864619735,0.0011414513183798216,0.0041231793390477545,-0.00658833955959818,0.00012658252796211912,0.0004278805482156655,-0.0007621544633071822,0.0007569176519866198,-0.03981034666683412,0.0005755325956141628,0.0002939777462268034,-0.014757024351494024,0.04814560800911096,0.00028578611860991936,0.00012901141167710818,0.019542639893514003,0.042649292048479025,0.14017675379092095,0.0810170237139131,0.001952787573749074,0.016679030246942672,-0.006895048722064855,0.056428635734118535,-0.031235021324579126,3.1420998653822866e-05,0.03126656270012517,-0.05310846870361557,0.18521108860445265,0.042650376849476944,0.0009374930672819992,0.01262107540272628,-0.01632066318620181,0.12266325573328155,-0.009001197881044221,8.860310833918636e-05,0.008449837407298311,-0.01028780893615785,0.018289773900527283,0.0031189903510284037,0.00013275776719145774,0.006026837486972831,0.026396780391213848,0.047326942351507015,-0.001564098771075049,0.00032014478087320525,0.005168688606037494,0.03148249196004568,0.11822113454029268,0.0137818907081208,0.002064069514012135,0.021937195776143042,0.03042824256489381,0.11286356549628244,0.08580337528719748,8.649947549188321e-05,0.0022832183970210762,0.009737666894872397,0.012622961843471512,-0.05995341197710422,0.0019176565868875507,0.007408437670397524,0.03243877411031132,0.1095538889908712,0.018646934814740643,0.00011731476393579264,0.004739017638651896,-0.016901266238744952,0.03903654916843895,0.001598769261599076,0.00017551255971305505,0.004812988918883683,-0.009319900076405568,0.047472574252748256,0.0009426893384028823,4.7916203274990394e-05,0.009687822824957497,-0.03707789683859708,0.13051641192549748,-0.024651880031845205,0.0026925763308704226,0.006555396178380571,0.010244685016270991,0.057938206278422236,-0.05689285147624703,8.795775481379236e-05,0.006746233221646338,-0.02231624435540083,0.10530983631238272,0.007628221849941221,0.00015367844406635473,0.02870619538102603,0.011428233806202738,0.06298826539581454,0.008487242492229803,8.581598010451249e-05,0.01468302049292469,0.04334352057412075,0.16885241479447546,0.03675580482856834,6.45155349777374e-05,0.0179583323771186,0.060305086243698756,0.1241613089959141,0.04113167773200943,0.00023680837322597245,0.020857475682009987,-0.0007379790510822228,0.0032160920140169905,-0.02239537642950805,5.7059760439890375e-05,0.010917546584508945,0.03468496402115105,0.3205228112319102,0.06751480598261746,2.7919882781871588e-05,0.014039186625067167,0.009121545595220186,0.026361997755714295,0.004975845031380602,0.00012094810803392394,0.003559395030113539,-0.020776708367000813,0.08347980414809222,0.03358822016547838,0.0003923045031078188,0.008996220879364126,0.023975329130419963,0.13628764324953346,-0.10268549439383058,0.0001007580821008677,0.0017956166619750977,-0.002495360040697072 +2019-02-26,-0.01744324549437601,0.1460318225748218,0.019143524452129027,0.00012631832884155622,0.00593242819205466,0.02241596768553273,0.07596204855255165,0.0046512259428738364,7.080621021734307e-05,0.006111413634380603,-0.02399668899539149,0.07273470279815222,0.04467248882330351,0.00015261838685924,0.0013042696721759948,-0.003298825916476731,0.0034106342732983038,-0.05766229394146522,0.00032643153121469524,0.008217999126835839,-0.01668032314691444,0.03332032198641025,-0.013601553817996872,0.0002619347042315007,0.010179056211883666,-0.006513226326688479,0.016762291596080312,-0.03034470849654459,8.484173049115327e-05,0.005560824479966792,-0.0409216426294577,0.12817908577107698,0.01354932628788809,9.36754404696479e-05,0.0007186553548274781,0.006929072901784884,0.06574389231397011,-0.0035104437388459547,3.6142511889749e-05,0.0007618958953430749,-0.015079282468127614,0.011376572810370763,-0.04034884015116089,0.001022148539770803,0.003918935034020309,0.02113362258230256,0.04619743775201461,-0.12828619780104045,0.00015996241223846777,0.01562466811119485,0.01066884330563816,0.008277476040266877,-0.057370355279907984,0.0006300046610557414,0.0025469000421723146,-0.00875675476729604,0.1182993067420919,-0.0023871130175695406,2.205889621152575e-05,0.0035272969954945705,0.017806357269544285,0.045866021727334935,0.004069696011020868,0.00011532807639156264,0.010421094418457106,-0.009687566228465444,0.05805261124200686,0.014466590867507508,4.697369715810714e-05,0.004853628514120272,-0.014001392389174886,0.011811709255793999,0.002842296403279411,0.0023119660433001373,0.013175507049686687,-0.048446582833544555,0.31529132554615774,-0.03396687017609935,0.00012644545834383886,0.0020270116425330723,0.05542024564625757,0.27225053274739974,0.08753203609828669,0.00031521577240022075,0.011199263627654752,-0.04881770630776171,0.3107610288276572,-0.0922818190238796,4.424984723510996e-05,0.005591271214725004,-0.019140268943943134,0.10416917760439683,-0.0014460319209588675,0.0003028277067844069,0.011682672243075183,0.04489056117294195,0.5838851800848912,0.05479550142103132,3.190493127448531e-05,0.01865449659665841,-0.00012428521031404924,0.0016126720689661213,-0.0028723901866170676,2.5748687502186794e-05,0.007993269363512728,0.015789716174321164,0.04450835233844726,-0.0033896606515841643,0.00011427613986704315,0.003941942608364974,0.012088186285635181,0.06969418299845492,0.0023699495297723455,4.0064247383067984e-05,0.0021125088585219887,0.029102285174926804,0.08678575213710493,0.11379063263007062,7.43457321502028e-05,0.0012333050843503141,0.006795767877604754,0.024203330652324502,0.003958926826907976,0.00012838432378832373,0.0025418499570243596,-0.00881270512891185,0.008120913355254809,0.0038098285553631807,0.0006202687815885747,0.007887807969969983,0.015068000203665385,0.06757385688188142,0.01943434147445144,9.385618964146059e-05,0.00309948239090526,-0.024454824879553836,0.09777754989114311,0.0070954861279241025,0.0016052570331263896,0.01280418732024661,0.05101624245163072,0.517590175230306,0.06284510285033819,2.534572037076622e-05,0.0029182645629587736,-0.021398422192074187,0.05338060894510624,-0.06864740052094796,0.001310597991177289,0.00013273559095543648,0.039004899210309855,0.262149551348191,0.09739492473222894,9.908220991622298e-05,0.0051814535538938266,0.005162577896933932,0.006117541266693447,-0.0034578021260032073,0.00019917512405570291,0.005565345605266157,0.04301295253287236,0.04950431539500864,-0.0036898334225299355,0.000498723817955036,0.005875468729156943,0.018287198671551402,0.08439659705367539,-0.010535684192568636,0.0016794713065558348,0.00047381186595982054,0.01972843088135262,0.0788365212760692,0.03398121679950303,8.028889162404844e-05,0.010049982068056077,0.010028036061540787,0.012367468873607061,-0.0714492207253753,0.002015636679600191,0.029707747474927222,0.007982988848668254,0.02260482921608873,0.00010267115472356905,0.00013992017154162325,0.0061016922238038285,-0.003853674213385304,0.010919643918574145,-0.07653975235549138,0.00014306285789164266,0.005466293735085978,0.050835004659456756,0.23129476174639968,0.04680742883917274,5.3642745263259545e-05,0.032553043415387256,0.0759690402208317,0.24025497194594497,0.06731104085383852,0.002996969434407811,0.011519446578601109,-0.008115855513176581,0.04142136051939262,-0.044512981504527906,9.746541084766178e-05,0.0023064803379817117,0.007931173189092982,0.040990459763591856,0.0014449571998445183,0.00014031865988479718,0.025338200333857835,0.007776901059815856,0.045135359618745895,0.0019078393590205801,8.149638886422381e-05,0.003072172958129347,0.018288838390419414,0.07531905505036454,-0.006562289584717567,6.1027932110825005e-05,0.006435765048752589,-0.028992541167593023,0.05554071645177664,0.015911538686555475,0.000254509617885324,0.03703645062093841,0.002835222512658278,0.011366431204033453,-0.010841514756575047,6.202651730406366e-05,0.004029357563444852,0.05308771706183116,0.5624089064057618,0.109195625373428,2.435415947583363e-05,0.007794148579093076,-0.011965015445482436,0.03500908822837308,-0.029992958689786853,0.00011946520368934443,0.0052941464120322855,-0.02867313205480162,0.09578440502142682,0.021636479295001763,0.00047185471586344286,0.011738469439105368,-0.025328266544390368,0.13935317047763285,0.004287929440406491,0.0001041023204086747,0.016775377648656133,0.003847605914411927 +2019-02-27,0.021145408672504848,0.13558697660226937,0.037583601942298435,0.00016492431551392095,0.017394183326300997,-0.0016813339140672437,0.005092826556260962,-0.04098327740722165,7.921466937249056e-05,0.015229053056363327,0.03138879560242915,0.11264198058270442,-0.021715957262293605,0.0001289055387922018,0.02457143610007985,0.002502045044234975,0.002696613350192536,-0.022552740803607835,0.00031314414799364616,0.006638564917737892,-0.013164778478986505,0.029762463409150133,0.0004863259468555333,0.00023144214918598095,0.012180239178215533,0.0017011027210765285,0.005576851932165974,-0.03537489701447943,6.660213714785321e-05,0.016533056732834228,0.03263399356710222,0.11918473447058264,-0.010935960742877001,8.034140928922924e-05,0.020074007902934086,0.025762369169130356,0.235728199372415,0.03170997730950444,3.7477695210276486e-05,0.005771707521174599,0.019669521599050485,0.01803732168242534,0.017942721415163745,0.0008409429482221422,0.005156061700870188,-0.023830925250475646,0.05359177184631005,0.024462335783936345,0.00015549079173748822,0.007269431893921112,-0.016976573584181212,0.012031602409302384,0.043484607394734524,0.0006896852316833393,0.0033061563318779854,0.013162584613399014,0.19969027402430378,0.07028073061421489,1.9642965436726172e-05,0.009235784865340676,-0.02081023596489483,0.05750527995879135,-0.025333495291470227,0.00010750293476926056,0.01955316651842502,0.005510939554007707,0.03152642021783443,0.0017224514774164825,4.92054044486048e-05,0.004746140915690981,0.006733432495991374,0.005516223108846259,-0.028684579072366056,0.002380771197705563,0.002139829619597084,-0.008274290773851636,0.05449406919001961,-0.18277468779076675,0.00012494924828524763,0.0071155804480581095,-0.014806381282983368,0.08202510074633983,-0.00959431608247716,0.00027951839136256576,0.009825832502409312,-0.02050904762640504,0.11794236637293591,-0.07734426611332015,4.898201110966423e-05,0.013752403186146683,0.05805505003670355,0.3139540476545525,0.043576574176700474,0.00030476193657377076,0.001190744978712962,0.013550702299644977,0.1819164886330132,0.006846187444182857,3.091149223127952e-05,0.005616104010509692,-0.004339129747683256,0.05092662555087526,-0.0035989144269213,2.8466852116638773e-05,0.001400444611052782,0.023676466129840017,0.06767202732222384,0.016575423565470798,0.00011270169559835499,0.012446905256266213,0.07488348743578287,0.5616550196896549,0.10957015762028731,3.079702697084985e-05,0.005306470835845475,-0.007569942536749486,0.01923006100299931,-9.08568833977001e-05,8.727488860285973e-05,0.0018965472049697818,-0.009643632604819763,0.0336752047206987,0.02928105923962814,0.000130942011340306,0.00453031589537174,0.022108127612661597,0.020526003055572818,0.007515569403854106,0.0006156347627100059,0.012709171711597217,0.0165815053434743,0.06271933860332311,-0.03883562028167313,0.00011127779063307066,0.005386264708577794,0.03815443007507028,0.1386078971748482,0.0455813507617241,0.0017667543551913773,0.007651419167245376,0.013705632181699158,0.1041667978127985,-0.024203962247711947,3.383389163694781e-05,0.014136147997488588,0.0035819366725169726,0.008708018410655757,-0.023507994628270232,0.0013448375741924763,0.02957498454079653,0.018585046192631207,0.14477513220843374,0.016982569237332084,8.548606329148311e-05,0.00868920000495539,-0.014613537012816348,0.02143967009776026,0.011074887664522654,0.000160872804065394,0.00032551680705028216,0.0033730180778218377,0.004135267421063952,-0.042648599130624916,0.0004681866033810863,0.011360414975104628,0.011877170725303799,0.04379547061224497,-0.10627071574553142,0.002102006926801892,0.005596730977797526,0.05734555032710788,0.29345199672045114,0.16732640978055988,6.269790455403248e-05,0.014809334443778572,0.04814269024231761,0.06595334494761906,0.013930063160643416,0.0018145574406954884,0.019055379730748907,-0.019162175781680505,0.06006827898030675,-0.012316572119888942,0.00012639085948939864,0.00543364998733952,0.020408604941124914,0.04596518083793046,0.019214004274556048,0.00017998848521170023,0.005090255314904763,0.04848465196757526,0.23064938837137156,0.07092777698580664,5.130573341656383e-05,0.005326109690817169,-0.09372476412684085,0.278342943655487,0.08949394916717338,0.003191480521893417,0.03608097382574475,0.013321883306204214,0.07548543909194463,-0.025544297749155193,8.778958785928574e-05,0.014916446343951447,0.023204000834901675,0.122058827924565,0.01528580506408715,0.00013786513851823712,0.00921008695294323,0.0036103103344681453,0.019628241487626073,-0.01026297258026794,8.699851523273194e-05,0.006318321078046829,-0.06845190639377961,0.31280303766606704,0.062418699424700755,5.499991024907565e-05,0.007877006738537225,-0.014742657490106373,0.03331963334890138,-0.002779528045368363,0.0002157272246089715,0.0044606224272590225,0.0102959503964276,0.0444387953110061,-0.02159073289041343,5.7612741325617975e-05,0.002281913470966946,-0.003035652473290223,0.03112575709949019,-0.04268866152060625,2.516305766114027e-05,0.0009142824666833469,-0.015053638760005933,0.04511510918662207,0.015079099248357005,0.00011663487866144302,0.0030581853022497406,-0.007528315256556493,0.03150487774681772,-0.2206734596420286,0.0003766586708918051,0.0003532387012688599,0.03586669370292928,0.17856147342887016,0.0033171607621662563,0.0001150470213749325,0.005743703540303171,0.006444610442224141 +2019-02-28,0.017420910245505867,0.1415209150957334,0.0191256058840346,0.0001301777614253852,0.0018419038150711247,0.025304991185069105,0.08692249808387151,0.010206514947643545,6.985291237211458e-05,0.00015390295294245122,0.03132564841904451,0.11713782127927234,0.026412850604377588,0.00012370866829309132,0.011501682299759444,0.006860196472087717,0.0070652320152328665,0.0010030282545716142,0.00032770116242286185,0.0018034051747305186,-0.018005034729476333,0.04454379928011341,-0.029962464088318812,0.00021149713033559003,0.001439902711650383,-0.008134502111617677,0.026882735685370345,0.007148053746767372,6.606999197002188e-05,0.005801007432828377,0.008132235200778487,0.030383299646079193,0.005488124680398383,7.853528955207832e-05,0.003398285180720409,-0.004230221391833286,0.03963671175536236,0.007815642500869593,3.659856801451104e-05,0.0007445428197923169,0.01593148690819633,0.014429464705978053,-0.0032320365104049633,0.0008514337817702235,0.007678385688860496,0.04327800323017238,0.09363230713491971,-0.0533684132336848,0.000161623079242035,0.009136956005780291,0.005829193801397389,0.00411660542814329,-0.0016974318040741336,0.0006921394608136489,0.0008197972108933372,-0.004105958023949803,0.046996066590617204,-0.013807740029144606,2.6036091198044518e-05,0.002094433107514931,0.032502325517152125,0.09882353981788783,0.03078933652792183,9.770236294567842e-05,0.02194048083576557,-0.012874757272622323,0.06965746843939742,-0.041472179538629875,5.202752679170774e-05,0.010677750154399132,0.002892703504995216,0.0024447425372421637,-0.0023780602386701145,0.0023077765991719743,0.002211529815687544,-0.00281109705928364,0.018087463719572996,-0.005374053818972923,0.00012789403094156662,0.005741258788389302,-0.01496499934209446,0.07073488052458374,-0.013476049264263112,0.0003276055945884224,0.0015353476650902297,-0.07281393155162348,0.4713996173984576,0.07834502623246256,4.3509712287707027e-05,0.015948414000821812,-0.04980688703507476,0.2448216369266593,0.026879096840426022,0.0003352944840909799,0.02170279289368333,-0.05614940076813642,0.7648283208357689,0.0013375834028061663,3.0465716470040198e-05,0.0222044037298684,-0.0025446002459779096,0.027636305718811403,-0.02336962438045711,3.076247583808268e-05,0.0015733336526239376,0.01929435655511842,0.051834714167403845,-0.01772337227301924,0.00011990363453410317,0.006530016991479632,0.043197710724619746,0.3553451346584311,0.018211313487414164,2.8080364082347406e-05,0.009043842975684788,0.013434724361731125,0.04211590541787923,0.01912240456554807,7.072289030272116e-05,0.005112607093156986,-0.020458940962672277,0.079269657701495,0.005152958132076964,0.00011801161720564413,0.0031556763774486622,-0.004427944372289444,0.003842383085885989,-0.021059096524865935,0.0006586839113926254,0.004876891113017231,-0.026080272033047802,0.09596073211158229,0.04663910712188351,0.00011439434960623448,0.009149024955630958,-0.039974116736306915,0.12033906085688517,-0.03917026502951905,0.0021320207797133695,0.027952382362685803,0.023821474319868797,0.2193696187590695,-0.19782852091298248,2.792378923953986e-05,0.001324573071840222,-0.010561209573198801,0.03313582986607235,-0.0379358058930089,0.0010420464509279404,0.03496876430131386,0.027390844402936675,0.2222957058470649,0.038022217787075104,8.205404414619563e-05,0.009168260847774615,-0.03593515754858008,0.0612824990988673,0.06977414075810902,0.0001383975723039815,0.002716456100598317,-0.008702716431807981,0.01337482477791959,0.002230339122118153,0.00037348283390636026,0.0042494000097006365,-0.044292344940162764,0.19504922785324696,0.10042106339606939,0.0017600896098596331,0.003862177315385873,0.0005718313715425855,0.002189848872682701,-0.0002235705957589461,8.378074233595636e-05,0.004577425899303432,-0.01744963366103162,0.026198958380561906,-0.02563002713748734,0.001655691734133619,0.014100989303597804,-0.015424449012951978,0.04964470381165157,-0.07097457365932298,0.00012309850308092211,0.012060862236722907,0.01130048630982676,0.03456830275168952,-0.022291561259275575,0.00013251939749846082,0.007772084578903265,0.017335930652359763,0.06678769209981904,0.005260888205278376,6.335263014249157e-05,0.00016227243330151054,0.029881249651329763,0.11086374165387891,0.017710562917486027,0.00255462572957814,0.0073679796838854944,-0.006127064789785841,0.02900540628764017,-0.024705863246188113,0.00010507855461335524,0.0048664212104453245,-0.007944074549212796,0.037117832473926034,-0.007098440840238952,0.00015521063943825023,0.006315318020987519,0.010262469457536201,0.05049691330341548,-0.020465013883110564,9.612486531278616e-05,0.00480181719871933,0.017049718110629625,0.08272906569208892,-0.03588923363185042,5.1797223207726864e-05,0.03454178549437057,-0.03941009946315222,0.08920934790201335,0.0013475283578563558,0.00021539050783490096,0.02954584875094114,0.0018797090761850208,0.00829014090657139,-0.13537238185770567,5.6382340763786265e-05,0.001611016641753359,-0.01038477047463395,0.09931830965014733,0.008869260978997288,2.6977324016928627e-05,0.017415390329240096,-0.020537807559575193,0.07221806783322497,0.004455474129110858,9.94070486210901e-05,0.0036657835939437828,0.012395679507739779,0.05507644582826652,0.0034848319985401714,0.0003547581676806489,0.0037455730428023956,0.023652328629779593,0.11599970886033957,-0.024129380813440675,0.00011678546688580221,0.00822079270337458,-0.0033771802666627817 +2019-03-01,-0.0034070539524067647,0.02273158919349729,6.709598024758495e-06,0.00015850238298789884,0.016801662322053275,-0.015335840162424362,0.05178612859727885,0.008537244795147189,7.105663788983902e-05,0.027221530139060948,0.03646684117435551,0.14433055917937018,0.02706667869913659,0.00011687915303871583,0.012004769233511882,0.00532154580156134,0.005597860171014209,-0.061324433558685595,0.0003208363852707158,0.0011960818343031499,0.004842807608942712,0.011210688879534428,-0.03622277320118263,0.0002260282321455296,0.02284626374692249,0.036480242078825234,0.09498378537753906,0.1686062621197302,8.38600231464263e-05,0.00842805802200153,0.021896569317287576,0.07047852148399678,-0.01878150813011041,9.116101389621411e-05,0.0040938866551294625,-0.03714940809805143,0.2915975959578925,0.1428113633482941,4.368844366027202e-05,0.0018679374097798362,0.03271517519696039,0.02512186432533091,0.026010996737452316,0.0010042507649430676,0.005537140101570019,0.028421644127109406,0.06479901048342222,-0.02352666974388034,0.00015337080944132967,0.012583986055004687,-0.002616781808763584,0.0018770239688726462,-0.01817605797313062,0.0006814312589164624,0.009034123781660016,-0.007512571886451054,0.0951098967810622,4.036370610077223e-05,2.3538875929075563e-05,7.24641756547047e-05,0.028167854527194613,0.0797554074266712,0.022919279326683435,0.00010491671136110526,0.009519312258711903,-0.0021302431608220436,0.01098131151883408,-0.03214337499649323,5.4605550050153865e-05,0.0040694439679841475,0.0010631188365854516,0.0008846087131296423,-0.014405551207316078,0.0023439782256676088,0.01681077021770363,-0.01893844055392993,0.1060542289602283,-0.01421383456099277,0.0001469495741851383,0.001471378751290487,-0.008849550103078464,0.0459817894535041,0.0036435671185676448,0.00029801872738303173,0.023318298941179517,-0.0016851679446201852,0.010079985235089203,0.0010366113435995893,4.709168706608905e-05,0.02594224092584854,-0.009029631991533608,0.04726387339883375,-0.05869632955076405,0.00031486729113156827,0.014388823418110111,-0.006781111877484244,0.08833993923530795,-0.13564350331057454,3.1854738531129e-05,0.014777281670043219,0.002565623858947517,0.025138234368910748,-0.0034678149087346787,3.4098865023100734e-05,0.0063731584013573175,0.023436262025952913,0.05896688347365875,-0.04395354675048428,0.00012802739996863532,0.0033580238937550326,-0.038905272641727114,0.28137380741486867,0.03085546438095427,3.193869535563923e-05,0.021696195798987294,0.021492007246522397,0.06461845758841532,-0.020748853365005145,7.373908990997913e-05,0.004009509498533908,0.007985956227976774,0.02790816525835991,-0.046138604766159316,0.0001308411145852551,0.0044827611720925035,0.050765130390796456,0.04728815254513985,0.02963694632648689,0.0006136047601595883,0.01221064102263511,-0.036065443799529535,0.14434944480235173,0.06118824306254704,0.00010516280753505363,0.01659457409829144,0.07642626781034648,0.27676926108608707,0.11285574804850547,0.0017723274839179558,0.0009427926887875969,-0.014664399281239271,0.11324031575441587,0.023014576591343282,3.330008949435376e-05,0.005446181641974717,0.01610668632423174,0.0530276980741818,-0.05188704249683028,0.000993058186237654,0.011503182829477338,-0.005771343086729858,0.0440287822795487,-0.02424891503141792,8.729027495306002e-05,0.017270287060528314,0.011285215836009528,0.015870988939488396,0.013498203302790937,0.00016782291755557843,0.0016275586349408441,-0.0035275776728115457,0.0055211414721572,-0.016732939479480433,0.00036673437835868636,0.0017862347737348213,0.009709541789436229,0.04103624492865967,-0.011333304155173711,0.0018339245452420104,0.0318305642769458,0.049634822501576935,0.18064431783496993,0.07965917831666698,8.815613436372964e-05,0.001694804008650486,0.0576203398245271,0.07675815612879176,0.03685875225980591,0.0018660723308557919,0.0005782559500619519,-0.024097604938719316,0.09474206792261806,-0.02655425603624381,0.00010077366578065942,0.007347452759275255,-0.07765434124111478,0.18766953548395848,0.20515504844917085,0.00016773833850363998,0.00456664836259705,0.0042140098217077065,0.0162640308995258,-0.004428705304831071,6.323845890215908e-05,0.010285134850734134,-0.04116450836833063,0.1247324417248397,0.007505116465459031,0.003127962709182924,0.007228289121581117,0.04281030459484668,0.2221372504980883,0.05087663634422024,9.58666378537993e-05,0.008430835778994023,0.03955704974780882,0.18347647924463767,-0.021922938640527308,0.00015635230209781918,0.015892507718827192,-0.011636091780069493,0.06221779464569782,-0.035089268218581667,8.845883667829712e-05,0.0030672150194375014,0.004705628663260063,0.02216132700588157,-0.0033004232998260505,5.336656936526479e-05,0.019296086355950426,-0.028019530486110153,0.050424203482411216,0.005456329260810614,0.00027092632191979437,0.007879332125822435,0.010539091544340682,0.037447500421661596,0.008639066217595767,6.99833485089891e-05,0.0026530438591659032,0.01640301149553791,0.1803979331734074,-0.018501624555307426,2.3459746623613795e-05,0.014995729102899088,0.0037406204457888404,0.010824940375211324,-0.03689997392968571,0.00012078891911461722,0.003613687792075243,-0.0011814814845871498,0.005454997330958529,5.3620214887738305e-05,0.0003413975094362437,0.013071936209993994,-0.017425377314837787,0.08314416650604799,-0.005868197922817649,0.00012003895408738709,0.006771177406943198,0.004273321835194522 +2019-03-04,-0.014834270888502013,0.11155011946928986,0.015280143127896061,0.0001406315455022515,0.00685397886759157,0.023973582844531705,0.08543373133767158,-0.0008484259496115995,6.733084981705013e-05,0.007372077324197526,0.0105111992142744,0.040468410051823174,-0.09571227151938318,0.00012015264337086973,0.013481780727321273,0.028713625710100894,0.03436334459521305,-0.021045402625314843,0.000282007373674372,0.00636115841412229,0.00534539164328551,0.013107689501611484,-0.012232347125860847,0.0002133787455142681,0.013165578767283732,-0.006773364425827775,0.01641108940203256,0.004754468918059189,9.011846193128305e-05,0.003128470585748791,0.032345858701312465,0.10418195152280857,0.0178034883914946,9.109951228933774e-05,0.010465065199297147,-0.028032919289011176,0.24905207940041882,0.04962146250510152,3.859906360260581e-05,0.0010874661292152913,-0.014048302487298058,0.013457949777817094,0.01793607247642951,0.0008049886058471749,0.0034646148064087397,-0.007672426606675433,0.01865867205859873,-0.035173521795499575,0.0001437851045127168,0.001025205934406845,0.004003328477120666,0.0032424243061263363,-0.003276998510359749,0.0006034978646496351,0.005389554985715129,0.007532117678662891,0.09127790780811541,0.0178650198457745,2.4590887844091385e-05,0.0022298962181335584,-0.021589015785736857,0.05779181676505552,0.00662195376337269,0.00011097305306810519,0.00674959634970846,0.006135167916928565,0.0305729617006286,-0.028246028653239646,5.648729259667034e-05,8.327563864462173e-05,-0.036237256683813786,0.026113400918474944,-0.04934756008589691,0.00270654248304849,0.015675272584249507,-0.06249991836397509,0.4525584754392923,0.07981469743880529,0.00011364670671705039,0.013128760458106759,0.01856280989295551,0.10848341548692461,-0.05464282224001628,0.0002649650538944187,0.007009572689198964,0.05152893696322355,0.3265258180124883,0.03324739586719436,4.44523385179654e-05,0.021574135714327446,-0.008327785971257952,0.03870360723684471,-0.11216593667342077,0.00035462138256103646,0.03260824318174789,-0.012952494661617889,0.18223149222403873,-0.026852850800075226,2.9495802849286958e-05,0.0004837264521917401,0.015624042043207104,0.15848692225183456,-0.23083225937303228,3.2936820754726245e-05,6.009524386022956e-05,0.007228067227132003,0.021501424155994996,-0.024943054199042868,0.00010828734667238679,0.004944634767237019,0.008844950982498184,0.06159836121732808,-0.024893147485359677,3.3167951395641566e-05,0.009497847445678068,-0.018581964190141024,0.0541742875651948,-0.03785429009760867,7.604589794650621e-05,0.008159440409851913,-0.001567782893191098,0.005308998725232878,-0.026350003579768584,0.00013502739709205503,0.002458456982669447,-0.028342030813590595,0.02768808848300467,-0.10626135210436251,0.0005850777102633807,0.007840320726295156,-0.013377385278409402,0.04416142454849654,-0.0017066195054130566,0.00012750116998952557,0.007008680102427849,0.017669769864878483,0.06984148310553574,0.007388755849968057,0.0016238152461246916,0.00811679322613087,0.03323880764698845,0.3734270969842876,0.02256223212861359,2.28887356346598e-05,0.026625734803487976,-0.008854543544497887,0.02490053694995843,-0.005900652598665894,0.0011625957622287365,0.02749957312078268,0.004650040338303664,0.037617739712208935,-0.015749076523925095,8.231702502981977e-05,0.0008637842806648369,-0.004301168215643126,0.00618243710083101,-0.0038639201785983877,0.00016419960479722027,0.006509374475522918,0.010551835132044272,0.015765762385476768,-0.013962599853681356,0.00038416423816443993,0.0015155752615502328,-0.0068589344198501465,0.02600506602253377,-0.00402299175356457,0.0020443207224111522,0.010385243065593502,-0.017335532890247606,0.06565546311760634,-0.024503054847249628,8.471429435196518e-05,0.012713390698550767,0.019174049109697406,0.028256502940607817,0.0009277659721630885,0.0016868350449908414,0.01176154874652396,-0.03781643032987022,0.09879740393156682,0.046933796138407556,0.00015165301012459072,0.012214682619613188,0.01674849728188748,0.0424511259871353,-0.039458004294828576,0.00015993628687739687,0.030375771012242463,0.025801647181200718,0.10305951709070145,-0.006552332539640952,6.110450836009138e-05,0.027829741583486608,0.03846653580825322,0.11027607302277563,0.01974710087604188,0.00330612935991204,0.03945365769325566,0.009833348262360833,0.04672805746440362,-0.029949775387720035,0.00010468013257729712,0.020805906270101322,-0.030196383410868242,0.1389780049351884,0.021108396227820847,0.00015756858772903256,0.0062435275747716856,0.0409208943950628,0.22916948740807042,0.1123750173315522,8.445726681128195e-05,0.0018233495177632643,0.011377920046168367,0.04665001274989752,-0.017997968478472716,6.129972210875946e-05,0.03801493381707145,0.010764402270728703,0.019739980015402336,0.0015809336188751318,0.00026587200127163634,0.014532130952945877,0.014227540334967039,0.07174329145648124,0.015741282920215018,4.9313168038563865e-05,0.0021191835121996266,0.011457246925913636,0.1349446732544035,0.002890380193791736,2.1905633257320135e-05,0.008818763646831962,0.006847968243079098,0.020783612112428147,-0.05586953183409347,0.00011517273329823594,0.01432322957824908,0.007697629501927403,0.032625163079206765,-0.024124085163114876,0.00037190522827502764,0.003205247718681397,0.022181215224640897,0.12114027318616519,-0.0007971800214880211,0.00010487418119265888,0.014912512620441644,0.0033484686220226784 +2019-03-05,0.012996490038531658,0.10042897462146598,-0.030201299547377367,0.00013685278302085708,0.03162561185473023,-0.004521018142630697,0.015240435544690213,-0.0103210854609554,7.117859281949366e-05,0.022185655967316472,-0.014927586635303434,0.054789725447008025,0.01918690126888961,0.00012603398862901286,0.015969169297002483,0.006771656373889251,0.006840576131537965,-0.12657051238316014,0.0003340950856304714,0.005755813456285123,-0.040609677690777994,0.09094026223998013,0.06685875281930843,0.00023365286611634094,0.009856559662540534,-0.0004770427704635218,0.0013143411849082351,-0.01958596276904607,7.924939247885409e-05,0.00025787631364811614,-0.010706022249922448,0.03710845736651641,-0.01250419794924323,8.465353458066328e-05,0.011783097319982859,-0.00467114417938007,0.0332238419297723,0.003175550763168345,4.821387471834312e-05,0.015017613907004315,-0.016171496136136256,0.011606127979410732,-0.15944390410343667,0.001074503001026778,0.010900666387188493,-0.004683104966252168,0.011216986677469884,-0.008675585513814726,0.00014598881198549623,0.0098703246803281,-0.03459812762117531,0.02204185739729435,0.1504382548573015,0.0007672356356503947,0.0009907498533838922,-0.017628126209528715,0.2181494798893818,-0.15346664902112053,2.408101336585106e-05,0.0026899125925697346,-0.011179062632152998,0.032916018282182234,-0.01825574723126815,0.00010089023470343631,0.011076157326153965,0.018052380580659798,0.10218202790699066,0.05266360167012505,4.973038044115116e-05,0.008874024960009469,0.011657625185314623,0.009351834142023703,-0.1107937341989944,0.002431287204876629,0.009819451176766103,-0.0049761595068047336,0.030534585575221974,-0.12186662826439289,0.00013410790268999638,0.004205314239740504,-0.016837991174361033,0.1054069038296731,0.00857554056381403,0.00024735998887282743,0.002150844672331736,0.03477044607232998,0.21765264156254316,0.03600515379606364,4.499945727603286e-05,0.006073256212174364,0.00692491081530697,0.03326952788871469,0.0019823753949808325,0.00034304757524934623,0.02072446890776671,-0.037260933875287026,0.5548458419676889,0.014336566471460315,2.7868374047333785e-05,0.014583579930769787,0.006220439235230703,0.07249273858647697,-0.09634914357866702,2.8668716797846838e-05,0.0038342468951405744,-0.01157303362597844,0.02990159654840308,-0.09765332010387114,0.00012467391385667754,0.007391186719998448,0.0029512119788843326,0.019632198419906214,-0.0006478197957247809,3.4723528172403816e-05,0.0007245361927255838,-0.020826602844188455,0.0631473727492671,0.01959576097313759,7.31207321274051e-05,0.002672145465724182,0.005459197134612628,0.023717040403348565,0.009488552497239592,0.0001052487337121629,0.004216609346571342,0.008464726538138515,0.008096383954939645,-0.0009405514070129883,0.0005975818496450611,0.0019009092855877031,0.005577302421856801,0.020044836198368145,-0.006395819483673575,0.00011711369720622824,0.0014883528876723606,-0.020909819160034083,0.07030246491506602,0.00730634869898816,0.0019089691023358826,0.0201779032213388,0.02396154473703549,0.23317847409728523,0.007479583714640014,2.64246078975324e-05,0.0022549653855251095,-0.054872288158399014,0.15444343869313326,0.02186209910844587,0.0011615953842825922,0.012021533951614264,0.016563615880696523,0.11953552303899881,-0.10104186985256394,9.227494764969808e-05,0.009884759417396605,0.03787494487437877,0.05907395342633273,0.10146386951114653,0.0001513217514845916,0.008905914120449093,-0.011503269667762103,0.01620129540484551,0.002464893117391862,0.00040754491054319,0.015668133756026652,0.006882253454493626,0.02906717110948903,-0.003949562249167145,0.0018351781780269704,0.0075230605241933535,0.027928750218383046,0.1303610185064719,-0.016611722738046956,6.873756247202125e-05,0.005820679734827583,-0.024066658977439124,0.03082065009420563,-0.01011604170974487,0.00194111471083637,0.04068265901940357,0.017734138322599104,0.06527793527379316,0.022621775333534374,0.00010763653749721415,0.003022519750242699,0.003763287072312003,0.008633803332127543,-0.00046142670713205454,0.00017669553406335936,0.005944738630728656,0.0005306508470145994,0.0017695183595660064,0.0003509606352066766,7.319269084839773e-05,0.006292137542336297,0.029141682663696527,0.09830833633848836,-0.000930544511924694,0.00280958603753833,0.023454381600089936,0.006892498132950951,0.03171595718430616,-0.04967070110938351,0.00010810341284998023,0.01459431475393301,0.00015671871491530979,0.0006589645751670384,-0.03387786555745966,0.00017247238856221594,0.0011742735840903522,0.015173723890532809,0.07808749847406879,-0.011771404767580264,9.190928031032765e-05,0.007921186542689621,-0.012260054597524037,0.061209620103985445,0.0010628633632297204,5.0340800245064397e-05,0.013714301583011788,-0.08226082790671982,0.15583939598601368,-0.05628122753161949,0.00025736246877165037,0.010597377171865504,-0.005561774646276409,0.02061279564165418,0.00781935358780641,6.709510954078902e-05,0.008852619772224173,0.0190589853222557,0.16798774696695595,0.007015502937186591,2.927207138875533e-05,0.015413843979423091,0.005730918013918255,0.014759554675132291,0.00791983330753364,0.00013572501736683993,0.0062885943666676,-0.009190603250068869,0.0368360874971613,-0.14156404924397403,0.00039327695029994927,0.0005367629541003494,-0.029838487525247995,0.17597860159209525,0.02409860034557907,9.711554221181305e-05,0.024521923170767283,-0.0036038854496128047 +2019-03-06,0.004646077642502296,0.03341489813671042,-0.016827522998699343,0.00014703912361893864,0.00896690295329561,-0.02106603085860358,0.06608547330347889,-0.11144133370775854,7.648693142772243e-05,0.008800692727782469,0.0026290585459829954,0.008977136873079734,-0.037373657077104286,0.00013547514205549028,0.005652289420319232,-0.005109681975098251,0.004991789996373085,-0.12423242249929671,0.00034546608674825696,0.004097343534858432,0.01980218252265903,0.045905042327430944,0.01498834192377602,0.000225709812163931,0.012815194175084362,-0.008465363755106488,0.018377432427338074,-0.040419184428563924,0.00010057905009455776,0.0015108938450710291,0.04680052073337543,0.15793786806599425,0.0694170351991198,8.69469334098811e-05,0.006310182014094154,0.01887326273998917,0.15815007318550567,-0.008792187529780197,4.092382352005372e-05,0.010624450334182078,0.009104519332286317,0.007455398623642658,-0.014682872399687196,0.0009417398321402426,0.0018811457863734183,0.004121921931691662,0.012369559723279121,-0.07404987772658386,0.00011652185950164823,0.0077114783494277965,-0.015362083185520304,0.012103940525399854,-0.010490910771457942,0.0006203655743085848,0.002527084018970916,-0.0004607186185425827,0.006360515261045311,-0.02573254598060953,2.1585705807471134e-05,0.005667923646828137,-0.002707214208994568,0.008456219993400838,-0.06012985829704059,9.510369394182893e-05,0.01608285416718127,0.0023707020311374343,0.01401252166963795,-0.002891452962146579,4.762362972494307e-05,0.008888641302312737,0.014728895345416123,0.014938517105265135,-0.19341069593437402,0.0019230282321747842,0.00754605797451522,0.006370301693376054,0.03842819031878354,-0.009018128087929633,0.00013641501515054518,0.0037410716385448935,-0.02789056091924084,0.15866814179204095,0.020272220405188647,0.0002721922433290301,0.02029074989062926,-0.009894833737840393,0.053905080963828865,-0.00011182043874119379,5.170585863779882e-05,0.020849631945555627,0.011067626915101363,0.0641512544197196,-0.0354932548731412,0.00028433882555457926,0.0026626148339267317,0.02624560681849546,0.2877267470997223,0.021724001252994337,3.785354990681281e-05,0.00896075182653692,-0.005660714926637671,0.055707466726298394,-0.12704981826116044,3.394998477916956e-05,0.001898749572807247,0.03073296060299766,0.0797056626531971,-0.024792631712367147,0.00012420468515865978,0.0009221675747017051,-0.0018140182109829452,0.011403334266696782,-0.03772981157720835,3.6745330990171186e-05,0.008483126542063665,-0.006203226481102154,0.015934029776204613,0.002385748988984846,8.631164533738061e-05,0.0017958724346665731,-0.027582697879395737,0.10202731804323083,0.17663900672802973,0.00012361434371091807,0.004968539411126437,0.07829895235568915,0.08159790657863364,0.09253970603579596,0.0005484695175491085,0.003225946653102975,-0.041695460191759175,0.15333157281022977,0.07538276343444515,0.00011445721914268297,0.008254849901998389,0.04015602518756893,0.13854957778318283,0.04048613774933628,0.0018602216133862706,0.0028632265985610024,0.052845531930165314,0.4274531549988735,0.024044130309893032,3.179083552175524e-05,0.005749161981962636,-0.053152038060582746,0.16123928043460745,0.04070772939749063,0.001077755729193556,0.01922378590388508,0.022648015508774138,0.18249122195225903,0.03262380104130475,8.264447359795113e-05,0.018302955292735755,-0.01566813015991138,0.0257684781227003,0.008734441308654209,0.00014350723173860258,0.015138455028002772,0.00650408569847295,0.007862581548770127,-0.0382766971636378,0.00047481562915357344,0.0033850874056881035,-0.009939603699152921,0.039188319483901446,-0.01632931577529979,0.0019659060998151005,0.017725056445306638,0.002246193622868594,0.010052199283499612,-3.293510014528562e-05,7.16929532213231e-05,0.011281140294242742,-0.044512235805122743,0.0598489901668882,0.004498057421912818,0.0018488418954882321,0.007335385004899184,-0.05301743351462134,0.16990899756368577,0.028804640362552234,0.00012362843150633674,0.0049319267232966375,0.03784385324072572,0.10933011362845468,0.04477830864961027,0.00014031882076247058,0.0003139110464603598,-0.022546113079744946,0.09853594027579474,0.017913970036558327,5.584585452992058e-05,0.02040442830774893,0.08371615738598875,0.25125553623364977,0.08047824660498061,0.0031579969326317003,0.04091920963864645,0.00637441431436325,0.031809506741766566,-0.0003669719394099472,9.968364816102824e-05,0.0085233728507496,-0.029664102176421014,0.1461642987975994,0.006443147557731849,0.00014718063940449792,0.0026570999382649527,-0.0365276864397038,0.2036438911272296,0.051208195047244255,8.483976914531008e-05,0.007808026528501162,-0.00033783976797010503,0.0016313919661147486,-0.01300097507810859,5.2047496633590804e-05,0.009179298915963969,0.01841216736994506,0.035856724904715497,0.0008268138954811149,0.00025035927708237513,0.02000433744008847,0.020463554544627165,0.08727603979408692,-0.03800494250304992,5.8304277455306976e-05,0.007263264497046611,-0.018584775036544106,0.24146848539494073,-0.017008311002832965,1.985766299051643e-05,0.00413825767762067,-0.008673661622096256,0.02463004877164252,0.0007615237938213334,0.00012309663131855738,0.0066605003059706045,0.024256855606068953,0.10138404063121063,0.10674479677169456,0.0003771315603658172,0.0011478328900804574,0.05862777510408156,0.29770282293974326,0.08296880296600698,0.00011279562536047268,0.022592971985611176,0.0038960122400284423 +2019-03-07,-0.03325641243545889,0.23307606610922654,0.06419950832148673,0.0001508913353786641,0.00484539331920502,-0.011514102353463118,0.04041561630540302,0.007313465229161392,6.835832404809223e-05,0.0003432418118858194,0.010612760805913403,0.039928949272402814,-0.00967327033427254,0.00012295259482642356,0.02140829441119029,0.009566641831633254,0.010598915034890516,-0.06165476378789231,0.00030462529320170775,0.0017040844823324936,0.0005849627031914874,0.001388509837631756,-0.009634141199637796,0.0002204331911580172,0.012365649542129828,0.0034682985001987542,0.010779704985286886,-0.006168181616920596,7.02516182208721e-05,0.007427802274186045,-0.020056894826164358,0.0836806168062363,-0.005508122081370929,7.032806681838955e-05,0.008693988840996012,-0.004603745554255253,0.03559487704199674,-0.0004563735095712221,4.435294172912876e-05,0.01420215899639756,-0.005009308456551786,0.004405272867550465,-0.006732205238720009,0.0008768993482332313,0.003072201064653071,-0.004347117869206829,0.00876373159434964,-0.007318929135759774,0.0001734499721056608,0.0195840690039365,0.004675003784212214,0.004378079465550171,-0.05364324149478617,0.0005219425282424085,0.004304548068427741,-0.023108436558726266,0.3549005862857842,0.07281497138948974,1.9403793144933774e-05,0.006592937265386958,0.04382521328089392,0.12110833972482517,0.04654119942789785,0.00010749815878091106,0.0019547513017519995,0.01659953633622094,0.10000355542451977,-0.04865958692460705,4.672424956625822e-05,0.0065796692288525235,0.018623971412053863,0.015299368662714941,0.045664437872996975,0.0023742243736916222,0.016031809466738826,0.016471136029449437,0.10987650045223037,-0.10957778300684728,0.00012335900078220175,0.0275121143704605,0.005837168794672687,0.029512785715814824,-0.0028762220750740784,0.0003062670528714235,0.015292957451752874,-0.012079926608356181,0.06585414807536173,-0.03045610673420551,5.16704347734389e-05,0.01645784303989218,-0.018534885968862134,0.09745463525971144,0.0064248036313880215,0.00031345429539499884,0.001311614490844125,0.056522945933446755,0.7622187524096716,0.0946274342071362,3.077339354792418e-05,0.013347791953955284,-0.004464643747955145,0.044124986918007626,0.022169868251321213,3.38052327119644e-05,0.00602616334590496,-0.021145387123235687,0.059123190633738915,0.009299261232937468,0.00011520744181331931,0.018753849762106232,0.06454189607184505,0.5230039454750993,0.056101490576069446,2.85055306849716e-05,0.02462042970909288,0.02738576316694405,0.0848777572500548,0.0849251653970604,7.153331223076791e-05,0.014493417716322399,-0.005759635690988274,0.025685571652520712,-0.03284834569800909,0.00010253080664510359,0.005842669340951053,-0.003678680331440328,0.003916478039586764,-0.019545582427319005,0.0005368734359713924,0.008863447493819343,0.04301301834532346,0.16511704857298984,0.058925889996485445,0.00010964630762760838,0.0008516832888809083,-0.03546647562114702,0.12863897359390705,-0.009479021397253517,0.001769557349980382,0.006830981079842195,-0.021253131386711446,0.20372994146766457,0.0139882314751447,2.682565049130502e-05,0.011400341087711716,0.0208443147848505,0.06591487762355625,-0.10934897769796627,0.0010338926378197575,0.013217750140155728,-0.02334930971661457,0.14197532359781526,-0.048147445068600796,0.00010951833229942684,0.012753219152584608,-0.013640363811121629,0.02235891264404981,0.002081068383914768,0.00014398613061691222,0.007123796169320874,-0.024152026471862566,0.03351199328407852,0.042859821648616674,0.00041367305108943225,0.014912549615698942,-0.03244201734105467,0.14128101196745158,-0.05637309030055157,0.0017798130887689792,0.005245413375326475,0.003799801321530103,0.015224999271005764,-3.768926015332865e-05,8.007445276672767e-05,0.002296414368321138,0.01746906973479129,0.020889206458358775,-0.019584853763354327,0.002078858971352844,0.009914704155535702,0.047198226659477815,0.18031452789871236,0.0700742521009382,0.00010370769909486646,0.023699317552582064,-0.0211469736881094,0.054143974965482344,0.0027747887116828735,0.0001583282694150553,0.004803763378297381,-0.013727596979472897,0.047144089893596426,-0.021882242032635387,7.106916114381732e-05,0.0026648954465446754,0.056821496087617496,0.19036443285905424,0.028778720925485432,0.002829077944723479,0.00669941453414089,-0.0002485849800626646,0.0010795576906221789,-0.07441347298769506,0.0001145432758294437,0.014402374378671602,-0.00042712661567072816,0.002129812267677972,-0.06804116277973031,0.00014543739756842094,0.01249641905908427,0.027456425468459725,0.16145164249243782,0.021880738315033885,8.043595588708346e-05,0.0018968945342131296,0.011173988704407693,0.05805209179550829,-0.021436353902639343,4.837686817801795e-05,0.014456728081624001,0.008705902333187887,0.02029208969985481,0.003048338450185412,0.00020917819511601712,0.021579128643813124,0.009531490561488566,0.043658701283961765,-0.10009578616513874,5.428806789295244e-05,0.006574207844456589,0.023865402294312894,0.28806928475453425,0.012600188364195443,2.1374850739377978e-05,0.006910301888993166,-0.009805058574388969,0.029764113622998124,-0.004651874372845291,0.0001151505994677008,0.004294256573714286,-0.007761030821360907,0.029331642577375295,-0.007036554107583652,0.0004170719618138959,0.005122725207157466,-0.04698187924180531,0.20163069363927416,0.06170874595879841,0.0001334582839005941,0.01686744028845948,0.0034713912625161424 +2019-03-08,-0.0012834394963291416,0.009419216495793926,-0.007842008645661796,0.00014409443382702126,0.0057151450686216045,-0.0344514806605356,0.11019164022792964,-0.024020465825750723,7.501874089105819e-05,0.007991823158571576,-0.017098139324644174,0.055956194957834625,0.0361412931949493,0.00014135067328835835,0.005398690760312125,0.01805026764629335,0.01571528405871176,-0.02805106958575429,0.00038764060865429604,0.00026682330182228875,0.0089086587161658,0.019173348261442805,-0.010487986214663838,0.00024311521159581367,0.02925709118213352,0.019974452935082408,0.05751890945803155,0.0016614625623618455,7.58247505192614e-05,0.00186801178091323,-0.034989344927869905,0.1323364730277038,-0.10832627905011862,7.757934544570775e-05,0.021417331159187213,0.028142930093426027,0.2523704440388471,0.029562389369856064,3.8241017083888485e-05,0.008930531610899777,0.016767866533825622,0.013902902048797216,0.008359732929007033,0.0009300732036989714,0.008621988396862014,0.037047408407000014,0.0893571696061637,-0.016366963821925467,0.0001449740646277659,0.000981918399713253,0.01846721664466805,0.012427420153137483,-0.019435420039345577,0.0007263481268097925,0.012871017781218519,-0.00805817946222123,0.09882445367528819,0.00030145307592030826,2.42993861458901e-05,0.00189251548482102,-0.030204061554699766,0.08294162692308796,-0.046666791720820625,0.00010817921722840416,0.00033746258749812173,-0.0005411377598034989,0.0026518503360740443,0.0011626657864360196,5.7440822218115735e-05,0.0003409320069213607,0.003979921037482799,0.003001790884109524,-0.09758205496638835,0.0025859313652996123,0.016278017652781647,0.03941232747968105,0.22872146797569745,0.06205274328522939,0.00014180033626926127,0.0014152198979356732,0.025760289108878735,0.1657307163913419,-0.022514904636955,0.00024068884179898666,0.018945198055723186,-0.013067263358621765,0.07936182538146637,-0.004468828985896731,4.638034252384238e-05,0.006284758720015099,0.026089793115788865,0.13354649003015603,-0.027747145354139018,0.00032197708535851505,0.0031369968172279303,-0.017381368495533494,0.21624499167323358,-0.0008752229138356399,3.335555263422563e-05,0.012405679663737583,0.02387230260819081,0.2246943053742671,0.14960218073923223,3.549637094609948e-05,0.011356767540136361,-0.011704644753927539,0.03233994023582509,-0.03049044269585588,0.00011658475914815529,0.006370546835779781,-0.0020138433055607715,0.01371939328847327,-0.00759903518926628,3.390651434193724e-05,0.022143325869905132,0.002865690092021639,0.008278972407042855,-0.01345880006759855,7.67414797814996e-05,0.0017089751866668436,-0.001489339210464643,0.005095662526323995,-0.002482087742783718,0.0001336415675736788,0.006707323916396051,-0.04544889010252866,0.04036516622525083,0.08279410506200713,0.0006435645270531001,0.03006048742587468,0.006972906455312201,0.024893875536039993,0.004729347698538867,0.00011789824333394413,0.008933481854838388,-0.06274846514907957,0.19884185799035173,0.05740423960890548,0.002025417086620987,0.022326969428003322,0.011992738054157417,0.11056370458541005,0.00010843625717302066,2.7892533368045825e-05,0.005927279725789014,-0.03616776850775896,0.09550073591281223,0.016109157552548443,0.0012381870740048014,0.014818959506493765,0.018543198653162604,0.13731652634599362,0.008296371900487787,8.9926457507287e-05,0.006841111221943036,-0.007885500868727925,0.011017818344580672,-0.03980783823011362,0.00016891921810836783,0.012935111011583521,0.07192084970251224,0.09882293648680648,0.23094750537019643,0.00041773510063611226,0.002939119864406284,-0.0034502163936579733,0.01258903736617672,-0.021657093709274655,0.0021242427903967764,0.015119425101443786,0.004150813963536436,0.017418793631584766,-0.09381428729029798,7.645494241824129e-05,0.02093116265689017,-0.0030999490360568947,0.0040948489853770455,-0.03319259648166139,0.0018818883590476618,0.0033651464669204444,0.022783941581487593,0.07799913773339924,-0.0026029845909138574,0.00011573243567133731,0.018955180050504266,-0.003838259442714174,0.008289409215393537,-0.011539746998155668,0.0001877029609627982,0.0049368461110764214,-0.012274622050354818,0.058148048119730136,-0.024857067384400446,5.152131182953866e-05,0.005727195747740957,0.008427538012716465,0.029654507117342018,-0.004188755848558276,0.002693568769268594,0.0008875830715289601,-0.03949239913857819,0.19575375381509083,0.013123959895609385,0.00010035614941487064,0.02372333651771246,0.02710740179861705,0.1384325972521611,0.030044212650990183,0.00014200718234431113,0.001702572714862519,0.03001260658204691,0.18791415012643306,0.017698104454038275,7.554277425414225e-05,0.0008358554823985715,0.009254063355553207,0.04299141194348592,-0.0027579385490171986,5.410011081760144e-05,0.0031595556476454135,0.040170019887365155,0.0762164851728268,0.02149456976888991,0.00025697005886379,0.026981618717740526,0.024826231151171538,0.1065176019436048,0.060004944483785044,5.795671880106929e-05,0.013006112476595874,-0.004406008237222129,0.039875108602662815,-0.016595666869920537,2.850852259403824e-05,0.009364441255560409,0.001798405130767959,0.0057841544814352126,-0.02383078926099368,0.00010868174779117666,0.0018694049486399297,-0.035987316568157984,0.1430810914708862,0.102491605750849,0.00039645617876971973,0.001616472013909155,0.0009157991983858824,0.004687598495637785,-0.004711278587403568,0.0001118978259690351,0.007865987432313239,0.0018974281414767381 +2019-03-11,0.00636182929554113,0.04127401553600461,-0.011119892777463343,0.00016300160183466055,0.00546875934275787,0.05736114648656516,0.20958976776284527,0.05372714850644572,6.56686779651192e-05,0.004442681074938469,0.038702002544314676,0.13225163417149505,0.002565005606114081,0.00013537223354964997,0.014977631901281022,0.013911118150409733,0.012773772605352526,-0.010156104065319374,0.0003675451656255112,0.005618607434844855,0.018345386354089322,0.0353245717520738,-0.045825722545452474,0.0002717363447665796,0.0053887404783377725,0.0017924126974259928,0.00475508554977026,-0.009540145811273453,8.230503743410804e-05,0.00467937952875215,0.011809308489892338,0.03671053493524044,0.00478424630229723,9.438948355657199e-05,0.006877367369108933,0.04348055175238021,0.4147809016853275,0.05889245290922332,3.594801461664864e-05,0.007515825201137754,0.022214221645558824,0.016091755187566673,0.022033318508399714,0.0010645657034359746,0.0021882536118166527,-0.014499758566298876,0.03805729800773874,0.029297802590892603,0.00013322468630123482,0.0015826488238033323,-0.0019681913783974776,0.001328828188306291,-0.006615623496485898,0.0007239738023204527,0.0048797987243577885,-0.004974804757408036,0.061404225488455734,-0.02385343844779226,2.4143519127075863e-05,0.0006021507103456832,-0.07633544366226967,0.2597882190032732,0.09220475551615001,8.728865855181307e-05,0.017334357715402066,-0.012619658283996263,0.0725954326878693,0.03761487854628554,4.8932805415349653e-05,0.007956806596713302,0.02607159961560668,0.02785787049566246,0.08052778407630261,0.0018253356479331813,0.006230514397976287,0.01950886917102643,0.11654688714837812,0.002474740827205112,0.00013774743660201053,0.010397333363647803,0.01680628117768818,0.09996639163324927,-0.018156888033260328,0.00026033097264060865,0.0028331420862436375,-0.010918024773418767,0.05746030879127845,-0.013392101415931008,5.352258441953875e-05,0.013447578891627128,-0.02115888240015682,0.09478228469995859,0.008620122011810524,0.00036791912118159733,0.01044837379467601,-0.01610592401741215,0.24864277801519175,-0.009991094398906603,2.68806661917883e-05,0.00627193637514624,-0.020660931995414255,0.22757855953869785,0.1550456883498933,3.0331945927114545e-05,0.0013178269129652544,0.020221617459303197,0.05856208672696909,0.007811518156111986,0.00011123004240463386,0.005580466961164744,0.08837669195675717,0.5130345104617163,0.09826645858005563,3.97908794135758e-05,0.022131164337684348,0.004700322039008495,0.012613530043884555,-0.003267485468946378,8.261679642805276e-05,0.0031989894385273786,0.0019150595923732128,0.005813677369000657,-0.00484026905242573,0.00015061906993805099,0.007131783786164473,0.026216815663538635,0.02086440999399836,-0.20391367786242892,0.0007182066030767387,0.0020319319435355763,-0.005379269141007867,0.020573126624233114,-0.022820125719548393,0.00011005479872104513,0.005402388746623549,-0.03919303406347808,0.1428002945905977,0.009149424152441092,0.0017615661496649506,0.012799750735420936,0.05137052337105392,0.4809439404211152,0.04042863072503852,2.746639923539951e-05,0.0006249215553052741,0.006756670154406065,0.018989827951502388,-0.015033643852836918,0.0011632765084073084,0.04200239484961579,0.0005847012946742494,0.004993591221620843,-0.007675505766703921,7.79734429057313e-05,0.001288116111258875,-0.048692712873695525,0.07204113343306967,0.06223356683763537,0.0001595250248097544,0.01907080532526811,0.00014473181391554723,0.00019691813976539395,-0.003768483833781915,0.0004218734499454146,0.022031069464685065,-0.015075447531677928,0.052334286167315704,-0.03457463156485356,0.0022327199341605156,0.019030423098886987,0.018442136204067764,0.06989080246669833,-0.033156061262341205,8.46606441700092e-05,0.003279466351080678,0.018826816875393913,0.027716319761172902,-0.026288940674360405,0.0016885678923353057,0.02051915068863431,0.03705014906268799,0.13072577076821543,0.048104698233315035,0.00011229095747642586,0.0015233621590532642,-0.021216829547111616,0.060050563078107744,-0.016388929882541065,0.00014322663196059915,0.004082261071155196,0.020077954656185677,0.07936806672879239,0.007570108637188005,6.174298080529048e-05,0.014866991772715896,0.001139385400537148,0.003924573018982476,-0.00850714492193555,0.0027516696548191113,0.008784998802820599,0.03453844541566277,0.1791933247511566,0.03008046210681968,9.587856584853244e-05,0.003931881002638511,-0.030023483563530896,0.13830990826514275,0.047910718677035044,0.00015742314056810253,0.003268545842759622,0.0062638422153217495,0.03246827916242839,0.0021401728679195276,9.124944607384004e-05,0.02248885806081833,0.05699488288245599,0.25014638022640984,-0.01849112087644758,5.726497002363998e-05,0.0024844747193432555,-0.03241461778266454,0.06393542052827585,0.0002946970935109353,0.00024718879078529084,0.014422221944907677,-0.019098713082751424,0.06980573764984717,0.030760842649932403,6.803421209573383e-05,0.006395593350033655,0.009527131275330062,0.09344220679057821,-0.017343471753712054,2.6305729407219825e-05,0.010368305954123835,0.018746457039097844,0.06042068514913553,0.05583356218448999,0.00010845323721161796,0.003972761720588611,-0.015857833840495203,0.0712197145897791,-0.024114061448695042,0.00035097130051520094,0.005051770810062752,0.0035400344372002535,0.018480912374100187,-0.03257499358445625,0.00010971244027916669,0.0032038890184234716,0.006483942172696641 +2019-03-12,-0.020551232065355245,0.1478673127899862,0.015577289011973035,0.0001469779774510703,0.02031656338079323,-0.0027369450024019746,0.00854586493612844,-0.00357069773447098,7.684587719904143e-05,0.005750500004967357,0.016507826860973584,0.044071164573961874,-0.027464572403368245,0.00017327367354317788,0.017619031863600688,0.012933244392496901,0.01247427709901197,-0.001724041003811312,0.0003499128999099969,0.0009249753421211762,-0.018501109520664347,0.04037298471325728,0.0044663086678822135,0.00023977543580298277,0.011015333546667495,-0.0029968893248237607,0.007696753707398479,-0.05228282018354266,8.501779851908148e-05,0.0009849780148038325,0.004513453924634901,0.015351074079725389,-0.0015860482068284696,8.627006019642276e-05,0.010673196987011779,-0.021120255074424856,0.18396090309050442,0.023265805323399082,3.937061877812605e-05,0.01126222694636275,0.028801603723731525,0.029583782775243695,0.0007600318867962814,0.0007507714557002717,0.002578721744032136,-0.041241508251325776,0.10115889687411217,0.12181842639377885,0.00014255824531592427,0.0022261299004779057,0.012769375356039109,0.010541237003399316,-0.004873652281699025,0.0005921100515118513,0.006433019314543629,0.01802988811073722,0.2315504328145746,0.09900706877928613,2.3204393622252262e-05,0.006636614065705295,-0.013477777839328332,0.03822941719191686,-0.03914667911110007,0.00010473013275200162,0.002857531731552756,0.026876468385039442,0.15975440569212676,-0.021004198247217127,4.735667209017228e-05,0.00439935240045429,0.01193951818136686,0.011367409417160121,-0.0012367187436406865,0.00204855803380497,0.00347172105555202,0.012867268880228919,0.07766188769759597,0.013014038763443085,0.00013634227661119878,0.0024099430886419786,-0.02213638440368667,0.13467490767952298,0.019090362314676236,0.00025452370311357945,0.0054495224235503875,0.000224359132344259,0.0012437420855443998,-0.053581408533935185,5.081294632232461e-05,7.230343095622591e-05,0.016746065829036972,0.08865094381962291,-0.09187278425411005,0.00031132660654834633,0.0004340103704538931,-0.036804451330280985,0.5564605105815371,-0.019586800677629253,2.74470851187856e-05,0.01709668659109675,-0.018039434413863787,0.17628145747323837,0.0743009754931118,3.418991283683633e-05,0.003022211093883503,-0.0032030377817740497,0.009869572661151595,-0.008732871763057455,0.00010454095630209411,0.00877370556034094,-0.024307730989238396,0.1645560039135212,-0.022833247657764365,3.4121103265565025e-05,0.02966449273351536,-0.003456148756097424,0.009745939843366356,-0.01241764929380393,7.862236122121332e-05,0.0014349144140266622,0.011141648485201402,0.04165026294057188,-0.010606385195703128,0.00012231516363050683,0.006851117437788584,-0.038834728120237375,0.0409609749308577,0.05585292085899086,0.0005419079788926689,0.0029776078026858095,-0.02528783890737873,0.1019919616381012,0.006882967034613712,0.0001043594497459266,0.00452490701095975,-0.05242702318445709,0.19499964715246654,0.0061325371964273696,0.0017256016536195177,0.024375810940836753,-0.02124338003593088,0.22409026455590625,-0.006138621236314113,2.4377144096011043e-05,0.005560820036620383,-0.027858226833486616,0.08446404676169054,0.00017684258047903552,0.0010783328979916888,0.018367852934810757,0.07116030210800806,0.5174741144639559,0.19082987292387973,9.157455067672518e-05,0.0068968893899610615,0.004428376286111596,0.0062653886187834145,7.80606401305767e-05,0.00016681760775151273,0.019041651585258595,0.02995548920389132,0.04484574736494429,0.019088873226450757,0.00038340614061406795,0.021521104154547378,-0.04648293065052373,0.17525348102021307,0.0835518786179313,0.0020557826181684413,0.006456985600326171,0.0028344339812459464,0.009609543839390002,-0.002080849872389435,9.463547014057575e-05,0.00010981451074196279,0.09564424457216805,0.11742592207635033,0.10821326634072524,0.0020247530134271763,0.017759767794091736,-0.05381614631575254,0.1268599382675336,0.04593540084816805,0.0001680753933130576,0.01609395333459469,0.030450308154365027,0.08557010090455547,0.031674211217789745,0.00014425471729744474,0.020301577132381957,0.00745348040259536,0.03143170372584808,-0.028556968572303776,5.787688072425415e-05,0.022436272346084033,-0.025464182329707045,0.07737036147241858,0.0012966385569935718,0.003119415080347538,0.035796933860923176,-0.05541762635659689,0.2908927344083383,0.14830800319460158,9.47666692523692e-05,0.0026459459107170207,-0.0006193212598709152,0.0033581171612906842,-0.02239709366996268,0.00013374603898166684,0.0005535360536341322,-0.019040712919235793,0.1392087894746193,-0.004749342915530091,6.469418511740831e-05,0.008355881832466777,-0.02877243150874151,0.14601820749875685,0.03268323940615174,4.95241405005822e-05,0.02427898030542487,-0.04503326947897849,0.08600231802170515,0.015403213435653009,0.0002553011174020193,0.020261779946040576,-0.007833815094460564,0.029452821439607858,0.020856518699361497,6.613948179633411e-05,0.009223881759664012,-0.004172791468193054,0.046568845905609495,-0.007331441229248883,2.3118651168462275e-05,0.0037464102637263077,0.002432836589103426,0.008580568013484962,-0.014452905355177325,9.910735033681918e-05,0.006294282159809514,0.014455320239428759,0.06273337306702685,-0.025875254312332854,0.00036320937418296366,0.006524397739643575,-0.01863595148456579,0.09606869013777328,-0.0010213440900381594,0.00011110701957092784,0.010684982143522892,-0.005290134284062025 +2019-03-13,0.004689394213672747,0.029255623931076762,-0.19923232142927738,0.00016950946861753782,0.0033537815139813515,0.018611065978928164,0.0664372029661571,0.007651188911214361,6.721565501191692e-05,0.0021226977443248064,-0.02688559822479382,0.10629363248901325,0.06919168209712441,0.00011700641144893909,0.015937756144978575,-0.02617717010283052,0.025278858834303097,0.19354608574599333,0.00034948865853335487,0.003893176172010489,0.030874869256366764,0.06086682329952626,-0.015273841334990648,0.0002654130443122532,0.006929973605055284,-0.015260275366065449,0.04352365615544882,0.0339152760408135,7.65567942701202e-05,0.0042678836035008275,0.004462872129729603,0.019040185861589277,0.0020353375659034607,6.877539848233837e-05,0.027315794653960473,0.05044463309481291,0.46869645769485524,0.07882809116637991,3.690811888356446e-05,0.009957098632279622,0.0006725899453237381,0.000503804426732405,-0.04263350654962388,0.0010295161840728928,0.00717068405258499,-0.006727495047902972,0.013344482621314229,0.000991684258833045,0.0001762842582960192,0.011274548887506496,-0.02528040881607918,0.01852930133540143,0.07605275149667187,0.0006668826317973213,0.005753120602101763,-0.0012123328636522454,0.01292336373695803,-0.014907732158652353,2.795561813342001e-05,0.0009564176576176322,-0.029466695041999863,0.09027609560160492,0.012893679947283245,9.696381595877583e-05,0.00962145540333039,-0.0018897239835153608,0.01023416667773126,-0.0029104597866900245,5.197658089700683e-05,0.006023224103228588,-0.009749947454583229,0.007781523114769875,-0.014972433015073396,0.002443771726534373,0.007304001998594935,0.022161772238765604,0.16515106799820178,0.026257749643800787,0.0001104269834054969,0.015576367666886389,-0.039055260982478975,0.2280716861009159,-0.012900913051823372,0.000265165124182541,0.010416419168270474,-0.013171563149238678,0.07410854064935933,-0.012562830639807216,5.00645149866659e-05,0.017022737331457902,-0.0506554351017762,0.2587769340182097,0.01746544318030613,0.0003226170342128923,0.0060231329903953175,-0.087508188625877,1.2680685368619466,0.10900707522877547,2.863757229067737e-05,0.004408629337832084,-0.0095964889017575,0.09806667819626397,-0.057423724298979,3.2694342637261414e-05,0.0029195688023336067,-0.009537438934488463,0.025186154316685066,-0.09116812327436036,0.00012198113390939025,0.0073315242031303145,0.0033373188757285337,0.026172174767326816,-0.048851549776530764,2.945440602542905e-05,0.005036745903967015,0.007391020919820173,0.019711452923988553,-0.03953632018296747,8.31310329099078e-05,0.002886202098024292,-0.006201486287278296,0.02461031709147675,-0.06829232204663493,0.00011521981509328816,0.0029934692181784843,0.05864037212532236,0.06631311393463152,0.07164594736837628,0.0005054437806055679,0.0007471136920221867,0.016129263667120603,0.06288443181239432,-0.05857026447431326,0.00010795864108018892,0.019779147197670884,-0.05486915922962043,0.17617405688623933,0.036739526382054764,0.0019989665410331077,0.02028576863214697,-0.021872223074682794,0.21562771083590626,0.025332154411555886,2.6083781262191362e-05,0.009436831254732705,-0.02214640528208211,0.0710091455316338,-0.028464560741284367,0.0010196713720068656,0.011361273291662328,-0.011213549459527794,0.09501723424338214,-0.06385324932490814,7.858983216940922e-05,0.0003663124897102636,-0.010465390537119682,0.013492952185862722,-0.018820260098710018,0.0001830601628816652,0.007593157401379487,-0.019262117686955436,0.024134930972282462,0.014563954478223898,0.0004581016802795095,0.0039133702259606575,0.047326094593976346,0.16604759716396564,0.06027562469178419,0.002209115450955219,0.025344351264939002,-0.04415574532825775,0.14605007365322695,0.047085849010114665,9.700091030806902e-05,0.0014061606748250258,-0.0069857550158573655,0.009776229820550986,0.002403888698277996,0.0017763115537002133,0.017024927623533928,-0.0019709163746095353,0.006012199819193171,-0.009553008364480612,0.00012988255639880195,0.004230252097032637,0.013845508372034378,0.030667118083637333,-0.052739985695314226,0.00018301905863804912,0.01024336347376399,0.007694967419883161,0.03183145788978756,-0.07501155148844707,5.900165319783384e-05,0.0015226980643015635,-0.05193560910655938,0.18542113047589429,-0.006791207683927137,0.0026547526490605686,0.002744477664165276,-0.0036451350530206685,0.01976876875860793,-0.0046355307299881686,9.172222324402979e-05,0.002140029029296152,0.03863130680825391,0.21382219513236672,0.03606869012437359,0.00013102295808491057,0.006434880150567942,0.008820041290655273,0.052988534672883725,-0.009435178159761597,7.87294843818563e-05,0.01966330027275823,0.002295922828450051,0.010091474404234886,-0.0014306103706234856,5.718077775031749e-05,0.020210397372937946,-0.045952547269130346,0.10709868141269199,0.00046333761009868373,0.0002091967150491541,0.01070680806008841,-0.0015366356593675468,0.0058065883562288916,-0.22717540893318788,6.580581076653331e-05,0.0019079594496668145,-0.021371562851328026,0.24049097765445074,0.026780809898001707,2.292813762231705e-05,0.011475289171368811,-0.009363631708705453,0.03280465770456022,-0.07408350241237191,9.97740905078722e-05,0.005110636134880672,0.003363403799612507,0.013753056264902913,-0.02317083926016739,0.0003854852469441301,0.005014756544713159,-0.009139751310341991,0.03650687095483445,-0.007593706678279955,0.00014339419300999018,0.034727313838991594,-0.007323611220212344 +2019-03-14,-0.03341151640203581,0.22353563260982606,0.07488414117368146,0.0001580651068321293,0.009161683004369982,-0.015429049387615787,0.04773163199520498,-0.0032815062320900104,7.75610022030018e-05,0.009044181577562128,0.05490504580933188,0.18012077888544972,0.10436411333952367,0.00014100861484112338,0.0016306835971076493,-0.04372175100864948,0.04574574850703433,0.3041734169797481,0.00032256308562830923,0.0002361243609709223,-0.0032639015524860105,0.006284919507224749,-0.0019207520144470696,0.0002717284448444412,0.000520272463268553,0.017485422831975038,0.052297853175578696,0.009342565530512388,7.300271587713866e-05,0.0020204075946418064,0.032247641413549986,0.12535031676276098,0.02377742582149093,7.54852982538506e-05,0.011121399675279985,-0.03884962725489804,0.41187752644448,0.06744996293505631,3.234576112109424e-05,0.024727862771973703,0.014733386841053022,0.010851943572337095,0.006347067589643917,0.00104698353422891,0.0004473398116919983,0.02132996675023558,0.05007609342905551,-0.041484998799483204,0.000148943523582774,0.018833682641959906,-0.007448182811104322,0.004897517557593066,-0.023103071926240497,0.0007433591375227579,0.012616399859072397,-0.010097651001912946,0.14126862148555777,-0.020319543994674172,2.1300874741323012e-05,0.0016898514364942607,-0.04919270924259043,0.13208427307558598,0.02969253387596618,0.00011063707081658687,0.019746340271752164,0.01201900582383638,0.05632144086727032,-0.039581668498005956,6.006985825327992e-05,0.014414367761397732,-0.0012863760824111746,0.0009893790427531776,-0.0002781050366530903,0.0025358772200162853,0.013600962386275402,-0.021918280912659363,0.15174588278507803,0.01151914041275417,0.00011886162954889579,0.0038407533998920107,-0.034552656293138403,0.18587600485440103,0.02750861036553514,0.00028785007216895937,0.008156374492135833,-0.0009293806097531203,0.005589267414399245,-0.04416893060503905,4.6838143697424674e-05,0.02529002636128139,-0.02598074072334603,0.14744238992047173,0.012461325822457035,0.0002904129473938188,0.00931910706000275,0.01733549893070303,0.251798486020693,-0.02138779103096721,2.857021195395624e-05,0.009190708486695745,0.010298302436331456,0.12595567684088615,0.010614421282099443,2.731678628544231e-05,0.01112675915024049,0.0378404348005041,0.1042058227836286,0.011012905199465265,0.00011697333893004875,0.011204232514532366,0.0009045351791747864,0.007406664417009686,-0.006885844723191153,2.8209485817561314e-05,0.013882897775231834,0.0023270118810750804,0.007020773306152699,-0.017787101469434432,7.348370290771828e-05,0.00336331265884512,-0.02150447877886982,0.08185313552354374,0.08822286191833238,0.00012012743274632132,0.002099028903895344,-0.007491325119872135,0.00838333407449914,-0.015363426853113293,0.0005107606535084926,0.009334462441993915,-0.012069682075865139,0.048431242438425885,-0.04529277622244498,0.00010489534827792151,0.00402670128001704,0.027496141666727366,0.10040269817712372,0.009196828982174788,0.0017577032163105175,0.010388103378246727,0.019042035039889715,0.1549619172925422,0.0026932771392536793,3.1598798838215464e-05,0.014253880317030137,-0.04764488105762311,0.13650175212690616,0.01904112116486572,0.0011411672274066868,0.03304158338589175,0.02136200758730573,0.16614362014270537,-0.0006490270497765625,8.562173797915469e-05,0.005661289814617574,0.012702209657441137,0.01973915348289797,-0.01113722229964394,0.00015187844398700296,0.015834139309726693,-0.018962627301748195,0.02475780938742681,0.0165909635773185,0.00043963292303235207,0.007746483736312468,-0.015232373148090828,0.0827900300865507,-0.07469421166133684,0.0014260668051714299,0.028097764799756807,-0.004447329206086874,0.016990452658751126,-0.01631656384799156,8.398170732813852e-05,0.002233006619096578,-0.05333368175456454,0.07909771425655654,0.04202237955373052,0.0016761574950482567,0.0073587379227962315,0.008380445473434537,0.028542753276755952,0.0030460907253889694,0.00011632880793564951,0.007558745882246959,-0.026874526530992947,0.05876428272043819,0.021303680496500246,0.00018539062061075206,0.010035387805137956,0.05483440580728039,0.23588825173175595,0.04543453945942269,5.673626666375738e-05,0.019289146698611894,0.06656726681889816,0.2419123025894217,0.02375280477345533,0.002608079517226825,0.05108933725821469,-0.004054815158162936,0.021633030882507225,-0.06914010503875807,9.32382818162504e-05,0.006934487673740787,0.018596545280452063,0.08931532154861613,0.00045988112644596355,0.00015099657282707213,0.0027523807839873967,0.03910720435184904,0.2826391007662776,0.07442132552084875,6.544451096528364e-05,0.007330810177922212,-0.039342449086990576,0.1972459466158213,0.036144045027292585,5.013034565094859e-05,0.0010088086080971203,-0.0002523667989759423,0.00042121563931835705,-0.022020674035850146,0.00029211719751167227,0.052453326228109894,-0.005109337034212856,0.02233361193459037,0.0246485997636331,5.688790781067352e-05,0.0008549689740222567,-0.0077805606063522225,0.09937037678164809,0.005884453846700189,2.020157540552663e-05,0.017079120127459213,-0.0013889288604220101,0.004639234820531563,-0.0023759932995680447,0.00010465081413358696,0.002732422610370151,0.02097426514956648,0.09479452983083621,0.07499578881088272,0.0003487638377677569,0.005636359474109738,-0.02783351474833161,0.12640803654521768,-0.08132371882249226,0.0001261145404824619,0.018454436338149364,-0.0020080196733719014 +2019-03-15,0.031245974247799676,0.23054216391025237,0.12162316150136168,0.00014332775196522656,0.012431912581967549,-0.03026983676122043,0.10134842469791934,0.027580409367710883,7.166442205879339e-05,0.004038719984624313,0.0022813218560608422,0.007474706444166046,-0.0007831180419660678,0.000141185346669905,0.01440912026721983,0.0227504115034011,0.02130003814701612,0.027850126105813045,0.0003604763123033078,0.009123497122039618,0.037056788986856624,0.08860850562472383,0.034035743680390175,0.00021882157747844558,0.006637146742435877,-0.0019164437855229625,0.004845770469251709,-0.04737452041667663,8.635350813728415e-05,0.000559070988688747,0.0032924209125573304,0.010402900200960487,-0.03850295255630697,9.286472448648449e-05,0.001375828836240049,0.04388873954872828,0.34428865985525353,0.008372711494782517,4.371485122730388e-05,0.011486698627049981,-0.00916940979554018,0.007858894105431,0.015248648771444141,0.0008997559601630786,0.005991413850889095,0.028603247416645473,0.065919832393678,-0.0016926604858227927,0.0001517263934319739,0.0006391476412512275,0.005127058661420284,0.0032612165693973716,0.0007376974667268382,0.0007684453810937205,0.003003560774044687,-0.001027458305676562,0.014017241439274722,-0.013634222524925525,2.1843611447895636e-05,0.006622802929360519,-0.0010153707748142488,0.003390458514199707,-0.009989306249695644,8.896460651029117e-05,0.023024092678454906,-0.008504071429882952,0.051367028638620464,0.011811000174752756,4.660196971756281e-05,0.00028876020723500844,-0.013618657658858101,0.011344591093981777,-0.010135180814457663,0.002341361262372187,0.0031816274489836756,0.03633164098345698,0.2548759227187377,0.047588972051061385,0.00011730278161411667,0.025520458369905342,0.012209213020475828,0.06699826016963296,0.007388852159774171,0.00028218399529611476,0.0027651420710431166,-0.039554207452271964,0.22093229539560036,0.021313942058077347,5.0430635187269674e-05,0.012597908613924921,-0.049681248601449644,0.2547679456871187,0.05279141086037684,0.00032139160197609877,0.002749322408199207,0.07591886520778257,1.1103195768489618,0.11625835894183467,2.8374743342452204e-05,0.020475106868513608,-0.011476090414851208,0.11077406940601967,0.024472679407242286,3.4612865914780377e-05,0.0017852616556962187,-0.07352685133593821,0.2028214162714677,0.3416406971874976,0.00011677635445496329,0.015029432027940631,0.011317319054906166,0.08085143131004534,7.554025578874047e-05,3.233316533752142e-05,0.021410415941084733,-0.02031798031975224,0.06190816687271286,0.04433752546795088,7.276289553014036e-05,0.004507574808945,-0.009414581084220433,0.03791458802569209,0.007618321800664952,0.00011353852670340223,0.0009073436893494904,-0.006182769433681285,0.006293610435902443,0.003181231488997517,0.0005615116293659241,0.005677912991384297,-0.03344918898011402,0.12471654295228729,0.020265626648295378,0.00011288793719258705,0.008901180317590181,0.026769030818627,0.09955136416165114,0.003081750093426707,0.001725856199040182,0.016825324902512415,-0.0030630452741066926,0.033604700826613924,-0.011429878474241099,2.3438811048602195e-05,0.008617418749725932,0.02506316714016803,0.08170714273861547,-0.015138001259739915,0.0010028759033588824,0.004182454925194014,-0.02536189844258398,0.2153864744854563,0.03976171384028435,7.841316338561502e-05,0.013476177879353499,0.01372994566118088,0.017099964923358038,0.008898783224053672,0.00018950426347115758,0.005363378536461313,0.0030752492643488327,0.00382452678494783,-0.0018846683522127686,0.0004615370079112951,0.004087704524924641,-0.018995789097410013,0.07241933062031973,0.008061475972353833,0.002033073942045081,0.0004658564616216777,-0.0008410420679451699,0.0030111926196726,-0.00012576313012883434,8.961269787102084e-05,0.007857948584763241,-0.009117995177489272,0.01313959121132177,-0.008353677990637968,0.0017250222294467369,0.008060855320250212,0.013280327832406926,0.04013602395283162,-0.00895915894412423,0.00013109631531383345,0.004700184598464405,0.0455476170475561,0.11789912699925177,0.06680315988515767,0.00015660854235041802,0.008030191869553506,0.010148516377787384,0.049357466263598604,-0.024946384127332643,5.0183809347407355e-05,0.015991012885093733,0.006813060361359581,0.022309269835333954,-0.0023869122692482016,0.002894509226151389,0.023334184242829827,0.0017601208005243313,0.009854883370355972,-0.007141084489870951,8.884470652504956e-05,0.004256033048259805,-0.0027866445959285596,0.012387987689935457,-0.04994434421904708,0.00016313291714515208,0.007274686069368794,0.019080076098783275,0.11866953706614661,-0.012388027709426881,7.604830750910596e-05,0.008781403580734148,-0.009726762578615352,0.044429933653370085,-0.026259166022205988,5.502246533238017e-05,0.015992320626698038,0.06343548180381345,0.11089994465927311,0.0009052060436132975,0.0002788883079626965,0.0056763210891638514,7.306823486242894e-06,3.376106244243531e-05,-0.04073489605443832,5.3817917270996494e-05,0.00012624089840057486,-0.010844086973120783,0.13193173873061304,-0.041081425774952024,2.1206792720654523e-05,0.0086240288770843,0.006081925809054934,0.020218491641439528,-0.12215582096172746,0.0001051480758556735,0.002476113650292042,0.011746533243940468,0.050326814049210716,-0.004004900611328197,0.00036790716422000034,0.0025282126955656313,0.008264047701832117,0.043481405365456256,0.0020869193198138217,0.00010885817242376719,0.006442019841710349,0.0038991090827419474 +2019-03-18,0.029201865244465056,0.21911880663660727,0.06646077755668688,0.00014093456600257806,0.008653090052883727,-0.006698802116567166,0.01938197677573325,-0.0063554192339694655,8.292960687058978e-05,0.023292229059109756,-0.03283562612199966,0.12135742754444036,0.020910239009279217,0.0001251630519951618,0.0006972756595973462,0.007994287168227684,0.007170063867983305,-0.05225638506579912,0.0003762916461586018,0.006396247456658511,-0.021595529020003865,0.04737585461629302,0.018568568539503803,0.0002385088850890803,0.0037321883191250614,-0.0025333067044909134,0.006725206631073497,0.0029137737164483123,8.224866921787938e-05,0.007189487298884783,0.009880314321071136,0.03479869138203726,-0.0035821234483909563,8.33101091973506e-05,0.018555143809694037,-0.0008191000737765823,0.007087632161676116,-0.005074972265240171,3.963094327973183e-05,0.0069102584193495775,0.0033892889410958717,0.0028333541668950244,-0.033754799567877324,0.0009224705642071108,2.8793295000432116e-05,0.003607201097035057,0.006923546294991816,-0.029475682411414062,0.00018218123434957825,0.004863940903808992,-0.0007807148913589757,0.0005379273107943891,-0.058367128357467345,0.0007094033373814121,0.012408690256925148,0.017832984613961225,0.23093044060838325,0.09047858163822436,2.3012597424360717e-05,0.0017330368935927814,-0.03764606390148055,0.12041759728935425,-0.053914570713916046,9.287111411574166e-05,0.013021171949830379,0.006441033118530424,0.03343426880302255,-0.0029555428358718863,5.4228241415653144e-05,0.0036211378980250545,-0.023690039804311225,0.01921963757785336,0.029986268194909998,0.002404050404327722,0.003186434132269187,-0.0028999262451641786,0.017701494902007415,-0.015984120560897392,0.0001348121751353728,0.012893574581497699,0.019420687750581787,0.10678571234906828,-0.006496189625428159,0.000281617532193569,0.012712805512171783,0.014759319079012182,0.09200213048544795,0.004306538910587896,4.518865273727952e-05,0.01060690871556122,0.006809658664308147,0.041048385665107545,-0.008248183488024837,0.0002734110537940665,0.034335512229927825,-0.005593539972902366,0.08126485792749666,-0.015641314922263713,2.856368248820545e-05,0.010797738810029996,-0.011905466019733971,0.12415674042149,0.01585215908559144,3.203744006141543e-05,0.0031982737101431953,0.024869038488480676,0.062301107343529366,-0.015178737219429896,0.00012858371952137362,0.001981746738570535,0.03132677829424467,0.1879748746486834,0.00718001353902217,3.849535293521576e-05,0.01196406696911774,-0.0338532641239941,0.09681283687235097,0.10916487348431266,7.75255731411997e-05,0.01528185114473083,-0.0031655923519237103,0.013672987132029631,-0.007515504204571944,0.00010586202044720676,0.006069068065922434,-0.006335422916537183,0.006562369694393859,0.003968880599119916,0.0005518111601376475,0.019318071932171596,-0.010431754661788615,0.0353419924252992,-0.001766617499118597,0.00012423739718606233,0.009115996694817668,-0.025038103700697163,0.06428365478110218,0.003105036749180848,0.002499885101827473,0.02607811738179197,0.008460151429835206,0.08162380196174238,-0.0021273108223474916,2.665284121404813e-05,0.03727901381699905,-0.016069928758753623,0.04349166086857211,-0.000787035010886617,0.0012080341966115087,0.002064975543507375,0.003232827637909373,0.028779078551729682,-0.0018495342036808952,7.480511741540722e-05,0.005069279644455874,-0.00418624436846827,0.006350484247769419,6.745089410529342e-05,0.0001555833503815266,0.006421609952835005,-0.039429537674663076,0.05780967075505268,0.02056198474621374,0.0003914939929983593,0.0036379450585810346,-0.018495820187119746,0.07258137258802476,-0.10125321203270596,0.0019751439776004524,0.0025082833033641845,0.00409417623702067,0.01559996490597737,-0.07267689221394763,8.420410852840048e-05,0.029741189233558417,0.01572082031063267,0.02214809340358811,-0.0051514110007161995,0.0017644771929011499,0.029492703101915832,-0.019935835472335375,0.061099931828877116,-0.020426540671045688,0.00012927357275485,0.02552958751230384,-0.028765167762610233,0.08992837726357729,-0.022906618490859593,0.00012966731873709157,0.013277069193199351,-0.00698960419032683,0.026991914394352928,-0.0006074579865213508,6.320229086273797e-05,0.0008562455429898853,-0.025851381860841807,0.07113315374262202,-0.030442436924936474,0.003444528297307928,0.023012121933833833,-0.05710103083399641,0.28782763499856356,0.12175543601047772,9.868520100445098e-05,0.01946973428392816,-0.022515293507068553,0.11993201816424512,-0.00912667452935082,0.0001361454887324076,0.014714834590618411,-0.029026773733722706,0.15598772662201865,0.027181799551307877,8.801506978093018e-05,0.02822555626846836,-0.0070050269228147475,0.0304575018194355,0.0007902881635895658,5.780466982046359e-05,0.02043281985011635,0.02476041382638914,0.047200447402517914,0.012688434828962142,0.0002557650378422025,0.0010665543840801485,-0.021283964364169596,0.0724667227854916,0.1431894804212531,7.303453653386022e-05,0.00455910153135619,0.018504487890667942,0.19605920746560582,-0.013983205532596759,2.4351241808941927e-05,0.022717377537572008,-0.012767627942191953,0.03590223464359427,-0.010017825226468916,0.00012430760585878812,0.0001909691266514378,-0.0024169880651677424,0.01164561312610442,-0.020170162140266516,0.0003271448729116737,0.0059304185133531,-0.013621338093278658,0.07127523929185116,-0.02816681278483968,0.00010945935497187216,0.0075644731346953,-0.007088938171943852 +2019-03-19,-0.005558490629780295,0.04509916521863035,-0.028895160438549776,0.00013033917225688566,0.007407362753817388,0.03176969787693713,0.12011263946668463,0.012291567792246747,6.346509006643646e-05,0.012977214990056435,-0.025059185887193556,0.08275509074792728,0.042968695322697203,0.00014007784214188564,0.0013808621848735928,-0.00012883152081632945,0.00012470687083869964,-0.004496657398062985,0.00034865797853177383,0.0037223489313594703,0.03524588501783935,0.08292659337988176,0.05024782340913719,0.00022238852145078816,0.010660014904634165,-0.033406914928556596,0.09302667535540735,0.1409427034069332,7.841075052309795e-05,0.0056157704718073085,0.043213019630776846,0.15641458378130976,0.04954594660399496,8.106385013674734e-05,0.002415748185510558,-0.0055531337140845875,0.05170566114054513,-0.014842799239170649,3.682973973400317e-05,0.0032754627698696505,-0.0012404508609070674,0.0010156338622120344,-0.002143021881341406,0.000941861791516226,0.009409030851179404,-0.01713791432987926,0.03727658106805402,0.026955861552634238,0.00016076214085041025,0.01114417338685201,0.013460968815776637,0.009078114407805227,0.025287752942148706,0.0007247780375165799,0.004446844284535378,-0.024045008633769252,0.3340811483979658,0.07612311843124372,2.1448442300806588e-05,0.0018121691368266635,0.011061014805640488,0.039374413929845406,0.011704137513764468,8.34510698874682e-05,0.017596724913715313,0.004133901778554247,0.023825050023981303,-0.11786419890606815,4.884140523886854e-05,0.005562558854369891,0.017047910274226866,0.01259855751936286,-0.02019096143379258,0.002639206064071156,0.0010575920041199555,-0.007301719222938638,0.043784008648550816,0.0004661984015777986,0.00013723399797281732,0.008149839732680466,-0.01712335696463422,0.11016970457782106,-0.05625076756169541,0.00024067720392318117,0.0030276496916458928,0.020691004784030707,0.12075347998544285,0.02343470630956621,4.82661748241789e-05,0.009667748118553393,0.00811663489894023,0.046932134274527366,-0.00878423291676738,0.000285031273992832,0.0026449933557643112,-0.006525077495553647,0.0797795143302096,-0.0005396182419844263,3.394099088330833e-05,0.023781375492576137,0.014851181045642477,0.1463071592303948,-0.017640859746712215,3.391385223659372e-05,0.0005726686674359749,-0.05842038887195874,0.17637824825303328,0.12457302391665763,0.00010669453483686888,0.00277944320921556,0.05065070055140078,0.3591627377918438,0.014592231007940305,3.2575160123531634e-05,0.0022434115405406897,0.019205073327230458,0.05641920477865593,0.027442612466510544,7.546861700958365e-05,0.005925755065449458,0.004650859274067844,0.022220124450101717,0.007198835414139423,9.570514981032114e-05,0.004785428530409564,-0.015191951833281791,0.013394446737237874,0.009147882502169738,0.000648282587044789,0.0019767048496066577,0.008423309353643457,0.0361710176055513,0.009188840383606421,9.801849566249503e-05,0.007251472954573249,0.056067288203417075,0.17553165850723373,0.055176226608531574,0.0020500916161068686,0.0006424275410837374,-0.023601940529836236,0.21546490184264117,0.03426075140490534,2.816782871391184e-05,0.0069344814269315675,0.06860433412471552,0.1786138330948648,0.13971230374236784,0.0012557631439053375,0.03163072817795911,-0.016393380378233128,0.10629626016954828,0.019278857939121877,0.00010270135517255858,0.0083757060051601,0.00502418747727879,0.006970321040623129,-0.07124444958076954,0.0001701212016127949,0.010177548510219122,0.004295708287992044,0.00628841292439399,-0.010208884870666412,0.0003921007237256199,0.0015659430289906326,0.004395576162701296,0.016955762213289156,-0.0334947222965326,0.002009318733280006,0.0055455884444766314,0.02090261727474908,0.08105676194537213,0.00361244903763547,8.273738464355536e-05,0.009197795991491405,0.03656711819243513,0.06041649210449831,-0.22373178149046435,0.0015045700815052554,0.0033071038883176734,0.00936093239848281,0.03322218224628023,-0.0022894109099413458,0.00011163669972779232,0.00587991113379199,-0.0053420964318891834,0.015078964302199498,-0.03442866735354999,0.00014361525919618804,0.0050472332708675375,-0.034303753944755676,0.15696143220923583,0.0448702665078982,5.3341180241842566e-05,0.004243698361174912,-0.07413801603402703,0.22527584600365572,0.04454537806872819,0.0031192083772840604,0.018785167294962435,0.025841161090334352,0.12366973764713865,0.010924638235063903,0.00010394154181417107,0.016124418914228212,-0.0204151867585873,0.10033695174512648,0.009577584821181347,0.00014755476496216785,0.01444822412693215,0.021835773341011815,0.1534199570423772,-0.11366163178829435,6.731865332178845e-05,0.003920166193956757,-0.013139564865186621,0.06529621383820818,0.0060313917584916615,5.057552252313677e-05,0.02247628015540988,0.011814196794617707,0.02325608755269432,-0.0701278220481506,0.00024768342306848693,0.01797134823109595,-0.004949720756280074,0.02032030671729177,-0.013409847302430736,6.057100999152107e-05,0.00577361900811847,-0.005681433683285243,0.06652559711135524,-0.07519941468017463,2.203436026193336e-05,0.01200657428212414,0.01780293663473737,0.06440014012714276,0.08257280298740609,9.663040466986e-05,0.006747790495851287,-0.020022884064905003,0.08621669839723747,0.016625992200953576,0.00036606922162985743,0.0004978386395466956,0.006237980097744661,0.025912986311167587,-0.0016281462135798838,0.00013787906040195453,0.005844465129033523,0.0020940322638355316 +2019-03-20,0.008711326683674893,0.05822636643632372,-0.04607947990613974,0.00015821628952137278,0.014530985593524606,-0.014964071592593746,0.05842711217637548,-0.005336841585146341,6.1453395284498e-05,0.017005594675952782,0.043260524437599215,0.13354672492714004,0.04641054676157719,0.0001498496533257989,0.022021667442967158,0.012501104910457295,0.013889153450930267,-0.024767800981610143,0.000303766921581984,0.001569044165961504,-0.021840513014223895,0.05711662750241625,0.021029348178016504,0.0002000774074983341,0.004429619539308568,-0.0016800785837652172,0.004300023044078575,-0.026332499550877953,8.531110213666452e-05,0.0035665300333049222,0.0084034004653769,0.03032575991238921,-0.02660313740702356,8.130798965668283e-05,0.020110208585950612,-0.0002133346218650677,0.001783636244122454,0.0013237555805061256,4.101603434541837e-05,0.00031878652583174516,-0.0021528178364472743,0.0016604808656783153,-0.017848900009959617,0.000999811652853935,0.01493738898659826,-0.0007739737135106705,0.0018836586919043082,-0.015136230119815188,0.00014367654748184217,0.006063616255455616,-0.004138470738872514,0.002821874953910916,-0.016409486731711113,0.0007168470167516216,0.004011819441074344,0.009828608255619063,0.13302107205709496,0.009252684868364126,2.2018836736201625e-05,0.008177607462123654,-0.03859526592695123,0.10427149352644252,-0.03412932934882315,0.00010995613892193903,0.025720254930246114,-0.00037925403296018437,0.0020654752959671863,-0.031750488485056905,5.168589263303531e-05,0.0018471836927893722,-0.006025476764311446,0.005376161952953805,-0.030062194046704693,0.002185959168815011,0.0027330249284871194,-0.048314375983980376,0.32516255612855727,0.05425840149754828,0.0001222722639515025,0.004488424038988053,-0.01938118703389447,0.10102960387223343,-0.005957194866211688,0.0002970571119217103,0.0030616688795091817,0.0849710517269164,0.44808707275027276,0.1294019707975108,5.341577513670973e-05,0.016305382481581355,-0.014526945691467999,0.06929903860763535,0.0008376628139954033,0.00034548875043396196,0.002944149740237517,-0.0020435368135601137,0.029121222934246245,0.000595505031153251,2.912078567380956e-05,0.004988456752114333,-0.019581979890775,0.2563070188123691,0.0687031150429879,2.5525708778140655e-05,0.005747320331638951,-0.0003021322768845157,0.0008810646400679824,-0.028676548277907107,0.0001104617978466056,0.006755763612394823,-0.003317620482585208,0.025114402630199182,-0.08057153042579433,3.0513795212565102e-05,0.015839494973965605,-0.0358687201566935,0.10342935375129682,0.10731556365155942,7.688638676195238e-05,0.007213613515776,0.0040491537195884225,0.016849165614675855,0.005330326234527148,0.00010988400016264508,0.0018055106473974407,-0.006147276932998825,0.005274246985625971,0.0016231170444488735,0.0006661896427718127,0.0011181444236145748,0.005458085506562223,0.01987083016973603,-0.006680295916006095,0.00011561397482633689,0.006464158169364844,-0.04669782608093609,0.13465684407728357,0.02515545406134574,0.0022258064996508718,0.012587355823471695,0.003303792291393968,0.033271010152740366,-0.004502223282717098,2.5534593236034545e-05,0.004359814330106642,-0.07238340910622224,0.17907201438324655,0.06594898490751135,0.0013215469123758503,0.011956675787984213,0.050591473841668365,0.4092289584216966,0.08355607831638857,8.232592451727198e-05,0.00899967676160498,0.004792899837613471,0.0073211533147221975,-0.09299675967972247,0.00015451271999885612,0.005594595564405793,-0.008746738599962682,0.014329059320189312,-0.07773524045106851,0.000350374411130277,0.010328414865782712,0.0035857989000624966,0.012807741822448947,-0.01191219780082091,0.0021700198489036982,0.014158776367863217,-0.0017024348386874039,0.00665620852417976,0.0008825023508893394,8.206046045923087e-05,0.02261273410081219,0.029116421338589007,0.03959333407528643,0.006525599193727082,0.0018280712256806579,0.007931432918700024,-0.02108652367041938,0.06715050081004646,0.012656004169537088,0.000124414720502208,0.006594317934908201,0.05465438359615565,0.1617141492311621,0.08994636193782266,0.00013700529633643103,0.021312515972853222,0.010688011543111265,0.0380596254465961,-0.006915157969888025,6.854035180008168e-05,0.005651867970570133,-0.002437282304309031,0.007208887305546237,-0.020795322834174294,0.003204465918246203,0.010168783153956572,0.01239038293910485,0.06735002714428448,-0.015974854742466203,9.151399708284185e-05,0.0035282174080225005,0.007927294248667258,0.0418905595905084,-0.022931384874033244,0.00013723648982799812,0.015322446409599982,0.0010326741618163194,0.005661330477915291,-0.0025402742549273435,8.627669538285149e-05,0.01359230453432568,-0.007314954476496298,0.03179606810620325,-0.033703021059402906,5.78210007491355e-05,0.0037172350116112,-0.002219210204851917,0.004761268151907206,-0.010920070118835088,0.0002272506810797379,0.007962004261802599,0.001949741162260222,0.0076279186800455425,-0.001109129397388619,6.35602039199212e-05,0.0022428130370431678,-0.0033761090944001678,0.03884356240317455,-0.006141836225278724,2.242480650664181e-05,0.0025383537439429113,-0.0035995231536039966,0.011795755428358796,-0.09789412042965952,0.00010666653232941427,0.004872779844843892,-0.0012420180886961226,0.0050753089839920855,-0.0014025440896889767,0.00038573887068715535,0.007679462789760272,0.038012046122849585,0.17509867946566565,0.012366972356905025,0.00012433980236995588,0.0019128406376558904,-0.00038301385074897124 +2019-03-21,-0.055537688302305856,0.3959579894774515,0.18030586817036637,0.00014832872793965783,0.014923581920833777,-0.025043136802354368,0.08972341647369042,-0.11122220754224384,6.697202802269722e-05,0.002001093805210496,0.05319888576832137,0.17566145877548148,0.03976169180745477,0.00014009520005410904,0.004343754221797255,0.03425397602149067,0.03609064284784891,0.07538020668063324,0.0003203201269238386,0.004513520557946363,0.062312572604097706,0.13559864401859859,0.10211189124612755,0.00024044630489518593,0.007758242657801077,-0.005608970767191048,0.015297100382781786,-0.0066932496648973395,8.006096117750039e-05,0.00820294144821286,0.015651775405474178,0.058177440907769294,-0.037107372939887834,7.894031387646624e-05,0.009257469349322896,-0.0190229184123764,0.16437096435749293,0.01674316047394958,3.968721798717062e-05,0.007506712405664258,0.030873330593263554,0.02756504939687441,0.04248187903163883,0.0008637130767757498,0.008062273461304224,-0.01772938365061046,0.049690910223711415,0.023044262011675202,0.00012476092103058073,0.005227770107178028,-0.003970136469950839,0.0029484481460118448,-0.08157494111367337,0.0006581672972754959,0.010584107356852836,0.005116687721626401,0.061006898856120574,0.00787630205877613,2.4993826596279583e-05,0.006496985512848574,0.09535931236973452,0.31196681261445514,0.2387283017662125,9.080416159064648e-05,0.014068142186420649,0.026188385171320272,0.1329826966496451,0.12596100209288014,5.5433895997807954e-05,0.00468400336993381,0.01681255352458695,0.015656765550227825,0.018469415733628564,0.002094375766849103,0.002164872122465601,0.01724438651098029,0.11602281419870919,0.011051767962348392,0.00012230844956556518,0.029853155565785768,-0.043227799173089484,0.21893412939050416,0.04959867381456575,0.00030574396162273454,0.0013394466097997634,0.016463135917520053,0.08962182265649152,-0.03632547520362686,5.1743970148018116e-05,0.008322311113759754,0.00665546470783052,0.03306880100853323,-0.06316896779966688,0.00033170097150270195,0.004086424417944778,-0.019563116877945354,0.3216401918364064,-0.003404865217316452,2.524050084826343e-05,0.012946822062522402,0.01110425278935933,0.11833303219399946,0.027099076419478944,3.135198595587764e-05,0.011934890575536226,0.026532209280603188,0.09565625497693954,-0.010298279628008377,8.934758044618096e-05,0.01143977686802025,-0.006999665791167404,0.05522350431346878,0.007846025102198246,2.9278290694264883e-05,0.005035616431847434,-0.007313616173207416,0.021144781128900912,0.0029820950543244388,7.668428146060229e-05,0.004265235404794534,-0.011785044043297173,0.04673710642648224,0.017389228267950366,0.00011529699398372328,0.0007661814697478605,-0.010487839426920975,0.008513975826261759,-0.007918864454618724,0.0007040916243872415,0.007070691515013765,0.024057121348817528,0.07085457227988956,0.04552033724563444,0.00014290972621903996,0.0069122938388582675,0.045723383204859476,0.15698073544858895,0.02718725120120729,0.0018694384587274737,0.025292606424139344,0.02914564739228416,0.2593405093678941,-0.02773990669492883,2.8899181476763015e-05,0.01564823440801249,-0.04416706752356764,0.14004794968268902,0.015082864312455245,0.0010310817022940164,0.0342729194114125,0.01747464576393694,0.14139811974965122,-0.009223338274169494,8.22982100378185e-05,0.012754151213968343,-0.06454199548584703,0.0887307149362748,0.23694500406308183,0.00017167766354400768,0.0056688892594392104,0.050432168386425835,0.06364849792189156,0.06265623435916866,0.00045480307922306966,0.0353224731661804,-0.02511234146654363,0.10318343608087774,0.01243396700215261,0.0018863729630359874,0.028629566801150124,-0.012334719073083209,0.04681953367574668,0.005290287131050138,8.452643439222973e-05,0.014872553060760973,-0.011534466815845463,0.016846284072485687,0.00595123998838188,0.0017020432671917835,0.008012387053309138,-0.01028713979168866,0.03203516766737354,-0.015445694039853235,0.00012722828604693788,0.004683383627084263,-0.006323455407529385,0.01358955688121571,6.736524497878475e-05,0.00018862946831003143,0.0006800997045326143,-0.007832739241667665,0.03447635434606517,0.0049012468517716686,5.545060106077077e-05,0.009182864075291897,0.05505598527448369,0.1612983618887084,0.030168383597521237,0.003235136728668083,0.0007920975817301463,0.010671538963145068,0.04706727882800132,-0.08578535290906038,0.00011278427043570272,0.016590107742214956,0.014104003027136743,0.07029882860544168,0.006417319962572782,0.00014549735170295427,0.020279333323136958,-0.04104020564074957,0.21624086729016803,0.09643179514461639,8.976777326481047e-05,0.006740124368968718,0.0054146525298529235,0.023358172244736488,-0.010911004082064949,5.826116042374432e-05,0.018222128821518215,-0.016133735685167242,0.030541751397932446,0.00024699964773390327,0.00025755524232977037,0.04600135486496033,-0.0011489737002185812,0.004269462835136032,0.0007103109600042841,6.691927486443738e-05,0.004327952557825891,-0.0108485304119177,0.12083424404027826,0.01568837545529416,2.316392589321854e-05,0.0012204238002323778,0.014115075937207825,0.046790553916547316,0.04443129365889138,0.00010544694380331249,0.0007241598985050777,-0.006082475190695342,0.02472697231902156,0.0006647426741473284,0.00038773711490184236,0.00787637090277666,0.033833400996705384,0.1586729907056307,0.026817476686602105,0.00012212777489951636,0.009057496183868861,0.004943074241413055 +2019-03-22,-0.026496943187172564,0.2311429690341262,0.030667288074399442,0.00012122764568517752,0.00836905234467982,0.004519691718065692,0.017486254863221556,0.0024864825939262705,6.201868246980425e-05,0.009101721266715398,0.029163593368452482,0.08466016209618393,0.007621597863898078,0.0001593525960339288,0.0014251176043943111,0.025189749430174314,0.024961458633978667,0.02479960177260154,0.0003405820410664118,0.0005670773371395221,-0.023006738581735284,0.057634097683169905,0.004376545153143164,0.0002088686846673639,0.014784238702373425,-0.02604896284039131,0.07106631397460592,0.0025499516656741243,8.0033790430368e-05,0.004892982018352439,-0.04524469253815078,0.17575075624684638,0.05333214443008727,7.553709766239649e-05,0.02133056776963817,0.03564053011654,0.268722442861615,0.029969532552378976,4.548192426852291e-05,0.018589825902549564,-0.023283818208730295,0.0193538745246626,0.08921197495416429,0.0009277502185962805,0.014693063226122195,-0.06351490059821767,0.14089123650786034,0.157805851263113,0.00015763531846462069,0.0020371228727971494,0.011579484118286796,0.009458316739100034,-0.012485135432162276,0.0005984112039247907,0.0038880839178318622,-0.0008259595380468711,0.011649616103142213,-0.003887198134061896,2.1128562385269232e-05,0.010790386560348648,0.034312008971203595,0.11033049911457629,0.019676817473310803,9.238502949369387e-05,0.007940603014046607,0.005236650318449291,0.025536305255508426,-0.002786490961205486,5.772412143809741e-05,0.003005726959995387,0.04513185513162919,0.03922670686813909,0.17581618605244373,0.00224400751973211,0.012743779258023495,0.013174041152969409,0.06923195375852721,-0.02702118379145242,0.00015659018447542456,0.023593449655426982,-0.002144030237680511,0.012287488466557176,-0.00897371717028189,0.000270194195350514,0.008339557173226956,-0.005883807096462049,0.03723313685305865,-0.011095264333493109,4.4513296222208863e-05,0.015667077110169448,-0.03933526327521819,0.18590039604405373,0.02371493124162929,0.00034872939291250027,0.004008688944688378,-0.044763541183245985,0.5854704520699076,0.01587794561112733,3.172851055045893e-05,0.016527527247458068,0.018856560413337872,0.21072038933289503,0.06174838197294684,2.9897689406986165e-05,0.004671648957496003,0.015607312043022159,0.04226186570951634,0.00549368647314079,0.00011896034187315946,0.019077273024897923,-0.002142876670420102,0.012263083348547553,-0.06659564280170276,4.0363598051565315e-05,0.0052821577826462655,-0.008577798769851331,0.0241061157621741,0.0050336446511683505,7.889073426832953e-05,0.004019559356555743,0.010808668157370879,0.04378097814605038,0.027050954092958553,0.00011288476127449167,0.0148865251367564,-0.002853002924813293,0.0023963305061840048,-0.013407435411862565,0.0006805045945216598,0.022204958922817177,-0.01178922305791797,0.04155699993350281,-0.025515034651000964,0.0001194062354132674,0.0075604891256248925,-0.0364140664692735,0.13312872752608673,0.006097436468324239,0.0017555636275092257,0.019322067183057186,0.0007780312043696548,0.006428904294136772,-0.04346508321331193,3.11201907453571e-05,0.010439523023988971,0.01599771649952555,0.049847384632831664,-0.1120698647978097,0.0010492691136309836,0.013277616800961829,-0.01957218211490353,0.1635401637365198,0.007898649103748528,7.969672278941804e-05,0.0140314795015567,0.04517592982814951,0.05361322247280534,0.12273379294734864,0.00019887517496429443,0.0005061328709429821,-0.009098387496312357,0.012279563314644212,0.00685069714529506,0.00042529024411436115,4.3898152794912253e-05,-0.03651682473781036,0.13176449647339503,0.009044213853020107,0.0021480527468027643,0.010481273955602177,0.02499205256941672,0.09516519470849497,0.01192597045186667,8.4258583856321e-05,0.01526650167361643,0.0064378373253924925,0.008891353266124974,-0.000242233883494129,0.001799903927369217,0.007855096995222813,0.014867648865301208,0.04786440561085218,-0.0002777001733485949,0.00012306814711937625,0.005360640477315792,-0.008604604633712766,0.022756281145539792,0.0018893121967116491,0.00015328159309038828,0.012647529060549119,-0.008381398213033372,0.03412507365633038,-0.008572899226223864,5.994552978285202e-05,0.00675805502216759,-0.03819712782703865,0.12046522097846273,-0.009728117847468293,0.0030052948309180014,0.006364133723047895,-0.01433018033992775,0.05758216194363406,-0.015263054493676197,0.00012379532946233765,0.002879022742892944,-0.014508008334270269,0.06999033021583172,0.012214695064141311,0.0001503247666161169,0.004617023031763454,0.01574161890506167,0.090896759752309,0.004571910576085915,8.191240757959334e-05,0.012269320873413458,-0.023574234309607093,0.10452286152031492,-0.06744414128865693,5.668572424553024e-05,0.022967196985120796,0.03790375456656123,0.059815304700551686,-0.048684017447464964,0.00030895790101011147,0.010257754398117878,-0.004477867519007088,0.020626481907181762,0.007375399411828574,5.3983427627033164e-05,0.002649139843897738,-0.045500578366941165,0.4530656927885162,0.14860869289998974,2.591117007574706e-05,0.024690577969716427,-0.011363095133287943,0.030069236327926442,-0.05537574381151745,0.00013209403569100823,0.001204186626334251,-0.019386751935542953,0.07622566024537741,0.024160608667380554,0.00040089609820509676,0.0030847297356114854,-0.028602614299962848,0.14473407389771514,-0.05186812094015285,0.00011318965578127164,0.010579421747367894,-0.005449220099040524 +2019-03-25,-0.006514371100847253,0.04729334874759481,-0.00633980502635191,0.00014566627430514958,0.003987310762060312,0.01441890636060408,0.05577490461546535,-0.040023812462468854,6.203031859855909e-05,0.01112625930775615,0.03829504886100614,0.15873873687033616,0.002007168206246322,0.0001115981286943637,0.0022191009227053595,0.0172276036220604,0.016626558218527786,0.005479237615059848,0.000349695762546931,0.011877365177266144,0.0259438171936584,0.05573538618759713,0.020740543199933414,0.00024355700961233774,0.0013106718022673886,0.01434067037130249,0.03926833797918878,0.005590616933916017,7.973953026319242e-05,0.002465645705074538,0.1183647948818417,0.47422760583690377,0.30615649964321745,7.323616145094249e-05,0.03201252275239646,-0.016458626424816485,0.13683046746661373,0.006232434113648051,4.124861696911676e-05,0.028056909644552288,-0.00041152113330278383,0.0003449955560591538,-0.009757837672844712,0.0009198635893426865,0.0018239857098660008,-0.023192452790719423,0.05868973395413414,0.01324621143056943,0.00013818039404466046,0.014889848563571405,-0.008981099975032217,0.006753117106035467,0.002660924226047176,0.0006500542592675845,0.005132124885925708,-0.003149583783023463,0.044121161312039935,-0.07826070138516213,2.1273013714907835e-05,0.006863951250261829,-0.023452639353973587,0.06665036945502664,0.005224969785405528,0.00010452981985085976,0.010440013871655439,-0.005234672356276225,0.03039514340422857,0.003524358396370438,4.8478271379039086e-05,0.004207428844306207,0.025333040499045417,0.021098114417431587,0.03392422675857473,0.0023418908337772167,0.004476913890229604,0.028965268504769645,0.18629491480427332,-0.01364119020132699,0.0001279465754073181,0.00834024494868007,0.025048901342138632,0.1532774745524153,0.028847445385805043,0.00025305712981165887,0.010955368410853148,0.054789474539034336,0.2928929607717255,0.05382910922353832,5.2692542818776706e-05,0.009203405929839231,0.03732483378479306,0.16118953183656845,0.058700505942757046,0.0003816347000316644,0.032093910749179604,0.10199143010235787,1.4174212518145444,0.15635396308606556,2.9860355419046274e-05,0.03652015725369231,0.011645002017981491,0.10856392475596476,0.014639225074651553,3.583733792405777e-05,0.008258045459836947,-0.017846382020731022,0.055970051313579426,-0.002577198739506479,0.0001027110658581868,0.022170908614290726,0.036237241433586365,0.31308261008254523,0.0012662173574165643,2.6735515346179936e-05,0.0021397924215068747,-0.0032800078339855552,0.009363722052582202,-0.02965411753561887,7.766113787007217e-05,0.0037459618697937317,-0.01566327992611612,0.06019518646212701,0.027467127290082168,0.00011897878811861816,0.0056994250372949026,0.015085006958787091,0.013706071774209806,0.003750551703907209,0.0006290831814838595,0.02268304785664529,-0.012973090153864728,0.046955148784762216,-0.0001951876095306645,0.00011629103189500895,0.012999823821288737,0.008990443111306864,0.03476255185372159,-0.002666738802516092,0.0016599255979529493,0.009127829913277805,0.03628657964184216,0.31874384456262184,-0.046081946783515494,2.9274293478338834e-05,0.008312400393977105,-0.03506065867405042,0.09965258489210113,-0.007109133142928662,0.0011502778902630854,0.014712992035317472,0.01307559883359086,0.10261507609682445,-0.0050752414744134194,8.485473068570924e-05,0.0009009821609360458,-0.04473837978327886,0.05480059155666296,0.05971459105775657,0.00019268166549528173,0.0009043079093259501,-0.01309193092646918,0.017410496695795676,0.0001479631213999566,0.00043161492906814103,0.0016391012380261153,0.03165992604354414,0.15021656335878478,0.040878780323030536,0.0016335875511383775,0.015610854304445539,0.010375134817535762,0.044567014681029894,-0.013693387583301827,7.469139578139261e-05,0.010529299803219353,-0.027692360555033213,0.040052173110357456,0.02086313783334267,0.0017187435632546513,0.014263202935095736,-0.0026539122896910437,0.008610065230677491,-0.00041087242843049026,0.00012212263331375927,0.006330911161332765,-0.0039160760657710415,0.0110765640524553,-0.012534645730906405,0.0001433198786574859,0.013191675435732405,-0.04179679672218971,0.1604115092229374,-0.021481262878529833,6.359476973721977e-05,0.018406111006962284,-0.06306106906555527,0.2120207742421344,-0.017804881939335205,0.002819038264545629,0.055118648964143,0.023018669366496717,0.12560006922623204,0.006254970995535139,9.116558157503745e-05,0.019565332845885967,0.006388060806556319,0.040854846402867906,-0.04761248529872268,0.00011339299956600263,0.00010861966875230691,0.025729529411254268,0.14756506818432194,-0.03089303488398543,8.247018693998049e-05,0.010237391526925429,-0.0054309865962992735,0.02636194123626492,-0.01272951833079572,5.1778413357439306e-05,0.006328308585144837,0.08448758681801337,0.12648927895635326,0.09398141413339929,0.0003256631226898609,0.0028654033156744764,-0.002350305875365659,0.01017374902719837,-0.0021537022338092575,5.744572861060578e-05,0.012944172647627431,0.028740949514982978,0.32408444621437715,0.018013644243483146,2.2880958259849673e-05,0.002557456817778737,0.00883086711055327,0.025482010633546198,-0.0005181903512553415,0.00012113750412474365,0.0006743027035828041,0.006485190212634938,0.031748807793786214,0.007969956281525518,0.00032197582737018816,0.009555273919992785,0.03132452882173918,0.1556575490821302,0.025924457607833247,0.00011526200108343866,0.0033573519619937145,0.009709926962548838 +2019-03-26,-0.02454599711985647,0.18483059422820014,0.018940785841527943,0.00014044083504717006,0.004273265177324936,0.04737684379207488,0.14997802138563066,0.024030734193411583,7.579647902120246e-05,0.021603490889862555,0.03526836430000364,0.12791679548163706,0.01225994189186829,0.00012754250764944274,0.006845868269160586,-0.015392014679634636,0.01627873101293164,0.030172927788696857,0.00031911173717898665,0.003009132116707507,-0.008640527274859484,0.02276362042013116,-0.07882274759611854,0.0001986079746158959,0.009194373590716332,-0.007533154456826681,0.022000846221857738,-0.026463308629873436,7.476257076087854e-05,0.00629805523280896,-0.05075882825712788,0.16912029617277455,0.025084201496192955,8.806548125353911e-05,0.0004879134335353634,-0.013430563011909182,0.11843916924567675,-0.02277213581097628,3.8886376860526516e-05,0.019144753447808652,0.0005934277169575868,0.0004602241531750471,0.0011707309368903917,0.000994358993773576,0.0013431236621658875,0.01461109485249771,0.03234323338867651,0.004300159599618527,0.00015796512368604528,0.002246623132109319,-0.015373051964705373,0.010063884143843472,0.020814568127906875,0.0007466530181460565,0.00316368547305597,0.01779077281498968,0.22199547745901846,0.06621553260806337,2.388215299850611e-05,0.0008404178043796312,-0.02468495980721038,0.07063256255036934,-0.008678479918257646,0.00010381939638877391,0.020326853512436363,0.02023130371944071,0.1033591753443598,0.048985802372455194,5.5098103767493255e-05,0.005328141042708561,-0.023134707162336666,0.019000050222607444,0.05376872550974344,0.0023748283800017838,0.006347947150606347,-0.05365827040368316,0.3363270824594118,0.07925042503389754,0.0001312885759113748,0.008119968676787234,-0.024047700109031966,0.12400713804860863,-0.0212872236311681,0.0003002860067705859,0.009265634259283884,0.04791463807580269,0.32296478248151683,0.012314118565527632,4.1790156787926336e-05,0.03075803073226562,0.02656247085270338,0.13087838216366995,-0.030400453384437833,0.0003344932516778007,0.004445304763358318,0.019109977081157907,0.21735208350571927,-0.0881100724732716,3.648602823137934e-05,0.022931980002821963,0.004314218354666097,0.04649693004885147,0.0022095183341755763,3.09998470896828e-05,0.002985714944409253,0.013192959422708829,0.03683463841669559,-0.003884766363810288,0.00011537416515367812,0.010476337430037978,-0.04656487256785053,0.3398869564089776,0.03168189135440744,3.164581585073739e-05,0.002310143430727893,-0.0008627975799132295,0.002366900191075851,-0.0054305085546168825,8.081767566102738e-05,0.005189691237365541,0.02641524541159194,0.10079524697047175,0.16466497108747566,0.00011982934686004864,0.013018274536703754,-0.008566164733728074,0.009183078823475913,0.0034061319183431847,0.0005331797801047967,0.010286629446297189,-0.004733296654165795,0.01488548004014636,-0.005513036526772913,0.00013384029605086807,0.0012110983084820588,-0.018111743925277254,0.0632456464977562,-0.02749940756614547,0.0018380139686095043,0.0021383877224554395,-0.052038141844933085,0.4510063415689482,0.13524983657069853,2.967025831271459e-05,0.004168785197042373,0.025389132783835623,0.06455577783127309,0.002576877608504403,0.0012858313745036814,0.0017274023857465645,0.008347122675725694,0.06096688489237271,-0.028735899648259865,9.117345953881611e-05,0.022901109115674282,-0.019458553764208564,0.02585069170193496,0.0053924596687071925,0.0001776575942004032,0.012372226603648846,0.015891903796213008,0.023774066491104324,-0.012483043219601826,0.00038368636687032665,0.01409103287744516,-0.03616121042733062,0.13108256036891075,-0.02354496199956472,0.0021382002930824206,0.013658229272288788,0.0019752495934619737,0.008118553405455156,-0.021609230518758293,7.806092614109916e-05,0.0013404935403021662,-0.0013777220055830354,0.0017664008098866766,0.0016226014215963058,0.001938873754362037,0.0010061814721711094,0.019011459722531078,0.05881126125080317,-0.025227524978516762,0.00012807695890740495,0.03224694888100307,-0.02352846142738925,0.060532722580807434,0.007793765722385588,0.0001575664307030693,0.014003791974857283,-0.028036065602126525,0.09330892320555392,0.0321141736881114,7.333441213016466e-05,0.027154059373511414,0.00012561806992089484,0.000442813409940402,-0.013491007094939961,0.002688743725506552,0.0001363289796329586,-0.04345356772503875,0.1836399329052508,0.06224840898089738,0.00011770607687626028,0.010784593808496105,-0.009930932902413862,0.0439653450781188,-0.021921908633747506,0.00016380997566181954,0.011188634147308444,-0.036148615045959454,0.17546326795011444,0.0787293470213773,9.744378568955496e-05,0.03246521430551228,-0.021688717465285744,0.096274635816233,-0.06635956228443335,5.661993699407042e-05,0.016646879720734847,-0.015484527964702049,0.030340889312319232,-0.05155320256308792,0.0002488278910466881,0.0024480258593433594,0.005442681298760388,0.026342367529175344,0.0027727537633471695,5.137744176807785e-05,0.0013758466193997372,0.00833977064235783,0.09111315605695273,-0.05226332016250504,2.361588917446486e-05,0.013824196787583697,0.005512913473547998,0.016248616825988434,-0.011287110270400507,0.00011859701094284578,0.00282897647272383,-0.00637196033999181,0.02302916376982334,-0.029119513505057468,0.00043613693449933853,0.0033076979862546397,0.03521275034678337,0.17285329893338955,0.018050125109549,0.00011667936881075876,0.015556294453955627,-0.004664495425875451 +2019-03-27,0.016841376360071846,0.09899392481799206,0.01343502118405377,0.00017991013196619327,0.0008508180710721929,0.010233067494808793,0.034485968142417375,-0.013157064891324758,7.119900796710428e-05,0.0003583668083365155,0.015824994115567682,0.04552471206328648,-0.04854380661232756,0.0001608027805169759,0.00961937221298318,-0.013099668617157155,0.014549121721755025,0.020763173675441574,0.000303872492691894,0.010670447978820701,0.01761898469299372,0.03905574349721459,-0.008912508495885162,0.0002360444213152443,0.009270942907404305,0.0273365089663459,0.08065322174226132,0.07925740609357941,7.400619426595256e-05,0.005116273568603112,-0.017268077201375798,0.06215692160968252,-0.03249832499606725,8.151627756134996e-05,0.001964622460257768,-0.032781418994369656,0.26552093245628217,0.040117198587236585,4.2337732896648465e-05,0.020610450325499068,0.010677860088717014,0.0067822785918242685,-0.03921260137840864,0.00121409700446316,0.014543789936879086,-0.007060751972381752,0.016776650282817607,-0.018175233229327244,0.00014716603558979823,0.03469813622803563,0.008320660531890805,0.005452219957939104,-0.00766035735280882,0.0007459484124338285,0.009274280395804538,0.009179408361721871,0.138472717005262,0.005885338213845411,1.975482861941628e-05,0.002561262444181754,-0.005953258303682175,0.015730624845868,-0.00990012266575603,0.0001124241960043072,0.008121621166467677,-0.024091256093700372,0.12955712650826195,0.10286843042399402,5.2343162133453354e-05,0.0036245156529302845,-0.013518232197009816,0.010605781785928015,-0.0011147397216213924,0.002485994635669556,0.00927225210612589,0.02799932693221529,0.18808186834127436,-0.03869641913654432,0.00012250470507126125,0.026478019407819787,0.03812650462823708,0.186589804711807,-0.07249817540728618,0.0003164078964821127,0.018405213884872783,-0.025105241687482332,0.15029070283797677,-0.03625308838575437,4.705364235964558e-05,0.005122839149485317,-0.03155397290791123,0.16666629394440588,0.014213393405949492,0.0003120276479213607,0.008862571319249678,0.02404997325844944,0.3208202696321839,-0.018368594187492218,3.1108783579632645e-05,0.004770889948092195,0.011397006085823492,0.11905110901784781,0.016308150400226817,3.198446154656819e-05,0.004940311339512588,-0.021462094798444742,0.07150472560598614,0.010070395729197533,9.668522677899071e-05,0.004934717999347273,-0.016922218788084305,0.13300945783567794,0.018799578375101662,2.9387805620468026e-05,0.006216797507988524,0.020668919790405173,0.06212319519588759,-0.0355923760507648,7.37634765717855e-05,0.006950287197898817,-0.0018861719397574625,0.007835730445029282,-0.014121355809031844,0.00011006529139917784,0.011614713962488072,0.10843344223949006,0.1016446590643761,0.2473626540233238,0.000609753416860222,0.007812855817055594,-0.013367167167828169,0.06137180357713952,-0.01836296916029378,9.167617859519914e-05,0.0015590744245034746,-0.004847770934712763,0.020200907424339963,-0.005324722191206775,0.001540247054039974,0.0002779058847975995,0.015915642795646456,0.15788055521910924,-0.05519244219598582,2.592255076996475e-05,0.013268232110502504,-0.013133888973592365,0.03870083332387643,-0.0016495676295638453,0.0011095433987396112,0.009932453773056163,0.012881626461831542,0.10723558107589069,-0.034856226172792985,7.999400397177825e-05,0.009446932932471269,-0.028516849284908483,0.039610912237982056,0.009543260089955286,0.00016991514181547197,0.006892000325816053,-0.014322620028480898,0.021363860698945265,-0.049425845734725186,0.0003848102634206186,0.001252134026624835,-0.008262239353151134,0.031050285849935376,-0.030946279686628022,0.0020624456399128965,0.004836740945217383,-0.003889769477293253,0.014674822410022346,-0.0011647026136901613,8.504354990011437e-05,0.025690107682016215,-0.05069655956934739,0.06763662891095845,0.06449182348670734,0.0018632611372237991,0.011929192658365324,-0.03904427035903342,0.11525974025127154,0.036515925477294896,0.0001342133483721931,0.0035621167022257486,0.018176746411885165,0.052126426857381496,0.00803514338311542,0.0001413574064322255,0.0065525952528521295,0.04807636071553698,0.20659210465077718,-0.008977746047309634,5.6797836082233115e-05,0.005480120788283048,-0.00808900634475265,0.03308472954218668,-0.05673510643819205,0.002317318054305544,0.011534864236687018,0.032280684182463416,0.15625622093037023,0.03532445824921658,0.00010276517945864376,0.02054094193700172,-0.009612974417642767,0.056129549475030856,0.002168330074461045,0.00012420154967018803,0.008995182270998018,-0.021305656487542277,0.13799302053222015,0.025166673321610544,7.3027510910799e-05,0.005229521497604739,0.012014510499746427,0.0582969953689565,-0.010193685643665634,5.179732173472679e-05,0.001291425218873921,0.002234074448519585,0.0044093076705706506,-0.011786836761289646,0.00024703394375476717,0.01644441747414133,0.012934870499009654,0.05143144860711795,0.02465572727250392,6.25385351043918e-05,0.0005741184209702452,0.00725299235317792,0.07674484341433353,-0.16680300721073085,2.438368283609146e-05,0.0036905604756216686,-0.006628819866103436,0.02136325343087806,-0.019254115042774807,0.00010846204523266319,0.0014269587090791765,0.016025442064076096,0.07898532735371797,-0.04206210276594932,0.00031980965208772697,0.004971854856661822,-0.027233858394829752,0.1337857403352361,0.003433859752423958,0.00011659264230636903,0.00954340437581256,0.0015950768359215208 +2019-03-28,0.046561491985512266,0.3798738459978612,0.08687981313634019,0.0001296206151720907,0.009640239404445515,0.018596042181934783,0.06572156614153707,0.00911678121394224,6.789271013000899e-05,0.00656102966345521,0.009108834809656331,0.027721616190392682,-0.00756492177461944,0.00015199926373272505,0.008480032744663794,-0.04184976558076095,0.03748453086479585,0.14586897690520179,0.00037679818843728484,0.013430087402253741,-0.0007957187660437967,0.002099451427184532,-0.011543541905708962,0.00019831316306032456,0.005335377358454866,0.020434801556306722,0.05794364540163765,0.036393690583369685,7.700365684598649e-05,0.0066204250188947955,-0.01823115713865342,0.06261368867418335,0.0034202732519986105,8.543479861108476e-05,0.03550993160387655,-0.017376833069305656,0.15139751562617582,-0.012021597435838442,3.93595835760044e-05,0.007589318524339155,-0.019094458802242392,0.017055426658839325,0.039956604777917806,0.0008633552853103491,0.0021750601834953985,-0.008112020986477295,0.018413526203150246,-0.016565201815654212,0.00015404726345405389,0.009712275842210825,-0.016340535858200812,0.011729035781634962,-0.0024810930271532534,0.0006809705673303155,0.0053019655791899725,-0.011860746649865719,0.158089353531318,-0.013143749188582758,2.235796104924443e-05,0.00440022910559056,0.023897309937619324,0.06251230964478735,0.011204122333872744,0.000113562386079291,0.007215711652585194,-0.019466575192957344,0.10297014969570162,0.07235251263699247,5.321573021964216e-05,0.01051526313882962,0.01389732803954693,0.009971448865336222,0.006279214058767336,0.0027182914244211795,0.001996746848406675,-0.006811984765830482,0.03912359646240306,-0.0007123026558313042,0.0001432804725100561,0.012724772556373186,-0.03751618083837466,0.20206987574359916,0.03955148664487953,0.0002874916782698062,0.0014516317035820992,0.05953951029020462,0.31687191388347064,0.03950505982956677,5.292763240879995e-05,0.02998439063913617,-0.03968723842424847,0.2271891601359063,-0.09660129041079876,0.0002879055796372895,0.004109725568215779,0.09009602878342549,1.0520365266757024,0.09675471091707154,3.5538988365196195e-05,0.020491741297880735,0.03866104743708695,0.4142757972189548,0.17040829166470162,3.117925712209039e-05,0.0007560043450371909,-0.03602173862157018,0.10082103395582168,0.019435952185751514,0.00011508965268019824,0.022739545929152206,0.069815139943631,0.49748875556028016,-0.011836929357811407,3.2415947468722166e-05,0.014579991165234089,0.005203547356808784,0.014076631903919501,0.0016098938191294145,8.195550665517509e-05,0.0009161597808140078,-0.01195065411999006,0.04607540974172843,0.005580054380294442,0.00011859627997202286,0.001193979627401542,0.0059620476904899775,0.006150932513160271,-0.003179328823234102,0.0005540258707285175,0.003394842314118256,0.006754759711509716,0.021148363472818725,-0.019666127941292515,0.0001344371037078651,0.014705145300685332,0.006324097824812502,0.026825103078922764,-0.02587491236997524,0.0015131303922248092,0.003515852804067592,0.01270102165783346,0.12040095849267912,-0.0003701441356368553,2.712632168123784e-05,0.002996826835557332,-0.01788685850441448,0.05384277701447699,-0.0052463556793994615,0.0010861201980388185,0.0030468835581942645,-0.01283860850203003,0.10330777081304918,0.017384326893824274,8.275811853233458e-05,0.006538082326381568,0.007546327711911182,0.012520449403702297,0.0067479586402055735,0.00014225290039294178,0.0073752510837624225,0.006449801642549211,0.00997733150159947,0.0008825877363860152,0.00037105293420252726,0.01833594162923511,0.018832256615033707,0.06760706051448506,0.014952508919239231,0.002159039813119451,0.016054564137512845,-0.0072223305153362675,0.031249992574290644,-0.14355393685185017,7.415113638373211e-05,0.000793372280702612,-0.05623262344646709,0.08214615133687292,0.02306821147066758,0.001701681651954548,0.006029280069844027,-0.000418452041679366,0.001264956080788605,-0.006103947877334531,0.0001310648638182705,0.004688410771367606,-0.016564874333923747,0.044826012073359636,-0.003272512629462943,0.00014980227809266195,0.013940943599660038,0.021235525484392184,0.10481402612152924,-0.06461703142490487,4.94490023394712e-05,0.0038868889233086,-0.0949714877234097,0.34568114082567136,0.002468459217496244,0.002603967818464797,0.0066582880986475025,0.04648571672963871,0.21973268632202667,0.05919488594890852,0.0001052362676788844,0.0066311599819285656,-0.0003935343697719834,0.0019111966139932113,-0.03202179237241842,0.00014932691228231073,0.007727090260399779,-0.01288580019276883,0.07316389397134583,0.009619189134632623,8.33035059922578e-05,0.0013274429931807688,-0.023650227576675613,0.10914591683365656,-0.1689541025504641,5.445969762753109e-05,0.014280353026622061,-0.03254747937243109,0.05528826776126223,0.012936832846157941,0.000287021064789018,0.016524136000078356,0.015686952408556956,0.06900471579028679,0.022019385207623667,5.6529374939350286e-05,0.007792064123703374,0.0016920721841492288,0.019426180656153782,-0.0005049914019930674,2.2473087796195617e-05,0.0017054738776751987,0.01612333612453481,0.040737514040510174,0.001991346039227268,0.00013834687358595202,0.0028323267487701583,0.028803648551136388,0.13466460639385341,0.08162156661781908,0.00033714910263992506,0.004630968344654056,-0.029627589928347544,0.1375567541583103,-0.003708940004184428,0.00012336336338784166,0.014429881924149996,-0.00039086486899689695 +2019-03-29,-0.026966457037939612,0.21432988496704697,0.005433053327683223,0.00013305394136478043,0.002129327622794186,0.020765217201438084,0.07271050342003595,-0.0071454969419806075,6.852512764139306e-05,0.0014339465544640022,0.0153223909178838,0.04839683192432942,-0.010020944902920008,0.00014645587884028546,0.012785227800569753,0.011428462431767556,0.013351139815457061,0.0027108717107033674,0.0002888931985859739,0.0010290931598622194,-0.026404205239969895,0.05565929332886435,0.018035921159525157,0.00024821794976424854,0.005535708155169909,-0.010182094587992064,0.027305411803409504,0.003601756588534647,8.142075708097711e-05,0.002355827736085331,0.06705001704958616,0.23400140934029667,0.06009603629174518,8.407565796717141e-05,0.018911775258891185,-0.016654365755682833,0.1419484184065157,0.007359643403887707,4.023427266068802e-05,0.0030921004150479695,-0.005440767224985512,0.00448043113440483,-0.004755843914563973,0.0009364511467822482,0.0010577899233310977,0.03116045852608572,0.06736867139159261,-0.03764670902552025,0.00016173638934890443,0.01616411365795968,0.02478416136805161,0.018770931660490518,0.08732807167045321,0.0006453759209275995,0.004379290349237716,0.000839532973098675,0.011248780468345168,-0.0003136003957827478,2.2241040771012027e-05,0.00614789975434333,-0.014262011628615307,0.03587137339095729,-0.02402555248758158,0.00011810922490478511,0.016477364911828107,0.011145200728400613,0.05424238613935276,-0.025547870474383654,5.783768837150293e-05,0.0036425295781874934,0.010204289896551188,0.008490252318206312,0.0023819226651364107,0.0023441487331350534,0.0003071336219352941,-0.034691835823381235,0.218426652034243,0.035290332591643145,0.00013069945033026797,0.028259803797921475,-0.028302480677052422,0.17023944512364267,0.015817685433288577,0.00025743793278263684,0.015137603521158774,0.011377484455023434,0.07355997796513195,-0.1355305267821252,4.3567798592826645e-05,0.01728903954234459,-0.017337618762539087,0.09906062337966212,-0.0550513386228978,0.00028845309279356584,0.008229870322257696,0.00861311667085973,0.1170070058027743,-0.04058375155227167,3.054771255847979e-05,0.013959955071080117,0.0017830717101368,0.018008333286169888,-0.00325334361454867,3.308087581830536e-05,0.012417694488239234,-0.025901615228011488,0.07190537321310592,0.00012452684596168693,0.00011603480016160151,0.005194444335760574,-0.08062776280686587,0.5713556170399329,0.13262387268120274,3.2596463480151445e-05,0.02385642151671457,0.019861097443940146,0.0597603514823321,0.01904273947961321,7.36830307974039e-05,0.01740504385546888,-0.004318758858549291,0.01650217444861953,-0.04959150528892771,0.00011966478842913082,0.002968580021053293,0.03257318871085776,0.03918011601709283,0.006704248837270437,0.00047519309255246694,0.019886500125861416,-0.01676875262207008,0.06725285905356382,-0.016949975849179472,0.00010494844671394593,0.001577941639243415,-0.020655109078801196,0.07422711948734363,-0.014561938297477666,0.001786010715447419,0.04417266118473051,-7.557447545962828e-05,0.0007345993886851789,-0.007616553116340097,2.64549395948679e-05,0.0014769081505260186,-0.0006260335992238241,0.002264366997589133,0.0032253705180730853,0.0009039035574672062,0.0005850023576383779,-0.027783196688627332,0.2163063074814883,0.034031196592317556,8.553397849184546e-05,0.012036098304571599,0.016743249374964627,0.026531990234934133,-0.012526151979307676,0.0001489413559091552,0.0009130757649214712,0.008635208640090307,0.011478284134050123,-0.0024651261233224566,0.00043181704186811236,0.01248992114130555,-0.0275735069887716,0.1093520255644779,-0.03910095217919343,0.0019544092764563386,0.019438004653834332,-0.014431409647547641,0.05449886055050936,0.021990669028644765,8.495945206863716e-05,0.0007623496261862545,-0.0058610528266954415,0.008862126912259244,-0.004686327988891777,0.0016440493978774726,0.031858469804979056,-0.010679178199079839,0.03154900494746628,-0.0027402560186880203,0.00013411217435961985,0.0013311590148319381,-0.023116518274613702,0.06020764645580236,0.008728778104035537,0.0001556435572719351,0.009431413118548691,-0.006977777771153993,0.03128850389129012,-0.006598744896324536,5.4430993551118194e-05,0.018904848244891654,-0.009542454679596704,0.03853072572885769,-0.011429146341663967,0.0023473128427379053,0.008373260996704983,0.03936446413227345,0.2567222302336422,0.03535741256619605,7.627486321954521e-05,0.00012366311966585978,0.01193078257628269,0.0715469418209001,0.006494063777547779,0.00012093127745178126,0.0022469566901547433,0.008199675472336397,0.048378080225609535,-0.001049398864968175,8.01672031873108e-05,0.0007860456723023902,0.005728526729816071,0.02427854571579327,-0.01986784734171434,5.930177187616418e-05,0.015975664988323587,0.04741943939133206,0.09717257313158634,0.010216635719180299,0.000237926111235079,0.030798776568851258,-0.014801735771501949,0.0577104837681361,0.04773648164211076,6.377820737400554e-05,0.0020846473311098733,-0.01958971675968083,0.19216509869909895,0.022269712400754,2.630176716622785e-05,0.0032773804332770903,-0.005873973005163669,0.01728382738605546,-0.0949164688206994,0.00011879577373508274,0.00040162682385984003,-0.014983933537363185,0.07327167921788073,0.008435738473220687,0.00032234257006159584,0.014414587592938236,0.020052561351348693,0.10835395702325631,-0.004623547766385828,0.00010599780539429689,0.00733628067492385,-0.002124944208209722 +2019-04-01,-0.019109557880956154,0.1176811870233806,0.008334412473932988,0.00017172367847029146,0.00885763978580334,-0.03318255139956831,0.11865951784825508,0.03793283430807,6.709925883128728e-05,0.018186427714655375,0.021103601764172333,0.06219611228360862,-0.016732093786000598,0.00015696056324873754,0.01900323027208767,0.01981054962593495,0.02284222099663051,0.013191777224119544,0.00029270224412049486,0.0041745216863790825,-0.06797421407458444,0.15942581198783645,0.17787225013027003,0.00022309165721552337,0.011509510631698286,0.019787448038058892,0.06418929286997381,-0.083577321767878,6.730912359969572e-05,0.00929236784386988,-0.01921953109725667,0.061535394656538386,0.011157011249368113,9.16447630783255e-05,0.013382247709804701,-0.018248484944135068,0.14013973199344015,-0.03301528641975844,4.4654388394536106e-05,0.004335145891245885,-0.010517476575599856,0.00941968445012934,-0.07261920177116432,0.0008610333744814122,0.0036763808104757975,-0.02629811729456048,0.07392406164299159,-0.02154916198162073,0.0001243943697194758,0.025145409077282094,-0.03150411146184721,0.019402650097925467,0.09539344707184619,0.0007936527799097516,0.0005036079698146709,0.015491716953606174,0.1923610352415773,0.035759564487633955,2.3999668181565018e-05,0.013932259315954399,-0.037268542517047816,0.08930412073609653,-0.009036128190948607,0.00012397152621784947,0.00891482271486298,0.002591901764906545,0.015324754268740992,-0.004712840571654677,4.760875629752319e-05,0.003137658878189331,0.03210332903918121,0.030838293210385025,0.04616824587999009,0.0020304051636287107,0.0016537002936728436,-0.017844976459977388,0.1149821016025739,-0.0010818736083666868,0.00012771380523550293,0.025268205282935014,-0.005349862528841074,0.03327389470685264,0.00011353968135471146,0.0002489701129807863,0.042033305265316186,-0.04852037747719709,0.2803649176008614,0.08008771411869194,4.874852257119773e-05,0.005239217815377026,0.005497155852646021,0.029709937538270906,0.007093843567094718,0.0003049461247644317,0.016903320387199203,-0.03287653575847358,0.4626481296700669,0.015426549581053614,2.9489368305791537e-05,0.02530804032327671,0.0018333127183511378,0.019187815108106264,0.00017004939624246782,3.192219420511678e-05,0.007482839028585724,-0.02596362468885745,0.07481814091568913,-0.012326014826740554,0.0001117843911846741,0.019175754075279956,0.035026546234117724,0.22535483394390982,-0.024716083292451438,3.5902344838560345e-05,0.0010002958061842305,-0.0062646138137607875,0.014532289923019923,-0.04330506968696916,9.557353122997483e-05,0.0018434526150667037,-0.009992573006976955,0.03942890118957296,-0.011205216958303836,0.00011588073770765502,0.00030013702843078487,-0.02657099074141857,0.025680372628490745,-0.011226164240250077,0.0005914009097879232,0.010042040787229858,-0.018519645086754414,0.06614466319455427,-0.04771913684468426,0.00011784844576099256,0.013540280161325899,-0.0037408132775904263,0.013210255855683048,-0.11650193228638807,0.0018174981462009694,0.024155888556818564,0.05486255299644988,0.47698295339129393,0.05581138182139604,2.9577083699545333e-05,0.020181288844749325,-0.024704547033819836,0.06721798447426934,-0.016867556568327082,0.0012016076347833298,0.014337715859946162,-0.01571583213364549,0.14386444228618905,0.013071223921609062,7.274607367626409e-05,0.021504569369845475,0.033707014115367744,0.05638810916679339,0.0414761622072899,0.00014108412119859506,0.0002557181961869194,0.02131204072077482,0.03178889042979161,0.011984040568085915,0.0003848164082250576,0.011755363668122508,0.006180664199049205,0.027444187883397204,-0.005365259246418949,0.0017455613045103118,0.0029314130886089616,-0.024175287545431735,0.08775968307926095,-0.12237433792039112,8.838264054893865e-05,0.01727302096148041,0.01055292927384882,0.015569623957205549,-0.060460911697749746,0.0016848921070645524,0.00685346644379388,0.01351910446385188,0.04712825859443685,-0.005243042962672075,0.00011365343540507532,0.0016478503590263113,0.011057786909099889,0.031720867417689314,-0.17829837631576675,0.00014131346255779917,0.012548583306203372,-0.018566758157817175,0.07364550007603365,0.015080808495129798,6.153239085770324e-05,0.0067622366913246724,0.01491155890909527,0.046656896766459476,-0.012678423729897855,0.0030291812279054,0.0038621991047044025,-0.005003857078304668,0.027425390431930177,-0.04199502717197922,9.075961573789507e-05,0.029349191206043828,0.011962646592284154,0.06419423957381881,-0.08973689325543924,0.00013514251548434874,0.004301972134914739,-0.03397007736456423,0.1880203148756576,0.041063999977977654,8.545558646950946e-05,0.0035272787900227066,-0.008003870636735286,0.037511950092796904,-0.0033778706621474014,5.362629756101759e-05,0.013098017664637496,0.05289740856324616,0.10607376800116308,0.020418305468224103,0.0002431396539616847,0.0084874115483717,0.012196224562737107,0.05105679697389037,0.005413142984925597,5.939996950783642e-05,0.009677466036504375,-0.0031379296343634834,0.03602504721946929,-0.02319247620990966,2.2473459280699084e-05,0.006109924428786382,-0.013247590998022165,0.03857907609017721,0.05239123348294554,0.00012003117380988007,0.00500714057837061,0.00886925817038085,0.0396330870253813,0.007340540213406111,0.0003527421573845373,0.0010214054442826122,-0.02833613878672306,0.13306886094205972,0.015145847849226646,0.0001219652267649945,0.010007041096170304,-0.0046881214229699 +2019-04-02,0.005745895182806496,0.03452200365369144,8.573757685104826e-05,0.00017601443626193044,0.011358330641466399,-0.027717058333885818,0.07916397900097806,0.011173381290260612,8.400981870837903e-05,0.009973427620925528,-0.022446217113346455,0.09064476576988549,0.04418116819911941,0.00011455066976146948,0.02107518879643635,0.021249292164607202,0.025464853483987988,-0.01656723290553963,0.00028162495958502495,0.014357355760274838,0.06130846786420001,0.1451851075164414,0.09050505157941781,0.0002209510983335417,0.010847153511609616,0.023247839260308566,0.05690589802638511,0.045120335770922365,8.920147848112321e-05,0.002881879819152515,0.01398348209268263,0.04925297162343088,-0.00888466583213592,8.330532201720833e-05,0.040615628111753815,-0.0041960366995317504,0.040942648665458194,-0.02663414167384482,3.514487134387301e-05,0.020743002266119685,-0.03884729021267463,0.0338589903663822,0.13910430990229639,0.0008847722904892548,0.0015013219459947703,-0.023585449408138687,0.05505721154323721,0.014365530858632387,0.00014979310741944455,0.019267745644422924,-0.004852822021480032,0.0035110708135267,-0.004792234313314328,0.000675583654315322,0.01776559014636581,0.007016586732458638,0.0855996681942259,-0.001199677286965362,2.442736411702172e-05,0.0009245579787768988,-0.04659678554541533,0.11822942689779191,0.0213463269469308,0.00011707964895718536,0.006296869001833388,-0.007530655901289881,0.038379154555556426,0.016247481140504096,5.5233074510798144e-05,0.003293253625353676,-0.008725627584443658,0.007988558082891223,-0.10024279189714666,0.0021303514123948274,0.006103217051897475,-0.031592069855239345,0.2027040070621966,-0.08614138043927026,0.0001282530951692293,0.0014956713637844065,0.005917641068735067,0.031275930341147444,-0.02055894246802711,0.0002929858285665462,0.004992181976844309,-0.025147495394098978,0.14328362375415862,-0.014932823792204095,4.943780004505497e-05,0.013413467131660167,0.0019954758875812815,0.010866186139039754,0.0034386018300545155,0.00030266078315744374,0.02173414876286489,-0.0424637344101115,0.5302662971327295,0.021253421616246448,3.323184022970838e-05,0.007033410546338088,0.03166789446458046,0.3509477731601922,0.06507361956908518,3.014799308345265e-05,0.004290361668980591,0.018334480577691183,0.053297971382891586,0.01269018300454055,0.0001108104420168889,0.013723909798999076,0.04618343729717725,0.37573272434538324,0.019652951293048202,2.8392236744513555e-05,0.01683139795804566,-0.002444945993288706,0.006289281617532196,-0.023349779908648415,8.618776343494088e-05,0.010422522176774206,-0.009282018172825236,0.033168072721206046,0.005449759707058902,0.00012795898103070246,0.006894273355401636,-0.005038681838172139,0.00511634125660482,-0.019370978498004912,0.0005629022617248793,0.020075756162579353,0.00019581986991625626,0.0008267564412726578,-0.00360469772134789,9.969311809443582e-05,0.013289014368105876,-0.029683509003667917,0.10483599954331202,-0.008149920547635359,0.0018172888991343664,0.03473614816161053,0.005418026709816252,0.04369566032386011,-0.01764942779056165,3.188489786931934e-05,0.012601641594812146,0.02367164254551125,0.07834441210306563,0.03044773762378293,0.0009878514415455994,0.007228820376227866,-0.03665995782480599,0.25495413284523205,0.06448505706396929,9.575369634947327e-05,0.018946632512464288,-0.026880272660207226,0.04541569002765189,0.01629635807430185,0.00013969251580389557,0.03135542160497248,0.0029873128580671974,0.004572529399432189,-0.002103267780896441,0.00037499727815959216,0.004403779816280323,-0.015285242961839052,0.05129123484071237,0.0017324817466490296,0.0023098274202487602,0.004783898081117493,0.015288445567732943,0.05546411493432638,-0.0080280782893806,8.84385502331525e-05,0.020926814955751185,-0.059908696247643396,0.06845094854474992,0.050662216576163745,0.0021756427787858958,0.01143253231343975,0.032727040484728874,0.11316352125488202,-0.009164429243481853,0.00011458197863246972,0.015408543191160739,-0.011544891597220542,0.0361819840172422,-0.002855356894477163,0.00012934744604608031,0.0029879415970951676,-0.012332772736345815,0.052024658426402214,-0.023209301563489843,5.7858266308159736e-05,0.004362521007120611,-0.01852936871053466,0.06995044072601937,-0.016646300245499727,0.002510661865528229,0.006305102920022612,0.03154683408022283,0.16704279067441355,0.023048076443963998,9.394390646762541e-05,0.0058999356176550255,0.04136888788769594,0.1814557264265467,0.05388864386190811,0.00016533467729923652,0.0075001088949623925,0.014907119760935228,0.0919101676427283,-0.050683534129625986,7.671475122056524e-05,0.03369508082949064,0.024442744650058933,0.11114623537371249,0.034724457350055755,5.5271672752108985e-05,0.006265480615305096,-0.005575644230254587,0.011664494393829078,0.0015910313966611737,0.00023305505642511368,0.01681587763657548,0.012126040330645477,0.05372890746103125,-0.008078533414196254,5.6120996598068405e-05,0.0010424173499965054,-0.006697278632959785,0.06633728720258557,-0.012339476408547618,2.6047853799352405e-05,0.000914185118917278,0.003389217136753986,0.011799982402950278,-0.006725047789185513,0.00010039844780948637,0.0018691787397364368,-0.006805878005405865,0.03144646113822568,-0.001685601943713699,0.0003411460541024602,0.007628664265553877,-0.001888932646590866,0.010091868673330435,-0.015414649318980716,0.00010720540411568251,0.003294085767447552,-0.0024504007912463568 +2019-04-03,0.03761510085430802,0.2788548476249724,0.055291381568957014,0.00014264961892692434,0.008172492311480458,-0.031190969130651128,0.11309061797389384,0.03260166737573583,6.61778750841915e-05,0.026914092578492758,0.020984037914353892,0.06461013534963049,-0.023648816886827597,0.00015024001419119604,0.02289014283055847,0.012167973646917369,0.014033191035484865,0.0030608516910303105,0.00029263729882563654,0.00899960782774218,0.0019717798888859734,0.003972511030728476,-0.04949457294007105,0.00025971144775902184,0.019265178898137454,-0.007874463819438278,0.021145819776676237,0.007681791335909015,8.1309858498256e-05,0.01124727783063717,-0.01801452922964816,0.06115274944788811,0.005247920921807885,8.643642269546612e-05,0.010794194457648013,-0.026499266877293377,0.2507907831451427,0.02433253203376579,3.623438561468482e-05,0.004304872842025531,0.0195588422438609,0.018078185625408184,0.0032203011849248056,0.0008343208349140714,0.0038649764541003415,0.009631820335492673,0.022817012229180474,0.009438058005450523,0.00014760853985746472,0.024152484014701783,0.02837636620894018,0.01950324044630507,-0.015129541470604132,0.0007111715317978517,0.007416150296679941,0.0037153343529024176,0.04990835757525511,-0.04893923564679987,2.218438607262119e-05,0.0031089103001125575,-0.00043214797446560843,0.0011771749069449389,0.0019071722671521116,0.00010905423200242662,0.022695569612262306,0.00475847157440435,0.02579699702496392,-0.029348916926587917,5.192304387043682e-05,0.001772777675535353,-0.0303980612250166,0.025411669572172974,0.09175730253197037,0.0023331123812931763,0.00967176425127778,0.012882086304445478,0.08808583044019745,0.003682234907510842,0.00012034616602559193,0.011522883011199199,-0.008679251263076523,0.05676501754505316,-0.003387282967926843,0.0002367607553268635,0.021985122780056054,-0.021493445306053557,0.11276747277969998,-0.003031148891050177,5.368873173909293e-05,0.03337051162295292,-0.03531127626774492,0.17528372716912197,0.01817134742223672,0.00033201570167072745,0.0065892578860176935,0.07671920173464697,1.1510707655199168,0.033550918542381514,2.7658733042886684e-05,0.04183410372785406,-0.006895687112872439,0.06885198039250118,0.009838966470271049,3.346130080529472e-05,0.021598165485257927,0.0750053319515683,0.22660847986615532,0.16708023113623233,0.00010662001414290095,0.0020165507721050533,0.03702727851631696,0.2600514704393928,0.0074812295527055366,3.288931702808473e-05,0.010698603709737724,-0.01757308512717252,0.04264787243391839,-0.010346517992251872,9.135409605923775e-05,0.005537963759213926,0.008013089778483168,0.023671936934558296,0.009102257471729368,0.00015477998814828926,0.012838199131119528,-0.01429996203300627,0.015535211018169553,0.007956692947824872,0.0005261302701597148,0.022877958156163496,0.005893014544661087,0.0252129873857718,0.00042439842446616793,9.837827778829886e-05,0.02104377134844001,-0.04990193721611759,0.16129145533919945,0.027283557244586393,0.001985752964478199,0.005521747118603881,-0.014041574087074044,0.12562272493610988,0.007055681698531444,2.874284688700883e-05,0.011785874478152185,-0.07978957975729443,0.23170975913860958,0.05397431570502478,0.001125830789570267,0.020028149129084447,0.006128764799653763,0.042270567682431294,-0.006170431381102135,9.655183184109297e-05,0.01240305177257777,-0.005165046879532804,0.007567806608454782,-0.06211154176831842,0.00016108297006850957,0.014595686013258932,-0.00015338857386428778,0.00022954208340192768,-0.008062264664467382,0.00038356114312114393,0.013593133183429893,-0.014252108918792762,0.05893078579283062,-0.011547414650319386,0.0018745077562779295,0.01450449222742726,0.01359599337571344,0.061950640448922276,-0.05300500193531862,7.04134322556482e-05,0.010031824897261317,0.0018467378275463916,0.0025338261902262465,-0.005504990509618696,0.001811780646203097,0.022591064160634746,0.053577504631454456,0.15216034333587702,0.0781217938406622,0.00013950733403005254,0.005813017774887632,-0.016990705411953175,0.042973656581618454,0.011537381685705048,0.00016027636242038718,0.007153799120339113,0.025778347553586385,0.09821139488679434,0.029941901161285728,6.406297759064102e-05,0.005369729165850887,0.011307004494674325,0.03590737053636588,-0.010390795322916669,0.0029845717192810155,0.044440962281858835,0.020499465450885684,0.13190853701521243,0.008139494647489965,7.73054661848934e-05,0.020435442120105073,-0.04057074436366848,0.19447887139184922,0.10275529609082378,0.0001512869037907108,0.010284323000832119,0.010375855991538856,0.06912904750401257,-0.004753346617874276,7.099243315678986e-05,0.002079612536484144,-0.029042755411819193,0.11335747295051157,0.03226228755813649,6.439246588388182e-05,0.008897383280004228,-0.004408271155918814,0.00908787882597314,-0.12611215879853846,0.0002365021900885327,0.011865237965572763,-0.003748449906682694,0.02058873367749763,-0.0035727974441973134,4.52727057783783e-05,0.012207821709828103,-0.013148239071876195,0.14591494802306176,-0.0325050457581983,2.324872245407211e-05,0.00937063866299588,-0.006740326984793266,0.020052262507990665,0.006171432913657754,0.00011749693789660862,0.004630734429526325,-0.027684054081686144,0.10333531849809223,0.058007811490691855,0.000422288133303042,0.004493753982219547,-0.002005938347588461,0.008094679359358292,-0.026299773786058016,0.00014193507330296292,0.014147701933088787,-0.00031379271812415657 +2019-04-04,-0.028026539933887706,0.20543876381563794,0.018569382345007792,0.00014426921717938308,0.004726888931671476,-0.03834397444770789,0.1474252162658994,0.03237426554366798,6.240736983974329e-05,0.012093850006254613,0.04240089049592422,0.12709091002741799,0.02268335061727296,0.00015433260711465372,0.024695041548405697,-0.002466246747510963,0.0022846796387899393,-0.0024132245410821125,0.0003643166925696522,0.005948075710631767,-0.07154968181371957,0.16661092858808202,0.13133490880493306,0.00022469944213013431,0.013053647677033996,-0.014668544793663313,0.04389830099089042,0.014429318166450846,7.296020730184574e-05,0.014261906119311253,-0.03321755902699375,0.12041059056846533,-0.0033114466272998297,8.094553245289901e-05,0.016140231923279614,0.037848519705030816,0.342647482023007,0.03731662324163451,3.787912760817519e-05,0.006264645784315705,-0.025470845785215714,0.024637393689338788,0.0530196492106069,0.0007972479105673331,0.005065384118219806,-0.019302182743774647,0.04434681521996939,0.004056838051441603,0.0001521969232794574,0.010267955473474862,0.034404803389848845,0.02843473574638439,0.08478103663528276,0.0005914175965942467,0.004782405712403947,-0.015041405781585781,0.2005638484341607,0.04003470139941905,2.2349024045507785e-05,0.005571885183447133,-0.023182265763308542,0.06388041024119276,0.0013205465030108664,0.00010780507887146465,0.01773006261866502,0.01358477072562692,0.06645894144210761,0.01525107707392354,5.753878829403051e-05,0.0069615909335042185,-0.02230634721609324,0.016347192668760342,0.035904092908667924,0.002661388337130217,0.0005426938785200077,-0.016795922809650473,0.12111502976097747,0.009387214485574506,0.00011411899480145755,0.011169072231042087,0.009819141042708075,0.0631439546656923,-0.007369265980442813,0.00024079637919013759,0.002424832029134596,0.05118220677727839,0.32081801668733345,0.03918302330861145,4.4938773312694224e-05,0.014346843715548245,-0.015194173526924405,0.08984222590405566,-0.015107749941353743,0.0002787297890583007,0.004708004756662702,0.0322200598406909,0.38156792876832885,0.002486953382257657,3.504166305605972e-05,0.009513792699018107,-0.002317498511289668,0.02435370068175634,-0.0045532746909161545,3.179334398329101e-05,0.009177887547531691,0.010158179484020393,0.024985555204463623,-0.02046843931068381,0.00013096330714156283,0.011643442513813326,-0.019293361598677127,0.16030816620016825,0.012919325710699979,2.7799989629992394e-05,0.01490704486885744,-0.006255764539051452,0.018209981649886426,4.386373045837709e-05,7.616374109860066e-05,0.014990775071316974,0.011296659108140516,0.0398531265457284,-0.07741067471843234,0.00012960931667130285,0.0023116212566257456,0.06847057320697904,0.06940379982981205,-0.02427302069119973,0.0005638924456147209,0.00714679823099219,-0.022020062178760333,0.08388107391756763,-0.07708449000465048,0.00011049447633530506,0.020835279209388026,-0.06959986640389747,0.25507822197829755,-0.0028372330412662606,0.001751274401483064,0.017933606795939937,0.012001898043422997,0.12178341631643436,-0.07246883121533412,2.5342180245304907e-05,0.00561705001409515,-0.07190183257719644,0.22213566184861677,0.032899896808083966,0.0010582613696423463,0.020219115255650625,-0.01057434582076078,0.08135415985602341,-0.009768997629953518,8.655644043625998e-05,0.012975161397498098,-0.02365681151766457,0.037162829587274876,0.007110383099595625,0.0001502425071180598,0.023826797693490685,-0.00153373782661778,0.0020148758609931654,0.0005495740809988301,0.0004369248528611198,0.0023146576057368495,-0.004214843086622538,0.014964873555033821,0.0015422752004544556,0.002183024956065375,0.009730612665100875,-0.010257689170037117,0.04095367799970618,0.010403666408107169,8.036130745561479e-05,0.0021530419016721845,-0.022235940378104214,0.03437817463179639,-0.0242668122727162,0.001607866102315485,0.007712946320936735,0.013635561185858434,0.05057202049151915,-0.09753035085383634,0.00010682643803765329,0.01246237874663526,-0.02335489269715344,0.05452526544327204,-0.045182176307584705,0.00017363627638738,0.014371454521983166,-0.029834638666511436,0.12578720019813247,0.01490416988032861,5.7889294498013806e-05,0.007619673381315559,0.010887663560500287,0.03495939453252835,-0.09854304096475945,0.0029518130458142415,0.012176134052680178,-0.08021537442729701,0.41963800047768846,0.16176151869820826,9.508748849870341e-05,0.006243438677919039,-0.039504213092554044,0.19242711014546135,0.03433147550239839,0.00014888054226320368,0.004302166771827178,-0.001029461545910661,0.006675430683469586,-0.05600331655081451,7.294231404728118e-05,0.015267378259145592,0.004089272637795013,0.016865071220287912,0.002918236304718087,6.094039739287591e-05,0.011757303830515108,-0.000636102067493269,0.0009333564694453772,-0.00014078317573703092,0.0003322834103468306,0.021255734322474646,-0.003215026763378129,0.013826772304253965,-0.0632550540070837,5.7820009324811646e-05,0.0008031500070059003,-0.00024014587948470234,0.002088446326679686,-0.02068926631527684,2.966764723665448e-05,0.0012121482420055208,0.009834009249421105,0.03488552999747527,-0.001002021228636768,9.853584643982732e-05,0.0025795460684480123,0.0013045416611607418,0.005247482704732,-0.057493119867155884,0.00039186358569598374,0.006858142236637958,0.03287231295358582,0.15249712259315717,-0.07945262329738038,0.00012346401889298927,0.019201757104131474,-0.007989958300456299 +2019-04-05,0.006060673890994908,0.03921208390993147,-0.02775216578651612,0.00016345099813148883,0.0013915723492890462,0.022960384542286286,0.07142696874116423,0.01576825704675783,7.713073400485661e-05,0.006828520748931118,-0.006671471022397484,0.02375708269225405,0.01516214314745531,0.0001299049497195144,0.00684738679151954,-0.009703295221211241,0.008958878990815088,0.008868137513179938,0.00036553875699109887,0.017634061300350796,0.0075673626517483395,0.016875647415273115,0.0006077856496562571,0.00023462910094726526,0.003247736335954047,-0.03077344845999354,0.070432443855702,0.08158807679643122,9.54003895146972e-05,0.01948664486575255,0.01807544775960412,0.0732483775330235,-0.006888336715792931,7.240705937546372e-05,0.011048063543716555,-0.0036520312214890923,0.03258203380061592,-0.0002674704494201521,3.8437479925460055e-05,0.012375595780538793,-0.02775082783931369,0.020463915560252236,0.05434546434230611,0.001045759924120903,0.015066010820252567,-0.01944053172875315,0.04370822298689098,0.006815744853449867,0.00015552738706948248,0.014979358927903719,-0.0012793002453775032,0.0009424043352292994,0.00013196912271176052,0.0006635284765609451,0.007050165978557437,0.028289608968468095,0.3753080494251683,0.020936433103781914,2.2462694720229863e-05,0.016334338903464113,0.009298798551299179,0.02462058689855415,-0.04807172360281656,0.00011219654304926663,0.02450741991847048,-0.014211580657764301,0.07511860318564192,0.011430300995742167,5.3254547498460355e-05,0.0066098090526003055,0.02880127232925286,0.022864510803836932,0.02352881647651402,0.0024568165687071865,0.0007759371130961364,-0.0031019275516979508,0.020338674145923906,-0.00902221847224771,0.00012550502647731135,0.008249845371204757,0.0083729073758612,0.04584889666252428,0.002800917100142598,0.00028278451864946307,0.003307845565464678,0.006153764436616975,0.03376255196795988,-0.0075781649287802386,5.134126415831094e-05,0.022216814169392418,0.008735346486996422,0.05003517624147886,0.010214641055089062,0.0002877342161956509,0.0031059568249709986,-0.003316911182513044,0.04568517070903937,-0.023442876264327776,3.012928473546703e-05,0.032586065761098654,0.027418937206510157,0.30056499038287715,0.040749849842644646,3.047852412778218e-05,0.007314164721255994,-0.014098525862867745,0.04414812813473509,-0.0046633189275986885,0.00010286891680165424,0.02270350837634026,0.0399350338365485,0.3330785855139196,-0.03013769385641387,2.7694894886623235e-05,0.017964215133784947,0.006799515012049787,0.021571525653911457,-0.0768227617523011,6.988346937148282e-05,0.008027025830833447,-0.0034194775150665907,0.013359002785435671,-0.0028460668463616305,0.00011703999850155393,0.0021652251183042637,0.014368749602124482,0.01142446640104387,-0.0004904156053731308,0.000718883661433937,0.014177164392300774,-0.0034648719935915537,0.012668422883906842,-0.19666096510072503,0.00011511996572343283,0.003447016304241162,0.0036361980616053456,0.01179183514377738,0.0017589289192259212,0.0019791800596696495,0.008619299190051223,-0.04563098431620031,0.5291320909303466,0.06692471239578256,2.2175730289724944e-05,0.025192844439611443,0.014554156799494235,0.037776000425970804,-0.007373122811604072,0.0012596281123096853,0.017745459500800982,-0.016227974749502074,0.11400176804395645,-0.010977315544918183,9.479346091868444e-05,0.03093788402326759,0.028060873149646587,0.037371932323686394,0.03898346746808904,0.00017721521790660345,0.008261739294302413,-0.043197502442826496,0.06951551769762064,0.05326718665290124,0.0003566816691076535,0.0031933629203523377,0.03243741896730248,0.1313464292786532,0.049249711096619006,0.001914160546936603,0.004033855445226067,-0.020722616120234096,0.06751345511234508,0.03667571226430369,9.847922405768017e-05,0.010627513128575935,-0.052165565168945965,0.06272133238623974,0.03200693085597635,0.00206750149986777,0.025467234225803884,0.036804316458752095,0.14326317788582976,-0.027125081607534456,0.000101784163613193,0.0014585933473492674,0.008941491082772767,0.02598115552194986,-0.009601739822663003,0.00013951209528400627,0.008006221083783665,0.010422284106061207,0.04284828735141386,-0.002848248653563337,5.9366762367134564e-05,0.012421379698672205,-0.030362223490658768,0.10189180302715421,-0.06285450872904745,0.002824310127155592,0.006496067801082215,-0.01087497921731638,0.05113467812572171,0.0017386935372721032,0.0001057921588852381,0.009827815456518067,-0.05198941563464517,0.31389149618405976,0.11518451772002537,0.00012011470256917785,0.015110289921449341,0.001687422063786396,0.008871139484631195,-0.031234367078235476,8.996902504371079e-05,0.005059661701766313,-0.017333175681024496,0.08106828398303816,-0.00515413626864851,5.3737140606812764e-05,0.018483083989955844,0.04672095167973534,0.08747967952996384,0.027330812843838412,0.0002603957497109725,0.011549291835716242,-0.016754450694540023,0.06361066629482501,0.031536718952314684,6.549597702111108e-05,0.004018411043014274,-0.02008306938113981,0.2341039047816558,-0.04876257535350271,2.2133633603617414e-05,0.002993651186469804,0.01131492842169165,0.040780161041388215,-0.008723249916918864,9.698662327266011e-05,0.004004755968984832,-0.025819540437852166,0.111473661106515,0.04546737281370476,0.000365093595087117,0.004071962025334017,0.023438651076454618,0.11361813279103038,-0.06787398256968322,0.00011815626715459621,0.010946340115480232,-0.0004413627748672414 +2019-04-08,0.0424842675710693,0.36893899944542285,0.06878953012178264,0.00012177556512941339,0.004748882478396548,0.008397618613447068,0.02890556054936889,-0.03640032425368555,6.970842615995221e-05,0.0232362400374161,-0.009821416930473491,0.025174007146843112,-0.01363842216085982,0.00018047581058875257,0.014377516182178737,-0.014309469894343969,0.015128629510116474,0.00357938275973469,0.0003192212649102439,0.01612476649643874,0.01699904828529808,0.03910034261759021,0.003463440058209887,0.00022747926527311968,0.02941098540606509,0.005602210497629155,0.015008898940894279,-0.03139266283096006,8.149994758288648e-05,0.003852681002796246,-0.02298952656475794,0.08667431743482316,-0.013887668518656839,7.782684994546238e-05,0.02567018864891659,0.008860806254262811,0.06852224782832615,-0.023788811637885342,4.434455017333902e-05,0.014229406231237491,0.015883644258804588,0.012722409497896554,-0.0020585896041470206,0.0009627766928306995,0.005966870576097827,0.04343575409286378,0.10115946489391679,0.024218633522911814,0.00015014218394634936,0.004875743398857738,0.019353789921276978,0.012718140252673447,0.0026300246299410363,0.0007438181491008493,0.007886823960021471,0.009215819705464147,0.12564385032073158,-0.012417126879276874,2.185825672614673e-05,0.0022265680993336116,-0.0683612651018678,0.23562817331656813,0.050333881854862414,8.61854418838448e-05,0.01596898750541075,-0.001523193835901272,0.008515929506385037,0.0007380225806561366,5.034831424016896e-05,0.005324061180906905,0.003969196527013965,0.003677145234030644,-2.597834599713893e-07,0.002105303885442601,0.009748144324758722,-0.01802844927846333,0.10126863502099662,-0.05084149790570439,0.00014649929134449627,0.006294304418219442,0.04309095006292104,0.205985922120836,0.05716057024194633,0.0003239341697391102,0.0004418596847723915,0.0035588470520999146,0.022777080964933163,-0.008797865656195121,4.401211248373644e-05,0.005658648296753959,-0.014489203499981385,0.0756881913394014,-0.04863300728824533,0.000315502781361775,0.0070344039472770925,-0.021041810864238588,0.3258181500976605,0.0019889396754735125,2.6800202177887036e-05,0.0073113584134274,0.014934591735835797,0.16309876013351188,-0.022144260332439856,3.059316467287672e-05,0.014424549280866544,-0.035876316291749644,0.08570734499504372,0.022143192923265824,0.00013483807944650707,0.022745850262129524,0.023885943778546605,0.17296659694628255,-0.0012408802755253029,3.189866744333767e-05,0.03330123577088741,-0.030367165733390343,0.11529660936822177,0.07162427688478937,5.8393580586237325e-05,0.0018219872201069524,-0.0016887110878236295,0.0070993135165441645,5.708023252435511e-06,0.00010876460696376674,0.011248959373155551,-0.018295675760784943,0.015929998737483467,-0.04108490840558883,0.0006564600099903999,0.020793305254954465,0.022309448332664527,0.08055450946267081,0.07165305702300284,0.00011656951322019575,0.011858609306908437,0.06819809166590095,0.23293059164518862,0.07711673054636185,0.0018791647932343892,0.04224516773511192,-0.01223627419104549,0.11198180135265612,0.005320273539256669,2.80985523912546e-05,0.006763896819848278,0.04821810749380375,0.1461745255369216,0.05763616819017027,0.0010784741445252013,0.01669035734183416,0.0013554998558191085,0.009110197356364716,-0.01140357001011056,9.908258617310297e-05,0.008859236345378343,0.006643752016544221,0.009721143722076197,0.004137710827482791,0.00016130262534161835,0.02477017984892498,0.04119710831223331,0.06069946941912327,-0.12856649604864387,0.00038957022146829807,0.014482687237388896,-0.044537243380537495,0.18255070999292788,0.055899220008435,0.0018909939865777788,1.7969910830191275e-06,-0.013026535630144252,0.04936596424811193,0.008518244244010067,8.466261484745244e-05,0.016001237200595576,-0.02354199800035811,0.028806368466597745,0.004372804828822951,0.002031570971822407,0.015936483239387827,0.01751000121683006,0.050312571476717347,-0.005866604802298028,0.00013788775415055708,0.019637455783833583,0.006884100947643718,0.01599559263136146,0.0029233619266495914,0.00017446458071439098,0.003561592493479482,0.02512994889464911,0.09741018452650489,0.014864824020764944,6.296528368568552e-05,0.006032361101180637,-0.05056457853006568,0.15126012766978983,0.013524102031438577,0.003168399871139914,0.012612411341892288,0.032766451126339684,0.17860972537578956,-0.00975613227628798,9.125672403982629e-05,0.01007013312454079,-0.021698269901299687,0.13872541827437931,-0.026844439077814985,0.00011343050052841634,0.0003041475757437769,-0.02312678917556399,0.12312837864319456,-0.021710818668715066,8.883945372237901e-05,0.0019838699754955074,0.01342052123049293,0.06349155724238383,0.007587588583556127,5.312522706276365e-05,0.0014051240377847955,-0.019611076131464476,0.036830654545153135,-0.0036680417373466108,0.0002596099793465287,0.024008469056126715,-0.02170168337837589,0.0767282278415103,-0.06260401608302255,7.033194555421402e-05,0.005401929772206188,-0.006801652750193431,0.0868925800630765,0.0003247163789882135,2.019589241647711e-05,0.01577411798322314,0.0036431882858029407,0.01186625678112922,0.00046508959893366294,0.00010731905487815941,0.0021853002125143415,-0.00015238952785753948,0.0005067190230111552,-0.09977632743735806,0.0004740409783120584,0.012785566157270913,0.0665373996189867,0.32431745660601824,0.15831667454653345,0.00011750796209134848,0.010859635748863785,0.0030094427692918925 +2019-04-09,-0.037973820691839216,0.3147579297834279,0.03966659108328887,0.00012758340807463543,0.009010122552564968,0.0023307613119948932,0.006403391950556899,-0.1164756607687821,8.733699428406893e-05,0.0011279303684679936,0.013456247316783389,0.04399072849306107,-0.020430102229300764,0.00014150116355467416,0.0011971430518476576,-0.0026313430015470663,0.002627744212084606,-0.006987051947630761,0.00033795761078914913,0.02205555655065927,-0.01723643797019851,0.03694382949152058,0.0015005644151761637,0.00024412001160440248,0.0038386259935680508,-0.013817403088510814,0.04248304449015745,0.01072945379704692,7.101621713442069e-05,0.013049077064938849,0.006521346229021914,0.02266101559788596,-0.0005928533131605969,8.443990649330774e-05,0.007845323980214963,0.020445509327949685,0.20446725351993353,-0.05365135379078417,3.429041845931779e-05,0.007091410531353129,-0.006054354134204303,0.004978720055276148,-0.03750732488783089,0.0009377669001415873,0.005760411496787984,-0.02929656848169576,0.07391168209711874,0.017235541414879187,0.0001386007417481931,0.010171826937391364,0.013676728284810894,0.011489138081981796,0.010039300521855624,0.0005818608380236646,0.014343497168233577,0.021940656665045966,0.2549015025881039,0.03711360354942582,2.5650746895674144e-05,0.0040328331952845554,0.015402090586391904,0.04405030732936784,-0.05801028858583597,0.00010386799980689392,0.0060408432888534635,0.00012721197143147144,0.0006421037708584948,-0.02839597102014481,5.57679372380885e-05,0.0033797717838774145,0.020232426026508505,0.018301094365241584,-0.012689954375223874,0.0021562239887803784,0.022352646533671475,-0.0047936983916252755,0.03237322484316374,-0.02095476677280531,0.00012185317508758175,0.0006111611998642374,0.0028796834842899186,0.01435519272306658,-0.016161268077836903,0.0003106304030047458,0.0014806379697175174,-0.001915354843853495,0.011847306544246896,-0.00568937155202171,4.553974291142965e-05,0.0016205673691790372,0.0015479675951920921,0.009716479614717975,0.001665177818763011,0.0002625667500181026,0.0022704805697053793,-0.01074189807739139,0.13519022280626905,-0.0022501131005428225,3.29735703553579e-05,0.015190241349921023,-0.016553352785625038,0.15986474342369336,-0.01710976448072887,3.459513143579355e-05,0.003240061354424169,-0.018575537197329038,0.054153531378390525,-0.009381093339101644,0.00011049365903241588,0.01617739173758271,0.022483392509125365,0.15069649563747284,-0.09828984345670362,3.4462840120811185e-05,0.0239772759771194,0.005099759297562734,0.01643383267281528,0.00069639217578648,6.879996225676815e-05,0.0023273759984359646,-0.012481621822270281,0.03704852965966004,0.019702024564925227,0.00015404536607615835,0.004817933473737466,-0.05654765844814557,0.045227088123079635,0.06933200490139557,0.0007146469759001624,0.014534253133651184,0.04753466056731999,0.15392393473191088,0.24668464842856735,0.00012998410539066726,0.005281328503085417,-0.030812256528674573,0.10882955889765085,-0.007123860186734427,0.0018171710559407865,0.018253614164325596,-0.024079770143219124,0.20806109076521773,-0.06509399349708483,2.9760735586108328e-05,0.01805763392970254,-0.013945229385541671,0.04032677493013741,-0.005672176393075989,0.0011305855768858415,0.036255597848117584,0.03710704834039338,0.3278751054111314,0.04696866099051099,7.536567792219002e-05,0.000499675976984034,0.012716813874966353,0.018875046945571617,-0.060547710731749846,0.0001590141092383386,0.013483388816196724,-0.02961035672777449,0.046053229397046605,0.040475560274028245,0.00036905191537759156,0.01564165850866153,0.01991923818892832,0.06123835657123781,0.02719342086131017,0.002521154953342721,0.00742602556458369,0.009771671183768918,0.0389211591250407,-0.02602078021013953,8.055146609495496e-05,0.011089362702801359,0.015201103356794173,0.01789252302011493,-0.0032683978297276153,0.0021119358339706717,0.00963481831913794,-0.01459188437068967,0.04361851157959807,-0.02873578410839338,0.0001325429322454008,0.019954695731603342,-0.0408331538167867,0.11634559031036637,0.049988072501372306,0.0001422732896203654,0.01292094587620396,0.0005583506828828683,0.00227279242887564,-0.012819799693708698,5.995994180528702e-05,0.01288620031604074,0.01272822339440222,0.04231890432590404,0.008302018087142237,0.002850699451073993,0.00489308645656029,-0.02042070284545639,0.09629242171531388,-0.014698212002151592,0.00010549190796554816,0.006894664476786765,0.011541791517524503,0.07085537960785601,-0.016638196731055092,0.00011813026563664116,0.0019272377076182045,0.026985157396630682,0.1716928806643941,0.036409847987701915,7.433979633898864e-05,0.007784597144904689,0.003991897810526017,0.018487057644179024,-0.24086449510163993,5.426989916694668e-05,0.01905958626674949,0.0022393584838684127,0.0035771154215033835,-0.030492669997854136,0.0003052249722401292,0.0006275244926789714,0.016696608533340714,0.06228650216995666,0.016740181339428863,6.665745035855773e-05,0.001210876867044451,0.011814200153427181,0.11408247353985435,0.007414981020950784,2.6718783490327687e-05,0.005913827893489757,-0.011380052086860127,0.03563798044883339,-0.03135000395275197,0.00011161951449151977,0.0016876315525309357,0.00934386439518649,0.03697046349108805,-0.011699945702430553,0.0003983819037757875,0.0008582103267957479,-0.030264221260360744,0.15222925114292787,0.038502054872046464,0.00011386839216967935,0.009407662135734051,-0.0008527482443025252 +2019-04-10,-0.029386286585978926,0.20796898705374478,0.011533980110547813,0.00014942825232253044,0.007463568101315337,-0.07466578205881816,0.2651120940970889,0.2006680600162023,6.757757523595144e-05,0.01861666014551112,-0.019736448728142716,0.08193402326499416,0.036368392074116046,0.00011142994967094612,0.01693912780044391,-0.01699923693255504,0.017858538752339552,0.008634935898567427,0.0003212560852472131,0.016055406578323852,-0.01707250145214373,0.03468428922249131,-0.0010556678083779023,0.0002575503424109676,0.006584179175224353,0.006033292790694051,0.01387074724326981,0.005084298679259948,9.49732464459701e-05,0.002687021415777849,0.01986978999929829,0.06844225426779316,0.003177191151064966,8.518415642821237e-05,0.017428456230967927,0.04807135908248034,0.41855620092194123,0.06943401439645505,3.93850349186187e-05,0.014479334312202755,-0.00546298638183818,0.004948447089826065,-0.07680816529768508,0.0008513457523010548,0.0014011072533518286,-0.019875303192938835,0.052616698805883134,-0.03923170886258895,0.0001320845594630988,0.0011480976160328968,-0.008189545063095834,0.006022417033326051,-0.0011201458341064496,0.0006646810687127449,0.006511368873447785,0.004181698621414442,0.05257680008483506,-0.027749728686358506,2.3701802142151698e-05,0.015123194317993227,-0.010171408096676115,0.03438702497435033,-0.00015914472082308544,8.786937011594341e-05,0.03580583629680132,0.0036328901789961948,0.021175182128541463,-0.09095460902663684,4.829330562609557e-05,0.0014673271411130048,-0.008030221753435901,0.0070081179051758044,0.0023681257549066984,0.0022348537666134712,0.010921883284146361,-0.04401393548338474,0.2598853739466475,0.04209931012743766,0.00013936716691381743,0.034340167545929355,-0.011671705704162512,0.06283813288348983,-0.009628069029019094,0.0002876201365445658,0.0015518459295493126,0.0684006692303093,0.40803255874678984,0.06527117763666071,4.722005494470282e-05,0.000963393010819491,0.029714760144267983,0.13898658137745906,0.03377383669318336,0.0003523596449080508,0.0018998003661990033,0.01631544233282019,0.22090211736918902,-0.020532811711999846,3.064991011216328e-05,0.0046721872699434334,0.0029501076660335785,0.02990847230516727,-0.05086786642702242,3.295530572458511e-05,0.00632762900798777,-0.03165549740513566,0.07741464686903202,0.013767293404693575,0.0001317191018540734,0.018431801793795305,-0.041797136040909934,0.2724958785640191,0.029099757877705593,3.543063718538511e-05,0.017396134273114622,-0.019327012298827103,0.055595100949512415,0.02005300516390955,7.707358889330566e-05,5.237602873591407e-05,0.011408258100261796,0.0410534999412814,0.0013964236766378856,0.00012706260231165145,0.004292906977174242,0.02350713851584648,0.02234589632646993,-0.029702764135188558,0.0006012810935399337,0.0032431638880765874,0.020953368028925733,0.09449145652047747,-0.006199008853642992,9.333559637341352e-05,0.0015949338635302132,0.025449332486540275,0.09827252175582261,-0.015563152855135905,0.0016621241887650393,0.03292677884536,-0.06150860578586794,0.6236896557472268,0.11225693662671697,2.5360016816372955e-05,0.014628326138349764,0.03459281640453257,0.10091326704520892,0.028857328073858633,0.0011207504582284938,0.03798123794531388,0.011588618144209016,0.12191216759235175,-0.18374259833603918,6.330095219285738e-05,0.001849227512585853,-0.011210911419073152,0.015169816830999217,0.0014744270959861695,0.0001744238910332703,0.01954558697695132,-0.015224525696519327,0.02149738372984217,-0.036108163931948885,0.0004065014290042465,0.013056178776108485,0.046915746415246276,0.17161485764797124,0.0333513572239109,0.002118917691057603,0.01544866277702955,0.02526109036207208,0.10575767776094196,0.06618819149359784,7.663559909564439e-05,0.011585148156072703,0.015950296536603983,0.02160620646413802,-0.2124744807819493,0.001835132521028576,0.0034606646632977228,-0.005691017933083967,0.021220399563095925,-0.1401444836933191,0.00010625574816257634,0.010169729979424186,-0.03956842719254704,0.10123132512437462,0.0039106323991874555,0.00015845072916420263,0.0011749269708161024,-0.012114144882448007,0.05597394340890952,0.004802866740728325,5.282272285917906e-05,0.003474798408475177,-0.07459124879655865,0.2166438096091487,0.05170183823012422,0.003263319920573252,0.0033394423567668003,-0.012773930066186124,0.06832901510038818,-0.062459247673294714,9.299507394195695e-05,0.020750721076773396,-0.014732085072453468,0.09742580612290663,0.004686408613292082,0.0001096606951398887,0.00965699601061813,0.022430403700376626,0.13300172111455452,0.0069863433585253855,7.976796776920739e-05,0.010231541197748271,0.03986895556531209,0.19892674657853338,0.14026954476165496,5.0371985975358314e-05,0.01406010437047392,0.002760980365182797,0.004620333878818985,-0.061198585028646904,0.00029135290464219745,0.020105601863890675,0.006061025264709441,0.0284191994827411,0.0016279883319099617,5.303329728552858e-05,0.008638418472031735,0.002463591725754432,0.026412704142797946,0.005281518984869577,2.406507145508482e-05,0.012680964427563687,-0.0017194616725698466,0.005466356773075936,0.0007122905256606659,0.00010995209046893786,0.004252755546200865,0.03801274158685967,0.146302415962072,0.12447134545800037,0.0004095488080509395,9.200519123433526e-05,-0.007252056676015177,0.0292448853493037,-0.011670578664816914,0.0001420309730515248,0.013676032923405098,-0.0014024960086216978 +2019-04-11,-0.009522005136047883,0.05611504163748015,-0.0008145366792822258,0.00017944679490138087,0.02323737012636003,0.059266235775056596,0.18345173338921486,0.0983046094600331,7.751683841197158e-05,0.019319676244131074,-0.039399739964751865,0.12644435449008912,0.0362872714926437,0.00014414219007137855,0.007278880515545153,0.031230868546777445,0.036924212664528534,0.00767247693123619,0.00028545698538683497,0.00686278557459235,-0.0002916136114879502,0.0006048487226555928,-0.019044153033765766,0.0002522660435428362,0.0014179899521431965,-0.00800091997311377,0.018797633507178352,-0.011714794330509412,9.293589556753928e-05,0.008727203433613044,0.06063985409296066,0.1933315732420467,0.04601858629780864,9.20333472981796e-05,0.046258543733673094,0.02158773414372974,0.19802191961627466,-0.07015335430225263,3.73845716836016e-05,0.007069575724515985,-0.005136877190999556,0.004295743396591423,-0.0016576844607643954,0.0009221586375201914,0.011720372637593462,0.012627153883455354,0.03499605706991316,0.013603999803855687,0.00012616771666204638,0.015132442974307563,0.008361296214182358,0.005879561894585343,-0.06290759405039638,0.0006951091431404079,0.02154054458641351,0.00035336463000120913,0.004115897624114459,-0.0021286896977657757,2.558475733833994e-05,0.011980773440120954,-0.05637236702867545,0.1708578413352564,0.03305156477135484,9.801270916190804e-05,0.004531561482839491,0.008057829604591732,0.046187162903080906,0.005183310825040189,4.910871966437818e-05,0.006597128888996845,-0.01753325322545558,0.014750377720601664,0.013942484126701103,0.0023183677993535135,0.013679357340052274,-0.07789254026482191,0.5314974557766291,0.1237518217014913,0.00012059985490419195,0.021095791342933563,0.01477756096454387,0.1018411589017889,-0.03692289445626474,0.000224692025322775,0.0018981472233213983,-0.007026413750663793,0.042452030299968684,-0.005115073529424668,4.6622570046462686e-05,0.024885312944384497,-0.021400551226617676,0.10630809482432921,-0.0613731768461739,0.0003317763555108629,0.004632937064620185,0.07318344880349255,1.094319299419874,-0.07403830175676443,2.775230403671994e-05,0.0026227730033682546,0.011690796134832804,0.14030200208942267,-0.023318091040174717,2.7839531856163374e-05,0.0070962108646496855,-0.02943552262856122,0.082764909823965,0.010152916997985388,0.00011456402430068791,0.004743880017506643,-0.009931895633934788,0.066131040692266,0.00597402282597853,3.469118749430237e-05,0.014952535100065693,-0.010764387726282647,0.02707686432718722,-0.012583609937012128,8.813904606833071e-05,0.0010359820517587739,-0.005220753888432025,0.02007395639372202,-0.0013468335705435432,0.00011891834044575496,0.009138804243792632,0.018188950787594825,0.020679579406697356,-0.05190526827236896,0.0005027377622713453,0.0058620206723888285,-0.005113656818422855,0.01940129648540703,-0.018123338075386655,0.00011093966124009315,0.005678817750830534,0.041863848520347184,0.11559282997929954,-0.010255394550530837,0.002324488642685193,0.009995054044721424,-0.020095428340705098,0.18697202326528653,-0.001947544699025109,2.7637759630318957e-05,0.008701264080675609,0.04751280768971279,0.14594218311237922,0.043013337682476824,0.001064390835027445,0.013307565519963609,-0.013961160908298473,0.10098515759916016,0.0034495763477152427,9.206395505916552e-05,0.014673396979860715,0.020474172697191564,0.031777703398927624,0.015116147892457554,0.0001520649912480728,0.0047614060651145805,-0.00913603265136,0.015556934161817311,-0.011059666045630754,0.00033708353761629335,0.0157533112581377,0.010208957793565657,0.04019568848951473,-0.0851648677023515,0.0019685764150676978,0.0005831371274908474,-0.026820470800464048,0.11224353794250079,-0.10523684795901884,7.666469640628614e-05,0.0021981754876298546,-0.02857366225049846,0.04119621648874286,0.006780310294154756,0.0017241925610200946,0.01945769319920387,0.022735420153580696,0.08329048166884886,0.012636156685924497,0.00010814928369532842,0.007020068215135045,0.008742949766254424,0.02239606364680697,-0.006965235128412267,0.00015825107401518825,0.006089769249774437,0.02783073445518437,0.11770709408700865,0.026046780640217943,5.7707990876608156e-05,0.009021235447624818,-0.026164509410382283,0.07422917476664476,-0.016728628445613368,0.0033408426523311133,0.0012977283459747909,-4.088657023304989e-06,1.800688385887548e-05,-0.0005302753067578858,0.00011294907759194304,0.01916925040982815,-0.02399299758640492,0.13579511964519733,-0.07077321215094068,0.00012813304076623357,0.0029804850930587935,-0.005687684301595564,0.032997000030028825,-0.0014141307030742989,8.152855108742272e-05,0.013016377013256836,-0.0054909799316629525,0.024691488675089943,-0.0034473771184819627,5.5892041980101015e-05,0.0025717711546385533,-0.12492057252919583,0.24369510135793443,0.2948057051659022,0.0002499289477794678,0.022552110496359194,4.541244489488375e-05,0.00018188109531351454,4.477199839994542e-05,6.208714629055289e-05,0.007615176552471143,0.012603339293577735,0.13605802922591692,-0.004200678386261507,2.3899715847511916e-05,0.0013435634919227192,0.013610191699545216,0.04137570797773072,0.011221392801377605,0.00011498144673667958,0.0022569283119490786,-0.0021767016831586595,0.00942242457917224,-5.6934888568248834e-05,0.00036413650048629643,0.012141492631351749,-0.007204788991923142,0.03656258018657748,-0.0014897133982306227,0.00011286420483118327,0.023882154124947475,-0.001255343820577 +2019-04-12,-0.011768719916237182,0.08458912150387314,-0.024662323344354465,0.00014713002083610154,0.002085585270276155,-0.025727176827419904,0.07777642912951145,0.00891745688416569,7.936968526468211e-05,0.03829427449173266,0.03323777466502202,0.11908569173390388,-0.04519563429498189,0.0001291128774367778,0.0021057102683482,-0.02272495450521618,0.019104344657326085,-0.08420912695333327,0.00040145672206873793,0.0027065170703870858,0.02950240904950092,0.06970353467968558,0.017459015676862484,0.00022146262875730776,0.05271552728938371,-0.011040318975523601,0.032527741285877154,-0.025142589674745388,7.410959738678627e-05,0.0009268907536338731,-0.04029075359990082,0.15550396263719474,0.02539458082860722,7.602453724228019e-05,0.03144465935245637,-0.00590909389051577,0.043276894904170804,-0.060973549917730525,4.682345026856785e-05,0.020198117350762837,0.018051688598936366,0.01681981661702444,0.011662576254529749,0.0008276397927224754,0.00571981911558821,-0.0009076584954797272,0.002120730955083101,-0.028687823960361694,0.0001496576039253534,0.007377042005767009,-0.014577658755211324,0.009257204655112112,0.01888812065797533,0.0007697191168686164,0.0022283892511358407,-0.007148813352110686,0.10316798767765539,-0.011630325884713534,2.0649606878427704e-05,0.010123352116769334,0.011846412146575112,0.03866657464336812,-0.018898552276771827,9.10127369994313e-05,0.014026625951415288,-0.02614291784142741,0.15519958847516258,0.09630522099475695,4.7416043323084596e-05,0.0026326430710759993,0.015996417352357503,0.013931851423374605,0.009043388270918336,0.0022394267667963106,0.00798678658678334,0.10334342966820721,0.8180228060687086,0.30873434160940594,0.00010396078889509045,0.008430633353066846,-0.06383490317575817,0.4564028862286085,0.1107545763894977,0.000216579852564267,0.025689263143636495,-0.014206281685052648,0.07693829909773206,0.009754353638729221,5.201143027617919e-05,0.000476421893417407,0.026828893489395263,0.14234521000342912,0.03239138399255557,0.0003106323708024809,0.011373167414375364,-0.001979986650714592,0.025198959016239992,0.004206591034041906,3.260692865948029e-05,0.015672972918820548,0.00021228734699028448,0.0022371727130696063,0.0029861747434666132,3.170343393675498e-05,0.0017347643195772492,-0.018268975133137487,0.04777768873794929,-0.04601070133633471,0.0001231719462176391,0.0052483824395050584,0.003907220847804496,0.027500435078147572,-0.0006788179147922093,3.2818654424873894e-05,0.015097554902953404,0.015658922544924545,0.04820271291200977,0.03566652174200046,7.202243107531739e-05,0.0038582048726170403,0.010466184093585592,0.037105698274311344,-0.052752670803602485,0.00012897227370588558,0.00042541950915342993,0.043143997769500245,0.04976417671750732,0.02505788038163633,0.0004955404633456367,0.0031918900550164586,-0.006454056639421502,0.028105787585363112,-0.00671530943792615,9.665470991881305e-05,0.005162017036433238,-0.015531001303671637,0.04520064654703176,-0.012697708078343625,0.0022053320234669393,0.025989642843702622,0.016849908319475984,0.17751061162107948,-0.0027618698603680773,2.4409305173282962e-05,0.011057826185873568,0.04223707000437934,0.10478835805324475,0.003825836136390824,0.001317807630327109,0.05580847156882465,0.004369032354061762,0.03450798945771239,-0.02460943452118355,8.431236028885615e-05,0.018185936533650637,0.029142200792826,0.04754445221532273,0.024772724439682172,0.00014466647002062735,0.013742431343047042,0.03034894231680313,0.043700024863793874,0.031512379494339986,0.00039862615438459887,0.006051898323593407,0.005092745582407585,0.017180786021672483,-0.002063701345841096,0.002297519959397217,0.02221345892077482,0.015854497342504333,0.0732525106194946,0.02455906954642275,6.944169834062208e-05,0.01063506608389603,0.014971446044030676,0.022624328539239798,-0.031632913964841615,0.0016449975009555113,0.02798532011038379,0.021210990092875588,0.06487542070185003,0.011168284070880555,0.00012953788157771905,0.014034937086977386,-0.0031249314162995786,0.009432610358684925,-0.019100639270431395,0.00013429782256051007,0.010072199377486468,-0.011538123436800687,0.047010195602788775,-0.11337168964817558,5.9904168953225665e-05,0.014043166428598215,-0.009066433430280955,0.03611374508024294,-0.1113744208953154,0.0023794797158101393,0.011044775879245653,0.028086308016654158,0.15143547978482735,0.01489607968866318,9.225875448146794e-05,0.043762252042469967,-0.0038623277970645307,0.020949258536166908,-0.03346742443382914,0.00013370303253926066,0.002815426347094664,-0.02973854786825517,0.16161978875239488,-0.03917621539726824,8.703098966282628e-05,0.0010330200104317895,0.0231623873742105,0.10554631967229361,-0.04393090936173337,5.515534698985909e-05,0.004412515697574597,-0.03033844385000574,0.06604026924811074,0.017666373780621986,0.00022398238233384632,0.007869770358064533,0.02545030420544615,0.10338775457098642,0.11491809412916207,6.121223691627921e-05,0.012463300668086104,0.007489945681217631,0.08239456775266114,0.007658201962961913,2.3453700437868416e-05,0.014775586768098082,-0.01747057706777349,0.05263481575174668,0.08154891627239658,0.00011602273740100244,0.0012132124771616752,0.004008695166842611,0.016389179082018025,-0.036685951575352996,0.00038554387021622055,0.0017233495113917275,0.043480813197972784,0.18350538844823325,0.00766724209823244,0.00013571274425107078,0.0007449390542613875,0.0049395622143007245 +2019-04-15,0.019116423560757614,0.1302221272661335,-0.021108354288455915,0.00015524171895351567,0.004325008102646742,0.0591606591292612,0.20995655241296926,0.0651457510223029,6.761049222240522e-05,0.01354522924422655,-0.013879962406898197,0.04118676754073947,0.016982853165003725,0.0001558934203752521,0.0018016293467919527,-0.003224624987307871,0.0029494110454390734,-0.022295746146337586,0.00036898759762495396,0.0030116641998540004,0.002628279363173775,0.0052516218372206875,-0.027561996308568086,0.0002618640327637193,0.01220159888033071,-0.007909690252311608,0.02197813077030842,0.0020552723874555623,7.858062221900081e-05,0.004123373180999654,-0.004957577983458877,0.01786555684332694,0.0015384290748050888,8.142220372847056e-05,0.017570368858166444,-0.02550140371014104,0.20265871899711632,-0.057147454418880965,4.3151650131771125e-05,0.02112350962116631,-0.009765747638164143,0.008127795238364096,0.0005668407223334476,0.0009265684962121201,0.0060891958283349566,-0.03766011848510785,0.08448259727603911,-0.01894834272344802,0.00015587494433194496,0.01792857151491864,-0.02666927235624339,0.017719624507837945,0.07241122773513982,0.0007356665510698534,0.009773058338089743,0.012256637961741272,0.14297665556667571,0.004690753378128597,2.5546359142564713e-05,8.92906811931183e-05,0.016241652064789735,0.04399396959641832,0.010578029455117223,0.00010967006229176395,0.013410551832776701,0.006643055251185999,0.038949607112847104,-0.00525363683778323,4.800943572990584e-05,0.0022143438929398854,-0.031936518493852845,0.029540825150099627,0.048816688164124544,0.002108569503523297,0.004979831919220108,0.0015364947059460453,0.01062312695584151,-0.030476527727522056,0.00011902297580599471,0.01747679870483561,-0.049287522065514705,0.28046241409757966,0.055499418487341586,0.00027212631988671247,0.009840312209628006,0.0410762163105399,0.19229210518493192,-0.03936103260049489,6.017137476727884e-05,0.006934313715815948,-0.002816026674281977,0.016893850312865923,-0.08470562776728242,0.00027472294276229925,0.027660105713911257,-0.03331771969149586,0.464271770743797,-0.023773875272707978,2.978058491529597e-05,0.003528984950084298,-0.00039061924109556694,0.0035159033840999583,-0.030000458699520244,3.711918299632332e-05,0.0033649042966410214,-0.0038347099032920323,0.012190754285617287,-0.10040474115092214,0.00010132688530720752,0.005515957787254933,0.09845156669384374,0.6688039132084773,0.13392216355190184,3.400291910004718e-05,0.012074567337862252,-0.014942756881286415,0.04528737023864125,-0.011765053053033487,7.315280948637667e-05,0.007452467604337833,0.0023852617083588855,0.008870265264297298,-0.01633895985445437,0.0001229555181641474,0.006413346951221824,-0.009506668859085604,0.010448773407570914,0.0020321695083450448,0.0005200422358912155,0.00462322155355019,0.014774028543301367,0.054547645798297316,-0.07025486780193935,0.00011400107090536053,0.015323084644714626,-0.02696145350276071,0.09524993639229362,-0.008757796819514493,0.0018167609307260363,0.019364059847228943,0.0008110603896832175,0.007359516285589058,0.00039373114439688115,2.8339104104175822e-05,0.019378156792092427,-0.07516346275601905,0.1370266333455196,0.055748377423241846,0.0017933830549258963,0.00828008196576534,-0.0014426930750063727,0.01183081747824599,-0.033280688115566226,8.120538620168973e-05,0.01398874610631901,-0.0018752391109262126,0.0025726580938393094,-0.006885540720417168,0.00017203624956407083,0.002482284832891724,-0.0010473391080376235,0.0016383795280158718,-0.00039145756838375613,0.0003669245089212931,0.024638948020563153,0.022179514735878685,0.09578128905106378,0.01323928094587624,0.001794823319692678,0.016589042448313232,0.03329472574357602,0.1080254697953141,0.09766275163579789,9.888710176867848e-05,0.025549191296020936,0.016103682617866034,0.023197237047502314,0.019251214011046645,0.0017257033172478203,0.0061072546579275825,0.015141663921098877,0.05602898145500274,0.001411975013031997,0.00010707224568623482,0.02066243558073129,-0.023719723729517472,0.06757606820479771,-0.10649919398428974,0.00014229088579030875,0.009305451934539832,-0.002535828114346084,0.011655522379872656,-0.0070924211396002496,5.3100913813573656e-05,0.0031449828322611503,-0.009632322014862544,0.035337803414002125,-0.0116662489788936,0.002583506154363077,0.010376100488580288,0.03948174210458439,0.16875959289440434,0.028679957145200698,0.00011637733533360519,0.051787897663739854,0.021753788459240548,0.1116098668545101,0.04287894685990198,0.000141349115546922,0.013527045516530457,0.016316741889201947,0.0986376770303866,-0.005659533791748693,7.824188528193302e-05,0.004766222429374566,-0.03248578559238414,0.15052117473276388,0.06547445169183429,5.424293361928998e-05,0.011612703231375029,0.010313724505035433,0.019376365126423066,-0.04560006360043219,0.00025952106273614036,0.022593852175316932,0.00588054135409224,0.020012752624935785,0.0039060287545736126,7.306760244908352e-05,0.00026268164791385003,-0.012504935073710088,0.1327451027333572,0.003141527017184208,2.4304921275288753e-05,0.00690857537597868,0.012052266588070362,0.034017393940582376,0.019863007510560325,0.0001238444801626882,0.00901572025307761,-0.011404700138560668,0.04386100725706709,-0.004797072215545521,0.0004098578343396743,0.017034410319194414,-0.013948609736155564,0.05786238689848629,0.01352544800697355,0.00013807224124390196,0.002142458616199345,-0.0005016689860689928 +2019-04-16,0.005889789545711335,0.03618442739845091,-0.032317211592296176,0.0001721332054547513,0.008279339602437043,-0.041717944818910994,0.1513709880278338,0.03592051874159252,6.612882197982282e-05,0.002326730888871263,-4.5303577153629125e-05,0.0001429881702369761,-0.05888540787776154,0.00014656477002785627,0.006945203395328286,-0.03390745542592121,0.034344978256472126,0.07639604664248854,0.00033319602376035904,0.0016827472284684447,0.035854682394026983,0.08860794755606176,0.01563998903846226,0.00021172443134085411,0.01540110727483598,-0.01850087355495212,0.05210380147255655,0.01918498600156217,7.752996079607022e-05,0.01990971659804587,-0.003640711785909022,0.013594317468050593,0.0007404686863925336,7.858121638775228e-05,0.05148281947703286,0.008007207233664666,0.06787361968486326,0.004326203446092401,4.0455602405631114e-05,0.011206341443094053,0.00985275625399647,0.007909471281459687,0.011292995040285107,0.0009606276261012253,0.022188220550637846,0.049950206355269575,0.12222253950817219,0.13366239847300457,0.00014290514666259936,0.03604168677699421,0.009001057871683336,0.005566623178078727,0.0041712146929710715,0.0007903620675635498,0.0017088283224763893,0.018515412058990405,0.24186636078343762,0.002841954767417082,2.2812910729251837e-05,0.006030546635942314,-0.025829098139498043,0.06849444075811102,-0.010662156036449618,0.00011202242148404816,0.009143189809097368,-0.025365198442431746,0.18362828666962852,0.08049307970339736,3.888306582715157e-05,0.0065967316535047865,0.011929331278693618,0.010900642621259348,-0.03133571563372131,0.0021344548382372665,0.008040556195081863,0.11464669303500236,0.8848754875788643,0.227831852030501,0.00010661823167538619,0.019860186278670967,0.03266779061053675,0.1531325521697577,0.02685390227979391,0.0003303394751661603,0.008195915376472615,0.005868966325051565,0.03502302260914347,0.001849524956569016,4.7202929124430605e-05,0.06682969507601129,-0.005367362160363581,0.0294801108399896,-0.005150447556985381,0.00030006724815930994,0.00036289455175663897,-0.05014499211112747,0.6190973496981371,0.04399749476947479,3.3612348190293813e-05,0.038492330202326314,-0.017421217475425025,0.1951487038184111,0.02626794088322902,2.982596749941692e-05,0.008563884679877428,-0.025935680428231904,0.08729932431873495,-0.023444643344600377,9.569946717005002e-05,0.0022096881479500056,-0.04655325420288266,0.34063950815339694,0.040694235171860445,3.1568024418883473e-05,0.006141850829586329,-0.01225195252820679,0.03321374903647978,-0.07424699555598085,8.178332962473643e-05,0.0034979765222377694,-0.0050309463667936325,0.017824485196327303,0.0033273217767569377,0.00012905691742564945,0.0014823936753003706,0.013029900662434708,0.009998882794898743,-0.0033374638064056278,0.0007448437680038042,0.01883135640973374,0.007415450924314932,0.02201718996858549,-0.010263377959706737,0.00014176260480838708,0.0006208716286112895,0.013390026563041144,0.04092251624745418,-0.0013526246068499472,0.0021000918206173502,0.002580992648441106,0.037035868019192515,0.4050912611115388,0.042169323705626885,2.3509957750522656e-05,0.02087211672131957,0.01603179097439716,0.051506969357841,0.00485077013744715,0.0010176239381958063,0.040759908539462986,-0.0057326653138931975,0.03939534362969515,0.0008308971739682124,9.690302569335558e-05,0.0060354316691119386,-0.01374801077000454,0.01696861977480365,0.005073905698730318,0.00019122238547726185,0.02935904454753563,0.015296307240161596,0.02060022463900293,-0.06708011222045597,0.00042620501518799564,0.009253532846562343,-0.005185619020642551,0.018890388225257158,-0.011504612452158655,0.002127698387389908,0.011268005781720734,0.016121173383543814,0.0738177567210263,0.015510269321745802,7.006904141866752e-05,0.0042458537820970425,-0.021902721904760995,0.0335084441491296,-0.014009911217220651,0.001624878968743676,0.011452987914228906,0.011949958706385181,0.035759805561139626,-0.03934111907520649,0.00013239978880664086,0.005669553105175962,0.046246415617028865,0.1290635488663968,0.11212512558509768,0.0001452562577553235,0.01627688820538598,-0.0018372912208461812,0.008921254087662278,-0.001018467076840148,5.0265038104901884e-05,0.00973270714659574,-0.04093096887264014,0.16737916444739598,0.007285105585443059,0.002317761194365952,0.004457106368451083,-0.019033953277434377,0.09435720770641806,-0.07470624415898752,0.00010034471162548472,0.012581797875300378,0.019183424753835714,0.10608282127374621,0.017220524741879146,0.00013114201914150864,0.004485634550474909,-0.016949668835103134,0.09735027021524012,-0.02416274550599167,8.23517352523512e-05,0.0029878330232123145,-0.01125293704137261,0.050757506444741786,0.003605696533225738,5.572024348420464e-05,0.004466319887728194,0.053394209216175936,0.09297829108078878,0.028251516980252238,0.00027998966005220253,0.009099773940320783,0.008139531027359438,0.0344168308216105,-0.07821476762950054,5.8808876399201024e-05,0.00809499553362733,-0.012587360530332943,0.14432736078371902,-0.03822876467839819,2.2501801382636375e-05,0.011244036144908463,0.012345199713625259,0.0361410676930364,-0.02070830392294687,0.00011940048919236563,0.005487685198679528,0.03356373421750241,0.142406490883054,0.10265026913361626,0.00037150824736531735,0.00524929803046778,-0.03058925553549697,0.14141854093404133,0.028132689517255397,0.0001238894575310146,0.01989451274513964,0.003134182743966404 +2019-04-17,-0.040827982853139745,0.2275720137276172,0.042227993855549,0.0001897254777625497,0.024189816065094984,-0.023368168354609958,0.07309415247336784,-0.013531142804150308,7.671010277134992e-05,0.020522495112079295,-0.0185713039302717,0.06573162119847523,-0.015901859947363324,0.00013069689144029094,0.0007484118412499096,0.005483745764210739,0.006269146582541969,0.0013607443516652751,0.00029521386032866444,0.0007764978485996883,0.02776280880290562,0.06742782409295747,-0.00914171396342143,0.00021543786143177028,0.012395072569941809,-0.00791631819283535,0.02572682872472234,-0.07631444594231783,6.718676440594299e-05,0.003115849039185264,-6.084486903964162e-05,0.00019065269313181784,-0.023028134789463223,9.364204111677899e-05,0.008774955821069413,0.025207705913165648,0.1986292650497146,0.03038105890067562,4.3519981522813555e-05,0.005684208883202769,-0.01984718194068446,0.017391730836845434,0.019941781165233825,0.0008800367978547604,0.011585600636282885,-0.021589178822127214,0.046980535980270535,0.0036315248189405587,0.00016068674108102706,0.02258720444020097,0.010017558253408382,0.006752537567752545,-0.005584484591002124,0.0007251355979264394,0.004963989034518627,0.013048635296491126,0.16109573747579276,-0.1389653075520304,2.413814173477832e-05,0.001203522256742514,0.021006280509299965,0.05238253838264499,0.008837614588825341,0.00011912794731580962,0.02986341902194036,-0.0008614187246068086,0.004992382465611464,-0.0031196501849340657,4.8570019397094124e-05,0.00040823373379098477,0.03929707082597471,0.033552975622113776,0.05395393541118061,0.0022842945881755465,0.006537558484990739,-0.002836788895733148,0.017272022529415523,-0.0003186577591528801,0.00013515618674431775,0.025021607093922392,-0.019145650872318128,0.11705725490818362,0.0014399845947605763,0.0002532678313933319,0.01135982498137986,0.048783502766109446,0.2902042541465796,0.020497762692146006,4.735110975326575e-05,0.024789902187575465,-0.04414665044394024,0.22264998731102048,0.06222906006119549,0.00032678483224638015,0.024827271911521776,0.025616032713931196,0.34421921602255934,0.00041392880795426196,3.0882111690342596e-05,0.0065197739003109625,0.010545196882275629,0.10915095447962316,-0.005644992495981448,3.2278166974376645e-05,0.013789196095575254,0.03261436905060546,0.08100342609771102,-0.029350473386599168,0.00012969652765364864,0.012167932900618185,-0.0029267337876676246,0.022502960387196763,-0.02326025957883445,3.0042491136713372e-05,0.01011277407695138,0.01156390238083055,0.04113171793277753,-0.03158051767707106,6.233112281617066e-05,0.00017263136398820928,-0.011201451160363288,0.0422721393445099,0.019172079078596617,0.00012116262051526282,0.003354763014871017,0.028762862784006034,0.027195386848568745,-0.0041648670041297626,0.0006045224445696083,0.020351198428976654,-0.0012460472138841271,0.00403175050725622,-0.002508013552994101,0.00013008489126299712,0.0014438949239996782,0.03002366997739008,0.09719786093179018,-0.04759453660377778,0.0019825595678448016,0.00013737686264630794,-0.01389371811709709,0.12178285214653764,-0.00963564044678233,2.9336921430945028e-05,0.004148498231585747,-0.043529283041411855,0.13081281978083287,-0.05857351336099458,0.001087933817150103,0.001106704626595461,0.014104675078635226,0.093754258554779,-0.0042730870394312725,0.00010018385192085196,0.0071126083562327745,-0.025503388965529596,0.04432437879058936,0.01659640166220521,0.00013580026681608945,0.013807501576815661,-0.015448413905098768,0.021839304094669137,0.015261300564379058,0.0004060214848606153,0.001067015308284539,-0.0834000527311448,0.3157574683645991,0.2350776822122031,0.002047213020332834,0.033955168045879426,-0.01603117552838468,0.055484598005684296,-0.004729015663460641,9.270076025231846e-05,0.02120006885652625,0.03603995059378275,0.04555301052879544,-0.0014945331142485739,0.0019667279720274513,0.019842674299891602,0.017013705377240056,0.06605901938821018,0.0038943193477381823,0.00010204290691164684,0.008851808332603529,-0.013423191831530233,0.03626810436494049,0.0033292845908352727,0.00015003456244913095,0.007563025732228632,-0.0011877679565984063,0.005774765552994641,-0.052785057410839095,5.020086178223411e-05,0.0021443573857951237,0.0011898585959512586,0.0033748297490479935,-0.05021910306036831,0.0033416544715425185,0.024669916533562933,0.0004525673192668555,0.0022232480501808735,-0.009360614638213107,0.00010125951434879853,0.006865763670076183,0.015597641240146176,0.08126223550018226,0.005796847970911786,0.00013919734311116145,0.016312264306941007,-0.0200534960048065,0.11327338239511596,-0.020134634269594772,8.373575213578559e-05,0.018761762965096913,-0.009707006055474384,0.04931224843963556,-0.003991221292433831,4.947409861386055e-05,0.00679064847651592,0.02314266590079142,0.04024506598900112,0.0038027194852328417,0.0002803690925208537,0.02664927168655355,-0.0015106853099003514,0.005766014640220168,-0.007147353444199827,6.514973315340949e-05,0.004032206846948208,-0.03217775301597357,0.3665376335614753,0.08002440968519811,2.2650011544988678e-05,0.002767106314220486,0.0008121613182183791,0.0028659484818239675,-0.05371618014754984,9.90564788850371e-05,0.0022755261102970596,0.021104885373693184,0.08972799708254425,-0.00402378403948249,0.00037075156689516146,0.0002196578557652324,0.0534781129365527,0.258713246934198,0.05863774800446371,0.00011839386638117836,0.017229316735646066,0.0004820025836791854 +2019-04-18,0.012231594556646973,0.08916554286407775,0.003627115777788548,0.00014506832710270981,0.009460076983069107,-0.06343223655116866,0.20174272700364748,0.06681051585383123,7.544364520417251e-05,0.0015609633698511554,0.037040856332190855,0.10626613404698461,-0.01371663348538414,0.00016124391773164324,0.006174241067009501,0.00020978914299701036,0.00022517079967044254,-0.008357967438318003,0.00031444072936129833,0.006253787622244724,-0.005384109179635444,0.01229686305701975,-0.010810874149760221,0.00022909588774619634,0.029641504271351933,-0.010421783795735913,0.02714222762122341,0.005455141651341416,8.383846358003956e-05,0.02556783342875757,0.08172607277822708,0.29011731975106364,0.08783916420915241,8.265646518593585e-05,0.04253903507022018,0.003348148757497377,0.03316603151081321,0.00039554156720208425,3.461862790707899e-05,0.003324946710987595,0.005319346936488488,0.004762221027424238,0.006971893483908006,0.0008613775626213142,0.006851960217500648,-0.006363395745939702,0.015220223173783519,-0.001527266338943071,0.0001461940842201518,0.035822233499402535,-0.020168932003003178,0.013516928136111973,0.03382698307520238,0.0007293386943157597,0.0019312356007708728,0.027598427501661582,0.4415954283039128,0.08349957543412248,1.8624411488983058e-05,0.016581589263566645,-0.043854298478075315,0.1360433185023723,0.0067172550577916,9.576040824363679e-05,0.03279935414629597,-0.01419267966572724,0.07873558803732902,0.019459332724154496,5.0740546871216225e-05,0.012756503669768786,-0.05443255028331826,0.045177178808196036,0.1441108809953409,0.0023499712447036664,0.008743937385793071,-0.0011030809729987445,0.008694819980358965,-0.026950539624138396,0.00010439961728422764,0.02358392737532305,-0.02851841799894306,0.14630334684968221,0.009474362692777759,0.0003018418131358853,0.016681774143511553,-0.014168400499933145,0.0712842586252158,-0.08240657064363294,5.598712201494371e-05,0.0013121183476368728,0.02348510005628485,0.13546619688560227,0.032087026528513383,0.0002857250278854166,0.0021542226245628284,0.043496550726962874,0.551018713112083,0.011096208904005778,3.2758099817442154e-05,0.0005706526446293088,0.031191492205504243,0.3599200984768148,-0.020742506281032684,2.895421280779079e-05,0.0056394113782888885,0.035223300635303226,0.0858850589135641,0.04843448175095336,0.00013210984635095155,0.04847861622414491,0.015486929231999022,0.1185305596497665,-0.0004374317446110075,3.018056424770303e-05,0.018250146022770294,0.0018687813639869813,0.0050249088493832415,-0.12078726975946115,8.245323293072656e-05,0.0022799339469723786,0.018222456697653194,0.07647921372776427,0.06871453868239769,0.00010894620534046726,0.0009136331786680186,-0.03303526604076707,0.030904581904170534,0.03164766061483297,0.0006109849285766731,0.01900587443456998,-0.03401231920534646,0.14016746611590455,0.09875593093503189,0.0001021351034018101,0.02021971374773064,0.030450415550005962,0.09461362872974168,-0.015256932153805346,0.002065659330602238,0.032347127064336116,-0.025818447663349356,0.2556371377253759,0.01597528529945292,2.5970982269112152e-05,0.006580229728283805,-0.0006495557575106469,0.0020301939133079883,-0.05666313111977713,0.0010460445593867254,0.016307349674226354,0.0039239850256804956,0.025983618629490716,-0.16414756698215743,0.0001005665036153944,0.0015862994194369116,0.0003852753315726428,0.0006071012437731637,-0.0016084288833910412,0.00014978056570572097,0.0033385292182873346,-0.0304360245772844,0.049873001015858884,0.043651828331771766,0.0003502888697561547,0.01487425757096993,0.05202081916233015,0.18541971999529203,0.07873065458822444,0.0021745610604853092,0.003180677328531013,-0.024545163717246913,0.08484827646752496,0.0480512764512945,9.281395488638002e-05,0.00919751292986857,-0.07643715223158438,0.09101365057531237,0.06782752263646602,0.0020877339610377486,0.017789693904560505,0.00840218280859628,0.03226812487746933,-0.0534747203157978,0.00010316548729619084,0.009689034117744738,0.06618372633171288,0.16044435182569178,0.0617667579559196,0.00016721959164081625,0.023249592699813623,0.012279666487582459,0.05623070224922766,0.0020344251220293253,5.329997303992748e-05,0.026016012079592754,-0.07750471849933137,0.23389025323249993,0.06319085978387529,0.00314075512477557,0.016405169514751183,0.007244882697411761,0.03786639624780587,-0.0012351725388399265,9.517391920545511e-05,0.012343562817035688,0.00854477388122325,0.0381921071441989,0.0006529693578981702,0.00016225113328190995,0.002333822835838935,-0.0003623111677646735,0.0021309904586712196,-0.0007631709523974318,8.041719384225431e-05,0.0005565669372866393,0.035685796924035854,0.18317129701870133,0.09299829021328022,4.896495661067533e-05,0.0027649890825443037,0.012531308190516432,0.022950646795872703,-0.00020250598501633002,0.0002662139906571389,0.02711944345363599,-0.005410344243860511,0.022780410770429464,0.011054154531809522,5.905786242666495e-05,0.00814848090786888,0.002012392962090792,0.024757344149546213,0.00424595896191887,2.097200832687051e-05,0.010652741069948927,0.03308738259535089,0.09307178413222998,0.19311547718361785,0.00012426629174834702,0.0037174885806596746,-0.02799751713829052,0.1050441239310585,0.06414839646240514,0.00042012229252818374,0.00047498156692121415,0.055034023699521484,0.24177314990487384,0.03176820783743661,0.00013037520185657964,0.00254799863642628,0.0009952866422989362 +2019-04-19,-0.013088054722993701,0.09021278325941964,-0.08098284575715775,0.00015342410699161372,0.014521553199484219,0.01047436841920469,0.04062982624715613,-0.0033116744433410944,6.185764857831715e-05,0.001700398253188036,0.024556688852056852,0.0745305757686561,-0.06565633889338615,0.00015241669343706753,0.029989054833428334,-0.006042750499204793,0.006796207152846965,-0.07219610081929903,0.0003000792123752251,0.007270654215232796,-0.03808586140049578,0.07734495298074653,-0.0530989373394565,0.0002576496608617821,0.003569583029489452,-5.8234175613583644e-05,0.00014397204099252263,6.237132436194849e-05,8.831744778392293e-05,0.011684381567241888,-0.005611057366178531,0.01988045187923128,0.0003134676312026629,8.281486770971453e-05,0.012359184943068913,0.0015260774368397144,0.010817063677450042,-0.018416209914924073,4.8379992813202023e-05,0.005228651991879255,0.01511496824909176,0.013178656186576335,-0.07061321898884451,0.0008844655013413625,0.01844004473824707,0.012569755983392302,0.029978244159352782,0.00908012570706286,0.0001466163963194228,0.01044194714219791,-0.002168107247180565,0.0017474357406852975,-0.001054313539468125,0.000606462434815365,0.00964750258861338,0.002142131324846106,0.024068385553961413,0.00397667385492722,2.652295580184364e-05,0.00121181781577064,-0.07379785091302134,0.2219534820545057,-0.15001797325914573,9.87717594252594e-05,0.004789116186330435,0.002197019116516262,0.011213134132335233,-0.09681083194210109,5.515293604241072e-05,0.003533024664032889,-0.02254827272584566,0.021062107001134204,0.012610025999835775,0.002088018954975302,2.3132760694134346e-05,-0.011336646384356884,0.07377699922829464,-0.00236339088189502,0.00012644909371965413,0.016102040339879997,0.016101020377623856,0.08730179076347533,-0.029134060498004988,0.000285587029616778,0.015379258420037449,0.006282738305682682,0.029461902107114444,0.00016820391480820373,6.006882603231699e-05,0.015247166013294634,0.061132048917275146,0.390232967829226,0.1510500218740198,0.0002581854729018199,0.0006353778251879127,0.07347359614356364,1.002593064384108,0.02852234597482614,3.041142930945167e-05,0.028030465215369556,0.007066866406896472,0.07714119851478102,-0.00026777606275851573,3.060710183048525e-05,0.012730245773645357,-0.0026512092209969363,0.008120563398123884,-0.02791969007360246,0.00010516726896475969,0.004576761309943148,0.0015793049351184101,0.011331668612144614,-0.0024665274669556153,3.219322635805203e-05,0.022621109643665475,-0.024473522932957684,0.06322110009236992,0.06181380554686051,8.58246070544958e-05,0.007711538915464714,0.00562905416245176,0.022063013357849284,-0.021516361838986996,0.00011665925405182375,0.0024301067788432057,0.043543174231426306,0.0419772423128682,0.01319532345552672,0.0005929003986674825,0.0008108900809303651,0.006356424094362306,0.023175338537588564,-0.040496749216869965,0.00011544437779447389,0.008277096926230543,-0.03886027370227216,0.14188181689466936,-0.02546002981072789,0.00175791668634427,0.026933976786639627,0.008000063326015737,0.07236154436930241,-0.025286857992264898,2.8429406468708696e-05,0.0014290932855158959,-0.011945033185531417,0.03378840412817577,-0.021996556635402204,0.001155821983671028,0.005482231862279854,-0.0007667339380682801,0.005844371194561586,-0.03175181964550859,8.736400571831586e-05,0.001013911050219055,0.002088036807771309,0.0028677538288627517,-0.1400222576972677,0.0001718468865231231,0.0034122735115210013,-0.022429487054694438,0.030996253034354333,-0.10764179390387468,0.0004153498500124344,0.010748428146500495,-0.03287881931731657,0.14575539998812814,0.009308233287013277,0.001748404441812759,0.018549513077783047,-0.003419929061901436,0.011833410108914446,-0.010223530749836045,9.272515161476713e-05,0.0032395677107280494,-0.053249909016573456,0.06414922398718977,0.03534919928149548,0.002063500862742091,0.006246021147599726,-0.04704709034853149,0.16012252122915344,0.1606228112097934,0.00011641163426883729,0.03725003600977857,0.005386351538667495,0.012757494072238095,0.003054653307346618,0.00017115504104964254,0.006778467791621735,-0.024243784448520093,0.09224567251274104,0.02580077158369621,6.414581651531966e-05,0.002013118904964601,-0.11625915554088574,0.3452486484484017,0.03355601651911033,0.0031916351172917865,0.023224792257796747,-0.018873852492460316,0.08982861039021998,0.012786932867322503,0.00010451688216477936,0.02332044343961026,-0.03624130036384286,0.17897063721301376,0.030102977700170896,0.00014685298279905963,0.009745630340583082,-0.0010700887020778807,0.005528333712031076,-0.07763449100149597,9.155334717848543e-05,0.0024778204595895994,0.05068937710652956,0.22435076082093824,0.13863224826310336,5.678541482284437e-05,0.027655370345747648,-0.05180533844590548,0.09676335740405476,0.036820764693881486,0.00026103153706218726,0.010734409618731794,0.020479804713328702,0.07265665162903477,0.053336315051759633,7.009141173880515e-05,0.007191622379434519,0.0004143156617230353,0.00394896080435894,-0.001411709751052938,2.706947375168878e-05,0.004440122331695935,-0.014148292695168574,0.04919587593034134,0.024800964662738696,0.000100527365850148,0.0030517539194010066,-0.02670271273748642,0.10470040816976366,0.04580850109057252,0.00040200826307996464,0.005246649786091707,-0.025654446144473635,0.13926719593808773,0.009614126298589896,0.00010550805271362423,0.007306719289897198,-0.00628716941219744 +2019-04-22,0.029815709476864207,0.17099210760009953,0.017311688851784888,0.00018439777083050366,0.021277274446074718,-0.03169119164463406,0.1195091088763692,0.01156358080588709,6.362797301850498e-05,0.027215171375508954,-0.007684375675635571,0.027831026024810433,-0.006095581260069093,0.00012772519537590103,0.001629097180516788,-0.016204576132315383,0.016840695297158734,-0.04136933292143944,0.000324747273650217,0.003794911580143576,-0.005332586942721787,0.01351721241542954,-0.01034822442677462,0.00020641848141399684,0.0075622755501042775,0.001640394888930537,0.004132610901261997,-0.055042081136621034,8.667036595270395e-05,0.0018563460211270602,-0.08037133587111682,0.2973115975193039,0.059335624704244805,7.931935821859933e-05,0.01684243591183501,0.00504759804891991,0.04766858143044412,-0.05897772965885968,3.631208199093528e-05,0.0072846434450685935,0.02370904193934323,0.018138874644856605,0.03327493629961166,0.0010079719625095116,2.7213125245645342e-05,0.06044814167596771,0.16504594594968527,0.014846798531984562,0.00012806780892372655,0.023779156252377275,-0.020179949502483682,0.016311396254430253,0.020881612769972777,0.0006047185558510685,0.008672597759529067,-0.006867337406565789,0.08687429284646273,0.023290640221583347,2.355699515745713e-05,0.012828258039982112,-0.005302712420275855,0.013400636931404615,-0.06477812092448541,0.00011755028106517848,0.014632521884387108,0.008337796492615289,0.05034546173774771,0.00844975488835792,4.6617908034340316e-05,0.00365024737235363,-0.00043507181711638517,0.00035707951380361456,-0.07548304981029294,0.002376396967336452,0.001275640649783605,0.021802430966637965,0.1542157328132011,0.003946468528572344,0.00011633980884932091,0.02762661761866899,-0.004390564301385091,0.026003078770536155,-9.44518702034476e-05,0.00026145912430114877,0.016807339776521126,0.062086125756073786,0.37608883819284117,0.04476416308942894,4.6501297600769265e-05,0.007370394100345851,-0.0336992143019595,0.17420964746847775,-0.011832794352495343,0.0003188117953186451,0.012910278645342887,0.10722473069812666,1.6541919306365473,0.03848523237339813,2.6899195879968578e-05,0.011914700204065798,0.015022375167153554,0.1606511726945915,-0.007222933101265209,3.124182625217357e-05,0.008965205607496973,-0.05487407412409901,0.13029422540173133,0.05378420668480075,0.00013566405470295483,0.008179296098641655,0.006573559625091545,0.04983820376218586,-0.0014119286616879228,3.0467063747410462e-05,0.009474626035908299,-0.005052324652478303,0.01240305040782529,-0.0031772049131398813,9.031089021851748e-05,0.0010060860848721382,-7.23932880275474e-05,0.00031601815452413686,-0.02168130221264185,0.00010474537726657096,0.0013527077380245255,-0.057558314518381164,0.05312483556409872,0.07981117917986028,0.0006192785400200616,0.020503024321049973,0.003540360338501232,0.013859166282839279,-0.008665814612828676,0.00010752176143555265,0.010211809690603342,0.07686044044563539,0.2296676141498509,0.11108081191895892,0.0021479406872420065,0.016156312167004618,0.025855450947331958,0.2438842281248268,0.023087634189106348,2.7261553245344687e-05,0.011705958929590603,-0.0064649244355872585,0.018404122579475823,-0.00813545722033383,0.0011484698690165955,0.00963728515753855,0.031412292763171,0.20717953365448688,0.0619591172503613,0.0001009667619595866,0.01318048964499719,0.014663316323915581,0.02104194731287825,-0.08661172945517384,0.00016447188161323702,0.012846074174730746,0.01685845242125047,0.027835561164501216,0.018486175680395966,0.0003476335130792876,0.0018501148068532005,0.007275338446387061,0.02588935119841984,-0.025367428238769512,0.0021781228727078194,0.019652142152814783,0.03244852433688691,0.1394340608846881,0.03134561470745078,7.46648927486061e-05,0.004696787661926679,0.049301509404136044,0.07871952161542548,0.09036080124317561,0.0015568793608826841,0.003456458321421974,0.020317249250105366,0.0718232229609319,0.0045043992290459975,0.0001120768859173628,0.004760457807130428,0.02214239901629211,0.06318651102026879,0.022102874935162352,0.00014205635705304322,0.00810608847802034,-0.020291990228582878,0.09277293533534095,0.015073644579497433,5.338475717698585e-05,0.007897818721230857,-0.032077993284965495,0.10216285882700561,-0.001270601233857583,0.002975995106733732,0.031037746994432996,0.014048480276472713,0.08090843323867283,-0.006373406256437388,8.637262634934429e-05,0.025763977303938743,0.031923514502606574,0.2006914314948681,0.05190479122677068,0.0001153566541362689,0.009683473033439081,-0.00929929241393811,0.04851005936294369,-0.02148764422127084,9.067066414356147e-05,0.016845451296373538,0.0192955652999338,0.08519729752122267,-0.017097234243143678,5.6921859946603624e-05,0.026138436304464795,-0.010961149221559338,0.02063417766242511,-0.012673575414425608,0.0002589991380007408,0.025454503694895173,0.02250585941079787,0.08669945538440932,0.04462479361364346,6.454960783320541e-05,0.014154243254635778,0.026482637129214944,0.27514220849571214,-0.09716805752424854,2.4833349245786944e-05,0.0003557164469393734,-0.007329813627145196,0.02544382027697186,-0.014625227224872583,0.00010069770609539286,0.0011060474415246022,0.02291276967544768,0.1203926363362902,0.0044363034137930675,0.0002999892109942562,0.0035052009504345652,-0.001229892366202948,0.006876118206762136,-0.027726882889879675,0.00010244613253228722,0.0004794192382118641,0.008167229467290022 +2019-04-23,-0.014247499404420954,0.11415861527032307,0.004937041027708839,0.00013198255735755754,0.016624511505163676,-0.030877010287363782,0.13404360499364945,0.0025226129161730402,5.527129876496664e-05,0.05404051656683101,-0.035364249004293885,0.11971048612152238,0.03146349852681991,0.00013665623455445968,0.0033396227059656366,0.000295275588804632,0.0003004194434385392,-0.03252974791284577,0.00033171672065654645,0.007987168794049287,0.013023763203626406,0.02686272029369998,-0.013455716735315546,0.0002536788577985796,0.0010469108931298972,-0.015221037013585704,0.040815600529956156,-0.010860820306106998,8.142631690163727e-05,0.003665255896631292,-0.006410439685424056,0.02416709287540356,-0.17559698694356515,7.78311168467931e-05,0.0015522991433175167,-0.04443209604560342,0.3401687192701545,0.08577567115321771,4.479206046811355e-05,0.005972463709134683,-0.026825581768723007,0.021821076567415068,0.04567882067306397,0.0009480205745175038,0.002192448148845593,-0.010919759872709186,0.026991605335059336,-0.013553424777100889,0.00014146410605845287,0.014378128827353712,-0.007667815800939818,0.004748041958335622,-0.001467366784127527,0.0007893715715588262,0.003459693724612731,0.003654595045085181,0.040098710517389315,-0.016082370035913524,2.7160117444069854e-05,0.004417992813457395,-0.028413528284908382,0.08421975902068507,0.0024990324410265477,0.00010022180255629617,0.015032800121267384,0.0003718771148142064,0.0021530245757764,0.00025838276013827864,4.861970104008202e-05,0.0026881158099771032,-0.011169122102714838,0.007894849880460653,-0.028651657678779415,0.002759295006151279,0.005301770215860112,0.003812064002245198,0.026621131328477526,-0.011057382338917504,0.00011783811411542318,0.027149243817742176,0.03467005696203524,0.20201189278437,0.019913104227610622,0.00026575769555520017,0.015168136650825923,-0.016988362481795114,0.0981766209795312,-0.017512220133440427,4.8742117738696216e-05,0.000461915199803354,-0.030269354686373918,0.1588812345903967,-0.029506047701828287,0.0003139911185269602,0.007624622367804872,-0.05894351543377867,0.716762013221057,-0.005942261257937471,3.412646346554498e-05,0.029498752885949258,-0.011188566727891685,0.11051927256396622,0.03959375198475293,3.382346900281038e-05,0.002444840921288093,0.008857362486191147,0.03046286289239468,0.004889064265852106,9.366049710517291e-05,0.011393956540134401,-0.06216167943903635,0.3688524669936053,0.05080906366226186,3.8928029706311295e-05,0.018643042022911387,-0.005914845947834602,0.016822911250076053,0.000902702672673777,7.795063662238549e-05,0.012743180584055134,0.01144385531007823,0.041231459673677195,-0.031935826839435626,0.0001269089479321552,0.00246269415223464,0.019779575767263784,0.021395743648218172,0.0012829794515670891,0.0005284028461588515,0.04667046468594086,-0.00949951295840018,0.02982755230868442,-0.006163876423661193,0.0001340508995237055,0.014190441095755024,-0.005911528214572378,0.023457078727101056,-0.0011164793791920758,0.001617502706329354,0.006923013770992602,0.00861784055338909,0.07376867505031089,-0.03955608486278386,3.004060442975492e-05,0.019543480077548345,0.03655847526566158,0.09730838387854793,0.013803641493038327,0.0012283131023379805,0.023691440352507878,0.0256444813941868,0.20900232525349496,0.03703361703539101,8.170872733851802e-05,0.004560415079218464,-0.00021089309235073505,0.00036299925489214084,-0.11138929129735416,0.00013712037985244433,0.009965430159257334,0.004347726807907188,0.006108005535019392,-0.005904982950812527,0.00040857024872106477,0.01697872974090988,-0.009000072099748227,0.038474641091007906,-0.02584258131121617,0.0018130999775780527,0.013924307564237329,0.017214749555946103,0.07492147836872785,0.012642243364940874,7.371990058694127e-05,0.020022457716246108,0.06001998404557864,0.08681904849204883,0.10270296678617068,0.0017185336710561056,0.0011285445108159787,-0.03503160423389099,0.0991817655702858,0.07637018670549434,0.00013994075970457398,0.029278006211488888,0.017843729267355123,0.038938357060505906,0.013399848433583508,0.00018576691896857268,0.016465516804301215,-0.019619667118976048,0.09104677147413603,-0.0654469646044597,5.2594582174376115e-05,0.0025507769744918946,-0.02144981462034059,0.06252847801747281,-0.0209156733825023,0.0032513501536988957,0.02092089722347394,0.03492114100142421,0.17869466398808453,0.014283721855683256,9.721144791081406e-05,0.003252246410881632,0.013652917564935961,0.05692901327555679,0.007521185785504916,0.00017392122911706314,0.002489170618714266,-0.008936404375034991,0.05007858975865854,-0.06311222208838803,8.440329880352588e-05,0.008659356024302026,0.021441089947098424,0.0871790231430308,0.010295044127704368,6.181334633697678e-05,0.011162015777817775,0.06248180946191798,0.10846556563771753,-0.04147841485597696,0.0002808607859435215,0.010802669598153987,-0.016047394700817494,0.05606176096311996,0.05336683400271413,7.117904800903206e-05,0.0009126172290671404,0.0042550170255284975,0.048124559557525315,-0.10493518432652564,2.281212905288184e-05,2.5661569126585767e-05,-0.017557042498027566,0.05151919393221418,0.0494457718256605,0.00011912180500222378,0.009526395617926595,-0.012700767726554058,0.048059910561525684,0.01070118555255775,0.00041655752694590387,0.006859186806708692,0.0073343212219529495,0.04151798898599534,-0.0146649181648814,0.00010118017203908097,0.018078218365230866,-0.0036394046140472403 +2019-04-24,-0.014456639372202635,0.08976392594161786,-0.013005918551374592,0.00017031468381900112,0.021603258053228033,-0.03950714238591202,0.12539302988895115,-0.04291914825010404,7.559842502862044e-05,0.008149322549996148,-0.010814129774666479,0.034237865903769524,-0.03515220439543098,0.00014611072471279224,0.005144468384521851,-0.009353685800816726,0.01015682465283748,-0.007470794797081021,0.00031080835078655837,0.0016507936181316307,0.001651748561781387,0.003744999263354301,-0.0008319521498044072,0.0002307756447676997,0.008839145803771788,0.01593573001445465,0.03901745546587054,0.03282797647492513,8.917841716046378e-05,0.0010297849492163652,-0.0038607261188739568,0.016449242457551642,-0.0421913763020562,6.886728262876333e-05,0.024129997463501064,0.0034559019311686573,0.02839159067275813,-0.0062120863915042495,4.174171603958748e-05,0.006062586477378905,-0.005401624463243165,0.005264962690229521,-0.0015138714229194767,0.0007911774055273652,0.001793940117154736,-0.02506153615519924,0.054048494601162525,0.011726652700968699,0.00016213843318563443,0.011798981557167814,-0.007238893664150638,0.005548778346759254,-0.012991055568037823,0.0006376746884473013,0.01291463911147238,0.010206028228474608,0.12072685019644039,-0.0182634572994997,2.519275625076307e-05,0.009763160712848737,-0.039985311240024426,0.12099396110694434,0.0128903442951901,9.817204183950154e-05,0.00685626016739715,-0.008928469539483723,0.05004358523331798,-0.07481781905038927,5.0221586006855955e-05,0.0008247193784661633,-0.002957654915805806,0.0024554459021397155,-0.01822327263953387,0.0023493087900245805,0.01295774841760113,-0.05227409923116046,0.3145145919110694,-0.0017981208804621924,0.00013677221061313531,0.0029220242281720044,-0.01474637783085934,0.09758791814954829,-0.008977596403772868,0.00023399012845463978,0.007479538574706827,0.033734941319176405,0.2301183445644415,-0.01821414892421635,4.1294258672268746e-05,0.007579085153514025,0.04855523068595917,0.27612026671016704,0.059006271977355376,0.00028981745941380604,0.007953530581988787,0.001894114959394587,0.02705232306513955,0.0018764806322098954,2.9055743977837773e-05,0.021804832442258133,-0.013877526681047154,0.15357428128112724,0.04429384807829333,3.0190846393040277e-05,0.00589198380447532,0.020906548987172976,0.059441877870681566,0.010051078864918066,0.00011329548036295664,0.005029520892563579,0.011052888828248116,0.08260844269183823,-0.03381543853614039,3.0906067079552394e-05,0.05124898281307035,-6.956443065034721e-05,0.00020140918570073275,0.0005754639636452515,7.657470699439258e-05,0.00910777477876542,0.0023589476383922615,0.008542784631663703,-0.15476942425893836,0.00012626048082063778,0.005076580598316226,-0.015621896228974244,0.01563113870888322,0.004752419864805654,0.0005712401085520375,0.020514990231814325,0.01376969855586254,0.04758438457862561,0.011942493482127952,0.00012179963450907842,0.010881125735803618,-0.004241584348419257,0.01780649879873367,-0.00538085666812846,0.0015288636243410176,0.02834093933656496,-0.0034973854349448466,0.02979538640034125,-0.07774372104388184,3.0183991536731216e-05,0.023987644852557305,-0.047390008147211546,0.15797110621391794,0.013774424052284386,0.0009807998568155888,0.012183107613671433,-0.01499613983395803,0.12470951115748206,0.011935533753024013,8.007658576475949e-05,0.0032919316856229288,0.01325306093290278,0.02090504048276113,-0.020695961490961777,0.00014962720658079603,0.003301329294478056,0.0012042489988152714,0.0018836650618061443,-0.01631921580177274,0.00036695813944805756,0.00687031450048156,-0.006150712116448662,0.02308520519210753,-0.02901142299957218,0.0020651043543894296,0.021024811217914142,-0.004128451676928687,0.01397974419571771,0.0014323879995498886,9.474981077946093e-05,0.01379136520031667,0.033114748471285864,0.043923624046141044,0.030632570904640454,0.0018741333406650477,0.0073229980967801376,0.024911091645286664,0.08369223354197944,0.006781435490690923,0.00011792982054967225,0.032875837156359854,0.023350601011892822,0.06941250445131229,-0.000178436355544729,0.00013637059172317314,0.002811826734069778,0.07440777858831035,0.31539496612813883,0.22188115858407856,5.758077509409226e-05,0.01915043442808585,0.06298399362072497,0.22691579680856336,0.12367882828918347,0.002630773884058124,0.028499598921989326,0.005455668963152,0.02783339675615006,-0.06440063866609708,9.750398614644812e-05,0.023141295985773642,-0.005731935428337595,0.03050409729615188,-0.0015641749870837316,0.00013627114223359332,0.0036426154123638823,-0.00792588196713254,0.05147808171683754,-0.07552815234754659,7.282390183079234e-05,0.001298797422747622,0.00785937356917522,0.03308374578103557,-0.03349541683385483,5.970636779356221e-05,0.008617531741717708,0.0008621155969454428,0.0017562560492124085,-0.003950314555615876,0.00023933546803743056,0.03300658333244468,0.0022223247265545465,0.009867428975712423,-6.774760283187527e-05,5.60038501944591e-05,0.004620759169659969,-0.014296070027588332,0.13664930760621502,0.0027627842310433367,2.699233882491397e-05,0.004533626050275561,-0.0069084325558506155,0.02255404741353967,0.0048729896708084065,0.00010706906190320502,0.0028387816323767806,-0.007319249033895127,0.03164521711828692,0.0008902285029584648,0.0003645746061203573,0.013670573965362611,0.048375519332513564,0.25301588653836865,0.022962437724758596,0.00010950895774440574,0.014690375999728224,0.002345498746017501 +2019-04-25,0.01282746114348387,0.09772987866644754,-0.004666306023205784,0.00013880334495855232,0.003089255697813609,0.022438716481967012,0.0775932822214375,0.013005886218085865,6.938800717493502e-05,0.008249542297903636,0.01621511592491338,0.056066614283931955,0.00048780842405095267,0.00013378669688364085,0.02199281975667455,-0.0021628178009535865,0.0026250922154651343,-0.0062025735971137416,0.0002780630150665546,0.013334682170800298,0.015654607713635974,0.0368645689308147,-0.00180005942128405,0.00022219321938459632,0.0021609869023262807,-0.002144164175455323,0.00646204394576748,-0.09553172348757821,7.244941252662951e-05,0.0032241155207411495,-0.00776759521302441,0.03248043806716845,-0.004392858997918955,7.017049863181261e-05,0.0022206836712229472,0.017369373046920857,0.14685572368080294,-0.0393799171078483,4.055943340279086e-05,0.007473821650686903,0.0270150445204433,0.02085785385887348,0.05625165705343551,0.000998805336293443,0.016791542564343773,0.014259481110881211,0.029320366116084184,0.006610061967379869,0.000170057668154049,0.003062363005959081,0.013085394802060318,0.010119284747863928,0.007666951550977032,0.0006320644607978928,0.00899825831172853,-0.002576522851969189,0.04180026769506632,0.014405853832857122,1.8368670553884406e-05,0.0021557163974365665,0.018564667793755613,0.048684659927787366,0.032872017097626556,0.00011327813214425968,0.020039190166731224,-0.017605306947894632,0.08980770803688037,-0.03713319524866265,5.518128463055414e-05,0.012652273481159266,0.053470835543480616,0.04409813938981759,0.11773069799720928,0.0023649375511459922,0.03233009307385405,-0.041114481599209794,0.27298579212869295,0.00551924606688915,0.00012393868451885867,0.03260716391861087,0.046133293781787675,0.2468896416255875,0.02170449609304971,0.0002893475608648236,0.025307916463712794,-0.05319198985969878,0.34252355507261895,0.059284573912814595,4.3743824469577914e-05,0.017073918069666603,0.02001567177184446,0.08576940965363516,-0.009120784538968805,0.00038461352941274423,0.00823130550819454,-0.014818485002848204,0.24013962785193357,0.00799662973569945,2.5607678162713124e-05,0.046822241872808555,-0.009942006962822296,0.0895477766417924,0.02178032502383808,3.709376913752794e-05,0.004284315268115241,-0.027666596572416845,0.08319670254942847,0.005803210712844894,0.00010712044780674793,0.02156055839134412,-0.040747656305166954,0.34683705716233526,0.022211202474588895,2.713748008606684e-05,0.025121271428312317,0.00197477039453806,0.005474467252301183,-0.07466938117461334,7.997460943112039e-05,0.0004553840562364442,-0.0036842646710386947,0.013016092277504162,0.00325397778722431,0.00012942518616091534,0.007712490433603705,-0.008779450424764978,0.010232845333951227,-0.1801364905687426,0.0004903955066948091,0.006311111992737083,0.015446170734266183,0.06453314832761181,-0.0024950484891636503,0.00010074511266279938,0.00048103132380473133,0.007444955229224535,0.02621415987565045,0.0005528218717541441,0.0018228264482461265,0.024538490193570545,0.021544931421988066,0.20546282932044765,0.007825112195562787,2.6964604026504732e-05,0.005655672759515524,0.058476501071762645,0.15481482115002404,0.060868045968960865,0.0012349236651521863,0.016717651520226393,-0.018853832453501588,0.14444815447847603,0.008371385264336765,8.691871339291433e-05,0.0036675096225439593,0.0325310131558596,0.04473416544981816,-0.015261034895118212,0.00017163412326460687,0.0009919960258014103,0.07120462492908781,0.1005807995569263,0.2475008169734427,0.0004063469770693054,0.021929451046005275,-0.00949805881782331,0.04598189103082119,0.00048797768639000696,0.0016010259380408638,0.009597764683175422,0.027825010927537055,0.10534397847765144,0.04564054962849842,8.47453734488076e-05,0.0007959460061448152,-0.0654885751562598,0.09420686090553028,0.022981990811703865,0.0017280655029756804,0.008189148118554054,-0.022684375389191967,0.06755705022234473,-0.05056390134559534,0.00013303692054347964,0.004137257536307833,-0.02145431987273082,0.05880062585002385,0.004913823302488024,0.00014790851575018855,0.015621728898528009,-0.05885784006542156,0.26254859016489157,0.05343987447432171,5.4715271054759455e-05,0.010897511654478682,-0.09348502059037483,0.32809144908482857,0.05926057162064482,0.0027006305383261366,0.019376922608385295,-0.03491681187594445,0.1770905395873626,0.028494078938298865,9.807984989585146e-05,0.004388228319628406,0.00938821097499619,0.057551438649089195,0.003420163014867337,0.00011830073437737913,0.00013019496120164078,-0.024956460274144734,0.1294109520027602,0.012013445376488014,9.121382193740347e-05,0.007798194212219972,-0.021710790898671447,0.10462199324232038,0.03253806462548233,5.21554923595487e-05,0.004504009882051691,-0.038766475132681485,0.07317404470263315,0.02168502176275492,0.0002583025222751642,0.01747453649992223,0.003888569491532298,0.01527844320534252,-0.012160517967430468,6.328854862717351e-05,0.01260565965819561,-0.002513657326689265,0.024939559182700372,-0.01574630430937249,2.60045046191262e-05,0.0042455120639651334,-0.002147364251179589,0.006703013230530444,-0.006337015644711707,0.00011198106839825452,0.004223104260204155,-0.009739353637916255,0.04391156004713243,-0.00866728834661468,0.00034960629166850686,0.003970544353013442,-0.01535939061960327,0.07146570131014691,-0.01635302462697753,0.00012309718501024152,0.001876523677865912,-0.0029988717477800217 +2019-04-26,0.01796563947370239,0.12236413148089106,-0.07426688595656408,0.00015526555931987394,0.005277239253200344,0.02054013590541756,0.07032350648120093,0.0022400690207682646,7.00831029230755e-05,0.018530704684192427,0.004970635122071832,0.017135594894514918,-0.0018157378372544342,0.00013418683277052277,0.017958773427571365,0.03478536252769103,0.02949596940099688,-0.019345289056290703,0.0003980170863011209,0.00149434240708013,0.021235829216454664,0.042906418300004356,0.012543745698245935,0.00025896718372628476,0.007734410018885795,0.021697118392622842,0.04866755414889033,0.007628362861431029,9.734402012588637e-05,0.005456134814818433,-0.02297926589985346,0.08320147304742359,0.003659545580154015,8.103917112138675e-05,0.0003683478694541749,-0.0011078853107019228,0.008517349844340688,-0.01882404292963329,4.4605553488442115e-05,0.006655410614991734,0.015443012015607306,0.012140097841763509,0.0035696282062729306,0.0009809674771443634,0.014111438265274931,0.0583886843304052,0.14071940566492838,0.0984664987607641,0.0001450897003019336,0.008640880179665225,-0.008337162030832315,0.007692475890005241,-0.01488582359105398,0.0005297566980776772,0.0054996770909886885,5.148115280873091e-05,0.0005845202260022325,-0.05440604772782104,2.62465067300213e-05,0.0031487270729365566,0.00709482005654113,0.018970127900991392,-0.02999639336085445,0.00011110207341313272,0.0010744898117073158,-0.0008609046190473246,0.004656440029374505,-0.04757808406669685,5.204306218353293e-05,0.0015221400496559713,-0.01568231847122026,0.015245212417569034,0.002373246216440379,0.0020063179641294,0.0015747491483610084,-0.04729464728396561,0.3112644917816189,0.02121277794470063,0.0001250358406489746,0.018248325201924407,-0.012318820309237243,0.07355228654987797,-0.03407016683380382,0.0002593469673104793,0.016358556931164978,0.025585620533584378,0.1796323100089847,-0.046699514179144676,4.012106527337093e-05,0.026812029737624605,-0.02177409285926514,0.1280476305773851,-0.03215575720623021,0.000280256266120541,0.01586373844972154,-0.006874334122743386,0.09488213033382308,-0.0649618759631055,3.0066054551154002e-05,0.004669700636391199,0.005578723034037146,0.06473531752802554,-0.11304805389002132,2.8792224973852696e-05,0.018828190844274822,-0.0380634462598593,0.10946329175492857,0.0032102181579736345,0.00011201143433143853,0.02384602305567102,-0.0017507358845833933,0.011439824499272517,-0.05902096936884677,3.535034427248007e-05,0.027397061580621107,-0.009432666557810708,0.02504456986202121,-0.01057452772622445,8.350227111610495e-05,0.0007225194376211472,-0.015121243564965081,0.05222865135021913,0.02585002447692333,0.00013238149850752513,0.005399629426661246,0.02862031079686941,0.026594804864815205,0.014507175104372699,0.000615110440985964,0.0027002759192900692,-0.024193990768290714,0.0865826292469957,0.048747063317087426,0.00011761500999339502,0.01725499817251986,0.0429074501817014,0.15633962470749221,0.03095072640317386,0.0017615006854196256,0.004411501172450948,-0.007358569678273586,0.05712935123673517,-0.005570171721134519,3.312198145181662e-05,0.0017035832078383542,0.007765857786804914,0.02749298774338308,-0.0016062674145589362,0.0009235039652852656,0.04673899541080588,0.009262702491977554,0.07063350192601729,-0.0012934828459064123,8.732782020647624e-05,0.010487387582191697,-0.03726235806904736,0.05179524944502078,0.11678926713272049,0.00016979534985366482,0.0143316391206488,0.036910954548226974,0.05518579792734461,0.041171823449942566,0.00038391215634470886,0.008661352436099723,0.02954629820592329,0.1116906998221815,0.014338109528666824,0.002050389673059531,0.0029849422943913385,-0.008809836697975125,0.034060242671696835,0.0019848962576416622,8.298708135628543e-05,0.019253218631003925,-0.020691409374615104,0.025010170489641388,-0.03277476075789431,0.0020566036998373232,0.003021694659287348,-0.018245258465495386,0.066185621154822,0.026059326386174014,0.00010922005916399762,0.023693410309964316,0.009910006237652367,0.026685745537787953,-0.005797710909757588,0.00015054105783574725,0.022849344564441085,-0.012682211815468443,0.05597071025391456,-0.014118667157820099,5.5302925946876845e-05,0.004563120071702209,-0.008729527615036713,0.02742668436184014,-0.05907617228512939,0.003016723404094681,0.00992215992293527,-0.019321973783863758,0.10325946350816483,-0.037588786551119115,9.30812474426686e-05,0.007214619166078944,-0.01432964215001601,0.0743439166944772,0.005370958417380308,0.00013978182035686838,0.020608440819457417,0.02540053445633659,0.15654154177372137,0.06337004960005811,7.674709516255205e-05,0.01231918843046204,-0.05383486068255225,0.2674495137011196,0.11154593323846831,5.059052378077895e-05,0.003212404446936646,0.1033902531603152,0.23037305999957342,0.11237855644360749,0.00021881510670763933,0.013118063113829093,-0.032156879751837335,0.1017530493468542,0.12862460683663066,7.858521477460592e-05,0.005513546043191276,0.014892510289697665,0.16781684557136198,0.04324581266598536,2.2896212168727058e-05,0.00022519515962487232,0.008370913547694906,0.024751184211358742,-0.02754481384302084,0.00011821860731689019,0.0012154758539067955,-0.01997962533901769,0.0795465115703652,-0.0353624646236364,0.0003959079038735526,0.01442542719660857,-0.041972976139738015,0.21796224305910725,0.025952790326136836,0.00011029613440855714,0.022348198803895367,0.00021233480826108973 +2019-04-29,0.010672243254234607,0.07524095463854953,-0.020731916213071532,0.00014999887520029487,0.015014107778118286,0.052251723846119404,0.2084559078872888,0.05366622173259753,6.014464162104791e-05,0.03579186932163235,0.0026264153455763,0.008724347991304096,-0.008335475252094592,0.00013926039786033842,0.005357314272121572,0.0032894410808041504,0.003371062013446559,-0.010487244486007137,0.00032932388219494076,0.00289964940897945,0.01313042170679004,0.032082513728745064,-0.013446143526064974,0.0002141450588343126,0.013740493615552971,0.0036031199775679967,0.010471629107798523,-0.001849273453577549,7.512962338562974e-05,0.0014059889843730143,-0.04217394176147464,0.15461602617533296,-0.06328219608834826,8.003492494630763e-05,0.01993593390487137,0.026661578466101697,0.2095033955227072,0.006164908697846995,4.3640870619698874e-05,0.004052483330073777,-0.003730638594757086,0.0030390729668164215,-0.0006873053388945101,0.0009466443301070834,0.01288718117450795,0.004221653720168544,0.009153430162982897,-0.022942572774746414,0.00016127261261008902,0.01940532614853799,-0.021486399431492924,0.014156287117621095,-0.016696022652344447,0.000741888502887271,0.0034077077864610224,0.003133903913933115,0.04066324483468291,-0.004585406051178789,2.2967114461953965e-05,0.004081800903338006,0.053038302594409746,0.13572946545198264,0.12787688852913828,0.0001160824367089948,0.004609814314032211,-0.005706745146307714,0.030271867269506418,-0.038666017577920264,5.306535646502558e-05,0.009455531954759115,-0.005050697333516107,0.003976555780018667,-0.003756983568149725,0.0024772351729338334,0.0036840319242214224,0.004014238125452508,0.02658735494572511,-0.008705423533643345,0.00012424533906863882,0.02774887989471423,0.03377077993405191,0.1734875287582202,0.010689231272625872,0.000301426243981583,0.003672853480807668,-0.022335961457233565,0.1374226408980132,0.0179246681443119,4.57833236571365e-05,0.008143544088962505,0.053109617657165986,0.25032257561052673,0.07306376840486148,0.0003496712802760058,0.024650009659397423,-0.032237393482583025,0.4576908417918951,0.01911812846477483,2.922926730628595e-05,0.0035685802403100475,0.0029899509388740093,0.03044937452452612,-0.00045848814034224857,3.280706622184886e-05,0.003610218152284134,0.04458176736342346,0.11132646471393212,0.053535758054810346,0.00012899759672289803,0.03243308898397373,-0.0025868835978456435,0.016849926371713654,-0.11011559148071079,3.5462655714897385e-05,0.013566693375741769,0.045719050376291384,0.11978184580949996,0.2585305159565086,8.462205783581608e-05,0.0083661520640544,-0.013263184322958659,0.06554451707433417,0.043272289145754914,9.252520006638146e-05,0.003898682785431447,0.04853993232673644,0.04443720077531816,0.026096101220500597,0.0006243498823295064,0.033382411284720595,0.010127432038073928,0.03655077384311324,-0.018495819942761022,0.0001166242248964163,0.005491132756802871,0.09536368079821016,0.3074272147651771,0.12277120029101864,0.0019909477819942804,0.00014614164952513877,0.023811212858753036,0.21522592590179318,0.021804166469368107,2.8449139041843355e-05,0.005545273523810753,-0.026583089102613353,0.07266433559028547,0.007819258301483048,0.0011960667291468336,0.01396616127481361,0.004744029376723499,0.03280444206295431,-0.05429727879607426,9.630311993955994e-05,0.014797321280856651,-0.029535389709164837,0.04518917844563006,0.04415883616619934,0.00015426011333099487,0.009762452440438017,0.0011744057896199618,0.001915558582450701,-0.0006025490999494355,0.00035190598983511883,0.00878641841318395,0.0047029079631845695,0.01511048810146632,-0.018887775540470796,0.0024123389414927436,0.005350082213154444,-0.009059053792588801,0.03199352513111108,-0.009305234364103711,9.084710963513657e-05,0.0015682073189124172,0.04637491315740812,0.06753253382463889,0.04652762647318271,0.0017070539874866327,0.008906289038253629,-0.02213363257497819,0.06466973701157488,0.0218604120365449,0.00013560248175368007,0.008718843071295505,0.045804152131203486,0.10061976278660717,0.04371016992138747,0.0001845363538596805,0.010045944475919994,-0.01889369779518093,0.06751614277788755,0.008190822672727804,6.830040306909398e-05,0.009081520132820535,0.034904513294091416,0.10948732769674704,0.04519358099763671,0.003021591768310277,0.005177301047569955,0.011779373515113168,0.0630671102987255,-0.040155697802494165,9.290943767300174e-05,0.0054451677082826755,0.05053511459854841,0.24049579793570086,0.09236264943076046,0.0001523865183831069,0.0013893630052884266,0.0023934118884281846,0.013025566906607632,-0.007254625758407709,8.690995171196815e-05,0.01185752676414394,-0.006457280410827732,0.027013764762237172,0.0026946338318860146,6.007751042906579e-05,0.015837674742577027,0.003970388725584862,0.006719641631156742,-0.019567698327937005,0.0002880821243789091,0.0054834147394912935,0.026991563324503247,0.1237317669016601,0.03681827303625172,5.424518570717127e-05,0.008766776838293484,0.028730636488607852,0.277294445747308,0.07864715065881203,2.6732240650444394e-05,0.00023230208385129016,-0.011488641267240888,0.034715480322056826,0.01518828523371353,0.00011567898113521878,0.00023262793256430405,0.008710096937820069,0.03546104849980241,-0.0034629854015043177,0.0003871679392026989,0.0060787526049199845,-0.054643856048286726,0.2493667739036934,0.07591260392020593,0.000125508907075196,0.00398504442316247,0.009422480780616858 +2019-04-30,-0.038757727671044434,0.2935120881672831,0.04711174823871752,0.00013964291261866547,0.004052587369008338,-0.019717619918191376,0.07413095096787338,-0.007749335481879484,6.382127057036124e-05,0.022351723697297224,0.005650374390297384,0.020956984387560357,-0.017729814679736316,0.00012472273894254272,0.0015308760382380976,0.009652833282850683,0.009677998539971646,-0.027152061768325065,0.00033661782494282655,0.009881700622598254,-0.006518505042893406,0.011695330925467089,-0.13206181015663604,0.000291630715413459,0.022294013686507096,0.0011361147747334442,0.003265380788854463,-0.0636866108901781,7.596877338029142e-05,0.007708689838019586,0.06868951549965961,0.24856674590846517,0.09894484227674614,8.10843951586247e-05,0.005321080992331799,0.02745429803183511,0.23579414203522958,-0.005395668457850378,3.9927851984348894e-05,0.004045721978101988,-0.000261206558823038,0.00018390746913823515,-0.0056995103443270734,0.001095290943124378,0.012732775187694478,-0.0074716265872276175,0.015337250336244073,-0.019609644912155184,0.00017034505820793361,0.0020392182993957115,0.029914521811287197,0.024508210278355657,-0.0043028929788874746,0.0005966159028351365,0.00066996001467764,0.006485678362069171,0.08041001982555805,-0.014785430401967697,2.403632278580869e-05,0.0006027441812971408,0.013612577957721602,0.03652960437694382,0.0035880712525458115,0.00011069970130566402,0.0008628135288671894,0.004028787165082551,0.02031318474697374,0.0040704504857085825,5.5828778361075214e-05,0.00268365799372136,-0.02378977672564241,0.0213653091765389,-0.027459396153755946,0.0021717216295569775,0.003256260791642631,0.005784190473534822,0.03948384345143454,-0.0008426298374933354,0.00012055223661998971,0.0007814564740625406,0.003434822064198557,0.019646210808618458,-0.0014018666048590698,0.0002707283124196244,0.0042184511831085654,0.030667864338565297,0.15478108847577887,-0.05768069815703923,5.581187244463325e-05,0.006507048828011736,-0.014493393694222631,0.07341063721448095,0.007372078181188186,0.00032538528067549937,0.0034283859229914636,0.014193600737493033,0.17194944014141472,-0.01904615484883226,3.42548483834449e-05,0.03336867581568905,-0.021803610759703006,0.2657680763892497,0.07245653405705038,2.7409891499107844e-05,0.005236162375117209,-0.021031086063388705,0.07075106301018391,-0.004608270877601926,9.575280101366913e-05,0.009338457387616041,0.05209155205619912,0.36179724699130766,0.0237193525166185,3.325786878681146e-05,0.01483856721705872,-0.005281376267220448,0.015216573465012163,-0.00040796676212705933,7.694982291752125e-05,0.011011019772441427,0.008980952647167691,0.0353987892003841,-0.005223030096574541,0.00011600657230860648,0.002767185401680557,0.01166260378840665,0.012133583618095276,-0.022582341984955828,0.0005493915756071268,0.025214225724305633,0.025051460447542365,0.08975793816186892,0.0009253982592134411,0.00011747519934760995,0.002755027965934271,0.004659165442709939,0.01891140740029319,-0.0017010211291814488,0.0015812606234383204,0.005521218411369027,-0.02334879839666704,0.26293545061780527,-0.10169851625494937,2.2834819667062944e-05,0.0020871335381084048,-0.03211806369145287,0.10057285598568974,0.005065560795374366,0.0010440945810117443,0.005305027627012555,-0.0001777829363221837,0.0012836345040395966,-0.022480644079251832,9.22304517238068e-05,0.0011021324824121936,-0.0036432426121915697,0.005166723967138011,-0.061820916861484526,0.00016642486727008992,0.004145927533259833,-0.031181818326570698,0.039149377006819926,0.02583897833850201,0.0004571729175080881,0.0014786432058403504,0.0013297582780246967,0.0056903320161719425,-0.0008567288860044257,0.001811279353298026,0.02209492276528771,-0.004512028515605663,0.019278679487994443,-0.04348439526036867,7.509048734181451e-05,0.0016685407015656268,-0.09649785429557468,0.13666251551693073,0.10630976554182735,0.0017552760938615531,0.023507255287717806,0.010108818974338034,0.031415326615896425,-0.0013491911350630218,0.00012748963466266774,0.006822242632966752,-0.006363827782647453,0.017266071952670325,0.0010925380294909979,0.00014941192046326578,0.013295902264588287,-0.004475205786090364,0.017110126646640935,-0.008295605904689857,6.383718258304455e-05,0.004758461317091404,0.016822934710419388,0.05277605419575113,0.0019236216752153605,0.0030212238215852655,0.03762247057155712,0.003317799723140238,0.017357204121926182,-0.000664066746274665,9.50847713425193e-05,0.004232304103568856,0.006324022796680484,0.030581538323370724,-0.0036285934904488923,0.00014996671676721922,0.004836473160756877,-0.00521154116523518,0.03282810782771114,-0.08041630935937319,7.5087737745356e-05,0.003013230516834672,0.02738359131731558,0.14134551371964688,0.016994996453564323,4.869179342880627e-05,0.0028756785019161298,0.019840977514390727,0.039783509506777594,-0.025003393717405707,0.00024315845047706634,0.013364679365148768,-0.029426042989915628,0.12391878684136534,0.08534937638293824,5.904852966410259e-05,0.006921712348605933,0.003278355200711084,0.0320182369838019,0.0007909894983437003,2.6417388137828143e-05,0.00373043852099271,-0.010398057147094089,0.03219741786626195,-0.010242162623394821,0.00011288600934724818,0.01075151807646747,-0.00996010081264272,0.0399601955022507,-0.003391776611728134,0.00039288378114240403,0.012434950719562972,-0.05921090475780619,0.2885866535466875,0.0566090790485737,0.00011751606780347408,0.013016191046257569,-0.0003629147219225896 +2019-05-01,0.012755710989066244,0.09684161314014382,0.006161786984382389,0.0001392929831609814,0.01258515476877443,0.00634519235310472,0.022421124247458287,-0.0028415125395264036,6.790440269687337e-05,0.02214715447845138,0.021775021753590564,0.09075924715140175,-0.009363110829153793,0.00011098516123259788,0.01485612299101985,-0.007942372314662688,0.008694718655659675,-0.044882291047441035,0.00030829221943753904,0.0015389280649001152,0.012862929818089482,0.029521710606007216,-0.1171355877023979,0.00022797968735180883,0.005826844088015037,-0.006898188716503275,0.019657161360900892,-0.11014406970250394,7.662332757789713e-05,0.00927685646217601,0.010047261602228836,0.0337074326590931,-0.001821678414613319,8.746048671468039e-05,0.000581021262477017,-0.011990947963038082,0.10857992325508911,0.011859659943289337,3.7870636321203406e-05,0.012973007852181084,0.004754401571225183,0.00393680836093922,-0.11008261986314719,0.0009313145178418753,0.01195096431863856,0.011306597738812495,0.029363125041262875,-0.018489344688768658,0.0001346454100172128,0.010134635785310294,0.008839499515339345,0.007028836074339502,0.001200157524543574,0.000614707652540046,0.0006013940474714477,0.0021869571879686456,0.027386590960548244,0.0038654678939526003,2.3797158073749348e-05,0.006599298196761687,0.017988393349804514,0.05269408404311445,-0.0104768484244135,0.00010141018004015328,0.006636694927980766,-0.006015084509724067,0.03150039065623194,-0.002168766613388407,5.375113162985155e-05,0.0003845477047588654,-0.03388911826870178,0.025806247539351627,0.03189842607924241,0.002561287813908803,0.01120043843787288,0.003956736082776615,0.02811685122066619,-0.00935879137142318,0.00011580371941258715,0.03434846152344273,-0.0292051464149271,0.16823352580255277,0.026922170658198404,0.0002688159742603236,0.022995232946443206,-0.03860429687765509,0.2512118419631493,0.02594028847333706,4.328690100175823e-05,0.0011504693390126173,0.0009374672348036809,0.0048954946294589045,1.3265922457877037e-05,0.0003156067817347791,0.019803302449939095,-0.04927962089557689,0.6978969365144235,0.008987566502306204,2.930260949776978e-05,0.004453590955605713,-0.0036839776893334056,0.03816011274084552,-0.09077245771624191,3.2254406225947574e-05,0.0018285481224562753,-0.016858125071827955,0.04675680511274129,-0.008771324212387402,0.00011614143806733288,0.027192573721710106,-0.09105203788914658,0.6368524339924624,0.11712315255986852,3.302503096920062e-05,0.011800329082025534,0.00609753297139475,0.01863488281546138,0.008545011629023158,7.254456378547729e-05,0.005547865943268625,-0.005800319476649909,0.02277497603077446,-0.015203988113558366,0.00011645082826151846,0.012793381218900078,-0.007628505700827942,0.009028113190850015,0.001549630112485812,0.0004829676490173839,0.03432055808365886,0.009161653737463197,0.03337731158793683,0.0004051642914702613,0.0001155336595022516,0.0021227390279804385,-0.03620172618958763,0.12194372193838912,0.007297191081283332,0.0019054124898005328,0.030373914739095446,-0.00596956896185967,0.059545996854501786,-0.004164227479771985,2.577938774734972e-05,0.015025792808467284,0.04362873699884595,0.14533180147785238,0.01999151668813532,0.0009814840666579074,0.017842220476574626,-0.023521297832304194,0.19833151169373428,-0.07205962042651459,7.897601246361819e-05,0.013542041147008936,-0.02685377932201387,0.05277768501875718,-8.341835448335277e-05,0.00012008823589433474,0.013365500019144716,0.04211619778524801,0.05806936931264645,0.051353411726837536,0.00041629956888466054,0.0006098742659977393,-0.00730984810333674,0.02626188856785906,-0.005076199083235141,0.002157410258383775,0.006951246767063492,-0.025238770673190525,0.08637929140508743,0.03939971579647121,9.374517645095602e-05,0.008582457991129848,0.02281308471554433,0.03433124291618496,-0.019626432754811553,0.0016518540720337495,0.041388636597622,-0.023070964047031874,0.07157105860259581,0.002367303973324127,0.0001277157146944425,0.000358565653963505,0.020361880227228193,0.06442270773614737,0.0015171371017874765,0.00012812659358400538,0.03243507261986532,-0.02118716087913909,0.09484633060261162,0.008528927970365552,5.452129411622716e-05,0.006956403887568333,0.011309051218461038,0.037014403701708644,0.013797768509688547,0.0028958327247115973,0.04577180778415259,-0.009665477994843776,0.050946368639240854,-0.02967713558696241,9.437363287636302e-05,0.0065872298075179804,-0.0114869798287077,0.07038940676265053,-0.06037853079553706,0.00011834756801758097,0.006951535147117093,0.033531081664640826,0.1635123756002083,0.08330008840734025,9.699417062647263e-05,0.007000375921765863,-0.02265051001470752,0.11422687749134519,0.006674042527214469,4.983759484409519e-05,0.0010716638164333253,0.005184020316884198,0.010410830604785351,-0.0007829551852289143,0.00024277877116802188,0.048441194763489556,-0.008136788921071217,0.03897810129393614,-0.00522677857069462,5.190948807822027e-05,0.0019698361683420274,-0.005952806727962719,0.06592070000004983,-0.0010277970118727489,2.3298676830154527e-05,0.00022216390545516066,0.023647012297602868,0.08253148130179937,0.07820960154099842,0.00010015337796631566,0.011440658194232874,0.0017054318069095484,0.007501636517969491,-0.0004486803814287298,0.0003583490951857448,0.005672698182693693,0.025688820762435536,0.13685715374637444,0.009365547399574793,0.00010750990075148642,0.016557775208803034,-0.003642500487534247 +2019-05-02,-0.023669730511073017,0.15843479278913378,-0.049777370344282035,0.00015798990468214737,0.006224094861953871,-0.03711044047117852,0.1337057056114365,0.005381028431280996,6.659731121612156e-05,0.004890932075202304,-0.0018227596620245712,0.005933465677506056,-0.016330207138281146,0.00014210788602629347,0.007891610883897957,-0.013587384148321667,0.016669916344660602,-0.011791545313668253,0.00027508714122771017,0.0029755095984038376,0.05467668903678898,0.12145763727147513,0.10807811335013368,0.00023554568442308912,0.011647100058694897,0.008964615534452757,0.025732664103730797,0.0289893126491888,7.606653917524777e-05,0.007386864295555543,-0.006213269141855252,0.02269059338927617,-0.004625356226282672,8.034598294925838e-05,0.003057310832718165,0.010470056543649185,0.08978259697369692,-0.05933003016453382,3.9990375153739435e-05,0.004901074385095816,-0.00670654287576517,0.005331817168466038,-0.029183906136268548,0.0009699922029500393,0.0076643673268355535,-0.05713585487326844,0.13088276751344133,0.09910090199446539,0.00015264695539691408,0.0031369644604274196,0.015764010134073154,0.010350758322938237,-0.04190660212047355,0.0007444214784809776,0.010705058282227013,0.003098990719028184,0.04137522015597311,0.0007569107038361154,2.232043978556619e-05,0.0014866297252951971,-0.02797348382841157,0.06866179346631243,0.005496572546308774,0.00012102705112948234,0.06675295032809055,0.017980657492783138,0.10517172234869097,0.07684519588490386,4.812474047789025e-05,0.013554675412859048,0.0105952875437225,0.007499503402050303,-0.017251270116671758,0.0027555177539319935,0.01612455710381125,-0.028150295180444897,0.21822350835903245,0.0044487775869104336,0.00010615330676030996,0.05377321997596758,-0.002346793435372937,0.016213594841483214,-0.002156854442051124,0.00022413195552528484,0.004525840993476632,0.03531566481342186,0.22455669272308598,-0.009342256056094265,4.4299858479714654e-05,0.016483141349942134,0.010750980535242807,0.046146646496010246,-0.03849776539676616,0.00038396773944181,0.0022839957709208806,0.01993277368219948,0.2673418459695901,-0.05706113352284307,3.09407633814119e-05,0.003087216019104885,0.0019541100151668775,0.018408838580229372,-0.0086051708869838,3.546535652493295e-05,0.0023304537250710767,-0.024304721505286245,0.08085137339826573,-0.1741848630111436,9.683358335996418e-05,0.015230371766297934,-0.08067151335712369,0.5796288753939434,0.0609335308736759,3.2148637200451154e-05,0.006006048233531094,-0.02919589445278055,0.09220325134988215,0.04291467325705753,7.02025571068337e-05,0.0023535386553935507,-0.009603204972228465,0.038766655964588705,0.009735775119096653,0.0001132677970805746,0.0021749479900314657,-0.02327411203393621,0.023205965711874364,0.010292792761812785,0.0005732565632712122,0.026614148476609707,0.013877649934425302,0.04602596311765686,0.006018723547917324,0.00012691093745064127,0.005138421438709356,0.012650934466975048,0.04625232375314001,-0.048411269623585995,0.0017555298721294436,0.003573695237700197,-0.006872738324972522,0.07276629781110067,-0.0034737035080370546,2.4287439092460105e-05,0.00806404634933292,-0.06943945679934427,0.19671155197301832,-0.01979616758974283,0.0011541113705717174,0.0044359904560656,-0.009677117503241515,0.07573965861631793,0.010501347494476544,8.508408140001225e-05,0.0062769772937008314,-0.002831117705355562,0.00419137697384736,-0.0008953156544942476,0.00015942138906241903,0.004774988388500489,0.0194355054774702,0.028275943983110896,0.007232242613881841,0.0003945323700550564,0.009679515535634186,-0.007803146828768461,0.030082552869397716,-0.004170516142370903,0.002010506268277622,0.0117338481823667,-0.015457991283532065,0.059217763393637095,0.005305108872501814,8.375127514631328e-05,0.010569353860009015,0.005450645059229339,0.00774913365466885,0.00099002018913678,0.0017485253875078252,0.010959242350023596,0.02232855597681913,0.0776910848751506,-0.08878376506488758,0.00011386899510419589,0.01250585061256409,0.018784321304372055,0.051011617976869816,-0.010083217772193818,0.00014927489888699722,0.0037988133777975422,0.029627474262506177,0.0966301617692939,0.007984857996118545,7.483346383048783e-05,0.0017741289949007926,-0.03445324689283291,0.10070136104100212,-0.011823516401993207,0.003242745564163711,0.019362001911866843,-0.02218184149305502,0.11046125427098602,-0.004310347054622961,9.989142256951703e-05,0.0014600575994208453,0.008036451998968241,0.04250222077867942,-0.05000986572621106,0.00013712401360900514,0.0023576275441338653,0.03567024141204092,0.2200089925525436,0.08770699017498855,7.668568741768061e-05,0.00545184629552807,-0.10267578421936296,0.4766834843267809,0.2985415811145809,5.413589465052092e-05,0.0033398744171840005,0.05263265521742357,0.10930414526209353,0.0263838349920198,0.00023477294158754137,0.04671554364644475,-0.004192217832917977,0.019756415593896473,0.0003054318830889253,5.276550069895087e-05,0.01653484659879882,-0.007168841378492397,0.07947797035766718,-0.013841081477322065,2.3271988230774303e-05,0.01084507950110654,-0.004740589509304779,0.011148093554292342,-0.0036262614719677452,0.00014864171620834347,0.003931149346059818,-0.021301662287245796,0.0913071795616448,-0.019453255666443982,0.0003677363306433837,0.006290040387673674,-0.01611029063737111,0.08206597600705773,0.005984622182713487,0.00011243772051883925,0.02480936523660928,-0.006206614339981945 +2019-05-03,0.005741904622752569,0.03576695931939915,-0.02293485964517599,0.00016976983925117743,0.0037963378962958027,-0.00961356114627897,0.03200529529535114,-0.016660433413707577,7.207306327297562e-05,0.034724661377792954,0.012674242256939318,0.05155411689548094,-0.08331222548806437,0.00011372497671582336,0.0044150070940308745,-0.00015318309779061668,0.0001621021703167338,0.001057930880799206,0.00031892596241570145,0.001834096185926047,-0.03612034752056647,0.06980307740935639,-0.15835559524209356,0.00027075415035974793,0.005024782822922607,0.0006263371287432993,0.0017178391044615055,-0.01794274492557,7.961087774074897e-05,0.007006247717720535,0.06767461099502534,0.2582942399408833,0.054178329614837865,7.687779207022504e-05,0.0002798979996003366,0.0009926371774742716,0.008706459590609332,-0.05233781039849205,3.9097371660567335e-05,0.004812685540202167,0.009033121793629487,0.007153768173847985,-0.05839907048264236,0.0009737507165675209,0.00019672609078833512,-0.01661561804049221,0.03854880724379873,-0.0024894012325350832,0.0001507188048279232,0.004384751983223098,0.01079511113554654,0.009862429055119441,-0.0937131001470748,0.0005350170025052555,0.006425038303151439,0.008191061439204861,0.11275571343984037,-0.10332228832045796,2.1648330804447146e-05,0.006510364639106346,-0.06880815832132521,0.17739153357941095,0.0680754063621477,0.00011522801580329571,0.0017861406051635782,0.00023442008268173773,0.0010879957128520927,-0.04914337166829426,6.064981061127041e-05,0.00424013864683327,-0.03915853790892082,0.03551335231760043,0.033548149479620364,0.0021505907353268432,0.011436108725836867,-0.04741742272495243,0.29945780157360624,0.020418081849843887,0.00013030300186932898,0.005707926563348223,0.004211619084728006,0.02288316610442601,-0.0021838942982612577,0.0002849976007100551,0.003390543408721243,-0.0022707904664029037,0.01292663472363082,-0.034289960358634686,4.948260346157237e-05,0.01892781246286187,0.024148973145272184,0.11645918310589552,-0.0007519201849068849,0.0003417525285868801,0.011644544378986016,0.0468990538741611,0.5887841612186445,0.012981992964545786,3.305507859751855e-05,0.004898822251865105,0.006194948934211576,0.06289649622458054,0.00021308950244372065,3.290735580642501e-05,0.008038836392252441,-0.02043706087635913,0.06311742784705758,-0.012315077309930826,0.00010430182371870429,0.018979070380869933,-0.024220888774277992,0.17481452889296345,0.0019611410778192393,3.200404904430459e-05,0.0072016847589248065,-0.00918542750727832,0.025610836387429788,0.0019921736120131657,7.951571979011781e-05,4.5897239937598474e-05,0.007711730781761027,0.029482050259640423,-0.019220467581406987,0.0001196031927873102,0.0014667956912357673,-0.049428910178030826,0.0434350292624926,-0.03254532439965612,0.0006504538342372321,0.024537495680064494,-0.014252596743134623,0.049033915958890575,-0.02681409991240862,0.0001223442120577291,0.015620335888727948,0.02379339632019191,0.07007759032772219,-0.10584642826952055,0.0021791968045687246,0.01711424307359863,0.04767191861133598,0.49652884736159675,0.09709458275460782,2.4688820435261376e-05,0.004440365669265717,0.01862562886052787,0.057757886011112224,-0.06779808050064194,0.0010543163107680589,0.017337607054090643,0.015384169588693068,0.11388664532045527,0.002318206181458802,8.995533009310166e-05,0.0020035169274264034,0.03872325199455263,0.05562792245226491,0.050453060207214795,0.00016429500809381995,0.0005529775901720266,-0.044361511363113164,0.06670109337860311,0.062485965143808116,0.0003817484607399422,0.006652703347620704,0.023256847497333234,0.09146902071587494,0.011698661477796501,0.001970730131382457,0.0027656836911430505,-0.03310287413575663,0.12978729841223458,0.059217982571079936,8.183213474141365e-05,0.0019160997204763996,0.006838302930843605,0.009661876482739187,-0.001096711851972642,0.0017593978073046305,0.014096984948124771,-0.06489279948278644,0.20254997462320076,0.17892407034484323,0.0001269346978201367,0.009863463367029321,0.037739248526106,0.08976490406294686,-0.0015688985282043789,0.000170430396025076,0.006283273348859065,0.0010477939587205107,0.004576482942139715,-0.02580960350328071,5.588020197503932e-05,0.0021353771966084426,-0.02153673022493107,0.0792325719291479,-0.015616398303229737,0.0025762859933797662,0.007228201206560334,0.006274056058978957,0.025632918905014637,-0.23519985268661336,0.00012175614859280416,0.01664195945235296,-0.009356904571843135,0.05383520155857451,-0.05962782390470014,0.00012604529565025572,0.0014815888300600385,0.010941657424406774,0.062413664232058165,0.006610598530201917,8.291863261918238e-05,0.005769728772976011,-0.015774402979691224,0.06772258013243984,0.0030135803253750846,5.854190228295495e-05,0.003759083439558826,-0.04479353016908316,0.09600036690896505,0.02712999883649815,0.00022749496630652445,0.007261365297180486,0.010480461486474442,0.044019967254512744,0.007834630958302384,5.920318440935477e-05,0.0066155754504444095,0.008782049603353019,0.09128111760632632,0.008583669542942114,2.4822540188027292e-05,0.0019721171979829623,-0.00420151035251753,0.011541802926336737,-0.007677407054649625,0.00012724500642011984,0.0029201221607936256,-0.0322433279989446,0.1284350870458309,0.05871496403552189,0.00039571648953521906,0.0035948807443057654,0.007146068999370456,0.03585691723121948,-0.016588390336454685,0.00011414740755592492,0.019829501370707873,-0.0033483043374509763 +2019-05-06,-0.03269131965894053,0.22789174511015273,0.03406938318039249,0.00015170169805892234,0.007844140703246433,-0.014909715028549831,0.0473788751173182,-0.01509325978131422,7.550837500178865e-05,0.017547393880151942,-0.029676588413958246,0.1092711759841963,0.04895102175387431,0.00012563352953821118,0.008025699903303006,0.04442679555845797,0.048155137612251535,0.19454661448668853,0.00031136530446750917,0.01803358139512028,0.012068478294904967,0.026738814478497776,0.0016323199661376,0.00023616097763913736,0.011541005426463474,0.012459402516616909,0.03430466363749619,-0.11176386673530032,7.930321439939449e-05,0.002370414119512087,-0.0277572045338785,0.10448570032901028,0.01141254889196624,7.794867240221775e-05,0.024270387073270342,-0.04820248463192926,0.4039075742715645,0.16456284932252108,4.092475064970878e-05,0.011260165398791658,0.008064219590940001,0.006131124612974657,-0.09618306515286637,0.001014301315511584,0.0037682872054249205,-0.05019741763752485,0.10659928792552985,0.05214539276093379,0.00016466032131869443,0.02234515224508723,0.01654120508348042,0.010577646359386222,0.026392980696354987,0.000764367936729179,0.01336073527892495,0.009781534802315995,0.12050202731938409,-0.11870693740802127,2.418997616128487e-05,0.001959432010719177,0.06392281462126378,0.18032350307035486,0.0978957304404371,0.00010530635765373517,0.005238788594463279,0.01166088390395075,0.07766802240972762,0.014735828206835043,4.226209701257362e-05,0.005819202393864393,-0.03148631391819606,0.028467939280720334,-0.016989729920611256,0.0021571918099700846,0.03383989822570129,0.0438029413793234,0.2789108466893667,0.027578533678304665,0.00012923792549401867,0.014588760026353526,-0.0031610646727598174,0.016797082908066738,-0.0018010021191346554,0.0002914122118933836,0.006572733032901996,0.014015387996705904,0.09791412951480949,0.00020225808001431484,4.032001767668007e-05,0.01909423110204616,0.014035270113412171,0.08122638317903,0.001725063225357089,0.0002847806435404352,0.011213678437492745,-0.019621314784741474,0.2587384644568753,0.007508279775202844,3.1470043272368614e-05,0.003093524810452278,0.0022779918408795704,0.026988792952110735,-0.08911909853644723,2.8200084633310452e-05,0.003277753437254672,-0.014534828811706329,0.03945079387025887,8.940828269251827e-05,0.00011867983393534246,0.012452059208628978,0.03469455321911138,0.2478568139763777,-0.005776779083165259,3.233350701937811e-05,0.018295141342224056,0.0005633851933856716,0.0015690212338960012,-0.008370628134152609,7.960750085156935e-05,0.006502493209744228,-0.003413253112189718,0.014613047490130576,-1.0647303600562879e-05,0.00010680123994477891,0.0053342022209615265,-0.02073959304439957,0.022810719184134094,0.005004708816898444,0.0005196809697602814,0.015661359251984728,-0.00816311478159852,0.029546517579300106,0.007976936230308184,0.00011628819001995563,0.007001454013377546,-0.020329718303004254,0.08142108469109252,0.020380218350302855,0.001602557613792441,0.008452200982520067,0.015708891651947485,0.1511676612034554,-0.0606256519396826,2.6721992984362366e-05,2.3989596170955786e-05,0.01515641083244233,0.03812991261436147,0.00024448529686432583,0.0012995764376380438,0.00962523539545743,0.004408762860847356,0.032078402096898564,-0.03534128637354143,9.152287537874522e-05,0.00044381233873321316,0.028236342369950602,0.04765508252721443,0.0005011041888017178,0.00013984424527642008,0.010340725051954078,-0.007664743548688027,0.011024377627365977,-0.05300721142749411,0.00039906851165264764,0.0012931468085225944,-0.00795769413637742,0.028177616862964338,-0.023715337628109425,0.002188937311193048,0.002084942022606864,-0.018556468428889243,0.07882334583194331,-0.004539666348825289,7.553197347687201e-05,0.022434124294838882,0.013669267603865188,0.02102223464908762,-0.026276402824548066,0.0016163803353876824,0.02151862544068129,-0.015086146232288277,0.052758798336474906,-0.04793777562893633,0.00011329205495154306,0.005951602626541422,-0.030341314976269247,0.07252996873042293,0.04727645735336471,0.0001695810362731166,0.00715365409999913,0.02761939574299384,0.09592089342892601,0.0239285327710157,7.027727002714513e-05,0.006295948446435825,-0.0005712329850951204,0.0021368918997203895,0.00646201045382414,0.002533662609710572,0.016340862977213214,-0.02859383627317042,0.14773849165262543,0.04009147622813271,9.627628770384402e-05,0.007201112805164667,0.01646424740452874,0.08495476824646464,-0.13010885455972118,0.00014054484096756716,0.013602316203199549,-0.011298616596464769,0.06055661733029751,0.009350792015506336,8.824952221276338e-05,0.008782629577376338,0.008637608910974315,0.03940828872078721,-0.002463911778722728,5.508753697011092e-05,0.041413515385585915,-0.009314188591265848,0.0185673612285843,-0.019818563440935612,0.0002445818550056855,0.014910540172263566,0.009881609685676127,0.039951492083892995,-0.021644537835699435,6.150480810419378e-05,0.0084509695208724,0.0005066301520762708,0.005467345417905423,-0.05252697945284341,2.390814086173359e-05,0.00050351971055581,0.00837858223867284,0.029612612878817758,-0.007590582690409849,9.890147579062461e-05,0.005062572304307456,0.020821159821506764,0.0788526040271007,-0.002103976897173943,0.00041621415753101843,0.001602159321268273,-0.02862743649184867,0.1358744130621706,0.005014152395398506,0.00012067479641272093,0.017036960829858113,-0.0006336939269769612 +2019-05-07,0.010631071631571518,0.07264301128324309,-0.09266004922337495,0.00015476394429217186,0.005472634949774857,0.013422737850383322,0.03603530383754101,0.003436744086752573,8.93765212228317e-05,0.02971672034654643,0.07468080732847995,0.2972435018204157,0.2561590088977338,0.00011622347050917123,0.004669789442697163,-0.004819035365808068,0.00471091981710944,-0.011908028809465489,0.00034524091382272856,0.01656545305235576,0.04484278386923755,0.08978231717717848,0.06360597796539402,0.00026133617389499105,0.010227204393580835,0.02316349435871855,0.06151461514084583,0.11155278136425228,8.22190595063807e-05,0.0075230191470279815,0.019096339570352085,0.0686940895402282,-0.006403090781615805,8.156814992457504e-05,0.012201154559455115,-0.004468732656431835,0.03503054931221545,0.002300804819599378,4.374576751445676e-05,0.0003303525677734034,-0.01939566790232907,0.016461412944375718,0.035443529684922474,0.000908620260329587,0.004368523559036219,-0.009539804992535967,0.024522723285596692,-0.046455770468084516,0.00013602936978020916,0.009158917205828027,0.007832010795132653,0.006233295902385393,-0.03017708233227643,0.0006141576866785293,0.004798743917785869,-0.005359098982293126,0.07699578907943554,0.04051940520378418,2.0741854994463222e-05,0.0008124024834559122,0.01605370918917865,0.041375022800832294,-0.0511940529828465,0.0001152625393439315,0.03403292071916308,-0.006911312643297534,0.03479060485882422,0.004176751667421429,5.5919126447051226e-05,0.0011580938227653472,0.0009447117958493398,0.000759118735654696,-0.0020331781619009255,0.002427239328447717,0.01358709190047466,0.00746320811679138,0.04367702751432424,-0.001376498806387562,0.0001406127124084394,0.010241573858469261,-0.02789982938447598,0.1375671990886237,-0.041023503009468804,0.0003140471701499295,0.0006605015510088438,0.004025973527297508,0.023248330195433445,-0.00013634683144256597,4.877981013578055e-05,0.014885998975415864,0.06541053669642095,0.37487651714653636,0.07939008830771341,0.00028757179192594596,0.020134316716304126,0.04564718920780919,0.5467741529019672,0.008269752023569162,3.4644659335200954e-05,0.002577691602110664,0.013877171956061293,0.11895555544051437,-0.004384308014580401,3.897606130175799e-05,0.0047413709735405485,-0.0038465791007720744,0.01089513373379587,-0.021490692473977675,0.0001137273338783542,0.004944095468932379,0.012245392512213727,0.08558219439517317,-0.007373195235344777,3.3050776600854205e-05,0.04157378100111854,-0.0189279974156108,0.058777601115837276,-0.042749778747573464,7.139539373473452e-05,0.004233663510684946,-0.004616902100364841,0.015673083002446492,0.004449538473281297,0.00013469293847885838,0.002316635324361791,0.02181302690684735,0.023195302687794517,0.003473807679291904,0.0005375160693088065,0.009615899969233257,0.005555785727956738,0.02131425604720291,-0.023753328798587145,0.00010971381537936107,0.016391288155896726,-0.04808639063004229,0.1421810398803424,0.004947784942311916,0.002170699311787297,0.009633043125166394,-0.06958010945468698,0.7012121447309908,0.16781941476081733,2.5516310221978545e-05,0.02481885619294056,0.05213399299353842,0.1428821124611194,0.005912721410912756,0.001192928451075228,0.009165629954121709,-0.059951243342060936,0.48708709266613515,0.33300377198176234,8.196288116630798e-05,0.0052788027890050705,0.01413025572477459,0.019400503815083788,0.006571531846059082,0.0001719025818717952,0.008217364818491616,-0.009755580811413183,0.014405747587269471,-0.04026712861623939,0.00038870599935862806,0.013551262737945647,-0.02236479483061463,0.09458714380708706,-0.04368484866373159,0.0018326652625356603,0.013223233088396728,0.07056237940246077,0.27956170764674076,0.23938780689103917,8.09815160333611e-05,0.015947457748433463,0.0004261038496344345,0.0006164434971769601,-0.0063579471614317925,0.0017183015191637716,0.02856239833204224,0.019802252412468028,0.06490216433189352,0.0038142317523618516,0.00012088473110695112,0.015352397082343516,-0.017192771964254495,0.048377284435375714,0.016758271769286362,0.00014406709286778543,0.011298139681361168,-0.05626569490374703,0.308473062068832,0.06940761234443306,4.451848407052942e-05,0.028299928422294948,0.016398572153854568,0.05060503979425599,0.007275370388895519,0.003071357159886292,0.022915313384101185,0.021751968322653765,0.10091535312647984,-0.03288521665289143,0.00010722150246524989,0.017031891307137476,-0.013015006339274016,0.0698231357968362,-0.02212951549555815,0.00013517793849927455,0.011446662350587824,0.022141728368715783,0.12637107081608437,-0.011668646895659067,8.287290291483894e-05,0.0013461057012297802,0.0636423345605802,0.28984434211873705,0.07856589876398846,5.5185968662601676e-05,0.003865825136829505,0.016228500875160843,0.027863514250630963,-0.0028900526486925456,0.000283969637439508,0.018218622995905327,0.008234887071927368,0.029292970687158065,-0.05121904485663839,6.990505902985325e-05,0.007663415430676431,0.03422354266789477,0.34205333969378315,0.11349943080978561,2.581442251993707e-05,0.008000197123966827,-0.002167045959451631,0.006371762723386178,-0.0009131989453635682,0.0001188823802198866,0.01465133538317387,0.013080980881457963,0.059135254735451934,0.011695410451869219,0.0003486758031019275,0.0031935948936676955,0.028944372875595294,0.1404188990209703,-0.07018033548506228,0.00011806206545586938,0.013634721570622293,0.006486445461628702 +2019-05-08,-0.018394539977991432,0.1195487189858939,-0.04766922282289612,0.00016271612315632038,0.013745160566511956,0.029344421130182482,0.0990489729452963,0.022175855702005524,7.108633054772313e-05,0.014529573674886949,-0.00895524833142914,0.03520733777043991,0.0008487745923649275,0.00011766346977773783,0.02437647415713277,0.006628428501901425,0.006353607940929914,0.0030347794813025916,0.0003520935099317784,0.0009624334530344268,-0.028435901190288958,0.07795101133584224,0.02885858575492435,0.0001908723474270167,0.0015555119892924118,-0.010281780757757677,0.03002121966101196,-0.01511342440890122,7.478022140241303e-05,0.006830856776814304,-0.03987308539578201,0.15266697510110552,0.02819051713405022,7.66345474942225e-05,0.015917129923770097,-0.024507762654207742,0.20302064852371385,0.01949404916576281,4.139635184090569e-05,0.005404401325300425,-0.008704343831832986,0.007705921589469693,0.0055561471206336775,0.0008710763824987288,0.005508847468075037,-0.013784481475790403,0.03158201634057381,-0.014459569139973058,0.0001526203575246448,0.005558558025023834,0.008325392690068753,0.006188932507334551,-0.012275453676545782,0.0006575266186107006,0.002663573563663214,-0.021429939242533655,0.2825054359447259,0.1146817986080986,2.2605645892069885e-05,0.0015130845030564167,0.05186593389771357,0.14625613227525397,0.04984626065604465,0.00010534626819470171,0.012549482080802154,0.0092469779869893,0.048730886283489455,0.023705042958590297,5.341427425849137e-05,0.0024746678518146378,0.014029845001746458,0.0135015326748588,-0.010925814585912507,0.0020267154297075652,0.013486662325495004,0.021993879382526248,0.13861818069302123,0.006205941382788751,0.00013056709818489053,0.03281896768856727,0.051994746826139755,0.31639974745323357,0.09018902826248729,0.0002544670596649478,0.040215772826133186,-0.0037896651823824804,0.029046564040915854,0.0011530367741638104,3.675081978916573e-05,0.00040443338831155505,0.043534435120576184,0.25441944542680295,0.02458963203081387,0.00028201318893710014,0.00966454156531777,0.006021801651780084,0.07184074344956207,-0.005012622808122148,3.478450757904011e-05,0.006909091468923122,-0.01821578768642209,0.17227219178156236,0.009221645346416642,3.5327628569620455e-05,0.003588049847710124,-0.03299650284554192,0.09207608047510449,0.016817973078315635,0.00011543668466125445,0.0005594042122498437,-0.00022346945057316757,0.0016053943588333597,-0.011006473001237962,3.215354077260975e-05,0.017128773619089408,-0.006112905664605308,0.017879638162045988,-0.007346044323207311,7.579950167755385e-05,0.007249661019385778,-0.014321773088399693,0.06588683874315777,0.01310573506747436,9.939092068573645e-05,0.0020106625013346707,0.016688417950533246,0.016224607792560516,-0.08086203894154534,0.0005879176820333741,0.006710751110175675,0.004822810133988662,0.017913999372593272,-0.17034649022552462,0.00011331662189841704,0.006954066706805245,0.05187285198356189,0.15811821060749445,0.000262655221745351,0.0021056074575296108,0.002531544652406909,0.05280659072973978,0.48670269843275327,0.066454813343313,2.7900152100609987e-05,0.03739697900357467,-0.01950393244404125,0.058747831427312706,0.0032390366851617787,0.0010854294825510238,0.022654970360695317,-0.03149476891790051,0.22048637636808863,-0.030299384392586164,9.512229271105848e-05,0.006072690673550846,-0.029631983295782368,0.044447041644526605,0.04496906027168283,0.00015734873162284637,0.012041265621283385,0.008010432798054586,0.010364073393506262,-0.030542108720674997,0.0004436386911682649,0.004459030494528105,-0.009431251141790723,0.036674481720361425,-0.00807331810815948,0.0019932219710453217,0.003638141059611326,0.018589460083516512,0.07244249140881821,0.007330283415252147,8.233107170416669e-05,0.008737201488071373,0.03433672267091665,0.04655159749123611,0.013393428350865896,0.001833586672170531,0.01541848712875974,-0.00253819209323343,0.007106834328507384,-0.004761132421102983,0.00014150257138459958,0.004540211283854996,-0.0035512499362559567,0.00968081545275674,-0.06478920027670318,0.00014870640474342383,0.011827828807557516,-0.028798558334107677,0.11989848096479239,0.015471184608703458,5.862339848086212e-05,0.0010416435966776353,-0.028369367476497785,0.1037579809711829,-0.013966029898875887,0.002591470077525594,0.01281780711841285,-0.00019371687586605568,0.0009536315946002938,-0.023670549544939235,0.00010104792410999866,0.001962638862079685,0.010906025873149188,0.06397626084689206,-0.0005931433329437997,0.00012362561193302355,0.01094212073868635,0.031203642602918177,0.17818424019084625,0.014497140974230476,8.282943600892948e-05,0.010572793561882806,0.025746999270337134,0.11650423491942996,0.010461380961751986,5.554337985912255e-05,0.018815553195235594,0.014314457480723936,0.0277348030610899,0.0014168002877286167,0.0002516397242161977,0.03872596279096417,-0.014239949974659378,0.06557876873816203,0.008366046031264323,5.399575039892756e-05,0.006610494046502682,-0.0009191551592282601,0.009018314980896872,-0.006338023564841351,2.6296304191638154e-05,0.006276026450533865,-0.0035565614665030087,0.014090697702532169,-0.016773791398177515,8.822807131987859e-05,0.003573602880324686,0.0037867246922010708,0.016354945217241432,-0.004782880055503257,0.0003649577653588787,0.003168356481432358,0.0281780776285526,0.14026010078860832,0.0013327832315521832,0.00011506652843413437,0.030444309728235273,0.002893783605064285 +2019-05-09,-0.0294225522010266,0.2231202456243157,0.00010214305179541435,0.00013945302732065108,0.00016485321589834712,0.028596556159016295,0.08616432973225517,-0.06940461336765828,7.963367299107894e-05,0.000728315875808522,0.005411472928275527,0.0172887518511011,-0.017681625567093212,0.00014479349589005804,0.0034395088712950517,-0.014362991600657377,0.013963052913729809,-0.0059566617696094224,0.0003471621577418747,0.004594720117866094,0.02459146028911996,0.05796104770017667,-0.01466464220668649,0.0002219963653099466,0.006679687289116985,0.008944879670190878,0.02366701007125552,0.008123812278968771,8.252353949029452e-05,0.0026029521656111805,0.023821297726103568,0.07894077280217382,0.0023670395811453233,8.85429319124163e-05,0.020698111426610964,0.0031595131121565797,0.026926356321370196,-0.10735187072239089,4.023844488204808e-05,0.004666347091560929,-0.008093920252267411,0.006095122517607835,0.004997915120681865,0.0010240502499927414,0.00541699469723755,-0.07273402378881015,0.17648849352097895,0.10896318791354835,0.0001441063454593401,0.020141017812179734,0.0024938887620272274,0.0019742520350023154,-0.007403944064490259,0.0006174458018559988,0.00705451768785292,-0.011867787346433897,0.13637070956022126,0.05538451381711467,2.5934115757415893e-05,0.01091486687236913,-0.037914235713176134,0.11714605516228833,0.017260860655277314,9.614477227372195e-05,0.03162711206870362,0.007791937681348812,0.03788994667658019,0.01145800373324579,5.788730015922428e-05,0.0006099424848480718,-0.021089061852415953,0.017697373245034245,0.006755588507694869,0.0023241888998566137,0.011734923465675492,0.03663563701930637,0.2514503176452942,-0.008334615596634341,0.0001198957162903635,0.04948206051788188,0.009108741241466137,0.049605882369318066,-0.0004551063881706624,0.00028433702673775276,0.023311364693706066,-0.022990696551286244,0.14089629197365972,-0.07031448161442835,4.596354549939135e-05,0.002091116141077776,0.04978617026398141,0.26126464479537864,0.026174060638653743,0.0003140616325875281,0.023069203928857005,0.03813812716746809,0.5550884728186305,0.00935099502179395,2.8511980484031634e-05,0.014104028405860454,0.02746320075352654,0.2980933333218166,0.0980209218957932,3.078084920038054e-05,0.010604926661296863,-0.06885289625232333,0.223409695039385,0.1008538531760051,9.927569894302154e-05,0.03930496627689988,0.0527264899679773,0.44564064450405816,0.02774350667347836,2.7329799369090105e-05,0.00501920947290583,0.003300691568927325,0.00755786625169645,-0.019570615955508706,9.682402312944131e-05,0.0018476177858908315,-0.012101330959516222,0.05342249843313643,-0.010543414752431307,0.00010357561942460842,0.004273644343084061,-0.005404975448793858,0.005172755234037579,-0.00867505874947322,0.0005972378978185925,0.0019126324880036983,-0.023189988617157146,0.08933601656312246,0.023741294551731146,0.00010925968922554734,0.006743998982827681,0.048890819306814846,0.16912718742649052,0.020005251563530276,0.0018553808220035909,0.018465065155963946,0.026854347207828113,0.2668031197699355,-0.09798178544368794,2.5882480261400107e-05,0.0018686216536100892,0.06516006455301009,0.19867927637007193,0.04369019251817579,0.0010722602491648582,0.006108646814523552,0.003655365323256836,0.02721037998103573,-0.010086658454840875,8.945854375460753e-05,0.009618236190260738,0.007272787137815299,0.011416911052747357,-0.005430472228428651,0.0001503479965850333,0.014579957169211958,0.006530881107074669,0.006728278221867451,-0.01126718001543333,0.0005571495058936348,0.013345282754322115,-0.01237898895761861,0.04860572923658501,-0.0712369701162082,0.0019740041138913995,0.010487138928940327,-0.006390870751387169,0.02551807038940413,-0.01637583421250088,8.035308842790199e-05,0.022129797690881917,0.010636024299208038,0.012842692737745381,-0.001965327901158301,0.0020587348701024263,0.026774495761635524,0.02839826834820903,0.08320980047969974,0.03400030607370263,0.000135217659549043,0.014525112788779848,-0.011912713447458685,0.02856759563782791,-0.06456204409518122,0.0001690430738919876,0.0067138177902257,-0.01998400223143664,0.08319199781413471,0.004511304187884086,5.8629317789876395e-05,0.005292214880487842,0.025489566129854372,0.08358337505791123,-0.015027073438510544,0.002890417628975437,0.013181634490255268,0.0030161729793751345,0.011293004752092549,-0.010603543485832584,0.00013285787590539157,0.0029767046397799193,0.03748384888091592,0.21423931688849718,0.04085287751562421,0.00012688368638052167,0.0085532846030047,-0.002262563376270931,0.014785951743197552,-0.025110704045040625,7.237693158319733e-05,0.008212749789708346,0.07042107164075731,0.2808909533800565,0.05502595096378652,6.30104052020588e-05,0.032506698941226486,0.023465702239153688,0.040679635476357744,0.004297101430507942,0.00028124570374613397,0.034574180345258616,-0.01417688116407256,0.06373477644798224,0.021203480762386765,5.53119039442575e-05,0.002043744907225524,-0.02452039010068439,0.25003690923605665,0.07224843930351951,2.5301981788696603e-05,0.0011876877777533185,0.014659915333942111,0.042475506720831564,0.026262912455709386,0.00012064292497395493,0.014793404999025754,-0.011552290798139337,0.04629065577989058,-0.09590421443906337,0.00039337137171236125,0.007714351233465231,-0.0023194477368401432,0.010817929436286544,-0.0009685250486110158,0.00012280392363146875,0.0303026132056564,0.005608780250328547 +2019-05-10,0.0168280245216401,0.10754010814453749,0.02490632780665848,0.00016548142468824633,0.011761665142086365,-0.02424442747067156,0.08873854301399242,-0.07297142660185106,6.555565568219291e-05,0.008105009844619126,0.016106443517677156,0.05490588492179742,-0.06801675030514641,0.00013569941110367275,0.01664891341277302,-0.04835742510797569,0.04597305147491392,0.07512794935438855,0.00035499946051134433,0.00033101094081937907,0.02784806613407767,0.06035250153077816,0.00967472784934658,0.0002414335044098467,0.016411519212951003,0.00853823997536811,0.025617069158768248,-0.0006902331663175815,7.277557675690979e-05,0.007212566667660989,-0.03622414842104116,0.1336748751958065,-0.03709095043148257,7.951302068033717e-05,0.04120243439226217,0.016193119551268204,0.15007838939484727,-0.012015185691982472,3.7000788266182205e-05,0.012220963531288535,-0.0046973028513248955,0.003555647761416145,-0.0006285710470397548,0.001018766409139778,0.005576074332209182,0.005422843660565585,0.012289416286822372,-0.00427940635545663,0.0001542970826555221,0.008099824928158701,-0.007284332404930995,0.00609506709746414,-0.0010905328087038638,0.000584165121292058,0.013419092104584841,0.006095888549165974,0.09103978529126501,-7.227395920194029e-05,1.995393636294621e-05,0.0039652364906797724,0.03261297881665808,0.09083127386455436,-0.024057150383406833,0.00010666111055283953,0.03504346471656926,-0.00928866493130242,0.05235929579400999,-0.009492288081411906,4.993687008131338e-05,0.00012356137247280304,-0.018002865685068287,0.015705945836787093,0.0003393469842651864,0.0022356330355671737,0.016449290063722324,-0.08000825548673705,0.533448032983148,0.003929311901965896,0.00012342262837318602,0.004698098189008163,-0.079122611656736,0.42513121737800225,0.13985358956720112,0.00028819460690885436,0.04064810375281042,-0.03341775855093527,0.2331913622957319,0.03649215504579262,4.036693852536464e-05,0.0040083376426441174,-0.020877678615725127,0.1212769146930027,-0.000809687414452784,0.00028372060382822006,0.0047720924828490805,0.013124928392282206,0.16777749635639824,-0.052071349356123876,3.246335974965997e-05,0.0002834066534438649,-0.02749055936639868,0.28554046843259756,0.08327923252962748,3.216604152028997e-05,0.012305131607911218,0.00807015198702535,0.020335589337106583,0.001985300406050189,0.00012783439098131927,0.012190448321532986,-0.031006346398240094,0.2423952571014756,0.008648266218112889,2.954737151772226e-05,0.010713108408931556,-0.020686577488791835,0.0521288099914183,0.02469040586142516,8.798086262185774e-05,0.017427498577104624,0.0002536835275929882,0.0010915859784922345,-0.0027036333683093067,0.00010626320616172404,0.0012841492047340473,-0.008031723725817928,0.007334996046804253,-0.004032903608490705,0.0006258704375630571,0.0015733493462211285,0.00518812728166602,0.020775390792862693,-0.0008833666404087815,0.00010511082129307313,0.0006268497522316533,0.007817265617339659,0.025453227808865022,-0.014232578914583743,0.0019712022172403906,0.01214143780694712,0.044535262837727095,0.346041208199724,0.022249714336639165,3.3094695943647084e-05,0.010596450252883088,0.06117065270665752,0.17984884462500272,0.01944618314438805,0.0011120049798565076,0.007435729792062649,-0.011819510186201062,0.1034352624277237,-0.0026214967003760008,7.609506666755473e-05,0.007434395365804868,-0.016781875670174088,0.02527206693416332,-0.00493040293819453,0.0001567274697905511,0.01662153384922912,0.0015850030690056933,0.0022316186340145027,-0.005812106879570721,0.00040767496460453623,0.01625143248463344,-0.025289412005479937,0.10231039392050315,0.010059286639110725,0.0019158844660852924,0.012243617197243959,-0.005785419153566337,0.02250407826811743,-0.030058491032368483,8.248290912306943e-05,0.017315463827899218,0.019328948631856607,0.027522703045993916,-0.006673458491741526,0.001745799397719448,1.7008657413735426e-05,0.0018881438612364933,0.00730902459197498,-0.020938324416453064,0.00010235090670247472,0.02452166404018894,0.011296027577681337,0.028004003808974758,0.0001626378860492322,0.00016351816017740433,0.007327394361118155,0.03945059354517742,0.16658710007330352,0.025656927151058443,5.77997684476539e-05,0.014112588356744412,0.007340180955284467,0.02430000225035559,0.00613220776233658,0.002862981295680847,0.005618090171166845,0.04225590846154198,0.19034777051526602,0.0935712721162786,0.00011042825751504208,0.0030192894498190094,0.012378855117028605,0.06522574818266375,-0.05628975529498805,0.0001376328791194164,0.0033718995062103903,0.021831626207235295,0.13767351010580237,0.02118322512611921,7.500399571975793e-05,0.002788104232666525,0.08657593727356123,0.42623432501906455,0.09720683847157077,5.1050050487407557e-05,0.016787899094631333,-0.0016654969755071937,0.0031777174364060524,-0.21672294748504337,0.00025553945572103843,0.022229347900172943,-0.005443092037670346,0.023005019613612183,0.0035465598028447893,5.8835228694454604e-05,0.000648080915315598,0.05445814578552938,0.4703199274028428,0.21535372424145446,2.9874507577944152e-05,0.007072068129630871,-0.010917209578915168,0.0388964110349053,-0.004991516387888718,9.810950425362389e-05,0.0010659116241079558,0.018525288364228194,0.07246858685800178,0.03259764999882856,0.0004029425729075648,0.00302314974570142,-0.012950685992419197,0.05055921133801546,0.002392923529203349,0.00014671154092421885,0.008435609628677333,0.0008130010326336274 +2019-05-13,0.0058894374601375496,0.0373380786297426,0.0011437067268570001,0.00016680475719129295,0.009771825391629425,0.028809813099455923,0.11474599504865533,0.01482054247534062,6.0243948838931544e-05,0.0035705873666668584,-0.012696301493853807,0.04343741145897122,-0.020261197522629348,0.00013521052363243567,0.008991019782634307,-0.013682578731001946,0.01198936082058076,-0.016852614883369397,0.0003851587615476536,0.006460076108197763,-0.035802688713141975,0.07245700229465589,0.06265183521163536,0.00025854315994280506,0.035430698183562606,0.006716380709900842,0.01679301828654423,-0.022011972409808088,8.73279538618624e-05,0.0015491699466986901,0.014893872061587675,0.05353527581964815,-0.020213799411749396,8.163143472741324e-05,0.029737708992745113,-0.005191513848964079,0.04362953357718663,-0.0003946097955042155,4.080487588357959e-05,0.006630693861029818,0.00429010784134793,0.003134630258471688,-0.03477732358150295,0.0010554232921492076,0.002816440519250769,0.017599797440136657,0.03683187527862551,0.010275813916293793,0.00016708817846142895,0.007111843021038865,0.015602507544952961,0.012330565420432382,-0.0003674796915194582,0.0006184943943516116,0.001281421499713818,-0.008184568017766427,0.11037412791077887,0.0049438631341363745,2.209791336195694e-05,0.0027202556288799507,0.009482775649752265,0.022025644685285662,-0.000948779181502496,0.00012789627175060936,0.008003433914671253,-0.019982454836338474,0.11564243370070057,-0.04783415842260288,4.8639985360594734e-05,0.003066273620104669,-0.039599794886977,0.033833051998119236,0.010499404807550142,0.0022828361056708877,0.005465010436742058,0.0018666751235942717,0.011566661912771113,-0.12808758334523596,0.00013280450457460566,0.04123210444075006,0.007692301619321607,0.04887303207019225,-0.0769325645588214,0.00024372229184492898,0.02223209650167197,0.023770508773730225,0.15265996682133606,-0.00038455743260332144,4.38605698246808e-05,0.0018917422785590945,0.010319491207738965,0.06895807538701539,-0.0046857858418001,0.0002466379834877497,0.007751511800448654,-0.03604354446565582,0.4061292825527977,0.024603206338765733,3.6829296193738816e-05,0.003449739485077135,0.01675745444792225,0.17297316533732,0.02808315110181236,3.236763914723777e-05,0.013223668887468953,-0.018473741170719423,0.056751223572182374,9.543828656693822e-05,0.00010485819579573136,0.005931598578226993,-0.021440183849470665,0.14778199246403356,0.002267330602088743,3.351192408812943e-05,0.00017638795523224776,-0.009895347156625281,0.02346278401610485,-0.035491126145605324,9.350371681255345e-05,0.008807320529751344,-0.0007890836261070522,0.002856607056646875,-0.04221836846639461,0.00012630516849622086,0.001869864837457502,0.041086402201080424,0.03420760367818472,-0.004755842162929696,0.0006865165679425488,0.00956130383299688,0.0037554727411349565,0.015615484957257696,-0.005128566887979654,0.00010122671579418338,0.0004067494049578577,0.05228471355673349,0.16518501309386224,0.011537390261593405,0.0020315301199253528,0.008230796436608626,0.033331183328447284,0.298263012197802,0.016307664438253423,2.873647727219916e-05,0.005753899997941992,0.014519557791400794,0.03471669655564532,-0.019127890137422214,0.0013673706885546568,0.006740130826919815,0.03683289211464759,0.2820405951429409,0.08776704725443542,8.69660694054168e-05,0.006167346720525121,0.004815193210209293,0.009556549418951217,-0.04523944951068994,0.00011892084713139778,0.010610378015287043,-0.023115620573161966,0.03475115525364908,-0.001753410004245231,0.00038180378051299744,0.015367647874070448,0.042907448702330576,0.1699641767797869,0.07115626601097559,0.0019567062760736087,0.004026824516061954,-0.01898173069723865,0.07723173346038928,0.009645933417739113,7.88552104848357e-05,0.012252473691298872,-0.05511555578541711,0.08011038936034032,0.03769480320502385,0.0017102615831203216,0.01270218832204819,0.03985202248623221,0.13414737023477824,0.04332718805002413,0.00011770210769147476,0.00804016297310553,-0.0415237273725452,0.10696272562215094,0.0851857096445781,0.0001573708338529817,0.009974216981186456,0.03557679952100818,0.2073408133983153,0.040999649490954436,4.1878971136141516e-05,0.023855069550104063,0.002782342400513514,0.00812310027721638,0.0038544486816477997,0.003246435789816063,0.016845991148676465,0.007867525526053335,0.036337973854836475,-0.032134376236690375,0.00010770057532221886,0.01166406536640097,0.028656115284577125,0.1669609134208409,0.015219255776648257,0.00012446959832940115,0.013887116246751794,-0.029134120921052956,0.17956633870006222,-0.0025176323119437635,7.67406881954817e-05,0.0016397938008263185,0.004782341457839305,0.0237414775091671,-0.0031998372757012427,5.062677152644955e-05,0.023541506367000038,-0.0030010972218460007,0.0048061415157881985,-0.027626339701340267,0.0003044478451589865,0.02744496534979018,0.0020566957454649895,0.008800490252731058,-0.061140494124156314,5.8113570496295906e-05,0.0005253355185018188,-0.025698032014757073,0.27000025001021705,0.047464594040226994,2.455652925758202e-05,0.006101426765288813,-0.01101766831014098,0.03655156847464804,-0.02585798069904691,0.00010536409479676757,0.001660158478168201,0.020178541293250366,0.08151408392248385,0.030695556226274793,0.0003901980427378051,0.006663989428004859,-0.04554178400170638,0.22809748964835563,-0.004917949908471328,0.0001143566249896373,0.0161200751195238,0.0003273688408170623 +2019-05-14,-0.013932188309180752,0.07389363865242377,-0.023964113628147918,0.0001993879311799111,0.005839833918401097,-0.00123008011115343,0.004292287109021641,-0.09526308716497357,6.876305434785494e-05,0.023727120559633642,-0.0003584192229256866,0.0013630277660240347,-0.013359795181983153,0.0001216420681983911,0.0021938510143376323,0.042252976519142144,0.042646809661326536,0.12111753705145747,0.000334378709075084,0.0006303047133521806,0.01755413709783645,0.03665068974578518,0.00272175511499464,0.000250608101187364,0.005863648666973714,-0.006069357813463194,0.015194098010261304,-0.006092441697906599,8.721969386282067e-05,0.0036746055794419996,0.06212027296878694,0.24846109096806918,0.05901406647694207,7.336092907702192e-05,0.017385218193696966,-0.02139956289854275,0.22011242325958497,-0.01088151100561124,3.333949077047994e-05,0.002974674792699427,0.002760803491038601,0.0021982194018816572,-0.013687795883502782,0.0009685214540541892,0.0032060218061727734,-0.004917219728016252,0.010030484618121185,-0.023897645788067325,0.00017141924796971049,0.013509968352773018,-0.004271944208371474,0.003399266363943124,-0.08938227066710745,0.0006142776773893973,0.002030955929649247,0.0037535835207079967,0.044151845056132115,-0.017932142618293755,2.5334947940358725e-05,0.0002905998551646532,0.03441190030706892,0.08732334513240578,0.01583393304471361,0.0001170656092971055,0.054090641857248725,0.016227886742090306,0.0997781314209976,0.05087424004491532,4.5781331535620735e-05,0.002124390977530596,0.012146048217585555,0.012598934285632213,-0.0013321357853149165,0.0018802870835594116,0.02117159640131748,0.04283898291192701,0.25178648601311765,0.028211719902146912,0.0001400099312068142,0.008619654103176173,0.018614675804582835,0.11082344945068244,-0.052669491796046033,0.00026009502490216676,0.005769736014933559,-0.03947744309667664,0.23843711227763253,0.01331457514221283,4.66375920011808e-05,0.003428343114393036,0.053398956598092885,0.30327115817543476,0.03057915604574441,0.00029019402669268985,0.015701648085671854,-0.00028513442292110166,0.0041168471157443254,-0.021271525841409223,2.874187807964437e-05,0.005231173418649095,0.020549137852084363,0.25189220116911165,0.03640119613497321,2.7255904140164897e-05,0.00752711747707112,-0.03778887205787018,0.09750491179253723,0.018984796932824146,0.00012484184866986135,0.0030820965837855333,0.02124044274967435,0.16651808711442415,-0.13706432741595678,2.9464191468387113e-05,0.007407989567825959,0.0004317139501203926,0.001155858116952944,-0.009134384433430929,8.280735971595912e-05,0.005381516588866551,-0.003730996548168883,0.015401265870851751,-0.005507092127362954,0.00011076869131317063,0.008498510583352312,0.025438335047230306,0.026721041147864312,0.010988549124693013,0.0005441402711261895,0.00992971238347972,-0.021597731561539418,0.07657386870189896,0.02968669952053118,0.0001187171764339212,0.0001738000387178874,-0.005599016049238932,0.019297335484669942,-0.023760499451749444,0.0018622309485164597,0.006705471043694225,-0.02578688239066252,0.28980905707449095,0.0321926121408542,2.2880688095980495e-05,0.0014101825769823576,0.01595953784542314,0.055297963261265556,-0.0934901004215826,0.0009435880780860339,0.0014534203269749245,-0.011057355911476484,0.08154600040518623,0.004661955104403831,9.029719654858883e-05,0.0023631350031662586,0.0007227711192691453,0.0009982629224260188,0.00025306100806173494,0.00017088393496863776,0.006616297381783596,0.024174454189102804,0.035305912095210536,0.015742124406477112,0.00039301864644334175,0.004334112494766937,-0.012208504138541776,0.05176941066941478,-0.01806973052371882,0.0018278458826988036,0.04104628909736475,0.027770343310090005,0.11714173316185147,-0.013056884653543209,7.606063972734663e-05,0.033064367030908544,0.004056290222762809,0.006146823906468025,-0.003680167307850115,0.001640421455179944,0.0015474622969866663,0.023394908240164228,0.07978394893877563,0.011332355883634352,0.00011617745393743241,0.003482274674441681,0.027809682351718483,0.08822007533139302,-0.022004328777513498,0.00012778767839594462,0.0017813743676248774,-0.0041177023444392445,0.017923717798799255,-6.6534267204050275e-06,5.60713196166777e-05,0.010728851838787034,0.03893299481403789,0.10059898485383466,0.03697774624958461,0.00366810933021714,0.018097179700749026,0.04949707033976303,0.25481587562896324,0.04485776511585684,9.662590689242978e-05,0.010725382710394542,-0.03943967702797457,0.20582055349244346,0.12356157973930422,0.00013896498742778843,0.0049513754143837175,0.0038195316873402218,0.020593759002874877,-0.012040373263992129,8.772496223823079e-05,0.014113223611732213,0.00726330758601237,0.03700506000408449,-0.021824110732328823,4.933109074902255e-05,0.01744271731348067,-0.006660171769807973,0.012399721197648466,0.006007091686010811,0.0002618803446181616,0.0060990975416375225,-0.005841113984091598,0.027015401161589132,-0.0019091923629979692,5.376487446989867e-05,0.0022920294718985156,0.0050187065492234,0.058510484133524165,-0.012079327240071434,2.2130406764163788e-05,0.015300376017250056,-0.01952059921261766,0.06306861173741797,0.02973508705996483,0.00010819042776913299,0.003320487643949644,-0.027656834700564733,0.10503802170080573,0.03766268755587826,0.0004150342248814803,0.019118015472040045,-0.02946995022318276,0.1437978142909584,0.010933684161557487,0.00011738129956462078,0.0035612981024873086,0.005316740273675097 +2019-05-15,0.03390993688592328,0.24228289206025244,0.0749098379421357,0.00014800991741612833,0.022321098207429713,-0.009312684008561826,0.03680595924897481,-0.03677220833893887,6.071098130531236e-05,0.011306212414686862,-0.0007165029814544781,0.0025507370270489924,0.0002933341646014351,0.00012994199190558356,0.002988033660767967,0.010755882802970546,0.01011272064447464,-0.054724016484096555,0.0003589598767365485,0.0013873077646226165,-0.00642070600591969,0.01353172759405837,-0.024239216859154474,0.00024827175290239694,0.007917557614257357,-0.005779121225037195,0.015556702803669002,-0.07209556859056979,8.111309806124907e-05,0.003392651818929249,0.002885970502500432,0.009563280484726436,-0.0007076651672307456,8.854720343501958e-05,0.003825515731477215,0.005534057549175225,0.0520313622218892,-0.0021766217374248596,3.647347053229117e-05,0.011409007535710461,-0.012638418195693273,0.012370314734093025,0.011131330220009098,0.0007878739819853567,0.01739325830519025,-0.04195913238199335,0.08773259579122958,-0.036928768199786695,0.00016723508934875808,0.0008881651590060564,0.002328364824624399,0.0019290456015706094,-0.006177345652644874,0.0005899740282791869,0.009092553291152295,-0.0001140314509753278,0.001636014760885826,-0.05728834125128343,2.0771134700470943e-05,0.001724443302497195,0.01887977041585297,0.05100172282018473,-0.005733018053306379,0.0001099671323692553,0.006230636090432671,-0.005874867137143485,0.03598312452224446,-0.10783963542680348,4.5957986780339854e-05,0.0013779328315581302,0.0006962846324062232,0.0005609717914698461,-0.012140777047926427,0.0024208548980629214,0.00892432910598389,-0.04850054379847811,0.3312699688185629,-0.18773655411548845,0.00012048046886586027,0.020151139446712922,-0.0718886349854581,0.45267206941350874,0.1020787090077217,0.00024591485874409717,0.03066551084891828,-0.00572881886230512,0.034577770005842536,0.0010081191689852095,4.6669061277375775e-05,0.0009004334317812074,-0.012493380946135012,0.061642881877076276,0.007229936277053582,0.0003340287557152591,0.00861131370422685,-0.016807223832367584,0.24993804391977156,-0.03984102860951559,2.7905759597417475e-05,0.05287287165786324,-0.012632947855673433,0.14268868078586525,-0.015351942241896031,2.9579912831985526e-05,0.008698521711184331,0.0002561189745733084,0.0007368180686703868,-0.0017939908665091965,0.00011197066121675618,0.005343632445408606,0.013752797041641732,0.10555195263774717,-0.016874755493090598,3.0096579335699244e-05,0.003598611583805351,0.009887315489995515,0.02458897546644957,0.010896980546553863,8.914876696869546e-05,0.0009134397542486556,0.016488092216304116,0.056698883160810655,0.0949928912627451,0.00013296719247855206,0.002104055589375285,0.014497386555410996,0.015677670008553857,0.0008612996725170951,0.0005285471816864928,0.0017300524694874178,0.010954944220532578,0.035381665641698576,0.007201360242087987,0.00013032205080202016,0.0015636355641541872,-0.04801981622354425,0.15020900808013757,0.06864152690763911,0.0020518409359600327,0.007034930691745914,-0.020090111594324934,0.17809512993939325,-0.006453795894119982,2.9007646928181576e-05,0.004774817043689617,0.030679401114423677,0.10177476474886019,0.008051830030734583,0.0009855485882776839,0.018890825790046657,0.012742773968945706,0.0922713545148215,0.009369337272198292,9.196503213637919e-05,0.014578102286229334,-0.005379003762362525,0.007069637459844953,-0.007826902699226262,0.00017957674328517392,0.020193281822103223,-0.01904323927470644,0.02449486313595597,0.009452048265073475,0.00044624125763111257,0.017026457335425654,-0.007018140533796618,0.03067694121615402,0.00020875024729607856,0.0017732107171106112,0.022353027350472954,-0.015145986830594675,0.0521412885206547,-0.0011351803046331392,9.319791273603422e-05,0.014926120986461523,-0.034615105825110216,0.04538540823070638,0.008313628734459113,0.0018959488185284067,0.005546779333945793,-0.016141526487021038,0.04791109360028426,0.0006685959439858616,0.00013348256872783935,0.0011324873748487457,-0.005932961518281485,0.016072114149260446,-0.04118555198989881,0.00014964385903774537,0.010815647871893706,0.019326616761749744,0.09744931068793784,0.012201916221175267,4.84050851507614e-05,0.00362311762088361,-0.04528282636985514,0.13273312438179033,0.003434533889560053,0.003233495542395877,0.02891731744876688,-0.013019376528165707,0.06004178769506095,-0.011325365379342728,0.00010786415446040446,0.0033999263484726715,0.006185696188971621,0.033366590585097215,-0.008311554561246359,0.0001344427965540048,0.011915431614068444,0.015667502013673392,0.08241632595168578,-0.016421270097546868,8.991563336064195e-05,0.011482550683010712,0.0424788954236816,0.1857022199132464,0.008162238706800369,5.749148343902306e-05,0.0038866718099766226,-0.031341730865565125,0.06311503834565745,-0.007580690544835595,0.0002421137869388349,0.01114231683696467,-0.017358550366167916,0.08600820022166294,0.01585203903573966,5.0186622586286836e-05,0.006010969658079651,-0.003421672011503977,0.03961999305036301,-0.011710378116313688,2.2282056330548554e-05,0.006309630710286596,-0.011051190179405257,0.031916855358082155,-0.01533545179363544,0.00012103136234977582,0.0017324393636201634,-0.012791392035674592,0.04476749614832287,-0.08009694571024668,0.0004503840226764426,0.002337442657332856,0.00647381479039094,0.023081749358762234,-0.011837266317967644,0.00016064356954239927,0.001956465670835698,-0.0059563463764840275 +2019-05-16,-0.00991689450931586,0.0714383974266964,-0.07333271568218934,0.0001468015272852327,0.005814750285526407,-0.020374714285834462,0.06853452090219024,-0.0031033872875936516,7.133335865517391e-05,0.010134937352674869,-0.02752855750233548,0.08838910486259954,0.02151685041071902,0.00014407277582229925,0.003035653589261494,0.02920147999881557,0.029168698826773906,0.04241861900713115,0.00033787469219032323,0.010448061803549014,-0.001281239991630451,0.0025982413642751593,-0.017932846521581097,0.00025801726402618127,0.014472551434441452,-0.008230885190186046,0.023630176176585374,0.0014629865390272151,7.605474668378047e-05,0.021049309968679694,-0.06992425698887626,0.22320111315229568,0.07393506730624902,9.192240094758213e-05,0.03528417350845829,0.05801750426190631,0.4740416369981934,0.15080849728640716,4.1970212502431355e-05,0.0033851491962533283,0.022600210452369787,0.018453127108180718,0.004404965140849571,0.000944468105972922,0.0009147016522670728,0.03555551409544703,0.09282690142478955,0.03386305686518912,0.00013393528155156986,0.020242611067633136,0.00668461245058227,0.004196793761309553,-0.00575516804948093,0.0007785436451270288,0.003624582334303162,0.0013739764441503095,0.021982671820795288,-0.032346799869134205,1.8626085842548054e-05,0.003678094211071359,-0.007206898682856853,0.022199356454791288,-0.005571171419306148,9.644041482924141e-05,0.012281605626848118,-0.0088358839753049,0.04947860671751035,0.01382872968507542,5.0268318847378114e-05,0.0036062672681314092,8.787277484524336e-05,5.8247793279097785e-05,-0.08907639839677906,0.002942373744482881,0.0011041592029073354,-0.044485301996476885,0.2612943086622032,0.025857482517339915,0.00014010018238310614,0.0004834483502248407,-0.025328959450426763,0.15816375393467869,0.005207690015934697,0.0002479811196085907,0.00850418259609849,-0.03524008494123957,0.21447920858044028,-0.031802032261191326,4.628206245842636e-05,0.006128130378034386,-0.012243155926448052,0.05780506472345486,-0.06102079019333429,0.00034907142288291695,0.030449421426376598,0.03404465413202665,0.42135266153982076,0.005074919991964617,3.3529989400860066e-05,0.013478065899024309,0.028698091075608504,0.3007534821316533,0.05861106022674807,3.188042147019005e-05,0.006786293080397505,-0.002148980117765209,0.005566812305676774,-0.05668833071988274,0.00012435079743734374,0.006660879973707016,-0.026769132470895112,0.17519695921838005,0.006268835618789794,3.529393722007878e-05,0.017447137657670288,0.009739845855767572,0.030222804903828136,-0.005188345761450391,7.14487603926131e-05,0.0037351469134369684,-8.235674821039011e-05,0.000357114678986523,-0.026849199324562506,0.00010544842178005997,0.0068163466542314494,-0.04382358433920162,0.04439337719350565,0.03680231887156983,0.0005642418206360373,0.004429588725212387,-0.01615349265476149,0.05725335907188371,0.02431865078372854,0.00011875488287521121,0.007816511731054186,0.04307766985598775,0.1547597002317232,0.009457938391561175,0.0017865431019429808,0.012506583928627774,-0.030647659339755013,0.28543417973080604,0.024929451843002763,2.7610452855836392e-05,0.03189810944315725,-0.009931856607557925,0.02499905548301716,-0.04110303627483797,0.00129890715796065,0.012412210137805498,-0.005409753928151599,0.03613246793473421,-0.011550176843375554,9.970238062755826e-05,0.0028533171182585967,0.037088617768129155,0.04983484757674458,0.03676926143879031,0.00017565191955015404,0.007972538071833204,0.020965437482074096,0.030258855268569296,0.001095184813108997,0.00039769977832225886,0.0017545098909336925,-0.02148822009231787,0.07968872657965592,-0.2204415810439371,0.0020900366311707,0.009908203572002516,0.0031076384150878567,0.009585271865160025,-0.009751520751064967,0.00010401989631805491,0.008002236271487538,0.013215411269946152,0.019655708017436456,-0.016188773408788958,0.0016713568390305457,0.013819514457755639,0.01732346415459296,0.04904796435314423,0.00039791379402570604,0.00013993610798222427,0.014544446763054828,0.017915208422048707,0.04683593087683075,-0.013515013790104547,0.0001550611800600171,0.015882713945857656,-0.04540556940203357,0.17398075508510585,0.04154457941473223,6.36974196897004e-05,0.017578265555579085,0.010890243453420203,0.03573599235519534,0.0045129915746915565,0.0028883498779119507,0.0007575835319965886,-0.021351882992257275,0.10539252772868271,0.028140349031836535,0.00010077827743183149,0.007850189520024064,0.018689856804699926,0.1169431087250454,0.003476115170536553,0.00011590231853481402,0.005739994650645754,-0.02803629540176224,0.1553329328083035,0.029868282135564344,8.537009875816724e-05,0.012931493359391835,0.04371102763233399,0.19642889024985108,0.006304701806337963,5.592848414148815e-05,0.011264643516301255,-0.010393170827027334,0.02017843897934061,-0.0006692933437487284,0.0002511249676821424,0.021228342466687564,0.010994800368145033,0.045681531255728464,0.0169707355123602,5.984957504008654e-05,0.005525042074069116,-0.027823203959426647,0.33534581272557684,-0.01735768945493024,2.140649367756553e-05,0.023836740189015108,-0.006223160324191374,0.02155377956900989,0.00048084993821392006,0.00010092447924201043,0.0026870026792966215,0.014234949036683847,0.06227995276670008,-0.022225793749451175,0.00036027623288686016,0.004535974621978371,0.020040247405498122,0.08195314966601189,-0.05947192137642809,0.000140058420887649,0.006147881541320406,-0.001131067707868623 +2019-05-17,0.0010352328393286175,0.006596355402188939,-0.011548716890582044,0.00016596655419454928,0.0022108328092636824,-0.0160936870800608,0.05861453798470657,-0.1089539178127391,6.5881083527753e-05,0.015101162773107805,0.0123375410606802,0.04134807095425661,-0.04552351963512551,0.00013802907027147488,0.004808286996395269,-0.005882768250909116,0.0074655105632373195,0.003128483730407997,0.00026594392976320597,0.009866231762822714,-0.007728026992701352,0.01661762491516448,0.0020565929023423847,0.00024333100540953136,0.010847120921743189,-0.008515414048643834,0.022207406885035277,-0.010118900788357709,8.372490428400082e-05,0.0026063671039300313,0.0010489190914672569,0.004431030086995326,-0.0948012779018519,6.945877927319099e-05,0.0017662142067840212,-0.051616936529609775,0.41014295137087803,0.11080553325180596,4.315743129050103e-05,0.0022429288664504027,-0.00023987396751813994,0.00019842820528724793,-0.000977922699339367,0.0009322330607286987,0.0064148748895633025,0.053089484123911845,0.1316159133722213,0.06649366227855559,0.00014104639473031704,0.029076651536704832,0.008142713141596557,0.006572132840046187,-0.06836712578043466,0.0006056018044767234,0.009143864611157074,0.0064590771255887145,0.10410565713311194,-0.20179315336359505,1.848923446782661e-05,0.0062869637858751675,0.009225008418648269,0.02924060753987257,-0.03351327803321467,9.371981382449282e-05,0.0071916607026072665,-0.004308785541871549,0.02581315976515002,-0.037161838486545966,4.698676310713695e-05,0.004285934969660905,-0.031817171793356254,0.028107173659596047,-0.06797946835499145,0.0022078388368366535,0.0034694525929573426,-0.04531968472981066,0.2995939019834274,0.021722448193975365,0.00012448184552632557,0.03010511723342153,0.03367475626680165,0.19592059955140917,0.01252479223292258,0.0002661537513738342,0.016550701966362467,-0.012244585789319314,0.05837433805287826,-0.001128300569623435,5.9085795296829526e-05,0.006076856038936172,0.02927018822894056,0.14562170447332864,0.0029175415290486526,0.000331273131173161,0.005304514471766284,-0.008710786018376594,0.1245188759065605,-0.013576378329295272,2.9030357575447e-05,0.048223866942742166,-0.0007116359679484185,0.006502638857507609,-0.07507417775657471,3.65636854822044e-05,0.009255914708993632,0.028227637831836024,0.06691932102781374,-0.020708615874291493,0.00013587694273995337,0.00863966334171971,-0.020643670028369063,0.1718046680211279,-0.007270092908139583,2.7755197693540152e-05,0.03560245455811832,0.00013719138352489773,0.00035527382719621373,-0.0014962931331092822,8.561325391692558e-05,0.001574498590979251,0.0038841150350361463,0.01503669056587278,-0.0992754658273801,0.00011811047519102025,0.0007773252170253226,-0.008387110525496169,0.009021319123491474,-0.027752297246137026,0.0005313955112904265,0.0052096072676723025,0.00347381036560735,0.014208982784829996,-0.11887363294421002,0.0001029032586251699,0.002459886832117693,-0.0014440807071134144,0.004509985980029001,-0.0014007768845001188,0.0020551117804283557,0.042663943279480754,0.004619866833745792,0.05062694071936295,-0.025599070705648333,2.3465508396912642e-05,0.01168663855725563,0.05586375410947784,0.18275342687454316,0.03477722207404394,0.0009993919752573283,0.0011350075297852356,0.01418493295624224,0.09986025200742858,0.011389138000004793,9.45932774363455e-05,0.0073291239814951845,-0.010547783019291868,0.016779930243056008,0.007798502333023838,0.00014835986260709427,0.0035056045140857573,-0.028711521751859006,0.04312089470383143,-0.0037182007561887913,0.0003821838770647374,0.018438648945834885,-0.009146333808373224,0.03541347237800197,-0.1710629238561283,0.0020018377565683217,0.006246809143779498,-0.004432015105549444,0.014309061258495574,-0.02572668182466413,9.937575916274997e-05,0.006381131230062731,-0.018353927603110026,0.02905795879728569,-0.07004560425383283,0.001570149851595486,0.026285633133139488,-0.056208973218525124,0.17239110496979393,0.08139009186034538,0.00012918343704411823,0.013933608337350491,0.0011322341211997679,0.0028127746552664944,-0.13781314918468654,0.0001631780258409606,0.00041994833210081653,0.025036404454687133,0.10239996435138354,0.012958830336080404,5.9674127572802885e-05,0.026398588881519806,0.007721526382353053,0.02762019079806339,-0.05527805590258016,0.0026496868065025436,0.029516507266870304,-0.021717246416375485,0.10592928871769768,0.023238501268809483,0.00010198334997879992,0.007534081467945581,-0.03087469135296221,0.16247695000124152,0.06341648634658065,0.00013780711828958642,0.0007602635585423167,-0.01634893477963075,0.07903407825782507,0.02344179500019569,9.784164985639739e-05,0.007183583316119189,-0.0028781182414349617,0.013273889850329216,-0.0035272868773992922,5.449514562796975e-05,0.003891684433998937,-0.02419169409546231,0.05236121801950006,0.014051400450163171,0.00022526096266985303,0.03262129323474827,-0.03229104621984372,0.12947435452131115,0.0844521605345173,6.201728326334468e-05,0.0037702134684479815,-0.021131788788670912,0.24637841659974855,0.03464081327691282,2.212915786308793e-05,0.013589383785851755,0.008695565407457799,0.02842758913781545,-0.18172343836557192,0.00010692192293938995,0.0049210268943432785,0.005004069721553232,0.02235683181137012,-0.039349294960734485,0.00035281014387712045,0.01403183699227609,-0.0006206391644108383,0.0032300074601471144,-0.09324354088228021,0.00011005440955763934,0.019666517641116113,-0.004780948626132523 +2019-05-20,0.0065211590310782245,0.04134407878170502,-0.0031617113374134424,0.0001668007718037394,0.009549797313105993,0.05024282586292062,0.2057794903142284,0.08956906148174236,5.8584468918852377e-05,0.024711172350315298,-0.04919668658809207,0.1510678658682981,0.08889676012114926,0.0001506471654222392,0.022999075954525362,-0.041328020377710675,0.04404692744983548,0.08835590779166148,0.00031666264882578834,0.004532716545076284,0.03218571399549946,0.08992296340581843,-0.05175491524445371,0.0001872795294438567,0.008700336734370097,-0.01190664670054101,0.035006115540388176,0.04281996303381322,7.426638508893867e-05,0.004391831573525398,0.015212021159184427,0.05386894998908454,0.005291399330582508,8.285872870039926e-05,0.011339619234238856,0.005506478324189905,0.04790243063862756,0.0015017784916679633,3.9419852760194364e-05,0.011427599340080514,0.024710123530190312,0.018136941180436843,0.043156658907777604,0.0010506441787789043,0.0008576513576694584,0.01155330171690939,0.024703646122467757,-0.0005393925864687842,0.0001635335799554084,0.003044914655328122,-0.017214731658579577,0.015229465876871432,0.057629582761090106,0.0005525097463573091,0.007150756101859102,0.01482992927255754,0.20549029919021233,0.07891247050097515,2.1506539929849447e-05,0.005533156393737502,-0.011208091352674643,0.03234429728594582,-0.10947499652034907,0.00010294019339822296,0.0011384121035036983,-0.012771617692178919,0.07551926691207618,0.029615444551979217,4.760471425416737e-05,0.004241603248574336,0.019438702268323307,0.019025663506755133,0.03028593181125341,0.0019927390396145502,0.016115327613687568,-0.060021822850073674,0.420775958047621,0.041655441820137196,0.00011738439636708125,0.0382158207688922,0.006123167130057795,0.03669661121203292,-0.005122983676689315,0.0002583796970848078,0.024024878210859205,-0.06528345060739289,0.3623404217336451,0.0948323515499078,5.075131175773956e-05,0.022784323225959087,0.014895668651683326,0.081577205875823,-0.052750611895339417,0.00030093866107459974,0.005865553479043525,0.042468298868936716,0.46147219782639143,-0.04984931949233393,3.8189990905226575e-05,0.0008243406937143453,-0.0011327406851562134,0.012709436074699123,-0.002964341334471716,2.977734190436053e-05,0.000274543282329019,-0.07129509976728796,0.20565173192903566,0.09992108117324745,0.00011167348401115131,0.010501385888142952,-0.029261173654058854,0.22875012427677666,0.0039001243618764494,2.9547638629884046e-05,0.026700023992778592,-0.0023257016722351095,0.006444618802348438,-0.051413937971210716,8.000813616869815e-05,0.002950929300590285,-0.013073183722897948,0.04863733261966853,0.022931737150531473,0.00012290235675233097,0.006128168925702316,0.05296448537021144,0.05583058475316899,0.0241851953265804,0.0005422357426462264,0.006030329957780585,-0.016363744405658597,0.0663071966014483,0.02933698368074553,0.00010387428075879726,0.004137965839879226,0.08470410199558998,0.3030298076944753,0.029005013548595245,0.0017940653854835779,0.018471613833957103,-0.053082238668771535,0.5242307915284499,0.0879395517359332,2.6038076539748444e-05,0.0063770668976970545,0.0421892945777738,0.1192616504021095,0.003391515024569822,0.001156572118632982,0.011953306416465559,0.024257451392876453,0.15354116265758846,0.03153391271448612,0.00010520732737232478,0.0034807198992532103,-0.021838819717951968,0.0315169022278345,0.02634143886395002,0.00016354264786741648,0.002965831914297592,-0.03156616519771531,0.04556669119315104,0.01798504837457606,0.00039762917783737627,0.009167893986446034,0.019816256597797982,0.0827184760702073,-0.028291266253297354,0.0018568184108441548,0.010655649194180685,0.004079350279517739,0.016557243079144725,-0.0006676320721133873,7.904844732412785e-05,0.012513223025601802,0.04428755758405656,0.05985274235981849,-0.016644078551097483,0.001839394433804644,0.013188585307059983,-0.023640415775804974,0.0714066604503693,-0.040810903875318175,0.00013116936753396777,0.0016153428794575834,0.0019717647366674636,0.005371229365086243,0.0006916620611844235,0.00014881330882255314,0.006887027138184447,0.0010604010169109953,0.004460428728182927,-0.009129873140231342,5.80239721859089e-05,0.014900187374843202,-0.009785025342112848,0.0346376247206821,-0.1924398022032937,0.0026775149854026104,0.03400787918144165,0.024673475452807486,0.10195707529605486,0.005479552107887158,0.0001203797755755359,0.0011884732679748543,0.02619955456337273,0.1329993998770369,-0.06230855163830971,0.00014285814636596716,0.00894877084091086,-0.013613411370478654,0.07970271260673478,0.015037816762556744,8.078720154810995e-05,0.017218603954189705,0.028330391599338086,0.1363559059951218,-0.01708193439723223,5.221869560905948e-05,0.011287967576945973,-0.008577805946372101,0.014523542375750391,-0.057511929650117206,0.00028796059014702616,0.00392355505495957,-0.013030670038773331,0.05561413937911205,-0.04292478654583121,5.826341047845875e-05,0.006466253193908616,-0.002754112026933255,0.023653717960290883,0.0012230497593066901,3.004093690181499e-05,0.004135382744680786,-0.0066307276415619116,0.022083210799300663,-0.02161597412845316,0.00010495616074074839,0.0009473153292448461,0.02507879914057031,0.10218295364585597,0.008085694556638295,0.0003868621633164392,4.676821355645939e-05,0.0037463369752304253,0.017920101275590423,-0.006763398685659074,0.00011973970253847104,0.00569285146231366,0.00046677429856582494 +2019-05-21,-0.014063984767495725,0.10209599295465929,-0.056505997941692386,0.0001456754183466654,0.0005586890850450448,0.008897845265800007,0.025196796954159932,-0.031821467064758316,8.473250372303975e-05,0.010161743926553477,0.051068675499994165,0.15459865147529042,0.0923214655288401,0.00015280800205897573,0.0011414005183103292,-0.01930830645556684,0.022099818175620695,0.004940051102221044,0.0002948650769679973,0.0014178092703090216,-0.0025407028130695467,0.004959637558317495,-0.002901276363208244,0.0002680412907293636,0.03395614872442827,-0.0013541730425216776,0.003630601051174749,0.0020243256667320138,8.144086445167376e-05,0.00033903017525927924,0.02860598955338455,0.10658730342780309,-0.0918503757942962,7.874833059696996e-05,0.024736755314169166,-0.012938275612241628,0.11008640948083341,0.002533960830515423,4.030336480083262e-05,0.007368761125532286,0.02430929224198331,0.01815050229751465,0.003073525012646855,0.0010328290700048824,0.008047201244706472,-0.009377207922057176,0.02087212749266189,-0.08088873956365132,0.00015709729721936834,0.01830656024270332,0.0037691801205410975,0.003394183759309303,-0.07892042273143716,0.0005427950757180859,0.003925964465824653,0.00037240105364323776,0.004160066649883303,-0.023845102904888563,2.667677966820204e-05,0.00028522020018865177,0.027154173006690163,0.08125890549579066,0.006411686525955256,9.926968646036143e-05,0.013899787735431057,0.007871614978473848,0.04819743779238455,-0.0020412156682665405,4.5972879900106125e-05,0.0005762529274480991,-0.012236462962447986,0.009573836236522183,-0.0019186212861813444,0.0024928312373481048,0.005989650730227726,0.021660892090443917,0.1514974019961588,-0.0001823757412033422,0.00011765848752405779,0.02213506879221773,0.0061810975349871865,0.03462526259439086,0.0007564200095321313,0.00027642718607192755,0.02243114015767194,0.040261975962721984,0.28416400565879285,-0.05901887378651606,3.9910482214142324e-05,0.04084798024730189,-0.0005236571141629586,0.0025483763021221803,-0.058553062261693024,0.0003386649545390991,0.0014307561671575556,0.021131795590847716,0.2899514683999026,-0.1947042434225478,3.0244145579310492e-05,0.016258312796370494,0.014193651388777461,0.15210127660711276,-0.0023003006697461634,3.117762177580774e-05,0.0025287135384926083,-0.0030404493013806437,0.007119275773083974,-0.041645190040658656,0.00013757030677651833,0.01173366169351051,-0.049317710761501564,0.326699618322891,0.01722998044846913,3.486957533049746e-05,0.009232297662711863,0.021071390195277734,0.05484880829222505,0.056316562356397586,8.51732806826677e-05,0.020033271179779537,-0.0016749850696861216,0.006182027129691429,-0.001512698379993696,0.00012388782521481615,0.0036800958095624687,0.01622336821480985,0.01586763853988707,-0.0981367467792817,0.0005843920347262315,0.013925210494847039,-0.0071417618377298975,0.024470968208940912,0.0029115847268586367,0.00012284011647780438,0.008014511019900373,-0.06419731461033429,0.22611870955151037,0.034745213386274364,0.0018222146680349168,0.03353946858156847,0.011061951197902315,0.10482332424630174,-0.011270957507687961,2.713663574438059e-05,0.013379928451623386,-0.020937086606689723,0.05652037871588081,0.01377463535183238,0.0012111068377494835,0.007519607439998549,0.008427782620007413,0.056857061703716016,-0.04663630254982142,9.870850090071478e-05,0.01455449659438982,-0.007631119511075017,0.009914899469313234,-0.00817830786808237,0.0001816541509401353,0.006735624165540879,-0.04579672103052948,0.059407211080682906,0.06127281202554914,0.000442485591622117,0.0020523322880516347,0.006375649188905701,0.02284615768251447,-0.0012650859813305635,0.002163025223297475,0.007606095499341737,-0.027811851076468313,0.11674348565887004,-0.011861973350082414,7.643417978814869e-05,0.017936033911743286,-0.0663821935931224,0.10952890132046103,0.032728141516264006,0.0015066072744377276,0.021801955051638178,0.012729401785971678,0.03787781069405278,-0.009791818692241317,0.00013314938410718347,0.00465863279695759,0.004626218818657747,0.013799485507846534,-0.01454344681035481,0.00013590131288546595,0.02298174281022261,0.010961540900509843,0.04311500250556529,-0.0037114887392090423,6.20521906316605e-05,0.004110588438463658,-0.06695764048857063,0.21853013863603335,0.06721546263436176,0.002904068511934976,0.006884097574451476,0.020224773498657898,0.10586271840321873,0.008081470470505782,9.503447839730334e-05,0.011617224048666915,0.007149745854073956,0.036019502286226066,-0.03297919064317175,0.0001439506669842578,0.0035658379623459513,0.0029496467927661637,0.016266286225072413,-0.008285025699945978,8.576899139497445e-05,0.02237935051462642,-0.054115459963453495,0.27128821531592295,0.0535291514429183,5.0134630735725826e-05,0.014057160853123972,0.029763912890373233,0.05813249396637774,0.0052447255356389225,0.00024963211925505674,0.023918130214414877,-0.005560589016011488,0.02619317049368621,-0.07309335660565966,5.2789445909052486e-05,0.0035958716277801417,0.02381211508232038,0.2859427806362045,-0.007095808890719181,2.1485730408358377e-05,0.01836658216097266,-0.016871640829877892,0.04904560895729234,0.03470762255586946,0.00012024475859035695,0.0030282863024783295,-0.02168570677013004,0.0962822277719692,-0.016051679253370088,0.0003550221269576242,0.005784780464013961,-0.005580426318755465,0.022082542291121863,-0.0007633507235649578,0.00014474051163011414,0.002211275259537502,-0.0032306574206999077 +2019-05-22,0.011205924898663407,0.08028207895162896,0.0049250675534637505,0.00014760996633039267,0.0019107207160287182,0.005071406528058812,0.018027252230119688,-0.03837342194487818,6.750087719701011e-05,0.02356130420044893,0.022782254037242843,0.07789596827132297,-0.0386675010094145,0.00013529411764133084,0.014053429779639394,0.007256263412663701,0.0074408457812022545,0.0022119728683214638,0.00032912327257556543,0.005300315613104532,-0.011100199639097842,0.027217001771210076,0.013548724988635014,0.00021339698564078777,0.007611958464178521,-0.01072597651613011,0.029297767208143935,-0.028124377680046452,7.99372231450337e-05,0.004919195076099955,0.04684357346683886,0.16783266061298077,0.03283014612138999,8.18961326396664e-05,0.02727751015125004,-0.010142730581509152,0.08485176255348649,-0.06575087707031241,4.099138913241523e-05,0.009100730213848031,-0.01844496322648759,0.01439949628361679,-0.050281920854143895,0.000987814234890745,0.006351666886984131,-0.009014977059869375,0.021884399589568424,-0.0004192341179734592,0.0001440429066061238,0.00894236345254629,-0.017326098988524646,0.012150990382799279,0.04959671721481045,0.0006969690169808671,0.0013056139568168729,-0.011914352767676521,0.169992138280872,0.059469072407767394,2.0886439264725535e-05,0.004986020045029774,-0.025479673749977703,0.07162679104911435,-0.004439567251665605,0.00010567430638758944,0.02297858809882607,-0.0004941696862103855,0.0024540763418478845,-0.0005816256386402653,5.6682611452323056e-05,0.0008306492271052339,0.02131614337719182,0.01970555466169336,0.03868754641211972,0.0021098080334469166,0.006206759274290924,0.006558804884329137,0.04427961520018882,0.001907411551427549,0.0001218913763838832,0.003915244457082452,-0.042892439760437766,0.2252961825865687,0.005951747960873826,0.00029480520620404985,0.016381951559012745,0.024373857660254804,0.16713423607525027,0.020201813763850714,4.1078994612282355e-05,0.0173915347304647,0.008718774652238932,0.038782955935247575,-0.06664859194495582,0.00037051121108237924,0.015178556726817161,0.008634129162782032,0.12542461791774734,-0.10695246653945538,2.8567088865893098e-05,0.0012981074005647126,0.0032018311066266533,0.030654581676550587,-0.01563900691462282,3.4896730114232764e-05,0.003874537132142393,-0.013992829704178627,0.037170767623188855,-0.016774698206426096,0.00012126257176040941,0.0030822797476345717,-0.021304758820352723,0.16193755223343373,-0.039831609806972174,3.0389351175939385e-05,0.034309270370532885,0.026191711390982066,0.07526472707422739,0.0665506778148262,7.715245816537219e-05,0.008930515583683619,-0.002357231223421773,0.010099646871299956,-0.06640776457271562,0.00010671969895387962,0.0019751743236554927,-0.06747262567422525,0.06957626899407338,0.14180991296127465,0.0005542963721531136,0.018331760389877223,-0.0059937689295119665,0.02360649739441761,-0.005819362570351811,0.00010686966588110875,0.01050859976123302,0.02049658797584607,0.06467715758547374,-0.003510801124875848,0.0020339947156083615,0.0001899534940150386,0.004146146018293681,0.039170864445358125,-0.0009488292326537165,2.7218465189487164e-05,0.011823239789576999,0.024041208711651024,0.0725773423270201,-0.006996117851870688,0.0010829951396848661,0.037330007320436766,0.008184902724697333,0.06500107713320355,-0.03491750600695193,8.385300139453503e-05,0.0013010885860874186,-0.011685052691688326,0.018638434444409338,0.0056499140309072896,0.0001479676003976173,0.0025722487670653254,-0.00574042392327293,0.00947694811271593,0.0001644609914394728,0.00034767973397844626,0.010358936023327268,-0.005230845834943559,0.02182895598424695,-0.0032790365114060568,0.0018573309534975374,0.013204457596729497,0.00810854850176296,0.02874507598686463,-0.011711763446519774,9.05044697348208e-05,0.004381017496741782,-0.03443916820839501,0.041748577650815466,-0.04805472135175205,0.0020506340363557495,0.0031404917432619056,0.013255523363864706,0.04461139820305344,-0.02225416163809666,0.00011772456137335786,0.014140338571520299,0.00016952986269380273,0.00042519065892318233,-0.00855594489659152,0.00016163033441458083,0.00158821568977905,0.0029050534321812134,0.012060375835741231,-0.007720239581197251,5.879050732178131e-05,0.003591983219239798,0.08224805287558978,0.24333890823738316,0.12111620953572716,0.003203554583444718,0.036194495339232705,0.022894087120802372,0.10465590293115834,-0.028802501058514368,0.00010881785799686537,0.0021225693395022734,0.009965941857754632,0.0551784502581264,-0.0023351424468289954,0.00013098140202465,0.009463904233833406,-0.03944895851898589,0.225603370740786,0.09289160649632099,8.270631222443258e-05,0.01627005117086542,-0.02860485360468058,0.14898937470347434,0.012472373171052736,4.8253834116570465e-05,0.01583615190539693,-0.007845124902685834,0.014006384281000645,-0.06574673150667605,0.000273088378606559,0.006359952639244281,-0.007298920112593237,0.027255086163722672,-0.011311208083594575,6.659251647531163e-05,0.011429866021196784,-0.011871480864179764,0.12907067697035862,0.010099351451605206,2.3730593190188716e-05,0.003382793629193013,0.010191098965436471,0.03288447002956746,-0.0051926363432673464,0.00010832760374614113,0.0018472918751091829,0.01005903461179204,0.031167437194143936,0.0030144667718066086,0.0005087251170921044,0.002307573991101217,-0.04362248678343821,0.2307721547924956,0.030753543681750824,0.0001082676749766336,0.010775321169767198,-0.0018428302937297482 +2019-05-23,-0.012066730361892647,0.07865935206907435,-0.0035180020553420323,0.00016222800499581178,0.007482688755401343,-0.007516143795255742,0.029824356655928145,-0.06691322837859678,6.046924171314956e-05,0.025518907147690204,0.018247864139076166,0.07321814535581037,-0.004060062561662346,0.00011528970276058108,0.0163979683905948,0.004443892398949615,0.0050475072905392625,-0.003815350832321386,0.00029713542766138696,0.007048859846864369,-0.010687374952507466,0.023355041775982455,0.011624351435272937,0.00023943529516266517,0.009263664409549668,0.0063940771747473075,0.013224121473429407,-0.040900617358536534,0.00010557419623335383,0.007102597272065174,0.048467262459523854,0.17075612617100966,0.02950752879811075,8.328409137767974e-05,0.001291995060825943,-0.0025093604056330167,0.02034955278826423,-0.0006978312853637419,4.228699128251158e-05,0.015803591447722195,-0.00871403694342111,0.00889880924388803,0.008186616991049533,0.0007551483645463108,0.008437909941787879,0.012473070398301662,0.03232474879242255,-0.0036175108314947567,0.0001349273843591101,0.019371244520048434,0.003378852613867704,0.002943807944099305,-0.01726667674469883,0.0005610274790950612,0.0073663279638402565,0.004297876996346793,0.058478071933893414,-0.027063492224671158,2.190199755984647e-05,0.005829677411779455,-0.022469718117748,0.06232991308184593,-0.03087082186713636,0.00010709079455925354,0.022915017356803395,0.0003085311198774085,0.0018263974907963031,-0.012687302893158824,4.755163914601027e-05,0.0038407496009023783,-0.015990626554759194,0.0135114605066606,0.002787459996532441,0.0023082676088300664,0.012888992881568426,-0.04934790889271983,0.32418219863020153,-0.0038311442780221408,0.00012526556415811955,0.015918008299889114,-0.03050811587717461,0.16079758510286105,0.012167409580611655,0.00029379479480262416,0.009990450299617568,-0.0021032628993597545,0.010975906348864186,-0.03902587713295417,5.397766881480173e-05,0.011792458692974834,-0.057586929821585815,0.2954448255571608,0.13417829796850647,0.0003212434967603669,0.014925405225774638,0.010486667993043654,0.14658041845646316,0.0004892146028125279,2.968874179109971e-05,0.0007512326588409398,-0.005373516312597121,0.05277574497630417,-0.020746844452914363,3.401777530599201e-05,0.012035617540046997,-0.0291335801668525,0.0804920975686216,-0.0390485434863697,0.0001165905546458512,0.01780372641405065,-0.07717144945649562,0.5482630209050645,0.05898275779457736,3.251322719256059e-05,0.00415137229835506,0.02633307353008142,0.08535496267457607,0.055919820845883955,6.839906378915083e-05,0.007574936378085649,-0.00565103735040525,0.021527493889507532,-0.009408107738045282,0.0001200282015151097,0.002861139815228603,0.005468905216229345,0.004725750541017486,-0.006825501335576601,0.0006614624043683265,0.045280534915824476,0.00028060193329910267,0.001046942556089267,-0.02685355329966335,0.0001128116144939911,0.0020575477291924437,-0.04434142913194894,0.17232118296049231,0.03924927679652953,0.0016515441719192952,0.015340761610413716,-0.021900779115869944,0.23419480562521258,0.012569385539118731,2.40471992587448e-05,0.0003019200281076243,-0.05745140659216634,0.1550020523938122,0.02205121467040867,0.0012118098746368249,0.032976407487029735,-0.01463215926210062,0.11784204139496451,-0.0005228775208166838,8.268634697324521e-05,0.010782637671700426,0.00750376500307013,0.010792686301468204,-0.006720781864403884,0.00016409488990890933,0.0016284575398534257,0.036728608825980835,0.05044849240808121,0.03708237028862681,0.0004178882887051996,0.0014234580939539185,-0.012386717539777492,0.05089409518398287,0.007560479321818461,0.0018864234120841744,0.0014244958974312613,-0.025060918761107834,0.10688006787170318,0.023452371270807897,7.522992661186586e-05,0.026797005115535236,-0.026622851107907082,0.039346595665128034,-0.02170273191031396,0.0016819945826814953,0.01853645433269956,-0.014796955441282528,0.03667180794414133,-0.02198244811489737,0.00015986598983287243,0.003917312734311846,-0.021315223032607345,0.051166464403309984,0.008681394692734304,0.00016887480052705964,0.02026170093308936,0.018799005891105777,0.08387838815715726,-0.12969760016172135,5.47014366693956e-05,0.004100708684785159,0.007212254812977755,0.023293523299839174,-0.06297224235412166,0.002934633944897482,0.003784382527860373,-0.01392110028493252,0.08132533078656726,0.011095516943947536,8.515071407906875e-05,0.014590821526707744,-0.016284471869299377,0.08907167656586545,0.019056902932082738,0.00013258513516892532,0.019844223300144403,0.043158388054083556,0.2619995874264195,0.0756065907958327,7.791360637132002e-05,0.015096027601258612,0.048982288390689945,0.20636846239750947,0.022351643273862673,5.965449004388949e-05,0.03753955040386094,0.0075195517207579474,0.012536028592525656,2.3868960533992872e-05,0.0002924565623991986,0.0012227165533362128,0.002886908509472898,0.013402362315630535,0.0011594649590810715,5.356314169018363e-05,0.013476349655929466,0.028527672615455545,0.29489533175756444,0.023519836244210363,2.495914647207501e-05,0.00872829821944686,-0.004360727775237543,0.011893630509670237,-0.003303992461993697,0.00012816029491727338,0.0010928731406713273,0.0016002339529565105,0.005153269772487616,-0.0022201068639310117,0.0004894728117070403,0.010422804186418454,-0.018516862533705276,0.09700249769912414,-0.09902125031185607,0.0001093342629134945,0.011515447532624123,-0.005508623542405987 +2019-05-24,-0.009244743636127836,0.06910320166207401,-0.013645956367181378,0.0001414761676038521,0.015116441992002912,0.07051806708118967,0.2171442810352104,0.1505404911041487,7.792243771330305e-05,0.007999451364523935,-0.051773231290885645,0.18617890094398448,0.10472667969487316,0.00012863880986774758,0.019580441544071917,6.794371644133608e-05,6.711277510355861e-05,-0.00041725408919660533,0.0003416740201965314,0.021608635267933114,-0.008118848267214904,0.01797892212273817,0.0037087533976032194,0.00023628086170417257,0.0014505344057362283,0.0009618253737681341,0.0029254378210547163,-0.003155913340379434,7.178804030395863e-05,0.00021716252386884296,-0.004260846492097486,0.01963906312626698,-0.0015949170477132966,6.365975707362701e-05,0.01857169885780794,-0.0081945462899323,0.07258689459969282,-0.013390020047396799,3.8713756172547206e-05,0.012267343103469223,-0.0074640538213075,0.00672790095012685,-0.07437341032035952,0.0008555392918413387,0.0009066033322892176,0.0029464965696998848,0.010297600349485715,-0.00630178329003083,0.00010005338664746724,0.013391583846619669,0.013757239228185728,0.010258894001946217,0.0020256224907560724,0.000655473449738868,0.00347165520953393,0.009114196674288038,0.11985214681542025,0.021250286169643747,2.2661850373393743e-05,0.0019494192468174644,-0.0050091064949847166,0.01626271218138013,0.0009943713120368692,9.149941701317814e-05,0.02780269396010847,0.014527803721486324,0.07685430101477159,-0.01819140051262334,5.32100423960291e-05,0.004146923659945445,0.007719181520322907,0.007023456557155174,-0.17368983621470202,0.002143597914191418,0.0013307901464803711,-0.07211080916668103,0.4217599496798075,0.04549259224892349,0.00014069774595420638,0.016292333936821408,-0.04867357787051541,0.25160278986583806,-0.023867699605834528,0.0002995615374043332,0.005745118294586238,0.005919131258515404,0.03530227571629616,-0.06025624184515806,4.722981279336262e-05,0.028343146741494147,-0.010528608681575622,0.05670278307276473,0.01124738326248211,0.00030602254077400536,0.01904693210365404,0.039663211353121085,0.45561781597105183,0.019775897708424146,3.6125794533704065e-05,0.01920791939766184,-0.0034565494818543925,0.0315161977231361,-0.012748598364143883,3.664297033401337e-05,0.002413213536744416,0.022578311110403964,0.07212312138434603,0.04600167341835404,0.00010084159231452289,0.004288508084490664,-0.005329006119337879,0.048915719451594536,-0.009127841198514997,2.516460683751311e-05,0.02526528399497633,0.0033397478831827783,0.010223441161082392,0.0001577901944074349,7.242591051532974e-05,0.0023999514535086204,0.022072763576956752,0.10454158290952408,0.209721293150285,9.654198753445582e-05,0.00783687160993147,0.030072787128081015,0.03286741412358948,0.01520407661726139,0.0005229783428939728,0.0005805265821094885,-0.03708274837768108,0.14150562460431151,0.10440458384501099,0.00011030221170249259,0.0012226712778813538,0.03715410560825307,0.11100844055383145,0.008141603877436728,0.002148176613163632,0.014320676979171299,0.056192222179149216,0.47285399215268353,0.058987842678802214,3.055845143353862e-05,0.02255775521137255,-0.05261386207445117,0.18730958313766122,0.02576486803803803,0.0009183568176157521,0.012143133163789963,-0.004601310576197832,0.03408870005542907,-0.016198409455870356,8.988697208880623e-05,0.006447624845634465,0.013827969405730806,0.020931412108607474,-0.048315335121791855,0.0001559212356654832,0.011339692479926135,0.03344891417857451,0.044310918143277034,-0.10979274701143336,0.00043328653121349963,0.012950887724093668,0.012901706617490953,0.04771645517350303,0.011303147287688721,0.0020957010468347793,0.004607362630682288,0.0011835035471732835,0.004414546654286929,-0.04285271595306134,8.601492666401579e-05,0.026720279546009886,0.03288739456419454,0.043818148199820134,-0.031081918663421887,0.001865746521906193,0.009040957107727062,-0.005503582548653221,0.016552506655906407,-0.011993595831345048,0.00013173396091869315,0.010376033877645357,0.009334712067793774,0.02579490357070934,-0.02781396634418613,0.00014669908125132048,0.0030517337630100424,0.005474904936509576,0.023188513608604792,-0.10314836024790602,5.7625883463858776e-05,0.010858747487230026,0.03884056558818546,0.1231540905949835,-0.13881846423887456,0.0029891985417711464,0.006318138743692761,-0.05403140087974663,0.25199585939157887,0.0776243080691001,0.00010665798964329077,0.016841654978321803,-0.019285852039131017,0.08370367187008539,0.028803506570451932,0.00016709178754184832,0.01633908022642971,-0.008307204779547672,0.048869216093837736,-0.030869706101234667,8.040225742376718e-05,0.0025177476375139803,-0.01726604061828184,0.09532203312888748,-0.0028033906983304293,4.5524675233629095e-05,0.03690316325485204,-0.003200738380271381,0.006750024651276626,-0.04537436670223849,0.00023119275098397934,0.025690711174752193,-0.028467640781750302,0.11082141345340071,0.042173668533255444,6.387665535046229e-05,0.0005028634352147643,0.008606746075958368,0.12013598259678666,-0.0005784644091343932,1.848405154055467e-05,0.0012532130790068581,-0.011925802256758298,0.040521011032750444,0.01759901778650079,0.00010287652727826963,0.006729277157566726,-0.012111223684867597,0.049031296889567456,0.0038353081345856065,0.00038935218442550214,0.014411401055016804,-0.005780725550819764,0.031430730402993684,0.0008561343038574061,0.00010534154254089473,0.011158495882591058,0.0005030494035626433 +2019-05-27,0.031858875792854985,0.22841334898916366,0.05231511782277733,0.00014750119852527778,0.02362689755257868,0.0376424634548646,0.13638809345209926,0.02279282658963404,6.622349625949296e-05,0.01563908500280224,-0.02394730071101775,0.08062387727455828,0.020133089630050637,0.0001374010628987705,0.004644771645525809,-0.009102955941543712,0.008660385360925761,-0.05114401125009953,0.0003547423835886199,0.0016943255294962411,-0.026119170468753287,0.058618423015813846,0.024900096621012106,0.00023314334411255217,0.002714365165606222,0.002570867359834472,0.009030751630246425,-0.10755965335168471,6.215878431541831e-05,0.00048293282279520734,-0.021093562363719866,0.0720655690555925,-0.0018861903049662257,8.588394124822841e-05,0.018548715138655136,0.014270557490052545,0.1366836558925185,0.011086485407958915,3.5803292583840486e-05,0.01086403030473184,0.0050330874100782555,0.004332499825944105,-0.03043752268031006,0.000895861154622901,0.0010382653713347236,0.01253385366302198,0.03475991802378635,-0.08968894950661857,0.00012608625997679383,0.010798841789040423,0.03136693128273765,0.018869735022856902,0.08083521603331019,0.0008125135066085067,0.005802532489988998,-0.02643065975256752,0.31282607137144136,0.2204853078460601,2.5178384000750328e-05,0.0033578307654214953,0.019997392993218115,0.061237516127667875,0.003728968673026015,9.700784401496164e-05,0.0015396377976491986,0.0009292467379869346,0.005182332653666943,-0.0003742448136747202,5.047398294993357e-05,0.012502597713157072,-0.018377178692002383,0.017968128897364783,0.0025892224041276267,0.0019947981483157263,0.0018473682152629748,-0.0342778287860404,0.186214579519689,-0.010988649228786142,0.00015147875683050362,0.015715895266694875,-0.06775538146808588,0.3891022814315896,0.06906974668778758,0.0002696424406297685,0.004936788264615233,0.0402246585486924,0.21144517493194026,0.031794403436476305,5.358651862614243e-05,0.0007865267228952435,-0.026817731741445312,0.12180645019102172,0.009320327310110963,0.0003628595544164611,0.013826777443523293,0.027070204796250406,0.4077418875676994,0.0024958292454180272,2.7550941434093536e-05,0.028802737300583275,0.0042758089528806996,0.04170850410538619,-0.0007680100832267001,3.425116811355542e-05,0.01443047946272348,0.006966525417716622,0.020825530345990915,-0.004877731620893998,0.00010775635981263314,0.006151986566259521,-0.006941062496015235,0.04434915371378322,-0.0016543576594217943,3.6152055407139884e-05,0.017804428311992825,-0.003476931894571858,0.008617545157045802,-0.008468851327386374,8.945198830693878e-05,0.006988473512980886,-0.0019819897127495855,0.0058577948994047845,-0.04587774402734588,0.00015470908945316991,0.004278172656209636,-0.012271384880610215,0.011972402600568489,-0.010851771593751195,0.0005858518778921409,0.0009187713664847938,0.009762669465265618,0.041512888900461876,-0.029841908377167627,9.898551285384873e-05,0.009019733788726864,0.042893842250369414,0.15057510346584263,-1.050380426877929e-05,0.0018283568141516594,0.016761765729587888,0.02520330374957284,0.22663549660906834,0.007498727483247525,2.8596424607268266e-05,0.03465351014960774,-0.030573825278144087,0.08561302459719386,0.021058176296284443,0.0011675653792079005,0.03522313769845215,0.01068153583543271,0.07097815736360732,0.0018886562511694334,0.00010021543697071278,0.030035531764557446,-0.011620301823929305,0.01762219863822756,-0.06628769094716155,0.00015563336316544996,0.012835509212583474,0.0010928466369063618,0.0016115406884664326,-0.0503273914964634,0.00038924393899802593,0.004850263647306717,-0.02252026414485557,0.09094865880233972,-0.047626952398495355,0.0019192322038624405,0.0025261504195154684,0.030871753566400387,0.1330085524853258,0.05240514107787904,7.446841359103392e-05,0.018291439881116364,0.0031162651257459566,0.004148137223615877,-0.003979472871026334,0.001867490823915296,0.005784347285740821,0.01115675581057377,0.03743205319939793,-0.001557779320655132,0.00011808923652937505,0.014432855942949237,-0.053528808369614135,0.1579353787723939,0.15229903689281551,0.00013739423972727153,0.0010185156460055748,-2.442154817295443e-05,0.00010109964048064259,-0.006518276882189531,5.895728906309494e-05,0.010690383810609326,0.02814630762509414,0.08026611504520606,0.008173898776339658,0.003323588477903927,0.016003821277442782,0.02529556757826404,0.1219292517966503,0.00523446212663591,0.00010319938052989962,0.011767278366192856,0.012839477566708295,0.08336254869627678,-0.014803648819841914,0.00011169587974748408,0.007773878259249434,0.009288783563960276,0.046681144044739595,-0.02011587367026936,9.411656133006253e-05,0.0040092004595969665,-0.0006808431311875104,0.0035383387016151182,-0.04626213518371232,4.836097550501729e-05,0.0029218090326248907,-0.03768783252010565,0.07545170579430434,-0.25651591501350707,0.0002435350602189237,0.009686252369794904,-0.0019987711269574123,0.009544938471416181,-0.06793924727503947,5.207200616515999e-05,0.0010992248508647317,0.009596289615087617,0.08478586782306949,-0.0049624676248987585,2.9201903548562617e-05,0.015402242319646011,-0.029093012589611705,0.08221043196423249,0.09438436135843838,0.00012370029327529774,0.00016479958088955855,-0.011854472417421468,0.0501890430677782,-0.020159095263634047,0.00037230707234076397,0.0015958664018873407,-0.01923408044649574,0.09403696104167862,-0.030602791771376644,0.00011715063268563679,0.011285449117225281,-0.00020751014639905677 +2019-05-28,-0.023815168895830113,0.1624143773693428,0.013409064924571673,0.0001550657122193705,0.009822244778229634,-0.020736345310012953,0.06263859507779683,-0.04206981758224555,7.943295781697594e-05,0.04172116670967627,0.040359239384307445,0.14542192782135183,0.03952108079356579,0.0001283838158390205,0.0026113954037503273,0.016830566223695834,0.015659887201699453,0.014225152698842846,0.0003627253878970381,0.015349017576710554,-0.011315179272387397,0.02849878460033239,0.0025520084965385053,0.00020774609664343582,0.019859135321861072,-0.003778338389883434,0.010834155034636297,0.0026588284310136837,7.614695562527516e-05,0.008482964779353801,-0.03571503310390307,0.11778831741380912,-0.010263267386037979,8.896899693131667e-05,0.033233961002202904,-0.005765620157058587,0.0481523485840541,-0.035150453172691276,4.106077740297133e-05,0.008750107482693458,0.012099498893727585,0.010391453569125712,0.017375065609215555,0.0008979163287980422,0.008077066289043172,0.012933839633051879,0.031532201610547254,0.006968181222917677,0.00014342837021106997,0.004458746891701969,0.010268592176181974,0.007386546091398222,-0.10648124387818741,0.0006795068701651045,0.004277484027349345,-0.008082808241343878,0.09807884674683834,0.00980846233443961,2.4558945449109716e-05,0.0013273593674765882,0.0018891658965695258,0.005512140154213971,-0.05158685798242461,0.00010181244880987478,0.03063116110651474,0.020251326766292394,0.10772019137456591,0.07502840911084974,5.291979867657727e-05,0.009440487244489463,0.023062889813678638,0.01894878491289085,0.06350926345529348,0.0023738612460326236,0.013336147881911693,0.040632222798239324,0.2723533136317847,0.043737293499760785,0.00012276936948227225,0.031361341311991364,-0.09193105000181075,0.5412702825191623,0.0656356899877804,0.0002630003151104094,0.0011676594584365462,-0.018870710332087957,0.10153486238718575,-0.0034828620778956207,5.2352089444242055e-05,0.008540297250087474,0.05085036153648118,0.292979465578828,-0.004881998241455015,0.0002860511315009995,0.0001228448032433273,0.038507623394502415,0.528478132736005,-0.03741978989862054,3.023778154754023e-05,0.0049554355969039406,-0.007107995105210245,0.072221044339568,0.009306770902991679,3.288251788212206e-05,0.006771737347356378,-0.0024083060672762157,0.006586507552827484,-0.11089872452093748,0.00011778208592854686,0.00097110608233106,0.004310443346695601,0.027564965824519654,0.0033517351451407807,3.61207583044482e-05,0.010694752172200271,0.001398990140776473,0.004450848117561539,-0.1828141913188028,6.968659772047032e-05,0.0030683071775155484,0.002904646818873179,0.010033775397275683,-0.036955172582943834,0.00013236633789611135,0.0031094026911959883,0.01370039823073781,0.015390610103663637,-0.05399664614412015,0.0005088068109939928,0.04596577095215138,0.01923145251698215,0.06749984519888724,0.03343369118181964,0.00011992102149115138,0.015008781129828556,-0.029941624751677363,0.09756766681649835,-0.07693670657959598,0.0019696479948604667,0.04483119564474794,-0.09198753983717557,0.7931278057289517,0.15864183240904892,2.982414646792403e-05,0.014733504044445992,-0.04684253256342097,0.11366138907323425,0.02478389369629997,0.001347406623258043,0.05359725450688972,0.011167146776057495,0.09991670286469126,0.006851600431639556,7.442687307672986e-05,0.008094875735261185,0.025886986711459364,0.03132636400680141,-0.013599560793266161,0.00019503695009035328,0.012590804570181378,0.034699580428934514,0.051457599082350806,0.04730159285328639,0.0003870602906413892,0.015541360248572597,-0.013773628290692867,0.04690939236302141,0.002254050958257619,0.0022758251489102617,0.0016590998721039436,0.015248182874216788,0.06298401802325346,0.009784072138471283,7.767443440900137e-05,0.003981036548306635,0.0030936492003999162,0.004919408887545605,-0.046794587837454195,0.0015632748334232101,0.010715759416700043,-0.00905821476406981,0.0358552655165692,-0.012715546358124514,0.00010009346111340369,0.002641871805570335,0.014497539551780937,0.04171609577365868,-0.0826055201116102,0.00014088054482015627,0.016375821368894244,-0.0029783607450697227,0.011650544129984782,-0.01470102112035381,6.239431412007947e-05,0.006639151189626779,-0.019514995361518007,0.05075965431580144,-0.007963556101624468,0.003643911784170388,0.016777396254980828,-0.018893612709430945,0.091334701112433,0.01305080300671093,0.00010290104080932164,0.014576940053622898,0.019271747129327475,0.09181932826478181,-0.10239736142793557,0.00015221160369739733,0.00776548005657449,-0.007795844859843731,0.04087289489146061,0.006157860262491461,9.021452944597135e-05,0.003528071494598615,-0.04863500888680474,0.22521853483951346,0.039257104044688476,5.427405440119262e-05,0.03835480431681829,-0.03343582536385025,0.06601068673869735,0.04540298613345874,0.00024696032691508393,0.003904697761246458,-0.030906108082252075,0.12775006068061265,-0.06847290697425676,6.0158580462354936e-05,0.012447928341402108,-0.0024300468662581116,0.02431420793882024,-0.03615010262774376,2.578610866485205e-05,0.01624525204583469,-0.0033752506798790053,0.011935806335565641,-0.008017578336207488,9.884694113734432e-05,0.006015818915758079,0.000437059962113475,0.001752074539629399,-0.008078973992354492,0.0003932026317803758,0.007395911016715768,-0.04365975755553106,0.21090616548839228,-0.031361681776531106,0.00011856700231961116,0.007948684690913147,-0.003327235763731384 +2019-05-29,-0.05560390619845182,0.34634905312527486,0.08380649058108199,0.00016977661925814857,0.0033456005556958875,-0.007843704490208344,0.02843329794750073,-0.014733541844225127,6.619184917699896e-05,0.0018638939866798454,0.1217608282879518,0.4511010748658477,0.30346079242187385,0.00012486218667703654,0.013720514636742943,-0.00859305292494179,0.0076698017076656765,-0.0022758590475199345,0.00037812135624000986,0.01119794364138127,0.0030599071589354665,0.00837596379636785,-0.0027298876363402304,0.0001911486479533741,0.013695364198600625,0.0011331633870277505,0.0036191080854359884,-1.4347716755308847e-06,6.836561422948605e-05,0.0055759893406835915,-0.017287836800461632,0.05637804768352145,-0.06030889159398787,8.997471438235028e-05,0.009432644766420433,-0.051369502496689846,0.36664305258090774,0.04799772863736027,4.8046362551889254e-05,0.004523952016583821,0.002186939806793476,0.0017851430301319409,-0.00011753156645515387,0.0009447319384058808,0.004869950101514812,-0.020033005887641467,0.048765574624348315,0.005426920563528473,0.00014364637110167992,0.03216178826163867,0.015210382943864667,0.010786886921832214,-0.08024213440532085,0.0006892366777240438,0.0023171888753602955,0.000922175909973058,0.012379670299078058,-0.011736800079368967,2.2198697025574256e-05,0.0003088374864409606,-0.010373810664762145,0.02796682944520386,0.0038635760763321854,0.00011019099921451652,0.03718354801314401,-0.0006360870937309723,0.0035960309244830336,-0.00012924275105588925,4.979147413655248e-05,0.010183707367161178,-0.02935553882923101,0.02665660850504389,0.011442022398014137,0.0021478707078380842,0.015210979805142705,-0.046905306910506844,0.35337114492962984,0.00992289070026657,0.00010923026973892817,0.030684674114495245,0.07546017348787809,0.47727114681045774,0.12820993250151144,0.00024482786826479083,0.018637358582871962,0.044850819133002116,0.2751419061938021,0.0323377652196655,4.5917115016617494e-05,0.021840464605582498,-0.005566944894290763,0.02787230589668373,-0.009777053392284182,0.00032917802111746787,0.012279145024248601,-0.04023629927014397,0.5472210469233386,0.08754043602178237,3.051303929500614e-05,0.018283151217323785,0.009076321346737042,0.09214850359361675,-0.0628935176752436,3.290813616740741e-05,0.0029894159313967232,-0.024342579000830984,0.07116111896192621,0.002028981118193952,0.00011019111445706659,0.004077095913015675,0.04829148420643102,0.3403230075896794,-0.007885991667538074,3.2777182467832003e-05,0.003217059008697335,-0.016215947308166688,0.045501273981607124,0.028838533150842192,7.901256311413268e-05,0.011188858912372077,0.006092484361906423,0.02128469508408071,-0.014839856377132603,0.00013088069294412671,0.0011889193948500148,0.08446567485912965,0.079127778097664,0.1730020568144304,0.0006101362756777393,0.02499529801751838,-0.031181113870368753,0.12140143552793262,-0.0014420263167337446,0.00010810699912039277,0.0018643665743581046,0.06927142396946993,0.23663404468941354,0.05418859786608994,0.001878867105115508,0.002174926866640817,0.021930409292352775,0.20443962229018603,-0.0006948099630967067,2.758442036292167e-05,0.008919153483697042,0.033032908772714996,0.09470719941150292,-0.010759683485989336,0.0011403419299583044,0.0028202622067506145,0.004982914814426291,0.03423929456878884,0.0019856049693959084,9.691350432477996e-05,0.011176081803278785,-0.021197537377081202,0.0321823763016582,0.03024393241044755,0.00015545786084093436,0.021633419587034252,-0.023000040782431622,0.036527690800932114,-0.014630594982389151,0.000361418435780748,0.0204494581282186,-0.0037589249584775394,0.012919582790309072,-0.002802131812440886,0.0022550984559319334,0.004166528607843178,0.004003123449951402,0.015338020129005535,0.0003909139446423621,8.37375114699469e-05,0.013580053927602939,0.02455471505950003,0.03268714566791866,-0.1747778954818707,0.0018673902724974066,0.005329546129490199,-0.027859661666173565,0.11409933912163218,0.017571340597876507,9.674059307290096e-05,0.011845935940713592,9.310726559356728e-05,0.00028494935063987824,-0.0012990236155088707,0.00013245741548060489,0.023608955941180006,-0.01320204041252076,0.0644227566209385,0.0069126917711672285,5.001677419542151e-05,0.01740377961696322,0.02528348836043575,0.072639785059929,0.006929326595649061,0.0032989862149609937,0.016254185074864452,-0.01262860375853059,0.058516936721655595,0.0066180550516826,0.0001073530343077703,0.015749045059372933,-0.002695440596733229,0.013871027762188478,0.002085499436192005,0.00014092300927551028,0.015713907044681306,0.04205583991315944,0.2382789424556921,0.06192145247833678,8.348132734182415e-05,0.002808819156922881,0.019629190969014818,0.09554838002850227,-0.002971875544787461,5.163289389919169e-05,0.00675867842087558,0.034101064302710454,0.05870894560815615,0.035451792990344184,0.00028319986829524455,0.016207501381860473,-0.016462628574648166,0.07249953228599355,-0.05311528799312853,5.646487238215598e-05,0.002537280887838709,0.017112328688169944,0.17887187230772397,0.012717517550299897,2.468302289156672e-05,0.0024325517336902447,0.008736968482762888,0.03199066004600314,0.019549361858150316,9.546551788344291e-05,0.0036128424330664904,-0.01695560743276711,0.07083550083968866,0.014619596237356812,0.0003773030839089783,0.002851909484360387,-0.01491983119978018,0.08127528617644503,-0.10097808322644293,0.0001051422334818366,0.02586508940237073,0.00355830595801939 +2019-05-30,0.037610950521335666,0.274937173566055,0.07379633456408598,0.00014466631846790458,0.003091852664003264,-0.006133015682123164,0.021808212221029074,0.004074497992963583,6.747836281414875e-05,0.015818531504295415,0.03462222615953651,0.1146278657422027,0.007435440389996985,0.00013972109710366307,0.0030866834580408477,0.005682433227023434,0.007051531133362408,-0.0003307136879905646,0.0002719686025383977,0.005247262443295337,0.010047837146306604,0.025045834900373293,-0.002113152970208011,0.0002099108302360103,0.006930340307825634,-0.003402981354105701,0.009845186657998108,-0.011822627176544554,7.547139106106637e-05,0.004559136899279559,0.015087121014012913,0.061121326814285316,0.001676155266387351,7.242749348938808e-05,0.0168059070630734,0.03037051855882315,0.2891345837207849,0.050633832726421406,3.6020586556044645e-05,0.0077392077072497055,-0.009750075086325097,0.006979220812028566,0.01466141146084581,0.0010773226927239558,0.002722677996258852,-0.02238266216775918,0.05079481058447969,-0.0026639978517980214,0.0001540828422546042,0.005773994922847485,-0.018481995369115673,0.014275210396598056,0.10779907062037676,0.000632835301553044,0.012343977589924227,-0.005182919226921379,0.06453166305290994,0.0007864048030009979,2.3934500727991075e-05,0.010569283186261179,0.03421775173757977,0.091903662783332,0.017945212580021925,0.000110603708391245,0.013978152786066254,-0.020092608558395245,0.1023994977688775,0.08130632596048226,5.523321397486922e-05,0.003324566598935271,0.007116517850444756,0.0070772741777295175,-0.02667906669710393,0.0019612117876333527,0.006759589485106519,-0.06942723133183179,0.4832872422084868,0.03339666971089809,0.00011821609885027102,0.00235795516641139,-0.025946987015910774,0.13529664786942233,-0.0011302866461977855,0.000296966957705599,0.014935882803161864,-0.024672776995940667,0.14487857099182036,-0.022563990602749457,4.797056523045128e-05,0.016832638122448767,0.002748896505713372,0.02022797794625788,-0.0008861514402705387,0.0002239714827800045,0.007918867764823213,-0.02087919065591195,0.35753046598903404,-0.07816705805087555,2.4234319896544206e-05,0.0062917204789174706,-0.005796931267078464,0.05340407617226437,0.0042370811972454155,3.6266484021833255e-05,0.002373238294470584,0.024395195941257088,0.06658285073433436,0.05778903731096775,0.00011802246500854159,0.006785777024075877,-0.004598094841530488,0.036197351007599736,-0.10644120274940465,2.9342256674192745e-05,0.0012740527195008462,-0.009240720774565385,0.0274536820395295,0.0030813277519127764,7.462470549953308e-05,0.0015705163025547374,-0.001500668129568139,0.0059173069171743935,-0.007578148795423168,0.00011596025432797403,0.004020291479157384,-0.053799452409666,0.05047842406948902,0.06051322285667288,0.0006091827945478859,0.009586800108272857,0.026391577924383496,0.11319956248829026,0.07608966634978268,9.813108885066844e-05,0.0017669233906622418,-0.06780800389582288,0.2196045125486991,0.049737557804487575,0.001981795667732633,0.03960132401426919,-0.009785408807777889,0.09399702096224377,0.0010235492885076222,2.6769920382398883e-05,0.0349170538498709,0.022137853662438256,0.05984086468989818,-0.015898981460673336,0.0012095084914353457,0.024306238375440062,0.008025149925375785,0.05697314782691661,-0.028155362270526625,9.380124063904914e-05,0.0067726788581582474,-0.014183738631269417,0.02060612842163742,-0.033868403849213795,0.0001624574768788488,0.0011081460592760567,-0.01124027302710124,0.01717434140153668,-0.06559009194972534,0.0003756649548991906,0.018056002203434608,0.005523544767959342,0.020184174055485588,0.00737535773403352,0.0021210809176540387,0.0026572373832647314,-0.040487383247568294,0.1774897264660187,0.04046720634966621,7.318749099159268e-05,0.013482657732070203,-0.012017956746301225,0.01705225195783389,-0.012394332666462591,0.001751967669129851,0.017760221858766297,0.017803221925018462,0.05431053721705018,-0.0009549653347664824,0.0001298764901105447,0.01555534316316031,-0.00396627901032163,0.010930686860224362,-0.023503113737319573,0.00014709441548798162,0.0027465974859468886,-0.010895997635592831,0.049083166452554505,-0.013872631915889963,5.4181166775373224e-05,0.009720255653220489,0.04958127623454109,0.1434924866340406,0.04459719021088916,0.0032749645074568938,0.003195321911176734,-0.04227699099352019,0.1821579990435327,0.06158424872891088,0.00011545065284956086,0.025706466751597098,-0.017271200502085072,0.09972573192919805,0.012861682492591701,0.00012559607800590475,0.005605815089982796,-0.021864291084888656,0.14294297101551043,-0.007731579328984094,7.234712790513035e-05,0.006847048971621463,-0.023046834261681342,0.12325085652337603,0.0002917471235207801,4.69968475658012e-05,0.0032802708033036164,-0.029809580296555203,0.05424794280534452,0.02689969238762393,0.0002679180551986126,0.010896963981394992,-0.0116004225640077,0.04691025716546228,0.0021847344439985795,6.149224820506926e-05,0.003654572388467579,-0.03442702833654321,0.372583235519896,0.07057392311891741,2.384006925358416e-05,0.010562605506925131,-0.015376120427737495,0.052652340315693553,-0.1150492477383756,0.00010207938776817537,0.011503177929604739,-0.0026317407748424736,0.010751070876587472,-0.0009166747180685613,0.00038585075574194084,0.002888675382632309,-0.01988615355302873,0.0827269275998101,-0.053280884194743486,0.00013768153180889942,0.00013900297740792353,-0.006739391844856532 +2019-05-31,0.05935004687769002,0.4910170548076912,0.13805865754188987,0.00012782360837352,0.024438768101383356,0.0042433022804509325,0.013809667473527647,-0.0632887977593207,7.372780019224272e-05,0.012597248133804402,0.029972875704287014,0.07836934384804373,0.003507229138337084,0.00017692100860923642,0.04062955752020634,0.003697876503083343,0.004375065893804725,-0.008041267901623428,0.00028525657336513543,0.022104440295582277,0.02953762333314587,0.06132289252256122,-0.08547843288333182,0.000252029099991689,0.0003802364994246757,0.011327267938523943,0.03469635345905698,0.013930147856065583,7.128334647990068e-05,0.0039992046682191355,-0.04304491918741822,0.15915819583895968,0.03923984701898888,7.935654374570358e-05,0.007010728536479629,0.026798590769399,0.23561880452440254,0.02744847658835894,3.900323441250001e-05,0.0051066577541929725,0.027925765345070856,0.021441039551518968,0.09143232642763846,0.0010043938228551678,0.007765587626412724,-0.007330608726309529,0.016321941460418245,-0.07254644801585292,0.00015704716826827825,0.0031382459459039246,0.009586377983384829,0.007031805030046021,-0.015312567891854314,0.000666364859321612,0.010207889369323292,0.002182904725041849,0.02595318178680834,-0.001730584684112309,2.5064956868706766e-05,0.004507387944548567,0.01914177508088855,0.05977424017279811,-0.02489587033000239,9.513036925938562e-05,0.0008013459121383822,-0.01198432529060181,0.06207006071507906,-0.03146078396227526,5.4349210122631e-05,0.0007715786512188106,-0.029626656516882986,0.024386473512696613,0.008941520628254866,0.0023694994528331336,0.016358705651717848,-0.007848960048313283,0.05307176220398619,0.0003931093308021464,0.00012170284145076511,0.033038460839689976,0.010542613512666062,0.053472154855165537,0.0062788720436171746,0.0003053014252712074,0.031799413810327394,-0.0016504504783161201,0.01044245937593417,-0.0410813699500902,4.452056420339485e-05,0.022163145358062505,0.034943857595769526,0.19616270714475617,0.014519359909375296,0.00029358996551210974,0.0067289849272858335,0.0008815065235527973,0.012261735837237019,0.0012874474041521724,2.983347248664757e-05,0.0024245866756797125,-0.005031843360886663,0.05624942361011379,0.007912950581037604,2.98875795971907e-05,0.01029260778909209,-0.05190477154614133,0.14246484485238428,0.04694330561327889,0.00011736060245196646,0.003754251443949185,-0.03287042349328791,0.1981050449888319,-0.09836682785751466,3.832676289701219e-05,0.0031947239450615316,-0.004310981980301517,0.011199415383676333,-0.10046463341413005,8.534110012359286e-05,0.0037657663280143213,-0.00012233272113364505,0.00047524202571018036,-0.026517246971399698,0.00011769998117530951,0.007236117831299889,-0.04504912845193062,0.035707734962298975,0.027212157752099404,0.0007211069014512366,0.008994592462407445,0.03308960596160926,0.1207832925160444,0.08891495827056052,0.00011531100052457716,0.00254432241665,0.020351728024802326,0.07303827986827331,0.0015705724091652138,0.0017884216900418853,0.03164990795616786,-0.004439474065676674,0.038150362401831193,-0.000481980785179461,2.992368337375101e-05,0.0001907691124203015,0.0090074220028647,0.020389994218657503,-0.0950782987527424,0.0014442909079458166,0.010828514413126386,0.02424756143813285,0.18882150802688907,0.023586063962773754,8.551499011183054e-05,0.012288370629555442,0.026883631372250364,0.03781896875062738,0.03885730755062955,0.00016777360471527045,0.011507168259595312,-0.04251364346544449,0.056686814488440596,0.0340259723698816,0.00043047723284174146,0.0157140801866439,0.04085301057112204,0.1340331448196726,0.14953712544823347,0.0023624476845259448,0.015041742564425859,0.03798910873765968,0.15151480229290287,0.04631535139469306,8.044413971892795e-05,0.001000648552463603,-0.0007717627621636983,0.001114305410277458,-0.0014845105765492821,0.001721697197440382,0.007356640475075823,-0.014478560315020192,0.042400122670917445,-0.01576880146072003,0.0001352926810325263,0.00019843321982605084,-0.028344755720870297,0.07405659011437721,0.0075913425492381776,0.0001551562888474844,0.0008877818257131086,-0.02328769815641839,0.1128702398315705,-0.01154298025732561,5.035713812894449e-05,0.010932097292306214,-0.045704690559806596,0.13576892524719564,0.02123128988082024,0.0031906447405588415,0.016830783030845797,0.0018587288393727129,0.00943680080821441,-0.01562516610250781,9.797873319354981e-05,0.004205993867344037,-0.04007886028892115,0.23208694964901447,0.10189970531843746,0.00012523491546373452,0.010348988945071481,0.03265851015909788,0.19062065344952878,-0.00822376646809823,8.103546221663511e-05,0.0017929574535330726,0.013938528994607687,0.06545513811636053,-0.16880529871585734,5.352055324687751e-05,7.922871692907652e-05,0.0025063103082386636,0.003976304855564755,-0.13301867450051727,0.0003073155676964393,0.008430599371012308,0.022759353131216794,0.10195063139466708,0.12362457062413187,5.551167993240464e-05,0.0026773484362558487,0.005577754148968273,0.0442823489128283,-0.003157595529426283,3.249825213992032e-05,0.0029599752331539225,0.009990213452629732,0.03547417423141841,0.04547398054280085,9.843996199224744e-05,0.008292750214977,-0.0026346785876399776,0.01072853966254264,-0.03431964218202067,0.0003870927182479554,0.006647885003057223,-0.04681570457928117,0.2842357561455829,0.065277633104404,9.43375622846307e-05,0.006270517273408181,0.00248196131239058 +2019-06-03,-0.009097195817562881,0.07582389388958058,0.0014350961011262721,0.00012687850225452822,0.007847222735517186,-0.020164791664520947,0.06401557494281886,0.017021165925416772,7.55820410476908e-05,0.015064088392539223,0.014883567226544372,0.05210426718615309,0.00016862735257774732,0.00013213897867262988,0.012658076635587372,-0.0062493784125018555,0.004893771758905963,0.001985721874971646,0.0004309838225961046,0.0037228340426449878,0.006065282569197305,0.01580546185448661,-0.0701441643589558,0.00020078978741180245,0.02290035942361457,-0.0062011885647224796,0.018262546315250597,0.013204974784693851,7.414132565133545e-05,1.7142378583061323e-05,-0.029610960246225063,0.11519119641441465,-0.06875418362949567,7.54263439883484e-05,0.001842490459908017,-0.014433950892577783,0.13024045627180394,0.0024595617529264624,3.8004754274177714e-05,0.00827983247038099,-0.007826035042563705,0.007120932797837892,0.004744883108124569,0.000847519477017044,0.007063510145678751,0.013421644824857259,0.025319665614587407,0.005922803264776366,0.00018535728625798816,0.0043010901641560954,-0.018959893053543814,0.014191834399323266,0.07751096107809402,0.000653012818847531,0.005381665455683578,-0.006905626053045819,0.10762119041261183,-0.017481693032075817,1.9121768455557104e-05,0.003864395561492961,-0.014632941902425574,0.04657723429272382,-0.15463003988979024,9.332736177740298e-05,0.021260845251830775,-0.009898972716908825,0.048303809482869706,0.015531711737352225,5.7686018225747296e-05,0.004573051243533123,-0.010478135506114301,0.006663521449487728,-0.05790530791953795,0.0030669251937339857,0.01555967496735505,-0.04991468231256563,0.31849339338130916,0.002144165235752898,0.00012896741383231028,0.03758113496360353,0.04094011183037179,0.2019836896999761,0.033915052886008046,0.0003138636024891573,0.036976047086561346,-0.04823908009159326,0.26165198807249535,0.05705353686344956,5.1932105940980215e-05,0.010901414328882452,0.049209879830617975,0.3326542322628352,0.030792398053863194,0.0002438069372017219,0.01381224424827996,-0.009838505652806967,0.13291939762160346,-0.03456123253679039,3.071644893123684e-05,0.0123736882752684,-0.004767822829690404,0.04638762487835967,0.005021962106807563,3.43399518121863e-05,0.006963460483263529,0.027217264661149123,0.08630165365438923,0.05101669940544331,0.00010158933436921953,0.01888357159649479,-0.00964916046403322,0.054063856323862125,-0.006975673266747289,4.122634986156579e-05,0.027373520515300717,0.005314878693016227,0.017867031931414798,-0.010095770179321669,6.595053536493532e-05,0.0024523663658156496,0.008505029591895481,0.03059432854606959,0.004437569364796554,0.00012711110625980587,0.002340685775780016,-0.024343399391725477,0.021214381270073947,-0.03306914977507756,0.00065588306270744,0.0008220889469269018,-0.05244376652634881,0.19350600228276607,0.15989136198632026,0.00011407367778105677,0.0004416394887434142,0.018201757829150077,0.05984908442603248,-0.001737570814673008,0.0019519783462247846,0.01250406098447535,0.029206474981986138,0.2711321116926976,-0.02203420263203673,2.770003912937673e-05,0.007932615638839173,-0.012152067565350892,0.03588799513671148,0.007325128869783632,0.0011070627751671024,0.003644129542980999,-0.003672521385469598,0.026902264831598924,-0.008898036174970893,9.090779689630371e-05,0.007515172362714948,-0.022239585219017713,0.0238557872015384,-0.05417795034445816,0.00022002818550161671,0.0001556058324452326,0.024696534128009075,0.03782335122916158,-0.02861956812123694,0.00037478302958353306,0.004666541813419576,-0.02508568132883237,0.08780859184846966,-0.01149931121347936,0.002214314120686559,0.007979994498976137,0.025591136957087434,0.08471817571104336,-0.02717985928597379,9.691775736423882e-05,0.01279933146171412,0.04150633292470383,0.06827054049073485,0.05089401127741999,0.001511326216305289,0.0017902606767396384,0.025010217617415457,0.09505633821815185,-0.13098137960850476,0.00010424432626444682,0.003623002510895196,-0.03491641667569826,0.09298347956101341,-0.05678618881984623,0.0001522243925214011,0.012541485075163629,0.018433278335750716,0.07319974178902038,0.014155888121020314,6.146203799599151e-05,0.00536852495726736,0.035540937512510744,0.10637833784679404,0.001685355239618385,0.003166603863753496,0.003949509183552328,-0.06823658522752316,0.3456821791914428,0.14153544080159372,9.819307597038362e-05,0.010749333513598186,0.008329150502250462,0.0541138747895352,-0.003220172784564316,0.00011162278693647357,0.017015156815094194,0.01226750544378152,0.0723474721656389,0.0010318814108752057,8.020133486649137e-05,0.0009546997282556781,0.03454253026243989,0.21440965375320675,-0.00855902101345532,4.049087912709305e-05,0.005037533109859161,0.02270012741895638,0.04517343552649259,-0.047631132849591036,0.00024500478610829993,0.005358620362934618,0.00615963412058137,0.027379969574674836,-0.015264164622986678,5.594178640713657e-05,0.010507847816812067,-0.01746258128817482,0.1854436679020753,0.01499595221872097,2.4295604967375634e-05,0.002813643145676574,0.008409910958417232,0.034046082635085115,0.03030089862813831,8.634420860117057e-05,0.0008013515644953568,0.02454589992414312,0.10638245775938582,-0.0454605239585602,0.00036369464828083376,0.016874369483919512,0.038959821925403496,0.17940458792821257,0.09642642694923242,0.000124381335064371,0.00017535863620598245,0.0010036550760991747 +2019-06-04,-0.04457805900186979,0.3479193148254495,0.03059987898859364,0.0001354968500888577,0.0076692497390769485,0.012684141737594754,0.03956775072993336,-0.016220753823006806,7.691840143665853e-05,0.0029696229801274643,-0.025567392349847128,0.08526539597759109,-0.00485306703791505,0.0001387109759143017,0.019259868784224567,-0.01529622450191699,0.01451113814107479,-0.09819208735694834,0.00035575468568959284,0.008617402025924325,-0.011372105819776173,0.028002781530626214,0.004824576420971283,0.00021248950869036655,0.004717438362292757,0.005531674919381309,0.016554250283205375,-0.03673539976434495,7.29615199571117e-05,0.0009131925921577958,0.01781885523553991,0.07954627490673545,-0.007279179538912197,6.57279077394248e-05,0.0036696587982999623,0.001159263689773261,0.007906141360061491,-0.0708103526134052,5.0282431717800896e-05,0.016566147016856783,0.012363263556425001,0.011148212606794595,0.00927458896251128,0.0008552098053712999,0.012521420183548012,-0.04281942593086685,0.1093538559267112,-0.020023628242051984,0.00013692054703989755,0.016105005741955246,0.021053696885486625,0.014953804120242971,0.019383236937614717,0.0006881783992563532,0.003554279827208475,0.011799567396272139,0.16198065406330364,0.012412220825932196,2.170829558248459e-05,0.0016537673554036277,-0.033425241979089325,0.10347476392679153,-0.05761492145251774,9.596020202001637e-05,0.007427839537833025,0.001099784506208612,0.006470278020104085,-0.030790087605104533,4.78460922393053e-05,0.002918815501792147,0.015275806217408022,0.011694662536491063,-0.01231086978210592,0.002547647976514301,0.013965733585831452,0.062420317077124546,0.49010261679628314,0.03653310201146429,0.00010480718508786452,0.036888462829121144,0.005728602091450709,0.031044407971183477,0.0028937347979913295,0.00028574162290984686,0.023455394866740205,0.047110590019190046,0.277378977871726,0.06221431619713063,4.784162867656311e-05,0.026522179167535527,0.008518502980732307,0.04266313177671223,0.0005274472309270607,0.00032907686749349314,0.011471751106979095,-0.036511383449144064,0.5278432728091286,0.04275792416688364,2.870473417410692e-05,0.013893218041637897,-0.02696464285624231,0.29572578004867495,0.09507011325919151,3.0464018857001167e-05,0.010668646011783868,-0.02445439677214647,0.07300826516761258,0.00411847217239626,0.00010789658057131783,0.020922128509320525,-0.03876302312791056,0.2304606060174691,-0.025909837261486386,3.885199434449574e-05,0.0055554288958873125,0.011651655639960483,0.03592041087741142,0.016542888132108437,7.191570252677943e-05,0.0031344456554398166,-0.014023876721119653,0.055123699895874234,0.05626510451185321,0.00011632640891868147,0.004523773890417306,-0.048602712627332664,0.0552093824581371,0.03567263658934698,0.0005031797799865552,0.010900217898577499,-0.03185635293550438,0.09978075061739645,0.0390814314533587,0.0001343802041861108,0.0029367132339386502,0.021113759233512382,0.07539393519345085,-0.008603827170277956,0.001797414858913428,0.0005037586038940428,0.0006700541184738017,0.005822888832087532,-0.004213550188630798,2.9590586785570342e-05,0.01500800291488972,0.034875014527932,0.11545463867119109,0.01081795244817189,0.0009875845350324258,0.0006898188250831278,0.006739283062685233,0.05396749589934808,0.0011342290064266065,8.315858176112326e-05,0.0019739367306531802,0.006803778879576337,0.010939857519462243,-0.05505413042765829,0.00014678575508356756,0.0005069338395017392,-0.025692726444521738,0.04077369105213786,0.019039203843500507,0.0003616879822963525,0.012230792243706582,-0.012708684279384095,0.0460791226125925,0.003985325784545616,0.002137699869449126,0.00883824699806782,-0.005830798217286869,0.021978110461144364,-0.01603128384371017,8.511929755045484e-05,0.019668078816192862,0.033480773733700044,0.042829006356626606,0.02466699490409164,0.0019432768585564827,0.012611564056465808,0.0237547479736582,0.08822534327630313,0.00809016574527746,0.00010667756814012828,0.004687932642840309,0.04697919602439758,0.10080441191060582,0.11892865048649627,0.00018892368848792663,0.012165173295176452,0.034954774628870734,0.14022218168942904,0.01774327977228412,6.084203217977222e-05,0.007857812568425509,-0.03156740778299016,0.11855639842755,0.028258414003499092,0.0025236666047273406,0.018131477637890338,-0.018574705044500723,0.09016806196583178,-0.010907229071028049,0.00010247307333810194,0.0010586277706676024,-0.01947267876430014,0.11268567998859133,0.008583221219314293,0.00012531924048897786,0.005022962062261974,0.020374681348279366,0.1134801982201116,0.002721288653552226,8.492184837667374e-05,0.010733441416105565,-0.023404827700889242,0.10165547714595796,0.024914324066127355,5.786581311035591e-05,0.00618805407126606,0.028705975471952368,0.061440403612945976,0.04798630354145769,0.00022779681286481615,0.0002282642406318254,0.006568749687768404,0.02753035286466367,-0.012119828048440185,5.933149761357595e-05,0.005646742078576713,0.024926143823111688,0.2838370315645049,0.027079452432655908,2.2657778444721793e-05,0.0048947811204714045,-0.006603083139637951,0.020129426876666447,-0.02855043998786525,0.00011466326927365307,0.000618323350709457,0.023640967364443103,0.11141376654986786,0.011458979375304244,0.00033446783403988714,0.0011963340969911784,0.019305315564960842,0.0675666537328647,0.01579067584479263,0.00016365010570076858,0.00271500985187946,0.0004237772359972563 +2019-06-05,-0.006901366329259782,0.054153558531658146,-0.003996869618903174,0.00013477044562345674,5.4012672638711207e-05,0.041880326199811975,0.1423516695772362,0.04169556873199707,7.059241134867975e-05,0.03298997583595677,0.028741805001663807,0.10925958669995389,-0.0596254999825113,0.0001216891029743182,0.02863337339049795,-0.007287231902326479,0.007477823741647884,0.0009271134120079546,0.0003288934484120783,0.02408440844258443,-0.024449752088257663,0.05287484260015914,-0.08048637636296116,0.00024194861736089772,0.00479083736914523,-0.01859489015799073,0.045433646423807726,-0.09196390057949243,8.936403359987591e-05,0.001157129024345808,-0.020681058668697055,0.081111855554058,-0.0003500229690703683,7.481320928299774e-05,0.008704155033902393,0.028896052414840098,0.2761522002138181,0.03662102254240972,3.588298992186901e-05,0.007638115003342694,-0.0009620630714344962,0.0008753835348330744,-0.055880815779664035,0.0008475200039877377,0.01960436790199854,-0.0058953598923848025,0.016943738311990156,-0.000995843127151011,0.00012166424727935822,0.004149387504799498,-0.01811037233087353,0.011240597586691613,0.056218272684236376,0.0007875213508153681,0.007897327922257244,0.001187579263443087,0.017702725926525716,-0.0004077700690197511,1.999149393156376e-05,0.0014492373806976942,-0.005489036447428469,0.014274336920032443,-0.001229956724494082,0.00011423290180255841,0.01981272009489414,0.019551093426971346,0.11718186546694356,0.0735443959134608,4.696479834570547e-05,0.006265286151930687,-0.027704347310954325,0.02357143400364518,0.029134314887887782,0.0022923709240570377,0.005592479564909544,0.0022258850523199088,0.013139946340570353,-0.003078589526534818,0.00013939951061311677,0.008654795307488044,-0.003157872902269953,0.018503275345906574,-0.0026812550899999016,0.00026427389580854354,0.020404306008073605,-0.010134762305910289,0.05349583088901844,-0.0008569141968802034,5.3364763144052704e-05,0.0007386019025499245,-0.02688452566800744,0.15732019077267048,-0.038612762917742245,0.00028164673534541946,0.005708145992550331,0.05028620986363138,0.6200219040158744,0.012331873000623512,3.365674422643358e-05,0.03899883539708256,-0.002733866047781111,0.02976691064480506,-0.017184239433027465,3.068493281712741e-05,0.0039124669106682716,-0.009916219027127525,0.024604473394622486,-0.0021349243574107237,0.00012982394208067087,0.0056497979608961645,0.018411680902552845,0.11875513019117939,0.008515439829913055,3.581240072387397e-05,0.019316907356041288,0.021665436820399616,0.07310661013436599,-0.010718077508290633,6.570345166528643e-05,0.0014735426539064242,0.01640816753673799,0.05945393683969879,0.07412680293113208,0.00012619090644541166,0.001642750518494311,0.015484860818753695,0.014161804746622347,-0.004015976622277367,0.0006249773312965837,0.04143229811538901,0.032673159485250534,0.12149811026667506,0.06669256060146693,0.00011318988497617347,0.03792094616913721,0.039981659362180524,0.10459989007647794,-0.03544084486611033,0.002453289280826926,0.004326179101771118,-0.009296030721482927,0.08287069274879601,-0.08233568645349174,2.8845546825008694e-05,0.002319786232347026,0.05719674217436002,0.20885032887260338,0.007843311972284578,0.0008953800201551187,0.026226292855667074,-0.0014735327547435774,0.010355513092195992,-0.2667612621237209,9.475754824605222e-05,0.004676824743448368,-0.02326231919583807,0.037757494217854834,0.013330467782606438,0.00014541032072922774,0.018800162502971934,-0.0149527800503113,0.021109546118386106,0.003412502705953125,0.000406580891060131,0.0033535755707790557,0.027375784364586462,0.09543933580967129,0.034998713513884235,0.002223256159531345,0.00184224931100112,0.014591259741019453,0.05421319920009167,-0.18981613206397838,8.635313768185737e-05,0.010988342062109614,0.035019054981147386,0.04162634808928284,0.028362229344164918,0.0020912853847067296,0.02921830322127483,0.027957630004535446,0.07329232198411863,0.01558407935988721,0.00015113251472386336,0.022526500641745807,-0.053087745256382636,0.13420638325264345,0.0943239759109946,0.00016035462252743526,0.008297847139176414,-0.011772530458831502,0.04874308632653973,-0.12736695069870957,5.894822375034797e-05,9.325324121576867e-05,0.0096458032863454,0.029628181564042805,-0.0018093700233622657,0.0030856840907867067,0.01486414393574427,0.015559575388865977,0.0837452432103836,-0.007455834936663071,9.242259615849208e-05,0.02117950108888577,-0.01105082866185085,0.05994703304802231,-0.0023876908000356593,0.0001336866179024563,0.00943393093371572,0.04460608909259437,0.300219107820502,0.05459666587379262,7.027559255385757e-05,0.006905505423188481,0.03590224190737408,0.15068305307169266,-0.03512393396656558,5.98831383378062e-05,0.021387875096705863,-0.003883479969461938,0.007284184676368678,-0.015648316606092956,0.0002599378458689862,0.005061441068140292,0.021942336529536446,0.07887459747879523,0.07100292450934652,6.917673996253228e-05,0.020504027294137257,0.03660785602260669,0.4004621992600915,0.007419663056273907,2.3585443769944388e-05,0.0009875257273923809,0.01443970302765277,0.042007693584571834,0.06413149060100305,0.000120154042957146,0.0008947212575116133,0.020231896526975175,0.07425534824425872,0.020215915285116893,0.0004294739503531861,0.005509128049637318,0.016978224306854178,0.09746072249986606,-0.02847842947795235,9.977791772038561e-05,0.00012581970736212102,0.007775775991513342 +2019-06-06,-0.006339326823899447,0.044301616419129386,-0.008452249644652436,0.0001513248157624884,0.007400479978744993,-0.037810411063651884,0.12081169226421021,0.05262596251465442,7.509533478279877e-05,0.0065740936362183935,-0.033045011552117476,0.09729044883334409,0.02439979961453707,0.0001571205192105762,0.013061815973500753,0.033306794836982644,0.034841894063501244,0.06897977263685223,0.00032262568693020466,0.004066449558008984,0.007369414568651079,0.018415505237981876,-0.04621573853733961,0.00020938575026088746,0.00026037901827423194,0.010359444933698982,0.02800583481012168,0.024720001510944424,8.076713974319612e-05,0.001760827615461521,0.011693679188041442,0.04803915662944952,-0.02952188523645507,7.142424458472408e-05,0.004977108800627619,0.024515774479419168,0.2162720691289677,-0.0010968688799496962,3.8872618562839353e-05,0.02653090403105693,-0.0014411007824611762,0.0012101861173002997,-0.015250625684391318,0.0009183050529416884,0.010707902967399974,-0.0005493427789879947,0.0014254286975937164,-0.0034987445123390117,0.00013475962957487845,0.011165666976346526,-0.016572415821923585,0.012669596169401973,0.03551590965138346,0.0006393628639445245,0.011858989730598265,-0.020992338862361622,0.2984348765333416,-0.0039755372520366315,2.0962063977099043e-05,0.0031234661644215173,-0.0199250409763993,0.058833898890178614,-0.08452327639317063,0.00010060571021739607,0.005066158328662368,0.002092958909950261,0.011982892877131857,-0.015266107821457087,4.9165543402366996e-05,0.006718226044878661,0.011161527793926594,0.006984863632662037,-0.0069154009380885985,0.003116654680589863,0.007057442155801835,-0.018531493594762406,0.1330262803831731,-0.022012311453870097,0.00011463707170596862,0.006073826560830576,0.013255067033802987,0.08263188389533424,-0.043066457215590215,0.00024839480356007615,0.04015817403493668,0.011410828718005563,0.07285099489185644,0.005970311985977182,4.412072653459231e-05,0.01983315795974113,-0.017298211642744515,0.0875119402621907,-0.019121162558900343,0.0003257772110027103,0.0010479577393359204,-0.044532920487959524,0.5452537448796211,0.08075029299480377,3.389321382475319e-05,0.021345377097066555,0.007261862300324777,0.07453222445124295,-0.033925170194251626,3.255259653382468e-05,0.00198607132382582,0.03641030720866591,0.10873701590780872,0.05214923708280492,0.00010786230297078505,0.004922023483343761,0.030762295426796506,0.2130402422015041,0.03990744602833999,3.335411851108915e-05,0.002873184620102371,0.025029762937761844,0.07700613195558151,0.048903903845633916,7.206241451589355e-05,0.005637515336757635,0.004067821202072303,0.013473759038104586,-0.056697316792035476,0.00013804531590990018,0.0048738683644014525,0.012218915117460108,0.012006296798494083,-0.0022503316324942136,0.0005817000943278333,0.020441308778710313,-0.012631434904561839,0.05762659200565568,-0.0015439589842729845,9.22604908611456e-05,0.0025753873606783576,0.013354174418610271,0.04931108158332808,-0.01993392376124244,0.001738167761154438,0.0011307545989657475,-0.03399590606729479,0.31752049515797787,-0.03217479582583635,2.7531955105913444e-05,0.037167694109082626,0.0013350897814957347,0.003835059555745135,-0.01433915321198847,0.0011381765382831516,0.005484594074991068,0.018541814860260717,0.14610563158484557,-0.14076725436807624,8.45105498986569e-05,0.006446185887241446,0.032233089260424584,0.048757020554689987,0.026601434331934307,0.00015603073642089742,0.013649416722516794,0.0009862624960657773,0.00151722669142515,-0.004468457814020978,0.00037311779164509855,0.0159218837202318,0.012448306167586458,0.043655937552735946,0.0073272177474917825,0.0022101272684898273,0.0158235465339454,0.03356995312123233,0.10186647047521456,0.04151137580692066,0.00010573282754970458,0.014878463601315747,0.004818582723668329,0.006505204045884712,-0.026047493080037395,0.0018413467837005962,0.00047323787569739594,-0.011201965438522284,0.03699273749908283,0.007893125734050589,0.00011997583859011872,0.0008072793314290502,-0.06414890315579938,0.16910367986446154,0.11596137164058144,0.00015377883014826583,0.02666207587864052,-0.0290507576741787,0.1297831179887229,0.0007860927813547169,5.463276551048983e-05,0.008260520056325897,-0.06377005265333377,0.20530163306144633,0.06685212464016835,0.002944031344724157,0.0009127226233409682,-0.008336435286275557,0.04100553280786505,0.0002970042659289808,0.00010112964776726791,0.022120901618684834,-0.00032778313056277473,0.0016056632124874987,-0.006246094223639312,0.000148044720983275,0.0014457165939715856,0.03634622552190459,0.1782477984005616,0.011376121899134858,9.644591579893529e-05,0.0023770325267485795,0.04420358456160725,0.2241894344220841,0.014719518925883841,4.955525807106673e-05,0.005174687506218386,0.06413180954180811,0.15382856490702637,0.19173131759334058,0.00020326654237696212,0.01381534705543718,0.005705090269645668,0.02542414185420753,0.006480529594224417,5.5799536742163165e-05,0.013459205447048771,0.00014970827116046382,0.0016482892102710816,-0.0002358053561255856,2.343385103515767e-05,0.014023851808173582,0.002348689337764631,0.007484188585037191,0.00623443481907336,0.0001096957542324189,0.006094279584011681,0.011947972215613986,0.05409232711914322,0.00828668637647949,0.00034816612119436185,0.006495592204444252,-0.020838731035532375,0.09921226293070876,-0.053184177335545174,0.00012030334687469385,0.0014138043299735947,0.0006394381961925439 +2019-06-07,-0.004108427656883191,0.031839762773256834,-0.027304691997848313,0.00013645592719325675,0.004131307368578336,-0.0324659917566528,0.1015082957694548,0.023264627578118518,7.674280416838739e-05,0.026227881324256602,-0.03626871298874867,0.11079165698128669,0.030482582321409425,0.00015143361558752166,0.00573873345632289,0.019877954864571987,0.020979802253823666,0.013040314043379903,0.00031977033067993844,0.008692838183861946,-0.0026686534535353204,0.006353406267978536,-0.04582925871166956,0.0002197775490895437,0.0022449348697008787,-0.007877696212437595,0.019032565605595034,-0.024687352285535695,9.037506724181876e-05,0.005189825179497673,-0.02602623372111889,0.09277800135725776,0.0009442239169514823,8.231067593048254e-05,0.011875953355850854,0.032215965647617216,0.2900651076030376,0.03334249664118316,3.808678181618902e-05,0.012877870743172924,0.011198760416407124,0.008575685478066463,-0.009072084729486361,0.001007038085831123,0.004389862722431822,-0.01305705036952933,0.026108737185122844,-0.17985924292616404,0.00017487233107079728,0.018854917886272204,0.013324853960871212,0.010561160448820398,0.015811178035647293,0.0006167017424868777,0.016844804749946502,0.009335070221376389,0.11564250560532556,4.321574199353585e-05,2.405597067877829e-05,0.003493022471626402,-0.024715563976348894,0.06886543603624373,-0.043089380048097176,0.00010661547867961374,0.00633205806376573,-0.0033692631244900606,0.018345180943024713,-0.012459250280337465,5.169811966204031e-05,0.005551395130726545,0.018080629374716387,0.018269146818615474,0.020129149922570356,0.0019302708423121055,0.00223957724903858,-0.017928354402562033,0.11407562483012512,-0.046599037304953995,0.00012933011988905388,0.012028347468114679,0.07416610977911406,0.474247065892622,0.08810072334473083,0.0002421637197233034,0.00039264395082761546,-0.02678589860967614,0.1641927638895314,0.003810179070108577,4.595292529123719e-05,0.018272968812425797,0.00938253568046413,0.05372483374824205,-0.05674084532081184,0.0002878272788631558,0.012254994549349293,0.0394190022082683,0.5152236212263727,0.0023689614998778754,3.174973410691491e-05,0.006108561583685257,0.025165706382907507,0.26402664268728615,-0.01305489663946282,3.1845134021080737e-05,0.0041060399846919,0.03501301868742566,0.11289299452518899,-0.05524521633390536,9.9904561600617e-05,0.007265299359335844,0.03207053728568801,0.23394046416652264,-0.05368381488663971,3.1666004172543175e-05,0.02883490702101639,-0.0053210198796367686,0.014249830952066195,0.012678524826444248,8.27870774710976e-05,0.0029226648856141724,0.01583644280118263,0.06754341268414149,0.0012799322342826262,0.00010720702196584514,0.003337125769070635,-0.0014457572514365608,0.0013188075492438754,-0.0004456046086629688,0.0006265987384008474,0.011270865115908978,-0.02337263241980643,0.0755331609604062,0.0003042230897852557,0.00013024347599939297,0.014384680055647137,0.01687539026848813,0.05300191737974553,-0.018973015873382747,0.0020435318891919955,0.008744302525649318,0.003117080394972912,0.025061535198703442,-0.01747043685815136,3.198324521427332e-05,0.007404045080729795,0.019846886740561256,0.06510156637113855,-0.05326582713884567,0.000996717820361806,0.03269711929056433,0.004319080574246807,0.03220076933622342,-0.0005303838231742602,8.932040865832068e-05,0.006656107511138794,6.9997312779314965e-06,1.1116501489385552e-05,-0.004076962960450195,0.00014861362353663194,0.006928195804928035,-0.007236098551509017,0.010418267640728065,-0.004280211227492589,0.00039866937638707227,0.007214239996340424,-0.0005471468735242309,0.001730988184069372,-0.008697139117696916,0.0024499665775925415,0.008716018441209837,0.010437728312126748,0.03910089263320444,-0.0019462490649619173,8.564651315487139e-05,0.021438834008668056,-0.0056234332025192684,0.009104763138220694,-0.001558224487243721,0.0015353595000672183,0.02714361198800318,-0.029229150506520092,0.09809332474120373,0.01058947742371544,0.00011805728066192775,0.01926028726801764,0.01473235979105658,0.03879410597203682,0.015332778010353272,0.00015394548098493933,0.017739550169997776,-0.024631929345008147,0.12256624413369084,0.011300649451038229,4.905027845844065e-05,0.004608663611769365,0.00965662791507212,0.031126821637747156,-0.007366546050595926,0.0029404160086474347,0.007654945248099068,-0.031100014425310643,0.1596057594608001,0.017696766105131722,9.692874777770201e-05,0.016092083175605912,0.019881006885232456,0.13345924876514073,-0.05479178904367695,0.00010803151939538637,0.016512736320245615,0.03544245480325767,0.2180773898272874,0.028779012432636288,7.687087994747238e-05,0.004022371334492357,0.05192860796391453,0.22733108872043273,-0.032144681929727595,5.741101747678831e-05,0.008279841155345337,-0.006249030501292397,0.013078137922270116,-0.019627904250472703,0.0002329679217132901,0.0020489877530879166,0.002103317481331299,0.009108150889301716,-0.0038970559193679845,5.742341155458386e-05,0.013811324430548798,0.022056341724101536,0.23504100929956018,-0.01894652019815823,2.421146807264758e-05,0.014496332244445602,-0.0060216537745015775,0.019281697585023464,-0.05986025931181377,0.00010916400957066655,0.006164601950403134,-0.00883265624826242,0.03253377819709852,-0.006523350863090676,0.0004279418878315638,0.003345626010723533,-0.03441714649483272,0.14846795147443603,0.019674531135451635,0.00013277427543378022,0.014731965581379783,0.0034503920725038827 +2019-06-10,-0.025501725495609754,0.18825720081233133,0.009144246920572615,0.00014325327309454346,0.019373636551623642,-0.013881444661520248,0.04583309239642555,-0.013936501730827175,7.267181923221329e-05,0.016773844851095825,-0.03812387123802955,0.11726513978983728,0.026325492093484146,0.00015039218633271142,0.0063047292591665565,0.0182538222979464,0.023243185578324204,-0.11991115593774163,0.0002650489114442271,0.0073371208147173655,-0.0018630507388828483,0.004166787787702613,-0.07191817240720474,0.00023394893496198987,0.00621813375654854,-0.01294158480290287,0.034676383885068524,-0.0026789519069476265,8.148926490488867e-05,0.0018384665080895726,0.009075988630316481,0.039383001009948224,-0.026242055852792108,6.761997280757807e-05,0.0033852697406000607,0.008871335613848818,0.08730735059235264,-0.005089633790354375,3.484470680164871e-05,9.397419504595473e-05,0.026068049297953342,0.01964831093016558,0.05366792414841698,0.0010231235897371568,0.0038258241060574556,0.0393703658580264,0.09297586520991669,0.06958766650141601,0.00014806796529872387,0.017983039853645116,0.029293790688030348,0.021621549214708765,0.06590967221143569,0.0006622365152827494,0.001799902573511434,0.010096078602710121,0.1504918663541548,0.016363793158337258,1.999228730448435e-05,0.005330268106796257,0.02433218025693274,0.06572336820131737,-0.024802757866109082,0.00010997962913883014,0.009952158520919786,-0.004346593117214993,0.02270795980064329,-0.010430845280757451,5.3880633038338416e-05,0.005616957917695773,-0.048472364981723734,0.03878562175053103,0.0996481304220394,0.0024375101028187678,0.002227081268751819,-0.02699241649796281,0.17928744338768998,-0.05377202709014187,0.00012389221000715916,0.011889758439732105,0.0023330605921199443,0.01587443903917208,-0.05934221818228042,0.00022758092723974775,0.02706430907445979,-0.007381001601729681,0.04651248019558039,-0.021290641871951645,4.469992119204521e-05,0.006909963833287816,0.010300278500073772,0.05848736519470651,-0.019334391861770925,0.0002902509952673543,0.0022961532441844175,0.0712006494645108,1.0599081718063348,0.10754713900479247,2.787699427191455e-05,0.006904134894314457,0.022951959732327363,0.2550203125368506,-0.05659790637642714,3.006953476201633e-05,0.010929944768554656,0.008714426978344302,0.02692994537371398,0.0005053189934877448,0.00010423801162562456,0.0043231534965097835,0.05083848256425407,0.31276938727247555,0.07655749217553746,3.754574411311071e-05,0.012160930647354195,0.0026575877028323838,0.009184455559025145,-0.08844187770188874,6.415220241693932e-05,0.006179985504450637,0.007033743362532115,0.02442183666299312,0.0040214292516236325,0.00013169121109207513,0.01013444042560635,-0.004554291846183135,0.004742909934429914,-0.0007583076857257096,0.0005488473114532906,0.021440259172458797,0.010942467128190275,0.038098010398239894,0.0070093043912744625,0.00012089239005534061,0.008010755542034129,-0.042604346367317414,0.1608926585380977,0.03811932540981436,0.001699561379041478,0.0067105157821975014,-0.01374816864529839,0.11456173925102038,-0.051265512449229333,3.085939786662503e-05,0.0001343605246970146,-0.004992828376112882,0.013364780258997792,-0.05524790183460118,0.0012213948516226739,0.023893766916251065,-0.017065579697320643,0.13674257902432216,0.03219340730287826,8.310801738307038e-05,0.009115568565531413,0.005056939321339811,0.00696790231728358,-0.018418170866862066,0.00017128963152425895,0.002621444905145473,-0.025730154949139047,0.039028447943430515,0.013791856103609085,0.00037841211712525964,0.024780048079442618,0.004273785212535541,0.017066956633224984,-0.041202406615712055,0.0019409169300004861,0.003496595337992704,0.012514689042409129,0.04938275935088412,-0.001105475834341014,8.130833730062772e-05,0.004051317550085026,0.016737257156878117,0.022403529119762313,-0.002389046011259578,0.0018571417124167238,0.012137687421955746,0.0034665467594393764,0.010944227967324756,0.0003240198530305927,0.0001254954465891904,0.042120908885810965,-0.015543173411636206,0.036605801022178995,-0.00952395003980803,0.0001721274574755016,0.0014214183018675403,-0.049647272555196645,0.2071954085910711,0.043960665899199,5.848293941746421e-05,0.020274688660889106,0.015372158668226592,0.04339326331563027,0.0021254457689126693,0.003357612745115979,0.009614999517469074,-0.01346302767544254,0.06120778800161163,-0.06529052372238107,0.00010941493949192307,0.00887822146045305,0.0189097308497736,0.11006884387178754,0.012488587081578625,0.000124589581487551,0.01782903380993097,0.02172414163017629,0.1194210324820531,-0.00011217758441759835,8.60420011507082e-05,0.01697565656221068,-0.051765906635922156,0.24138453275785604,-0.043651614662840975,5.3899133244664746e-05,0.028212291464551866,-0.012737231054929195,0.022297507441434914,0.005182123814867501,0.00027851468807671463,0.012466175283636973,0.038895551207412,0.14929415220490447,0.17668049789834264,6.478455939434059e-05,0.005909707516252022,0.03810112230843127,0.40803046379504126,-0.06863574489899466,2.4092200286382943e-05,0.01791154898247808,0.00395234714970039,0.011545984593189756,0.00416803525842737,0.00011965561250633063,0.0011885381911878132,0.00771409194335542,0.02877084446390965,-0.02174509216791221,0.0004226298547683521,0.008136726945879493,0.016903746093347792,0.07551815271076844,0.033999135638676264,0.0001282045382246755,0.017967729944221168,0.0027575970814409764 +2019-06-11,0.013717733247220901,0.10199109309293135,0.006443540750048034,0.00014223507002992112,0.009946762138612382,-0.01254555155232771,0.042868710877711345,-0.015505903037089683,7.021984429077228e-05,0.017253414095044307,0.02816851125875229,0.08197345376052047,0.003791809776012977,0.0001589600042174349,0.0029607293555091994,-0.013623166160282163,0.015444724504953667,-0.0001312895324909991,0.0002976910267761332,0.009626326569957374,0.006590528511280455,0.014446924000335485,-0.10524506140460518,0.00023869461829367506,0.001677486527065336,-0.016191102092166253,0.03969654335331309,0.023002745575695618,8.905749180278383e-05,0.005544802313227927,-0.02467473361938221,0.10031265032211256,0.007878451573320384,7.217497185078605e-05,0.035059859695865,0.01825429986395899,0.18062827523102212,0.005764843333043937,3.465597007372806e-05,0.006429647731454627,0.004890782952570934,0.0042150301859768275,-8.805287126471122e-05,0.0008947928130609801,0.011271725296084084,0.034634329713723565,0.07401169572607917,0.03465301737216455,0.00016363203019295922,0.00666747905772953,0.018557581270965424,0.012349624042774609,0.007767021478162364,0.000734500325812966,0.010978819038699685,0.0001245184731844132,0.0013066801854356791,-0.013918331131560758,2.8397968346209634e-05,0.0115610806679333,0.036505899850047055,0.09092886683398332,0.06382957132767687,0.00011926480899819884,0.018524036582455227,0.006764443212711187,0.039661160631039,-0.06488829221529072,4.800964055740544e-05,0.008893161586856534,0.011325920700916077,0.007991990693132825,-0.049304616019223944,0.002764022154130077,0.01950143269390227,-0.023159509745519037,0.16245140328435476,-0.008199781262853745,0.00011731620406325331,0.014860144919307957,-0.05228009553562158,0.26379783347021357,0.023584059228631608,0.00030688338791561427,0.018247066359040293,-0.03499878126883111,0.17961949203436503,0.003988613780530405,5.488585244109365e-05,0.014247936550003453,-0.025547085071773543,0.14764087087833824,0.0276384052593687,0.0002851816407778104,0.022338740116131947,-0.01931712466385542,0.28027551975680026,-0.027527359634513048,2.860141682162727e-05,0.006438526003580152,0.001487391430811299,0.015863338069887885,-0.02351053368949778,3.132653815936547e-05,0.009801150603897153,0.009038143575358986,0.02373156058327259,-0.0010727725658269177,0.00012268054412948264,0.006303343108148384,-0.06083710840364269,0.4331616105741902,0.06171535667919693,3.244225100149895e-05,0.02083063684474238,0.01923153560568758,0.06143810707087743,-0.01340395217965732,6.939904899001601e-05,0.014773740719909764,-0.018286026306428997,0.07680489508547983,0.11293000970134941,0.00010886268348897725,0.014031626757153425,0.003472154847962107,0.003077326161699056,-0.03056101788317866,0.0006449129794741368,0.008696465852618844,-0.02119278080252715,0.08423667716089936,0.007057312129980003,0.00010589433518906311,0.003357166692712229,-0.030477188519567235,0.11659063751184638,-0.009928342745519927,0.0016777621752586756,0.007019172617645624,0.017073072213655383,0.1432748215014959,-0.024765649659907792,3.064248600930557e-05,0.007870302933044908,-0.024561364776307878,0.06417882655088396,0.017239263199732475,0.001251215145559315,0.011702165930706443,0.007931605500897705,0.05297859878282078,-0.1441702771560526,9.969796206964864e-05,0.006073866836167734,-0.011071538155751804,0.015905765391544098,0.0076714362755619025,0.00016428532642174864,0.007628889091018241,-0.014857437784671993,0.021413816371828678,-0.008086513819476044,0.00039824814351270565,0.001283113826400232,0.001867428748944913,0.007379627734528812,-0.13009755219745597,0.0019613718017225923,0.01180965297169777,0.00663993595311412,0.027638329614060545,-0.03199673991426299,7.708013538894342e-05,0.0032664386682177745,-0.02770024555542526,0.041777451529904044,-0.061916274849878085,0.0016482339931457365,0.02458584823277799,0.0017211450267935159,0.005493748133413602,-0.07362261888282746,0.00012412657094169628,0.010943692723532857,-0.019591165298512736,0.04498510152179826,-0.03010894236136883,0.00017654358448647203,0.0079366816593115,0.011387036170488633,0.04623016015377287,-0.05784334680084936,6.0117266780118e-05,0.007881437512714515,-0.05534052843892982,0.14668129361296647,0.055038524235572074,0.003575910400152043,0.03544267782852242,0.017974731937926654,0.09004250223639397,0.01279009064269089,9.930141515894076e-05,0.005246424403268215,-0.007010552842821141,0.03603771929297604,-0.05182649118508373,0.00014107684980625205,0.0008627199561080721,-0.022512663296911747,0.1391679436687833,-0.01621244023379001,7.65131997850396e-05,0.00641699621769577,0.014080946850512156,0.07075687184059598,0.0012489847167183104,5.001619270335378e-05,0.02471025050940668,0.04106475604910226,0.07137293272076609,0.06351366451707272,0.0002805208194853668,0.02160154171787261,0.008558563527663118,0.03990556602482449,0.007602907576534143,5.3331252000685654e-05,0.0019140889182821,0.040882602561797,0.4276547316491073,0.018366012437523793,2.466473983684831e-05,0.012900854059562232,-0.022832732697440877,0.06792721461906141,0.055037152627960786,0.00011749599148959594,0.002565195725689649,-0.007164046775175281,0.027882184960029453,-0.026607243209278902,0.00040500424930646744,0.010159006091364869,0.014127835341936939,0.06801334584439149,-0.03090502063439985,0.00011897433351135909,0.018803221811130647,-0.003251740896662414 +2019-06-12,0.01244233823190724,0.08947357420660385,0.0009576585320105409,0.00014705974224678032,0.01906315041060816,0.05762353387038983,0.22429694174987283,0.09283563204580904,6.16434679233184e-05,0.006433161589093796,-0.0022812090202638828,0.007937592512454442,0.00038204539005026646,0.0001329454519229078,0.0035719844410289467,-0.025112266996614882,0.026650397124893623,-0.06508281214654807,0.0003180168207258983,0.009044915868617855,0.012850880125858163,0.03217684664699365,-0.017139907340970373,0.0002089715500339892,0.005270896869429973,-0.01732609393362791,0.04804266472616894,0.060127230441668664,7.874451573748666e-05,0.008112233754055441,-0.06066846786137225,0.2355510525698576,-0.030342684550063226,7.557320370406942e-05,0.006716572003266088,0.033436744009532525,0.2742367280664735,0.004199537880794024,4.181161820578345e-05,0.0037207582983432947,-0.008688293204876905,0.007233141073087261,0.022907900432361888,0.0009263013985858507,0.005175125555589811,0.011979758626782789,0.029967678013436205,0.0009380841154823605,0.0001397838057501054,0.0006539569127612908,-0.005814859406113752,0.004406231017022496,0.002547128216151695,0.0006450543578758909,0.0018316373332159955,-0.021466821321582882,0.26569262371398394,0.09123981163418923,2.407748014538514e-05,0.003908513712967523,-0.001740809728595199,0.005538729800923336,-0.05605787896071865,9.336673323339025e-05,0.0029126759364002603,0.005062925853347055,0.027329642273337236,-0.051602520861200075,5.214701317747886e-05,0.010716030841645453,0.027018463197439013,0.025353996232365207,0.03761754353015488,0.0020784385741359846,0.004190416235964604,0.08977442660784261,0.5150960870834216,0.13054913081956226,0.0001434222386181322,0.030370751578292655,-0.03930758203046927,0.21156938371679948,0.001013313808589922,0.0002876946199019745,0.012228915682592056,-0.029542189872499652,0.1769668160778254,-0.014412748185188931,4.702315924579104e-05,0.021220511564948284,-0.06517272018651207,0.3330244586731387,0.047486420472587915,0.0003225347588384737,0.015713703299132378,-0.08708367273851361,1.0366130163907357,0.18996758958362178,3.4861840413272784e-05,0.03869626093030348,0.0011174357246632736,0.01179205757969347,-0.0454968430704396,3.166027404167813e-05,0.011186583405600083,-0.00782982491752641,0.02341295744178334,-0.03672457639309873,0.00010772550310549015,0.007314484751002471,-0.01847582578362323,0.17475830128728767,-0.016952816122503732,2.44207175148549e-05,0.004112064653477749,0.002770010244812515,0.00871713928406145,-0.003982310235179991,7.045061235182797e-05,0.002406188679175034,-0.008929570971510268,0.03758804817955782,0.019415482251548943,0.00010862490611940467,0.006948927990257336,0.0020300234168034166,0.001965788865378343,-0.013902328807198223,0.0005902550864008293,0.018265562088466976,0.0035846869539043866,0.010454512938215067,-0.007743463318913735,0.00014432229950814724,0.03480281343849934,-0.011028501068459423,0.03550636827086048,0.001850701746376388,0.001993560458694604,0.017651434013518187,0.012119011083808976,0.1196961707739178,-0.0018952516378994571,2.603569174247687e-05,0.007327481528343201,-0.02567741319453079,0.0781440361075206,0.01409188438466702,0.0010743027832570058,0.007122354212960148,0.017213138235163596,0.12929672659847322,-0.029097070802888363,8.865396618079563e-05,0.0029029121811342,-0.003579325420604469,0.005989138650418811,0.0006903852598465484,0.00014105295986480652,0.0004211983861853591,-0.05157734006491099,0.07106727272096705,0.03499876100706553,0.00041657500248485095,0.017684589236631493,0.008701948239407025,0.0338136330377245,-0.005811985117679601,0.001994688122773234,0.0017100932073875548,-0.004383234017787012,0.013856033682174265,-0.026457395431021793,0.00010149533888272585,0.006855038957438659,0.004330517494232304,0.006554414357008401,4.439100704149094e-05,0.001642415731010296,0.03226632474768755,-0.0047081357017935066,0.018074602515566113,-0.03328952509029804,0.00010320393417679941,0.001927342358620293,-0.06946486783901207,0.16778722948131408,0.06561837740085534,0.0001678288763462001,0.002916294001463344,-0.02952593637403878,0.1197587320983305,0.03270210818213408,6.017421247003831e-05,0.00887377550447205,0.005073153614173532,0.01767634899078342,-0.022766742104351746,0.002720216705631451,0.0013536139306698418,-0.007750657079224988,0.03983483761425697,-0.10797450861518876,9.678678008658098e-05,0.00017782117164439996,0.008442776742045618,0.04032564599866846,-0.08688012288902933,0.0001518325046141108,9.207020703032613e-05,-0.013602476463659575,0.07673384249102784,0.01585772241289221,8.384549549038433e-05,0.020594949715147887,-0.011887677340214415,0.05749867031719596,0.006520976587520437,5.196208896579196e-05,0.008974157732629747,0.012877918750872925,0.026932469594130898,0.0025853813980156685,0.00023313039342397714,0.02619885975051541,-0.008351517010025627,0.033666551650593506,0.001888517054794232,6.168521893939476e-05,0.005590563981969248,0.023278752394111955,0.2648111101803326,0.013606780502494276,2.2680612797050292e-05,0.0029866934098784835,0.0027231905368063844,0.007358467009071188,-0.03424117224060662,0.0001293598926979903,0.0024293893643647447,0.004450058526537133,0.019264365984690245,-0.09290005447776012,0.00036411533781411173,0.00243199082285716,-0.03531269128542068,0.180730683477649,0.012086363327167627,0.00011191047077708422,0.0021043208452531425,-0.005949860234307462 +2019-06-13,-0.034328513277756614,0.20695748206367814,-0.009675160436237118,0.00017541246320171094,0.0027445215670804796,0.028903207645666357,0.09170211268137805,0.010035822234462834,7.562706186378406e-05,0.0087968121855037,0.0023835588037051636,0.008190760558404514,-0.000423795636236789,0.0001346166704951312,0.0019615919610276402,0.01959649622038298,0.02209164790778115,0.01993438646723977,0.0002993768203507234,0.0020973871198596917,0.006766150779960555,0.015043564819107976,0.002205647932497757,0.00023533617055513373,0.005643451953173684,-0.0067618153934041695,0.01551019375707517,0.0011240486138250363,9.519032869036868e-05,0.003790925650490708,0.03035687945141356,0.10360279538376976,0.03125769098376421,8.597565786870213e-05,0.023247470957055455,-0.00817623656217614,0.0661246307144047,0.00688144470393754,4.2402240328226346e-05,0.022457991351450275,0.024991574328264255,0.017545604343487387,0.006007987929057026,0.0010984241430584299,0.00384691624841262,0.04957243948549935,0.12324720016099036,-0.01190801609361629,0.00014064526497503622,9.298509891320214e-05,-0.01678322954383667,0.011971004944492365,0.03692223290418256,0.0006852819336818456,0.010965234167893073,0.01137877151128564,0.15948415190769863,0.03001408424698671,2.126182958391452e-05,0.0012506195639859737,-1.1792260879477966e-05,2.941541299335442e-05,-0.02026045960502941,0.00011908941614846092,0.0015939383457302507,0.010067099255081993,0.05646142397441058,0.01434031989375796,5.018967019151186e-05,0.00040531943036240366,-0.018220878584008834,0.014984205840668688,0.010574133649241223,0.0023716934619554763,0.007105246712396984,0.033265812944921994,0.22830041952480457,0.01979868086531483,0.00011990672446267433,0.03617527488435047,-0.03389216017788577,0.15004661300629255,-0.04065781398113767,0.00034976897604396346,0.01336223836530785,-0.056591894369659335,0.34143984748233475,0.06226633989588889,4.668753923093295e-05,0.001789558410512254,-0.05126254272228978,0.26772972425142444,0.06061554159300839,0.00031556611341728466,0.0020254556544767955,-0.01824929121541276,0.1918016238881142,0.001074567915477545,3.948425545224019e-05,0.010306794835665252,-0.008446434443770856,0.08392335071429483,-0.015961381211465578,3.362577553935695e-05,0.006723719325246732,0.026108704280585315,0.08491965933669834,0.023966719737838038,9.903753713430109e-05,0.005708986516067146,0.10205836925896028,0.7161118949601207,0.22483760793899077,3.2920021724329736e-05,0.0015772670515798322,-0.01629068033711289,0.04880062939639321,0.07784010965218423,7.401013235656034e-05,4.268238486189978e-06,-0.004002863637177518,0.015390543624547596,-0.04704258955292814,0.00011892288349723522,0.00535392320457143,-0.028131841382751266,0.02872767279514635,0.004814955731032612,0.0005597231580721482,0.01683225523536535,0.032269607304929046,0.12450050084445359,0.04960164599630614,0.0001090959405844228,0.001092485221050178,0.04396554938023581,0.2082011281239016,-0.021014375565158637,0.001355341076219652,0.0031587861141263805,0.06762159314116392,0.7345114569208316,0.11126462032634979,2.3673856966703595e-05,0.034599780116731656,-0.029878554332772537,0.10227068288467675,0.0006934675660452939,0.0009551678461086903,0.01711256907324245,-0.009214490768083004,0.07339118302785375,0.0359452430756857,8.360901251917681e-05,0.011041461006052081,-0.0039653906931812356,0.0059712154881400225,-0.000878297542945894,0.0001567359516135148,0.0050878269830629715,-0.007069250873224087,0.010156160783214964,-0.0034319476925124552,0.00039952847754778947,0.006816893523236204,0.0033201777121558635,0.011727686570571171,-0.004465428386823815,0.002194316760781619,0.010285812021507931,-0.014314263292040505,0.05769648445637485,-0.00194458695396354,7.959944138884219e-05,0.004013121929137144,-0.03226538226383175,0.049336481616289354,-0.004851543287318641,0.001625720310895949,0.00617007291113932,-0.008142909111006295,0.023241979921414888,-0.008328947084287842,0.0001388105586872469,0.00839403164938549,0.03300973384708694,0.06919151841108039,0.05348933961750271,0.0001933969129400328,0.004044897693817055,0.009503522380597049,0.054158537924822635,-0.017741943754202634,4.282837486774242e-05,0.004688194375911968,0.053796541879636395,0.18966851555237607,0.007886785591686079,0.002688296534794345,0.0017308547020728115,0.013733497638312806,0.06748619700665705,0.019997442639074676,0.0001012294255783393,0.011144853987862248,-0.02199144035184279,0.14431703182645875,0.0282990358050749,0.00011050880206595748,0.0055867214307016525,-0.015191706425111947,0.08605856609025894,0.013240379270376456,8.34951313693711e-05,0.018697799870670627,-0.0041101842505517384,0.015765894555274225,-0.02853005788849732,6.552244094438491e-05,0.024207699993297617,0.020001256822708306,0.03371451566710507,-0.029929120223752333,0.00028924759414026473,0.0011516504334618694,-0.0027897597899773836,0.010311454993679432,-0.018334909725526132,6.727616633132898e-05,0.008728813689039574,0.022394568190321148,0.2176782174158499,0.0036019363175488176,2.6543549997731884e-05,0.027393809643067996,-0.005837650985175107,0.016653365675846913,-0.00982194824982755,0.00012253074453883104,0.00237616241269853,-0.0025532820613580467,0.01052456215869476,-0.02717069923838232,0.0003824042651182536,0.0011332540869503536,-0.016033766177463868,0.0851359436015042,-0.007512255738240718,0.0001078684375306186,0.003863252684678134,0.004030800399337743 +2019-06-14,0.01648925356145481,0.10619761122631878,0.012000683291037257,0.0001641998788316417,0.007854304256148022,0.027249675101708188,0.09140813526935246,-0.00889203471639463,7.152979917334524e-05,0.0025218812418083816,-0.001043041470443874,0.0029309405903153083,-0.015967774616003752,0.0001646234750477796,0.00550737594568472,0.016213996458488273,0.018041078344271162,-0.04377611240917056,0.0003033160821344421,0.007255429036611359,-0.003963995238106537,0.008588973156793408,0.0014596268563086471,0.00024148471726992117,0.008430999957819093,0.02164244070757286,0.055546509889268486,0.1883937118393901,8.507387205649512e-05,0.0010499085004823173,-0.022254686386938515,0.06213641985040984,-0.09549324386666151,0.0001050908989792091,0.007835288402299799,0.010442323884771712,0.09586987427100951,-0.10267394296808025,3.735197894131528e-05,0.01708409446701499,0.00812127966964806,0.007819777327484581,-0.033212348477287094,0.0008008936799736922,0.007183193705988786,0.024820741410035135,0.06966612329853174,-0.02032852032177595,0.0001245819121280079,0.0070635883490131855,-0.007089949586566167,0.004934761130183699,0.006095012557299826,0.0007022655592528954,0.009612399071183915,-0.011673571408875887,0.15636792442854178,0.019192177387659867,2.224737945053923e-05,0.0020880827203760806,-0.023673717777403437,0.06292437571550426,0.027845393502450116,0.00011176313830956464,0.01529040734010255,-0.009589843568780522,0.05423580289577595,0.003377808288970875,4.977224927312775e-05,0.008053550766254313,-0.020904705187316342,0.018870332515083233,0.012963228553177832,0.002160665148485594,0.004998594068823282,-0.012538237538647627,0.09050759509180806,-0.012089748189099343,0.00011399966519461507,0.02114913443062806,-0.006920031642168646,0.03916741751843588,-0.003613521002874849,0.0002735844281886551,0.002465614704737022,-0.00950163779396267,0.057815519383167036,-0.01804403254509644,4.6292964768478414e-05,0.018740801884138715,-0.037475939874216595,0.2213584887749592,0.025160181187284917,0.0002790250275968148,0.02166596437810026,-0.029794781325564856,0.3599580140343749,0.0022226970837790298,3.434935500782937e-05,0.031867222125171735,0.012180190595154973,0.1276887969973105,-0.10031020229076536,3.187006857202516e-05,0.004633056422306013,0.014720545605970218,0.04331818426990969,0.006860953011849017,0.00010946528661295144,0.0013004158435598546,0.03946873298088185,0.2823954906735413,0.019398443638707914,3.228403455556301e-05,0.01525406632106153,0.015253924881487541,0.04653713810767207,0.010252016351227236,7.267069500131917e-05,0.0011644254472676112,-0.015253103003282061,0.055853293349566305,0.058019891883245904,0.00012486997149282797,0.002309523665069692,0.004948184101289463,0.005306440828749566,-0.029285314822135897,0.0005329888025031212,0.030602781030849555,-0.0348859869913242,0.11135835022086844,0.03223582505421308,0.00013186035339936083,0.015498049977043814,0.021226588461492085,0.08241309334785635,-0.01492912813121414,0.001653115352073227,0.004289250834836531,-0.02335982778486725,0.22590475373130495,-0.00787633738553001,2.6590497449011377e-05,0.0011153652811448735,0.020357042751039906,0.05453191319385264,0.006592722125169122,0.0012204928056232384,0.0109463707036465,0.015469417612470063,0.1327115570273794,-0.006616413381216428,7.762307847416327e-05,0.005620828740657325,0.03036792484031964,0.04355968961329092,-0.03403581845473463,0.00016454160363391353,0.014626137852035662,-0.020020412188430058,0.0246674448616562,-0.030063811736952717,0.00046585714669090776,0.008590953766491943,0.013699128072896433,0.06038124517860941,-0.03586798835055106,0.0017584952610887653,0.00071587233493006,0.003833388527990389,0.014414446498008784,-5.64967252379282e-05,8.532479209038047e-05,0.004236920974734932,0.05442252086340646,0.07326321919111813,0.07395332429558736,0.0018465873182900948,0.0004741249242323493,0.005964753868702853,0.018957922075989682,-0.018151479915980085,0.0001246573327499276,0.020979471189808776,0.03298632228363364,0.08254085628476866,0.026955375113067125,0.00016200383818473822,0.004268082119576576,-6.227670710355693e-05,0.0002436904652211805,-0.0876469598954151,6.237363134137243e-05,0.00692986724054233,0.0008112519791863672,0.0027428601723345756,-0.0006267425495459792,0.002803303756122586,0.029976236564009547,-0.02943173756044738,0.173097605078041,0.00938182488397557,8.457955850068167e-05,0.008410163230973305,0.006521556712629992,0.03594111723235478,-0.025458434457660065,0.0001315892727327174,0.00358760365035961,-0.019138327360847304,0.12333463408764815,-0.018619463169224065,7.339519488052998e-05,0.00280041100057687,0.017778829637892388,0.07508473909566901,-0.03199346197168912,5.951122462539064e-05,0.025152699644784202,-0.017160765719077275,0.03434782278050222,0.008540385060728866,0.00024359414358804068,0.001912803650375475,0.022658454124549,0.087060931443231,0.03276470862781986,6.471744203188645e-05,0.002218930448556292,0.038105853182630066,0.4730722732400142,-0.03567025335036975,2.0782389522531118e-05,0.007608412919847469,-0.012751973883598075,0.04125644761193591,0.01480597488104025,0.00010804248110694304,0.007324907902882789,-0.0016174279656251996,0.00709348443169855,-0.01575342979644345,0.0003594126005671122,0.0031288383859495736,0.0796832531251861,0.36136008119797886,0.25872136431060305,0.00012629864086254888,0.016617171620199538,0.004528821126512135 +2019-06-17,0.04784464040875171,0.3286961168186882,0.07961589467919025,0.00015393072163308712,0.0020797956124796596,-0.007577195438554299,0.026602760140428013,-0.009274962224675285,6.834272905477126e-05,0.004435867438933754,-0.033767373276479266,0.10567755749273196,0.022615839225649838,0.00014781268849841178,0.016626647564208997,0.002673227462739476,0.0021720604400463,-0.002034653223550313,0.0004153668802123497,0.0008965597711675234,-0.019339823667014103,0.04953099694203981,0.03429689328542981,0.000204302279806808,0.004145716030975562,-0.009083553900481616,0.026419672315037123,0.0014889292347992737,7.507150295503741e-05,1.3118693324592513e-06,-0.008009291865560151,0.028641322778125502,-0.0003072887705502219,8.205232726874988e-05,0.02012949935390853,-0.05100646366596709,0.3846090455723301,-0.002851775928380074,4.547831179351915e-05,0.004580914060717032,0.002587839786630078,0.0020151829723563685,-0.0034055331344914207,0.0009903020712532587,0.009051970372175323,0.004170476739450254,0.010193195779408765,-0.09996137042386109,0.00014306625995342658,0.0016287086446367801,0.002466236724535889,0.0014567302655526038,-0.0034609413562055012,0.0008275228134147133,0.014882004783922287,-0.0037570862797503294,0.05649779241106902,-0.011179448144398786,1.981720853268009e-05,0.0027235799963819442,-0.03409874972460383,0.08127665631341317,0.04785865411507143,0.00012463030692417927,0.024378532346720137,0.02909204716467154,0.16034981306812895,0.15667280285353236,5.107020996140844e-05,0.00351157512336851,-0.03940835072135803,0.034553446219568074,0.02292180049357422,0.002224435736240215,0.012345541519568959,0.004286183934380203,0.02666356791081038,-0.011212700137326318,0.0001322831868555098,0.0014627945780922842,-0.04323731999624637,0.24041159031393308,-0.011151870143204868,0.00027849127764772844,0.03764804505457805,-0.025044785308059796,0.1329479613604221,0.007147864182522991,5.306358489677558e-05,0.0037539792804539363,-0.006871538624581994,0.03745062657038394,-0.029509181444486204,0.0003023999474407908,0.026101842223471217,-0.05507792823666622,0.6968425106848426,0.0488728152222735,3.279995065073561e-05,0.026253336983351687,-0.016624822851211994,0.16744015043596822,0.05728279595561126,3.3172570813429354e-05,0.005531159154743167,0.01871929099553464,0.05021857582812212,-0.013734247205227286,0.0001200736628958503,0.0026430737728179218,0.019901901770528863,0.14929358788118768,0.0011181717902371538,3.079256020086536e-05,0.005698221430894923,-0.007803029713376619,0.022381535338460917,0.020651785534950506,7.729488722024276e-05,0.0074327362404773495,-0.0017384928468758495,0.007877045877323834,-0.0029822233163499866,0.0001009155586712435,0.007883094869370418,0.043603108158187374,0.047885599174765814,0.03841830826034071,0.0005204608702875708,0.0019959550560143856,0.002475610360349834,0.008972102885855069,-0.00061208558258715,0.00011613792315918418,0.00441122103282203,0.009692414574200075,0.03673847771793542,-0.001179303811548042,0.00169328475980824,0.006209594522648754,-0.02088664080618324,0.20381602700020235,0.007484503292263002,2.6351932039110786e-05,0.0058625626306544375,0.03637440979162831,0.10962952655881494,-0.03737613641540783,0.0010847750465355793,0.0167905140981994,0.007754298951352504,0.057177727430758614,-0.011715193014508997,9.031113358171257e-05,0.0037312526401258143,0.0131038685151096,0.016054921644074106,0.00512149891138711,0.0001926356766031591,0.011735518623506292,0.019502221856480116,0.024565993235444263,0.01775000488433183,0.0004556734012721376,0.008865048074020566,0.03591968777930646,0.14097706752849595,0.08285983440228212,0.0019748513975648262,0.003699152967674988,-0.0034420336380221327,0.011694343238817736,-0.000998002992809466,9.443427360882478e-05,0.009511683473553438,-0.028091127309731408,0.03866683470578832,0.013235293949263517,0.0018059583822604562,0.004336975629020916,0.000919892972995398,0.0024328294761464518,-0.18838965867004537,0.00014981029829067079,0.007784481508132194,-0.014492402539174179,0.036068426815134585,-0.002590515489206751,0.0001628821766365551,0.012820043929673407,-0.004616139590658338,0.01724512021787966,-0.04843211968044211,6.533210209593937e-05,0.010543402459412984,0.0263904172419023,0.0854252317216381,0.007595741666892036,0.0029280477110487785,0.0337937523846491,0.009061634927501004,0.04932669623009621,0.005169639187472142,9.13829352481397e-05,0.021826392883165045,-0.009212580877824226,0.04435759470774306,-0.060503374400493956,0.00015061704038784235,0.00955403946089706,0.00046286345540461223,0.0024765089810970075,-0.017737548692962096,8.840191736194126e-05,0.004719746533344871,-0.009710216688751215,0.0440453467991993,0.002573428316062551,5.5408485882824665e-05,0.014725814079763103,-0.023763179311857965,0.04645539049698516,-0.0008377402985734031,0.0002494007896185616,0.0050277598311702955,0.011590077959726216,0.04718600788509373,-0.0701396201419886,6.107837824871918e-05,0.006799133975886407,0.013385623125786563,0.12438986218731818,-0.06530975163132637,2.7764182600213674e-05,0.013766352547318611,-0.008613965357851019,0.0327633945362819,-0.024373348712745026,9.190162566727216e-05,0.00682323771000843,-0.010500175249058755,0.043496230780031474,0.01938746213459114,0.00038051597497142944,0.0042178594443804986,0.03822627847129245,0.19720992362581088,0.0494010977340886,0.00011102097839435845,0.0010230672760992527,-0.0011669121828735765 +2019-06-18,0.004275108920273559,0.030805699250819198,-0.000769663583695594,0.0001467583082482776,0.007894338971001197,-0.008209592004062245,0.024337949608923368,-0.04569709145764175,8.09371883168558e-05,0.015737479184322944,-0.020357545416272015,0.08473630300619256,-0.03389063013265107,0.0001111355760112374,0.025758748946651047,-0.00628532356472185,0.006764209935667948,-0.14933251984412085,0.00031360170710609703,0.004881312386183043,-0.014743211671010718,0.03253806722506262,-0.11656307401397421,0.00023708174822572952,0.00509681480002123,-0.0315454390137608,0.0797722200231866,0.1526326632718053,8.634389525300332e-05,0.009573258901957626,-0.022103322365995364,0.09033239847425645,-0.003685670995740259,7.17965988436047e-05,0.023589345432589726,-0.03754562010261423,0.40822262319521607,0.06563096163577405,3.1539937391686094e-05,0.010269706284746652,0.017252911550037296,0.013580957650853978,-0.030306536982605138,0.0009796631841029468,0.007736840067496295,-0.012784094191013205,0.030196625126974883,0.01224297022978779,0.00014803807892827217,0.0011365739982241272,-0.0010402011007909957,0.000694838119031533,-0.03255668165668969,0.000731742081303024,0.010456830369340574,-0.006307505632722647,0.09663381141291576,-0.05315029006454772,1.945142071017889e-05,0.006287584246687893,0.02582032303588693,0.06318103271995656,0.03574127659253372,0.00012140204121790713,0.0005227246413522099,-0.004887292389638809,0.02316309283117407,-0.030438902054721207,5.939277165244834e-05,0.0030819180825956863,-0.02336772581982485,0.01900908511516079,-0.017543114399754593,0.002397608146557077,0.015716537667581975,-0.033209240586312104,0.19953717944819163,-0.026842115700071587,0.0001369579425724455,0.015060378998064748,-0.02128220752012721,0.11478499647281014,-0.0038120101395558515,0.0002871043550695453,0.012875686736575161,0.07553234833693719,0.33468162243881844,0.05538720411089697,6.357144419075048e-05,0.005889095567562019,-0.009994726996201546,0.05784314884452259,-0.012263581286689001,0.000284777594020897,0.035440146131926,0.017248882825890766,0.2521147461831021,-0.023958000560582643,2.8391801823672447e-05,0.008364221304855588,-0.011294944449293378,0.11435176724344037,0.022719385160565764,3.300068294311179e-05,0.003452939231787823,-0.028200300715691594,0.0863908678324965,-0.1460335356536328,0.000105149850265956,0.01960534885137891,-0.00459026778019336,0.029653175040158197,-0.011754534487414498,3.575684536979864e-05,0.029849201455029506,-0.02068970879450351,0.055734294994696516,0.07737709006366811,8.230178384949217e-05,0.006689426382313756,-0.012289847878470825,0.041622440980930306,-0.00429955524262396,0.00013501050345076155,0.007577748354483767,0.01659690812310663,0.017447052112165833,-0.04919749382647778,0.0005437267415331965,0.002041965561824484,-0.024473511559977016,0.07783971733580318,0.009621516135227746,0.0001323369274301033,0.003113741689712074,-0.09882408749233654,0.3210289769470034,0.055654328995923395,0.0019757762144098565,0.004678198915293557,0.01707270312899858,0.1345526953037798,-0.05304957719918743,3.262812234464041e-05,0.022865715799891884,-0.04646714174394031,0.12478892074260667,-0.0008778056929745823,0.0012174221535142386,0.014083606047314975,0.022020979453567305,0.19640633392454526,-0.01505324828833867,7.46632320100259e-05,0.0033092473824342513,-0.0008574330536438006,0.0012625921924828208,-0.04060401182483595,0.0001602811715512783,0.013361167194959469,-0.015729366045246357,0.0254445365077014,-0.018244281906606825,0.0003548302104025614,0.010369579843177032,0.04369457449497475,0.1584863804184902,0.10026706071337979,0.0021369084122066406,0.00681693889994435,0.03775261625173075,0.16209560320676739,0.06508203997722763,7.472504565751092e-05,0.0012615380036556391,-0.02530082170202752,0.035619547478172926,-0.028692407823448146,0.0017657264398918656,0.017586226006547998,0.005753457490553265,0.017512683353013366,-0.04936809497850253,0.00013016440871847445,0.0027779636416573905,-0.04192133775190403,0.09666392123513226,0.01787708292374169,0.00017580495059526656,0.0065401099409198304,-0.010634495615891955,0.0415109935920731,0.0006094745056573523,6.252701452917659e-05,0.0006787702588414222,-0.009596241671655835,0.029452014018641306,-8.319275739350879e-05,0.003088191591428344,0.014162357472106375,0.023896997811521204,0.10611467903011906,-0.0017601584736231179,0.00011202332262053678,0.001617689881509293,0.007067366560003364,0.03673340402817224,-0.0610529363174699,0.0001395266689520073,0.003893852846109098,0.013423334530833282,0.07049833494919154,-0.015383337998993333,9.005964952767784e-05,0.015088844911220037,0.0029626157252982243,0.014145533828312625,-0.0170649301563085,5.2638484479392734e-05,0.02589775756735889,-0.010053201015904355,0.018614360103589217,0.0013574971838498883,0.00026332109308072835,0.01229917291844749,0.004271334947845768,0.01853451985936899,-0.0176462226621627,5.7305547341571475e-05,0.0076189788125192665,0.0024543684219083296,0.025937175028031674,-0.009125968438363857,2.4414529955317745e-05,0.0006800181123988581,-0.007998234129366216,0.02220601349081805,0.0015498839227029986,0.00012590195624044437,0.005991205888747237,0.009959728806568374,0.030850269748166122,-0.06775076604289668,0.0005088813308219346,0.005829193919811689,-0.02356024744588769,0.12723086178104026,0.006159536619784165,0.00010606184425295249,0.019007258202549344,-0.00599830625971634 +2019-06-19,-0.007523178721290754,0.05406026925652544,-0.004001838747006082,0.0001471667701403605,0.026161429216773703,-0.041788940043770005,0.16237773671369066,0.0620553319338434,6.175119955581531e-05,0.01030646423486559,-0.018874910993921724,0.060130776059707555,-0.025618721369474483,0.00014520624937078484,0.013643391690414706,-0.025575471665697357,0.02610389649349705,0.032678968564265075,0.0003306634322354368,0.010639713717330832,0.0208663359632992,0.05054720809945457,0.0739551617635989,0.00021599654027341095,0.004259593568169844,0.005387391639255081,0.01445460099033045,0.013842114198707869,8.138028004639246e-05,0.0009068715295674826,0.017251245184213976,0.06805740074812155,-0.019193585200885013,7.437636416548188e-05,0.00546261110291419,0.011852223787604501,0.1166919279926279,-0.004557935388525537,3.483033424675338e-05,0.009684156267322998,0.0051854700923104095,0.004433581829731526,-0.05299063440756726,0.0009019411298305251,0.002897786579995433,-0.010517684689311715,0.022803632712746075,0.001587116714062303,0.0001612790645919874,0.00817504101226188,-0.017465533280963227,0.013960936651450321,0.03470589066322628,0.0006114932288903012,0.0011132885264974086,-0.01667599264293193,0.22912019068112158,0.032767970506029837,2.168957899406591e-05,0.003829060402700482,-0.04077784258431749,0.1135830148484653,0.023250492971904294,0.00010665025319890968,0.005150781632679334,-0.008695090611279809,0.04424401810691476,0.014985794638783712,5.531989779584933e-05,0.00988813219047595,0.024440106345316695,0.024711740245908925,0.04423192470630626,0.0019289578308303813,0.011286611214727698,0.03475021868719931,0.23255568411840552,0.013964024100963037,0.0001229653331568604,0.03166867849395623,-0.005828223476731025,0.030699923676122044,-0.004576088726294138,0.000293972788615463,0.0032367208826689815,-0.03957003107260135,0.18380855474973407,-0.008389208108147073,6.06403399094914e-05,0.008930547327328337,-0.05258066532978886,0.2978779078777043,0.04526261600575133,0.0002909206770735884,0.0208604358498862,0.018104667666430926,0.23768852902427143,-0.002064672802177554,3.160913166778082e-05,0.014651127437914798,-0.020178615834054378,0.2243776746064009,0.02586392940934772,3.0046468761092293e-05,0.008026810206886375,0.004761663965336021,0.012881973136946572,-0.0006510832664026467,0.00011906911077164172,0.009430812520410142,0.04800433541048157,0.36042775722013803,-0.010392814522165481,3.076483627542508e-05,0.0050609828925823035,-0.011858609199890496,0.04131153709378474,-0.005215417255198855,6.364140885156709e-05,0.011262016382950029,-0.003105814689187526,0.013255674600742562,0.001349419038296675,0.0001071327617777478,0.004678325253245121,-0.030905513780302225,0.03106805663279575,0.00851767140908125,0.0005685876744447724,0.014777192213941942,0.021962330821531765,0.0871099694389786,0.0264133617279674,0.00010611983762503425,0.019776421974184572,-0.05333033079798313,0.1888453627207121,-0.016656106706287428,0.0018125380296254165,0.011711602508977017,-0.023277160827355484,0.2755886954839929,0.010881052155786658,2.1719549023169853e-05,0.0033214799778438246,-0.05385680955248263,0.15595279506033088,0.0458387199877393,0.001129064439952949,0.004419575780052195,-0.019444268977092324,0.14105761949713397,0.11443691592813422,9.179535654003476e-05,0.011374027490485834,0.01791475487117689,0.02767491005591227,0.01312458900725464,0.00015278124272197834,0.007313230122772439,-0.0027987367063810934,0.004222450123910573,-0.059357903098548985,0.00038045336461804674,0.015490886163512328,-0.03038416714791322,0.13613362185295938,0.08178033551129478,0.0017299449310411198,0.029617642741177095,-0.003121287496029733,0.011124713207773765,-0.06126790954236472,9.001923526502711e-05,0.017970259405033537,0.006677818114482716,0.008840835757763892,-0.13049473813771173,0.0018776664881653706,0.002290497728745026,-0.019578950406059777,0.06276613388266084,0.023512788848024314,0.00012358906993071745,0.000987845590682247,0.02165504813024201,0.05723886139765561,0.02001434107685034,0.00015336580668148616,0.004460599115035168,0.0010649727054425644,0.005638439510118315,-0.014047283290134882,4.609920932759887e-05,0.0013253469584840211,0.014260687630114868,0.048730053546124336,-0.086344699736135,0.002773713730891313,0.015481543557539225,0.004169305462912799,0.02521509603333341,-0.023554136912872035,8.225146820160744e-05,0.013137182834721602,0.029834675199360984,0.14379684209906787,0.08377706182612189,0.00015046405085738544,0.004737180152776441,0.045925183944596784,0.27146655984618334,0.0510185294268621,8.001718407141064e-05,0.015725111570100717,0.008074400314505098,0.04311998358132079,-0.07684337310120341,4.706294340080654e-05,0.026965354968955673,-0.02512902925271564,0.05334299849256621,0.0002638340562178524,0.00022968238097171686,0.0165501168608069,0.018991019473287594,0.07739360507208588,0.018107058495831167,6.1017945121058336e-05,0.007220446008815327,0.0006559478858631683,0.0071007015162225795,0.0029597750735087234,2.3834133358769278e-05,0.004206635063557899,0.02570078869241402,0.09129453912540456,0.11641166686730876,9.840351570429773e-05,0.0015732324185528009,-0.005269406100108755,0.024222720007292725,-0.0758629680389092,0.00034289940507836655,0.0008516741026459295,-0.01597533611274772,0.08190758877755916,0.002307279888507585,0.00011171144230755504,0.024006113200685245,-0.004024451934273748 +2019-06-20,-0.002998281495517357,0.019966425694081854,-0.00390240590405268,0.00015880298520216785,0.0009849843145981493,0.022565069667223856,0.0644899722492416,0.009404640444976927,8.395663337224279e-05,0.024553724031310113,-0.042006717285242225,0.14843834046031187,0.02243326985298031,0.0001309091063296425,0.0022630327358581386,0.015554760795662845,0.015932737657088747,0.016563559083612563,0.00032948889958042725,0.00039768634059175636,-0.010131939632425804,0.02256530400329366,-0.002018102319474735,0.0002349357873169983,0.0014723650031043284,-0.01583903472956549,0.04348384471238791,0.01611962052050361,7.95330275272234e-05,0.004500786737035335,0.010521045250707612,0.03631129771810532,-0.08140290298759256,8.501723441463626e-05,0.016531780785246548,0.015478507595586622,0.1459259273054417,-0.0008125586806545427,3.6374349665556744e-05,0.003624275545793437,0.041701963484109386,0.03467696981038781,0.09950677335080821,0.0009273851768455306,0.00020319364521243183,0.01100734006590044,0.024608013208854248,-0.0062423483893526924,0.00015641115359464182,0.009489757252548288,0.022498969188075583,0.020519023317522925,0.0012635202239890983,0.000535957427845389,0.005805008200260081,0.0006453241695732771,0.00748483114933329,-0.010477595373533133,2.5693230502697112e-05,0.009125670747393665,-0.01979250279669365,0.06006918828472967,-0.009270697691946448,9.788135876177592e-05,0.007291876490903191,0.015264077553441757,0.07568764668561215,0.029068655820767914,5.676849491728563e-05,0.0006396250343627276,-0.01023511280741218,0.00959306694044745,-0.034301017101688105,0.002080933162034392,0.028095368766326914,-0.1352743343775995,0.8714165226630844,0.1879880496750344,0.00012774435658232937,0.015930921423995433,0.035688532114674154,0.2135222873792579,0.01822872055421171,0.0002588175395634476,0.012897618384113312,-0.02491889580142478,0.13854450666246493,-0.010403360837099125,5.0664112520138126e-05,0.020998333183125287,-0.007659841708798019,0.0434183528412154,-0.00874473688016039,0.00029075906178392224,0.01495647063092408,0.019009618418185145,0.287186609564408,0.005109615466634667,2.7468784617191736e-05,0.025847242049343137,-0.0002678239667784174,0.002712886387262652,-0.003269121588971871,3.298371284539075e-05,0.002046426672227527,-0.0036936088697268376,0.010150888672967553,-0.009846241960295127,0.0001172113304146136,0.009884964180782815,-0.012002449076291105,0.08249304928486112,-0.0060169297209863885,3.360817197892854e-05,0.007438064847955471,0.007538846524182265,0.021036995645650522,-0.06254222611011567,7.945085355692522e-05,0.002990167230611758,-0.008971022505985356,0.04425512430146262,0.015145680631104405,9.268873967063792e-05,0.0046818403327421295,0.0015178579482109278,0.0013376442626866919,-0.08880305808094767,0.0006485837439832228,0.007834526512471256,0.0009623236901434354,0.0036314870725937315,0.000628098469767717,0.00011153795658852101,0.00014967626503176244,0.013368225174796456,0.05413295454246918,-0.003325605173786809,0.0015850070404505722,0.0015992470815608393,-0.027271869054659215,0.2087244223050872,0.015119943442242599,3.359880494723478e-05,0.030574444289969777,-0.009305494768589774,0.026133650461333036,-0.019377890322226983,0.001164154606516714,0.021121564757596183,0.040495198977788645,0.35342426818848055,0.18159809440937943,7.630145385056631e-05,0.0067448041307861945,-0.03034700516728573,0.04353713996151801,0.06843100485772595,0.00016451341927252122,0.004197130060915584,-0.0035647473131995683,0.005586880176864911,0.00016134425727523807,0.0003662379185651683,0.007865357007460253,0.04400039892797115,0.18142185116353712,0.07882760322711167,0.0018798247408606257,0.009113282689600653,0.047277163899629965,0.18937225580973943,0.09283465754897943,8.009869376041521e-05,0.009482407147576564,-0.0602602018716588,0.09098893796095915,0.08710793959171681,0.0016463386658584814,0.013448521947914797,-0.039477323964535495,0.13169440810682234,0.10575331523731454,0.00011876716979393463,0.006462575515841422,-0.01018335976930658,0.028701128759470826,-0.0032710095271299825,0.00014383099550121332,0.026093505277971298,0.02542424838061177,0.11079324928130542,0.054649439519678586,5.600783025708495e-05,0.011918672294116044,0.01325770497899246,0.047776768244824436,-0.11122310638401411,0.002630084119293409,0.017645050270449516,0.015814808415420732,0.07619344006113071,-0.01490614863609094,0.00010324925432784942,0.007130827010117861,-0.022757646123793322,0.11490279655179554,0.023610791104988572,0.00014363408942316675,0.009924871546411177,0.00027472309806555784,0.001544380008362477,-0.09050452517333657,8.413751926167775e-05,0.004090605544209774,-0.0008002092287217651,0.00340588277393226,-0.029633079945197986,5.9050183917843146e-05,0.013049647481500762,-0.06082134190566469,0.10538276691251398,0.12008424640028412,0.0002813946231307279,0.0013909441754398149,0.015680035356277117,0.053911718843393464,0.0021138422137094988,7.232330015569397e-05,0.01575597962389375,0.01334617765667808,0.14740550117286313,-0.041304187348757175,2.3360089125622372e-05,0.003423698881698381,0.01608270541202065,0.050032669849741765,0.02671658118970589,0.00011236068887936265,0.004427158449657807,0.03895109356896608,0.15379016612360927,0.20741479156623438,0.00039922622304489237,0.0008953225719750544,0.025419087474899973,0.11963097030426072,-0.014452371923262335,0.00012169931294734022,0.016417506766959217,-0.000854343678121598 +2019-06-21,0.014544670691633567,0.09440511430293025,0.002350534714274209,0.00016292771032232,0.004699845415064032,0.014189318285343831,0.047905342351592356,-0.0014873341966891883,7.107029351356505e-05,0.027425803057038657,-0.015449664300486051,0.04708433718358919,-0.0027037256490263463,0.0001517888220339357,0.0072602056318525395,0.02117796565819114,0.02095292335805218,0.03469446914723344,0.00034112022668150455,0.004335630075216151,-0.032614662429908195,0.06841323529180096,0.0972037282808634,0.00024944254636358524,0.002022999085857311,0.011833132469015795,0.031530728367727745,0.022899774674475223,8.194311381699779e-05,0.004968294345209456,0.017175305491224202,0.07243070014414503,-0.09711765082936333,6.957795216867536e-05,0.01278622830939729,-0.009221254369048672,0.0801244486353113,0.004809907581954647,3.9466040999804434e-05,0.016287355402113818,-0.000294595590269932,0.0002344551564140938,-0.026660094902247716,0.0009689720268695957,0.0009488587336699394,-0.009866816867199516,0.01912665844118161,0.006170493477770737,0.00018038476357844522,0.005421001550214679,0.022874609204189707,0.01650645153885874,0.031409437387143566,0.0006773674451666741,0.008615251783864028,0.00300109699899447,0.04566804313665224,-0.0034648709784525816,1.958350482715733e-05,0.007655490426813344,-0.020825336515451827,0.05489580648871233,-0.0025988027184093926,0.00011269480487524973,0.002866630424340524,0.011439602989813072,0.06075538309022136,0.011630537536988238,5.3001481265934165e-05,0.010308285247700022,0.011911084579310525,0.010056700765162777,0.011577175983954554,0.002310036026873661,0.008146759975484405,-0.027878033684203014,0.16613837018061198,-0.009975051570254538,0.00013808429932283856,0.014090186215511846,-0.03225823317446863,0.18115193697212711,0.0009984052170819158,0.00027574384468749454,0.00678604738453191,0.025140190244176984,0.16509269918310587,0.02008271992811232,4.2894503741682285e-05,0.013974065577502618,0.05283158254366885,0.3018741481389407,0.03212099087418291,0.00028843934777084097,0.01365978240450717,-0.03611911047015171,0.4526387709083973,0.015034537778665535,3.311429600220999e-05,0.013470264110345397,0.004091075590318433,0.054992120176742154,0.002298440984946668,2.4855285108182243e-05,0.0005183496155893152,-0.02207424561678342,0.061489336386117845,-0.017592851058874242,0.00011564019633953912,0.0035056933777255564,-0.020933203755291244,0.1876675374467436,-0.09738804042398197,2.5765520576145435e-05,0.0018111112056545483,0.003666833057861868,0.01090760876296735,-0.08192256473631404,7.453134663803756e-05,0.004539329726143124,-0.0019144166115982741,0.0077706176808155685,-0.005246283960768001,0.0001126495620683557,0.013096319101112766,-0.06900364214666856,0.058665064648523016,0.1004490175934618,0.0006723076020733119,0.0017936350578898657,0.01015761359486098,0.03896326273833693,0.00612156160866416,0.00010972924218320638,0.002712659386536783,-0.01959633108545635,0.0688598499144912,-0.021745594553758664,0.0018265344646546792,0.02748321818058245,-0.034914177312657786,0.3086745382107629,0.0148858766867396,2.9085946526612497e-05,0.01689790260667426,0.015520404605252629,0.04295199885541484,-0.0474741551310144,0.0011813835769206498,0.02714772658728655,-0.013064112180052927,0.10121637189637214,-0.007314994264577552,8.595176084690304e-05,0.000542501159906569,0.001963770280886055,0.003024913480281722,-0.002451496210586245,0.00015322270044976859,0.006404503207556875,0.030053200058847415,0.0355151388311438,-0.022520859750258852,0.0004857145568975304,0.0017256757677231878,0.029760891318679452,0.12215351389081722,0.0056297047678841045,0.001888383993526172,0.006385121768964541,-0.02222010747901402,0.10242121990737443,-0.009723061483880788,6.960598465483642e-05,0.005881126681468547,0.006809699149580633,0.009868956763482118,-0.02564771595971028,0.0017152754462423725,0.010293789418164168,0.013302413981850426,0.03722067189274334,0.006175125634603442,0.0001415996850003172,0.002544573554425599,0.04861286209408007,0.1287618072093325,0.07416525052876392,0.0001530468881316886,0.011585683993961832,0.03007349748755241,0.11933193140254367,0.037325516112637076,6.150935796160943e-05,0.0007482032978854566,0.0002233972225363359,0.0007823937633115985,0.00040368847470339365,0.002706265788127534,0.0452990046181543,-0.00870272377956673,0.04004867477152063,-0.0009249386212697988,0.00010809550143550771,0.011869098828550565,-0.03476061034886345,0.22526556678572443,0.06225497937991753,0.00011190599823455558,0.012637415125110851,0.0004087375362828208,0.0022668605742341176,-0.041041416735211084,8.528416709378752e-05,2.1616057273511147e-05,-0.007274612385203414,0.026740439032681435,-0.059721010403533295,6.83736428644178e-05,0.01712813549370164,-0.008012043403875048,0.014816910754646353,-0.0013662904922172303,0.0002636422578895676,0.04202078406618879,0.008260742101895362,0.032940630891604546,0.001140822139922534,6.235934243632168e-05,0.013123274147770054,0.016274976982151475,0.1455567806216726,-0.015145526883703759,2.8848233661961496e-05,0.005615389966316267,0.0050303086985743345,0.019903375844701934,0.005685672855378648,8.834395908306763e-05,0.007443302316122961,0.015186295947013043,0.06354119750650769,0.016925488551974364,0.00037672499399273886,0.0009864502332865097,0.0009866115158429613,0.005486987620792496,-0.005891270603342712,0.00010298737669597042,0.01791264620343326,-0.0003823582368103548 +2019-06-24,-0.03980193454959147,0.29990470476665027,0.04281582788675225,0.00014034840657697144,0.018355612761231262,0.037094623492052906,0.12105324322679868,-0.0910622848624424,7.352669830198065e-05,0.0009234032246938067,-0.032458471310343205,0.10388793070967242,-0.024806005607121994,0.0001445307215137393,0.009841045174641964,-0.011728892490500265,0.012910570039835522,0.017916867066091108,0.00030660514882960467,0.012420033287347157,0.028453908069782825,0.06530206565122508,0.08709350362854167,0.0002279884138500047,0.002333927747763558,-0.005895463305051883,0.014712822899173167,-0.0031159921742063166,8.749206623102209e-05,0.001690148507713301,-0.017593383653086474,0.05811408983082458,0.0008969621711770617,8.882961670207564e-05,0.009506366453431215,-0.014425762844400343,0.1310109666297988,0.006833045580615605,3.775980577388655e-05,0.0024757704956552056,0.01933946080533013,0.016531799937386644,-0.018816466420908777,0.0009021297546144739,0.009427000818040513,-0.041641307752247815,0.09999202899543837,0.0949607311838787,0.0001456199459598963,0.006999805534413336,0.032835806476185635,0.025810877375403614,0.05689766680520135,0.0006218265743946211,0.00780386407596851,0.001930523798383589,0.022561005720012607,-0.025469641377209612,2.5499959666844873e-05,0.0032223601996156865,0.013840060259490698,0.04359193693535501,0.014458740662435673,9.43154524103854e-05,0.005359603701837545,-0.008806470413854175,0.040665871633043485,-0.0032950228409907955,6.095840756917973e-05,0.007387549011700966,-0.015232679428184424,0.015386717719555333,-0.005374316175181341,0.001930871127782253,0.019599078215894187,-0.047441081130013094,0.31787894623739976,-0.022966534921003496,0.00012281316415582095,0.02417222458392731,0.02137172940862363,0.11064508268905282,-0.00965836399480215,0.0002990995647844618,0.013073963357058594,-0.0354463447578368,0.22441467119824032,0.014693384680341235,4.4491922033333376e-05,0.00460792475402928,0.011346810955257509,0.05720637300259719,0.005697818035238882,0.0003269009730181875,0.015311110591100775,0.043482899486579726,0.5984383382583558,0.0052662631414140725,3.015291604847095e-05,0.008948251998445888,-0.015097492936053282,0.1307263552310369,0.027890506082556187,3.8585434166176864e-05,0.014468725116882452,-0.00029312915674652916,0.0009115385484876667,-0.018463399342926436,0.00010358735287001795,0.01359083524100527,0.009996429751007434,0.07782102366550625,-0.0036215881572728304,2.9671558291523964e-05,0.00782727036793056,-0.0071214748208614015,0.020101169706624473,0.009013068665406587,7.85463476101841e-05,0.0015885642841171749,0.012466318976544166,0.053725182184084216,-0.0779311890375195,0.00010609842421258615,0.006350964038147473,-0.07980144219695706,0.08619998992527701,0.07602520717452851,0.0005291503484486456,0.0003827438378093959,-0.0075039748647937965,0.03133635212252166,-0.04300457866323392,0.00010079266796644484,0.02748856475689663,-0.00958969789758286,0.03346834185162836,-0.019046953844717454,0.001839034617186523,0.01197132177563565,0.04929951985504112,0.4315862405041643,-0.01600953122764612,2.9373607977675235e-05,0.02535898300675707,0.018447816238946455,0.054626428318696005,-0.04947368206171247,0.0011041127576794292,0.0011358284226749488,-0.006645429790282182,0.04905123623415384,0.0056652483273027235,9.021915598685685e-05,0.006187010235915673,0.00871935693839607,0.011971884523058989,-0.007281974980251014,0.00017189661459938028,0.012178872515905072,0.0072434028864506025,0.010686949727773254,-0.06483912274167619,0.0003890386855464951,0.0017161661530162675,-0.011026422885204114,0.04175444889802223,0.01619231169745697,0.002046832149127164,0.012826383392058828,0.04306211415473022,0.1827060532053846,0.053115081277495306,7.561932252296643e-05,0.0006515109382356369,-0.0621372734120762,0.09640286673313496,0.09106145124731997,0.0016022837771531902,0.02064394679465648,0.014892683147725395,0.05066161975039855,0.017279934564733198,0.00011646888431546761,0.002732474832746427,0.01611270768301015,0.03926381232451888,0.00571136199697691,0.0001663552223410124,0.04416551562647044,-0.02558627150882237,0.12023189812470868,0.019776976212829596,5.193991393573456e-05,0.007132830274392578,-0.023537055756143403,0.06814683907109124,-0.01284831808472935,0.0032735914504193786,0.0168238943131853,0.007198344660505922,0.037998773505926606,-0.07779940112931563,9.423313261929198e-05,0.009632816970657996,-0.01037335416616037,0.06446417812201598,-0.014163395465124722,0.00011669749673397485,0.008913831523221685,-0.007157075718571422,0.044075642387294375,-0.0018990193546344087,7.680432203153407e-05,0.0011594229925745263,-0.009967880781804179,0.04314050244952978,-0.00780391770379288,5.8071765682300705e-05,0.017714868899235056,-0.03024679887025454,0.05528188160666248,0.02091702059524144,0.0002667632476471394,0.035363460139601226,0.006865893186779145,0.024402610982086854,-0.10192430824441125,6.996407909218575e-05,0.0008774060271691275,-0.03487846189454699,0.3507105671375679,0.14756462388167102,2.5659001878340395e-05,0.012680562694581855,0.020904181598097066,0.07489699576189895,0.047701457608951135,9.756133541039146e-05,0.0071274161076949494,0.006406121845992379,0.02728702563606151,-0.03044889905371333,0.000370055588145646,0.010900092759082911,-0.009923865289594904,0.044096868091507126,0.0011490566787716481,0.00012889762366475002,0.010183423777926434,-0.004147606598820448 +2019-06-25,0.004099748210671996,0.028108302326374925,-0.0302345454919194,0.00015424431027275575,0.008872841762183479,-0.006034621523870107,0.021147629188048307,-0.03762307034283609,6.846977131262527e-05,0.002063566559075726,0.016436839808009585,0.06521892783946884,-0.004861244041031954,0.00011658478391471453,0.030175447233525096,-0.01320214902760038,0.012230640719470193,0.009667349247323404,0.0003643034451961237,0.000890681668609374,-0.02277628844358729,0.0468752924050723,-0.013348013948361208,0.00025423581831702125,0.0037311388159312255,-0.003785781852883837,0.012587005336960186,-0.0072836332072860515,6.567194948401664e-05,0.008485892388079303,-0.001674255663198917,0.006004954586506332,-0.0023155743858452745,8.180915454861047e-05,0.005692329231478907,-0.008467946289788506,0.07500594301647587,-0.0006210892827874036,3.8715157786130534e-05,0.011603459383366693,0.007234231374664079,0.006399804651395569,-0.0018982319333365125,0.000871706860010582,0.008834541657238047,-0.01011360360540049,0.023341790905123377,-0.0008473920956481418,0.00015150732829728259,0.020108081662965283,-0.02836894068081647,0.02181581692719369,0.0198652472717036,0.000635617721238988,0.014068634952996466,-0.0019362685402037497,0.026077318516597375,-0.12069450806660097,2.212714832321458e-05,0.004727310630585727,-0.00619036962988169,0.01705993477237475,-0.02625574098781016,0.00010779292411295936,0.006714679861405329,0.008497849277499374,0.0428131501841124,0.0065761446884331776,5.5871927989082836e-05,0.004790898965664833,-0.002862429538590083,0.0025170225253471055,-0.006318588540812582,0.002218046646566088,0.005900693737388366,0.028493055302552944,0.1916083833683852,0.012033415587205103,0.0001223704683181335,0.02583548491954415,0.008714617526120598,0.04156876998673957,-0.05260328231481586,0.00032463055118641933,0.0019193057280012173,-0.006250207124663592,0.03621972863193343,-0.04820528873878894,4.860827099949124e-05,0.029093725696535996,0.06344475466845047,0.32027127888394163,0.08090343816949103,0.0003264859795121889,0.02061083621201314,-0.025366540970385754,0.37855836192972986,-0.008862521409684694,2.7807288173765537e-05,0.0025154429321756415,-0.012346500159879759,0.10435429077302077,0.009219106927042309,3.952894874543323e-05,0.004501169121037143,0.04066514117232388,0.1296825899038411,0.06515160427331258,0.00010100976596601106,0.005230309504854412,-0.003817685384407678,0.027632928598599497,-0.0016656120614985802,3.1912850415251906e-05,0.0153631223796546,0.037029008659542166,0.11173676701081778,0.17163496051497815,7.347225447320584e-05,0.002234752576047963,-0.007744777100652665,0.029630764323573963,0.011222925442662204,0.0001195128668812673,0.00601160645781416,-0.005661239701027968,0.005730097394908299,8.99237239853038e-05,0.000564709509604475,0.03257488969143821,0.025204962932738433,0.10338106102859285,0.022478726689220328,0.0001026197818327945,0.004357949234292335,0.03443908356206209,0.11364201693827423,-0.010123171494396037,0.0019450547380622655,0.028662881854365975,-0.01408765810761135,0.10961388893074099,-0.015187915231264004,3.304877850191339e-05,0.010694850137801745,0.024917616923849938,0.06803904198789643,-0.009684722856075039,0.0011973457710243158,0.0018651473931805575,-0.013621098716245486,0.12885721012051396,0.03900171427340785,7.039293275287904e-05,0.004297137318296395,0.001235058058778322,0.001774764745408756,-0.012763238265186825,0.0001642449279329797,0.0062641147840434876,-0.0011509036939037689,0.001742338748445969,-0.0016216459103955987,0.0003791493385106388,0.01629062488668594,0.019744255836586167,0.07106547868557307,-0.03997404344568868,0.0021534382617004375,0.008066882947634534,0.02346722639352937,0.07793338149493755,-0.011776151192720475,9.661145282673892e-05,0.002074877576591338,0.02911328309984275,0.045584234890925224,0.022283987120203744,0.001587646116982174,0.001364547382978166,0.010550481288542713,0.03485235556440969,-0.0009960784708829668,0.00011993782586452172,0.004679474796781812,0.019495457911034058,0.045344591113635736,-0.029283957623928176,0.00017428833714954375,0.012032819610147856,0.006128039909979175,0.029185597172154062,0.005181331662538171,5.1246820556720136e-05,0.01812387550183722,0.03448510446992796,0.11581384743226011,0.008930003648069949,0.0028222086229277004,0.007829246251833753,0.04633363951265048,0.22944273562299436,0.07501487515868899,0.00010045294511297113,0.014489661261269085,0.02487193074786273,0.12670648245677832,0.036284640774462716,0.00014235458176378493,0.027818785105821833,0.022839881818542417,0.12734945018520705,0.007410404432481464,8.482922060982981e-05,0.009629771777089072,-0.01657657667266771,0.08087332418429163,0.011517791307234553,5.151538467067849e-05,0.0008369780529156043,0.08227328381286533,0.17371849967189323,0.13865947173775303,0.00023090968882844798,0.01584108596941348,-0.0033350611985806557,0.011544581050133585,0.0024689279386384162,7.183564679681681e-05,0.0018966087096276068,-0.03129183573059871,0.34071617463768844,0.08994759039573001,2.3695701815425605e-05,0.000958623744837419,-0.001237791520798791,0.003972965907397909,-0.12035967833302962,0.00010890344783672789,0.00014760345890447738,0.017610898464188684,0.07045032369686648,-0.01696219942491632,0.0003940274618725972,0.0063882413185811894,0.028570968148874124,0.13252712682999623,0.01394591179619061,0.0001234786777857933,0.015486369458140222,0.007954518854552652 +2019-06-26,-0.00875421063829164,0.07380926474056919,-0.01249990420848106,0.00012542748004136013,0.00688778643685372,-0.00404501372410987,0.01609811989054065,-0.01651497128737012,6.029140000203629e-05,0.004396561620596948,0.018891812800257785,0.06131447417126015,-0.021072603402026022,0.00014253050695547056,0.0016528627688111985,0.022146999572032863,0.02223368873671015,0.01627720400170941,0.00033617950405136465,0.0076067303770353785,0.001051050826931399,0.0021898242783833424,-0.009367808770897426,0.00025113788017157827,0.004203032318174762,0.01732009086551478,0.0482609364081248,0.06944398729962326,7.83612150867393e-05,0.0010795315531872496,0.013192099144157912,0.04923882429759901,-0.012305399259170253,7.861331085163388e-05,0.0010253507082732445,0.00453421680762439,0.037499268264277644,-0.0022011965853350095,4.146465952761629e-05,0.06514589566906821,0.007177721597934151,0.006397814218924661,-0.0007078951651006208,0.0008651666521132461,0.004944095472031821,0.028962080077230893,0.06859109284283324,0.027582692477604517,0.0001476467575648111,0.004722493885134163,-0.013663455931358716,0.011057244438561573,0.011758105375717013,0.0006040014874821206,0.011481211597661425,-0.008354157072441252,0.10783775155931179,0.0008429298082058994,2.308631418597846e-05,0.011615981736150478,-0.018186616789205273,0.055170507172150426,0.0055120877293101155,9.792554051019598e-05,0.008389389019587978,-0.005954456409779906,0.03781499166444115,-0.04808902976806827,4.432410036930267e-05,0.006939250168556464,0.029920689371798,0.02952647203187359,0.02134824638953341,0.0019764371550050857,0.018700687348257,-0.007068629807125907,0.042868713623959886,-0.02837529782514743,0.00013568970360293019,0.005371697403454257,0.02491288060063163,0.15266756962619116,-0.12571106701297377,0.0002526884471628717,0.00184762166717229,0.023123383815793108,0.17417641320361946,0.019256910330017533,3.739581485901468e-05,0.011345269043168975,0.00022614707372285234,0.0014298271018048678,-0.05390695225686694,0.00026067192267209923,0.04600925683210986,-0.04099901046724346,0.5687343178347739,-0.016313555387018376,2.991535573035386e-05,0.006212746248441715,0.009410009689214082,0.09684798374634267,0.015627418041803322,3.246244269567113e-05,0.00072665527591917,0.01435325715632854,0.036391733621928345,0.003061055071334637,0.0001270487734760394,0.029454933750649594,-0.026109867410175538,0.22464913984256385,0.021416920680601723,2.684678485366318e-05,0.012639332956144677,-0.017271980408914218,0.04486670164957985,0.04079989338921666,8.534839828797755e-05,0.004845517497370973,0.002307588519141869,0.008663250475756628,-0.0011320456993693675,0.00012179405612176652,0.011076761956409203,0.024388902566587923,0.02582609282510677,0.010278024569139187,0.0005397704589831451,0.020947490033636544,-0.026383700770010465,0.1171169904463022,0.005134147249796607,9.4820407643033e-05,0.01558360251849724,0.004518674570695315,0.018545866958506286,-0.012052926510024972,0.0015638068091903682,0.009621382590016013,-0.0002420160609520724,0.0018917906383684943,-0.20065920186236888,3.289677401000846e-05,0.003992991949276564,-0.03795771589095506,0.09394984663572557,-0.020933172029784793,0.0013209161958022773,0.010044858338586333,-0.009413836648346179,0.0626492908862498,0.015922395220184748,0.00010006360417172154,0.011228208453634739,-0.004451412140595174,0.007445967852057909,-0.044373914424786456,0.00014109838256853036,0.007748449690313156,-4.752553655794445e-05,5.965763535157918e-05,-0.09469991475468843,0.0004572617849021112,0.007452898066625668,0.04586034673323511,0.2180789256305151,0.033075017900416004,0.0016299488511368936,0.0002713384598238165,-0.03945684143567966,0.14774138873936057,0.10939044929441288,8.568612635748904e-05,0.009214205719476004,-0.005182347271829766,0.007704368134554849,0.00048110838885183566,0.001672117058319557,0.027446794615637017,0.01335218424672463,0.04661394623596266,0.007114271155838083,0.00011348866364475633,0.013988462802206357,-0.009593672671638907,0.023636930359213784,-0.008131228429913517,0.00016453344727060775,0.029747140208897762,-0.027069683065060985,0.10620773658000585,0.024492773755696032,6.220724134873787e-05,0.0031840746972880717,0.05028255661597097,0.1640646571855819,0.03766626677639801,0.002904827676844441,0.013015851578496723,0.0037240853636453532,0.020364249966049366,-0.005597387554535076,9.096865609218641e-05,0.005092972439399498,-0.03342690078287,0.19516380974892247,0.02235931862721838,0.00012421029962607374,0.002381476294008494,0.042356595226365513,0.24092266357892075,0.025403920381225874,8.315571181186473e-05,0.025601790231766203,0.010919187924841483,0.04610304883034606,-0.09118535614317062,5.9526190353815805e-05,0.00043758890241006837,0.025806737581881532,0.03643570443461964,-0.01857918558908585,0.00034533081159776634,0.027551156798393324,-0.006373591510949406,0.028042108676906114,-0.14002332236981574,5.651814945428428e-05,0.004916359706631583,-0.005964296765252623,0.06552173507786554,0.004330918174392044,2.3485788228162953e-05,0.017221060838257408,-0.005633246533767841,0.015650020491137905,0.004311518649905458,0.00012582090718136308,0.003998808326031463,0.03913911612610889,0.14184765758822931,0.12323754734772296,0.00043492744770745476,0.0008716860826267409,-0.011191941039609039,0.05231179643673133,-0.045115194201970854,0.00012253991512790614,0.015566237873582835,0.00273018640007089 +2019-06-27,0.043098782012115734,0.29035690222981086,-0.04144155868429782,0.00015697100057288633,0.0018861025139338264,0.004939833622077399,0.01687448797893737,-0.003675829034267335,7.024125207023368e-05,0.007797395609000595,-0.0387165688924671,0.12639035605501076,-0.29688127098113015,0.00014170335403236334,0.007596472429198628,-0.011072106465982461,0.013215736687579619,0.005047840332050105,0.00028275268156494017,0.007817760877738564,0.012162937434395671,0.025046213358003066,0.012814161867078766,0.00025409385910672754,0.022617194700522054,0.009006073901196787,0.022630383938258194,0.018018031263330164,8.68941069359011e-05,0.00408610189229515,0.049124435256052375,0.21430545634377424,0.1199685723015817,6.725958716331538e-05,0.00672404363425708,-0.05497610404342419,0.41255366821095507,0.014939954702231884,4.569746629869588e-05,0.008469176087598689,-0.006520007291557404,0.00449219535327336,0.02667465083460475,0.0011192683772043904,0.004194707014379687,-0.0709731863902568,0.1799046976345344,0.17257624489435935,0.00013794745301146436,0.01857441471863231,0.004626287326683279,0.0035645674100363567,-0.013269895935509207,0.0006343809431884197,0.002879866408840631,0.018174045822745986,0.2385132507057454,0.10121703570257369,2.2707111718348807e-05,0.0027027108406388655,0.043982515897388504,0.12688441945948328,0.10260712806373419,0.00010297286808406801,0.01461788034404682,0.005107717528652213,0.026154244010712757,0.0022815932544057505,5.4972630460691535e-05,0.0031943114187285484,0.03235392045395198,0.031745077189160885,0.03241699352182847,0.0019878037179046084,0.009813641698179689,-0.07510564877882198,0.5001527474085097,0.02884767932013761,0.00012357256202610986,0.011831362644005868,-0.0860421199194397,0.4718798730762501,0.02406203894152304,0.00028235005720040506,0.025517387076198824,0.020517428898689932,0.13072862639963337,-0.0430802229040711,4.420925487249014e-05,0.028894998710700927,-0.0007449528815808383,0.004119546692488669,-5.1746887957994184e-05,0.00029803425428884034,0.00863227550287369,-0.04246140188814656,0.5412153125383403,0.002237824732149142,3.2557757514426546e-05,0.020280630177269207,-0.0022154828002406888,0.0247500613460319,-0.01741123842266609,2.990706620513684e-05,0.0009715514120643793,-0.00332248590799848,0.00882275639907862,-0.032518494216732245,0.00012130581363387552,0.0008389404648243342,-0.02273643591969413,0.1756030824404887,-0.01623244784771368,2.990767332951347e-05,0.04304275314193058,-0.00882447426278822,0.026333074419677364,-0.021968852093597245,7.429586725820494e-05,0.004716304069879546,-0.009303908679978727,0.04083801482803273,0.0003146283676725205,0.00010417161858867318,0.0022219223963538056,0.027080408495086798,0.030133587324443552,-0.1372144673179085,0.0005136649542747403,0.0020378430088678,0.01753475042463601,0.059847802899197194,-0.01756785601472986,0.00012332109903494352,0.005858837573386455,-0.05807022782537503,0.20046896088160876,-0.03579311093890712,0.001859197665297293,0.005823387895530137,-0.02783119140902252,0.2459080656850491,0.006583331434125873,2.9103231897338902e-05,0.027862000411095697,-0.04668997381403752,0.1548091740449039,0.031014455136732094,0.0009860483406374497,0.011997787598761505,-0.020693393974905622,0.1612683237368263,0.0585836700857339,8.544925835150104e-05,0.008835856320095443,-0.017791311465101673,0.021832434286949653,-0.011228202956097125,0.00019233184042083344,0.008008303938888742,-0.01567854652297907,0.0234858764109579,-0.009877383542517852,0.0003831800957846631,0.02198295750913959,-0.019096569518745464,0.07160160944266344,0.034192666747484425,0.00206720199280598,0.004934494727923795,-0.012788544146671153,0.051821652580582064,0.01597793421396014,7.917721451023412e-05,0.004917163798814709,-0.046034820581633024,0.07477763712305997,0.031438042180781015,0.00153035402025932,0.0021585222345684328,0.0457240394219871,0.16485382795047368,0.06776390911046858,0.00010989086476387809,0.001152889074592096,-0.0025565888281724176,0.006095214024042942,-0.0005667798685969315,0.00017003264202697575,0.017895512827403957,0.0023213329088910984,0.01190644423917458,7.475043304015262e-05,4.758491204953551e-05,0.004270861610616189,0.08784024487486834,0.30378877422451783,0.1283312414258284,0.0027405635310442534,0.009843039071326451,-0.01399144948247708,0.06737478914500908,0.0010059646166997397,0.00010330131747414838,0.019279422776847806,-0.018259057885063008,0.08553205056529485,0.009819994113635074,0.00015481401210073328,0.01113655806761096,-0.0030435920902673287,0.015915308686152523,-0.030845558302024803,9.045239676781146e-05,0.015858873664610234,-0.01835369886186586,0.08946336396239622,0.009133689018596755,5.1561527213402e-05,0.020452793331976322,0.015249386344796289,0.026158082548551013,-0.01647605135186986,0.00028423388786633915,0.02134635828750111,0.01686562501186237,0.060527385706613326,-0.07704917936875119,6.92890967021267e-05,0.013380401822074915,0.012184828391884318,0.10516772264801577,-0.0025377573745256478,2.9892912639954038e-05,0.013538097434626814,-0.007367246703330282,0.02266282321514388,0.000750941240206469,0.00011363187336485729,0.007625488498139793,0.0016032759916146748,0.005812912737975335,-0.06237633246813373,0.0004347528690138004,0.0023477730611219934,0.009077977999176805,0.04773278969556313,-0.006298149927240757,0.00010892914751892592,0.017356394511668517,-0.006217536619777549 +2019-06-28,-0.0037435319439133325,0.023869514875755525,-0.040602421957525274,0.00016585345949232018,0.0017471591626458725,0.025739119160712524,0.08385153074225546,0.013942001373859857,7.365346990973814e-05,0.02604983493919366,-0.009331691618085041,0.030001289637438762,-0.06850789557456234,0.0001438857083311715,0.0007376218052596673,0.03163851348410586,0.033561796138339366,0.06807747536440935,0.0003181549843660613,0.015174615656308198,0.00027042542394737154,0.0005856940878129318,-0.009399649049842706,0.0002415874953980419,0.007200022209565973,-0.017734285769121172,0.04654121935863073,0.027557869098731785,8.319987710294088e-05,0.00920105872053153,0.009672634814451166,0.03251882671727874,-0.00637146050828117,8.727699381094358e-05,0.015829523294746958,0.011036028625642959,0.08841987811162084,-0.026933727382352238,4.2801749495501136e-05,0.01750231666244677,-0.006435118164710573,0.005581638476308562,-0.015035513020555932,0.0008890774780807441,0.009338608872525179,0.0393795973765934,0.08937998552877569,0.03040495991600151,0.00015406105867286175,0.01629550538455962,0.0003793944502153248,0.000292908603263413,-0.027853768038166176,0.0006331158761090758,0.00277820410915012,0.0027925207422463054,0.0341660713232485,0.0007201239401033601,2.43570200659569e-05,0.0019779441119607186,0.052715957559024244,0.18464837570487794,0.06363515960956401,8.481011378564709e-05,0.011127750812842976,0.002695528183696217,0.014350283892935814,-0.08891807114630278,5.2874369605711375e-05,0.004650548757688182,0.0035344545780012925,0.0027318969015331773,-0.0025625003773347642,0.0025233707921631385,0.0015967524259765155,-0.01199814734165053,0.08504723687653044,-0.03365287911702837,0.00011609301506074143,0.029708348619739058,-0.06461070133791227,0.35801089572247563,0.055812176457135536,0.00027945793332507715,0.006967958442089175,-0.0003963742896646166,0.002168943055188687,-0.0052672247571678675,5.147759903814731e-05,0.006018468978539924,0.009024803887110484,0.037562664955129624,0.0022621369548661524,0.00039597537993729296,0.003085261509272043,-0.028766644982472913,0.3738922745324769,0.0036994942085350683,3.19280910423555e-05,0.018504274289376763,-0.012196754714555766,0.12191657731219685,0.012106202004082814,3.342437054092219e-05,0.005453552469584334,-0.010764931570106745,0.029566413502103667,-0.00772311926158016,0.00011728308547385226,0.006071694676504263,0.03973333698763271,0.2592024251206089,0.01886124117557215,3.540856742181435e-05,0.012037646300968437,-0.00406975523658203,0.0102627401022279,-0.009794759683837534,8.791891951487578e-05,0.007238024112609762,0.0057196144573627185,0.022412479542783543,0.013893081737629197,0.0001166877980761942,0.00198017225092587,-0.1053394434772083,0.10015667949752308,0.1460634742968779,0.000601155276072174,0.02430047579612093,0.032299699950718366,0.10885668973916722,0.013515942575975394,0.0001248904911276395,0.007199779867873348,-0.01990412821716268,0.06751310690928586,-0.0632786285490635,0.0018922313824143281,0.018084291734640157,0.020575102339393102,0.1863246963056168,0.014363585540421202,2.839577833487303e-05,0.01892943071842379,0.010114235218088045,0.03311568624218222,-0.011140390654573095,0.000998551710685919,0.014699264376469344,-0.03422869895193984,0.2443019204695961,0.11096211150707316,9.330161344387216e-05,0.00206225645331423,0.0003668174629630062,0.0005261348399898918,-0.019329594999279907,0.000164550167194603,0.013068757903806797,0.010383086587494211,0.01142695771896923,0.02051724389969252,0.0005215545867382654,0.02157282087955156,-0.008704034890205959,0.03639032479550146,0.01628657294137329,0.0018538945706640386,0.0015303857860089328,-0.013448376761256823,0.05301454987049568,-0.07591210638231959,8.13888963928453e-05,0.009692659983078668,-0.07374819574644971,0.10744699288226835,0.10552131066076335,0.0017062172411519644,0.035798096936563224,0.009062599072091478,0.029400740598074314,-0.01056932605462043,0.00012212667506843888,0.01283908648217203,-0.0259881122878627,0.06288640770785876,0.007428767397767705,0.0001675244973979485,0.015206546442936245,-0.10401244694979743,0.4302540041316242,0.3926498224661444,5.9003030424335486e-05,0.04096624926212446,0.031745903463657604,0.09102977415898357,-0.020338123526339187,0.003305386766060699,0.012611276329526164,0.04110783015713721,0.22072382177699354,0.008844317713562755,9.264370542202979e-05,0.011547095624853718,0.01880517009380155,0.09903205243674533,0.025199767353893593,0.00013770898285088225,0.006866448216862865,0.03400522764068376,0.18362425412744882,-0.03223257486311092,8.759197937442487e-05,0.014163831326753227,0.043392169125423104,0.17725620358634603,0.030289244182807616,6.152580602961658e-05,0.01830560754545352,-0.0771604492085999,0.13931290959113932,0.11313935571348174,0.00027004290962204,0.016944880469846862,0.02277067251368945,0.08316497442975687,-0.047645786695036864,6.808473867876322e-05,0.0077600209105342126,0.005625175417049671,0.05250879730310662,-0.09300975121967094,2.7639824719645828e-05,0.009053740609966847,-0.0007798975634550073,0.0030250083967191207,-0.043457418450184554,9.011974279891647e-05,0.0036455054999573874,0.008981992109302395,0.030477400340156658,-0.015575138603178695,0.00046453957716853647,0.000992818184212583,-0.02500265135486514,0.12108568948194705,0.006819347554978832,0.0001182673979736308,0.002621441873022551,-0.0021245276255212105 +2019-07-01,0.038930288608618906,0.2754943011048357,-0.07220052714841739,0.00014943818625396793,0.004958364435656049,-0.0423222891006954,0.1332466051335444,0.06998878554405924,7.62120288574707e-05,0.0030875286487778856,0.054114760689484,0.17032773151613106,0.09551985542757715,0.00014696962442117963,0.00107046950319359,-0.0016720779463131846,0.0017852256201432452,0.0016981319446450144,0.000316104926427631,0.013854425783934282,-0.06020683495641404,0.12161027251590019,0.18417018005155422,0.0002590438629348893,0.03259000002582666,-0.015623891080862672,0.04704481182037295,-0.015110767826626027,7.251439147431694e-05,0.004171435849378982,-0.03204715193670914,0.12747597779102438,-0.026793949161340598,7.376510122461798e-05,0.00502569355984667,0.0007468586292691854,0.006447419184687468,-0.026426833933909655,3.9723829626446005e-05,0.002551010016080597,0.008168956838009587,0.006645160728026176,-0.05487035382876973,0.0009479946758377706,0.008914484536817039,0.01637756752696324,0.03980923064293031,0.0032230317166304385,0.00014385584113225876,0.007976256610311448,-0.007464802849114368,0.005531895155884435,0.00034652232147615997,0.000659581946412083,0.0020568060179581324,-0.010636821838151216,0.12600085746975806,0.015159822260404245,2.5157134627108933e-05,0.0018020332572445982,0.01272949709764906,0.03615051875983575,-0.008024023880043012,0.00010460386955390317,0.009064580322922046,0.032953453581948504,0.1705274203401232,0.12779131291918006,5.439619628071149e-05,0.0016886867155252955,-0.0051731276530029196,0.004341156325066753,-0.032905383235893905,0.0023241852611362392,0.010783612271165314,-0.008535238731348399,0.056020427761219474,-4.907183086081051e-05,0.00012537800639727026,0.017831524929297828,-0.05519004623699064,0.3172932177711325,0.029972410340004658,0.0002693445552525118,0.027870987205271508,-0.005290770233737541,0.03708424552549612,-0.0006745216724227354,4.018744628000632e-05,0.015181564199203858,0.05771313526496212,0.2738599013518714,0.04529210447778937,0.00034732258771384233,0.011402437805624457,0.0050440365429871336,0.06653436032667535,0.0017144453003781208,3.146027175104186e-05,0.0067830932663049456,-0.007553268813416783,0.09046283337918945,0.002596329346368968,2.7896290955202194e-05,0.011333644271302437,-0.011441415055836339,0.031341462893923595,-0.14035900251488304,0.0001175934772544849,0.0025195764746995023,0.059731939567779405,0.43762112004414455,0.014460853604874487,3.152831201462322e-05,0.028196142701592375,-0.02014558499969281,0.050179285091541764,0.04764298151712171,8.900876924206425e-05,0.009037273318951593,-0.0067126814784718705,0.023202822685326308,0.00535648752043254,0.00013228293266746253,0.00624751264429132,0.09230371647020681,0.07984480983224704,0.15126667685369893,0.0006607665629996404,0.00460412202979149,0.026028027970770442,0.08597990670110067,-0.016089249029602057,0.0001274178592826801,0.004040099993085675,0.012396675950955921,0.04122109753731187,-0.0062302794900742095,0.0019302113838118137,0.002177268248051367,0.01206996229775522,0.10705264030966008,0.004651348891277327,2.8992837790485196e-05,0.009979727413250006,-0.04508623657777332,0.13328787795020242,0.040926248859407176,0.0011059222650741858,0.002047345886666974,-0.0014829495420522524,0.011773253743841973,-0.044582225116614284,8.387943823327035e-05,0.008379689506583427,-0.039290124762831925,0.062285061408891035,0.06604295233911002,0.00014888292661237751,0.0006172323484782477,-0.003496555149729319,0.004668167719229344,-0.08245540677983967,0.00042993009360831264,0.009658215590236835,0.01834959240979739,0.09232321228945378,-0.03966248246565353,0.0015405147332429045,0.005285845362684645,-0.021053904338386952,0.09417051671480285,-0.007600889002561818,7.173119439474141e-05,0.005041706150857313,0.010681174407939842,0.014334888732124804,0.004906614352310047,0.0018522596754336873,0.004841539116943542,0.0022860342316237893,0.009915744230542105,-0.021634743787810995,9.134261695114201e-05,0.005433282539447638,-0.010080228852992156,0.02426270637420604,-0.009270072143321137,0.00016841917115816032,0.051982064728345864,-0.028808587776486507,0.11353510163555325,0.00467766689259511,6.193066469202886e-05,0.008678418339803012,-0.025572865119386678,0.07982291331422656,-0.03217192231725088,0.003036476131684183,0.008909974210279541,0.037279994562101654,0.18682240018099394,0.049689481853211474,9.926301533140501e-05,0.01498667620610918,0.031092804230018336,0.1784000811188381,-0.017640158773940307,0.00012639375875730903,0.0077577214442121605,-0.05526147080817254,0.3349724526095238,0.1828455609945056,7.803007876702625e-05,0.011613539408643516,-0.004821624215405436,0.024611104705494838,0.0012472692957555076,4.923904786739268e-05,0.013451421915862244,0.01868841109283609,0.03434986746836275,0.004831292855151182,0.0002652630184015746,0.02594415764148817,0.02352334401147024,0.08394572123962236,0.0035444784565353267,6.968107962648065e-05,0.005600824301474011,0.008962083967386049,0.08098914478544099,-0.0013514531932801853,2.8550484397758476e-05,0.0058089988209318105,-0.012080349192689964,0.038421497843765015,0.013048324871099012,0.00010990416753006588,0.005056154688477303,0.005893193162484385,0.02645673338777591,-0.01601208951847124,0.00035110937550499125,0.005140518288819114,-0.05666188272320188,0.2564808342092665,0.027698722676229373,0.00012653418707900412,0.003818266658435038,-0.0003189937318299616 +2019-07-02,-0.025278231713896007,0.14504998746018577,0.02203113860211148,0.00018429585976206258,0.028215677979823592,0.021248738258127623,0.07301107127387406,-0.006661016590256533,6.983207593109158e-05,0.0041014383955269365,-0.029495142997077974,0.08467321509216574,-0.007480243868800045,0.00016113936950515112,0.006854802253742125,-0.006567984914156287,0.0070447767918107515,0.00044401173155128376,0.00031465364388526674,0.00858440141241347,0.009709217419342173,0.021066379961187324,0.005813066199290453,0.00024115267608429243,0.012035474936308199,-0.02543967223910583,0.086725448208139,0.051358831636423734,6.404890339665704e-05,0.002368249989191413,0.008442032206038263,0.030643207147779062,-0.022468556490594774,8.083559564782256e-05,0.00925420462723762,0.005853815942870847,0.05122780912684458,-0.008149415647349416,3.91860866900126e-05,0.005454325238923398,-0.01517873528257045,0.011647050788332922,0.0426864078802365,0.001004996164470014,0.004738254751121814,-0.006055096812175515,0.012124119147858305,-0.0016227332625619857,0.000174635600536719,0.004014541326918086,-0.01448456234867352,0.011348904325271032,-0.011970046257572852,0.0006238437105430078,0.003987120540707892,0.0058492105697580165,0.0790038458875982,0.0053656542943068585,2.206336818470335e-05,0.004194568551813516,0.004803318741466255,0.013365282988909911,-0.0038034367010641164,0.0001067614063233986,0.007087878222381166,0.01782618502010296,0.1140553882660852,-0.011060030868397326,4.399511131393692e-05,0.003644830148511843,-0.019237765579058756,0.01666429461821344,0.010554543193373905,0.002251597022929393,0.002018413829359277,0.04910775107538606,0.3547395416370399,0.01881924111294564,0.00011391805280886824,0.007618315126784058,0.048620918108146075,0.2457465845214847,0.013481679255705606,0.00030636834937547837,0.06520806109140574,0.031136704454134096,0.1763208428978488,-0.011119590641005553,4.974276784211524e-05,0.03550840170666544,0.0498626925312456,0.21653559536622363,0.0012812782224822896,0.00037951874856763634,0.012610417946228514,-0.041021772669041556,0.5261243220283448,0.014271429691236187,3.235610795110556e-05,0.015056724592091786,0.011232227808381517,0.10287755900191699,0.02480930848322392,3.647765916068159e-05,0.00516863873997127,0.004594009949405278,0.01213484972546663,-0.030612649184952087,0.00012194957320286589,0.004370858312646205,0.019639179490683053,0.1196338558269259,-0.0067318343080786675,3.791941381335068e-05,0.005061775422546832,-0.005406841220648383,0.016090245366492863,0.002833585702023309,7.450035316997759e-05,0.012006157083802434,0.004405264339145988,0.013682251338463132,-0.016847247356175828,0.00014721870904181242,0.002166445479807793,-0.010624054373596885,0.009435859934007161,-0.0037567821673034738,0.0006435530612970041,0.04397047493853177,0.02778603186203479,0.1086806613941497,-0.08631536772335481,0.00010761189166073975,0.0014564154712200885,0.03166013778022114,0.10273840735495123,0.014865306168073762,0.0019778763894316618,0.007850289497144836,0.013488242154157578,0.1202857080355073,-0.02294464357803224,2.8835236689492158e-05,0.01706103683374648,0.001914220753394173,0.0062215648506907485,-0.0005493711393867056,0.0010059204975403266,0.006509628634405101,0.03687228629254327,0.24618499154356094,0.10259507981478068,9.973879969640377e-05,0.006456805756426633,0.014701355191384005,0.023107348597837928,-0.01591286774557167,0.00015015944020881433,0.015574411391948928,-0.03410291225910341,0.04536699618385104,-0.019516933078855932,0.00043147472095404754,0.0007993562545762364,0.013555111557651605,0.06690213050790622,-0.062462952125694096,0.0015704115804249896,0.02441710014693894,0.019305210070637156,0.07286344983974269,-0.009883259481280583,8.50070944905823e-05,0.007828303428495035,-0.04870524137759945,0.06533103663121374,-0.015340959571181733,0.0018532471565485611,0.01409238703516969,-0.020519116793811753,0.06941851238757835,0.00615573338494908,0.0001171114605525395,0.004465891291507387,-0.02130013558917305,0.05187489074821013,-0.012630930239750216,0.0001664506705417013,0.01636230526700569,0.035619084150846685,0.15143923638533002,0.03169017091038678,5.7406128989070305e-05,0.0025802370321813986,0.07227666169806429,0.2312399986580675,0.0609744537567013,0.0029624647061405733,0.01072552228198749,0.0026101267913356844,0.013098726251328244,-0.19902212751386003,9.912269678592134e-05,0.0024680178493532347,-0.02382054309550827,0.13771750508522168,0.024268971046643655,0.00012543631786769688,0.024341268913327444,0.02865418241651417,0.18794333735664076,0.012598964014027958,7.211237275047685e-05,0.004045109559405628,0.014799807667867981,0.07704801802056468,-0.029973379365848988,4.8277191242209425e-05,0.014921674931285754,-0.033711204634610595,0.0575849149691556,0.013686868645089993,0.0002854269232277257,0.012305115906447296,-0.0006193671305831702,0.002474295260582482,0.018542641515286798,6.224593666778114e-05,3.902160840594951e-05,0.03318211463810466,0.3432387029971015,-0.02449445235101602,2.494244898576672e-05,0.0013819699074165343,-0.028141887138429474,0.08166255582443077,0.11005879457428494,0.00012045898888719028,0.007999805150267486,0.0031667750938985384,0.01299248552586182,-0.02609371657105327,0.00038419609812523873,0.002525837024124935,0.047695794282828344,0.22066807635944752,0.017910962578598297,0.0001237976419229291,0.00843134868323846,0.005262253554542295 +2019-07-03,0.013896068397649241,0.10443003239558002,-0.07612456617576394,0.00014071912120220117,0.005675153472303758,-0.0005503753061550857,0.002308526354187388,-0.0018113407318919956,5.72050842826194e-05,0.003588712660730225,0.011985290373812374,0.038338764262025614,0.008104763839130424,0.0001446131061085455,0.020442342387580442,0.001047650990806314,0.001044860796031047,-0.025745059747043077,0.00033839664602810994,0.01898549886693103,0.032521426924478965,0.08663790728875152,0.07513474666565303,0.00019640810770132867,0.004673120707755689,0.037487683617037255,0.08507906875157138,0.18559644599295447,9.620831715770106e-05,0.004068075580801186,-0.005345593558839284,0.02001627685455189,-0.016218725202041175,7.836145492430473e-05,0.0071301339098094885,-0.002961561956210191,0.02302890786258426,0.0006533853237544854,4.4100762133459954e-05,0.011691472628460195,-0.010171631019772514,0.00862301670292525,0.03677149422267052,0.0009096538393407583,0.000811907425963564,0.008430790694149298,0.021573157581662557,-0.05898193422169236,0.00013665215285503084,0.0005039569647521834,-0.016927818445657127,0.013322202685997436,-0.01160290476720463,0.0006210825307025038,0.014073139828888883,0.004938271118447825,0.062039103382488865,-0.02862250409517633,2.3720957014805056e-05,0.006087914673100801,-0.01605218288233304,0.04767811945568562,-0.028871206333587116,0.00010001520269679333,0.0012089090060687323,0.013587795160760566,0.08662251735815696,0.005325925632714577,4.415501216680734e-05,0.008259252093381254,0.01920637644799991,0.017011432387724568,0.006968680444852418,0.002202051775386782,0.01104304798997781,0.0024216235770916548,0.015995750413516165,-0.05323078172951847,0.000124581663327241,0.01089596321323814,-0.028144866557771542,0.1253022582750931,0.00046565734376109627,0.0003478151762017901,0.0053358959013377815,0.039792741340293196,0.2511171147316225,-0.016854744038331426,4.4636332305046684e-05,0.0010644662896804563,0.024075993431585698,0.143585240597182,0.010300265407085897,0.00027635111640226883,0.025406896883630764,-0.03159012864537316,0.46717867286288384,-0.0034123263447021373,2.8060707523962424e-05,0.0003750465746462034,0.009631249875554347,0.09593978773275302,-0.07753613819612135,3.354019677952578e-05,0.0018376050828619779,-0.0011040122395827633,0.0033195986219426636,-0.05454618417302218,0.00010712999099067733,0.0054450191318416614,-0.021633038939014953,0.14711442027208751,-0.025532792070061268,3.3966802293041857e-05,0.009437732922744404,-0.02356245046184124,0.06538736029099848,0.04184126214147016,7.989213582443707e-05,0.0009371028913020701,-0.019909335957865145,0.07863775782892751,0.04233089384640943,0.00011576419299622498,0.0037617900650646473,0.0032635107412435165,0.0031079710232396083,-0.02377012227861549,0.0006001829402363983,0.0025147361620786648,-0.011878212580798532,0.05073597976101746,-0.04777912825552897,9.85419270853739e-05,0.009060954784639983,-0.026842696180544297,0.08865811243587365,-0.0037933233121438194,0.0019432417373642266,0.006247057109476194,-0.016241279194868535,0.14735877291319396,0.007771163893189351,2.8341734870811124e-05,0.00015363197047771793,0.02710873985185852,0.09357281418421147,-0.013358507018846649,0.0009471764874842516,0.02402265420447374,0.01958445793865461,0.13644048348294954,0.019686644151489352,9.558592541855631e-05,0.0028097129168476688,0.015622911357452583,0.020620099190595043,0.015385461134631512,0.00017882021176061916,0.011213109889106482,0.008232172549327066,0.01478860830142884,-0.006081328803089174,0.00031951486834487774,0.011058299576556659,0.0038547377220879138,0.016925842774774623,-0.02991408684826019,0.0017652038769010118,0.006288303805107894,0.004901330285357597,0.02086911185353073,-0.00615603399530963,7.535296972060788e-05,0.013843696511215293,-0.049003613663055036,0.06956788416715486,-0.014294695162880977,0.0017510417623987497,0.006397855473114796,0.012855692604405498,0.04213779439662632,-0.023687089673896645,0.00012087589872185412,0.004683478696823381,0.011938056281561263,0.035054638161942216,-0.05647949767476968,0.00013805384583085803,0.005203183592675707,-0.0823946832665156,0.3359463380280227,0.06547526953911645,5.9860894499389306e-05,0.006238248722138741,0.09567038505670981,0.2901720761070706,0.07836673675705103,0.0031249276219002743,0.03630416445101818,-0.011402198358799165,0.052514374901100384,-0.015942986229823118,0.00010800676600126731,0.00873559341676955,-0.01678110493665269,0.08081059901338525,-0.004998165912323967,0.00015059585258596163,0.0011791155813281088,-0.012920666822160143,0.0757613765155022,0.012763167881032812,8.066511729554016e-05,0.0011558833098304325,0.0016000631194934486,0.008118125464500626,-0.03120161466049517,4.9536891545733996e-05,0.0036095991937610712,0.07257829358967753,0.14971319909086606,0.07294896570635351,0.0002363611295170472,0.009237826174464791,-0.012433989143564524,0.04434894701042446,0.08125416935261164,6.971745852817891e-05,0.006136860578128193,-0.04026642360743501,0.4201910135406437,0.13894498192444477,2.472450374320175e-05,0.005580860664269002,-0.0246768151046732,0.07899676299027823,0.0672791100808155,0.00010919148585631218,0.00012464594513818906,0.008138521372908613,0.04221036718950826,-0.032080790092700984,0.000303916549013468,0.0010626091561209557,-0.028641598014932948,0.12405170014784553,0.013405114286245122,0.00013224105958941208,0.012635882963335147,2.332055971299786e-05 +2019-07-04,0.007690754444711271,0.05178302274676694,-0.0027398991356526875,0.00015706091781845456,0.025985775751449475,-0.030463161256464238,0.11972464893639197,-0.017598716314656464,6.105228511989815e-05,0.014790145989215462,0.002521016357512651,0.008385823486761522,-0.04565048561898576,0.00013906798158068117,0.004272200533879661,-0.006569220358555843,0.0064700606369288835,-0.0012004794891867351,0.0003426678309701756,0.003677249859306146,0.01936187003582569,0.04725814335380448,-0.004793935290981036,0.00021437217663155292,0.012251769492759808,-0.012230594225370137,0.03352562293542415,-0.01216104073570223,7.965580692780991e-05,0.0006918276530257356,-0.06375020228943995,0.27531324679677016,0.12647170500131952,6.794293666822785e-05,0.0014244485630942436,-0.03287252481127363,0.23636762916559337,0.007303883845574144,4.7691795955855345e-05,0.012758955837248622,-6.46732217043874e-05,5.348766349663888e-05,-0.001648923951060363,0.0009324287493210862,0.0033016337900374695,0.02711695184841236,0.0663375472174678,0.011660990672510365,0.00014293656680599963,0.014470169305852185,0.03527336615722652,0.02450526743995535,0.06635982840594752,0.0007035772987306954,0.020812963504387237,0.00794457943062018,0.0922173380887067,0.01780491653809744,2.5673265911991275e-05,0.001051647934015616,-0.000420820252447675,0.0011951167387112356,-0.0008525838971627631,0.00010460136244046688,0.014232665374590583,0.009646306562499313,0.05362948022251729,-0.028852843047701457,5.063132470996915e-05,0.007735225730096094,-0.0030466922262696017,0.002502280051726048,-0.03177245002078346,0.002374737680290274,0.0027742882653615324,-0.010294315791696231,0.0613115496773861,-0.001740795542672437,0.00013816794592220986,0.02890737916215202,-0.0423393158723857,0.22825256963915683,0.012477352306633048,0.00028723436148006526,0.05908569895977183,9.43852933264014e-05,0.0006009320336060911,-0.0006162909289041019,4.42425275978757e-05,0.013687493538844991,0.013606511971475173,0.07623916629105058,-0.010693958394061521,0.00029414094075911354,0.008205980712693382,0.06352006265327312,0.9324809523295696,0.027238429570443055,2.8268396861002334e-05,0.013807921886902233,-0.0006624703967319376,0.007460653851944192,-0.001004931169639757,2.9666840346032364e-05,0.00425304234676346,0.030749504945720096,0.07923420331669771,0.023117264129320823,0.00012501098826535732,0.002464447824569889,-0.004956420218444942,0.039495225248666506,0.005049166627216651,2.8987843031692363e-05,0.014358035805255845,0.009640818930037291,0.02738675081923578,-0.03691858938951434,7.804602669827455e-05,0.005235009655424658,-0.013860941390624146,0.05159442999495158,-0.06269147034438226,0.00012283963121634904,0.002325891733221414,-0.008051360231525447,0.007584941678532049,-0.005532740546772491,0.0006067259547284213,0.027644761366058715,0.007168401527919228,0.029545424048461482,-0.044218581711456345,0.00010212171633217921,0.009572355246241752,0.036800204308146296,0.11469642945858943,-0.005322223049842934,0.002059299462460369,0.007915267387596493,0.006743131315059785,0.058693162301917005,-0.00011037551049838667,2.9543116233885887e-05,0.005691203386713525,-0.06880154677770789,0.18164600002273584,-0.009779599678389303,0.0012383506401441166,0.0007516930209463229,-0.005946747957838792,0.04882658010764797,0.003325018423458964,8.110523158077389e-05,0.0016218975766025298,0.01841176746426107,0.03093212165657521,-0.02419438654044918,0.00014048538885697503,0.00713732021984861,-0.00010579843805346585,0.0001708654689280481,-0.0025987470246739974,0.00035540936487158,0.001537446194083736,0.0012165285084488095,0.00513284631692819,-0.008238161107767037,0.0018370220563101104,0.01404775475417722,0.007901951786499035,0.028995514165589896,-0.0035413755676390814,8.743673489532153e-05,0.0231058416613161,0.014812672324269208,0.021773328084869283,-0.03306085048640603,0.001691164255992778,0.003749282685065123,0.002174273843985386,0.007443144465261699,-0.051001919601909876,0.00011573742870097235,0.0045553238593763305,0.00465461313529003,0.012094012653565812,-0.051839591036608054,0.0001560175839325949,0.019950159460767437,0.04744092372078496,0.196372119178067,0.07529633898513631,5.8964040348601535e-05,0.01988107622382991,-0.06299688752574051,0.20518892818978426,0.08445867071146054,0.0029099345963958636,0.0034857343599758984,-0.001995382802153067,0.010476377072999563,-0.0034744487906118848,9.474486341459852e-05,0.004749840552113628,-0.01190454079040598,0.06836172286679545,0.0009354006220084,0.00012628751933151775,0.010771499209592928,-0.02348591065455381,0.13970697174989924,-0.017405723184543278,7.951297884756094e-05,0.005376586993949072,-0.03687174722630728,0.1623047046091204,0.02423436060185164,5.709656799712895e-05,0.01865469623508038,-0.015574834297552485,0.027582299009052232,0.0040613757938298255,0.00027531024109413567,0.02164443023786249,-0.015229925133680128,0.06438253159660812,0.054754794651081753,5.882258347287204e-05,0.012271250185291897,-0.028968864949916327,0.32094951684140877,0.02840920063542892,2.3287670005295256e-05,0.012424555071273696,0.01208727006567373,0.0396717076761801,-0.009324417403338175,0.00010650163989691112,0.0025157813660893575,0.0011322829792274713,0.005046531388299696,-0.018157663036395134,0.0003536632805094829,0.010475821710318522,0.045782973666147773,0.21650267161945705,0.040829603742813345,0.00012111907164714841,0.002018300156192623,-0.0007171514777692875 +2019-07-05,-0.019841240361132818,0.13702078062167253,0.019133470161748305,0.00015313306135192767,0.005621166589516438,-0.06002519070168455,0.16469126670961062,0.06680034935018446,8.745275695084208e-05,0.009366177787661892,0.03162172202153216,0.0939927680892908,0.03776820233566855,0.00015562819530108102,0.014636373942249049,0.020120792372583428,0.020052448366540854,-0.04900916229933559,0.0003386456716799287,0.0029625991016768508,-0.051575404665614465,0.11878116627567871,0.12262724744719074,0.00022719189359648567,0.0042054000492442855,0.016925637605175202,0.03913768481511676,0.019819254000197687,9.442709875794588e-05,0.006875322860409838,-0.058858760735718385,0.2220197664506913,0.07369307418113316,7.778741287628213e-05,0.014717674384579566,-0.026106068689374453,0.21262140420804265,-0.010047607672362098,4.210494543232835e-05,0.00771226792188634,0.020891299827131223,0.016489784702674842,0.016252854185764685,0.0009770015737569529,0.00431943950111378,0.0013759870630611064,0.0036845988777984796,-0.000631966294023112,0.00013058281351591603,0.0013116943098355127,-0.024338215202664916,0.01783324795184937,0.023504556821142615,0.0006670872454693923,0.00502610157648916,0.00018583766374372104,0.002264703764139639,-0.09288136536372883,2.4453730667542686e-05,0.004879806835460361,-0.038663436935486,0.12134653224341388,0.03845979602738604,9.465076434554489e-05,0.005020721803544618,-0.016786082022079256,0.11018413869738855,0.0838361192609013,4.288368310327053e-05,0.005830166433775041,0.031111803834968626,0.027659730983078556,0.04067126327359604,0.002193816065587817,0.00294790148269206,-0.006584164476339141,0.0487978914943167,-0.0007570475265906386,0.00011103290997393605,0.023985858008591546,-0.004333731215226926,0.026204190005394513,-0.009885630062530192,0.0002560940358239763,0.03125368363641507,0.015498057989364456,0.08730044412259899,0.0034518289418264962,5.0005961763307164e-05,0.004702826627708694,-0.02708656238134177,0.15917921410605743,0.008726873310570838,0.00028044928845339306,0.010665492463773771,-0.024817781738079688,0.35971171873451363,-0.014179754118731312,2.863113768901684e-05,0.005986963028135233,-0.013906795436190413,0.16443733261554921,0.017952704095913485,2.825584842022811e-05,0.010116993661183217,-0.011947834704783155,0.03496268436331262,-0.040666741244062575,0.0001100796885020727,0.008676470858913815,-0.03746568706821059,0.22995862225618638,0.03325999065078421,3.7633653281648365e-05,0.01912599509248559,0.00345619606980572,0.00979222914979744,-0.06996175789645825,7.825177299416811e-05,0.005185569086438829,0.0053671858206927655,0.022469837332613058,0.005756469409436807,0.00010921827141380638,0.0061802457568472195,0.02475308725619246,0.025167131695578725,0.008195082731224851,0.0005621745907670187,0.040953643340859706,0.041864960718754986,0.14870819654839923,0.06274692882801594,0.00011849548158777793,0.021733498351523342,-0.08653942086352193,0.2635356870911402,0.10044780062145607,0.002107626861638008,0.0239137285068807,0.003652562886143342,0.0362086904581049,-0.0402110648738277,2.5939827220398412e-05,0.01940253635318466,0.005371151934054234,0.014840480574667803,0.0027921857233833003,0.0011832887688430578,0.036349459069400465,0.02204767287144182,0.15767864965101655,0.008318509993231924,9.311411239312401e-05,0.0058512246568966165,0.03229285177420252,0.04720934788560064,0.00028865979516262187,0.00016144469690072775,0.004176632990851307,0.001264860252414446,0.0015958284650349089,0.0003074052999215754,0.0004549464198356116,0.011304629978806005,-0.0034053880428399305,0.012091324343115384,0.011328603711075805,0.0021829464237305943,0.0127435633042123,-0.05976793780483763,0.235011586509765,0.1376948567814611,8.159609361487388e-05,0.004246832769205863,-0.02103356047534005,0.030885821390046735,-0.008535589790604531,0.0016928981511267892,0.006460136159622233,-0.02801877771626884,0.08511600157536087,0.04924443745701404,0.00013042294676272024,0.005400719262871194,-0.030372661446810528,0.07402631826106006,-0.08227961170618321,0.0001663248250458697,0.006245095798864042,0.028915047706831506,0.12216460920180573,0.021772057330657464,5.7768677876439375e-05,0.016856461512184614,-0.022619109438372243,0.08226809047274213,-0.06042388889180193,0.0026059263829724118,0.004806256981186601,0.03764145344335587,0.18260722740586474,0.04554455117332505,0.00010253897991789253,0.018737856257990675,0.014194052739479815,0.08956178176152602,0.01475007343549011,0.00011493292884859498,0.018263141614061368,-0.02659568735769242,0.14641140909118122,-0.005149117993233674,8.591816586353772e-05,0.012923527693735367,0.014784619924920467,0.07225139673836471,-0.0693922079300562,5.1429382768962906e-05,0.009588874248731132,0.04648985322683785,0.10027016097359734,-0.029049020855567115,0.0002260559054653449,0.0009802688107518722,-0.016047756350907206,0.056123998789053185,0.06908301848587449,7.110171746179035e-05,0.01601106659608631,0.044623372882525,0.5317399626207527,0.05250653608465277,2.165181852277727e-05,0.007070061031499979,0.012456491604577227,0.03870438088951618,0.024810033216081228,0.00011249794241036275,0.0010079564384961016,0.005564888614253388,0.020324067462462857,-0.0037917955912556115,0.00043159243041989337,0.010186127588971115,-0.021233150430975224,0.09839506880677269,0.0003843507173141082,0.0001235984142492069,0.00300425805092759,-0.005152823022550475 +2019-07-08,0.004401036170593832,0.030589514235334972,-0.0016631906437993102,0.0001521489436347598,0.002192956883856399,-0.003892144110679457,0.014624877879990778,-0.029219440129462065,6.385680573576525e-05,0.007177552980263407,0.008119277738962354,0.02163121561455332,-0.02428154941121927,0.00017363356251567198,1e-06,0.015879549709771252,0.01610940728283384,-0.010264208097908643,0.00033267983532459243,0.002388858798442791,0.052038594214479574,0.11837057791660567,0.11941803433790074,0.00023002739449701483,0.01372931868605942,-0.007490580993385806,0.018612089784614504,-0.000255277670476538,8.787535756824093e-05,0.017193033475358607,-0.0022081030707701726,0.009186356346838313,-0.008301945024824425,7.05287048607132e-05,0.005716211313770958,0.036161394051503086,0.32969802966744394,0.012526905530257263,3.761208659254415e-05,0.012634174550143585,0.0010512084168559884,0.0009497242131754623,0.002951903134265823,0.0008535640309866169,0.0010685299103672281,0.026771299016276902,0.061197604771933665,0.0002204015174120878,0.00015296670320734838,0.010967803421963985,-0.02659139756660585,0.01947053472117863,0.03670239387064479,0.0006675559062095099,0.0026233288848165376,-0.006888231817516869,0.09490393855824199,-0.015608138908338705,2.162949141094645e-05,0.006160184614998151,0.03204043032039822,0.08346317206160857,0.01452530589221244,0.00011403928660857819,0.007575659005795865,0.002045588678292733,0.010499969921278487,-0.00972368043418554,5.483932173485375e-05,0.0020808108106282926,-0.04077365775404165,0.03726239268526575,0.051686059008145074,0.002134184235053132,0.004161473103910647,-0.09771022327931153,0.6439439090953963,0.08457147081815253,0.00012486596382950424,0.021484891686783154,0.07431811425202396,0.47929836585950053,0.00041888394701141037,0.00024010265641207813,0.010187403589877714,-0.020227724428368888,0.10315813224506493,-0.006625910957351873,5.523374798921339e-05,0.00879195740379725,-0.0424006616241276,0.22828754863469303,0.03107758818718817,0.0003061097877472613,0.01768246555675876,0.035531824077627866,0.538607475875615,-0.005523718876327202,2.737633819667964e-05,0.0013885838145741877,-0.016871222083343376,0.2251068655417762,-0.08392443195051713,2.5040299012021128e-05,6.174216630019762e-05,0.028863701572062594,0.08372236105069361,-0.025104541435631417,0.00011105377197375495,0.0047080372253288415,-0.045582430056809835,0.2994294298416877,0.03524629207784926,3.516376483768609e-05,0.008720240287818367,0.0031770845097692873,0.01133739027375525,0.0018645233799900543,6.212881246480053e-05,0.003181304014611306,0.013213534147815799,0.051847851042205365,-0.025164660778008344,0.00011652975309666592,0.004952732064756591,-0.03429989013605324,0.0328796081404728,0.011077733798657535,0.0005962682124892949,0.005820974023869644,0.02611974067096524,0.10145678476979332,-0.02508344493819731,0.00010836119223801979,0.013308277656049377,-0.00466896882189779,0.018264544634130138,-0.011949154730526686,0.0016407080145381724,0.010073581796321946,0.0016848466410543542,0.014617122694534766,-0.00015303712045758994,2.9640169258431748e-05,0.023830689999207594,-0.05004709874894871,0.1571751871422367,0.011536340732893825,0.001041037059238263,0.0019695003893350424,-0.010497832199993794,0.07407414833639771,0.009009164926086636,9.437535601714853e-05,0.0076686401683703585,-0.020731437234156,0.031093843156257038,0.03988992191456846,0.00015736219104686824,0.004598996623144515,0.021963139504283958,0.03232652010823127,0.05557525694080396,0.0003899773446165307,0.01261495465312863,0.025736557846329007,0.1024712297074842,0.00529503457695454,0.0019466992188259986,0.0022772651038833083,-0.019167722266355967,0.07571003877004569,0.010400198534737982,8.122830854425647e-05,0.0103578579959519,-0.05257121729940491,0.06499760703672709,0.02411356780382092,0.002010610088059496,0.012493863207129263,-0.00300559049298898,0.011282724203352437,-0.06146587055992748,0.00010554359247426717,0.0018743632599764345,-0.013768271807239496,0.038659741335596874,-0.008067058515187736,0.00014437129870443726,0.022922695047104764,0.005469008279178334,0.025198014649010034,-0.0013726411825439625,5.29731967349643e-05,0.03974527267093278,-0.049970291179008225,0.1662954450682993,0.05508031216224725,0.0028480629505763166,0.01789837289750229,-0.017295464419441107,0.09960664942138064,-0.045816421054791896,8.637428541527225e-05,0.02505392715988159,0.036207590092976666,0.20911105650684553,0.052661582995223735,0.00012556928117589037,0.015970996250800222,0.004009872426438065,0.02460061833787928,-0.04175061701390135,7.709624592229907e-05,0.005507060987694899,0.0033999612243104205,0.013631434060381586,-0.13710468105626458,6.268733566529549e-05,0.004295017983693477,-0.037462668038239506,0.07089326655982482,0.02137772900661988,0.0002576458254879855,0.004031092475735272,-0.0037632370777157267,0.0152782039931588,0.009881580958721135,6.12496555231802e-05,0.008845994648417971,0.05265465586587054,0.4886235145988316,0.06257423592275463,2.7803130679789897e-05,0.011208975428552011,0.0005692860099014978,0.0017399846488074,-0.0011774000250804207,0.00011436524352627015,0.002087392921841717,-0.01912174080973261,0.07004993060449914,0.05955557337907433,0.000430276560826429,0.0022039972262165057,-0.008033633022133911,0.047037874782457766,-0.02698630618125861,9.782189991773899e-05,0.0022937238649901447,-0.0019883760622097435 +2019-07-09,0.028381054750601115,0.19754009137491782,-0.011544040752872556,0.00015193571189859857,0.0022530881311927046,0.041754261629063344,0.12194947611866895,0.0398411246907642,8.215450736197454e-05,0.011852929621326582,-0.01330064597571079,0.04046655528648268,-0.03855571179347486,0.00015204554575105845,0.02506506566853204,0.0194485141720009,0.020236132517864144,0.003328067632814961,0.0003243596097580004,0.016274297885301145,-0.03212254812795959,0.06988818383458169,0.03209880231200535,0.0002404938672455577,0.0009801851776540316,-0.015345557045891994,0.044694417861576394,0.0041533043061021116,7.49680324400433e-05,0.007592165978158879,0.00047649235425681726,0.0018747128556291127,-0.006056616680358102,7.45780517925607e-05,0.0045874778051382525,-0.01528582975209208,0.12930553016886517,-0.0031518574150644703,4.053876682471721e-05,0.0021569623960697075,0.0007802376291179651,0.0007551577116281934,-0.046467209131692465,0.0007967719130804208,0.008599067778059657,0.024056985328609722,0.06496136156670503,-0.02312862894271692,0.00012949350042890185,0.019819060884631905,-0.02021581269488068,0.01488219630168036,-0.03902090946804754,0.0006639701183200981,0.0033369962428266317,-0.01583623535019784,0.2134800174626496,0.01767139185936244,2.2106373691218813e-05,0.002800220596398624,-0.004070989662453338,0.011435898269843411,-0.018241302600406552,0.00010575009204903609,0.007121941403343843,-0.006123046990816024,0.03322478515158667,0.0058129956522887756,5.187608933604966e-05,0.02030371627831631,-0.010582035200884663,0.008077780170017982,-0.08898081722067196,0.002555054360076954,0.013087609522410596,-0.04076076968338535,0.2519570878704289,0.005607620471709881,0.0001331275390392905,0.0297241782085463,-0.02461175639821414,0.13865097602856125,-0.0031688023182652966,0.0002748703583797551,0.0018735885012736782,0.03711155433326777,0.22319086822963563,0.037065429533286835,4.683749702618809e-05,0.013431068747242933,-0.014076599969290376,0.07399545107815181,-0.00028521051911043095,0.0003135303262708998,0.0070944728195212,0.003945050632770579,0.052362743807839375,-0.10559620414930009,3.126514284920997e-05,0.014183202621183173,-0.024236777503284755,0.2432730076673562,-0.0638606124720343,3.328608060770613e-05,0.001982633833518589,-0.013043682697193677,0.031575000659136696,0.021767528326583612,0.00013306983337093195,0.005662133534847475,0.009006228646962725,0.061507496768250555,-0.03398180807243783,3.382262356732909e-05,0.009048133361411987,0.01943499132202968,0.07579514981596988,0.04620541975024034,5.6848671178885976e-05,0.007842468793943078,0.010249519185545562,0.03497562984909392,0.021519767712657806,0.00013399436786477498,0.0010400692667406344,-0.055639681745087655,0.0593656677781479,0.030506463233268735,0.0005357039408499133,0.0020003205788465053,0.02045915559089857,0.08560811672589064,0.0077330313117609205,0.00010059091787068027,0.006243912227551612,-0.06216234427575957,0.20767656783484711,0.024624238685840728,0.0019211402062674905,0.0007529321564376103,0.02936458701512841,0.305315971329175,0.018596988095782873,2.473184803887309e-05,0.018975381229287262,0.02350612220577671,0.05938359619277836,0.03064529365082237,0.0012941534221531394,0.018969181965354198,-0.024368628628863742,0.20000723815234794,0.019861992670663325,8.113551924839797e-05,0.02343334322195237,-0.00405099950393975,0.005443422853142712,0.000811229602059162,0.00017564488374889457,0.0044478008518838135,0.02748890827553208,0.0393982229554143,0.030777618639733127,0.0004004836333711258,0.004285160684125601,-1.8457543902653794e-05,7.232310944041331e-05,0.004528186005532184,0.0019780950740562724,0.006168965813149897,-0.003313878103898616,0.011308245140260647,-0.006099970096598898,9.402247634148399e-05,0.007622782109266877,0.005258692409062706,0.006754228369363428,-0.014559310620008804,0.0019354378056271673,0.026903368332276623,0.02539882991834259,0.07643011871121734,0.04402247919770037,0.00013166344437205566,0.004659004468921558,-0.025617473831210286,0.06791074999093506,0.010294511145633534,0.00015291783848940605,0.0025511871477573826,0.04142230662747136,0.17235758452141964,0.004147493518886419,5.865672417660419e-05,0.007335526794709406,0.012495009751950848,0.03720696169830054,-0.0001468343656401035,0.003182954644342387,0.015473024041871895,0.060350199887834015,0.35194094965967065,0.11307535046525394,8.530008854886902e-05,0.013982094426320524,-0.012882847824172029,0.0673332714537226,-0.014635734068033937,0.00013875318011575744,0.006137608082833373,0.008309488759558751,0.04599368245260936,-0.015326950503467553,8.545250944235357e-05,0.011544382297748578,-0.014596975196173033,0.05268560434581165,-0.16158385718122595,6.963351187934587e-05,0.01822693788339034,0.057429677020108934,0.08184684359422449,0.04486147454578232,0.00034210847444806936,0.022240016451736514,0.005137008813454002,0.018676916744768655,-0.1399407713057023,6.83942361966728e-05,0.0039029096950798734,-0.019539376280279293,0.21560191041354354,0.0001916716871235521,2.3382415692916928e-05,0.008273290445047493,-0.02121753382958094,0.06147275160707915,0.03713967282438621,0.00012064830216878502,0.006809853256113876,-0.011728240381655389,0.04770613236181332,0.038040277256154026,0.00038751330722119404,0.0022523165990343845,0.010713764413235877,0.058319007752404235,-0.003228751354687251,0.00010522132397763582,0.0016329261998447588,8.231591177727571e-05 +2019-07-10,-0.007209657858398514,0.049082300850326874,0.002600281918027261,0.00015533750528338598,0.004635252838644943,0.04829417361461701,0.17861449990026487,0.04404260767709193,6.487667051305569e-05,0.02786210027628173,0.0013787042621892015,0.0045027747339275274,-0.041200774996017105,0.00014164071232091108,0.012914581245849086,0.0035071913034320397,0.004563998301914229,-0.025888304998387207,0.00025934736371742065,0.006881541719500954,-0.026091969107425964,0.06377970313436697,0.014410704095644093,0.00021405340196021567,0.014222152089280503,0.0004541130195295531,0.0015689325409934227,-0.012277066782002856,6.31984493523221e-05,0.001042762842795615,-0.009478201785465636,0.033457428523539536,-0.008512091179919884,8.312339001514653e-05,0.018119748840165404,0.019163518388634792,0.15698524119724358,0.0017806807966142767,4.1861524247781773e-05,0.008736242294627772,-0.018434907817990967,0.016460922536597,0.07609032539427363,0.0008636376872910486,0.0050880112776141425,0.005309430644030457,0.01256494533964285,-0.02610842073952567,0.0001477573980742012,0.01285599770411479,0.003613975222508493,0.002895258817902862,-0.029090816719165406,0.0006101296575640774,0.010389716884698107,-0.005781963142198942,0.08436300052818015,0.001451679217697245,2.0424248717123922e-05,0.0037338622804320752,-0.021988510643579002,0.04950301614003799,-0.03602301001656592,0.00013195176123477581,0.010318359201498043,-0.0010484525494387697,0.004751963246708632,0.0052026297378426935,6.210656721915635e-05,0.004038986196141214,-0.00370959380935849,0.003343782700504301,-0.0073994870968853285,0.0021637709416186483,0.00389566031908584,-0.08552726101755545,0.5645018846182618,0.047402369364785875,0.00012467841589711324,0.0022743005667573667,-0.024015519787178117,0.1222058853282942,-0.02080640041510724,0.0003043043083321529,0.01813392308832256,0.024284783491671496,0.12641655771770569,-0.01628043800589702,5.411170664135359e-05,0.014080294739237694,0.04854730575899807,0.24890944779848667,0.03254464095396536,0.00032144787483346607,0.027872671501621687,0.03845055806233528,0.591763279576767,0.04554046657076661,2.6964034002025484e-05,0.007989804298011115,-0.011517927442999185,0.14154864619822527,-0.0035862079303798063,2.7186313921641452e-05,0.0021012828930542953,0.029979755188686046,0.07976956859525791,0.04696679816739873,0.00012106360291731836,0.00028152812623246206,-0.004107841128906673,0.026083436725720683,-0.07277076619417895,3.637819963733667e-05,0.004877981285628224,-0.0004087799594900616,0.0011714045778643141,-0.04523845494148992,7.736776687487165e-05,0.012172643082832425,0.0025746300420150707,0.010307412783564906,-0.051565574743098114,0.00011421253195068544,0.00802286590651736,0.08140430910187063,0.06640877615159392,0.0928895972873354,0.0007006441163566863,0.001126040000563922,0.008672347573931441,0.027501993012832807,-0.047067592103053904,0.00013272676736994,0.011408872458287853,-0.03437461825658336,0.11056429674449832,0.0022930149546935407,0.001995455975511259,0.03499039487251225,-0.0050537040638025535,0.047104396229658736,-0.005653964181361869,2.758865704988457e-05,0.01701331866635674,0.035378833849080124,0.08129720789866,0.044015326178971415,0.001422784591356471,0.02791718033375863,0.040785189980031625,0.28714467529125387,0.0858755035648732,9.458611016722044e-05,0.021086039518400795,-0.022349520584163857,0.03265271300632613,0.02866236394756345,0.00016154529981061088,0.0010719074424263902,0.018862839259736627,0.026325243282455904,0.014376999235383322,0.0004112809408392277,0.006241058368387658,-0.008571135062577829,0.036355152134296485,0.01686486102690044,0.0018273541063880954,0.011661613316048865,0.06041039212128953,0.21318407123556923,0.124054300409921,9.091745564330206e-05,0.023229583913776525,0.016917340595476192,0.024191159779994694,0.024175996522472792,0.0017384115344037424,0.0009337725850974215,-0.02895722575778813,0.08430870985804895,0.06364884838264465,0.00013608195660440775,0.012551348036182413,-0.00956284635914113,0.029631920407620842,-0.006263965022852339,0.0001308241000548036,0.018298400470934093,-0.03531662977235748,0.14330935688439633,0.01239425642445182,6.014764538834013e-05,0.017788477442610928,0.006142535937381505,0.01787702290000303,-0.06110123096006452,0.0032566461090613526,0.016185070750875365,-0.020951031591812483,0.11208212469130897,0.04037663774872594,9.2984300291149e-05,0.000608693499826176,0.0066997041375968834,0.03760203338313729,0.0024823292771034744,0.00012921266331637215,0.012900373401667949,0.03373213160408927,0.1752126631947867,0.018668847323193898,9.105986328034681e-05,0.008577714208309044,0.01724358754887403,0.07785428581490401,0.008764104026825988,5.5666317990027185e-05,1e-06,-0.036168813189551625,0.07332135729661454,-0.0037662517159503498,0.00024051001016441883,0.016620256500884223,-0.0009946384976075417,0.0034391222038631574,0.0017137751865155038,7.191707780247365e-05,0.0016246237441003928,-0.017315702518711736,0.16891429417731638,-0.020902386359879746,2.644874069358632e-05,0.0004997682544216188,-0.00838376992880477,0.030103126372220814,-0.04298690621409181,9.735017005056984e-05,0.012612989043627223,-0.0005855623415405987,0.00255731052187073,-0.014774580594315584,0.0003609255643139675,0.0008837663951901395,-0.0295658524997795,0.14146845173382822,0.018008020135246668,0.0001197023292795275,0.02144171987708994,0.0019058170420815645 +2019-07-11,-0.038905189195362545,0.24594778828049652,0.07229553353471838,0.00016728276338294775,0.0013819955476338983,0.010279910986366702,0.0352669916457023,-0.07259609541783552,6.994094014034598e-05,0.025232512419949713,0.0018091828313579069,0.0057764685779655486,0.0016906991036991072,0.0001448829389273077,0.009106359258810455,-0.007799288567069817,0.00757237001313005,-0.06860966592566622,0.00034760900493753245,0.019197774092577457,0.019248424198309473,0.035504895084617315,0.007878692540951821,0.00028366432467534676,0.005481209363394378,-0.00454112759443202,0.012794962793211889,-0.017947630881806762,7.749459575824368e-05,0.00021521264100838005,0.02807083864071516,0.0964517073032039,-0.06103949475196772,8.539556640072698e-05,0.003089745169611981,-0.025730075680164242,0.2361222731379216,-0.05229576443866168,3.736824679929971e-05,0.006878069429849729,0.02867985499336707,0.020025991003463486,0.039262169623580055,0.001104403364679374,0.006563162892274075,-0.030369545221497058,0.0807171029145889,0.03874687886213322,0.0001315632547557528,0.002587351098958733,-0.004417486048055091,0.00280289207180624,-0.00030669216215583917,0.0007703590158026562,0.0006086682766481221,-0.01927370615247368,0.21244887624414885,-0.020700539072678926,2.703544887432745e-05,0.0008814489372020457,-0.010513316255745739,0.02875405288880858,0.00197784432433063,0.00010861547341091988,0.020838562985020733,0.0007487667969688511,0.003971867749361287,0.0024027165947448966,5.3065665714040785e-05,0.005731533333081805,0.012200678758923143,0.009042842350104737,-0.03207709424941408,0.002631491705242923,0.008220048005895828,0.06937669483723491,0.3959992951350798,-0.03689501964534065,0.00014416880568936027,0.005090914559185975,0.03453534310556725,0.19718072034567133,0.02398196719903924,0.00027121116116694225,0.041249691762943484,-0.013489159433036227,0.07791639680885394,-0.018619942936340294,4.876598301804944e-05,0.005361288996925155,0.05661925258261876,0.31977722329799874,-0.032707869839182634,0.0002918121782224069,0.03288286009993682,0.009014455462572039,0.11688360770463879,-0.10920037319160804,3.200487391864929e-05,0.029576762986594164,0.010205990261889975,0.11155523892686435,0.04252156627872619,3.0566582702581436e-05,0.0004735459295210961,0.06175160661251771,0.18761821650806443,0.18008539512961919,0.000106022005203521,0.0058012866314279665,0.04627648140777888,0.3573617385693478,0.015941435181174277,2.9911945034881126e-05,0.005436202917023328,-0.02437454641583556,0.06387320063603152,0.049021230675731754,8.460484733361147e-05,0.0031951384934244542,-0.006630885927188568,0.02752268510501169,-0.006810524311781522,0.00011016137576645673,0.0030042975436997956,0.007295763471172171,0.006016307605618671,0.0010658042505371868,0.0006931325180062926,0.009393006851128448,-0.03059865459964874,0.1222777882044643,0.0820690426396728,0.00010532725499348821,0.015724628331245785,0.028414726193853063,0.1019295276812615,0.0247381661588718,0.0017892154447728043,0.0024908864565040944,0.017729893010535243,0.15596189842865565,0.005220399876924856,2.9232758397500257e-05,0.01333305387152599,-0.01737605847223968,0.04733056987139501,-0.0044270866673420395,0.0012002751248039942,0.0025453690508553187,0.025916094990376864,0.2011736663971264,0.016612943665534584,8.57875125271588e-05,0.003092809367087345,0.01039824572387306,0.015343862129439563,0.005350565879610515,0.0001599450392710688,0.00985996205768279,-0.02426600912935938,0.03417861100418921,-0.1416182450026771,0.0004075189992844828,0.012510470300020206,0.018111206974811507,0.06912206281439573,0.0024837501937972815,0.0020308649510036377,0.01456045297517031,-0.0019088870707304354,0.007152838999318173,-0.0006775547152809728,8.562333846713182e-05,0.005782478947323486,0.041895514750876175,0.04696317392188866,0.059292983750700225,0.002217620779284364,0.02914815698180705,-0.0029048725095975514,0.007930200177006267,-0.0009947830191658809,0.00014513059075228448,0.013942227976588034,-0.016798492157439317,0.04506650452687561,-0.1462932097168285,0.000151104292814624,0.007932718078179789,-0.025246137494431387,0.09869260249924257,-0.003229639358100778,6.243444662525148e-05,0.027363330694838,-0.0088717411172525,0.020490374190914165,0.006550388761910458,0.004103713460901286,0.008300412646156238,-0.016521939906442237,0.08594425517944011,0.01553016348869721,9.562793038571935e-05,0.004639724384864885,0.0195504394270211,0.12118339971459831,0.017686769945341956,0.00011699685174918875,5.5765555299885656e-05,-0.01923482719518566,0.11500424589224852,0.00823858509024073,7.910849332388804e-05,0.00011563406457097594,-0.06486572589172426,0.2923560074767402,0.2974673542266778,5.5763580964859304e-05,0.006226876852315457,-0.016626842191772406,0.030866615877999454,2.927815540501894e-05,0.00026263351825679476,0.004154974421707629,-0.0003028469933843073,0.001165358515517363,-0.021976820266065494,6.462165677549429e-05,0.0043864451421330155,0.012007765853391196,0.14202554286692873,-0.010255401204613677,2.1813584585993158e-05,0.005635377923739306,-0.0003115556275251592,0.0010300248858230439,-0.0027052141210484114,0.00010572966280702211,0.0275601367386163,-0.030465455708342443,0.10944218378517796,0.1437057024812246,0.00043878411771468886,0.0010902111504102053,0.002335091166077737,0.010238784827793843,-0.030039667994742083,0.00013062527586255856,0.01754557260167078,0.003028118116464386 +2019-07-12,-0.00011545151730985445,0.0006921928208022427,-0.05453508469263226,0.00017638398011444385,0.001116425747943229,0.056572977401661256,0.1790241777141301,0.060790662401617436,7.582420664726547e-05,0.0003896645181758957,-0.003291579416916103,0.010696680384587478,-0.002256032509862328,0.00014234837805345238,0.015255469994556537,9.193349122483016e-05,9.188086805386183e-05,-0.02358474279505101,0.00033768869342436556,0.000850421987251103,0.01122893715251294,0.025581059163463427,0.003398755214222347,0.00022967720860498427,0.028645291811072816,0.011647611801143468,0.031452757849712125,0.014315290799644696,8.08583539766445e-05,0.006180040847534859,-0.02987485404157564,0.11032151680971475,-0.018134120957308195,7.945759631941389e-05,0.005988329626678269,-0.0003790382615298433,0.0030176580597852595,0.002604738180358148,4.307364644717312e-05,0.013874296454405504,0.01861182549978021,0.016362560425574657,-0.02247610566649649,0.0008771674253962729,0.007736033201942813,-0.002263166178556333,0.005904661156023131,-0.07191424293214574,0.00013402423912486398,0.007363193850915006,0.007436380124039163,0.004445597671264938,-0.005910801229872233,0.0008176280522459796,0.0041094909390749085,0.00417593599611404,0.05353978839451858,-0.04134019630220428,2.324341694379507e-05,0.0009087562858064631,0.02293733628948922,0.0621705512818937,0.023887436995018444,0.00010959968385234348,0.01573919956547737,-0.02282818055745323,0.11728752114044337,0.09774487671480674,5.4787478044343615e-05,0.003985650652862337,-0.03136520591524732,0.028099662282092187,0.030319101453968017,0.0021770580795340967,0.01256581907264082,-0.027732962414218413,0.1809246846863927,-0.02709593260801882,0.0001261393377117797,0.016212994233461717,0.008676561397838858,0.04727964010522891,-0.003890371926315183,0.0002841722816088505,0.043239544662402256,-0.02049686613360631,0.13708598015276635,-0.07930278813418468,4.211680123373902e-05,0.00023325868650249382,-0.050868703727546684,0.2932780911715502,-0.0008103463424557405,0.00028586294084110414,0.023448781955435975,0.001105858859179802,0.017176562672671487,-0.0027729779320320967,2.6717368123332922e-05,0.004836686064282971,-0.00984902263283575,0.10382732079889584,0.0019173929351007427,3.169298879331482e-05,0.005265187243853336,0.0632458859640842,0.17054135493729503,0.12319710563989095,0.00011946077485555954,0.007865671885966659,0.03140812150248727,0.21508810208009796,-0.17245060486540376,3.373012502938464e-05,0.004725147849694004,-0.005797005429330314,0.01615754159086998,-0.017461612550745624,7.954370337994896e-05,0.002987232620972534,-0.012970435660688362,0.05043350262793246,0.029296191519231875,0.0001175936926516362,0.00029030351027979347,-0.026906114459752137,0.0277130484373418,-0.0005899008259046798,0.000554935164954234,0.0011271752976419291,-0.04334619595016874,0.13824452541473342,0.08113677296908071,0.00013197420576893776,0.013175557584123532,-0.017505119986587745,0.06262624282823773,-0.047271028625880604,0.0017940225970808374,0.015219541217013514,-0.022187033313775435,0.25237003397748564,-0.158653996025131,2.2607036971975424e-05,0.009188973419353898,-0.006354277077998757,0.016082337008194645,-0.009988408000463123,0.0012917791171567447,0.009666273164817264,0.048638239037491975,0.3013885054272551,0.08447828754221907,0.00010746741465292322,0.016421136301283425,0.022000205454606354,0.033503312277502084,0.02633555182052361,0.00015498311216348152,0.009686582658475173,-0.01800110651172139,0.024457083283059317,0.024265286041577065,0.00042247250807143043,0.010295937883141844,-0.007541199664061692,0.025834310003263933,0.015370183317054345,0.002262527747164877,0.003032642607272255,-0.001809545044000142,0.006971035553658133,-0.007298016833120557,8.328417171415895e-05,0.010527471154590101,0.008156848158762709,0.01142689685623702,0.0031573263551671962,0.0017744806276531117,0.012487399359179405,0.009237689443414828,0.02652524686987171,-0.0009353628964733239,0.00013798121340381276,0.018593186035922936,-0.03468941131479329,0.08357626196637229,-0.01731598673744846,0.00016825747333258878,0.015466555602895076,0.006199326026185398,0.02389416242006132,-0.0015008670884251456,6.33237448473965e-05,0.009878885570240907,-0.05047512735355837,0.15214217835701752,0.02916794746628139,0.0031444583828789527,0.018612723884334378,-0.02480138324497897,0.1184601942585155,0.041328932070149434,0.00010414634512637006,0.014107852716976838,0.010471571402598245,0.06108841944387383,-0.018353561583821246,0.00012431220049664718,0.0024535678583201418,-0.00676353180796093,0.038451535758777466,-0.0087798211724652,8.319716837312594e-05,0.012725366003168093,0.01487168155572761,0.07379790715146359,0.014498392832714932,5.064813131904695e-05,0.015058363550051275,0.0038724592371594687,0.006829818696323958,-0.006756562855994345,0.00027644393987498445,0.0657237430051437,-0.029362605204117907,0.11028837460078032,0.16029030251180396,6.620323710958608e-05,0.005080448363669301,0.014322688200654484,0.1465837333212444,-0.008181825578666698,2.5209837402341583e-05,0.008329051601750206,0.00966672815806682,0.02756249066916265,0.015338475694759773,0.0001225942244449184,0.0069957441333002406,-0.017412595280953194,0.06630335753636887,0.037455093839052045,0.00041395769075725105,0.0068367940463131775,-0.009088374714605933,0.0347798505867037,-0.0048702958186409,0.00014966846645483712,0.025356348518156612,-0.0030687419047083983 +2019-07-15,-0.020614437019161484,0.1418832002775804,0.014543497639545298,0.00015364806204268077,0.009157225765789145,-0.0011971155873842535,0.004377355103630212,-0.013056306074968297,6.56197895192529e-05,0.002228241871033633,-0.03946731698225313,0.13134026245345934,0.04473174482631454,0.00013900708251415257,0.028821961047505718,-0.007258416859307759,0.008405621515907912,-0.006692358793499165,0.0002914338086644989,0.0036902837938372996,0.002149965494798838,0.004851717773127357,0.0008001185965197993,0.00023186421813509324,0.009454566901697712,0.011827055060976617,0.03041649244284903,-0.03164914002806977,8.490127801238478e-05,0.008430702226952417,-0.04424080323428529,0.17814520709081147,0.040205630583914596,7.286831318502473e-05,4.0106062556360955e-05,-0.010489517099894957,0.08868997485156829,-0.015676567899061782,4.0558284567544164e-05,0.022203574949751493,0.02053775688253049,0.016825286089432324,0.022728400557090255,0.0009413157767895303,0.0052457047045299755,-0.056191177637127616,0.1434329865071026,0.08415791490062242,0.00013698751237267357,0.0007660722663819543,-0.011903441126961834,0.0077039907565320835,0.0048309090317367204,0.0007552333048010245,0.017984870282160736,-0.018672518913797696,0.2840438164133793,0.04954843660343212,1.959026714050052e-05,0.0030207289369718632,-0.00809469512392998,0.02389106272742425,-0.01558539352217931,0.0001006505298731107,0.022715079220086823,-0.00409333368446641,0.021273888939041544,-0.014048253870929145,5.41616741473223e-05,0.014742133046872373,-0.0034404927652067546,0.0027051512278835265,-0.01693588324439351,0.002480573345289976,0.011162721308956625,0.016175799221107075,0.10206693078365756,0.013099881558559531,0.00013041657782770602,0.03299887048566346,-0.00017896263938420494,0.0008231376651993133,0.0010479596411670316,0.00033666512746439043,0.020547809197891377,0.059836250219261373,0.320056556162351,0.07575306185774901,5.2662151450802445e-05,0.021334205270609075,0.04279553533531332,0.25257081180239604,-0.01679317228959946,0.0002792557413314731,0.022731551410294783,-0.012348408968646115,0.15227307354723768,-0.012844379829557166,3.365256114027949e-05,0.010931197665281884,-0.01330898443717949,0.1473940808763301,-0.05692661777627302,3.0168004420353264e-05,0.008091025506078174,0.0342774601208926,0.10081937845384958,0.021466713727061822,0.00010951847160891184,0.010558369296324496,-0.06973910641453443,0.5283912972458895,0.10372400923469371,3.0486888217244244e-05,0.0024340854388077747,0.011796565190883374,0.03233185576978301,-0.012127338965610914,8.089139435942258e-05,0.011269798582692048,-0.0015858365944371622,0.006596802428709182,-0.04407118840446246,0.00010991919865294128,0.001852754445204535,0.005630301482534735,0.005100062165468899,0.00014414687012370768,0.0006310034619355374,0.021243296353162924,0.01951180548507456,0.07679287704208372,-0.06119405276138608,0.00010694550317622238,0.0038164710279113335,-0.03449530827870739,0.09316235316745497,-0.01594994363283582,0.002376505126413787,0.0026319996340307,0.015719938416049094,0.17937088152771702,-0.010640583697057417,2.253622101177721e-05,0.015980005738112722,-0.025629452514016438,0.07386559659037842,-0.012658933746390951,0.0011344056711750784,0.007879820040579374,-0.047419485088661645,0.3932185966187762,0.10179848830419289,8.030608019892943e-05,0.015921052597408652,-0.021217003599632883,0.03198723328123209,-0.024517571504924947,0.0001565498870838894,0.000500398220848952,-0.018329375836668618,0.02451205664043172,-0.005412837318143226,0.0004292119833081297,0.011824590183466592,0.030672995036067872,0.13101590232396693,0.01970471144727757,0.0018146067133039787,0.016360417836059907,0.0050455306474814715,0.01912476992543879,0.00015778370203453098,8.464493965301508e-05,0.021955597421580996,-0.034041264470439224,0.04360601618182734,-0.0867247076219583,0.0019406019518988962,0.020200954554872433,-0.014626481260011306,0.04691216038900188,0.013692061392897274,0.00012352943701250273,0.0036933924211641237,0.02436032252378544,0.04930263008713018,-0.027486752230995084,0.00020029648242882126,0.019071852194978048,-0.017913843672573395,0.07092022134460392,0.0019397556734278665,6.164993494076185e-05,0.014729523489004635,-0.06945221421731168,0.25064757047963465,0.07599968706985748,0.0026262777522811313,0.022309041169631425,-0.007929010666844986,0.046179042374840856,-0.043423934953887466,8.541116589627366e-05,0.01907054393815844,-0.017408152657182183,0.09825651542154551,0.013533244647342126,0.00012848490645971902,0.012248264320197677,0.0064995627055257806,0.03849892129976812,-0.01964114752250817,7.985172005988407e-05,0.005068679065030849,-0.01221543913342674,0.055878373586632446,-0.015510606349683537,5.494304465174906e-05,0.002748293621097425,0.05229625034837996,0.0784411042729904,0.03732272240943991,0.00032505454746704215,0.004721856279229863,0.004165328697896439,0.018755898485273734,-0.04876451625177855,5.522373557766226e-05,0.005031821537815762,-0.0019415148064728543,0.02287301209065004,-0.04466361031735371,2.1900227829349892e-05,0.00830936312758838,-0.0006068271891552981,0.0018293079789987166,-0.015328638494119426,0.00011595438242483284,0.005389566902280918,-0.0061609290829504485,0.026643813264026754,0.005534552949893092,0.00036448343847287143,0.014446670914636073,0.04504321434357247,0.23580500387707515,-0.10652199461617819,0.00010940776694621552,0.0008713164444302233,-0.0045682348965706415 +2019-07-16,-0.007639375973434226,0.04845191286035713,-0.09920847616674894,0.00016673759802391595,0.00416158131036576,0.027508457402291926,0.07902642097605432,0.010296710398999754,8.352268555005106e-05,0.009714822697612415,0.03604860952285541,0.09678785469348769,0.03517982292938635,0.00017229189920635356,0.006580729354069925,0.026125942906160816,0.026659176218121677,0.05771954951741658,0.0003307448605291729,0.00865718269722561,-0.013685961455346458,0.033001656476567214,-0.004806684503561935,0.0002169888137264836,0.0009624618016727809,-0.00832066753799864,0.0250153994805068,-0.0009322139375756364,7.262689323924832e-05,0.002253216950863923,-0.026388754291912477,0.1037761582577499,0.011688947539184836,7.461242499201712e-05,0.02671893731309389,-0.006851224626658131,0.05293878435520235,-0.09088338711739245,4.438056807040657e-05,0.017357835185070135,-0.02517528367568501,0.02385816745475813,0.10344813808131917,0.0008137332780420022,0.004558143867147986,0.012816183856911523,0.02817327887198269,0.005898404768288916,0.00015906814675402641,0.012791620611297535,0.0018163543795107829,0.0015872691141767528,-0.0004414608952277304,0.0005593380680435067,0.003868049537739738,-0.003687078711400401,0.05301368650897094,-2.4544534274358283e-05,2.0726081081547964e-05,0.003937983393049294,-0.025205203078646213,0.06300377130990002,-0.018589195744388293,0.00011884329717835064,0.0016512877804752922,0.0012867379421565796,0.0070306417533541775,-0.0952557628828902,5.151775821835391e-05,0.0016001847080057362,0.023358918913703525,0.01929621746097798,-0.049215375504085265,0.00236104098958498,0.0193989468441528,-0.04871381795215148,0.2782766752603771,0.0015085632225565694,0.00014405471269527878,0.0002659128095803058,-0.01702882158263771,0.08925169205425301,-0.01857086432117893,0.0002954448124467941,0.02241243199276101,-0.01982106734273469,0.10382696710553087,-0.008108305448400405,5.377467880684351e-05,0.020326165125785025,0.05791264511565582,0.317668434130026,0.032093384296509,0.00030045964281622765,0.032221412505579736,-0.030784944516301645,0.39800433159809606,-0.044242880386067274,3.209820953803302e-05,0.022323815699511394,-0.012014670712273752,0.1447489573706833,-0.015191613839358811,2.7731804980385005e-05,0.0033662468355910675,0.0601918937513175,0.1708597687517805,0.0826215910507077,0.00011348042375187356,0.00855184413746554,0.05757736494223258,0.3749917693623944,0.06149832128759198,3.546683429009892e-05,0.005180511587229715,-0.011971553690075683,0.033771220551008244,0.006214595030222341,7.859250706977995e-05,0.008806185408570373,-0.011146930366427738,0.04597769140754107,0.021539816345300996,0.00011085536664679242,0.0009975748767785256,0.06820305297575938,0.06375567263440782,0.030741646605847085,0.0006114494304808124,0.029090168747370866,-0.009194740956037189,0.035827490472960084,0.010774436261349019,0.00010802123002338036,0.0011046609104138848,-0.03143040413954817,0.11038778190703888,-0.00949792681621137,0.0018274610661570929,0.003998169969634875,-0.02606482277591994,0.2365150052495015,0.012333928172988987,2.8338592268873717e-05,0.015030041603529625,-0.012936518144089179,0.03688134756038589,-0.052193989303426176,0.001146784702193661,0.01730724042588065,0.006371431832427349,0.04520241217146442,-0.0004190810116631422,9.386443561713824e-05,0.005368910734587686,-0.0009059960841423524,0.0012411224738529685,-0.01299539507338035,0.0001722888083267751,0.0163840002395154,-0.025179816586627733,0.03680324129781684,0.015718449597446643,0.00039270859543889705,0.0230552930229381,0.029403721309436328,0.10486022644422334,-0.014228756459019155,0.002173410934868501,0.006179496089970293,0.03561074837352069,0.14306398747033977,0.029333038405670954,7.986217716288879e-05,0.0065976159163067885,0.03196409890576374,0.04242780332090541,0.0463859959652555,0.0018727901248102492,0.0059862654221822156,0.009196979307475426,0.028765265139426722,0.004595497299979538,0.00012667556920769503,0.009688237869393436,-0.04890777712185513,0.1371595204020452,0.08089629470836515,0.00014454808506753845,0.014591096586934412,-0.04099992545956211,0.15232839699418277,0.01943099450928999,6.569255000279154e-05,0.026033082400192743,-0.016629481331141647,0.048366043161768665,-9.603546879971617e-05,0.0032587887079118492,0.021295301740565875,0.04925813611586691,0.23729617750600043,0.06552991659594058,0.00010325897335178599,0.010191770912670364,0.006727880445488323,0.0475461875962621,-0.0016571751008308848,0.0001026179537272469,0.0020897812870237144,-0.01959473065289577,0.10619079841752775,0.021054485076335335,8.72772614488338e-05,0.00015857658904911635,-0.0710618824626023,0.3139454481692545,0.20647986185430756,5.6889211212373556e-05,0.008690884241764936,0.009523918087360864,0.017736796178246805,-0.00699190493755992,0.000261800137434003,0.006429653269546306,-0.019013666256238907,0.07177199694802176,0.04294684594188953,6.587569534963672e-05,0.010298565980234119,-0.021141239057538723,0.25048074931030473,0.015005226945156876,2.1776464356601317e-05,0.004346003543624619,-0.009174644625059425,0.02813893257897121,0.0010691875066408969,0.00011397001271513154,0.0036317794075992806,-0.015142239631685091,0.05832743849686762,0.012632847781034674,0.0004092090041644503,0.01387490954711999,-0.04894720194437701,0.21640202569311112,0.02068177996814531,0.00012955027663793853,0.0005291046388796836,-0.002408544045245007 +2019-07-17,-0.001598675964792551,0.011800477115914141,-0.0015965975578080033,0.00014326742741131804,0.008563546383433172,-0.012961487929866837,0.043333235821074755,0.0039462558140612065,7.177021810797643e-05,0.001094621046405051,0.030842042057649174,0.11082522466578003,0.028616421699719757,0.00012873650341609463,0.00934498988012421,0.017934232345659332,0.017640198454420025,0.0072469424635443515,0.00034312090724327815,0.00933184140025943,0.03262850768606653,0.08133986987782722,0.03027504310770838,0.00020988988525361103,0.006476097664342052,-0.02051112725152143,0.05420798067741785,-0.05031171888732228,8.26176883687181e-05,0.010985347523286679,-0.019511809202985828,0.07686528303027304,-0.002143761221279291,7.448300075713705e-05,0.00799679678198145,-0.008098268010443043,0.07751713626447042,-0.05725454397601403,3.582556430996827e-05,0.0009998640322888943,0.005687256849467206,0.004127601156173255,-0.013571888514161797,0.001062551291792453,0.0028162416979281195,-0.011196058023486062,0.02672590208991577,-0.0009426185134808895,0.00014648550542806045,0.009326806320816828,0.001759143695141543,0.0013767859749305054,0.0011709257963762698,0.00062453853633776,0.0012662696535113722,0.009306025445690813,0.12492993153347295,0.034562246536783275,2.2198341236710387e-05,0.0011597819132928252,-0.0671705825741389,0.19744008554203168,0.11591010936458737,0.00010106361351652509,0.022872282690186038,0.011738692202004089,0.06388895295829651,0.005461216626207785,5.1719672095693665e-05,0.0023832364146435816,0.00744178529132762,0.005962639115966654,-0.03424589920673136,0.0024342298486649608,0.0019190880650992398,-0.024343458805354785,0.15167285880399642,-0.0012410597240855152,0.00013207679433293362,0.037958883100597564,0.010413470702891527,0.05790536620487125,0.0009348531997420624,0.0002784741704727964,0.018106272329348406,-0.009652473293008985,0.05540075830726954,-0.12802702418675704,4.907766088396412e-05,0.015855784868007417,0.039599361858427023,0.201099862140045,0.0002835019028218282,0.00032453625621822144,0.018523092604679936,0.01075300331924267,0.16599062930036165,-0.005466189313748271,2.6882920003700054e-05,0.021406021450189605,-0.005110510556820226,0.053435604479061614,-0.004771691379250895,3.195326728256138e-05,0.0067415996824623445,-0.0265000806199226,0.07311860451288452,-0.004368915173459162,0.00011674601271062771,0.036414487396841194,-0.016345271817751975,0.12927505813381193,0.005835803415627769,2.9205845371296242e-05,0.011429624292163675,0.0022379651502964686,0.0064540136932444234,-0.03336087610327535,7.68777774296665e-05,0.007011356655534198,-0.004853174974755915,0.018241575762530125,-0.02581851958404225,0.00012165002256587116,0.005545890338018787,0.04570749983269716,0.041838246454635145,0.0194948585944898,0.0006244383303975504,0.0029736870918400365,0.017816558258850913,0.06653638474649337,-0.04200135082568607,0.0001127069303349798,0.00890885857114174,0.05120160813894027,0.15781972287961368,-0.04386091338980427,0.0020822913725597166,0.011933280532334925,0.10972139773713407,1.21592031699208,0.4679607290221095,2.3204296785468986e-05,0.03948684132725312,0.035713290907327166,0.11514951658436776,0.0202843837528456,0.0010140024914925593,0.011377627331006075,0.03536433931327214,0.25899687418372397,0.02354294854996867,9.092779707493204e-05,2.241624862272108e-05,0.021124463035272024,0.03312074038843656,0.03231347828220849,0.00015053276127931957,0.011100808038902545,-0.014071740941201602,0.021902349394641245,-0.003510275628349269,0.000368774635412365,0.0019536024196949403,0.04968392125577917,0.18367508361373497,0.021928989300719022,0.002096601826178975,0.012156271924283339,0.020671930036201814,0.057604810524514403,-0.024606594183255774,0.000115136399539809,0.012584346018126387,-0.02020214995052017,0.03295657409645251,-0.001708446279604233,0.0015238166780187584,0.001258590812967493,0.011076675794817588,0.03638702943867532,0.004918971569143761,0.00012060876733130813,0.0084027254693731,0.01567441122637337,0.043067015399197855,-0.03480352508639492,0.0001475390004929918,0.01653399316822597,0.03599687783731387,0.15061290111014097,0.02975310487605854,5.833330529557895e-05,0.015099384996828382,0.08530001568836121,0.26537547726776506,0.06779298880933964,0.003046536465367914,0.009405733164906104,-0.016100354574506186,0.07676715594534685,0.014345316450661,0.00010432792266315678,0.011455585125398276,-0.02120609579742939,0.09381998596298095,0.018868368788218598,0.0001639178087313186,0.021258150527661227,-0.0379852968368552,0.19774399134470877,0.05481813340103886,9.085753025998078e-05,0.006415234535221035,0.022075971294605617,0.10847630462170538,0.024213360831341058,5.11484330601469e-05,0.004577902683249516,-0.011805805614343858,0.021937974876504777,0.0005863596872997361,0.00026237864653831417,0.009196052561291423,-0.032890243269148856,0.1304554999452555,0.12360641778987656,6.269300228237973e-05,0.004149266312530903,-0.017124018487023784,0.16242238446707097,0.011587382732398182,2.7201389647399e-05,0.015550958918723521,-0.006182419623702433,0.017527362786310206,-0.0026653706193246903,0.00012329653379134119,0.013173451309532368,0.0049335800865719275,0.01943276391035853,-0.00423354877790876,0.0004001801834334488,0.010748393852461614,0.012722684416615134,0.056845007461413743,-0.0059575738082183975,0.00012819120292391258,0.0036547438376502654,0.007699372372967608 +2019-07-18,-0.03922232653596446,0.24999429530000758,0.06877696263943078,0.0001659165988299747,0.036892263028359344,-0.014787358064168811,0.047569785430777854,-0.04924479821385198,7.458816505477158e-05,0.009338795691965052,-0.03136450635392357,0.09316355544052676,0.019867209465859945,0.00015573621187613801,0.002490994747802681,-0.0013628319507925214,0.0012721431346147602,-0.09609902658515292,0.0003615548441146879,0.006664142738446904,-0.000766490655507301,0.0017503395449073751,-0.013946155963375848,0.00022913019891917976,0.005384039499370805,-0.0170283318537474,0.04500509092180279,0.017206876130266086,8.261467555919602e-05,0.004682469770148982,-0.0019425890969960394,0.00886654569688053,-0.018895319526562315,6.428599132967568e-05,0.008748374411085226,0.03427167141976084,0.35412200402629956,0.07584760838153774,3.3187992751578907e-05,0.007735108515515896,-0.0163760327620081,0.014007741934202326,0.040086338972545,0.0009015407318283564,0.012342899823888967,-0.016622817454222734,0.03979205439702206,0.004171997282292779,0.00014607307118890762,0.008402633960174516,0.027481307769010387,0.018755144793979342,0.04039175666617494,0.0007162115704686463,0.008443691152510247,-0.0023286901440152797,0.026919018358799774,-0.05566378769588851,2.5779546655661e-05,0.0017586580457390655,-0.002339517420930473,0.005542439144056191,-0.04055742603767897,0.0001253938936616963,0.021564476207457224,-0.010636543618825448,0.05890673993434612,0.007547956505057274,5.0827336899876804e-05,0.005592490031979317,0.007919322213539162,0.006520204669369468,-0.029041995556666762,0.0023689165255275,0.0014824098101943156,-0.022156903086435652,0.14561007278352495,-0.034406800509189726,0.00012521886037610962,0.010059732088832044,-0.09732997216490287,0.6226507519643584,0.1226064068166196,0.00024205291334538815,0.020636890902008778,-0.04548329160672132,0.30860680436138277,0.01852682874415324,4.1515220163716215e-05,0.012151090924590434,-0.014274777463189647,0.07152040985188979,-0.06907373737394999,0.0003289471737965231,0.01673934990416094,-0.020993212909318888,0.265876623583427,-0.005172196966763353,3.276641946467137e-05,0.02315110277646573,0.01615795359484865,0.16930103867624768,0.054653480247236784,3.1886616829745836e-05,0.0014649994965866015,-0.02505709439226957,0.08409963668349651,0.041901873316053585,9.59752705849945e-05,0.00579202513519313,-0.019844943181892515,0.13733333377151993,-0.03820634140394213,3.3378458284508986e-05,0.00421751810684969,-0.011473181816290492,0.030122645652124254,-0.0008567527397126323,8.444387325656873e-05,0.003256677974045878,0.004736621145230416,0.019858869653447863,0.014887836069581403,0.00010905930350059144,0.0025647561158095595,0.03384939244590224,0.03465110764536928,0.00254878751155866,0.0005583535963350388,0.003686252685471407,-0.005974910264373457,0.022289690311546165,-0.0009535001249138471,0.00011282708339119289,0.001809309864676385,0.032471705420438486,0.09902799503857385,-0.002428498185808928,0.0021045841092481384,0.05349536264585048,0.02303915536880194,0.21311452426892863,-0.011293202443637042,2.7799417750296625e-05,0.016224824594503615,0.01117111739452516,0.03284937303897082,-0.04661571971540909,0.0011118361754903128,0.02320086794370451,0.013822464493968964,0.10265060095726765,-0.015330260169169418,8.967050797974215e-05,0.009514146205734094,0.009530477522823252,0.013684872150270347,-0.015533036440092783,0.00016436876925685046,0.007078427163750125,-0.009657959446246775,0.013154354285155361,0.004845318029298706,0.00042142447725410125,0.0058392795602996445,0.009454149819036724,0.02925346462138566,-0.096095517614601,0.0025049295293736104,0.006976714837028091,0.023621013428303268,0.09032695508407432,0.009834600223152837,8.390184797815207e-05,0.012077636636892696,-0.00823062793868563,0.012776003930207839,-0.008404982469280908,0.0016014564211981731,0.00178171205832238,0.039661205174910494,0.14515197416283887,0.05355058360597145,0.00010825774997066068,0.00608432000678976,0.03532295516308223,0.07402964526619915,0.039238232389249825,0.00019342461353419468,0.01892263585383814,0.00418064320352416,0.018803848359309403,0.0008090495122406715,5.426381071329676e-05,0.02071778084193791,0.06218957898954425,0.25330338856987417,0.027711446716020355,0.002326990847261288,0.03797024841557836,0.005546181326809884,0.03583516582913813,-0.0002999183036783423,7.698838624498618e-05,0.010830187571989483,0.035280584237959156,0.19894134882945258,0.017990758258245882,0.00012860903944399482,0.005677721909606128,0.0156010036789561,0.09538273693741792,-0.06685760059996122,7.736267141108195e-05,0.008183998192279843,0.02591278144481315,0.14023280528901957,0.025815743718413168,4.644209526966179e-05,0.014401242921163881,0.10184865121494255,0.1658502423608587,0.10920430953276726,0.00029941156106047463,0.007932177234095308,-0.005056967867563465,0.022247243418485354,-0.040247401948625444,5.6523411144121286e-05,0.007928840732950682,0.012244875681431622,0.12049246837782258,0.005668104529121274,2.621958203667737e-05,0.013714996432765332,-0.006099497174674924,0.021035581397059674,-0.09676922737625782,0.00010135577042411618,0.0014062058126339118,0.019566807842347076,0.09117842558401641,0.017596347159912717,0.00033826406386666414,0.007337882551527152,0.06077104140344349,0.3016354601074162,0.09507548545390485,0.00011539475756061252,0.018801331790888533,0.0036437074767161188 +2019-07-19,-0.037137496603283984,0.27578285715583767,0.05041543440575564,0.00014240719832861579,0.006997154000230401,-0.01948141884191567,0.06740586862819906,0.00928064037084237,6.93479137790117e-05,0.017695617685827482,-0.009452350513786326,0.03191319133510925,-0.05407391610250971,0.0001370145808017033,0.0072329860394065686,-0.016093283202578725,0.016048809768007186,0.04221154606937715,0.00033843064444871306,0.0037301635091676133,-0.03797114537905838,0.0853861334918993,0.03626250360884293,0.0002326827146128915,0.006595380402039369,-0.032596728098372954,0.0794619166366108,0.06762777631774025,8.956982250241594e-05,0.001379104549225297,-0.025495290887598603,0.09329111923009718,-0.004134238258410185,8.018802612320501e-05,0.008780438847543258,0.04575680049298472,0.4131416203954326,0.10694631785568716,3.798003101981785e-05,0.030395676060215832,0.012873033809360713,0.011182073393178267,-0.1306644525364017,0.0008877759139272325,0.006536673089022688,0.018637558873639718,0.04166038806879797,0.007954031362096466,0.00015643272248178994,0.0037211308999120195,0.03100690932330957,0.024483091463789273,0.029644569487642637,0.0006190369640213808,0.024015678972286677,-0.00013618846753643565,0.001835135835160915,-0.0008415314923456864,2.2115405484825723e-05,0.0010991617112112567,0.012277526262425453,0.029170439923832697,-0.0018654642549863474,0.0001250313529972876,0.004454578890817509,-0.010724348181371978,0.0749776870523831,-0.001573410175044192,4.026249509292831e-05,0.009791629037589532,-0.019784649539961497,0.015613394679330345,0.02002588606494858,0.0024714623349801324,0.012855064144307914,0.011112415286848344,0.07611588503218905,-0.14116494079559505,0.00012013934768127161,0.02871126210499082,0.009695421150732051,0.050027277314224246,-0.022516312510968695,0.00030010141503004364,0.006702452840658377,0.03295799288052235,0.22818656427562678,-0.003565322252168254,4.068474911122142e-05,0.009552134128013812,0.026070435506988256,0.12388529637842739,-0.01256194683195606,0.0003468289406585572,0.03315771427684603,-0.07647902338336676,1.0260216970387177,0.09838376141707111,3.093257110739676e-05,0.0048220675043800475,-0.011869657654584295,0.1263529916250679,0.005599280403433752,3.138588457231118e-05,0.0019122020717197152,0.0044927600320095705,0.013345083940653651,-0.00545704451068591,0.00010844628235710773,0.0019463940887843505,-0.007958383750779554,0.05003311767653801,-0.0014788159299205387,3.674173727242217e-05,0.03112838750252614,-0.012485231839407562,0.03788630752948313,-0.00011549249529916558,7.306202639806838e-05,0.006902317327948231,-0.0061816965396187945,0.03048968918201336,-0.009194228889928439,9.27050260277973e-05,0.004992043712813479,-0.03697832913508071,0.04149798495165215,0.01294950876730255,0.0005093259878689501,0.028149819148787975,-0.006070639275210362,0.02124747123284149,0.006555889174327776,0.00012025778114377753,0.01129264168978677,-0.001213471830402562,0.0036360687307588698,-0.0075640861333541995,0.0021419867985445723,0.016020655035433637,-0.028631512188075588,0.2805185235668363,0.0022205976341835346,2.624610953422425e-05,0.033438934514048675,0.04342784710232342,0.11859228281612101,0.05740772859532161,0.0011972453002263913,0.00567499314831839,0.0013319848348802336,0.009756676795737294,-0.04649067458226233,9.09123753087153e-05,0.004799594533345507,-0.047036808038440105,0.06192024674248365,0.08410375614002696,0.0001792877225222382,0.008944525125155547,0.018519683496369645,0.02734954373798748,0.03116578158960369,0.00038867569921087567,0.004135042436298687,0.016132039486179365,0.07143019964870746,-0.06120371661563288,0.0017504824200051308,0.018275293213320262,0.013023954885731473,0.051221718288069366,-0.05340998603220677,8.157913767401818e-05,0.0001855725121220576,-0.059187167754943724,0.07426955639042176,-0.0019739889181908925,0.0019810430822994403,0.007608839446766462,-0.03577524203933009,0.11406643075352177,-0.01712530464588647,0.00012426269402439444,0.009406969568446019,0.016959061641778087,0.036052785127694824,0.014937940127453043,0.00019068800477603824,0.01710235690753387,-0.012203029684133157,0.046929698507743006,-0.015518135630559366,6.346493338960596e-05,0.0021695197965604296,0.06483463103264431,0.23945443417091455,0.026729639283185225,0.00256626923744818,0.02284622208729162,0.039608268103882,0.21709605596010187,0.031891925742614645,9.075582105613078e-05,0.015671327362548112,0.01042433906641253,0.05716175141542444,-0.0192932720794434,0.00013225246835153016,0.008405546922665128,0.05994345466062311,0.3215233258521149,0.13102804570809723,8.818160145899485e-05,0.028249014392621133,0.0036825610702824313,0.01678498987932069,0.0015995042779912679,5.5141207086014657e-05,0.013370298107030639,-0.05400207470055711,0.08454382330267589,-0.009721961250155385,0.00031142821419292776,0.017386533936820315,0.0008472238472568808,0.0031712337150747887,-0.03397003020977245,6.643306616596597e-05,0.006079384857553626,-0.022761964238713052,0.26977991095302717,0.01138824534235561,2.1768645910234453e-05,0.009128552634837861,0.008381306777292546,0.026001369699880473,-0.03588037352821216,0.0001126741979854132,0.008932099075775461,-0.0214000639569002,0.07898555851236565,-0.06892439253794835,0.0004270663456205188,0.012451256991198232,0.07556392923626513,0.31689315247519334,0.10934972279729556,0.000136575712139573,0.0060528721479174525,-0.0013740640842412044 +2019-07-22,0.011459145698131133,0.07070453205127171,-0.0045611111249641645,0.00017139240502096338,0.0029607343775010365,-0.05933144694187959,0.1871251590814347,0.10016690821124018,7.60787351866318e-05,0.0006097384611159681,-0.007223007865433352,0.02792392070273735,-0.006756843478921421,0.00011965721658147585,0.0064539888246122265,0.027435761452155292,0.027881126351200738,0.027164788126182914,0.00033210434671767796,0.005858631447381236,0.030226416535505687,0.06875290024148929,8.212414410220731e-05,0.0002300347314041894,0.011627687424363058,-0.0037922603387505983,0.010520273524182331,-0.020988459396520096,7.870781430729086e-05,0.0006942808022580148,-0.06830451762209155,0.2974186082722,0.07254463939462036,6.738622795216965e-05,0.039547775290172484,0.005621079057909823,0.04868274177768602,0.0008249064492721046,3.9595267247449556e-05,5.4238175145506244e-05,0.005176462781003701,0.004354230874259983,-0.0002337296613820755,0.0009167827423771155,0.0039013856682999235,-0.03480094654894333,0.08790596664970599,0.028780527744597762,0.00013843139292465622,0.029464197362923113,-0.0023098658452838337,0.0018149484947307798,-0.0344387387829187,0.0006220808187450838,0.0032811135755333337,0.0058854325478990745,0.07324566368896007,0.009786960939646207,2.3945243488334474e-05,0.004834296397503307,-0.015633697411601706,0.046340531663703007,-0.005604922807505788,0.00010021938369924677,0.0021663774716394442,-0.011593009601064724,0.05706544098053114,0.007021943945602227,5.7185356933629086e-05,0.002343341430711505,-0.0054039640667745935,0.0039599894032473736,-0.0054736385429564275,0.0026615915027029644,0.0036325466796637545,-0.015240590758160408,0.10152541029853354,-0.0016677057750021903,0.0001235319098973126,0.01672625145341234,-0.045410866524702644,0.2401611715299184,0.009646117909963458,0.00029279605950402655,0.021325663362935458,-0.02013237933909884,0.1146788471083187,0.008227479300855276,4.945073404535587e-05,0.011172820180461155,-0.04873921224909324,0.25378409495036847,0.0598887058272075,0.00031651982165505944,0.00910146998924298,0.014365191663796904,0.17010689038840388,-0.005314267436951158,3.5044490515185075e-05,0.02208711665663372,-0.0073229107364910714,0.06478797191196813,-0.01744041404913431,3.776339785667022e-05,0.005046862284321595,0.017573507975438107,0.051596305490145405,-0.03632398033840952,0.00010971414251667218,0.008488396056652662,-0.003443198817408471,0.02487653088226528,-0.008483647119717509,3.197162130244212e-05,0.013765065586830346,0.0009727425556518869,0.0025855000796483644,-0.0033413031151821033,8.341242409869115e-05,0.005739608156416025,-0.004577413003636492,0.018619433252973477,0.001921878058585988,0.00011240929836671857,0.0027607882566967027,-0.02510626623015692,0.021517191757466463,-0.039263603008807664,0.0006669174807533194,0.0038050093552553224,-0.021782919039400526,0.07803571227950541,0.03616101909484973,0.000117492105778444,0.005923675052637582,-0.06388909163764846,0.19045049323504604,0.05223415958672047,0.0021530979448168204,0.022503480091531504,0.0009366133226975338,0.008364256721022577,-0.0418633149279682,2.8794873326520234e-05,0.01475607830003907,-0.06847807857802858,0.19950982921900073,0.08311502411605119,0.0011221697022741348,0.0011622207278830625,0.0024016637494292553,0.017303198894426587,-0.010185972176140099,9.242967931782338e-05,0.008483445545440817,-0.017206747577245447,0.028569650806028617,0.013728401078090697,0.00014214750514223454,0.011078216746525479,0.022988174317523022,0.03337377146322963,-0.029828400366697965,0.0003953694493524297,0.00487172266916233,0.01047681849905445,0.03834969184321205,-0.023153169315914934,0.002117473007407475,0.009165840134393848,-0.017319718746188744,0.06891045970212888,-0.00721347966286275,8.063917176924229e-05,0.0004146491053860469,-0.04769178552963065,0.07046889380000926,0.009329802704214794,0.0016823769903951359,0.014023241700732119,0.0439241841682089,0.1575817685239647,0.08012714322819801,0.00011043678881366727,0.010915124661611023,0.03051879803812085,0.06611155398710196,-0.06402013274402153,0.00018713302401609193,0.0026450093021046592,0.012547059643769691,0.06295292369557086,-0.01655978409322355,4.8645198828129036e-05,0.01036403749376964,-0.10587358479670084,0.3734504380378741,0.11604748080033689,0.002687031161478964,0.012737275146645147,0.04012052604147495,0.22449770668945976,0.017592097007780784,8.88986734468994e-05,0.016761273530322866,-0.002431711635508311,0.012862518590321056,-0.06655169712229464,0.00013710296336039228,0.013012851963723185,0.028476922995210673,0.15399301031840215,0.02015165316699042,8.746629906961314e-05,0.004211190998312945,-0.020908263831733425,0.08637379616835844,0.008515980246494083,6.083918099832202e-05,0.01742631906093504,0.07496133936242891,0.1372637153472188,0.04264615979947365,0.00026626309867776445,0.06727306013284676,-0.012938039382805158,0.03747534709265241,-0.004243984854321807,8.584938349475013e-05,0.007304029617555438,0.00016694501860341565,0.001746301256149022,-0.012006557089939226,2.4665253534081684e-05,0.0053540541065472125,-0.00867131708651936,0.029941984888836443,-0.006731959642587585,0.00010123098092823425,0.003935838478554854,-0.015311560339406198,0.07409721733652799,0.0003837328389016772,0.0003257208221903434,0.014324055454465634,-0.020397001776703366,0.09652441446769873,0.01135229919640659,0.00012103220735343403,0.015487367238232607,-0.008068754974372061 +2019-07-23,-0.011818070811895766,0.06519307176138528,-0.05305959254198442,0.00019170424386921446,0.015470781905704917,0.03712617156263528,0.10679948810114978,5.363063152061967e-05,8.341065329864737e-05,0.02110617150481905,-0.03467521071792402,0.1178045772775283,0.005523218632159062,0.0001361614439110377,0.003084471330104668,0.0026632623797777834,0.002542473532743507,-0.030274573186473384,0.0003535292648638016,0.005670410526346086,0.005536544293368143,0.010580018633725635,-0.022455216418501008,0.00027381051267807364,0.006002465078949206,-2.4447857058566876e-05,6.292401553367592e-05,0.0010315912182928084,8.483422718459818e-05,0.011659114405025555,-0.08192293649740709,0.29968041025696135,0.11782030538817928,8.021156902000148e-05,0.003273872523525809,-0.009824854337784288,0.10212323198340728,-0.004164025424314806,3.299135735154396e-05,0.014572371922544737,0.008548683571575804,0.0055187773738523275,-0.02915845890425967,0.0011945412558602689,0.0015713875594619035,0.0035600962850404093,0.010246921104477951,-0.043772908703748045,0.00012148712033257077,0.016454744414524658,0.015054636849928872,0.012649031146721931,-0.06227159989002372,0.000581751323696826,0.003286883036299894,0.006722101526272782,0.09544938238575687,0.015115217503749652,2.0987211265231645e-05,0.003554054768518224,-0.0254205182177232,0.07359765202965893,0.007836054616313686,0.00010260569779870553,0.0053271306034892996,-0.00454209252295236,0.02233573701159477,-0.009370588902698146,5.724235694843736e-05,0.0024697712741874535,-0.024892853960406285,0.023039819566705724,0.024170743371425704,0.002107262264510377,0.0018420160359848676,-0.03484376171391084,0.22088337963198892,-0.009232019075979746,0.00012981177974495035,0.007151880823361166,0.05245208209577087,0.27007837129326223,0.03868422770114683,0.00030073304957208826,0.035574774271007525,-0.001561658398545084,0.008897408848227076,-0.05339960068005292,4.944056779222351e-05,0.013289870878325316,-0.04431042945754802,0.22104467045890808,0.05846691562273514,0.00033037921616731035,0.009585725936980347,-0.0035580116331957808,0.04780896124461707,-0.057788709163126596,3.088362618969184e-05,0.033171691040226936,-0.0156680992872422,0.13612570839340213,0.0022781757755657083,3.84554476488621e-05,0.006312450999609656,-0.0013328952183679424,0.0037270425719004466,0.0009718428264493785,0.0001152005128015528,0.00046655671442298314,-0.05431244318416803,0.33436924781767596,0.05489558972405904,3.7520220962725195e-05,0.005649779792263138,0.01583687772321816,0.04708759708744807,0.036265711186018054,7.456592628313951e-05,0.007379678770625399,-0.002199026359276502,0.00899382466095222,-0.06963239579739339,0.00011179814928529875,0.0058804773604468515,0.008084198221884673,0.006969833054261004,-0.07182415828750469,0.0006629642949561022,0.00836074257765458,-0.029631645808356234,0.0987832668335645,0.04597594994274828,0.00012625785256296435,0.003062043994211862,-0.07214448122512658,0.24233692927602926,0.05938450650177845,0.0019107448117835874,0.0008185904256194892,-0.0013590545372142572,0.011481229943580243,-0.04692611168049502,3.043901993735886e-05,0.011384433434938944,0.02485791788282289,0.06961337371820342,0.007309904897919447,0.001167463568562271,0.013188280235656633,0.007402156645078605,0.04320264291844799,-0.004006321708783596,0.00011409683544190848,0.0006249823831922221,0.0005496363285007575,0.000772601433329817,-0.006331126363157159,0.00016790564859293057,0.005110999333843254,0.03669072611868014,0.0502480644279041,0.10106977005289905,0.00041912241049349707,0.010415284981140057,0.01770944401230806,0.07555468421879934,-0.036217761097533066,0.001816744579605738,0.0083414035209297,0.03814115412857691,0.15249754120086265,-0.012104094208288537,8.024562416696906e-05,0.009260470363995483,0.01672819759896401,0.022540631408646133,-0.022652262804333426,0.001844846617642154,0.019391471241577217,0.028869968115746138,0.09019218589110363,0.021709152421611165,0.00012682165844949935,0.009326911942940075,-0.01814504504255261,0.05302717397721662,-0.010516456106534074,0.0001387138878393086,0.0010101317918840098,-0.0024123408446395252,0.011038794147875494,-0.004863461197163122,5.333729178959848e-05,0.004365379877889576,0.006887405195933545,0.019443390427193712,-0.007625019541168219,0.0033573892449364484,0.012105227578193144,-0.019277645241851854,0.1121222343494348,0.028282208602088296,8.552691574607357e-05,0.01621366341161014,0.015726615496712927,0.08795069244342739,-0.00037921690853065705,0.00012967515928111488,0.0008966868174664542,0.0033472882783853754,0.02302766500379604,-0.0035215908765713904,6.875304106568567e-05,0.006658426081287349,-0.05091556225682584,0.24379048334293182,0.06222057287224085,5.249055811535091e-05,0.010571917900126244,-0.033073147105925946,0.061051343136701214,0.002504459779517834,0.00026412511170417156,0.006104349020712824,-0.007901319826895802,0.03626772906792012,-0.012102549303788696,5.417434317465248e-05,0.014418567664003304,0.04352331565894904,0.4587811023391288,0.027086143011311153,2.4476411045795367e-05,0.007515654357298686,-0.002888270524776066,0.008286447921771306,-0.1104225061089314,0.00012183678418193913,0.007953020508188564,-0.0018796619657123492,0.008029273097510375,-0.005085927707725528,0.00036900435770211004,0.007891968633679875,-0.017565329457990986,0.09545807048662072,0.004963630595057825,0.00010539389242668209,0.007053735706585844,-0.004266635509918064 +2019-07-24,-0.05912435814731278,0.41184163097487386,0.1272016037209685,0.00015181782940819168,0.0032545632701631608,-0.01844767616888049,0.06296488921466974,0.007437579016290688,7.029974495465683e-05,0.007147126469690983,-0.055609275076222445,0.1958203971307094,0.09025982587767126,0.0001313670692714715,0.003094815805591526,-0.002044606983724426,0.0022124985220032894,-0.03451633112287881,0.00031188515720778973,0.00370961243213129,0.027367667849861103,0.062496183812649084,0.005621953629766586,0.00022913005729822386,0.01796620578572525,-0.016248887299484278,0.04247187137786678,0.013128073555304326,8.353509467864385e-05,0.005276375626238278,0.003832221924431872,0.01634538296922011,0.004555351544132639,6.879318324901235e-05,0.018872384089647427,-0.03159330829352271,0.2914783685046872,0.03588461677523588,3.7169557419162e-05,0.00019684733546107374,-0.012584618142098051,0.009994203649715917,0.02150911255195484,0.0009710389132420423,0.02494210701219722,-0.008979239008245887,0.023698757469905633,-0.0005861165075958829,0.00013248778568272326,0.003984406098218514,0.0030988630167744276,0.00235379344424677,-0.05563189594187698,0.0006435145758470654,0.009241962179819149,0.013007669550992052,0.16123096818995672,0.05073191126394939,2.4042178819568454e-05,0.004826965129246094,-0.036098033369248675,0.1093065660515984,0.032433140115312876,9.810436455729986e-05,0.017645416838304225,-0.015140867358107862,0.07648047354011694,0.024227172549554393,5.57265304863491e-05,0.017285166475433374,0.024294014979660168,0.01774196937871229,0.032743359581062004,0.002670671317223303,0.002724711258003868,-0.08939081981664922,0.6335212557389539,0.039904741483223254,0.00011611379973562018,0.008153437926812121,0.03753101866744897,0.23789498509327972,0.02287964801538192,0.000244294279273242,0.004587039258061208,-0.004593195760953437,0.025555652073339073,-0.001359556121117201,5.062778702857697e-05,0.01685288886965712,0.07925721116432961,0.49335865962618847,0.030105179242204964,0.00026476638061231363,0.01927584048878369,0.015640808714643416,0.24522628264306318,0.0069283074171391365,2.646807893664996e-05,0.016482287185223207,0.014468544928205831,0.1546326961766933,0.06549444193570121,3.126117070619427e-05,0.0030093924162761035,0.0040466961615272965,0.013202114897624271,-0.022936533714536207,9.873698126129745e-05,0.009623511583972098,0.021381908094205513,0.15946285598965745,0.011513458690319943,3.0972716439626017e-05,0.012539745141702405,-0.0083700325443765,0.024399468366393135,-0.18920623821700044,7.605436860329126e-05,0.00030596642518562495,0.004608989582748525,0.017627471714623,0.008164305017680477,0.00011955405078513386,0.0019034833910475943,0.021574266336583287,0.021334597171147118,0.0012140584224039049,0.0005779990838887052,0.018086290989011163,0.049472913257224534,0.20786547998535976,0.06442932293264622,0.00010017771502479577,0.015627271383081755,-0.024721639067886853,0.08395562776297492,-0.03562380449921561,0.0018899339338274684,0.020649117811113706,0.004620167930906951,0.04936180480431061,-0.011384824051806547,2.4068494529983066e-05,0.004412172007477796,0.007600265890125823,0.01936449524989367,-0.01611677741307827,0.0012831985924484015,0.0031559748180634032,0.00500507242954284,0.034946816613436425,-0.013305450643679754,9.537364676123377e-05,0.012842392522169024,0.00958223206707591,0.013606384108367873,0.007247724360341564,0.00016621466703533526,0.015158442683064554,0.002371757349536976,0.003089000463100369,0.0001935437134704261,0.0004407133390029353,0.01194190455261935,-0.010859888336964255,0.040386794087699546,0.034667027752266585,0.0020841852633499405,0.0037278355583801183,-0.048554954740931994,0.19016551856240116,0.06420836195296047,8.192041656402653e-05,0.009849666513288334,0.058562492806622526,0.08445744497339419,0.06874150906912276,0.0017236885938480611,0.004779265258429544,0.08609514404323697,0.2649891097462838,0.25361520872944404,0.0001287261165065256,0.013203932460450615,-0.05019319347630582,0.11637890924525462,0.05413191105180094,0.00017483602403770202,0.027351629984571604,0.013840250170860156,0.07136201143731001,0.004378328199511207,4.7335915676548386e-05,0.007163506309682396,0.09514149623453662,0.2805353941106508,0.047630587623873524,0.0032144033543774152,0.012733461467129344,-0.010797364574975885,0.06560013415349905,-0.03170569201600224,8.187543282274578e-05,0.003363458242309088,-0.0032462243482319153,0.01973533525223302,-0.026223435360664456,0.00011928746431275198,0.01925662037358141,-0.006502343138035945,0.03434238760479329,-0.00872388023473043,8.955464100311699e-05,0.004917437675849476,0.0060288700269543645,0.026476035887467376,0.00099024159499445,5.723087094055178e-05,0.006756832294165148,0.019755606810664333,0.03937307079962973,-0.05330732910725321,0.00024463606376702406,0.009490878030948047,0.001990302772105834,0.007582554719836651,0.004522382037415742,6.527065496311815e-05,0.002245532688183776,0.024000766907585375,0.24933456698222303,-0.02639976273533176,2.483555746235123e-05,0.009418666920891512,-0.00019513970906172773,0.0005952172486301884,0.0017619439172665834,0.0001145985465925385,0.0043969414827809685,-0.013175271437964943,0.04349977020739189,-0.024637828964637818,0.0004774199681938873,0.007538614790423688,0.030520691095104538,0.1597986866437567,0.0019756801993045664,0.00010939386173561804,0.008585676972587062,0.002995723756046025 +2019-07-25,0.018473389277066106,0.15828118973195685,0.021113361540844942,0.0001234252057395009,0.010619321630886493,-0.023052300791670602,0.06532041075184894,0.011686023211814691,8.467903443537787e-05,0.03046485278297002,-0.020353470642022954,0.06404999961624327,-0.00918945235059952,0.0001469997337402493,0.005708612890612011,0.027591243381931627,0.027786796796034262,0.02437069182177497,0.00033512022839002743,0.001313713382320687,0.014146519737650999,0.03217448721327155,0.004334683931238812,0.00023005715679022944,0.03088167120394328,-0.017982079814290786,0.04432187280807796,-0.030667110238083467,8.858670691253203e-05,0.002471102865196962,-0.0360498089646519,0.14991735548531848,-0.0150671631324899,7.055713050414302e-05,0.0015742475263469686,-0.03322838071676943,0.253718004284843,0.03256360519944902,4.4911390933920677e-05,0.00942528015556414,-0.018113815532943566,0.015272244658108962,0.036214350242236674,0.0009146435045987155,0.008322838805766307,-0.004556634602905527,0.011087207359871886,-0.029889552020511002,0.0001437089843932558,0.003418273373308632,0.013601480773479734,0.010816750687620247,-0.0007731752841353703,0.0006146299660784452,0.007040646341287678,0.007321541614726508,0.08498154263605136,-0.0022015803603610004,2.5674424303902982e-05,0.00025167177206039475,-0.011950729976097108,0.03846824004552851,-0.0038909735631294687,9.228755795679958e-05,0.009300660178232965,0.016995397830769476,0.09276636832153763,0.03715125639545401,5.157064919179019e-05,0.003936769310320761,0.010055518932516523,0.008780045090875292,-0.04411320861856525,0.002233730191890148,0.0019320082922123529,0.0769445395747677,0.4425328419958609,0.1208703891470249,0.000143081803673958,0.04139226845274129,0.027373234349917768,0.15356146172014123,0.0020175342327428633,0.0002760273462134681,0.005946258340947103,0.07936155293648807,0.589655855940673,0.1670463045299078,3.791163351927441e-05,0.026225495128551008,-0.014298879335791756,0.06969241515332407,0.008543537915791282,0.00033814525197641953,0.011397455325507126,0.0006619162739173062,0.009176851646067147,-0.027171860683425236,2.9932264838022166e-05,0.007819517345760087,0.0006156795025014731,0.005940568272376947,-0.03124319031712175,3.4626485400925776e-05,0.0017873192785497869,0.026906771818923585,0.08924573940593215,0.007138613579193143,9.711735805570992e-05,0.00890304952996616,-0.01951312798242094,0.15407326458361434,-0.005216113418189691,2.925445315445199e-05,0.008753422307267,0.01949553081870479,0.0495107723320284,0.05204929145606193,8.729969889222269e-05,0.001367989852938828,-0.003425034937137081,0.012476656749874344,-0.007114198983941523,0.00012552070628198226,0.010771131783588619,0.06686804041674066,0.07760488299234217,0.03684740141340197,0.0004924987235345636,0.0547146157112801,-0.005683188878968838,0.023152486107018054,-0.03390587503244752,0.00010331906486100202,0.0017933335429704562,-0.013730338646843195,0.04733488393079208,-0.007132638507853062,0.0018617403311226674,0.029534094335085644,-0.023682407616163338,0.19331713231172137,0.0240018415932393,3.150196923016957e-05,0.011620545109558103,0.02213000862860545,0.059196990711862005,-0.0050882030428294174,0.0012222307986255413,0.01600803093584949,0.05286139477959139,0.35284074631545315,0.07133616576689868,9.976668209868395e-05,0.02075622213411759,0.019274981846314616,0.026765741376995167,0.02345729917671959,0.0001699652301503109,0.002675320597042706,-0.010915527813824818,0.014596442846062749,0.007847189663195704,0.00042924142040289264,0.010195592489703234,-0.0015456648103352212,0.005698934130410706,-0.08910701702889559,0.0021021902787366833,0.005912442786665705,0.0178841504293798,0.06435830908191359,-0.04027655644849639,8.915671521570884e-05,0.012191560542575797,0.04588684886541218,0.0591188552612125,0.05811274764524896,0.0019294761320576069,0.01945638889923089,0.007892097324822774,0.02657154580273842,-0.00032088164443568875,0.00011767701635638079,0.025205584208213044,0.04570799919240446,0.11259972294304081,0.11128433018379037,0.00016455658471050067,0.028660360528115502,0.0066648892724240835,0.029365724005512517,-0.004752157785686395,5.539443676108668e-05,0.005009924626976945,-0.028043340479949004,0.088969671514035,-0.0007258682117678619,0.002987485566303663,0.014142251799109235,0.046885354086686225,0.19937323102130292,0.04613356775896273,0.00011697981329624145,0.0009587089298328534,0.001367331955284402,0.008558610693590946,-0.08284036662448759,0.00011585945359322639,0.002438294634507168,0.013793691955899606,0.07711800917976686,-0.04692941151073352,8.460059395546701e-05,0.020771442245684075,-0.007787835405778876,0.041972826922437693,-0.007896277667367908,4.66332773764948e-05,0.002962240452976268,0.01686452301678847,0.030600656001313974,-0.00260811043516505,0.00026870312653270404,0.008324613912553803,0.01720930354541724,0.07100205657797144,0.04834787263487567,6.0270770367227445e-05,0.011433923610492079,0.006150314925030653,0.07293069822916214,-0.0040660096536901304,2.1757964722251593e-05,0.014195667871455923,-0.007686586932788393,0.02490995445124204,0.0016154960662126963,0.00010786227458812758,0.0036277764522568284,-0.010359383526449073,0.04101869904091107,-0.20436515032127,0.0003980888381308605,0.0038241371736950818,-0.08133630372256265,0.3486173091608729,0.119960971132059,0.00013363101953098804,0.005600765457456444,0.007311190639596647 +2019-07-26,0.006601229073580929,0.047983185776320145,-0.0834531615822998,0.00014548637022860923,0.0036289191585551633,-0.03395926426819838,0.12161149921325341,0.022515928430507474,6.700298588045807e-05,0.0067106132684027955,-0.011093314564685739,0.03664888197677318,-0.03581339037304214,0.00014002249186868427,0.003477867169477879,-0.008744814237523017,0.009765297466282326,-0.00881510166638123,0.00030222679633637,0.003962884160383005,0.058482200448801716,0.12154750133207481,0.08203377741415749,0.0002517534564320766,0.022920410413197985,-8.589452148452652e-05,0.00025082923302294783,-0.018317478452672592,7.477114896068979e-05,0.0027827482876967083,-0.06396107198994312,0.22051600054938988,-0.08007780194451077,8.51070391812648e-05,0.0012157873560065245,0.03440075006566833,0.2831352343326651,-0.055172039931062046,4.1665117274950705e-05,0.01284142825761541,-0.011286577908551372,0.012498126177850202,0.009284053481225308,0.0006964054569009295,0.00429763672899183,0.00833733101635446,0.01981132246142482,-0.17410114288484763,0.00014715514944641008,0.004000974758000457,0.006939721436005652,0.006456727422670453,0.0019386620392687673,0.0005253562988126203,0.00251937749130877,0.004859096798393512,0.05935976441775998,-0.07903475926845792,2.439417704727194e-05,0.0023912644660014576,-0.03574049749901548,0.0977361509821878,-0.055697957307912015,0.00010863165588343732,0.005902733375407555,0.00978178773940554,0.054600735106842026,0.00876502141274073,5.042914013977344e-05,0.0028382962749739188,0.00293394147788344,0.0029805060709684156,-0.06799804345608038,0.0019199256408033631,0.003983179506628815,-0.029959133978811267,0.15613252546525014,-0.03653064309591638,0.00015790212636115902,0.02275739714105811,0.0713237134007595,0.37637815234041133,-0.008358074962661019,0.00029343895825123057,0.0043827558525587635,0.05960796720064489,0.38814641511375236,0.06222389459656151,4.325832388745394e-05,0.004851916831840171,-0.03595241233796907,0.173240430645319,0.03075622048622746,0.0003420310934742361,0.00014489382215215202,0.031715738473225605,0.4288889683594976,-0.006171472819961988,3.068740631218924e-05,0.011573558581907038,-0.01881196649923275,0.20700479613831868,0.03313654878936913,3.036235808543063e-05,0.005797566557774997,-0.004614033263453193,0.012903597196993643,0.0014119564687075817,0.00011518413876077002,0.014853878602961654,-0.04318474757207948,0.2949179542314765,0.023776552702341792,3.382373388905222e-05,0.007993424585951847,-0.0020461138653524785,0.005842214768444925,-0.006428943253075727,7.764789065916084e-05,0.012131708955738549,0.012646515382057888,0.04825108528087889,0.054208675005236656,0.00011984292108531324,0.0005302089815543412,-0.01958378836156115,0.021268615985717075,0.003893858585824061,0.0005262995983602998,0.009885338925199463,0.003661183181277104,0.01235604424565801,-0.005195045430613946,0.00012471767695910557,0.012691544692208212,0.1046984562504061,0.3500456311312785,0.17899635418110418,0.0019197063047486742,0.01315991005354702,-0.06171486335743732,0.5785430051344685,0.08908336064683349,2.7430663965194172e-05,0.021604296097151053,-0.019941694678598486,0.05202496382042156,-0.03343137631078323,0.0012532033453278547,0.03179895835694808,0.022604311479162954,0.20345671299569948,-0.025347839757873136,7.398520857450201e-05,0.004538253373936259,-0.027509918545711328,0.042608983335670585,0.022617867239015835,0.0001523819471940375,0.00781871610185935,0.05084065539096668,0.06245155987162099,0.1314911649931046,0.00046727415833756425,0.008914322533537427,0.03210896080465245,0.13166618204611877,-0.032256698683180866,0.001890176453620208,0.000879273908433936,-0.03790308899184686,0.1484590876692655,0.04249495782273448,8.191401026663551e-05,0.021123165449043177,-0.018710092077843247,0.031515414858113065,-0.021096256419194277,0.0014758087747022209,0.01676390588839862,0.02067526651596156,0.058370257705641596,-0.03699863489194298,0.00014033808381148105,3.415300211185397e-05,-0.00521289701703177,0.011618682711739471,-0.00036747529068448037,0.000181879030053114,0.024697382833549497,-0.0464407235290416,0.19249761061088994,0.02543208871551793,5.888267874813742e-05,0.02337935574095674,0.0017478757903299157,0.005471030505284044,-0.04584828307036688,0.0030280252245170674,0.05227549747193972,-0.02260502904982896,0.12480423433520565,0.014000894121022263,9.009824258873544e-05,0.0072401821873394005,-0.02248644717863692,0.12155304163912323,0.014435295073379921,0.00013415775949643228,0.002633005082061033,0.020204920642499197,0.12178535502403942,0.010657800768646862,7.847128804325708e-05,0.008869859287078275,0.025752128036646105,0.108887259994324,0.022413840868947304,5.944063610006652e-05,0.00012024119155672945,0.01763954393724554,0.03576198582181121,0.00044163050120698015,0.00024048894649747772,0.026448993739556306,0.01358459707292981,0.05745303839919547,-0.012823523845434927,5.879604804897585e-05,0.00022404621245736343,0.019607646618360057,0.18800807687365498,0.006195064755077414,2.690792754472439e-05,0.011477229255661423,0.037789347839644445,0.12966961525362478,0.3088215858931083,0.00010186855349138213,0.0035166858260831085,0.0005477065508648625,0.00227289114050717,-0.0020593570088306514,0.0003798370028740863,0.0015367444451051286,0.020420220248831875,0.11208416578056321,0.00507184761320095,0.00010434891895823679,0.0015985969852631626,0.0027757228501213023 +2019-07-29,-0.016246461184980597,0.09883730389924232,0.0030861040883263815,0.0001738298962998234,0.014471810815211712,-0.005848188395834984,0.01825123204372414,-0.018133770094811357,7.688465936817096e-05,0.02375248392674048,-0.04306662481936938,0.15903452653798544,0.047701505265897205,0.00012526986839436497,0.0181077419867369,-0.005374753043046856,0.005047766143235349,-0.0682871889383991,0.000359357856570699,0.009157198773429225,-0.007362815957877102,0.01688897927010645,0.0029121866650705886,0.00022810684335227812,0.0031143716118153175,-0.00892047847034681,0.032625573804807205,-0.012010233951814697,5.970032984270888e-05,0.008224565662959132,0.019814013495280683,0.07285634840450554,0.021646558212495268,7.97985333329018e-05,0.012705832490963687,-0.0349034352793197,0.2988486090954664,0.04085884807318747,4.0051201492186346e-05,0.012137969090727488,0.004938832032198366,0.0035805346839854627,-0.002178984208584018,0.0010637048950922347,0.0039147757257151534,0.05104397340297007,0.11414024557034591,0.04829615505738672,0.00015637508454489186,0.010355900393259662,0.013000205341136897,0.00848739628209597,0.011653799334213214,0.0007486866518119164,0.015339313094282797,-0.022929508522541907,0.3875536169582914,0.12486469385540916,1.7631357077751605e-05,0.003861747932656592,-0.03595049567294297,0.10119521209468042,-0.12691527701277042,0.00010553486417881538,0.0028429100836237084,0.03517009213737858,0.21694826686659438,0.14348259972095423,4.563301243143619e-05,0.0006438764740143251,0.004137236739667531,0.003274691366692315,0.0004291746630100235,0.0024641263360762385,0.004189882164308298,-0.024914602069841217,0.16329203448094318,0.0007710294658047576,0.00012555703832019878,0.0012886180909482776,0.0956559542028792,0.6194813158532338,0.048457212732584076,0.00023910685549106338,0.0340185774817673,0.009214607892024768,0.05827142852322296,-0.0028499470076168445,4.454327557235354e-05,0.0063930491737788355,-0.011130863180905825,0.05030754640192968,0.006130543655268821,0.0003646552877399301,0.0008840044374503796,0.01852013053145926,0.25903505326616855,-0.010296488832780388,2.9669876371570175e-05,0.02702731444074921,-0.013855941681597162,0.1689240184837528,0.004391407100157292,2.7404781998518952e-05,0.00839319179600291,-0.015324052960539408,0.038699529705344606,0.007651145558750102,0.00012755301035215043,0.01561253012642199,0.03952168384704652,0.2805266521881773,-0.00033303328817621373,3.254270781759041e-05,0.011276371191463217,-0.006891244990286375,0.019078670220544103,0.002816731735061039,8.008053591877379e-05,0.008775918100655753,0.008165233935623111,0.033764285706259,0.012678414129769272,0.00011057569073418628,0.0005809836151198645,0.012988661467859694,0.011824309885537159,-0.152855233218467,0.0006278619377538316,0.022091811961617008,0.029737118449470995,0.12145427864999893,-0.005253722883528994,0.00010305571312424494,0.011087575642070996,-0.029756331502646026,0.10196491547739196,0.003542716017610541,0.0018730432232381593,0.02241977677029497,0.04783929247460754,0.4160965977742942,0.037853549191782014,2.956465248389296e-05,0.008773064510334182,-0.06244559112196214,0.17332859780006252,0.06658504875989747,0.0011778848263593845,0.03383165781557614,0.005104395959411999,0.03553785846254579,-0.07701405456410332,9.564862828336381e-05,0.003080041358954953,0.03679946346102731,0.044322033805266864,0.06953736402870814,0.00019595989239411818,0.007563896185502676,0.029567689608971683,0.04265336779185376,0.031752165499796856,0.0003978945373049808,0.0030930631364519613,0.03325882728041978,0.12317730645366702,0.00038631906909289594,0.002092794425717206,0.009588067989320229,0.039916263914920015,0.14731145840790721,0.03369028362258018,8.693681525269837e-05,0.014184366866490146,-0.015899776548932865,0.02145377829168086,-0.07814835516159173,0.0018423172754223707,0.02015279148512287,-0.011232060993823777,0.038072931352433566,0.01157871710161113,0.00011688510569331765,0.012532958305624706,-0.01582023971503231,0.041515391851898356,-0.01058269034373276,0.00015447716638317748,0.03394944444450933,0.017888059895041213,0.07712712984704496,-0.16310931708550727,5.660698123804659e-05,0.004958197864202306,-0.0010655618275044714,0.0030686885374426906,-0.005724313622228127,0.0032911213879247628,0.013320577917284516,0.05590000673415758,0.29445497644394564,0.03281256806762582,9.443511910170116e-05,0.010074246332371913,-0.014970427778546711,0.07703605993464137,0.0038487409801065734,0.00014092918242789718,0.013410688864457284,-0.027117244534537857,0.15430938648258413,-0.01055276450488854,8.311930660973009e-05,0.008226055171600277,0.02643063800976839,0.11869810680079636,-0.03716281466837911,5.596432235375368e-05,0.008078877751779064,-0.015068301596455896,0.03109379811041352,-0.08263638077811383,0.0002362761707786954,0.011779671616559129,0.003429374902068543,0.012183563919265098,-0.07308072092237261,6.999306229415195e-05,0.0009733420224738592,0.014733753074053243,0.14407696635937178,0.0033155480278897827,2.6384575855552154e-05,0.009665534406938014,0.0010716580843085836,0.003017993382317055,0.0012483769559030451,0.0001241214744350409,0.0036537572775805346,0.04311244527872729,0.18559197387514734,0.29163427930316255,0.00036616045265141324,0.0024005011977675404,0.0340276784071534,0.17449263326846856,0.005065287319593904,0.00011169327340339258,0.0004639051501494861,0.006013232485884188 +2019-07-30,-0.030214738640084286,0.19672556097608374,-0.08126964570957701,0.0001624219175404955,0.007025143432103232,0.05085305746014308,0.1631286360315927,0.024841008412563433,7.479927543533607e-05,0.0057803187723104174,0.004627039728195547,0.013316272905159477,-0.11814446111973677,0.00016073769857473562,0.014020205996960246,-0.003819269728805879,0.004708141226737285,0.004288561121485157,0.00027377810013852477,0.0019304383794050868,0.0005842201898861412,0.0012481981270194057,-0.11109130781440608,0.0002449011403042205,0.004190379229830733,-0.002909610861510084,0.008015417848107451,-0.008776652776231799,7.92602580219235e-05,0.003976472919334773,0.04912370469899049,0.21863050428920583,0.12421884279012531,6.59280469908169e-05,0.022558036902381937,-0.010481300492377324,0.10112383318376868,0.0017412882768273446,3.554350590241543e-05,0.007673513778755061,-0.004469908969335794,0.003977048060340014,-0.004796007688367291,0.0008667275994260785,0.007574031960041692,0.011506182406771715,0.027605738638691917,-0.005361628086838438,0.0001457450350657481,0.0002208807608930015,0.015022486092325404,0.010555430714114737,0.006467819417569298,0.0006956490709966476,0.006603112365534031,0.003467332318609417,0.04654300908954242,-0.014252550167058219,2.220055334314984e-05,0.005058124908430236,-0.015267742692352529,0.04024461600824533,-0.03208025873056563,0.00011269848608667091,0.014369822273621024,-0.00733435503472191,0.04577776552353649,-0.10126654931104113,4.509923311788276e-05,0.006568206677270086,0.029153707256728063,0.022742153702818357,0.05829211470216609,0.0025002599872922197,0.0010713273205485852,-0.03229049444053963,0.25138264193953647,0.0020284430059118305,0.00010570402304711825,0.011922111337103808,-0.0003921059414434516,0.002163927924527343,-0.04276223985480548,0.00028058785152307807,0.012940709733364206,-0.024188365661006336,0.1297346921340248,0.02248320559239872,5.251838417341029e-05,0.014884151888890243,0.059206396955953595,0.25870565283700175,0.0020650276691049603,0.0003771807517058742,0.02584954079269234,-0.004403858545583709,0.05542148138242769,-0.00010999970557276863,3.297504994227536e-05,0.004315001090762032,0.006949273744151967,0.0702195817479928,0.026047306138917512,3.306457085632398e-05,0.011496512064095188,0.014609199840527014,0.04032722195646809,-0.01934770992645327,0.00011669463236124425,0.0013536164327726144,-0.04451261288758849,0.27746629276903007,-0.0518185012058032,3.705657124217687e-05,0.015615660241368632,-0.013325701508776834,0.035232974540534805,-0.030456023760733367,8.385291279925439e-05,0.005072170838901609,0.012823747826017612,0.048075290285617404,0.04576986553931928,0.00012196680562187548,0.0040446387504865676,0.02848348134616333,0.027617076931503087,-0.10020939511839662,0.00058950965283862,0.013820052331483004,0.02784857502249768,0.1044357428144811,0.0031582477199279028,0.00011223797609195499,0.008468667133473433,-0.01343607150768775,0.04678778680966795,-0.0060092986625601835,0.0018431427778175125,0.0319131745261598,-0.0012346769598907748,0.009839529306800819,-0.0005198714571145353,3.226719514520797e-05,0.0015753680942197303,-0.060789366980962954,0.18938326603481156,0.02787579359075326,0.0010494392151744446,0.004412370759407383,-0.0008006115311633405,0.00655500371507665,-0.0007805046446065497,8.133445145737122e-05,0.014326845319879352,0.002564823700011243,0.003909600200500041,-0.07863149393360906,0.0001548355054148739,0.008907999806145397,0.058626137792434294,0.0906197809667248,0.12388263140371414,0.0003713403907716462,0.0006424600149312556,-0.02347300313193381,0.08862287717170007,0.11063855648422774,0.0020529253259642093,0.003222727982941087,-0.00499306327536835,0.0209549226236461,-0.01516692007943756,7.644892425126073e-05,0.007737218184740409,0.10092907188039799,0.14084263644886125,0.19908505984762026,0.0017813912932724391,0.027921676527788278,0.01627557036485909,0.04473354567635687,0.0014067323430609093,0.0001441514219953448,0.01009574798342262,0.00041890753309631714,0.0009755287535845496,0.0003010569383968264,0.000174075828815175,0.005939087194172643,-0.012358312882178667,0.05745112432438536,-0.014574976958351983,5.250184663670861e-05,0.014370582660024923,0.008417709588420856,0.024566364933762942,-0.006334354905463981,0.003247664046293776,0.01876726089704031,-0.03756920821257952,0.18236734831385712,0.03247211842772129,0.00010247679390040477,0.026877286822537632,0.01788817275969313,0.10575109835702294,-0.042616177779703286,0.00012267099225175872,0.01022627654428923,-0.010128015760108737,0.05832502386819982,-0.10654360238398197,8.21330862012656e-05,0.002581439022771979,0.0038548236736018937,0.01980777203735836,0.0022460313017745046,4.8912097057361316e-05,0.0033368935376985754,0.06369734996652589,0.12117832256069135,0.034464332325368885,0.0002562865543445443,0.023785259215571657,0.010339638669708075,0.04409010747871197,-0.07393912709450443,5.831477180309862e-05,0.0009021946858456899,0.009693375638302514,0.08778909502225811,0.0002051623889676166,2.8488248975222657e-05,0.02865327075269926,0.019444926612918186,0.06818697306239081,0.04131994139886676,9.96813385462595e-05,0.0016089875360682162,-0.020966128193433832,0.09220180324027608,0.018247122040209358,0.00035843201434105753,0.0030747901528103694,0.011220792304604139,0.05825301957165305,-0.05689927809067818,0.0001103257472263151,0.009838578145537843,0.006642054492070938 +2019-07-31,0.019654036051076143,0.1319177812602043,0.029998605571364287,0.0001575560172342048,0.00829461762243022,0.06036986092361937,0.22629929785389163,0.06374756646433115,6.400995110877696e-05,0.017081594898900015,0.03368391642915851,0.10070317968231758,0.0426670315271611,0.00015473073985726695,0.02165219316317752,-0.02297543280325355,0.022220485407393367,0.08044682672978544,0.0003489619022412475,0.0003872491178372689,0.017736174801121413,0.045450464991476716,0.003270653568354718,0.00020418291605882354,0.0051791945150541085,-0.005122964850129332,0.014104462460819008,-0.04289010424857011,7.930701000502255e-05,0.005182658280990656,-0.0030989149041797844,0.01207924825786288,-0.011283509586727157,7.527653128825233e-05,0.024863885722092725,0.0036658313008153956,0.028084043382574402,-0.001418889668887432,4.4762203198946435e-05,0.0017293684561814722,0.00400416015854387,0.0036193041089250004,-0.024919316322708523,0.0008531613069309078,0.0065824396306955165,0.03813708386177319,0.08145984109004423,0.05223262729740021,0.00016370645708690775,0.017444029899371483,0.007625358640869101,0.006384055265888817,-0.023803577594365796,0.0005838321339970595,0.0036057022203201073,0.0204442188563949,0.3004272278422618,0.0904022966653362,2.0279349520491783e-05,0.00492326152167137,0.060886755119337874,0.17232671993807874,0.2258212724512319,0.00010495937733869978,0.013291921160388112,0.010889064209370325,0.06363582361653784,-0.025597464753909054,4.8167123083876616e-05,0.005825960546800568,0.04855406087767965,0.03913486013554961,0.10255065650845806,0.00241982937835746,0.016274663017802032,0.04466903850067633,0.2711508617125485,-0.0068157081931718355,0.00013556504520374963,0.01066413539146353,0.001226302253585842,0.006151857640585274,-0.01934018926015506,0.0003086735959319724,0.02123768635652634,0.0026725237371434487,0.01592386115214839,-0.009970156408675155,4.7275283854486015e-05,0.010810296959548406,0.0370063426544229,0.22402678738773943,-0.012490833041024427,0.0002722469495016806,0.024271875832073478,0.016470647344170836,0.19719724958119142,-0.04064878342165318,3.466091685160306e-05,0.03630201543836738,0.016583032454144928,0.20026476183740274,0.033691913857353484,2.7665665475064723e-05,0.013592757941946679,0.009651163489167074,0.02121722028958828,-0.0022194437246899,0.00014652574657555216,0.00785670040035987,0.014119050834438132,0.10772654755260809,-0.005682344400776499,3.027437152597369e-05,0.02673733409992317,0.0013035216657129064,0.004839893822709473,-0.0006501685933800674,5.971175035390366e-05,0.003960342827004368,0.004023449415068044,0.014416656354700616,-0.0009868256764813935,0.00012760937884350473,0.010567601047388383,0.007575820077859098,0.007837103379510164,-0.007469084930523326,0.000552522079422517,0.012135447808336381,-0.009471379606176712,0.0397584076301668,-0.01365023934235367,0.00010026982804665152,0.008190846930325995,-0.009815455540894111,0.038660481038576965,-0.022828886967165434,0.0016295300792586625,0.019837051022597696,0.024413162224345374,0.21808320833968584,0.006906635515533435,2.8786177872442526e-05,0.014621271431089383,-0.0019060829943404404,0.006466858333269304,-0.001056915711936284,0.0009636508954950157,0.012407340626861026,0.010467571978361396,0.08028459278624726,-0.027656327110416507,8.682392008085445e-05,0.00459516739856455,-0.005330004498698437,0.006512001519520618,-0.005800576425527895,0.0001931783572729215,0.01565514035332417,-0.015821063579562335,0.02167568912125936,-0.04539378594928105,0.0004189543229542178,0.02002276820476682,0.007366289884245085,0.027775048232546513,0.000594565916676191,0.0020556270547833944,0.02088642136377516,-0.019128761671653973,0.07406476789845591,0.00731689180244965,8.286393642259724e-05,0.009970325087442654,-0.0367956961673788,0.054300558888949496,-0.014061839942606175,0.0016844957373184774,0.011582566134988963,0.011587631560241866,0.03734588385319458,-0.027035776178413337,0.0001229328562526986,0.008491270664819448,-0.019453677357083497,0.04960120585978843,-0.001986815536662521,0.0001589900149000179,0.007731648003624053,-0.007051205839233547,0.03190827230125442,-0.03303581143987394,5.393541543745688e-05,0.005673454685711742,0.006035551025374444,0.020913934487558773,-0.037391008353948006,0.002735263943115091,0.022487113643639783,-0.011438125405796652,0.06084238548092051,0.0073181648235881875,9.351670388030298e-05,0.0056166533588426285,-0.05187638760902062,0.28674677470833837,0.15124741238286396,0.00013119943634271102,0.006382515318283495,-0.01304016670103528,0.07201108320120922,-0.025911011806282743,8.565101193193324e-05,0.010214177577684913,-0.005023391167165409,0.021413836158675686,-0.011694443756231689,5.8958973955947854e-05,0.005102007696024053,-0.010256663569199706,0.022036004893994574,-0.021623074851066394,0.00022693560737662983,0.006146301172874161,-0.00666589344761792,0.030838634581611797,-0.0022407296010581233,5.374989278585005e-05,0.003525806168137396,0.01165995934802034,0.1666934762617082,-0.028410915461008997,1.804719530233839e-05,0.01083221405846443,0.014881237849405477,0.04526023942694532,-0.06534650072203417,0.00011492940958299859,0.0028923935568131737,0.014477634262218077,0.056121901668169764,0.0275741663052637,0.00040662417353489583,0.004138522570180942,-0.01500076367852427,0.08227871693095282,-0.024515168021902033,0.00010442335792380767,0.005433965998761546,0.005684748584776774 +2019-08-01,0.008384595034202509,0.05216004430269676,-0.010323440091408722,0.00016999287692631132,0.018459291046569667,-0.047815672240460814,0.15766660993549172,0.04424096230713322,7.276810456416218e-05,0.005108853079772324,0.02423071623407463,0.06893650408778337,0.02031968546447447,0.00016259762601512578,0.01727493477505113,0.005822133501819845,0.006099206741126929,-0.0005270506775001358,0.000322163742180038,0.004468746757150777,-0.007212241986939667,0.018467391585477076,-0.015465348767305242,0.0002043442887338285,0.006009009151563549,0.00371282865162741,0.01121449548838966,-0.21512322772871328,7.228894824563857e-05,7.534269572545917e-05,0.00845942969129412,0.030375734328778665,0.012956737856796016,8.171544586485162e-05,0.010369747648165588,-0.061812512807022615,0.5594840506066129,0.12406483774149346,3.78867456999446e-05,0.010838065391812424,-0.01784229117838661,0.015983854264589835,0.025408449913304938,0.0008608230710434085,0.00035539043859856374,0.039169395187777616,0.08933186474600632,0.0472821935290364,0.00015332125037105385,0.020234059834605668,0.0026571051264565925,0.0017846212546481514,-0.038344217303781056,0.0007277580775487287,0.008334935277020344,0.008328831231190777,0.10295914735952102,0.009160845791019567,2.410693040076238e-05,0.0004882653284653094,0.07543613326150592,0.19469263932622263,0.210831817080384,0.00011510148433811646,0.03129790238065324,-0.016264598794677138,0.08776690415310641,0.005468716916720615,5.216442128181356e-05,0.011319827331860996,0.0018242134354522971,0.0015994353105978352,-0.013174441315322364,0.0022244976071024015,0.004632654412921289,-0.03555294905089072,0.23075655591108732,-0.0017822631531041438,0.00012678669756590534,0.01712173990872285,0.025758082861785003,0.1535921046640929,-0.012108382010676592,0.00025968859477366727,0.0427676458806961,-0.004007858783300313,0.021360776703961554,-0.021339456849310073,5.285137939397612e-05,0.0012680245142112293,-0.02087961316829285,0.10269780457516603,0.007685520439308613,0.0003350796832454977,0.006416927609081083,0.053001184361709905,0.6700928095693999,0.028273146088481516,3.282319462689779e-05,0.001520792058205823,-0.00774219447479416,0.07290502270133514,-0.03456253292628396,3.548038597106504e-05,0.005246548954257471,-0.011735862042917457,0.03387881885450387,0.014322100723451544,0.00011158594371042213,0.0016662236409100445,-0.01737541733365643,0.11065909631104788,-0.0020093315102700173,3.626941087442267e-05,0.005806876877224842,0.0007703384889498029,0.002149556519915782,-0.08428560553797604,7.945296538717096e-05,0.002516985509238477,0.016318913610006227,0.06717980204344161,-0.04628085191330765,0.00011107111181604155,5.542568068162392e-05,0.03973723431706426,0.03921123325023525,0.0145192124451166,0.0005792455378252176,0.0015126618160462646,-0.004021454664928636,0.013623134604646592,-0.007752004977144254,0.00012424878154314304,0.009308405298327539,-0.034787194549009616,0.11092800795668253,0.003470908425735643,0.0020127849047104954,0.003315409437128493,-0.03524473176417406,0.33589265990078665,0.024349840182700703,2.6982108940001487e-05,0.01755723092303304,0.02293844562690726,0.0718166241105867,-0.005074618694461909,0.0010442639100640375,0.015490929157289257,-0.03595787505981588,0.2569437434574772,0.08612322365783681,9.319264008288292e-05,0.004654895024681638,0.03504316656824818,0.04902298361435053,0.04803168473840188,0.00016871317159383462,0.0006168102059475136,0.016145630483759003,0.023774796818136403,0.0028303707956036346,0.00038980024568370714,0.0009411071862235334,0.027307159990809297,0.11611991024779682,0.014519790310159346,0.001822720946696838,0.02144932416408739,0.013929794388141327,0.05275906323139301,0.0033633195528959547,8.471064736350402e-05,0.004101380700172359,0.008503511881230925,0.012262839845969292,-0.03505269274679619,0.0017237904021619036,0.010967826508237676,-0.0313611198183242,0.10367972351771353,0.05069346634173418,0.00011984330237637116,0.002514129848679318,-0.0010489451601987238,0.002493192663345237,-0.009729267235732203,0.00017055219743765962,0.021074920706291207,0.009118461470102259,0.038556098074906085,-0.18138661659857466,5.7722138967936694e-05,0.01189970532789691,0.0521902257922914,0.15430225152341004,-0.054306718675575585,0.0032057892668957214,0.024181294356587207,-0.03590213165995393,0.17789910854341145,0.03447906837605741,0.00010038920941799612,0.018095380052280407,0.03692414339223759,0.22833501129526582,0.052495921088303955,0.00011727318087846482,0.00937260154728782,-0.027362500779042315,0.1507944915551095,0.0245642902819863,8.582602689659788e-05,0.009788042378386893,0.003093643155977677,0.014958375286137826,0.0007089990616165297,5.197963043857853e-05,0.009962694328015087,-0.034225731202430665,0.055547283611560375,-0.020261987326149415,0.00030041340202779454,0.01942539268934663,0.006298607347601404,0.02394062698007337,0.008442847197346528,6.542193593426539e-05,1e-06,0.005089503285802959,0.06010116990323776,-0.0877997413380294,2.1848607290206534e-05,0.011959894484888258,0.0039698192944807795,0.015007644661937396,-0.09224918088277687,9.246282632249284e-05,0.002202757563730764,-0.0035848817063224903,0.016580225246929092,-0.013949014245164298,0.0003408100351423442,0.0013079408944504005,-0.009573908387555025,0.04586004610988091,-0.015432630293744505,0.00011957119685167007,0.017271792116398215,0.0018134849522431695 +2019-08-02,0.05548762112198899,0.3637628389795741,0.1663748812581555,0.00016131113959120145,0.02618158893649536,-0.01017280701689501,0.03424333137224619,-0.014749347173178454,7.128125277399672e-05,0.030046280521711512,-0.004322856351641453,0.014074859886436902,-0.0018026583714892024,0.00014207704914376756,0.0013617303553690807,-0.013197652786762236,0.012575658775851633,0.02080975128652188,0.000354187972960692,0.009808621807964872,0.01975440349384568,0.044004100437868794,0.0003515241300990788,0.00023489217280630846,0.012774944365969643,-0.00796402544384559,0.02491330308528536,-0.006210051532237684,6.979881783976626e-05,0.005473877506852701,0.008729383340387063,0.03423268758030061,-0.027452760029640807,7.482253602896679e-05,0.0010421357511811353,-0.029725699078432536,0.25561877057528193,-0.0051024017255369624,3.9878420615573255e-05,0.015921987729346023,-0.0004381686437053256,0.00031412289172343187,4.8867299875498434e-05,0.0010756884243199928,0.004773057773450786,0.021805502416032324,0.05935815524548993,-0.007676226093881663,0.00012845398702670784,0.0029569400039180923,0.01829811201819358,0.013235074736815204,-0.07383011177309046,0.0006757783002652025,0.001789841599491489,0.012189771690552985,0.160021260776346,0.01651063538541334,2.270077442381916e-05,0.005461094276765818,0.038129035058693014,0.10789090128235192,0.04219538793252162,0.000104983737862707,0.016362183245269033,0.018863205601205683,0.10007150270232992,0.03740542811169787,5.305995720973706e-05,0.00927145597590274,0.001841149270208284,0.001714037366613086,-0.001866880983217011,0.002095036951212323,0.0038647829373605266,-0.028670200108623055,0.17593733960326044,-0.00016500699054179912,0.00013409877524645305,0.019743961264281264,0.022068424915238576,0.11100580126768289,-0.034332671659522244,0.0003078462682356141,0.01703668369612849,0.053195891390451965,0.3505753672785936,0.04766462274147,4.2742276452007464e-05,0.0013744333260364918,-0.0018994535404604567,0.010615992765286684,0.00012370088441674624,0.00029488648514730114,0.014415557678602108,-0.03305368672371348,0.48553521503215297,-0.0570717632788477,2.8250712396381787e-05,0.009924049026320828,0.010698316665138789,0.11296587667933534,0.039419473587698435,3.164097668341106e-05,0.005322086221934738,-0.011868545275075262,0.03402584825497107,0.007684389212304792,0.00011235988494006337,0.012488647487563087,0.048606668645936144,0.3385009664308501,0.06195433018941156,3.3168690049127246e-05,0.0016095421847230893,-0.005836360029865619,0.01675244173767001,-0.016048997927517,7.723983558287612e-05,0.002081679024914138,0.0020859682175267103,0.008203568815081616,-0.07713268340912594,0.0001162661943299165,0.006802422878052208,0.09896777715226629,0.10070352803590407,0.11527824076000687,0.0005617262140182218,0.01247290224153245,-0.009283835265055303,0.03985365599261718,0.006594612172249733,9.804947371841703e-05,0.002011037579113185,0.0708212588699757,0.2589004947489305,0.05424191913430535,0.0017556984937589775,0.007658849023114409,0.02463050095944784,0.23194384512835398,0.008388566285643342,2.730691181235761e-05,0.017882150687680107,-0.012477957140460579,0.03787363342489552,-0.0752093894586445,0.001077153973827889,0.01875354157275953,-4.57109167126928e-06,3.0084487551305757e-05,-0.005243094195621672,0.00010118192925719052,0.012202638638921365,0.005271370480582896,0.00651860842448907,-0.012683513410299566,0.0001908596103794249,0.005314967493555322,0.015286606156327492,0.023476371427182403,-0.0010421663873266382,0.0003737524243274137,0.0037859796494101763,0.03889800214554314,0.14454058640985487,0.038970501885498235,0.0020858728185497505,0.018917158887657687,-0.0288207186182043,0.11197092699262501,0.025314271141787224,8.258285673541178e-05,0.0161581655972354,0.04376605268877238,0.053211408210687615,0.02409329639133539,0.002044606881775594,0.01316995090473443,-0.02488850490974201,0.07529917701013214,0.02905678278229061,0.00013095576309955274,0.00020172486779772931,0.010560711944211196,0.028918796910689576,0.005457413556862547,0.00014803804858311805,0.007834054385249962,-0.006799265747115795,0.02468862239832756,-0.08580411169353548,6.721699351283404e-05,0.024141944415044036,-0.020383534506702043,0.05628272375467929,-0.03361469560609316,0.0034325940414522238,0.014538003742173195,0.07835096506455083,0.36142042645787936,0.11328945191523686,0.00010783809985161295,0.002938209987552386,0.013867998474750308,0.06920779646124488,-0.005724280774388985,0.0001453180454347816,0.0014797361524138243,-0.013795483998255208,0.08326513853709551,-0.014676289819288936,7.836505298211029e-05,0.02029615616989689,-0.06236976382922207,0.2718141072337107,0.06394027303201595,5.7669940249180096e-05,0.0161167389253973,-0.04762435805292751,0.08965940055518602,0.035014019018678996,0.000258977895767218,0.027803254267942702,0.014533295198993448,0.06865651879177286,0.02645169950091809,5.263767423718135e-05,0.007354829402582158,0.029212480035763922,0.31180472174254475,-0.045615831412006494,2.4172247175859606e-05,0.0025006320011907016,0.002462239233500021,0.00873233594876481,-0.015595690507456567,9.856183402795969e-05,0.009614012327821678,-0.0024676955995093404,0.009975953610444665,-0.0026844306216234756,0.00038991068497901425,0.001358607027099157,0.025865020075059756,0.1308682743400364,-0.02343659775705019,0.00011320099392990099,0.033238209556390966,0.007956682393723255 +2019-08-05,0.010025652609475754,0.06107863030272231,0.0018913746524882162,0.00017358410186059413,0.014143213906019185,-0.029763577164598067,0.10919277240620041,-0.05160875024788634,6.540361596949517e-05,0.01116202933475744,-0.054831640506798035,0.1834626354066523,0.028561649057497477,0.00013825499041930246,0.004119394361965428,-0.009816986814872666,0.011138766613953662,-0.014368522497334418,0.00029744656611518157,0.0029229293297299503,-0.07164432057331806,0.1653373435366017,0.0813689735409441,0.00022672978970391668,0.004141893238444827,-0.006866143754332859,0.01956483841409408,-0.10419019628479567,7.662727230388742e-05,0.0012231327060580229,-0.07376437672859425,0.281391872639193,0.031710287665320795,7.691746856698485e-05,0.026861190051035006,-0.031811788422262066,0.26514354690524944,0.008400954704610695,4.11439172785365e-05,0.027599657531830413,0.02353809742545845,0.019619410098404174,0.012585902106528895,0.0009251884395349856,0.011002470770387032,-0.050713373747132695,0.1547071453459472,0.10325358649635297,0.0001146235928189947,0.002742783046297849,-0.002028519154000087,0.0013233186341235327,-0.08788471444702124,0.0007492712056704209,0.0010527178550253369,-0.007507104841891324,0.08363124972438865,0.010000510970668152,2.6750178474811583e-05,0.004116585423048184,0.02093888697126374,0.06012752832425607,-0.012105176007405993,0.00010345018671777001,0.0014793995231926983,-0.003185984788546059,0.01847250242237996,-0.03231773990164236,4.8548943573381325e-05,0.0011035591054198248,0.009433924416656896,0.008430258495500232,-0.04198193682637481,0.0021826016212498902,0.01311346608441884,-0.0017274949197709983,0.011369806228909032,0.0018800380829038738,0.00012503045838922503,0.014494963895097917,-0.08617922188489678,0.48060926279962135,0.11573429153441032,0.0002776634168790164,0.00012117632220258576,0.08722028294018375,0.6265612461306855,0.12186373229070772,3.921163195455156e-05,0.012865496593367505,0.01599829886377697,0.09050314673277744,-0.015139994595205796,0.00029133786510231614,0.001024584335164678,-0.07821426860061785,1.0012820246667042,0.15359254476599202,3.241602809588969e-05,0.024257250754452273,0.006560534606571955,0.0710854805017432,0.00585104560276639,3.0834721940106624e-05,0.005422317621212104,0.017333662485518847,0.05306319959382156,-0.017691965049472666,0.00010522517538127382,0.007275404694365338,0.025153572341902145,0.1600573528954482,-0.004984483726052446,3.6300818614682214e-05,0.014701344185452209,-0.014992637220284445,0.050401312752773965,0.02977105087661479,6.594981270256489e-05,0.005286478583554384,0.005422030653667832,0.01732452794388711,0.00013193470468195022,0.0001431031370530278,0.00205444612347134,0.029994038418457058,0.024663053709987844,0.0016069163901041138,0.0006951261972386741,0.0038570333561191773,-0.004961990118046754,0.019108582900674225,-0.06511645998220665,0.00010929830407613268,0.0051884472179496675,-0.012640860464014437,0.042467081152819164,-0.06718266539984065,0.001910483978487907,0.008201871544824775,-0.00037995010440366734,0.0034619368900478675,0.0004804155516612586,2.8222118879594013e-05,0.010660921017718122,0.009169114295134352,0.02790254566206186,0.0020383207473465043,0.00107437236428632,0.008207181824912334,0.013123530247576407,0.06794506795604528,-0.006376557343963118,0.00012862292525491124,0.0019463150870678684,-0.019435051322710038,0.02318987060601323,-0.03111416328745262,0.00019780294472315372,0.008227478734849906,0.023158858527060372,0.03140998594846325,0.005238491114255794,0.00042320746670941795,0.010340289276822963,0.024356198378751474,0.09852992178142478,-0.01553945028798671,0.0019159832401669486,0.010206936724873349,0.003407951988757548,0.012954903719471103,-0.1092505206227123,8.440139961796796e-05,0.021768644815799685,-0.019051842540240057,0.024143746726685567,-0.001369181896411976,0.0019615957355252414,0.04009618329763918,0.008923905639657405,0.033010965158151176,-0.035328141813372044,0.00010710574928265171,0.0259164176653957,-0.01523698985391449,0.0336462456272229,-0.01932846845561293,0.00018357897614189583,0.0014336000967762762,-0.03811913420310932,0.1809485961425598,0.010999604800693548,5.14164082152869e-05,0.006361287521365668,0.0009004957209932286,0.002640477686625576,-0.005947037136472216,0.0032323412873425266,0.01625890145278161,-0.0016974489464628715,0.010216668355423057,-0.01599428293854821,8.264717166471513e-05,0.010694385445515117,-0.006914574622242161,0.03688020067057734,-0.0008525339172898981,0.00013596683142382725,0.003131403194252044,0.020489484322872106,0.1102112636565172,-0.014486646856351221,8.793337556251147e-05,0.002817549034972759,-0.06521143227387254,0.3581957997436679,0.06728063515309748,4.575627325382964e-05,0.016250180296223188,0.0020012907441365906,0.004393546714367307,-0.019987215167950427,0.00022208761102684277,0.02516844250322851,0.014667778227976293,0.052847334657283834,0.011072707195577116,6.901692761707105e-05,0.0014573592451602637,0.008629688047216926,0.09976971754600915,-0.07037944949091954,2.2316579973999207e-05,0.007232910665965457,-0.005985627052883672,0.020869774382724162,-0.010724204612941443,0.00010025380489092534,0.002677732146739209,-0.01355245820425819,0.05892674867881659,-0.0045591505906029325,0.0003625213329938467,0.0008966889327417704,0.03609683982412211,0.1531690341350633,0.006095710735024683,0.00013498018049791543,0.008285026543615267,-0.0060374182454834635 +2019-08-06,0.009273083028267756,0.05820440521210831,0.0040418787723917075,0.00016848253049130607,0.022200325639339324,0.028517924807056262,0.09268835462225006,0.011562823606744916,7.382496902342544e-05,0.02619995773902564,0.020504912076942442,0.06371874134959622,0.018791798567757163,0.00014886339776449672,0.0003577264306325351,-0.012176001576086774,0.012663595910023173,-0.00149341524962799,0.0003245006029000383,0.010457245890263839,-0.001581936730797011,0.00386771774500554,-0.06617025553803647,0.00021400903529202083,0.00572011705532104,-0.026849325676338423,0.07306794043355336,0.08071044019389122,8.0233041628216e-05,0.002015446454994464,0.028213234558434143,0.10148805482511256,0.036756068654386846,8.156950109666493e-05,0.005211947439344082,-0.0158340174407691,0.13512633197092921,-0.06020789620729923,4.018368359422029e-05,0.02811592733994248,0.005358533481207472,0.005178830720875489,0.0024297678562294816,0.0007979193914855693,0.0026666919433195164,-0.006200484505418947,0.016215764660562407,-0.018077018334018268,0.00013370574867459435,0.0065112233411947235,-0.00964926833031424,0.006568051331980038,-0.10835983940431404,0.0007180954972376486,0.003298573857147171,-0.0002532013040257615,0.0034604530445623023,-0.008251737935116146,2.1804983724784472e-05,0.0038050642184987195,-0.06228439922410672,0.173875978211829,0.040208441512347176,0.00010641203075234174,0.013155398335252434,-0.0014798663893652246,0.009284379048128504,-0.000612495151751306,4.4867457707324145e-05,0.018326589059981243,0.034919533798040754,0.02910818870931078,-0.061865580674786744,0.002339786482830617,0.007868433359983351,0.03750325109692041,0.22372964176525326,-0.044189214185493875,0.00013794231117974243,0.004903954506916895,-0.010338269023300336,0.05725790681023858,-0.04806543070737389,0.0002795893302644975,0.016849685041514146,0.00986665166257245,0.05414699247542471,-0.01969058996102187,5.132824468701131e-05,0.0014954013147475001,0.021735193986345318,0.12154314646379434,-0.03748512121761442,0.0002947269522098496,0.02426998419665166,0.038334681783203,0.5122914432706941,0.004652803961498804,3.105310214127598e-05,0.010218525057338366,0.028093549930035502,0.3260901768488949,0.11475300592198123,2.8783964696583774e-05,0.0006342747090523494,-0.018550859328432607,0.045815156874761793,0.019922114331658268,0.00013043003475934044,0.030755429209451398,0.03924888519665624,0.29798899414036634,-0.008491333337459519,3.0424221738738613e-05,0.008642876063014077,-0.03279099798695582,0.09901806576603207,0.1479414440484011,7.342054066963889e-05,0.005556817567241367,-0.016773067690053416,0.060133617352943064,0.06551033174315396,0.0001275392226143636,0.006334066805142363,-0.06666620078389587,0.0780501534106486,0.06131167087947495,0.0004882109392471591,0.01342746074862013,0.0040570249888555385,0.016632928663987905,-0.030829551471705734,0.00010266560408275929,0.010573031681394965,-0.07430933521368743,0.26763704932692667,0.05124001353899781,0.0017820353611715566,0.04484049832503399,-0.002002574500402112,0.01733007792260443,0.0006791206561810167,2.971463237709998e-05,0.008013368266734964,0.021560609345892223,0.060416555220593124,-0.03526334756487377,0.0011667460548800302,0.026985921347782906,0.004750848909470365,0.03905402380408104,-0.013804090041853137,8.100859043721402e-05,0.0028556351780298986,-0.016351832134489395,0.02341002317340977,-0.00854013353944677,0.00016485797567622977,0.007207932187507637,-0.011250422690903976,0.01884188437891453,0.00990609607850057,0.0003427270785745794,0.00573681574889626,-0.008502584883709358,0.03533114928495519,0.02752317534083774,0.0018652779342437505,0.0021489457660968142,0.008929040126973408,0.029693012452301954,-0.01894026813609341,9.648079750788007e-05,0.013527742960403575,0.004868934293954248,0.0058621286391388056,-0.04999058874845813,0.0020646943112781237,0.03465366508230789,0.026027672909063954,0.08991840947875958,0.005135586083724476,0.00011468398111105561,0.00018636703626211993,0.02461375485865074,0.061979081958528984,0.025111339515544895,0.0001609878527737551,0.01237728090181585,0.015249262866887929,0.06815496285280956,0.012356370460284647,5.460913412346983e-05,0.011456899965893061,-0.05640061460381749,0.19922263368182058,0.0071126718262304114,0.0026832628474259676,0.002146527594370486,-0.012074598503650108,0.07281697871811552,-0.004309450763463504,8.248607031274111e-05,0.023042190194652284,-0.04149203584957902,0.22962505527038782,0.02820849429632202,0.0001310407152825829,0.0077693990987350615,0.0031739071561207384,0.015818174234304157,-0.00015377973293946508,9.490444687337555e-05,0.0023048068492611813,-0.06903182678231212,0.2973980837095673,0.0663739757290907,5.833894825512069e-05,0.009087671814543568,-0.008398638474934888,0.014254247535503542,-0.023224461224061934,0.0002872724543557056,0.0069162829937961905,-0.012625486593971672,0.04794070169037479,0.01594885274575675,6.548745523973797e-05,0.0011001215077547514,0.032791078894224904,0.34035789627056723,-0.08941879819457027,2.4857140146466968e-05,0.0013500990995731156,-0.020440806154978872,0.066511869267044,0.06935685768289354,0.00010742561056958844,0.008445399325136806,0.005747704764061944,0.02293736648024602,-0.007079221952819682,0.0003949834232835976,0.011945978910941915,0.02144836200203628,0.0970137070756725,1.6920186479712288e-05,0.0001266288978452718,0.011832488915508824,-0.0026763092941412933 +2019-08-07,-0.0035756962626719226,0.021131765358344604,-0.04104527615713363,0.00017894164469837127,0.014853759501173153,0.00829802250697463,0.02754713488303852,-0.028632325022099846,7.227842818026355e-05,0.028803515960216297,0.0037255880503429977,0.013159481384584414,0.0034299362457381986,0.00013096440144175255,0.004119845886758169,-0.010105411043753417,0.010540983596932429,-0.030344877456329366,0.0003235494770355715,0.009674076801944743,-0.002318215697274413,0.005164069182394654,-0.037501877960861955,0.00023488731457162542,0.012610033760042076,-0.0005771873434691923,0.0015380726409013684,-0.0019235397884535248,8.193825148532192e-05,0.001071244113929418,0.03939990458836909,0.14458249489557734,0.051153147818169466,7.995936025647417e-05,0.0020883401563193153,0.0061211009163644435,0.04577503171859659,0.005583931375664974,4.5856351763356456e-05,7.769628224770344e-05,0.006428875489730439,0.005446078911678504,0.003364744988224883,0.0009103237459467498,0.005005739070808507,-0.029812493628850186,0.06953005042796043,0.00743594929201434,0.0001499296908859666,0.02201198525091455,-0.026534252804037147,0.021004367248104845,0.05775875361710457,0.0006174781833175065,0.01036345221128909,0.007336335560047314,0.09628289007573462,-0.04205640685990841,2.2706639194819682e-05,0.0049155601296447995,0.08642984900407401,0.22558748592892014,0.1502754722714441,0.00011381507473053577,0.002724603931529953,0.016321845862088322,0.09607985672422709,0.029589789357881334,4.781880774723201e-05,3.4336742389924774e-05,0.018573810923033753,0.01618092736685708,-0.009165637074786865,0.002238827250331358,0.0018644772882619668,-0.010319498954459824,0.07273420893437998,-0.010203981429998813,0.00011675406208495973,0.010115208807991822,-0.03294276185001651,0.1669563506193967,0.006522622126492199,0.00030553804494544824,0.0018920868879278112,0.026129272954123046,0.15949381952534095,-0.0072758725873397915,4.6147100960282564e-05,0.02041192721671347,0.016489280822437846,0.09330619656646212,-0.010044740603791758,0.00029125811545407503,0.013526778520116071,0.02501236593082596,0.358824547766599,0.01324801007571062,2.8926964250953996e-05,0.009423701426093762,-0.012906009799282685,0.13571673303055026,-0.04935632880632456,3.1771689003990206e-05,0.0070843584181527405,-0.039308244980593356,0.1199763516968288,0.05956639258515406,0.00010553846135295438,0.008459051203709723,-0.07645279972395604,0.5552831760551653,0.10255212533088474,3.1803231804262295e-05,0.009765472043396659,-0.00472894594181614,0.01328661409869253,-0.08294992795006334,7.890915820572464e-05,0.008924612770732657,0.0040811862779849654,0.013638389284074317,-0.026526516237324754,0.00013682703968744561,0.0024555038905749666,0.030555364631829333,0.027415174853990212,-0.06978947996719684,0.0006370477878460676,0.013072622737721813,0.004743077376161519,0.016955337703502632,-0.02071473716982118,0.00011774426811044388,0.0020866831204483438,0.021719337367194145,0.0831574507936731,-0.020849381040650507,0.0016763495356501056,0.036702590254043745,-0.03759984686628384,0.3020904744295197,0.018311525993130653,3.20059881582148e-05,0.0076452058744963525,-0.07136654044045225,0.164942535597995,0.0862834022718594,0.0014145986773824162,0.02554472908032452,-0.024851020455935,0.1951182049124757,0.0013064198180013822,8.481488513768462e-05,0.0021600087547296344,0.013482775874183138,0.01745252270821543,0.009078950577785199,0.00018233350889252503,0.001690805691257376,-0.024879075431344606,0.035813392918052085,0.02354562375454985,0.00039874264297008044,0.010043914184701483,0.011755233766075327,0.05250316907475914,-0.012670915213648123,0.0017353860141963234,0.0007323432096543944,-0.001328358660798576,0.005099539543770606,-0.001091681089236288,8.357468690250742e-05,0.0029920362320159243,-0.017605205991357998,0.025618757528954733,0.008688030929527874,0.0017082846537456878,0.021967872630586797,0.018313010993525818,0.054293535960440474,-0.005454105258982057,0.00013363729177592667,0.022213178896440103,-0.03958018378370911,0.11510554902599356,0.028425025849290835,0.0001393933071133139,0.0040263164975949265,0.019542020620334114,0.07092810449206693,-0.06767205152847502,6.724578047047962e-05,0.007492415547428185,-0.029151642949085746,0.08962743883705597,0.007760391398912829,0.003082762785754806,0.0126737263567106,0.07149031158075772,0.35887456065731055,0.025522816444451528,9.909348145381075e-05,0.006796902193156956,0.0026368034342461794,0.013293737071894263,-0.006955789620422506,0.00014384390188778773,0.002339648645214179,0.004833354850912054,0.02582253681309867,-0.0016044557156594584,8.853163288316743e-05,0.00431808135379878,0.03378098240050046,0.14544740880791418,0.04327161477707592,5.837322417115914e-05,0.003954049833029449,0.02263820255114245,0.042522748368804396,-0.03334509494565422,0.0002595673175332365,0.009198170281020174,0.021499223715085128,0.10780121220829768,0.06078972865422523,4.959221547227845e-05,0.0014119754561318573,0.0053787329867329495,0.06443194333444059,-0.05454921722691738,2.1538231497569205e-05,0.013286323615719521,0.006314348046609816,0.018276929954438345,-0.0660501333220183,0.00012076309464871632,0.0011480332395314063,-0.0006898999914428886,0.0026371546119677543,-0.0039648293642886795,0.0004123618866713283,0.002004014851044099,-0.020856322553577326,0.12100072827364279,0.013786556099856519,9.872372794251273e-05,0.006863220625800311,0.0014524009005732258 +2019-08-08,0.019213133342660615,0.12754917416769848,0.023304175300693168,0.00015929682862633027,0.009325547655101608,-0.018301788784314765,0.06210135144794477,-0.03942972313459413,7.071361084665077e-05,0.0027583941184467593,0.011917894029810323,0.03922072572429975,0.009327124129483085,0.00014056626282372395,0.006205907493687157,-0.014548516868497625,0.014619606515168563,0.020132232963143558,0.00033585428563736046,0.0012513897065293666,-0.003201060452642506,0.007068755129380699,-0.028899821154001443,0.00023694563406623085,0.01869230016446227,0.0014170989137482484,0.004791308685857397,0.0030381726111406936,6.457921375851758e-05,0.0005999963153352601,0.05841176023813047,0.23776910240898688,0.0839756907597895,7.208331165372906e-05,0.0039472113411706915,0.024387830927342025,0.19988606364959977,0.010868337542409703,4.183976865410477e-05,0.007693328845578246,0.006565767731035881,0.005922187345070086,-0.04028234913972208,0.000854964652813663,0.007461029311552587,0.07990674808755828,0.18206631632967502,0.1824168672292938,0.00015346725947372258,0.020698128583196643,0.007637865046724294,0.005233029255967677,0.0002548401533918277,0.0007134165436011658,0.003420494918848682,0.005880024160245031,0.07869768492682333,-0.00616941070387364,2.226588405223109e-05,0.005855738819946745,0.012808419777840986,0.03742823651204327,-0.002780489655092533,0.00010165932581957215,0.012010630008404726,0.015525060463485065,0.08652232177740111,0.025630833806943337,5.0508788723619705e-05,0.007347667797725888,0.009483815808325018,0.008922736045989256,-0.008010341422658296,0.0020730416964534165,0.008102301175241595,-0.0078017514356626015,0.04908244373511733,-0.07918670244895089,0.0001308031009417555,0.009736489661795572,0.014369814986477061,0.08603829755951956,-0.008792874120681292,0.0002586232708942102,0.023025908619756216,0.066232633826604,0.3934314976187546,0.04714421618361676,4.742025178869686e-05,0.03122458209683557,-0.02957140288334655,0.16184200065048124,0.00245409837127753,0.00030113934205273045,0.0203821659761209,0.11088448196272357,1.2732340775191973,0.20418931490837844,3.614038288442976e-05,0.0008403050648872461,0.026821957942489545,0.29290013640975615,0.08349450239286003,3.05951518002126e-05,0.0007323423062453004,-0.037088606519948726,0.1042892178532961,0.04192262680252915,0.00011455758823849813,0.009371851735026825,-0.021945497385176822,0.15286462959293093,0.005588769603951708,3.3161242626267035e-05,0.016667734191485192,-0.0002607302220974774,0.0008354256481218443,0.0002265108776297662,6.919280752505743e-05,0.009782107551596558,0.006494715943055437,0.024368146866993665,0.010722079482705413,0.0001218670373560897,0.0006795095396432224,0.03915242188080562,0.03882419488001844,-0.054323134794799714,0.0005764103027889316,0.030434026581333252,0.019851733183662446,0.0707008150660431,0.017141353034260454,0.00011818436279301204,0.009827936492915282,0.019243481199285917,0.07161842703451703,-0.0016464501986076597,0.0017245589181395522,0.009516050449421063,-6.145150350872554e-05,0.0005380449957320114,-0.0007384157068208191,2.9369470173020844e-05,0.009502649436279731,-0.019918235300906882,0.0519474278247901,-0.0336555191700805,0.0012535973920281035,0.008502936115146095,-0.011362895352454348,0.07158216957080263,-0.03010478259170761,0.00010570847147648177,0.011490913133348546,-0.008483472349499643,0.010468353254355342,-0.024422761454062712,0.0001912672727938302,0.0020461854836540372,-0.008982315474813566,0.01369016954565374,0.0003054569390270342,0.00037660266705663223,0.0034887764225332327,-0.002350076251365403,0.010875251705613025,-0.017055275565467955,0.0016749157926639684,0.014201135031204778,0.012223803065039547,0.06105834424023082,-0.11276699036998004,6.423203651629173e-05,0.011404504177736564,0.06441420088660886,0.09520210406969831,0.052368458583422386,0.0016819468517502991,0.021146886494807674,0.016496278743775055,0.06213982400901841,-0.0461204782471689,0.00010517971846992993,0.008417952564743682,0.03428036518301687,0.08708054322297176,0.04159886921768765,0.00015958228756264968,0.011024622536308933,-0.02973491442671839,0.12195782862237553,-0.015362451717187727,5.950739439859268e-05,0.004863718116047308,0.003742497250696023,0.013398528138639081,-0.0002254385348152819,0.0026474176216070436,0.05555766708940113,0.023435199933501388,0.14044631037238864,-0.01156198629451206,8.300397658926278e-05,0.005792667375789839,0.011879380188530263,0.07483231970939724,0.004833776862059148,0.00011512386409337562,0.005201968906498582,0.03695742766236295,0.22399935554427905,0.009818793340567063,7.803755704406262e-05,0.014287463407752887,-0.001870910111260386,0.008813934410799197,-0.014293105291880312,5.334951832163095e-05,0.0031606675036417,-0.02359487967127128,0.041866345634096025,-0.013604752790666716,0.00027477809382468255,0.010790552272276446,0.021910902627655913,0.08667322864800023,0.05612441511681425,6.286221360813234e-05,0.007178945746384001,-0.020079067553375088,0.2601448117908609,0.012012628631899011,1.9914052941735654e-05,0.007505081228666222,0.019738120005393104,0.058514428774016775,0.0336492203064304,0.00011791030965328263,0.007092419782064229,-0.005202661110867895,0.022900164420181196,-0.0010946945246195483,0.0003581087299000518,0.004230620363506576,0.038053954541294954,0.19426547565698643,-0.008075673884766873,0.00011219563611679745,0.010519544316330991,0.010882974477635745 +2019-08-09,0.014772359671484485,0.09285316826885728,-0.03250184437172909,0.00016824405612996413,0.00911984535233676,0.0021312840224110502,0.00722894153191212,-0.002589970460937334,7.074196899979725e-05,0.01015727557131234,0.05647387201527708,0.1916203725137335,0.1131039303981759,0.00013633365867109194,0.009143154802559937,0.004613263830545356,0.005376053913220896,-0.0016588578746471981,0.000289609319657459,0.002227732187103956,-0.021181060020382416,0.05127530869894973,0.01271463667655006,0.00021614101146958113,0.0038004903756263106,-0.00240424830656032,0.007707952342550148,0.0030311260671862027,6.810626091553072e-05,0.010925574706504713,-0.014028622171188679,0.051595095845483066,-0.02396244949610394,7.978044424805903e-05,0.04169371439170235,-0.015782949858382935,0.1324586646116804,-0.00943560247204385,4.086075800197648e-05,0.0366129667439325,-0.009083370540115671,0.0072730374239765826,-0.07729338092381113,0.0009631102284364984,0.007955400367798985,-0.02740249182197772,0.0654832030215987,-0.004048444971293937,0.0001463261779758155,0.021118740287145006,0.012247118061056397,0.008355585317080525,-0.009691212307654285,0.0007164425724905868,0.0006792998409557568,0.010038592229474574,0.12350720246161256,-0.08746647483323078,2.422162734556933e-05,0.0019729080334448374,-0.03526350653469109,0.09068405554055019,0.015391362471657613,0.00011551691952897797,0.002701263269891332,-0.01320698000999458,0.08502386622198659,0.024071126353260582,4.3724463504098035e-05,0.008777640414523873,0.018502426229357286,0.016093871014957493,0.006487011922197445,0.002242286682545819,0.0005401308808212553,-0.01422331776684764,0.09036582611768543,-0.10665763311463236,0.00012952356737385755,0.03383186132762303,0.015740147180497866,0.1001706590488893,-0.008964975080759972,0.00024331926156383703,0.015162270236867252,0.016826911228577553,0.11376515353071208,-0.014970639955665825,4.166353373728025e-05,0.011586136269924129,-0.006810785280176443,0.038311579277578056,-0.03675525033198288,0.00029299077152142,0.018726477258940423,0.0050208953571858304,0.06602525248990908,-0.00035909859669134604,3.155740843129526e-05,0.010995804470697855,0.012334184609184236,0.1520002469812022,0.00543733737342003,2.7111145002097936e-05,0.019100205149413987,-0.033633191956042544,0.12049096849600191,-0.05500021453271186,8.991586913309569e-05,0.005843668922215802,-0.007742429516567582,0.04823721153149028,-0.04081256441267533,3.7075536322609506e-05,0.01577328303233909,0.021583816497753042,0.06111931453993269,0.03643099247661472,7.829375949026909e-05,0.008880896256117803,0.004369747702573953,0.01786468146097492,-0.013955524530417915,0.00011184322499830832,0.008127357618448395,-0.02581961898479133,0.023804666485460892,0.028555760474156398,0.0006199594572353395,0.009063002032514915,-0.013338658396134868,0.04310555362550191,-0.039829509996510706,0.00013024616123732396,0.002228711190446764,0.03536318934450121,0.10919185731161347,0.006146971526061221,0.00207864510939795,0.0016495599044890105,0.026108563906296785,0.3023698215634949,0.0066348081050000215,2.2203770812726202e-05,0.01928650183585382,0.02521573541512946,0.07307543472239338,0.020710374751954648,0.0011281620876393802,0.002112307753761077,0.010956416109034925,0.08209439167079223,-0.015995629495094657,8.887521656205307e-05,0.008013643458870474,-0.03192176360860993,0.04048035405603912,0.050528634855808816,0.00018611782176255305,0.0055730904760797825,-0.01766137524679236,0.027781983953858717,-0.012952163629325681,0.0003648927005344549,0.021318307492494536,-0.04860388801016576,0.21941383142768006,0.2386648207929944,0.0017169488274593342,0.012397754062027056,0.012546990707447893,0.047644172989055246,0.002052097085277464,8.449288784431874e-05,0.0018434413307030345,-0.012789115634637051,0.022311714956124926,-0.014246981586940275,0.001424901202478408,0.028478759831763005,0.006751928204032992,0.02406734189737288,-0.006113983430102622,0.00011115160151989762,0.0334949147092103,-0.044240787773627756,0.14619786443212046,0.04665792085847377,0.00012267108286114295,0.001654342758663715,-0.03267967777929992,0.14065106931150384,0.018053106259599862,5.670856432441381e-05,0.008355282356676602,0.018275284921134873,0.06449722181070498,0.002110798099532125,0.0026855992472722824,0.03127857562552902,0.008866744981442628,0.04830149240112212,-0.013352331636536733,9.13154447923554e-05,0.015834209138146517,0.01991200259966337,0.1194449945128119,0.000702974004424437,0.00012089484140521628,0.017217570457839636,-0.012128724536270424,0.07675442363366868,-0.01097824640473018,7.474126026407526e-05,0.005096220211357583,0.024219491158285356,0.1081931923158786,-0.03408363796900711,5.626165124625578e-05,0.013053939681015944,0.097932246339634,0.2006704139934413,0.10644413304682745,0.00023794235945165067,0.0011650258251743,0.028605039146958867,0.10864202115023171,0.07714033117543033,6.547252434451343e-05,0.00033741480416780116,-0.0018481187972761556,0.019112893131213768,0.005535897466682666,2.494794272132022e-05,0.003757744366006217,0.0070663605443039455,0.02402044825635646,0.0012690256278930952,0.0001028309029552076,0.005738311921713163,0.027686974844649378,0.12783492787514442,0.016217560733308992,0.0003413924766986893,0.00011152211746281743,-0.003242613603774791,0.015365375132236996,0.0019509261015915361,0.00012087147690985426,0.007109990834855034,0.002251646735132391 +2019-08-12,0.02928931877230979,0.20783055634937084,0.03679032744039824,0.00014903437631145472,0.0037405097484791436,-0.01371605547346202,0.04662227160939551,-0.07923426986606273,7.059051158989728e-05,0.00757121084216784,-0.02489877885118631,0.09607148033201357,0.009975710027270566,0.00011988939530105689,0.01407991646090003,-0.0024931729927398826,0.002455173732510486,0.0002503571051950656,0.0003427188888162513,0.0014496536768898454,0.0222766116941939,0.05290665620656153,0.010648885152698488,0.00022031120849459252,0.015288732304213695,0.027569830554501466,0.06624949195190202,0.14895683851037733,9.086534598933205e-05,0.007649771047705703,-0.03624406176250638,0.1374921980474299,0.003935584474091078,7.734792403846955e-05,0.02666465908889741,-0.01098773447358036,0.09621614679209635,-0.001169056457211904,3.916145415509579e-05,0.021010289003642536,0.02758598017735389,0.023798731203268756,0.053173113277739596,0.0008938803751069175,0.00430981328037094,-0.04109459885965829,0.09601156803586156,0.03849536046660637,0.00014966597159003062,0.003978037571260674,-0.029463937787633645,0.019421383712814887,0.16631353022987133,0.0007415406756050765,0.006321597058829102,-0.013019178370802144,0.1896760023572606,0.058024493374585984,2.045474071623435e-05,0.0005007012338932476,0.08675557686444094,0.2630035115744122,0.09666968019942401,9.79911586041951e-05,0.010752636458778898,-0.0017647637768343502,0.009542346262652868,-0.06726862380144524,5.205868906334378e-05,0.0023980379115581957,0.009920472724747291,0.00913712550959699,-0.11695669660621325,0.0021176088799210683,0.013546744936741767,-0.027939694206321832,0.17602764294990494,0.00012649607023340102,0.0001306149482255296,0.024931526206261632,3.8364162775516685e-05,0.00022031508613830575,6.683172287938761e-05,0.0002696433538570179,0.023664599200211963,-0.0289910248331072,0.1707211602884548,0.012225449850257322,4.783405187840413e-05,0.020032361010697067,-0.034532865357117346,0.1775612543423246,-0.027761940447101886,0.0003205318708844401,0.046848751128242994,-0.009556477188134975,0.13730544975531891,0.0024815667995386377,2.8882865886670574e-05,0.028051814511719616,-0.011722552459507755,0.12599031091501664,0.004934016351841641,3.108613626027948e-05,0.014385461533639272,-0.0330736402235748,0.08217242696471566,-0.09747861413020857,0.00012965182655790106,0.012015403637373233,0.012739527181572093,0.08497816067679388,-0.01802513628552932,3.462887312249324e-05,0.03231516683372249,0.00047030637068019225,0.0014778317069988394,-0.00019449170788289922,7.055588826837078e-05,0.00607704901968048,0.009011750001668628,0.032188986901551496,-0.054199014135226035,0.0001280119233323738,0.0027576879714248078,0.007993044318455243,0.007758785334464266,-0.029551352668206878,0.0005888355827869376,0.001901377678293636,-0.014802234522575411,0.05323079168969215,-0.10094637683547357,0.00011704432582930837,0.002005054894043067,-0.014190340760476037,0.056274035158613026,-0.0008896063122275387,0.0016184673463513185,0.032826801813547794,-0.000971762714866225,0.007803101513193398,-0.011370081479266035,3.20239699995023e-05,0.013062796253369608,0.07536397936163419,0.23795286632328946,0.12328386315267265,0.0010354858084323372,0.014414997783958213,-0.003984173072611218,0.03335109099927005,-0.08705530320411868,7.95524929587156e-05,0.0013930023766536904,-0.012804686554956118,0.021326542638155914,-0.02307963170832403,0.00014170784148091864,0.010581924282440931,-0.022935451115843636,0.032401724390907334,0.009645354826344427,0.0004062964960016576,0.013904863955763718,-0.0027388289773138943,0.011295703907302146,-0.007387974094766227,0.0018793252790051088,0.006176876064362165,0.005544953942062718,0.019855412895964705,-0.0015254233322545057,8.960028495203104e-05,0.013096834386549705,0.013388159367066924,0.021572628504384864,0.0009799349828716927,0.0015427480299224472,0.009058545153530877,0.046716846565301166,0.16151653659924817,0.03866201946302065,0.00011459681906721325,0.03061643681420167,-0.03212527760325631,0.08232302433223342,-0.0044090126519896475,0.00015819252146422218,0.021851021824737273,-0.02454606302185168,0.09146159251114534,0.010250802433011118,6.550236956693646e-05,0.01635951637820303,0.010822572497540723,0.038403055219209184,-0.027207875912062193,0.002671054718219751,0.03663600757125278,0.03379838986185398,0.1923091584322288,-0.01703277549009647,8.742519598508714e-05,0.03417020114616568,-0.02118148885685218,0.14907605481969302,0.01442321753435749,0.00010304083681790016,0.002745912140008368,0.026562595478702603,0.14738703285754343,0.021631377847973185,8.524323664490237e-05,0.0037969623890890475,0.039362818726643385,0.1929558431262348,0.03464741266921995,5.127145599460378e-05,0.0328161090580254,-0.023341031798490428,0.048367808645310664,0.014134616558124417,0.00023528434553528573,0.031476480091060036,-0.0019873224714877912,0.009612407520656147,-0.09226082606134853,5.141034811834638e-05,0.013286038998758212,-0.01657637012805407,0.1966889977473689,0.036718014486940696,2.174406078831162e-05,0.0009634132064343319,-0.014893365789728913,0.043620691684593045,0.03712205196220998,0.00011934638613181776,0.0036144886032744867,-0.01466063742483204,0.047937468779314193,-0.007412678404529138,0.00048206513847509196,0.004862311882678066,-0.03414595633530145,0.16506029241307607,0.027299305499692898,0.00011848638965061062,0.03711976071635275,-0.0016297623424124277 +2019-08-13,-0.011785735736602047,0.0861270516170959,-0.0097395707165287,0.00014471171905469304,0.004399667229161002,0.046552709931697654,0.16269307221936993,0.06345445891116598,6.865725464782536e-05,0.010655562894592404,-0.08531871895087624,0.28084941547144365,0.11990304198580552,0.00014052966343326814,0.004172210229525823,0.0010988160065877736,0.0013869200483766283,-0.0047676337345870365,0.00026738768884543865,0.005978834260381498,-0.012102678690893433,0.026705710051632345,0.007409019075219052,0.00023712380014264843,0.009091314493770567,0.002479865312588161,0.0067993453320861486,-0.03782874656682383,7.963568766226234e-05,0.0008479764367154814,0.043179734455519585,0.13395669939427265,0.028358598987483028,9.458132289622677e-05,0.015044072938835997,-0.002863034393445264,0.023804295846018654,0.0003410243094550038,4.1244860641273065e-05,0.015861999051769403,0.005780844967294968,0.00561343163385925,-0.0468579973010976,0.0007941593828398095,0.008186780460707973,-0.07641993042033658,0.15834929735902964,0.05394040153762136,0.00016875334251276945,0.032404795824164515,-0.010299734219231754,0.0068287131452805854,-0.0055070820215142174,0.000737244441188835,0.011986702450631707,-0.008930778776854947,0.13048378824786996,-0.07237455795866765,2.0396495986999568e-05,0.00224112576276477,-0.0030015339950663017,0.008722412864304335,-0.0007861097273502222,0.0001022251284079314,0.01565400841646093,0.018279078666705355,0.085675406639041,0.027851416829656413,6.005648994007725e-05,0.007653759346954671,-0.033846276834992806,0.030679452206672696,0.1377393373698418,0.002151722563556465,0.003709584257636939,0.062107494579234916,0.37665949665618836,0.08837536639137895,0.00013568979808073698,0.011722668611782658,-0.025761269618796354,0.13941270764191552,0.0104516390754213,0.00028613641584529335,0.01646680665702203,-0.004918085840422105,0.02875245920847283,-0.028250379115621657,4.818169395119391e-05,0.0026824556036612515,0.030766259354811556,0.1546647966495193,-0.013543349245702276,0.00032784610570329087,0.018599544889326736,0.018553818343440553,0.2491892414476828,-0.0009244257042575796,3.089827565770539e-05,0.0173706752328716,0.010725944389373035,0.11280384551196848,-0.012864716622548098,3.176825388944414e-05,0.0034848735946078663,0.011702479128114616,0.03071686676612522,-0.04553114581775147,0.00012272236528672713,0.023943455103476383,0.04791537908042508,0.3881136313216928,-0.028498975536852728,2.851730024943246e-05,0.00899004697197922,0.016237396615353873,0.05080422394312276,0.02234581851144627,7.08588271257018e-05,0.0035090941829913503,0.0035280698477808785,0.014103514906932301,-0.004828324455848088,0.00011438219022405293,0.0010206115944083624,-0.033143503718035004,0.02993721021840699,0.03907842164770072,0.000632794435834514,0.003286659641531232,-0.014320903151255405,0.057120330053737074,-0.006388074184468043,0.00010552751432844612,0.00781843519169145,-0.051670796372385405,0.17945036038640969,0.01554042262209022,0.0018480767142822338,0.010207268991083564,0.05657464894183418,0.5154937508229355,0.050866483672717754,2.8221536714877894e-05,0.021322876327015704,0.02619922808809315,0.07415939725349367,0.0029410290558161013,0.0011550308239569864,0.0005610937420902438,0.057191540285114736,0.4919683758693299,-0.008974357097950726,7.741413215411781e-05,0.006622097493615296,0.015948774331878513,0.024788396825320132,-0.0036069225882359333,0.00015185330878509528,0.0002772588404119942,0.0018151156827003237,0.002741629364387742,-0.02069556426424927,0.00038001389789288695,0.00898240020650569,0.0014426533411239387,0.007078723262161466,-0.014736126151099907,0.0015796373460180734,0.0012464519984398121,0.03499434293418894,0.10672345340873798,0.038584351649714334,0.0001052030531712579,0.020832264204762262,0.030558239437019165,0.041583348168394624,-0.015704726981083963,0.0018267792367357685,0.03515512671883696,0.023639787665177978,0.07002533526529077,-0.02377158222929755,0.00013375327080087317,0.0016940280250371898,0.0018357932714330475,0.004652519166564953,-0.020516462431104724,0.00015995432185266704,0.00648185542087546,0.01612280975599276,0.06565368722882867,0.015512265441757433,5.993707328849491e-05,0.006546304424100443,0.0032326065545760624,0.008954771826502478,-0.059904633579245734,0.003421498728402476,0.012928118251224996,0.024108616144820058,0.12683988915905142,-0.007719002341207963,9.454901288951445e-05,0.007715884752341303,-0.023618210366318965,0.1284362163445922,0.011194072947102196,0.00013335836671479612,0.008363719545143828,-0.004336028368423051,0.023175919322309644,0.0019697936543755946,8.849196589015149e-05,1.9324137852420593e-05,-0.038446579181158146,0.1786387811492944,0.01746496558151439,5.409154075138286e-05,0.017509066432902932,-0.024574569473145784,0.04228187251507265,-0.010075506253333985,0.00028337471719928035,0.0017788630329200407,-0.03199869660685001,0.12752033283108108,0.11854047888518573,6.239750535777229e-05,0.0017454651435698534,0.01772478091415381,0.184406186885266,0.00474513618862522,2.4799143041188843e-05,0.004520233197638375,-0.015977126412520016,0.0512413565655436,0.04183697463892241,0.00010899009149820475,0.003356816452212992,-0.008711185836629555,0.034950314127573316,0.00285683413131998,0.00039287479384624176,0.005899326439858029,-0.014580264758760175,0.08236336908289393,-0.018980082276664662,0.00010139186303045008,0.015091276976854669,0.00191952061392919 +2019-08-14,-0.009795388176974196,0.05682761695773379,0.001253014454853113,0.00018228410094323427,0.002122853196320347,0.015800150027570164,0.0524859901381279,-0.013255571519078338,7.22317842514399e-05,0.0005926203574341352,-0.03163759067467285,0.11023483903160095,-0.03113064402997229,0.00013276442995892762,0.03694705981784508,0.041778020866278534,0.046871856991201444,0.11888185545239037,0.0003008178194411508,0.00042900981190079437,0.005073205517784527,0.01266944215504846,-0.008978324319415192,0.0002095186733122898,0.009721293685419474,-0.0020998165541165925,0.005650559791985048,0.002815881584473827,8.11403020774796e-05,0.0020531152286741485,0.015799921447644995,0.058842855156171256,0.0034650946840806924,7.878636173305885e-05,0.048192438066283094,-0.019155146597749157,0.16982112652337944,0.004882009528968808,3.868052651947685e-05,0.02030278813738472,0.00270481309845332,0.00226361815440605,-0.09355162777823628,0.0009214650744902393,0.006628258529313798,-0.028303845099347975,0.06683394844283116,0.008719146536450416,0.0001480847054560749,0.04460078308101999,0.013260552159900699,0.007891022403208233,0.006671409519806578,0.0008213962012663697,0.013002462001073165,-0.014929906205773951,0.20881107720507022,0.0653259256436853,2.1307197673761926e-05,0.006085431544611689,0.027061359174468894,0.09183510124116495,-0.0017186991862903629,8.753705554245482e-05,0.0026518681233182054,-0.00519375759777914,0.030994288114263115,0.007378783883407969,4.716956041593258e-05,0.008554102570515941,0.025684524981823078,0.020240322584452856,0.004973607358340564,0.002475010700082291,0.014856795104446319,-0.04117614440511242,0.24632296121231315,-0.008860232757172733,0.00013756022871146866,0.002150917052054541,-0.02012711353347788,0.10868489359888611,0.001609629092273766,0.00028676130212480343,0.004959474947037281,-0.0012155826828830075,0.00724263305811463,-0.016490747733853454,4.7276898507756356e-05,0.004430843716540359,-0.002461243648786542,0.011780244640930524,-0.054285629934974496,0.00034433970760072236,0.014551273531374032,0.03496371419551232,0.4535675307629219,-0.008446500749651349,3.198938091483089e-05,0.0035992950678957903,-0.009724210389816417,0.09743680019149292,-0.0068440291681002045,3.3343642599492365e-05,0.0034611572454545368,-0.008924163958092224,0.025875000080701864,-0.19557679666895433,0.00011109894546430308,0.011146516986037804,-0.06489618500416958,0.49475819352041217,-0.0023177729376456335,3.0298319990712127e-05,0.007623711107450753,-0.009289039279444841,0.028631867719240166,-0.006815171374366851,7.192808580043928e-05,0.003746874061327005,-0.0009351681663448534,0.004080518751217269,-0.06953164885735931,0.00010479074609199735,0.0030487575341267975,0.05517878206031358,0.049468761973671393,-0.01893711860520954,0.0006375534937013581,0.01908215921469883,0.021725734943917996,0.07946124052016222,0.0216557505986186,0.00011508140224625419,0.003019355779454076,0.0026286803916179165,0.008490536360486614,-0.007820144685422107,0.0019871096576536693,0.012116451803428992,0.01615622655344608,0.13665831001171427,-0.0162030764319394,3.0400875028569433e-05,0.0017712469863943824,-0.03711810506891617,0.09462879894777221,0.018700387920762094,0.0012824302056387655,0.013430284399692792,0.019528830002789734,0.13807709772427537,0.006320387414750445,9.418466952011721e-05,0.007867304165790345,-0.019044934856407746,0.028338104814947366,0.016939223098262,0.00015861858651509535,0.0076723310184500775,0.008644568358547398,0.01305005939436006,-0.04017534839977756,0.00038021980821995824,0.034056091622081015,0.000368923082583029,0.0015580171455185203,-0.015700041387685153,0.0018353290437748576,0.019430986397157304,-0.0207890068174657,0.08858306000520125,-0.013568372391175545,7.529626494260618e-05,0.004494167858975391,-0.0045929445576239816,0.0057109645391166105,-0.007752085450410214,0.001999212374491088,0.03573199995680463,-0.017424342723991664,0.05741278154729515,0.032247743356851905,0.00012024412131284219,0.017026576378942025,-0.03630359906864336,0.09328845981645256,-0.029420854223285515,0.00015775463763935508,0.007055439181134603,-0.019241981805186974,0.08438681058413283,-0.05367356736249264,5.565307324713094e-05,0.008752287841016445,-0.038396725583033434,0.13190518391722375,0.017332941427014293,0.0027589916372650677,0.023571786902465412,0.04084673069208411,0.22761387022743895,-0.010645367151633181,8.926868747587965e-05,0.006760587163925022,-0.001449939115377763,0.009116114527327792,-0.0035217966917403362,0.00011534553236750037,0.006749110925880925,0.014212168371110683,0.09377476693275259,-0.018913477050723652,7.16841350280077e-05,0.010696495769262888,-0.02226590127311709,0.08442463492066023,-0.07405531955578298,6.628549177682951e-05,0.017263670153672694,0.029095041799305596,0.051723348949643234,0.005921601816764684,0.00027425953983720023,0.04385442765119955,0.019117373670271165,0.07718503876404037,-0.01333008601940848,6.158989706853656e-05,0.01002262240747839,-0.00825843925337343,0.0935317702784524,-0.041705650699998084,2.2780859718459938e-05,0.0018775258706673664,-0.002777817350908792,0.008649461644459962,-0.012202649977659102,0.0001122596215191266,0.006835312160115483,-0.014125883040110414,0.059634517629376486,-0.0024856026939983223,0.0003733755421955601,0.004325503260699075,0.01613143458822955,0.07876701233739307,-0.055488146613317316,0.00011730064889908779,0.005232355726700751,-0.0025499018527179794 +2019-08-15,-0.010807658149096792,0.07277860378972079,0.003456955542183708,0.00015704151038775787,0.0015314236342116752,0.019340323491127513,0.06948381802063092,0.00797808670953054,6.678679246335596e-05,0.0036686376493424806,0.013736204998119717,0.04692077651255164,-0.02448610057628638,0.0001354249791037502,0.020885585586533577,-0.002492610003268102,0.003058321380967167,-0.03100983325676846,0.0002750673661492397,0.0012798696513093744,-0.0007137918282803239,0.001709757624043733,-0.031132322542216,0.00021844132140205888,0.017956037509120778,0.007304994484316253,0.02245571668100999,-0.006503478227430004,7.10296560891561e-05,0.010140674905799639,0.027767687255743422,0.10098105450251661,0.013749357197522672,8.068441656764162e-05,0.02215779478282218,0.00990052107131208,0.08433728988268377,0.010326806097253496,4.0256593823946486e-05,0.003723867788868987,0.011424918034003327,0.009536810483662376,0.013068201265203142,0.0009238356711867259,0.00902849353560577,0.0038579033131205505,0.0088088090136053,-0.0005441827171850783,0.0001531426054295921,0.019311436581112625,-0.0021843672931573647,0.001454741064210905,0.00452756263546999,0.0007339463672007694,0.01198656726914689,0.0036709230656121676,0.04577329644769268,-0.011496165126064016,2.389933859110337e-05,0.009292247802180551,-0.009964489501418802,0.029035434750831885,-0.06130562100734257,0.00010194777660683375,0.026067642855541754,0.0036286881056384872,0.01616682613610396,-0.010715127021079348,6.318102855395135e-05,0.0032164362321359277,-0.019362251266165423,0.018481399129123863,0.048452828095149496,0.002043355720622343,0.0019972955645836815,0.005851142152261508,0.04298718924912605,-5.1732507710412095e-05,0.00011200920318404885,0.022999339048592467,0.06588266576687389,0.35697910044939557,0.04361407279952645,0.00028578314055744883,0.02091099430000526,-0.025955017646982007,0.1449433122204225,0.019109117328724973,5.044104820354787e-05,0.020951112141049957,0.011202867828231966,0.05719767707265648,-0.02791222406389417,0.0003228030490124129,0.004246218260675923,0.024969617503654954,0.2800907020586561,0.00406901631979197,3.6995033829927006e-05,0.012931874192705969,0.004520975428070655,0.05005262970080162,-0.005142017709927192,3.017775691960328e-05,0.008089834811082405,0.01724149535184009,0.04980536244971249,0.010749080727260536,0.00011151199362880766,0.0020847184285333374,0.010255080188168779,0.07273807048542504,0.003356762859533316,3.256639306256261e-05,0.008128337263236661,-0.01415213763197973,0.03801980022203653,0.01715205246942449,8.25257719271854e-05,0.010748058322847639,0.013796548897683504,0.05757129528048852,0.01951291758231038,0.00010957539868229366,0.004578806262609575,0.04550727610696971,0.05020487404366612,-0.00019730119850207856,0.0005180963355982053,0.009547068278189122,0.0011248597385535588,0.0039372199435558095,-0.01782151908298789,0.00012025266376143275,0.004443736101762025,0.0029062048356160186,0.010404653312371805,-0.03698412499199228,0.0017927419532661041,0.031989823792253826,0.0546860123911646,0.4905332852524129,-0.17026685220964374,2.86675098200452e-05,0.020833183645909158,0.0415558732732634,0.09823718734569678,0.007210907739072499,0.0013830177799403491,0.04058048536515196,-0.00430102330165173,0.030880272119079434,-0.03302854718918317,9.275051291514389e-05,0.0006009059002157651,-0.0030128357270268,0.004060668930732382,-0.02909607937996737,0.00017511496286477086,0.017673111952951227,-0.02584101007310894,0.04076341725652058,0.02700096662828444,0.0003638671211795179,0.005339181869621909,0.028667421013796938,0.09104151077858313,-0.06768099987710602,0.002440616313167019,0.011246319272954414,-0.004802439448599796,0.019305371696824277,-0.011611857046154745,7.981308547905678e-05,0.014163496319015836,-0.05440801551928482,0.08164049407516888,0.045056808262256644,0.001656664069579441,0.027935802504132957,0.010926910990645135,0.03614731603050147,2.698402676534733e-05,0.00011976705917849283,0.0017883974272796396,0.004365020881205149,0.009495676991369335,-0.009310006794739275,0.00018634629768048025,0.018728956812607844,0.0034766618026874406,0.012041567090019651,-0.08603648106488553,7.046822972232354e-05,0.011829829776529677,-0.0048007829965907535,0.017941154327156848,-0.07471122487479959,0.0025361781204332164,0.0019475262295894078,-0.009522090214686831,0.04880868890534092,-0.00760959741826636,9.7045571213253e-05,0.018895116789324616,-0.011645065773023124,0.059593537700228905,-0.013186898073237823,0.00014171099998933992,0.0018280740664291363,-0.0107866845615734,0.05800534095351985,-0.07492825907526411,8.795665273013997e-05,0.008324093991313862,0.028927110079415848,0.13255703525797954,0.009313641968589774,5.4846593762984245e-05,0.014546287065419411,0.004674848733033797,0.01060731264770001,-0.00473592834967035,0.00021487781887349,0.03290079797716602,0.02819543488912098,0.13375112167385786,-0.07684854343649124,5.241984598829016e-05,0.010768994179455541,-0.007741466493074132,0.07563850973278866,-0.030254145934175906,2.6406543657833112e-05,0.0014026983663906064,-0.01843999116430127,0.053578779700947626,0.0433168701548378,0.00012030311016318901,0.004389997766152899,-0.019158300401446005,0.08331925660157352,0.022668604111077198,0.00036244287210195666,0.001274523197947986,-0.033780632625028346,0.16419804373741723,0.032371162550082204,0.00011783426464848113,0.0076411877172406,0.0047178923686347395 +2019-08-16,0.018611407102044387,0.11816407516140466,-0.044734675779471364,0.00016656368965517522,0.023780436911878613,-0.07680379221688939,0.19835995230678016,0.11882257603136191,9.290502304770097e-05,0.01877325640726742,0.0002045492395697138,0.0006576024316852557,-0.006547644398727665,0.00014389034813280506,0.0017462148911027821,0.010924495807752746,0.010553404301311357,0.012689851976382163,0.00034936281829410287,0.0023796875175434466,0.012387193296563168,0.02647979199249751,0.0036446682300255683,0.00024476883323918465,0.007716919825515049,0.030453571844047348,0.08196603262971423,0.1496306761724229,8.112431874794953e-05,0.002774414783239876,-0.020699825885582158,0.07434406433754957,0.003172398792478011,8.169777853287041e-05,0.005356788457664153,0.01063404854226734,0.09552682008376369,-0.05000576191311069,3.8174374685441294e-05,0.003947713807234433,0.015765029431225836,0.0148325813614656,-0.028190074425220334,0.0008196394122521103,0.002625162058190222,0.03061703487131303,0.06171465663295677,0.014205739586756713,0.00017347492093190318,0.011789014431892236,0.0012496736074120818,0.0009901450478858038,-0.05844121025865006,0.0006169104633399424,0.004586280292668884,-0.0016721573003105371,0.019924249471546314,-0.0011776061993190748,2.5010245095802794e-05,0.0009083656681720399,0.018467315570895138,0.05818051095111721,0.0007285482410972298,9.429252756306395e-05,0.007784612117133088,0.006667680782768019,0.039399262574094165,-0.01968342750062921,4.7637452054998637e-05,0.0017481449478511965,-0.002221111262619835,0.001821581815446142,0.005185573391952188,0.002378179355332456,0.004626744473130408,-0.03148814400935022,0.19071280248095931,0.005764612017692245,0.00013586866953722108,0.013822866572143258,-0.08756652910735685,0.527525974345678,-0.021245555749159945,0.0002570410694284202,0.013064910234270895,0.0006604417026423537,0.003644634134436236,-0.06342677394260778,5.1043624605094804e-05,0.014938040882282923,-0.02050021379235004,0.1114019360405391,0.0051712054336573755,0.0003032860670100942,0.006634652121428342,-0.008382774314552689,0.10552089761815368,-0.008932486292406012,3.2967007611848324e-05,0.013235233127732043,0.00966611082868835,0.10265956293579293,-0.017472136310379027,3.1458214432075235e-05,0.010201934320974975,0.004310816279531095,0.011865789772332647,-0.019924282943790346,0.00011702687833069308,0.0068110654952755695,-0.03353410444601402,0.25272099520357066,0.010303854065517856,3.0650514262366117e-05,0.01804785901230399,-0.04658523211425647,0.11782659930438291,0.23283474704282367,8.765613201726858e-05,0.005288140177593169,-0.011234349534924394,0.04143786587757901,0.08539211755791228,0.00012396501782740903,0.0012336661077306007,-0.009463021867096444,0.008940498265969037,0.0027712088289073783,0.0006049837112687182,0.002993397213951683,0.03295841074615029,0.11194873582440025,0.059606856641100985,0.00012391762388104643,0.01429756437135235,-0.023179815384601458,0.08439062147433052,-0.017088860103231806,0.0017629295696059341,0.006752954050538832,-0.02107325167023246,0.2322938063732914,0.004871460260531895,2.332792544698124e-05,0.022159554673560115,-0.008115329641418347,0.026105757268166135,-0.0018287551348878932,0.0010163449639266813,0.015251540312217026,-0.013462374514775156,0.0978658939103931,0.0187972909359526,9.160431766208698e-05,0.014333578975471719,0.06159230890984042,0.09839163906423674,0.19588660289257895,0.00014774530050881316,0.004665424731233931,0.004455741337083296,0.006923775356908471,-0.011050795389346953,0.0003693864126897718,0.016457874955791346,-0.005497249592713578,0.020307894645047175,0.009182933275240335,0.0020981227616096907,0.0007979971130235033,0.017018289235987433,0.05888283262792659,-0.010578960357613226,9.272942713646332e-05,0.009627237190792604,-0.056617876417691705,0.0905874928820514,0.04887260254654733,0.001553683407510331,0.034172067040707375,0.003671983755128911,0.012267652242003145,-0.019374589682926026,0.00011859198310245413,0.01747810915790802,-0.07764574858766388,0.20702384307403468,0.1018947461419801,0.00015203994056034835,0.012610866599866564,0.049835749392866883,0.1914483349577435,0.16441948107996568,6.353357955414795e-05,0.004931569353976165,0.007027640270394045,0.024528812766200014,-0.04951159105426143,0.0027155077874585877,0.009187736452606487,-0.0069394777602228746,0.04599132384390405,0.008025011061146753,7.505704257879975e-05,0.005396248652630916,-0.006239698564461203,0.03347360276873772,-0.0717972548623135,0.00013518295515521777,0.007687916121838102,0.014208682828765104,0.07918144538319796,-0.0013300870120448016,8.48748644105386e-05,0.008309403693622909,0.007576651658922151,0.03625961353916562,-0.018129030119081083,5.251719775149773e-05,0.0030396129132077556,0.0008029303179820103,0.0014340034834394199,-0.12162157660512876,0.00027299647829035606,0.050024624370063005,0.007271252487573668,0.026988433976817765,-0.013163796501841398,6.69955437393185e-05,7.615260648311808e-05,0.040612333609436425,0.5635906977544347,0.08272865715195524,1.8591970181477224e-05,0.00670683747708315,-0.011149264907187146,0.03159936596437095,0.01156499031487917,0.00012333229990783699,0.0067877453156831745,-0.014660539726550235,0.05795503703602661,-0.036280922688344576,0.00039873718850262283,0.0012506454884011271,0.011944395259288804,0.05562210403472139,-0.0613802686725001,0.00012299530942724775,0.0217950033825625,-0.003116591493169516 +2019-08-19,0.03500328662254718,0.2379012006262562,-0.024746121978671362,0.00015559612402742877,0.015441054186376079,-0.0018842549507084745,0.007308046996117775,-0.004596077931114366,6.186554740889641e-05,0.007199156976665691,-0.036417580466496596,0.10690799810724884,0.014575027176821376,0.0001575789113190954,0.012539299716531874,0.012932221637555074,0.013039350689237643,-0.012481046153801054,0.0003347225949304041,0.010461872664920865,0.03506831047353235,0.07926476778919703,-0.029321765306138173,0.0002314901005197805,0.019516990261979172,0.0037701048806743575,0.010531083193339773,-0.1132708749028197,7.816766305399672e-05,0.0047436128087641055,0.008558874667188179,0.03258188170079567,-0.0033655745559424454,7.707798621355992e-05,0.021875317680972953,-0.06466293364551969,0.590108317470431,-0.009789688607221632,3.757701536960228e-05,0.015449115979924538,-0.02163351461694238,0.021844161830165146,0.07535002901838983,0.0007637240777299176,0.004995050126505322,-0.029244690267305824,0.08288439942303777,0.0069914261180070636,0.00012337754308102596,0.016848477460166395,0.016050851285376783,0.011551249219803442,-0.07635654349614543,0.0006791934284979796,0.018874076200211885,-0.0017594543752640446,0.02347745022683798,0.0021057021312195267,2.2333144220476732e-05,1.2327622629745415e-05,0.02229208230957693,0.05939278769606337,0.0026478681879861083,0.00011149822809789918,0.005200833040930315,0.018069840832193193,0.10175361561711345,0.0003702373986751082,4.998806149907907e-05,0.007902430655791591,-0.018837060622678217,0.016852681608549767,-0.0029734402913373656,0.002180053201382827,0.004861735292195682,0.013554639407600844,0.08728683162232691,0.0017479521741148537,0.00012778837478278764,0.003565277939031654,0.1092582437043342,0.5826325958864301,0.10969148963210473,0.00029038064731734336,0.01928853653035007,-0.053328014819775255,0.2806544418196351,0.08094059606261024,5.352349358639381e-05,0.019797237856378668,0.0208470908203406,0.10472089936599448,-0.005122088467752094,0.000328094463975522,0.0033231819548889974,0.05150659824167521,0.7287385579223441,-0.10148860324064149,2.933062721747299e-05,0.02200370931490855,-0.007655734230898831,0.08418768787787036,-0.012538527298408667,3.0382252958442978e-05,0.0019251334470465026,-0.0009668463863114337,0.0022360787158778065,-0.004215453638087161,0.00013928140733729917,0.01117668619831804,-0.009396634419412403,0.05558360380367872,0.00011262985585620136,3.9049727328110206e-05,0.025228171245287853,-0.004723373325585657,0.012941535342665504,-0.006378845014213172,8.091776005961617e-05,0.008117563488362619,0.008189221273284855,0.03168166319220779,-0.023974643976027735,0.00011819067933004113,0.002988915738577217,0.021458328745355956,0.02237728571855607,-0.04291820545222511,0.0005481053595648815,0.0013329651032861932,0.004534384198748253,0.01678326932406191,-0.0051575884893824584,0.00011371761964715922,0.008501930776808492,-0.028871922705566103,0.10281754417649398,0.004143100118806402,0.0018023023735738754,0.05348013064207844,-0.03443214248310794,0.3919015942193566,0.010217923317625192,2.2592755996710915e-05,0.0007231665247081028,-0.011128629711985753,0.027845916518474498,-0.03319763325431124,0.0013066264493851985,0.018524518776168782,-0.029427509306152386,0.2815459065642266,0.06215402498334518,6.960331616001907e-05,0.00570744337425042,0.0029226659771328387,0.004739532625216879,-0.09306963326144607,0.00014554223944983756,0.000766039986374483,-0.03043929902228817,0.044545393967723786,0.048249783867271155,0.0003922254378703041,0.01222037154691916,0.010555709580662005,0.03617470819767713,-0.004125291429223739,0.002261688227968246,0.01722094574427942,-0.022382263146826533,0.09429508502828222,0.01680088454377299,7.615620800019249e-05,0.0037679299356530604,0.01562282699570695,0.019912660406558418,-0.05196802768160731,0.0019503274262342792,0.015286190386776498,-0.03542950362545307,0.11465781318204576,-0.0010643315807734243,0.00012242706833766602,0.013611438375391855,0.00992979824966163,0.02510106809054553,-0.008246704931183967,0.00016036463459724097,0.012959359113613107,0.004632356051098039,0.020625991117333414,-0.001518406372656702,5.481520356815899e-05,0.019650107284755018,0.015168600561624956,0.04649885564471891,-0.06132607193935068,0.0030918705894960423,0.018630241729267232,0.030375750416392382,0.16323399363355598,-0.008257997980440175,9.25671686935838e-05,0.005274437464051028,-0.013399757997840657,0.06851619759919632,-0.007380311776069471,0.0001418288188808602,0.000142787081110673,0.021995640333006643,0.12152630520751227,-0.15618993169538453,8.56081307164097e-05,0.00817956659299882,-0.01243809475991271,0.05518576927068971,-0.0019413141934497495,5.6646640061693106e-05,0.008415162587141629,0.03669305597299127,0.0649716298758497,-0.04325422575432542,0.00027535281190553963,0.01941239148582148,-0.004712117660735072,0.01943507827501678,0.009847922528327849,6.0289850639325944e-05,0.00569689510862778,0.019237950545507764,0.23300826931518964,-0.07477309463408471,2.1301920292176346e-05,0.0009465126602652559,-0.005078021177178513,0.015504139898775929,-0.004563234746051514,0.00011448689940839357,0.005118481238300419,-0.010100648759375804,0.04035121397686772,-0.025928979664869692,0.00039456688661177445,0.0032650959998792506,-0.022611496486639536,0.12292246655096742,-0.1151923317064342,0.00010535856232778812,0.03012461947814974,0.001232260151107756 +2019-08-20,-0.010338245799419495,0.0754363513937628,0.006956050273978319,0.0001449281547364716,0.000746309511911334,0.06006536002310375,0.21452304410916487,0.0039036077107547184,6.718319601056104e-05,0.023281424053064846,-0.04243248350598552,0.15400137142372705,0.019074189047036047,0.00012745916446465475,0.009416237614187776,-0.0008570906753906651,0.0008593726916169865,-0.07493374069397751,0.0003365991985998967,0.0014579252020559895,0.004947185570005898,0.011700731686370145,-0.02428969231355384,0.0002212294567837076,0.012444235499200467,-0.031750745157438184,0.09087006953669009,0.1265700486279841,7.629214080236978e-05,0.0031056866181128594,-0.03364125587955807,0.1332600689164609,-0.04769884101496428,7.407335609271027e-05,0.00257558151986592,0.015164061878341772,0.14427321463221246,0.0172783572050872,3.6043624265550366e-05,0.006837567223041649,0.0006377763309452453,0.0005146098281121529,-0.0019456911672707286,0.0009557297570864682,0.0006418864980611155,0.03295408104125084,0.06567785212280004,-0.00042059210780659244,0.00017544950621206287,0.026011534357323476,-0.0015706753662220905,0.0012778420766129952,-0.0010496669848164882,0.0006008050941463522,0.004112702634943163,-0.007583517623511937,0.09449590691772848,0.014465852992211375,2.3915556567230485e-05,0.004396493608681452,0.02789365192590583,0.07465368829062928,-0.0031120189216721685,0.00011099544226955249,0.023988521536930152,0.008366152414205416,0.04389888042082452,-0.03372477655660499,5.364560485014669e-05,0.0015073793216874307,-0.006486812207526719,0.005351307908537806,0.0016688906874317434,0.002364255224323037,0.00012054828846058728,-0.011850574255268018,0.07925761624594176,-0.0005505612537536837,0.00012304118278948638,0.017790548042758873,0.06705446173707058,0.3789429136821816,-0.005869709953237418,0.00027400729320763004,0.0005211055971210659,-0.06908508580924204,0.409508521383147,0.09048163400593717,4.752064360989549e-05,0.03625902107152319,0.021930706642465398,0.10670546032462298,-0.05174805799021312,0.00033872931926606206,0.0067356000415952156,-0.037976427003522856,0.4711660158132504,0.04976911329256469,3.3448016977884805e-05,0.002869219797801201,0.027229888705616233,0.2998525684065539,0.06172802494029211,3.0340295213827743e-05,0.010152004371290812,0.005414821487518671,0.016098472157026884,-0.02559050136409874,0.00010834833420142458,0.015832656683465406,-0.04126034369150066,0.31019540325601563,0.020137869713763544,3.07248562431253e-05,0.0158224858850295,0.01564228905392583,0.04789830015160911,0.034030524207426284,7.240317115976022e-05,0.012679785457535321,-0.00018073649113290225,0.0007168655191598316,-0.020522202181727733,0.00011528073866254954,0.003444503452274054,-0.029965903123670094,0.034635508063619,0.00738654619256488,0.0004945171639643695,0.00925853646707272,0.020761530895680957,0.06979408077650831,-0.026505817846208063,0.00012520647572084105,0.0060735635084750925,0.018412392765273507,0.06757277277967647,-0.03206216662760888,0.0017488705521684059,0.027537299165827,-0.015025628811239653,0.1522965277507278,0.006932409007363692,2.5370255992345285e-05,0.009421992165611761,-0.046464027716172696,0.13854521541570397,-0.0394011226897803,0.0010964695900302704,0.007240930010139171,0.004517371699551769,0.038267489146365005,-0.00015382742853085763,7.861067081789266e-05,0.0019914449656728665,-0.017109733129079475,0.024597670510830623,-0.00017554873648344493,0.00016417031902783553,0.004526914199336968,-0.030348639755597748,0.04088694875449692,0.029274015651776654,0.0004260479131279818,0.004843693725441274,0.01598261836083643,0.074559107050432,0.004019579787244271,0.0016614893904070376,0.0018812832456635428,-0.05701428215386103,0.21691727335279967,0.11519592013516025,8.432957164848228e-05,0.013003361853726964,0.025212138478609387,0.03530161353540047,-0.04069193916530204,0.001775384072791893,0.024412653297568622,0.00038455055353548616,0.0016189714209652996,-0.031321433271541264,9.410881284101639e-05,0.0006650043146075476,-0.016982000419758902,0.03632942019815608,-0.04387536780109984,0.0001894919463427066,0.022032072050770873,-0.003240366915881248,0.01336918299891644,-0.010867682357192012,5.91566056193596e-05,0.01117091848925928,0.03155539185690398,0.08899360855585395,-0.18826611888718972,0.00336072377600291,0.00682546479166921,-0.017441499279407725,0.09506417923800571,0.0022811597024044498,9.126567750602048e-05,0.003067442787504499,0.013378676909677504,0.0792680169694084,0.017710500021365875,0.00012239846082048514,0.0037263198114163565,0.0136694999068876,0.07872592312025203,-0.03893592909657551,8.212654699646079e-05,0.017590220748194954,-0.002953982225074234,0.014727525965554404,-0.0038819449223195975,5.041101891061307e-05,0.020184662552829385,-0.03791900799967379,0.07227624956119712,-0.05442398817510245,0.0002557942351374893,0.01860035645343645,-0.007277768041709895,0.024661919874561594,-0.019875881420483344,7.338135097983544e-05,0.012618620253460729,-0.016633675079934865,0.15811215540294443,0.05226929952964647,2.7142774597342812e-05,0.007235534872019456,0.04037314757244799,0.12080025991504525,0.16311434647454504,0.00011682443922829384,0.0071168374709334745,-0.009300468623319487,0.036930421294444835,-0.01072368444333899,0.0003969616396877679,0.004149842397579885,0.0303591077260447,0.15053532611299747,0.014200666957156936,0.00011551074142687607,0.007162643355909718,-0.0019069281487821585 +2019-08-21,-0.009549043081049428,0.0656363832029669,-0.0027426719548991505,0.0001538515212199587,0.004200910286700979,0.038250969591551685,0.1355381801262998,0.0014956231968583135,6.771600442748517e-05,0.014631430040453535,-0.011040459770830202,0.03806871501966954,-0.0102713167722209,0.00013415786749231427,0.01058258432363196,0.00508228291123093,0.004602982457957498,0.002199960409093207,0.0003726382000357721,0.006758751277300974,0.020699071281728057,0.05108587371859757,0.009918384226519819,0.00021200583150217313,0.011320901593102634,0.006342648793391066,0.019749756422389565,0.008368278124445445,7.012222053284688e-05,0.004484891609676679,-0.0002572933374617797,0.0009057807033134742,-0.10883267452190928,8.334802846160635e-05,0.023205124160846493,0.002998409955052612,0.026745758687169163,0.00872543462912484,3.844454309066835e-05,0.014124414628845942,0.037908373389377324,0.032359870681299516,0.167571627024027,0.0009033855902518196,0.0038306522213237323,-0.001317957858150342,0.00402535015623964,-6.430213253817622e-05,0.00011448794118369167,0.009409027920351762,0.006930113286959892,0.0044982971710123484,-0.019098618404498002,0.0007530374057426775,0.001830894009217929,-0.009534074853085354,0.11979839442227605,0.015863071598438902,2.371648642757672e-05,0.006001811168294826,0.04153847379230491,0.10357642746611938,-0.006101461365709651,0.00011913535030048746,0.015887691748812275,-0.0035645663564348486,0.019721149134132084,-0.0025412419638477586,5.0878734988099675e-05,0.005492162665599157,0.0056310276376762836,0.0052355053282722094,-0.06511157574026011,0.0020977417683123523,0.009240070497409063,-0.00010475709470051792,0.000667989006481608,-0.011375733270548765,0.00012905244530457134,0.01562597246002606,-0.0062849154252267725,0.03017016140243792,-0.009051302938930327,0.00032257450256618,0.012583617235578212,-0.0028686661018355467,0.0144607820080529,0.0004395453236066392,5.58790711191363e-05,0.02056117818384046,-0.04452298195229523,0.22588138678064684,0.0005106954352484566,0.0003248557855808267,0.01988290104766901,-0.025756806086680115,0.33648384149570426,0.020241415680005884,3.17656704528616e-05,0.005962742512272665,0.0010600347807343147,0.011564600024271458,-0.0447917449694304,3.062465517855821e-05,0.009658399579787676,0.02093830484222608,0.057403791261954974,0.04204532415471986,0.00011749616661371579,0.020869675352207087,0.1032221581989075,0.8139305035550839,0.14770614222574566,2.929395340920338e-05,0.006308716791037705,-0.031903184169338634,0.0880868279133109,0.029446460718075242,8.02972075509886e-05,0.01968258513557932,0.004520464439797451,0.01802266379244278,-0.015164273933847,0.00011468659837639091,0.0073936468880069295,-0.060832480171761676,0.05307865515838099,0.09236090227031213,0.0006550752238212217,0.025598712214317986,0.02217841642622322,0.0825586443078555,-0.07321209773601636,0.00011307171774770161,0.014372770895942742,-0.029294729658547684,0.11466367606056067,-0.05600134789791692,0.0016397695155418363,0.008266997739158888,-0.02236647192838666,0.2053428201892843,0.013181526865026492,2.800916468755264e-05,0.02731970058595868,0.06461870001400069,0.19271432465378138,0.06498532681901982,0.0010962648492889107,0.01065018030874379,0.01962272111443401,0.12473028369587152,0.01063351680670167,0.00010476421535660763,3.184132551356414e-05,0.0046516056889918155,0.007105824369087462,0.00019438830713062346,0.00015450189489574939,0.009772851875921841,0.007312158813764794,0.009785614805108912,-0.044349609769239656,0.00042890529981264567,0.00237512757851723,-0.006123437106683627,0.0233905809848793,0.0016251825569331246,0.0020291053392087768,0.00021197249788380097,0.006553146492623007,0.02594133755628499,-0.055584021218580734,8.104904128698496e-05,0.021609133273264757,0.011277479089956096,0.018285060311989013,-0.0008673349376571698,0.0015331788696868927,0.015769358887922868,-0.021171954175877184,0.059877634620664553,0.01738500024251185,0.00014009168082982016,0.0015176696676007838,0.00922085117219028,0.021302710241128592,0.009970377867696065,0.00017546743531889766,0.013511008005874287,-0.014079250648967773,0.0533281588060465,0.005273006842940276,6.443723195365772e-05,0.002330034222857862,-0.015189057679578732,0.05085262898184701,0.008287806182809844,0.0028309713826752416,0.016050899831175358,0.005466816870278888,0.028216162785139647,-0.01960103972595556,9.63778301691231e-05,0.01105687922587401,-0.002798053713744973,0.015146423993431092,-0.022624373559844545,0.00013396974226273238,0.009775883629742004,-0.04373972826839244,0.24382684491797807,0.15582368081254303,8.484832248460648e-05,0.02180948042082615,0.007291515086438242,0.028891206208136264,-0.044019544116321065,6.343069933201947e-05,0.01723157072764511,0.07814689690999921,0.1450159906060682,0.07346487809162588,0.0002627394206948355,0.0023738780939017074,-0.0029652473653123397,0.010736818546522463,-0.013140253147732206,6.867516175834342e-05,0.001114772170230656,-0.018276328660293356,0.1760675520973476,-0.03603585714877132,2.678187129160735e-05,0.01183749290138572,0.005640582735716855,0.018716858457333944,-0.0016824659565835755,0.0001053416174230707,0.004924487449152573,0.01031661072734095,0.0332685281511798,0.018242926945635392,0.0004888002588690557,0.007452147226443099,-0.016733652417070602,0.07357608709432124,-0.0008210242339910537,0.000130264432626744,0.008619587110629162,0.002944721160533182 +2019-08-22,0.007567439021833326,0.0451072418652622,-0.19222260404013436,0.00017741455308164172,0.003806320657839527,-0.05318145230288768,0.14608236504375408,0.047651878315330035,8.735201514129394e-05,0.002484522036737305,-0.03731528744994357,0.1343007479620037,-0.02774819296680255,0.0001285303128278109,0.001063490057690413,0.000617006381671284,0.0006682994654593407,-0.0005196887376111313,0.0003115920715271826,0.003019496333801943,0.0037228569298742866,0.00928987177441762,-0.02034354654702422,0.0002096835685921594,0.009915456158497257,-0.012467688204660037,0.036585439607350036,-0.01089578876789062,7.440881612052062e-05,0.00499072440531215,-0.011170648289464463,0.03929323032093337,0.0027662838385622756,8.341621875773721e-05,0.0015278375943167917,0.006123137296359129,0.054977757448493814,-0.00409830403267008,3.819315990083579e-05,0.004738184942192908,0.027989223882067905,0.023736654281030233,0.03425591415701658,0.0009093187331239933,0.0007852530803198325,-0.013019476485330563,0.03343704681827689,0.0016499629776069464,0.00013615308765928954,0.004656104806754293,-0.018363862893113755,0.014654896942001028,0.060600782841597846,0.0006124993486213467,0.006622501201903266,0.0005940079811099912,0.00789811134423401,-0.03677615507141434,2.241257819070794e-05,0.0056427694211523445,0.005176565033960419,0.01234616012486075,-0.033919892126355704,0.00012455489703564124,0.04323621903679666,-0.026082678419020518,0.1701740388411279,0.07561368774443444,4.314402896502519e-05,0.010404965373846643,0.03264528583752944,0.028287449286753707,0.02264624776340661,0.0022508660969734226,0.00761671917856383,-0.006179290601867604,0.03957781232452173,-0.1314198754009765,0.00012848101025777372,0.0026140028294847945,0.022961983791555375,0.11748138359445323,-0.004767022926621874,0.00030265551032526656,0.036279868537616104,-0.008371053925533134,0.05680811462054849,0.0017306497600895789,4.150789597969575e-05,0.01271205058946512,0.025730967292617635,0.13131582387316987,-0.1398587599485733,0.0003229429866627022,0.007595225685511005,0.06338692676435545,0.9819956807110537,0.04076151839413231,2.6786770065672555e-05,0.0056118678830459,0.0019505769493408447,0.019969848297483824,-0.012820793628683137,3.263397909853062e-05,0.010030985603375467,-0.019562758607659766,0.06308180590623128,0.009482448483141167,9.989614613513281e-05,0.003720151157734471,0.028077305456069908,0.20751232659341273,0.004467255982951024,3.1253877326540254e-05,0.026303533515966926,-0.0013543534567070543,0.0036423002026171915,0.0008480689364277564,8.243918028855423e-05,0.004686149486320015,-0.005376693228733552,0.020752560656166368,0.03434534839785503,0.00011846557368223156,0.008320719432760441,0.027275788909700817,0.021953945804975075,0.0019672267262932446,0.0007101339802373747,0.007277023228823098,-0.0030700581929532086,0.012651726433212855,-0.14183081581772047,0.0001021369356928193,0.002210121254622967,0.052093069055943485,0.1807700362259866,0.03738978415861671,0.0018495780988648743,0.018624271001029105,-0.01431919324418622,0.1498572977189117,0.004115436036258424,2.4571000934537145e-05,0.004660031640799828,-0.045017482777934596,0.1326708134435466,0.025739704863526395,0.001109371705306052,0.0007064614604156579,0.025349526801794642,0.17816610746841574,0.018972568736421648,9.474807786792991e-05,0.005878547804782896,0.008134347517350737,0.013472148287069094,-0.0009160690215028266,0.0001425053779583072,0.006111139578882381,-0.0036968538401685996,0.006370390331437914,0.0006876700574206286,0.00033309656241676486,0.0062189511897144285,0.0024530592572902334,0.009662548721413389,-0.015696092711714214,0.001967735332054548,0.008771548997528777,0.02782131667254093,0.09709941272545594,-0.052345087405436704,9.192876945665482e-05,0.013030675834616905,0.03054872381229673,0.04601506072215883,-0.03304421208031213,0.0016503279860262355,0.032895704451445504,-0.0353992550010084,0.09610363007470152,-0.18179706374395999,0.00014593866403156346,0.008849795555788386,0.07916594826570088,0.18830645733979942,0.14725291394920925,0.00017042510935828337,0.03954664504956325,0.030814035248045418,0.13232649336524505,0.03974613278655793,5.683497799027422e-05,0.013259065958917696,-0.012735236249869941,0.03490196474947877,-0.24621299750056827,0.0034583997276255744,0.01163993875479537,0.026851599287465562,0.16004923542069605,-0.00829190138669123,8.345591525877488e-05,0.01709405943765741,0.023073164592253403,0.13120037524541858,0.042290226373073,0.00012753602336660613,0.02559188149882735,0.011663394955640874,0.07076298384741804,0.00247415019305051,7.795923047862878e-05,0.00790499928948788,0.011240789458582874,0.047120676007513886,0.0031452642527204982,5.99560062292342e-05,0.006109931583104185,-0.04433083709837624,0.0915074375067721,0.040105040669107396,0.00023619947735494494,0.00288946068942534,0.028941700320362744,0.12481027174363586,0.048446909244125924,5.766178592195361e-05,0.005090494089398329,-0.03513107015681943,0.37267966940632646,0.10606468432786564,2.4321309999972157e-05,0.01144586995229362,-0.0030283244489127496,0.008184220334407862,0.0021584015026029865,0.0001293403567433739,0.004150281828577423,-0.024330105963434382,0.09568791988777928,0.03425909481350296,0.0004007881363037789,0.02052899929344963,-0.0022595038758100863,0.010467069911116499,-0.024684436328041782,0.0001236402178841818,0.007394686774881516,0.003337202367836683 +2019-08-23,-0.005401982586506269,0.035164235506229276,0.00012401364079109994,0.00016245705786769102,0.005294430057366216,-0.008990803459037919,0.034561001966042795,-0.008265869589407884,6.241984786862951e-05,0.0014475523645682993,0.01475563019185352,0.053453551790939524,0.011852107741852181,0.00012769632508007406,0.007715357169535756,0.0038254342244812725,0.003777174548781154,-0.09400074829242316,0.00034180746282507987,0.0083091820381916,-0.012140782184939537,0.027739517239141157,0.005466256238020046,0.00022900530406240704,0.008933767348234617,-0.027432823230459116,0.060594234422538834,0.04526486424303918,9.885210961804795e-05,0.007711555018206506,0.07455193011851645,0.2231391239469681,0.06633756757252185,9.803316479540149e-05,0.01611579609527825,0.027993654606430475,0.2023937147291089,0.02841323447475396,4.743088114782676e-05,0.020287386502598672,-0.0021464720112082812,0.0016535510770551791,-0.04967823431658476,0.001001042236876573,0.006553550561992943,0.005245006153203999,0.01311564373583098,-0.00011409994224843572,0.00013983576966155144,0.008574978653172858,0.0063646864825291066,0.0037300130102887745,-0.016426848633583863,0.0008340479653978813,0.005365063260822884,0.01383982378884192,0.1844564524497019,0.03188520704188166,2.2359366682917588e-05,0.0060367222536551095,0.00693552288839292,0.019851935988473346,-0.010002477164542516,0.00010378327733580857,0.032524131735183114,0.008834351488822202,0.04744815142319884,-0.01655068873179474,5.241036637960435e-05,0.0001942613084495712,-0.01032599980975563,0.00953853227285456,0.022076643369483975,0.0021114146561678963,0.0003873693599973861,-0.05244148314982959,0.340691905057523,-0.11525215692844626,0.00012666751746087906,0.025775692680482486,-0.004368394440293629,0.023193021657602144,0.00034100598143761967,0.0002916572281881305,0.05291029144880999,0.06091780539533671,0.3311598911849023,-0.03402427931443347,5.181642831857474e-05,0.019903857150871656,-0.03600318918802141,0.14744978659588256,0.037489609841826095,0.0004024237759166432,0.004950468189055121,0.028348207919062257,0.4297838362989263,-0.00019535131660004842,2.7371951548005896e-05,0.02693582405149892,0.012825263378398217,0.13951987366892096,0.008036211743190295,3.071227071452107e-05,6.288139075573515e-05,0.014597184112329823,0.03756803683162587,-0.04001418933123012,0.0001251622439022742,0.000184205227957079,-0.00819719485082569,0.054097198954775355,-0.0040229390015500055,3.500119368857972e-05,0.0025063030665239605,0.010376363408173672,0.030446308905213562,-0.032685789181708766,7.555929662058751e-05,0.012707468943284311,0.006380372844471003,0.021594538248868613,-0.018366875216063224,0.00013509856359469516,0.005929608157445033,-0.04780542215583222,0.04690911345875741,0.0013852121074514113,0.000582499415378335,0.016128349374801513,0.003016528692913318,0.012273828422296594,-0.012603571812734145,0.00010344593319907304,0.005767054945489522,0.03164004932160016,0.13124778914485746,0.010792682617702231,0.0015472636759303537,0.03210536689717903,0.00790673369879011,0.06601519137391026,-0.012117951127315292,3.079891523586042e-05,0.006676537359277389,-0.014001506050809414,0.037607663959657374,-0.0098778405680525,0.0012172216396485979,0.021559695317594062,0.007999306790510615,0.06057366032498213,-0.11234729821411402,8.794156269042876e-05,0.006479408487844905,0.016094672892034922,0.023969015991399948,-0.004715215298683026,0.00015848104844124464,0.0027085814429523734,0.02047454194903345,0.03321258948513657,0.00843568254598176,0.0003538468802144948,0.007701242397943939,-0.04068068300188997,0.18173566024323304,0.11503972864226615,0.0017349957843378525,0.0020377168338773055,0.010322786972760057,0.039803604036989286,-0.00913571623697394,8.320797219023548e-05,0.00032813458589010455,-0.03095328512991236,0.03556851416247683,-0.00459743378720924,0.0021633073046348292,0.02867743391329843,-0.028464531669811804,0.09375897527585951,0.04026904267842471,0.00012028382415517785,0.0007552571062328678,-0.0063373728343865746,0.01755800472510717,-0.057512606356458995,0.00014631689366542778,0.018533699926533267,0.009574009058500286,0.0489220215702817,0.002742052596771852,4.77642941592593e-05,0.013183754903653476,0.03615603267933885,0.11280647731744987,0.026040367673177904,0.003037839262035173,0.0021500027583630644,0.030551023232938682,0.16526108168609363,-0.018779617133545083,9.195931766339353e-05,0.01378351222266073,-0.0006787730493709439,0.004149581420906221,-0.0008845314823275547,0.00011862632716514686,0.0030233753112097156,0.012896363169127147,0.07037361874814836,-0.001228182405515817,8.667743869149003e-05,0.005145238319563577,-0.02602875401822424,0.12049630279345441,0.011325525842173778,5.429090141354528e-05,0.002911353015828415,-0.018510646039676712,0.03190944238407203,0.005349076546380494,0.0002828340910454497,0.0018664472111155337,0.006063853458190531,0.02271978291820694,-0.009060649500873852,6.636802527921031e-05,0.0028937545208611855,-0.01546760355453258,0.19408943800393333,0.02488689928921504,2.0561387374692363e-05,0.004238809476869503,0.0121406589146976,0.034735377232227395,-0.0027990951781466573,0.00012217411528700256,0.013711089754332181,-0.009525193196689435,0.039992555465042066,-0.001030160685777195,0.0003754244975729494,0.0035213905031773714,0.024150146241317377,0.10169493786192106,-0.20505319704551667,0.00013601669742088751,0.008777563817861468,0.0034926297406892163 +2019-08-26,0.022347026310833525,0.1824777197731528,0.01609963076393583,0.0001295079648874222,0.007252472625877072,-0.034580137368721175,0.11163085346864664,0.0007704560122257625,7.432809388193072e-05,0.058912959950526284,-0.012715057461034953,0.04498882482505895,0.00017323174215369902,0.0001307407231373534,0.014961107364008503,-0.010095647562292342,0.010525122333708763,0.003248548336491251,0.0003237239902900062,0.0004940517963755988,-0.0032581491036958446,0.005999584829789379,-0.14108451520574417,0.0002841499141464053,0.006204910178284243,0.02449611594860298,0.06824627813898612,0.07341487646169086,7.837273397159787e-05,0.0044734382705163365,0.01738348472353093,0.059491665887547375,-0.09094454741905454,8.57374505227815e-05,0.020190833604333453,-0.04244910727599197,0.3337092036350939,-0.02900396969762437,4.36213388627237e-05,0.01284452128169553,0.01212670170783675,0.012218616569753326,-0.029228119708736643,0.0007653594433141886,0.0009917029051128513,0.03978249185066268,0.11076051622979985,0.024581717655891896,0.00012559400153163813,0.007582732972907531,-0.022816498467966025,0.017209951204169013,0.06706617867380185,0.0006480279168001819,0.003383177024592064,0.019351876197357166,0.23704982088120352,0.07160631535058866,2.4327990352632963e-05,0.0066659350022733365,-0.0013709063411420903,0.004156279096107432,-0.03701301190087326,9.798376434459997e-05,0.0033177735098131322,0.0018797697482222505,0.010271704278103819,-0.0032084478686846747,5.1513844991723415e-05,0.005535294176593446,0.03516928718814694,0.028955395021693513,0.0419071034545667,0.002368956273594118,0.004366958952216838,-0.012062142586213659,0.09437402979344016,-0.012887296854172545,0.00010517779596635209,0.01817997393145451,-0.006366965209142453,0.03625680876029192,-0.035097939194645836,0.0002719262495261716,0.06616009993462499,-0.016941556876494682,0.10068654720615262,-0.037089308431717274,4.7396123895403334e-05,0.004048269933746112,-0.020954812579963546,0.11972554240671973,-0.02781702668892961,0.0002884587884097729,0.013801227197413894,-0.015948175769016925,0.22886479693975084,0.009163492167409753,2.8917600151780158e-05,0.004034770112073852,0.01181653717894231,0.12822844317627247,-0.07019256796369472,3.07884315518399e-05,0.0010066321748223761,0.010209103214977002,0.025667747997156543,0.015774453983597884,0.00012812166787084394,0.01086326257862953,-0.025288211442920577,0.1830063590319749,-0.016454338132948644,3.191863493027839e-05,0.037994368294942904,-0.017869511711545112,0.057032516861639695,0.010814518320992244,6.946523835267057e-05,0.011483559148349844,-0.010070549090636068,0.04635223813571249,0.04081722103257513,9.934157413075235e-05,0.0015299471337272455,-0.04012548781270327,0.04324071413797388,0.021468175858599035,0.0005303994056446913,0.006235705080754108,-0.01361535134169314,0.051253485288455705,0.03738256094017391,0.00011181278337927846,0.011021728443141901,0.04445648479149289,0.15470050697224,-0.1362070770119879,0.00184443161380522,0.014890305162440425,0.011128479115914398,0.11027494602280363,-0.10777134534780862,2.5950226721611853e-05,0.014063016093661463,-0.014123153632911332,0.04177286151957242,-0.001997710465628253,0.0011053726810794533,0.01413612266573237,-0.040929174836931904,0.3055905034850458,0.08071046102812625,8.919053690323859e-05,0.010368373343980967,0.006510615577458331,0.009562595593585518,-0.04414706656399543,0.0001606910355806113,0.0036949891602790505,0.015432826571089981,0.021878133352691252,-0.09205527798023251,0.00040489193336043814,0.0010210901180995936,-0.010266857779257045,0.04225562896087339,-0.029596967961615164,0.001883229795686096,0.02930720579743496,-0.0024811401188387806,0.008448585224405163,-0.06629924697002997,9.422316150478555e-05,0.0025686606628800867,-0.01658400140981928,0.023750136521232725,-0.0015826757205240362,0.0017358028912512044,0.025590789267382143,0.002455927946963629,0.007661069140342104,-0.019837055935155928,0.0001270112750371345,0.001213944942128286,0.010443222839749583,0.02269783178123221,0.006586410317083102,0.00018651361868688416,0.016635665784447463,-0.007710926392435941,0.030950416584846496,-0.08760095459417205,6.080705686775416e-05,0.0009691278624650711,0.003452955407569404,0.011523664837365163,0.00024326515063589527,0.0028400004527475253,0.0013276298448995822,0.04874868718498921,0.2994051832018451,-0.0057524305861787195,8.099238367305359e-05,0.03341139098420838,0.003321070700960721,0.01936527106907226,-0.017812338924343286,0.00012436991145518952,0.005660850919589521,0.003134088116712042,0.01778314234975291,-0.021089376029953578,8.33587889605211e-05,0.012441769922489855,0.020221141050397188,0.09356781794616265,-0.007272630909408546,5.431584644455814e-05,0.034867593904365675,0.00569154413167923,0.012210194316969968,-0.0033148237636173136,0.00022726728629533387,0.04937422717308483,0.010221715788957926,0.0360273803296598,-0.003207982516774439,7.055137673926596e-05,0.0029362806087384194,0.006611288099857963,0.07478281595350811,-0.016482735336188284,2.2809488886885556e-05,0.007554267676023739,-0.005629679952978555,0.021164976668805117,-0.11363490126600795,9.297686026599432e-05,0.005701723380919237,0.011969981516136685,0.0458525677222358,0.019582589057591696,0.0004114885827782231,0.0033672466310956423,0.01861484058103498,0.08843769987778714,-0.0024293893219420075,0.0001205573459457011,0.012501529041789784,0.0008828115643073187 +2019-08-27,-0.051874052901543864,0.3647202683394931,0.16249500266746822,0.00015041005351870468,0.024644238196319612,0.04934348194873794,0.16214265370613104,0.03588384683307999,7.302020408337245e-05,0.02565615227208348,-0.019072135354839658,0.06484784797212181,-0.023766675010503883,0.00013605075509778999,0.018020482568587844,-0.008467168860196312,0.008962798350161425,0.005103425577365125,0.0003188324025062382,0.0010540108192686193,-0.006718697889990754,0.014316718134738851,-0.0004986488223421478,0.0002455497016650745,0.007697830367306219,0.021395978768260777,0.05319169651808705,0.03873000296915489,8.782841715719957e-05,0.010392136261253168,-0.06863193611926258,0.23448396584543224,0.11148665925878547,8.588215927085e-05,0.017798615808517187,-0.029841999908087204,0.26256377461959945,-0.008140571897803683,3.8975503296836e-05,0.0010407842068356574,-0.005913289240091154,0.004878582721843284,0.01709640089859492,0.0009347172029316631,0.0011495094224923425,0.0018673657078704523,0.004489000737304037,-0.04264240405055157,0.0001454593320168521,0.014979470854788663,-0.022090005268140863,0.016253041858362866,0.029765638599867993,0.0006643325376924994,0.005522733465069322,0.019394034232707337,0.21169314610244813,-0.05990474254904259,2.730135172157489e-05,0.009530512358106681,-0.03347904805422815,0.08996021049906502,-0.004187349479937551,0.0001105538001791352,0.02586421684700874,0.02287373762525232,0.1293204665401231,-0.08152231363178525,4.978880363331567e-05,0.012421477935513535,-0.03881415433813308,0.039499146516191734,0.11995162547457636,0.001916573104536481,0.0002644143904169062,-0.08023630212888248,0.5191255323393555,0.13344003456357695,0.00012718931352832455,0.011704289140100617,-0.016682684490781915,0.09667380668827139,-0.08389709684619,0.00026721777793598016,0.022336542547122494,0.010095942053782402,0.060913750595655305,0.0001559405156002385,4.6686623359696835e-05,0.025479741592367062,0.029736747117904836,0.14615648599359235,0.018064004178816873,0.00033532209761500927,0.004756479754614596,0.0061697348602082185,0.09032465111471875,0.0001794131950827232,2.8345912322722835e-05,0.014965749577291066,0.014000555883766256,0.13324424115319392,-0.05489145790576011,3.5105773034161765e-05,0.004186318912241483,0.02848334956679266,0.08812693985916073,0.05730468708127093,0.0001041130395648156,0.0011804825942665408,0.027036677569988943,0.16176654132669718,-0.011161389610368746,3.860619480882203e-05,0.04503255317606962,0.008127467040656847,0.019791080966835642,0.01828549378003358,9.104646402420552e-05,0.0004517515477368483,-0.003947606377841544,0.014747802794043287,0.005970571164678718,0.0001223925873963843,0.003979229243837259,-0.00582851236866328,0.005077974582451292,0.0011512869545268756,0.0006560587937419014,0.02001189665396775,-0.013587454930474975,0.05131523541634482,-0.035332271274444715,0.00011144941673952075,0.005130401754949861,-0.037570934813979905,0.11808368402648856,0.009586555525097936,0.0020421201081089572,0.005203057086463582,-0.017169571730811867,0.15389887721253584,-0.054719927949969396,2.8688391991870208e-05,0.010471435247158814,-0.008011050962397627,0.021286349242450243,-0.05281204024103243,0.0012304375633605006,0.00949675607095369,0.007675638545274565,0.052703551679340904,0.0014600934337034154,9.69840408672507e-05,0.024953414685876897,0.017032898343992357,0.02287534594243858,-0.050433551873086534,0.00017573823897744308,0.004210723129015797,0.018709513818187553,0.02769349610046857,-0.024881269588936272,0.00038778287867480423,0.030089940351986966,-0.0013533731062173467,0.004819054844073248,-0.050232267791297955,0.0021767372752636888,0.0010109416861985724,-0.011659375528272913,0.038716976595586795,-0.07389664894300894,9.661937522441835e-05,0.0013111837405217716,-0.029242065328557512,0.038832001030808014,0.01203107275552187,0.0018719552577538205,0.04270505084320337,-0.0006345684321736292,0.0022587412391841953,-0.005634763565729246,0.00011130842020859595,0.004267045873739818,0.05185022469909916,0.1405101031679438,0.06926393291081542,0.0001495903113967788,0.018991265019298497,-0.0291684718971258,0.10466795676204213,0.017293511141459543,6.801643360040526e-05,0.006699353037206824,-0.018423131442170382,0.06169410235728965,0.014422181561417589,0.0028303351109411974,0.01450286885098553,0.036098371864584304,0.1584106598321891,-0.02855643534284312,0.00011335580938262,0.011546935147171776,0.013303217331132136,0.0848836298891213,0.0032246283687511735,0.00011365630356479308,0.011820734173442092,-0.03466540652438122,0.19568813297848303,0.029385527721241346,8.378774582154328e-05,0.023308048169389316,-0.02392915149839977,0.11427874856916637,-0.017606461038852873,5.26270732495101e-05,0.003244925315665669,0.027060865161236587,0.056561594673241365,0.0032455221279042647,0.00023326491710269197,0.04051197807533342,-0.004077216384799127,0.017231451702645992,0.011688413871010602,5.8837778851278386e-05,0.0007880763068429451,0.04194097531303937,0.504492940271052,0.08508521422783247,2.144937873812945e-05,0.00424288378824054,-0.024883203654702143,0.0861141354478583,0.07330283905721977,0.0001010045208533526,0.006099164979953929,0.02914053410848957,0.11908879817222034,-0.10368691347598316,0.0003857043758827517,0.003201541838289519,0.03552876194659714,0.20362033394314275,0.004090090685599586,9.993801629556453e-05,0.02357419556000097,-0.002396756543762586 +2019-08-28,-0.018860325979023634,0.10859427468910016,-0.031458448379374504,0.0001836660346577383,0.006357514434695709,0.0070787598014439785,0.023063441531424107,-0.0375504226839449,7.36450547286975e-05,0.0015804384482512102,-0.022937780818591644,0.07212267669806459,0.00014253812809821544,0.0001471217108737527,0.0004662709544031535,0.0005503902612983504,0.0005068564615658373,-0.0007102464046682799,0.00036648281084846347,0.005440039926330646,0.014039609257334171,0.036171851786630974,0.010296295635952593,0.00020308696554188584,0.014691056216731183,-0.01283982408616585,0.035228402513499964,0.013500336274178773,7.958163612735608e-05,0.0035239773177852454,-0.00013994513106085918,0.0004801190322337237,-0.03366536293819877,8.552611137501825e-05,0.008362053582437943,-0.001691115813977616,0.01531594339959011,0.003063056157780538,3.786415004872345e-05,0.0026617584889286937,0.005723374170269734,0.0044459052778845765,-0.013125590047842962,0.000992742741120762,0.002579953860973448,-0.03030154606849433,0.07201912612220729,0.012908923594025554,0.00014712240884125351,0.007761012409526943,-0.008394860960570476,0.0064420711945422674,-0.03048528873453735,0.000636960271991586,0.0006127005270779719,-0.005040626130849224,0.060368205118518786,0.0124910741076029,2.4882786453856435e-05,0.0101401601717114,-0.02898658897709264,0.08485971877777183,0.017486087477482024,0.000101472079834634,0.007195139667820538,0.007161182765940553,0.03915486764846952,-0.01684351435605313,5.148264079203316e-05,0.012115619595393727,-0.029871921563289112,0.025568083434291414,0.033039313580903236,0.0022787042271970493,0.002575819082799354,-0.0010593846878286708,0.007090504265797604,-0.009441426850785027,0.00012295004061985354,0.013528892855926612,-0.024464456842218926,0.13994486868275977,0.008344697623277973,0.00027069911193403187,0.009797796980609032,-0.0147857548935438,0.09227708681956849,-0.007762080751344653,4.513470238551411e-05,0.001965069424524897,-0.01993926523892539,0.10566562543804785,-0.0946536518521712,0.0003110013183341266,0.00944640807767599,0.08268648455852812,1.2226132072083318,0.06158951036221875,2.806568693747027e-05,0.0014199314501116677,0.01142062718192056,0.1195270293466002,0.0027037565725104265,3.1923135232445074e-05,0.006732734195666116,-0.056112854564805095,0.1644609297765668,0.12379846511920667,0.00010990624677044314,0.015369800192532933,-0.008119114158866868,0.06545869517165692,-0.028174090146961314,2.8650597266112468e-05,0.0010478289742599685,-0.011032259237186013,0.03302417968270044,-0.0025282277916474374,7.406444999495416e-05,0.007869362006174302,0.0028751167145069064,0.009844128385966405,-0.04069194528992033,0.00013354474586106213,0.0015159924717810407,-0.016787667520763747,0.01788674358145593,-0.0019787347278785385,0.0005364566579652849,0.013088658842477287,-0.0032106038891701176,0.011912660829455001,-0.06855327787684425,0.00011343941012265229,0.0024942570790279697,6.83508406768015e-05,0.0002346856068617385,-0.002803507198308742,0.0018692895573701267,0.025577674625431306,0.006910037145433619,0.06077095051164648,0.0009895745049549904,2.923927151196977e-05,0.007392884164487209,0.03710529259599735,0.1026342769205283,-0.03786251123781076,0.001181992452474291,0.01255925047982421,0.027076921565337544,0.1655150262947281,0.03202010604709615,0.00010894003307867367,0.022346156631002274,0.027408534137802105,0.042360248499265694,0.03326346383894578,0.00015271183522980574,0.011345009712756173,0.011373526486237675,0.014723407065074919,-0.18749341515755508,0.00044339494517500305,0.008298275089659449,-0.02033961489600586,0.08861196145398408,-0.007963300271168943,0.001779101464262512,0.006295824859994574,-0.012483692489034953,0.04605490196325548,0.006589640327089641,8.696761705178113e-05,0.0018911444978781432,-0.06498153521508945,0.11248506784283523,-0.11003152824236259,0.001436059005329276,0.0050776802675353856,-0.0020238973309453716,0.006593870206337046,-0.013664425223927329,0.0001216085527258139,0.013570160024801492,-0.018030750743026062,0.04160275845032682,0.00453145466228633,0.00017569202908275196,0.021877894694516876,-0.03998136977020981,0.16504910591279037,0.05964631530040076,5.9123266181040354e-05,0.023517384234074488,-0.030009134218428733,0.09942037554865828,0.02995624599371233,0.0028608568318257213,0.007809504618230831,0.005667216655547537,0.030277128940996042,-0.07333200709462116,9.310986483731674e-05,0.02639052073564743,0.039908579036771676,0.2266137776627504,0.06900694367044963,0.000127714656205285,0.007209169452616931,-0.0029982690798548138,0.020324937011463488,-0.00621050470310277,6.977343375748648e-05,0.027349617634674268,0.020031494616967196,0.09896071801576606,0.014985808035699823,5.087423735711225e-05,0.003542429843863359,-0.04427832626719238,0.08606926953567572,-0.026514557835809888,0.00025082595414891584,0.005905477736848953,-0.029802656849747547,0.1417860121553151,0.12238492724669893,5.2268010587658695e-05,0.0034151752188898536,-0.01846085348690214,0.18682963871531832,0.024660599885641215,2.5493959236229623e-05,0.013767072485806409,0.00029392411669594814,0.001059659266074138,-0.03966761166965874,9.695672693300198e-05,0.003688084631906113,0.0041417928772013906,0.017094782706381293,-0.03189409714881285,0.00038190273009602567,0.015586604501829873,-0.030938533679927743,0.16240950666254725,0.04962060715404885,0.00010910887439964043,0.010711944110572406,-0.006018728867349248 +2019-08-29,-0.017834318012253728,0.12537280898779293,0.013768038427350467,0.00015043182837474908,0.007707491727512874,-0.022082912476331765,0.06573819134757315,-0.05689170601140302,8.060261401035462e-05,0.024605369448138098,0.00716599706829797,0.023137922603777325,-0.038617563475968335,0.00014326808853560278,0.009529950470671272,-0.03453702409144808,0.029432715128905527,0.08578296596033003,0.0003960248542475727,0.0009268633716333825,0.0027913793343108013,0.005864554332419076,-0.01621086376361972,0.0002490471734226244,0.00020029771890396728,-0.012745916823580507,0.03537777659272916,0.010937959404848641,7.866603931220208e-05,0.006480468241077864,0.011635863491637767,0.04595586240471728,0.000339766001145814,7.429294124599667e-05,0.0290108224791707,-0.055157794005466707,0.4502789027911555,0.060042060019131066,4.200721638526119e-05,0.002577616821227458,-0.008166255967269855,0.006903013781603699,0.023269621016576324,0.0009122818503068612,0.006155534277393844,0.012217883274507568,0.026829775765453926,-0.026049828414826715,0.000159235837028026,0.009084760043548122,0.00977033713511713,0.007689101713032348,0.005949936786563214,0.0006210953847727419,0.005127038973484356,-0.013602669559530779,0.15944728733973726,-0.026398839891049346,2.542317591465233e-05,0.00810881495963554,-0.009760229914283658,0.029199736101457607,-0.023131722143900853,9.929609274618982e-05,0.0025150370220063077,-0.00779554808285175,0.04107282295047597,0.012213393976342742,5.3426155006479054e-05,0.004280642584134539,-0.020608127645914853,0.019941924704452895,-0.06951786360152955,0.0020155539907944046,0.00403405870846457,-0.02935841704999334,0.186084325547885,-0.0689143236410823,0.00012982996816254255,0.03317205229038337,0.025318941303988284,0.13774552577211374,0.0067528636309466565,0.0002846271163368908,0.043266928295015876,-0.06349870520052515,0.3588189814353686,0.07438237193799213,4.984830742534992e-05,0.000891009534515099,0.00442769941498089,0.02814778918133493,-0.05625185316419021,0.00025925112395595417,0.011188467515393298,-0.00781113862528963,0.09897184761145202,0.007514214862195525,3.2751628476009196e-05,0.018317818023844478,0.03200022856327081,0.3081568627466803,0.08006883641570006,3.469468472311583e-05,0.0014913608935237701,0.01705077252178036,0.04251032499211743,0.01296510115459462,0.0001292029385005672,0.0047174714073909985,0.014624224335246102,0.1051020893820056,0.0001836357641931877,3.2140591637501307e-05,0.045697125434950914,0.024795546274259783,0.07247291071708505,0.07198799493157383,7.585345358611956e-05,0.006922569702270568,-0.008266118259553177,0.030975660133141954,0.03628945457760407,0.0001220196118925399,0.00889344080929426,-0.0777408312133014,0.08892887959223245,0.08231457324334127,0.0004996684412287849,0.06674025049601404,0.009205914403842476,0.02903909810196173,-0.009441435590478997,0.00013343501774128376,0.003534763366140031,-0.02243280451333218,0.07365429581565791,0.00708642553614948,0.001954810507342881,0.011291973217154392,-0.03061033549514625,0.2872344688026301,0.012127495414122308,2.7403985548250904e-05,0.01065082936108111,-0.011730279342010973,0.03281669984571913,0.002963917296512532,0.0011686506887295012,0.011197274821688896,-0.012847098949053871,0.11546397145704403,0.005936815111534325,7.40942013292085e-05,0.007727294058142573,0.014404904811695648,0.023939031604742884,0.000491742385622296,0.00014201989949415604,0.005763369111470942,0.024493060215719602,0.0330312821946074,0.034057421727362966,0.0004256195142481019,0.0026503957711007343,-0.03281108573754535,0.11602434839030518,0.05635337053514473,0.00219190539097425,0.008764594735677532,0.02822752315266273,0.1148692281691311,0.025376007735682275,7.88423280737406e-05,0.006052489383969831,-0.007725685010418297,0.010371968368419722,-0.023066969273908253,0.001851624870248032,0.020988188615090622,0.0055431320547430106,0.01814274629122927,-0.00583531921425225,0.00012105095890399595,0.00653172609369533,0.02237798774687711,0.05373846198049662,0.006634339720454194,0.00016880922468939525,0.021865453687806978,0.019475708327354943,0.07862328152705522,0.023362324443644212,6.0458312448089594e-05,0.00280036681348236,0.042317972038260786,0.13678289785908948,0.06599857299715907,0.0029323182602218954,0.02806376213754035,-0.0030919367167091412,0.016444333017083645,-0.012314744906807914,9.353085492894295e-05,0.020646778862290997,-0.0010264427311254373,0.005884661016861547,-0.14469941754214977,0.0001264952033036318,0.005757898505682006,-0.008726243311226255,0.0611691726217074,-0.006169013246590361,6.747508038449038e-05,0.009787356084845326,0.012533564216772286,0.06338456993128168,0.008224713316390957,4.9697945725225666e-05,0.030561962393972967,-0.07912489656328252,0.14986994162488645,0.09251228081698375,0.00025741153904226214,0.03037904313852732,0.04859810441672111,0.1734884779546896,0.12460772910175498,6.965672774320115e-05,0.022726042140005003,-0.009543420275304887,0.09314063196101681,0.0029620653768387298,2.6436025065022343e-05,0.0026919931777152485,0.012851361651920216,0.038362723133174605,-0.006471805017310059,0.00011709778560617513,0.008046369786815267,0.02903188799921591,0.12342633273344021,0.07885139129841105,0.00037076217852544027,0.005275381992899267,0.07668371568705298,0.35191056568794077,0.1785002175921301,0.00012480806157958194,0.004526275314185531,-0.0024132834831389316 +2019-08-30,-0.05346277179149487,0.4404605708651017,0.13643348865277036,0.00012836038697111983,0.000862919613278029,0.0010243987432275198,0.0030557747652014723,-0.04429095985592342,8.043743687542616e-05,0.005824254368446524,0.0006667850382306403,0.002470865372973664,-0.028794682562696457,0.0001248343107131291,0.023029920849942494,0.026645971497658925,0.029196460407021,0.0822146571376631,0.00030801311705567873,0.017415939799176168,-0.019166358025782163,0.04662595994457111,0.01697254136213008,0.00021508473192956968,0.006496185302422452,0.002442403830910863,0.007002339192704077,-0.0008170201152647538,7.615897110612398e-05,0.0064811200608822965,-0.015186069020715119,0.0634805177220217,0.005732016105994923,7.019315521442066e-05,0.006348737284130251,-0.005049780059929672,0.0360999464365375,-0.08601126172623333,4.796942581467897e-05,0.002749664751449863,-0.0084564778869116,0.00808677996229025,-0.04119499287229092,0.0008064151493915258,0.0038205122913187845,0.011773934061116428,0.025938307103720873,-0.030736145043500463,0.00015872372887422507,0.018218192279363353,0.001201877547683051,0.0009283757302632381,-0.001653065521451466,0.0006327917404740993,0.008573127174568441,0.011160030955057607,0.12032087820844233,0.011143246771170902,2.764058277783669e-05,0.009537794135523426,0.040855432948721154,0.11525099346694953,-0.05319681729807652,0.00010530674214061372,0.015452036288752361,-0.0166941407789451,0.10045931579989355,0.002543762341963925,4.677735636214035e-05,0.003691063734823975,0.01831169893838595,0.016580446644234137,0.01401201560052226,0.0021540480493987364,0.01342647554576917,-0.018420798175093754,0.12151423186869557,-0.013612997207381367,0.00012474794672885281,0.006024100758323543,-0.03153210129134353,0.15989671507014477,0.005168991987747881,0.0003053666489674164,0.007994768646473758,-0.0019399007718235279,0.009617544093470175,-0.0002966310155584807,5.6816736643691615e-05,0.008990563705237715,-0.002226693785203716,0.014232297701328394,-0.016459808148115623,0.00025785305724193634,0.0006136194321257585,-0.02679289411123547,0.3231820258316972,0.0010906768528984169,3.440350259513024e-05,0.006635657456739443,0.004781869732716133,0.05875703914922762,-0.035734749998163944,2.7190647333365553e-05,0.003229794485194874,0.013995820284013614,0.03886355710461455,0.014477522635653082,0.00011600549586783396,0.008388192518624304,0.012319599983701711,0.06656917473210658,-0.004612252644952689,4.2748000881372054e-05,0.005439876763461985,-0.017798100930800795,0.05485008952928668,0.009588690346749237,7.194054221780611e-05,0.01856697206455436,0.01128604276063449,0.041232634882667374,-0.04668798909004757,0.0001251552864813669,0.0008732496293860999,-0.011737272268546711,0.012755576434885733,-0.019806282801680904,0.0005259478097353816,0.008396294601704959,-0.008110163197600133,0.02962729199713886,0.008432936633034861,0.0001152188787893965,0.0036795823016410045,-0.025216328087065545,0.08625998714331674,-0.010261581748888597,0.001876254003853125,0.01841271338359881,-0.0055954132254451856,0.05654510379930656,-0.0417254898186999,2.5445990146521852e-05,0.022907811453755055,0.03811863758186317,0.10808421801738682,0.015990112471002443,0.0011530452601413279,0.009803645840771749,-0.013443914972623768,0.09278167916023371,-0.05617633992706288,9.649152543161618e-05,0.006149648657280358,0.029372176860055714,0.03877717610500369,-0.01710558328536509,0.00017877440523945905,0.000880789498264368,0.043817203168249934,0.07100537547218302,0.10974525396518411,0.00035420716242427617,0.0016474361452791905,0.03614974427982361,0.1620357382383936,0.02837523393137936,0.0017291981352329348,0.01193915661886253,0.05298803617164158,0.18030081423838012,0.126459072823345,9.42910575044325e-05,0.005023872082973735,0.05388801588973577,0.07414303874308235,0.06529628366860214,0.001806753912226209,0.03174526697634032,-0.015400627064970205,0.0487070346064602,-0.03667569593293755,0.00012527452111594036,0.0029122898749256816,0.02749809653465511,0.06475100129180897,0.01614677046973451,0.00017215376285291138,0.003214847628309863,-0.0053775494575748544,0.02400132193616489,-0.006679120481425084,5.468436533231712e-05,0.003470612464594214,0.02598143247311212,0.08323291615034109,-0.07123243869249295,0.002958598543433143,0.013934377880930125,-0.02157672214960295,0.1056911324419928,-0.041299260256377854,0.00010155176793565633,0.009221994998676954,0.010016099112097198,0.05753923415186513,-0.0802803861161756,0.00012623951595141207,0.005561133250029859,0.046176948832910354,0.23316052828466938,0.05561718870572217,9.367396458446056e-05,0.0029354408450089444,0.036772684809705976,0.1822147702274721,0.03883947376030543,5.072115755836701e-05,0.006722207165244186,0.04145676084761627,0.08906164598541771,0.011849057501112713,0.00022695201503682358,0.0059682031582813915,-0.019580409940086377,0.08103221328869976,0.044750771404269425,6.008671407702473e-05,0.006801311173757301,-0.003717123614507433,0.05116300784481643,0.0009051673656670771,1.8744860855066107e-05,0.0157399312365284,0.016620661166895867,0.048630549485102745,0.029657020486979123,0.0001194670345775335,0.0027227683834021854,0.012471724446777998,0.05696989498458615,0.018203366720741698,0.0003450714739314664,0.0028617467909353347,0.010466546340643666,0.049357721662038716,-0.008240791307540499,0.00012145631264982667,0.0044894283621792486,0.0062390933099860935 +2019-09-02,-0.02203257342825198,0.12546220841949995,-0.1062676042848353,0.00018571153610304485,0.011651245474418192,-0.07508787550496389,0.2646121151484186,0.10966975442886258,6.808800652209335e-05,0.00577947891865412,0.005363262691303033,0.015710460712315244,0.00636401277257209,0.000157920079015458,0.0069761783079771746,0.03837429562710493,0.03705038460629383,0.11769928016178002,0.00034955502740064256,0.004424360948025457,-0.005217826438382801,0.011771471224674037,-0.023136558558767437,0.00023192985472291362,0.009715658662795274,-0.012552945705028129,0.029519569768269912,0.007214134190925459,9.285009803330412e-05,0.015321057391825956,-0.03521335142398404,0.14350096336731166,0.02317982816348352,7.20016418097751e-05,0.017441217651193545,0.020072003018387775,0.16090989764990254,0.01808722461803383,4.277663021908996e-05,0.022319898326799897,-0.01045055633247028,0.00926664154343807,0.027699998657232144,0.0008696847073971808,0.01239091208488111,-0.004830292771430891,0.011225264239826244,-0.014639578855917946,0.0001504661359548953,0.019958136538416712,-0.013329221231189878,0.009540567364821917,-0.04727063203475235,0.0006828965710791858,0.012461843857015712,0.01584384072171625,0.22460032724442644,0.020496504654338558,2.102194388730664e-05,0.0030422291244795166,0.015345139501634058,0.0458336878432471,-0.012936309993864166,9.945739413889624e-05,0.01435389137895462,-0.0026351789178816506,0.013754687763578502,-0.03546121531980872,5.392885374840156e-05,0.00548481036076443,-0.02262428162231792,0.019846497799009363,0.02743434454625224,0.0022233810017433585,0.007406570681958839,-0.008643893236629037,0.04585084082121596,-0.007868355968423228,0.00015513657446565032,0.005848361043685432,0.0019461757001921509,0.012602325257125482,-0.006197670617873943,0.0002391330446568971,0.015268877797411845,0.007585319032281243,0.03967768419186859,-0.041279690346036894,5.385034514266154e-05,0.020545123725980836,-0.04483251656067691,0.29146925032360915,0.07881286654134727,0.0002535053803175054,0.015804162800947756,0.0036212993477563195,0.05464418081254744,-0.026320053626087535,2.7501142598974465e-05,0.014215990184163163,0.004092385544111861,0.03653137787417283,0.0024597989177096487,3.74276188333799e-05,0.0004812615058897348,-0.019613953404094442,0.06450813507748722,0.0072366477176118455,9.794300135723047e-05,0.013877710589260885,-0.018140964271874973,0.12006862765660653,-0.026873560578305714,3.489982082142761e-05,0.006595505701976681,0.014051921031194054,0.034377841977522756,0.026701564663855808,9.06221730110287e-05,0.004517974637909551,0.01095913350000136,0.03766981896269049,0.03557698782115697,0.0001330243911815588,0.00479020624590052,-0.015950184897806044,0.012422403118419386,-0.14517639707875055,0.000733897933539045,0.04228065615348099,-0.0014154138646107358,0.004807337587129158,-0.014934831890083732,0.00012392668530498526,0.0062647925162217285,0.06471286959148362,0.22977258831943595,-0.01602193773484551,0.0018076386415366626,0.03147786051946838,-0.016514006008682112,0.15864859604308354,-0.015432253763546233,2.6766919967229855e-05,0.002184241503228735,0.00730413774318586,0.02132280020759573,-0.0034678031066864273,0.0011199431731633768,0.00014307106179286394,0.014423606323921213,0.10854172204846127,0.007179342097060793,8.849175250424363e-05,0.004637477092584232,-0.01188945785298196,0.01759300659624933,0.014176342252128589,0.00015950245518536426,0.01870873100057753,-0.02586650207762087,0.051174544539075106,0.024208515977670632,0.00029012665500144575,0.009652621691070121,-0.008706288244515924,0.03136929006884862,-0.07843077100500814,0.002151189614645548,0.000764426587588584,0.016507269135109887,0.06836426800914065,-0.039867153179353146,7.747051346558539e-05,0.001658506692715932,0.007072135132982963,0.012029419133450297,-0.0402086381783523,0.0014614470511579841,0.0035148837049806918,0.0007305100108685385,0.0024599492552748363,-0.03429359268000139,0.00011765653655533087,0.0019725313320590465,0.013313881115051326,0.03141096585555794,0.0012975025745801537,0.000171823974276983,0.0331162025064168,0.015415443393391659,0.06387654370340155,0.014526560436769552,5.890179596625448e-05,1.5845698635849918e-05,-0.014247609289588167,0.04231083160734362,-0.007621190174970274,0.003191600273502108,0.028362539808458653,0.015652792010830623,0.07663423501750015,-0.130476821550098,0.00010160370823527576,0.008558746235610135,0.036034733419090324,0.19259008458657859,0.0775196604982461,0.0001356901035946047,0.00434832987135835,0.06094367818829134,0.3447538917418919,0.12965803362624154,8.361191750236547e-05,0.0027125301311033637,-0.026629291362278196,0.14457371486803922,-0.06766000564662888,4.629324920634492e-05,0.0305623708983043,-0.032565175912521865,0.06099003106830055,-0.016528952609931286,0.0002603298499195964,0.006844883016884828,0.011708807838469497,0.0441116839410684,-0.0022717879491099178,6.600448052254999e-05,0.005516143377665281,-0.026478505494835346,0.2471152416667442,-0.0073538791197312525,2.7645549176413675e-05,0.03776293225215546,-0.002202541007503808,0.007033811363806452,-0.0004532868163950851,0.00010945667479689274,0.0011869004666617653,0.0017853818806298394,0.006629217876233782,0.00026749433791278663,0.0004245186759676658,0.0006818896485425601,0.009920797639009995,0.04360981320479289,-0.009885498242177368,0.00013029692324978388,0.00685308192064075,-0.0012739969710247256 +2019-09-03,-0.020909414682093185,0.13439023574503275,0.005340506852963634,0.00016453592758403478,0.0027868791226263907,-0.031221656204659883,0.10315373742550359,0.0014102152102040597,7.262422250946543e-05,0.01678694095286574,0.004719929435588992,0.0143180779059296,-0.047642927013183914,0.00015249232612540687,0.009327089076210191,0.003257209420335168,0.0033109063456047074,-0.01186588092292728,0.0003320218325545664,0.0030564501718214716,-0.03699866855327715,0.0884891757816276,-0.23674057074948895,0.00021877299786948065,0.01781375426486924,-0.0017927868132273522,0.004646551667843822,-0.0029124866721265607,8.424509380925351e-05,0.002711198137566922,0.020947072252435528,0.0720787193466137,-0.09933093855395776,8.527193618248249e-05,0.012107608622742516,0.009397688403865024,0.0968965334324718,-0.012919031646967994,3.3259170663042225e-05,0.010624436898230281,0.02845121721798821,0.024705359158081277,0.02228731974726592,0.0008880848596241756,0.012265449321825427,0.02879395792732919,0.06088209771981569,-0.023682036148496902,0.0001653764420986188,0.0010848160393793528,0.01544389423463683,0.011293312482791881,0.04789838274840108,0.0006684360003345357,0.0007657197027293367,0.00557548304202751,0.06871504032371384,-0.01315522436327175,2.417984335176633e-05,0.004453007779437162,-0.0028309226661701425,0.006488388316342719,0.0011274545950479085,0.00012961110402470708,0.005122769844906118,0.004372933168279614,0.025594659334712177,-0.00433262780587662,4.80933805082121e-05,0.0021591117373568392,-0.03025888689446584,0.023898124849633908,0.036570595949127475,0.002469517425008275,0.0019397050692021543,-0.003976674940591758,0.02661691022338501,-0.0010879524242873035,0.00012294604440462163,0.020326140574873214,-0.014821023504086598,0.08714172366409152,-0.09105674906198585,0.00026336634818417015,0.012205354090819895,-0.018933713442898698,0.10324038536084379,-0.1372563889592977,5.16591360739465e-05,0.01565972647482203,0.04547600848169087,0.24409457698081463,0.07217420156425279,0.00030705135299589415,0.01508801347409372,0.036230308487121145,0.4872721161344784,-0.12408930352619794,3.0855366073371095e-05,0.01788620071025874,0.020375044240721663,0.20761970083767267,0.019217237015203212,3.278775706151725e-05,0.0026624914148228552,-0.01433694419166896,0.036471716200085456,-0.019744286845110752,0.00012662607656112684,0.008511113193464178,0.023685141421019518,0.17855865810757415,-0.0011143478742944185,3.063990714284423e-05,0.008912220151429513,-0.032145855390392754,0.0818840832125949,0.04393147997559308,8.703679251971989e-05,0.014599481480971243,-0.005977247311365611,0.02495700693335077,0.01375799034090309,0.00010951089321998864,0.00155970616252967,0.027839210995684472,0.023728828788399423,-0.00274661197027459,0.0006705886232128242,0.019066820359862003,-0.018784349431669477,0.06635345352213973,0.047871651945604936,0.00011915674632026295,0.0011250613668138776,0.041994451182057205,0.14688946720812704,0.030699863695765318,0.001834933920258052,0.0012059322408044279,-0.02135347031575005,0.21071113308473963,0.01386220134646758,2.605932597006247e-05,0.023982235440269138,0.007764718522930047,0.023762825422594218,-0.0002848586114519051,0.0010683139740428342,0.021009033436157346,0.015578454156941195,0.11573315268136931,0.0028976823554625964,8.963801279266672e-05,0.006220630976925473,-0.0712464014658512,0.10109923679357552,0.24127830449963766,0.00016632611479163603,0.04127223754094415,-0.0038573706857397993,0.005490748330859572,-0.03397353524992923,0.00040324013484770475,0.013255571671705399,-0.029612002780206866,0.13568494545071663,-0.008104186405424032,0.00169155630503085,0.011075176873629765,-0.009120254740434252,0.03607842762136231,0.008735677746816745,8.110539384468094e-05,0.00821560451736785,-0.07718631163062337,0.11060447008340121,0.1038199939512683,0.0017347815754383397,0.029312227073615995,-0.012504953473537908,0.04626703350587908,0.004900987988019171,0.00010708446269226777,0.026201040415893828,-0.043686272078974894,0.11119908224882598,0.03201706144852607,0.0001592590641643168,0.010361556804364652,-0.027272495114241135,0.13614801184371633,-0.027586672421418643,4.889083942520235e-05,0.00037797203975268234,-0.007103045183389264,0.024590535768089256,0.001194840730319068,0.002737755399537535,0.013628526916489674,0.00020765525191515934,0.0009852473060473277,-0.0027141758707674318,0.00010484270904240984,0.015393427900165943,-0.004152316717510696,0.02397336102603012,-0.002824909776244039,0.00012560945480022886,0.003862720233661672,-0.009416392678906215,0.06404006586024368,0.005091324583143833,6.954749466284744e-05,0.008031830422925407,0.006708227253234683,0.03187888948933612,-0.11116199877765577,5.2887370798142696e-05,0.003921818852631639,-0.005357707307088634,0.009703495677433954,0.00040339895077723555,0.00026920316505990566,0.01959610537735104,0.010656010508742018,0.042839644394456325,-0.003101012912718232,6.18533404137367e-05,0.0005133015866924423,-0.004524423360809959,0.05480902140385371,-0.005048502204156355,2.129817904267188e-05,0.0029378871043473135,-0.02095961522235409,0.0642484000441128,0.0386097576917992,0.00011403284327439482,0.003828821844021401,0.00028055151671094446,0.0009810534341174123,-0.01765235584870117,0.0004507626563203397,0.011557584099264013,-0.009790598746368739,0.04943780497263157,-0.019967726544265915,0.00011342841619488755,0.025805137792271057,-0.004417674436795536 +2019-09-04,-0.004367446331324967,0.030264253559929063,-0.00879862923437308,0.00015261042223573674,0.015286072525433618,0.0010902607694374732,0.004425296856529189,-0.017634441336525353,5.9115110077289825e-05,0.007581265391744528,-0.0027168648066802316,0.009912211137363128,-0.024862789616846,0.00012679282796123581,0.0026951494566674087,0.011992233753608746,0.012175318778435853,-0.013135489188008522,0.00033242034864170453,0.006582184996964758,-0.004307286279151709,0.007933900971675482,0.0014304936728233768,0.00028406304261478245,0.008763876785337039,-0.01008567430412083,0.029363083175334627,-0.05203479528015382,7.499805903541939e-05,0.003189313077267081,-0.030710651897365982,0.09819979014189086,0.012505880360000407,9.176315369181476e-05,0.013548611759727608,0.001853318039191836,0.014758744335582046,-0.0016801859587194995,4.306249193078306e-05,0.008379340030117434,-0.008544860866638675,0.008305439670580167,0.022300696718881418,0.0007933907893154753,0.001382357101619895,-0.06306739156027197,0.13981596393699242,0.07451936692509323,0.00015772843503556879,0.0011507406278317566,0.005798497005846696,0.004432921116132027,0.004637387654880762,0.0006393663748535461,0.0031123993053418907,0.0002967426927307034,0.0033913111025476736,-0.0004074212933792812,2.6075652877360637e-05,0.007297053598334611,-0.008326607295144329,0.024075449605489112,-0.09919984705310224,0.00010274121901139898,0.0038163028808202827,0.0009940919719019137,0.0046952895182835845,-0.00229348329130161,5.9597220865491835e-05,0.0042246733078336665,0.04321272738738428,0.043407590864178607,0.028040290190800177,0.00194164114903799,0.003124456777101689,-0.09942088008565295,0.7599039660615379,0.12118689366499227,0.00010766412119869212,0.03837512326344325,0.07030293845198989,0.347073144319212,0.05934421312335331,0.00031366112746809843,0.03136582269508977,-0.006879834105936721,0.04163017662381375,-0.005327062624626056,4.6551177273060376e-05,0.017576981834995925,0.04588843959373194,0.29031356756058124,0.05470254892452997,0.0002605090198017126,0.026755248913182896,0.01591011658217162,0.18706525620876444,-0.007001034088570825,3.529477845172894e-05,0.02000370932718148,0.0013915816939598991,0.014815821682616005,-0.04956141895293033,3.138084788828745e-05,0.0011666383333336847,-0.020340577777050523,0.059950530572837286,0.00203047809082461,0.00010929316674651526,0.01772024768157657,-0.024800272988153953,0.2051852902185941,-0.017364660007184455,2.79191771614195e-05,0.029008824169073674,0.013393148245284496,0.03749638053684159,-0.032780706517665015,7.9190066967695e-05,0.007117077144222334,0.0075102267357404625,0.028342406942043295,-0.11766450130681745,0.00012116157632151204,0.002135856025116726,0.05238470265742177,0.046303413610464354,-0.004346826240827899,0.0006466466544143511,0.033859556056726144,0.016423176521706575,0.05667095954893848,0.022531251971235223,0.00012197830770413172,0.006784273538754956,0.008903983305020775,0.027426199920422986,-0.11701147500663191,0.002083712870689985,0.032515722887616345,0.02422742287417641,0.2437473625185502,0.026199868064562558,2.5559331451073324e-05,0.007103334311600675,0.02790179508482311,0.06836858933045231,0.004932176533401841,0.0013342794448188186,0.0014470926858036757,-0.000941971258301425,0.007137693931749935,0.0004749728782163201,8.788310117487224e-05,0.009643046724328872,-0.0447287203492901,0.07537153133556682,0.06067259258427517,0.00014006335366340998,0.003134821912539467,-0.02421746603600516,0.035363117027875944,0.022564686187947863,0.00039308102050813397,0.011220092755447452,0.005291664251699728,0.020773874682925703,0.00519114820700611,0.0019743544128753726,0.00030768827204131,0.012190410146724213,0.04821833183236472,0.001825592548386443,8.111412855582196e-05,0.0008680670862014737,0.06795638691289038,0.09812848196450434,0.0857207090824457,0.0017215212652924206,0.01228503069129476,0.014175157193762724,0.0507649582046131,-0.028592007665013727,0.00011063177674088798,8.567427416866498e-05,0.03678884352764152,0.08660585161177314,0.014214660733954098,0.00017219846483584864,0.0003924045881602252,0.04936499042248963,0.1842578804918734,0.0969572206599267,6.538933353323481e-05,0.005365612496731993,0.01584987480530513,0.05089157890234307,-0.12299806707156521,0.0029518750422004377,0.008178307255062228,0.046233735763382806,0.2192480094372024,-0.0004826422693691729,0.00010489720057864852,0.0019224242999867727,-0.0014891782914097863,0.008207987484661805,-0.1424181959396783,0.00013157421738292261,0.0012120868276870372,0.022460005504717096,0.1316387169301175,0.00888390069175651,8.070025675715888e-05,0.012562212395997268,0.016447870120837184,0.06555067657473707,-0.17813748692270254,6.306376341321779e-05,0.016185600422468818,-0.041024371361040535,0.0799587346106524,0.021708435391522327,0.0002501528276389543,0.03238382216796651,0.017851273544614202,0.06944884165752337,-0.015441607743882823,6.391732254098056e-05,0.009337710448175766,-0.013002356632107947,0.16848271850037905,-0.06573327246306487,1.991122582392362e-05,0.007682657836612358,-0.008858743233305046,0.030522278863184003,-0.03114693255505211,0.00010145281986134356,0.001836061577481611,-0.012057222465992685,0.054696274208116166,0.010259855161172008,0.00034747014929818466,0.009441041312749254,0.001981808438901171,0.009414908632031547,-0.008916496904641762,0.00012056391986833404,0.0024327170659666324,0.0039164861729175755 +2019-09-05,0.02607477606140221,0.18621421249755477,0.04158444587325513,0.00014807929784628902,0.010697826742427568,0.024407282689784503,0.0814087296713267,0.011627835310487354,7.193810276582587e-05,0.0028159151306222712,-0.03103857997056709,0.09155960363283015,0.006202286077821609,0.00015681772330904963,0.0031087169495237323,0.019324160428589164,0.01978454775543048,0.0009570343634533045,0.0003296418655054033,0.011654710505641108,0.00022381251975762677,0.0005652859881443953,-0.00039667015489827504,0.0002071638284662062,0.004846286161298627,-0.005598891156665673,0.01566832002961532,0.0028059255857097796,7.802366222571935e-05,0.012745105916324585,0.018237512517833156,0.06246694238730943,-0.02342879378054652,8.566535312337794e-05,0.004251061610086116,-0.005550284460557688,0.04342311192665766,-0.005574678258308963,4.383216400355241e-05,0.007033022170576847,0.01920462744368356,0.015358923291841683,0.01875060718274307,0.0009642505645983295,0.008803003201493978,0.010356940478782566,0.025299008693855835,-0.009138851675691347,0.00014314950891141848,0.02299698197718908,0.018336694358106812,0.01302690553272072,-0.02537877739477442,0.0006880248757302551,0.002133525145589912,-0.006939077400227773,0.08351139554607934,0.0074606182300867825,2.4761604349913564e-05,0.0014868838665165827,-0.03744089857633716,0.10576218430294858,-0.09126809817698463,0.00010516394984047249,0.016757763925206542,-0.016901128712097202,0.0838797434452983,0.02321038292699182,5.671793806600992e-05,0.006625912269149643,-0.0033585168739764587,0.0034364077965415548,-0.01594109003059214,0.0019061883524677092,0.010005185251631082,-0.024322260651844025,0.1611710486594315,-0.0005620261970675245,0.00012418496362368017,0.009164870273146346,0.038940700952512945,0.23054375983359282,-0.008442850251257098,0.00026155234919790553,0.03325932996625515,0.032598154449706665,0.16516441248027086,0.010067576976997266,5.559522500737064e-05,0.00775997359121115,0.01542887032858016,0.08389894912165703,-0.0010475559593541653,0.0003030849805949354,0.003993324033407094,0.04273420926262118,0.518846172384868,0.009937969045216445,3.417962443552723e-05,0.021081567088746526,-0.015304165381403327,0.14916743232097543,0.01670442177892077,3.427814764967516e-05,0.008893469195158127,-0.009921598640277317,0.0314069301922705,-0.0495133513443669,0.00010176042709499846,0.009725950615719124,-0.043064128992801806,0.33107297982437106,-0.06480676951666525,3.0045836945616545e-05,0.02170785258015244,-0.0031691775766823477,0.008314035897506926,-0.00016981955820081886,8.451077052979178e-05,0.009285426642998282,-0.005358917463107852,0.023123595809175175,0.023049617531966507,0.00010596691581584094,8.946318717416172e-05,0.029689125965535045,0.029873610665578886,-0.0009888394318463027,0.0005680482903399247,0.0155010955371102,-0.01912580200338697,0.07791893286439992,0.04655443336831574,0.00010331483073953674,0.0022045715396770316,0.05950398157454237,0.19048607943636736,0.05945631174609242,0.002004942666133682,0.0005000291711276593,-0.011227958602161735,0.1161576873837276,-0.045634089498196966,2.4856217532202508e-05,0.00807816116052364,0.0018477786572238084,0.0056069445937280875,-0.10831053295933071,0.0010774446070493987,0.017965109921196726,0.029641195211258835,0.21993170556950345,-0.008296196305118343,8.974980478375722e-05,0.0017061978139773567,-0.010987691890012804,0.016424355033107293,-0.003022573832707201,0.00015789323929595245,0.005239680426261281,-0.015361922301814724,0.02292173343347972,-0.018638360295305932,0.00038468213733506076,0.018761149566507998,0.002780288762734079,0.01219325875113242,-0.012283531419015715,0.0017673414188428007,0.00037414035142815634,0.001945334862505348,0.006853080726046864,-0.0012812242065814371,9.10749397620647e-05,0.02009607988968962,0.06102985731847872,0.08534850787598122,0.05096450974013815,0.0017775573177645084,0.012279752531669371,0.00523918296281756,0.017590451160715934,-0.020860844577505946,0.00011800560158908861,0.0030888441771034477,0.013616087213565733,0.0356736396142013,-0.026456117127561976,0.00015472670602744318,0.004690469848169585,-0.017474752461760095,0.07173773002975521,-0.007122543591856905,5.945348641191417e-05,0.010786514519020103,-0.05438504874543114,0.1809667966842675,0.10442363003182267,0.0028483849414499777,0.000992806039023818,0.00789975456267272,0.03758891648179155,-0.13406130141386982,0.00010454285638009241,0.002441106182044452,-0.03758951730198896,0.19486559113634905,0.1413491443074905,0.00013989183724974851,0.01594303717577635,0.005150591941231936,0.0290807785832791,-7.24820491903859e-05,8.377217918071575e-05,0.00781597919434724,-0.024128920589925846,0.09974819495114247,-0.0051984774667693055,6.0796733161342237e-05,0.00866404311014629,-0.004127900523507384,0.007634558141716351,-0.008169810911992202,0.00026361778709773015,0.05400500560519194,0.018175722246113062,0.07223699897482187,-0.005098516473447305,6.256714785614653e-05,0.015212092264177298,0.009784242720165539,0.09820524727201772,0.006261446718063447,2.570536706164911e-05,0.0027944092658734924,0.005033643809583124,0.014346346043232252,-0.0016589586058611827,0.00012264508349877653,0.000367636491176094,-0.01284071131012331,0.05782620928075329,0.01385593407873351,0.0003500195719641637,0.005650553591216319,0.025806720817965673,0.12169413418697285,-0.008081549457428802,0.00012146047476684806,0.015110492256317982,0.0030368002359746193 +2019-09-06,-0.005385746475156615,0.03325842884735625,-0.023393985464463043,0.00017125007123664225,0.0071358792884404255,-0.0558964172458881,0.2038551071168382,0.04264449679211136,6.579197180418684e-05,0.007659766110673847,-0.022115591648765608,0.07136155880746821,-0.01499599384327298,0.00014336113766324278,0.00022762732049626938,-0.023118345254307008,0.025083170147076707,0.03422504757750099,0.0003110585745501811,0.005330908548875739,0.0442686837267621,0.09674015188455684,0.16610779678911575,0.00023943498985343895,0.004218437246581589,-0.020000461161484524,0.04831905032067515,0.033410127132245414,9.037917224413795e-05,0.0020956618070738994,-0.03340165450991957,0.1251929456515292,-0.05332898890086069,7.828489560529828e-05,0.009559358635358367,-0.01018520504144598,0.07096500830518322,-0.039616837754511296,4.9218019374910546e-05,0.0056707547804440124,-0.007710334118859086,0.006397606839628562,0.0180523788032422,0.0009293952262835654,0.010508425810648656,0.02221251427804973,0.051902321776040934,-0.13032552553891896,0.00014964865591794217,0.009190627567108974,-0.015080944177807979,0.011663651324440848,0.014108793067621892,0.000632001868661376,0.010383936883271902,0.00782733404725291,0.109866140220099,0.004718977128982206,2.1231114413966014e-05,0.0031424815299765764,-0.028797703135671104,0.07479211300207154,0.03094075551817184,0.00011438078830333957,0.036119883795895105,-0.036863268710274066,0.22427966941307456,0.15886332368046274,4.626640477278933e-05,0.005753773026897922,0.03575708102234599,0.027123154120490427,0.05104103808236551,0.002571253165696249,0.0059783999423777935,0.00047203852591288137,0.003238483634625683,0.005533943555122746,0.00011994657363141133,0.010898865948356993,-0.02692694897693298,0.16387775996138837,0.015664623913243827,0.00025443412582282535,0.0077101411620997245,-0.009297105469200546,0.0531935157999974,-0.12621094442413758,4.923228783425155e-05,0.003742528197679472,-0.008724491509341504,0.046273993151906945,-0.024268773373736084,0.0003107348429684399,0.01146609386909047,-0.03231846155276442,0.44227239652473277,-0.13021349834629684,3.0324320325981553e-05,0.014797271924741989,-0.005773018753626392,0.051673061480393745,-0.03663805250098816,3.7326776330373936e-05,0.003762340874883771,0.02025669967723396,0.05365681371136245,-0.025777851654649155,0.00012160923756844156,0.0012913922517267225,0.009844194712756467,0.06898140082640174,-0.0065820527499210945,3.296404982024114e-05,0.0009233816419969351,0.0062960867144920595,0.01853938120667877,0.005410026644391344,7.529269607960704e-05,0.021795284241940608,0.016080975232264257,0.05704299360875354,0.07615025048163869,0.0001289017072634899,0.0018191708045990707,-0.03175597432897851,0.03512952466170647,-0.02125826917309361,0.0005166884222984367,0.016408313990974473,0.02545211178917316,0.0906470598207706,0.023430712444679258,0.00011818329904918025,0.004614670987230609,0.0435608489959194,0.14178122093569362,0.02390883306472981,0.0019719540835670545,0.014272907356680778,0.011137902087634636,0.0963775741046047,0.004957824165385674,2.9717317234992084e-05,0.0037049336031657895,0.006664269665860469,0.017599541455651905,-0.016456610231496565,0.0012380052297624661,0.01248548080714528,-0.0059572591198319615,0.04209267079955082,-0.007838368484113673,9.424659120799694e-05,0.017494376034116552,-0.01647888473667992,0.024773061255660075,0.005556694254729323,0.00015699778520743765,0.005369456292979527,-0.03039784861404197,0.048514555210013105,0.040549254352170806,0.00035964556371443035,0.0017783823639167778,-0.036434878592252244,0.18491680906776173,0.052033891833942095,0.0015271836900417404,0.02512620843076371,-0.003246974537673559,0.014415409224109018,-0.00025878612174931945,7.226737463451776e-05,0.0013449883167865049,0.04833706975394624,0.06831550959401761,-0.024328073780660073,0.0017588880528762187,0.008627930149023952,0.041235351623252606,0.16232032862025983,0.08952902376344049,0.00010064977896644177,0.009382077220918524,-0.005503927255231662,0.013855493345648262,-0.020621171199491122,0.00016103158485861963,0.04007195865448188,-0.01673820809349394,0.07592640428330792,-0.020558023717129035,5.380591915586653e-05,0.011736324668464937,0.07465110494969755,0.21586873405936088,0.1953925631711082,0.0032776649246457706,0.02593548538538776,0.007508378737618867,0.040203832889130396,-0.0005829114541270168,9.29007633971318e-05,0.0029840818775985043,-0.015032309996075896,0.08709952303277586,0.011645668042980764,0.0001251614917910209,0.0031433650088640553,0.001298431169769731,0.007163193636228899,-0.03652056207471791,8.573555035189095e-05,0.008702130682551056,0.015314698044915047,0.06428088021771854,0.006272539257572648,5.987892821512067e-05,0.018452914531666226,-0.027942036830627924,0.05161002519549937,0.0027135773367947123,0.00026396927751185054,0.002504830125612752,0.01069017400294885,0.042312543336664094,-0.012960006557225479,6.282464153654483e-05,0.013687805780375307,0.02432089866831783,0.2901557901968085,0.026134587838360507,2.1626172470540748e-05,0.006421959474629606,-0.04791866202706983,0.13904619309181643,0.15260056674888595,0.00012046324140082449,0.01069179228505129,-0.013506912902015852,0.06242524043762717,0.012601516638939478,0.0003410545489849616,0.002188362740333848,0.020585035116537444,0.10120203094523172,-0.027205815355555215,0.00011650221436074606,0.03696751333957455,-0.002985676015906491 +2019-09-09,-0.023588779595613583,0.171358354327622,-0.004145472998171148,0.00014557499161454022,0.011684484425841362,-0.010942345601583225,0.0375543296881615,-0.00045233122257972976,6.991348310754422e-05,0.026697750817764605,-0.012221324917604475,0.04138829906269736,-0.1723455229676377,0.0001365959794041802,0.0043841319839911935,0.016628778436987717,0.02497550968285816,0.010745407443101127,0.00022470557283419776,0.008795612496639373,0.033057352799662425,0.07982914366273344,0.019615878772486668,0.00021667278945654506,0.008435754220302237,0.012006572642359228,0.04290418315092026,0.014041385036803798,6.110350948758205e-05,0.0018672048199006783,-0.01709519375567516,0.053286716373941174,0.0018356912252998987,9.413365540893635e-05,0.0009879180642304417,-0.011553492472393652,0.10282176366515543,-0.002301269742717217,3.853247020929971e-05,0.0028360138142303993,-0.009668563748107447,0.008557906644845261,0.0016848699348459553,0.0008712428099437891,0.00728926529813559,-0.039750888716066995,0.100164960800646,0.017216748921150136,0.00013876914218750885,0.0004241502123200616,0.025056014078513857,0.018363669083484597,0.060714869004897816,0.000666924826609457,0.00016833268873026096,0.007469831299077839,0.10694206239698262,-0.008281781963276077,2.0815412791307544e-05,0.002968682529220016,0.005162520628824352,0.011678958110001277,-0.04476884102732833,0.00013131330652883496,0.011311769610980663,-0.01290604765327487,0.06284791389671818,-0.0008138902263336986,5.7804841658152506e-05,0.0020941878438218813,0.024750290272324824,0.021740581505984753,0.010377046792834554,0.002220404572975692,0.0006543033429094467,0.051474637676467365,0.3308344853376159,0.09960151543357489,0.00012803674745758513,0.012245217574700542,0.046765965349222456,0.23503491612054175,0.01823750107210588,0.0003081099693923047,0.012194611131742765,0.04406332552810559,0.2920418730043946,0.058946569020985974,4.250040824998794e-05,0.009008824967666128,0.0038231795873219995,0.021615472485052183,-0.0014920023067730805,0.00029150551333780467,0.024397304948771986,-0.04591760391521369,0.638787602748267,0.07168026250208569,2.9829980522196607e-05,0.009874878278880396,-0.005714285513531441,0.0654175260738839,0.01467985843578158,2.9184316662296256e-05,0.007627580851247984,-0.014333930535540503,0.03232307746355784,-0.04441729830259451,0.00014284838944679117,0.0008981600047384805,0.0392320655441824,0.24560273794618415,0.025148188723254736,3.689778927086904e-05,0.009078850967655396,-0.024011695879199397,0.06288899636903247,-0.01687268366073026,8.464972517772612e-05,0.007032561361876768,-0.022981714918833267,0.07499599706375186,0.20747642984516873,0.00014011768238549022,0.0008307682975689111,0.023368754813118363,0.023837572666101956,0.007452012394484548,0.0005603367455236407,0.023170300395688043,-0.013914813757891204,0.04442845839893531,0.0016741775170615438,0.00013182633037058588,0.01423626275581649,-0.019776480532267993,0.05947539029220012,-0.0018322386230461094,0.0021341791863732124,0.01802524278045097,-0.022326840897623355,0.1746136392000067,-0.010860881892937695,3.287996216399336e-05,0.009410184119274507,0.040909982937171976,0.10082190344451952,0.017800368944779082,0.0013266173589345084,0.012944365532032162,0.028568631212681675,0.216251363303201,0.025388628271303622,8.797438146352481e-05,0.006342854298196436,0.009999095570699803,0.015579143268535116,-0.027397816202926393,0.00015148252460636295,0.005715309776000401,0.03166211644514633,0.04444443409574188,0.0482158765051927,0.00040890881681528103,0.0008046390085191233,-0.0025513614223517975,0.010211682725987988,-0.10140791922131283,0.0019365334934173225,5.910875886746148e-05,-0.011834232347089262,0.04324310746605702,0.0066714725879940115,8.780385162186012e-05,0.006867769461353094,-0.023654726339631445,0.03748059929076658,0.005647366302807132,0.0015688759065141196,0.011552449035707176,0.01292856851862499,0.04237840198640929,0.006599711511101411,0.00012087094059781951,0.005192883937653281,0.0023603202702448807,0.006524839698989707,-0.041648007337588576,0.00014664304353501274,0.01831169125590867,0.020398993750535423,0.08542815289794714,-0.02309998377475171,5.8280283226919515e-05,0.00758026906276508,-0.05075967510818609,0.16451807473287258,0.07253806726664436,0.0029243090823268714,0.0036907339846872873,-0.02351349424854386,0.15505229011927257,0.07711583507929767,7.543615744894252e-05,0.016036214108354166,0.023757734704373326,0.14253529678944626,0.010925331392651548,0.00012087692082707382,0.0012859155174919003,-0.026064269221121154,0.16314971525037206,0.03026409532823432,7.55627806899268e-05,0.021055821654405466,0.003868812741358358,0.015636863183102548,-0.021900818419680786,6.218354373232373e-05,0.002990235605443179,-0.030846898456110026,0.05652128252837205,-0.14909918209831147,0.00026609020616429323,0.007651257920171956,0.007322353294428619,0.032445921755003784,-0.03223449254825211,5.61183558434793e-05,0.005900365237220868,-0.01641376236257178,0.2089517881132786,0.01196178294747243,2.026718048005814e-05,0.0026722948614023665,-0.011530872256477946,0.03453166418007769,-0.006076100686047087,0.00011672224086629563,0.0026949159862737562,0.011576368747888881,0.04735404516236438,-0.06897755150242345,0.00038533924226016116,0.0024255380728483798,-0.005546614090215086,0.024387365248899076,0.0015560910988886975,0.00013026713563794612,0.009870687565417199,-7.318013737130872e-05 +2019-09-10,-0.001028013893746587,0.00630656115560295,-0.060210761791613554,0.00017238241340167685,0.0022705378154165186,0.029133041289098355,0.11615440802007979,0.01721116904324715,6.0181173938634145e-05,0.012226602055857546,0.060278623714908705,0.1938994734826851,0.2229510970623766,0.00014380828352200477,0.002178684688665244,-0.007271525120513676,0.006545304750760921,0.007490587338851952,0.0003749414830732273,0.0018337262909849817,-0.025011166726620022,0.05238141410999294,0.03126182920916406,0.00024983570484771796,0.00195434028383261,0.01741301957486808,0.0454143995319636,-0.04056316665591006,8.371962063535007e-05,0.015324775289680162,0.030363033172937093,0.11699702059460643,-0.004638274619885781,7.614829908009224e-05,0.006837189563750595,0.005409533880418908,0.04631568553685286,0.006062875419743796,4.005256768920096e-05,0.006723250413097192,0.006334757061714578,0.004764448839788063,-0.05139506179567133,0.001025326266295953,3.0406894035110883e-05,-0.04070660257919578,0.10880465371484487,-0.0006610860216466096,0.0001308215445865742,0.012859290932294378,0.027604595936765737,0.01694821878242945,-0.014138154181226145,0.0007961257868981093,0.0018729561335112418,0.003962480164159621,0.044491546335702896,-0.044354618706760614,2.654070106146589e-05,0.0034843976659618033,0.00043923581497945155,0.0012651519302838258,-0.2213111937811133,0.00010313500651825967,0.00839311355781817,-0.03231280014836464,0.17084182846555948,0.10079214657602778,5.3240509384586756e-05,0.0018996221853559167,0.01931082818514483,0.019508175394003784,0.010160666589699453,0.0019306663213227845,0.002091989126425986,0.09083735868370234,0.6235067414996455,0.1779566574691499,0.00011988792727433003,0.007412240530256531,0.014004857748939737,0.07448644387802271,-0.0007055505464772624,0.00029114523932814506,0.0033186198985987927,0.007631096569319699,0.04940842547286405,-0.006333742658039472,4.350577317623779e-05,0.02941513991835137,0.04316927995035943,0.23855076489759414,0.007303377609965243,0.00029825023795663406,0.012575422151169417,0.044605704572950634,0.5080440239723234,0.014859372969957325,3.6435043112931376e-05,0.006044987304434909,0.025477602103107847,0.32610644033207403,0.00794128875801133,2.610242664535753e-05,0.003268016112673638,0.044014201664016664,0.12355396732317296,0.04407723485783548,0.00011475163696843783,0.00118657234617016,-0.04926241646100787,0.38550860720677943,0.04199832220412941,2.9517121879951453e-05,0.009390317978636672,-0.006787038923476366,0.019718270837304312,-0.002052887111340273,7.631130749052911e-05,0.005441969151913886,0.008590041869138025,0.03084228797356668,-0.00174939816254287,0.00012734951297276967,0.0038341335990379156,0.028061300078450157,0.02653992664247993,0.015335689815234423,0.0006043431880620497,0.002499982574632312,0.01079610362231414,0.04246018905970785,-0.020692919106446474,0.00010702152368209335,0.011641480552609735,-0.06323958248047476,0.1968003914209974,0.08179754472257672,0.002062444216009243,0.026147976721366276,0.0031090235631178295,0.02864304613636493,0.0010061191560988383,2.7911746127172363e-05,0.0038903164104069506,-0.038856112173457046,0.11060832306964996,-0.0650912498606091,0.0011485312227386528,0.017834030729678388,-0.001941196055558724,0.014513993520344399,-0.0018975984855583933,8.906521457842271e-05,0.0057762986828133155,-0.0168303742582901,0.025733278225043045,0.004004351579621384,0.00015436329638471172,0.010715743055601586,-0.017936062893819188,0.024466138874011605,-0.009479650368804316,0.00042079017931413617,0.005498957557248272,0.020254561156943993,0.06916386686279039,0.03693368011942675,0.0022698330384045983,0.0010641503233906244,-0.02063931152835514,0.07842118481303353,0.022676903898533118,8.444076850927991e-05,0.015021667104622076,0.002154904323705563,0.0027667588745538133,-0.0025442369107217706,0.0019361271395528,0.0024169571505950815,0.004712390194089159,0.0157326500445741,-0.12660347713976275,0.00011867394996529415,0.0029341433067617785,0.005408430863111541,0.014008557543088546,-0.02707237293959915,0.00015650861206769064,0.007644679161572263,0.025660867256690933,0.10392749608531004,-0.005382467586194918,6.026356105037553e-05,0.011499078607085114,0.05397195583263015,0.1506333576491746,0.06386369284466087,0.0033959794811103524,0.00114194811961813,-0.038583161368104885,0.16398664096685578,0.09598421654029206,0.00011703881338278934,0.0048094001003282805,0.005049058892940928,0.026018788572789307,-0.03492651201546314,0.00014072917727610807,0.005495789127095052,-0.01991844746094624,0.10754766811051583,0.0038116859533207773,8.759981416697631e-05,0.016933450159240943,0.015833289955434954,0.07517168044455785,-0.062226403431552654,5.293760646226994e-05,0.0015329847957733153,0.029979054460080888,0.05550537407845271,0.021935946241036803,0.0002633372471226053,0.018276844338158533,0.022343297446175976,0.10977749379729557,0.012472110210906153,5.061139772754028e-05,0.009013274132522887,-0.02360100582537296,0.23521970528809713,0.013909418449077128,2.588737983909712e-05,0.012532603504286333,-0.007170981592318117,0.01951872287138163,-0.007817458843404958,0.0001284210375160706,0.012340106330896492,-0.00799851362638841,0.028198214859585246,-0.013241972216442568,0.0004471112984307212,0.0015271582108697373,0.020357520119768092,0.10693237903902857,-0.05214893167956121,0.0001090404008919773,0.00853981964947445,0.006020857470187863 +2019-09-11,0.024596941798555517,0.16032293012059892,0.04894614779499027,0.00016224527423444097,0.0034569816366827964,-0.041781676395671645,0.13516292526370183,-0.023093537301297585,7.417179772007468e-05,0.006659856422140293,-0.04034340029838647,0.13485163968662175,-0.15193393182933593,0.00013839279244002008,0.015746674200515533,0.040665431111128914,0.045746462791037175,0.08702027741502513,0.0003000099909981884,0.00736654982938158,0.005109643118501443,0.011188611487787985,-0.014097144871259107,0.00023895281252011864,0.0035618012139716883,-0.0012925862764721257,0.0032954614329068267,-0.0011697286931831908,8.564264015259448e-05,0.0021966942262468666,0.015489820397705767,0.06404305294260171,-0.04048221466988849,7.096826873472912e-05,0.020679581740841,-0.036858070162508576,0.3058898911320933,0.036251097097582057,4.132054889661265e-05,0.012080252250327767,-0.022542330523887214,0.01971295626786784,0.07133379428851991,0.0008818441565672779,0.013105106793890613,0.02814423535016842,0.06376257470524124,-0.11152264646453071,0.00015434248730836192,0.004710852616593824,0.016033380569673645,0.01243782733182591,0.003919661101758089,0.0006300934078430416,0.0030038838147802265,-0.012685256584069151,0.16087140748572967,0.021838242565728257,2.3498664677577705e-05,0.00292398573011325,0.02525715444871686,0.08577033649478852,0.021954167015242165,8.747789902166762e-05,0.0033459029025481495,-0.013228102746474672,0.06908540275284315,-0.03770712229729644,5.3898053865764725e-05,0.008742951069812033,0.030222659833691195,0.026750428720226226,-0.01654136438018282,0.002203560145326951,0.002746820752450108,0.0676557410558774,0.41669646780782293,0.01101932422377823,0.00013360937856537623,0.005036985001993572,0.03999851402209179,0.21879333180464608,-0.006263910284446439,0.0002830857493397147,0.039309144189103716,0.036665621961305565,0.18613523536912002,0.04440734747577098,5.548702235785608e-05,0.0036865360596443015,-0.015606216517438879,0.07667829118452386,-0.01166359139394368,0.00033543780656800456,0.009797631808505038,-0.044394125445748264,0.5129190031742019,0.056857121116552216,3.59175699805398e-05,0.00392364892563004,-0.009730583946893214,0.09999677507912097,0.03922349693556792,3.2511321191415696e-05,0.0006670679997459676,-0.028436914365854674,0.08224511396041247,0.038573050386395184,0.00011137689832013364,0.007501012144174152,0.08753134698351187,0.6870153135168111,0.0844727947003261,2.94299531153876e-05,0.01523615427527233,0.011294218064875185,0.03199773977894955,-0.01358288252062799,7.825538795224783e-05,0.00330553788886267,0.009196314285766507,0.038862707183038296,0.01576943997455238,0.00010820052056226639,0.0009512893127470495,-0.008134899091660153,0.006673524279979372,-0.015403535933319435,0.0006967427954478517,0.030665266203612578,-0.003405044362069126,0.013327007169249396,-0.026189330121388705,0.0001075415154463705,0.018049959306236443,-0.09542131176087372,0.34683931844476645,0.10806132854235873,0.0017657785345718425,0.018723775729993876,0.014276799385822995,0.128770915806624,-0.1393968810103792,2.8509872026603756e-05,0.008005653267241696,0.017003639693812952,0.047633726554540116,-0.008774700266267036,0.0011670745650742237,0.013569430738456015,-0.007678562685237303,0.053036739500722845,-0.13927257293783982,9.641148225572117e-05,0.01804732408709355,0.023610068212100033,0.04152897655530427,0.00975437569358846,0.00013418111600377503,0.004080872428059344,0.03401344019962676,0.04792375303084959,0.056240419253740924,0.00040738370360378167,0.004228358493158642,0.038795645901792734,0.13915651260249332,0.09670981321151852,0.002160875729140392,0.024538800700475545,-0.008314225334136874,0.029318582358334445,-0.049229087096831034,9.098487317739602e-05,0.0074234591427765895,0.052554484351986286,0.07722707910861552,0.025406757226152113,0.0016916766774127668,0.02417575550733681,0.028242355718591926,0.10324883948874573,0.017590905178570225,0.00010837566525025516,0.009669464446276331,-0.0538442569527576,0.1544003548679986,0.0704466581298286,0.0001413681159339208,0.007018060986122642,-0.03480728157449,0.14015842576255017,0.04573186476984761,6.061286614863442e-05,0.009726428730867903,-0.012867372523492796,0.03683101652495028,0.005307944056026009,0.0033112671979977585,0.0036421467911952237,-0.020232330565321695,0.09116712567817431,0.024761936231041885,0.00011039469914604714,0.00852926906231089,0.022729682405604114,0.12168071841253744,-0.026137665717401132,0.00013546664863537918,0.005027915070677446,0.01028551132701169,0.0501301002184051,-0.0006935155698299832,9.704563647062259e-05,0.012899300988536882,-0.01725376815038887,0.06761832202873015,-0.0735163994775176,6.413084515532745e-05,0.005860502299689583,-0.004694300512518481,0.007750301394453152,-0.006134628786179458,0.0002953124050169994,0.0292038066908341,0.03403495597384809,0.1526389619650305,-0.06884792540781212,5.544650359317061e-05,0.006164131431949897,-0.008938284268559001,0.09612974870385049,-0.023095215142227288,2.3989855998390487e-05,0.004123085983464918,0.021411878430149186,0.052623764850384114,0.03645946958146506,0.0001422269241655687,0.007707599382490417,-0.00019907983144038218,0.0008383808857189022,-0.004780260344378749,0.00037429486328186185,0.0072858757717506745,0.08602512714926634,0.3860830661739818,0.17998091406932978,0.00012761930217353794,0.01818149979484062,0.005867825719105933 +2019-09-12,-0.022317991511585804,0.14986163870752867,0.010990224985218414,0.0001574893587816701,0.024690505827934996,0.006643802909595799,0.026518739924256123,-0.005857423568010507,6.0113827806885694e-05,0.0022157592837391124,-0.01293756785605411,0.04084554508051584,-0.019873705694318993,0.00014652277968395876,0.02448639529868435,-0.0030694839878824334,0.0033000183223219045,-0.0822860262988613,0.0003139184760238511,0.005607032547980657,0.005537161437345467,0.011013689273524948,0.0001267385716030279,0.0002630583782012183,0.0017120872400311655,-0.0003750673118180894,0.0010876138203108703,-2.728590810470274e-05,7.52976180601522e-05,0.006304429478945578,0.0009103611249257084,0.0032718123348068257,-0.007718925407670374,8.164228921275104e-05,0.015461128255091008,0.034727541610809314,0.3254163626720097,0.062469800575319485,3.659597046222767e-05,0.02088370254285633,0.011043338652097228,0.007905191757854072,0.005757509180719416,0.0010772903455149876,0.004741845579015565,0.0330367257619572,0.09075139141483422,0.007535369381901477,0.0001272933137129295,0.00979160776298338,0.008718008628368105,0.006583001184589943,-0.008319643877850736,0.0006473180534912015,0.009957164422756409,-0.011332839136536044,0.1453117456827462,-0.024288102828180586,2.3241320169884176e-05,0.0012952517789348251,-0.006805024144756876,0.019311078318567834,-0.02304671130508178,0.00010468252345972016,0.009138876996244933,0.0027848913143053915,0.015617178475614788,0.004869076361395119,5.01958133215137e-05,0.0017723279846295773,-0.0066558817522671294,0.005925015510850733,-0.017291629527717088,0.002190983357358001,0.006555161569640845,-0.0380253733058535,0.24986829576074138,-0.0025439604019661635,0.00012523174709518743,0.04348633347200307,0.03414202195631944,0.17963273709810737,-0.009282016528238563,0.0002943147187710698,0.03021532671234667,0.05483865876415339,0.29242206403725407,0.07591316752759297,5.282477332169022e-05,0.019972528781720122,-0.012709838306134015,0.07477386326256652,0.006407365228350006,0.0002801412186185721,0.0034082077689975942,-0.044801920815156854,0.5110551838453962,0.033540527372915636,3.637969615656242e-05,0.03238855888121965,-0.015746369888679047,0.19363477860493578,0.03281779491823367,2.7169321615429408e-05,0.005031780913544578,-0.053250284552175564,0.1778411845552492,0.12061783422238449,9.645224624253395e-05,0.0038955442524331854,-0.040829531263596966,0.29020141814367495,-0.03781526336278054,3.2498793609868386e-05,0.027213138869296098,-0.0013275550976618292,0.0041087787698470355,7.687238923362944e-05,7.163366621651648e-05,0.00653489544889815,-0.006600165550734233,0.01960811440093055,0.013910710302197574,0.00015391026733463413,0.00026776868749592763,-0.021239217125216005,0.020799318217102822,-0.05812739073784002,0.0005836667678291957,0.025837303017494893,-0.008124230853105764,0.031443373975121466,-0.026463274008425873,0.00010875246851554876,0.005556073873144189,-0.04549599054637079,0.16692932235969712,0.028555124955171027,0.0017492813636063732,0.007586833998883326,0.03197505996787182,0.3040281660370984,0.04609751935889521,2.7044548982840758e-05,0.013896879700222077,0.08030969600325454,0.2610626558146204,0.09349722404493833,0.0010057603255889556,0.03193900796956441,-0.013455700821269189,0.09860061556703498,-0.0023851107539767866,9.087665629529238e-05,0.007010495959091507,-0.04115606299574637,0.05896203469671652,0.04197691247061993,0.0001647429155164512,0.01078057191439153,-0.007476334416373223,0.01139258563954389,-0.0005398756507796716,0.0003766780652141112,0.02067422479014835,-0.020833705307034923,0.0848804164572985,0.017125849145679568,0.0019024329365142502,0.01756255916264593,-0.02870724038334039,0.12152550430768667,0.018008206884263387,7.579043231953657e-05,0.016925744997446077,-0.04427622081458653,0.06497217781933753,0.025092611833441584,0.001694026938650213,0.009931473371708056,-0.009706742354496516,0.028925322510020945,-0.012377165504649092,0.00013295703723919887,0.002819734369267253,0.005173903439926683,0.013325289789379812,-0.030035304029688546,0.0001573990231855023,0.0017009800757384395,-0.04220755021149701,0.1734868114050991,0.05174345908372933,5.93796462280126e-05,0.0005899466400709501,0.03330344477370931,0.1274120955475878,-0.02068443506843849,0.0024774024162574795,0.016863695112515592,-0.023251483092758686,0.11470598218492384,-0.013537110151548895,0.00010083357433345103,0.0014648368686901233,-0.03240099662417064,0.1594607083894425,0.09295966718651776,0.00014735519932223027,0.012486374295257398,-0.015232792994159122,0.08123830179020061,0.009020921903895196,8.868851899663227e-05,0.010655840398873913,0.012930397038074214,0.07383582371382344,-0.036554812902229485,4.401413093742639e-05,0.00036187679202387754,0.00027415843096653225,0.0005089760551828276,-0.022150259472706192,0.0002626235385150485,0.012701155467729814,-0.014002691267844857,0.05613073381978262,0.03402441996836059,6.203334062871971e-05,0.004641726882132971,0.015667035978941705,0.17815105148416308,0.01954452753321302,2.2689751331083637e-05,0.003773771968210474,0.0053722515290709405,0.014793905743944317,0.004499087922240788,0.0001269353121507436,0.01447413940103462,0.02513019157528318,0.09127117454006607,0.05504838851414905,0.0004340004011333045,0.008365141567612849,-0.04661618137868292,0.22553225195929047,0.08766312463651936,0.00011838586029847331,0.01900908826256538,-0.0059816713254350045 +2019-09-13,-0.0208032842452737,0.14108279195465934,0.007885012703021877,0.0001559353004751573,0.005913884425967868,0.0019411540673320053,0.006442807995070577,-0.011322677294534983,7.229284960382613e-05,0.011494054536906302,0.0023071928815124186,0.007549416985236996,-0.017846962662267412,0.00014137339703166723,0.0031882004784097935,0.016274244171567982,0.017459359690117103,0.004753997500457838,0.0003145867101830992,0.007872180331857851,-0.005424386918660235,0.011383960064826577,0.0038655667296700925,0.00024931882341247097,0.0005451134247589203,0.009169999975412055,0.02429180673566589,0.0031728798718887916,8.242448780807534e-05,0.0013199394827122905,-0.0010428441673939347,0.003378131946199839,-0.024626009500431183,9.058007230992135e-05,0.00446992042514489,-0.017542513870092837,0.16587913592598305,-0.00491998343027078,3.626591828327759e-05,0.0002760650403085305,-0.0026549838704564943,0.002263730719826766,-0.0034726500715204886,0.0009044444730284739,0.001607733653740403,0.038178653037013545,0.09198602459747816,0.037795305581397556,0.00014513115062001416,0.016650622890827513,0.008865873488402422,0.007289639888490098,0.0011671508434510822,0.0005944835114852378,0.0065826261510502585,-0.0005533604209997261,0.007301201496996265,0.0003774827077143423,2.2585855658924453e-05,0.0051138220590111845,0.01846155109714244,0.06166062276080276,0.004331994661228432,8.894290659599755e-05,0.016860684529621466,0.018556268480702045,0.10575330172948398,0.04404375793297519,4.939221816387691e-05,0.0005555527152962159,-0.028033782336238156,0.025208293480171617,0.01686193199254716,0.0021690083466276984,0.016681509841424337,0.011921600028724173,0.07551059291983257,0.002840374265555855,0.00012992082642478673,0.022689911333750565,-0.05197951404237156,0.29906285662706383,0.01594632425619762,0.00026913982738282794,0.020292268153640176,-0.03082427391361124,0.16211298224205897,0.005230770221240672,5.355943859283891e-05,0.003406692472347081,-0.0061693970373718834,0.03302608014165906,-0.001039213354916661,0.0003078736337567421,0.014469922379941665,-0.028208885096941583,0.3820517697888739,0.00982614530643275,3.0640365197136805e-05,0.005548021032891403,0.013652912810843952,0.15873239872850045,0.0076388118617794895,2.873700123145821e-05,0.001323317655593792,-0.029249740688072602,0.09485997682143688,0.010460989233632865,9.932572913640543e-05,0.012130444946908807,0.011794071585132808,0.06934356610229707,0.00039322909309821136,3.9287099191025604e-05,0.0350762892892444,-0.01068735462886338,0.03767609386527736,-0.0037076573793942435,6.28900199532836e-05,0.008220899876533645,0.004580793686215658,0.01576169308887876,-0.0397624531442975,0.00013288821289898087,0.0038409049729239324,-0.050958065500044676,0.04863024609146119,-0.020804185851249064,0.0005989382189100133,0.008544733536766082,-0.004919289375858149,0.01673242234318225,0.004874720532952011,0.0001237455418199663,0.0038463545544502064,0.05729681360441038,0.1847689033263724,0.042056720954214,0.001990310179362878,0.019985233244199964,-0.013595629106549247,0.13048582186972665,-0.1884833745086388,2.679280469513024e-05,0.005807906977597068,-0.015957547523869554,0.053248208803045684,-0.01477701813950784,0.0009797886697623431,0.001849198082256208,0.029961567580668095,0.22678786761079686,0.04687216958567391,8.797724490295824e-05,0.011979638107007673,0.008240250301089044,0.013585955828854067,0.0019377981500179563,0.0001431513973885314,0.008579319202224042,0.02113653622178235,0.03120907843657373,-0.013884383923134447,0.00038873781324863445,0.003264278553160145,-0.02081844146049065,0.08807441480506462,-0.03744558080039204,0.0018320983708004933,0.00019155487081547922,0.01820796205728755,0.08063539727613542,0.014871568241419827,7.244792982017995e-05,0.017196210408448237,-0.009970897906954991,0.012917780411576825,-0.03664057529198589,0.0019187728449363967,0.0018390857855665767,0.034192224435771426,0.11347409012883304,0.07214810317527193,0.00011938415309356741,0.004229101167045061,0.02309532402673958,0.059188101256952216,0.007888507769602048,0.00015817943783883487,0.00952841576030066,0.0018234687324960913,0.006539024074635124,-0.00035168400442983,6.806115416414458e-05,0.0029854091498412914,-0.006316210141542989,0.022393558234958498,0.0007757306184732435,0.0026733235369861166,0.0070890946229976454,-0.004635810436694716,0.022407364739686266,-0.0047139498716406115,0.0001029142364100959,0.008746744846752605,-0.01026783410167344,0.06349842764209587,-0.0024594016931094227,0.00011726722715709713,0.004129734236563815,0.00175778203009692,0.008461473595973198,-0.0075076099096156625,9.825795373212271e-05,0.017324484592309685,-0.036894557664987455,0.14992205001349504,0.057467560387531445,6.18506389829225e-05,0.00781946233075921,-0.020094449946852253,0.037613387669799804,0.00016017334757122836,0.0002604732125866857,0.03511563873079533,-0.009850783465765189,0.04757478416940043,-0.00837911277038911,5.148827262039546e-05,0.0026565536292169904,0.002546146476811233,0.026755538213866482,3.3028704877283543e-06,2.4552797291603647e-05,0.016894343515940873,-0.005893772448691374,0.018844636187904065,-0.019010357617586435,0.00010932376284285714,0.003740327787869561,0.0010224109329848125,0.004243144362351583,-0.04063360689619338,0.0003798093466649237,0.0017349211621449914,-0.030285154281203493,0.1418910252378509,-0.006837046255557217,0.00012224937843929154,0.023192428425798314,-0.0028932430399585068 +2019-09-16,0.013230957589810678,0.09265136303547143,-0.011286754572991059,0.00015101707297333997,0.005709260517160506,0.04943795541544176,0.18827040808806034,-0.032670870966392755,6.30070235635718e-05,0.003562693162919746,-0.009529190401262806,0.032860544276311764,-0.004849485086927202,0.00013414622527945733,0.007732855929436143,-0.002895766858857591,0.003286729991337331,0.0028713168167004417,0.000297349643393786,0.001275596017649089,-0.0038706582149152396,0.009354805892285671,-0.0034583561127330157,0.00021649497270055372,0.0015721262893460585,0.00017209823493970043,0.00044031735570459264,-0.09888579223874944,8.534092619426425e-05,0.0029995132407690172,0.002793719308686344,0.0112044495252577,-0.008156223807678718,7.31614156119158e-05,0.010249641739771078,0.01322254517684603,0.11029539789270248,0.003534312064158722,4.1110833528835564e-05,0.021313730346296755,-0.0097475866596284,0.008900938078971195,-0.004258848536198382,0.0008445125575771917,0.0103725198391173,-0.018779033862678467,0.055877253100246334,-0.010202116508866068,0.0001175168341405409,0.007125051279006558,0.006004196882076612,0.004549669727080787,0.0004054142662335615,0.0006450589594985702,0.00021997254840639855,0.013055266221232388,0.1484009853673664,0.025243332815956372,2.6216320462370376e-05,0.003048112756696916,-0.04918238258766744,0.14584181291996812,0.10452601849114089,0.00010017942794953515,0.019728916351014224,-0.0324223046438671,0.18344397134372084,0.06196865975547334,4.975105065308643e-05,0.01119315085738935,0.0123454687601324,0.010243899306969518,0.0037590617302070122,0.0023505270666526515,0.022252444477616977,0.03438269726231655,0.19472855207713177,0.014697399161514205,0.00014529893012215646,0.006109992221190606,0.02044756283431393,0.11395429448495746,-0.12985965625046295,0.00027785555685143484,0.022586907438895215,0.03734265396721403,0.21939926378308586,0.02922673674041641,4.7943636325573835e-05,0.03960532846749433,-0.06820749411246914,0.45978077010214136,0.12594155241793417,0.0002444939394807779,0.01826288129146429,-0.035638279191864915,0.4829626573158723,0.021128647377850935,3.0621989600803684e-05,0.0376794238492658,0.030523965284080704,0.2610173707650465,0.07322300743324311,3.9070885065034774e-05,0.0033275697625823647,-0.005173040481364135,0.018150273023144765,-0.00277960438842801,9.180904514148361e-05,0.011112309274689917,0.09158478667887428,0.5725110575752228,0.0851868768801073,3.6951479785354315e-05,0.003956532110669914,0.021471211275358226,0.06690577951928652,-0.0962863467404503,7.11492444637463e-05,0.015277289368548056,-0.006145718764401165,0.025460157053445204,-0.02590416064922759,0.00011037232721963617,0.004571831765701121,-0.04454240094968056,0.0479845630685242,0.02267759027104273,0.0005305760469239409,0.027235280386945344,0.012049542393372286,0.04817906681806138,-0.10304395058944835,0.0001052684380883718,0.008994252725282766,-0.00713565673606815,0.023679767206543835,-0.006689695289144943,0.0019340856205441936,0.017003894133445024,-0.033456481814743116,0.34420003893500506,0.03740864012417138,2.499490843184416e-05,0.011649521031221228,0.03404472197541504,0.11577752290651226,0.01200240249678686,0.0009613838188145604,0.027986522772511287,0.013422060313463853,0.09923383844116641,-0.013463652044431493,9.00710112591587e-05,0.010345700734989836,0.016292591556064828,0.028459170432759792,-0.11374814888495689,0.00013511803475666048,0.0012496731657809872,0.012356154486701106,0.019984138540791604,0.004445969384693941,0.0003548965778190127,0.009067225801298269,0.0020307109756435705,0.00788189723100083,0.00237409139034595,0.0019969522909855306,0.01722828333169623,0.024324373881826213,0.11817930375967292,0.013191501922182157,6.603749845644595e-05,0.005908014151360736,0.011738935286934685,0.01504300762279539,-0.047512323926160144,0.0019398637375735916,0.025289107542775753,0.0035398989787579064,0.009188301144816394,-6.221871688774562e-05,0.00015264116927271603,0.003486078289982311,-0.00455234920246916,0.01215230491326749,-0.15556441243763042,0.00015185786398068615,0.033780285281225765,0.00056824783174078,0.0020178590755039532,-0.09436428897890736,6.87323004505503e-05,0.02472294175571139,-0.041472237379273635,0.13970313694344155,0.04691601811348058,0.0028136454169672173,0.011390751384272948,0.02832430929094803,0.11942293704639695,0.014378466145110512,0.000117981021193066,0.020776551295147938,0.02044940359679082,0.1038066198895241,0.01134918481421892,0.00014286188654828093,0.003700093893054744,0.011228732687346631,0.0725961884489096,-0.0023979290554535133,7.315863983574048e-05,0.014223556712823271,0.03529775480157502,0.15592981984068047,0.06792846617425322,5.689384689394362e-05,0.009022933946724604,0.018459787735718262,0.03545944521426333,0.011547094365166682,0.00025381901853544934,0.01922154861706348,0.011302244386545852,0.043642563508980735,0.0014436006035911597,6.439747171910387e-05,0.007422733468420599,-0.025501963200766177,0.2854615734224657,-0.08855630602628191,2.304927369824235e-05,0.004949447845736904,0.012470344593415636,0.036330150477429886,0.0062654858373384055,0.00011998313971976732,0.0016576459880636454,0.013674151682953595,0.04893607589372164,-0.014143711467982267,0.0004404526456281156,0.007858802838603525,0.011116515014835925,0.06222485745297687,-6.501144534295119e-05,0.00010232377275247189,0.011122642851512796,0.004389100256631853 +2019-09-17,-0.004840768778001591,0.030002989882556775,-0.08992404491174015,0.00017062253384249226,0.002192452802432965,-0.006590914169819604,0.024171310581875858,0.00015824725632507296,6.542684584102238e-05,0.003889241225065871,0.031064149817472887,0.12682490070523972,0.03696628263180256,0.00011330580107388199,0.003192107012817667,0.03900650195238712,0.039963525499194096,0.07778426763513355,0.0003294132529022374,0.004106839825966821,-0.008434712799177992,0.014208603459162136,-0.07223126545012677,0.00031061088992516964,0.00981628032483444,0.024955188996846685,0.07593348009358082,0.07471082751602563,7.175865644932235e-05,0.0024507300614106014,-0.025301055907390898,0.11059586277982822,0.01026250903287936,6.712582254618064e-05,0.00835883607836455,0.0018858316223434987,0.019103019810236647,-0.13452205571538742,3.3853182486680704e-05,0.00021225452571937655,-0.013420642633514251,0.012218022891771424,-0.03035887929318498,0.0008470658323887263,0.0015457363999053513,0.006028251968295987,0.014153676959452079,-0.028113944660987482,0.00014893062219219086,0.029352408541652417,-0.023408946139637957,0.016517524991325475,0.052389840417749,0.0006927256168693944,0.024322990787252197,0.011471277721201345,0.137574880871046,0.012881990098584475,2.4848228850406687e-05,0.004901205808965426,-0.03042983568135551,0.07377602528191604,0.011967340719187198,0.00012252801317626976,0.00465668538305429,-0.013800122459512872,0.08359685782844631,-0.04354622118743215,4.64680881729915e-05,0.01367528464577888,-0.008656395074983643,0.008706952803893333,-0.012220934181786693,0.0019390716260011785,0.02236483680072962,0.017081171913403186,0.11133853379053206,0.0018707987441081663,0.000126247932208446,0.03182380192020167,-0.0022397922448772036,0.012408929864908243,-0.1640198903234426,0.0002794998882467963,0.018294642919733067,0.04586157747885185,0.29814625687434154,-0.02228685234493806,4.332919131701999e-05,0.020197213992222584,0.023023473142002232,0.12091645447394495,0.002493803756901812,0.0003138139473263631,0.01439056501950118,-0.024353386908403392,0.36060836430227294,-0.03364810889359063,2.8025528028284522e-05,0.009047383127270792,-0.019084707665453463,0.2239455676616836,0.05376570963625822,2.847244414810749e-05,0.006013004008877609,0.0067493532155944525,0.02093789458938546,0.0042059993221673295,0.00010383694531902805,0.00958287394352547,-0.05085774450712559,0.4269589895444032,0.03951791985097147,2.7514606734107947e-05,0.01050356165887639,0.0006972468667383157,0.002021293902276814,-0.0003543927380162883,7.647764177336466e-05,0.004694417531832287,-0.006457049657068423,0.02430206712939971,-0.004079834566126947,0.00012148971289299105,0.0053875694130944875,0.0034857561556252896,0.0037975554547465965,-0.017940104690372306,0.0005246485052680417,0.008601671146511489,-0.01957299161988054,0.07574447501574096,0.04842367227333851,0.00010876577516816885,0.0055952944531535535,0.028379170704979074,0.08787483505969695,-0.0055301036054917485,0.00207278545362954,0.01387891931327655,-0.001269962313728266,0.010740417842484659,-0.055181269375942435,3.0405479123101048e-05,0.0073852714772163815,-0.0271951606172272,0.07748740520780696,0.01822237503826402,0.0011474447410415815,0.01920094474013279,0.02542025265647963,0.1687326731764504,-0.057139112290324805,0.0001003243417831952,0.004050099094234596,0.016403961800880076,0.023460181281181262,0.011627537699488799,0.00016502995145171518,0.003310318830687077,-0.054639111123127804,0.08812486539281442,0.09321552943148442,0.0003558844994694994,0.00839156713292875,-0.0014407300897981733,0.005618872467880967,-0.011802149881024614,0.00198739316894979,0.007366641782999478,-0.007493247780984751,0.025181862333840604,-0.020753815163507165,9.547125219815848e-05,0.01094202921346285,-0.00440426764507236,0.005393401987671759,-0.0012971432346055433,0.002029962914760802,0.03790674022051725,0.019104754946162546,0.05732794486291287,-0.06107287261998163,0.00013203562781538607,0.003947810400328738,-0.023138618144673506,0.06922239160064957,0.025786620762910842,0.00013550371285529558,0.013404917559381262,0.007544219498147786,0.026300665737816798,0.002139269828141729,7.001022911847685e-05,0.0036135624361992038,0.0007688652085207858,0.002242291993421434,-0.003025782666060344,0.003249945671885807,0.0005058569399568481,0.03863617590600203,0.1930331595143641,0.018162912592697682,9.95641031900288e-05,0.0002209136559377055,-0.0015247453518541457,0.007627166111753918,-0.018146953025299124,0.00014497559422922942,0.009459453706074802,-0.0298359559488244,0.18657976753382507,0.024022101414059152,7.563522590316898e-05,0.0017985313635328353,0.004382071421097573,0.020499243735855925,-0.012290882382068753,5.372655663528715e-05,0.010958134180506077,0.027374458373584147,0.05680667019108093,-0.013755113585748406,0.00023495007929680834,0.016017839163840475,0.012297830142850718,0.05415600886147537,-0.00884974659464836,5.646719510252589e-05,0.0022612714870887786,0.005774292989198172,0.05596951740024597,-0.03368083039491048,2.661819115664774e-05,0.01037835642576112,-0.014710471806426267,0.0472351458987534,0.013183652791824676,0.00010886049516216982,0.010533153061507686,-0.004776810295813451,0.01975750164883173,-0.012212564216052808,0.0003810956032625609,0.011380441398378138,0.043629343117936495,0.17628495690365825,-0.0028723687330864923,0.0001417539653626721,0.025734649018227466,0.0006176738489294883 +2019-09-18,0.0152912741556785,0.11473259240029345,0.031531750073197355,0.00014094298077642955,0.004805900413217053,-0.00490428246426458,0.014719098070531022,-0.08015691290421494,7.994748446002728e-05,0.028555259383677277,-0.009681424081122275,0.030620234896722692,-0.05665913653335733,0.00014626079534428224,0.015307399653664466,-0.008787180462438643,0.009262629560027545,0.011308631852294297,0.0003201718211076574,0.0010310568521512617,0.0458348780389804,0.09776972480125175,0.1421812349049495,0.00024529543142283894,0.00946955046942632,-0.018738222810223967,0.04634128216242273,-0.06283195026355923,8.828910064655551e-05,0.009593120496047382,-0.048397304234588254,0.17772383232772526,0.029684330305391266,7.990341801793516e-05,0.017941808866270503,-0.027422921991865162,0.2715798508488994,0.005918489643894214,3.4626994444758e-05,0.02334058692901974,0.03339506979546299,0.027466936639294594,0.09041005982729276,0.0009375985270861233,0.006229033450113904,0.009696450689028,0.02465729804725872,-0.027585260112734423,0.00013750838924362266,0.017622826874502905,-0.01003870665276067,0.00775292637379106,0.012026647683726127,0.0006329019914492884,0.0023875542997118184,-0.004209967387970945,0.056701073696663044,-0.013257829918493119,2.2126373454551586e-05,0.0007407364734804507,0.008668117312448924,0.026447319098174125,-0.03145279933437073,9.736304839212155e-05,0.018848315236526903,0.004798897940696376,0.031864866989597965,-0.008691601472492158,4.239271409283583e-05,0.003256744027608189,0.014359519256634564,0.012140596815981636,0.0015634430512251442,0.002306868486652003,0.003829644638284928,-0.010018698460240585,0.0751239278559159,-0.0002630705470102983,0.00010974509691566538,0.026079704299865083,0.0700152395411046,0.40449172931985566,0.008115224637114313,0.00026803478833661783,0.029126192465999273,0.037299626659258046,0.2656899713975327,-0.10193277773144555,3.954488153080328e-05,0.010727671764149169,0.007098736318556601,0.03355857633607029,-0.011759927732249044,0.00034862965309516875,0.00977064152494611,-0.06733461261598103,0.8697014250354504,0.04768670021719333,3.212908929006107e-05,0.00148694630166711,0.031264146856556395,0.3750971725158572,0.01913967233464666,2.7847390228159115e-05,0.011355842912505857,0.009923043716712272,0.03049901195608255,0.003936054535544702,0.00010480497296638629,0.015572263017035314,-0.04321028349628815,0.30708936790739383,0.002266022330717002,3.250234615178509e-05,0.012846502378494546,0.012600744648706079,0.03929884996168827,-0.008650163823985686,7.108758354707665e-05,0.006400765094951448,0.010667227322972624,0.042762901440804704,0.03041311129416008,0.00011405989871471171,0.003988869614027243,0.0229770849272445,0.0262340329213486,0.01760497423631351,0.0005006168136220897,0.011952408278380604,-0.009317781600525862,0.03645442467244439,-0.05317352731566939,0.00010758414861046683,0.0018040666607483384,0.01620624799586026,0.05527466382239491,-0.0006794672406012848,0.0018818090170055885,0.002377401628022866,-0.045594162807459995,0.41730941899780527,0.1091292456025413,2.809527282602742e-05,0.0027786258978861706,0.004966693719156407,0.015701249123086878,-0.06406719958103083,0.0010341997884892324,0.018203216174223727,0.03002620724847927,0.2445441897752253,0.03389493982318717,8.176525065298077e-05,0.0011022603059923737,0.005004008390729171,0.007706525825812475,-0.008238598488661162,0.00015325151530626814,0.007871893537320433,-0.014773960793149566,0.019011964180263522,-0.02907791773901651,0.0004460400631063303,0.010011071880076392,-0.002083190932809697,0.007386959949192414,-0.02435524966196805,0.0021858163662491726,0.002755531658740095,0.02353066903017543,0.0789036085165057,-0.15822796251147156,9.568145709322798e-05,7.553542802355264e-05,0.011982290312689535,0.016970283340836542,-0.006401269177700538,0.0017552053580824152,0.023768554969117058,-0.03149723144140896,0.09515245120430459,0.07093768406352309,0.0001311500430868723,0.017549972649996727,-0.0384549341751721,0.10014462163187152,0.039018917325924045,0.00015566279292391467,0.0008203046297873609,0.02961582060356862,0.11713999626558338,0.04016152145382156,6.170672392621294e-05,0.0030475047091991663,0.02843949059545629,0.0790062940457437,-0.0035988527977699725,0.0034117576990536254,0.002491718432036112,0.014988208518854153,0.08164722606056296,-0.02256788468564338,9.131641704238151e-05,0.014830562211007278,-0.001974003923522005,0.010788076771971732,-0.0022135074831577503,0.00013269811923552434,0.0016115567974849955,0.0016984130981226885,0.010468013338328568,-0.007143945137974653,7.674105437206186e-05,0.0021748816526040277,0.04152989961944537,0.20415803224820664,0.07483792435045188,5.112599875580985e-05,0.004209914296024224,-0.040042984816512944,0.0767342990555488,0.0025223270965459114,0.00025442882144409104,0.018687502414347964,0.011254395361448658,0.0536133419890714,-0.01722093251456724,5.219917795648847e-05,1.620103237807741e-05,0.012243971046149613,0.15415116246656202,0.013447536979603785,2.0493058286170776e-05,0.0058297927951775535,0.022864106546508462,0.06783028831057318,-0.08878840310206043,0.00011782556657443626,0.004307029784445921,-0.00023488128160859039,0.0008396301314007676,-0.016374430975778655,0.0004409490013292584,0.0057785128921274105,0.04295101922399395,0.21650947488921626,0.013875481984252388,0.00011362355243424182,0.01212984042145635,0.004073684447024436 +2019-09-19,-2.4731274748866698e-05,0.0002001463090742265,0.0031847788331008735,0.00013067289129643564,0.02234440255716885,0.02467480090141682,0.07837468465693101,-0.022616465157336074,7.554198234086547e-05,0.009779627233373365,-0.0075016973427656985,0.025962810390529212,-0.00127992458248337,0.0001336611031971571,0.0006580947747195182,0.020806660548216175,0.023457484040585657,0.013373724614521002,0.00029935658006726877,0.024062041822810073,-0.00995153354680556,0.023710194635950824,-0.014451488325275059,0.00021961027944414647,0.000978935661513032,0.01249492400018397,0.03263057522237878,0.01364616222733517,8.360950051851518e-05,0.007163948357778467,0.018037789529962867,0.06155200687085354,0.01228559064416077,8.598663486195264e-05,0.0026344087111894944,0.030679174697572045,0.2454739877791774,0.05606289112910194,4.2858484399768095e-05,0.0035466124613657904,-0.0009132725727310067,0.0008436736107395421,-0.11103760475551376,0.0008347775036372106,0.012923143291443555,-0.046920438545637204,0.10482043555412733,0.07061995901821999,0.00015652293722936598,0.010331940995307784,-0.0015000267671188413,0.0012307995215603616,-0.0030587124063404373,0.0005957115881648141,0.0004140998564004755,-0.021317097171609848,0.25726364379256306,0.09219969395222796,2.4692919339524165e-05,0.009221625881146361,0.0006990062513684821,0.0021855511541187976,-0.08814316971415596,9.501039458538478e-05,0.0006686911665375642,-0.006275650841848265,0.03683625935955787,-0.00098218197538156,4.795623381470222e-05,0.008669184991874832,0.021625892868623486,0.019245167953572402,0.011891639737382205,0.002191670763436153,0.008886522675693252,0.0031302459587451347,0.02155153269051574,0.0005523469212164994,0.0001195232544281474,0.05531601040210362,-0.03361689278977673,0.19432866431624102,0.0354084206674122,0.000267872996221959,0.016145110193539175,-0.008875123854142348,0.05759278473234191,0.00450624493682902,4.34077525151544e-05,0.052040923593724586,0.027270020472363387,0.13567419962391733,-0.03195200389949125,0.00033126458087340266,0.00786727066413817,0.05621152762759356,0.777698704748883,0.041268376424611945,2.9994680734944686e-05,0.016043558746065497,-0.012332257585747814,0.12074477413697567,0.033146724912024625,3.4123687252083643e-05,0.0021055360488837975,-0.03212955302201447,0.09922123176228448,0.0012761754203499836,0.00010430925063601686,0.019913804924327826,0.05286470025075507,0.35458312934068476,-0.09101383771387699,3.4438171274308997e-05,0.025029797129019607,-0.02273808240604602,0.05152407906983906,-0.04446631824824749,9.784102197317275e-05,0.008021854601042737,0.015866297525376806,0.0605362360270428,0.055985242409226525,0.00011984192469093859,0.0008677351624996473,0.00825706441864956,0.010386767184322838,-0.0492851356687298,0.0004543817052013607,0.024082711281711695,0.04475892178343648,0.18151758760704753,0.19769143652988558,0.00010378794525281203,0.00889475402822025,-0.005646086734675709,0.0185129666854614,-0.01365144676586941,0.0019574501038383623,0.0011254632482297032,0.021351544617121274,0.1902217100664884,0.029182493323599748,2.8863660789275597e-05,0.004093739031270042,-0.027417661491365295,0.08454756764119073,-0.052359943333336066,0.0010602311555579095,0.00605522391839598,-0.029614839773966273,0.2069281704406971,0.07806078495955966,9.53049400714952e-05,0.010308373499112747,0.06161697948501052,0.08667942180655082,0.12913699022591701,0.00016777598051886475,0.01936555134269453,-0.05096621812189494,0.0713254006105871,0.10047097679033927,0.00041014942094866796,0.0058914116084545515,-0.0024210807309119576,0.010151337660694057,0.0006832476416191936,0.0018485718638307403,0.0022316293245982595,0.02156071052924598,0.06828393584233185,0.016462578128405705,0.00010130593603156022,0.005805552337690466,-0.014044572098039282,0.021003227207137015,0.0024372029759276094,0.001662262751692727,0.0230271493106518,0.014164345362020983,0.042808814984317926,-0.021358426868117095,0.00013109295039429752,0.006287515698739865,0.03279038979225056,0.08999332483109711,0.01847839917102885,0.00014770549695760027,0.010803652836842464,0.028647907832230892,0.13989357683298057,0.02390185462337468,4.9981474185295204e-05,0.0018058610364421225,0.04199317295015723,0.14007671016492262,0.022922757368172782,0.002841389787480368,0.002739407300598552,0.010709818238399369,0.05226765651239634,-0.00021584516089184847,0.00010192709404436334,0.005573630756352088,-0.00079570630770661,0.004419984839095066,-0.0015812248742074488,0.0001305547884921643,0.013173267360107975,0.0036155453361639152,0.021472423202825584,-0.08400102458438345,7.964187063396844e-05,0.004498818883343537,-0.0060466339498600925,0.02989606265497655,0.005359046547010919,5.0833156481859506e-05,0.007990099141403731,-0.02432751734648403,0.05236749115941607,-0.15677920570020318,0.00022649854521280735,0.016055555992396758,-0.015286413918149824,0.07099806525782248,0.03257477387056192,5.3539397159220655e-05,0.007012500723906879,-0.013417832821579885,0.15266723891199613,-0.007637096524390466,2.2676071141024726e-05,0.0010813722159627543,0.013181270139684622,0.040087895835047044,0.014616198948181818,0.0001149351756645757,0.009278803162567559,-0.015054639904403033,0.07603865469451686,0.029431124075004696,0.00031207854919397326,0.011547325261900322,-0.008913633082615712,0.038607301696047314,-0.009665973020357807,0.0001322382519170785,0.038384376513983715,0.0029028438897015854 +2019-09-20,0.01654640301795047,0.10707314837117178,0.017994236995860533,0.00016342165683817187,0.012608357092104226,-0.03817693844403544,0.1146428412660853,-0.02660563849860691,7.99032939941903e-05,0.010503251924165902,0.023420571050876558,0.07223974572784647,-0.01752847233464249,0.00014997486368326673,0.016393329295568203,0.011307867044659789,0.011691140366134289,-0.001265539312207763,0.0003264312101534292,0.01418751569674881,0.008501531173669644,0.018780225772081573,0.0030831708186119544,0.0002368613035078585,0.011847183435935467,-0.0014933911097020993,0.004079637282736448,-0.01593913676495555,7.992796382246323e-05,0.009705832385431918,0.048643374215655635,0.2411765931852266,0.06186175427589195,5.918046753731283e-05,0.004728054448862857,0.025662930120815053,0.21196862182237433,0.032499083970034384,4.151769936077556e-05,0.0023317219735121105,-0.0016345948406129415,0.00133727994869821,-0.08113708937046832,0.0009426111607684102,0.01058815556668251,0.004812760439626399,0.01163634318631302,-0.004093526152409921,0.00014462374718964905,0.008267584503203184,-0.017491578685461376,0.012358351535327057,-0.0032244896488046633,0.0006918195359736544,0.010590242686276478,0.016570372150724468,0.2151920103452089,0.03316059601958175,2.294715815608083e-05,0.008141075160958428,0.02394900299313629,0.06189699787046002,0.03491324408958182,0.00011493939074640488,0.0007024913260822742,0.0017523880005860773,0.010290965331770333,-0.030967852097469984,4.7933150400343685e-05,0.00462609787040243,-0.019604962633294816,0.016757716055732255,-0.013928227517456248,0.0022817820745237726,0.0008276610213800914,0.0077939261269256484,0.05870051397218493,0.0019847944744132815,0.00010926133157915608,0.005786846355478685,0.02584362536833007,0.1577892337663215,0.0019864594661862453,0.0002536204691313928,0.0334746637233485,-0.09458437794796352,0.6540761286549714,0.22210769268553301,4.0733531937087664e-05,0.013221840918385666,-0.013897247499830769,0.07675065240170209,-0.011152808568824352,0.00029842384640046255,0.006443805293147051,-0.05993561130826273,0.7942166357820151,-0.015209142789753946,3.131671434287037e-05,0.015887690910558794,-0.024798085583748696,0.24165123289978263,0.08439183035916219,3.428552849917104e-05,0.003711840468796212,-0.002670183302566008,0.007787935339372499,-0.006208599569916781,0.00011044383909164422,0.004540129408689908,0.06108148183873239,0.4308100293305071,0.03690447210821657,3.275036431212731e-05,0.03562543483600514,-0.003883984734627778,0.010305016201395822,0.0006751612792822368,8.356149814860693e-05,0.0057908280191817105,-0.008795186964293312,0.030899837102867905,0.013328284270539968,0.00013014799489821912,0.009541956454769022,0.03338466624804094,0.03119205142032451,0.009951695741853993,0.0006117565981191414,0.002594055971461484,0.041209937803640205,0.17464612926936654,0.14964892011734257,9.931823738073788e-05,0.0022472144803420482,-0.02255029825752344,0.06809592697280115,-0.020345274988452056,0.002125447239632243,0.01571080595551582,-0.004511284715625696,0.042946169279364475,-0.005695029731482652,2.7012078351886707e-05,0.004000536461713494,0.04530823027063152,0.12858639388027943,-0.033529758110226474,0.0011520023150658819,0.01250951536794291,-0.019170324194696938,0.13800791595117634,0.01002935631458938,9.250199578181423e-05,0.0018925374532084618,-0.025397022243348513,0.031335987976088706,0.019603259589489004,0.0001912867082634874,0.0013820673149015361,-0.005668211698470451,0.00814865186270203,0.0005098060546893866,0.00039926773140170686,0.006787277688676504,0.03309147178544402,0.11546280856209878,0.07530725622465057,0.002221387416116167,0.002544801384331324,0.03132806082666315,0.1214482235896258,0.010265521444328974,8.276233155047079e-05,0.010696551534255234,0.05934863060975162,0.08015260900659896,0.03721600598239619,0.001840645828990988,0.022392353852209234,-0.00979148262899165,0.02512459615363602,-0.0842775744863304,0.00015440643806422782,0.003288273231700488,0.0167002260048364,0.04172256092070889,-0.1444884893045367,0.000162260110404887,0.012162913580853427,-0.023657816958374267,0.10051159179488538,-0.015988282758627303,5.744767296679479e-05,0.004123945000955819,0.020993243315407882,0.07939239326765489,-0.0025152185466111796,0.0025062171841363904,0.023634597024798535,-0.04372244039388719,0.23866630760762142,0.08457692301968701,9.112842217754597e-05,0.005288677891557136,0.012307549905098412,0.0687845028074737,-0.0193216011097241,0.00012976028400607005,0.01371130121459138,0.022753526990577925,0.11777674404373882,0.015612270568924084,9.13772071746519e-05,0.016150999335133795,-0.009288372231400489,0.04150377386666551,0.005841970235989861,5.6247007041884605e-05,0.009298695319592107,0.057142541565636196,0.1091422685808562,0.08664005007687473,0.00025526776173104716,0.01594170506324137,0.00012700946126926403,0.0005712145235897154,-0.030316974034835964,5.5290588003012574e-05,0.01290648912364369,0.0038646756419731896,0.04375221524127119,-0.06898616229475606,2.2789998074138403e-05,0.0011557552892173448,-0.029441663099302864,0.10420249400750065,0.062248414297131745,9.876275354059334e-05,0.008443364354125706,0.012480749244792484,0.04992324084465537,-0.07595358264517112,0.000394063180417092,0.003281708917664783,0.03913893257356705,0.18866939038488065,0.006765672923558514,0.00011881720359291526,0.021991185216858024,0.004818273066674338 +2019-09-23,-0.02368757004782968,0.15302695955621523,0.012183109869294509,0.0001636964065908557,0.006832778655718066,-0.0063243006575674585,0.0182276013114597,-0.00016083088951773013,8.325177732367302e-05,0.012902489977277283,0.05277820903715112,0.16768734452160736,0.12612839332099476,0.00014559671153147917,0.01572126862527771,0.007384790928905766,0.007775596034199402,-0.0007333563462378202,0.0003205327216882107,0.01666275075623771,-0.06144721432699998,0.1300875115225013,0.19753932095500584,0.0002471521344464393,0.003290967134581088,-0.015938816919353428,0.042432979577902555,-0.05766454324650136,8.201613392126462e-05,0.007364853799083293,0.019154450600304816,0.06403023791389113,-0.13109106389181346,8.777572786952746e-05,0.014961676887315326,-0.03732762663343663,0.28598352283128825,-0.0017575566679664976,4.475978382256411e-05,0.006214764075309565,0.014606236640510108,0.012618744145837376,0.023633545508057924,0.000892620762404817,0.0016303301853767037,0.004298014536796415,0.01029364743733321,-0.00023892090228221958,0.00014600256212432314,0.018878137352548553,0.025065997316106533,0.01752355255167167,0.05288736290979873,0.0006991770939699975,0.009055399652398781,0.015439928495058325,0.1870744790578133,0.006315334444315843,2.4595379591603305e-05,0.0004410797448480278,0.03806418617223884,0.10955686712645289,0.0715928705471205,0.000103211474369687,0.03280665490273391,0.004561969012743392,0.028015552582911333,-0.010553338160569865,4.5836870259280674e-05,0.004697185601556196,-0.01443198825191294,0.011214358842056456,0.004401259472565306,0.0025100056004838784,0.008611374291632444,-0.03085052657983267,0.2147484470165173,-0.020888624536286877,0.00011821828567812295,0.01283818792706971,-0.043860381959716574,0.2578634752705527,0.05159739085734578,0.000263384861744178,0.01184586762654294,0.08478592403701292,0.4010802635504606,0.05101595265531153,5.954611365554148e-05,0.007648142953099918,-0.04480836408302594,0.25160191201947396,0.0193518547194153,0.0002935161206259283,0.00038763435217357327,0.09109519746372229,1.5208875989810866,0.10988648608271476,2.4855848553007284e-05,0.04029725354574392,-0.02001813087333859,0.1831965986772131,0.041234736191687965,3.6507981957856534e-05,0.017442729320268184,-0.010477918284877406,0.029948302181455066,-0.015767419428601534,0.00011270042567710369,0.0038629941113449634,-0.06531813897646924,0.5132922525969501,0.06085414612364463,2.9394188119676775e-05,0.016864284453132414,-0.012325641785064009,0.03455828294919548,-0.004177739968166444,7.907419293677927e-05,0.004878895213671849,0.01110624081164893,0.044201826559183935,0.017062032459083547,0.00011488821060623838,0.006098643055230207,-0.019944260644949686,0.01486211892565864,-0.033812813510555914,0.0007670307418328917,0.0028435359304452884,0.010925293651216299,0.04068399383711324,0.006368311702994223,0.00011303047378914532,0.01131515251386484,0.01617351905079737,0.06267611522136426,-0.00905718899095252,0.0016562337446021384,0.025964177341720233,-0.03879940091808235,0.429998377575978,0.05497045473149764,2.3202800089915144e-05,0.002554018366690549,0.01769341779856464,0.049368731062099366,-0.014672131365886463,0.001171739412154565,0.009424966743611369,-0.012051625093342176,0.08479924047700067,0.012489961025355406,9.464099418667049e-05,0.002405515215291516,-0.0031654727035106502,0.004537344746702015,-0.006861845250566221,0.00016465775166676458,0.027002633908935782,0.035436351405316716,0.052925000374820494,0.02790082261502247,0.0003843191664357129,0.026585163433316565,0.0032043810581419765,0.01581858678510633,-0.06744284940297683,0.0015700981992562168,0.020566615210800176,0.00467499034022042,0.018280726678281355,-0.001150556422342987,8.204982003846292e-05,0.008708340948041612,-0.009215744511472602,0.0112486505540228,-0.01437203077937123,0.0020366068150864526,0.0027332894087204445,0.027266910753558634,0.08124415810145103,-0.046526836385243284,0.00013297188659809581,0.007903669865354542,0.02388547588313885,0.060545758061895875,0.009840943015239382,0.00015992286199018445,0.013253663992022598,0.03654261391204882,0.1543629709163455,0.04769205228525954,5.777905119796987e-05,0.013013275071675233,-0.0160157599466237,0.05811823546998338,-0.009654137978256667,0.002611879811254247,0.026486753374832615,-0.014386305377204504,0.0670761466805599,-0.011751464881871185,0.00010668951472385418,0.009213625727628743,-0.034622916683559365,0.2053121454893553,0.09092806010143452,0.00012229530759547044,0.0053614081219093696,0.002819884540345028,0.015174472690902198,-0.005081946644111525,8.789545464978825e-05,0.004663503487697124,-0.013555258426959628,0.061513793480408335,-0.02867820386732315,5.538379184220576e-05,0.009442156716563121,0.002597874983008623,0.0048112752216683775,-0.0005513318599713778,0.0002632615543222143,0.002996608538088964,-0.0018518315976850748,0.008050853679016335,0.005300973688679274,5.7197089812829647e-05,0.018242598298693718,-0.009564842181041464,0.10906545638885723,-0.009697429496806563,2.2626734090197934e-05,0.0014475892905707563,-0.023328205627591334,0.07804773167136442,0.010934739088872979,0.00010447924215796683,0.011950770801190778,-0.004456945233328084,0.018243043673808503,-0.014687370507331028,0.00038509508047304333,0.0012805228980013212,0.0042839618367331855,0.022972063365864385,0.001159493728432271,0.00010681134496747957,0.020546583136528906,0.0009315185224425634 +2019-09-24,1.1457835556558358e-05,7.514632506787919e-05,-0.044189099752614716,0.00016124320502282252,0.00020046721207906846,-0.013090980567240177,0.04764213749080548,-0.018576761977613127,6.593127383111068e-05,0.021739435338003394,0.04089427165990297,0.1411646199120395,0.05545490393234237,0.00013400895452463042,0.015187527859956822,0.00429205486266011,0.004105159474240936,-0.019297578519556033,0.00035286053480387207,0.015131455767656378,0.02026453977316476,0.04306477385947693,0.018402199390903685,0.00024621377464032466,0.0019001292275606502,0.032379014487218916,0.0811624369411663,0.05323229009452801,8.710744742284125e-05,0.007421271067685195,0.008005002079359497,0.033828494892618875,-0.009203966279584568,6.943343143041544e-05,0.006714941280776545,-0.001770236712268746,0.014672347305520337,-0.05552893087257096,4.137427141941186e-05,0.01052324365508073,-0.01472345252881711,0.012749212652121342,0.010747944877923915,0.0008905761943938442,0.004566681938527978,0.02112932689837694,0.049702657632339706,-0.03308971419787876,0.000148651034975911,0.008863572172178156,0.008933478999864394,0.006154413485636842,-0.05464519618766525,0.0007095096522503722,0.010699975956567931,0.0020566736112039383,0.02374099936215389,-0.047354331862237906,2.5816012865124908e-05,0.006150025347782883,0.03953669122840033,0.09865214976983405,0.06601311957803892,0.00011905422308026267,0.015277265411523284,-0.005768452450087877,0.029970639590782663,-0.006286891350126665,5.41782688833573e-05,0.02028360759519294,-0.0023047307835105404,0.0017703515573848929,-0.046054264764518175,0.002539122522624502,0.0034277459627224185,0.0035486829858934763,0.03309467918255888,-0.0005029909074182735,8.823911357288072e-05,0.0033000283941328314,0.07831265123923443,0.4575968234548738,0.08597006781966846,0.00026500688543795736,0.037416445339027195,-0.05381360899086838,0.33968884283296497,0.04351962759163566,4.462433859626634e-05,0.0025998780247017805,0.005385663692341162,0.024521555850338522,-0.011035175256982756,0.00036197453252149683,0.010702567235530713,0.03364234497836735,0.46469482242670795,0.011875366469111984,3.004337076912753e-05,0.016474348605777095,0.0021324370883685855,0.02593715750461053,-0.005521272112679362,2.7468538772828928e-05,0.007095274430486475,0.03623958373091203,0.11488324786323025,0.057386025965658415,0.00010161299478415901,0.007981440999257542,-0.02833608159590447,0.1806861862960626,0.0021477356596842773,3.6224901987919885e-05,0.004459462981734221,-0.008002025979707334,0.023009655065218827,-0.02166575171669186,7.710228182354238e-05,0.014871822761349237,0.010027048077703786,0.043041228008944346,-0.015249694474074555,0.00010652144256197225,0.001124482126016232,-0.0303082251092875,0.02550735404559758,-0.013653826365661412,0.0006791577413577799,0.027495053130527847,-0.003004375542817025,0.010146453587501578,-0.015617345490205829,0.00012463096389871218,0.0039683089718669795,0.07504754679193722,0.26670747367399217,0.04665009176417114,0.001806011408134359,0.014494919906738667,-0.014994248185633857,0.15160797051216887,-0.015045009579503556,2.5432254223825547e-05,0.001589416532620706,-0.07049748675101188,0.21580024265493214,0.15853671678764433,0.0010680534216393027,0.0024103534637615305,-0.018989662919627913,0.1304139563893417,-0.08475389592176291,9.696585442208849e-05,0.008849408547721423,0.011680469750634312,0.019897076849183303,0.002734798379074637,0.00013855315449467232,0.01700860244447415,-0.0012221189083220247,0.0016398562151416077,-0.008030000634007021,0.0004277712640680842,0.020661453966961046,0.03125430715509352,0.10787880143638803,0.0528866139449803,0.0022455571084091254,0.007267707582404876,0.005669853921469583,0.020293555481606572,-0.004273185481239648,8.964046424680445e-05,0.018345269386084405,0.012602376306004063,0.019150484858584015,-0.0053406714869153405,0.0016358740424775346,0.031495205636547306,0.01939911388306739,0.07011880820991565,0.011529897834841735,0.00010961333797172486,0.016757488218279243,-0.023292371766808213,0.06353089249907826,0.022840986482463032,0.0001486240641014676,0.007011498016172213,-0.004756046886964816,0.01963383462917699,-0.0011834740252215342,5.9122790480273775e-05,0.020041531743892373,-0.03328178444275473,0.10645619943501416,0.027494272468711726,0.002963150458005393,0.033512620158387546,0.01944411365718999,0.09897285184638682,-0.0672499976225162,9.772656575011847e-05,0.011116799253561498,-0.0075293993071116555,0.03673616628080792,0.004978479293998198,0.0001486371200478539,0.007047993694881238,-0.008128713659021928,0.04883496511701067,0.004692308981232225,7.872988957664076e-05,1.0352011069960417e-05,-0.02939005008459883,0.12530601166929106,0.03689194459058793,5.8948914717653705e-05,0.0013452515006569853,0.010619819484725287,0.01760207000782196,0.0033179823065649836,0.0002941594364259486,0.006187015863204567,-0.005540510765588264,0.0216307330347144,0.008524736580016743,6.3693181359081e-05,0.001809072376130586,0.015592669256239498,0.21004994283565082,0.019751080733062247,1.915266377702263e-05,0.004109343861991895,-0.005975128847501051,0.019511795642562925,7.164273415761444e-05,0.00010704317954851955,0.0012055921133221278,0.020192530613328787,0.08790227594812101,0.026825482533349744,0.000362091725957872,0.005661959575249888,0.05419734524782926,0.23195443536940175,0.03337918006271587,0.0001338280434207899,0.04007551354673443,0.003939154065326712 +2019-09-25,-0.004589504162956431,0.03031936631636183,-0.1063617288079355,0.00016007821461046972,0.0004129593070326292,-0.003962395009713413,0.011489823495971897,-0.08016690678693926,8.274751063632259e-05,0.0019662089428996096,-0.004616650816301567,0.013895165875213073,-0.014404010630362918,0.00015369526798916674,0.014598001596395087,-0.011515775376530807,0.013818648034563145,0.0071149428394151676,0.0002812519136060257,0.0005221508552157919,0.029055428459218425,0.062346951134722065,0.03040433972278848,0.00024384274334735521,0.014210978839550002,0.034360207369746425,0.07332845665927161,0.07511377590127419,0.00010231280031191195,0.00994948169020196,-0.03858196968380602,0.1322718476269382,-0.09717805205060051,8.558680823488733e-05,0.0054660215835085745,0.0049022842050427526,0.0425140085972534,-0.0275269933877059,3.9542583820889706e-05,0.006988738752865761,0.01907679092738201,0.015899987072560084,0.036429529525546823,0.0009252377322358624,0.0033719717105729404,-0.015409934166584656,0.03873614657690399,0.006094942120538793,0.00013910612544592386,0.012888728513941915,0.03106458127098451,0.025757885744305757,0.0010986668294580629,0.0005894943538627696,0.0003306314134241153,-0.004580066517141039,0.053506892936577344,-0.05067246728232643,2.5508495347099822e-05,0.0046530502207755555,0.051290439461095086,0.14853031378423887,0.04530507641470194,0.00010258228283100368,0.005612432713667244,0.015395622861481946,0.08273921875773128,-0.03983265661467915,5.237784984821972e-05,0.008026026534459002,0.03049994987945752,0.022115745033644295,-0.032693081216787885,0.002689803310799773,0.00439918305312873,-0.05455090450708483,0.3291814585765483,-0.045511154497097486,0.00013636995542837846,0.014948334842451184,0.020851309728182228,0.140553432050132,-0.011432605251912475,0.00022972069238865278,0.01603304265537152,0.0691164408101143,0.4362611777327476,0.052552477570442124,4.462680080366777e-05,0.019146459763018008,-0.035759379184189644,0.18078425457488442,0.007477817571805435,0.0003259989303054164,0.0014890687072549402,0.10941526377481958,1.2708550958998581,0.12400261938940284,3.572827991416571e-05,0.028867715423012957,-0.00481617914388541,0.05226312616852593,-0.005936770950582833,3.078853027418613e-05,0.032535900717483315,-0.013904185245561007,0.039981488410936225,-0.04157572533875692,0.00011202355310559989,0.005358671927135621,-0.017681487089763706,0.1158499420104937,-0.003070516356412431,3.525456364067915e-05,0.02902919929881395,0.03469100506895717,0.09787989572533262,0.1203698594596047,7.857796307849497e-05,0.004250768673857274,-0.015574190426036087,0.0680717044317829,0.061565778532108074,0.00010461343228406658,0.00957487359175278,0.005351116194746823,0.0048909001454891755,0.0023907625715614477,0.0006253615085525379,0.0054093174329463995,0.01881817334095046,0.08077686247750362,-0.0012836343484851041,9.805652387936712e-05,0.010081629543149449,0.011368344970165315,0.035009104049851955,-0.021501639123451148,0.002084180949560812,0.03602453772621049,0.02567491066253358,0.2296351864187475,0.051702809462484414,2.875098325603711e-05,0.014629829932939693,0.007966905085267043,0.022256360157002147,-0.005874644527462603,0.00117032578161923,0.025000277004657765,-0.018277102959604902,0.1499481316787012,0.029531504371383466,8.116932654224453e-05,0.005918446799754954,-0.010280654694387823,0.015060795052337152,-0.006338979439159723,0.0001611084279543057,0.019129682544917568,-0.003615957092553778,0.004357370185918856,-0.012933768186005097,0.00047632428552743517,0.0002470530418795579,0.00800793484819556,0.038562278086665076,0.0031929393206186103,0.0016095637783181945,0.010560785517313851,-0.04167705434779064,0.1485729853619577,0.11197860998537722,9.000104182591728e-05,0.016242324356487727,-0.02141115621553238,0.03267774952247233,-0.007069683499033738,0.00162879029271684,0.0013845686626454661,-0.0041324965688741555,0.014902718341846819,0.005169492198778522,0.00010986593212414098,0.020896925620576812,0.008139582789872256,0.022697632427826193,-0.08103766083544682,0.00014537240063662222,0.002488673444239831,-0.01632558193758824,0.07639561830855766,-0.020210997053172274,5.215718523418569e-05,0.0009868184671567451,-0.04650673951880384,0.15323813476936513,0.037118453620189,0.0028765179872564067,0.04586443080374932,0.022795119823687555,0.12889321875127457,-0.030469872348059816,8.797360339406226e-05,0.019055770234832875,-0.028645705703463857,0.15301050342292707,0.03875303501957551,0.00013576851448297711,0.017205047103449972,0.00540674397151177,0.02516853693958467,-0.06663892467524249,0.00010160767944599601,0.0161357693090723,0.007663457997123793,0.04374758202473068,-0.03213846610766198,4.4026901519399776e-05,0.007732157693451222,0.06399141258438344,0.14899165341977078,0.08173924320669212,0.00020940601464462114,0.03643169063488164,0.01705345963008334,0.06416022426805207,0.0013987069647916654,6.609384231907538e-05,0.0025999296744022666,0.012716622963193168,0.16557970459059884,-0.15251960130547182,1.981508670663322e-05,0.013989774594386169,-0.007740968754707423,0.023781764539505715,-0.03190765886415623,0.00011377850005152346,0.010251697246603924,0.009235181099620987,0.037475363710222455,-0.08350856214785292,0.00038844320669834977,0.015536085775906087,-0.011174957089747837,0.054111376062922864,0.006885711612972729,0.0001182848386777329,0.021641679706831802,0.004462869625874856 +2019-09-26,-0.027876343467500033,0.19806989382476442,0.019124499219817546,0.00014883460596219303,0.009017957499356211,0.024485975440725238,0.09550335157032987,0.023285075510577263,6.151900792420989e-05,0.014546418276791316,-0.002048376312640485,0.0066908008791141576,-0.0238176238734196,0.0001416213872603092,0.001412136154543058,-0.045372074620153115,0.05160912986717289,0.15980563515134483,0.0002967084788607464,0.005357745104178618,-0.025448788407908447,0.0520982922177493,0.018334700546152098,0.00025558855095255317,0.0004653158789781305,-0.0028370399255467794,0.007180922508299943,-0.018902665276608745,8.62644678008541e-05,0.012135986014761325,0.027847648852955032,0.1253332029734929,0.03215651041374312,6.51946939247867e-05,0.009846945040821134,-0.04921913625086725,0.37560956143236396,0.09239575254423599,4.4936160642250165e-05,0.0004939152609313056,-0.00093776198589011,0.0007039522827334371,-0.0024090080475901044,0.0010272926687553271,0.017870847917427865,0.03514502428777032,0.0879487106925953,0.008834206213789641,0.0001397321228366397,0.03336438365043092,0.013936096254760373,0.00890123558245762,-0.015421197721259095,0.0007652709016341413,0.006370905792757189,-0.0031088435820767197,0.04884047822596408,-0.004579058395955797,1.896888280095548e-05,0.0028378658775410105,0.058860641091305115,0.1554017566181649,0.05331607533477418,0.00011251750727989876,0.0009672957354454653,0.031424593506901924,0.18361804882389576,0.12791207171707902,4.817437830575294e-05,0.004667488686658373,-0.01911906244020642,0.019663805715740824,-0.02705337208962183,0.0018963652545272054,0.009196769857120882,0.08611128591757695,0.6555303848212062,0.10112372703136095,0.00010809842237604723,0.05055181992591127,-0.018842723637181428,0.09921782577902644,-0.006411238864047492,0.000294077775470659,0.005386649496367733,-0.039852300957882086,0.2517353685610256,0.020713887310928256,4.45933520938317e-05,0.015423282912846446,0.019174235463664174,0.10260219346135523,0.0024305979634432753,0.00030799822835451263,0.0016860554650255759,-0.027392870923426498,0.3574808972994346,-0.05253424518551836,3.1799108385653634e-05,0.021417715536840923,-1.8444187533892185e-05,0.00018137708190782157,-0.0069009730152724096,3.3974950131017886e-05,0.008072570104538988,0.012030400551336166,0.03211422481686738,-0.08495523441899439,0.00012067169133633665,0.008250348119290034,-0.021867116397745467,0.1331132371156689,0.005013702051161088,3.794570689987915e-05,0.014501309489380833,0.0116650864922107,0.030224429558114815,0.0018019434653012488,8.556718261350581e-05,0.00841736486145725,-0.006404999364341902,0.024574759130872644,0.011935538195413061,0.00011917314944221776,0.008201415651697075,0.02783099560743822,0.024502129901366663,0.018659812020567348,0.000649232819999863,0.017848433635804732,-0.013854481179238714,0.05033731361026143,0.018698537089095253,0.00011584738675907543,0.0016493908985240105,-0.06406644132353016,0.2204659261684424,0.058296479423458024,0.0018651265255018594,0.03560523098081415,-0.03128552678604084,0.28391102809493257,0.021097061937966927,2.83363171696604e-05,0.0010419484105826096,0.00661798382622441,0.021456403926466597,-0.018911026408417703,0.001008416713002805,0.004158303981983294,0.00317645238779549,0.022979321323992132,-0.03893662593512754,9.20514841982432e-05,0.00566622090709998,0.011648729399322343,0.022070751552939402,-0.019486198302662367,0.00012456809444638607,0.014282628832469137,0.028327256418066195,0.04279359919730668,0.023570083134577757,0.0003799527680752711,0.006487944808014515,0.022071038039713223,0.08150382194816641,-0.001171276591360656,0.002098916327310947,0.011245043830978518,0.012763426973386624,0.05683544769387028,-0.012916467358448225,7.205072961267895e-05,0.0011387020519763884,-0.05554462857091614,0.07981999982582742,-0.018778329846800737,0.0017298463768305142,0.02361695218081938,0.024824004392182217,0.09461964991696525,0.01595556023120896,0.00010394570258500268,0.00420865821043022,0.005190555729879328,0.015715405254644595,-0.014011052726420002,0.00013389015666660586,0.0018658844324007356,0.013183452023212375,0.06550495201753778,-0.05849189272845132,4.9121196316423214e-05,0.014458372348554481,-0.032256332511329915,0.09915170332386082,0.0026408444040826582,0.003083421284415396,0.013924091104404426,-0.034891239689251036,0.1804937719816495,0.05042760728704334,9.616006538909482e-05,0.015555602379440238,-0.04541082628740461,0.29401688842538365,0.0035266388464904115,0.00011200770830012207,0.007498780493306342,0.048370776090057285,0.312857810540248,0.09379241543363631,7.312817792309559e-05,0.01015263419514878,-0.04152906597605683,0.20339718606669208,0.0748602645728737,5.131621525096786e-05,0.023561082691903323,0.023320705213468743,0.04308009600079085,-0.018876808298459596,0.0002639334355669479,0.008206578202476096,0.010110790026682734,0.04333671646603364,-0.1090243234656498,5.8015423204208e-05,0.003536035936850393,0.012222100729227314,0.13664397332809738,-0.0033385588462624956,2.3077388546970436e-05,0.005116247187210328,-0.014884197969471092,0.04928255022045015,0.008002705854445085,0.00010557017201434028,0.002882883595834296,0.003962320180830672,0.016791916001818823,-4.063907606262696e-05,0.00037194376611209196,0.004217716786482788,-0.002725426084371271,0.01462611903829925,-0.03943172494629304,0.0001067276877109217,0.005384258910432367,-0.000678155576616867 +2019-09-27,-0.03592866722518107,0.2285088044892241,0.043024249262318036,0.00016627415639121804,0.014280716322625939,0.016007666003288318,0.05004726969969163,0.006482701948317958,7.674642442382306e-05,0.0005333172548029488,0.000787920015193208,0.002584281001583212,-0.00029620269034323925,0.00014103912418560207,0.01684917174712193,0.019206564754830156,0.01874609032467632,-0.07832123239110808,0.00034578555417157715,0.00773939647426348,-0.01228405825367053,0.025396147605062026,0.004297479568398557,0.0002530881417042345,0.0052805094336736205,0.006524352291349959,0.016185968143924902,-0.021978083103174135,8.801272383645269e-05,0.007504267256101243,0.01524203562658387,0.06511138844326175,0.0036495750005562646,6.868720921734045e-05,0.00528461333098231,-0.05038785892124848,0.4563280365291895,-0.01830819337607311,3.786582006389278e-05,0.02331126630308926,-0.023996960237680182,0.021029145453763273,0.05566907947942304,0.0008799933567624029,0.004868018985444551,0.002678402116101826,0.006702278206483026,-0.0033649161918073585,0.00013973822252595175,0.005012296665911218,-0.023815542184667766,0.018318064396300366,0.08631013290852725,0.0006354849210086711,0.02504874932695664,0.011728349468460528,0.1472860922945392,-0.0340352685656039,2.3730011443934763e-05,0.0023471094885918068,-0.011309286154817768,0.03716006824616449,0.0015868754312343078,9.04085966293627e-05,0.0066908286537931475,-0.014349086399949113,0.08152028889112342,0.006316434475663997,4.9547341710164835e-05,0.00448671702745768,0.0441197618191588,0.03617747194265592,0.03983821398718881,0.0023785808411169655,0.023490455499045576,-0.01973862893321515,0.12051931643142573,-0.006363287687891043,0.00013477595902826808,0.019919348149903548,0.05222873910327864,0.28438684552870624,0.023038953318347166,0.00028438603698271737,0.03171639327302109,-0.04296037709518503,0.3054320873180839,-0.029353731597140657,3.9619991742589427e-05,0.04242057980832694,0.02187361730255279,0.1103605643204023,0.01237963339713311,0.00032665815470343107,0.013803274181540232,-0.01503647451045076,0.26240055417938335,0.0015649899618389923,2.3779981135836005e-05,0.026259562607255253,-0.006592721683742585,0.07239367126819488,-0.07599338010248186,3.0426069278352413e-05,0.0013067156622939475,0.005319620773544934,0.0136600841968434,-0.01682275200233941,0.00012544404595524067,0.009714551019782013,0.01529553712177737,0.10529293261832821,0.00023521540979679742,3.3555049718406285e-05,0.016528496241439206,-0.0013749718890055062,0.003985801759973878,-0.053898209048681395,7.648134325319648e-05,0.010092401738043402,-0.009668890239525683,0.034101991105162606,0.005733766983874084,0.00012964193035373532,0.004213224798465275,-0.01658385220344696,0.015786261466603283,-0.13810512631760224,0.0006004566905809812,0.009434354205957247,0.033859695939810336,0.10173737900101248,0.06097219406911671,0.00014008399474263464,0.0011842856583701917,-0.07564591926291511,0.25242491152811675,0.060216372460495035,0.0019234126448542377,0.021714520129818136,0.019150317535214782,0.17766297188470276,0.003258751762183418,2.7717959266980444e-05,0.011804395396029415,0.014165328030761166,0.04737819382393578,-0.007990784390079839,0.0009775059408619303,0.0017959304900765588,-0.034174103439958754,0.21711270712535952,0.06857235334519778,0.00010481840102837563,0.000810378900891983,-0.007181049763068646,0.010251597881445283,-0.008076403322189486,0.00016532622903026986,0.0019277039685636332,-0.07483850615724692,0.10385901542698887,0.12657159012632965,0.0004136040880031341,0.020778596897656782,0.013287597329215192,0.04911705624649131,-0.06164122176001802,0.002096836026028094,0.010096305480816971,-0.021975978862530082,0.08520451850233807,0.007813339732005205,8.275151862685275e-05,0.001778859890131918,-0.0032805745073343994,0.004118358552876167,-0.0015751932972966783,0.0019801721269326004,1.117839739825518e-05,0.006631075245875806,0.025611227276137648,-0.00035259335725182936,0.00010258163161385682,0.010955509248850763,-0.007429216399422734,0.01759084304597463,-0.014173785852260508,0.00017120511321824274,0.005348337878040135,0.02234362843128044,0.09489220954764002,0.004146032851172234,5.7469453379121736e-05,0.025564912878767228,0.06211723324216155,0.1994744556457548,0.03572047023260586,0.00295150058059108,0.01920978136845631,-0.015817716059312845,0.09039388465211379,0.008301138942702357,8.704529381825695e-05,0.024548072195793202,0.001881552645426516,0.010139970575916285,0.0014316944121819145,0.00013456758668911972,0.004289554232965325,-0.005290897652443287,0.032763053355599654,-0.0040362697151425705,7.638246860563161e-05,0.006908265469980343,-0.008736912488167166,0.03931956827021524,-0.00409485684647725,5.584658740052605e-05,0.004507584177680657,-0.013706036195188141,0.024205872326753627,-0.12915175288700625,0.0002760708358611468,0.01227746368041056,-0.00036049349751203665,0.0014935127961099028,-0.16887581689984557,6.002094977112279e-05,0.0005485645650885665,-0.02411346065620699,0.31872392448869075,0.04675407427305114,1.951983597714901e-05,0.0008694221063078487,-0.005241947503743096,0.018407592636707274,-0.02451511365924111,9.954160457075927e-05,0.005093346095195395,0.018034946426347145,0.0780942980837648,-0.07269217922191969,0.00036401853850344596,0.0011969437924252884,-0.029793259073528956,0.16270348397125178,-0.051602537734283194,0.00010488006709835442,0.0006398848892433756,-0.0046569639490637105 +2019-09-30,0.016177719476557505,0.111829822324061,-0.10337112829761344,0.00015298408363749856,0.0037078229299692582,-0.02153218747524668,0.07620239803799259,0.005589092985239858,6.780005411862536e-05,0.006072731646795387,0.0037434852654808937,0.012654317289505036,-0.0002542825134891403,0.0001368467894657047,0.004678854829158195,-0.008372391041366365,0.00936684799993161,-0.006832922304339725,0.00030166427953334357,0.013097873455745961,0.011196328216730519,0.027479897928778464,-0.007749425500950004,0.00021318580228280658,0.002675590767858214,-0.006614277443286853,0.017453481606323373,0.00913869021273615,8.27460126222179e-05,0.00455074205638767,0.02412030729808782,0.08357458297762699,0.012112563519724564,8.46834364775603e-05,0.02094392643795735,-0.019823161406491097,0.1779245292672127,0.008626611395070103,3.820636375036046e-05,0.015464067335461537,-0.009400919372674657,0.007660500857457661,0.001642660378671451,0.0009463634287201424,0.007114155486714033,0.04788865598360559,0.11466453993436358,0.05797522497035191,0.00014603784041858112,0.01927118196483629,0.02285823457679298,0.018519849347777992,0.024050277490936675,0.0006032948166045805,0.006998329997541157,0.007004725710276742,0.07987872306130941,-0.012346936203579085,2.613261135829742e-05,0.007942360940072756,0.07429094738537705,0.22971430487282016,0.09108396207892613,9.60724561647779e-05,0.0016115647401397108,0.011758985501546401,0.06332796804384958,0.012414593224995274,5.2268028574273374e-05,0.010478357965908652,-0.039860467811426145,0.03136177990138855,0.07827879489710024,0.0024789322718542094,0.0121417927969886,0.01657279531188399,0.11596233215509034,-0.004193372025113818,0.00011760639379334364,0.01997009852233133,0.06390776934343934,0.30812555076228915,0.0003294555399830582,0.00032116941308983274,0.007498349200191807,0.0030775274525305296,0.022051838396072495,-0.0008377075019403283,3.931136196889325e-05,0.033485530148792145,0.06883230257651682,0.3922069473631864,0.11035616113444538,0.00028924364311625384,0.037618968694950364,0.055767144704105334,0.6904813050083878,0.022099322348828946,3.351634991714254e-05,0.05620120144710207,-0.017622943292770265,0.16147386779719036,0.022741003211868213,3.646346238992944e-05,0.007635700708619004,0.038333366453947484,0.10402254212853516,0.06659399030211716,0.00011870588595960384,0.00786804562395167,0.005048110206878465,0.036976470026877366,-0.0015011975990459276,3.15352119994517e-05,0.020285924538707797,-0.005003369442779783,0.015405754687838872,-0.026343801663518095,7.200405849089195e-05,0.012892290975750967,0.0013183667489343668,0.005963745144800457,-0.02235490608391051,0.00010108012273400856,0.001610467575770596,-0.04673293186978514,0.042486123895165914,0.060173769578526,0.0006287116070767995,0.003368589935381203,0.03917730733994377,0.15291142162675064,0.05893463364850573,0.000107840195539099,0.0009978644265540176,0.006075060881052324,0.02190059989272037,-0.006650638563776109,0.0017803844736005547,0.011144172709630426,0.0484441077932902,0.42420820034507467,0.12457443001527901,2.9365952874430426e-05,0.005051740927197306,0.06146476803353618,0.18338115159110804,0.043549026913348665,0.001095829079822013,0.0055898123671385275,-0.0020039758521660585,0.014455705994223387,-0.011783748392792363,9.231639153730968e-05,0.018021551609508146,0.007308143280043686,0.008905969839574621,-0.030004111578804556,0.00019367395421504056,0.015230711316872262,-0.04581269137228679,0.07484521766400322,-0.031668842816780916,0.0003513384364444603,0.007402538380246756,-0.020689651351837497,0.07934339575695594,-0.03091799568340323,0.0020211229329281355,0.010997407369574854,-0.022946539360504465,0.08669315783829123,-0.10782781598740261,8.492249503072888e-05,0.00305630182859451,0.041141409654198165,0.07166457382843358,-0.016782036732793756,0.0014270915589430638,0.016160002877897144,0.004528792975813209,0.016063957862823365,-0.04369373146751686,0.00011169814185738708,0.0033844249919564593,0.030512819395228534,0.0787198996734344,0.006768671649518243,0.0001571296642895363,0.012694761589527873,0.005524625787555128,0.022205591558930076,-0.0027548793845845014,6.072317119504806e-05,0.016765883940578645,0.03948075748211127,0.13693514893159217,0.013761619658931403,0.0027326788528846953,0.010980748291907344,0.003973909542891265,0.021159540372614312,-0.015907225215463738,9.342267924106566e-05,0.013602005418334558,0.017681642519331135,0.08484655753676756,0.014118590936662885,0.00015112947158153116,0.0002238154367220093,0.03161198708362384,0.15922378746057425,-0.044346292634885494,9.390582754740218e-05,0.006958122129767558,-0.013060938058188457,0.05903447511448208,-0.06305651294724793,5.560528339547455e-05,0.0009359620764808358,-0.006886504284379315,0.013697713185146612,-0.04414990451601796,0.00024512079006770693,0.002130991731131973,0.009367863618547533,0.032285077210775406,-0.09849297449159776,7.215278616947133e-05,0.006412997007744819,0.025168726886603442,0.29679680727808455,0.07241425072231766,2.1879294235951178e-05,0.0042525080584921915,0.009892199123622693,0.029950709467071526,-0.02078158694073849,0.00011545020277793587,0.005399821237229586,-0.004253847856593051,0.017513906268731613,-0.010407313087629736,0.0003828484583688885,0.004809094319221814,-0.017141929120705106,0.07733429625172883,0.018955511372557382,0.00012695778981213846,0.01922879536537719,0.010289731746080007 +2019-10-01,-0.007838871716306215,0.0566331085710797,-0.021529755410909356,0.00014637595468195124,0.008531480496469526,0.003978999967690591,0.01471063631756795,-0.14438365366816464,6.490124133092831e-05,0.003308529084227998,-0.025562998462981757,0.0720212109018092,0.029584463057159765,0.00016419070947383787,0.008498840895740791,0.02088625113979901,0.023991369688962018,-0.0480345462417048,0.0002938145570347402,0.0052618206570466475,0.0006662939895160145,0.0012168706945775252,-0.0011510063331147918,0.00028649644384756934,0.022882677418518408,-0.004306311511032292,0.00957904480168768,-0.01924285386354738,9.81589667120506e-05,0.0025789039910894184,0.032839086493286186,0.10718964911503986,-0.017573131121419585,8.989345518732638e-05,0.004873086081587293,-0.031213142252156267,0.2727254695462642,-0.005679074166337398,3.9247356297873216e-05,0.011035459337316157,-0.01905999494908082,0.015132496311089098,0.024203609075589532,0.0009713080567870195,0.004738637683093049,0.0211653497255491,0.05291442325130099,0.006285441069860589,0.00013986635868287295,0.0022755746848700732,-0.007483728509963699,0.00494827382277097,-0.01647351728074428,0.0007392454465192059,0.004455240908043515,-0.004556387989427721,0.06472490346417513,-0.03496709064333474,2.097838620928991e-05,0.004900363154453339,0.09329872759504271,0.26764090938767926,0.15264309835183232,0.00010355576037783672,0.025400343443045294,0.02721991649472829,0.16120143705586853,0.07698206548579198,4.753130057060654e-05,0.0010401443054937943,0.03892423941558123,0.03508918135952995,0.012907298784334227,0.002163564623193494,0.013177494389929987,0.004498131166219808,0.030328613009503125,-0.002326598261584085,0.00012204828286573693,0.0043785778542509216,0.014836602721904029,0.09465913168452735,-0.004283885029641365,0.00024270581591465443,0.006225765058917907,-0.0019657502828759315,0.009983917337668775,0.0010351222478200283,5.546108049104616e-05,0.0062074399793921806,0.04560633869759209,0.24938506250066006,-0.020791216939519207,0.00030139884162473397,0.0018902948993040178,-0.037798033583768875,0.4419470214115719,0.01520337984706217,3.549189815206609e-05,0.009310518502826251,0.010827161421485643,0.11917046376005368,0.01019127576117461,3.0354822056826153e-05,0.013064803494776137,0.013971217345306344,0.03464960136339487,0.0006403400453490572,0.0001298849292624733,0.006091669840823506,-0.05832212251657298,0.39085422730215497,0.03450506438874027,3.4467587241468676e-05,0.007470461960659794,-0.021117554245479758,0.06414573731215566,0.01684164369494434,7.298829174572197e-05,0.019536168901449345,-0.007288726223260382,0.0281234089427209,-0.01319145598240084,0.00011850379848971668,0.005588365168648781,0.04365757611969361,0.03867570036906404,0.04305512002573319,0.00064520391551285,0.01957782210916292,0.020391486406656986,0.07258407352636481,0.00590930008440538,0.00011824793232814913,0.014118925445155297,-0.015021238939591341,0.04918063952859329,-0.043121398788693734,0.0019603370913405713,0.01610466246259558,0.031947662261476,0.33373366566634455,0.03351963080691981,2.461621413664848e-05,0.028938995823792217,-0.02411088524582273,0.05959848745868889,0.023055534844993536,0.0013226629483071351,0.018025389246303015,0.02165525531519863,0.15699317594824397,0.014411630881443944,9.185613681923625e-05,0.001566300320940544,0.044056665335812185,0.06605997733972713,0.06634635592657277,0.0001574050233297581,0.00040920719201638324,0.0008635129610225419,0.001184136085401676,-0.00417470104436193,0.0004185729494508931,0.004840406086345141,-0.00915073759343648,0.03445035426377965,0.0005650888023777859,0.0020587933207061623,0.007831513507441433,0.025915329733529977,0.09446881383880422,0.024806508802772242,8.801539594447566e-05,0.005699327746399318,0.013161079723927419,0.016208322708277486,0.0009026231885714492,0.0020185087519122165,0.03437380727952117,0.008941541852383841,0.02883353650640649,-0.0062222569160185395,0.0001228656654617083,0.000790429251985147,0.015191207713274863,0.03773497101152469,0.0019754898073904696,0.0001631956796842701,0.01915922750248946,0.02417076766338663,0.10188038389358708,0.011241615654904,5.790469735848518e-05,0.0026518758340333096,-0.049286478109402475,0.16461462317714234,0.038015485679344006,0.002837771556734296,0.01205868604831213,-0.041494030162210496,0.21784727827040987,0.05038850239058451,9.474887251041477e-05,0.027258436888314284,0.02579774656379091,0.15336270243304548,-0.03679259588464664,0.00012198959897451314,0.007394452654897198,-0.022347325129775983,0.1306160540820225,-0.13936984752570478,8.092406434475583e-05,0.012357548291817238,-0.05236226273855995,0.2519723560939798,0.08877196048241962,5.222914344622415e-05,0.0072327151366614354,-0.041144864118761566,0.07351964461322343,0.017524318630473743,0.0002728611011534036,0.0010821092316800627,0.0005768573883261001,0.002689323810716226,0.0040368838565184645,5.33383698236108e-05,0.0022191305605296463,0.013146825155989207,0.12847814541303104,-0.04631977353121479,2.6401154200652017e-05,3.7255394306005634e-05,-0.011676449979584334,0.033522025220999396,0.001958557044426072,0.00012175576654697241,0.007387497833664007,-0.02271212007912658,0.09712323410935332,0.10228599500650873,0.00036860609405246113,0.005316174913114082,-0.037824410597009014,0.18094660753094657,0.05148752134383833,0.00011972739135976313,0.00648419715096529,0.0019475539304532469 +2019-10-02,-0.023391090942507024,0.1660571252324885,0.006709837132008686,0.00014896338968133744,0.017869935953867905,0.042985434965751634,0.1361727912810733,0.035841948734965996,7.574282734158398e-05,0.006795173345309076,0.02701526361590161,0.09672762196287236,0.021347178286767177,0.0001291980335116939,0.017489677360806092,0.006456592113353037,0.00718786061149004,-0.00038863390388343657,0.00030315976449070105,0.006674224725995276,0.011558653941737398,0.0214057137331396,-0.05328968056159663,0.00028253699422807975,0.01875205150336246,-0.016100723019872483,0.0501553303364661,0.03491929681240308,7.009306057092097e-05,0.002258875624727841,0.05042401309921294,0.1860357414154224,0.062050144422138014,7.95299799047763e-05,0.017533095033317042,-0.024807552705228705,0.2058764510459435,-0.0035480879982378957,4.1321479611460565e-05,0.01563983551428943,0.0010618400088207229,0.0009946845818440942,-0.08670556851124776,0.0008232248761480022,0.0017360990544722866,0.008154514123320127,0.01843297073434597,-0.016129751378212855,0.0001546908557809367,0.021203059669328863,0.02385182922350725,0.015288412948233552,0.01877958766745117,0.0007625768986398567,0.009513484906525182,0.026950800263783235,0.2920199655453625,0.1429083019925259,2.7503116565081762e-05,0.005125606891196453,-0.041805670673627754,0.12258204857025153,0.04691434170718155,0.00010131164288284774,0.0033651751892838796,0.01857006655621645,0.13202559719747872,0.028519501411105777,3.959288404294602e-05,0.0022655865437572766,0.005633488424178317,0.004802898561696222,-0.053860811142982495,0.002287688897502385,0.007716524523593652,0.0006680097105529406,0.0037256507773473233,-0.0008260569161691874,0.0001475478003553443,0.033660924126465486,-0.0070447304356639,0.04359967691779981,-0.007649527130568415,0.00025020117244742816,0.005421745274613695,0.07560791639251942,0.3774550903819371,0.04424052767696538,5.642387896584646e-05,0.03690860711283264,0.009786170441240577,0.05674816652722002,-0.03296194125700626,0.0002842154930569851,0.01926552025658351,0.03431201278644809,0.5296667234956866,-0.001232137055491906,2.688275272209571e-05,0.021054784017147513,-0.006493169558493932,0.07035679142746447,-0.04069004039063773,3.0834181710904126e-05,0.011994810204714223,-0.029410961326576706,0.09698588379351494,0.02327744700060753,9.768400297937754e-05,0.007038865844106455,0.054774321751821245,0.4156473702972806,0.027495949757707715,3.043997893056207e-05,0.04318064312889314,-0.016892787254982056,0.05515319239376515,-0.06933513478860488,6.79059828588671e-05,0.015262685579485596,0.0004343912619741655,0.0016616474135231027,-0.0073191211701425325,0.00011953382044831086,0.005768754817255212,-0.018802805017576713,0.018032527104042316,-0.009167578211580985,0.0005959936193451822,0.015731832889653474,-0.0005685396263024977,0.0020244241466858045,-0.036869707956596505,0.00011820755649476008,0.007332373649171763,-0.05540686975548074,0.18984162191117918,0.004506837892271075,0.0018732310772633003,0.03327228472879798,0.012204806014926116,0.10394636648496447,-0.012151177382333175,3.0192825950112996e-05,0.008354761573386254,0.013617593083347743,0.04334375834154036,0.0005833548378149479,0.0010271764552593295,0.009078148661087554,0.02848431355723193,0.21262476652158083,0.030039624496356002,8.921082412448438e-05,0.009897898693337504,-0.05894119121301839,0.0759803442215701,-0.04581818024969612,0.00018308933121922573,0.014750600802245318,-0.0324780525748368,0.04411894294886877,0.012953964052533944,0.00042254094156458054,0.0066643371008456576,0.03356810180172836,0.12961092258006937,-0.008755536608368832,0.002007407409302104,0.009562135640639626,0.02331653106901678,0.08804266277600185,0.02325488189777635,8.49691238174744e-05,0.00887303675356033,0.028171069484504232,0.042312648847307247,-0.11791476549732376,0.0016550469293523955,0.0065493360177396355,0.022040768899151183,0.0918216721025864,-0.03326766342839551,9.510373653834826e-05,0.016938883129401006,-0.0476652171512275,0.13270858604577715,0.014383588983346816,0.00014560052134097334,0.01637209788981396,-0.007924055411541921,0.03248095737717047,-0.033935868374313,5.954325981105831e-05,0.011334171427161073,-0.08613852667436155,0.28343564607413196,0.1048778875324944,0.0028804545642525923,0.023125949541949513,-0.018968656238890592,0.10167461181247935,0.008314821336179832,9.28035551850183e-05,0.0033445508466238704,0.03236874106211342,0.15827116501978117,0.06750702223142972,0.00014831490354709614,0.016138960143832717,-0.041431782978285564,0.2392001853946188,0.1060714255318744,8.192582245568358e-05,0.0019533252445652328,-0.03172038042349658,0.13922952667060948,0.023266292361595994,5.726040762926203e-05,0.029106893426746834,-0.02154177403173071,0.04453831558201379,0.010564925890585115,0.00023581806519274486,0.018594331420557986,0.01899216954543461,0.08047965327383891,0.020945928143412052,5.8681723111332744e-05,0.0018466341805860563,-0.02033521674998732,0.2548089894275485,0.038772748406922714,2.0590426660801474e-05,0.009489357304666582,-0.00896049001331658,0.024936850833373134,-0.019207637270873594,0.0001256027410656334,0.005979541309887593,0.028868657766456706,0.1111900569644081,0.10772682638373299,0.00040924992664360314,0.004167710655776801,0.042930491813193736,0.23333439604523565,0.01916427691786438,0.00010538017040552974,0.005689397522109059,0.00041688004209679123 +2019-10-03,-0.0019367000985246864,0.010888520614774414,0.00045962162825834233,0.0001880962255694853,0.00971847471604528,-0.023914608430862776,0.0732958950063936,0.02029162959222325,7.828781074572119e-05,0.008512293877240442,0.005500367268485001,0.01893955569954636,-0.0009954315092104461,0.0001343442573101018,0.026995617467084523,0.02142710398091171,0.02271481544352782,0.012522728097623618,0.0003183626572313562,0.004651616654921822,-0.0068088446482926996,0.014171575181593407,0.0017222645664354006,0.0002513929374298766,0.0071908524495093926,-0.018220363587247823,0.0583197789215944,0.026190253617753585,6.821626072949176e-05,0.011059919866449015,-0.03559436309824102,0.10325586292381454,0.011723200793692762,0.00010114778134744356,0.004859604870696392,-0.031209178560492608,0.2727482203439038,0.01121439881807571,3.9239099026920786e-05,0.017414274078226388,-0.01390143577686045,0.010950648783602695,0.011082601187662059,0.0009789592043803817,0.006728561080554754,-0.03234467637172609,0.09128983487780187,-0.09041984620397951,0.00012389171789760751,0.002530021011010326,0.026329999039679416,0.019905656682753795,0.029531034175308595,0.0006465449026565502,0.00907804232414119,-0.01775984455387254,0.22065591088002526,0.07344496196582116,2.3985367880016097e-05,0.0021206605129818635,-0.018803229720213952,0.041246947596473287,0.008292519608141601,0.00013542276439008742,0.04326610045891205,-0.009398237495548894,0.04591987039990336,0.0024421611793281634,5.761128739736635e-05,0.009241229140411386,0.012744777061686008,0.009486908137796382,-0.05158599157375493,0.0026201763373212114,0.020928820222313464,0.019660758581626605,0.1331220510154151,-0.1539610247507363,0.00012153528339815356,0.000282076008836098,-0.041915108038308606,0.21347496990361017,0.009132693123941273,0.0003040407959710412,0.015041275858306731,-0.02219171500026045,0.1176049144270344,0.008927584953272718,5.315282504956713e-05,0.022473982661485075,-0.006933556716058918,0.03419177085056981,-0.0369059239666879,0.00033421141997748384,0.0019347103946044724,-0.0019070143163540448,0.02470208799953241,-0.002160572591711714,3.203690254563666e-05,0.011995936646738432,0.017318092167092635,0.18837712323351485,0.03309093334093378,3.0715217525457634e-05,0.004657624590599433,0.057131457024524164,0.21843537503453833,0.1110199315688391,8.425100366866611e-05,0.012392267642601002,-0.05143016312630603,0.3302860325030618,0.02025766073432668,3.59683130749238e-05,0.013706041660139771,0.009932877811783217,0.03147014345657459,-0.009935894573327143,6.997674750090348e-05,0.017710913845163247,0.009925805547067524,0.04074958290812758,0.009156077909848969,0.00011137589078770897,0.0040872358691013905,0.04157837834771938,0.048588672293309904,-0.026648540570937438,0.0004891117277298272,0.008496104065296382,-0.019194691848109815,0.07775544875949053,0.03808747648982257,0.00010390496997641832,0.015315320779637199,0.04365787417352015,0.1558588077312593,0.02520744460948716,0.0017978373963704818,0.023553140171604148,-0.0007422624026087015,0.005771540646532005,-0.02047398640205833,3.307104359306185e-05,0.021814677119608952,-0.09110313664049029,0.23766068862598438,0.1673934408092341,0.0012532775159367587,0.002489783399507783,0.02903313841744716,0.23887725844109287,0.03624569455807316,8.093657489381553e-05,0.006596258978818219,0.015652218557536218,0.022714596384799238,-0.05858751931839295,0.00016263584314253501,0.0017001496268212663,-0.012820547072577397,0.019643477174013456,-0.005037840291318681,0.00037462098796649533,0.01290650097943056,0.007557892015492344,0.028959258118785157,0.0004831195804147281,0.0020228495904013213,0.005354645655433409,0.025533945784675483,0.11405782471880191,0.02527703278135429,7.18262541271712e-05,0.014405820755895886,-0.011612302660179201,0.01419034072410455,-0.06605201924660352,0.002034242460430945,0.007664045597766365,-0.030570301840790574,0.09356842953638542,0.13793204573857265,0.00012944534073997406,0.005336376354434064,-0.02428885320285166,0.057757502407329804,-0.03305093618881649,0.00017047432570320596,6.439238489249063e-05,0.05498104133372375,0.21259477592442327,0.02204900032969745,6.31210620696251e-05,0.0037719965834138135,-0.06681936809134557,0.22140707910175356,0.04204392340557809,0.0028604141621193556,0.009788093671220398,0.06311005175693907,0.30397548482334075,0.06679632325991343,0.00010327627071106212,0.01053041159428334,0.004144361540485563,0.020023553102959783,0.0020497321974941654,0.00015009881905927327,0.0030285634408177306,0.015176342880423965,0.09274403215768942,-0.015165891955776436,7.739802082909276e-05,0.010544274037298879,-0.047777254048836426,0.27072156627131916,0.040478624599217104,4.43553209787512e-05,0.007420511081732107,-0.0074807128953758755,0.01596664471580778,-0.04295650294809191,0.00022843293489145287,0.012033319701686385,-0.002042977142127623,0.008557683748597306,-0.006445225317417634,5.936379414993491e-05,0.0005993097143985731,0.022348150148230914,0.239883071407738,0.02492341202044727,2.4036612668765027e-05,0.0035010540159682736,-0.010315240201540723,0.033377480565661484,0.001076132370213654,0.00010802760761370227,0.019205888689014818,0.007653021164100326,0.026277465567512006,-0.02405502939759358,0.0004590684110729229,0.0016333673139379862,-0.0011335997873460283,0.004801245661862795,0.0012359565779078362,0.00013523142486224617,0.014848999321324538,-0.002819295845705114 +2019-10-04,0.026423498381149997,0.21627242018205864,0.0016062687957261082,0.00012920394073637968,0.018349409867131558,0.004222982864241463,0.012981498262114767,-0.020278569758503416,7.805577250415624e-05,0.007469574621613051,-0.0019110900322456175,0.007210783404161719,-0.04218614627657004,0.00012260153320036403,0.009000498210038241,0.01439905194979156,0.015258597306931873,-0.00646412766863647,0.0003184836510429799,0.008225638765437289,0.04560472454835045,0.10243760663683843,0.06934603088452057,0.00023294220720039227,0.0010018163559719524,0.026598911629749863,0.07047290396722362,0.047788184370962,8.241161759113418e-05,0.0024226803534474,-0.04114439803937735,0.16799001530697558,0.05437771251743622,7.186494512997126e-05,0.02040738685711731,-0.00292983845055001,0.029506975243621784,0.0014966830462583664,3.4050037650897714e-05,0.013720464898528545,-0.015784964353017555,0.012075790500372533,-0.03725939131306245,0.0010080285256308123,0.002228016873831072,-0.0361766719052391,0.09937935273258426,0.04928894219221358,0.0001272900138537046,0.00889574955161379,0.023630143677102197,0.018813164833024875,0.010815997625526421,0.0006139441420402626,0.0015748542568248575,-0.006636121804546571,0.07971152290097457,-0.0008683239261601421,2.4809386889659696e-05,0.003608954015937361,0.01178153876963238,0.029973222927634165,-0.039564785953933035,0.0001167668624533195,0.013557573443008607,-0.004673366428840772,0.026032823472880356,-0.014020306457236544,5.053245283914727e-05,0.0015440796466484078,0.013739124624909456,0.011927160855494072,-0.003541980999955231,0.002246699347224861,0.013224959696461713,0.03965530023519422,0.2868136028352066,-0.011538183188947447,0.00011377677122612402,0.007198435584554984,-0.0363462488656577,0.22939287886257007,0.026317594071337963,0.0002453510359441355,0.013695288882607277,0.03196480259080443,0.1812372565421714,-0.0003076672466368768,4.968044796256342e-05,0.01958292369908508,0.029104264979345672,0.17240706988689752,0.01262227460750994,0.00027822001665171964,0.012488311612780044,0.03971341181420322,0.5425065677338318,-0.0023494801770458486,3.037822750951224e-05,0.013542110802672166,0.010921828589329505,0.10215269224033656,-0.0057649821418990915,3.5721299397517194e-05,0.004208846027386603,0.005985251570772751,0.01611281152520646,-0.003061193504131194,0.00011965582294232899,0.007139766651882079,0.023243081501422486,0.1373495904275452,-0.012761644495471014,3.9089373730009916e-05,0.007304712092178889,-0.003138590928463271,0.008393496257968617,-1.2321846111348294e-05,8.29027995125154e-05,2.8046046343310153e-05,0.005465445901012096,0.0238042615999638,-0.00151780881265063,0.0001049831213675459,0.009308207863759733,0.024145096940467833,0.021050001835891684,-0.008405717391359686,0.0006556202766685852,0.005554998265920687,-0.02421039922396667,0.08877846226679134,0.016026337592233358,0.0001147837321754146,0.010559016962947509,-0.02132110338590515,0.06863650941036102,-0.04697789279823426,0.001993763595636678,0.010246135661607645,-0.02350372773568086,0.19665431643209388,0.01594122458640806,3.0733743304482504e-05,0.015321166922176025,0.04503847777093139,0.13496724519541908,0.02525872765307314,0.0010910046202594712,0.003409293362353163,-0.012339198479524614,0.10332704169889238,-0.02639977207151174,7.952406978768649e-05,0.01606519220252407,0.015378606414343566,0.025265773592271973,-0.0007245462649559353,0.00014365798426451277,0.0026957418233572172,0.002432463419732444,0.00347708116792747,0.002633649006702718,0.0004015460913870225,0.007935582293223793,-0.01584132176542892,0.06853582911007919,0.024358525804639913,0.0017915300019855393,0.004070804087349956,0.028471064837658613,0.1023259799070473,0.03447396172374559,8.927054136734104e-05,0.009221112336505013,-0.013854329084393258,0.022661629967113066,-0.06800117670760103,0.0015197478836012077,0.007107034508363451,0.024294596823575904,0.08311612555273605,0.013642408038559728,0.00011580850154258685,0.002280494771734997,-0.021033039131042756,0.060229998493092775,0.0019389284136819796,0.00014156293349944704,0.015558761590035627,-0.01218195443680051,0.04439089246552548,-0.00858133988475262,6.69787470959269e-05,0.0017816920275076835,-0.004661153893744824,0.01487961763245559,-0.02789333679633416,0.0029690651594421703,0.014595721310555379,0.05340711030260314,0.2819862583543427,0.08781855103973632,9.421318934936994e-05,0.01721403235076222,-0.013826321265421005,0.08370855174884168,-0.055419359244103135,0.0001197836658369124,0.011613222591869215,-0.025411160728279807,0.11735250226103586,0.030628725456103695,0.00010241907462101948,0.018907215121067446,0.005548034344083857,0.026071042134540687,-0.0015941152738131895,5.348452512995456e-05,0.015491500181527729,-0.03631177393456541,0.05989948402391164,0.035741733582472825,0.0002955655266615892,0.017607079049172653,0.009792597532814156,0.03764645293600918,-0.021203819142229897,6.468271169722118e-05,0.013264015262708255,0.020324101684303448,0.22542146673087662,0.023853621429460067,2.3262017242453835e-05,0.012166203389264246,0.009292629993041748,0.02915069878740061,0.009394715212687555,0.00011142910433859009,0.00444812571504229,-0.010703533581058163,0.04712130132818443,-0.00835059937731919,0.000358045212619098,0.0033995418374215946,-0.011790066908153547,0.05228012488238484,0.002617651089971833,0.00012916696326854168,0.013407433201607253,0.0037919676728314423 +2019-10-07,-0.05254496334160151,0.34394368657445823,0.1546076735040577,0.00016155869458073702,0.014199886160852396,-0.005525509808809488,0.018217811710547656,-0.1138940749288216,7.277574695723706e-05,0.003337082125133969,-0.038053608922851596,0.11797740561110767,0.040530220346899695,0.0001492087230251963,0.025537256997078542,-0.04323098813330655,0.04633122966153464,0.0929644805635219,0.0003149119867325637,0.009892456688892246,-0.016131365550412613,0.03617213998711626,-0.04760840890282109,0.0002333429597390448,0.007444787729221796,-0.0004112935501149736,0.0010358257815619581,-0.049148976297971436,8.669856763201594e-05,0.01015492018432354,0.0046283107408106395,0.018921254854181987,-0.03796256690058998,7.177321977107209e-05,0.02042005925112608,-0.021215290485451586,0.189152960689412,0.0037479976453357604,3.8462229390873056e-05,0.004703339755583574,0.004671997026125714,0.003520683166902224,0.005974026831132293,0.0010233410613752914,0.0071265395760757785,0.0448683464816866,0.08783760552329838,0.040425382686261925,0.00017861645391000156,0.007652695788638661,0.01882594526523981,0.013194065176624675,-0.03718526559374769,0.0006974330515001157,0.006509931664914027,-0.006368318190077264,0.07650162667759797,0.0032641116979931595,2.480715008846212e-05,0.0011929864563674354,0.007651619771379215,0.019518071214814213,-0.03134491763550289,0.00011645751540219111,0.014504068769656583,-0.023060527568147467,0.12360812325363207,-0.05608240846190594,5.251508157342927e-05,0.006596212872968347,-0.056054209629821834,0.04186905235354931,0.12515241987959347,0.0026111875991368136,0.0044350857839152704,0.0001432267135071211,0.0009881871193890741,0.00016322125560223034,0.0001192715726626003,0.02260041564773057,-0.0464526938141746,0.2610182245487925,0.027694171039346814,0.0002755803863521907,0.0027333023487931983,0.017945947530906628,0.12093094952712095,-0.004290228579426564,4.180130947434692e-05,0.010580700843671631,0.010773340605920724,0.06109207493429238,-0.0036748336535631985,0.0002906379504229874,0.0032342437488033235,0.05659883720004194,0.7146910438613868,0.016779604029697373,3.286392269683193e-05,0.01690170429090397,-0.003902687477609336,0.039456796045521415,-0.0015147057868360723,3.3046362843844185e-05,0.0012478883968938203,0.03964914462797843,0.09638777497158317,0.03374117615137736,0.0001325057190685004,0.0038742120697682044,-0.08953457759208411,0.696914523980484,0.07622670837101296,2.9675882963639385e-05,0.03469839586718535,-0.006976515992005989,0.018783054454049233,-0.004011644551213237,8.234737484119975e-05,0.0012129644680205624,-0.006395343432334488,0.024031234648175748,-0.04730588685859356,0.00012168481404920228,0.002028223131565035,-0.014637537099759516,0.015227313609194552,-0.021129999335739388,0.000549440005735164,0.021163674198042055,0.016201907707746595,0.06897932329700138,-0.01468628277850344,9.886287445294807e-05,0.013353118890723588,0.02082691942594402,0.07600815609604407,-0.022859788473760388,0.0017586686201863618,0.009116036193205695,0.028185619761333307,0.27064140433100914,0.02462934854428524,2.678030665844303e-05,0.0005227427665685353,-0.053849080416486735,0.1460347893375575,0.045635528703324026,0.0012055722214441113,0.020646118283701848,-0.04369035288298791,0.3445065441097998,0.09972772605099148,8.445273518690137e-05,0.0034706292574184375,0.052459351439291264,0.07658521369760447,0.06208271188384918,0.00016166774282522857,0.014570114364377648,0.016722445959333795,0.02368361372009351,0.0022446532227494943,0.0004052805350842062,0.008745185955475956,-0.01913704488078141,0.0659485336213032,-0.06685738103128426,0.002249158560043477,0.006698403312837697,0.015472764338454681,0.06396616126782849,0.003682616479708944,7.760826825319419e-05,0.00046423902729448435,0.02176274968587758,0.02978572517367156,-0.04815547099956273,0.0018162799158535305,0.004653201094384102,-0.011388762864062763,0.03270884567466878,-0.0446967096195979,0.00013795179918066428,0.006277199560826479,-0.016323897710143306,0.047154435962878195,0.005958730898095726,0.00014033360646568653,0.00678256558191271,0.013003185197308703,0.05299580061048878,-0.0195013422871155,5.988557386110529e-05,0.015192277949926726,0.04616615537565126,0.12478634320443907,-0.04647629396730654,0.003506506987795631,0.01358483780626341,-0.01043485486911568,0.05390268645822709,0.00023058243417821328,9.629784609388125e-05,0.013286994228226084,0.006601035873295717,0.03585175450206375,-0.008078426689842653,0.0001335249621196465,0.01695863727298234,0.013458530647848622,0.07331162220277636,0.01134748007155031,8.683074297031432e-05,0.002946831987545746,0.04943078791142283,0.23881810697070938,0.09663935996200053,5.202087782528014e-05,0.0038416479109887975,0.005443123564986146,0.012353900897992232,-0.01881859122658911,0.00021481938767754034,0.02307469400313095,-0.019698887067889827,0.08616821115382452,0.09553526907766828,5.684718831801398e-05,0.014289219253467187,0.012331836677910135,0.14522322058620868,-0.03330488306443099,2.1909021724590242e-05,0.004277708674826017,-0.020900402106198226,0.060870430683524976,-0.1513711648283992,0.00012002099742628449,0.009980280033493149,-0.001905367341134863,0.008412055382688344,-0.03504323838985858,0.00035702988050199236,0.00592294750627986,-0.0067574613611376426,0.030323084854428483,0.0001907221574062839,0.00012763858643901428,0.01930215677959038,-0.0022133098651074775 +2019-10-08,-0.03438024536802676,0.2798295546873034,0.02658215485005679,0.00012992776697548354,0.0003125924436202987,-0.0017752333204641868,0.005901735061363115,-0.006369517015491786,7.217491116704788e-05,0.01877933593382029,0.0012467263762469373,0.004405732028966804,-0.009207388058869696,0.00013090320317434977,0.0034699591987168055,0.011100001058548054,0.012910805021709493,-0.005114054922313312,0.00029016000765345765,0.0035459218262184375,0.06579282867680858,0.15323911350105499,0.11505233897194578,0.00022465014339009568,0.007382518964287679,0.0008704605868333224,0.003029477105304658,-0.005241058385859192,6.273763984602127e-05,0.008230443380366506,-0.029472664208657608,0.11197123493734468,0.019882356606225348,7.723297839279489e-05,0.0023114952615460446,0.026434912362398543,0.23021551899963502,0.05427446615680789,3.937693357744176e-05,0.015935779651618222,0.0004251670616965877,0.0003942715837775143,-0.0038591849846374214,0.0008315893541633709,0.006533494260872575,0.024803540742861896,0.0612531943322347,-0.04585565409790651,0.00014159464399674708,0.0024618163052651672,0.007777429443855234,0.006509310220504945,-0.020767011115461722,0.000584016972403298,0.003955067014853129,0.0018426259865774487,0.027864985362858544,-0.00700821497488516,1.9706121760682538e-05,0.012186417398878878,-0.054186463788233975,0.1552239853933952,0.08026665569802954,0.00010370101756346067,0.0022906776411158554,-0.007839024441734585,0.042433152062626885,-0.007208697982201994,5.2001819945599494e-05,0.0009539152426423966,-0.006993635209039708,0.005979325145827983,-0.014161848815282449,0.0022812547068736177,0.015419174162516397,0.02794641620571552,0.20769461372064624,-0.021709622658795526,0.00011072686313695259,0.02257368655673959,0.04101573784280344,0.23508103135693198,-0.005817149471008622,0.0002701725196796286,0.004135863451500242,-0.030174570130634192,0.1583209490278825,0.005454009691775979,5.368632341296304e-05,0.0032950511191916325,-0.013722622439632185,0.07103952530423102,0.008572344044998877,0.00031836394024937267,0.020570275716880134,-0.01890293550288204,0.2336500597064767,-0.018641481893410815,3.357326569612248e-05,0.0231084520694113,-0.006300842045809014,0.06872472948434842,0.0006010577609696737,3.063142934069054e-05,0.0018796093853796542,0.01036369175921064,0.03423637670730988,-0.007278033241414997,9.751006524704298e-05,0.005484496413468693,-0.03926137081183298,0.2981101924321301,-0.007544928846340261,3.042152704125864e-05,0.03448328219719943,-0.03595043800337768,0.09610310452160141,0.07243930146483507,8.293620345539623e-05,0.0010825437192394686,0.009931882298500661,0.03679879201042138,-0.1145640032968551,0.00012340893299375244,0.002541926254785079,-0.022768441119258985,0.02374681704116819,-0.00492428679587376,0.000548028888287339,0.007026506166553601,0.007010974961553721,0.02604528770912016,-0.023817906391045685,0.00011330139732163027,0.012881309793302315,0.037113061125783456,0.12063064882636514,0.024541913545871864,0.0019746416261997002,0.0393804797766778,0.019511963740945874,0.15960937448860818,-0.007993838316056222,3.143581902950445e-05,0.013053908932453217,-0.029217958968006247,0.0713596452241605,-0.010345927027214777,0.0013386543771983868,0.0016638129820637979,-0.004734146558433903,0.03249499406426547,-0.03930202070148319,9.701767883468222e-05,0.003319481519620313,0.021506235719595493,0.03170162842998891,0.006456621645052192,0.0001601135978530375,0.027166104560272894,0.03192136893752736,0.04025756996329452,0.0005153060693288164,0.00045513251727836746,0.013211135798997438,-0.038471092812164445,0.13111549348626833,0.11085135995255824,0.002274211495125662,0.026410663232461964,-0.03978986857434543,0.15761494782017416,0.08105129396141941,8.099635450676507e-05,0.0012460287266178496,-0.0034906365348927842,0.005026591842632306,-0.019803264038124612,0.0017262679188249155,0.01068101491126669,0.02199434757903628,0.05568879663635867,0.012952985053061104,0.00015648016199269453,0.0007978688366392526,0.021621119624524496,0.05980015891429263,0.02423831195710814,0.00014656700642226738,0.006814885249193863,0.0017721699692524943,0.007446393453207754,-0.007581839420819092,5.808624711092022e-05,0.009301509709007168,0.032050200417539296,0.09771568450683303,-0.01262485655635426,0.003108740913741143,0.031175827771711063,0.024015571504752142,0.11550149343317899,0.0018984865498194552,0.00010342985054509006,0.0071984748205196295,0.010032258800959601,0.05923143445440205,-0.026176276447474257,0.00012283079451950543,0.010705502613046657,0.0008575735275486746,0.005351487237727919,-0.034041803114888435,7.579587501745896e-05,0.0043033357293540825,-0.006962988406477545,0.032463915880456114,-0.003366896247191545,5.390662752542539e-05,0.004942134287221158,0.044219345365009,0.07020860526230292,0.022526896444997897,0.00030707987656482325,0.01612436737827884,-0.0025719092170748466,0.01009686737116689,0.005412165171282288,6.334077300722744e-05,0.006881438287477005,0.02000405479329778,0.2653725113022435,-0.0038665121509047604,1.9448825807444563e-05,0.004780291215845405,-0.017734245998474275,0.05717660431771239,0.015623103575875635,0.00010841848483749729,0.0006835029439696931,0.0005870964245400974,0.002741595264135396,-0.008012777155012876,0.0003375468544367124,0.002215541334169978,0.011559886721825488,0.05563698213244874,-0.002815060631675037,0.00011900406854486064,0.001092286036444019,0.0020559118922831602 +2019-10-09,-0.02108849814564589,0.146692508791636,0.00745727889330376,0.00015202825113575527,0.0034027062228899644,-0.04694522947700367,0.15002548608692354,0.05816463651676783,7.508219322901528e-05,0.006497186614323585,-0.056387836993034055,0.19704405764349678,-0.0009203078484303285,0.00013237906153252852,0.03127734995755327,-0.005811374384664146,0.00564496527440239,-0.001766545040197206,0.00034744449614415503,0.003421884527977174,0.030460978249723065,0.07003514131816384,-0.007613487616989533,0.00022757555446215828,0.00025487077729868053,-0.011481949046982423,0.030900766397900827,0.0005065415550738991,8.113217228511011e-05,0.011705518937598015,-0.034988649152129674,0.13356144549926016,0.016701263064665278,7.68662899920099e-05,0.009907373257220948,0.004258725675659876,0.03654931949221555,-0.0012307201550041,3.995756229880345e-05,0.011410771664037618,0.020357323840175832,0.01874655509954535,0.0513817334652697,0.0008374212927726741,0.003484277448002564,-0.00746089131758968,0.01952625816432035,-0.06562959262325586,0.00013360834150736756,0.005082429878653379,0.00011769569413598138,6.680022029515676e-05,-0.02737508245485719,0.0008612059826664892,0.00884818542529423,0.014139542020271654,0.16921457406792637,0.02722238047179416,2.4901205203673255e-05,0.006063138980489027,-0.030436113957571696,0.09852327635258362,0.025275593712008694,9.177013987716099e-05,0.0005168405591754099,-0.0074423569708444446,0.04734697709580212,-0.07954421476030021,4.4246615766616e-05,0.02136627449225572,-0.003702472083555134,0.003008395696849907,-0.010941788648786952,0.0024003789324933086,0.010790523935138263,0.015085027148467439,0.09092974797661443,-0.12342331696931036,0.0001365187227710154,0.00720188431594259,0.042804356471412855,0.20539606171241012,0.015627687909332215,0.00032270380928424154,0.004482681307633101,0.019676686037076428,0.11734365802896964,0.0013355652164006673,4.723384383557844e-05,0.025979246710980543,-0.0642087252964327,0.4480422315807539,0.06348450490874111,0.00023619021633619042,0.006680571184397208,-0.028894284669984505,0.3894841949292517,-0.0057528031418191536,3.0785934394117436e-05,0.027113317502322584,-0.029253881183646795,0.333190057411559,0.003208578957177557,2.933412706748046e-05,0.00038795618044234386,0.0018116655308553214,0.005276830459171894,-0.052883195834579066,0.00011059299931305501,0.006468309923952114,-0.04096426408459219,0.24471721843780883,-0.005712506400898262,3.8666334681070955e-05,0.046260590877729574,-0.0031575849397984545,0.010272779481908283,-0.0017881444683210373,6.814664175072059e-05,0.011482600025702047,0.010057908865137629,0.03874978733499568,0.007264062239320367,0.00011868257717485809,0.0034584530982340305,0.00030170516081293766,0.0002991804423008761,-0.028425531147858164,0.0005764014976340478,0.020334439495343054,0.020278297538018655,0.0616411345390895,0.009105805310070724,0.00013846718926291315,0.011185679349071385,-0.05647854915260021,0.18561998420377426,-0.008426133601045887,0.001952890870444346,0.011165175163238113,0.05081035628417733,0.45455757046012935,0.0773872709850815,2.874388987763009e-05,0.009513885676812904,0.00017969930732543457,0.0006036869043697248,-0.019856974301964505,0.0009732085549593577,0.00828507257817575,-0.034203853088865165,0.2053675653516032,0.047662717344751145,0.00011090951881592156,0.0026493513019120304,0.029295945361634115,0.034016546185897736,-0.005460842864683506,0.0002032650387452094,0.019562252150720924,0.018651652072700038,0.02548149967928656,0.011486209776980878,0.00042014213219006036,0.013570104344733911,-0.053198912721055924,0.21362731893080267,0.13220433690129352,0.001930173316246593,0.010206422460043172,-0.03302502481654516,0.14834459970912445,0.03153880722830956,7.142689676243157e-05,0.005242588131637221,-0.00884046692317455,0.012415788082807454,0.004206658050223852,0.0017700197166323768,0.002253655691698323,-0.029337233201978924,0.0802171530732525,0.09115916472330907,0.00014489985299905841,0.009109557037912018,0.03089125948467564,0.08744916849299314,0.04005303136888352,0.00014319910619810876,0.004241096943138486,0.007632703513170482,0.03078794614291961,-0.017610032104764174,6.05078330167204e-05,0.014322129314066654,0.003758714372575822,0.011116399205384656,-0.044890777394028254,0.0032047432986047554,0.025756187271942017,0.008479421716396998,0.039656751973216525,-0.04206655266270583,0.0001063627762574212,0.021109134478552,-0.01069248924199454,0.04929395639985393,0.002850449857504514,0.0001573062324879357,0.007176804686178838,0.016138363784127797,0.09006994720330178,-0.011311354251640886,8.474777238297447e-05,0.012893096083282209,0.007474492127669521,0.035008365306438444,-0.00985774411217308,5.366081341044584e-05,0.005013386906961073,-0.0756790298856611,0.12599307420028585,0.1285802322638553,0.0002928587994079915,0.017344341675594063,-0.02493734859455685,0.10893885120915586,0.05445252452687665,5.692222412153868e-05,0.009856995965275762,0.04400362848506911,0.4158705410215037,0.062344027190922933,2.7299935278569348e-05,0.01207044812781013,-0.048432840767288744,0.1549884187004392,0.19811428599776168,0.00010923194328569552,0.00473807976705848,0.00308735558370948,0.010496806070582608,-0.019339629237747173,0.00046361496827355714,0.002661510118315593,-0.012656273087828683,0.06332165378753903,0.0037052485356097965,0.0001144788832554228,0.018902767735588626,-0.007594829201922882 +2019-10-10,0.03414160082787632,0.24534536225811981,0.03671853870313756,0.00014716095969109872,0.013212571388253406,0.04068958876955113,0.13296768138088702,-0.003942777341450044,7.342563843923591e-05,0.008780936954083855,-0.017732037445531815,0.062254884689356575,-0.04708902594411011,0.00013175964353162955,0.012525499499928875,0.020805291506594523,0.01912216662317394,-0.05675858413551877,0.0003672015986731694,0.002524958814814059,0.020472850584354434,0.05744858292368853,0.006221682185899284,0.00018646476092890808,0.004098885013329682,0.0028699237474777805,0.00786164369200625,-0.0013628748333931384,7.970833566396634e-05,0.011059737091706082,0.03876971873849695,0.1389130852524552,0.03277506362990392,8.189159849659428e-05,0.007646210557851949,0.01884284109364512,0.17109992296893917,-0.0013557239106028432,3.776549540368138e-05,0.005196879273271538,0.019599422350966962,0.016356376055252093,-0.003417631972579503,0.000924061702304945,0.008968159277837996,-0.011115801048017388,0.02635169156424301,-0.0033113405538545255,0.00014750072429231951,0.0015059738474324678,0.03283836778176826,0.026670863929314517,0.04955050353115784,0.0006018230774023975,0.008379504150830082,0.010500653669388642,0.13213894301360046,-0.022117329633032687,2.3681450291205736e-05,0.009549579819008336,0.007158918424621742,0.01705417114382507,-0.0037273009593871264,0.0001247003965668953,0.022479831920704057,0.005613345677568912,0.033110903415674436,-0.01499562080605661,4.7721333997100525e-05,0.01730377159887505,0.029103190485422446,0.02256557040909213,-0.002452465436344987,0.0025154590888051033,0.0023099375214125483,-0.05329041508400908,0.3309828791016494,-0.0023875441906005073,0.00013249383821977822,0.009867515690891969,-0.03988540748005844,0.2242473962185002,0.019523960728040093,0.00027541960819391824,0.019881352473102083,-0.0022292936651819354,0.012607763241174337,-0.007995523064780841,4.980697813543586e-05,0.01024109255951434,0.07393987039171071,0.4323391526333498,0.10260098034224333,0.00028186485318584624,0.0013790343274405325,-0.049448723809599304,0.6509178963336014,0.004741454752042671,3.1525291190263695e-05,0.001983408057561616,0.01311265897713475,0.1360884196558651,0.0160192877877339,3.2192248009550227e-05,0.0050429747567731845,0.005864463468385217,0.0174409440044681,-0.03183818400273757,0.0001083131168318245,0.007682872978486682,0.08185557040057004,0.5280052656873865,-0.009546301932565055,3.580983843454206e-05,0.05578183075595246,0.03953064266887986,0.10353493030597849,0.14169153656407354,8.46494930897848e-05,0.012070664547548189,0.010578184082609136,0.04052068269291815,0.007150003830893829,0.00011936663806836634,0.00447451906274942,-0.0875855927277158,0.08403244357817516,0.1863940411006295,0.0005957461469481756,0.021157919199106878,0.010447882102557704,0.030853061294265665,-0.0069840173799699135,0.0001425331917270494,0.0031795041944458285,-0.005728278166463096,0.019049155169817096,-0.10348551378966629,0.0019300455312445644,0.0028793601542566015,0.01019919353529163,0.0961156591995787,-0.001957309867049348,2.7286879892067514e-05,0.026343915693415758,0.01614922436007834,0.04895215553365275,-0.0003844720829220012,0.0010785769079447519,0.017018550725133884,-0.008565754925977132,0.06975973093803838,0.0003778762396908397,8.176858663386341e-05,0.01564889865238665,-0.0021880042880798845,0.0032210264930417464,-0.0033706474277822624,0.00016032426521039736,0.02537957656579304,-0.003588885534939233,0.004676193387117752,-0.0407024563532919,0.0004405255047111968,0.009868340872296407,-0.04747927442381038,0.1804736459103092,0.012722431757916822,0.002039109850499644,0.008544384950045827,0.018262359266387692,0.07606387527145712,0.003533332407377741,7.703157980576249e-05,0.006211691369901528,-0.007491270337978227,0.009408211380773942,-0.08374876266625993,0.001979363671561221,0.021532675480016597,-0.034255777626257096,0.12653923048923504,0.05758587293263579,0.0001072567610885948,5.162999205176027e-06,0.009554420218920254,0.027496992935136324,-0.10102888952945278,0.00014085734959864236,0.002115687392446581,-0.023344473967869796,0.10427769264345085,-0.03595769647113916,5.4639485881571464e-05,0.006963071955674324,-0.05199403636201909,0.19030287350152444,0.0317753038308674,0.002589561594675359,0.015852171124175772,0.007723684976851415,0.043407043090743475,-0.015648999121495602,8.851256376663697e-05,0.012091127330984648,0.01878310035204367,0.0913442881745955,-0.010088516704673834,0.00014912369887636311,0.003085695795146982,0.026662682928213888,0.16218163826587934,0.02979015010963979,7.775903525500928e-05,0.012213466669264273,-0.023808272843084215,0.09650163012914989,0.005555671097751926,6.200698803790909e-05,0.0014009282686680519,0.058187552937608335,0.10399545008097554,0.07105647724157195,0.00027280049164267364,0.01801714373242846,0.004906164211166283,0.016867930508852318,-0.14326013692332468,7.232603426997127e-05,0.004062777838496914,0.02991818641116782,0.3420158792672931,0.018768911194684507,2.2569413796139735e-05,0.007395530845179512,0.0074472199114845195,0.020807108936635687,-0.048962141088701845,0.00012510982080703574,0.0015391008557429497,0.01699754786981241,0.06736172242284454,0.021443419294123724,0.0003977416402721915,0.0009312311972827806,0.013719061564419583,0.07077495121747875,-0.1542873286181616,0.00011102393664041331,0.0009133660027727424,0.005947010705012278 +2019-10-11,0.006837924977855116,0.05796124829439359,-0.0024105428212803956,0.0001247593735486608,0.023652633437617563,-0.022271825443171363,0.07107226072959905,0.021037288359651497,7.519106057630269e-05,0.0035134687995445326,-0.017185263554500584,0.05693728302270135,0.0050019308585674905,0.00013962290254964974,0.033698966252566305,0.01068208870037516,0.013570171271179371,-0.0008756725070242973,0.000265667670207237,0.0047677071434381775,-0.025167225783063428,0.048697538671121886,0.031069545889762004,0.0002704120910441095,0.0022228108075981233,-0.021426899999484633,0.05351128639799859,0.05201938971767394,8.743004282793272e-05,0.013442408671549127,-0.03222910941857387,0.12795936598938054,0.028116006235334834,7.390368273696416e-05,0.017834385090159777,-0.04012085880538326,0.33112945361159535,-0.03556155921106733,4.1549999482300754e-05,0.01593946212810319,0.0007233728665642563,0.0006071234520516537,-0.014027986799445424,0.0009188190522287535,0.013774875020396505,0.006605867959669416,0.014466907519195835,-0.026342577465521926,0.00015966733251239533,0.019695561420579946,0.004998013975209891,0.0035331374860734853,0.0008596331441706375,0.0006914508053529015,0.01280849945610678,0.002089878947387128,0.028894089044898246,-0.03364752172880588,2.155434915622836e-05,0.0025740388406258396,-0.0068435755470500625,0.022663408800308954,1.89736451851213e-05,8.970339314442162e-05,0.025590594920784318,-0.015252864558375328,0.08410948492310406,0.022997746192459898,5.1046769011784535e-05,0.00426771847563928,-0.002144749130131809,0.0020345412936791053,-0.0018445185337475716,0.002056046649324219,0.025568713656150092,-0.0020490551138355995,0.013856932312815033,-0.04391085964907845,0.0001216854498811776,0.0042370148111019554,0.044221304088615646,0.24872045346983981,0.008893501897081142,0.00027531398770093565,0.012291161999110296,0.04117850141517212,0.2385634371797481,-0.012880938553784574,4.862141684097822e-05,0.014620248739316713,0.03498162133750825,0.20722726904019886,0.010869120206547823,0.0002782145495651285,0.00950749055422442,-0.05632655139983559,0.62349732236666,0.011383787693713052,3.748942685120707e-05,0.010112119506497975,0.0038100487226322348,0.03854540534129343,-0.01569832597366686,3.3024756297059024e-05,0.01569718024569114,-0.05055720649000599,0.12121499415918395,-0.010650716104614535,0.00013435365331075687,0.029584514485059218,-0.02394798613076223,0.16754940160504767,-0.00808794281195802,3.301554668803203e-05,0.0341328525417253,0.0095237781585593,0.02876685450303434,0.008025130977721428,7.33996985297913e-05,0.0002616274983790316,0.00942544625979898,0.0373600312855664,-0.0022495909091055036,0.00011535682277784232,0.004253307392552655,0.06197638310646893,0.05456847564191195,0.0903791079235766,0.0006491722799397926,0.0035557536143971027,0.04115888787011134,0.17615657295068285,0.04031725700269957,9.834466104069898e-05,0.0023553258070772996,-0.03330456849028422,0.10460481244814258,-0.01349336089620096,0.0020434843718189887,0.02419189734442353,0.004644761169320313,0.04076740650612364,-0.02501264529287904,2.929763061821109e-05,0.022842018864978747,-0.0334772787626345,0.09383746173244792,-0.08518449424773936,0.0011663937038091828,0.005045802373560159,0.012044615424542536,0.1162883130497494,0.004563704015773106,6.897353910715119e-05,0.013383306065853515,0.005973885133010899,0.007474017400783959,-0.082726128981341,0.0001886462381832135,0.00589688647762241,-0.022687914746478702,0.031092926032909113,0.006701853145921662,0.00041882915120075733,0.016521514002771402,0.023791363467750876,0.0856600538636549,0.01845802075446341,0.0021527387577963053,0.01164767361816095,-0.008025684875674465,0.03084298012941915,-0.038961075063357234,8.348647792945626e-05,0.013588367380668613,0.06751944830245533,0.08485617069625191,0.07449556187040836,0.001977983422146238,0.01100023745302433,0.05431729178889558,0.16845587669401182,0.11416456159533069,0.00012775207962126284,0.004771478880022713,0.03194092221788542,0.09412829402831006,0.039299766138322,0.00013755856594920785,0.004716753928929689,0.009886861252584216,0.04359219179345196,-0.12294980245865614,5.5355867213124805e-05,0.002094773388789755,0.007237430017706273,0.02352961830489182,-0.020030968730650692,0.002915328868374186,0.019249835800108007,-0.006478517002754378,0.035656349038251954,-0.019312728401192386,9.038144932059486e-05,0.005978388181726994,0.024028554850512182,0.1585267988919991,-0.024680496194820465,0.00010992228461401109,0.006985611986767689,0.0045132214952241165,0.024232636341998057,-0.01786647009225725,8.809163724101555e-05,0.001471438803226094,-0.0364971085920072,0.18186634576129687,0.009811002321280817,5.0437495581649006e-05,0.011584799164841716,0.042974961325585946,0.08033873566146435,0.030800663631070226,0.00026080739173881613,0.018438566261520795,-0.00513254682645871,0.02108964401193596,-0.03132834988725123,6.051709148241489e-05,0.005561497747049373,0.030460226086940535,0.35468536846911797,0.03189005718777818,2.2157519220611603e-05,0.001752427937981334,0.031930284680572144,0.0872667196369798,0.11283160071790092,0.00012789780880120475,0.013428227810032278,-0.011257089524981462,0.04841169320831536,-0.0340014135793458,0.000366525182294742,0.00822645456016806,-0.04222353474826912,0.21083854382780537,-0.012387429852896552,0.00011470342221941854,0.01351437746204262,0.0026505206238996008 +2019-10-14,0.018067357327192803,0.11958059669575313,0.014858239506601662,0.00015977929539299598,0.0053168459523374725,0.029605190550313718,0.09771548186950268,0.03043163916181203,7.269675228637128e-05,0.0027677549150404678,0.00786959217483477,0.02973285040062847,0.0021621481634319104,0.0001224370579370007,0.0036463288995888465,0.01088958907899383,0.013348768121082077,-0.00581572169537515,0.00027532025244754227,0.009302789510885359,0.022363367288820216,0.04482612499564641,0.003952345289894091,0.0002610380226700662,0.0009597202926741304,-0.01095434978094346,0.028233926797736217,0.0070019737430843595,8.47153402769179e-05,0.010663582938507598,-0.0004428935929081153,0.0015424628350276175,-2.7485741632142016e-05,8.425089908406508e-05,0.017212836135957046,-0.014943788757594499,0.1524021806928847,-0.0010945226849253527,3.362545371220634e-05,0.016918871049901942,0.00822055707363831,0.00680998135225658,0.007514361621607586,0.0009308937465171067,0.003118824756708735,-0.03687553356676553,0.08178235521741561,0.014644389364674609,0.0001576669207636367,0.006923218744808028,-0.006355184834835082,0.0047308580027927705,0.016392898133370016,0.0006566177695565628,0.012652278928138411,-0.01532917373785457,0.17228343647521605,0.054957180161833784,2.6515389431709173e-05,0.0037552308089701036,0.020186488937140163,0.060063147849366935,0.000544281742312648,9.983980786294741e-05,0.007085782834840822,0.0005683397174325695,0.0031928067182438492,-0.034065431972715624,5.010686100062914e-05,0.002431094842322953,0.03425338953625764,0.027911044882491482,0.002718251489440007,0.00239359368794423,0.01571030120180457,-0.011589506830687877,0.0704339719884419,0.006025813129795908,0.0001354050566679544,0.022098095607017365,-0.01146649200615954,0.06273758741269563,-0.044800341567779504,0.00028301600140958954,0.0011222050545500065,-0.006932592001396755,0.03827269700163046,-0.014574451999019482,5.1023180963915344e-05,0.03706253789284731,0.02155516577754601,0.11448391547187799,0.001133448833186199,0.0003103085203093572,0.007600554248029612,-0.019667461745229518,0.17396236358769493,-0.004049193272572934,4.691624501514596e-05,0.011030567420960325,0.007991832429163149,0.08198205856018899,-0.011849818876624067,3.256936257983494e-05,0.0005507493708987849,-0.02944228004321653,0.079541510072017,0.0004581060600950039,0.00011923406854517738,0.005458634276362819,0.016101628159038955,0.13092826358276205,0.0016431850410693672,2.8407221723926092e-05,0.023771051154366715,-0.006960294031203022,0.02099387490112361,-0.004682617676782405,7.350423528520415e-05,0.005301630009382987,-0.011937549088819676,0.04655642028627661,0.05089739681555362,0.00011724226122010968,0.0027991035398388193,0.006684373297258204,0.005641729298791521,-0.04235700221891537,0.0006772110143573127,0.015793442766416692,0.013408249453488497,0.05613738735131142,-0.013451590041569176,0.00010053236368465313,0.021142521417756174,0.025126345679895776,0.0685843048360605,-0.044913761551456044,0.002351385111593266,0.004588557236758772,0.03498586684253099,0.28490470248241145,0.02028060646388874,3.1577316249264324e-05,0.015211038950371613,0.057424630532834704,0.15136223242782504,0.05702011619418454,0.0012403720027952996,0.01172229880444162,-0.02018404968734504,0.15990735282297994,-0.03679742218389486,8.405538003090619e-05,0.0016612069253250875,0.03822834482424413,0.055543777636962284,0.027154853629546366,0.00016244093007044102,0.007207508956218579,0.05051924033638771,0.07530332144430946,0.06554418106402002,0.0003850761250331087,0.005711220783810932,-0.014241599770016482,0.050034977674109596,-0.007968477505890107,0.0022061518793142307,0.016348874636015413,0.012322271855854657,0.0483528781025556,-0.005401408350375471,8.176337819701176e-05,0.0020040585701741266,0.05202087824765931,0.05804637244842274,0.05648756341227502,0.002227818405563394,5.1154807935103455e-05,0.035805009334636456,0.10948816659472085,0.004004212456332746,0.00012956647525753584,0.009579182332601244,-0.04029049949610858,0.12893016612517816,0.04588056239572501,0.00012668012562477892,0.012193889846004103,0.05047455943990074,0.1848231442674834,0.09847369752862402,6.66545971048318e-05,0.0012927898933395398,0.002919360084647027,0.006812730392150256,0.0014438303063028486,0.004061481891886998,0.012345946718697215,-0.014180425462456535,0.062094522704081355,0.008208883752861003,0.00011359953114248833,0.01660279355909325,0.017783252920708086,0.10810300776041618,0.007454692445997875,0.00011929828821093352,0.0035692608290111907,-0.023108298309810205,0.14638523901773143,0.036742125584048754,7.46653968718931e-05,0.0025388839633947117,0.0013553206857455419,0.0051556973565358094,-0.021356506170678236,6.60696560209128e-05,0.02479962087057286,-0.04684946496433454,0.09452963253978797,0.03360793994297037,0.00024163846034598227,0.024435769696138296,-0.024153445717220157,0.09731529153356917,0.08701906020691724,6.171807666415923e-05,0.006830553578412402,-0.025099071901243292,0.270416495758234,0.0749020460229355,2.3947256587230473e-05,0.01734578690661042,0.0305594500100439,0.1116493265081761,0.08687275439337887,9.567498233165636e-05,0.0064548213766796566,-0.0166513990593788,0.07445855282779869,0.05449778125524681,0.00035250404824443754,0.004221920537056148,0.04511392349126057,0.20720923161463323,0.01465500388902114,0.00012470196427321852,0.009049324314326293,0.004912023201170787 +2019-10-15,-0.026121955424907552,0.1867120285965179,0.004341455163356575,0.00014795170366560328,0.007195732135266045,-0.01786402912312372,0.05531372204131233,-0.07855562577093832,7.74920342392107e-05,0.022044685924071987,0.05481592948726867,0.22871476779488076,0.09887827979851546,0.00011086891051358306,0.018784482961734048,-0.00455113919128547,0.004320429059663244,0.0016139009808395987,0.00035551759215027073,0.008439361004799209,0.014911572933283893,0.03976227296287194,-0.0019156255632574734,0.00019622305228453711,0.01807454134672048,-0.017065781449083467,0.05501241178220586,0.025625100031882186,6.773485949582667e-05,0.00021931079190911848,-0.052051412892599395,0.1817129436877785,0.06129823051336455,8.404976701371362e-05,0.03221219373390498,0.003212396724393309,0.026752180267470997,-0.015175238990211752,4.117831833423872e-05,0.002611856900442055,-0.024403360228058262,0.020990388921587014,0.05231487172845341,0.0008965487964646152,0.0059140969576292075,-0.012527358629061475,0.03192374514065832,-0.007784011463459205,0.0001372168868196117,0.009181882111548191,0.007924669269692786,0.0063643838248932235,-0.00015935958540609608,0.000608624094258992,0.006421449390870388,0.012016178825254291,0.19199509642921497,-0.0034403745214408826,1.8650867440732995e-05,0.01001167623099588,0.06320831998377,0.16808295519712552,-0.016908988924567665,0.00011171245862181264,0.012736360359637716,0.002350625614077438,0.014499996523370093,-0.10971284285643576,4.563282803569882e-05,0.009639473830300567,0.04381574483389409,0.03910191025732503,0.05443551004974866,0.002185522071161385,0.006181984459306903,0.020826169053253133,0.12873774312333752,-0.016683326991533836,0.00013312376929652968,0.017247225652604208,-0.021611252817097026,0.13174812226020238,0.010873282226580617,0.00025400586329919387,0.007414824375966739,0.051716234294982955,0.2799540467845887,0.012552035646970968,5.2035663986510535e-05,0.017905523917587488,0.003057923242350968,0.016266478470763058,-0.10911289454605921,0.00030982741575398353,0.017521277088976803,0.0019056187198015955,0.023310836034310497,-0.013783157519234784,3.3924104481122236e-05,0.005059536327149077,-0.011894537171774534,0.12482437612112804,-0.09183031347821138,3.1836832523114505e-05,0.001131155697656313,0.010277454690522703,0.029708001999047093,-0.0012719397217690295,0.00011143840363596966,0.0006620558435542028,0.030199783441836374,0.21710917219610512,-0.08266635390362767,3.213054065025701e-05,0.0141838515956171,0.002750710293205842,0.008777996072141372,-0.03717014585271994,6.947472761073998e-05,0.016180067717619054,0.008956036523804601,0.028520317543031172,-0.0016186803951264489,0.00014358533805591687,0.0029534160932838003,0.027947032035125784,0.02591384594424358,-0.02620487011588141,0.0006164237760845235,0.019732397110474795,-0.017773698167340268,0.05976060436700108,0.04399555639091786,0.00012518400128074225,0.008120135519754417,0.04922790767379274,0.18913312001019406,0.043938705714234055,0.001670563411127191,0.05710007781436262,0.033940806984763025,0.4032649646613928,-0.02884956903617353,2.1642820961464934e-05,0.0084513707248474,-0.007611382264170238,0.02212793009836975,-0.019727235670993108,0.0011245894703917753,0.017150237578210544,0.0290876124482659,0.16730858853820357,0.03695376707672957,0.0001157751848456254,0.013124252573256353,0.01655047413500139,0.02472967035305164,8.654925985853617e-05,0.00015795649885035675,0.006463084618697616,0.018835046359623905,0.03342352069712452,0.0066053899692156606,0.0003234583840347386,0.01437659511579607,0.007476658988286341,0.029002677902088037,0.00300155697027259,0.0019981119380720557,0.013489121762942627,0.004213403002487296,0.01753043884288373,-0.01809876512051687,7.711352976392311e-05,0.019741785152861662,0.016420043762058755,0.019486785617296307,0.001629036355164953,0.002094649173610906,0.0018203654848727598,0.03699021600158904,0.09153755446730355,0.036883049983565376,0.00016010452198883543,0.0017722854152494216,-0.014495188287934372,0.03585308036237113,0.006108791105445091,0.00016389200285994116,0.007322235758653567,-0.046010269946494695,0.19331402888624089,0.14433672896635383,5.80905293804597e-05,0.008003686411003111,0.02759888405670045,0.08559745848147844,-0.0036509588360352915,0.0030559673501811455,0.05194037267686292,-0.01887983160820263,0.10415036373718682,-0.003717842513039666,9.017328601267709e-05,0.020435399998475476,-0.003179689517835696,0.016074855190367863,-0.01990693164502384,0.00014344929899565538,0.011824689666750574,0.02584635572834761,0.15307152377146704,0.02361685478369294,7.986446938447597e-05,0.006288735363008999,-0.01650847983798722,0.06650492294651958,-0.06496596211284406,6.238794547725088e-05,0.0013254159607115374,-0.025605106651423553,0.05193312036505577,0.006478732983832394,0.0002403873254533466,0.027748647515401906,-0.012694077492204053,0.05349554056450416,0.0023844101456569687,5.900623990852394e-05,0.008064544825638245,-0.00040084452424523834,0.0042436203549961575,-0.06842251880123501,2.437085225586156e-05,0.003756853771009828,-0.010468389844258675,0.028921989094881806,-0.015482735121748085,0.0001265204401101822,0.00018667066420623916,-0.005087614401368779,0.01855128273092115,-0.014166612316060657,0.000432283057540334,0.0041844089321554055,0.009152913567180765,0.04097208425615433,-0.0004874761443006945,0.00012795082783652567,0.015928667090286074,0.00548250534241457 +2019-10-16,-0.025644148374334236,0.21767944638410888,0.01666604800751574,0.0001245826144709558,0.006335084512719153,-0.01798297366734014,0.07128289787157119,0.010441696471036762,6.053223202783423e-05,0.001775307662187144,0.016266834274600385,0.051807153256772306,-0.019809097386491448,0.0001452481192645952,0.0015395467705333914,-0.01584860663586192,0.014215953129452539,-0.058030863967726144,0.00037625558893263436,0.0022376798725907863,-0.05146856516370213,0.10617457721566824,0.09066890823073019,0.000253640904464793,0.003296021169281165,0.01869107658636223,0.056020249045200386,-0.023293159916437867,7.285108455508036e-05,0.010639783697751393,0.00191739322278458,0.0060145746293228065,-0.011823518777206313,9.353973283746961e-05,0.023982975927037048,0.010735810768039663,0.07790371178378437,0.012311731538793376,4.725799716788459e-05,0.008740050340602991,0.01158002663644421,0.009434578796452897,-0.003738506533874564,0.0009465244328431452,0.005079699879268344,0.01744530061659594,0.0434214140410368,0.007962086860013281,0.00014048707862432427,0.005576153567169855,0.02012819323960009,0.016191117274008338,-0.074142036649617,0.000607648364067517,0.0041068954492643,-0.013030066841152788,0.18313930734467673,0.019573743175688347,2.120253875329771e-05,0.0013467416454843418,-0.03994116669571855,0.0866542769540955,0.014936438140270167,0.00013692469481797265,0.0010818161315153936,-0.006476121196219268,0.034462876040974685,-0.020600511899680866,5.289629672264723e-05,0.006664496641404982,0.014021222881351204,0.01055913729839511,-0.005267332860175625,0.00258988469115634,0.01338237782606988,0.02419499370083688,0.16322569690098523,0.0063490453483813734,0.00012198012936874931,0.00731837079389169,0.016452061611542848,0.09682585012828075,-0.00028098904325913704,0.00026310993081089036,0.03577644943601347,0.013410732865874573,0.08118464259769907,-0.016952929067433706,4.653069984437563e-05,0.0013905639205244716,0.06129123909463961,0.2721480009925942,0.05036476200821064,0.00037117614777970874,0.0049716393144677495,-0.02042035329635423,0.2626037269947256,-0.0019712208271575435,3.22695268315097e-05,0.039392748708709076,0.0013359975378815514,0.01362593073695498,-0.02825727521955838,3.275828747755992e-05,0.004052923885147606,0.048218152743362414,0.12246963836507326,0.0657626220131337,0.0001268250051835671,0.019142400905092342,0.024983852029087945,0.18017244132283317,-0.009700481329601739,3.203047741619975e-05,0.02417898546264373,-0.00984724024745035,0.03283627408146147,0.005273582861032033,6.648720004076992e-05,0.0065098962122333405,-0.0030137065341139984,0.01127692844022202,-0.012687211240915527,0.0001221964898490307,0.0018998184393202338,-0.04915109677033294,0.04349049062802984,0.05162926157720407,0.0006459731510394739,0.004494632688177845,-0.011138310295592755,0.04134488972640666,-0.0222111152540407,0.00011339227890137883,0.009771256997973729,0.007687015746846717,0.02843136425017516,-0.01273469776155675,0.00173531869691591,0.015624381268627406,-0.05824483544496969,0.6630714515992503,0.131227928107415,2.258807848370225e-05,0.012121104386970246,0.041012771589904316,0.11171224202042987,0.018441003931764056,0.001200299488681802,0.013694081524675054,0.049611554653899353,0.3064671046940456,0.08318422116823672,0.00010780145295709389,0.012046822185729476,-0.029873257445573786,0.052780082485117015,0.05533795149888829,0.0001335850641304681,0.007917950873004228,-0.021851953108097188,0.02765807109442201,-0.05287910407453617,0.00045349477231216645,0.009159768559244117,0.021775239686729266,0.08897675120496573,0.021336528590868962,0.001896866387555163,0.013040233253178515,-0.017804204093671505,0.06121255220196536,0.015153504962912328,9.331950942624752e-05,0.0058264511973974,-0.02402535729718294,0.029096877924597534,0.024342597548876996,0.0020525826561539015,0.004122048554347047,0.007411173116637701,0.020176295526576113,-0.005156088645263731,0.00014553302751393283,0.013406264243185726,-0.051769381094711554,0.14210901570410314,0.07138973253889205,0.00014767661115323638,0.021166382837026685,0.011222679935290495,0.048772812903557755,0.0003347289660263556,5.616072409686355e-05,0.01523807397370425,0.009801315612652853,0.03040415708343954,0.00228840926250712,0.0030554097802757483,0.031078881064942273,0.008023492075204116,0.04547677527000938,-0.04110269034839431,8.776358136180948e-05,0.014542074046228223,-0.016232110244819468,0.07970296840973429,0.017504705642960867,0.0001476934623724117,0.006827964429536466,-0.048604098470994256,0.25818852561902683,0.07435443029934119,8.90398978932399e-05,0.004366860065979424,-0.07492341035320955,0.3434638851234437,0.12725453757625377,5.482565817487279e-05,0.007217530040829072,-0.009521301514725598,0.016880461117166966,-0.012136407572678412,0.00027500551701959206,0.011362495615884578,0.03553757245717699,0.10492518441309279,0.15947444828407395,8.422138768888663e-05,0.0003140990813374027,-0.008116013227447575,0.08739430295143628,0.01914195783021507,2.396022592737717e-05,0.01969319356820743,-0.0017693175151620175,0.005678169545558462,-0.005879501252386413,0.0001089196871534435,0.005543928289319323,0.00914782645512849,0.03408229006395119,0.002820579542026878,0.00042307476275774695,0.0031728191333273395,0.05037729868686046,0.23398154186434694,0.01636376582099066,0.00012331760277243796,0.0076443674002895645,-0.0012896148461743367 +2019-10-17,0.010665625849998354,0.06748171880339784,-0.00865236107012613,0.0001671424610957196,0.01010248537816111,0.03499484485140315,0.11944289150188571,0.05178669630536916,7.029983256602746e-05,0.007394098312414135,0.04209982962883597,0.17339457430516148,0.04186861064046389,0.00011231610624159561,0.011635833851900963,-0.007385267773307713,0.009589491968950153,-0.001869515013532909,0.00025991928461403845,0.001540611445366338,-0.034041865008529223,0.07682075117977494,-0.008850962150151766,0.00023186359646566366,0.026944078558662345,-0.023551434852882944,0.06868473544016963,0.017001155287330514,7.486931874220401e-05,0.007632369886074116,0.037582405978867736,0.14549439350580318,-0.02458892719080299,7.579283925315605e-05,0.018108900072330313,-0.015406274781424444,0.1421141079952224,-0.010319222420327316,3.717569192954215e-05,0.002066807967006352,0.006699045216517214,0.0071782473839602946,-0.11475242452253163,0.0007196797359920995,0.00037186200488809767,0.021156955330872522,0.051725840177902105,0.010421998862549643,0.00014302353301155903,0.019084964463268548,0.01949255042992952,0.012756246447046708,-0.03136370113548504,0.0007469131809938345,0.0007686687949929106,-0.004242589019521478,0.04850008120697214,5.454614582340592e-05,2.606821458210641e-05,0.009104821882312474,0.07476124187248588,0.17690548787110646,0.05214722856342351,0.0001255411894795406,0.006372402657030582,0.010599252478866556,0.05513997521970154,0.009739371652305593,5.4109122271149246e-05,0.006341708071698324,0.004526114291544329,0.003968097702155109,-0.0020979373662727025,0.0022246727346577912,0.0033632870556002618,0.0019353425261012512,0.012394853754158369,-0.005419661189115648,0.00012848976667975305,0.011606165858517908,-0.0033089206110449073,0.020658639271838315,-0.05932991756494129,0.0002480235201732415,0.00163433234239787,-0.04108402402962279,0.22084224642372313,0.01284469312847211,5.2402471975470646e-05,0.013292489480784951,0.029292551885673146,0.17408053327332432,0.0046507690791676385,0.0002773280556888552,0.01681913017157158,0.012678819148154595,0.17753006819470735,-0.05237270323129321,2.963719641978244e-05,0.027042961240650733,-0.016553299232383856,0.1852945505987832,-0.12607623171731525,2.9847202200316116e-05,0.0023507418532084066,-0.026907797742234875,0.0750875637287948,0.03177199848385994,0.00011543377455167186,0.003753960094360107,-0.018980156708136086,0.14050423684676133,-0.014619807533616507,3.120345971355129e-05,0.010968035151525276,0.027850998489108703,0.0893408890275788,0.05175724447929533,6.91142949785506e-05,0.007682197442102583,-0.003247515177903441,0.011490588590539358,-0.014857499722932533,0.00012922826383845868,0.0034010461714918264,0.05946573142044353,0.057064096041237994,0.054557357052036466,0.0005956338686814888,0.009049375497567284,0.03131711630233851,0.10781493602779925,-0.0016319412068702072,0.00012226125365130761,0.012643203743459291,0.011819632872162453,0.04164774488718538,-0.0022780352788297036,0.001821510467840422,0.03732268512748986,0.0382956624971349,0.4151728229519231,-0.051441315165943344,2.3719354464051943e-05,0.0028588214822915046,-0.03237628388142497,0.09289279017443577,0.013902756784946962,0.0011395050688507529,0.018754199930098345,0.06644815085638843,0.539405101059996,0.12829537105066424,8.203392546653436e-05,0.016179692206497835,-0.0026300425541013568,0.00336039471022946,0.003940917966248591,0.0001847216798251754,0.007165528591951429,0.046297940801465286,0.06677278622329805,0.05744971319035152,0.0003979844380898496,0.02174316392536556,-0.060344451874752986,0.27426724584816586,0.12258101895253715,0.00170535085221316,0.022216095140165204,-0.02741096736977298,0.08649653816651884,0.01779979120197521,0.00010167542745921603,0.012816118324697104,0.04378538376382554,0.06007882890513556,0.03406073011281256,0.0018116941991795639,0.0016865472609359053,-0.010086197294524514,0.03103250647906122,-0.05140061395782993,0.00012877354183167273,0.009141512595166157,0.01935259161910096,0.05196774304649288,-0.030399396464290088,0.00015096130879662772,0.02497599432912221,-0.00179473846044291,0.007199163299740874,-0.015901943193934644,6.084614524996615e-05,0.008564178812220215,-0.08478931808785539,0.2818860860623586,0.07218566753416292,0.0028509234804479015,0.02881046509584669,0.014133564773491687,0.05896554283607362,-0.000772379605343027,0.00011923231693667001,0.007623727904369954,0.008188113687662164,0.0429663346041801,0.003005203422424065,0.00013820264094605592,0.00032459118044031324,-0.019263381002229497,0.12468202430921559,0.0184143901614472,7.307643770362317e-05,0.004285370540820134,0.03054044937388196,0.13281971836019602,-0.033106978577631695,5.779100711302286e-05,0.021574061859439515,-0.04196183050152993,0.07267597051089612,0.0025101752032931695,0.00028150945060961835,0.002801103784704772,0.004310927717771527,0.02025125015134478,-0.012330471646858238,5.2933825165965704e-05,0.004466871696381058,0.011711200169360036,0.11429038610905924,-0.0002735261309155669,2.6437658572904443e-05,0.006122301118684952,-0.007113511928093783,0.023958251749164904,-0.051249303083242964,0.00010378579217092766,0.0029438860663607656,-0.004167617613794098,0.017152134676122355,0.004357923012237408,0.0003829990155857742,0.008302602557904964,0.014587169515280607,0.059916625151257306,-0.03880814762231459,0.00013944260338392573,0.01303320550376515,0.005607492851738851 +2019-10-18,0.001641418856437101,0.009784973682740181,0.0012751933197847863,0.00017739702823195628,0.002664836272629388,0.028677750871982537,0.11094299314680844,0.007996654461867295,6.202342369518375e-05,0.009034548932878417,0.01842734975482569,0.05640695641918126,-0.0002785769896169815,0.00015112190395005353,0.013541999276333788,-0.031502351899402876,0.030471182387645873,0.0410305894513002,0.00034891651666495795,0.0011394100775710975,0.008908329999789409,0.020491366632300886,-0.0027087358855081532,0.00022746948541391954,0.009911993314636157,-0.016770862258966342,0.041905192569104605,0.003421705151983465,8.738447696484048e-05,0.007099488483800217,0.03854668915393777,0.1373771813355671,0.023534300587739376,8.233080000108734e-05,0.0030578139060928058,-0.011925188331056283,0.10293177816047885,-0.07338950776555024,3.972961765870802e-05,0.009544525496663977,0.015994004334367585,0.012429698341868625,0.03387509908300245,0.0009922963804167386,0.003254439956246088,-0.009764097703545964,0.02238048540416658,-0.08751635032974583,0.0001525543167995853,0.0031997819509069223,-0.01845344079958779,0.013030420773837904,0.06743997029804451,0.0006922186151026162,0.00632422622276951,-0.0003333161972232601,0.00398352706964107,-0.08534131921042669,2.4935118419065983e-05,0.0017394277247419513,0.06080467764161441,0.16089229576481381,0.020208732365604408,0.0001122671711341257,0.0036064575402985776,-0.006295011614161915,0.0360117189994838,3.818660641143458e-05,4.920559654663545e-05,0.009853700465181973,-0.02480902118346533,0.021779279337276268,0.02116192709405831,0.0022217188377091127,0.00881137370672203,0.012307200173772261,0.08271255154733949,0.0013566776696431835,0.00012244468937620302,0.01430284579656614,-0.06605722618730969,0.3462582299104401,0.05557925493420001,0.0002954122229063892,0.0018017449643440125,-0.0607708380058914,0.3734253097551883,0.04398729749416838,4.5840825650691433e-05,0.058380637167766945,-0.04293721932648982,0.2706047366701795,0.05301349895281611,0.00026150821043125774,0.004389046873635012,0.03105520993738225,0.4135287183806378,-0.0202305913191439,3.116441832405455e-05,0.028684563207856662,-0.0135759300198862,0.14016204124536252,0.003200617400767581,3.236092195172674e-05,0.017478722150091778,0.01818677399946819,0.05588570593559715,-0.038519101464579486,0.00010482809282882402,0.0027524494296409805,-0.012495891107254124,0.086151182603217,-0.040865281535902104,3.3504131507657875e-05,0.031746964241740804,0.01400528559413788,0.04445825631708753,-0.022851320731023392,6.984204163581791e-05,0.004627019005703914,0.0002997460210859156,0.001252836738434535,-0.0641433662103205,0.00010939753647634674,0.0020104328676895824,-0.01885389074872937,0.0200878863675379,0.0057894833799915,0.0005364661259713325,0.00686276519586566,0.004785864774810007,0.017120948936261864,-0.05890825332025908,0.00011765722482946019,0.0008049281257138565,-0.010639324021291044,0.038489002665833605,0.0008902706966980008,0.001774175397261686,0.02012450234398746,0.024588581475128053,0.23935541922731765,0.0024264932588803872,2.6416325383045238e-05,0.02254514373205,0.10621499793704495,0.28433811981812207,0.1389863378489172,0.0012212990729919167,0.005096769320748937,-0.02763873141809037,0.2195411503443455,-0.00324085126197407,8.383547191896014e-05,0.009288451781077048,0.0013301395502610567,0.0022322962911328677,-0.09509231945229266,0.00014063413798060922,0.009174440361970002,-0.01039577117120837,0.01561356071831966,-0.05974965748297646,0.0003821718271530085,0.0010717999147613617,0.008434058850035404,0.03708625326911184,0.004212476980013727,0.001762682157086185,0.012779150783780948,-0.02193779695913898,0.08263601872151723,-0.00016761205181020782,8.517536389587045e-05,8.738708339429274e-05,-0.026403487962464178,0.03946641938416383,0.017944853075764176,0.0016630709106919667,0.03335720819113915,-0.01375751828617534,0.044930250330006236,0.01911017487950653,0.00012131578058751188,0.01652218458106449,-0.00010045660775213218,0.00021104413566258806,-0.03899036546837754,0.000192959247131511,0.0021782949223232177,0.03416906447749357,0.14560491650999965,0.010990726317235106,5.7275774913017146e-05,0.018213300290220065,-0.09084165349777182,0.27979636465708496,0.042688816376605355,0.003077237534615463,0.021371346240917966,0.023421025246120917,0.13213670794205515,0.01327144718199991,8.817043640130666e-05,0.02180604143102708,0.009326226921853661,0.054790811732411314,0.0037905490968900475,0.00012344088539854314,0.011964648812391194,0.007182124419663601,0.04294219342046175,0.001226013396759124,7.910745253714842e-05,0.005593389226509392,0.0690434071025883,0.35673955695433857,0.19115283334162034,4.864277476622021e-05,0.0011699670658487393,0.02899301151006362,0.05216242892300849,0.0054837198418322165,0.000270997270141662,0.025382316344912857,-0.0017279892993955197,0.0075732252131399955,-0.027686323971767502,5.673806918901742e-05,0.0015981787711760124,-0.04241597472756782,0.46449527942184016,0.1324870806451115,2.3560224932147525e-05,0.01394171585605283,0.0075470414008918735,0.02657347763120274,-0.013199210287138824,9.927440741247452e-05,0.0008432979103086627,0.02307383761382769,0.08791214411961644,0.015779553062498123,0.00041371277386864874,0.00011059879031088656,0.02282366235596912,0.12466750749835466,0.002576326908493086,0.00010485855129184017,0.019395257866315217,0.0002575676702570363 +2019-10-21,0.013003692412201753,0.07709268656107894,-0.007354144921200874,0.0001783775077161435,0.0015156324721205341,0.0060526324497943065,0.019832724875901875,-0.059185616891146306,7.32272021770526e-05,0.0022147593952381783,0.03256975109250732,0.09291652518198283,0.011990300384266222,0.00016215064630600558,0.011666642622700025,-0.010163163583719263,0.009054343815938963,-0.004820049104741295,0.00037882601063782175,0.005742672358369599,-0.0030568841635049797,0.006561532895179215,-0.00017069381245969322,0.00024376505306470973,0.008127584549004304,-0.029227568080661175,0.07574019690881433,0.05649759198604716,8.425835785991147e-05,0.0010447399551810983,0.033192659771164756,0.11515761141376618,-0.026091585233716217,8.457446542110679e-05,0.021708502895443876,-0.009322303023207619,0.08295405149581059,-0.0723258963798497,3.853756127033174e-05,0.015546824220619157,-0.005564646489913842,0.003986555848803281,0.0032481563311122434,0.0010764268292756225,0.0021930152183703725,0.04485119107916499,0.1055745727169383,0.06268544196475141,0.00014855132667640302,0.0010109652803015157,0.018945256383078913,0.01487863725895881,-0.06840718960135725,0.0006223886860527033,0.0016736169365617944,-0.009102960542138501,0.12698850038676807,-0.021662493110847243,2.1361957910426728e-05,0.006027338078236191,-0.05545345041332995,0.12596400393005905,0.07013649943089649,0.0001307775373482603,0.002638139476928992,0.003884387033841118,0.01935082028864384,0.000752235019821003,5.6504746965763596e-05,0.0013828844227667463,0.015444170057987839,0.014270123338946327,-0.016119116906151202,0.0021108618983279883,0.005422538652801425,0.0034566262362824866,0.024232537032271594,-0.00012644475981544328,0.00011738311890035027,0.010701535538499849,-0.013652542131531734,0.07126068795012938,-0.004669223933705613,0.0002966687123687475,0.003444180765564904,0.06365500122856897,0.34322538026466054,-0.07047238604726384,5.2241313999492664e-05,0.01337066431740588,-0.006961867411527758,0.03342152242035041,-0.00513045488752349,0.0003433098992130323,0.016364242781911842,-0.019898694320870172,0.261222142607448,-0.04339440756114689,3.161147964908273e-05,0.03296878166090421,0.020014625695810126,0.21335757552960638,0.013911935236528908,3.1341596419650426e-05,0.00027176362743181566,0.028396270716563442,0.07196665995804605,0.011005065029258706,0.00012710209721027114,0.004020767670430335,0.026032608415608144,0.21969202267483529,-0.047554521331193506,2.7371322042249306e-05,0.027076990973170026,0.004149339800843492,0.012635741451929387,-0.0009662264680195432,7.28040691038571e-05,0.011348707120569144,0.0009586291875783471,0.004006292875143952,-0.03147572915935323,0.0001094098817957293,0.004322616627441641,-0.00750655520512968,0.006239702978739458,-0.01891567661202895,0.0006876260597503725,0.03150383191934773,0.006082451178184377,0.02408193900076878,-0.06142204283602269,0.00010630977249570895,0.00870533621491681,0.0225687044396674,0.08816794820117929,0.0023005718321566946,0.0016429149043471814,0.00018187854230618922,-0.011803158367687314,0.10497672154875315,0.007502475424770669,2.8912618385447643e-05,0.0044968321968041226,-0.0011785289419675392,0.0033416577134654183,-0.01983904197345469,0.0011530537672702493,0.02743096803367429,0.0484791464969775,0.35917316410451694,0.05400917052101821,8.988282792735377e-05,0.001955455331576011,-0.0027279756432001074,0.004074929451399972,-0.03717354375839985,0.00015800316278134698,0.00986158404700891,0.019259698734708404,0.023965855802665033,0.007237386011481179,0.00046127557762913255,0.001422184042193349,-0.019072176495152828,0.0647180896876197,-0.03655115917985731,0.0022841515152154986,0.0021795973887068576,0.01591087661961427,0.07682911823692928,-0.03409176805963441,6.644443756652765e-05,0.001869869616884401,0.04713967700555976,0.0644547373468415,-0.02773952267628456,0.0018180630956630794,0.0013824273432936555,-0.0032671925018717043,0.011850880930250128,-0.007899119900028725,0.00010922954524858011,0.011919837868759959,0.0008488825061439754,0.001919851536317851,-0.012580104741407683,0.0001792422199632273,0.0014546188717628283,0.04304467862393777,0.18637836606475963,0.005404067132752339,5.6368683854866526e-05,0.0041490692551605,0.015103919694847912,0.04645498071184808,-0.004589673561284777,0.0030815941553193017,0.01939953024806207,0.060088964591621434,0.32685915006229244,0.02832153698603851,9.144809107712483e-05,8.900469985716154e-05,-0.030946177038093638,0.15946182493135183,0.04844765637240717,0.00014073789794807597,0.016383202132578226,0.005705811313414347,0.031192243007073163,-0.018808913280100238,8.652059529752053e-05,0.004662131303358512,0.0005052530950672829,0.0024506114979123347,0.002838952220900926,5.181815081301247e-05,0.017559278388276818,0.000135404405566885,0.0002669357619827638,-0.05715206693072866,0.0002473178303646995,0.004592609244720075,0.030686143950432145,0.11892116053198022,0.10153304591869976,6.416490493010022e-05,0.0004943417576135196,0.0035246201805116846,0.0341526613929213,0.00011451179263113029,2.6626804930245245e-05,0.0043928029416569845,0.022087340543100728,0.06828557018519554,0.008718894485902092,0.00011306376716834266,0.011311895543932792,-0.0002074648819794463,0.0007344957940016755,-0.010446211269400282,0.0004452288018053581,0.006959199098482406,-0.010674152413580057,0.05398731056972303,-0.028347397788254704,0.00011324355707912034,0.02079171834508865,0.00845451227764316 +2019-10-22,-0.004056237335920211,0.02692748844719188,-0.012716227098494355,0.00015929938307890758,0.008682301489015018,0.021971803223352022,0.06280766974001957,0.01124714312929083,8.3938952795919e-05,0.023569937967531252,0.05414622236574115,0.18351215376037483,0.0038172469281418852,0.00013648990601068458,0.0051212603963270865,-0.02557925496883231,0.02926188270794189,0.02712398983155447,0.00029502137448987847,0.006082574531972785,-0.012395964348192913,0.033273521560817594,-0.1081183324064246,0.000194930287441234,0.017010901128309833,-0.012622281476509152,0.03613266705835889,-0.005415504300824588,7.627541534831105e-05,0.014085968740416243,-0.00258655668184012,0.009541089097538471,-0.00572242465420035,7.954518637809659e-05,0.028654646910848663,-0.007097415852009583,0.06304964416135905,-0.029918710360437178,3.8602570678868704e-05,0.0039043316268133526,-0.005415602702833567,0.004750605345935624,-0.025494947543898517,0.0008791088048424211,0.009356917951896592,0.029444371161975524,0.07631115794148666,0.017969361957265506,0.0001349199359766752,0.004356099072166813,0.012195942171015259,0.009448518710050213,-0.01838257608062005,0.00063092245896215,0.011897382689049125,-0.00933642115285142,0.13253789483871894,-0.026997973856457483,2.099245133685159e-05,0.0029505812625519913,-0.03830484363636476,0.11333131564293797,0.025885111719496732,0.00010040487533930347,0.025417531307277603,-0.017384385095093595,0.09076757808224921,0.04072588507989583,5.3912615884498736e-05,0.004789576300595481,-0.0074682082152345815,0.006373738239345351,-0.008052110963405548,0.002285310245225765,0.01704005701609102,-0.02477347369253587,0.20988356063730929,-0.010788673343960551,9.713161086990559e-05,0.013911143538016348,-0.05069884325572627,0.30856778460072565,0.009768254565951841,0.00025442260796937913,0.011094099320731415,-0.0013802391636177152,0.0074231508653003625,-0.08038345718785453,5.237535927199519e-05,0.05368022590576051,0.025068923174112988,0.14488180988335395,-0.056903641375154926,0.00028517314436369597,0.031666292309318306,-0.015637407516804366,0.2035818251410327,-0.08835754027251175,3.1875424846016164e-05,0.03427599542138747,-0.0038687704044110672,0.045116307399798085,-0.04841284086158406,2.864976862165518e-05,0.0055292522662854626,0.016720495807770575,0.0554122085564087,-0.009903625810016473,9.720004074777954e-05,0.00818969106594752,0.007393011328413887,0.051171055982204124,-0.045334251826359556,3.337254815966581e-05,0.0036465713393841782,-0.0098712402078322,0.026213444466795504,-0.004613112458363223,8.348818334993755e-05,0.010685088166269625,-0.018630996142271466,0.07045095597241054,0.08410516373853859,0.00012091990044544078,0.0034180511983434676,-0.0003217011554244059,0.00034952029044286976,-0.006198478926438091,0.0005260848429651995,0.013826458969995455,-0.026671015155362292,0.08537294331775866,0.07805864759848995,0.00013149380748704673,0.005650027469093148,-0.037698750060572016,0.1418569448374974,0.015181024264291017,0.001705672012614028,0.01164801297454568,0.007081350368215092,0.057109032537508625,-0.07158897926649778,3.188551787380101e-05,0.009882877648439984,-0.001350511547703577,0.00455418491708357,-0.002901892764649943,0.0009695247744524516,0.027175774922933646,0.014671986046590979,0.10288066085598964,-0.0025172050619035945,9.49687678205668e-05,0.0069695680582346235,-0.009428915341354517,0.014223559257045012,0.0070048278418508615,0.00015645838254975554,0.010845952203226112,0.010470960582682027,0.012748291468991948,-0.028699542601484357,0.000471453054867108,0.017982552890235814,0.02585801112943997,0.0716909175432585,0.028546955643225565,0.0027956404808068555,0.008098416363830772,-0.02460312609551245,0.10201925672267988,0.01942934865859918,7.737461619532927e-05,0.013680200798524271,-0.03995038101369131,0.054692671642897484,0.049173594164784916,0.0018158040439947845,0.029422688493136732,-0.022839992823546932,0.078636515687843,0.017974367900241067,0.00011507678962045768,0.00044372103029229927,-0.013595229766811899,0.035829886558207076,-0.02395347280395206,0.0001538159934335958,0.00950274619827065,-0.0034540523924501258,0.015156895667802381,-0.023180308434075772,5.562020493419312e-05,0.012037267840925875,-0.0744440495456828,0.19589432409993698,0.039241242004486046,0.0036018547446953868,0.02377509062540483,0.062405961579651364,0.3170776185933546,0.07119844581458423,9.790414122614047e-05,0.013513087629985139,-0.027852155957009465,0.14593232183358695,-0.022721764461454696,0.0001384102045346313,0.010612142885932407,-0.02585555573904695,0.14082732183333144,0.027251144578831876,8.683916831670769e-05,0.0025313458712457,0.004036435070148356,0.01753303913930453,0.004280256984574031,5.786129686969779e-05,0.006614779062901893,0.019422369854449412,0.03687832604235367,0.007976784641227917,0.00025677953879029385,0.010671490833605336,-0.011197737370795833,0.037347386204456094,0.015478224828467321,7.455631604631676e-05,0.007133922763816532,-0.02545317695967579,0.2781408438480496,0.03997757198966914,2.3610681047356767e-05,0.015875691041222183,0.012892344603858439,0.04089758781474191,-0.012989582046172102,0.00011019025201932728,0.006025901220064518,-0.032114398450212446,0.1369288807411365,0.1467540135019594,0.0003696857446005806,0.011398959967483219,0.034608477943657345,0.22234046624861795,0.028960684791074144,8.915296344413638e-05,0.0019226171648968407,-0.005665110312732584 +2019-10-23,0.0067349909292694484,0.046131598734492345,0.006369316527947823,0.00015439210671954978,0.016873728578223196,-0.008274116816894168,0.029225771868717783,-0.005790459055576425,6.793071484595552e-05,0.016425169963134513,-0.022158525248069803,0.06487376626150497,-0.015513708029031747,0.00015800431429465665,0.015194332645507605,-0.025113176117023857,0.022503901888598316,0.022389306299072126,0.0003766271925043568,0.007686944995426877,0.02648885023809516,0.05979733331234912,0.007563536700737756,0.0002317816570365135,0.03332475799707651,-0.006446940536705942,0.017095447987728832,-0.10645320134384587,8.234171692635269e-05,0.012710277307586977,0.03531108142572285,0.13294302423085577,0.024176485076088147,7.793549883636344e-05,0.004795441003727249,0.05137891510682003,0.4943527776029734,0.2011607350787591,3.564072792760308e-05,0.011795654355677981,-0.005308773079540419,0.00431806739568425,-0.021542763598061936,0.0009480899266075541,0.0013409657146290998,-0.020881554736125272,0.05195787203968504,0.019947355075612076,0.00014053139627731253,0.02599719974591157,-0.005667930966803719,0.004503932192709011,0.028203181301082812,0.0006151160609459981,0.002358599595187054,0.011197115355956713,0.15044209117615195,0.02496342896059837,2.2179899823580656e-05,0.0039716816926589705,-0.012844079542042702,0.034576083462717296,-0.0022729191439131756,0.0001103514963299039,0.0005464324072265673,-0.010569124014968807,0.055997100050288864,0.0096201401928442,5.312944455564019e-05,0.0021145684340215668,0.03390405700148031,0.027249316889349787,0.022612828436398072,0.002426716385961798,0.0016587823001866769,0.045793267453422826,0.3093162715135156,0.04171197621866878,0.00012182908255593594,0.010578935133071699,-0.0638411929780096,0.3663783682410614,-0.04146626378009556,0.0002698232703418214,0.006237982841076442,-0.0016213233459530052,0.011457059685697324,-0.052463713381249874,3.986184689377804e-05,0.00997824726201326,0.039349928072291616,0.2104663151810299,0.01064891126433923,0.00030814005287102704,0.00643580953876656,0.049802167286112024,0.8179344172592798,0.018163399550348493,2.5267367157754687e-05,0.003545012558589832,-0.0009246648246988217,0.009675146062611158,-0.0022502896557230023,3.193070561428138e-05,0.0020182927839813057,-0.014212648913874151,0.04145776710590835,-0.009157043130683419,0.00011043122159240464,0.005021894628575117,0.06401461643294193,0.43593511282928576,0.05897013987375253,3.391951802523243e-05,0.004069766661332777,0.010796042859453186,0.028796682092625973,-0.0008107508713362966,8.311885086406088e-05,0.003530056801782623,0.005443426452140825,0.022355715534632295,-0.022113527996824006,0.00011133517092869587,0.0013875860219756495,-0.0329015961484591,0.03591944071262484,0.00283642906101228,0.000523555785240392,0.012393391662779609,-0.01246950435718196,0.053974791297006726,0.01603836459092397,9.723983844946677e-05,0.0002894180995913194,-0.0761743254415574,0.22349724720665673,-0.02888616061992023,0.002187538037500949,0.024213811871043836,0.02963472280955715,0.3119513170550288,-0.016530060629181338,2.4428468535133265e-05,0.02559457916181334,0.013772981159041176,0.03741648048705417,-0.06447721034040109,0.0012034728279121433,0.011091259794326257,-0.004956482587709357,0.03579533563017968,-0.012129963221825224,9.220888896441592e-05,0.0016325854916634955,-0.015265259387663481,0.021671959138270826,0.01794989308050162,0.00016624607528917953,0.01032391991172247,-0.01346360558074329,0.018549486747834083,0.005260529759522556,0.00041661355560231104,0.013656200804963539,0.012945507268023421,0.042666719562405954,-0.031038803235283893,0.0023516904779261843,0.01780689656772518,-0.046376373459865526,0.1658386063236212,0.07014785866496533,8.972253090147994e-05,0.004138257461449213,-0.016699231671386715,0.02050465667816518,0.010282390959954505,0.002024515842300677,0.006741937229016097,-0.01866092965996834,0.05352956528306047,0.012390514434768409,0.00013811969030702532,0.026308873772312374,0.006754600449356035,0.01601412214341757,-0.011543972729128509,0.00017098456349757927,0.006737006824819764,0.0019754811916480883,0.009365366301497247,-0.005557183751915189,5.148278778805464e-05,0.004123824181556412,0.0010106165147802458,0.0029986478552465035,0.0006759713181245636,0.0031943241233140097,0.01826918307753448,0.01722587217108312,0.0877137050079035,-0.0009838129422525272,9.769095044231332e-05,0.03389601467665646,-0.01615881436950628,0.10594085720575062,0.010943205825202711,0.00011061315851380132,0.010675509850054502,0.007607894218416167,0.042914691871740546,0.0003126216736199314,8.385079133145546e-05,0.0021137879733523846,-0.07565540575919438,0.29329156498610437,0.08047728323289158,6.483175629441039e-05,0.009711295244206315,-0.03796355639998042,0.06918502457162855,0.01956061508542695,0.00026753720438885175,0.01961756785652544,-0.03558740714067876,0.13969179192245498,0.11891150874772143,6.334901032056727e-05,0.007937108342218804,0.025057881124886754,0.21276064244052176,0.013063025258307638,3.0386755893982583e-05,0.0025895494288780264,-0.01906186773529523,0.05558281360122754,0.01979520245036323,0.00011987645441674611,0.006283108815284689,0.005951942203618894,0.025861035445289,-0.036538029751090904,0.00036277785341841656,0.00263051004234619,0.03596024087686807,0.1801027739074009,-0.04657838962833893,0.00011435995778239302,0.01058079628798791,-0.0016486190451920266 +2019-10-24,0.003954457691322719,0.023826902867833566,0.004691116773674999,0.00017551163942786593,0.020081087347187842,-0.0002009236799272094,0.0006682819629094139,-0.0019308993427756117,7.214095890352905e-05,0.005809080328926022,-0.02408216247461858,0.08048472150582361,0.020813810366426395,0.00013841375190048875,0.03909523453893354,0.002306795117180695,0.0024643336218160574,-0.00037886038746974483,0.0003159201867497809,0.0054245471943075605,-0.021348069792339223,0.04775699076363486,-0.0008398110483526072,0.00023389418938039446,0.0054450063505360816,0.014170955493856604,0.04237914630012571,-0.12153741963213903,7.30119033116198e-05,0.002024780254270547,0.013607709006932851,0.06165594661661703,-0.04167462397747098,6.475896495818977e-05,0.005430651144790398,0.007416956488749536,0.05276180660774774,0.003234582727136642,4.82063986614779e-05,0.005856374322362406,0.02421345689962989,0.01698829243414475,0.029398694838239234,0.0010991370703179282,0.002795723492031474,-0.03495059130364021,0.08486661491520231,0.04038944278975125,0.00014400565082681868,0.020114736442482965,-0.01393633177951341,0.009347948703366688,0.008799278386566845,0.0007287129956199148,0.00888219936460061,0.017995600612575317,0.22876361302969964,0.05208350245472853,2.344240627883578e-05,0.009920528767013052,-0.030557455705709377,0.07437075519417138,-0.003968795421370157,0.00012205794034904783,0.013055077695915311,0.012195945460222821,0.07060265313800103,-0.010197489241677309,4.862462560515361e-05,0.010653517223633257,-0.03504162740396712,0.02952805132259626,0.03604354957986132,0.002314581369140136,0.0006428156858697685,0.020696670843334156,0.13604031064652639,-0.1041993654195679,0.0001251944237660177,0.02702178585712293,-0.023650330787321396,0.13018860717734196,-0.00794677866872734,0.00028130177374218715,0.007060743339129578,0.009236469441996633,0.05490881541581093,-0.0700266201369726,4.738325368157642e-05,0.0077010704709252085,-0.008153968242648062,0.04650608735145137,-0.04247274616072794,0.00028896551683339024,0.0013943477688258248,0.016835305154878317,0.23618338687698953,-0.1786646086970688,2.9580252572834593e-05,0.0010642656679740509,-0.019974995316025933,0.2092664015316785,0.04959102898106021,3.18910551671766e-05,0.000609350715691044,0.007887963849043795,0.023168746820632587,-0.015399407979999632,0.00010966931316254739,0.011663030949335861,-0.08865368748191464,0.6502778806405392,0.09396765729500174,3.149127169864769e-05,0.017870044209674092,0.006731124963398825,0.017988023179530927,-0.0869545334446178,8.296245538228357e-05,0.02741218934998306,0.0016004189117554569,0.006755694176373928,-0.07671849817357627,0.00010832090730268301,0.007330311717721922,-0.02277584641643749,0.02211765207974581,0.007158267337519649,0.0005885875409379897,0.00469223312321042,0.0414649394385971,0.15778666996327187,0.05799578119995808,0.00011061059636522666,0.005619962039781086,0.02721909434315175,0.10248675077366093,0.014980302919285211,0.00170461034999936,0.03326756447530811,0.03812403009379645,0.3082067169727207,0.014753792627620058,3.1808185803311055e-05,0.014089871091775908,-0.006165951289210708,0.015429671461245032,0.0015028889829985105,0.001306515842932647,0.04358913192307029,-0.009872315862528925,0.06483667456022738,-0.00865444195065941,0.00010139673090660114,0.007695298150095546,-0.008944760625602384,0.012960823700951543,-0.0016307354648074973,0.00016288515513722765,0.0037576068653676813,-0.06479827307205363,0.08666545892776396,0.104951786600385,0.0004291620433429686,0.0037469553060682924,-0.00481199134000991,0.01983004518162206,-0.006152493890689589,0.0018808383635069367,0.0012065259663010496,0.015413274446307003,0.05829835299139659,-0.03887879462328299,8.482600159679203e-05,0.015302884924304998,-0.020687053854122235,0.03130822963264642,-0.0008669960400828705,0.0016425451882357011,0.026519369838720445,0.057339778113880725,0.1945335215261781,0.10591784003288447,0.00011678245369710366,0.00027230465948271574,0.008337918045488713,0.022493740772338122,0.0001753956059842145,0.0001502644729199353,0.012159244836232713,0.04930235544372005,0.23270605203509084,0.033831051113625235,5.170992587372285e-05,0.004733056401433992,-0.11133143302368752,0.3261677837708404,0.08374180887948417,0.0032351527756670456,0.04319903761564783,-0.05569561952653218,0.3262957407770372,0.09693671674668172,8.490831159304402e-05,0.020504607179949483,0.00249554177688781,0.012807498866039156,-0.04600055832542238,0.00014130622778516953,0.028634308133937334,-0.02357623136556784,0.13321386268860236,0.019117948631934195,8.370929073707768e-05,0.0005104726997691186,-0.006321260357430772,0.026894412314839126,-0.006858774752966195,5.907299830362971e-05,0.03591133461385233,0.03239166020457645,0.05447276329044337,-0.06036583409361817,0.00028992335075029896,0.02173271554742525,-0.0002915569536474331,0.001256706434992967,-0.024070105826210414,5.769045189019123e-05,0.01823035542663697,0.02009478333725908,0.21143148960757874,0.0068866977165313184,2.4521382053809384e-05,0.0023705406583109418,0.0028956484163413948,0.012109132734751789,-0.0002553682284285651,8.358758048304854e-05,0.004435957916883286,-0.04433645675246467,0.17589138740092147,0.1908443551938437,0.0003973236156508807,0.0023182015999229583,0.014395197901279503,0.06154433842290533,-0.006357035626685874,0.00013396807847206163,0.008137461951391119,-0.004437685100461347 +2019-10-25,0.018309449161124165,0.10648098457093591,-8.046004745444009e-05,0.00018184015986164942,0.0038376310519464274,-0.019023719898973675,0.059415087852054495,0.001433886727866753,7.68261775896513e-05,0.013944220947548392,0.019122876926087065,0.054332988015115394,0.006457388005871103,0.00016281216258847518,0.008584565989195414,0.00967368171604136,0.009837563854665107,-0.10071718616391867,0.00033187312599255775,0.009645737458072477,-0.010903449083006762,0.024389349032609687,-0.01974338065085482,0.00023391682646931627,0.011300130595556887,-0.0030397027935774815,0.006662249195269836,-0.00015779159843287444,9.962239754472944e-05,0.014507388242613342,-0.014070870936256053,0.05143529423624439,-0.003964569374877542,8.026932412056795e-05,0.011494355129819833,0.0009242098137978792,0.007719734258547116,-0.06372520483802206,4.105507404105057e-05,0.01448305419452941,0.004513279975161422,0.003733553877419562,0.0028753338984343125,0.000932211892408421,0.00479260236652179,0.01694668868288453,0.034552616282372633,-0.025444277022123585,0.00017150066191271002,0.008262390352282935,0.024983494498449114,0.016688924855167597,0.02281029792995362,0.0007317271731318348,0.006683394759460264,-0.00031450670349990307,0.004303106218936062,-0.002981005656598044,2.1780639633042724e-05,0.006752842029789517,0.01893042574269735,0.061336924894893306,-0.030830008835765234,9.16831276296758e-05,0.004407630335468414,-0.022254519279558755,0.12465331753857305,-0.07668260207675222,5.025464326617413e-05,0.004583267985288019,-0.015927742407409306,0.01083003372979683,-0.004416517630834278,0.0028684506781517126,0.008310129646860082,0.07213253280470552,0.5447229048522035,-0.06226648692947391,0.00010897017605533848,0.014425575845037657,-0.004063800149233627,0.026106655122850743,-0.001785750200612359,0.00024104012385475716,0.007028714538938949,-0.0007919389139176829,0.005862630970241165,-0.03789530393569197,3.805047492262148e-05,0.009761762905764337,0.049489362704859825,0.2522753099019583,0.021911051867612084,0.00032331356055757035,0.010047530095592914,-0.005071654515655727,0.06865988917848313,-0.015393278278523326,3.065326887388829e-05,0.021128419688933295,-0.012747228055114182,0.1522518328425812,0.013528254137087354,2.7972735270083536e-05,0.004707375669143067,-0.051643882809749235,0.1151209258950179,0.10899275049059905,0.00014450649550308084,0.0034636160245674367,0.04280584487920149,0.2654888897057605,0.01995949060911917,3.724338085386658e-05,0.0019899377654214795,0.008262988270220732,0.025217575976781818,-0.0058512587994853545,7.264591205008404e-05,0.014560541055080704,0.002440646584840782,0.010137257752745139,-0.01658639975005273,0.00011008623094561768,0.0016588610939489174,0.04037863191285648,0.03951693865371276,0.015572161022771223,0.000584041716847491,0.0066205878053220545,0.015101340357712724,0.056803679991601984,-0.022923062205326736,0.00011189869788306785,0.006997346802294762,0.018597232530878086,0.05916990778404544,-0.04051302424345936,0.002017281954480514,0.0046304480720112525,0.021125585544790687,0.20596693235260105,-0.07492478705519288,2.637505960973978e-05,0.0036251345685130738,0.031207221766994597,0.0901476238383338,0.009023111804672256,0.0011318062637548658,0.013582907056356293,-0.011079944900365638,0.07748774926932653,0.006667607013313803,9.52204429675267e-05,0.022757834579141323,0.0033360742039095876,0.00452095518481541,-0.001236513225203513,0.00017416099063290042,0.011978061590856091,-0.019629014133699288,0.036738261133578254,-0.018005512796392318,0.000306678834971184,0.014298221566354597,0.007129813347286277,0.028770857063818,-0.021047290252016744,0.0019207714962197803,0.0046313930723350894,0.015076845393668355,0.05897542078440955,0.0032987201157572902,8.202189589125316e-05,0.007597553254848555,0.029832759497084988,0.03857514792943721,-0.0812470304807668,0.0019224852596128876,0.00611945882130832,0.01671438900775781,0.054065273887634865,-0.008147858788347256,0.00012248647453178745,0.0005710005642629622,0.006490091545481608,0.016323792641744182,0.0008930853012153942,0.00016117219829457752,0.02780402455740764,0.05229948951363988,0.20570296011868242,0.05969027668593722,6.205415033515092e-05,0.02086363219809475,0.02549275308462345,0.0880701393691371,0.015614871689729371,0.002743507260677403,0.02973214371030972,-0.0589548272932847,0.3184506972364842,0.05409612277179256,9.209111644333254e-05,0.014714008075641407,-0.006391830144302235,0.03474246903847247,-0.1405387188524545,0.00013342135004403333,0.012675018691801867,0.009678520790669033,0.04957885443423331,-0.09939412730107508,9.233390395388313e-05,0.0016156102143575516,-0.004307844149816357,0.01849584622181189,-0.015679651934494776,5.853736535634775e-05,0.016738256840780463,-0.07345879863664254,0.11260973758098529,0.06552759545146997,0.0003180513689246682,0.015849371195133456,-0.005493471298312778,0.017264264388097233,-0.008904762612430167,7.912489695336901e-05,0.009865479630976313,0.027976922258656348,0.3005153947132287,0.019085913013195663,2.4019529533386535e-05,0.005945054088554676,-0.021065178657739245,0.06351033206742215,0.013831168847321215,0.00011593904744241869,0.005884180753252034,-0.0008536514873214401,0.0031621908623243405,-0.002625115522583416,0.0004255205051551587,0.01678537636183508,0.021762440073493625,0.1162748291800853,0.005260295185008737,0.00010719972568988259,0.00019986530839010124,0.0047335780605761504 +2019-10-28,0.01898685401277424,0.11664993955217248,-0.0323561305213033,0.00017212940875987442,0.015974679343351103,0.026089707183354925,0.1080747829803753,0.015622958853821534,5.7923575127444625e-05,0.009008212418583341,-0.0006974553765218949,0.002433852397774338,0.0003235407884318853,0.00013256210577406593,0.0009437613161345638,-0.00030906612842997476,0.0003485359684330863,-0.03191991701150701,0.00029927584443674335,0.0015448254207836689,-0.01557785398469716,0.04027421664425022,0.0037239386528577505,0.0002023849897684989,0.007695612278180912,-0.00574498780777667,0.01459316572714041,-0.02067270708534523,8.595800682449502e-05,0.006697889727538735,0.012066811753216342,0.04190755710108324,-0.0015437053933231206,8.448703076127908e-05,0.002022389582335314,-0.029925539151447605,0.2778180923828761,-0.06358778977472383,3.693856953367756e-05,0.0036856371472206413,-0.02591608050554269,0.020863554595789053,0.011532265567693706,0.0009579124202754753,0.0007050112294039844,-0.012038794533794035,0.028976514004450244,0.008204583411508374,0.00014527763188302556,0.010869746719459212,0.026688195561895424,0.018545904156517787,-0.08629370643021032,0.0007033889777013488,0.006034796270276237,-0.02074374728536393,0.2738511983961932,0.057383879971551685,2.2573315757134956e-05,0.00034915155208021056,0.0206385947093221,0.05597506551381462,-0.00035216026606091415,0.00010953087320414978,0.0047900324474346384,0.009477331163661219,0.04801885458710221,-0.0034240339705808908,5.5556653554964265e-05,0.0030573418681982905,0.022800177929671775,0.02022203240082522,-0.04012489541513114,0.0021990565967119667,0.0037465112519030844,-0.008940708051422452,0.053999663379037235,-0.01934255963699744,0.0001362488887832264,0.012770087000388446,-0.04982292598893887,0.2641651578586988,-0.03699197936711478,0.000292053170566231,0.0030826084014770453,0.004571173305900502,0.031808309263565884,-0.05206411662358446,4.0480704086447726e-05,0.001978245734324407,-0.04098873155863505,0.21460939148221161,0.06600390307847323,0.0003147766891597819,0.00862148960469724,-0.024270824362064087,0.33216076501021835,0.00799210367532213,3.0322599279308038e-05,0.024466049227902617,-0.015143672189060969,0.1450982671852582,0.018523400859937894,3.486989849053414e-05,0.003596054230230282,0.05672434508160214,0.18909640811542716,0.06847981345249306,9.662932964674389e-05,0.003255962554283456,0.009997003169403086,0.07587363830666555,-0.0016785495771182008,3.043485913162871e-05,0.004539739770477051,0.008560986294065915,0.02620550579984137,0.005066160007564828,7.242835765610337e-05,0.006791559553528338,-0.014690005851833334,0.05929229701911178,0.04726853431324355,0.00011328496867377326,0.003196452453368941,0.031871977360482695,0.03032258438931773,0.013051547762551794,0.0006007839974681936,0.011669251659477062,0.016862905148964786,0.06857969496995395,-0.030960875423010674,0.00010349583127735507,0.013196677802731229,0.0352497070870055,0.12709797270362716,-0.06805552291704192,0.00178006583115729,0.0025992551791061045,0.011152305984049036,0.09671282978351892,0.0010657530926045356,2.965260012999216e-05,0.008919000263049332,0.0072279492770020584,0.01979039821451406,-0.0009394637355103472,0.0011940756247435956,0.030604916816477916,-0.021198512198154135,0.1331966780278686,-0.02325448687434369,0.00010598334711922883,0.004177237712600782,0.02462186506988019,0.03770246129266451,0.006412982202717791,0.00015413335457198737,0.0032276837003667232,0.0397000747634143,0.050810802854773233,-0.08496310332092497,0.0004484759734865049,0.0009805931517458946,0.00085931870257236,0.0037921538691919306,-0.01221583319811042,0.0017563806927170767,0.020519615018936094,0.006936709479621938,0.02481664706154142,-0.012516484494903689,8.968106810315823e-05,0.0048917543049657,0.06504373531853101,0.09377502859672009,0.07433319799827631,0.0017242310452648282,0.023397171310799093,-0.036934077253227976,0.12700845436751665,0.05836806180381154,0.00011521543367029722,0.007131028163974153,0.0060051564323971495,0.01801197249438831,0.001742837797781878,0.00013515229541618672,0.009514378582149834,0.059210544953743206,0.2377119676429084,0.06550946613791792,6.0794170385834166e-05,0.009801081187044697,0.05498820277753439,0.18415390911077495,-0.00979558946044157,0.002830131669907835,0.00326189841814808,0.006738408004798889,0.03348577552769628,-0.009041354846195053,0.00010010079178115442,0.015947241448010265,0.024212046257330127,0.13011952358286358,0.03594068737507959,0.00013494283030957138,0.012504205959393654,-0.00806026350107412,0.04848019988992538,0.0008620429415434373,7.863819502877698e-05,0.0031771285653298784,-0.0008150575776568743,0.003594090815368259,0.001861114689700799,5.699629658520311e-05,0.012181052297563113,-0.04409524423003107,0.08585392129363438,0.019386226845629337,0.0002504153867373917,0.006538082128477245,0.008971485335491115,0.04106230317797167,0.008719345414223192,5.432946422773104e-05,0.011096885123512427,0.021964471689351034,0.2756062317977224,-0.04226711737000969,2.0561889165228762e-05,0.007406810371933081,-0.014138337023361706,0.05231230642684218,0.00881246382714698,9.447206887234088e-05,0.0035850855469613044,-0.025910052961902373,0.11781119360530715,0.006699280813194614,0.0003466647756496541,0.0034938829076446723,0.01985392480687972,0.08764939953110461,-0.04591948796742346,0.0001297386048913851,0.004250624900222765,0.005039709181620616 +2019-10-29,-0.03723511162489252,0.2815171704961688,0.0434476193696045,0.00013987314992594988,0.010723323282034916,-0.019939679361666726,0.07076984458539709,-0.003011191480644388,6.760525497887024e-05,0.0036510063863527623,0.005905466056043075,0.024941594271021293,0.00012642916790862917,0.00010952850803256121,0.0031092473225314324,-0.008547956152093398,0.008116119907481217,0.00016263473563176705,0.0003554525935229598,0.00945465786339597,0.01262616847732676,0.02722653847008005,0.0008487837245154305,0.0002426481155544095,0.02621205588551312,0.0044469685475051635,0.011059239255879774,0.015033914383194194,8.779818617599544e-05,0.009899421962532507,0.02811835025538762,0.10424680008308004,0.004425522852697492,7.914381095101849e-05,0.001409011664541113,-0.0293635316120854,0.27572190348496806,0.01747460561510743,3.6520409140292524e-05,0.001481608878893097,0.010696343487037857,0.007384731734690936,0.0023445632862517884,0.0011169800183872466,0.002822920084570523,-0.01730984273062168,0.029400735190950072,-0.060235246289236155,0.00020587177929183283,0.01174619220369423,0.02739487044423393,0.019565000829955766,0.013680615256857553,0.0006844058901208438,0.001022331289459784,0.003933148586200959,0.051004086663037795,-0.005641718953961631,2.29804309061933e-05,0.008237228453601128,0.004733864355567377,0.012754314672115647,-0.061053682301150006,0.00011025790080662111,0.011154224577912621,-0.004664084609274147,0.029690928488495954,-0.024636660690286492,4.4218546161897164e-05,0.008914842701425648,0.04193532473473813,0.038794500206103914,-0.02589488598581471,0.0021083020051826298,0.0123497567821886,-0.02412704220122661,0.16214580492067215,0.04013190200061686,0.00012244765564760592,0.013114067032450648,0.0017022987606596274,0.010596182598705893,-0.10665882054757866,0.00024876803814978033,0.02012385894606841,-0.05571870883318313,0.3303731794116503,0.08475478125409273,4.750695743644654e-05,0.017867311358771464,-0.007071420388096165,0.03978337245136698,-0.04970648447701794,0.00029294889765737976,0.018227383575649105,0.03696734684760888,0.4706398016685438,-0.038562126989327386,3.259566616258625e-05,0.0010864203953137408,-0.003177074230758016,0.034917278965855246,-0.029568453943351697,3.039965664760318e-05,0.006691561829035287,0.06449397164582202,0.20369557861561702,0.0537786372862306,0.00010199063031147838,0.01468579781963715,0.0700381185930811,0.46714383318561,0.05313975741148971,3.4631892706855e-05,0.007429939715148643,-0.0012060262528848912,0.0031606950255957155,-0.0030351352619470405,8.459633552613613e-05,0.0036345246780188824,-0.008263010849916194,0.02536836960872436,0.024574892708416,0.00014893417430938724,0.004992698701854916,0.00953638245014792,0.007734383128678458,-0.039042358511799324,0.0007047474933276278,0.04151172105708186,-0.014244714666741246,0.05487709480633747,-0.03441679081675954,0.00010925684410208939,0.016409770643532714,0.02092206541397468,0.07061232680042825,0.007879105336683121,0.0019017052603355468,0.004165623774048961,0.020076781334592387,0.1918715341026263,-0.04053307397833345,2.6907028345653205e-05,0.014045365848245747,-0.013482822675422291,0.031614432980742076,-0.04105180512301158,0.0013943336085704776,0.0283435245089557,-0.005334381713904851,0.03890626012918996,0.0015991202937660977,9.130409296716971e-05,0.0014133384913752106,0.060398084797917084,0.08310447053242939,0.1019061978469357,0.00017153161116739013,0.015761722909821307,-0.0010646730347155652,0.001749830563928034,-0.0640954679584558,0.000349240153571026,0.03321528227530021,-0.007134345024645699,0.035182163190835815,-0.006725887170650178,0.0015717443610022944,0.02552611490219015,-0.03125727826038531,0.11724950122370617,0.017768561765896564,8.553237383787235e-05,0.009177741774237778,0.01077845756064149,0.015282502515488822,-0.02146394392800387,0.0017532317703766336,0.00023721832131013343,-0.017635057428372878,0.054002225818305806,0.013305424115425613,0.00012938420278390658,0.011454925164494447,0.048062252655282266,0.13693320700536804,0.05604981710815015,0.0001422838862362861,0.005273741475160422,-0.01565177973074046,0.058413821093511877,0.025751666457491756,6.539763397349084e-05,0.00033449809606813903,0.036592009723194804,0.12446613786549159,-0.002947503899630348,0.002786461884776533,0.01790936492813665,0.02220532992670051,0.0975672495153456,0.00482087929617407,0.0001132123326796493,0.0038645472233723734,-0.0007141601991112123,0.003908730056563463,-0.015056289509211474,0.0001325014859949132,0.00629751810571349,-0.038315187611267836,0.21376778363422552,-0.012094425965085438,8.477687439747328e-05,0.012355331434515832,-0.00562356147609008,0.029040561266343374,0.00031523046836309636,4.866915839679758e-05,0.008785026863289684,-0.03277913302610688,0.053007041922936836,0.006923091153513668,0.0003015041455542562,0.025762017917575306,0.03192237129585638,0.15688024200192882,0.07586233714059214,5.059892264825087e-05,0.007844523549849356,0.004461412336966572,0.045744732651817235,-0.011420730967277377,2.51630079940356e-05,0.003358186512626691,-0.01279357297061856,0.03672511179337902,-0.0055981883055295,0.00012176926611502633,0.005606272135450142,-0.009083476140817035,0.037636512580285754,0.0019365417281165618,0.000380426424976286,0.008229517535062817,-0.014234203309405384,0.07625244304300224,-0.005529233336667042,0.0001069180915304674,0.010973196760679522,0.004372135687666059 +2019-10-30,-0.05176960194763752,0.3491341253249626,0.09802248465332108,0.00015680832278050304,0.010007323468161617,0.0428331463867721,0.13912473972450368,0.06085912092649796,7.387306854984506e-05,0.009723404781732711,-0.007918019121617737,0.0266104114572191,-0.021745983016699562,0.00013764554539394877,0.006759776679508599,-0.01646259258005274,0.015893469789763227,-0.031362893517015614,0.0003495806341564533,0.007614512081281359,-0.04171579034291175,0.08460644725560149,0.06134258854896231,0.0002579851984388543,0.02287170100558513,-0.00620855958251736,0.014554628944775605,-0.00045561499397731936,9.314004750885971e-05,0.003106080499398621,-0.042378299872205684,0.1689193050324741,0.02575071700874278,7.361292911172325e-05,0.0006713237513257273,-0.005086768684988444,0.04388915718426637,-0.03132346963843117,3.9745078809876966e-05,0.0018496652217185612,-0.00825148566162245,0.0055869483693465555,-0.03819006638643453,0.001138943756053046,0.008122677931457658,0.006633795859122905,0.016114413644290428,-0.015415935323133787,0.00014394927498387287,0.003991650587393518,-0.02228273472330603,0.015331506167047274,0.08081953863996534,0.0007104082989966319,0.015246703456790509,-0.0077689688136752455,0.1050140110767568,0.005949251836090255,2.2046462834403048e-05,0.0037525438509299546,0.012226941504099045,0.03304676037941137,-0.12317626400838023,0.00010991070179931823,0.008733311971558843,-0.026979344531595856,0.170635406426224,-0.05825991934204497,4.450656340328514e-05,0.0002896831930051784,0.017885103128307815,0.01536101842736338,-0.03289002964510471,0.0022708811801967774,0.017898859108950355,-0.08354243217777023,0.5264410913927638,0.24877216564764398,0.00013058985562037012,0.0012918459032207183,0.0025143970241154534,0.016655337379860316,-0.013100393653673879,0.000233769932531294,0.0035396629120591416,0.03281456071367204,0.19852458292153002,0.013015904106265982,4.6560030749790004e-05,0.008107061408348815,-0.0057480795550775,0.031085216620708084,-0.02011119953162023,0.00030475839630689076,0.006953878944509111,-0.00870551292706624,0.09611570890579017,-0.031715707361508305,3.75863559735729e-05,0.009153289514802373,-0.007899625113450824,0.0826237472749416,-0.02623262001628396,3.194355910889064e-05,0.0019765349182492512,0.005800863832677062,0.015138530566752692,-0.0004815644580000775,0.0001234331194676671,0.015761800302894598,0.0911671637301112,0.5585987567613164,0.03398570779544767,3.7699088960305417e-05,0.04817109553294491,-0.02436189195397072,0.08232460706087612,0.014407371177130129,6.560829151385181e-05,0.008398924912167337,-0.0037503782887675107,0.011836477524565146,-0.013224516799458937,0.00014487758355142746,0.0034510334851208056,-0.03748157423588319,0.03706119479518572,-0.004573305607005877,0.0005780613972211672,0.002157989741544006,-0.01908188531872543,0.06899658569654049,0.019259424250386938,0.00011640715906664108,0.012575421770325392,-0.04699218821616251,0.16782564615970505,0.03746736750852794,0.0017971590547575958,0.0025742360659151524,0.020751071167997615,0.22122163154439206,-0.010577502527195663,2.412098975188917e-05,0.01961034461240669,-0.0034404983825422793,0.010132305548805572,-0.009547131800559678,0.0011101568677057698,0.0025586499075769082,0.013662036029725443,0.0912691437151696,-0.00614526856866982,9.9682080462349e-05,0.00028786784396872436,-0.018360131442579985,0.02643485781531159,-0.01987884521915562,0.00016392462299201003,0.010294335543389717,0.03836095966112866,0.057530727924022994,0.0379105814650958,0.0003827308834917154,0.002982350703198649,-4.652334885320785e-05,0.00015602747216696166,0.0011992876682980819,0.002311107981183525,0.019199680146664844,0.04404345814271384,0.14868167316280084,0.05335025500299243,9.504173190410365e-05,0.0070011130487404195,0.03883656320820447,0.052811529840338337,0.01876852646853136,0.001828054899314851,0.006143893649347514,0.004596715841122535,0.014765198356704574,-0.0010841077150637842,0.00012334581198196001,0.011835291546434323,0.02944211746418686,0.08459435270341757,0.023482049698471497,0.00014108733998766,0.0058415801730421135,-0.016372121883525586,0.07782817225022859,0.02243558897274406,5.134309713074219e-05,0.03251508993392423,0.004658861052490207,0.016848275960144432,-0.006627062047815377,0.002620851105813885,0.019528024674456138,0.01778483016479851,0.08296430105690022,-0.04903389821987304,0.00010663481852970499,0.00010913277803580403,0.012298853509986305,0.06734295428431587,-0.03612864462248476,0.00013244429272761234,0.022898477676864624,-0.000706981131994548,0.0042960147274594945,-0.011129306704212293,7.783783729204308e-05,0.003358234289307806,-0.032350688483793334,0.1571473332483452,-0.025678921739864483,5.173970009820029e-05,0.0012624316543309083,0.03542312804290601,0.07515147969817605,0.01975726018121476,0.000229815209203346,0.061462678046852307,-0.010646651232553468,0.043405522556242845,0.007605912512964203,6.099333976736983e-05,0.0038976555181467927,0.005829619039059326,0.055052226566642146,-0.0006201713628306723,2.7320998774527255e-05,0.008930286949603681,0.007036514469087872,0.024204534745115525,0.0026581088772666293,0.0001016178051804208,0.003639991075491981,-0.005486929177216071,0.02510750367636325,-0.02843968794782889,0.00034447189209048796,0.0022889717675226083,0.03356047010437345,0.15172902427541365,-0.07550302234488833,0.00012668674173435746,0.029587149548133206,-0.0011604846321678368 +2019-10-31,0.02349820281494418,0.15474209575692854,0.016585680657853586,0.000160587877254988,0.013291456391900306,-0.009060196710442718,0.04077628073916441,-0.05297956901946772,5.3313911029852566e-05,0.005291036328687951,-0.018162620659212682,0.0510466368124418,-0.0021763182467353062,0.00016459194709963086,0.00971401422080597,-0.005344162943437638,0.004719943513000623,-0.009516021209458653,0.00038212965872756657,0.00935591934142599,-0.011937603328200302,0.02584384491096231,0.0008422946715967348,0.00024168950367472368,0.014573370158625958,0.03471463301665789,0.08436884924916666,0.16728112051268845,8.984154104657726e-05,0.00148258847658791,-0.03386475674240085,0.14765131739748988,-0.039882882872173696,6.729774144664638e-05,0.02549462882444108,0.026824637702700074,0.28924171533161963,0.029809763285572607,3.18032535104954e-05,0.014338290240152037,0.01822634136731517,0.01682098483525901,0.035104106905682185,0.0008355892948961488,0.006604934921651527,0.02040987992612996,0.05710827157555761,0.013628886583449427,0.00012496929505230697,0.012021915581052992,-0.0033227019065149204,0.0028703569453860387,6.829377777623322e-05,0.0005658220030370006,0.00852005171976952,0.004892235212269872,0.0668301049297291,-0.12740433354573596,2.1815138550772584e-05,0.0023046573383193234,-0.004142435986035256,0.01294857759603279,-0.03073108276972082,9.503526281253688e-05,0.022173865331596092,-0.0062003964797703115,0.03556669070806469,-0.09940324780884452,4.907245902847382e-05,0.0027364994931029112,0.0313150174703325,0.025651429703532992,0.022116956895803775,0.0023810255462427283,0.01155226810536723,0.08821359226136147,0.5641423885355532,0.13652413617014636,0.00012867639426253398,0.007001487643909688,0.02485801128191285,0.13820745778890084,0.03369153137075961,0.0002785115011832203,0.02081857570435957,0.006497099447923559,0.039791129114908265,-0.0999599675547347,4.599326148519141e-05,0.003002070873106529,0.03117760392829705,0.17741861463045724,0.009727188244714536,0.0002896212071084155,0.015994222952462236,-0.07442904142497993,0.9268699643018423,0.09268558018742558,3.3323748502244675e-05,0.0023443379716355764,-0.0037550642829431414,0.04252246330998587,-0.0012873318428945177,2.95039844223095e-05,0.00903033963176748,-0.003550201544355683,0.01093322373373346,-0.029350321335720214,0.00010459899912971797,0.010342835005925446,-0.002317681354689051,0.015244650482941297,-0.020700526990730515,3.511790756602739e-05,0.009457922535005705,0.002177016196225941,0.007776743623547138,-0.03144588576930528,6.206421412208492e-05,0.001685498557667483,0.004147694122112106,0.014074423742155746,0.004797380788919037,0.00013474873429287983,0.0036622068831059385,-0.01682311382197567,0.017909239148025884,-0.0012406740099419214,0.0005369140996287857,0.025489438743017106,-0.004562357446048391,0.016489897850077446,0.00291489088245757,0.0001164547886658479,0.0018243177997682271,-0.04253109877592838,0.1542370788225111,-0.02270056198141898,0.0017698521431942298,0.0012150917150469706,0.07255135703072108,0.604347178137189,0.12630672329689888,3.0870327490197145e-05,0.0023394109912246667,-0.024740566570129387,0.07001702684432014,0.008283248639717793,0.0011552533737502408,0.0317556045866666,-0.00637443083123553,0.04962923822961625,-0.01581083923647652,8.553216144762902e-05,0.022923178275797935,0.009189335412236444,0.014348067474656875,-0.1651996470845531,0.00015115972026697797,0.01132852895765881,-0.012823445119713532,0.020810943336526114,-0.032338838906963194,0.00035368518166129886,0.009210281165276024,0.004534861665920165,0.016685052910161532,-0.055788326755739956,0.002106622879304568,0.00590331046469764,-0.013836004187161152,0.056688308672916604,-0.019047437695116534,7.830825662990222e-05,0.004419376997142226,0.037778525155212205,0.05136865632542359,0.009617710548674867,0.0018282011819085867,0.007306177396738402,0.014470313239618181,0.046041785042963676,-0.007281098072369315,0.00012452077528826074,0.007794513330058007,0.006936584484628678,0.018106626046477454,-0.08294593623694438,0.0001552989516414793,0.022072332804310493,0.031363506536201465,0.12870788650406667,-0.003756710611697527,5.947485314334496e-05,0.017169974345498988,0.019413619062676152,0.06605650301882106,-0.04364289727528651,0.002785537328765257,0.0013923510632301793,-0.04882326265563207,0.25377164962909965,0.05509045804778471,9.570271666575848e-05,0.017861148363041004,-0.00521408526066484,0.025043082656532423,-0.08249814782185531,0.00015099102242995867,0.011695091384663008,0.044811545485181445,0.26398062351169915,0.04575463576178402,8.029094524340085e-05,0.007843101186649796,0.00417259112396626,0.02111304413178199,-0.00786194701844601,4.9670938900545964e-05,0.008893366522292641,0.04850530517195272,0.08444183165892952,0.045363390632160966,0.0002800663878954989,0.03402593640691827,-0.022205878839314377,0.09004953477085618,0.0005746400351985434,6.131981957252207e-05,0.0001105580274567248,-0.025818951353433522,0.23359944186036885,0.017491339465604595,2.8516622330398958e-05,0.008934119625522208,0.006860783434708011,0.019188251255031947,0.0032033876629665877,0.00012498194492199495,0.014525250048545135,0.01880967728350251,0.06607984063585404,-0.047754776903117226,0.0004486837370668239,0.008289842051994973,-0.030805900375394175,0.14195222903134408,0.032934287260851,0.0001242978126328297,0.00484786749650688,0.003943682045254244 +2019-11-01,0.02780667413010048,0.2292986426527688,0.03422949602714778,0.0001282431412709178,0.005093275115683402,0.0006311085345826043,0.002344128464155276,-0.02859336609834946,6.460009719205147e-05,0.010770715493912087,0.04717988615160807,0.14910356619760193,0.0562155941265064,0.00014637471490871562,0.010743214497668184,-0.01425404218956983,0.012951901778383844,-0.05515222367707317,0.00037142604503683234,0.0019108407048615134,-0.04179639124768416,0.09643228408680773,0.04683775819898271,0.00022678488435317901,0.0016178409943913296,-0.008333038612906496,0.022347999455464288,-0.01756915278845085,8.141632252508945e-05,0.0019980850817694386,-0.0046644741477185805,0.016431931488020187,-0.02770189272391327,8.329212267752939e-05,0.0016057993751414073,-0.004752633489462657,0.037136165671870495,-0.04165534601515747,4.388699830349954e-05,0.00581206376723646,0.008889444011723974,0.007688276380106154,-0.027875600956193708,0.000891641756063693,0.005682825962650188,0.02242273690976511,0.051191270379339564,-0.026489080435676462,0.00015316325961288698,0.009817461606512957,0.0012792011819735187,0.0009116334660812876,-0.02246556995652863,0.0006858718056035271,0.007676924447928276,0.004112285922725288,0.060380223880966866,-0.054725939249612374,2.029604296080543e-05,0.0020448757712719433,0.012956622264938962,0.03493039834731865,-0.005043759223874768,0.000110189267769173,0.0031407011140000603,0.009235643729487547,0.05096355527403977,0.04014247349297428,5.101163839827321e-05,0.0036373878231203793,0.004947385424605086,0.0047638726491165285,-0.0007206128645408133,0.0020255295095071416,0.014437325046332748,0.019303169531123213,0.12829948083561962,-0.00013114337547959293,0.00012381003138109504,0.02171168891750594,-0.007648321809736856,0.04026350036051887,-0.016480300412308947,0.0002941459389104388,0.023481545130177375,0.024693883783801704,0.13795934419560238,-0.007050510287615696,5.041958127955065e-05,0.005329232782203336,0.04236912157529242,0.22839671997660427,0.012979130542258485,0.0003057358771255998,0.002481804316024987,-0.07890946143265902,0.9945309160288824,0.10315059371017926,3.292615530913075e-05,0.023382152450653223,0.008729823179137475,0.09325051200113325,-0.045911303437911735,3.127778076997607e-05,0.005634045750572141,0.00926845443448038,0.025490196619210686,-0.0568948451065528,0.00011712696489680596,0.0012298634442992741,0.01780084016333316,0.142682246251027,-0.03328552609386334,2.881794040197075e-05,0.017876106324966487,-0.00756915202010689,0.02495218750364352,0.0014875965442148072,6.72536694172034e-05,0.001071268156738451,0.009054479591465213,0.03082756975582264,-0.005247419637432508,0.00013429900672816815,0.0018606654860685993,0.008672844734461407,0.008008334832270482,-0.03158937872606124,0.0006190060731801365,0.0034524441109366607,0.007668675494859959,0.026165095291575603,-0.03176726182346006,0.00012336275196579835,0.02057560369561735,0.03877257970644028,0.13652382131253654,-0.007779563102796896,0.001822784959636909,0.02729448229614096,0.04229111870848876,0.4307339408050265,0.005949659614975669,2.524772634412976e-05,0.012315966917520075,-0.009204684866780187,0.025408640202092065,-0.1335408741410566,0.0011844010147770646,0.012455513946530236,0.007988370016808006,0.0603600260811896,-0.02114559415091092,8.8132156590584e-05,0.014742226718128871,-0.01249743102056636,0.017286517218768355,0.020196554932617225,0.00017063127326200853,0.0022066446783016716,0.008165302698339132,0.012293601784282937,-0.0107306659181598,0.00038123877179001286,0.013219743686044066,0.020970863181248633,0.08446336918756299,0.023055704752459643,0.0019244128440060876,0.00144607388312303,0.004095608336619701,0.015095349801383233,-0.030792335133873392,8.704936500827878e-05,0.012336824561196252,0.008040161970393289,0.010006099101545821,-0.013561725361303805,0.001997455854020025,0.021240914323302662,-0.04226350584780653,0.11957861558763525,0.026979062591866835,0.00014003223977028276,0.01522083235642317,0.01727213556582099,0.03697871875210213,-0.02271814125507401,0.00018934531099637597,0.0023177343938506076,0.0252372507032439,0.10157286853285546,-0.04546184676951251,6.064266093170762e-05,0.001924291446941679,-0.03156745478190901,0.11077759187164837,-0.03000186074003627,0.002700882587266935,0.0170626487164281,-0.009631550326533385,0.04854308242427473,-0.059831994814814514,9.869824240560452e-05,0.01132522996213686,0.03297793065888518,0.16437630176216506,0.09759377034438724,0.00014549396509060147,0.020433296443556927,0.03616641937929008,0.1999068717737198,0.050310591339588706,8.557097680107526e-05,0.012377063089428752,0.011800769117577783,0.0540434577286839,-0.029730425467875486,5.488006040704501e-05,0.006759799295384888,-0.023426851880952237,0.04556038624590419,0.0044543550693869885,0.00025070092047882133,0.014547405609298356,-0.003611418339849075,0.013129064682733518,6.627622277047713e-05,6.840035994246267e-05,0.013832533076402819,-0.04028428473132031,0.4484401760569663,0.09291825763842604,2.3177277895492962e-05,0.00939365428050863,-0.026351866888693887,0.08567551602076587,0.033887484081615404,0.00010751365438689432,0.004222091918985111,-0.0368889217139248,0.17559552256898026,0.07670362866804256,0.0003311391226556371,0.01109329856577463,0.0566565272051301,0.2654607281145949,0.0790792408247477,0.00012224228671489933,0.009347115641730207,0.003588712115956362 +2019-11-04,-0.023352698222578305,0.15332563177073832,-0.01666519705794511,0.00016106785987760416,0.002611889074565642,0.02190200100311734,0.06608900927899504,0.014180832262581195,7.95179324755198e-05,0.021207783772227328,-0.03300533420626237,0.11585875538404658,0.03542352761520818,0.0001317809033951961,0.027501477014446152,-0.0008566340537303597,0.0008998145298786611,-0.038810460511789185,0.0003212996034044431,0.005246835947175404,-0.007433623502734409,0.01280994233797339,-0.06508172341969165,0.0003036345297988654,0.012670643418653111,0.0060794668364648275,0.016661068436497638,-0.08162040965077992,7.967267251760246e-05,0.004147645081040861,-0.03900347490524657,0.14329348740359027,-0.004408255060041196,7.986687718840925e-05,0.014143052401140952,-0.0037354139602026634,0.034138245812886096,0.00011546358212916596,3.752287881912107e-05,7.898951923296577e-05,0.020892522606226795,0.01585865171808097,-0.012906974340436547,0.0010159431489386124,0.008008057441393306,0.0019804501141010493,0.00421740298050581,-0.06475598089180319,0.00016420285091169843,0.008332773172771321,0.026233192827976728,0.01726950800670546,0.008286548898922086,0.0007424984386438439,0.01019261555752881,-0.021972777347081574,0.28756739149379423,0.09245659634102614,2.277026612533649e-05,0.004692076256866192,0.06182459865198074,0.16905327048864457,0.06237278926772428,0.00010863975226055997,0.03186109531016625,0.029825996748422113,0.16586097487676885,0.1989404308789979,5.0618884562021973e-05,0.008131377204166835,0.04178760702834842,0.031070121694449407,0.039964454270127646,0.0026231765435729567,0.005391024318931603,0.029472354366537067,0.20523255743042665,-0.009108742208714526,0.00011817365856630211,0.011901273283965487,0.025608533427892054,0.130913720270195,0.015417772425004205,0.0003029059294636356,0.05175245883137865,-0.018515681385522585,0.11472578166304773,-0.005723720741757667,4.546106750976066e-05,0.010374900836485495,0.04160246760066762,0.23590669830592315,0.011274321305715219,0.0002906468537841252,0.006139959538465126,-0.029939388111025034,0.366176201288332,-0.03603170311344622,3.3929935685593635e-05,0.00425484993999643,0.0216392168547561,0.18337247499236486,0.07074521119199044,3.942657954827894e-05,0.0009146468575540439,0.04458996587726868,0.13044706302507186,0.033975634910869704,0.00011010970276176531,0.01481954718193521,-0.014086139689456741,0.08247720468559892,0.002772019128089117,3.9450311208948175e-05,0.013699537166971596,-0.020129370769386562,0.0568253497330571,0.03995763432615246,7.853540078145737e-05,0.016608792755754605,-0.006786526456682534,0.023921629405519108,0.006297978861203416,0.0001297195352668516,0.0028133357931152563,0.01099186855899329,0.008889159695469755,-0.010039244396665103,0.0007067834627509251,0.006020188704717756,-0.014470086596931959,0.043858841202872034,-0.030078877686011772,0.00013886729830449532,0.0023394459366607957,-0.04208527347112918,0.1265274710716899,0.024061310931781738,0.002134835915031214,0.010043443423308507,0.019998318155454078,0.2153891010517884,-0.06725409776034622,2.3875470840995222e-05,0.004362667143624941,-0.08370910756512312,0.28390972568019046,0.09902019393768895,0.0009639704289854987,0.021449117992602133,0.0192535759011212,0.14102787529220434,0.0023615234334207723,9.091427539803605e-05,0.020570991300036177,0.0029919086314483313,0.0037029351699463618,-0.0012471374222267372,0.00019069864375066115,0.004343983132225771,0.014318095178511776,0.018846065479614035,0.0014173648356103656,0.0004360823035431505,0.0001544703829874463,0.003140058132864992,0.014379272829721065,0.00021953660117349908,0.0016925874076272067,0.018557857064206738,-0.005961926022378909,0.02511303547777057,-0.04660702240312334,7.61689104077452e-05,0.024761369361869057,0.0033231004424279717,0.005692025807969991,-0.015851842480593004,0.001451288652365785,0.0010654811463006078,-0.0014995482235288168,0.00475874105046451,-0.01567967268299722,0.00012484880795632592,0.01998395506859022,0.012142344433457755,0.030596111391066664,-0.026847033208408866,0.00016087801192136267,0.01807406218139755,0.004398081628213113,0.01897759391243349,-0.017858504083489636,5.6563472226091835e-05,0.010407112008310744,0.003876909612372055,0.011472901997017788,0.0013404139931529654,0.003202804647156746,0.0006912087997606566,-0.006317937050750293,0.030350366832466676,-0.055336522840718605,0.00010355043331853269,0.011434368227870582,0.026510648314555314,0.1691108339226369,0.02468009051976817,0.00011368671083530603,0.001182883372414054,0.06437468212251025,0.48160677114694916,0.12627117842805366,6.322243404279345e-05,0.03286667372284911,0.1011707574496972,0.45782010044264887,0.21326155699655383,5.554021288751281e-05,0.009703754951114116,-0.0011596453037440472,0.0021536435876972166,-0.013666669718984266,0.0002625310861190503,0.04581959644277743,-0.020257927776993978,0.08179530147514133,0.008194882944940925,6.158586376002885e-05,0.012339153934761458,0.009294397605233463,0.09176659192950183,-0.00901594650851392,2.613171600627217e-05,0.010209777969086934,0.0007061134842441379,0.0018075490870860932,-0.008914778508187862,0.00013655052350036,0.007019304773143591,0.016414727340356216,0.06986464737423034,0.035241530856028824,0.00037034302765557464,0.01107919577431703,-0.055561849873624905,0.24155820321345414,0.13215186223066977,0.00013174274316840324,0.0020558823460388297,0.005244635682231528 +2019-11-05,-0.042794188784141034,0.23460204182755778,-0.031094627827505415,0.00019290327215760596,0.004178029391157296,0.0007278034623985152,0.0022177348276288824,-0.003421206659094418,7.874355669882865e-05,0.011959572440710544,0.019641053713103818,0.0633643971945818,-0.04086825502491059,0.0001433892787280369,0.0071159531199967065,-0.026591439497901756,0.020450642905533233,-0.0984735805957673,0.00043883649621234043,0.007275249121476761,0.017814614946377316,0.044061611373288026,0.00904180605805045,0.00021155039296556617,0.013779553861870932,0.01200022440636444,0.028382086180731538,0.02701564461209299,9.231914908620974e-05,0.0077748853454216145,-0.03945801650551126,0.1265704769886388,0.03394638120741708,9.147295069050785e-05,0.010895947827517604,-0.01769949380200401,0.14779575967492525,-0.0067503256751135126,4.106742628373253e-05,0.0013585850488308847,0.017444235826410984,0.01377672481696424,0.01964671361938163,0.0009764516691946442,0.0064340714544057105,-0.06319959601349122,0.14250882123365777,0.10345672419582917,0.00015507237586098407,0.00870142216516657,0.014237291939029282,0.01019122455809719,-0.0071190020768751,0.0006828501003258889,0.004312678775232573,-0.004105519203149486,0.053837508110688645,-0.0036199730082473775,2.2725106493115172e-05,0.0029491439497080357,-0.07675867632233682,0.2283749753310151,0.10063507080455396,9.984584603275202e-05,0.0022777010670179012,0.02404928822188372,0.12570248045132726,0.03337944947621902,5.385427677463825e-05,0.008012629697262238,0.006671096309524098,0.005801004316973778,-0.16277538961022536,0.0022429365828710718,0.010736611259463945,0.06561341051208773,0.46335440614072027,0.05122602555688252,0.00011652830332277746,1.559118031192958e-05,0.02875355470713892,0.1535597397998575,-0.0030923356454781578,0.0002899495286661532,0.012384947337948413,0.00027585809403792586,0.001849724763450661,-0.0054521396013214405,4.2008732344440565e-05,0.015023879840799732,-0.042934851530826504,0.20102523196404226,0.05710401571203533,0.0003520028671837538,0.02596373049501626,-0.03845649964807515,0.44112590937018137,-0.08378047247289623,3.617740538318023e-05,0.01821003080379599,0.007770224409586184,0.0778062700928934,0.017608205912935538,3.336573332249141e-05,0.01464649697915877,0.004789556986832617,0.014641679833063973,-0.024074619284026325,0.00010537247835434705,0.02166835961260604,0.04101102953633914,0.29031929806973855,-0.09887692230480229,3.263000518757457e-05,0.01246746593032999,-0.026495775250445757,0.07739363524860883,0.05643724737978152,7.590122185254551e-05,0.012315556974834961,0.008661657590370728,0.03826529186517048,0.009476419024473272,0.00010350100736058005,0.006744062894650348,0.029087905631285712,0.025513809769158246,0.014806708715995586,0.0006516474510882039,0.022577238405805555,-0.0033114470267076516,0.012047238448331731,-0.004159543816891223,0.00011569545936455216,0.0012710628790934318,-0.00897880847966303,0.031104724109235392,-0.0092034964429087,0.0018527274203620759,0.008078003857356587,-0.02467469279192656,0.20513769208077337,0.07306613520779742,3.0930609954285895e-05,0.0037573688231428712,-0.04915226139502341,0.15080294278173334,-0.007505605663366711,0.0010656263648748025,0.021503562614450276,-0.002247069037684665,0.01649644314116544,-0.07263099056360342,9.070928514652646e-05,0.009593613166784724,0.015873976977269194,0.02075536195889758,-0.09759997771252783,0.00018050981487079668,0.006290834801234894,0.01016462394849046,0.011843184762276094,-0.002865923983080773,0.0004926366578602753,0.007289226351308728,-0.0036829105786743755,0.014768066311145162,-0.006850255437602402,0.0019329378116126695,0.01427095882531789,-0.0030062362085502914,0.013466909867965084,-0.020800660518946315,7.162184729558e-05,0.018456049431767596,0.05531649236119007,0.0792733846646972,0.03904400213448167,0.0017346202980260794,0.0060405841493333615,-0.02300181778103487,0.06883312052663247,0.011925655245533944,0.00013239779021805494,0.029062216950944294,0.028248656156722826,0.08609017833348667,-0.003104316754064876,0.00013301620744000976,0.021722553289312555,0.03768102377619872,0.2039570713142945,0.017322716061067413,4.5091829036944155e-05,0.001305934420585375,-0.04873876937780381,0.16072165184166187,-0.01743543033328799,0.002874208239173471,0.032606785407816974,0.01718590216184934,0.09063228370530609,0.0009401793395176939,9.432568820153699e-05,0.024036950245561434,-0.044721530628203665,0.25155918671734295,0.16273982069759177,0.0001289250360715248,0.003825555520920896,0.0107084728039216,0.0519034710535931,-0.001539416165483212,9.758427377554885e-05,0.01617856980907457,-0.0068614689735319555,0.027383954696630956,-0.03935899060905172,6.29750224690269e-05,0.00622862710387333,-0.028876282854590186,0.043663116606439754,0.006426447850702725,0.00032244522469629746,0.009306567574708812,3.0572592690742315e-05,0.00013223496187169146,-0.017311287783835016,5.7491064743488506e-05,6.60272742269097e-05,-0.016300891652686035,0.16425112266653077,0.014423518596258587,2.5605561249422066e-05,0.004218622494383967,0.004857599841039171,0.016115876176581962,-0.017872667459966313,0.00010536024656759763,0.0033404898158078296,-0.00232280457109338,0.009639077965026674,-0.00016544705758700972,0.00037984389433759746,0.00893271132490685,-0.023691202100637757,0.10454351607944519,0.02335380384566724,0.00012979614413759382,0.023788377086741048,-0.0031991869311149114 +2019-11-06,0.002585690765741262,0.01668961352621068,-0.03716888873532115,0.00016383884900713751,0.010705957027963453,-0.008543685109256653,0.02772323463763082,0.005263987405998505,7.394551863238825e-05,0.02458583515106025,0.014861582007262477,0.04496288267149935,0.0014461560007086893,0.00015290021628557387,0.030869520390607974,0.012624681118656795,0.011574880696239964,0.0067745496163493174,0.00036810502852277217,0.009131323804193181,0.01824960569703856,0.03808843122704505,-0.1412873670478328,0.0002507022157366176,0.007850984031497983,-0.00874488806283853,0.02346422801467199,-0.0001124399519712079,8.137569754099552e-05,0.017361708171376618,-0.013486128404840727,0.05746399097201639,-0.014584374742541192,6.886227405210759e-05,0.01476836799927753,-0.04138928789661183,0.34399838257977056,0.029546681163846924,4.126008974853072e-05,0.012453764108913254,0.01570811977587059,0.01214911549858304,0.008756565822525287,0.0009970669709559094,0.0020442162189189704,0.026931475671523458,0.06244228495368479,0.004185314568186164,0.00015081455262588213,0.0015758264635261604,-0.003568276280778476,0.0026000946864564497,0.01306010558605965,0.0006708009478460837,0.00439626470278414,0.007956822742730614,0.11406092482865864,0.014130226521935749,2.0788616327967396e-05,0.0010433551301328354,0.0007495023898030814,0.0019522948009563737,-0.044661307476242536,0.00011404563352687598,0.012395668977145205,-0.012559238628761198,0.06751280006423796,0.010372846533367654,5.236474705217991e-05,0.003696464532140793,0.013317936226288622,0.009526673481675829,-0.01806377121694886,0.0027265823751969373,0.009509195886652696,0.004967761336043605,0.03871142776119569,-0.0040868008625436075,0.00010560236427373304,0.034166841105066986,-0.05652977356030068,0.3384566424334905,-0.0026923294054150178,0.00025863210581892867,0.034256152867580505,-0.04887393455677043,0.3400792608846589,0.037049905286626224,4.048164116188673e-05,0.0046275870633238824,0.00561811939987784,0.03130427308192395,-0.010251216654288969,0.00029578363976891963,0.013747951022543423,0.0035293370777492424,0.03494174876519241,0.007781359199247424,4.1915893976641054e-05,0.004385827190890259,-0.013772346724530534,0.1482874780604112,0.01489290615461159,3.103024307467865e-05,0.003308822254341423,-0.019758892036523375,0.05546813854846085,0.017624590843745146,0.00011474710896793536,0.03593408238314793,0.04191067807492828,0.2681394592737326,-0.029693659683360536,3.610408427053016e-05,0.016917976652982544,-0.003229770829184096,0.010650334478065474,-0.10975253814831315,6.723351900711894e-05,0.0005243657232026438,-0.006315708885648712,0.022312447007799052,-0.01765033907316175,0.0001294265864792869,0.006092588695051602,-0.04253275579064021,0.040460768279778694,0.023587502218106706,0.0006008484689892161,0.013223795738295789,0.0038934386449495555,0.014627461007580457,-0.00047972591982488755,0.00011203414269555067,0.00988265283676341,-0.039436255305465705,0.13608188347222194,-0.010992247172444273,0.001860006802813937,0.0012696351011661842,0.023136267475984948,0.20349218721917162,0.00046791003599997463,2.9236659644283782e-05,0.009008316001795103,0.0009594255743873483,0.0025933678050988236,-0.013463469494440689,0.0012095350155028428,0.0371055550742667,-0.008797356534148267,0.07576745835429363,0.0034437885238202876,7.732058255538335e-05,0.0046732044884835785,0.0008212791177731137,0.0011341817150414745,-0.013322323633729741,0.00017090451069612047,0.0024327912360492454,-0.00019888744948054262,0.0003301288500245981,-0.02125149787064412,0.00034580224875896447,0.0131216719606333,0.004628979942389625,0.018323422957100242,-0.043514298017073974,0.00195807369752496,0.006963219485679222,0.01571040018942562,0.07065845633821194,-0.03655375784157881,7.133677520657693e-05,0.011645120133989112,0.026690598388345588,0.04214636738301832,-0.006666266602989635,0.0015742559877371845,0.002994535186660521,-0.004868811804312683,0.017202220821035844,-0.014828203975513266,0.00011213843896211498,0.007238486256768478,0.018108037775385444,0.04689232461571779,-0.0038919199851694965,0.0001565416853353927,0.008759009954826293,-0.027611544068219234,0.10945605498999136,0.04830416344702584,6.156938666576769e-05,0.009900375258598477,-0.037627655264800025,0.12558747326756334,-0.01710652459498074,0.0028397420448509287,0.033822695414876036,0.004012516948434943,0.021612652663381093,-0.011238481911889437,9.235265314698483e-05,0.02362351994310452,-0.0037975646055487303,0.018744121817871422,-0.003732582541717435,0.00014692674496925436,0.004915712184217844,-0.005598120195556821,0.031773508155902706,0.0024031433759393334,8.333467557896881e-05,0.0324578289605653,0.007140465133913961,0.02972109235709703,0.0012087489677085133,6.038222755711888e-05,0.008497419406310693,-0.10140290543287389,0.18799654636564359,0.07802801281207476,0.0002629843603321104,0.008683506293939748,0.010083249754000965,0.044318529096398024,0.011690217036377305,5.657565130846321e-05,0.012141331058047496,-0.038926864141487626,0.3755741869685537,0.05364525997298714,2.6741451032733667e-05,0.0009524305107737371,0.007078427379186983,0.021125772922562094,-0.012807582938697411,0.00011712055939785522,0.005256655399229556,0.01573682930733703,0.06451416955023831,0.02808850790998115,0.00038449446638467153,0.014203181780574753,-0.026271270480680835,0.10922376339967618,0.031328563020330866,0.00013776399722278745,0.00031955909837715177,-0.0049281488315903186 +2019-11-07,0.021855542240700264,0.12978779046320182,0.005481765178065003,0.00017807966534532795,0.013891418065923918,-0.0008249096996689058,0.002544181878370081,-0.117544327203258,7.77980626038515e-05,0.008947548270889553,-0.04712742467705437,0.15847344656041543,-0.030295198308290628,0.00013756704520424403,0.01583122765763275,-0.009751876052421492,0.009695587833096743,0.0013678751068089711,0.00033945474518879673,0.014250142490210043,-0.017541523980739455,0.03860399421544946,-0.050594573752167624,0.0002377567480161638,0.0047430671154413614,0.0025170705926214755,0.007298426739450441,-0.0017685587929518868,7.530310475369488e-05,0.01462536097949807,0.031504505860488634,0.12171942617691725,4.6845655412218946e-05,7.594560237342498e-05,0.014601168444287205,0.01035380149309788,0.08161380736877735,0.007786386446006785,4.350456295847472e-05,0.024064492386499402,0.019079815834195872,0.020583097825226673,-0.00429854652989138,0.0007148389807616225,0.003731039921306848,-0.0219168710778388,0.05383053760052556,0.014638578978095895,0.00014236778305413498,0.019501559287625675,0.0030923761886132396,0.002414038365169432,-0.0035333995074420073,0.0006261415311539431,0.0074271959815075846,-0.0005446719973203799,0.006911815306406694,-0.046182111110181945,2.34836561443233e-05,0.0007998686980871547,0.015152194237578598,0.03727953557192258,-0.016520586054763864,0.00012074136284044518,0.021461335111948875,0.010085847155253718,0.05542685751545451,0.009478053559953991,5.1221694815357095e-05,0.005460085266807139,0.0060570717818593,0.00449255960723791,-0.01165018243688099,0.002629613041913539,0.0011538602837223048,-0.02806556452467774,0.15946153152313447,0.021316590834335226,0.0001448338112513858,0.003213133149621763,0.06305967320186824,0.2931500401216744,0.0531391382102576,0.000333096438892175,0.002601283990174989,0.03893951897153762,0.27434862197344967,0.02367472638785015,3.998054916026492e-05,0.000312718553796536,-0.04743838541443732,0.26913871607562473,-0.04154339952159823,0.0002904962499348572,0.0007155569574014376,-0.07233169368149438,0.9269469974658757,0.06256165233132564,3.238202201185147e-05,0.013859315577191084,-0.017570187667026352,0.20779408331011018,-0.06921558280523003,2.8250421498573002e-05,0.011676734208318888,0.016367637862147358,0.04381547011751265,0.0019509191868913504,0.00012033204227438545,0.015262427820515801,-0.012007149602677184,0.08235689869915618,-0.03569585460245126,3.367691600610489e-05,0.008291498711451663,-0.01881458166493224,0.05383193745068645,0.03609310883251167,7.748755150356775e-05,0.00034633251606728394,-0.004586480262706356,0.020728071491181537,-0.033265761948622075,0.0001011740713163101,0.006214933372232348,0.005841565904669589,0.005693181489788887,0.0008689562016391217,0.0005864754180390574,0.0070004184635686926,-0.03539971296057192,0.13277305927087296,0.07504654268245664,0.0001122214271709959,0.01589462186731533,0.05103397264575138,0.16981149429048673,0.006231363704928855,0.0019289077923190568,0.024223557949578645,-0.006777973774726756,0.05528683873708611,-0.015074941283620458,3.1525379365824765e-05,0.01904881626398003,-0.0021339961385680234,0.007274218560204191,0.00010037697031808935,0.0009591323810254437,0.03352430388061216,0.0039496227323378525,0.03454992517804018,-0.05922919187402127,7.612619899543762e-05,0.021949374539723784,-0.010184296016417922,0.015247626544675978,-0.025454730610884956,0.0001576428050285051,0.007141196988925691,-0.006119335735267704,0.008100246522931377,-0.0031657608939064507,0.0004336206525621827,0.00832683722759858,-0.028066543564816977,0.12146238840632706,-0.08516614057246558,0.0017910077139135939,0.00010050110690580736,0.013091010326867224,0.05573695688274969,-0.03433929781141434,7.53564242297688e-05,0.020114907431995063,-0.011214569033727136,0.015543526495690048,0.003010921321752937,0.0017935365135682824,0.016166995717389273,0.04997884090707889,0.18895930910844683,0.04613907779051608,0.00010479339827611516,0.022757295201550214,0.0017308425495464008,0.004202572584951485,-0.025397159265262738,0.0001669562632511342,0.008166969904512711,-0.015540265400291443,0.06683534133967006,0.021890511430717068,5.675004184980312e-05,0.015616468378439248,0.03498944195053817,0.12133034777516483,0.024482032173879613,0.0027332894902103856,0.035739030784142534,0.02526337364917256,0.13744609384481787,0.01204601909680192,9.143227253100998e-05,0.014750983268243843,0.02592332678326491,0.14156120892942256,0.026831677986333104,0.00013280280743275475,0.011091928248937575,0.010154465004261823,0.06884074605388818,-0.003965741737195808,6.976862719322153e-05,0.007233448654835004,0.01858984339245217,0.0818657086880968,0.005389739074163579,5.707173826467895e-05,0.0020656741055403794,0.028565081335003822,0.05856589983034043,-0.03461493511572421,0.00023780448365686704,0.02421668821365668,0.017080589076911918,0.06234662641192089,-0.014622665316843505,6.81246465096539e-05,0.007082302436533688,0.002416375232535184,0.02758591013405167,-0.0754242884420813,2.259999504934655e-05,0.002783935617333367,-0.0056437463199636405,0.017900562322830098,-0.17543602046413873,0.00011020715089274257,0.002630023029484994,0.005258184516394229,0.023687651723720775,0.002506918347266823,0.00034989826084389956,0.010528974879332069,0.016569941053145455,0.06572850431033729,-0.00914874402885791,0.00014439062945323296,0.0180069057344004,0.002547244665774844 +2019-11-08,0.0419351247276537,0.2833321279893753,0.024000294583366267,0.00015651958926296593,0.0011307008159953166,0.02579446403546553,0.08504323096318511,-0.04435189621655859,7.277752522178444e-05,0.016415340995128248,-0.025074694835270864,0.06428912349756138,0.012036971417833263,0.00018042443585167446,0.014900979462157272,0.006889871092038482,0.007988720873367423,-0.07192512941623848,0.0002910728549329478,0.01713627444182601,0.013190461312835817,0.02432184445187748,-0.016141421297711407,0.00028376658267829214,0.0072654504664345235,-0.0070397345522132575,0.015557899023807066,-0.003607858608199396,9.879889216497692e-05,0.004809602271217903,0.030904512879504673,0.13000723217904972,-0.014643105929375209,6.975000537540652e-05,0.011806761391252462,-0.006063930458648262,0.05011248883000757,-0.030719723836207278,4.1496059163241435e-05,0.005131297780504648,0.013615938553546071,0.01374000545234226,-0.016017984849324277,0.0007641972392458172,0.0014996247782127607,0.009005818881858288,0.021911043280109704,-0.0004445939603448147,0.00014372159828017478,0.02183731807919128,0.01261814659188472,0.009784880155421598,-0.06063097030797358,0.0006303248308860999,0.006729890336363675,-0.01256441071880925,0.14578784497147032,-0.01027863470058353,2.5682872618845298e-05,0.005600215542184617,-0.0030105287605233415,0.00909564415476679,0.0009181535191620856,9.832418541262251e-05,0.026048862407847106,-0.006239632721686985,0.035414359387196406,-0.0013510787839141085,4.959540659112452e-05,0.00038434322654019854,-0.005246112052618156,0.004161890966365692,0.0014733155458612672,0.0024584978722706364,0.0005225811957840604,0.034619283294589145,0.22041213514744534,-0.053994828973513445,0.00012925122824903633,0.04114424925037921,0.04431446350424265,0.24626009202343863,0.031775330288572594,0.0002786504125362972,0.016148825262599375,-0.0035658565061069004,0.02323196618762862,0.0003007849687287703,4.323533732999247e-05,0.01914968641672719,0.002285732112384164,0.014830480797407548,-0.08044401360770662,0.00025401356301694473,0.041574487382322535,0.0032091409207139166,0.04123291670910563,-0.014567343043848213,3.229795037341544e-05,0.02111420625128989,-0.013275346679950874,0.1446530606916055,-0.027954192652531715,3.066196285157665e-05,0.0023648656804634905,0.00699027811481876,0.021691155082003234,-1.8861497411170065e-05,0.00010380888619208325,0.005361399732096022,0.030258362109124515,0.1879887427660572,-0.06004187507382132,3.717970577011634e-05,0.0016387442187333757,-0.02582825559867587,0.07043517871968374,-0.10535254190144344,8.129855695744152e-05,0.01277726264361705,-0.0012005657409582858,0.0039360534066033015,-0.05134845471522776,0.00013946767445015924,0.005150147612006579,0.05404115997638518,0.047478656303387025,-0.10297834857363986,0.0006505816421450688,0.009025308421747553,0.012990944498595204,0.05499070557598627,0.0029618764990921066,9.943458015234372e-05,0.015246061214767598,-0.05495579122820884,0.16104267843184938,0.049854190921344556,0.0021902397403710627,0.027870691496260147,-0.005238451518263803,0.041858909586974885,0.014497078701221668,3.218082793603052e-05,0.007098507674785535,0.04706931347316573,0.13801289014693316,0.030720037920065554,0.0011150375249095311,0.016987917347942482,0.020878223000854262,0.14584913483369985,-0.002797392987946689,9.532686659844657e-05,0.009141903246569686,-0.013208515457172101,0.02645150565854022,0.014404682077123811,0.00011785526732359054,0.006916335969108448,-0.055334416509229704,0.07829970258350338,0.10673186593152544,0.00040563847016968535,0.0009672670689320853,0.04627333980066572,0.16783037889286687,-0.0074128889467310055,0.0021370299668516547,0.007683242615477931,-0.034377626116037,0.11720241007729017,0.029036791313365323,9.410868653375834e-05,0.001828041558265665,0.004115811497297136,0.005106136710194731,-0.010306651827729722,0.0020037347475542785,0.01248771133473851,0.01198523457570053,0.04329985579542398,-0.037672033620780386,0.00010966704083943149,0.007023627049839164,-0.0014217017034765778,0.004087457739414893,0.002020585686324534,0.00014099885450583592,0.013759618693146602,-0.007771886875850727,0.03420778398535737,-0.024154070411264446,5.545177527556256e-05,0.02559744109780253,0.00808463504351924,0.027067509791348383,-0.013098195322510248,0.002830936807943676,0.014560965798185036,0.03186906013299625,0.14846073871102836,0.019196780509628347,0.00010678203893558094,0.014108191503537908,0.0009283183435448159,0.004540941262249667,-0.016326869762640476,0.00014825584767512345,0.0017271557897527235,0.03243410919702322,0.19514417407496343,0.010028762817023047,7.861312908142567e-05,0.004005832087710925,0.01589670640694389,0.07328504265010127,-0.004113227484055746,5.4517910629466466e-05,0.02600228473937084,0.009495876904749019,0.017844357212766195,-0.059029819043553367,0.00025945590649035957,0.026593440285037632,-0.004996452297552226,0.020130789203375687,-0.0009130992468930643,6.171849397997474e-05,0.00949373100341682,-0.03290676562302855,0.4227749351856177,-0.007812843193717871,2.0082013366467748e-05,0.03371840348227885,-0.01725245163969919,0.05677624649544287,0.026843839271153674,0.00010621677365100421,0.008604678455220295,-0.018773911247061847,0.06995428302494307,-0.019904358097912207,0.0004230273254755798,0.002334791635432881,-0.0010642158606598657,0.0060805439364565285,0.0016379907202221738,0.00010024416259762636,0.014753274721591669,0.004502726974796201 +2019-11-11,0.012252147031690565,0.0849285680121429,0.0038818640489984685,0.00015256151133594367,0.004164469706662879,-0.019059098312136317,0.06073470931808785,-0.009855539332295939,7.529669595022366e-05,0.021902679541970716,-0.020120571685772852,0.07064411894890697,0.0042141979187711774,0.00013175330177161288,0.0025515404128494392,0.015904458063241436,0.019450359730160773,0.029274635206582484,0.0002759682335537658,0.008519300351169795,-0.004320940663797011,0.009373723408209095,-0.01499729375756954,0.0002411925783940575,0.011107523055118362,0.004075618461027334,0.012040507166323221,-0.029194905147831164,7.3908685814295e-05,0.011531713565337404,0.010136018230014195,0.03372099055823639,-0.02672439587114736,8.819762988269676e-05,0.006040110038774653,0.010570799815981056,0.08519583823459535,-0.05708359337844023,4.254887509355716e-05,0.0014087227292971791,-0.012195145986345251,0.008468041724114264,0.0365809264018157,0.0011105773220759594,0.02218936845340521,-0.0029402576122097004,0.008774562921215293,-0.0015976378252573567,0.00011717144256959991,0.021650379961026055,0.013203171989118759,0.010191438227099423,0.0034003956225740987,0.0006332382826138728,0.008000052742479943,0.008435377748632976,0.1094119410076893,0.021003883228731438,2.2975374676924417e-05,0.001123681906697054,0.010255984204712448,0.027486778025069002,-0.0018317503030575207,0.00011084204912835844,0.014169390975797336,-0.008381946526314975,0.04253917875466049,-0.017955447816726845,5.5464819357338145e-05,0.0017441937033191447,0.01148655532329951,0.009756530179004226,-0.010139101273470357,0.0022962405867219603,0.0021806846349387123,-0.00938499072877811,0.0680268102338117,0.004464954954399527,0.00011352874794694285,0.019687273777313097,-0.010912506565974145,0.06695356608628301,-0.04839114607143992,0.0002523823829426356,0.00028388057150719034,-0.08225893334235299,0.5288602634531001,0.10097434899887321,4.381301019881345e-05,0.005164009748397609,0.05383033524909315,0.3251830186414859,0.03013489135534134,0.00027282617466698334,0.012259393835518217,-0.03745612859959052,0.47672918356041505,-0.024531284302238308,3.2604787952813946e-05,0.01642973265321907,0.0033237004840056643,0.036629002014931925,-0.0012510682146853,3.0316461057716032e-05,0.004835206033449345,0.004997043507893185,0.016024594357734765,-0.0889941145380257,0.00010044974575025461,0.008526087863366416,-0.0019034643252848701,0.01216347845407346,-0.02192051788781787,3.614758832624652e-05,0.0015450438658128802,0.013535000150164659,0.030419548817114034,0.013343020045863418,9.864677209949263e-05,0.0055417701456264975,-0.004970451616858916,0.018075132749293794,-0.04794533920047064,0.00012573695846456218,0.0036750468650241083,0.006731973012756372,0.007381776271051987,-0.07779515816954324,0.0005212631802461649,0.007020359110639786,-0.0218291672192525,0.07559436619949329,-0.0711079245659793,0.00012154406207709069,0.0027132005466624573,0.022008761370104647,0.07740878977012501,-0.005582725714332532,0.0018248387674912477,0.02241968126587353,-0.02604250246994156,0.22950813373360854,0.051444697150680785,2.917875972795207e-05,0.004025777110812517,0.029932473218909475,0.07777087394959625,-0.009965393951023985,0.00125833678639572,0.046136874978669334,-0.005422571663777377,0.03088211989325042,0.006139571231623853,0.00011692943167392198,0.013284223801910923,0.007957431861660584,0.012581066201990135,0.0010116658760391225,0.0001492797390255753,0.008776482309629945,0.026255398612731063,0.03440231401336077,-0.0019050022890799237,0.0004380612865954764,0.018847572666388836,0.010213145687970772,0.034517273303333464,-0.021224909273150315,0.0022933660914920442,0.014393543194001058,0.0037831561852904897,0.01881238060908799,0.002159983442813174,6.452096955748117e-05,0.00458227963709977,-0.020849224076128454,0.028645282866355367,-0.03398944116732167,0.0018093141245309901,0.0012813647085326448,0.024433319077720672,0.07563102929630167,-0.06519649543054094,0.00012799661725547054,0.007324818426799544,0.004149008790833718,0.011109130273744836,-0.03533363004789088,0.0001513995803711241,0.007025834357132212,0.013965399192070384,0.06526716949934243,-0.00030502436616799505,5.222428473874354e-05,0.014125733776861944,-0.08069888735493926,0.21715581438916753,0.04694107587368476,0.0035222010536430865,0.038851438235182494,-0.02535520490870605,0.12792642165809834,0.017887281402027062,9.8593309145314e-05,0.028966212849537192,-0.010395751167464683,0.06489652297103911,-0.025375221000693927,0.00011617033221253651,0.002881914386792796,-0.004487005453170245,0.03494545947334506,0.0016938061275404432,6.073157455563518e-05,0.0023850253923236005,-0.0014415852179134245,0.0060858132815120635,-0.022979451611561362,5.953455223631125e-05,0.006439797101367387,0.017645645266042315,0.031100769151725847,-0.03281791436038626,0.0002766277909694864,0.021889565737203135,-0.005900880808108054,0.02259097771062334,0.0005058121178705517,6.495254780506155e-05,0.005053278528773803,0.005478416834942527,0.062055863524159594,-0.05169079242181311,2.277736783724832e-05,0.014470907471854847,-0.0017228814411053743,0.005212116279823187,-0.10924339584851897,0.0001155447617181011,0.009463325805624982,-0.005815289317604279,0.020627060140575196,-0.0024032678105105165,0.0004443876309980605,0.004729916756273277,0.01782576700171551,0.0999275884248656,-0.06920177090525483,0.00010217263997690721,0.013990052806120035,-0.0012507960735758205 +2019-11-12,-0.008319905156750124,0.05510889964943652,-0.010316689690176854,0.00015965525576303643,0.006866642778838692,-0.0035971859638451223,0.01250623709592715,-0.03265712633385061,6.901551909525451e-05,0.0031139152373834394,0.01605099252759965,0.048409202236892254,0.002485455277820583,0.00015338086100292867,0.0008019309792930713,0.006036231627055917,0.0073195257745182875,-0.02003763970395858,0.0002783240968017034,0.007436830531570551,0.033365250513258046,0.07084622475482319,0.035680229779887676,0.0002464197142960399,0.01046012903742921,0.0015925706085283193,0.005096128951434642,-0.006212160738578594,6.823465930351186e-05,0.0027072063612521295,0.005651555694276108,0.018404300573740866,0.0003439462398576011,9.01028544427179e-05,0.016550772807032432,0.0036497902694474543,0.02861519260054814,-0.005755761561223104,4.373910076641592e-05,0.00586442230040945,-0.01988838740469343,0.015278268100026719,0.06726133819502586,0.0010038532536138668,0.008147988685565998,0.06271485273081431,0.1360888977964367,0.07785326441961894,0.0001611423142537861,0.023230050751532734,0.029306694123032738,0.02099482880485478,0.024576606770992694,0.000682305468638024,0.0061993874652962536,-0.01938318909818989,0.24237942750982963,0.024789929836521125,2.383154873946452e-05,0.006178788633952483,0.038809517048424294,0.09519676562705005,0.013836204795014293,0.00012110639679299008,0.05446214887598495,0.01279381807896714,0.062487339629519516,0.02126688818207695,5.7632831125084384e-05,0.01784142683239208,0.007294847722021804,0.0068409029422200115,-0.026560072781427427,0.002079820115880356,0.0025267047978856615,-0.07109513953626555,0.4420155232704994,0.09928167961437316,0.00013235931075904369,0.011900857638316845,-0.035165143171982,0.17852454281052996,0.01348677650865391,0.0003050160498016351,0.012928576086122329,-0.011822916226653333,0.06122835453087758,0.0009862158916508058,5.439174349456113e-05,0.01808309527856385,0.06518596418399775,0.3328413394180535,0.060128058189430206,0.0003227777873048959,0.034487743673626774,0.04215668268174248,0.5350738889715527,0.05841805999790335,3.269511744193632e-05,0.016294834112917333,0.015562359430685324,0.15714638782788612,0.03958236892279084,3.308664623388813e-05,0.0031277618064491195,0.011572055106151393,0.03386818928668034,-0.04855350721821854,0.00011006298081709612,0.0051937446308098325,-0.031722721189461844,0.22898835969123596,0.03892436822280185,3.199995769542356e-05,0.011126435274564144,0.01695071663167192,0.04311060985648118,0.03791174101469153,8.717285694409991e-05,0.014231348684100684,0.0037591669619695903,0.015586875219040522,-0.03207937667217534,0.00011027603742403838,0.005237384546554446,0.03274782366193081,0.03301052449138717,0.021985837753037873,0.0005670294033272695,0.02326198917519164,0.021235780099509972,0.08268718327993548,0.01905305376649546,0.00010809759470842714,0.010083163696674075,-0.035872668117955635,0.12987717601247797,0.005327574385010436,0.0017727602998264269,0.005580726851099926,0.005392757603849926,0.05674418013957635,-0.01136715522333939,2.4438343766434144e-05,0.014161980522958202,0.013122589752138269,0.03986856718070053,-0.045295904374012284,0.0010761187378010718,0.03407335201810407,0.008773709525300547,0.05893548314323637,-0.03244232943767979,9.913614958216292e-05,0.03199951368935852,0.042552966317420435,0.06495976756413913,0.019289732865325735,0.00015460757332103574,0.010924723356719644,0.05587218977827918,0.08665704825889274,0.01460649787563719,0.0003700800846629052,0.005075568988066775,-0.0125667959765039,0.052768351655205645,-0.0027571260285309445,0.0018458711297699977,0.015364601082119983,-0.02505775945052026,0.115608884867407,0.007104972843432537,6.954107406125061e-05,0.01099662269724287,0.026930973184476795,0.03845297151521441,-0.03492557066189761,0.0017410022526225238,0.01065276582114982,-0.02508103767970815,0.08123560830823032,-0.01550078377600132,0.00012232496501809998,0.00786397062119448,-0.02787540045689832,0.06986808167168232,-0.05102098893883583,0.0001617345006543807,0.005014157362002639,0.03120034592910768,0.1252699467021747,-0.03110485176935786,6.078920190337797e-05,0.03297221359737926,0.006543726895556256,0.016972303788488866,0.0014918857005300156,0.003654285098524768,0.0050189134318296795,-0.03858012602439359,0.20424968833137078,0.03269624491859658,9.39599571743033e-05,0.008783076734841196,-0.03750019110142831,0.17115594418464225,0.054935240627133265,0.0001588920903909742,0.015364226965096345,-0.010902793524027458,0.0741236518922224,-0.01583019145376583,6.957122949265919e-05,0.024229262833541224,0.04926559823586397,0.20114699347871134,0.03559205813916435,6.155702323467007e-05,0.022078649571337945,0.07419565883610027,0.15212441472534213,0.08594851861004925,0.00023779842251297098,0.0386220936897577,-0.0021584980696204036,0.008655695355393088,-0.041065235784211215,6.20103350371181e-05,0.0030327481737093902,-0.026239567533912406,0.27961793541172064,0.0022244473251923835,2.4211568968838185e-05,0.002182193444588476,-0.02375741677247707,0.07142232649105582,-0.0874532662077711,0.00011627174446337604,0.005648400255617944,-0.011447739012453675,0.050155593295599196,-0.006746456942691954,0.00035977279370396107,0.0010159932001712053,-0.029736043105054635,0.15199069185022315,0.006717273394547095,0.00011205673951045562,0.027390993859454336,0.004195393682448105 +2019-11-13,-0.02039916430280065,0.15230180389501988,-0.010318318945143406,0.00014164260734746918,0.02097220489485482,0.0003365787888926945,0.001120758816131591,-0.031094057441029433,7.205848153799768e-05,0.005355534564643026,-0.011406694914334494,0.035239832286914255,-0.06369364307167537,0.00014973495541777023,0.01748580151799533,0.01435025817021485,0.016533643790273264,0.05842346497758057,0.00029292672356098337,0.006206592143973523,-0.0029755559943040145,0.0063787455885102,-0.020294335964260807,0.00024407911424154514,0.01589305853083542,-0.0018675141959827498,0.004549384153572196,-0.02704683847280417,8.963095857288511e-05,0.0004062911122546752,0.06639590947550149,0.20193265793639995,0.017360652797439743,9.647718376652126e-05,0.002142949178340205,-0.022921181397954522,0.20566748475798532,0.021063227988389135,3.821817773827375e-05,0.0011224803004543497,-0.014528577274019615,0.011639868682535073,-0.050059696672528645,0.0009625422320730677,0.004362780236680559,0.057549484302269624,0.14134105808760047,0.07062524313257491,0.00014237540895379832,0.0018954568264543505,0.025439865849316973,0.01956197829923604,0.02541295122046949,0.000635662222919002,0.00749562894179235,0.003375991726677059,0.03992541645452475,-0.036197390753941114,2.519850110549449e-05,0.0007752194668198423,-0.016466211045559467,0.04031574294255623,-0.04761935716482513,0.0001213305169094013,0.001793841596823507,0.0025973892506003246,0.014733669012598287,0.00015351459098250848,4.9623563480541695e-05,0.00021552201098562083,0.012193326561955998,0.011007356279652767,-0.06482261841133934,0.0021605392185540194,0.012866658199516854,0.05840726571411982,0.4315108191201404,0.030449567866151144,0.00011138515005628863,0.019832267191632395,0.030686191579481957,0.16670498683383844,0.025657200692281824,0.00028503791492298533,0.0024611776556629885,0.013765707385001739,0.08074750472347555,-0.05199206741877354,4.802090926250861e-05,0.008767963085627849,0.016287863781715574,0.08972060646982018,-0.001241328254226446,0.0002991980339952582,0.0033417524160271324,-0.028952340371448688,0.40977876105313177,0.0022283362259766706,2.932003349020879e-05,0.016232334690834283,0.014891997056538556,0.16720367421615037,0.037246233052354985,2.975697870390126e-05,0.0038559706822555166,-0.019223983329017775,0.0578634034714704,0.029073540580839927,0.00010701931383578056,0.011512042484800457,0.012282089603506142,0.08890091604559872,-0.003826429593729555,3.191232171285632e-05,0.00377687865012104,0.011783608648066251,0.033281852385379514,0.016265484157744543,7.849612222113347e-05,0.005911319781438682,-0.006906806416298347,0.025382391648421276,-0.0432971212723449,0.00012442089998420026,0.0003200059104716097,-0.034111338250972796,0.03619934095603399,0.018217786331831336,0.0005386090612383112,0.013118587874983236,-0.013161824582354537,0.04175118053199178,-0.008706266359748008,0.0001326885192459767,0.004906912864879382,0.023010036938570917,0.08360006064079469,-0.03759320206743335,0.0017665661240567068,0.025311188834251167,0.00542104650656452,0.05843809372918441,-0.012756607120182433,2.385444340817256e-05,0.00639059039076993,-0.024311102928191476,0.08063755434520956,0.01052194345438636,0.000985685991018072,0.011215609849429167,0.009400509291708643,0.06421720414072722,-0.019207581734662575,9.748226977579452e-05,0.013725703702542766,-0.00433277330425583,0.006731666017340997,-0.008796457609084051,0.00015191084945137274,0.005715313138668105,0.0064123396496366765,0.008578351591199084,-0.006068448863281414,0.0004290585785809523,0.007316245133907214,0.0069574486849932685,0.02646042498495488,-0.00030474027499399666,0.00203799698811102,0.011413725377676168,-0.04619131769123474,0.18151201377921936,0.07083828667436734,8.164796161144721e-05,0.00013055544665172155,-0.019060687906676803,0.026843582022002006,0.02418977349792131,0.0017651243023026986,0.008665011594807754,0.02142114216124177,0.06559623910883475,-0.0325776810807335,0.0001293837456090162,0.00562536930478595,0.0020673996794034807,0.004353666035351991,-0.022266882551175232,0.00019249954570796731,0.005075528251921289,0.009543351954088425,0.04197210669783708,-0.11404418647134065,5.5495030893882894e-05,0.0009126337947644852,0.00848013362281973,0.024702550857287092,-0.013401934165443623,0.0032537108191756626,0.04142179745118834,-0.023476894412685467,0.11849160717808632,0.004677249567356788,9.855839608937404e-05,0.006877987907298041,-0.03943170547877738,0.24214049796518497,0.068052861404671,0.00011809701335174715,0.004385789147082696,-0.011799023464906357,0.06678744437101858,-0.011610780656013082,8.356028991225263e-05,0.017362590138139372,-0.02113394217343954,0.11267061978117328,0.003340257232474901,4.71430011360325e-05,0.010335655662077631,-0.052900368981176095,0.0944378011565755,0.024522339099231714,0.0002731129094082139,0.008617772856276577,0.009465237838618605,0.030301998913470025,-0.007756353451856413,7.76738136537216e-05,0.0027375324960928625,-0.031039975840409656,0.35254983789553485,0.027348460415968383,2.2716014681714507e-05,0.007033007405436291,-0.006464586713899785,0.02026258710362494,-0.005039967260383908,0.00011152053265581651,0.006564812598054658,-0.00662548334986289,0.02598170475851202,0.00015422153603254706,0.0004019554249459435,0.0038980200297385956,-0.02639146975024633,0.1073863057698132,0.03098226762958445,0.0001407623376438025,0.009172560005700084,-0.0005992480847751715 +2019-11-14,0.000556699791279748,0.0042183154459566816,-0.02724376511024545,0.0001395624514070886,0.000748211248328407,0.0249521462729371,0.08954194132538264,-0.014412569362595865,6.686393449127845e-05,0.0013159701388740488,-0.0031116351935097375,0.011126185959869583,-0.004248614112166072,0.0001293717834094241,0.009585805605249548,-0.03620837597937094,0.03310959263020289,0.09271217746778258,0.0003690821698553277,0.0005074515385794379,-0.07226909664021978,0.18115284236633095,0.10097396120512209,0.00020873979167757307,0.013142719346808074,-0.01643157832756494,0.047559944244289644,-0.030023602067481957,7.54370478496223e-05,0.00582753090717932,-0.017268765826763083,0.060419635097119784,0.015343968879407381,8.386351428102065e-05,0.03613499601870526,0.005330834824395482,0.037320536630139955,-0.007856633618144161,4.8983065476173686e-05,0.0042141970887058745,0.012172811950533354,0.011440008261875446,0.0010413159433657084,0.0008205581464344146,0.0006778979785482702,-0.01229967412908977,0.025933879066701415,0.006538558077913257,0.00016583951169360728,0.018284854881663207,0.021824037190005172,0.019184711946173643,0.0036269651347701076,0.000556037610757231,0.0023840619029362976,-0.005886856337828806,0.07711223075743397,-0.020542159478449902,2.2750081667191436e-05,0.0013140439402038759,0.07136971181453641,0.20412315356614935,0.03895623467564544,0.00010386583377036886,0.028307716224100093,0.002647069419945142,0.014020766913385293,-0.0042654046599968935,5.314413953973027e-05,0.012512499602485645,-0.05288577235500887,0.04991516699784055,0.2093190346997364,0.002066470906945387,0.010665113835771895,-0.04305184320388328,0.26669103795171495,0.03272441623218421,0.00013284200934095267,0.008201357338270794,-0.02520473979768088,0.11503513095395901,-0.005602161405930519,0.0003392813277575906,0.009344521085080885,0.05141838778371592,0.3397541741979854,0.05445601036616617,4.26299290772936e-05,0.0199131051351781,0.0102983479885921,0.057690549611417036,-0.049923422415011035,0.0002942047592349717,0.005732952916575928,0.03604521354749497,0.47074195279525943,0.038166792027044504,3.177568557834293e-05,0.019725414148614475,0.03080102044661657,0.30035140254084974,0.14336645707656917,3.426235020489627e-05,0.011194642568596678,-0.020588395220013097,0.05528040033488475,-0.023705422234964788,0.00011997039059153944,0.016096544743164017,0.022433169847879908,0.14872458350331721,-0.0007917432028318205,3.484177398773965e-05,0.02815952385238385,0.017533322782444242,0.04649457647319159,0.023708690199597298,8.360635972660121e-05,0.007471608423024789,0.0054403783980539215,0.02305131928310076,0.027462294364102545,0.00010791502531484972,0.0014881325487051823,0.026590351005639674,0.021629001144196632,-0.054720281648855736,0.0007026890209774363,0.01857701370260809,-0.02851322267650438,0.11332618995446932,0.041568544996261954,0.00010590147935179162,0.006554619964539038,0.022464683763778165,0.07462734269831219,0.011025934680136623,0.0019320639909767812,0.0067919223491054665,0.04733095724246684,0.48398578627403566,-0.1409566482600498,2.514750341322333e-05,0.001152944576691203,0.020646320029596394,0.06381773730666221,-0.020617100872214147,0.0010577243993123043,0.00515326113754791,0.015461037528987805,0.11127315783445221,-0.08256260061337167,9.252814690159249e-05,0.0003392524601099052,0.006507631411483058,0.010483860516763496,-0.06422982838015061,0.00014650319593707462,0.0009263431134012329,0.006530766734896296,0.010023776434727138,-0.018251889134774563,0.00037396995661406843,0.006071441791056332,-0.0006544523862473793,0.0023847429999095966,-0.022928765012005935,0.002127094644127255,0.00142478707451515,-0.05331291524768588,0.2006494890432598,0.08099588040433194,8.524810690941458e-05,0.0009393930600928368,-0.01092943870445178,0.013073678009696374,-0.019503593193242484,0.0020781517918122927,0.004908921128578449,0.007063305283601549,0.022444950260346094,-0.00020298345863933984,0.00012468246119203593,0.013237118191438135,-0.03410927022424883,0.0857196966682427,-0.11017585665814628,0.0001613066151999325,0.002686758454838294,-0.030935686361318042,0.10173555079886001,0.07496385552635539,7.421658047084767e-05,0.017004941693265944,0.025569865582867557,0.0794023879739444,0.011125124839593326,0.0030521996570674298,0.015254093547602618,-0.019727225981924792,0.1159543112592343,0.00868042264806732,8.46290936338644e-05,0.03507310685505239,0.01939203421609259,0.1072427835851823,0.018208170261719538,0.00013113423142470032,0.014483594628105185,-0.0036584090274578893,0.020292475256105908,-0.09188763911936476,8.527189878162325e-05,0.010882674686379663,-0.009380062958211853,0.04214253609345472,-0.10347888249663409,5.5941290496844995e-05,0.006959869251800799,-0.0289341604437804,0.05443130778161194,0.005905954200131123,0.0002591740471353234,0.00671469590153616,-0.007660398677345104,0.026827157180501895,-0.09980207155244943,7.100535363023526e-05,0.0016666156928672941,-0.003518284015577465,0.03746977727916984,0.0005079408742346116,2.422596408446158e-05,0.009080414241491669,-0.014123525569842086,0.0446204282569519,0.012975175577910022,0.00011064157537207896,0.00038032691073296295,0.02746139946999396,0.11505495862248277,0.06120032684375399,0.00037622296004479844,0.004769745113521652,0.04465940404777387,0.23196415692462063,-0.013212103875126056,0.00011027164071689808,0.002709566298312812,7.81231535345613e-05 +2019-11-15,-0.006641456704346872,0.04026523219167232,-0.0024730680952405907,0.00017442941406102392,0.01706079112804142,-0.002836743264710794,0.008421757835625715,-0.054120784001145145,8.082166809220847e-05,0.00502942216323984,-0.04355039664473614,0.15149204981733755,0.00780085639474352,0.00013298402615484134,0.010031925149790443,-0.008443269824479436,0.008439504539553692,0.00015980485678891156,0.0003376459723690673,0.001153040681013918,0.02199774383059993,0.05410573512105454,0.002510884574216122,0.00021273189584889563,0.008930897929170883,0.026879279538266743,0.06923505525787903,0.04627615993783222,8.476924605826685e-05,0.007675984921560271,0.00758782104959395,0.025846487681951746,-0.027335680737446657,8.614010576657609e-05,0.004771452821576953,-0.030686584831317767,0.25716369458839905,0.033740576789530324,4.0920178136430446e-05,0.03036120234382107,-0.038359518474566784,0.03318786474440173,0.183025091914843,0.0008913302010088298,0.0019672038675681625,-0.03686024994549623,0.09192839788309208,0.03774433371993347,0.0001402072498776953,0.002982308784212352,-0.012896545388676205,0.008722856840110801,0.03629650476521396,0.0007226682993568475,0.003677002368619258,0.005772540007206357,0.06892060538873732,0.013733844173395843,2.4959774499765654e-05,0.005494550640242765,-0.047685534232986854,0.12063583204803245,-0.033655083792237445,0.00011742521564158018,0.001060274985660429,-0.02233815514829644,0.1262268483516695,0.04121428070364082,4.981468431764528e-05,0.004811826517334316,-0.01973842478957023,0.018709588980807417,0.027482371263364527,0.00205764863707309,0.005809728664590246,-0.029150330364710764,0.18367695517628732,0.015699148194326735,0.00013059932050674133,0.028701850211259875,-0.03873450528168735,0.18556241902886061,0.014664835194014961,0.00032323339221529667,0.0272934268249855,-0.049851487812755266,0.27351069061694694,0.012856260868807123,5.134105328694199e-05,0.0011284035496258982,-0.004376557679706329,0.02203510614227586,-0.0047557132038183545,0.000327343948845927,0.014379858316910684,-0.002064768253887978,0.029254717143147525,-0.00769555184739561,2.928907405669876e-05,0.04657577520095435,-0.00034159986444973585,0.0036684789362019824,-0.02930973024127692,3.111095688530074e-05,0.001726835789737262,-0.05298549607183575,0.14877838112500585,0.07557389109963088,0.00011472020958697784,0.009927253277250383,0.02491278601267904,0.18115953947805094,-0.017377804106918405,3.176533689920676e-05,0.010627647365650715,-0.018875159349634588,0.04247432957505884,-0.05046441176593065,9.852387316744638e-05,0.010002079408354958,0.0011866035330856375,0.004620818494571717,0.0028108245194897415,0.0001174181741744231,0.0012853916864735816,-0.0045968019928035305,0.003563545658516357,-0.08832081723103219,0.0007373081434965795,0.0028616834328743504,-0.02842839674957565,0.10319401341236166,-0.032202639935324684,0.00011595350306512767,0.0032345309795090336,0.012043894542322556,0.04559428318757481,0.00013615902770550478,0.0016954138494947707,0.010356480152541899,-0.007460443672205906,0.058859086218360626,0.001070790160028584,3.259367535965223e-05,0.011818599488120637,-0.016936453622728855,0.04899373892227577,-0.014301191563201506,0.0011301944320728243,0.01738806382340352,0.005952110356913391,0.04452762617992417,-0.23177662278450137,8.901579502977727e-05,0.020754771009302554,-0.024454333799311383,0.03338710507157247,0.047906054425081585,0.00017287112503941855,0.003076132197920431,0.0029291215267220725,0.0037069810889969776,-0.05303810507760917,0.0004535455747325021,0.012528512740392848,0.02416138986307466,0.11465429811652701,-0.22645380481745592,0.0016333599941117927,0.0021367398340837135,0.008303394888642533,0.031461238307612695,-0.002469506696979593,8.467793341538706e-05,0.0038042769172446484,0.0234745760340455,0.03642724894383313,-0.02582362124417543,0.0016019485934363395,0.0181478809745346,0.02951394032436704,0.11428707683340018,0.027313394860385483,0.00010231660154885104,0.017889393294394488,-0.031891108493587145,0.08601182078219585,0.08678589665360152,0.00015030445381768867,0.004011243956000511,0.02779129405525892,0.11926363781444022,-0.0015138604838350928,5.6874113754454964e-05,0.01061050572205985,-0.045535401024531345,0.153896489700721,-0.043000336727858475,0.0028043906452598607,0.030537944238202455,0.011458710160156843,0.05201410531223498,-0.001377795168944339,0.00010958602458359298,0.013846432899687898,0.015937432220496494,0.10008469160620602,0.010638073594450435,0.00011548125099149957,0.009245138813702251,0.00738083066718361,0.04486547224204225,-0.022698723923595537,7.781112547950823e-05,0.014657908087452475,0.021684734365475078,0.09928701020727605,-0.006690393538960703,5.489200171429323e-05,0.013999188394505594,-0.04684753010165589,0.08164544103909094,0.004616612708912289,0.00027975905584884446,0.04338725236138394,0.018048040513575277,0.06659133705310233,0.03118537757960306,6.739484799431409e-05,0.0008350519480012867,0.015873368083694644,0.16820218277200427,0.007847307780312613,2.4348305666768983e-05,0.016792339158236334,-0.013505212618236825,0.04371098687912004,0.010043153479626277,0.00010799901102914466,0.0037061515964336503,-0.020434587377490033,0.10213264335454425,0.016168537968195052,0.00031537645803354623,0.004415854922902921,-0.025273709400690195,0.11733160280342195,0.021870491841982913,0.00012337460642457767,0.0036770805310686735,-0.008946803467437234 +2019-11-18,-0.023224006494621214,0.13931530938534786,0.021418029034622456,0.00017628886612971906,0.00482542966616161,0.05214411024173876,0.15086200561671506,0.11939638878106673,8.293462987088257e-05,0.014902982791463779,0.06796274125263693,0.20465386257932827,0.12913510050886545,0.00015362013638726228,0.009347907488469422,0.019712625634775334,0.021995975059802525,0.0009754863017806835,0.0003024608107562326,0.009529165482847164,-0.0109974850620066,0.025491515037811153,-0.007217676959665979,0.0002257332349189688,0.012234487980050066,0.008556645324968817,0.019194972536184823,-0.023934491980978242,9.733359751722329e-05,0.006840123182360241,-0.018849706750642917,0.06651624164222375,-0.020172042424677353,8.315086108749357e-05,0.004301899682441827,0.005143969034115627,0.04478162213547952,0.0021953651814197225,3.939101204306766e-05,0.006084960489700467,-0.0005897839376583268,0.000462420125376894,-0.01638286508489164,0.0009835603213793208,0.0022335789374341936,-0.034690000762007664,0.0824684102114765,0.030215324598577835,0.00014708845061385257,0.0002581066226526468,-0.0118379738955763,0.008230548430247835,-0.02861901382721483,0.0007030285490044553,0.01011400890400335,-0.0021615023687195254,0.03552479556228685,-0.0007171535563892479,1.8132050413881784e-05,0.0006100642434276917,0.020172506222290443,0.058204976431564207,-0.05564016457039384,0.00010295579068011289,0.016163145138083944,-0.013027949597629877,0.08097004434107241,0.012068372008650458,4.5291166979439455e-05,0.013843869668581255,-0.011323468434577544,0.009325340546880133,-0.026326392165966203,0.0023683056214418557,0.010849846342063738,0.029761485647129972,0.20894728505586188,0.005935839985690516,0.00011721143472557718,0.033080682835091337,-0.01269907244479961,0.07389198610867233,-0.059719286040416306,0.0002661232954435032,0.009273049189350839,0.045610516414919214,0.2511756875211465,-0.021890422985495615,5.115031890949216e-05,0.03666549816615378,0.0004132545342307789,0.0019648604185818863,-0.05948233828892801,0.00034663525472095183,0.018920090652453325,-0.018433088232929502,0.21975230057400807,-0.030947420165232695,3.4809268974077235e-05,0.002198749105826009,-0.006476804580781514,0.07852017403001588,-0.017193133169494015,2.75588600415365e-05,0.012296020412009317,-0.009002395207711816,0.02465205632498692,0.0003502854176267292,0.0001176325953775669,0.013985126236831244,-0.03344322940309134,0.21284915678674665,0.026753090363479646,3.6293483127407634e-05,0.004798789093089292,-0.0025349800540711937,0.008025038628263011,-0.029654813608903804,7.003333326972433e-05,0.004648677357120545,-0.012913512981991813,0.04980011962666904,0.05500251202170538,0.00011856666738082162,0.00039234554301752016,-0.06908097575970555,0.05767973541700751,0.13804706841609515,0.0006845588117130385,0.001745285204546261,-0.03181392266889219,0.10469224292096102,0.038121833798888685,0.00012790535456787632,0.0029101539752539366,0.05527748197022572,0.2127217102531979,0.0592830386339281,0.0016678447041451334,0.025019457653003098,0.011854046300344713,0.10641417338047261,-0.004257844926494877,2.864503377674629e-05,0.007412905915357792,-0.0052905811288163455,0.013535400222104811,-0.23788130403203117,0.0012779196452155283,0.005920786744745801,0.004237537301676465,0.032727780277374725,-0.09457101548646168,8.622290017922531e-05,0.011652019574483566,0.015978331283976268,0.026361120305449966,0.010036011466319777,0.00014305826196341095,0.004513076234264317,-0.06512647507364569,0.08986198885460923,0.1271839636410624,0.00041599246138626883,0.03418142966274573,-0.030452104001908207,0.14021693159417215,0.10454050346639408,0.0016833219495921267,0.00045133128939401105,5.9826224023372525e-05,0.00023140794868089267,-0.006148671601261618,8.294757441743642e-05,0.016684567665202633,-0.015431644781004034,0.02175629213452131,-0.019847479447104924,0.0017632119796680572,0.0015682601230491906,-0.05950174054258882,0.20374341422823,0.113218451570219,0.00011570766427474851,0.003869818352148755,0.0007596033626977862,0.0018988452558038715,-0.00042630695554085065,0.00016216520704652457,0.002617032993766072,0.010010132094881403,0.03828475891562713,-0.013344441242896327,6.381574107145531e-05,0.026916711218508447,-0.0060350668727423016,0.01901997522667824,-0.0753393681189784,0.0030073930916223873,0.023087581864512766,0.019194394447448207,0.09173421714353312,-0.0037517638450207153,0.00010408391683481565,0.0007654573237035455,-0.008942757535833974,0.04986593463589554,-0.005286557453493995,0.00013005536638645344,0.01259780754868639,0.036283379342208766,0.1978301442664118,0.039685130282432896,8.67488967777701e-05,0.011721550337821079,3.1271147872229675e-06,1.5000670048269089e-05,-0.08431968017544163,5.2393879822111574e-05,0.016862115870444193,0.028303808198441662,0.05080977861167026,-0.0006650435591291281,0.0002715982479516196,0.010503481752717148,-0.00796833638868197,0.03284859451036317,0.005092978791330856,6.0320543164378484e-05,0.002625561163963934,-0.02482034750782828,0.27011429505027446,-0.04447766094874076,2.3707817452898864e-05,0.0063026312758821266,-0.0015258169108129957,0.0044920600050294595,-0.021047144109305263,0.00011873146856247705,0.0005264793117622295,0.03107115261626579,0.11466753409940417,0.0323101639214911,0.0004271150374073146,0.017637382287272647,0.03310461839927281,0.18789965353837576,0.013283772684237163,0.00010091004567608589,0.011334450500154497,-0.0008770147701623072 +2019-11-19,0.04775361213708158,0.3628366915134656,0.08459634293045297,0.00013918153226444063,0.005013970317694417,-0.00447028872576808,0.013117824732415548,0.0068279687442763136,8.17681697226428e-05,0.005000458468061537,0.0015093141340473061,0.00495970792216582,-0.026504915531647005,0.00014077344603055186,0.010040174129231721,0.009235811003116635,0.009825078721974214,0.015215862293263275,0.0003172538160683905,0.005691208579559852,-0.006490998008962889,0.01330034883591665,-0.0004084388059333174,0.00025535608810988515,0.010815312425151224,-0.02264396409582835,0.06989815439176363,-0.044350121399591866,7.073485844273209e-05,0.010144624728260172,-0.04109485216296882,0.1430407360140946,0.01952467109159984,8.429805251705812e-05,0.007751491330807599,-0.0015153122694987848,0.014309256144115526,-0.0013158751528242545,3.6314803317531e-05,0.002759645310082064,-0.004874199817510789,0.004645722641760112,-0.0007861784716201505,0.0008090862817399805,0.011825284609351944,0.007984382549270617,0.016662882893391587,-0.04458799155719523,0.00016755333675755126,0.00770427419965297,-0.016807383514551633,0.0118823427019356,0.04549282280043839,0.0006913888866464833,0.00814983510461694,0.006397030075805543,0.08963548721488951,0.003197531704131922,2.1267732956456394e-05,0.0011134415676748415,-0.00026440947517737207,0.0006861520953879811,-0.06326325230856264,0.00011447421078338833,0.009467159250865522,-0.012168520054262192,0.07916907290249985,0.007372116235881539,4.326572855982401e-05,0.005105921363181119,-0.03481093779738492,0.028557548191215983,0.059972768366981344,0.0023774849555180276,0.0055386398216482535,-0.07857885580622678,0.605711345934006,0.07957334267258397,0.00010675595248955141,0.03739135854382475,0.04345392844449101,0.2745639829349543,0.04954767464952696,0.00024507200875683146,0.009059752862736848,0.025065436542458505,0.15620785218920197,-0.06435802665979637,4.5199472635191874e-05,0.007472707850256092,0.047146090617002964,0.27811947317705155,0.021956449683032373,0.00027938372019091517,0.008134742597817091,-0.04987970239137804,0.4787580354002082,0.02347560106455728,4.3235253398108054e-05,0.002722813449011317,0.00033958715068132015,0.003207937116772012,-0.05235281672119246,3.536772390339724e-05,0.0008591921289349691,-0.012110192574569098,0.034570098076873626,-0.011344132406198913,0.00011284262839636206,0.029093148028031146,-0.0072907857191178045,0.04408807566826887,0.005257793048166901,3.8198434719055725e-05,0.011581262865805037,7.541539503093122e-05,0.0002518914391658156,-0.004707139814676507,6.637797280255005e-05,0.006597772109482213,0.00957310091022788,0.03788117490019921,0.0530677375710799,0.00011555208656290475,0.0060688320552330045,0.09310304349009285,0.09186275721415169,0.19126534040488705,0.0005792952441150793,0.021631816103605653,-0.025108384824027583,0.0913279384892008,0.009786166066656747,0.00011571805642683448,0.006503819414792996,0.07716836623132793,0.2770853398765338,0.08492463549648564,0.001787495395647859,0.030273822525932914,0.02890812602265104,0.2784591702540802,-0.02265963912551572,2.6695656770619326e-05,0.008810522496408936,-0.07143445910174502,0.20703019122305244,0.12847274594652852,0.0011280941501071208,0.010202116730721444,-0.006149172262839279,0.04564962290567885,-0.24566955552019565,8.970261597162549e-05,0.004320616020991774,-0.00030569304830431736,0.000467127136736243,-0.0014375583294474093,0.00015445282336159125,0.02102945697525194,-0.012115858128392741,0.014180448589471388,-0.00678083278641404,0.0004904199439942678,0.0015397414209183486,0.03692921170516538,0.12760624989791622,0.040136077072826445,0.0022430989529239813,0.005452312805050883,0.014209119803581294,0.05873132839642648,-0.002857769966660626,7.762251724544766e-05,0.0009098005539949421,0.02740188242271785,0.041172637709278315,-0.0324918633190483,0.0016544319157981427,0.007845019402310738,0.019538763074868157,0.05229996970683575,0.010974764198937472,0.00014801702324288997,0.005823402710781342,-0.028045129586667338,0.06111339723708976,0.06163184954025761,0.0001860293209304138,0.002320917663242657,0.001775703546777793,0.007398546277398743,-0.029011535155140974,5.857846572551907e-05,0.01215961889273459,0.04274814147944524,0.12124474980388214,0.0273095306137924,0.003341737670329416,0.020648408245923743,0.03745776585585696,0.20162548420670587,-0.048705789901588914,9.241384030302214e-05,0.00996904123025269,-0.02730185977202551,0.13750570699591436,-0.008730886534822173,0.00014398998707631453,0.003505129503792395,0.012208049622741184,0.07053848703913067,0.0012962601124082355,8.185945413050783e-05,0.007631991514102897,-0.0162815764307504,0.06558111079921956,0.008560998441510858,6.239719671187211e-05,0.009958926872477937,-0.0070610188681762215,0.014524421874641067,-0.0009698327384614104,0.00023702704988764472,0.0017473475861868762,0.018460351324279194,0.0644932909920752,-0.05839806052155038,7.117701962537754e-05,0.00501645628652591,0.021766404927334268,0.22717251367199265,0.032162797266302716,2.472078207691952e-05,0.016672030624676665,0.011382378319098942,0.03486230465199317,-0.07281115013792298,0.00011412633928573275,0.0060476272555444735,0.017628118122090194,0.0734109430487795,0.027589030881317013,0.0003785063063572964,0.004411770142248893,-0.033916318614703976,0.17606909801601459,0.030977311041065533,0.00011033095136281671,0.0018042950309724772,0.0031386732876434844 +2019-11-20,0.04164725683453008,0.26014082749637735,0.053929004120650485,0.00016930292746944808,0.0009623755830489119,-0.006808384592482735,0.023890383421686836,-0.00877000841641165,6.838037638075511e-05,0.015158739958024279,0.014118053178882097,0.04550478486806084,-0.07846332033610147,0.0001435208350027578,0.004345163432987716,0.03286294134689866,0.03538836526184032,0.06872080527085134,0.00031341067646044785,0.0069605945122119895,0.008379334650849064,0.01845935134005835,0.006269978030830237,0.00023751490683991333,0.011364082092663255,-0.005885319062731973,0.01589832506920965,-0.018802441069508506,8.082866009872464e-05,0.0008872358876667876,0.03764812885037657,0.13809374566178648,0.03973463111637796,7.999433672803098e-05,0.00729924786655484,0.036567856178334746,0.3240990340904006,0.08298884893096484,3.869192862692024e-05,0.009794770450242251,0.020608569624937352,0.018355241647148055,0.024473035416530887,0.0008658298017338004,0.00400479389415016,-0.014527079996946553,0.030055316221001677,-0.01879349536041371,0.00016901253386027374,0.0037028398557105015,0.007600863332705628,0.006114776569025574,-0.0023642877948248653,0.000607584504424018,0.0018607628733306784,0.016880265411388058,0.24603040299355988,0.05056258831938197,2.0446231902011896e-05,0.0007944980924438841,0.008549173749689947,0.02592224737985423,-0.03867245178482455,9.797212560372531e-05,0.01492625089154401,0.006335461059224759,0.031018626778848132,-0.018792230318248438,5.74933317591285e-05,0.005280606952695539,-0.02134878185569116,0.02114085779494254,0.018441755869629487,0.001969579281796595,0.0058454141199296246,0.003093304347163252,0.021397417693374755,-0.008354971771500016,0.000118963407464583,0.011856722871939583,0.0530322963432544,0.3117444570799808,0.01580422455445993,0.0002634207151381671,0.027094259630525874,-0.014992979063350956,0.07871108456372562,0.0038523628194111165,5.365534527507619e-05,0.019450182256596955,-0.02633968578259857,0.14611605122112475,0.02958636342467236,0.0002970978235542876,0.010056285583692922,-0.031247354054361312,0.39871954815988075,0.004914632023989463,3.2521903069084494e-05,0.002674472405921561,-0.024814442383273773,0.2709239630492364,0.07292676849650162,3.0601224829690015e-05,0.0032397618831083654,-0.014938992036864428,0.04504965239748996,0.0010953488680742899,0.00010682000827077988,0.021955241351658217,-0.061468623548131616,0.4128447021119723,0.08111170379878616,3.4392135917968367e-05,0.026878267734033623,0.005386029992749564,0.013935831061628804,0.0013178380240084768,8.568667226980096e-05,0.008058541966441436,0.004433324734765376,0.014184662524121434,-0.11222541066451856,0.00014290885243584426,8.376931184218123e-05,0.014562503324587129,0.01648554435508108,0.0013482151966708947,0.0005049034133614143,0.012335314896917974,-0.011566279169123306,0.040939214319835646,-0.02118734030792399,0.00011891596809382286,0.005511748828697219,-0.1454123624402522,0.48882111848857923,0.23724809966681137,0.00190928405009055,0.03199098371556288,0.01774411623222344,0.15182455230536762,-0.0036235201407286677,3.005346560657682e-05,0.0003402726463198691,0.004030642341645296,0.013457711571535672,0.0021841397447010013,0.000979206564807916,0.016248939670064383,-0.009292446799365939,0.06984671760255946,-0.011458098004393747,8.859510456352003e-05,0.0017327885323345264,0.019850191529324476,0.026207439952120475,0.003603548635835758,0.00017876623287947164,0.003177930295626583,0.0005161518478813786,0.0008203710905197086,-0.003640494245520297,0.00036113622389614725,0.015280433523228446,0.02792492330511724,0.11373861233720889,0.006323337464243975,0.0019029807925239723,0.0074076993995867545,0.01026597324053973,0.03617199171911772,-0.00317410761710593,9.105799335931472e-05,0.011677539588353353,-0.015452915356100423,0.02159491022517742,-0.06109757592227013,0.0017788372472956893,0.010378247214171457,-0.034895032417741674,0.1279033369496717,0.01926690028256623,0.00010809304904690163,0.008550639574510415,0.05785821140892657,0.14457035655574632,0.13422293732881468,0.00016223558830724439,0.022122399774418967,-0.02791190387845171,0.12707280324901055,0.046127172927099315,5.3610613262017554e-05,0.0016046070643142966,0.032659157074443626,0.1191421468183517,-0.043519020092826106,0.002598110440259729,0.018176585319636614,-0.00796732894956641,0.03563931076936087,-0.10411244467767883,0.00011120492524484648,0.004584787477197961,0.002236889279332229,0.012064780899524861,-0.02957900389847874,0.00013445774800571077,0.00702111014561391,-0.005070879749226466,0.02996174813900843,-0.03806109771000469,8.005064979523455e-05,0.005660109551051411,0.04285738053038941,0.15664701874533674,0.03538618164502597,6.876237747719864e-05,0.027878195787170743,-0.04375815707194222,0.08603740212085352,0.0030547053940663906,0.00024797113419597263,0.039631739680084786,-0.013273205801042033,0.05837632741936444,0.004706250290675009,5.653969155927117e-05,0.01125949509699244,0.0002512657776610346,0.002867712523525837,-0.019815655303978427,2.2606275414666872e-05,0.00807192365566394,0.02065125749364202,0.05662948813264977,0.057766932601245734,0.0001274714218984466,0.0012695003907175326,0.02159526949139451,0.10152572970672846,-0.01632674131483655,0.00033528218597454843,0.0013041560736789205,-0.004586579034357288,0.019253562430288813,-0.02545330513676432,0.0001364424722663986,0.005208270380311082,0.0009153369223435651 +2019-11-21,0.026609520171115994,0.18470363275324875,0.01692249182786732,0.00015235201059924432,0.02256583080037531,-0.004887902500464549,0.018113380738431335,-0.004684510595294829,6.474907149811201e-05,0.00964089851599693,-0.016522938086260854,0.064878523181069,-0.006024351181153785,0.00011781037122178515,0.002206694327355407,0.030320993152144964,0.029373652224569325,0.02246368147133417,0.0003483800923901245,0.001425092427526373,-0.03453194091134035,0.07949311844679754,-0.013368569902537271,0.00022729465709220311,0.020323455459727642,-0.02236794988080607,0.05188083594252866,0.06574054887520389,9.413821423064037e-05,0.005773726104974383,-0.009811216225551535,0.03399456373538251,-0.03150985699329573,8.468436399225722e-05,0.003156697955602602,-0.020612348718341698,0.17189423462734504,-0.14059557783226814,4.112110582130477e-05,0.0008113632921836416,-0.0023313836029989887,0.0018637761762993344,-0.0032036612761659204,0.0009646388932411156,0.017272736533036598,-0.030380987555121506,0.06604325673285268,0.011823429270193725,0.0001608552692976975,0.015789506598945704,-0.007810269063872674,0.006010019987620132,0.005055967284257037,0.0006352057744844418,0.011334937712814958,0.00888969235612403,0.1007874558843458,-0.009290411670307162,2.6284700836803316e-05,0.006205975664524071,0.024713127003322795,0.08103377602525694,0.00010078019880989778,9.059675914093093e-05,0.0038011630247715405,0.009205379583234101,0.046797839011833355,0.00039922583209091577,5.5370407607006524e-05,0.00833524045921931,0.01824364193313997,0.0162357471490488,-0.028150613729863615,0.002191604750999914,0.0023356097310529194,0.009217396209097414,0.060038082283048494,-0.01807522637396603,0.0001263378704275481,0.0027260828968982296,0.06742262411305372,0.47523736323399307,-0.004006667851800167,0.0002196864675750633,0.0064379666008554885,0.03139199107936396,0.16884002877720866,0.021200061001888267,5.237263208988215e-05,0.04448413584398447,-0.00747985347792618,0.04996118149597922,-0.013537822490382361,0.00024674433921168817,0.004612751439223884,0.054970220619669254,0.664305203189842,0.012002771581195523,3.433919082663394e-05,0.007808159361636067,0.0009900168304809167,0.011256155692496259,0.0007977728412913171,2.9385575144868293e-05,0.012529841212009701,0.025358934506381336,0.06204150008497631,0.008839078511280817,0.00013166534089602652,0.008441220637259415,0.0063519267371956074,0.046130965582036824,-0.04167055236291367,3.180572585946627e-05,0.04197476321799959,0.0010938638515903465,0.003235394590359327,-0.0191901786176212,7.49572073649664e-05,0.01148847667562028,0.0027158807964364853,0.009766767605447067,-0.01323725379489137,0.0001271476816372104,0.0016888311195977412,0.05221099253398613,0.04947561281508731,0.008127614606905049,0.0006031791604636023,0.0333071569500706,0.018786943183398165,0.06443570887768463,0.03490229111128609,0.00012272004909156828,0.0143336759894373,-0.00679303005856553,0.025656557285961282,-0.049566939969161214,0.0016993558490865372,0.017614060839960588,0.0033028886929331756,0.02879967827835188,-0.0015569830581701769,2.9490931966934568e-05,0.006246505735540829,-0.004074025946837026,0.012762979443583317,-0.01061506224358986,0.0010436214353152775,0.0041540609886039906,0.032299439793295144,0.2632687612049713,0.16297070977653474,8.169985829511169e-05,0.003770060186912067,0.0037013078859226027,0.004176732671945785,-0.025489452747500748,0.0002091529137866217,0.001032092257858907,0.018411142617874073,0.02478521719147889,0.0059616202998548085,0.00042637519107192537,0.0032697865284259304,0.01996928965482905,0.07048124331466447,0.010567536233480642,0.002196035725687859,0.007776388060142745,0.00781664575704726,0.029002754856016166,-0.0671461759070512,8.647121260789367e-05,0.010091761571955958,-0.0016977849592439737,0.002102988804521713,-0.022348251626894154,0.0020068869686156775,0.017438727284763682,-0.07795009411783207,0.342810350366746,0.1391187017880032,9.009044963055837e-05,0.006603552871638297,0.011903985010313043,0.030239833284544944,0.0013524412493067257,0.0001595781238900569,0.0018705494251380738,-0.018993598567628264,0.07421898390785832,0.02511735853562099,6.246060342129952e-05,0.002168354735758214,-0.038523844472050144,0.13902639655141466,0.016463131014409195,0.002626336760370334,0.014754364562928838,-0.02779494152953417,0.14433766450619814,0.0005488766530382511,9.579143112726849e-05,0.0013016530696234297,0.00040464343752238073,0.0021196331849265963,-0.010774188585945355,0.00013844350173322287,0.036428655710771654,-0.03435336227262293,0.17530464103892926,0.06966875523136115,9.26882183342455e-05,0.00538094994354963,0.04269279204016123,0.1642073892873792,-0.12997821410191376,6.534453268607868e-05,0.01859098331206067,-0.040415561682817694,0.08508851542889484,0.0017351661871410238,0.0002315832084407383,0.010553349539488296,0.011662772263265016,0.040854514323481354,-0.12149999404753757,7.098655810160183e-05,0.00588903468818317,-0.014346427186023752,0.14801702864272873,-0.0391884497222648,2.5007101806637556e-05,0.0072665935653048064,-0.010015679499993865,0.027891608246206727,-0.02577360745848224,0.0001255208370199009,0.0010773170408988632,-0.035931762218807194,0.13643424038232566,0.06061389828280758,0.0004151290357751513,0.007785676224003779,-0.04351350634898242,0.18652204453938478,0.012194394089047687,0.0001336182283641271,0.021809186430000127,0.0003069473315395533 +2019-11-22,-0.02104133042923074,0.139951406604235,0.01733142322991942,0.00015899465059418224,0.02255136730268854,-0.03789723619099573,0.11235809787022036,0.10249408145304721,8.093077265722859e-05,0.0074482891531975765,-0.01982397719214403,0.06189643704497871,-0.0053732424820495455,0.00014815705731424737,0.012672230236540632,0.005537330173866872,0.006344923749001897,0.0012230885574941452,0.0002945383631440321,0.007693326418150999,0.002011491469528063,0.003954162181659953,-0.0035754128863110307,0.0002661714615432414,0.0003972317676869296,0.011076781987153995,0.027835824207294007,-0.009564963697665168,8.688729217480679e-05,0.0003737218488163469,0.022039717030976885,0.06558873851641156,0.008939650060971303,9.859765622258851e-05,0.005720273010239377,-0.031537743672826926,0.27119333213600194,0.03036195083301226,3.987954790488751e-05,0.012087227681978693,-0.0066301779201207835,0.00518795801323679,-0.03468987683965534,0.0009855383233898622,0.012891233984927036,-0.014081021653279692,0.04014738139506747,-0.024916503482183272,0.00012264188838080422,0.012943639599156172,0.010579186201243006,0.007357728586741781,-0.03895738470233465,0.0007028017850437131,0.0003166983086769076,0.008672462126283986,0.10628513809391478,-0.05262127219841345,2.4316029420697414e-05,0.0029523624900308727,-0.019751393609629398,0.05273652928075009,-0.016380305379189504,0.00011125953415992251,0.011299916901011186,0.022344416594282192,0.11819707755069918,0.037847672112120985,5.321377874257665e-05,0.020654455204219685,0.00878768390921453,0.008076320141282036,-0.05708012700838528,0.0021221880945072437,0.0043468827135330354,0.040925236406046915,0.31498819314617443,0.011799911410450309,0.00010691755761928897,0.0004388896430934174,-0.008738825445996594,0.04869672893711614,-0.012168835513772831,0.0002778826979798741,0.006537267812409636,0.01134480988336145,0.06981947490502709,0.0008598795304330496,4.5770072471958675e-05,0.019716173666003853,0.0015204817671812976,0.007489379172302774,-0.005252226031855312,0.0003345971254043529,0.009722085019622791,-0.003264456903191887,0.03801574653432136,-0.015048809241762355,3.563507255623264e-05,0.008664074822191283,-0.0039738962664245675,0.04197546039559832,-0.041793409307086735,3.1630260378277316e-05,0.003146176705504901,0.04755492371996729,0.13143709336142903,0.05284216904218945,0.00011654678526361869,0.012384192172593579,0.004354033289159992,0.027929171834419262,-0.15322105419685988,3.6010243926266395e-05,0.003349425810070747,-0.02461749855031013,0.07944102838029718,0.040723074745486185,6.870311774355839e-05,0.0024403759910648303,-0.005422961688178868,0.019587025496913667,0.006563715301956181,0.0001265950262655537,0.003118616581021462,0.030794041330474992,0.031634102390715964,-0.011872099531533195,0.0005563995034437503,0.0024716890825772974,-0.052664077232436886,0.20723829651847678,-0.022193842864914506,0.00010696223629562503,0.006640620222840831,-0.021407893448721543,0.06556443858568956,-0.00481318987577155,0.0020956790043985454,0.013263569086483313,0.043622270305686175,0.40450406365600355,0.012672305173550523,2.7731130265825693e-05,0.0059914148526250145,0.011407178983646593,0.034555997326147246,0.008623039506184716,0.001079260031232665,0.003253299329060466,-0.0011667799812755937,0.0075607164146956505,-0.021747211759209482,0.00010276652314768671,0.007412911151520888,-0.007225325663485978,0.010315456541511205,-0.003010914870188237,0.00016531579849543394,0.011147068802386563,-0.028803688728492018,0.044988491273761325,-0.08937972301121888,0.00036749428853891813,0.012252435430654783,-0.005159449711080725,0.01792443496221035,0.0005328392860437058,0.0022310445927087243,0.0034767810551392104,-0.01810893506646575,0.061550173653243535,-0.0060986386304399945,9.439608862206479e-05,0.0010855193691335107,0.04862746647995421,0.07389342124190192,0.004105032376287007,0.0016358860924084132,0.011187361262352747,0.012705451351666577,0.039782738541884015,-0.07566694947240814,0.00012653522993820066,0.03217592932372033,0.044510873452472725,0.11941969625516391,0.05920421958729409,0.00015109515222817515,0.004628486307220208,-0.014840215580112759,0.07085649773287507,-0.03971252244216903,5.11180704898999e-05,0.020359460725772632,-0.031411498668696865,0.09582257695920444,-0.16034601800813958,0.0031069829443658424,0.012486384273173728,0.013956983359285715,0.07817914096843116,-0.0698152303566717,8.880578085393983e-05,0.02129794561050724,-0.014305307979564362,0.08332189234206798,0.007686967724198928,0.00012450846295661378,0.0025164741383252765,0.029941416680842516,0.1681715195279857,-0.014978027641450826,8.421095559646849e-05,0.00909986714371409,0.04718493935046508,0.23823352835719788,0.027559156894692214,4.977920004087114e-05,0.0038347355333335203,0.038065843161583034,0.07139450208084093,0.006871378351170037,0.00025995613953820417,0.012383069446520987,-0.011067009140462176,0.04914007055458739,0.018148112281938557,5.600268750775918e-05,0.0031205207389101326,0.01249031222703575,0.13594088457152856,-0.0178019118699689,2.3705793049219404e-05,0.014854812261855572,-0.0103151197331432,0.02766642070437762,-0.007211656916245158,0.00013032575852558824,0.0015593815866840395,-0.020145786547001446,0.08785924886964412,-0.07772171683721435,0.00036143042878852534,0.006208125554212691,-0.011385317981017164,0.04941913341463409,-0.006318098283491388,0.00013195377976862757,0.013408729117735088,0.0019565707706581258 +2019-11-25,0.02009909477706243,0.13208430844752858,0.0017722251723896543,0.0001609206786019376,0.0002288321935235069,-0.029831839216671496,0.09517295226334561,0.029697541998597265,7.521024699280363e-05,0.0009344563914437647,0.05578366715241286,0.180715098205976,0.08630996148143144,0.00014279395656731735,0.012566594880563373,-0.004193633001454538,0.004249756236854476,-0.0030979784214546393,0.0003330383587566461,0.005463579842235902,0.013219100214865317,0.036343595380814234,0.014841250279767383,0.00019031445628785152,0.004738992166066329,-0.00016764339182245668,0.0004591984236637763,-0.0013435828538343212,7.971366741482387e-05,0.007933297133859455,-0.007929627944018124,0.02859681504592338,-0.00341027089859308,8.136263394152641e-05,0.00710834971928462,-0.009835882722127168,0.07112700290692828,-0.003657316643327515,4.742173585935784e-05,0.004975282823370522,0.022185228302047336,0.019402740486005352,0.03554330560942852,0.0008817502955985919,0.01860742398409051,0.01296841253307181,0.03484242069582507,-0.0035636809490061723,0.00013014886449740667,0.026680040477088756,0.013071226932256647,0.009549910175449521,-0.025814295631689556,0.0006690235818696252,8.299965468451477e-05,0.00755615822924004,0.11132256195807497,0.014482954287719636,2.0227426908438164e-05,0.01039448791151928,0.035701602083942165,0.09207372212770248,0.01577219414477372,0.00011518688743371545,0.009125734313988828,-0.01269797082279748,0.06328426277022911,-0.03541587214947438,5.648074518578622e-05,0.0011929412766488396,0.024735233458907022,0.018121575706385652,-0.0019399888328865257,0.0026622144021143093,0.02093299849243573,0.022895477431074934,0.16151046979722736,-0.04718851840846627,0.00011665440194668423,0.07104349247523957,-0.0056739344880738325,0.028761212187431228,0.0006777187672566405,0.00030548181541519324,0.02357426192190088,-0.018634719692791454,0.11169462355432083,0.0065067486960017195,4.6994988929277475e-05,0.033858891264824685,-0.02153515982860619,0.08778086870500106,-0.022702912635646402,0.0004043291309582896,0.016739043439813726,-0.03356298331300051,0.4908614597175273,0.0030802936922306665,2.837473758147708e-05,0.03186819986752529,-0.016027934791179838,0.16196463211275158,0.011393609310093996,3.3062758662327e-05,0.011598167318819545,-0.03473481504237307,0.11601133677937667,-0.04243438599668138,9.64466873071588e-05,0.017961895524229634,-0.05356378104370537,0.33112168199193726,0.05760051159896358,3.736594607354172e-05,0.012196908330679527,-0.009140543736246162,0.026825549433190852,-0.016367913561737956,7.554414104179197e-05,0.007144183437742092,-0.015407349976506755,0.06193326566711313,0.08463012144144841,0.0001137503031644973,0.000941604312504107,-0.04203149838616731,0.04057150712140655,0.030444631634182342,0.0005921466723152206,0.016064565414670835,-0.02128777748021735,0.06455288242888899,-0.033798232079626504,0.00013880358774286906,0.008633864125926738,0.03696742840775499,0.11826727778267848,0.01117940909904242,0.002006198099305104,0.0016724246608650984,-0.08561339669699237,0.7383443563338948,0.3613085731523236,2.9817069912403895e-05,0.0040516534714227495,-0.0026164745889593623,0.0069621505377390975,-0.037211460537688104,0.0012286958220269484,0.03999855328683482,-0.02845374180099429,0.2070374396202805,0.11343071229975633,9.152002736057796e-05,0.007992243062883247,0.003468082630362729,0.00634616587197653,-4.120185843566583e-05,0.0001289803061539743,0.01258116388432962,-0.007643798074526833,0.01032145584336805,-0.011087638402785437,0.00042508145720275325,0.011257416443232944,-0.020340087802500576,0.07635086984368503,0.044756355715333075,0.002064853172367835,0.009634448237442085,0.01137413139310095,0.042547534353639824,-0.005871757432680424,8.576976372008747e-05,0.0030456280906331584,0.052527020185729544,0.07618413653120285,0.043005993533749724,0.0017139391792451823,0.0006466588850836136,-0.02216698059428464,0.07773727619710762,-0.006630963924259174,0.00011297783760430329,0.012412782553844367,0.03638860373921364,0.09066006971379464,0.02904959207863512,0.00016270830432949806,0.004097696713117558,0.03425706564937836,0.15695797744207302,-0.04776326981841197,5.3269754000341954e-05,0.004397287472211743,0.006280492726264358,0.018870024666195164,-0.012602091136000639,0.0031545637402317487,0.01830389977164441,-0.035259242863343074,0.16282875715540227,-0.07536849287081054,0.00010771655243785574,0.015506161631528499,0.03568024373510697,0.19368300458060797,0.06331266114266969,0.00013359711605442267,0.019412067247203013,0.011415975428913799,0.07684654601097878,0.0003168294226768141,7.026472839657872e-05,0.00451273880283945,-0.025632086524048667,0.11628979581492076,0.030793278146939756,5.539744657663246e-05,0.009135701782575327,-0.023850398698629864,0.04061112274704918,-0.049491960248732106,0.0002863386949048244,0.02736753314167573,-0.0008803728870487333,0.0028687150779963385,-0.004471310541898014,7.631213760167463e-05,0.002116502654811318,-0.03787700930975156,0.33327525358843,-0.019052936264572207,2.932269604814688e-05,0.004503027158634775,-0.013504953346908398,0.04350336004316372,-0.029344493797463688,0.00010851237056511461,0.00023931329602644162,-0.01479601523813388,0.06483058320524694,0.009081616334522372,0.0003597433813058953,0.006530909860601917,-0.019230211461957886,0.10173792095258048,-0.013072332931075795,0.0001082612400928638,0.008450224993680018,-0.004575916916038668 +2019-11-26,0.01510922643764474,0.09412823339749986,-0.003355914079206178,0.00016974965719312277,0.012599974929422122,-0.015250339323105905,0.04971235893535027,-0.016819381911665373,7.360810918195484e-05,0.003935998059660955,-0.05708072857576705,0.19152682329436155,0.08024318967483085,0.0001378659782800292,0.0015246378059943352,-0.016657196596422917,0.016964053651808534,0.024830593033524594,0.0003313905581502951,1.697613730676289e-05,0.009065198870541507,0.02326935002060948,0.004176524431601,0.00020384067835572416,0.033127659340839014,0.00020332170624885024,0.0004307435060391952,-0.004881495113664211,0.00010306512794602825,0.015026093285510723,0.039615064362366975,0.14567322865597454,0.03871990218635511,7.979404386772918e-05,8.852389625890744e-05,0.01444351430134701,0.1303754832644891,-0.007398233016018365,3.7990548077565077e-05,0.00014139754562861193,-0.0018985302511378204,0.0014283730027111181,-0.06831351105719981,0.001024992470418453,0.001751422089975906,-0.0017223109653530892,0.0037968415003034116,-0.003194512319199336,0.00015861745783668082,0.03792604334675583,0.004550286376763266,0.00357421618027559,-0.03930955216747272,0.0006222748832564306,0.009019323174751046,-0.019997746046933218,0.28784039765475655,-0.006414364671247887,2.070389671194409e-05,0.0026875864060360577,0.06383007750637733,0.1674963166257663,0.06484248535807832,0.0001132064439810574,0.0001010027303361583,0.02265539281167897,0.1351659547967662,0.04267284532800627,4.718088667730167e-05,0.006704040019563521,0.02307896680695237,0.02412263671485761,0.00042213129545001294,0.0018660125429987241,0.004303813988217397,0.02763252707784335,0.1595967793337932,0.005878703149062144,0.000142478255504239,0.012167863483605454,-0.005454612361496574,0.030428861396523725,-0.05970727028051312,0.00027757888203930103,0.01747155974195925,0.03864979275828974,0.2387832998780248,0.028285240026810002,4.5593630562247486e-05,0.007021587791765993,0.01682404623007158,0.09444041616012053,-0.054058728410146334,0.0002936022424954122,0.014180340349287484,0.012845666423225464,0.1564026468139758,0.013240468135600961,3.4083389130139846e-05,0.031962216616337184,0.01953475998223144,0.2162911574501685,0.02119776623007941,3.0175260215833918e-05,0.010561007659167234,0.0322054259391102,0.08770390505965418,-0.05581346504819063,0.00011828587101526036,0.005797611875439939,-0.054681564463802186,0.3955007759235016,0.06451439861165473,3.193640062663496e-05,0.006576669938916497,0.0013997201217509619,0.004429458562397296,-0.016963728652978738,7.005964703132172e-05,0.0008433501178563159,0.004051389147816613,0.01590658191000233,-0.062302044614278365,0.0001164597061226012,0.001580656372460705,-0.016394788860265727,0.01559261833000622,-0.0020694268892934753,0.0006009832124935447,0.028809814610029866,0.04333383506967346,0.19038619977918791,0.13038455966494103,9.580268257473834e-05,0.008982238191995541,0.04081966690041628,0.13686449021447306,0.0043796194593804716,0.0019142464352400349,0.0027305224988110263,0.04943863330218964,0.5181815694431171,0.03418830440202531,2.4533905589859022e-05,0.009798721031729378,-0.060155384257718415,0.17947371673560306,0.05744463481081043,0.0010958343717910205,0.000637399015963094,0.03380645724894392,0.2713742390998621,0.03665573779604064,8.295769674444422e-05,0.008211897534129582,-0.020408370506326625,0.02863082424770619,0.015228337556674647,0.00016823636081072675,0.015862453042737687,-0.040035995738678734,0.05454832752948934,0.00048572108987330616,0.00042128219896369517,0.009712921707679503,0.056272050506661946,0.23360789271273852,0.14861762900576075,0.0018670483728120272,0.0011918366613267706,-0.025305711620694362,0.08564885634376695,0.011913082605060807,9.47954203568948e-05,0.009984764032474298,0.07421164374476656,0.11831248194161542,0.03326594380454043,0.0015592605021351408,0.004882827907442757,-0.021654021904559517,0.07381503911268272,-0.01709819949394134,0.00011622772952168412,0.012506106938796446,-0.08903307147158515,0.2699627916726382,0.3002946349053372,0.0001336927392034544,0.001557907631653175,0.029673577931974737,0.12797130992359723,-0.09370989894411925,5.659410871305148e-05,0.010129348175941076,0.0047093673271594435,0.01394983212240273,-0.06650975603346246,0.0031997175487740778,0.012295165226278819,0.002523693568100753,0.012302754764173512,-0.0021684303383386274,0.0001020410278230811,0.014994019671990556,-0.024770617223671784,0.16285778118566033,-0.0030003718412095065,0.00011030345073291772,0.005501218685307136,0.032267813211598134,0.17281278356617968,0.009042467587997654,8.831660530782274e-05,0.0037485670225189064,0.08433814228321267,0.3816587407726284,0.11568216829841774,5.553876425391443e-05,0.010669604226533388,-0.0034891359821285282,0.0072196566536478525,-0.017868540995488298,0.00023563008795742118,0.047158745461231284,0.014911254139233348,0.05511696108032903,0.016778555906853197,6.727338546458617e-05,0.0025654857624993533,0.017056238073968197,0.15852455390461767,-0.016083810578118054,2.7759906248720435e-05,0.017067753472890624,-0.020503201932160844,0.06958152459642519,0.025648584416810935,0.00010299987869549512,0.002671055609019441,0.005273499987463816,0.023807658417863017,-0.031483615559798034,0.00034914854567348483,0.0034335506364828374,0.026998571331326368,0.11792160386400986,0.01091726881285192,0.00013113517555594922,0.02245153732693114,0.007527337827618821 +2019-11-27,0.010543583358060044,0.07195444044376156,-0.048367802418442137,0.00015495914791310554,0.008665421486740058,0.032767729839053475,0.11760336474016674,0.025522145329325494,6.685549881067271e-05,0.006347585287240411,0.007623547231988789,0.02451592485331976,0.000761934583725083,0.000143848725487865,0.006559957310961106,-0.008142502580231806,0.009302165447755303,-0.0005602701855433233,0.0002954212297085301,0.0010679042423666282,-0.014405564548161266,0.041695232260317884,-0.009633017854918623,0.00018077636841955995,0.0146229053965176,-0.011938818795270431,0.03242689555514152,0.016465163931478063,8.039012939763656e-05,0.006701151155357959,-0.03185245292554044,0.11510722627863795,0.0030680497778662877,8.119516128590587e-05,0.03164863134549461,-0.06647150922568658,0.53916254198071,0.17913924030022668,4.227800071477251e-05,0.003367704229207337,-0.004661562982882302,0.0035185741670456247,-0.00014886822506537833,0.0010216676289661086,0.01274603742800121,-0.012935512155993697,0.03280018339517896,-0.0034479759450802647,0.00013790158022897135,0.005853011406051069,0.01595433749661071,0.010262827748836485,-0.03913187337206769,0.0007598643916495621,0.009568196847981615,0.0015366923660022629,0.023010852963757912,-0.003282687033869794,1.990109651223564e-05,0.0026287375058557678,-0.00917363441875058,0.028034218503601358,0.0068811564785255935,9.72084487708759e-05,0.009905233341000266,-0.003784586813150991,0.019065670445389437,-0.0009753098345478933,5.587637305929095e-05,0.009514538739246533,0.02499176217824406,0.017484240600275338,-0.04301207747562217,0.002787873590771813,0.01342677516570291,0.034293331104440765,0.2273228530915965,0.000657044472538143,0.0001241419841057628,0.00038392166618836897,-0.022994930242709804,0.12257907859397883,0.019112075678785402,0.00029048517694645884,0.037463569705078296,0.04863393295913849,0.2747588735067691,-0.02644250756118775,4.985958055247955e-05,0.0265860218144022,0.04985193469544793,0.28054633779578203,0.03572627749813446,0.0002928628072549092,0.009420847963030332,-0.018519942563092796,0.23384297569201717,-0.04957683800893813,3.286590063226554e-05,0.006964738683440504,-0.009389823796930234,0.09254473075785302,0.01015853808937882,3.389904437545527e-05,0.006092298137303751,-0.016914501264827873,0.05526048461820105,-0.11654090584067686,9.859780879539062e-05,0.009519958907519107,0.022989720385441337,0.1751886974119798,-0.06809990829050014,3.0312376165429427e-05,0.02909064448677464,-0.006287268677124054,0.020374213479732,-0.0021231326952909657,6.841613712261825e-05,0.014891078725296804,0.028151793363477378,0.09746009008056306,0.31323385518035124,0.00013207719993962996,0.005869062428929527,0.0018971399037138075,0.0015878604965335829,-0.00014883912333635258,0.0006829085907415279,0.0038742471520541695,-0.010479275262021116,0.03921623453700891,-0.00078788011641398,0.00011247379941562364,0.012147230108229207,-0.060421232426382296,0.1887006575432493,0.024507501912110857,0.002055111268807199,0.023880703090254973,-0.06173672983517785,0.4492817150811238,0.107721692359172,3.533516085567004e-05,0.00554384152336636,0.028110317108033783,0.08867514419753994,0.034879084120333206,0.0010364183919920273,0.0007371374863525794,-0.008776941206180446,0.06589295628130117,0.009371549047532833,8.87012703805232e-05,0.01040386978427361,0.02606407848497385,0.03370719707764488,-0.18740643073783372,0.00018250094632314462,0.003167369566988756,0.03000294035871817,0.04259319467624096,0.029750891915547834,0.00040432213440537527,0.0342577958694706,-0.05029071115014712,0.18150890622518698,0.13691476032715955,0.0021475346428665994,0.023715585164736874,-0.010620782568686938,0.0417355475840353,-0.029072720617965897,8.16471016223268e-05,0.008687347743682548,0.026161373571034457,0.03762928603279216,0.0017377577117041424,0.001728270654956507,0.009272853840375333,0.027234502042960462,0.07740745048307507,0.02297135261342797,0.0001393967703763144,0.019630088273174064,-0.00029672704109040126,0.0007491867835527936,-0.043315948788307364,0.0001605563160085676,0.01027869191889911,-0.028387610812742988,0.11572347286236732,0.029651990203792132,5.987166133105022e-05,0.00439059238456816,-0.002682829428438353,0.0099604609503095,-0.039461345339642365,0.0025528875322206276,0.011059723956951605,0.028521230661369988,0.14301185016854473,0.013642542069978131,9.92057412456987e-05,0.03316135774566721,0.03466527344256404,0.18155289055785664,0.056214696576092384,0.0001384689014947564,0.0057139631432957545,0.047389310520245365,0.2322065527905986,-0.0512273808148325,9.652829108157342e-05,0.008550674482015538,0.05687778433968278,0.2782895433184837,0.02158367945991748,5.136806151735232e-05,0.006591851834578412,0.00046563545624971677,0.0008855125222722856,-0.009360235165881893,0.00025637798488830434,0.0005900414087303368,-0.009765886498675401,0.04795532685933782,-0.12220427440520043,5.063947481531126e-05,0.01355026124356893,0.02767873680645001,0.2812358005731333,0.06532424779109511,2.539258688290758e-05,0.01738124732260977,-0.010388789119773582,0.037856261579121545,-0.0047404151188570895,9.592596379911894e-05,0.0018134645535942667,-0.0040162659704939254,0.015090642703133234,-0.0034765013747350016,0.0004195103691499689,0.012018185548376588,0.04679730806094597,0.2522910335424221,0.06220485629620291,0.00010624068245379066,0.001529467760483236,0.003596417793267314 +2019-11-28,0.02924160207273924,0.17475128408689142,-0.0984159175862503,0.00017695684683796437,0.00031353896273940743,-0.00091430766410012,0.002951624571397312,-0.08411352282195496,7.432617263443021e-05,0.0015895798737547671,-0.03629579067237096,0.12606452198718457,0.02420477463393124,0.00013318661604725158,0.028115677264165015,-0.006950561214955436,0.006223202493452452,-0.018804048831258795,0.000376941362839869,0.006766890285365155,0.024368008586389454,0.04869383095395958,-0.02144845759391989,0.00026184474813851377,0.013131040658240055,-0.004381896673713144,0.011330015890703695,-0.0023394146512110275,8.444585814953396e-05,0.0044258732644608025,0.03698028557231689,0.13835893797040744,-0.009308617576008963,7.842470541298758e-05,0.0017698450523246018,0.020771885893500572,0.201810652350591,0.03310960132381509,3.529640357377818e-05,0.008545995739303227,-0.00869500398666942,0.008633989881998119,0.0009315393547084389,0.0007766101042249469,0.005402868055712579,-0.00945312358834247,0.022188747881076477,0.00019675194600483884,0.00014897192395799252,0.0004339953129027293,-0.010332870273582161,0.008238373532715185,-0.0639075540623615,0.0006130612353379136,0.009298708269845213,0.003803514319961533,0.04805819386356896,-0.009076728331674746,2.3585245440767986e-05,0.004279179543076936,-0.016514681546493677,0.05955593074849522,0.012717432715285151,8.237515128441479e-05,0.011206822853685463,0.0006578020004005247,0.0034984471027001613,-0.08815919728862842,5.292753847332623e-05,0.007419280256389577,0.002118037585918965,0.0016939036116850393,-0.008083596272899528,0.002438753699624327,0.00985992092723299,0.056365875459467106,0.2847362678399717,-0.07546078821341884,0.00016290168489571817,0.01695721273195292,-0.02415591296747926,0.12504688833311842,0.018753023924871482,0.000299129192710421,0.009878449556766504,-0.0480402525891811,0.3606417838737864,0.03523331962635413,3.752236429859293e-05,0.0050298934149941455,0.020693506258386465,0.11305713176256785,-0.0053783376604920885,0.0003016636120442935,0.0017093678944530045,-0.027640671509304625,0.4232595590315318,-4.161198743931191e-05,2.7100171908962263e-05,0.01875009556574395,-0.005858697873835829,0.06748227898620728,-0.003535635164167635,2.9006349172007026e-05,0.004843692770498549,-0.006168491245586084,0.016844692016148546,0.00016251444045737185,0.00011796105108676183,0.01778533727761068,0.05013466999123728,0.39032901301084305,-0.11235402405235301,2.9668781026256054e-05,0.014320437860277884,0.010152912203992042,0.027575051010152483,-0.01929099092402325,8.163035562088857e-05,0.003038054176138492,-0.026546796583056902,0.10705482837079629,0.1800970451877702,0.00011338470071841413,0.0008157510309642989,0.10853114977103444,0.10328867644822685,0.12671136027568203,0.000600588833026372,0.024226522995749587,0.01027560884820038,0.03848147008281962,0.014810082113980457,0.00011239368704243318,0.012022896077133976,-0.0012740247012368998,0.0043393699855810135,-0.01640615270285216,0.0018843880535582454,0.011449970359372218,0.03678839708394142,0.4329014327756679,0.011659011482281996,2.185264635681172e-05,0.022662742297018944,0.0032098370156780132,0.009247776535784777,0.002758150163832151,0.0011347937204913238,0.020293951365839134,-0.004715084268719566,0.03853475314970372,-0.0008228613551698914,8.148215770111294e-05,0.01578196301090608,0.007542761949416608,0.010931977582869557,-0.03987533185914268,0.0001628459849800888,0.007268804829879099,0.0006017899167371114,0.0008564230411584115,-0.047118247719844554,0.0004033299545747193,0.014717712015870514,-0.0060322540596474215,0.019020560169154432,0.0036558044736241043,0.0024581402748261247,0.012836305218285894,0.00021513275901979023,0.0008962645717901853,-0.12434572795060504,7.701240529402485e-05,0.009697731004643545,-0.005823765368186913,0.009259417907229546,-0.0013923948251365818,0.0015634981642760482,0.00821262238835617,0.029172205482842748,0.08273263157455774,0.024361134895068047,0.00013970387802688487,0.00671295646313346,0.04248259612915246,0.14453250302628515,0.020373152633938733,0.00011915325231306347,0.0232535406124643,0.028030055014073275,0.138025290109001,0.0058166566224433155,4.9565467471630765e-05,0.002050557284848882,0.06830334079356039,0.22409541804068506,0.1194207967657407,0.002888863536012531,0.024830572532056353,-0.01315961718817267,0.07030845277286525,-0.011305292723383228,9.310570345726137e-05,0.004870203706285469,0.06334167514409815,0.3265694924957091,0.1415899525661803,0.00014066132941177492,0.008359841956249843,-0.014927246333575754,0.08470559101036214,0.0257551685535844,8.335205689809685e-05,0.015747175786783967,-0.04872588973533841,0.21733015879092446,0.03709693790008557,5.634912487506648e-05,0.030023992505713765,0.04268749367238498,0.07709682478487168,0.009623807131954128,0.0002699563568889346,0.0033792418806274107,0.030340937399409577,0.11463453944797757,0.12280242180554318,6.581545375041936e-05,0.002659425688104267,0.009706982528108733,0.10883351578024729,0.006340490236094519,2.301192100173944e-05,0.008856694886046144,-0.0002570839858736699,0.0008275867928428718,-0.02228768458139493,0.00010858515057206949,0.006030652171156881,-0.0034525379393666243,0.014198930276933698,-0.0008988128372378563,0.0003832752750426017,0.014772491989166251,-0.038165461139963316,0.19937211795250961,-0.00670287709715097,0.00010964223699256963,0.015027790690389247,0.006642407614982611 +2019-11-29,0.015010647427812175,0.10014368440463388,-0.007583482693915141,0.0001585121084046162,0.008991862820834891,-0.013924251400830751,0.0522829379981462,0.006713455293885205,6.390316934390233e-05,0.007182168986969493,-0.012525671284357907,0.044306916822313316,-0.0028271805504329955,0.00013077558901185933,0.011086458992250008,-0.010214422471231947,0.011041055584666051,0.006795712673497977,0.00031222744591614016,0.01929770204475536,-0.02411964765323791,0.054916377970689205,0.01458089048752287,0.00022980890110900636,0.017534194561739266,0.011436877362097794,0.02609043600232207,-0.14889932496564867,9.571342720473152e-05,0.0019053043182930998,0.02839009037872531,0.1021002435443038,-0.018585585324814222,8.158866974250674e-05,0.0023367114026709534,-0.004977690498852306,0.034737501297768945,-0.04868216594064874,4.91391826218704e-05,0.005348148304534167,0.004559770101271665,0.003212850019973813,-0.02396538387138856,0.0010944534146850502,0.015479650377932367,-0.004043789611404445,0.009365706250425647,-0.014190454037536993,0.00015097669230091504,0.0015905098763427212,-0.02470299171254125,0.02439043692747812,0.10640295583939462,0.0004950560024869324,0.0011723345701589519,0.007196181551724731,0.09214783920463014,0.006042454789191844,2.327232349743481e-05,0.009029470286681005,0.040956127152107266,0.1056898359002831,0.01637518609965189,0.00011511626675793809,0.009714761176004377,-0.0019071766335064155,0.010965241708559368,-0.007080274037920957,4.895922405668138e-05,0.005173688529647817,0.03364893397181742,0.036842389044616224,0.006440001032810039,0.0017813386798867228,0.013075109485880268,-0.01846925838665147,0.11634478076835854,-0.07272146133970267,0.00013063352902431942,0.026876405399345382,-0.015458725533945157,0.07445177615534795,0.0006313447516313806,0.00032151915769558465,0.0192484630914272,0.012985006468100914,0.07046078809720592,0.0018055788973593684,5.1910549946955755e-05,0.027918166290128457,-0.021558970919295914,0.11407275665582871,0.016136405496815713,0.0003114819589880145,0.010845588211986668,-0.016318367524390448,0.21888424724288033,-0.06328072249820176,3.093801418245756e-05,0.022906648972003736,-0.020993666165963015,0.19647513648869372,0.05009305320474934,3.5699521646570305e-05,0.00044626013755750355,-0.016874334462621952,0.04194989641835779,0.01017832447668642,0.00012957419395942578,0.0006802697654010101,-0.031397184296525944,0.24092545825068284,0.022043394641227104,3.010234886598604e-05,0.044305346752071456,0.006804096403639216,0.020955484545019085,0.009585514334942808,7.198634662653767e-05,0.004654658561917432,0.010045712004444547,0.040502359452814524,0.01764040867275752,0.00011340938501185242,0.0026801212042496625,0.0123580086533127,0.011480005496978498,-0.011692802349845812,0.0006152929802624944,0.006378461650161409,0.00997078805369911,0.03321272902259449,0.015613245194659819,0.0001263603824181611,0.0028615805328280047,-0.027380361488577948,0.07911721544111197,-0.009168206099739297,0.0022211984338546386,0.0020058902451533965,0.024065136089437552,0.24667914777155522,-0.07227237512359926,2.508638470070507e-05,0.0017313570779319849,0.043110541888832093,0.11887227500487017,0.049384158992774076,0.001185698245471146,0.014493099781343537,-0.006583685931196586,0.04511352086947898,0.0004894921767567353,9.718249071755233e-05,0.007193835897339723,-0.02575594015776527,0.03257260628917978,0.07324237363062476,0.00018662519895652402,0.0027911263933103675,0.03810213359830431,0.045707350415583485,0.04394195625439258,0.0004784837164419294,0.008743413668090925,0.030676926237988233,0.10369793175514226,0.023052998816242252,0.0022929368224554967,0.012645328720531654,0.02712223572081796,0.1073954822179702,0.0621544781750442,8.102701577874827e-05,0.019191867599455983,0.06493054297612096,0.09092402055981598,0.06080455051875962,0.0017752012496412798,0.01952413855217175,-0.0021804294859618318,0.007196504412676258,-0.007495969320118464,0.00012004290228446448,0.01784499100184348,0.006781702377923007,0.015640125977806882,-2.4583286527468247e-05,0.00017577570788486938,0.011490276542827848,0.01167927022547595,0.04796917860156076,-0.028561759668000147,5.942474818123326e-05,0.0065995986076542515,0.050498596667525764,0.15942442148129848,0.043807575981343584,0.003002220027070418,0.0009865399425235887,-0.03705306822318209,0.2118662406933097,-0.03846296736809543,8.69967414813026e-05,0.002101046378393411,0.04704782795108253,0.22161835933684804,0.05533880226788881,0.00015395529392560483,0.0010291677646145332,0.00871835456130286,0.04705842380289108,-0.04162750478863163,8.762859515140155e-05,0.019435173546284726,-0.0016192110811376235,0.006958763887763494,0.0034637652814221054,5.8481534709644615e-05,0.029476306951947844,-0.03200160544667975,0.06439477970972136,-0.03743513037583988,0.0002422983734061883,0.012782160620141293,0.00829628760391695,0.03549962738940899,-0.06998018621899826,5.8113145122535555e-05,0.010679595772754107,-0.00674448313571142,0.07976532179662175,-0.01686474802529227,2.181553343907312e-05,0.010439602605980864,0.0009566152972828512,0.002785193337215222,-0.020582087659576535,0.0001200579541231422,0.007476763797776021,-0.016501720635772914,0.06360075116276759,-0.013936253930423453,0.000408973300591787,2.768593909012896e-06,-0.01572175433333691,0.07306152043301485,-0.01236616127354256,0.00012324919630346377,0.0040861418674720375,0.0033264850675784295 +2019-12-02,0.017434846289676283,0.11271245635171898,-0.012679099430564174,0.00016358097495337945,0.016856532093786788,0.035381280711937656,0.11186434197505499,0.06343725090593104,7.589137186135274e-05,0.022733814135959315,-0.019395649069849773,0.06624815587674864,-0.05880467901660773,0.00013543400727227258,0.004987857525921114,-0.015949724319254732,0.01848536611607953,0.004324078139106191,0.0002912010796021339,0.00699320356568705,-0.015053642953846941,0.030818128064214533,-0.05570771613492487,0.0002555836852259881,0.010564346148088592,0.015290597779496646,0.03729327544368939,0.033018401799516775,8.952424669056421e-05,0.009208871903791587,-0.05724971812811134,0.21492296962970706,0.09241225412990592,7.815924855198311e-05,0.018192017443453418,-0.027144338891092933,0.2655244355290994,0.016726166485583477,3.5056890246195214e-05,0.006145932511795377,-0.005996661927524467,0.00442931162284272,0.0003789655544548187,0.0010440423511968635,0.007154564904395783,0.0066265051731830985,0.015272830029538631,-0.01610793495843729,0.00015171443678945373,0.021908741000105918,-0.011372109756819565,0.008258095941924734,0.027068604881636642,0.0006731091227763582,0.003096646736757958,-0.00044087758568589854,0.006004492571079992,-0.0035205884203895646,2.1880865539157e-05,0.0026730826275513098,0.03183633407890968,0.07748618920723793,0.008443896338500512,0.00012205337376135046,0.014655537369891482,0.0029412768060441113,0.02039507444426292,-0.005298345886531409,4.059498840573677e-05,0.008323716773694336,-0.0126613579030734,0.011441634056185077,0.013481459022381242,0.002158316866008457,0.00741552031478328,-0.03920691001972849,0.2630211508451648,0.02867507857197558,0.00012266595661855506,0.02326021048866828,0.06796212066603079,0.37381497904786504,0.06900925517415174,0.00028152596383608844,0.004490986439767543,-0.005014893272653324,0.03452099999071502,-0.008983896617347097,4.092034466677106e-05,0.03834713590981096,-0.023177094034434857,0.12211125569830865,-0.004925175699028871,0.00031281681727946003,0.017225677436283764,0.03843727792205525,0.6589975703816816,-0.03640212426911289,2.4204663077761735e-05,0.0125031706536847,0.003383297894419833,0.04172959037426986,-0.007751291000279352,2.7088055209585553e-05,0.0008372080510652843,-0.0221562997239525,0.06192724612895414,0.011665524762621303,0.00011524927969347728,0.002051562219641618,-0.004505722265950324,0.030949679317297498,-0.008563287100039172,3.362796918597905e-05,0.0038997231529705172,0.02622311144559736,0.08847259684002921,0.09673042983178498,6.571323205210908e-05,0.0026703943626842754,-0.011087397118637285,0.04189896861651098,0.0027396725551431934,0.00012099707341804137,0.005864952366376492,-0.043140668184569575,0.03616110042779618,0.040885101471644876,0.0006819001573278624,0.013306380022799009,-0.014915884935365782,0.05653397987760971,-0.010705367554696988,0.0001110517670826691,0.011785659174054405,0.021673103254637612,0.08252346391547723,-0.01127831525026798,0.0016856322261786716,0.06159052141838205,0.009106012427522058,0.09125825592732394,-0.027438945531703625,2.5658913898501554e-05,0.018108444066570653,-0.07560129432941091,0.2352700799365713,0.08871491433837002,0.001050591301338735,0.008902616340836706,0.0053673981796217895,0.037125144148485,-0.0017314447169266577,9.627672511850857e-05,0.0015621593819906067,-0.007728047583649163,0.011038514168848152,-0.00997318099272938,0.00016523595480384445,0.0035449556497011278,-0.027067355734757423,0.03755133218186296,0.01802830564965338,0.0004137370330619742,0.018183096388182298,0.003223429046393099,0.01336884137102509,-0.00795938167280106,0.0018688510376791865,0.014131648403053136,0.018323308578310483,0.07487300961199331,0.0245012546533213,7.85179541985217e-05,0.021637028321369677,-0.05486944043384997,0.07020827972487069,0.12936331874572182,0.0019427610649053587,0.001143654292713876,-0.02276645994566092,0.07872108093322086,-0.027100894870612947,0.00011458308034062423,0.0022194772844180873,-0.017307306668119957,0.04263844973432618,0.004156278351497295,0.00016454642801900414,0.0037913206993584548,-0.01960211890777796,0.08743250119614546,0.002269104240469489,5.4719742102120554e-05,0.0010574748989095597,0.047167702506974246,0.1562003886787197,0.02041564468329784,0.0028620727611912114,0.013646398109972606,0.04776784659305001,0.274587306515375,0.09565491634994838,8.653579285805319e-05,0.01749322068039393,0.018510935213774938,0.1017711092490983,-0.01742491229098935,0.0001319060262405894,0.011708098600734405,0.004633932588070512,0.022936109067912765,-0.026003074712769747,9.556055539944617e-05,0.01636832183890883,-0.0285394882706776,0.09670813359480153,0.03586249531005731,7.41703920876073e-05,0.017206010560335105,-0.00048405349477111836,0.0010411540675849434,-0.0023414375565980385,0.0002266771553551097,0.0030297029100841166,0.0060726480384829485,0.023794004637088775,-0.004080361161989545,6.34636351868232e-05,0.004769702995504752,-0.021148546147640317,0.21487612402615502,-0.04941186168974618,2.539356298245047e-05,0.001805474107113015,0.009128101165285417,0.030936230556323625,-0.043021831883691006,0.00010313878558834896,0.0009673945127695444,0.0011865985825841808,0.004671003814902143,-0.08541329457063962,0.0004004253595016439,0.0007717666937572328,-0.005206206161492811,0.027745806015161332,-0.10069399985138938,0.00010747211909787466,0.002259395692130847,-0.003373728293918492 +2019-12-03,0.015046211035088653,0.11253226326530139,-0.041094024329479596,0.00014139585527710234,0.005394789086093131,0.04473545479741967,0.13128728575059487,0.067525705732682,8.17597799122748e-05,0.0007229471108093227,-0.029648838792520563,0.10354575455423724,-0.004105957658109087,0.00013245629286151586,0.009084457632002172,0.007336567989309246,0.00706989762616266,0.003443864513380051,0.0003502254304499163,0.004307343880509075,-0.003122732125185593,0.007118851332271661,-0.0011811848170858012,0.0002295210806518539,0.01190760836560727,0.012286624493393144,0.028962460917568527,0.018105126819509938,9.262833646831817e-05,0.003625998464975623,-0.016552360927031513,0.05441760062002451,-0.031127910296102037,8.925044987023337e-05,0.02138037576198829,-0.008759556737814596,0.06179926611401021,-0.0010676474700813629,4.860684435056768e-05,0.0036940666547234527,-0.005934860236687178,0.00482528305357238,-0.037500539675931484,0.0009484894142244843,0.021688075330630597,0.008254021023569312,0.021690827688157808,0.003138417981140026,0.00013306116844536526,0.021724579281098562,0.015278463138133304,0.011047626452034434,-0.037357945363160346,0.0006759818692586432,0.003976516623548532,0.00914546170754735,0.13034289075893055,-0.10358293667795167,2.0909376200679775e-05,0.004215870700407746,-0.050289641100315516,0.1711658023281708,0.011456500447719549,8.727956517299894e-05,0.014027868174024325,0.0087516990250092,0.05560406819586702,-0.09496059077004426,4.430447806734093e-05,0.0033751905463566354,0.0324096906359991,0.026269293722541644,-0.030413742366236996,0.002406298285490245,0.0026771806604499295,-0.03716975116982252,0.2676130330882282,0.013574114243457776,0.00011429691309582472,0.007984611605578812,-0.030676505664883703,0.17532717955302138,0.017014638257387197,0.00027093485128527466,0.012417336102343364,0.016663200776462758,0.10605836789533346,-0.0033000717711297732,4.4256232867717904e-05,0.018976080572453546,-0.039774771487130885,0.2096090001237422,0.014672363005626557,0.0003127408227576891,0.012627739228127172,-0.0009752119019853637,0.015306338418676256,-0.007801455607785654,2.643978461981775e-05,0.03382835388562832,0.02900363303721074,0.32169490244031046,0.04135986168858029,3.0122424990206564e-05,0.0115864568404062,0.03512878567244562,0.08046038204960608,-0.03130567976751439,0.00014063836305179615,0.010478376266715364,-0.05677367948282485,0.36149802354297184,0.060972031205826546,3.627717754714123e-05,0.007966124542920828,0.008310927547127128,0.024035067324860993,-0.026020054084617508,7.66622454339359e-05,0.00302848174238391,0.00665753441002754,0.02479188769086951,0.004000753371905683,0.00012278700876190113,0.005590135638110793,-0.03409284412050449,0.03177508394612001,0.024080928701973425,0.0006132705186028148,0.010875615038996896,-0.010321517370892394,0.0436381591042988,-0.0013308393151854876,9.955501347792955e-05,0.006730755835794295,0.04444695960053798,0.18138086576050572,0.005161589838425429,0.0015727864630045033,0.0010617061126711208,0.04221855187951,0.41263242395468663,0.024364681963548445,2.63100804988788e-05,0.031106005467976955,-0.008332667374254749,0.02256969389127302,-0.10392060374341586,0.001207062191379708,0.02958035038202212,0.022480631810814045,0.17720854280490891,0.012464152041962596,8.44791434168445e-05,0.004704620206882888,-0.025536483038835402,0.0356171449865757,0.061682084751579984,0.00016921831522903372,0.004164727707295705,0.009005833300642642,0.012353438225939917,-0.004039041864949098,0.0004184465290420007,0.014961514134067478,0.0020179281010238724,0.009239924519583718,0.00022526137180136987,0.0016927296673994706,0.004733845733202308,0.011472333852843346,0.03853787048729185,0.012126885681820571,9.55112291926024e-05,0.006049439536635108,0.01855219521159487,0.025806485543865425,-0.0018380056350126254,0.0017870785128255465,0.011639036712768605,-0.04092974553196414,0.14790314170153465,0.033427108529308115,0.0001096421850209136,0.020439521720065898,-0.03960581179835442,0.09669174373685074,0.033239853934619534,0.00016604656781903622,0.013938726075397395,0.004691121778173175,0.019618859413801478,5.9411613800851547e-05,5.836021417071974e-05,0.004111578686197806,-0.003954154413820203,0.013318551005284373,0.000580630133796073,0.0028139391685730953,0.025938804221565335,0.01905026365149102,0.10545142935587382,0.010072345410169195,8.986469206665268e-05,0.0008745455760180847,-0.011125588043277086,0.06335749851406833,-0.010403773368942847,0.00012734612582957232,0.0038205182508134566,-0.03292680667051204,0.17468023671717148,-0.07162127156648168,8.915681400085988e-05,0.0011468940565060753,-0.03316807309672097,0.16330540312931321,-0.10330259918211994,5.10466307772289e-05,0.026217458325141017,-0.09187423415735252,0.19674081220290573,0.09913524684660704,0.0002276819834199887,0.016133369185091152,0.028196035251863982,0.11018030074493404,-0.0009641569573344668,6.363535442001621e-05,0.007181766227879259,-6.512131192266404e-05,0.0007008301435539753,-0.012165200731933295,2.3974063624505795e-05,0.005389197322476415,-0.004669493888243858,0.015362738671491454,-0.005605508702891009,0.00010624539924081681,0.0067456965563797225,-0.005935279774845166,0.025486126325434545,-0.02408703134697782,0.00036708389810037584,0.00565885591900105,-0.02309549381102094,0.10013975043098282,-0.06268323880011935,0.00013209687501358235,0.018204592305457783,-0.0044545408915988936 +2019-12-04,0.008186309246693467,0.045394218844834605,-0.13853720762910274,0.00019071031497642384,0.00545099351113193,0.03621249241276239,0.10362823722311924,0.04376397178321833,8.38476380406001e-05,0.00027020996542975403,0.0004555369151748673,0.001221205921578421,-0.016964826590048422,0.00017255672098873218,0.017046969085111885,0.030184427793940385,0.03150478498399656,-0.003657960490133648,0.0003233510560689859,0.006274380519277326,0.007393335812604722,0.015049923548123144,-0.014022738661765326,0.00025704189318952403,0.01240934764827413,-0.022120799815688,0.06511360756543152,0.04630873826414124,7.417811751741897e-05,0.004901551752691607,0.03242304927474263,0.10766458954172438,-0.02889108042526088,8.836307535335963e-05,0.027551885109792354,-0.017624070867763086,0.15509288496136137,-6.155243893659811e-05,3.896843552179323e-05,0.0017122760691664401,0.024481137236833542,0.020600506642512315,0.031016742641679217,0.0009164282612556162,0.009923281705092747,-0.0452885971090549,0.09667790361278919,-0.05584026395203516,0.00016380363301462985,0.0011739129493437616,0.03259004347680601,0.023735480938591975,0.07363710346318957,0.0006711371233336357,0.009801952693304323,-0.010916004815812522,0.14296515443057697,0.03251261957867167,2.2753924373031644e-05,0.004315053016337213,0.017983912796978488,0.0522157552069142,-0.14102072240705935,0.00010231366978496934,0.012517854264970964,0.01320736451349147,0.06124150007068455,-0.05887137782511642,6.0706076188722585e-05,0.009869585874979226,0.02244604509154856,0.020364362424412162,0.017337683873422247,0.002149769940661218,0.00868153389688885,0.02361945550016512,0.17426985940295078,-0.053888353037870804,0.00011153205610717704,0.0009710471983309501,0.00820240690942809,0.04856391386667758,-0.009472097429278974,0.0002615386405260416,0.028540870074731075,-0.010918402967417865,0.05279374244515438,0.0031057751997479815,5.825559273710172e-05,0.005350000807428536,-0.003115475409027904,0.019401827580237792,-0.052459054026114345,0.0002646479256695848,0.002692181021811636,0.028095053796072435,0.4218267553531544,0.006779981712040158,2.7639232353053712e-05,0.04845607545574373,0.004114247849982742,0.03888790548248683,-0.004768909300426078,3.534741081806178e-05,0.006595454196893353,-0.022056364821559975,0.07197039690769767,0.011145723792170933,9.871946534703653e-05,0.013485501782105369,0.035017972957426875,0.2809919722428771,-0.010453604160005873,2.8786539904338876e-05,0.028728113156495587,0.01790086188029456,0.05404371481472248,-0.04441166312880663,7.343551254271413e-05,0.006314500827834252,-0.010404600910643918,0.041060674224280884,-0.0006727425843399552,0.00011586384747049986,0.0026696324136106057,0.05168262758225489,0.052568235838553024,0.016880441334519197,0.0005619487948957624,0.03610305644680725,0.020765481829432754,0.07634682534074035,0.0390324441658881,0.0001144819554229354,0.011857012704735848,-0.04133128491452143,0.1614604821680984,0.015575047182797216,0.0016429783344212795,0.0014874291482619394,0.0020311510820811953,0.019430316165315913,-0.02042454562899682,2.6880946493577707e-05,0.010672619865277804,0.041632857836166555,0.10558251485792905,-0.0010777243861465715,0.0012891857342548587,0.036763467123653575,-0.015557310939688106,0.12383620558328844,0.036096267134572195,8.365897488817677e-05,0.0027352979655336706,-0.03765822223482076,0.05133435421480527,0.08264667971010688,0.00017313987408482337,0.011362285717402412,-0.0052032331956667266,0.0076071667460284485,-0.004100215240053685,0.0003926035915259155,0.019451112676653746,0.034573432279339116,0.1254002178035992,0.0250835291438246,0.002136950914781312,0.007531336392754282,0.04039355644118753,0.1352892944834661,0.08969305848423967,9.579415935781436e-05,0.0033200196290949983,-0.022765124533361908,0.033808990223211835,-0.014746580920719688,0.0016738441637173882,0.005982436387418772,-0.017273741498060546,0.05604232158053417,-0.004129231825338997,0.00012211987040316926,0.02401987841546716,-0.02096900745771723,0.04199750091772179,-0.011686725567799258,0.00020240200111800734,0.010624433027044994,0.03871427223056431,0.1587086921810909,0.0033585525966163933,5.953663869641526e-05,0.004174881523672382,-0.00649711293137454,0.022011407331763627,-0.0451144895529947,0.002797632489564948,0.022025204596180296,-0.012331560328075968,0.06371899525561346,-0.003558618139911363,9.626971442975744e-05,0.004043702328810297,0.004824250545087365,0.027295930678807243,-0.06930851103732043,0.00012817187348659754,0.0039702656314408846,-0.02933801262210921,0.14465304126752296,0.058515158539013575,9.59294204858879e-05,0.0013983583734965524,-0.013759943827444072,0.06865117314352198,0.005601783275085522,5.037511989662142e-05,0.0012782455922679965,-0.05796470875385814,0.10712809006700995,0.022815723273599913,0.0002638090499991699,0.013213554413307653,0.028865630401426003,0.11744784987055736,0.07134789171333165,6.111535685088756e-05,0.0013112157648291585,-0.00986960011428641,0.10312042920870769,-0.005001540684405256,2.4693697872591332e-05,0.016838450579658094,0.019600150309778297,0.058997505776389604,0.09349346155188096,0.00011612740329674011,0.009588522926561177,0.005999923986439931,0.02890791483368982,0.005006436183972205,0.0003271575541037161,0.00938355795696634,-0.024559981352741615,0.13015291202041618,0.0010091855769196786,0.00010808015014355711,0.005338725967907099,0.0033524929368155382 +2019-12-05,-0.04102835026521619,0.2693652621021632,0.14876002522384033,0.00016107533784538277,0.017502698406806714,-0.024540567570615596,0.0770138607629914,0.02676699527615833,7.64585810500259e-05,0.020339824735867734,-0.07627676758038177,0.23214255416223262,0.09438137664519691,0.00015199689857539524,0.003146234224170592,0.016716616202948637,0.01684111497492099,0.007306618858847396,0.0003350004474387043,0.006378140459625882,-0.007717999911823444,0.017625429776634827,-0.020455094191641175,0.00022911990786810327,0.006907874385448304,-0.0025249829791324082,0.006007917080113315,-0.00776093034042884,9.176588655548908e-05,0.0009841171040782068,0.05205857914399312,0.15452150609052823,0.037016954394533015,9.885376921940184e-05,0.014999545100957398,-0.02912031094095214,0.3161022439328877,-0.030468792436364748,3.1591266969971815e-05,0.01078090577254623,0.0005099822739418192,0.0003911630329930295,-0.02546977022744268,0.001005407366220994,0.014796711925331805,0.005074621351738168,0.01264563786989359,-0.027606545295481105,0.00014032168398491534,0.018235934270666245,0.02637357215732889,0.018558789514436742,0.03195625315614653,0.0006946142180637428,0.002388450235647549,0.024448901007426065,0.2466952984143303,0.11818430247200185,2.9533931201054607e-05,0.0007213045505888425,0.025164424382637857,0.07782282573536453,0.0024971419560262348,9.605744761497942e-05,0.03655510473396464,-0.003576506173971847,0.016641004390621224,-0.029007169732876828,6.049803408149546e-05,0.001037784192305417,0.01678081902417824,0.014616258097696106,0.003713353269042284,0.002239236285325142,0.008172586419633624,-0.011814868359051156,0.07657979984323235,0.0013953250877506848,0.00012695995738469382,0.004223868770006287,0.022084963716262417,0.10521602551510373,-0.06325955068127329,0.00032502968690485446,0.001250179298509762,0.0525994119264598,0.3239695324564349,-0.009295355360974094,4.57338407875813e-05,0.017636197155296237,-0.026037065609702363,0.14187581553361334,0.02350003381055853,0.0003024617592904458,0.003967644043283131,-0.016829071263016332,0.2573832675566171,0.0003631770450567396,2.7133765706393662e-05,0.016399536437672082,0.016814224388899842,0.18689591666043895,0.00815263743535279,3.0057906903557064e-05,0.006646711062824712,0.0385003058988075,0.10040000121654258,0.05497726000449541,0.00012352453221161326,0.01436104444877553,0.057778662923792086,0.37441719898629106,0.035163698075289504,3.564544768529097e-05,0.004549136293025956,-0.01151080151881539,0.03207927215367469,0.01637748067553189,7.955334434988905e-05,0.005734451406697516,0.006986704650469504,0.02776820766744874,0.007373084951273966,0.00011504642603891188,0.0030869281005335373,-0.01338961166483333,0.0144479191068218,-0.026537802794548974,0.0005297100850626153,0.026064860689025793,0.030241677967623518,0.10680961929147767,0.05561331242411838,0.00011917400275044544,0.0033104298161418934,0.00033744378014519117,0.001127536080297942,-0.014692158196339209,0.00192083541503913,0.045114980566143076,0.013018232109723195,0.10934215726013306,-0.0047598059100091815,3.061586736977156e-05,0.014321195638063852,-0.04810234757740462,0.14862709853144576,0.042820332643357294,0.0010581312537511673,0.014059520480758493,-0.003160395458987994,0.026694216090306696,-0.010938234788155646,7.884059634237294e-05,0.004515050458629541,-0.02475224455411344,0.03794295125062473,0.031771901897755916,0.00015396743178021363,0.0060336142420677735,0.002823100542231916,0.0037081778537488785,0.0006580947478854904,0.00043698819348574156,0.02201304107712177,-0.020785102919834497,0.07473270517966764,0.025209945833429902,0.002155717351032301,0.0011276647014466204,0.04596832440926687,0.1948920418529787,0.07889054110055692,7.567543713629401e-05,0.025503575362808856,-0.002203823300712926,0.0030870484511979625,-0.0035910997204306014,0.0017746410228394976,0.0005994443291934049,0.008679356834788932,0.028023617306282438,0.003921284493137635,0.0001227098391516629,0.025740664415492154,-0.03186278888163194,0.08453818926922528,0.005792443926494007,0.0001527886947098617,0.012510355062510638,-0.03435946834215838,0.15574962661190841,0.020004419265973978,5.384350785927178e-05,0.019526231254948165,0.029519105523949627,0.08720007905167879,-0.024464212838985373,0.0032085172079169273,0.016830393694848907,0.04485309732413816,0.2174122502325709,0.0658261941488134,0.00010262401417221078,0.02569488737172769,-0.022055835403577445,0.13653219892883486,0.020525398724852952,0.00011715186632359534,0.007871223417321308,-0.0055019988487183796,0.033648837384141816,-8.576843548510624e-05,7.733910298069027e-05,0.01933893084995996,0.01694186810393826,0.0867455976461792,0.0011849562819566987,4.9086407420821754e-05,0.0036489796627838817,0.03865122041621115,0.07067109055594768,-0.07606289545928487,0.00026665566361610524,0.014019119146132993,0.0075044347657700385,0.03022090832363979,-0.0015411544617436612,6.174827778116139e-05,0.0013472365612355011,-0.008253169736825182,0.09540101794206068,-0.06839415319346287,2.2320249954847733e-05,0.005783405070640363,0.000803407546994439,0.0020709815086675295,-0.017190103121460323,0.00013560279788968647,0.0025124242273877277,-0.04100286572856181,0.16606058309158653,0.08786643959331049,0.00038920250193406046,0.010997041478180643,0.04146895574901903,0.18994663631546252,0.05610107024575533,0.00012504412389747877,0.020956153608194125,0.0020672318751686672 +2019-12-06,0.00222861053756183,0.01428008738572831,-0.00522622527634166,0.00016504025975913288,0.01509057495043241,-0.014229805122675025,0.05503950090471697,0.011561519263390906,6.203474365695269e-05,0.006326674761817219,-0.009887457159720385,0.03631693647558177,-0.02846693166647792,0.00012594258786522618,0.0014974069921419872,-0.005436380280080142,0.006422736484374413,-0.007938683969176246,0.00028566536010098614,0.0073531265063878715,0.030135919595047942,0.06522474421196928,0.040279122408236515,0.00024175186666871413,0.013077359896540365,0.003778574281123531,0.009994638750917358,0.0015420816056773182,8.254819902026272e-05,0.0014035439088706146,0.02269819629457237,0.08386401633909796,-0.0074352787236505015,7.941554950433639e-05,0.02027940002222545,-0.04606659763449254,0.349344651791129,0.044903734984857835,4.522000990029419e-05,0.019324285135281203,-0.007993508259569843,0.006289871565789154,-0.03894656380400441,0.000980032407509701,0.00371947991661234,-0.009596612968789015,0.021392475742585206,-0.010963228785967115,0.00015686238656727875,0.00427451321028473,-0.002587710819507468,0.002004176755126586,0.006196932459849647,0.0006311085721894688,0.014197693472217936,0.00726042274210948,0.09850192997596344,0.004048540077475728,2.1965442570155573e-05,0.007733818465660325,-0.0015932110609769522,0.004377601354623257,0.0035915083742298266,0.00010811554468669667,0.0066476923241116405,0.0007850679066962451,0.004982019908326632,-0.014379991428880665,4.435714480665379e-05,0.0041050393749346836,0.0005642872320479914,0.0003809197456408978,0.00035382388861673176,0.002889280527605706,0.004118310483924927,-0.024035441321370823,0.16596028810664568,-0.0031827349171026924,0.00011917907995657706,0.04035532111881457,0.0767336571841645,0.45524886177375634,0.03184258233935151,0.0002610028567179747,0.0008410866281947425,-0.06433217320259439,0.36983293353717694,0.0636848576709182,4.899859150659318e-05,0.01558255516253651,0.007967169111213576,0.040496178230799505,-0.0709013480187531,0.000324247625085782,0.0033939856104369653,-0.02413100697213601,0.2770333143933387,-0.09985265734364655,3.6147118138836195e-05,0.01709636737161543,-0.008226543367529779,0.08993938526628957,-0.0271066840901064,3.055970698067481e-05,0.005491021121235604,0.01619734425700047,0.04740877068886003,-0.00021592976485142987,0.00011005451756597344,0.013659928267780057,-0.043253491881665065,0.2772520580557661,0.027519405482270266,3.60361819919796e-05,0.009116860116360677,0.022279959634663702,0.06619198582869128,-0.0016464817376379492,7.462534834763226e-05,0.0012306442182525553,0.012817796025396044,0.05602700992624761,0.029377121684055915,0.00010460790544483139,0.004248904416823602,-0.024194785964591382,0.022313114175878074,0.014436088814242722,0.0006197794299472565,0.02031583192863118,-0.03276853118350859,0.12969303635267201,-0.005840439253961531,0.00010634726517557504,0.001943880565334078,-0.03845423377038556,0.12203479249370824,-0.013885077513279392,0.002022458737370299,0.059473698647146564,-0.021470145143281164,0.19278474887178854,0.013290384769040554,2.863811980677702e-05,0.00575693115932497,0.03741449401048843,0.09946110126977487,0.030816062327859623,0.0012298662462357382,0.014161798897536795,-0.017944945366671745,0.12932032216859002,0.04509812659164993,9.24061775768591e-05,0.003858193238261088,0.016212150296494303,0.02394243635710941,0.01865739850324431,0.00015981504664029113,0.01702735044225401,-0.023407320180135964,0.03341488025800041,0.01189007765960629,0.0004020829896054853,0.012834695797359064,-0.048994584225457986,0.2082111899275656,0.05842177721024255,0.0018238719807798303,0.0232921760839261,0.006345369353531897,0.02475607688323501,-0.0049377340791753035,8.223665829638935e-05,0.021372193841567945,-0.020796547072867058,0.03255461017274267,0.011008146468878162,0.001588019847362509,0.000446868694849763,-0.009656540578560135,0.03381801438680749,-0.07374875969654329,0.00011313305160514854,0.008062438830339688,-0.0761545615572028,0.18067099159846403,0.09650652538252137,0.00017087080680435403,0.006780015091731829,0.004797058527440149,0.020981424152094988,-0.014033407334108829,5.5802541464060694e-05,0.02481073191497261,-0.0063768735846501876,0.02404967787460987,-0.013337953408765656,0.002513139532567263,0.030871172756306246,-0.04145511919789643,0.23264630683879398,0.03472415104819943,8.863853637597803e-05,0.00911208197920248,-0.03304269118502497,0.1813730338074982,0.021288865869330712,0.00013211845258387822,0.0006119741860671946,-0.006694426052537464,0.03899527450195491,0.0026846290945231905,8.119888497474329e-05,0.02167956808833216,0.027099171674956544,0.09793290824011103,0.0046743393872234725,6.954641688414376e-05,0.03093465538176826,0.0658095372341947,0.13515171170326973,0.05694774715178977,0.00023740872767166163,0.007534610571876731,0.014529544919029799,0.05541272018731463,-0.006302213302222309,6.520139952440774e-05,0.0015493326864745938,0.03616119083941807,0.3887597142716798,0.10421618548413933,2.3998978418333813e-05,0.010600621509923863,0.0009639322370028799,0.00342051557705841,0.004200573322992535,9.850627502732677e-05,0.0042273823800847606,-0.0021291286793665024,0.0077211015230225334,-0.006242143433633673,0.0004346609430460411,0.015567491955359725,0.0031983634418741003,0.014736426068102665,-0.011061344583075465,0.00012431039289477632,0.01277337967108276,-0.005833773117637643 +2019-12-09,-0.012593524237635174,0.10177747561559843,-0.03783184228991022,0.00013085255029739244,0.010243284174259397,0.052300770062883466,0.1727401315489877,0.06670352020212514,7.264828458623269e-05,0.017509495166985065,-0.0032501636410752197,0.008839639146409528,-0.004384730422720053,0.00017008573677217262,0.003075339935874581,0.01814161947804068,0.017553088774945522,0.015087101988293848,0.00034881115107900237,0.0035612797623783554,0.0073888964375413676,0.016228018615227276,-0.00617749246343974,0.0002382384498781517,0.0059969992060019605,-0.01039543113488933,0.03013253714951176,0.007299838740635249,7.532749840106749e-05,0.005506315201274817,-0.012720803821571865,0.04555553834809096,-0.0020825087163112727,8.193382444622691e-05,0.024489154947846488,0.017326714775719548,0.1491856736773035,0.032437320532658916,3.982792870311428e-05,0.007163412354945306,-0.0173485060086413,0.01479581619996748,-0.004331847012624063,0.0009042071560532538,0.002054887196631684,-0.027680394815856924,0.06682366791831278,0.01474678638384284,0.00014484511621659288,0.007739447371116282,0.01746156945430295,0.011543851253067582,0.007496694041831778,0.0007393616355806073,0.0011873519393319895,-0.01045519999418704,0.12175370094727632,-0.012051224222289257,2.55901577326821e-05,0.0002159133436697425,0.04853665122548628,0.11958271810693691,0.02726098201007148,0.0001205736550294741,0.02808611130828413,-0.012305341885813222,0.08274244931336887,0.022704158273257783,4.1862689857690456e-05,0.012119785589523384,-0.01539628177396204,0.013612633225486752,0.01357070154171505,0.002205955158562431,0.009845090619838025,0.041022149515605524,0.27875091343778313,0.007845333095734059,0.00012110281038414082,0.013423637801838185,0.011133462323623803,0.05173463010174803,-0.02421874353833177,0.0003332400012566009,0.006736373161204303,0.00658136814421097,0.037556285162509334,-0.00019356692195577854,4.936220062070795e-05,0.01676291794325119,-0.021946062580626653,0.133993891010299,0.02123762286962469,0.0002699345169841644,0.03379512795364367,0.058402434644757355,0.871133607694273,0.10159129552980889,2.7821235632706936e-05,0.0010521071666572757,0.010615649710804148,0.13019857384242514,-0.017069815053018442,2.724093823069048e-05,0.0008619011084830181,0.014720451888853348,0.046552709424230614,0.00667154594046086,0.00010185888913439733,0.0005934533785195777,-0.05388391788913389,0.3175394587498725,0.013554012381321968,3.919709139559798e-05,0.02484848125582529,0.01942690635632652,0.0596993249740542,-0.07685050251113754,7.214589219515044e-05,0.0010142268838487076,0.0009603012123949769,0.0034123909751051463,-0.00016921925540015813,0.0001286759217946303,0.002529011108748197,0.002948848161775736,0.002625169189817247,-0.02479561155225652,0.0006420526958871378,0.010989344912957824,0.023204945504668596,0.09342693992162936,0.019948968520592723,0.0001045428745837076,0.00020377739026847014,-0.0625219252176229,0.19480161452098058,0.008369174645769624,0.002059960844059611,0.028046963974013392,0.0027869591735515064,0.026935094630518772,-0.00265133737808291,2.660690116294314e-05,0.021020307290031653,0.0442382103399465,0.12992135795051915,-0.004931314206585769,0.0011132386290215886,0.024410551248342263,0.016783693248804778,0.12175528283202774,-0.013139490620774142,9.179633935693912e-05,0.007722706513829854,-0.005728422925410466,0.008338677468945942,-0.007042247099464208,0.00016213742979704571,0.01446503950349377,-0.007487277555224414,0.009377213836155892,-0.08267029422727488,0.0004583044002071723,0.004848300759826011,0.03608145465242057,0.12885363252404006,-0.021917959741665966,0.0021703896664495804,0.011283407771391805,0.02383836247752852,0.08746345449721248,-0.027717142823182682,8.744604321671202e-05,0.006308022504851466,0.07350423878570922,0.11237503343169844,0.08750503084954635,0.001625997008421743,0.006043878631355477,0.02551669933370265,0.09694440027464656,0.018386357914992366,0.00010428402966366697,0.0533618011394775,-0.009166121604569163,0.02232759859178504,-0.0011233280279433439,0.00016641940883954418,0.014745390277994467,-0.02342640668010745,0.10868220413935227,0.02515260467319694,5.260913555614153e-05,0.0020160949736782695,-0.004054517419041695,0.011643012273174694,0.0014119747191816284,0.0033005922324090987,0.023727741282487134,0.053725650575204564,0.27181795708656187,0.054044044364302844,9.832050708872796e-05,0.009255657350129632,-0.012666448914884047,0.058031918464433466,0.00523309334699197,0.00015828826990003619,0.00152180155416029,-0.021215658556253063,0.11432342430504962,-0.019990310906039015,8.777482892559519e-05,0.004814843326848766,0.0027863745337432287,0.012380482896291142,6.239779638358831e-05,5.6565196817961856e-05,0.017595051605264866,0.04609068688039078,0.0711421620281336,0.030681799485045493,0.000315875189219066,0.01589002178745364,-0.004602203945109236,0.01832430059893161,-0.0011613393082134822,6.245293150978271e-05,0.0042882574564723705,0.014859471592021447,0.15892329816603437,-0.03768834928264338,2.4123875697610528e-05,0.0005242838562010989,-0.007639146687133075,0.025966936006741173,-0.028933872573848468,0.00010283314217323149,0.003981493938386199,0.005187305340668366,0.021329225888845674,-0.009431131015324123,0.00038334931351089645,0.015103947827755908,0.004568633344678585,0.022348736215011978,0.001996714044139141,0.00011708604372348682,0.013602724547050473,0.00637090921528943 +2019-12-10,-0.029357832531068613,0.219338694283219,0.056114134755149,0.0001415452562120926,0.014931853322002243,0.006988325154049001,0.019006537533595963,-0.019722565928532717,8.822275641916101e-05,0.004173883025577013,-0.040651105910413564,0.1415257970483009,0.019517775613533142,0.00013287214930890568,0.006832050152668023,0.006367553294251988,0.005377563023516553,-0.010418367045616621,0.00039962710413852056,0.005388993360182879,0.0020359710998688585,0.004438490870423163,0.000312190620913393,0.0002400126048728581,0.0195327824778055,-0.02365353247720563,0.06223884443775118,0.060446998738777916,8.298148980599714e-05,0.002210593865185063,-0.030932074675450442,0.11123593919811009,0.03217339368424514,8.159316488518113e-05,0.007675725503995798,-0.013311067057498994,0.1209182263259326,-0.017832861450161733,3.77502400518133e-05,0.01970071949888927,0.00306937845639797,0.0021695738677641294,-0.006102662364805496,0.0010909900404275222,0.004283164150691331,-0.00989232037980727,0.01930354081150451,0.0008246301576723263,0.00017919384221383848,5.83226533205348e-05,-0.023049783657711972,0.01935665026935537,0.06453361103921366,0.0005820509579595401,0.005155946995535163,0.016812581633209728,0.2261869172505745,0.034730836374664294,2.2150815204080966e-05,0.009504379131232565,-0.05153063233992745,0.14853710645653354,0.08955247395540564,0.00010305796205817282,0.020335939341014585,0.00849760796242859,0.04107932322295238,-0.006333544485061309,5.822844995501426e-05,0.003003711255214317,0.0009686834955122011,0.0009148011748292633,-0.003087914906188628,0.0020652762896463065,0.004982261189195122,0.021581633388760815,0.13937468779360587,0.005861074115035571,0.00012742437468739982,0.023141332651375815,-0.009718837886999149,0.056173424140197735,-0.0007781511285596019,0.00026791169507530956,0.015582644815586029,-0.017884349815527063,0.10264557180641579,-0.12240278982526438,4.9078795271583274e-05,0.022657206863999423,-0.044325789132043186,0.27521217996781816,-0.014529719439416583,0.00026544566247605183,0.020366400650916817,-0.041881800927212394,0.5391714031927789,0.007811735743818453,3.22350783101641e-05,0.015280660554716871,-0.009591289403742093,0.09164754869174985,0.015282976785739453,3.4965347690905236e-05,0.00519331161288141,-0.021804350279619276,0.05309800653035854,0.012715372141466764,0.00013227802118034182,0.01679929603505851,-0.007360079422966421,0.05360640848223604,-0.0009604790389155352,3.171452166828344e-05,0.016217051298907888,-0.0034862558241359498,0.008927043817350181,-0.0017641406682038351,8.658227015113335e-05,0.004496300603417716,0.005476725365998522,0.02244963064916874,-0.0005432084696823018,0.00011154763293559358,0.00020632640892837375,0.08908954791402056,0.0822875804637313,0.07729350176912063,0.0006188252468172484,0.013761433395054295,-0.03832769348609321,0.1429650614865552,0.03010418551855025,0.00011284148124744642,0.006645791259516393,0.04574622499194377,0.1305700902809822,0.0174892713477368,0.002248695919978406,0.03558428748477402,0.04321166232811352,0.36167880831296917,0.000698776316824839,3.072275134460672e-05,0.016682444684879668,0.017938826303624415,0.0532907327735147,-0.011645982903168949,0.001100559691350367,0.02089514514228544,-0.022220188859483042,0.1602464656814328,0.05100373994198843,9.233894949061315e-05,0.00775232181974857,0.013976218787029432,0.021521609223354683,0.009250757747116997,0.0001532711215699515,0.00882028250865077,0.01939108301163862,0.02787733579467916,-0.0110706711089182,0.00039925899842896975,0.002286657744892052,-0.006759101350840131,0.027861492367260782,0.002409875351012174,0.0018803336779783333,0.017407990075199747,0.003239235965042291,0.013693603964491409,-4.714430068995606e-05,7.589535430637916e-05,0.016946630003721253,-0.04455652720642607,0.0629072812007722,0.039516891079998055,0.00176070910497322,0.018312961873470014,0.020910157883032264,0.0598590145441411,-0.005353263956594441,0.00013840245243165706,0.014378261335632015,0.005224077933857067,0.014629749961981691,0.0005502568367504794,0.00014475484867490724,0.03668637027060319,0.016092550046129975,0.0625727397911005,0.0022914447307989232,6.277021586264892e-05,0.004115212167167037,-0.030761669635019414,0.10334144786256878,-0.13265653920786613,0.0028213269656103004,0.015816699028716536,-0.003295420358493062,0.015461494283704892,-0.01716307592568336,0.00010602296047743766,0.01746521785390247,-0.01620614936437306,0.07498254845892861,0.004696212303374656,0.00015674021018579815,0.0032630419629921343,0.040806164746684886,0.28005663915594103,0.07188785992496166,6.891735554700685e-05,0.004604396279379973,-0.03571385187231035,0.17343074124906208,0.037189584610764256,5.175567864201151e-05,0.009388926344928432,-0.024764315453772456,0.04846253064164817,-0.001207097617001933,0.0002491435411949228,0.011539964846525936,0.0020981048546649217,0.009498244769676981,-0.018042995054719187,5.49285591930565e-05,0.0044297738100256496,-0.012132082675798737,0.12754639248346414,0.003951103687359097,2.454135101055995e-05,0.015005558347705051,-0.0010649074487126791,0.0032642403378492623,0.0005160976559947737,0.0001140351405248805,0.0008429665869327227,0.028085269862092994,0.11700347096725791,0.06563024895914762,0.00037836227371681227,0.0067211169512075885,-0.01033652798960497,0.05108175290632441,-0.014397230789975634,0.00011589926691899852,0.0018874285448401682,-0.004662125882468784 +2019-12-11,0.039252972931769076,0.23865674852667249,0.04314952265148464,0.00017393437431019804,0.0067681333599669685,-0.007671167873657591,0.02818641943275401,0.0032071814849168457,6.530284513656644e-05,0.015404945457511955,0.0440101758812462,0.14629800181338157,0.04853651176992056,0.00013915919706403382,0.00020024997520559184,-0.00046627416514526506,0.0005551953379844024,0.0011416441197296967,0.0002834414746459365,0.00531652262481713,0.006532196002509354,0.012445781233365797,-0.05466558855312031,0.00027462167831911617,0.007055964734597445,-0.018311716792187956,0.04833605474609902,0.02651949889617033,8.271887189311362e-05,0.002605338804680636,0.017957574708806014,0.06488457293997676,0.003567052857933529,8.120748986288564e-05,0.0061055091230920785,-0.009320780904438742,0.07588756838790181,-0.009335970338719494,4.211921580970295e-05,0.007473011428496334,-0.009901355881100842,0.010143414321506972,-0.030152072341470642,0.0007527578478450141,0.005197900119373836,0.032528464145199464,0.06654514339982898,-0.11817552442291726,0.00017092637387267575,0.022317022707542176,0.027647140566795507,0.020296035066248885,-0.006133097602982013,0.0006658300233644047,0.021648391872487138,-0.012799380342192595,0.15168906266932417,-0.050457135037339014,2.5145337340147255e-05,0.002006186447958528,-0.06913210613660263,0.20479361446002747,0.0928300505552302,0.00010028002067903449,0.03703272174180697,0.0031063144133039447,0.017245555572650402,-0.02370773297022169,5.070257781359553e-05,0.002997960476510938,-0.035748249679494276,0.027646355062558643,0.0634479360231803,0.002521969753896848,0.008427478973149995,0.060390188471643784,0.42538658474846247,-0.038405893940799615,0.00011682470772370087,0.020422866995621042,-0.03510242277371391,0.21341563893299734,-9.993534887811573e-05,0.0002546942166079169,0.01429352453717174,-0.00774250973509224,0.0480616832416805,-0.002681545026043331,4.537783161784457e-05,0.0007285133349035505,-0.061207130722189806,0.3506558359985988,-0.03903264322453575,0.0002876787329141128,0.009067119444491286,-0.012152965552701761,0.16278516803288487,-0.047133082555655646,3.098115938560456e-05,0.0030098858648975476,-0.013910405135851628,0.14717306608460065,0.0025016192100603633,3.157862021798032e-05,0.0072123076392037015,0.06148294899996798,0.1786909610330048,0.12226810283069849,0.00011083447317582189,0.007252139957057008,0.008197017557527298,0.04887572867375159,-0.004370458082987962,3.873958787113248e-05,0.02848060717058102,-0.006062895271438913,0.01971273603453062,-0.010928938679340127,6.818840661772033e-05,0.00864912377486142,0.002920068568155084,0.011230773466266665,-0.0008222097069867747,0.00011888634566179347,0.004100701133785391,0.00686451500917352,0.006305157860520779,-0.005192274887246217,0.0006222851768132832,0.0026480281914592575,0.0193965879385599,0.08129612950407458,-0.003672689002769923,0.00010042491652593597,0.0035794781626376933,0.04245857437615129,0.15321581498697331,0.006497071285453611,0.0017786110531758982,0.023712460547983434,0.019797058846340275,0.1943804726737189,0.0013892401876879285,2.618968261915638e-05,0.010362009622649935,-0.027968324465905303,0.08078395959989293,0.006149609525735031,0.001131911788363899,0.0028827129644390086,0.026173734411601483,0.22206008954178547,0.047690996127659153,7.849117381544909e-05,0.002033352809322319,0.004397715831530945,0.007113429303373645,-0.12768296249195477,0.00014591284642673336,0.007535220546153025,0.014099846294113967,0.02000073419803202,-0.11305949274023018,0.00040464330002835724,0.02643469008374568,0.014192751977585972,0.059624058201788586,-0.005664150005654781,0.0018449959723190383,0.0029726927281672516,0.00303334060359727,0.0127762336269213,-0.03164698851113622,7.617434072760839e-05,0.0067890263627999325,0.03420821383233859,0.03834271979398544,0.005150204676920444,0.002217811720633406,0.004039856041267009,0.0042073451183159355,0.012432584391611866,-0.007535743174267388,0.00013407961623072438,0.0059703271333922635,0.02169743515629744,0.061510752748075714,0.009225623554348618,0.00014299397316079335,0.029835386650565662,-0.036468373796302495,0.1593030910836402,0.01921807723574618,5.587353122851541e-05,0.0011978618561226807,-0.035438762629114114,0.11573638057558683,0.04495467518438712,0.0029021958126884827,0.03870015766881755,-0.015749936029408718,0.08552838413355776,-0.03616051899038234,9.160287360286904e-05,0.008786095082380317,-0.003555358278812545,0.020019632267355317,-0.044550684731778555,0.00012879175474086346,0.008675967550776188,-0.014248491402341466,0.07142453696141021,0.004336256970489828,9.435613646664681e-05,0.003792088466054026,-0.05939124924489605,0.296723528730593,0.04062051044910219,5.030577802713784e-05,0.00850521677751798,-0.013595202082396757,0.026909847958590243,-0.08680934321253597,0.00024632234902287244,0.008756882494717328,-0.02483660602190378,0.09477812593221482,0.11599367448741964,6.516261540303354e-05,0.0006361276990838507,-0.02756999281161136,0.2585500287892287,0.0040359002956002095,2.7512075071969214e-05,0.004273737314128808,-0.011303880918440215,0.02962716769229654,-0.06689482305050097,0.00013336639213155918,0.003884497791177453,-0.027335060298145718,0.11609940672675262,0.03420884450847554,0.0003711231166403285,0.01426402730681561,0.02540535368118557,0.13530757697636323,0.006122890559608191,0.00010754121141438642,0.014898769266292857,-0.0013521136430430303 +2019-12-12,0.040345931859177925,0.26977518429524794,0.010723383388433937,0.00015815551355636908,0.010670805918567075,0.020738498887290083,0.07027528929395552,0.005808722914515386,7.080846865550391e-05,0.005718433618400357,-0.018109559029367304,0.05519478707997138,0.0015430774047359222,0.00015177736803040958,0.0222957787911706,-0.0015674763266066757,0.001587735601236397,-0.007846713199873392,0.00033318900674797274,0.00015948674675558892,0.018054854365891954,0.04789299681588069,0.020559937219655242,0.00019725124311830667,0.008216578888935825,0.021658895330372362,0.04834044876838402,0.06981063502217945,9.783007004421498e-05,0.005040806588355417,-0.013659200668895076,0.04496890060062888,-0.08498351480739158,8.912568288943117e-05,0.0006092912855226174,0.020041422178084856,0.1628020506340862,0.03338037593665125,4.221504730314296e-05,0.00041770289433863683,-0.006627019829568542,0.0058786507012220405,-0.017447967156954167,0.0008693314685923597,0.005095465820235967,0.022886061788988502,0.04372775145129139,-0.15871206411521538,0.00018301041536312464,0.009330626272925302,0.010022015155028988,0.007815636066933774,-0.03309265734478993,0.0006267799349875748,0.0024169520373709392,0.0006850644816807133,0.008421960911638677,0.001176453686759928,2.4240469064403426e-05,0.012887148394546412,0.03449539251885382,0.09341845194995158,0.00459442492212088,0.00010969313854126801,0.033953698609000355,-0.010552115410722398,0.06245130393478589,0.023260903178164333,4.756197062272056e-05,0.006268816048052169,0.025992727960069982,0.025346926459732144,0.020528109011793732,0.002000089957586283,0.004423687915177648,0.010140355881519332,0.06120567658244436,-0.046965298449333594,0.0001363369586647199,0.021347107684475182,-0.03190196822231483,0.1709344551034945,0.014293298144358261,0.00028899883904362955,0.019003281877488492,-0.06626087216475177,0.3769032041259309,0.0986198180587721,4.952087098226978e-05,0.0072826010058519046,0.019977091820390695,0.10639481709716908,0.005659163358505119,0.00030945578146847986,0.006031275895732118,0.044698522993301834,0.6001025593264215,0.03949954515672134,3.090992312618344e-05,0.03226792291307476,0.007323996195792979,0.07162764804635632,-0.017648598995476585,3.4162459367333766e-05,0.004655236852017195,0.0007561298242187521,0.002145389257342677,-0.010778702737746183,0.00011353062339315421,0.0036089410662577927,-0.048935576161644415,0.3359206311738625,0.019977559715201435,3.364963861848631e-05,0.005863897875892628,-0.004273727930954688,0.011106077302532597,-0.004420182014422122,8.531463978959437e-05,0.00789177769618787,-0.007413231568543254,0.03642603849921858,0.0014187433031927084,9.305596556782971e-05,0.00644475656041429,0.04371747593702816,0.03500489551611259,-0.012086618018349043,0.0007138416032151573,0.0011113311735315478,0.022150023461556208,0.07869445116560181,0.027056524004427342,0.00011847210057349295,0.026320196286011233,-0.03986057030663428,0.13344067944957871,0.009213158441018209,0.001917230980613197,2.2634820258965894e-05,0.02624194500310181,0.24640689707462976,0.00412739832815194,2.7385795225726858e-05,0.008201534746834861,-0.03168215191638247,0.08443378548425313,0.006421066152981391,0.0012267884572659006,0.03729081683614058,0.004312814692169415,0.03423974996540563,-0.003920885820648708,8.387950462522606e-05,0.007819876938880366,0.006731492214572298,0.008880665639591005,0.007213888141329227,0.00017890036024853943,0.0007084306550671263,-0.02569925184219729,0.036058957942111884,0.01566070922831081,0.0004090828021308486,0.01640199676679627,-0.002512914424825401,0.00959114851037883,0.0014409520086572382,0.002030754502326185,0.002425349824174161,-0.007704635450012893,0.025500923272337512,-0.10796982064949998,9.693632712513023e-05,0.0017699174764922972,0.004709304440021327,0.006635577825569172,-0.01589565359881909,0.001764230035720769,0.0008902852524865171,0.010266505669619804,0.03205384432956082,-0.012699454324554738,0.00012689910655008953,0.0062871803786861994,0.012417444386633234,0.03023997665970957,0.005155338644242343,0.0001664604820977024,0.004656254987328011,-0.008955655400965708,0.0370839639350485,-0.0023876204105995145,5.8942038160701364e-05,0.005326261895803277,-0.007782031842073612,0.02492984886660353,0.003384370280754001,0.002958635171836942,0.01627761993954951,-0.04145596858800669,0.2182645031382589,0.03518436613327417,9.448100976314338e-05,0.0009244059439574417,-0.023104283199205388,0.11611558003568428,-0.03661589408806638,0.00014429882266390074,0.0028383320745389534,0.029550482631847928,0.21093282463223556,0.01903064318286538,6.626269704669059e-05,0.011230078684682464,0.021947373480529452,0.09930644051823552,-0.004504002189813282,5.5545967211767984e-05,0.004781698106551879,-0.014127004719427657,0.024515779310159563,-0.02873211167688256,0.0002809530694113255,0.0132890475044999,0.007974092740162817,0.032987718956455095,-0.0010270023366922242,6.010953554767493e-05,0.008501252263048773,0.006828695361498613,0.07601043233037265,-0.05179996999046857,2.317906009048385e-05,0.00501807561391855,0.008899920330273144,0.03220200205929945,0.02403645362510526,9.660780396351506e-05,0.0012037832453369107,-0.0058164802055322385,0.02253373508021212,-0.00035047272988348444,0.00040686941189270383,0.00025164717668661653,-0.004758146786518284,0.023601518762338982,-0.01821643006084778,0.00011547013694235469,0.005971318198613716,0.0023192640491433185 +2019-12-13,0.03177959961698003,0.2648040294362363,0.015525349171319341,0.00012691425826217225,0.01088011802095007,0.029064272273108982,0.0850013791217151,0.005519331062767422,8.204346762446979e-05,0.0005478060221096332,-0.007588431998130522,0.03080860844574816,-0.000733313432901355,0.00011394025012164713,0.023255278600655942,-0.00327555578608057,0.0037183550169053205,-0.135659132621617,0.0002973048569278403,0.00886662804158488,0.0060603103899259285,0.013759253827737393,-0.29269676537324163,0.0002304611675373974,0.01298312115563889,-0.01694652783122111,0.043885969332018986,0.0015413017373570898,8.431440386439414e-05,0.004880859362271838,-0.012306850768119536,0.053368019617939785,-0.004487748000869358,6.766369377456657e-05,0.010490566557821589,0.0013039645987914749,0.010860426701407492,-0.004258221359922391,4.117347538259601e-05,0.017568928875020595,-0.014892518920325153,0.011819656399123822,-0.006436978685009778,0.0009716460634355093,0.010284075412791046,0.003146466726528138,0.0063067217355188354,0.005838923243731376,0.0001744541721952662,0.0029452762924664032,0.014626734779582621,0.009688481088612432,-0.017651247831074825,0.0007379314992079535,0.009177549201557259,0.0019538630772623486,0.025598195292100088,-0.017604353093233792,2.2746132642083127e-05,0.005462161981968877,-0.02603059106619756,0.09065280256517672,-0.057455686842849386,8.530094302150135e-05,0.0003965794970594138,-0.01665603405142077,0.10377011559889918,0.047651979558289474,4.518154917482086e-05,0.00276521833034165,-0.010662086283389535,0.008423465958272557,-0.12391570858208094,0.0024687342383978034,0.022039324646439387,0.02083321658818626,0.1332929406287182,-0.041756897310894055,0.00012861786241877984,0.02673717820081458,-8.063380748504969e-05,0.00043997600975560644,-0.016048606677494907,0.00028378955216563033,0.015465489374593912,0.04426220582040988,0.2650892445289581,-0.011915702393128131,4.703291561074361e-05,0.0059754712882117275,-0.04391384825008926,0.22361265588855728,0.03185271061644855,0.0003236621572257038,0.02877480015760096,-0.017844028347677877,0.24769011756313103,-0.0296361076924975,2.989609442190658e-05,0.019156343314714882,0.021263718638091483,0.21576817547670915,-0.056987500086209154,3.292558780081567e-05,0.0012652714417523622,-0.024308361791996132,0.06928387749948733,0.00486312463294211,0.00011301764726747988,0.0008488816352486858,-0.04672820347959439,0.33826307765311414,-0.00044392296311568515,3.1909269687485955e-05,0.02043835417858491,-0.02323984717197822,0.06718525901872144,0.04690068624578796,7.668963207730846e-05,0.0025570694852702245,-0.0008806211190230143,0.003141740896699216,-0.004221207842916743,0.00012816437580036175,0.0028924980195199823,0.019439942861952105,0.018322615686755344,-0.0015289457728336051,0.0006064333448441369,0.005524855928156545,0.006012747761553095,0.022819479229189716,-0.01694053579043992,0.00011090554628528124,0.00016336381825457968,0.0437242606337809,0.18760465028007295,0.013672245062841055,0.0014958844573932178,0.019157868934646258,0.002864192892902737,0.028874969888269944,-0.02765380681602766,2.5507207670247133e-05,0.006627894240299089,0.004561398862270785,0.014580875699451913,-0.010600618857015794,0.001022788207364467,0.01012545350188702,0.006040167584980907,0.04255384535963188,-0.013995858604259831,9.45226351351012e-05,0.005997585727640389,0.014151895312832397,0.02048513745394968,0.01528964254222115,0.00016305011564075582,0.01748763231247763,0.031606528001937674,0.052725347155383,0.048099590250216276,0.0003440814477035624,0.004062571808616008,-0.015618102358399673,0.06855821161896498,0.011160758596184836,0.00176570897989512,0.003985109060534742,-0.012698159359072854,0.0438615517009958,-0.18698377716685394,9.288533499195189e-05,0.010895477780537989,0.011375037810194454,0.014681238305480097,-0.01018061600567893,0.0019260490925043611,0.0030519256583469087,-0.023257140234523545,0.07332957859660114,0.0032406979851584243,0.00012565887256632934,0.009459912175446396,0.018348742720459516,0.04306433306443909,-0.004684723876075609,0.00017272251837175155,0.0061451816827509725,-0.014181987506170033,0.07624042923235932,-0.029492046969248602,4.5401028440500485e-05,0.006285451768409988,0.014270567601752009,0.04122479653643808,-0.008840583820832347,0.003280958856193253,0.0051212414110867206,-0.006317583136516774,0.034725328989758365,-0.01064625614150028,9.049928905679196e-05,0.0037969792666412614,0.01055306196702416,0.05915133223967923,-0.008315649189618265,0.00012938226275225617,0.002657297216105033,-0.0008869682447527523,0.0049683376967175,-0.0015378353554947157,8.443950197361287e-05,0.0009833298254309979,0.005278712087838404,0.021591710096749546,-0.0035480658878520544,6.144525200186174e-05,0.0034613951015861656,-0.026997640143148705,0.0437136198873263,-0.0012203126165412715,0.0003011191853399769,0.030363452639243855,0.02542217571620374,0.09965754164227901,0.018326101024649398,6.343324405454556e-05,0.003183647571240806,-0.05309638752169429,0.5662729891994605,0.16580720943159397,2.4191924207600444e-05,0.0016960719985711374,0.016776953927022522,0.05320468390935222,0.03387608347273118,0.00011022299536903549,0.0014715660767802077,0.002520658321135005,0.010236236694956487,-0.055620833683184726,0.0003881518243353158,0.006608779734179699,-0.04023139846578591,0.16256742249861347,-0.032362074292693936,0.00014174358247871663,0.027632140800808856,-0.0007439515415429808 +2019-12-16,0.006203779278289967,0.03847917475086385,-0.011577458144120952,0.00017049716909576813,0.003861835566458729,-0.016425442496495687,0.05202000550254029,0.014570785585946463,7.57630083336688e-05,0.019404765466537105,-0.018043562588695942,0.06160000008390131,-0.023037278600706156,0.0001354998399245485,0.01029621815374734,0.011738131098169253,0.00941350015495289,-0.014962227844316904,0.00042083870727234446,0.004850291603207566,-0.043910759070453304,0.09707393450409427,0.13424505589817315,0.0002366824654816415,0.0038800179859906758,0.0008270784329708202,0.002405808449175115,-0.09629675608836473,7.506411873403908e-05,0.005140365910422904,-0.007229817225833849,0.02544960078470774,0.0012727019338844854,8.335587202887803e-05,0.014114290638468726,-0.037060539704111654,0.287212843092357,0.0126971059956949,4.42493094982784e-05,0.0010213744613486004,0.003041771332700414,0.0025378904650144806,-0.18848561747335807,0.0009242691874276975,0.0022754455326382092,-0.02444241648965224,0.05857833129350725,-0.037322405164321504,0.00014590461553606928,0.011184068951289124,-0.0320154430204197,0.025391908315549914,0.08144031075446581,0.0006162948417799613,0.006333939536408853,-0.004339540125301972,0.0531602416359391,0.010805326087220186,2.4326495666323284e-05,0.0004249859673497998,-0.0009446787112358606,0.0024465379871713246,-0.04998419884892437,0.00011470522546761063,0.01648330533830008,0.0017284134517607198,0.010777080684618598,-0.08631590803508074,4.514486115616305e-05,0.003874620907569735,-0.009176513686277744,0.007336156871778464,-0.02032555798671975,0.002439675583754352,0.0036210746559536544,-0.01617245707271661,0.1128438098207442,-0.01614544953246437,0.00011793708097467544,0.006742250736497147,-0.010756085525864842,0.07100240728807848,-0.033074680258218664,0.00023457914839360158,0.020172400757871262,-0.048020593333398635,0.3399408180981294,-0.0033901947554670284,3.9791028300971917e-05,0.0035820406864668043,0.015789538762249727,0.07913576752981162,0.016295531882142254,0.00032883908591445674,0.0007428617497027661,0.07394803365873483,1.0523289432031115,0.1347530020103521,2.9161196954013886e-05,0.010081594665060723,-0.011183032457104955,0.1400178384737039,0.014022108932013656,2.6684429700940734e-05,0.007860901606125728,-0.007487041463180147,0.01645376771333488,-0.08482153582999209,0.00014657760869413668,0.00489938871497579,0.04033457108230944,0.30549913045609006,0.02454665565670395,3.0497191067912688e-05,0.009999476688989246,-0.013609814108837347,0.03577872870623195,-0.022588640520764466,8.433438273826347e-05,0.005386126592091971,0.00590084755489116,0.020289179631016105,0.005385615273707194,0.00013298372795315482,0.006897979554080972,-0.020288828233427876,0.019791816534578607,0.008958840336684842,0.0005859315320244315,0.034930522579684264,-0.0027615609444086547,0.010747747122940462,-0.023987825565572544,0.00010814917266805147,0.006694981316453146,-0.04759122177429831,0.18104155966252602,0.016305277516170273,0.0016872045835930236,0.06595706118504475,0.000630625745877461,0.00689439696322008,-0.004783258303343825,2.3521098849775788e-05,0.006022926253790509,0.027663373741308693,0.08416700546842625,0.0164221173936702,0.0010745695704257585,0.03691583856057135,-0.015322169496392724,0.10759050047587941,0.02063755815554825,9.483572699832564e-05,0.01820947096194869,0.02713228096139798,0.03855054665071723,0.018555761268143272,0.00016611205505977493,0.010589092260016333,0.01731866988709839,0.02970938251976172,0.014680062011097833,0.0003345991415979649,0.004356933555305526,-0.05905671021388854,0.2394622442979007,0.09158026615132712,0.0019115362722120345,0.020081941082461814,0.021523949221556482,0.09424779610476373,0.014871390729870301,7.327251960568801e-05,0.006801154565039422,0.0016554564163464658,0.0023366826526212874,5.094375963826748e-05,0.001761145384171466,0.029065296885738907,-0.0034142685919343555,0.009884585333701979,-0.038153182621818826,0.00013685329693114868,0.0030871830511030275,-0.042398429388788225,0.11569483432591557,0.012139333503882514,0.00014855804530989182,0.014823569334898777,-0.0026264753346279075,0.010923535610872276,-0.03831222176432012,5.868458299408776e-05,0.020124403538251946,0.054218721012475726,0.14440902019736918,-0.008475205732739978,0.0035585494500910116,0.0001203252626294437,0.024468754956862473,0.1307635563014709,0.011489789972484078,9.308200277401608e-05,0.0009624957414506813,-0.01237044721110699,0.05710171277664836,-0.0015256118329637501,0.0001571075476290728,0.006691271863273106,0.0030804290863110147,0.017417322230045724,-0.00027943822651353006,8.365242352874897e-05,0.012389298707354194,0.018011593798580812,0.07753903992004257,-0.001956247815240482,5.8382020310278285e-05,0.010279126704363312,0.00648596711945506,0.011722002297205169,-0.02302241107256308,0.0002697753934554974,0.012361194564512892,0.0067004405938162915,0.02830403827335752,-0.013413348169098706,5.886665170472665e-05,0.016334764127377048,-0.015046148841583397,0.1343775350155496,-0.01133073459051205,2.888883104247624e-05,0.004402536945183165,-0.009720156010848564,0.036307169908173016,-0.015567695881533635,9.358145697354105e-05,0.0008359173182639792,0.00783658476404005,0.03175673523301663,-0.01223535816241474,0.0003889725537546171,0.004353948682421296,0.01805092674881761,0.07852817084819691,0.002962005153499034,0.00013165756490118478,0.003322911320358831,-0.002472357199691296 +2019-12-17,0.03158047370666176,0.22945450952708782,-0.03862412397883208,0.00014554879914708952,0.01485004220921302,0.006363073826448026,0.01672669904108514,-0.0733342616416698,9.127823753809668e-05,3.1151629514727876e-05,-0.0029930447702784806,0.010567622880153199,-0.13802911108936194,0.00013101864725746035,0.02147411000161521,0.0027159412745850747,0.002517932631394061,-0.023774630337586596,0.0003640358253231798,0.01134158394967489,0.026746217506842942,0.060019926169334104,0.04524271756491545,0.00023316571284049802,9.625827604423684e-05,-0.0020977780589902773,0.006244385548972967,-0.01955228414060591,7.335277843472377e-05,0.0006493890861567929,0.027993612885775006,0.08451733120651056,0.005172585236861876,9.718584898235424e-05,0.0006132486077619771,0.015956710398431755,0.13507080793961923,0.01752631852251773,4.051170111087547e-05,0.00999539713420754,-0.022620891231924577,0.017506944229212437,0.08525453934553281,0.0009964239322083476,0.005672570132275157,-0.03727619810254672,0.09297817473454299,0.01011071826643785,0.00014018852981999129,0.009097211222739002,0.009010914506702607,0.006554187099640645,-0.01414857998504417,0.0006720079217670641,0.006263255087803106,-0.0008909735237699379,0.010320953752686369,-0.0024761470657579604,2.5725732893470093e-05,0.0023865437111320106,-0.03634536233658838,0.09207962024443893,0.026929395942029682,0.00011725639049714416,0.011808322681409793,0.016728844386213627,0.08085817394800224,0.005844008728027604,5.823764843586929e-05,0.0053607533401777195,-0.04321206897297319,0.030511378274266344,0.10099788024253563,0.002762270510219033,0.011312684052474927,-0.08264361809457882,0.5310478268105491,0.14007335259844658,0.00012806421565493694,0.0067418456293993475,-0.0017871824474991536,0.00932052693234653,-0.006234254265358262,0.00029691808895296426,0.02745844563892576,0.015985443920200477,0.1067926488440495,-0.03334643957516411,4.216424212068919e-05,0.0026226996305173398,-0.020533089225318237,0.12131128066458745,0.002306689874250171,0.0002789587024385017,0.002557373636372484,-0.03482012694577476,0.4280013763726357,0.016532845884672062,3.376100884821855e-05,0.020705436808617084,0.005694412951012606,0.07198088819575353,0.00038937185816319666,2.643099218065145e-05,0.0002509879853455669,-0.007896863018466793,0.02091082391202059,-0.000842176696767767,0.00012164834801572546,0.004581993676235779,-0.06423384574750007,0.4561910555379211,0.03502219914064601,3.2524418054874595e-05,0.0017742036645969693,0.007521616676282062,0.021787011571390815,0.004173597088510592,7.654043303563262e-05,0.0044404120125661984,0.013953825053790158,0.04968502078701797,-0.006058580580165171,0.0001284151884563882,9.52580747246069e-05,-0.008845721826445063,0.007474747157922147,-0.07345395589182345,0.000676413602473128,0.022899751922862577,0.030623580056962613,0.10118221303816055,0.000943034235543699,0.0001273907210300362,0.023691100220508257,0.031418044055075235,0.0981458403906374,-0.02027223271136278,0.0020545959180222253,0.020313818971124165,-0.020751062497560296,0.19927026158191116,0.019880467152231098,2.6778117494488016e-05,0.008466203299679554,0.06971769786753775,0.19638384690759175,0.08869154641691557,0.0011606694263268016,0.005108057580999501,-0.009661408926009075,0.07436528303725999,0.006685384592608194,8.651588851752364e-05,0.005877956734692387,-0.031669271870100685,0.04839726614112542,0.04743126612280638,0.00015444101054010254,0.02272914982604426,0.0076860983842493335,0.010263602344194853,-0.163303634241406,0.0004298431753417291,0.003574529098481136,-0.019982478105444273,0.08185592509799591,-0.013376297573752124,0.001892123875753867,0.013017950785317065,0.026628267675193613,0.11497143453654639,0.018690135042082744,7.43093280444921e-05,0.011279372383786101,-0.02061894270401465,0.025154936657597896,0.005804630209390642,0.002037606679135354,0.039510539508751094,0.03064478471436154,0.10155987165476581,-0.04443524681056689,0.00011955024427349777,0.01017328188245541,-0.017380368507430376,0.04558475948556216,0.0020590516744910547,0.00015456091806836968,0.02633543736412865,-0.007961953216438828,0.028483205018198038,-0.006485304708635674,6.822518006242328e-05,0.00634476882133354,0.04605018676958238,0.12772501229220268,0.02683674051925211,0.0034172244161167157,0.0008950124174820077,0.01079514436746491,0.05461510212116474,-0.005898013460592158,9.832326131060057e-05,0.003801048466393757,-0.011477050073077049,0.052761495084726044,0.0019518628503927761,0.00015775167066153914,0.011973827120956276,0.023420699777539827,0.1286557943774859,-0.027759565119371485,8.610318471881443e-05,0.01068387457270968,0.036473746388317525,0.20985911012944242,0.016212579536749462,4.368174124562866e-05,0.007989938309821093,0.020762236813696672,0.04205823119655168,-0.00755892850965559,0.00024068694268140824,0.0009298521714845372,0.015111268206279472,0.06256414969068819,-0.0182814886495125,6.0060610624376696e-05,0.013809207638160636,0.023062670759079893,0.22636815555763254,0.009588178468831785,2.628606347662065e-05,0.0051972672732433075,-0.004850666142287612,0.01531810538436482,0.003250980616052282,0.00011068921205214774,0.0026189303007154077,0.03168917572912135,0.15531956173612255,0.0028606797205999197,0.0003215975691036131,0.005077247477333324,0.03303244418694488,0.16695719850539428,-0.00018058633304915197,0.00011332020645278215,0.002303046499766858,0.003001392940377127 +2019-12-18,0.0005706433628419517,0.0034098385986885416,-0.04787543415638295,0.00017697728636733881,0.00040098047368718995,0.02673787660305048,0.09691926878555326,0.014425294839604558,6.619532401892114e-05,0.01694388868309239,0.037965995039969204,0.12400888212701709,0.0619729888115915,0.00014162476380520972,0.0013257226394265975,-0.012599192451286894,0.012854382801877826,0.02974947305705521,0.00033079530510458184,0.0014730275510150925,0.003108788566756417,0.007294596682232257,-0.0032798810602142243,0.0002229911737816369,0.01390173288191538,-0.0020611510636112194,0.00557150720008325,-0.048814283922415325,8.077628331541083e-05,0.00013576547485305134,0.057444980237464006,0.18476600561457873,0.011478621552675254,9.122625979638957e-05,0.0037879448923296894,0.035219670217205006,0.2865195987012846,0.07039392487041575,4.215310452169622e-05,0.016758939892447,0.006712128727079079,0.006404897523482751,0.010291593582273311,0.000808151676117332,0.001438729179690638,-0.025683188137436603,0.06803310613450572,0.005707106473136024,0.00013200504207186664,0.0009033830114234219,0.03288974819843749,0.02388878453905651,0.024252861939638423,0.0006729624829935405,0.015749289484824593,0.0013297316711485113,0.017248066225042456,-0.0023808384664266314,2.297451707051992e-05,0.0031717770687689807,0.027643167823821136,0.07781016014108504,0.011429606234242726,0.00010553646401792897,0.03284016555465003,0.020390000214196548,0.10952276626960696,0.016109588128544034,5.240523154846342e-05,0.005249184942943891,-0.02452331714976995,0.019940331132289546,-0.030445870346440647,0.002398666232221735,0.0024413453639779157,-0.0211858141744815,0.17514692648685726,-0.10489830579225033,9.953933747810793e-05,0.012466023357240471,0.021268043009255933,0.14298317250289344,-0.02390970391723456,0.0002303301725147083,0.017402161871070312,-0.018848786242075262,0.11396028737690106,-0.007039888492341998,4.6589796074014506e-05,0.01860322042108148,0.008354921548417646,0.054644475010090676,-0.08591270238385121,0.00025198977911452923,0.0009006137963117474,0.025692384939438494,0.43569315249843327,-0.03780938529611572,2.4471123964603912e-05,0.008763007606723236,-0.026922179330357964,0.3007716496187404,0.07908992295273926,2.990577242352076e-05,0.006008065503672794,-0.003057047620474652,0.0077196015480429985,-0.006551715948756365,0.0001275645716827166,0.02662996222420277,-0.05809893885245662,0.45153944582271044,0.026072732433917584,2.972110012338069e-05,0.02264701721358007,0.01843027514827757,0.05181010639585243,0.03618283129566525,7.88668903040994e-05,0.002942024029000206,-0.00557237352350133,0.019769958170546432,-0.0031820302695452435,0.0001288792693326706,0.0002727475941013042,0.02660483918318281,0.025548974596779253,-0.08231179461212493,0.0005951997292792051,0.005387389269350773,-0.010034118099907886,0.034301968138183064,-0.02161348009645634,0.00012312498147735627,0.014978470208188516,-0.03949991415247812,0.13969186847059253,-0.05878578350322482,0.0018148644768165875,0.03910930993267783,0.006720647957758073,0.06121352371873985,-0.009647631076360349,2.8232280603850648e-05,0.005238709854131383,0.020274918346357116,0.05688735853362409,-0.08214572909063118,0.0011652379355361847,0.023485195628301266,0.0007134284476872546,0.005902279918964893,-0.0030944700333673083,8.049265704631673e-05,0.0031740832784173416,0.06142905695070035,0.08011759427876847,0.23187103585062746,0.00018096364459792592,0.01898565623981297,-0.05100620838565563,0.07977044923929585,0.12211067162769255,0.0003670159316921605,0.002378996795211428,0.006882698516826241,0.0256868415628395,-0.03522043078199738,0.002076817720310188,0.015124312632056967,0.002399579991167348,0.008796518524805863,0.001430173441769271,8.752150573161746e-05,0.004248405140096615,-0.005685218386773545,0.00778425141575139,0.00026269762414792366,0.0018155469716145086,0.013427908910879525,0.018671657185860703,0.05271329852852007,-0.001312098105616277,0.00014033910695687225,0.014156267612620534,-0.046573799345099406,0.1212949838612339,0.01985212680953296,0.00015565361189801927,0.027652191305924688,0.027190707727760128,0.10745335283215082,0.04051859545042367,6.176102080261764e-05,0.01229450575826081,-0.03928366167382486,0.13467765324137213,0.027946779535902758,0.0027646138527629687,0.020858520773728326,0.03330319369667949,0.14092976573045682,-0.00771887397573767,0.00011755029517998084,0.021262580468580355,-0.00680418544818693,0.03332100353563675,-0.02698208196106315,0.0001480876541484284,0.007300335976346344,-0.008246507045478036,0.04501971229176351,0.0022436841131986698,8.663951607412931e-05,0.019828713231430522,-0.009068889725922114,0.03884609190731751,-0.004911285676804596,5.867514650233109e-05,0.015200260904258332,0.005403879119364464,0.008905269084415466,0.0019497958006854266,0.00029586117174514373,0.03242558004374447,-0.008354671292387827,0.038254484000510194,0.01218449488651851,5.4307698114045596e-05,0.0023135467938095984,0.030066164023951566,0.26858763983308653,0.02235602464220652,2.8881735402659162e-05,0.01864517651706346,0.0220467190533618,0.08581906829782353,0.06762384172863596,8.979851134101338e-05,0.005584669049351401,-0.01379986835584413,0.06570433020959292,-0.02187876608358572,0.0003310616855913007,0.00011581404806343485,0.06765324479050297,0.32701488456296535,0.11809595442168788,0.00011849305766959774,0.017299742357322866,0.003941544803031232 +2019-12-19,0.004989488467029993,0.0346363762213984,-0.04515842287188932,0.00015233866967214891,0.014466108876841268,-0.033392078403074885,0.12418899151642024,0.0475045131121625,6.451651167757497e-05,0.016154464667190054,0.07229835173012021,0.23228537310592606,0.14304199781725963,0.00014398051990262514,0.013555472407484852,-0.013453595706336564,0.015963358424724843,-0.07704037232059625,0.0002844342980574102,0.00938496678094518,0.016883671771041216,0.04016238517864539,0.013263512602989715,0.0002199607419696618,0.002282294817806385,-0.004443543458334767,0.013677470315913928,-0.000865155376065813,7.093660359997058e-05,9.201913566583625e-06,0.032615764141624426,0.10611211534494572,-0.0071159623739679425,9.018876517766972e-05,0.016609466320724388,0.011926104460589376,0.10907990806920194,-0.05620149785750043,3.749319583205803e-05,0.003149695666695619,-0.00967425335909922,0.008236661314502097,-0.07975811310435185,0.0009057556151687761,0.013460240094828758,0.0007880487717826728,0.0018144769351592202,0.002234962132152214,0.00015186704089916207,0.005201660665467529,0.006180650789682165,0.0044397734577678125,-0.00019325900982618472,0.0006804524061372359,0.002825964307470077,-0.012288201465391467,0.16340547153730972,-0.004004299878953588,2.2410137329381662e-05,0.0018607677962217885,0.011156507774803022,0.03283064926067287,0.0005991773104488734,0.00010094849273009483,0.001382389106570729,-0.017312769181316898,0.11405656399260897,0.07384527558576512,4.272755807520364e-05,0.008733816633005107,0.0640915988656661,0.055606464362253694,0.12609043606976664,0.002248012885889527,0.008858072998448978,-0.028844086668512525,0.18241856420142322,0.02249679020211487,0.0001301187451909934,0.002290194773532059,-0.023246958000389978,0.10843588998579042,-0.036051067335418054,0.0003319718927646603,0.019997289351480273,-0.009253612292180233,0.05224360442909983,-0.002366806263366661,4.989294310176934e-05,0.01732279375366246,-0.0014564864109726059,0.006744666964209108,-0.0068192877602015626,0.0003559038896171697,0.00012034957688411433,0.06821413730734348,0.8157498214919278,0.05258854621404894,3.470145101729557e-05,0.03738347690709482,-0.014275499653093304,0.12558258613476525,-0.04101663264487695,3.7979006923705834e-05,0.013964540969714672,0.006428419487292514,0.019886735624883755,-0.011946432935810717,0.00010412702598875309,0.0026116168616726124,-0.005895818112347223,0.04251328393355094,-0.029681174557074093,3.203404635960161e-05,0.02011978250241861,0.012836675582272654,0.0359249300546869,0.01247425843090895,7.921985015545725e-05,0.01669854549793266,0.005361280894935508,0.02105567387133366,0.0012952135884175995,0.00011642547333877579,0.006253436960892209,-0.09928443901697447,0.09740489147562738,0.16732620897635966,0.0005826073789642305,0.029219213762551547,0.005752031220044362,0.023844179330957373,-0.006539394021920754,0.00010153712543995373,0.008572978965956164,0.0010226544810563623,0.003498660032679894,-0.22090068464241816,0.0018760584133908755,0.01101086048615044,-0.037400656349824694,0.28836586488708915,0.03802450407565542,3.335166879355021e-05,0.013508180115079378,-0.027493288809998632,0.06632798530703747,0.0176863364734562,0.0013551930261061036,0.006862433525500928,0.003189312330452544,0.023694951670747248,-0.007285940162939271,8.963278030500718e-05,0.010679049871893264,0.035714775256982786,0.050011601425961845,0.036641573606102706,0.00016854758977465323,0.0297975410710981,0.007340626540234392,0.01083584920559088,0.0029125150705961674,0.0003888428259468174,0.00829846563759862,-0.017757689478857138,0.07427191990532209,-0.01866034489340105,0.0018531567170599905,0.010092318256565704,-0.0032783877268084726,0.01094232045777909,0.010074358887320799,9.612608530316835e-05,0.00287460653468325,0.014168081510984223,0.019420871854380534,-0.012813223000852945,0.0018135081677441312,0.008462755395275435,0.012341006947287701,0.047403203180769814,-0.025566076082671908,0.0001031475564400064,0.014759558696088316,0.050328123956106946,0.10835156840424327,-0.015232740531871264,0.00018829375474704353,0.010618251758873105,-0.02574768283067658,0.11264880885882231,-0.00473233178933483,5.578603202931813e-05,0.0031472249298191727,-0.012993241421333694,0.04601720325806565,-0.008148685203773124,0.002676180152221199,0.022304941061923017,0.0015879669031475625,0.006711909600266683,-0.0027826761800644234,0.00011768901246178035,0.01154202380079194,-0.02974055275711387,0.15590311074632376,0.034455423995316536,0.00013834231526609268,0.0048908704342714195,-0.02674321149914045,0.16030625031538065,0.03357328326546968,7.890632227737675e-05,0.008771249229970496,0.03392773156087725,0.1648432219825469,-0.009981143188850475,5.172864752074e-05,0.021793184192569072,-0.03925022012956565,0.07302443656330428,-0.005518250159295655,0.00026206153231752503,0.009892128971801403,-0.03178040202963809,0.12118285691367894,0.11099475967381346,6.521275918912377e-05,0.012877228866367031,0.0328391370968686,0.37603578955579986,0.05158315204449845,2.2531693816808217e-05,0.02267204806242273,0.005299846733128571,0.015430252699666238,-0.07225835545939098,0.00012006024807879905,0.00315100360525513,-0.004848592254033758,0.017798013788827904,-0.04982955258112609,0.0004294099420427002,0.006943464837990705,0.012713261427976448,0.06280869320382132,0.002260981332753742,0.0001159335183600459,0.005931456075428682,5.475545071578633e-06 +2019-12-20,-0.0250403288501503,0.16881518142348703,0.04293684032831312,0.0001568610479790432,0.0011420965234891379,0.0003958985832220825,0.0011799835603643124,-0.0023754977903177156,8.05041960732314e-05,0.002566315981753999,0.021387243625504534,0.07185792444027264,0.012729783293169225,0.00013768205904843273,0.019410010776019296,0.0056486855144276555,0.006542316542133767,-0.11769182457764726,0.00029139607631302076,0.014411345231626963,-0.009701939748173105,0.018773318322478715,-0.0839435798186682,0.0002704053633425254,0.007412341465721173,0.011464891635951296,0.03313156077829105,-0.032061954394371296,7.555701615022284e-05,0.002998929733341608,0.00021380876649914474,0.0007244647258048077,-0.007014407261409738,8.659605721075598e-05,0.014865877249565444,-0.020567730993645644,0.1653958388215227,-4.032106528939122e-05,4.2644243942101294e-05,0.0022774701663290037,0.01193236096266227,0.008827749087949234,0.040193279393667895,0.0010423682837401764,0.0025786272850389855,0.0013727914200081567,0.003238229971539932,-0.03186746897886303,0.00014823772950487885,0.008437548482792389,-0.00047577275068441167,0.0003749119441800567,-0.010996202674303023,0.0006202898094003267,0.007958457322003863,0.0038472366563241742,0.04700853737243268,-0.011813331363725197,2.4389053857032555e-05,0.0009725554794752509,-0.0041021951192554765,0.011882197792060466,-0.007819684591585543,0.00010255824347257225,0.031185320221811436,0.011857869276374979,0.07005059217595472,0.006939482030450061,4.764931543732458e-05,0.0035292337762652948,-0.014750688860692111,0.012538378558127367,0.011127001153067586,0.002294530828609264,0.017052192288919403,-0.05275008571462179,0.3341660036673524,0.056337545672564764,0.00012990115498619313,0.0018243226139428562,0.01387592682876231,0.08943643229597104,-0.10398516888467414,0.0002402457792309429,0.04078904761874718,0.02053127495450994,0.11573754147220337,-0.012287015466923632,4.996922598725871e-05,0.006133997039018377,0.004753818176795059,0.022762528181356958,0.006419357112482259,0.0003441984243066039,0.005949886223755944,0.008102539187833074,0.11216712220956238,-0.04420985644372354,2.997683612776758e-05,0.002873360602721542,0.038334201228089664,0.4159256875589876,0.15570608002037684,3.079302709525368e-05,0.01966431332351116,-0.007257337760010467,0.02264920593405327,-0.012000916149862602,0.0001032160205686309,0.009924272908451496,0.0717374467897877,0.5364011944102036,0.10112539601816681,3.089217991463662e-05,0.033141268748772205,-0.01466787351356722,0.03693977731511503,0.032505089279374594,8.803396556926514e-05,0.007752456934318479,-0.0031833181420344234,0.010124974180417565,0.002586290790332278,0.00014375889156964148,0.006413497616115353,-0.0326143844545173,0.02894771887720503,-0.0094690427861438,0.0006439770663677839,0.06223637098097212,-0.013972155524787047,0.05312990480952927,-0.002515715059977268,0.0001106905084654334,0.0019886708144365843,-0.004664666206066363,0.01700897581037152,-0.00014978686925813144,0.0017601982430329414,0.00876163410319104,-0.01728937559820714,0.1673432321003436,0.009454004403999634,2.656766286802567e-05,0.014185078247892299,0.04425983441201134,0.11610599133476204,0.02679893475294063,0.0012463109871069628,0.01353604580978656,0.020005053582123553,0.13601358123163523,-0.05312622352294297,9.794518400575514e-05,0.016846311822648515,-0.02219975826251716,0.029304775605320736,0.02166943110269675,0.00017879494311705385,0.01704138460165936,-0.02065240013410156,0.02994110548902782,-0.002505813049210052,0.00039591924554040144,0.03189853038595965,0.04718648685339503,0.20049993138418276,0.05523718563763126,0.001824121478715594,0.003489440777026736,-0.007452512283738604,0.026612577816624124,0.016899164494868626,8.984752672874086e-05,0.0027815046210407247,-0.03737674992354322,0.04600518398502854,0.0402871608832171,0.002019630658388584,0.0323440130713556,0.019465940443118647,0.06583621499892946,-0.22264653147725008,0.00011714575938386448,0.004518120033880965,0.0067784549567261486,0.017076991333918514,-0.002833141230076801,0.00016090877647647117,0.0003810319540796125,0.02167270375106656,0.09083052738878954,0.008240791939072931,5.823648895949564e-05,0.023256641073167307,0.05858018880150301,0.20882577493790616,0.012859230738036626,0.0026587942035485785,0.01467413198715416,0.018782539675125737,0.09354633865016165,-0.020806864002477894,9.987759850528039e-05,0.0012030782421909932,-0.02357736410640852,0.13912480508873745,0.018352323856996464,0.0001228998819892826,0.019226043295894894,-0.05639030910656048,0.3537104624567936,0.08018069725803628,7.540588959473334e-05,0.018004569999312173,0.00016301419302409,0.0006986009934965686,-0.024531548362007893,5.864670467659336e-05,0.013487628890915426,0.02808690677242499,0.05784836706606214,-0.006577637613253581,0.00023672395198326223,0.02034738011569622,-0.03065337875100275,0.13305464620578103,0.1016360617380095,5.72878709922918e-05,0.008511014066222674,0.03527602249549068,0.3520229804157352,0.03789943503571895,2.5854722495921512e-05,0.006452798323111827,0.00239769614081373,0.008531243616998266,-0.015395041439866104,9.824054543495546e-05,0.0017800258673210613,0.02357006261345138,0.08917616573442073,-0.02337638594420385,0.00041661980554454574,0.0021053755714184395,0.0026774549481801725,0.0136642029254556,-0.06114732493842939,0.00011223018140884697,0.00867734973088764,0.00299823299065231 +2019-12-23,0.009488255898322213,0.058029230613626755,-0.042808463848307006,0.00017291240866793532,0.016184920057569562,-0.03206959817383278,0.12175448515823586,-0.015571402732700978,6.320029076085625e-05,0.004438266643222527,0.03147748693351035,0.10625136225355221,0.019195641140980112,0.00013704485949862254,0.02002924932394818,0.00781422603776314,0.007610899112850274,0.004862087066305286,0.00034651166620496275,0.002340172661375279,-0.044329961878957984,0.1006697288472792,0.15582972806800588,0.00023040729817400945,0.005728503784113812,0.0006556891338669245,0.001807621550628179,-0.025163939425052715,7.92021946815868e-05,0.0034924375845843507,-0.028729791483445382,0.11240067338374889,0.028857382810461487,7.499864483217632e-05,0.0030658185524398904,-0.03500289074022583,0.3200078334101707,0.006457677275887788,3.750955547780305e-05,0.02490572028555188,0.00797448602626108,0.00768523264275642,0.013285908288365959,0.0008001851165876187,0.01329028501348383,-0.017623968908774955,0.04185355064150422,0.004710207060461601,0.00014724253882817493,0.013582672774059336,-0.003297405780960686,0.0023287449176251133,0.004740170544643796,0.0006921095361756597,0.007085127140371282,0.0006077367290835903,0.006742301921178575,-0.014089619214803338,2.6861488634874007e-05,0.011448420863170107,-0.03962214412751869,0.11471930026278086,0.023899969059245137,0.00010260121930952299,0.0044821332412032,0.010064435174072593,0.04731209467292415,-0.05692500739502381,5.9879621843654654e-05,0.0031767452439664893,0.025381854831242844,0.017371005342391103,0.013680667907537228,0.002849845884278053,0.007358622932493697,0.006497297733232235,0.05245476107123188,-0.027671385708917275,0.0001019295162279666,0.009267318679002034,0.037819023250936216,0.20534524646468374,0.0361452890613531,0.00028518973277442776,0.007246294877880297,0.042924706277156464,0.25066197091113296,0.03661233127251976,4.823694979780655e-05,0.005481289006211503,0.030287529070146684,0.17161679491540457,0.04580103967154423,0.0002908645975617022,0.0027519409256080984,0.01674119829081888,0.21714128674972896,0.0008028923316916322,3.1994429061691143e-05,0.009171089127406658,-0.005581084862170693,0.0494449754052017,0.001497638865440494,3.7711878851755936e-05,0.0004858180442218513,-0.029144682769233494,0.08889368324675007,-0.044656939547999264,0.00010561149419431855,0.00031003033879754014,-0.01939922597572876,0.16271463690246482,-0.002706407277621266,2.7539126230591777e-05,0.006989481883205693,0.018299947828547495,0.05131035840151089,-0.05743369985749466,7.907190204250853e-05,0.0003416462066100929,0.006900532029546921,0.027030993181955655,-0.001711130894110106,0.0001167264207378529,0.006220640274693191,-0.03596297363263364,0.03765155640099832,0.005854237153743107,0.0005459441574664249,0.006251067813956986,0.02857539531841502,0.10803206819644832,-0.10161506848029445,0.00011133342402923798,0.027750995013377893,-0.09443967872763015,0.3439714930856499,0.12306442556570275,0.0017621838800603651,0.021470411068835668,-0.02457719105811876,0.23250036865516246,-0.02064197546221157,2.7182587522557445e-05,0.016789990664291023,0.06188587646479042,0.16795670890019795,0.0496513181267696,0.0012046626896638902,0.00470191241915782,0.029764714634263254,0.22018213983144302,0.0727807761028869,9.00212995881425e-05,0.007921872665395745,-0.003194118310820354,0.0045635438413931815,-0.001815267195782121,0.00016519395753167334,0.0011911876102760162,-0.005260168572290601,0.00753763006962372,-0.029926834324792373,0.0004005610866722037,0.003875829161754695,-0.00898891290274528,0.03902664376720392,0.0009841379234300552,0.0017852387679553412,0.00012618738021528964,-0.001627734587462587,0.006738199074294583,-0.042132222447390996,7.750507208956302e-05,0.0028375222102839976,-0.05805174817016593,0.09422675276712773,0.044488797870724524,0.0015315044733014104,0.009860950990955374,-0.002303144607653434,0.0064536774486164995,-0.004896284647549917,0.00014139367666231263,0.006586472283155149,0.006113948365072929,0.017032575971868937,-0.04474560347089419,0.0001455130044990452,0.010002904843439273,0.00838482606857917,0.03384098987174408,-0.007706712128647116,6.0473475000273606e-05,0.004086644148623642,0.036109665716986386,0.1394928041255495,-0.02673817565576156,0.002453520670929411,0.01148821817467992,0.019196427830239088,0.11056129433382526,0.003694925090236296,8.636899713624625e-05,0.006088674323275571,-0.016403257246923476,0.10085078658338383,0.0020189120827517164,0.00011795370595445502,0.026479111107775493,-0.003813376468499334,0.021355097513412444,-0.03151994170841152,8.446111728748784e-05,0.010304055011105135,-0.02362835660721218,0.12207218536607943,-0.024121865641837142,4.864791058421478e-05,0.0018281220138618834,-0.06100872281055394,0.12652501093060906,0.024876220921794416,0.00023509583973875485,0.021944304787507567,-0.023971867821866333,0.1101518953885604,0.038914281933257897,5.411582401580025e-05,0.008973911300159839,-0.022055886748073187,0.21796276988331392,0.01785407317191212,2.6107993161036046e-05,0.001629577173507523,-0.006403923698253238,0.020186999339502746,-0.012798316826431604,0.00011088769205911906,0.005604067641882407,-0.007175175988500865,0.02654334967328613,-0.025376863121442206,0.0004260933931270113,0.00034042899089305927,-0.02235350878147764,0.09926222692137887,0.014036541227656402,0.00012898330023005826,0.022313350051375063,-0.004846684217707051 +2019-12-24,0.0016903368696671189,0.012723677684263843,-0.004578714154729844,0.00014049057477308276,0.007444783876880151,-0.028300492024174957,0.097228729906714,-0.0035909309948557347,6.984091171147029e-05,0.008586332550975961,0.04999936384885011,0.14985489427449095,-0.011904439648465808,0.0001543443555175184,0.017923032577874073,-0.0052725291646442,0.006340909582457462,0.0018238785831215976,0.00028063076912782423,0.0050744356999500775,-0.05535111131344423,0.0978087785342616,0.15137159240825848,0.0002961053688035347,0.012542492549087644,-0.008830105975658444,0.02477950303581435,0.006617988020562054,7.780724955656876e-05,0.00437177796318549,0.02117303369370816,0.08412214303401926,-0.00033308790433174364,7.385206034957624e-05,0.0027874492635059076,-0.021431818876876386,0.2082013013924952,0.005594386974051836,3.5299959329625574e-05,0.0011006093476304741,0.0014527606913451185,0.0012351535072607743,-0.10660670549366778,0.0009070222294725999,0.003962282980690338,0.024805503872234243,0.06372576213513705,0.03951872423355965,0.00013611152550428054,0.004365599940997044,-0.011316034051913716,0.008265756010616276,0.014822947690647547,0.0006691693216250359,0.005873550483883568,0.023863278495557347,0.3581282233412806,0.10711126722442238,1.985703269617533e-05,0.009683117541921036,-0.004992385961326152,0.014140245692313624,-0.02231492779871873,0.00010488230796836643,0.019519268150157462,0.017754434320368783,0.09486958752770869,-0.002495622129964966,5.2679500165428776e-05,0.0014143134304767406,-0.030534327177178487,0.02571688466346572,0.030620594541732646,0.002315756918561929,0.01731335638272643,0.03550807310055206,0.28096419112212606,0.013222953221741385,0.00010399877899170881,0.01087705657620482,-0.06552762024114647,0.3470989505224328,0.1107046209924009,0.00029233399887880636,0.017274257932129226,-0.04544943086997074,0.2703392602859484,0.03111358761278374,4.735657489273294e-05,0.01631850564407338,-0.02235879205574081,0.1122526366902622,0.0007476073686351067,0.0003282755921863772,0.02864266995009324,0.033350822872332986,0.41329191456237196,-0.02144857661516527,3.348728019999081e-05,0.001372630123397851,-0.007733489613206073,0.09339091694708786,-0.018079955433023345,2.7666395189518475e-05,0.007265855869206347,-0.033988837761161114,0.10068578464369288,-0.0019451550370221346,0.00010874039624045288,0.0128200441072403,-0.04539715117484256,0.30358534739723453,-0.007901638330956603,3.454141860436242e-05,0.023905857557915418,0.014969858085667755,0.04929038372275372,-0.008161764722911786,6.733375996024672e-05,0.0019012058177084556,0.007886665961707048,0.026037069649053945,-0.049933728463963635,0.00013850005234340384,0.0031029566689437563,0.020224262047801228,0.022948579657284546,-0.017146063064985263,0.0005037237572085887,0.01966463170403719,-0.00021142691280416458,0.0007085781444946132,-0.03399643979470614,0.000125591001809963,0.007252554373409735,-0.013080378338101667,0.04659340033858004,-0.02768358121084006,0.001801835231454328,0.006111280742553602,0.03357490719416644,0.33628425406140156,-0.15999842107520562,2.5673819495283214e-05,0.001152858616978284,0.015194920579960964,0.033781931482011654,-0.0010022962850765277,0.0014705683933092706,0.005560433233165867,0.020937247290483026,0.16307708636588933,-0.05381702781678523,8.549727683931262e-05,0.0047317712959692925,0.015282159505570613,0.02441520811645114,0.00794395017105706,0.00014773033544426953,0.0028044781137005438,-0.017276434778425043,0.028323362888508716,0.009098451729540854,0.00035011701896228736,0.015346382429983615,0.021304788356978764,0.07520760057864438,0.0036066432107511085,0.002195663752112738,0.01572320312333772,-0.011777743862459888,0.04751015771619512,0.027754278617249807,7.953641347702872e-05,0.006994263205247651,0.0472882401261102,0.059058749387746634,-0.007618592632839964,0.0019904262805330343,0.021523294987930472,-0.025103325580443012,0.07652343293717866,0.008559801280989028,0.0001299729123599537,0.008212501220051207,0.02715547975957006,0.0696541800798655,-0.014268475857393447,0.00015804132847613061,0.00023324456197936405,0.01804183332018793,0.06955820484888733,-0.03717828798816064,6.330619716958131e-05,0.012643026053610812,0.040287284532098656,0.1264530657919507,0.015690189435910596,0.003019650575616045,0.015156883342239419,-0.03980259269727611,0.1999550814441769,0.011110282916842665,9.901921701423867e-05,0.01429813719444887,-0.03815691266441863,0.23726544957901163,-0.010562286717177943,0.00011662710925121014,0.02581052401365788,-0.028792322207226405,0.150939107573238,0.020086265621318666,9.022431937953539e-05,0.010063836183247033,0.00025469098795839236,0.0010229328491410264,-0.014956322776212706,6.257687160732185e-05,0.01489963759035809,0.013452968855490353,0.020610666393646105,0.0004144621170439246,0.00031824053584383,0.025411520282384463,-0.004260185654110239,0.0168872801269225,0.0025046332625340514,6.273114201882361e-05,0.013658281648639772,0.05899909154890993,0.5940893652287346,0.053123577557779154,2.5622696467439377e-05,0.005310077773667207,0.003568939422627209,0.009677239115638192,-0.03732865768308534,0.0001289129862448762,2.5226098114842414e-05,0.02954105250655157,0.12750055057150994,0.06008173651478921,0.00036520933959759204,0.008556476951139431,-0.016223471806949736,0.07148274040935963,-0.0038964284410166698,0.00012999133407375332,0.0008392638203167946,-0.0006186236259643667 +2019-12-25,-0.02988628390169885,0.22711848200417672,0.06761549487803327,0.00013915730993466316,0.006093844482512452,-0.016184862035358655,0.054880125552031936,0.00133899422269822,7.076270597345711e-05,0.004119643157060408,0.006745957058341207,0.02182301370301435,-0.057925715322993065,0.00014299671195557687,0.012053274477526415,-0.019719311830651075,0.02364076794151545,0.0185717338259099,0.0002815127252536556,0.0038040361390762082,-0.022824772912228276,0.0488195685957376,0.009358328508060617,0.00024463032950695364,0.01000042654395159,0.0008813468678800616,0.002204865477507252,0.0006438068355653225,8.727935089300907e-05,0.0007059066428623859,0.05295405072975635,0.2102263294700691,0.025761389811623174,7.390978428129659e-05,0.011224541024584003,0.0024242640939160253,0.02148443820744076,-0.01654263229364048,3.869497244655434e-05,0.009225413051210211,0.014147652202656263,0.012382860865681144,0.056738203825149415,0.0008810654440481705,0.0009224781330709578,0.011117677870954419,0.025356946730947336,0.01630440942556079,0.00015331301151071797,0.0003415303076166349,0.00268454460296821,0.0019001500261620241,0.00021034893914954506,0.0006905690183823856,0.009296058969293405,0.018351407039625282,0.2720381783718456,-0.048182662363124934,2.0103066046036808e-05,0.0008610518969766449,0.010927673339231284,0.03597073346277806,-0.08260484246302643,9.024630899450837e-05,0.03171161634397958,0.005849299055259637,0.03704145677053382,-0.07138456721176509,4.44505957484852e-05,0.0020875569429480334,-0.03212532704775128,0.027815798337312986,0.025157542020870696,0.0022525736582228897,0.016577736694244706,-0.018276496560856642,0.12390676966004334,-0.008925731740509615,0.00012138080741929059,0.005672155009069184,0.00669137721913897,0.03398346243535087,0.0006244812891114835,0.0003048990843344672,0.0049239653780712355,-0.013909465849344795,0.08384507225615298,-0.030106895111544935,4.672979386008404e-05,0.00643796395477884,0.04716053965241787,0.24844961706375407,0.07037981965442153,0.00031284357619744207,0.005692660060403127,-0.10065910443241043,1.1708398284658772,0.2168498914933927,3.567679278901738e-05,0.0027480798311370256,0.010166848803762093,0.10042992457800613,-0.023326257073334168,3.3822440194893946e-05,0.012123450119426298,0.0022566141566913696,0.0071189517389859385,-0.04420611266853018,0.00010210899821404962,0.008139678515825456,0.020686929452690492,0.13968766221530735,-0.013349415646556942,3.420821084533325e-05,0.010417551431030826,0.004169204428565752,0.011830625507565664,-0.001495465379811943,7.813090692086673e-05,0.005925337877412569,-0.0008153031678290217,0.0032782222097939026,0.0015510287583053286,0.00011371803249248384,0.005167633627028989,-0.0233663854804136,0.020609877505802558,0.003647620027552713,0.0006480248912940157,0.008282488433710208,0.013353943602496303,0.049241478045684114,-0.07893187648975035,0.00011414699068955136,0.01769287011405475,-0.0044442407632317715,0.013224170388941065,-0.03782754062273897,0.0021569909195472115,0.013987966436041714,0.02773113210541045,0.30763727939522595,-0.04361974020052278,2.317986130252716e-05,0.008185195367584362,0.02242312475225049,0.07894794085663233,-0.0768125330909216,0.0009285955451105678,0.0056747475159222155,-0.014572868783471403,0.11429320690589692,-0.05932318509445139,8.490832608612857e-05,0.006722436046161893,0.040597375178976304,0.05893225048677871,0.035091432983215876,0.00016258868380840885,0.015970718558741756,-0.057568654466502604,0.09417622333130604,0.069261214303151,0.0003508720081260317,0.0027531866716192137,0.02258819060163316,0.09862062812437664,-0.07238670713897345,0.0017752683916332187,0.027971008835548965,0.00790977080037002,0.03595818820548262,-0.0840261601343813,7.0575907048442e-05,0.005284533670395599,-0.05273609785057063,0.06825558016675917,-0.03837473257710611,0.001920644649865767,0.029215733025915302,0.0024212745058359102,0.007028653533378228,-0.033176132130379475,0.0001364859446047202,0.011042503549733278,-0.0010755385977191715,0.0029645525302158834,-0.13891575404095227,0.00014707106128661538,0.008105067903664765,-0.04671883297594377,0.2011575857834958,0.050165064318019044,5.6685175551610104e-05,0.004464407313822947,-0.04082522698491299,0.11919656271251199,0.0633625007078364,0.0032462572624621065,0.0021367037157836504,0.01667085304819057,0.08750001413134655,0.003859937310805175,9.477423134218632e-05,0.017393765629116206,0.005082964039956392,0.025877342158744016,-0.011675321987476573,0.00014244858953430057,0.013039093697245634,0.01924208187962357,0.11916947694962096,-0.027248471289915605,7.637227433385918e-05,0.012997770666997236,0.013993837154490273,0.06693555566914279,-0.1504090017349804,5.254450893193808e-05,0.01176540372987093,-0.01425174394650949,0.023345964534398946,0.0013924049984393998,0.0002976360852072236,0.0016834294437939436,-0.007941033945005449,0.030068028392561234,-0.003995354569700008,6.567294268801403e-05,0.00014632408455160745,-0.035544551132664866,0.32650483739729597,0.04824538700301261,2.8087604396810412e-05,0.006880590131413147,-0.00753364563338965,0.024484304295978625,-0.09038001976562104,0.00010755395481320436,0.009041757645365644,-0.04165792292791848,0.1629008636016973,0.12018817555235473,0.00040309015985037864,0.004063141299663266,0.0008824059685660256,0.00444945393881296,-0.01698201214738022,0.00011358827853170819,0.009188676730268946,-0.0038775213636910912 +2019-12-26,-0.0008946352508560219,0.0062782932134681346,0.0009582351910572524,0.00015069227719529988,0.02372478407760699,0.013787796342878089,0.04187525937567552,-0.024935412158134593,7.900378098998301e-05,0.00659882542623287,0.045691089043904926,0.15170397652718365,0.04076297313010908,0.00013932586537730593,0.036241012013160816,0.022321714414743687,0.023404765595953357,0.05865818031553111,0.00032187786189829447,0.007925942666687908,0.012799823189404617,0.029710756847776444,0.007019152666640292,0.00022541770701375285,0.0029029056863643992,-0.01818137384953389,0.052659238125223454,0.025218707563092736,7.53874173510699e-05,0.0004829551473520108,0.031872351453452845,0.13164929865631317,-0.030309571001280716,7.103713066680946e-05,0.002290617740911975,0.033852100563071245,0.3020986852112727,-0.06922567495978828,3.842690455661202e-05,0.004551838972359409,0.02630662854290214,0.0210556175683468,0.13544569795877157,0.0009634784275271995,0.008019452963513326,-0.07311546911043516,0.17961986571735547,0.24020725868949697,0.0001423366662663268,0.017920198804969388,-0.019859667952087674,0.012428737905667798,0.027608613677287164,0.0007810328694691794,0.0008460600526937951,-0.00821277579176725,0.09310561906778995,0.026106662362426838,2.628674814079135e-05,0.003145536278846361,-0.01696803544127698,0.04584664437904653,0.003527348573028053,0.00010994488929740934,0.010262685442881739,-0.004754567794677198,0.027941015085837278,0.0028506136763695004,4.789946722058696e-05,0.008341758165258792,-0.00038901889120466164,0.00033186715850521065,-0.019682540321804706,0.0022862798429436624,0.006951709528319625,0.015130907067958142,0.10593834600173466,-0.018757370006482546,0.00011753409931302711,0.005125510488318492,0.05212306557419027,0.33647624856931335,0.04191991645462031,0.00023987432686643057,0.0010174761623994815,0.009917574341426436,0.05711574189243918,-0.05298879539172076,4.891145680247342e-05,0.017399588336548717,0.024239045833941885,0.13373251748840087,-0.06250639631742397,0.0002987206923365476,0.00854113541628131,0.05721294138758565,0.8168251486710177,0.02858697834481253,2.9066678481227617e-05,0.005007811395196297,-0.014042277503219703,0.13822736681014453,0.010423491205235906,3.394104624383634e-05,0.007136493138435977,-0.06373657709063352,0.18664110330482497,0.13817633555069533,0.00011000291635351996,0.012361645830483114,0.04353319571678402,0.31629493691229454,0.02269635623292639,3.1792207581196444e-05,0.024177736646630733,0.019236521191075495,0.05007983076970275,0.005908474499773468,8.51610612685292e-05,0.001316110706104572,0.00483330864626251,0.015396318458332284,-0.1498905813614539,0.00014354108987074573,0.00550169354372753,-0.018607619409719608,0.014830996049741713,0.004841259492777887,0.0007171269714468187,0.018604692134712886,-0.04684681283268435,0.17054314176459667,0.13770031384739972,0.00011561968963858779,0.02882392609787756,-0.04510244805209678,0.1328675676613676,-0.019789725218198075,0.002178714405792216,0.019303012663804506,0.03276527025489421,0.331094836553868,-0.14528873635830541,2.5447407347153745e-05,0.008317172766963843,0.03214923903528413,0.09231229366698974,0.0025252323928994813,0.0011386294845358044,0.01439718757739998,0.03870196668492353,0.31484663122020323,0.10910174660238209,8.185771683133612e-05,0.002919444156889864,0.008390314939244746,0.013275603367154953,-0.017666289443757355,0.0001491658408283521,0.0024618522622521528,0.01796705187785664,0.026602653624702946,-0.025692907839489416,0.00038766427061997225,0.014739991838276862,-0.001831862572646709,0.006698369586239584,-0.076173858745939,0.002119698655756246,0.016291098810319267,-0.019111621041157354,0.061810758115929725,0.03391330853673776,9.92027760493626e-05,0.010315652111120883,-0.09031110497620752,0.12233639828313447,0.10876664251450387,0.001835112348305806,0.0038748115958496775,-0.007668650884747196,0.02338063003035972,-0.03263934889544709,0.00012995075100446376,0.003576474532739647,0.03904989747587419,0.10034785016290575,0.04711979128469567,0.000157751029225184,0.008160031399400627,0.0037749204553438253,0.015114945174821393,-0.027617119320734743,6.0955816564821255e-05,0.014539617045746434,0.00952008077735694,0.02660353721441701,-0.00446346207561806,0.0033917146471820875,0.0336588458419382,0.023615555537019644,0.12377284361757807,-0.005866270130106267,9.491030486645256e-05,0.005462388145939266,9.124217964809802e-05,0.0005154670910496643,-0.0561927124206501,0.0001283676208035375,0.001765691038190818,-0.015841652050778015,0.08136220628325937,-0.10439459582635657,9.209296425438945e-05,0.0005881067737710451,0.008195107745115868,0.042844568529041484,-0.1004237341096582,4.807356054669094e-05,0.006488469885734767,-0.020748092542860443,0.03866492891923341,0.003086040121268429,0.000261631694724621,0.01064485113476793,-0.011903260099651463,0.0518371544260638,0.0036579738100659363,5.7100399432740476e-05,0.001332399877632194,0.007730831452602145,0.10315080097247085,-0.019242925137161873,1.9336812482953416e-05,0.015042154938183856,0.0004012602244611825,0.0012463961530758082,-0.03850303355268696,0.00011253276150359559,0.000487725394661532,-0.0012467877673700168,0.004335991611999111,-0.0003032264984718135,0.0004532440067806884,0.007463529936639861,0.014731560091041318,0.06504128796386152,-0.05971643016162756,0.0001297273076682235,0.008755698788467535,0.0036725542525373875 +2019-12-27,-0.001555628112269387,0.009854711047259858,-0.026857831983417044,0.00016693541149730064,0.011249439837792124,-0.009238509640009841,0.02926710049170413,0.0053871161045910936,7.574129811479707e-05,0.006491986651138013,0.022765461673842594,0.07478578290092994,-0.02295107617555251,0.00014081684900462256,0.00825049712706172,0.01857519183999973,0.019235318458909443,0.025778003823427036,0.0003259130744926173,0.009673217486239807,0.031825044001097105,0.06790420028876587,0.01999478291431392,0.00024522805083223334,0.0011888602487629227,0.00697218825200459,0.02401283603447145,0.012851736180820444,6.339753748333295e-05,0.0012475111663078097,0.006525841857342126,0.021882041529930507,-0.0178165282305657,8.750614713915737e-05,0.008848661204428456,-0.01805834470249576,0.14288033669167813,-0.026694528982951753,4.334151502551607e-05,0.01420845740671496,0.02137234908475153,0.017055476373047596,0.05281830312655939,0.0009663471978050548,0.002130645665399395,0.003478451368061461,0.008631821431278133,0.004811117082232619,0.00014091115506729634,0.012510184867867398,0.008922120392913626,0.006460402774296338,-0.010016647117700717,0.0006750451828952092,0.007656878993902863,-0.001117876274257444,0.015411013992777823,0.002675794502548548,2.1616496825814678e-05,0.007699078994394057,-0.01586688916409422,0.04635462666242885,-0.0003781091534270311,0.0001016833248241924,0.0076688365693604165,0.009912807006172194,0.05519092133702558,0.009474657849979619,5.055810938380819e-05,0.005562296481017105,0.001618212421776837,0.0013077840317312563,-7.058356378430071e-05,0.0024133620151450645,0.007213772848823855,-0.022405145939236558,0.14802872681721604,-0.06567291584720437,0.00012455291068477157,0.004442041248941606,0.015532129566083713,0.08243908146834049,-0.013772696604088693,0.00029174679405002236,0.017679101828502203,-0.0012204128416582504,0.008003049981484869,-0.039679967269518085,4.295484889198243e-05,0.009749413802454988,-0.0106258616135024,0.048098504154169476,-0.025313875125126766,0.0003640989217587844,0.008205318745988016,0.014155519444612498,0.19586659661287698,-0.017275300872631037,2.999132581461881e-05,0.014746809013601373,0.009993035541455114,0.11987807612060958,0.0036823089203392527,2.7850909149864068e-05,0.002615764009103749,0.05156710687442094,0.12901585846624067,0.09276178247991154,0.00012875153802712752,0.0034293491114269995,0.05270023031154259,0.3515102437238661,0.0039016420710928324,3.463114920697173e-05,0.025033007392484194,0.036154499809064836,0.09334408367710234,0.10251343733105649,8.5872269923694e-05,0.0037394549371616613,-0.015046154829346002,0.0572371785927737,-0.15464373590000238,0.00012019762993582734,0.00638148411498888,0.007706978822166784,0.0060700773599630335,-0.14875801762830906,0.0007257139995495528,0.012083887613250292,-0.010034520078560406,0.037221955266592485,0.0035443439415628925,0.0001134706212227336,0.00039627545267774096,-0.020262976901627826,0.07381348470902754,-0.00035316558393370983,0.0017619221501027468,0.01825768006730568,0.007085299820472288,0.07069343423167307,-0.03515391348001856,2.577278482855583e-05,0.008388684108885096,-0.09741013295760102,0.2928584952843424,0.18754238997380793,0.0010874707370442398,0.012148727855991805,0.013850112759901553,0.123278425371369,0.00027482615908096345,7.481555016379269e-05,0.014940336224750635,0.051288414285120855,0.06979548302631504,0.07992216510785538,0.00017343523816213592,0.033363649957439664,0.004410710299361064,0.006506937142726736,0.0018509934721684172,0.00038907724863936093,0.011398953523982423,0.027634780672846502,0.1083289735278277,0.022072258622001906,0.001977250687647812,0.0032536487043044893,0.0033245093382257966,0.01507902552370979,-0.00335261725485607,7.073667654041306e-05,0.0024820346768882947,0.06954925362392449,0.09265889129169666,0.0770069483763983,0.0018658750871868683,0.0038542847971656793,-0.02218736157042438,0.08153430654098162,-0.02271423148879602,0.00010781552834364174,0.010959437707034178,-0.011698340817456543,0.03224799525073725,-0.05257824083742629,0.0001470557209942324,0.01542134264413692,0.03847479456638243,0.1895710164077524,0.03271755613293462,4.953569903718353e-05,0.013548199780094949,0.01364601290238037,0.03886116697472108,-0.0686281016292338,0.003328189127329593,0.011277642694209356,0.007892379588538683,0.03985302929551802,-0.009764806518367182,9.851156011569214e-05,9.760679176063045e-05,0.0024334947306270216,0.0150725792487189,-0.22023399004315025,0.00011708563580057887,0.0010732568059740382,-0.026306470371329545,0.1548475568997787,0.0147244380825459,8.035389297875701e-05,0.004293336245522405,-0.025455098318152982,0.127423209984711,-0.05757454628872549,5.020808212451466e-05,0.0005653137234690108,0.06464013826656567,0.13266052643832058,0.04129854429101959,0.0002375691010973186,0.03279134714349319,0.002079520760217477,0.007341065945201746,-0.06107112707812727,7.043986433567276e-05,0.006418924096160569,0.012375312935145951,0.11682980687727058,0.0015542062547914007,2.7329634050806676e-05,0.014631441232759827,0.02772400329209294,0.0922632024801,0.16911842751718525,0.000105035566299144,0.012183981319891993,-0.00782040318839352,0.032770036027279036,0.0020795975428111392,0.00037616656920934534,0.013333335466939152,-0.05308818339156802,0.19755271264526122,0.047865034529196146,0.0001539170259423253,0.010157132266272965,0.00490564375481281 +2019-12-30,0.041934351995649086,0.32963321872135604,0.06195809235023398,0.00013453198465294836,0.0032916993526924433,-0.018643197422520734,0.05999643190739604,0.006704263470090054,7.455993182655688e-05,0.012180554144972327,0.003654710900977005,0.01014111956468728,-0.006174436002642128,0.00016671102817669145,0.0015065407743279895,-0.03481000049921735,0.03516897902237668,0.15353662202809396,0.0003340504992528415,0.0018596756910900787,0.007551827974775632,0.016844237536763437,-0.016941453856975975,0.0002345840627796955,0.008368232880561741,-0.0096235519597985,0.030644462686171464,-0.02264158033339237,6.856936449386909e-05,0.008914251662510829,-0.015665517009934096,0.049858189948261876,0.005501676253344002,9.219302813563593e-05,0.021175769867019082,-0.01543514447381222,0.1549560791582117,0.0027528604033640698,3.4158649686688e-05,0.005002206699357653,-0.02274985226308918,0.01870015015759364,0.07012664234700634,0.0009381629408120313,0.004901334871716281,0.021411358753800614,0.04980662664065535,0.03054457085844047,0.00015032076813179776,0.004684852889633545,0.020313856858540893,0.016437622745046718,-0.043520031481681355,0.0006040567438384192,0.0050361387133509095,-0.007739115225661655,0.0892410068743827,0.014828333491990782,2.5843399465933788e-05,0.013393739762789353,0.0005068917397143215,0.0014245301669923314,-0.0468050322594658,0.00010570477381483106,0.018187303587574553,-0.03411405091076247,0.17084923692385987,0.24207005362659723,5.6205920938984545e-05,0.010645702587145863,-0.01447941112480238,0.012742808083208873,-0.03607044885823812,0.0022161988734231653,0.017979933381674595,-0.006072073536101331,0.039673540808630114,-0.003163654752932035,0.000125947098770913,0.027429985396448718,-0.02223420827257297,0.138378437825778,0.0066718761621132935,0.0002488063601697689,0.002241215657967685,0.029616314608358146,0.1755962633876126,0.019135774149064713,4.7509088781228905e-05,0.0010028143671990866,-0.0073079806472755625,0.042265763409472766,-0.005690976166388033,0.00028496759580693245,0.007299075939602045,0.003052460682772081,0.04735769185415691,-0.00898063047342595,2.6747905652272502e-05,0.0022517681265815724,0.010148065477016178,0.12861989227159454,-0.04168893624292385,2.6360693302160668e-05,0.00787982703403918,-0.007371292952977769,0.020798257899692103,-0.00564813771404199,0.00011416670530291742,0.007503464399531603,0.01490035579602729,0.09981148131203628,-0.002293904188449742,3.448327565183434e-05,0.033788820953094226,-0.002880273813108247,0.008680685656086023,0.010487386719359665,7.356260978394618e-05,0.008958923514043718,0.006339081246281926,0.02655288229579916,-0.019132288982979518,0.00010915992869905578,0.0011351202690648566,-0.06878449887998364,0.07066556716044133,0.05725228960494853,0.0005563630638322268,0.0134842187353881,-0.017638433915923284,0.06159666014400227,0.012272898543275271,0.000120528254360883,0.006897856270356797,0.04119476146113508,0.1273881321712695,0.036905152976879615,0.0020755452079471034,0.0008746333172271309,0.03150843075348971,0.26653366495203945,0.013756562814762119,3.0398832075560836e-05,0.00440090515108061,0.007390148032577921,0.025766733396155976,-0.016512320481434483,0.0009377024348916636,0.03491766269810382,-0.0026584167259593883,0.019663454204980918,-0.006193490794384787,9.003034054581792e-05,0.012053540247255174,0.04262447406325613,0.06599723655006234,0.006690649908374626,0.00015243288473504,0.024652972851001893,-0.006883646454123027,0.00918946788533787,-0.07610860840015184,0.00042996401156166825,0.011047863023103954,-0.008583940385436237,0.033490337442262624,-0.026248190798278937,0.0019866323838312245,0.02252477423600064,0.00962354194098604,0.03630877462809631,-0.029981688226755787,8.50381339266971e-05,0.006461250682163045,0.022319879051177507,0.030340535345810823,-0.05189461110544292,0.0018287139979552794,0.010194307537724105,0.053161779930197675,0.19099487902818663,0.1737399789579169,0.00011027925581440688,0.005339569153444769,-0.006079117866624516,0.01925981647841194,-0.0043692875879911995,0.0001279525058025164,0.02564199789919605,0.009626953977857513,0.0483482262058208,-0.0021108836788612346,4.859843402417307e-05,0.0073270655500928695,0.010085966322741413,0.0332767397336983,-0.041264102882329776,0.0028727299464363218,0.019225973498303316,0.001372584709943113,0.006327455419648382,-0.057071817638360896,0.00010790725215323324,0.018602367310864114,-0.0259326185725373,0.11389796934722908,-0.22487741710572842,0.00016511676660384896,0.0013966193526395538,0.01650628367297652,0.11125308968442109,0.01373715529216854,7.017556571363194e-05,0.002944483952392755,0.014329835848365346,0.07152854406511568,0.01015365926332945,5.0351130408733196e-05,0.001476236146517374,0.01623357537845181,0.0320283142232747,-0.005638816860608515,0.00024712091047762643,0.02231333614015065,-0.024914837450093676,0.09413673443993566,0.03908117045112727,6.581324507249037e-05,0.004723253834480957,0.007217784643621578,0.06606328142699644,-0.0021199347502725997,2.8188701039864094e-05,0.009856133873963372,-8.008936374683856e-05,0.0002575356309551591,0.0011669090379009307,0.00010870424008197293,0.003809003877516001,-0.02123552388983243,0.09295681384757583,0.009790122255908673,0.0003600888891276395,0.0056807914059976575,0.021677335385789073,0.10119154877872633,0.004012931695403684,0.00012269686036952852,0.021447495922184145,0.0013566882128512208 +2019-12-31,0.02100707692176406,0.17079266613965186,0.00436267538061921,0.00013007175245517905,0.011526059508113263,0.0015256611055476802,0.0053504526741358464,-0.038776458346140526,6.841921298816513e-05,0.020215642784952886,0.00973658920214008,0.03190599053953696,-0.013080056237332627,0.00014116655598059763,0.0024887411393759093,0.02388513416437981,0.026192461347562764,0.010926388092743336,0.00030776500051600704,0.006649811015726635,-0.025453599090814107,0.05018767476756173,0.0168409402613849,0.00026536882212815016,0.003647977351494602,-0.008797349370030585,0.023709920592333462,-0.054292738315306704,8.101556774964645e-05,0.006352563232325925,0.010903353706471296,0.03848178168112655,-0.12443619659294557,8.313708342283272e-05,0.00033245815673354226,0.024237421181859595,0.1886152205330159,0.023726086372711213,4.406647267437807e-05,0.00672648018915767,-0.010681677861231361,0.009126644707050154,0.009115751601396337,0.0009025538411544323,0.00592461435670352,0.006066201897512532,0.014456367593340846,-0.0005208758114780805,0.00014673021844997547,0.022154833417742496,-0.006261783185081691,0.0037701848325435777,-0.011385398320406487,0.0008118199924838067,0.009116773751605176,-0.00248364056058703,0.034695526817270665,0.0026073712658747274,2.1332317896119983e-05,0.006999830556630343,0.02188921725823017,0.06531078481167886,-0.01613472753879559,9.95626315901049e-05,0.0022808942925401227,-0.01335872250721552,0.074294693500685,0.027487139338055393,5.061380080579118e-05,0.0062762828131453525,-7.799578867512041e-05,7.330179405698856e-05,-0.003751798387139862,0.0020752934835470077,0.0271362281492317,-0.023445603232251554,0.13214841305125102,-0.017520250101199168,0.0001459995666835335,0.0010893277575394925,0.022526674774097945,0.12285603437976125,-0.08008428176362066,0.0002839283954581654,0.007127780747776159,0.052244220550817386,0.2844817342841285,0.06344486420036592,5.17302793051717e-05,0.00514048600881767,0.003664259627739491,0.022849872013871973,-0.004297062592036886,0.0002642951984534236,0.017268067903487946,0.00685719311507872,0.08747475125228686,-0.011525538675901661,3.253073647250769e-05,0.00902282214405175,-0.0036374532006342728,0.03305726448911399,0.0035500992925228776,3.676310722522136e-05,0.0029277296758940517,0.02262066136300864,0.07808776489047155,0.0006766146328542747,9.33136251984326e-05,0.01006763687004864,0.0231465352907475,0.18507648866162765,0.009848922518379781,2.8888641353466854e-05,0.0005429867580562108,-0.005391833371996906,0.01659551878119207,-0.02758131525735409,7.203159169383754e-05,0.0002764526098953707,0.004358522400954295,0.02064189983366893,-0.0685399112704342,9.654687289202645e-05,0.00030088299515978047,-0.06335326131838348,0.06185594545256075,0.025812767251915527,0.0005854139788520305,0.0013239664187667654,-0.01898924182477813,0.08240113882493733,0.006537412072993511,9.699747306430475e-05,0.010066897814791935,-0.0034224846641753076,0.010275874094902632,-0.01377437848182795,0.0021376761459686667,0.00635231052961919,0.02186642254882392,0.20959288415706748,0.00785328042562804,2.6827697303671604e-05,0.015374837904703216,-0.007153236247605538,0.019417231075842836,-0.09192584038622187,0.0012044437971599545,0.00726109186158023,-0.014511495710145778,0.11851376658674513,0.029806159886781314,8.153968324000885e-05,0.0036898213621968916,0.009333239333803959,0.013507346039591046,-0.00892095649359662,0.00016308265113743964,0.011578520029456557,0.023928537140601516,0.03508154529089185,0.013166359762384342,0.0003915086372790769,0.00940978115301395,0.015293774739503866,0.06491886978529124,0.007402263914987287,0.0018259718588461852,0.01423463052698978,0.022702136720607544,0.09064421129520099,0.009673508378627318,8.035576328957595e-05,0.0032936751132072685,0.07390163866834891,0.11681257381116526,0.04100746552124116,0.0015726847192506406,0.04709828755963372,0.05188703968695251,0.17323970992629617,0.07924569285911258,0.00011866632210149197,0.018440651231610542,0.013068375877165094,0.03161267897241473,0.0056742067148197696,0.00016757942360894876,0.001109108704859794,0.009626085118976151,0.042475904162877665,-0.010954687453755147,5.531220737022021e-05,0.012019405027340809,0.03869885953824769,0.12836073090187883,-0.015341052550576528,0.0028574855511897925,0.008904060438043919,-0.03193696801072813,0.17383962602873282,-0.01089489831070512,9.13872218241949e-05,0.025701548172068572,0.039736746346502975,0.201853651902688,0.174778409405953,0.00014276326689820266,0.0030816112529466083,-0.023196853214855387,0.14198259794768275,0.004850181173717476,7.727564783394177e-05,0.01928976136189135,0.022460548257311523,0.13160209098659634,-0.011302247298827346,4.289483072127981e-05,0.0061158892009980075,0.07281407576508059,0.15178580331430652,0.07929881442259876,0.00023389103838366158,0.004815581256226111,0.018945441532563157,0.06589142055017722,0.02478290397354041,7.149739793902748e-05,0.009039307244628026,-0.015940011125581414,0.17612072918224794,-0.0074040498459845665,2.3351212218439006e-05,0.004476772112995387,0.009716523394665872,0.031173191309597267,0.0015813423929429125,0.00010895285134185572,0.003803221655940701,0.024814634142620938,0.09233507694570003,0.0407163646792621,0.0004236128561794005,0.006668777793977483,-0.010028868938011934,0.04711815296356988,0.002987903265445313,0.00012190892286642155,0.0040165720864087,0.008922142029645341 +2020-01-01,0.0005565642083631821,0.0035269824530527183,-0.00345157363752981,0.00016687779746477272,0.014912062986047702,-0.03300815157289702,0.09847122760624788,-0.03585107030769827,8.043079832061807e-05,0.0040128614700896854,-0.054271807223850395,0.1904938761677772,0.04899169249091163,0.00013179243108562161,0.005433479324881394,-0.0034349653773556874,0.0032879196267299135,0.0029127284198053596,0.00035258921795498793,0.004237124192077474,-0.018919208524542784,0.04794536874277726,0.011793068844266853,0.00020646862861879603,0.007048739440953984,0.007504424968779222,0.021409493360586614,-0.024429523261166455,7.653459166017702e-05,0.012407447849631232,0.0366829297789428,0.12475978392455099,-0.007755278763167137,8.627386524317158e-05,0.015733028947033097,-0.010331074663281696,0.09545246792677814,0.0006037421272479508,3.7115639955170365e-05,0.0024546251653435394,-0.008587528585907972,0.007082783714847777,0.004294709496152231,0.0009349943839853718,0.001781524817120162,0.01658429548479005,0.045226783525436305,0.011334157185037051,0.00012822219615555227,0.0060071947440307185,0.007780730314650963,0.005168082338617618,-0.0066895051969948814,0.0007358940586592485,0.0034650829674582957,0.010869963084352785,0.14876605066945442,0.00547462536522149,2.1774441515296886e-05,0.008299202437968828,0.013836482708919802,0.03750924163381497,-0.04760348718182632,0.00010958180732278768,8.998893268248966e-05,-0.011760923161611434,0.05643411266980361,0.009246144248626837,5.8662630050033774e-05,0.00767216882346128,-0.0186708961750187,0.016923211704321733,-0.03794861128119935,0.002151817073745736,0.025652587469114287,0.011629145875047545,0.07917881424899911,-0.01900925194062768,0.00012086232166736436,0.018811352475486,-0.01855350562297357,0.12592718007575227,-0.016281745952554293,0.00022814698503198982,0.013553769442100313,-0.022698576827680814,0.13373989270325606,0.0023070550675888296,4.780778402861068e-05,0.03224808692638548,-0.013496356450408921,0.07205843853599271,-0.036499741391602725,0.000308687113895361,0.016995017481944236,-0.08040334380201329,0.8693550052396103,0.10404089850800376,3.8380195524780416e-05,0.035565547301912054,0.021895461230136682,0.252115114440821,-0.03262396328071353,2.9015958705806646e-05,0.004936560611314762,-0.006513859632512727,0.016023080569728263,-0.03353474911991919,0.00013095290438659569,0.0053960583847150086,0.02389219661088502,0.16170607248954533,-0.029943206749291403,3.4128887115381346e-05,0.014985996447673075,-0.008068732085376432,0.026274564525439043,0.017308890072266898,6.80843273137956e-05,0.007238421516142694,0.011269145350760136,0.0453010164191347,0.027913589941830137,0.00011374482051006462,0.0064968180314959574,0.029688103493644265,0.034448493771297266,0.007890411887455614,0.000492592481836939,0.022809129617331166,0.01509434402218117,0.04935777282351914,0.004439499796963252,0.00012871960497668288,0.00549341139608008,-0.02015854092623683,0.0713850610323131,-0.0475599543072303,0.001812470448111771,0.022834637290050946,-0.027283022995887116,0.25944538120886557,0.00030106190608429384,2.704137312998697e-05,0.003153114654093101,-0.03395054274996289,0.10944567086597756,0.02397291228945847,0.0010141901857778433,0.01694753232523936,-0.013887149550078129,0.09032088974327768,-0.005705093939346154,0.0001023883509857013,0.0015537968249299302,0.0071130910697301255,0.011001880509646945,-0.041958586859517345,0.00015259378006330832,0.01441364315488992,0.0028473258413082413,0.0038491165854987637,-0.005239423461994519,0.00042460002739407574,0.02659217176223803,-0.012291182359302771,0.049110682078541336,0.005544109122396099,0.0019398495008815882,0.0010752936628957168,-0.032796465019857134,0.10812040425704775,0.12403842674812796,9.732171315208383e-05,0.009206188059914112,-0.04476831290102826,0.07885846167622068,0.01968622040269414,0.0014112359109948922,0.03562009386133474,0.04454299592538802,0.12078590742655732,-0.03878693554775254,0.0001461097488045629,0.009979054776776375,0.006930946816651853,0.01753515697857714,-0.03142038723123928,0.00016022979769106878,0.007446396148199156,0.0058120326250593515,0.019571477539282848,0.0005131262066902835,7.248002838824774e-05,0.02579372319094088,-0.05077397547834018,0.18745118220366502,0.08113851555691423,0.002567267028255762,0.006921283502947122,0.0020794852647465977,0.009448118907609493,-0.008039914207131522,0.00010948410377360277,0.005404118400694435,0.007815638296464698,0.04208105921009146,0.025718524447480007,0.00013469099893636416,0.015448122142948328,-0.004715587013736292,0.027901944922351037,-0.029006394457301885,7.993739376614101e-05,0.002504105423870562,-0.029271813209301677,0.11578094747192469,-0.009992030044562032,6.354185962925548e-05,0.01371485414819004,0.061987229280050196,0.12758265217682857,-0.08004057932342484,0.0002368863262175756,0.008955750073739402,0.012169414022537973,0.04337174388202324,-0.04787847508910939,6.977135512606199e-05,0.00960262552436206,0.021675954080781705,0.24253841326524855,0.010316517668144601,2.3058389755378245e-05,0.008017751851395012,0.0034734338600551458,0.00930650597456379,-0.01345600838347622,0.00013046119061302602,0.004315153680194264,-0.008636397627952699,0.041388675486123135,0.0018765124486332435,0.00032891151032294675,0.023302743815807783,-0.037997826726492545,0.19968828328044305,0.030016721843587807,0.00010898782120613607,0.015417723638505087,-0.0053544678888725866 +2020-01-02,0.006054909812605452,0.04425440074516085,-0.00045698861982739614,0.0001446897607028728,0.009720753989830005,0.012395620562460546,0.027917984281880612,-0.05410332690999904,0.00010653559651577003,0.0051016660721213275,0.00802061422016747,0.03236524698446155,-0.0004155201483891716,0.0001146372889409028,0.03459512255151479,0.0036036476100716904,0.004122215945601321,-0.07951315745234873,0.00029503900410310656,0.004866042013690012,0.03335789302955069,0.09006442655420574,0.046289632431086546,0.00019379523557849353,0.003834779716734929,-0.005698065832452705,0.017347618453638174,-0.061784748001512124,7.171901903940461e-05,0.0017707663247757647,0.007308647967421749,0.02616096953212647,-0.012403403642953706,8.197342179333016e-05,0.02130036376120917,0.04068580530649985,0.45193728247860204,0.07740995785988929,3.087190016904006e-05,0.006050369136116275,0.010597620603655525,0.008942161528900656,-0.061783845615323775,0.0009139251815633862,0.004813509318330948,-0.006861333039383707,0.01755411217251924,-0.06114840692610307,0.00013667576615027108,0.01811712669840471,5.584112300762107e-05,3.831607015467858e-05,-0.060455799217084646,0.0007123567472707091,0.00936309001635245,-0.0006574594573347253,0.007738029579851191,-0.031523259813187376,2.53198647098513e-05,0.0018159497075869461,0.03807861795643042,0.09388566599849642,0.03382636186141935,0.00012048498390763986,0.002177814451307384,-0.00918395750346327,0.049265511633621126,-0.015568538782721414,5.2474545584918876e-05,0.005289721281337949,0.02934116802701697,0.02716896360146103,0.016167394732392638,0.002106334295680167,0.0033584634700862754,0.02262345228621303,0.13983889772781857,-0.0011984871943355898,0.00013313216474468016,0.004747357045145484,0.03222232283490967,0.1709952655874766,0.0193892891468722,0.00029179711275819904,0.03257088036975113,-0.02853788082334632,0.18761585297713404,0.01160552072944937,4.284628219147456e-05,0.00979599942099837,-0.055058875954063176,0.31619995697883574,0.07992980780535708,0.0002869804695377634,0.0030081734257228878,0.036501838046684006,0.5103105630444853,0.005327328551546444,2.9683178733630242e-05,0.0387050434309882,-0.021454883779004407,0.19985771808314715,0.05170971650826704,3.586633089907454e-05,0.004758958281189579,0.03749772258461213,0.12482666017532836,0.02535597852171106,9.676544468475462e-05,0.0046203495245718375,0.008239774573921449,0.056004239101266326,-0.016196676449746664,3.398496330325573e-05,0.007644130910509259,-0.005526751346404621,0.01470804178239353,-0.010200313178698212,8.330910198199254e-05,0.008124570803640681,-0.018705867453927764,0.06505623971291269,0.11700307459227349,0.00013147327795124753,0.005641148670775508,-0.020338802152404963,0.019969089561242544,-0.04446944815372668,0.0005821604106888946,0.013347621220004853,-0.02125763206305629,0.07709005067837879,0.0014378092738052447,0.00011606534421119482,0.008443113313543785,-0.052763085318306466,0.21096275341765924,0.013054736107718404,0.0016052533043239726,0.03145653915356449,-0.062165785045896545,0.5175616091644434,0.1855582753709123,3.088670379603527e-05,0.008156565399282757,0.01602666880995008,0.05306681726301472,-0.016486646152767882,0.0009873962897469129,0.014288629643887225,0.021621903152784647,0.1564591594380209,-0.0016449259823389478,9.202770004637659e-05,0.019534138197786443,-0.04080341439138536,0.0638754223486182,0.011095802561012976,0.00015076762983963404,0.0168387568185605,-0.018942370020909878,0.028438702778482875,0.01069718992851037,0.00038232125874292913,0.017580781403651085,-0.033293957608055376,0.1390977679646473,-0.009982797942997338,0.001855220789159109,0.011166410593820357,0.0026901355752530992,0.00902604197594859,-0.08893239472797072,9.562406226624197e-05,0.011148898169875953,0.020967123927100238,0.028144241293382548,0.0003276456809942097,0.00185193827846414,0.005913296373860161,0.03966111069923057,0.12732864783659364,0.0036308648059736057,0.00012341125867790023,0.007486664311874113,0.0037207470579348726,0.012790120096724476,-0.00914638691424327,0.00011792771963484237,0.009601158363016775,0.013376642401501701,0.0612012813231327,-0.0611425668251461,5.334583624891531e-05,0.002260009113870105,-0.01518051202958757,0.05105828718724881,0.00634704060827564,0.0028179821412866153,0.005576125111192734,-0.04655499698980497,0.2462575130160337,0.07172211540108987,9.404103157681773e-05,0.00895912190913201,0.010019084714276138,0.052105124866181365,0.013462728465615815,0.0001394467484687663,0.0017747673997246356,0.02692190499936998,0.16379544558742581,0.021234769608529082,7.774145495307589e-05,0.017086254321556537,-0.04043614838563888,0.1618810553548681,0.05776720205365033,6.27799765923736e-05,0.0073670745235770475,-0.012625510161132442,0.023969882032786122,-0.06362374586711313,0.00025681029703300594,0.016575445709428052,0.007757903685619,0.027872895166719393,-0.06699519980989105,6.921124762497097e-05,0.010752036845865811,-0.005267907128758888,0.048310424889325604,-0.0035685916975514175,2.8133809229593254e-05,0.002458306419284038,0.01588876478609061,0.04851635705615135,-0.023403718620942114,0.00011447506975722921,0.0026372307223205774,-0.003815139598981089,0.016208431626728692,-0.0026688278020940083,0.0003710200771103308,0.030720093021952374,-0.05338110786710493,0.24116895959017076,0.06610350592089462,0.00012677626975749642,0.022530932858560036,-0.0016358097476920407 +2020-01-03,0.0013156546905712572,0.009415379897225967,-0.10014222562904439,0.00014777149070180644,0.005314336875214614,0.03263970771412241,0.10260756047871451,0.02968968267365015,7.632686509187742e-05,0.022810486045156644,-0.04608803361935509,0.17734861798780013,-0.08233398656817992,0.00012021469945235337,0.023896145315579487,0.020332687986748713,0.02004196333289611,0.01400486810592213,0.0003423910385793998,0.008026575269106273,-0.03175523548798932,0.06906663460741315,0.03183036519789553,0.0002405718540413818,0.02248889908935682,-0.004890453293361586,0.01081680705783008,-5.433150400436496e-05,9.871809639541196e-05,0.004802154012103015,-0.0033847449011266822,0.011786558497584828,-0.0547855253916867,8.426142158776059e-05,0.005084823317394486,-0.0035404522491146555,0.03468016940351426,-0.028829239923373346,3.5008713015714126e-05,0.02114424595154506,-0.009259550618405653,0.007710511981286184,0.0077981822105430134,0.000926086344548266,0.0005859106132333944,-0.0013613461458734108,0.0030520953060174587,-0.0031688055457577617,0.0001559668717680743,0.012849952758292154,0.007976466580097392,0.005950777647061767,-0.0453290994769248,0.0006551808349782181,0.0047779779127896105,-0.00540689002483089,0.06561533018611405,-0.10166268325155274,2.4556417415898016e-05,0.0018375403409076803,-0.0027193105580853756,0.007499779393989256,-0.020258968724545294,0.00010771132242035181,0.008286851719870356,-0.020278448021974215,0.14043328914065886,0.043224080368373476,4.064680972632966e-05,0.003263447738927238,0.04858995750640472,0.04181893235647596,0.08352395023225175,0.0022661912106066526,0.024436515696398233,0.06648642229508037,0.4577871852723375,0.09816725074122076,0.00011951473148929395,0.00708322307032715,0.017328495435713714,0.08502802736104681,-0.0035168232954070388,0.0003155781926508928,0.03497695414840861,0.019342034987127527,0.1273580972314745,-0.052622477743143846,4.2779584149153526e-05,0.02668385026605741,-0.031029338740333194,0.16519344337543013,0.006247135767196133,0.00030957545653150263,0.004595127022847428,0.015523760556425232,0.2107961320637149,-0.005352331364478778,3.056078665098125e-05,0.005449870773174315,-0.004090772956881839,0.04622832440986092,-0.024196146326304242,2.9565071459852032e-05,0.008071439326361667,-0.022085225129345368,0.05557665581302611,-0.02695997597678183,0.00012800654501864467,0.033241412175448966,0.07061676349444296,0.5089550809244308,0.02298492394664971,3.2049461061723445e-05,0.009376100879989517,0.012922123354438758,0.034696319120962216,-0.017999767794389103,8.257106025466136e-05,0.008336153219270982,-0.0006419214259225191,0.002658914658409155,-0.006741681990298326,0.00011038906860766079,0.010606176315736522,-0.06084598238825159,0.04324474158789691,0.037097545303853924,0.000804218691149437,0.03159955421402262,-0.00033764983472219526,0.0014125947292511964,-0.04804229862861404,0.00010060856835306571,0.0011657652411966196,-0.030641087364948694,0.09225166281291668,0.0010857212107327082,0.0021318131894801392,0.020977466939139912,-0.01481758628813172,0.12845698202410805,0.005513095229933493,2.966210348961989e-05,0.009655366932428083,0.013604193833403744,0.037198817033397176,-0.05073295488438132,0.0011956799642105758,0.012554913459002202,0.014200676788949061,0.09836174445775431,0.0024933535179101486,9.614096206556355e-05,0.006347885053642972,-0.025656261203905656,0.03843103031784157,0.002249570260391934,0.00015756390181921473,0.011423499939669828,0.038965875288403194,0.04942554889921259,0.07676123280823105,0.0004525190314641895,0.009477333731119208,0.005963612422663442,0.020518862273185886,-0.0092911018392964,0.002252716165160062,0.025942142321758486,-0.04043412185947336,0.17729589074247415,-0.012473059542851177,7.317112227166485e-05,0.0093056934137015,0.0069906619003149185,0.008315594215962428,0.0005245870147787536,0.00208978785798329,0.03993804672178624,0.05388560978361697,0.13565226225011526,0.07234181650478223,0.00015738444159363655,0.0027648145601012267,-0.02288374769985751,0.05434744560980752,-0.013556033508939686,0.00017069012262982918,0.01903403716894269,-0.03258775799137838,0.12978265621803833,-0.005750206031433429,6.128465547772398e-05,0.007986602622806316,-0.022728168954252243,0.07504495225970438,0.0011234884045550689,0.002870522936804468,0.026166188267006823,-0.04021343050422302,0.1983752931579812,-0.014436124899343728,0.00010083797422456465,0.0050607566886957875,-0.012408186681129552,0.06503397222908884,-0.011527146959750835,0.0001383658202528835,0.005503369381846859,-0.025621069953675368,0.14033978413581125,0.019837220067896923,8.635055967813742e-05,0.006569917624473441,-0.028921556435061595,0.1113246245525756,0.015861000665904804,6.529468287139896e-05,0.01608809262252878,0.02127626390169636,0.039015164446334925,-0.01235556517150544,0.00026588345943293995,0.011909701379309698,0.014204710836748811,0.06956953671979972,0.015233033454626657,5.077239637262646e-05,0.0025247428248197034,0.009417365152390342,0.09918537220454748,-0.00492866213822243,2.4497009369747938e-05,0.004205524507421621,-0.0028262408938553593,0.00889440859978667,0.006962475676054578,0.00011107109771027655,0.006884710119610548,0.01835235562541396,0.07182995338372379,-0.07693671013071446,0.0004027302044488931,0.004009248257990794,-0.01822242741938447,0.09081985850929168,-0.04229163664630373,0.00011492041988796064,0.008544752885568776,-0.0016437657529980755 +2020-01-06,-0.004409361915557397,0.036532363309942556,0.005462011349723396,0.00012763934374565708,0.021515962924006014,-0.0022419884553887414,0.007477557552182398,-0.008622778020398313,7.19422695343917e-05,0.023169297167808314,-0.048490727146962766,0.16939706998706863,0.061043966964323175,0.00013241890947809709,0.016784994297896906,0.029406387717089866,0.030206667948279396,0.07050931264957497,0.0003285539658587048,0.006126151770768435,0.051417787352924876,0.10664726818525685,0.06199604555672346,0.0002522675682729172,0.02344268050710228,0.01689432635635454,0.0418362883017711,0.07391233398711011,8.817276745597215e-05,0.01614143907869436,-0.021979188084262614,0.10011886820828907,0.028903446622693854,6.441478612729952e-05,0.00871186811924689,0.027712803756730842,0.2480977145140217,-0.05984854773391672,3.830507502870642e-05,0.004062752714552042,-0.009931038789369653,0.007125295241838931,0.003716397739380885,0.0010748221317788556,0.00012828954400396857,-0.0007813194880712139,0.0018563592686868617,-0.0008378418078395168,0.00014717312530100013,0.013187602862709688,0.016874458961212268,0.01147984742938422,0.013198181958425223,0.0007184856509819955,0.009551780483445696,0.00782569995174911,0.11447452285489015,0.0018949746730212464,2.0372162882155928e-05,0.0033964596304579438,0.032819651120481894,0.10886075999080956,0.03328958434530799,8.955990743270333e-05,0.004538019702937857,-0.007765637721180751,0.04053810109877276,0.0024503023503666837,5.392318586457717e-05,0.010676404315958002,0.02527926956161767,0.022781375848894166,0.023519664026721454,0.0021642505890630886,0.0027450326895268906,-0.022209894706383456,0.1403266855845021,-0.0016766881648761856,0.00013024418418899067,0.031744876611679025,0.06915916475224784,0.3978887808701536,-0.025544651178539674,0.0002691511735934589,0.010645699466918753,-0.04066944091895512,0.21309440788257228,-0.05008217410024496,5.375973327048387e-05,0.018423831087684077,-0.03113323842080389,0.1737314233507118,0.005906657222527114,0.00029534711109481065,0.006737599918812153,-0.037234354359308976,0.47053752507666424,0.011566319397125366,3.2838234133747634e-05,0.012111654429081917,0.020094157726148212,0.19018293241908812,0.030189556212322815,3.530042844258905e-05,0.0027069014302393743,0.05483621846445526,0.15720568217130443,0.07896106023094679,0.00011236266063093519,0.003388939677307791,0.002949631330064492,0.02468135969012813,-0.025487567670018148,2.7605208549201025e-05,0.002049450346927879,-0.022251434372972053,0.0556252458776892,0.035187758674793804,8.868771187819498e-05,0.0038265232038771912,-0.012197508611288736,0.054552152076421966,0.015038547661076415,0.00010223693964584264,0.003704515926540716,0.013540313198779245,0.01377285488879908,0.004837270487654107,0.0005619275171485212,0.02608549979378683,0.04353452164327763,0.1855559251256021,0.04499357478053809,9.875178606223286e-05,0.01232681404738919,-0.0041657623637142704,0.01611378031972508,-0.008269787209048949,0.0016592668172453085,0.0002903453923225317,0.01706574829529524,0.1494867841276134,-0.011513575474304817,2.9356530827397983e-05,0.005108466410752677,0.01553250601552481,0.04819213098115778,-0.012966081940799047,0.0010537477727820086,0.0071010503982132335,-0.008497815748025012,0.06382918202743126,-0.027857326208642216,8.86571313026421e-05,0.012714886292929004,0.015567591357977867,0.021394385594392704,-0.00023060878782281023,0.0001717382331037825,0.002559369275502445,0.021797077216807032,0.02848384828043712,0.0015487359367087155,0.0004392416483702908,0.011870212571193774,0.008516979785181629,0.03316959972115373,-0.08469741219561173,0.0019901954406729054,0.004752659224602815,-0.013897205777374827,0.05596747984486084,0.01047849742841902,7.966766840777192e-05,0.011224692306945911,0.013214668340646489,0.01806999911893198,-0.004048155802796806,0.0018179223465511385,0.006092279065902064,0.07037187012120598,0.2741894020028741,0.08705390305349824,0.00010168677282814145,0.007921086640433598,-0.012537587755136834,0.03349324624333158,-0.1855306892057361,0.00015174595371811588,0.0008909253349183254,-0.014690919035417683,0.049471540127135706,0.006761476201872195,7.24782100748467e-05,0.018976046126836885,0.052438820305276405,0.17094678183607592,0.04874840824912859,0.002907435182991051,0.026782536140362655,-0.0032347013021867123,0.016116270640093692,-0.04973083180803404,9.984129425763094e-05,0.013713461431130123,0.010884665196966396,0.06265235298174048,-0.020935725047509245,0.00012599069550832436,0.013579746870752285,0.008675584793129203,0.049402878844617686,0.0072975990568948336,8.306062608225647e-05,0.010812722531502702,0.003934005436336716,0.02148168830782608,-0.03000946891778757,4.602713469389413e-05,0.004529961691344444,-0.05281597280619894,0.11175811713185692,-1.4194008094429927e-05,0.00023041757474247734,0.015473650297413459,-0.018798179696975986,0.08583017005881693,-0.004834500039792162,5.44615753692736e-05,0.0037139282895163055,0.01240755015427173,0.12725740785524764,-0.031463309135697254,2.515557519544003e-05,0.01959742943172747,0.008953093024200987,0.02937618269189654,0.005858587729377127,0.00010653362404265293,0.011748625684252703,-0.01271653713806237,0.045895586374506255,0.011613301162649437,0.0004367429587764018,0.00459532672265731,-0.006848712352151729,0.031040151234944597,-0.0007901909840108885,0.00012637375600320385,0.021168855936145498,0.0046248737548531494 +2020-01-07,-0.02478447563600528,0.18252787682837876,0.031941550558224896,0.0001435942722109548,0.00133027927125946,-0.0057989040619950555,0.022241624161058744,-0.13442853614160727,6.255902227489023e-05,0.021251888633394396,0.005095688955275713,0.017174107524084273,-0.001604282062903227,0.00013725429309060122,0.004163209235546144,0.017944668832139084,0.017734129478836836,-0.0005650584798500018,0.00034150213975971415,0.0009094343450948769,0.045916015583477146,0.10061845440335937,0.06318884861417329,0.00023877251014335998,0.011198060410266442,-0.013815421504136765,0.037385743943708305,0.010993555551439656,8.06872385385883e-05,0.011780140473870524,0.08238298931121305,0.29426139139069357,0.16685820639026036,8.214745583145907e-05,0.0010110644535175468,0.009068579993577915,0.07530659630045815,-0.008558060953553555,4.129570491468426e-05,0.01952792622488294,-0.012885087093272532,0.012061025135536897,-0.01587804129530316,0.0008238495759057351,0.0024278073015358507,0.005556938746054943,0.015957312759099306,-0.02241668406605747,0.00012176928018794747,0.0027461360818720635,0.008317073735197923,0.007484323820446897,-0.015751295572202253,0.0005431782109885941,0.010809592716572818,-0.022632529719972816,0.278448556408227,0.10072433817319056,2.4222051216453563e-05,0.016113438446583167,-0.0374052856728818,0.10529248364023631,-0.04072632925318251,0.0001055326014227705,0.00899113977744016,-0.007625253682759754,0.042765236414533954,-0.008417885809118746,5.0190929409372806e-05,0.006465405211380221,-0.03293989293672792,0.02842323223802297,0.024000316726251785,0.0022603291832101503,0.03775449151130579,-0.008284336432509466,0.05672228749885262,-0.03219087107482802,0.00012018661359492412,0.0034643756692144603,-0.00338452745275681,0.01875270035687625,-0.0002762188161474265,0.0002794746743721281,0.003158588632479008,0.016691808021986564,0.10087741657822716,0.0072510798250680145,4.66090644197989e-05,0.002630519363018365,-0.006241472750332865,0.03629656881998788,-0.004193541950952837,0.0002834055258477593,0.009198125246324764,0.016932014677377847,0.2264144243500435,-0.03126356631694581,3.103378708477369e-05,0.02344167024124239,0.014564915144323372,0.15559103882268455,0.008296918908020073,3.127555947924974e-05,0.004466752093790803,0.0008191075243945268,0.0017876562159376864,-0.005190801435317225,0.00014759772647935797,0.003209767107240349,-0.0025843395613928334,0.01319973542114521,-0.04535702630142324,4.522480737690848e-05,0.020472578813167427,-0.022388306602858756,0.06913199121523754,0.026199938654854642,7.179919285431995e-05,0.014439172353469958,-0.011747286694553003,0.045819712068984476,0.04887211366980801,0.00011722866189440914,0.005131172369720007,-0.009714030018894898,0.007670367602338906,-0.002072254092534066,0.0007238670772485213,0.007573448929787998,-0.002487060127864276,0.009101457163881435,-0.023528065571015968,0.00011501682229923783,0.0016415790055324996,-0.012042383126620647,0.04824126371609809,-0.04365874968079641,0.0016021860233219492,0.008456225544040557,0.05460203739308279,0.45206858308946807,0.07957669775638812,3.105894623507077e-05,0.016007461429391204,0.016273051895358385,0.042124065953569406,-0.02207043179214369,0.0012630193236547334,0.011088133985746899,0.015345617839246236,0.11339497297108671,-0.002548249201984754,9.01189701126198e-05,0.0030553628328896716,-0.01619630528466732,0.02845370816862367,0.015346721937751658,0.00013434529693620272,0.003666009677055722,-0.004497974596159886,0.006402928286767886,-0.0013906437940871986,0.00040322019411818017,0.0036358009930505934,-0.04292367668340773,0.16929330301504492,0.016301727017425004,0.001965203268096657,0.008753317085581502,0.021268565871875415,0.08023718540044275,-0.010015193596348124,8.504580399315159e-05,0.0010813896093095654,-0.0002322433453350096,0.0003812550495005768,-0.06846922408824005,0.0015142753963391699,0.003224298555397685,-0.02663746606617806,0.08055031006461841,0.05771282928001524,0.00013102124728468044,0.009353552719587366,0.027276397029548528,0.06978021043608663,0.020029099971869854,0.00015845834095833743,8.75504937449664e-05,-0.040761508617850314,0.17843759292438766,0.050106905207981445,5.575422946799543e-05,0.015847379784724457,0.01614741982431054,0.05019365907600201,0.00010904358068131711,0.0030491047059961088,0.006398886575954599,-0.021903923996276026,0.11088321395985852,-0.09947774275807857,9.826450913428723e-05,0.00010328447911200184,-0.006256686206273659,0.03940209872146334,-0.002729863710347849,0.0001151557965649123,0.004444963058293972,0.0022150931469897208,0.011029210575739324,-0.011745374880393332,9.499401931977212e-05,0.003917643561754033,-0.01079056720532941,0.051255793032887985,0.00034124434613720824,5.291133404862888e-05,0.014756336237165026,0.01587462633064172,0.025621742176241396,-0.030808179757540896,0.0003020815831611435,0.0316153905865664,-0.014469967090555065,0.05181518520652081,0.009195879698667276,6.944242276401972e-05,0.006355592825588261,-0.010492471574144648,0.10705557598442068,0.0023553782867281425,2.5287144736852817e-05,0.00032713030375947614,-0.009709964366304233,0.025318012071299002,0.011091165250163121,0.00013405931565593413,0.003922266101232797,-0.0034195105378374974,0.015426408214509215,-0.00038726835025203367,0.00034940337675499203,0.004392803330385216,-0.03570963069613287,0.16325879036867727,0.025593022392003846,0.00012527966414273184,0.006568882887320421,-0.00244578709245496 +2020-01-08,-0.0032079060231153755,0.022090830868902563,-0.06179589619063379,0.00015356638828227775,0.008901887912101624,0.010800407202181641,0.03877757966115013,0.0050792450892670725,6.682976864570998e-05,0.008929479916602432,-0.0334243671672428,0.11780346030348907,-0.012789596699860907,0.0001312509182560046,0.023362217750695736,0.004504169667999217,0.004199924698845233,-0.0006946408153413877,0.00036194376027090573,0.00861113709313486,0.05222084681947025,0.11009531726901313,0.0682505700000706,0.0002481834601070087,0.020475807761450818,0.007294092857082833,0.019170954897761706,-0.06364500141599867,8.307575218147847e-05,0.004559028647089278,-0.028466623147782213,0.10949111890367369,-0.0057463497696505,7.628636356320571e-05,0.006974305793853894,0.016771211328863802,0.14755018920314622,-0.002301096832197049,3.897833421973142e-05,0.001367847276142089,0.004786395122809787,0.0038393177819890175,0.002482493642114216,0.0009613892764089576,0.005493495145464023,-0.015619140178979763,0.03444046730534867,0.005153750483658336,0.00015858056961487346,0.011976151124444012,0.016012118937343514,0.010049098951785468,-0.06417953125489542,0.0007788360454004539,0.0012850226504359456,-0.00405755844723855,0.05665125888505371,-0.05839601891331282,2.1344107949752962e-05,0.0033215359384255,0.013008053578690447,0.03587179769303361,-0.057429308555408724,0.00010772343993684069,0.0014081519367119234,-0.003826868602375837,0.022167415751098617,-0.014562260105770069,4.8594856332648376e-05,0.007603920874241584,0.010799226126203506,0.009292513028756652,0.004534667072592628,0.002266639375227767,0.013352371282939816,0.04376854491641188,0.3279801970284215,0.030211096501633637,0.00010981624613948104,0.007769431514578587,0.01639442835538842,0.08618709301273779,-0.0005834573255469411,0.00029455220445785024,0.007175732601311768,-0.001502894026779044,0.01035298890063307,-0.005225111950924623,4.089060779697847e-05,0.016538697634287867,-0.03855792103689777,0.21356490689937574,-0.011295731933605026,0.0002975572431476136,0.014962211452297817,0.022292648685058158,0.2726278284829829,-0.02544241310964225,3.393295794280323e-05,0.02864810028800049,-0.0053956201706233786,0.05194798896050388,-0.006808532138315128,3.4701986703261514e-05,0.00415853830594976,-0.04094128356495735,0.09823747074100683,0.030350929984337797,0.00013424775680374304,0.026338097635545645,0.033939653747918935,0.24887685315639013,0.010562451729425944,3.15003425531469e-05,0.007924821329815913,0.006386614222227668,0.018152373269479955,0.0011789748909413083,7.800360109061303e-05,0.011895641398331713,-0.020445792821830414,0.0662171557202989,0.10642393119637306,0.00014118287749531974,0.0031662920345779224,0.04587966620754755,0.05073490662303426,-0.09586126265775304,0.000516879068741348,0.014455427345347549,-0.029229363578725368,0.11062931700306977,-0.030899775014479554,0.00011120777132821452,0.0052663296638541,-0.03853483056823498,0.12594742262168004,-0.051905960544251034,0.001963737094600305,0.0077227888974844,0.023578812901377165,0.24863501885216996,-0.03178800657326214,2.4386071063671705e-05,0.010108792290017687,0.020150464072049814,0.0609402480656029,0.0009353297478636249,0.0010810657405206324,0.008661645433656794,-0.01127952610451679,0.07930347564007087,-0.041939960016446516,9.471620205598191e-05,0.0018567884547925522,-0.006843388350217734,0.011068689667082037,0.00850729399423065,0.00014592186146043193,0.015800295084138126,-0.006016350652967985,0.010097152091868546,-0.01478700965525727,0.00034200948945935846,0.005340701096528448,0.017906434401106053,0.06785725365806149,0.015825454101880274,0.0020453290111023662,0.001987265750746039,0.004325599963785987,0.016122012398503388,0.0009072401375058447,8.608301560878634e-05,0.007130633099285865,0.017481578048305055,0.027203795831744454,-0.023814821226417718,0.0015974538433182874,0.014110312605425479,0.027958986709646503,0.089513280299751,0.003736763297703737,0.00012375136318118076,0.016653699689643815,-0.013290721333424045,0.029798323073131426,0.011474756216390745,0.00018080777584929958,0.007211160411512247,-0.06642128470788296,0.2623164809864211,0.14216107884901735,6.180101656234741e-05,0.01580529695834411,0.03965618353874477,0.10214841972079598,-0.010420723025200643,0.003679572137056048,0.01798090618771835,0.0017680377635754055,0.0095519140454832,0.0014535088754221955,9.20749945586896e-05,0.020666462516276185,0.032178971659439504,0.1707032161776045,0.09938160794956066,0.0001367071539644365,0.0013679239014216227,-0.009022415332722973,0.0464105340146521,-0.09132560483753144,9.195068066210266e-05,0.005300391611279214,0.008117584313288555,0.04111511537400216,-0.03587310412609066,4.962182008127701e-05,0.01989867658110938,0.029909182844731208,0.053305097036752604,-0.002001907502492899,0.0002735679421333035,0.016482065511955645,-0.011539201217973239,0.04373017159901489,0.0003130463369018848,6.561587746117922e-05,0.013831386108644102,0.010661507917777702,0.12293092930528995,-0.006725872112742705,2.2376324655024642e-05,0.0005995255672836628,0.0147873385889543,0.041934696750254845,0.020918662992436596,0.00012326093986224083,0.005843921006709279,0.024638666259724953,0.10433354344198191,-0.011611323098271613,0.0003722384305183972,0.006661047273189871,0.0028331781499785916,0.013477571526643306,0.0009257680352770008,0.0001204020924206929,0.018697652996331294,0.004236925165401049 +2020-01-09,-0.016992960606040244,0.10654302513711397,-0.03596962378680354,0.00016866719042578612,0.002762572115278969,-0.05840769077049247,0.20100481226823422,0.16218206481063724,6.972268570581813e-05,0.007622884770636939,-0.0007987041656928227,0.00257099055379581,-0.031464223280608994,0.000143708571711194,0.011574764530393035,-0.024017588737740885,0.026379376227478792,0.06895139107455482,0.000307278899216866,0.011424672535876226,0.009470694129776405,0.020262477276020038,0.0007201091286761544,0.0002445609102459614,0.009835659069297734,0.013765621930458397,0.038029025227168285,-0.01523271391574773,7.90364424624218e-05,0.005097202051386799,-0.03141039651607112,0.11624640556703181,0.04796847974065932,7.92836692343411e-05,0.0013476298736585048,-0.004228395196941108,0.04142775335580967,-0.004892992495916272,3.5001189455806484e-05,8.752933759366448e-05,0.010530332454728201,0.009603753025652006,0.0067266402617599756,0.0008455628350050333,0.006146522775440408,0.030762325412488963,0.0731015788764628,-0.005218456641294259,0.00014714797545465204,0.014289828065262765,0.010166680888389143,0.006808995988923269,-0.055488806289137764,0.0007298279174995749,0.013216355747323067,0.01698649730123422,0.2123757755804245,0.02787458080881421,2.3835356172558675e-05,0.0028803643199978857,0.011292761541577859,0.0319762330687997,-0.15743155989246285,0.00010491169283162391,0.008433209826318393,0.0033392650190660384,0.01767824648647348,0.0003489562236930462,5.3170839995378045e-05,0.0073915741730717546,-0.01401938325439235,0.011573183178293882,-0.03052596599507925,0.0023626481683714892,0.014816080147343546,-0.013139505553878316,0.09178201725523953,-0.07640208755304839,0.00011780766057816029,0.02409214353289859,-0.011892824792642451,0.06428463952833156,-0.03423490533450383,0.0002864745459581851,0.0025733509425364285,-0.005371223312859853,0.0354344543662938,-0.0004607865758167054,4.269808674233947e-05,0.012211539428621094,0.026268085560022848,0.1658017337406445,-0.0586967928631633,0.00026111159767776894,0.007404985808380212,-0.021279539605293808,0.28335786626999104,0.005693223559427104,3.1164286283154973e-05,0.0429219723914421,-0.0084202558664609,0.08237499975800165,-0.013040878748388631,3.4151640592632696e-05,0.0061458776289290504,-0.020156486932522633,0.05359970679147384,-0.09775542270983684,0.00012113654511616094,0.004920337156910203,0.008455927304774775,0.06246133074167482,1.8919729489339418e-05,3.127104425248642e-05,0.03705888263422709,-0.002360099936990353,0.0069610194422431125,-0.003891964758482648,7.516833469482061e-05,0.004391466244202409,0.00308597783494522,0.010006487523482193,0.0003678263478536359,0.00014101319081177388,0.0012344560390681735,0.012745591016022342,0.011997532698826223,0.004162986681142142,0.000607216546875631,0.014467386952865233,0.022432652705806373,0.08527598767720034,0.0064302692633403154,0.00011072351994256627,0.002255423220193781,-0.027239324974505742,0.09871782338836096,-0.07077011197558719,0.0017710056412959512,0.007884077635859788,-0.027626047147707326,0.3178449150936387,0.02166738727090193,2.2350419350049332e-05,0.007053434470287148,0.014117624807210486,0.03980678723554465,-0.024629734077384398,0.0011595134162603968,0.03629268153293718,0.00014371184473804412,0.0011624366846210807,-0.03800066306690889,8.232825309057701e-05,0.0028368206602624197,0.014519816859544173,0.022495041590095778,1.2110891771790089e-05,0.00015234202509649137,0.004168183058835563,0.028726674958237188,0.04627293274776267,0.026198167502829953,0.0003563380905844404,0.006099724695996546,0.013782801393665655,0.04906763981412628,-0.0005136688844204985,0.0021771716507029805,0.011460261430625096,-0.017316130907872263,0.07187468645669037,0.018273999149092862,7.729746790592778e-05,0.0016298388102002053,0.038285570736556786,0.05356652612185412,0.0042088898146014275,0.0017767193609884708,0.014376447989346322,-0.0024749120258223452,0.009294914356780152,0.005751293903401438,0.00010549464375649599,0.024074710669822256,0.01922680445371849,0.0503713018680649,-0.0036680375627686705,0.00015473348600085344,0.012931047539911948,0.00230095976922906,0.009623129986214077,-0.030802230038745628,5.835883293713882e-05,0.0007962974253681331,-0.028484392226220734,0.09468561852918216,-0.012154080591338469,0.0028512873988763322,0.02713654341226544,0.019413643151608772,0.10001651204351306,0.014765474350443111,9.655525345276377e-05,0.010661824855283955,-0.041120290836192085,0.2540624149045769,0.08176939485418346,0.00011737525269727931,0.01293752016223757,0.038132259339849824,0.1849985749222083,0.08523594041123489,9.749286964718725e-05,0.006350281894089825,0.00048471960135599646,0.002287877358316166,-0.1493684866231213,5.32482374373489e-05,0.012861711724866116,0.020640677610689075,0.04007925269428277,-0.0027899812653400607,0.0002510924934682396,0.0005605418765571115,-0.004775158649444073,0.019975306639194106,-0.035309642744924596,5.944409590023985e-05,0.009810855013671987,-0.016068793150218613,0.17422618445376728,-0.02166429445484465,2.379584437585396e-05,0.0069071030990053035,-0.010894803011082244,0.032868351985036987,-0.0026060546996156423,0.0001158645068664759,0.007008819649998002,-0.01777391872197611,0.07178738371499417,-0.02922852812312346,0.0003902680828409135,0.01008057114378904,-0.010643512099907632,0.051582083914133214,-0.025860428833107775,0.00011818377841962707,0.01610420025692327,-0.0021103565095665806 +2020-01-10,-0.028673836252915242,0.21312857022968867,-0.02730254215933744,0.00014227569416580275,0.008801103189565318,0.015507918995073415,0.05510944262412694,-0.010469969671701237,6.752087035876195e-05,0.011135199269048053,0.003491051606563941,0.01232000205042796,-0.011525027850415504,0.0001310818895794099,0.011792627909069245,-0.03549549681152391,0.03979639905011821,0.11269165411856065,0.00030102137725695636,0.0032098524514400173,-0.00813188427145258,0.021262499485574637,-0.003267883845673004,0.0002001126971790374,0.032117692808198366,0.01688381104790965,0.051490536338916065,-0.040524216993665985,7.15961727786737e-05,2.9395068643901096e-05,0.005136108397531774,0.018509356710730004,-0.014050607112136928,8.14203023828048e-05,0.012487266960056946,-0.0026749580939722135,0.02510235856763344,-0.012466829524712076,3.654273667122042e-05,0.014053594862735457,-0.02105196529662328,0.014370500335222637,0.04866812266287303,0.0011297062797725398,0.014317291593830935,0.03992702884651313,0.10498759933336389,0.048670136317598124,0.0001329813920291899,0.0035130445089700977,0.01606137353910623,0.011975769888814472,0.012346590296664081,0.0006555466438108655,0.0013787150961267133,0.017556842077528126,0.2278861793366087,0.05791608443939752,2.2958906791482983e-05,0.0025793488221693707,0.07615956620089324,0.2315487431646549,0.18034389772512124,9.770866320006214e-05,0.007486433033564173,-0.01675863342111948,0.09461379139679396,0.016218987475969646,4.985927665603673e-05,0.0036274688349864255,-0.01403287892996131,0.013095885041325884,-0.019147741093850448,0.002089945190745565,0.012333176398155241,0.01959238612653203,0.12390711121985633,0.007939594827923831,0.0001301197460825776,0.008921789903358134,0.004240776836220246,0.0278272860861892,-0.04070888819506046,0.00023598413027699038,0.0013445576901568695,0.02471918654903822,0.17439922951518005,-0.09276940104173403,3.992551888760258e-05,0.02701222387112485,0.004075579526006241,0.02574455245591117,-0.0192388974112713,0.00026091006492935697,0.006856299968228835,0.051211539974065974,0.6153689348306574,0.006757721443942964,3.453524159984186e-05,0.034179411784413104,0.004535788832729139,0.04116671257451642,-0.002246298748081981,3.6811909809190446e-05,0.0016545085287791223,0.005719870749671791,0.016309105335271138,0.00230162014022676,0.00011297408520822807,0.0002650349065647312,0.07474224073284427,0.5102050805744242,0.014961489474730284,3.3838703163547974e-05,0.003004876464484221,0.016437873740277064,0.05031955427617281,0.017522043441143803,7.24246219774683e-05,0.0008881966598425375,-0.005772218847032453,0.03065845911819166,-0.004560641517914221,8.608769119114907e-05,0.0004962385759207455,-0.0440467939126668,0.04176634694247963,-0.039478064318196816,0.0006027862983760363,0.0006413668813570555,-0.010144654957029875,0.03698477216555899,-0.0205951185229952,0.00011545170251490824,0.014481419134301135,-0.035725892138674394,0.10743814154044021,-0.0038593889682586396,0.0021342425301746457,0.00530463886280497,0.008553570770887134,0.0792263756254533,-0.015747152844054146,2.7762582340331833e-05,0.022823503524030023,-0.004123133583087886,0.010146630678134089,-0.03076641425225892,0.0013285466916683401,0.004917630057481608,0.04007017706474459,0.30319709684631135,0.1111823342351886,8.800794215346088e-05,0.0016977171239392064,-0.00799171393390224,0.012815418498062545,0.009608227345143258,0.00014718126220847273,0.02451324115946363,-0.007367431327420164,0.010144747593274196,-0.023564007565002622,0.0004168490002279913,0.002548496295462036,0.014738164237309833,0.05589534322103327,0.01016416414184699,0.0020437045214742994,0.006015890962758785,0.002776550364881987,0.00929354345318671,-0.0009038192452412473,9.58549604287271e-05,0.007786319605820893,0.052783821546171394,0.06152253505383401,0.03627296327426612,0.0021327689004604195,0.02750647143466169,-0.01621324797127442,0.057619301128330046,0.02694087493078244,0.0001114854202153325,0.01477099154995147,-0.02471976298675538,0.062080409079219905,0.0246034279670583,0.00016141731107779288,0.004208975796198144,-0.005739223926929892,0.026168828221613816,-0.0006052059923591412,5.352822206305395e-05,0.005591638138560614,-0.056935728003189856,0.16796568084813282,0.08280014665251309,0.0032127903105369448,0.012730445834968239,-0.002575265854333122,0.012177934642896248,-0.06690423262440433,0.00010519352327836662,0.015121270715738731,0.004664039213408741,0.026961316533526188,-0.011883741512769854,0.0001254532400927571,0.0013374659992627918,-0.016536809030755918,0.08370209256304198,-0.04439388746954199,9.344672692254387e-05,0.00796481247037159,0.02922936471951821,0.12144627697113083,0.01942095497530705,6.048985807570094e-05,0.014965369038496178,0.02488924868995684,0.046645725273895496,-0.003025848434350923,0.0002601532951335805,0.003926526849252921,0.00940694205225793,0.04021165120051815,0.0032296717438583845,5.817159044546285e-05,0.0007044900171827382,0.019847071238480615,0.24481121409798248,0.008230368327032207,2.0916855987262264e-05,0.014670953914850977,-0.014141057444186403,0.04644424093522358,0.05865146005547387,0.00010642875496387854,0.005914128050813439,0.004665458160464556,0.018062621162891992,-0.002110975258014524,0.0004071378666315554,0.007202359266307075,-0.025504943866127967,0.11641223455694168,0.009743241803067924,0.00012548665486361284,0.008847232644428894,0.004085767580342807 +2020-01-13,0.012134560239476727,0.0707468132001335,-0.05646465212302623,0.0001813859918326034,0.005660053444156864,0.08941723213494783,0.30169948941889496,0.2925739760003102,7.11143383591427e-05,0.012433799951325,0.004805995455741609,0.017557538961262328,-0.0038410715042622775,0.00012662425976027943,0.0175165162168969,0.015744565121923893,0.01956216709297345,0.01330626364522461,0.0002716323942775991,0.0019938724597554454,0.008877092525992992,0.019461971156353678,0.0007728873914473104,0.0002386611309448238,0.015581467889209376,0.031366715565263624,0.0761219422288202,0.13739548945719315,8.997169967582601e-05,0.003964528662120794,-0.006521812395698517,0.025823103278457712,-0.006186950876040351,7.41053776598721e-05,0.017467812666608004,0.009926883440438426,0.09709668265634248,0.0025164859260763833,3.5059615161205555e-05,0.0012237344557164936,-0.009122901372436345,0.007504950290230655,-0.015422592608648627,0.0009374107862030306,0.0028810957978875106,-0.014284895932634158,0.03611506803556308,0.004620698437456401,0.00013830902820978852,0.0003069283644992146,0.006619254337473556,0.004444425851439167,-0.011490414690815362,0.0007279771737260942,0.0010832309043738264,0.016211970733876764,0.21536923190874546,0.03978719851058241,2.2432358724241946e-05,0.002404506600475256,-0.021427457193391647,0.06061898710949722,-0.008077124544582212,0.00010500573003009456,0.007095071848165573,-0.006304793561969296,0.0340287634766995,-0.02149928102791853,5.215386772529863e-05,0.012706752219348959,0.017133918829465987,0.012247923060414561,0.0092410638284086,0.002728457718790672,0.006047417935583787,-0.019500805141544463,0.1438520442963134,-0.009266478053397514,0.00011155489002730878,0.02085689337828973,-0.03035193811312275,0.19176802140897561,0.03830490064201378,0.00024508598235145824,0.016744387253553955,-0.01647131125633278,0.11583018690780272,-0.04794972884864013,4.005598105002999e-05,0.00824415846731081,-0.013153327601169986,0.07311069831639772,-0.05416553984535498,0.00029651147982508066,0.002538675537575744,-0.004241569703704717,0.05888999842914146,-0.00651337639725678,2.988926922274539e-05,0.025778269482450867,-0.027006928240245327,0.24664825728424328,0.030225128548615993,3.658296051346206e-05,0.004681827922174469,-0.014469963680305179,0.03543209112995006,-0.008980040547737014,0.00013155077548810749,0.010412010479599436,0.07675647190511636,0.559522286465729,0.0010302830203974317,3.168764694709317e-05,0.034991826500999294,-0.02047171390284193,0.05970379241153546,-0.012788689500118721,7.602031542768323e-05,0.008989100706688917,0.0015833659839305208,0.005716119837730692,0.0019142851917993329,0.00012665682033409292,0.008641127109588868,-0.019788892837844164,0.017195901439416107,-0.023212787944041,0.0006577670448112179,0.00985105931167702,-0.004033824100684938,0.013788314259894689,-0.002285467892835468,0.00012313791402253154,0.006811641788410407,0.056357984373814694,0.21808617033661085,0.0398039289785665,0.0016586184834132974,0.01877565048400722,0.02288609416861944,0.22494614571299892,0.012687486756143415,2.6162263750971416e-05,0.01828281185532831,-0.035846361245969294,0.08968067438486133,0.04210032699122768,0.001306825142617491,0.002089391229423856,-0.01776516093914734,0.11705388557364985,0.04346190518960009,0.00010106690232837425,0.005880414224279196,0.010705818714981543,0.016982446836150075,-0.0007860112486201979,0.00014878700701885633,0.0033280551757652816,0.027220035537882506,0.037133840638480325,-0.010429451103927219,0.0004207486511705405,0.004652337564247279,0.04980499624396994,0.18936292357775178,0.08089815845726343,0.0020385825518903955,0.018812210224312002,-0.0017700114457800315,0.0071481381594609,-0.010266148686042214,7.944626913354245e-05,0.0027036578586287843,0.03221983767331206,0.044941334705087994,0.00994911944999684,0.0017821923435188587,0.0008559496504734709,0.014093144972760482,0.04637266653348463,-0.0412237534741773,0.00012040981424362351,0.010466802475002722,0.014501158184074825,0.03647537507697168,-0.004828716305304724,0.00016116224171943035,0.004993612625969135,0.0007739130032485293,0.0032123380544795185,-0.0025871766321636873,5.8801015466031466e-05,0.007488828776823147,-0.04473970271735433,0.1555358340360237,0.04512659027982057,0.002726344232004856,0.013271419935564454,-0.020173094908795784,0.11410061250375966,0.015808003327190737,8.794782968435172e-05,0.004265635391225757,-0.0022755905691684013,0.011332400436130416,-0.01383883501668365,0.00014562401388699273,0.013521929462991286,-0.03269835163066678,0.2013045298402528,0.033336754017693586,7.682826237822787e-05,0.013583794672535234,-0.025377602361137102,0.11837017695869362,0.033907572411457705,5.388348618784616e-05,0.0011800342914958665,-0.02309698832056525,0.03712389427416474,-0.005067423296050627,0.000303341075093463,0.011965460842730317,-0.033846897782610984,0.14387570095471033,-0.01148353837122566,5.8498643189075725e-05,0.003981362222898001,-0.02078550618028626,0.22526820887254678,-0.10748871597284328,2.380630452366476e-05,0.0024018764056362436,-0.01957050069244532,0.04980759236998351,0.04800802043966774,0.00013734579018398937,0.009479877079642587,0.006927823772083008,0.030208539371432086,0.0021562157226145463,0.0003614889910463329,0.017058633534423256,0.011360983663529,0.05233467564204724,-0.024285395893846453,0.00012433637300356403,0.005520811076363087,0.0016756910487802164 +2020-01-14,0.009355590427707143,0.06893866378928307,0.003509811378492424,0.0001435142161765875,0.0019226038761330712,-0.0034945862574830263,0.009854454961635884,-0.005609931544198444,8.508905145899005e-05,0.004628057609218916,-0.027236282239918978,0.08540937874288804,0.01182902751819056,0.00014751611546185776,0.004431268459657864,0.02392831226511481,0.030729571188010747,0.026170516263816057,0.00026279882791289326,0.01531485448568274,0.022336619932758765,0.044153034853440555,-0.04700359097186004,0.0002647004421557032,0.006399716077102407,-0.009066589397933924,0.022401421651666607,0.019412782400900608,8.837208615547461e-05,0.0010986877368834031,0.032501633503519,0.13340752085799623,0.0015813671354468109,7.148496853251251e-05,0.011791191567039342,0.018933722135936287,0.1601712529618642,-0.07482538283048523,4.053685400832649e-05,0.0013927150644374292,-0.032742501098076505,0.03085022582592826,0.11068327038151149,0.0008184615653723867,0.018143375975589928,-0.03197863257640456,0.07437804035946186,0.014903422742820924,0.00015034086467377721,0.014888973762774873,0.006878497942126306,0.004736405635179054,-0.19533575798065697,0.0007098540766204279,0.005483844322298013,-0.01418072869557655,0.1969715066329717,0.040088884254529056,2.1454476935324362e-05,0.005155687338961459,-0.038538095802549084,0.0997683301869701,0.053651799463185754,0.00011474891461926668,0.002420230296933009,-0.0015748533569793029,0.009138701852025694,-0.002307344500052053,4.850845360798089e-05,0.0014423898560972663,0.0025951479926338114,0.0019419423176753531,-0.0017188113432528994,0.0026064462664353136,0.0016574945723089568,0.015391537268161929,0.10031805430518742,0.0061171878984853,0.0001262568662357254,0.015778639414194932,0.048090994791395385,0.28003318242111797,0.03654856939216972,0.0002659270383283436,0.010592295161728207,0.11351967121878977,0.6580769340390552,0.2696118516875045,4.85909524381465e-05,0.0024067144332573093,-0.025936017376146613,0.1351400992506608,-0.00010990200220804004,0.0003163048581792399,0.0034483935822708566,-0.010361405592021828,0.1360203627527739,-0.0570481988981905,3.161149073671316e-05,0.011890350373074022,0.00148596983655285,0.014552260739581543,-0.010205082173767345,3.411624584664661e-05,0.004513316311668814,0.031459251868409824,0.08808359818603437,0.03482986121542098,0.00011504721213748364,0.020701868295344584,-0.03618374479883029,0.2744822777339508,0.030182369595433828,3.045030021852437e-05,2.5628288567144117e-05,-0.006515727878015784,0.02121224822079144,-0.017582513175054545,6.810102051707639e-05,0.01552358916122747,0.0017804289589067122,0.0064978636387758495,-0.01081579681104322,0.00012528603120584195,0.0009658143203751846,0.01858172408485687,0.018654077864680315,0.022602512757189754,0.0005693610886478976,0.008579232821455838,-0.02886749627970537,0.11465937078784197,0.03827777039578938,0.00010597064394858361,0.005430241263343447,0.052599166470388196,0.18828343443746273,0.07401443707130374,0.0017930232668116038,0.028944819465668827,0.026374957885395678,0.219503681991948,0.01519864683502049,3.089812747257872e-05,0.00329426898998284,0.09006731808845597,0.26756704554100075,0.10901187549157343,0.0011005401157127934,0.007912276807321372,0.004144539038314706,0.02831477173463527,-0.032813592524988736,9.747400555083205e-05,0.01289693581380727,-0.01048593300727733,0.014568539216816044,-0.0009797600627622894,0.0001698777333605835,0.009721560538040169,-0.024487104932964784,0.04142002161366339,0.009366159699641151,0.00033933685849458665,0.013148943320239128,-0.005448840860348913,0.021148148908938683,-0.13812321161852248,0.0019970185798316043,0.011357176846295142,0.02124796713310356,0.07615501842878801,-0.001021184083183776,8.951776462648968e-05,0.0034667742765731625,-0.059372752332957385,0.08029370410743147,0.05156032750070381,0.001838158176794155,0.0014060381737677047,-0.05016289621669135,0.14404275941149972,0.11064826702697023,0.0001379771617475315,0.00511634639400314,0.021219109582162218,0.0532531116517747,-0.06858402277633106,0.00016152603869868843,0.010357220159015745,0.005300875678811405,0.02264180675635363,0.0030319291892852026,5.714134576234237e-05,0.009395731122998024,0.04942610889822411,0.16513768176857593,-0.007506344483212023,0.0028367972421483134,0.002947948878503493,0.015562540067365524,0.06828588617043345,-0.01736230466734747,0.00011336790040805972,0.016885348496154192,0.012600073417190886,0.0644288868266745,0.014565998494664117,0.00014182514366704098,0.00859589560723284,-0.008727261417219146,0.04398917764064566,-0.004455533572633948,9.383845326144422e-05,0.004578259783104808,-0.020741517629405806,0.10527837339784776,0.0010807703179105807,4.9516365343445985e-05,0.011632960608192633,0.0004527143479205041,0.0009214984317119269,0.001154590413424565,0.00023952952457663754,0.01690749670882713,-0.0002943721655816298,0.0010336273584407017,-0.012915056722639161,7.08185650707131e-05,0.016506744910889506,-0.024183723021705756,0.28096830987912874,0.021739859004205803,2.2207368882051725e-05,0.01697488362752093,0.03593018825886479,0.09391702663100322,0.15369728836700933,0.00013372854601964557,0.0022909721556990644,0.013637143762214789,0.05458614873038841,0.0074626199764905865,0.0003937938556442307,0.0050599667417611325,0.05229656945806793,0.2089055884241501,0.07691828623971808,0.00014338210073715376,0.00638495076603775,0.005182125957484488 +2020-01-15,-0.041100082136229274,0.30281038121195675,0.03412354177435303,0.0001435352313908951,0.015159265031339473,-0.003392263127677192,0.010087437620884696,-0.0016759489162746298,8.06899035345454e-05,0.020290724186905612,0.025897897421882848,0.07529341226262029,0.007171272883228078,0.0001591126581795043,0.010568651036758667,-0.014120345843521466,0.015081622981722172,0.01646463621308602,0.00031598401295395833,0.007822029108130565,-0.01566915685104498,0.03473090075839965,-0.00340658172967886,0.0002360626908061106,0.0065817516857330045,-0.012305597050903169,0.040344248779539335,0.028109472236653967,6.659901355088987e-05,0.006536653061829549,0.03357867998251191,0.1333588410673859,0.0052817893416206695,7.388081234956185e-05,0.005960537537867369,0.012471604460390417,0.10925541473360394,-0.0034903143925513287,3.914515104755125e-05,0.02001838464596035,-0.041238261116864496,0.03503125353585295,0.10306008418782872,0.0009077984831345889,0.005609533136470181,-0.036877304812201285,0.10875245273594321,-0.0010362088142316138,0.00011857196000570981,0.0024086052055697746,0.013100064938797819,0.010615509899852755,0.007098248097891873,0.0006031939085493666,0.002103871237186467,-0.014270496805333162,0.2202438879230453,0.040417164797263934,1.9308921508442943e-05,0.0030652606430858955,-0.02465443150066314,0.07151512149032001,-0.02264142634153249,0.00010241136384488439,0.003572614989548497,-0.02464917905857284,0.14360448132824719,0.0018526246360968,4.831659104735045e-05,0.005903548391602954,0.0027480324457346723,0.0022067423906190187,-0.062251526329538086,0.0024288080349798443,0.01129857328322223,0.02325723348075191,0.14796130565859505,-0.1452967416229319,0.000129348681324877,0.007849591685485668,0.008913239838337658,0.049278572973715816,-0.0028986788038251853,0.00028008232425726553,0.0002342373957502919,-0.009902127815606017,0.06267144188861873,0.0031361123521973476,4.450612641633945e-05,0.0033675196331118488,0.0006222582727780145,0.003988096904290858,-0.007485915806244139,0.00025715311187284214,0.00273485800077792,0.027196741170945365,0.3966358607012575,-0.01698837927404101,2.845477279839948e-05,0.02289406434899059,0.005224097473874955,0.05656577291696701,-0.0004778675656654482,3.0855973650073044e-05,0.01360867276395675,-0.03150804658854596,0.08454181690804921,0.022607691815791035,0.00012005290063680283,0.013494833545955176,0.03160669713767268,0.19764431034100396,-0.08967373005999373,3.693917352886983e-05,0.00845279990627328,-0.00309927639680277,0.00835886169219827,0.0005206497960625504,8.220354595140644e-05,0.005529705846337695,0.004852430656502294,0.021454734230133637,-0.05419705450559437,0.00010341529957160998,0.003311104131842201,0.023535642249437057,0.027386137879681298,0.025374551664147992,0.0004912141006367983,0.014609578878989978,0.028490195846427393,0.1295410225536426,-0.006911686063062614,9.257082257211606e-05,0.007479774430217407,0.0003658708150411979,0.001269956175123308,-0.03512275431555039,0.001849090674754174,0.00815480474296496,-0.0021121126305439553,0.019987412682644114,-0.016818388037031742,2.7173319141970377e-05,0.005565602811832173,0.03673530285511513,0.11478821622028292,-0.043878179743421515,0.001046303281260883,0.04457670522806528,0.00872673306536644,0.07631205078554174,-0.020641786430741632,7.6152507898218e-05,0.0024993846706326166,0.006447603307664185,0.00897409112141156,-0.052107042995752355,0.00016957164011083002,0.004775338224915733,0.030143226967239336,0.041512228772127534,0.03627323518602704,0.0004167903032037802,0.009259119931705266,0.015582209003519204,0.05763553574199761,-0.02547663740748295,0.0020955065948513453,0.030686756313606484,0.010464127754643051,0.0397689277725337,-0.05490530131529228,8.442081134160063e-05,0.003059830129158463,-0.010193255758314233,0.01513099516354433,-0.004463539363148321,0.0016746444734201452,0.031474941262878184,0.038487139916571794,0.15384240096155535,0.007899099267818777,9.911870654277578e-05,0.04892634428228186,0.014956606518640182,0.038279293587271196,-0.01752750297982682,0.0001583906458802704,0.008977960046875257,-0.028188667183187036,0.1209769569062088,0.02063240922941206,5.687033822622163e-05,0.008610892040747664,0.043341833148353465,0.15174418797036313,-0.00366277879155415,0.002707155907714032,0.017529334701114525,0.00801698548747526,0.04604891861965779,-0.0028850348878230775,8.660285952466494e-05,0.01740598338100829,0.033803608819458764,0.16181980342697408,0.07237852483361273,0.00015149286622677242,0.010932433658890512,0.017374590089596437,0.10476478402031755,-0.015628059443787624,7.844187101384252e-05,0.00013808500235491794,0.01637884639709464,0.0809197534519732,-0.05919711165459132,5.087168866206967e-05,0.003698625977181645,0.09600393668105117,0.17173024537001777,0.13318463202330932,0.0002725659778208914,0.033975923736046354,0.018717286877314866,0.0765542101470213,0.01595522808494475,6.079784595680242e-05,0.019355645396866777,0.015134675848730277,0.17173064963140483,-0.009172179152061363,2.2738226927919674e-05,0.011038877752130829,-0.012032343199699683,0.03853582257787774,0.02143031032044718,0.00010914266188658588,0.0013327001300097137,0.03724009551073605,0.15270538164652678,0.02462870485313936,0.00038440091639056805,0.000520264293950821,-0.017456208132776943,0.07082298693208353,-0.03235841159487459,0.00014117164274309916,0.0030167755695786865,0.006928343496625955 +2020-01-16,-0.0025507405195871694,0.015050865029474355,-0.0009765905249437155,0.00017922203485341883,0.0018080089510815302,0.021466307254679327,0.07347007105241488,-0.007446383637282146,7.010635828322628e-05,0.0007923114825131665,-0.00321907723795198,0.011988907119150672,-0.021704967390723584,0.0001242078390521889,0.008235020066915493,-0.004507689248868253,0.004781717489819136,-0.010472817169821779,0.00031815438363784097,0.014062284430164992,-0.026647270456733707,0.06849733179136144,0.02233555217420677,0.0002035526907112733,0.006799206946473683,0.011867673078625487,0.031213046816957295,0.016948019652840648,8.301874240449465e-05,0.0026607355978986577,-0.03876581436820863,0.1651624290338571,0.007427174305583204,6.886959128204482e-05,0.0029923519319573206,-0.042001428138754286,0.34292132769239303,0.05907047982676985,4.2001826397065226e-05,0.01128685981020949,0.007964269777710493,0.007648731492885914,0.002221164498691013,0.0008029737239999514,0.006199231764436682,0.011685835019992442,0.026494589092533702,-0.014130487266626685,0.00015422843392775705,0.01043965110395596,-9.031417777487932e-05,6.49854852182686e-05,-0.14268656200392277,0.0006793036133863142,0.007742717316193236,-0.0053436728695298585,0.07432553106674221,0.006291805303888338,2.142518753301028e-05,0.00605968784399377,-0.02020164227638777,0.049557671467600886,-0.007163983204812499,0.00012109517023859852,0.006977238892486264,-0.0013413177616249015,0.006612431365261135,-0.08394377892026701,5.709950148689869e-05,0.00032802065013287944,0.0011012295306055233,0.0008670964883411295,-0.0259322471463646,0.002477042135232959,0.006465148707637149,0.050701434102851405,0.3220398064925101,0.0513840628871185,0.00012955757019972303,0.009029759123077578,0.0015615327493971366,0.009156340783245466,-0.0028377296673122933,0.00026408113681235956,0.021069191093160924,-0.025336547575825808,0.17103885556252413,0.006940311199657556,4.17266587886283e-05,0.020545014148085707,0.029718945661477193,0.15390365628853245,0.040596807867753694,0.0003182520925417324,0.007059514748482326,-0.03379176031590716,0.47779087315146784,0.017102419584912005,2.934966833191573e-05,0.02086212736287433,-0.009699050764360532,0.12165572941928655,-0.06059998671147137,2.6636574577557385e-05,0.006331114099119434,-0.02846651387623601,0.07930369080766378,0.016355678609882518,0.00011562816694909575,0.015615952239537772,0.0019913286388353766,0.016201852283967418,-0.10056021082719956,2.8390343522615784e-05,0.018620161683909356,0.010929383033886785,0.0287604194078756,-0.01934599473679332,8.425153340825335e-05,0.008668365073587831,0.006951364424956384,0.026701674354834257,0.015511648208692615,0.00011903650234598897,0.006742735162621099,0.034279210931866,0.028279454602594005,0.01147410511660901,0.0006928438213851243,0.02385893152162894,0.02390302880634479,0.08791433315737678,0.030015519312011053,0.00011444037116128113,0.00403410677654434,0.01708724154095345,0.05199129339119569,0.0034129495759082995,0.002109407625751209,0.002697467199988596,-0.027302130391114267,0.20626053774312367,0.028093135017007494,3.403788652253369e-05,0.005505006731700179,0.03301638923677688,0.09451130069248039,0.006831862683362579,0.0011421341193780536,0.022598672297160116,-0.008126830758152868,0.07190185023949461,0.0151328167235643,7.526737893825394e-05,0.005658896849385193,0.028253651578447374,0.041597582632811096,-0.0923000296727093,0.00016030677541258476,0.002211812810397443,-0.002656795012865289,0.0036269618586672807,-0.1049818389963277,0.00042045446870008635,0.013762802207887847,-0.017127635175298257,0.07751976114742153,0.0248697654561799,0.0017125186862333593,0.020037545321509396,0.0011334915253044583,0.005474776198430447,-0.0008707399089768168,6.642663875620361e-05,0.0028081729288299035,-0.08286140933080376,0.12237923404060301,0.08160690450637119,0.0016831459513563657,0.003311983730467853,-0.011513388683193399,0.03672994875059143,0.013969903142467693,0.00012419350401014512,0.014109418726978762,-0.0028459682893806804,0.0076430066279146785,-0.14148275856354664,0.0001509475945463492,0.002895802149926522,-0.04996827498852505,0.2672977246737136,0.0267421626927306,4.5626065545847565e-05,0.020320897711092537,0.0198711945970269,0.06277738530128077,-0.03201002270115958,0.0030001212776605626,0.020557700148158786,-0.023084291410070942,0.1015590448166731,-0.044511985687994665,0.0001130676878350616,0.007192907327615977,0.026287104607485106,0.12235664436922751,0.03605694417027516,0.00015580305884864716,0.019781363624985553,-0.03169035442781791,0.18352482788602845,0.026269738582730177,8.167346288371698e-05,0.018615144664874763,-0.08714642801489626,0.4221354440968214,0.3248049353479786,5.1885399739496016e-05,0.03055688779629323,0.06893261421486839,0.14480269316456892,0.045043762401875624,0.0002321012630662261,0.021213535630476676,-0.02728407467303573,0.11555913357313974,0.03536042665945441,5.871097982695339e-05,0.016352955917259455,0.011032172046248153,0.13577433052337862,-0.02625585537975673,2.0964023672846663e-05,0.012812524248120499,0.00661579485309516,0.01780587288309714,-0.04448430160766489,0.00012987564751287603,0.006527213434052346,-0.004643422796148916,0.019040241968465033,-0.013627966734671244,0.00038440916798821703,0.0037806873743628103,-0.00976752516177198,0.04782111294807665,-0.16868835399902588,0.0001169867444296228,0.011022420318250216,-0.004399682357454189 +2020-01-17,0.023358185104007,0.1573683053783099,0.04197498693108943,0.00015696701933952777,0.005921755181358497,0.04744843160776537,0.18036484551183965,0.03172179364307283,6.312196265927946e-05,0.002785533758917047,0.012410818641437501,0.040381319372797195,-0.11531113386016908,0.00014217300058178762,0.003688097711166715,-0.009579595109562442,0.011206640228670479,-0.006736873736711155,0.0002884958565505341,0.0005069747342543304,-0.006728303463797446,0.01568682185597256,-0.004912376667332186,0.000224423524595713,0.01109235426834871,0.013632459776686074,0.03546093769194461,0.015304176016703532,8.394034489740663e-05,0.001227744171212493,-0.024155165742774102,0.09994061085146468,0.0086178766314084,7.0918228301135e-05,0.002358295714094323,0.006097337577430361,0.06318371967954005,-0.004466835491791822,3.309281147209204e-05,0.009336092553761397,0.005069279920974998,0.004482606635285398,0.0017474038710857595,0.0008720882401699807,0.005060887390417507,0.01675992203407719,0.035906987732594875,0.011942237939674152,0.00016321305993566567,0.010718385304165318,0.00892569217637916,0.006297755140366061,0.0034258602862556283,0.0006927563132222817,0.008785064601228864,0.0007220697951050343,0.008796427108600995,-0.0284076963796413,2.4462208278038307e-05,0.0058418511013802014,0.013384120694084692,0.04022388691007003,0.0016725807024899585,9.884548739214679e-05,0.015295601917863805,0.0027487142621416506,0.014965301630859199,-0.011767984116340249,5.1701832884601435e-05,0.0005104799863058691,-0.021750467594894022,0.020651364312298085,-0.1448579243458451,0.002054200460824356,0.009836125627562614,-0.02956069913804392,0.1803404403627644,0.001345079340285164,0.00013488811426101802,0.013944642904826448,0.033180704208044226,0.1837609342342826,-0.013352563365504914,0.00027960223639838876,0.018012182005779812,0.07861990837969042,0.41480323227022914,0.08889678333346576,5.338894727214665e-05,0.019238217486161585,-0.059567376281367684,0.33881406852649276,0.10486371521290055,0.0002897569381055031,0.005788551850902625,-0.01780015141961572,0.233264200843946,-0.058763233018083824,3.166692076713614e-05,0.02579740535728142,0.001099221732500988,0.011746649059643167,-0.02480514086273309,3.126461040176923e-05,0.003227524312175815,-0.025462081960588294,0.07739448048394354,0.007267126522235613,0.0001059757937850853,7.807742991239796e-05,0.013310154943984714,0.10191974506628124,-0.014388218162917604,3.0165960535499216e-05,0.010356262320250439,-0.001953801495077755,0.005294844357527326,-0.012334434584769282,8.180966633970683e-05,0.005863807167840474,0.014036158853608538,0.04480419670787601,0.05168981428593661,0.000143244572287161,0.005345232219857503,-0.024923648263631998,0.02636624699491491,-0.13168245355374725,0.0005403048411392996,0.01768937770508587,0.015592802892854026,0.05740741599973816,0.01080943019048032,0.00011432526036266331,0.003788428863845663,0.05814631279502057,0.2152443996238741,0.08793344515524769,0.0017338419020710716,0.013899215236819562,0.03236343119317486,0.2635705752514262,-0.028920859025599464,3.157474344285829e-05,0.01057395876208161,0.01773439768374067,0.050427013326605714,-0.026137067468768486,0.0011498057234785653,0.024755113044235735,0.014092127086833975,0.11721833920194752,0.003008638449558431,8.005834916464881e-05,0.015556733577481203,-0.04609573412738962,0.0715991403565653,0.07258982698616685,0.00015194916372978574,0.011474796723678262,0.015399453933835301,0.016828162799587085,0.0073311888260002445,0.0005252578237380922,0.008933545040864332,0.03260334396274778,0.13071921758005117,0.004038739174489012,0.001933183355310526,0.003058560958694949,0.023616932514306993,0.07353573086369597,0.05560471177433168,0.00010304227671002613,0.001523643416959178,0.009939088118678208,0.015332139664861322,-0.0011921012809500504,0.0016114653293445612,0.059496809893943,-0.0005177867362783349,0.001933910778440033,0.003806488063622923,0.00010607927035838104,4.943298886249262e-05,-0.005752238600525497,0.0165397456846897,-0.12772157250796498,0.0001409835495589559,0.016840679259730994,-0.006877851721208145,0.0327439650349001,-0.010830542362036113,5.126671212448168e-05,0.009685269433484054,0.021308915805772117,0.07313554772742592,-0.005041747320397281,0.0027615371698407397,0.013342525313042542,-0.035225363297128685,0.20914224155996475,0.0425906850564872,8.378268866970485e-05,0.012210997909658131,0.0027035175652597603,0.018605319246289605,-0.042917378654264704,0.00010537870411824408,0.017709685984441063,0.014801837901991006,0.08468350402807798,0.006226087557225406,8.267334746081046e-05,0.01399990359461047,0.0032254789743270283,0.01480240982377729,-0.05214718612306681,5.4765768476414246e-05,0.0036864474828381512,0.03823444113690074,0.06894198026073169,-0.03776448546331839,0.0002703960773168516,0.0012626968996261208,0.0031340854721846915,0.014708007426524361,-0.044538609456043314,5.2987248921316433e-05,0.009974272351926928,0.01810699475028479,0.16156537065818388,-0.029596138347462983,2.8915411676537783e-05,0.006880782153258001,0.00667980113657885,0.02176795039420583,0.0012953759937080218,0.00010726423970640896,0.013141335863943825,0.01006389077568509,0.042178181288262555,-0.0001043409138439827,0.0003761023408425291,0.007627168922576032,-0.031913745182124774,0.1378628696365741,-0.0031557994654313193,0.00013258740017850335,0.01053828456525324,0.005952497398513526 +2020-01-20,0.02482976636914411,0.18055458970441077,0.007450693455187847,0.00014542888834499155,0.000736865316724113,0.02813268755259222,0.08290585174601915,0.016858141827247885,8.142102474482902e-05,0.023633382544577863,-0.03585180003190647,0.14461348332017923,0.025651265142049514,0.00011468308915543052,0.013111723565187486,-0.010049482740260844,0.011506291530380951,0.007882364202863342,0.0002947651879131919,0.00332721440265834,-0.01863121221448377,0.039736685419198475,0.006689795248013604,0.0002453280725079073,0.0005827787495735069,-0.011198156354473287,0.031111687289102064,0.01097005873125042,7.859043668120207e-05,0.001715917044078515,-0.027972322852722928,0.11415553441315943,0.026985938880532183,7.189876255823755e-05,0.002050062861268616,-0.015617452578472479,0.14301678236403473,-0.010029446797412422,3.744741187957657e-05,0.0012421304717869998,0.0026227791488983663,0.0020469319480291583,-0.01565285827718848,0.0009881050174368204,2.2878345383490735e-05,0.01180249348980937,0.025530380270611806,0.005395631927543084,0.00016165099135423725,0.007273432121805675,-0.014228745493467183,0.010563564364589979,0.08323367255037303,0.0006583858473421222,0.008242106984929968,-0.008211240847748262,0.10244329314012682,0.013224893105621475,2.388625417761538e-05,0.006305338354032369,-0.04045651201470265,0.12630511956720042,0.04776232563758377,9.515213133734497e-05,0.04484125508839735,0.009547920481538543,0.05047044629116837,-0.011052408074120716,5.3251698771318303e-05,0.0023522296592852977,-0.024600660985840697,0.022103626065130576,0.018381811474223898,0.0021707320769106565,0.008208839599845546,0.01907758554151401,0.10226904761588267,-0.09665886391389325,0.00015350810330936392,0.0023904554463022604,0.05563525162805913,0.2812608835914697,0.04973841006881326,0.0003063013787992633,0.001761912406784068,-0.0005849211580396142,0.0035949485147691823,-0.0007506315908463712,4.58316626052755e-05,0.016631052763709735,-0.04753859254366495,0.24773312407993164,0.0423108666054471,0.00031626348163201585,0.010262420699053244,-0.044810556164871694,0.5938013295664818,0.029283354720460394,3.1316224643387174e-05,0.011875285736571572,0.001285314686111858,0.013865262922533282,-0.17011155386433557,3.097155919801994e-05,0.002155498239455087,0.004911823396029302,0.013471209197108616,0.002803387760065509,0.00011745159496994756,0.01623206541080945,0.04535826441720861,0.3398418598606544,-0.0417227993538299,3.082988698141049e-05,0.027261499440266825,-0.012591731842406171,0.036545877027482174,-0.006640096205418779,7.638788049656623e-05,0.0016612777435764219,-0.0001996430565663784,0.0007367321223073167,-0.001655150227534069,0.0001239062461948585,0.0025693943636456882,0.027404127563451165,0.029202056540442067,0.016338786967200477,0.0005363868279398723,0.008133702722389675,0.02933916771871504,0.10681622023631412,0.029115334186793865,0.00011561031720156056,0.002664570134967665,0.03727947554327588,0.13127377997298179,0.03386752444963719,0.0018226823072510514,0.01107942548575577,-0.03698521245945948,0.31905060402888635,0.03770330138999226,2.9809228901396337e-05,0.030529316160289977,0.034400297473340474,0.10515059076903681,-0.009199344648841935,0.001069600878241752,0.00977155302946412,-0.0531082494413679,0.46226705274757585,0.22731970996570344,7.650585775503558e-05,0.002704594629249406,0.009690349292264951,0.016389816243595215,-0.025511815074052816,0.00013954386044913032,0.020826172384351825,-0.0011833860333962895,0.0016929213457445834,-0.02435634416054522,0.0004012301610952799,0.0018825294976135918,-0.017888924034899677,0.07057900223361209,-0.0507433828103359,0.00196453172466799,0.0088607983308707,-0.023825568908671334,0.07838046103993829,0.03860629475498372,9.752721806157043e-05,0.0018401803924808003,0.05140494571547934,0.06193189111563328,0.011832660269745948,0.002063325545486475,0.015078410776758052,0.013769966495883338,0.04493985540739683,-0.0012656315478523808,0.00012139959819144079,0.04456596294299361,0.056395301665348826,0.1609852192710207,0.19999387751095335,0.0001420094667786548,0.0091180731493917,-0.013573766837756455,0.06146451142679447,-0.030138611589724976,5.390013787134179e-05,0.002233737322332379,-0.0025260581190077545,0.007434776900527491,-0.046851848166149235,0.0032202786705825873,0.022252043357368474,-0.01735241527120834,0.08462574708339062,-0.026968657310759005,0.00010199948699818329,0.0031283668839528983,0.005785310169175529,0.02825824573788921,-0.03254994376262586,0.00014847120549244517,0.024066654943021727,0.017222779851518745,0.09190622822343705,-0.10191227013299783,8.863535852685856e-05,0.005368644690080425,0.00046914967110566976,0.0020382544417360984,0.00018329189207657226,5.784960710197397e-05,6.950989346128558e-05,0.023743090701207673,0.04887156151244138,-0.0009797904465679924,0.00023687020182756445,0.011318743302732654,0.003352827055085192,0.016336808586199167,-0.054008920000408474,5.103384704139638e-05,0.015628514214029412,-0.006947109551303713,0.07036991081006698,-0.04752949146601832,2.5471142899114695e-05,0.0060060966228257465,0.011942095325709777,0.03718607994142509,0.01122837290075028,0.00011225588018950401,0.007033155824591894,0.03742435777539593,0.14741104122008244,0.0493354146752237,0.0004001771744462825,0.009132158821629214,-0.001028382973260676,0.005282200979536792,-0.003681610167089611,0.00011150947011270276,0.0050047280374169445,0.0016068785634173032 +2020-01-21,0.02405631374414806,0.16812341215562854,0.02940067078438534,0.00015131691117579668,0.01215882142582993,-0.06207100147138299,0.21012331985396793,0.07085588732010463,7.088021483568333e-05,0.011748446053381144,-0.005844902290243367,0.022582922981665407,-0.03125154345945412,0.00011972760815888844,0.010619768884383329,0.019216604540339507,0.017317060648297116,0.01736398868212384,0.0003745159611438287,0.00019859976843980684,0.030435693105851747,0.057349564871694944,-0.03434457252258188,0.0002776839902913536,0.010662589963156038,0.007099282247860125,0.015485876615758393,0.004784338493220411,0.00010009799719297224,0.011039637565565797,0.02489683867170616,0.10593295054887536,-0.02008693507950629,6.896091122972959e-05,0.02718644770278172,-0.012988043419806269,0.09204927394889449,-0.06235829156822131,4.8386251561999354e-05,0.0045785969631098695,0.026820285563935876,0.01942804342754516,0.06207745081979273,0.0010645819995789088,0.004713513198687169,0.014188341244855964,0.029892608227730957,-0.006157854023993756,0.00016597004099357506,0.022891781913263024,-0.030132474257943555,0.022562495718848656,0.21910930531628808,0.0006527877795045357,0.005786119700542391,-0.019564567683251512,0.27766432211928327,0.0619417981210663,2.099775990707377e-05,0.001676953763838604,0.011306369278039949,0.03258671410953148,-0.04085136733671264,0.00010307032210712659,0.03413970875495104,-0.017657390104242575,0.1030224311004254,-0.015854696917290058,4.8245469407753515e-05,0.0032695649201778436,-0.006893694980582312,0.006125722076677043,-0.0393172741948784,0.0021949152057817354,0.018821321289166828,-0.005415603843318311,0.040412229924436514,0.005751686147423987,0.00011027731419440991,0.02572378709846726,0.0823165427179206,0.4772666386167358,0.09482214218221499,0.000267075638857746,0.010999874023781178,-0.03640896406293438,0.2168615860505233,0.008317994278855592,4.729188757434492e-05,0.03228211398532131,-0.032671315271212885,0.17292541857297586,-0.03531020223195607,0.00031138277907918476,0.010947474708684748,-0.0062695575575647585,0.07533059350127227,-0.005772934382782197,3.453788474832417e-05,0.010239484098039672,-0.020050319341062415,0.18082400483820502,0.054298363853084966,3.7046477440326475e-05,0.004861829273133217,0.014299688927064104,0.0439587212359745,-0.006991134538875926,0.00010478624929364566,0.01030776861575229,-0.010255504427956157,0.06933253191462876,-0.015260717935642187,3.416743228020291e-05,0.019464483455990333,0.0062619020500615475,0.016654687948081233,-0.030186014117271377,8.335797433940765e-05,0.0003647711195887864,-0.0032283880215071294,0.010872812530502915,-0.014049765698125634,0.0001357664376821857,0.004274492471933288,0.0812807996548759,0.08316320046593313,0.12772280257942809,0.0005586403930203279,0.024400194717369074,0.00959926062455175,0.037627383832756156,-0.030879633262040355,0.00010737910222434745,0.02453163638239985,-0.031745866254264156,0.1490263274908368,-0.12443096401031309,0.0013672355994337807,0.016614968892059163,0.018868262438844714,0.15630576596473453,-0.022702155539716554,3.104124306403421e-05,0.0201500512401325,0.0030340894067473322,0.007689509959802525,-0.045649006168981626,0.0012900334756820275,0.009843187476994116,0.0026816195809203575,0.019423229867063397,-0.03811134315471987,9.193933569832893e-05,0.008592645498214462,-0.02089836720386293,0.026806988213449758,0.023152004337177318,0.0001839965664578661,0.009999743590828267,-0.027270359063371635,0.036261720047419614,0.03918629176501589,0.00043166453532591495,0.006908024358092844,-0.03014974245391806,0.12163559756864809,0.04878473806371425,0.0019212029938534259,0.01636072670806964,-0.010861040637363659,0.035580584694377144,0.006387478461101804,9.793743565959842e-05,0.012244792233234485,-0.04408595810330914,0.06031813953419105,-0.015658950649342012,0.0018168937785407928,0.017140245109223712,-0.01738737564103839,0.05062280505844656,0.014724330733125348,0.00013608299757928954,0.009560679527256796,0.03256882400738353,0.08273759365093711,0.036222867548869074,0.00015957305800505368,0.010924833692744149,0.03609090529964053,0.14351193325288927,0.06016372473603796,6.13795480265686e-05,0.0016789147113955103,-0.023027465769080584,0.09698020128592878,-0.004386777603220208,0.002250510907497003,0.008014430803011193,0.015165900217788556,0.06758177768559755,-0.010203741309354536,0.00011162954475455249,0.00935327102644419,-0.04779651099323484,0.25391515228107553,0.11004242054295393,0.00013651122439346637,0.02837966721388204,-0.013563558008590895,0.08980636973931029,0.005733511863093025,7.143568057909277e-05,0.006567530590386515,0.026304466944383674,0.10904067204836608,0.02885564175811397,6.06301134248942e-05,0.0043247699465071366,0.04173251421966166,0.07781029093522017,-0.0989503190547945,0.00026149711688270417,0.007690299088274951,-0.0015515720398617126,0.005775920084485974,-0.041693181720859215,6.679825924440884e-05,0.0013814046392775542,0.008043881245891105,0.08396718176728973,-0.033927950157313876,2.4716522007249823e-05,0.018167016330184114,0.016510110907780456,0.059198724858029204,0.009142712573336908,9.748697692477844e-05,0.002645123229296607,0.012243328299358024,0.05896411468738698,-0.0038057032541946685,0.00032729523586999657,0.00743264011583907,0.013145279752168972,0.0527128700223515,0.017713290477519038,0.00014283181877558049,0.005240154733128617,0.0004755388637930896 +2020-01-22,0.0011928922188607716,0.007169679414715004,-5.061976163883284e-05,0.00017594950630788007,0.005943698426583603,0.016273829041485884,0.06515170889201628,-0.016741737632752045,5.9934165734373165e-05,0.003568681942171365,0.03175160768566974,0.11227938251293365,-0.049418899451985646,0.00013081661550978291,0.012406754325819374,0.004104442171973185,0.0039461826999842966,-0.0030759401303481187,0.0003510304648789892,0.0018294715788441285,-0.014832043809331907,0.040671874942591356,-0.09286355128461062,0.00019081151439202327,0.01592886254231677,0.03922321016890233,0.08649230672054405,0.16307576844693913,9.901759987225001e-05,0.002734586550972113,0.013552239979598077,0.047381481734386284,-0.004044017763524143,8.392518371127228e-05,0.006515980453966702,0.010843265778077671,0.088288990371903,-0.034215600248095175,4.211648971509583e-05,0.005858154917181579,-0.028991294346867678,0.02159819577751895,0.04829267882426353,0.0010351300547909968,0.009602263263474657,-0.015321330214689875,0.03916780018141608,-0.012754502190346068,0.0001367820721546848,0.014472578890124497,0.0027459359965935227,0.001838148066353348,-0.03336435025792836,0.0007301873029567507,0.012576274078867989,0.011688835280207584,0.13664186466832495,-0.06478748762904647,2.5492372042137636e-05,0.0038778241781950613,0.0012759909944879395,0.004403403554417974,-0.001140575770567279,8.608156588295369e-05,0.006261882443424748,-0.002361491178994035,0.01169193596436312,-0.09842849967967958,5.685409068657214e-05,0.0005190101117061491,-0.004782589521242895,0.004672367257687517,-0.04266670820644586,0.0019964071134904015,0.0061048902458903246,-0.06357630149571303,0.4338692858306106,0.11977624773576177,0.00012058365966123276,0.009178038036901766,-0.03008963686902172,0.18789207947118425,-0.09544933316756728,0.0002479800284834102,0.034895503463987745,-0.005369630107119177,0.02978017345485408,-0.040594826592224555,5.078998714331254e-05,0.008986049463916288,-0.04157987023620638,0.2043657921523814,0.022394026534323916,0.00033532175777839805,0.011760264210762757,-0.012471327468741727,0.15986020039843862,-0.02157304025519027,3.237446208511132e-05,0.01883523726035102,0.0002707495153358183,0.0024852405308194883,-0.006688806198278655,3.6398289022477066e-05,0.00041669559983651197,-0.03335384990985241,0.08782056087225878,-0.00100841652208326,0.00012234113900968106,0.02856867290988918,-0.03099953091967607,0.18931239970132524,-0.04173998711041746,3.7824085598855257e-05,0.01203824264717925,0.00026207480440927893,0.0007905523476232854,-0.025206258512440374,7.349740743748344e-05,0.014668190357822186,-0.011621569696734921,0.05072292926765504,0.003809703832013274,0.00010476327355697561,0.008964038234907771,0.03660229411487322,0.03974627705218391,0.016200467397901767,0.0005263654953055813,0.02476941363147302,-0.019977896289201085,0.07321870560247229,0.018753124532503454,0.00011484542953274447,0.02720983490032606,0.013875034631080628,0.047602725675705504,0.0038186465018639057,0.0018707744496224605,0.008731936601157673,-0.02314481117365335,0.23849138568950976,0.003491144366980486,2.4955319835660754e-05,0.007967029890832356,0.026014466437656265,0.08400201812476986,0.004420855901740279,0.0010125033589159615,0.0165691576326838,0.015349799973725781,0.11320346138095443,-0.01009205333031747,9.029603022193928e-05,0.010117410857097189,0.027755553536876355,0.04007896228157861,0.01627307843947055,0.00016344769898812622,0.03274877780193164,0.017453403419504077,0.029219403687145006,-0.007932785689183016,0.0003428567407674684,0.014117903346007002,-0.022915046825908267,0.09166986155438117,0.013449113501688358,0.0019375125075159786,0.0018196375652782387,-0.04422708528970475,0.1584589404706979,0.11736597310748975,8.954924767372686e-05,0.015154830782238754,0.011649891695719375,0.015369427427667224,-0.020535077359662868,0.0018842624397188803,0.004995147681521402,-0.0036135713674976524,0.013273999073641077,-0.0253664133356538,0.00010785763416548593,0.01763586381456374,0.0016793166276856339,0.003930573669723494,-0.019188158220850803,0.00017319566741066199,0.01142661805350343,-0.027568861372162346,0.11321124166955904,-0.012083202195975794,5.943512781197383e-05,0.0055101368742069105,0.0026625302220214466,0.007480784637147236,-0.029603674779247063,0.003373381446089619,0.0016699392241918013,0.015848748720873187,0.0746595221997137,-0.029867494946029506,0.00010559669951050053,0.009479143271995977,0.0011093996609275595,0.005409520702355704,-0.07390724074595406,0.00014872707130784648,0.022209010090119063,0.010846595524936848,0.06128064105914556,-0.02782459917125832,8.371799994107991e-05,0.0040522978306849824,0.026801794557393125,0.13083960617120302,0.032587925193356154,5.1483971421700704e-05,0.004093337393441301,-0.03145616437798742,0.06435227758123777,0.05059140011554279,0.00023832589764866748,0.020945315007120897,0.002772400708631451,0.011756749758610659,0.003962701583227984,5.8638533804636524e-05,0.00030005875050720247,-0.0034926405975209403,0.04173998374853966,-0.21266776038632143,2.158901895565441e-05,0.004042330994003198,0.02546146981830799,0.082400997475674,0.054362680141221295,0.00010800900523792686,0.0007881858704213033,-0.0013294645974187324,0.005881165438336864,-0.03966816400759023,0.0003563209449783942,0.010422723193160233,-0.04378045030138848,0.22251607577776258,0.04033405772075393,0.000112691362012279,0.019940919628049763,-0.0031404319362014804 +2020-01-23,-0.01928520340753105,0.11460659630603544,-0.031978889013441036,0.000177951311522996,0.007648527929941386,0.07414720677358622,0.2325998603393735,0.08957608121729382,7.648845209758097e-05,0.009251786630932587,0.028005082599110224,0.08335138962202261,0.02846135557013388,0.00015542512227706518,0.0015239702276886797,-0.0037913836957741277,0.004513868615653288,-0.029094857859433314,0.0002834762509399853,0.0042661238497973385,0.0025230222831452444,0.005487356014800305,-0.028059909146933844,0.00024057789508382874,0.002990860707121813,0.0016462234968045988,0.004599262389727256,-0.00042289357133951815,7.815330509617382e-05,0.006359874184133313,-0.011922453627626249,0.04808788690139168,-0.05206389688047081,7.274778985400745e-05,0.012966095792108638,0.04030435169726147,0.36041091216255156,0.07601077077261865,3.834887452755761e-05,0.014985381897706034,-0.035908375898069535,0.030118542573172466,0.040339352315817374,0.0009194044401837144,0.003101838589987189,-0.05477121692477482,0.11679063291301255,0.09859483002930469,0.00016398580825907405,0.005166778134344506,-0.01264090600530159,0.009098414872010085,0.040653412273428356,0.0006791048377348072,0.0038006386623914384,0.00969193142689448,0.1219753820139552,-0.04273562403631837,2.367886792790865e-05,0.005895780366175061,0.029646150062350923,0.08355897893086697,0.021212407029266956,0.00010539650654687281,0.00920698241668121,0.015854919350346837,0.08553368854393624,0.06838757854651357,5.217814732557089e-05,0.007208328245036329,0.009890276437348444,0.00870536596826947,-0.051014973855960065,0.002215870469374924,0.00048305288703692014,-0.024150928876534732,0.1595797599516939,0.007449579958966682,0.00012453979292309834,0.008040852647830412,0.025531811428854315,0.13583932121658915,-0.0009062802800636332,0.0002910478244662559,0.03219816721635737,0.06324265491675612,0.4388747832749804,0.04291825044056028,4.0591062668764104e-05,0.009053119678111326,-0.04590928107199991,0.2524756067497544,-0.09222411604945532,0.0002996869796319313,0.003343276619590766,0.005794037435082626,0.07771449979281636,-0.16716200181556343,3.0939227939908827e-05,0.0045952000522536465,-0.018953410887313633,0.1966411197810271,0.02559309697269809,3.220288255237809e-05,0.0008392301704781609,0.02094787315626801,0.05950024182796318,0.013976476194767143,0.00011340807022519274,0.014494665712803018,-0.021944085627069156,0.17239207895869588,0.046811255873643105,2.9403061904703727e-05,0.023416789021302446,-0.00757394014784932,0.02525284000746011,0.003966611870799765,6.649500514010836e-05,0.003518448332586975,0.00560183477225068,0.01961038078204483,0.014314713907906089,0.00013061494263919948,0.012548997339887224,0.023459703972514866,0.024927360561087762,6.649420315464073e-06,0.0005379250804146676,0.020068928887948635,-0.021126768089366796,0.06838516141402107,0.008296366411846202,0.00013003408251844673,0.009692879044426134,-0.011856801939280513,0.05101918916496826,0.0017314179329894546,0.0014916027926477429,0.0012477792075640606,-0.07600552354429821,0.7714923378232569,0.14600787116421046,2.533353139736917e-05,0.021449914347520395,-0.07000709323430171,0.2071482319103543,0.10992666841284214,0.0011049231800239004,0.001277502753799379,-0.0158430665838621,0.11954008832979458,0.0025325418273294937,8.825743840244607e-05,0.006215816636922407,0.007484883246064612,0.012656349489667311,-0.0508566102208053,0.00013957960268921876,0.002069455396513791,-0.0064807690008855485,0.00961876980222408,-0.19050198155369716,0.00038673272599283967,0.010845105939559237,0.0006518006161661023,0.0021816054387471945,-0.020764197471411474,0.0023157352164210354,0.0023106617060660657,0.057374987919508666,0.17050444389970829,0.19133119898803008,0.0001079635794715864,0.005544882754058017,-0.00242966226554215,0.003950643435498348,-0.0345054384449659,0.0015288161658210686,0.019054193798706463,-0.013019281712711087,0.04227512156257329,0.012331704604849862,0.0001220163967720486,0.0032401536042493467,-0.026913748033870425,0.0759526695145718,0.05971323183685643,0.00014364533142478787,0.005089090067649746,0.0223877982705158,0.09096351660064746,-0.01815037506826969,6.00700603679664e-05,0.00974199216205556,-0.0630267092691172,0.19222366398890936,0.049461581949618125,0.0031076767548036304,0.03281495354550425,0.012094382102979986,0.06823395802392904,-0.009949884178304886,8.817057886350923e-05,0.004469868859570675,0.037710861040850197,0.23087998585449573,0.058384312859443524,0.00011845160395634942,0.0040094155671925365,0.023639044668451733,0.13918906495986288,0.011684051533582703,8.032921125186681e-05,0.005158894069545675,-0.03455850666258255,0.1682459301536251,0.014037101195395526,5.162473019612237e-05,0.011384237175831535,0.012955091800842786,0.020882855184936,-0.02066069552422515,0.0003024684021184633,0.016260345338503592,-0.0035270727706897646,0.014037545813849424,-0.002718907719815301,6.247950920313365e-05,0.0007779841747339797,0.04827977525531306,0.5348544470282487,0.05727557942966903,2.3289540184419856e-05,0.00701537310968499,0.01779115657574491,0.060384207839309784,-0.003421267442322544,0.0001029887466844287,0.0015069160999143085,0.023578801830009388,0.08190276153274557,-0.12749826374976178,0.0004537860679312687,0.01001567170934896,-0.022314491498631274,0.11119291889460792,-0.0019760951394656606,0.00011494277018849717,0.024533500391590576,-0.0005226453993765125 +2020-01-24,-0.024813934665015306,0.18528074213952986,0.039060943483537024,0.00014162891780790756,0.027428153883462224,0.017975058221383917,0.05464877110732741,0.0012322951497506962,7.892242697606322e-05,0.005073359189763498,-0.02408771074628336,0.0868118119860252,-0.06816275274220907,0.0001283553309170515,0.00828315973689528,0.0471365434942957,0.05170457229101332,0.09750605271610698,0.0003076781383089746,0.006349027620093625,0.024151300443966923,0.05978000452238099,0.009162786458692947,0.0002113889830024127,0.019314492399868054,0.013392293590674202,0.03684141524494137,-0.04894261699160924,7.937164774175284e-05,0.003891974261311733,0.00680193028281385,0.030207223659552973,-0.023445930368837593,6.607105176858986e-05,0.005267317608477141,-0.005534306349780768,0.053030980305689764,-0.04044030383513612,3.578756541286115e-05,0.0052915919692992286,-0.01954213459904055,0.015321393401096691,-0.06286037721449621,0.000983600006485178,0.0023001399209413567,-0.013348902447241087,0.030717061056448385,-0.17621638506518378,0.00015195947508709817,0.015370069317915402,0.03446836217138128,0.020926598548649946,0.043394760558611516,0.0008050935788220554,0.010627070986517304,-0.006506119590944727,0.07980817595276284,-0.0038384586079439655,2.4293911573911586e-05,0.0116459969804365,0.020131572499594016,0.058606526314266244,-0.003166819449505855,0.00010204289150648589,0.012312438275223126,-0.023104110919761348,0.13160587294554052,0.0419957521426519,4.9416935394496386e-05,0.004383339617440671,0.02129594097915686,0.014380846871706921,0.02853391000498657,0.0028882537452152787,0.011103200640713868,-0.028943001953054485,0.19998217204357113,0.018996056052991803,0.00011909798140174988,0.00868994680695175,0.034868847134815216,0.17249395671852702,-0.022724419455957864,0.00031301989124840656,0.018630840320254367,0.009058772532785545,0.061538874243164815,1.8533571087030815e-05,4.1464913461492e-05,0.002833873023593328,0.00024283546605989963,0.0015505201694062224,-0.05360395597465496,0.0002581199088710012,0.008608361286682843,0.041021419810395136,0.5699785039127884,-0.038691416072948785,2.9866370068478145e-05,0.012269535127426302,-0.008198663642588087,0.08128852310970733,-0.014970739114814063,3.369733421917568e-05,0.013366659237250268,0.019953873968641855,0.0598342529060207,-0.09629229646681194,0.00010742370028248523,0.010168211817147565,-0.005344743775828555,0.0374756244986696,-0.0001361143963844467,3.294354928683188e-05,0.014078776021484532,-0.018743181127037187,0.05606732511003697,-0.016172210498057428,7.411580795548595e-05,0.0010371209633180307,-0.007941047307373026,0.030662602787758116,-0.0027404147393984184,0.00011841790182123195,0.00012075077433080887,-0.013159970224681905,0.01279389857052036,-0.0030278813040972496,0.0005879326309577948,0.00015310621703751217,-0.0009694256803453335,0.0037646263593137676,-0.09896084483034022,0.00010838736303160615,0.010394685460017657,0.034563504470568385,0.10407083594326791,-0.01483983510341111,0.00213161075006404,0.011657902168132657,-0.0009097384731833568,0.00953926803765741,-0.02464311138403798,2.452357070083871e-05,0.002041914340121384,0.04315306971079565,0.12798052104690394,0.01087835030052471,0.0011023997108593414,0.0073948492011299445,0.019773092707135474,0.14331448073416977,-0.06197284993571229,9.187771195690882e-05,0.00021016963388827527,-0.02884680791772948,0.04108346897798506,0.03728993237332077,0.00016572042631803123,0.002484390855805045,-0.04402949347859883,0.06772365997191293,0.14157471518833406,0.0003731703952928192,0.005891560941433026,-0.00032033892183973436,0.0012053925932091084,-0.00022100755429149018,0.002059830726272063,0.010815797074043149,-0.022893007706781047,0.09500238123855159,0.0063717766353633834,7.73141051889029e-05,0.019660259201844638,0.0015160113713390813,0.0022592381179225014,-0.11724669215073566,0.0016680829519069632,0.00766066769172797,-0.007428203729591077,0.023581518078989616,-0.00020958860977486905,0.00012480387883901896,0.008208992773084236,0.03034720322704548,0.07869201378981394,-0.026436907100294445,0.00015633218206164277,0.004088941998154537,-0.026759108005648697,0.11804266090501692,0.008721845360241889,5.5328203217496206e-05,0.015705980928868424,-0.017635468027691798,0.04990980371173378,0.004096495748472749,0.003349031142152884,0.0014844714248877123,0.00196985861230899,0.01000795888599905,-0.04654481685773384,9.791069057580875e-05,0.004211513842912332,-0.0008329275327068153,0.005181833276634176,0.00040398527603006603,0.00011656940154283818,0.008410329404184189,0.014567214278596719,0.07362165676873586,0.0004917949479818938,9.35878824324652e-05,0.013784653923316683,0.009197626085185873,0.04687625253653893,0.0009460150475499015,4.9314003275384056e-05,0.01796178558702403,-0.021510408145877086,0.0405164110079578,0.0011606049231296107,0.00025884934890817244,0.00401280755238893,-0.019323931727266958,0.07510682300490497,0.02071770890903281,6.39779733168528e-05,0.002193281132511864,-0.01237158535510758,0.13443336263745545,0.022344920790232013,2.3743764674682162e-05,0.0050168437846958265,-0.0019956844320312994,0.006556611461113128,0.00392780780694544,0.00010639504081323115,0.012594806783001698,-0.029456174359490866,0.13467824427436498,0.09850034522835402,0.00034475205746006864,0.013178183992693961,0.03085277097674981,0.14396832605626114,0.039551129317575796,0.00012274364509181924,0.015464624944499952,0.0009681048036128965 +2020-01-27,0.008274654059262148,0.0571813616949928,0.0036281704915933706,0.0001530318881772942,0.004748257780383086,-0.03322826536336175,0.14266539226431135,0.02565539661716495,5.588555417432374e-05,0.004169888511149059,-0.016668320005425084,0.06029747741645697,-0.028567367880440803,0.0001278762495873273,0.0198767198273125,-0.02505460544286301,0.025247325575592464,0.030345025465605885,0.0003349191988808926,0.0005731272294424794,0.03138515046676303,0.06726731153383347,-0.0007443879299695777,0.000244128181876327,0.005787844389207569,0.022762913791519006,0.06335925162224049,0.03401702963810135,7.84448712538037e-05,0.0051166411240424385,-0.035961894931511716,0.1379846407309688,0.039710663810810114,7.647186393971317e-05,0.016229994297459093,0.046834958202429826,0.3639548287180423,0.06579093102166292,4.412871342763897e-05,0.007080378362250825,-0.03658466551211635,0.028007191907310346,-0.016865038807752745,0.001007335891309122,0.014807853000456391,0.04633888236363306,0.11911946065858027,0.09638249563923361,0.00013602687562545745,0.01215952987138839,-0.012691018270141945,0.009924201337649999,0.0407511098599132,0.0006250651144182743,0.004535485992448802,0.009102519913903994,0.1317253893345064,0.01711333473110793,2.059277793664454e-05,0.0057441527068106445,0.02686773752226105,0.07063893455367985,0.0014597290234121439,0.0001129894760139464,0.010538631819851494,-0.00046535078565706237,0.0022578037161931535,-0.042707114421593306,5.8017109297283386e-05,0.0023655047928426488,-0.004393620923830636,0.003684244143099901,0.001581266664892561,0.0023259327544733334,0.005786090892552421,0.0167246193616608,0.09775178686835344,-0.008097315042536635,0.00014079383716211508,0.021205649069424303,-0.0027529695696640903,0.014959848941212205,0.00930496454980191,0.0002849590370931324,0.0005027188031085518,-0.0313827534927112,0.18700148197553784,0.024535250090289656,4.727232395580976e-05,0.03806012176436274,-0.001248473891785648,0.005518954786468579,0.009406231687714794,0.0003728287854291376,0.0023601042725500637,0.02758170187796645,0.36006407279535163,0.014773990726371039,3.1788607323950964e-05,0.000443170589619399,-0.006154742981180334,0.054067704133064026,-0.018617529708478974,3.8032397388265995e-05,0.0014914217668448252,0.000185232436805136,0.0005631662820410079,-0.08511332657223573,0.00010595053428613907,0.03187930502752632,-0.07671772168671992,0.6398768362360955,0.15141441321195045,2.7694382375822774e-05,0.019794391573751506,0.014216565256063917,0.04377313135182965,-0.16835534916338185,7.200529761556723e-05,0.012008068868789832,0.0023893038556002037,0.009468514329844295,-0.04154777266312222,0.00011538202022088402,0.010995904103563473,0.03270128143903014,0.028655223504262327,0.014678264528760311,0.0006522837097719404,0.0050581913875220735,0.0011631185815072003,0.004523428896622735,-0.005980865794153827,0.00010822864841221529,0.011192799747630062,-0.09081555235643843,0.3069916209245414,0.1536585965389209,0.0018986848343222188,0.024103579929891074,-0.002628952917063247,0.025331761775648717,-0.0017928674778263161,2.6686990948175518e-05,0.007774981545326004,0.003141868732023039,0.009888557132168454,-0.19424894203754423,0.0010387866959973755,0.012056815315063397,-0.011977475861990503,0.08656786896302165,-0.001325676836617757,9.213703256014343e-05,0.0033928285421859746,-0.011372209127705805,0.016511921003985415,-0.10180125821821955,0.00016255211387582766,0.0004683677223249927,-0.01462664629615761,0.019240112125231062,0.015393872408823188,0.00043635612309656836,0.003903348463003373,-0.009067787925320505,0.03987570080290954,-0.03299529377784243,0.0017625577961078393,0.0022119725008160587,-0.006661724208225139,0.0281976000921399,0.00010332043560016631,7.579924374220036e-05,0.007569825035524275,0.07034755526537194,0.10549509158285238,0.001491055191436422,0.001657654235509754,0.0251636960148059,0.006498925537691635,0.02524237493956527,-0.026677448698724314,0.00010200639142280911,0.011737766372527263,-0.021340010779755614,0.06009572182112813,0.02263323447963132,0.00014394992887401838,0.003907234106149388,-0.014637822221074856,0.05800965555247794,-0.07978088062118492,6.158714991092259e-05,0.02069253583657641,0.10542757755720035,0.3858431787612321,0.18961416703931636,0.002589771569093281,0.0004822518979182054,0.0015387665234542843,0.007951715482681705,-0.008992664309387608,9.626146520604619e-05,0.0124397015811555,-0.014528337869194026,0.07869312958049154,0.015513179560796321,0.00013388745868210387,0.0043382090894381,0.03203766287082923,0.19131379900406018,0.010069148562366992,7.920693899109808e-05,0.010825535339004136,-0.023784431709653532,0.11693691919599349,-0.0018239963820252134,5.111972704448443e-05,0.023356443954343595,-0.027495926838651853,0.052124131500394626,0.005008225499439579,0.00025719287066663775,0.00865050922796759,0.0055394870092565175,0.020983487057023645,0.005172901884549512,6.564569683608864e-05,0.004636720632199883,0.022042695453929364,0.2407305648910183,0.020806159747355852,2.3624615608805004e-05,0.0045686867125928916,0.008848127365317829,0.03187374341949274,-0.056209499719658676,9.703474250970457e-05,0.005341561866026341,0.0025299537131257986,0.009326892748674773,-0.01176459704737765,0.00042756639466435013,0.001476861703780648,-0.009778164961203638,0.04565497646492469,-0.061636115811985775,0.00012267075336708756,0.0053033499158591235,-0.000491227614419861 +2020-01-28,0.009077950358916585,0.06190619515068072,-0.10287455688334447,0.00015507445910725886,0.0007645468474739654,0.008160755884836736,0.029853512822678778,-0.012428533538318987,6.559118424449695e-05,5.940925342179685e-05,-0.029728682740021304,0.09875814779880533,0.011380453456158398,0.00013925151686221013,0.01264748264775674,0.00991824144376044,0.011081572293923815,-0.07537662954075508,0.00030206551585382533,0.007175246688476535,0.005275130150131952,0.011215900687934514,0.0001288149095605904,0.00024609160364891686,0.032047638176092554,0.03606073071045485,0.10313089306075747,0.059972795837722734,7.634708922901317e-05,0.00031667143970541046,-0.023740755689812564,0.09781448277530094,0.008755701443401449,7.12165992361161e-05,0.02773409194909791,-0.026077651386743717,0.19421896259171292,0.03072520570029044,4.6044255983258796e-05,0.010515883876245267,-0.010818355098553181,0.007170349110704654,-0.010829561857902537,0.0011634982059570997,0.006071174300361764,0.0077965859664978375,0.017595117480855925,-0.014822658300037884,0.00015494379446446085,0.008278719406149451,0.014303498647764706,0.010057516081549605,-0.019050092389900977,0.0006951457979159459,0.0040048754615441585,0.011876181093858997,0.12931077432812815,0.014091657386738073,2.736937552466453e-05,0.009102718685862748,0.01600269222915625,0.05346604522122855,0.0017829483519914105,8.891315668093264e-05,0.007732272199375362,-0.02031030536599012,0.11569625272744496,-0.09828471731444686,4.941502034967874e-05,0.014503993463916036,0.004121516668038323,0.002997250150186861,-0.014455184952133897,0.0026819893099374885,0.011995491490023378,-0.03387885125687359,0.1965238696000213,0.030399573608752076,0.0001418618035715515,0.048779713387334236,-0.022661129737618704,0.13278525038011316,0.0008290461809608732,0.0002642651853033588,0.021596705004375563,0.033195333808337765,0.27665840398267255,0.002465077649831802,3.379824338283462e-05,0.0318541164800838,-0.012021009749925229,0.06449351651926483,-0.003253501639194718,0.00030719327167114807,0.003789180498276714,0.005758715585820685,0.06950905416851179,0.0006707159651518128,3.438068158835127e-05,0.015978536674491436,0.022865804073790567,0.25803730430139543,0.06765942131954035,2.9606406023904606e-05,0.0006078559449636245,-0.026407920333759424,0.06317631384117388,0.021889539173821845,0.00013464885804510788,0.015192703044852197,-0.013583796805014235,0.10394178816791544,0.010411188065858338,3.0187237293153735e-05,0.017667848983448364,-0.004623824042657099,0.010556546640056784,0.00016568715020327652,9.71084026393521e-05,0.001288888197268162,0.021219299137306323,0.08819622810619657,0.11859441443707623,0.00011000935512506406,0.0035612267091041164,-0.0530293046331048,0.05240195495726423,-0.03231352523966699,0.0005784209363988043,0.007183829763414562,-0.0020190386995171637,0.0073774671462400725,-0.019090677210316796,0.00011519227836823304,0.0032882645005785707,-0.10778349280821363,0.3134802606023253,0.12363264629029408,0.0022067911250079272,0.010171952607426845,-0.022187386675062166,0.2440373809609625,-0.019782218902684324,2.3379326282839456e-05,0.030564457480860237,-0.015303372829341825,0.047755660934749006,0.015959524991359438,0.0010476918574503207,0.004280125285408354,0.01033493156604177,0.07402165131116384,0.006102916321814688,9.297677521978032e-05,0.00404708345005395,-0.011347940895142702,0.0177292407579127,-0.10029369029730557,0.00015106794232040225,0.005493350406073279,-0.026993044134411868,0.03769089698714472,0.03806947878987409,0.00041107333409327293,0.009009727654184799,0.03483083364278263,0.1564606375581493,0.055246875753726936,0.001725476761154939,0.003915460842565166,-0.040798423416423486,0.16724933257655955,0.05223597017594019,7.826531867710473e-05,0.01634653438789911,-0.005373401578206605,0.007121299015026884,-0.0005083695843450555,0.0018757168019563173,0.024669329932765518,0.01468568330076692,0.05275969120535494,-0.04270955435099035,0.00011028284211017543,0.010514408933575567,-0.004592843084324188,0.011476941171636777,-0.0016122882066932956,0.00016222426996362956,0.0018691191658153062,-0.01934449934511344,0.06997066291363481,-0.015033363851175865,6.747694794455437e-05,0.008824149791013845,-0.002837312012543433,0.010233643026274055,-0.0001447636905114993,0.0026278156275173267,0.014339710574797443,-0.03244833948123803,0.19771573722814031,0.031798596519112064,8.163789710328203e-05,0.024942761889724826,-0.022446145480433805,0.13515264270039468,-0.008717025920537134,0.0001204420158448493,0.015123728881862553,-0.005943939496148002,0.034534341299303634,-0.0077344938163771935,8.140890289192888e-05,0.004894671933645968,0.04698146750030895,0.20607617293000055,0.07046995486961488,5.7298887861707026e-05,0.012214269158997733,0.0066047949167158376,0.012495111634604362,0.0020937195899898764,0.0002577202776308285,0.027108265644188206,-0.0333136272400335,0.12669391017333284,0.0452876876450135,6.53853658022111e-05,0.01446106039246008,-0.03986016149605645,0.446240779136042,0.13496003767831963,2.3046293276034408e-05,0.0025880723134470885,0.005021236667464563,0.01507981314605036,-0.003912771109401619,0.0001163921514320081,0.007952153630176175,-0.0034942383338087595,0.015274751983976102,-0.04912874897601675,0.00036058389650426507,0.0017462670672928854,0.047150214708775895,0.2282574089581851,0.08021658098746934,0.0001183124880973587,0.010480271758297154,-0.006046235557544709 +2020-01-29,0.03011418233114217,0.2286992337479198,0.0338388818241784,0.00013924927733397987,0.0038313382010305872,-0.03686126046233331,0.12555159659125037,0.0346201860789475,7.044634551092874e-05,0.015820196148784993,-0.019935550222856264,0.06621894031566487,-0.0110934591665537,0.00013926539158939935,0.0028695228715266093,-0.0182545206690597,0.02077073717635856,0.0023036266427242085,0.00029661040341315753,0.00800727817547714,0.0095583077391496,0.022061580745671654,-0.03969252483297485,0.00022669511106346036,0.011244421323000716,0.003669354964221359,0.010823862722007936,-0.02804248751973899,7.402087092308147e-05,0.0010616603642114259,-0.04149613518180967,0.13219117911142284,0.03882325854279923,9.210750717594677e-05,0.017336189855005537,0.029232214791535135,0.2846649145602825,0.00984895894509027,3.521489458669842e-05,0.004414191676118917,0.009643957588583984,0.008502939099496514,0.02868429799006811,0.0008746433729246894,0.002993814860485091,0.012228889980440482,0.027681796832613913,0.004170839106019564,0.00015447373496517048,0.011956553670324855,-0.011179604513079854,0.008979093839474064,0.016432333261437386,0.0006085808581115334,0.007543727010743526,-0.02794308809930041,0.3472468201253774,0.12118929665797629,2.3980537436469623e-05,0.0002626502337278009,0.03781179383023678,0.09863782685225803,0.02120742523615876,0.00011387668694943221,0.0024691065514748315,-0.006000409208897313,0.032452614758162024,-0.007559360608041607,5.20466753658051e-05,0.002799573865506294,0.022052205529544153,0.016145215538608648,0.025191627786726217,0.0026639812074370044,0.009137580569267507,0.0036428070667445574,0.019131649660597903,-0.015111707594485671,0.00015668804385409504,0.011851601303434206,0.04274063957507866,0.24323200944875872,0.01658599407589126,0.0002720999869182536,0.019178122225762564,0.02210542220099782,0.107725077676191,-0.026897752698505015,5.780201178245979e-05,0.008935218488948479,0.00630719439382326,0.033662549512704504,0.004876790958924493,0.00030879909496170474,0.005616798631475199,0.05166019909115969,0.7327031627984807,0.06140704907515163,2.9258916571201505e-05,0.007820310342640057,0.01349258448995787,0.13801039566428913,0.027947536372786505,3.266367564945722e-05,0.004759887814268846,0.008309795404044982,0.02632805077148671,-0.0180331571775672,0.00010167036440467184,0.020815731676716527,-0.0004835283843523406,0.003446999448399415,-0.0012651820209909394,3.2402098323715285e-05,0.018918420668714298,5.7913025496243964e-05,0.00015533559402065159,0.0014443541517586338,8.265757383472231e-05,0.007403694216978447,-0.015562574682500675,0.06326158579228483,0.0389850913962312,0.00011248379750179354,0.00524560920714767,0.00630125795174176,0.006887222229652106,-0.08217601406353878,0.000522948261202068,0.011614833391428917,-0.04214031247302422,0.14039356186391272,0.08092940510221251,0.00012633874783292965,0.00035188515632876777,0.01599139697408779,0.05810108409772038,0.007459845741629526,0.001766531326132516,0.04532252655144092,0.03730694573883018,0.3944155880620811,0.024489923436248937,2.432303809553529e-05,0.008663002916703012,0.012156194434652023,0.038106824957126986,-0.007434857924762401,0.0010429563738834672,0.018938354630815907,-0.01906746844841525,0.1327669657752007,0.01009519384219199,9.563759570096704e-05,0.0023985726808707216,0.0018815026095127104,0.0028296777284891887,-0.008811444350083431,0.00015693262335131285,0.006845138921848623,0.038882867130961535,0.0602103195238905,0.04260498286317351,0.0003706732647641539,0.0004644071293001574,0.015787575159458767,0.05554641949481682,0.0006395523033982001,0.002202975679186227,0.009010846956867175,0.01748641770883291,0.07239432898722654,-0.009743681859114851,7.749731781035801e-05,0.005356483223070356,0.030952638055208207,0.046742698458899376,-0.06223815074469589,0.0016461184420338726,0.0006717500744098984,0.054570816258136964,0.17269306860407432,0.00605123962463167,0.00012519920749338276,0.003680501204664997,-0.02530756944799246,0.059944012199905125,0.04052907894526486,0.00017114531118744543,0.014586289062492834,-0.03863575129303246,0.14712397215939008,0.005495024202511868,6.409436437684666e-05,0.011257412017869693,-0.004963135302842726,0.017061192294948596,-0.01815413390059007,0.0027571779393415837,0.009300063452246632,0.01006191066950494,0.05574157672207907,-0.01628883326055873,8.979285469694792e-05,0.01683372065515761,-0.006041060893332544,0.034261592834911994,-0.06127757023992687,0.00012786934724706313,0.004710012295434395,-0.006204955884703133,0.03551735797688777,-0.03261840413926827,8.263171078263353e-05,0.008682418603763495,-0.03253585767848874,0.14545210096741767,-0.004080972079086799,5.621984654134159e-05,0.008830160031529958,0.029083225948237496,0.056130346286769967,-0.05344945275970448,0.0002526237920463006,0.022068668323355706,0.011892758019521766,0.04305535560209721,-0.026582593197362604,6.868624550404148e-05,0.00782399998318141,0.04882969626311919,0.5337943495092999,0.09781063782440376,2.3601594043534706e-05,0.002224799616171864,0.0015200761938300362,0.005179864292764621,-0.0005746709312615148,0.00010257840460580568,0.0057528526651957545,0.032486820242953726,0.13169005110845822,0.027665464257270143,0.0003888500956226507,0.01117958923240316,0.05352785856841724,0.24050155527214132,0.11146947963341822,0.00012747756996398494,0.015475227729153525,0.007690781723060929 +2020-01-30,0.025773932208381416,0.17834495276890477,0.0437682269929988,0.00015282923620933562,0.003887278297527664,0.035561912670811525,0.111311698300566,-0.01614296416279326,7.665753126534267e-05,0.002955141422965669,-0.04182386905434085,0.15082959100766136,-0.03648831266870993,0.0001282728834210858,0.01566551721264072,-0.0025257014587479008,0.002741776995796303,-0.0005777696250336609,0.0003108978674674933,0.0044448532177373875,-0.024594784878259814,0.052064677979857706,0.012973949784332375,0.00024717105653317877,0.015566856455658116,0.018119425440501092,0.04633789762953223,0.008246647475887896,8.537974164350164e-05,0.0068122580908008485,0.004543449320586964,0.016526286243832684,-0.03910008550154337,8.066781110015841e-05,0.0028814962104255033,0.010206485574787868,0.09845551930530014,-0.015146523695918573,3.554960449494944e-05,0.011279617352447166,0.004746580362018124,0.003387757217385471,0.013726758001690365,0.0010804715739287868,0.0015750020216562812,0.025553073608615227,0.05179645987437624,0.014405757652720943,0.0001725062976105152,0.00402774596162398,0.0006646320863671273,0.00045497685671750917,-0.00024576196248732535,0.0007140298307196823,0.004954819237719512,0.008281521132354914,0.09257307082357172,-0.0072189650153223085,2.6659268794654242e-05,0.002667996940567368,-0.04787078463465442,0.1327447367832921,0.07734115823212881,0.00010712831476908694,0.020009743905629863,-0.01091623362092612,0.06779733807172314,-0.0015609494272652003,4.532334946234167e-05,0.00383321439794699,-0.006200733369591752,0.005775376536886116,-0.02345747526375783,0.0020940436275424744,0.007003831688465175,0.0006082722299327968,0.0040527737634464475,-0.0023692307373430147,0.00012350875287010188,0.011944249135311181,-0.03249347935187934,0.19065771474672283,0.028287636691967568,0.00026390648733070585,0.023544023730667954,0.021163764089839193,0.12167172567768336,-0.013090579145358487,4.899640322858474e-05,0.01052941118418907,-0.0025550667629550567,0.014035465794626648,0.00864202633557331,0.00030002830598398986,0.0012576663422326612,-0.024006937274911128,0.24123249433383898,-0.14618207981665532,4.1298205554660685e-05,0.008764714089464139,0.023099437434387096,0.26146605310182935,0.006897611085488171,2.951669998956098e-05,0.0003683631804963453,-0.01881180589914995,0.05175847404364575,0.009018356655406776,0.00011707705270296201,0.013193739318887137,0.03458913382234425,0.2366787923981497,0.007325497643633124,3.375768978750367e-05,0.018105422569717484,0.008742622136709925,0.025315151162606384,0.019246380272677572,7.656645952275347e-05,0.0034113481132517645,-0.01136075262832775,0.04337637226636283,-0.0209012137634727,0.00011975743115651952,0.005583674152971734,-0.03407195184658832,0.0381402669088571,0.018584861248479394,0.0005106094483061199,0.005414131407132469,0.005808705738454683,0.023290643981624917,-0.009574512757135632,0.00010497451781642106,0.003717648093396935,0.009035073833500478,0.03059964255850584,0.0015924901412786054,0.0018951104534236161,0.018995198104469077,-0.049917433229853946,0.4930629725226495,0.03437849445834722,2.603346953906212e-05,0.00023449785051193883,0.016523130000594223,0.045389748919996024,-0.051571034186650266,0.0011901612584093609,0.012395496205047303,-0.016840837856655588,0.11308858584478966,0.00582969239515755,9.916777390868931e-05,0.01549065515044748,-0.01318551062244475,0.018924414809106598,-0.005024501967183995,0.00016444469979926503,0.009375702058838052,0.007687021488952954,0.012027699684384273,0.0014649395122890182,0.0003668423214929209,0.013630848788336727,0.05558534688343813,0.23771517626517133,0.10874487174539194,0.0018123987437014598,0.006621838316327629,-0.018560802770507586,0.06674720533534695,-0.024162528877361544,8.921831967266625e-05,0.00044879915297108604,-0.007981760583015479,0.01275122765182728,-0.042055342699621336,0.0015560512226368776,0.03679526488815793,-0.04529524041983025,0.16169415835713974,0.04254172272943117,0.00011098755278773727,0.01800234004413516,-0.023679401088628645,0.056132258975492476,0.03176894454892025,0.00017100884338570665,0.006405683872341493,-0.026608380227202428,0.11990348043725639,-0.012384763342972673,5.416273338062649e-05,0.0011527536927585205,0.017229874743510808,0.06042644075901263,-0.03796654210443862,0.0027025464308193174,0.023510326908784292,0.018758426559809603,0.08515999440643494,0.03284962846610342,0.0001095724453012958,0.010980379580021234,-0.003499444968363755,0.02081006420671757,-0.0010658625328337922,0.00012195132758664595,0.0033719011527191954,-0.04388805889696718,0.2722205479191552,0.1152000125595693,7.625602587320113e-05,0.021396178274101115,0.01543646012898605,0.07248245685934195,-0.0005939390172924235,5.352568139571625e-05,0.00010352192300941421,0.02264946601461375,0.03166767845510059,-0.043089713533190466,0.00034871540630621056,0.02413514244807078,0.0049834045883382794,0.01975851863199165,-0.018751441348332263,6.271712514821346e-05,0.00466867942237446,-0.04769448026395016,0.4713760129392609,0.10959644747630885,2.6105494690066154e-05,0.013540854769765395,0.0006996622281234121,0.0023233746887409198,0.0021758081320225153,0.00010526358080673296,0.002485052268256103,-0.018746528754033546,0.07553261912467553,0.031065660755322015,0.00039121391070563646,0.005991405591078152,0.007274088492479007,0.03497013522053017,-0.026521176623697566,0.00011913875694697958,0.0030985854301947796,-0.003157258425872949 +2020-01-31,-0.0027718406354527167,0.019063334066826098,-0.0015013671711969839,0.00015376446540387237,0.0055953126004513265,-0.027502410591216508,0.0975493662839029,0.022781415671411006,6.764829196301563e-05,0.027203949830683433,-0.0046615084986570965,0.01274179150204132,-0.012803232249809844,0.00016923617090690754,0.025168747871794798,0.0028741625323146255,0.002704610991378507,-8.365525068114252e-05,0.00035865292019649506,0.0023756356362564816,0.025126600008431085,0.05055438685601368,-0.01272614523074078,0.0002600594568139929,0.0015438694052636276,-0.011166016229375447,0.024689845010506407,0.019852059249325895,9.874761858230414e-05,0.0022310964639598654,0.004422568651058655,0.018884204440915726,-0.001558987317687722,6.871724584841747e-05,0.02039830864888723,0.004930554575092915,0.04162687565643927,-0.05831687712787844,4.0618190210316014e-05,0.015950139476076406,0.01725020342940057,0.015969978345739065,0.02077602162154412,0.0008329802039611381,0.004288733265921607,-0.022860489999718518,0.0479571542372184,0.020105026003324106,0.00016668403960283558,0.018834578362022333,-0.018217146122061136,0.014917884234656861,0.05564710848839827,0.0005968943492687678,0.011165295519835161,-0.00015751104124306427,0.0021863780949642597,6.462046963677485e-05,2.146883727912761e-05,0.006076993138145872,-0.04674295398547901,0.11233634231744503,0.027811347465774065,0.00012360809506466457,0.018050598108409862,0.00452335675023631,0.02651828979276955,0.026128877978512655,4.801502366897104e-05,0.005535611631181317,0.010277561983090561,0.008679112786955268,-0.04270998814324745,0.0023096051808342137,0.010877899416899562,0.025273434469865297,0.18624441363159286,0.002978571356311542,0.00011166912573452826,0.017786347829414646,0.015215779390867924,0.08266187631022497,-0.006329809889999789,0.00028503433368576455,0.012314257329800179,-0.05614491843989823,0.33929296824723293,0.04548155981585781,4.6611872750741656e-05,0.011622698684258194,-0.024071543251591773,0.1133648377093938,-0.05450870443728444,0.000349955135499046,0.009415284559246086,0.02026132358481991,0.30763306697285436,-0.024105024916185328,2.7331598262884602e-05,0.022793213404685625,-0.007386887889402925,0.07205904576979531,-0.04767417092861828,3.4249537412518604e-05,9.453234065562636e-05,0.009340964767024321,0.029844958882853243,-0.056954571465487,0.00010081925986853553,0.004124456080327422,-0.023166936850254744,0.20418576096814484,0.017559001102984,2.620810004601297e-05,0.008982036254663494,-0.014443861273834376,0.03730676284856149,0.02233587513029204,8.583672207144968e-05,0.009839364943382299,0.0014401199156675397,0.005827708768079866,-0.05781851148195209,0.00011299244638835672,0.011331530946802337,-0.020178246013230677,0.017494721125284652,-0.0001480939649917543,0.00065925274993064,0.00789971949632363,-0.02947039978603801,0.10644405972285075,0.02055241951368993,0.00011653345066058944,0.010657392414520335,0.020337433386803484,0.07920002906356088,-0.020086857471204193,0.0016481243550679557,0.0177556121719932,0.016431405870348043,0.18872815673098953,-0.06798310505435884,2.2388253733572882e-05,0.0023034981265619087,0.03156457378474867,0.08830282434416141,0.007925401303628036,0.0011686826714279667,0.03054843675767341,-0.01725829882646787,0.1220214008791298,-0.014310438808609457,9.418627497748208e-05,0.0011321856707273814,0.004028408280370761,0.006298109292552003,-0.07785315026668635,0.00015096235893511382,0.009983727027344062,0.020543633936306094,0.0277159002734633,-0.0074963429631555055,0.00042545358905641406,0.006750681610696082,0.04003555161392744,0.16130790653906552,-0.013249067542792816,0.0019237139877913384,0.012877078232163363,0.006008979276082631,0.02157308454409176,0.0021706703031275534,8.936733994167179e-05,0.008026877829414063,-0.0020074157768168724,0.0025191797321806745,-0.0026932829078437975,0.0019808672477619037,0.023185081161790994,-0.0011791700564752273,0.00322105262015808,-0.027246979974457467,0.00014504229372458658,0.008594749519503933,-0.0022843333498864067,0.005952812797474359,0.0005173822171604892,0.0001555598913534558,0.01835908405604156,0.014463991233609762,0.06030018134367504,0.0027028944307968678,5.854414350884609e-05,0.001035010357170622,-0.031014804912863694,0.090143949340566,0.012975714664067646,0.003260997985017003,0.011220466910337344,-0.05521670260535894,0.2878905831597751,0.04285226073865292,9.540773361930184e-05,0.015675358246666524,-0.029239024256887083,0.19410432745448147,0.03852742924686673,0.00010924169803095473,0.010890921121086677,-0.0502304927593622,0.32057961141119307,0.07497837584789835,7.41105846170121e-05,0.00823092240546864,-0.01633684840589165,0.06952728034894667,-0.03078069936243743,5.905551107454055e-05,0.010533456457748211,-0.054164906068202304,0.09896679223204333,0.07717973694588127,0.0002668442779697868,0.02222358638268286,0.004851926780877957,0.01962441319328972,-0.006560163591455358,6.147972764554081e-05,0.0009166134896004892,-0.01915683103410344,0.20591453852099167,0.015494080645077533,2.4003133649037533e-05,0.007031384333109693,0.02453735787015937,0.08304075386039617,0.033198492532672416,0.00010328695600742218,0.0062118552034127585,-0.008702360808809673,0.036634201234445586,0.008732642516617536,0.00037443663171134845,0.009478351562764626,0.018170961426861986,0.0908565552153882,-0.0656459692935187,0.00011454956274242626,0.009331633737343352,-0.005672764986242521 +2020-02-03,-0.028532297710026043,0.17517811488182827,0.046336478597632194,0.00017224375400844228,0.001179974039683476,0.0021794189995182054,0.007978758086293097,-0.01065772014212898,6.554143738318718e-05,0.011611708708193263,0.018071498425045643,0.06187044927789871,-0.026167685905714576,0.00013511641042725345,0.010559210224663286,0.015152433559565704,0.014129769173268726,-0.009806381642794154,0.00036192216194292796,0.002384524516684082,0.030987411319437184,0.07103341894480025,-0.04883223934812618,0.00022825502686449301,0.022940060545184653,0.0005017403917812182,0.0011560171888028003,-0.012372813389497337,9.476795580500793e-05,0.008031137874659457,-0.03144256913718751,0.10949185584315317,0.018924768360930887,8.426089402903092e-05,0.01646069703220628,0.03282857866427107,0.2745808395981395,0.03071352824901363,4.09996798874937e-05,0.01719997004665292,0.00601593755866366,0.004437544980991626,0.013266490167394925,0.001045454986140113,0.011010984502752305,0.006650093359025433,0.01684921002144743,0.0010518579490428049,0.0001380098503616578,0.004393133274330205,-0.019822058678835394,0.01410792373137937,0.05036159124240759,0.0006867679391770195,0.014179498779496029,-0.029540524981312963,0.4622286008861844,0.09975497123098824,1.904514064307447e-05,0.00026614150298167694,-0.0004910159245798474,0.0014064616550724747,-0.00021818321128114687,0.000103709542608284,0.01614593934353797,-0.00424221802900577,0.021616234309447813,-0.042250550972833256,5.524268317855305e-05,0.005833743315963241,0.005089398894441108,0.004488091121515675,-0.17027219091098322,0.0022117080461765116,0.0014323466587391294,-0.018425015641821495,0.12384242216351113,-0.10973003403085649,0.00012243075718936278,0.0010790841505430007,-0.024713153622099537,0.1706362482351874,0.03493167747766213,0.0002242668623523886,0.011587075454553772,-0.036048041713330065,0.20533203634530192,0.02510854193448826,4.9452234354919545e-05,0.0223855389772461,-0.013727006363665221,0.08406413967247772,-0.00940081408806761,0.0002691236533994108,0.007946342263700171,0.03690179230346536,0.5303315112824999,0.029407724361733407,2.887554956760523e-05,0.009091059956557573,-0.0028574843974985774,0.03154355065452938,-0.001033433277699494,3.026599801976818e-05,0.0014188001322905219,-0.018816050451214556,0.051123408761717726,-0.004331705534449868,0.00011855815195620515,0.007404161985293243,0.01589712349765644,0.12724454939575527,-0.06811867504380867,2.8858365930380033e-05,0.034974660232638455,0.009651376029289858,0.02619561545246281,-0.015599575320462722,8.16841910586475e-05,0.0008803591817048591,-0.011284511570277548,0.03955155849564503,0.020357568863395292,0.00013045711215528818,0.0011274582735957767,0.02730173753408683,0.028939602837106504,-0.07979913178568325,0.0005392290512420761,0.006419035090704689,0.017159972745916956,0.07102241929829162,0.014342349069527846,0.00010169676564000784,0.006117968571745319,-0.03416843695335286,0.11864932727414045,0.002631311660321207,0.0018483278477036474,0.0064237723919422715,0.020272674564161198,0.19346147163337815,0.005296252354436472,2.694627619735918e-05,0.004394442052018448,0.02845508205117982,0.09195187853569262,0.004805399470246686,0.0010117436933390722,0.008037366754483828,-0.02417889558232025,0.20236272391022853,0.01186796450466654,7.956674399595591e-05,0.0016246228271706298,-0.003937689771267397,0.006393147979981863,-0.037148497004144534,0.0001453691083992401,0.0020041658793749093,0.02235633987621713,0.02780447092017817,-0.04164567874804364,0.00046151942169668996,0.005898729964652953,-0.03334512530369277,0.13824516914663995,0.05740073345365185,0.001869531257433002,0.014939456311677063,-0.006724161404917401,0.025950149895702837,-0.05863103702490351,8.313590507600718e-05,0.032263300408901956,-0.003508863683991476,0.005198944561629331,0.0015202514704855121,0.0016777548464429754,0.0596606109783352,0.0016003017537583044,0.005547123583863811,-0.06737594020425222,0.00011430101213556903,0.008667087164887446,0.01978392659225665,0.04423638289180888,-0.015949940617816606,0.00018129810284341332,0.0035194166030870404,0.009112134217714243,0.034307666982719025,0.010485477899578502,6.482504804141984e-05,0.011018937850072148,-0.04265126726692627,0.15668496763869186,0.02101824674306714,0.002580017580457998,0.0019321221718995019,-0.007754877688337298,0.039971241623147614,-0.06431620144570273,9.650901524337108e-05,0.001605778839127814,0.003989659131220327,0.019112758481077192,-0.005859493471932657,0.0001513816395290909,0.012796590124719854,-0.010289726934239156,0.061369716070173476,-0.019775131371752915,7.93046101363805e-05,0.015455681447440561,0.013190315249312853,0.061467552622740604,-0.010702033928639432,5.393325707984737e-05,0.010461155882454061,-0.06327329311316156,0.12166540163823665,0.08946633762874939,0.0002535611648372404,0.03965226738509009,0.01110219700556501,0.049493076317117655,-0.011506350353572146,5.57800445137366e-05,0.0164533385628779,-0.016297240700018617,0.1746013058619994,0.008013946506268091,2.4082295318822684e-05,0.004687721018173595,-0.010481425116006506,0.033968416824158736,0.02199354260112249,0.00010785840516985009,0.005323090334317992,-0.005234332203772421,0.020928801234760448,-0.004215351861438399,0.00039422566981800407,0.0024220096236884014,0.0010547564714035176,0.0057423386949207456,-0.011297452539714854,0.00010520471159694995,0.001821426341771299,-0.0030138759059023987 +2020-02-04,-0.007101121008504541,0.043306280132720955,0.0013005914823624827,0.0001734053995221869,0.013228888332325064,-0.024675704332400225,0.07729370048411793,0.01484349828130212,7.660127255390941e-05,0.014837851827954154,-0.023726965582497032,0.07821207134987848,-0.06623851883766493,0.00014033487656952903,0.006971072601326962,-0.0043559997368091555,0.004920261439792381,-0.04818063192732324,0.00029879100660144706,0.00010510062492326581,-0.04539350023323026,0.11700272257846799,0.04618378878678366,0.0002029997376265959,0.017777869675667232,-0.006259474563224244,0.015562120925862332,0.016415992233638075,8.782452974532281e-05,0.0005298205227510899,0.013325131083790997,0.048701576852756015,0.0006582059779930732,8.028202570991097e-05,0.016828822573702114,-0.0151411401774451,0.12525007455143136,0.002962656000831238,4.145521784115294e-05,0.002801916516986482,-0.007237828553645766,0.006392142645034327,-0.00030570945743217963,0.0008731857109123678,0.007733031469431133,0.014661348348770031,0.033507280323014005,0.006401075968721575,0.00015300182812225233,0.0018765393336146355,0.005989625991563441,0.0038990308855709117,-0.022245137855020695,0.0007508745549875276,0.008645761899781843,0.0127712453033688,0.18290439885542822,0.01342137163838947,2.0808074097190343e-05,0.0036023743557687133,0.0028899457706105486,0.00786544247495652,-0.025212099052923608,0.00010914844983765136,0.01482802968830337,-0.017090840281495538,0.09459566711330471,0.027229940110826082,5.08573807708381e-05,0.0015446771810298954,-0.007861987851526739,0.006070486545411766,-0.06500372566093852,0.0025259912399106083,0.008530627228109672,-0.05734800276055425,0.4149434060705569,0.07835336117000095,0.00011373170181038654,0.0004042888565719434,0.0021277356811393814,0.011785131731624703,-0.07298599371560073,0.0002795705798060865,0.003097872441067453,-0.053026503564647824,0.2966385154899052,0.018284473609285555,5.0353122671490544e-05,0.0029430019978202975,0.006790473071551855,0.04225080128475285,0.008492273327251871,0.00026488165973258455,0.022477563171413462,0.07561824602893515,1.049682826555695,0.07733885504505023,2.9895012474311414e-05,0.014895799517714041,0.005007689255966682,0.06278392493325587,-0.05447634804693037,2.6648368089794108e-05,0.009726396786772569,-0.01716986251900281,0.05041996806595172,-0.15920033736747183,0.00010969504414789363,0.01803066645907972,0.0028821384717201922,0.019131005218319477,6.992387249301821e-06,3.479921349636602e-05,0.009030384024265817,0.011125614676369158,0.03195979496699034,-0.038537981591197944,7.717869170375338e-05,0.0004828094775535291,0.01299782441327954,0.06143431369935015,0.024872431413678727,9.67404827859269e-05,0.0017416010238829,-0.0847580949075581,0.07758110845939468,0.16980837408308144,0.0006244544539456091,0.023198071996642724,-0.026388631300838752,0.08656278918142998,-0.06768477139435822,0.00012831328767649836,0.00417015666557132,-0.057808322470353814,0.1931798450632664,0.035380518039480086,0.0019206477778144354,0.002414746067245692,0.007947158189781043,0.08724504667463291,-0.005400124696861598,2.342358008199428e-05,0.01624428282927943,0.0556500576233534,0.19673486763579665,0.03923875630131934,0.0009248164598248678,0.0065895237942258204,-0.01821300733060593,0.11994584716838237,0.011714587369769785,0.00010111651413851186,0.009043801284267298,-0.022374723037892747,0.03171844850418587,0.0004516330833146264,0.0001664911367852947,0.0008909109980341891,-0.03033193513140996,0.03747382538585767,0.03080130454339478,0.00046459657463906415,0.009223236548328519,-0.008680660030725243,0.033367584761209775,0.006125247788096927,0.0020164075582353434,0.002921275124417489,0.00751733762646256,0.029877188724971526,-0.0033579122334505304,8.072623468925219e-05,0.001133714364440137,0.014308379682847212,0.017820740179692072,0.00034700858756390193,0.0019959143901771715,0.02638343857590538,-0.014885089235181741,0.04412095860185585,-0.14973090672306566,0.00013366648862206225,0.008072033137805591,-0.0009271336470401136,0.0025123645940682456,-0.011550604865526528,0.00014959602515049472,0.004472981481243275,0.00831298801822083,0.03420907275697781,0.018676965336043634,5.9310253033696575e-05,0.007777844328264758,0.015193992201392129,0.046662117876841554,-0.03528886406592486,0.0030862102595732937,0.012240703633469843,0.0066990679631050345,0.03465363282797943,0.007261704576300479,9.616259732328429e-05,0.014957166395393635,0.008799743032517479,0.053815373859260884,-0.0020292881384290713,0.00011858354053912952,0.013578616557490939,-0.021832385722273875,0.13630245400570815,0.009281143473532311,7.576109086479471e-05,0.02333004853693355,0.044639078353674116,0.22098013451628568,0.05966061152298103,5.077025919560462e-05,0.014217742138257302,-0.01054265081771029,0.021346881989744933,-0.05326722095625972,0.0002407935044453111,0.019796869821691942,0.027094232142649163,0.10721606534752139,0.07349615937564984,6.28393028271306e-05,0.021693808626100545,0.005089071896430089,0.05342975540879248,-0.005236560850154185,2.4574612917954406e-05,0.01780889513601994,-0.008079744208881254,0.027927662419187576,0.016680970998590023,0.00010112813318446907,0.0019292874975415733,0.009304716184344438,0.03758936168726882,-0.02258801273029067,0.00039018102982848606,0.007643696882236238,0.06269786384817812,0.24122409550324417,0.10748241907659456,0.00014886885695170144,0.003973794886398786,-0.0032735203418158675 +2020-02-05,0.005323869707349092,0.037860519689337464,-0.03056792994555107,0.00014870563685416164,0.004580151053527079,-0.01570505440880646,0.05544131579706664,0.005243200345296232,6.796987058020523e-05,0.024922223399772313,-0.0032594861916486156,0.011312607775883454,-0.006576974706711646,0.00013328571936142554,0.005375956564327348,-0.0062219562198513574,0.006235707802085886,-0.019981442738728664,0.0003367511215036788,0.012758720480487422,0.0431596695533366,0.08439105828663605,-0.008030825758616645,0.00026759589695579916,0.006621219502786865,-0.026900133519575396,0.09206581587126633,0.07082803917661981,6.379736907291261e-05,0.0042320797940921424,0.03357878148037241,0.1267621439718393,-0.17578566170088555,7.772580192202643e-05,0.009122091035221654,0.030320638630334042,0.21891122196925272,0.029523473049761766,4.749730119924746e-05,0.0014304288181821517,-0.009323398205416144,0.008286130485649568,-0.0016477173942943903,0.0008676953140065113,0.01364175013602642,-0.025425223937518587,0.058169496213321945,0.02542234761507763,0.00015283800866278905,0.0015542914951841534,-0.005800915745771136,0.004227369226984266,-0.0011735148950301351,0.0006707346373700293,0.01498760918116377,0.0015235984916715673,0.017888527798450102,-0.050473412302573455,2.5381584085479554e-05,0.000778506420824438,-0.03283327048296518,0.08677809361764759,-0.007671303918386698,0.00011239709254898237,0.001913622935401526,0.019565992617891735,0.10676122850657593,0.12532866447654623,5.158817222873947e-05,0.004748890522842667,-0.030815302495682442,0.024917409452271493,-0.015124043296664792,0.002412051182788722,0.002102685522409265,0.036064441000491644,0.21801345589481924,0.039866965056765034,0.0001361281722685754,0.02671006033492604,-0.05544299652527678,0.3155307003020518,0.09699437053389993,0.0002720904538885269,0.020244211168281057,-0.011479882226709717,0.0663431131918735,0.0013315454243914473,4.87419097714626e-05,0.03799056315105052,-0.038515256666373864,0.2238140158288295,0.02127529214105533,0.00028361704257009405,0.008656692923888189,0.006445923908901301,0.07780141385868669,-0.001109923762189561,3.438174512118115e-05,0.0007058537702556052,0.0026322930465576882,0.024495281063078255,-0.03577101222124561,3.590322978517591e-05,0.00255261526581005,-0.03812354837392068,0.10734062084872065,0.044902574117033675,0.00011440683440993636,0.007022009138311375,0.032722646887182995,0.21368086052708024,0.011505823964545967,3.537326747092148e-05,0.01756571371675634,-0.010572040672534123,0.031099723677778218,-0.06938172023842752,7.536673081126554e-05,0.007727170912670385,-0.009960246853789056,0.03466416397264259,-0.007936330221176157,0.00013138263484752444,0.0056605425301977106,-0.0486814714381036,0.04869117001583501,0.04000236358930078,0.0005714642248044519,0.028756254999539942,0.019787053301197226,0.0818482574717313,0.026539059774474794,0.00010175545366804748,0.014587294068239493,-0.02026394972844352,0.07111582027481882,0.0019141988128257821,0.0018288456361018873,0.020417551952529575,-0.004834325778806666,0.04765163298435232,-0.07912758090708413,2.608797206232592e-05,0.010831616855170298,-0.019884216964152466,0.05681987675713315,0.03018159807243218,0.0011441408074321165,0.008890519362883292,0.020835471606039293,0.13492755485453253,0.01468697476343752,0.00010283201078480626,0.0017985651264239516,0.016550686140418575,0.023740645944659584,0.017956986710583586,0.00016453900171552687,0.00031705907802962114,0.018273854751705468,0.027917988048422403,0.012046781247391329,0.00037570758716972763,0.004944700108495845,-0.014934128041658891,0.06292206449839384,-0.06506653902548054,0.001839616296359995,0.0008292526997803981,-0.012277984701078758,0.049526797873477434,-0.01959023459159529,7.953846557158272e-05,0.006720768888361015,-0.02539192643870003,0.03750635714076772,0.016539081990037018,0.0016829373862437054,0.01675951469681908,-0.016493328658592012,0.04345846486453017,-0.01665772465670162,0.00015036611135361942,0.010686726829608464,0.06340915953348947,0.15129322265522507,0.13117289166641352,0.0001698998123227117,0.002907202602480281,-0.0009479820636823218,0.004389336725420766,-0.028974394467872543,5.2712686016369694e-05,0.0210025060484896,0.00907811800576634,0.031106709364243642,-0.0026685424500441897,0.002766048623931286,0.004519109471184513,-0.00165656127615392,0.008078258240366905,-0.01915431347356351,0.00010200708648445564,0.005140662998270726,-0.00908185888740066,0.049829708789475714,0.0020363947398660863,0.00013217435047687247,0.008425451657371446,0.014481703169148171,0.08277450098249323,0.012372100746487506,8.27507176825958e-05,0.012064010246450981,0.04498252692386651,0.20906379570830697,0.046298459124947886,5.4076977825067724e-05,0.025796290461191883,-0.03674960206097709,0.06919796874837422,0.032979296069099225,0.00025893376639958023,0.005411390998058969,-0.025980933755971082,0.11451209266783678,0.03851093451930396,5.641801216625258e-05,0.020841000458010333,-0.01808464113876223,0.18521448654363817,0.008193094520221645,2.5192207730517285e-05,0.003834709306630611,-0.001245578132147205,0.0038682635692565744,-0.019193161523736974,0.00011255476404650351,0.004450008537655342,0.021564529849011697,0.0965829468914033,0.01008593879851971,0.0003519390948517704,0.01191879883961926,0.04143491635716451,0.1722436217201613,-0.013835966125851034,0.0001377828341389734,0.017847011763326842,-0.0015420231488206119 +2020-02-06,-0.004390116713063694,0.030862400545494422,0.0005200115362797596,0.00015042947741425626,0.011856559248554704,0.042861795954074494,0.13676794813609144,0.02232125184401234,7.519631519364267e-05,0.01950221490664066,-0.007087807135351373,0.022613547102809082,-0.03883612278123692,0.00014499078662138655,0.004903023792793016,-0.004671852969922301,0.004906004144763341,-0.0011280677681137431,0.00032138759664358774,0.0021278894779128386,-0.016884952078473434,0.03504614351765107,-0.07160668223218158,0.0002520910165735004,0.0008066457867495183,-0.022850478822136998,0.07407575529155798,0.07378343917608364,6.735439762711893e-05,0.010442643672863738,-0.03291136454301257,0.10363895474643257,0.0082977581676148,9.317785744946623e-05,0.011020991374699066,-0.004970541838548671,0.047553351652359785,0.0011051936450668077,3.584439181558527e-05,0.02072401873337873,0.00715669086490099,0.006111641844981629,0.004153824411277456,0.0009030237009343741,0.005370893201240121,0.010545248053696013,0.02431662113000245,-0.0066382006261169815,0.0001516405874434989,0.02862107243192803,0.013869265284095133,0.011217818029516834,-0.006607630601315261,0.0006043234163685308,0.008261217054363503,-0.01855304176798298,0.270640469083326,0.03555135219865989,2.042890901518276e-05,0.004614903651472507,0.018228641219745097,0.06291179884483004,0.004151047781292963,8.607424694645468e-05,0.014025925099726864,0.0019543052911013556,0.01085948580636141,0.007284513071604775,5.0657641261213814e-05,0.004941606418021964,-0.02298685416084637,0.016492905803630484,0.03135039017000731,0.002718349756254548,0.013749919239556648,-0.021682729845119753,0.1320688681066254,-0.04896990163791948,0.0001351031922631596,0.016925324545933033,-0.036905732821551365,0.18861984551644576,0.036886927901627585,0.00030298050173948086,0.019353802992063827,0.050678050399658246,0.2788755999205645,0.027927746801541888,5.118825650406166e-05,0.025543168115789213,0.009350561045284237,0.0487197718889763,-0.0014282738821902977,0.00031631459502494283,0.003409859534844205,-0.014697396600250925,0.16835155861708592,0.008835557281725274,3.6228762800392e-05,0.01290073281889209,0.01717686176578313,0.18166800862712906,0.04888527421367647,3.1589814379673166e-05,0.0024519877595984532,0.010879832650201562,0.03222575325138502,-0.038370834899321436,0.00010875316217419854,0.0007666665068942447,0.04490926816633138,0.3360393943727764,0.012935354077803671,3.0870108839879134e-05,0.011986894146892314,-0.006524877379213866,0.020546518416151197,-0.006300621049200877,7.040629565605304e-05,0.001032523724703951,-0.0003600237594593738,0.0016377052387365923,-0.09547788258196246,0.00010051804190943446,0.0037902114162133675,-0.023179588447704152,0.021301956107662494,-0.02517701944383528,0.0006219590574201638,0.005693286698001506,0.003645457838958907,0.014786057906504958,-0.04009353758434577,0.00010377331401579538,0.003925999288780938,-0.06878911811383004,0.2186767842547559,0.03306257708285153,0.002018999622306769,0.016704017360857873,-0.02971837276690628,0.3357642141954507,-0.003099447889508955,2.2760029157322423e-05,0.02094763983034577,0.009514091389914289,0.025833345405728944,8.912517168304431e-05,0.0012040871949798304,0.02799783157540853,0.01694869601772315,0.1280806927193666,0.01954612878337743,8.812076646797564e-05,0.01048665127355808,0.04371933354072501,0.07460785949508958,0.13857017865404664,0.00013830387201563645,0.02067912975605683,-0.0037175950908102133,0.005326480409672776,-0.0013715189041010934,0.0004006135788897595,0.009351886137149568,0.003930191420916123,0.015695019712643248,-0.005214245804956991,0.001940895615541916,0.015076723791367425,0.04386755730784186,0.1745084741557618,0.0933042003837209,8.065240110522155e-05,0.003698848364622026,-0.0730296956685423,0.0982446779817817,0.09394162816679838,0.001847853977738048,0.008891284109384619,0.037208133720728474,0.12288409415272933,0.025970177505894743,0.0001199660201360377,0.011855262550982106,-0.005823667563206772,0.01660048155780197,-0.008741556218334952,0.00014221200695927453,0.0029356899524276394,0.015491440768549082,0.06778119718570416,-0.12091520832316029,5.578231073298997e-05,0.0022512231605666994,-0.01589098979185828,0.05062738922032752,-0.022622024175106392,0.0029749760553846693,0.05604731097054844,-0.026598487260688114,0.11884544670525735,0.028732696463671395,0.00011133070544605298,0.004805916659923286,0.027924745916461987,0.15658451647723684,-0.012692880407289922,0.0001293305722028003,0.00148752744391614,-0.02141164398574027,0.11052662467718365,0.012040639618352245,9.162875906647248e-05,0.006763620246642616,0.01414933636613265,0.06911118877653834,0.0025399203215597855,5.145589098138335e-05,0.008552643947164821,0.03726389741484096,0.060035725825938135,0.006170968619551775,0.00030262716130138173,0.04833770232756213,0.003854176260691003,0.016993945007298443,-0.00390758148126788,5.639644639446192e-05,0.002553286599031556,-0.033705502324723725,0.38526811307457887,0.03285195982241604,2.257194708803279e-05,0.022673213060538915,-0.013265130728228014,0.04359484584707918,0.021082034092366145,0.0001063617201844472,0.009384541781856106,0.013115085379365505,0.053311597343009685,-0.02107634956465336,0.0003877728493812384,0.009876345535226812,-0.05722082018244263,0.28004009329121304,0.10472075147356891,0.00011703227862855355,0.007571995350774572,-0.0013495255351901804 +2020-02-07,-0.013096283891700993,0.08432570928971823,-0.006975693227582784,0.00016423838349847813,0.007227214049334111,0.003021171210136002,0.011373730943422044,-0.07184347097694437,6.373572256036554e-05,0.00600413330429472,0.030508558397816347,0.08989854896612133,0.06733925117361478,0.00015698791056534205,0.007357283398462587,-0.018800979586507848,0.02182367444428963,-0.015190942662207248,0.0002907504929812354,0.007880458508042074,0.01468472333472443,0.03129769118913238,0.00412753803463261,0.00024549985496051264,0.003608291851713839,0.006313586393119065,0.01527089639108673,-0.004490704442323365,9.027309591104229e-05,0.015559552072401867,-0.01048373981455863,0.042603428331073806,-0.024100913393907828,7.220404708817928e-05,0.03135732516510536,-0.01527352206292513,0.13206702266821624,0.016838478431713162,3.9659152010194506e-05,0.011557073111749878,-0.026501132902788223,0.02377107818551684,-0.0012762713652906404,0.0008597265647303963,0.006717979384414912,0.03639163919583405,0.08871585505039808,0.012904483943556968,0.00014343735287658738,0.006267368769677869,0.022590807323768943,0.01505630398489701,0.04104409914130027,0.0007333946461271182,0.0017893584742666396,0.005334547320214416,0.05986720677813899,-0.03411651788553994,2.655408649564856e-05,0.0020106125536416023,-0.041868785615355175,0.10551103951618077,0.03488273338302137,0.00011788091565038793,0.003269393345568846,0.012543441566621946,0.06941534435009651,0.03694932785618361,5.0865468261907224e-05,0.010628900805891945,0.024946944247443915,0.020711903512742078,0.06354241993916038,0.002349201745078374,0.003470713201394854,0.04277001644027078,0.26005840446965045,0.0559956488770032,0.00013533827329450347,0.02148221468448246,-0.06488699554818655,0.41821134330998855,0.08465919298284252,0.00024025370254742337,0.011089627123339808,-0.06388098059798442,0.3395581008374519,0.058351874313158726,5.2992991220140496e-05,0.01846879704129001,-0.10169397638970128,0.5923747151098024,0.20637125651700397,0.0002829342504057654,0.012881192196105791,0.001266513992030375,0.017356869910742943,-0.020788245647307194,3.028090250429367e-05,0.0186253232391485,0.010885125444226979,0.09934943108421447,0.007138256055643952,3.6605788231927e-05,0.007517073184487586,-0.006682967802901098,0.02337851326642683,-0.010549558112396995,9.208210430189801e-05,0.0051697252710736,-0.01597225361921168,0.11835505185092728,0.009721997850119866,3.117251005437132e-05,0.0013768245751577413,-0.012364352381791566,0.03452865044434665,0.02402548312325535,7.939061239001371e-05,0.0051955378664927335,0.0049361231142627734,0.020617739491316133,0.004176399082428904,0.00010946959989849247,0.00903400383029905,-0.0935467665707934,0.08409670429722396,0.11681216561071078,0.0006358070889524394,0.021880463977250915,-0.018579285753480144,0.07370063355330211,-0.015199715556142678,0.00010610694293774255,0.005797398963886766,-0.04470403691861176,0.1695521634525828,0.010723479660698578,0.0016922424381982043,0.015048479763979161,-0.004429369544015789,0.03675896060092831,-0.01515187827635769,3.098566974330485e-05,0.0029804284400231622,0.001451379801915645,0.004050895788224099,0.0037584340557823975,0.001171389357212084,0.0044260493641974435,-0.027788520435518254,0.2254368852996375,0.03411958239545721,8.208543267428625e-05,0.014249250001040136,-0.0048928134622669515,0.008253152209628396,-0.012284523975470002,0.0001399214155826225,0.005224516828305733,-0.034664524785708584,0.045043418476104775,0.018476642197843635,0.00044173094228029696,0.017791253052374043,0.011682786310388356,0.047784281482344246,-0.0011378217303976527,0.0018950109081435217,0.008934531627028045,-0.003248035667076181,0.012121207709748576,-0.011284078989937009,8.597363052266096e-05,0.0010458125712673782,-0.001977019189502987,0.002713326534278252,-0.02390380322902817,0.001811281763775915,0.02525252093551461,-0.025543382551489635,0.07049123825776757,0.02292180495377772,0.0001435685468589911,0.002879738497624673,0.020178013377937877,0.0524683320546896,0.0009777201410932207,0.00015589835165978524,0.011690107727352527,-0.00047880141973527415,0.0022697154901253876,-0.0023620405373745825,5.1487040956545776e-05,0.004143793448157112,-0.11104617488278722,0.34344653187772056,0.16255843300739245,0.003064520465991987,0.02466495838465734,-0.04870167560923898,0.22683059745513745,0.06357621231108422,0.00010680284896463378,0.010457643789371803,0.003200082962633747,0.019508747500665162,-0.09010844885443395,0.00011895772070397079,5.19150075941081e-06,-0.021543380979982107,0.12040162511722259,-0.06811309145575109,8.463114402489411e-05,0.00988704493586556,-0.029200275727337004,0.12328754017310126,0.02237667864444862,5.952715951281751e-05,0.015305799375922205,-0.01320744915305859,0.03027730910949429,0.0030385200376689073,0.0002126821621565082,0.01779601480550311,0.017995864606858345,0.06888839851487755,0.03275549700870574,6.495925034702389e-05,0.007289530441475287,-0.014760932809084118,0.14498074241908399,-0.0011986314799834758,2.626846947402053e-05,0.00451474264382735,-0.008452702011609534,0.02709278390534489,-0.0072106760063219534,0.00010905633294409456,0.0009427212119250358,0.011629619392777324,0.046996150895505906,-0.04783231512895013,0.000390059790333245,0.008096603879067923,0.014897682944244046,0.07338663445227887,-0.004205747043979647,0.0001162715741107923,0.015927484985837206,-0.012361041159206797 +2020-02-10,0.006149834064554588,0.04486829631439891,-0.0523609640260758,0.00014494739090653767,0.0016274648285366411,-0.016072557341133602,0.06198279584560676,0.010217209307927836,6.221918935475797e-05,0.0010109285650615751,-0.018614534919591592,0.05254903125735455,0.006160257305158029,0.00016386442569327078,0.003962598472978083,0.011407226922407606,0.012332245128561977,-0.08786025531306699,0.00031218051208204865,0.003934177323968714,0.0020823708281342184,0.005031489081315353,-0.006074810973155062,0.00021655055885241406,0.007146944938965622,0.006595554154030008,0.015091319839591586,-0.009587581741350352,9.542689805621616e-05,0.008845183930749897,0.01626846078703792,0.05406953312980825,0.013869074163116526,8.828434523998188e-05,0.00107846952260502,-0.03153229348834328,0.2546951763640356,0.05902838312774991,4.245545060000439e-05,0.02984158516247535,-0.054683503221049756,0.0434947117838738,0.11574987932724792,0.0009695376050130345,0.008517414648986645,-0.010668971732971233,0.02116791710817783,-0.05116829332102431,0.0001762407469094708,0.018386780029827465,-0.026473221963917923,0.01870658273980285,0.04312965614633798,0.0006917301414800603,0.015631663356864996,0.0027405889918711637,0.03838600856811136,-0.045369743201887115,2.1276184243229388e-05,0.0007202637554444352,-0.008466622996253823,0.024152715271162056,-0.16345760274140642,0.00010413465872295033,0.008977360799688184,-0.014716124942730396,0.08554053757249887,-0.007433760825279581,4.8426525396437924e-05,0.008517665701190556,-0.03916149807654501,0.030558293324137405,0.1173753652000914,0.0024995001902059044,0.006505113199169271,-0.0006427973078188116,0.0034255037848751335,-0.012509324011772535,0.0001544193447343362,0.01226243619103851,0.09660752522027033,0.6060483898328963,0.13253178603483104,0.00024683792514923665,0.01151542305118301,-0.040868818342719104,0.2051135360392752,0.014940926183752156,5.6125305153173694e-05,0.00449852531791994,-0.0010331630592644648,0.0060430186083923945,-0.006052940633564556,0.00028177453739587237,0.010794558334293193,0.00327058765911025,0.04728820063524954,-0.050818309458317286,2.8701410221640214e-05,0.02208340115345039,0.014341002149131697,0.13286049992835683,0.024421202460526124,3.606328862631941e-05,0.0006296143072686449,0.02195301430570027,0.06019525282254118,0.03716650396655032,0.0001174774939134469,0.008801238356092584,0.04506357402261593,0.3389860012861702,-0.05874741844438124,3.0706919115064806e-05,0.029046534517491278,-0.00414773493672181,0.010966734556615098,-0.07625899266556757,8.385154041480002e-05,0.0030841999073286273,-0.013641034172404755,0.047727596565127164,0.04094627989083044,0.0001306851761213062,0.004260703649506198,0.005179759699206843,0.004810992590202581,-0.017501288568851463,0.0006153900721754828,0.013191202749215746,0.009151151233151215,0.0343102652069336,0.003078483223430861,0.00011226326444014534,0.0069657542361754535,0.032585581708440635,0.09105186509858663,0.008624868705791855,0.0022969725581275012,0.024862685134802283,0.022419129178321485,0.1871141692824027,0.015885818795115535,3.081018164957416e-05,0.030251539306591906,-0.056570046309171625,0.18758504291577066,0.09563141196912633,0.0009859606831527272,5.510653173125416e-06,0.02332771895835637,0.181294336006571,-0.06657949312122226,8.568675212846273e-05,0.013227913739594413,-0.009233411882051089,0.016996513976373074,0.0010686593530842608,0.0001282176283537234,0.008336910216543952,0.01031765575586109,0.016585521997888753,0.003522742027190047,0.00035707200558186364,0.011158302559471483,-0.013652422919077225,0.04821421563910236,0.009118828407384852,0.002194749548863349,0.022871673728829565,0.014992703283753541,0.060569278418338174,0.008605409705256119,7.941781178509494e-05,0.018814181626998102,-0.025282679228452933,0.03577458110734509,-0.04512091582612555,0.001756813779780189,0.005993325576072383,0.011583775597046648,0.04228092901929479,-0.0020466751516802235,0.00010854795624609047,0.020558272547512392,-0.0459340329002278,0.10378205640844355,0.06418215256555032,0.00017942075562912837,0.001750113323182951,-0.007596854520518987,0.0332333671250416,-7.957269617729457e-05,5.579218750610004e-05,0.018100363440578415,0.09205547060299478,0.23097972590416282,0.07047647263673537,0.003777407156998625,0.010725873632388118,0.031081550062355887,0.15973811158577822,0.07018954146469902,9.67909369860525e-05,0.010556685959686942,-0.009157854401167932,0.05982349475700546,0.005779737577252952,0.00011101527496116295,0.014739720786894934,0.011590437465152226,0.06792203271343707,0.009212638610319205,8.071195227427432e-05,0.01131389809121138,0.018671155449976332,0.08535528756701553,-0.011165472323063908,5.497790162087733e-05,6.127886387531547e-05,-0.049458776405846165,0.08788915456729214,0.03721030133187036,0.0002743705381234474,0.024023790091738998,0.03414280621240557,0.16200306830492436,0.08854921441226683,5.240712662910222e-05,0.005046053287107002,0.036000242165835264,0.37477279238981515,0.035537076527383,2.4783843214790987e-05,0.0034315568276666354,-6.542514680469988e-05,0.00020953918216045736,-0.03564438192971842,0.00010914112494238046,0.01129594296231832,-0.002836934742802058,0.012696961867624543,0.008647367043181673,0.0003521903900942872,0.0002931319400482561,0.031085979778600923,0.13334772291816557,-0.012735286562532488,0.00013352136151715722,0.024165770321380158,0.0023309589091266977 +2020-02-11,-0.011383447907717482,0.073853533302654,0.002455470537317145,0.00016300057286620923,0.0013030621460314083,-0.032958166656689596,0.1029478364826612,-0.10910736789442262,7.681682413135224e-05,0.03457049523336907,-0.017542430157327978,0.063118846625765,0.0012698834703157877,0.0001285665251883909,0.018770753242430792,0.005215221677631815,0.006210664250485423,-0.017597066569377217,0.00028340178263123946,0.008754660781514045,-0.0012795351141165708,0.002614480672046396,-0.00015941848217701556,0.0002560734457279125,0.0011333681860484109,-0.014797196306822047,0.03766478341389756,-0.02905739766030882,8.578092021067457e-05,0.001422317346986228,-0.0002932413121037716,0.001126088286785146,0.0006228829026766869,7.640865732157309e-05,0.011286830245034907,0.037630824227909566,0.30428239108138627,0.0446872456065169,4.240973169826038e-05,0.022243658751439566,0.00634874693063019,0.00466126133791959,0.01443853848083388,0.0010503386571774766,0.005432866003837375,-0.047340964525754564,0.11914040696855303,0.07383064060449479,0.00013894403573619954,0.016338819011002318,0.019159927922452226,0.014155523615233343,0.030668363661556224,0.000661595116117578,0.0014450521506329211,0.007052017908913832,0.08837459160429059,-0.035707970497758305,2.3779831672823315e-05,0.004697075940423384,-0.0004069669277977632,0.0013014012110916851,-0.006152376653839364,9.289641386426587e-05,0.014195680968663454,-0.005524255981784874,0.03188822991596272,-0.00047525847182342104,4.876465997137732e-05,0.010071725121802112,0.04271315043263778,0.03860728980220186,0.12125846911967528,0.0021578202391958766,0.004133200416504492,0.0028011306686051745,0.018367359349711485,-0.006374062043000469,0.00012549856310576296,0.008713074417595773,-0.05147915328701717,0.27789461895747264,0.02582814236060358,0.0002868530617509661,0.01581730780231951,-0.05890426134976013,0.38255186308420436,0.034778224477726424,4.337278895045741e-05,0.02382250483427672,0.010071316322965918,0.06100898023953354,0.022852066702709773,0.00027206913649195327,0.0046702489344736114,-0.025999880729232348,0.3773496156660764,0.026246264785876206,2.8592865079931822e-05,0.01025643092108807,-0.002805944027206277,0.02853399470040747,-0.11486903471853832,3.285474768848545e-05,0.0027658264182333268,0.044010116125618226,0.12160073497663856,0.11478098981870453,0.0001165840318154656,0.005906487826683264,0.03783155971457077,0.23317557859153956,-0.08664007818697345,3.747689135485467e-05,0.020522264603493767,0.0085331634654061,0.028228065804593337,-0.053224885455601584,6.702029365340032e-05,0.002653258295616443,0.0008820560820142839,0.0030750165669346705,-0.0005765544305797446,0.00013115876980416497,0.0027548017721222067,-0.020656311729035183,0.02099230348625402,0.00036192449738436987,0.0005624296971678329,0.003402425057061451,0.028155024549607797,0.12082964482840927,0.04579415514328439,9.807728171094108e-05,0.022255850602725537,-0.014536454364107422,0.048050706745767564,-0.044424845765163014,0.0019416810141993025,0.0021181755060619414,-0.03264637322654664,0.33716854513748784,-8.97717174567532e-05,2.4898322312749872e-05,0.0179521702670273,0.023083676413742194,0.0578364537218539,-0.04309954636448959,0.0013048920687617682,0.018824629336705957,0.032478602448412414,0.25553580984115737,0.06386113492038377,8.463913326863923e-05,0.01157371427105376,0.0070186599542239395,0.01215615621147257,-0.004376596397376859,0.00013627096012674096,0.01571882966203247,-0.0005990794380038089,0.0007772515162225099,-0.035267833714020876,0.0004424118485450604,0.009366193824061198,-0.02124564780446312,0.08654307627191837,-0.0643825387360567,0.0019027774254301657,0.022539774497366254,-0.009473592185946868,0.03316438856067069,0.003728186080561229,9.165012489892686e-05,0.004057627075543633,-0.009958732230579682,0.016346168871463722,-0.026853604374557843,0.0015144860095581973,0.025336387510302552,0.01301573970726119,0.041957053937639134,-0.001183131182801965,0.0001229079302425029,0.0009529298468252387,-0.011455832779148009,0.031999345917511544,0.005355433607141334,0.00014512623899468055,0.02653413112760824,-0.006823996054374177,0.027672562235783675,-0.0035192491204725103,6.0187086286893705e-05,0.013252990335604689,0.08111962529340894,0.27908872323727046,0.03744073307053572,0.0027548737761155543,0.0264884511123378,-0.0028501975055244193,0.015188615310545854,-0.008718577224295221,9.334635058726616e-05,0.00018375657537975305,0.030331004397803833,0.17426072824869676,0.046837758955681756,0.0001262257767181946,0.007184836446053054,-0.03475553012932212,0.20888198328837498,0.005366179122624601,7.869943846473201e-05,0.0006359426661204605,-0.04995659445930242,0.215516048282176,0.041977639079833144,5.8258675199295147e-05,0.01347676355081632,-0.031786663213280004,0.05471099973899177,0.0074242612868935815,0.00028326941379679474,0.009607960094499301,-0.026417386539538998,0.10615921936321322,-0.032815876092972894,6.187945933161087e-05,0.0007485698122107902,-0.038711567489365585,0.40163246922152773,0.03289164682485111,2.4868135616735743e-05,0.017753991443464515,-0.023478887843939655,0.07442305933909867,0.024245699984130037,0.00011027548258980928,0.00042378986324852306,0.010102412882540927,0.03752478157924046,0.0005073013283590504,0.00042436046040015873,0.007829726239566702,0.06160070097527594,0.27910221305395566,0.05869089814564798,0.00012641370791497325,0.016403614402161853,-0.0026074686831678473 +2020-02-12,-0.01425858559992463,0.09898193682621441,0.007803533024988531,0.000152337590984654,0.025401703227486073,-0.05389061417044685,0.17701148034252095,0.0653840222430364,7.30503373055637e-05,0.005990984060913311,-0.02552388809728976,0.0762262272783588,-0.0033490887216038817,0.00015489578892288668,0.013613709679134169,0.007929208785427104,0.007407630169203675,-0.046259123349807404,0.0003612587858819936,0.010204712433460796,-0.004841408063184013,0.008900213683380124,-0.014865244305339706,0.0002846223681481413,0.006882230320290316,0.022485311599305186,0.062369824642612016,0.014328933702700313,7.871746997565637e-05,0.0012906053309858416,-0.04378988463376937,0.1617085538398665,-0.004290302664609582,7.945672543870866e-05,0.0021454885110244225,0.027083185349140237,0.25085352121946375,0.011205660959695371,3.702355819536502e-05,0.0062082276077279576,0.003681397257744851,0.00377398443107381,-0.02021844749527739,0.0007522416347202656,0.012745407068213093,0.005238222168683619,0.010485137879771456,-0.03129946305889597,0.0001746914520681248,0.003452428731569512,-0.016299173823731316,0.013153040328216903,0.014831593178404014,0.0006057086808508551,0.006604185382340935,-0.022602293917499055,0.28762068249026845,0.035790410421437824,2.3418290825370393e-05,0.00025700418697000124,0.01861113884825424,0.05280771211971917,-0.020524068864204666,0.00010469516720790697,0.010136148514180257,0.012703994254590173,0.0720481360563912,0.040524031217735415,4.963400924503759e-05,0.004617814221241645,-0.016490802409281483,0.01618282134622912,0.012994945698908864,0.001987515484869807,0.012647962669707377,0.023731097452447777,0.16617841038235445,0.009302545638043983,0.00011751554802838011,0.0050839099224607425,0.03219928865065223,0.15807929313118013,-0.013729662666653803,0.00031541295267945615,0.01877095178797271,0.02726185911569762,0.18449082113401738,-0.14577579701958773,4.16237937840616e-05,0.005458505229264016,-0.030581956779737195,0.15213047479685457,0.002498296874612582,0.0003313110012476257,0.008869806692837774,0.001424144983316071,0.017156117812825614,-0.006605735128780943,3.444811130345614e-05,0.033431645947763745,0.012114868263718537,0.1471609034359294,0.016592175691226327,2.7504766332319406e-05,0.0035856255704577026,-0.0158928949036946,0.05024045244064304,-0.05007095355609805,0.00010189954047654249,0.0020385893780831693,-0.012763642720905456,0.08341911281909431,-0.032630176241542144,3.534284030072619e-05,0.016576571879856443,-0.019458232532407034,0.053801338180451616,0.07472683657112553,8.0183995598754e-05,0.0065503679776833705,0.014550536580928848,0.053462543105400905,0.052746426451935245,0.00012444515452205308,0.002187913500771219,0.024712117463222886,0.023751858528804997,0.0043181693518053845,0.000594686285673901,0.0028297922169250637,0.0060636239667204795,0.019779520715939455,-0.04616116155931438,0.00012903350847213034,0.0003554100512686458,-0.02197455330611604,0.08648393899328152,-0.04738739500811491,0.0016308115121194799,0.016083427621191013,-0.06483207282977829,0.611477821588666,0.055422826215656355,2.7264114236496627e-05,0.0030248217554274207,0.0004276327860427674,0.0012646978492901516,-0.12652976072502656,0.001105491695180907,0.012231407517604332,0.009233617917589053,0.05677391569524653,0.004785251599517622,0.0001083050468125638,0.011615280431756967,0.008592077644062605,0.013073948226890104,4.4291369033713506e-05,0.00015510893589241336,0.0056975151981913785,0.03823825598412329,0.05955259624360904,0.04064318334481567,0.0003685541369148395,0.004419445982967332,0.02162377435531188,0.08343579436035706,0.015210665083141303,0.0020087664068878957,0.0236588372317781,-0.0071654436756510495,0.028666220449189452,-0.01727773031934297,8.019790448181893e-05,0.021540243537934115,-0.05913280257006244,0.08619623211811153,-0.0004577114773951447,0.001705365105857661,0.0045430702047855025,-0.004132118907849299,0.012656656317360088,-0.10285643534216996,0.00012935102059519774,0.007420936646566959,-0.03416364006555622,0.08982989918540644,0.033083415943381086,0.00015417132378869593,0.032072421357969005,-0.0601782993414273,0.27140863189560793,0.12398657967229781,5.4116559652163074e-05,0.015870400149930873,0.057548946082654394,0.17822411381411354,0.007352635437703118,0.003060475932973567,0.035622392165794735,-0.007734499380754239,0.035610988045386864,-0.020980720478266355,0.0001080410400296849,0.01795387183545257,-0.010280888744730017,0.06349353589752973,0.0018723798192789994,0.000117425368194308,0.0049396464093245055,0.00987768348089341,0.05717860309263565,0.009353933166664679,8.170906920533982e-05,0.005954365330600492,0.003928304891893414,0.018282798017628152,-0.008823697594446588,5.4002009555800225e-05,0.004509812016727921,-0.000394331252926222,0.0008717917805801843,4.277478393803158e-05,0.0002205351516749285,0.0062714161992566825,-0.005290162199650536,0.02085037911515241,0.002454776885549016,6.309129007667225e-05,0.01563720163351241,-0.04910830345514974,0.49190225484937056,0.051655827330958894,2.5757719114012618e-05,0.007155821920664889,-0.010248380808407667,0.03143214612356517,-0.11494999444189748,0.00011396990447704947,0.002228030604310866,-0.0038831096954083963,0.013194195268403253,0.006897412496484285,0.0004639003743927603,0.005083242065533565,0.036470795622517704,0.1763078767641901,-0.021814992703418416,0.00011848007442734558,0.015471746034657343,-0.0037587485511688893 +2020-02-13,0.007506641486224166,0.0569125297210765,-0.11838906759089732,0.00013948399205313648,0.005278659914998964,-0.03601394466775003,0.11062774267737607,0.023886925218991082,7.811189405902472e-05,0.021929295266798994,-0.03411494868219627,0.1076556700283081,-0.021082487791489656,0.00014659022740490195,0.017777082799226022,-0.0009750536009871986,0.0008761243924988206,-0.02105077243249056,0.00037560431684353907,0.010397218659919608,-0.023999426635574514,0.05477715472679792,0.016700820491682575,0.000229244628532813,0.00786297467536877,-0.015777711207989504,0.03707820865827824,0.010216346588935226,9.291204055661321e-05,0.0056250576368745584,-0.01412955121105193,0.05613773516494867,-0.0733129068728073,7.385218274271328e-05,0.013845002276094408,-0.01137733521457011,0.10496534884646286,0.008407130557355511,3.7170055972244815e-05,0.0020481281543047215,0.026517868797736738,0.022397779592193724,-0.005119371679602932,0.0009130161034768038,0.001520335311745356,-0.017767878250316768,0.04844785751471099,-0.03881143468474506,0.00012823981411413005,0.00015513915037139144,-0.0054537399419892,0.0046931305686944555,-0.018055356976408345,0.0005680102153303294,0.005194021006713087,-0.0030284264497372816,0.04069544837683536,-0.016552791544093247,2.2176549906673785e-05,0.0012278491027255976,-0.01607389615288582,0.04026353628449141,-0.010312756909347364,0.0001185933345217506,0.007260170985775664,-0.010195787801787475,0.057800368772554296,-0.06291873533220066,4.965374359420739e-05,0.0005884758593919833,-0.04285965425149271,0.03396761823491445,0.09133382982261476,0.002460971249587705,0.010409134550630986,0.025098598097519565,0.1655462751782091,0.002432643275611821,0.0001247619512953715,0.005390722227630442,-0.026951096675484006,0.15290589240885816,0.012173927845587261,0.00027293576718945555,0.01598162880594898,0.06473948734183023,0.43820868101834537,0.06592884530824217,4.161493639636125e-05,0.02275813756227591,0.033718825897356204,0.17629971271373387,0.06122539345147209,0.00031521555950347554,0.012774333730898368,0.07088362254101033,1.0620711052027858,0.09812181271586125,2.76963502056857e-05,0.024678509243018724,-0.005674255543789838,0.05707263718438533,0.00918548181517291,3.321717228564757e-05,0.005040605188437425,-0.03482832174643136,0.09831079269470784,0.009053116627149216,0.00011411798792130065,0.00697115448316669,0.041001941641161166,0.24578133269362257,0.015156288248216116,3.8534338182825914e-05,0.03279517435997523,0.00016641651081548975,0.00046288999992706147,0.0010094043042242586,7.970691416212993e-05,0.00517822278547969,0.005635240851029059,0.0195898233679084,0.0018146174586621858,0.0001315317377845637,0.008913732193698771,0.009119384608861457,0.00915423522701952,-0.008153152880241517,0.0005694020494062064,0.0007906784993922883,-0.02210768447035094,0.08259701137307311,-0.015390947169573382,0.0001126587512832038,0.0039401043725153725,-0.04009556738347776,0.13779205589937646,0.00661096417629171,0.0018676322220675416,0.0029167168893814268,-0.015435581199027083,0.12344066606262817,-0.0014616061131828735,3.215488239851045e-05,0.0016767435107883264,0.029545157256661188,0.08420803729651197,-0.00878811099519897,0.0011471072659004727,0.004849783352022498,-0.0031127287891546643,0.02612777450101133,-0.006317543324291641,7.93349416190075e-05,0.007717139718575218,-0.006157598237165924,0.010013876490758836,-0.0014155087149101155,0.00014512910095618723,0.002170233052946559,-0.0347499521171608,0.05419588785751474,0.011279993413869519,0.00036803726007462626,0.012622756459343989,-0.01229115245115741,0.05703574424085657,-0.0006007440909664314,0.0016703052019733746,0.0030550792711951805,-0.009111966477477832,0.03315947153760309,-0.0037398960539912368,8.816473026476072e-05,0.015689623555997515,0.015130289736393833,0.020212300579117815,0.009003658079777918,0.0018608385235334252,0.022405596217272214,-0.07719651061310404,0.2238952213734614,0.18317099967815204,0.00013660571920308563,0.003497735943136672,0.012060128757065438,0.030513143624943014,-0.002207947094230235,0.0001602231874685933,0.003105792992692172,-0.013339109203004013,0.05422961217122879,-0.013612060505794518,6.0034963991509205e-05,0.01029044245065695,-0.037322550646518536,0.12235338031239931,0.0034445959768290057,0.0028911684879995747,0.0057869414757272504,-0.01444189277200353,0.07694771707607526,-0.008183142247772501,9.336174219346904e-05,0.0008703107486520112,-0.0018231775964254022,0.009934423340973697,-0.06155719379994364,0.00013309051237575339,0.015251624563625802,0.004971346929409068,0.027204104540735845,-0.017914139342093884,8.643474108737123e-05,0.0033769588107802934,0.024194103191598117,0.10118780070988655,0.006633710395935078,6.009367540311867e-05,0.013084134791244541,1.9446830740912435e-05,4.0848775208315454e-05,-0.14394984408364372,0.0002321128525976597,0.0022664877934106178,0.028564255065318435,0.11778308702849141,0.033855727699953,6.030514216269383e-05,0.01095688203686538,-0.018255884579320505,0.1912134020891738,-0.0066361219395108875,2.463291669887874e-05,0.020778732562771574,-0.004353622354879808,0.011801479350389096,-0.023481199532011148,0.00012895057058889982,0.005380903404591744,0.018124755702798534,0.07558302816827059,-0.07013285660367168,0.000377986113473059,0.012497252267162001,0.011950427283900363,0.0600867032160882,-0.018088883893547382,0.00011391393479369994,0.004071145627565224,-0.003661868214476862 +2020-02-14,-0.009021286968135936,0.06831013735509003,0.00808723796444727,0.00013965932005823226,0.00432500814841291,0.0032661481671135257,0.011604360280340873,-0.010340842703009669,6.753442477382813e-05,0.0072916362228469984,0.015007671389591706,0.045389379443660456,0.02670675320577098,0.000152952391238014,0.005339205364312271,-0.0031509628946060175,0.003445359440691022,-0.0012873820138331845,0.0003086573395369976,0.013371348766177352,0.012959068656638989,0.028946775178952517,-0.03438921150010969,0.00023424556384786662,0.002084090809723365,0.003835315432366587,0.009569237961350674,-0.004443293056094652,8.751257710556737e-05,0.0023214200988131185,-0.015186677309396516,0.05995433512662223,-0.03712754565051569,7.432450561357996e-05,0.008508644695213367,0.012931353853396964,0.11753683043397857,-0.08912169249620382,3.772842149398502e-05,0.016805507874497805,0.011586775325390921,0.010720988200772961,0.00569518082437586,0.0008334365731555618,0.011859524387634929,0.00547382911478961,0.013446725289875628,-0.00397833194132282,0.00014234315547602562,0.010693552771725056,-0.023904617788541454,0.013980640215986051,0.03657823044777695,0.0008357552297277055,0.0008261287087601773,-0.01117928440182361,0.1501344064153512,0.00835970493668281,2.2189962227246216e-05,0.005095339279655493,0.03935174082869889,0.11467963263676599,0.04502067806770446,0.00010193625967869605,0.012992119596473244,-0.00044323824215543426,0.0023306371126487454,0.0005002691838147912,5.353334543068477e-05,0.0026868231132603127,-0.013226494410788872,0.011044900926082825,0.0023169187239309957,0.0023356399807474785,0.008599728057442694,-0.0028210532356292665,0.02041253624942515,-0.07603357288132234,0.00011372774303674795,0.010618766585146638,-0.08541807390902001,0.4888644193613546,0.08993519971141119,0.00027056372952276157,0.013198400414513643,0.009052097892152033,0.052954139787719276,-0.005802911156843797,4.815155096571262e-05,0.022323036993986346,0.036271367934946,0.18152019488106957,0.015694198164198415,0.0003293258285536331,9.88531850036221e-06,-0.06579468796446238,0.8464533100261147,0.08144009854438142,3.225656037434429e-05,0.010890314431783446,0.03541055039976125,0.3861073204740981,0.13659413006336554,3.064124098841577e-05,0.007504028688982537,0.012541310087581786,0.034615483889599515,-0.01481160477689322,0.00011670655643086057,0.009096816015351995,0.010100450373142082,0.062265165255868934,0.00035856534347689014,3.7470369017775876e-05,0.012411372659007575,0.003642615552940515,0.011435092660116126,-0.032877047254967665,7.062379189715465e-05,0.0016178872747370102,-0.0036057896295662206,0.013412504808408846,-0.00814907684688099,0.00012292468109785938,0.0067477148242870095,-0.009608485705904916,0.008268285000870046,-0.022277706764375953,0.000664224777195438,0.00032298135765966053,-0.009757652742386753,0.03763187832906652,-0.03458292873708787,0.00010913786946387156,0.009672815594976807,-0.022298254612195086,0.08109746594418925,-0.013174728095436992,0.0017647482537352102,0.01836858850059738,-0.014593177075712905,0.11620054262514615,-0.006650341578325248,3.2294152478174095e-05,0.0006823194605580203,0.03279629566607089,0.09847668829978867,-0.00027195532534317075,0.0010888363916151042,0.008245374156996634,-0.022850767117228204,0.1538661744076856,0.020292346374340568,9.889703502809476e-05,0.018370381728492383,-0.02348072874675967,0.033699970514055815,-0.02918802620951264,0.0001644475611080578,0.004894936378400069,0.03636066985021478,0.057312241315765344,0.05662715363301625,0.0003641567767876443,0.024103462424601717,-0.031414826147663714,0.13037991883978436,0.028564548979710763,0.0018675588472745724,0.0023551893729847548,0.024074810312517236,0.08111007511692571,0.026781425879017346,9.523102104727023e-05,0.02337716228032997,-0.05094216019432255,0.0771455564238097,-0.07374969846117198,0.0016415103796189091,0.0318943781486244,0.026128002236672863,0.08149295799010868,0.0266099871006697,0.00012702878938722616,0.016050565319047114,0.009702069214010805,0.025611058018033508,0.0015052898603439152,0.0001535667611216181,0.0014741491255418787,-0.010603928317610882,0.04319170379375674,-0.07767400401696417,5.992118207464135e-05,0.002027505119901045,-0.03798071056228911,0.11312947870327802,0.012076655846562255,0.0031820379693231903,0.006410554629805041,0.029248376303111976,0.14499838506887958,0.04613044451447225,0.00010034117147171747,0.0032791444859226406,-0.017815168003191623,0.10829542569366674,-0.03091113988573376,0.00011930004125866991,0.00048488692214668217,0.017262101417542804,0.1038775480497907,-0.014967536013704336,7.859966095289059e-05,0.018334671161156033,-0.00863196704125225,0.0342617912133219,-0.18839406809200457,6.332090366225491e-05,0.004049970378035318,0.01639509728830673,0.03168926129828936,-0.10117243940455094,0.00025225005907955,0.01950529978378853,-0.006800605623094534,0.028963273289454004,-0.05466828919937095,5.8386752994916447e-05,0.0082908103599285,-0.03477436575203396,0.3714827729896011,0.01344984423524971,2.4151929059527444e-05,0.0067112595052815135,0.00371957855292496,0.0114432724982786,-0.002859610082004006,0.00011361939163274538,0.005032425685300627,0.018736355349067407,0.08013115497002456,0.00265591624328391,0.000368562956431272,0.0006182680252582759,-0.03002580444050696,0.1333464005638649,0.028052117203988883,0.00012896894596681159,0.016113199761020755,-0.002460573631006262 +2020-02-17,0.005946423614853268,0.03540565669533052,-0.04020838967593108,0.0001776109652183673,0.004495382477935351,0.028284418732638407,0.10316522838601411,-0.03128613706015648,6.578463065444794e-05,0.0020837280444854023,-0.00457117126731127,0.015380918819460673,-0.02084350112318668,0.00013748091622388462,0.00504034775791729,0.02099210822494406,0.023507448781879173,0.02680335615838112,0.0003013827660637926,0.004330062720391463,-0.00677968529608394,0.017005928172881924,5.12488703804317e-05,0.00020859647580396905,0.012997170023362759,-0.005811727994859324,0.013954397410732422,-0.000792909162870929,9.093706485629873e-05,0.0019907915904851707,-0.005518216576114097,0.0212470029524849,-0.01086912442502641,7.620630742383771e-05,0.0026254555279077163,0.002983994807055192,0.021847616844630425,0.0007302994947852128,4.683738144330993e-05,0.01040470304226173,0.004962403615867746,0.003762429037590617,-0.00011180998730886251,0.0010171114742236408,0.006401964539794771,-0.022917758086852574,0.05020276907444564,0.007588979307655089,0.00015962699743186977,0.006277692940025758,-0.02338883135560376,0.01814398314755968,0.015152297655026202,0.0006300866046991231,0.002046588543322584,-0.0013806931998276604,0.01984992246808087,-0.0016426329743453347,2.0728179483354254e-05,0.0040990293008382455,0.054326804506444774,0.1514067920123532,0.08328706989217666,0.00010659082920546358,0.002880685752241612,-0.0012338460968028965,0.00650942109530703,-0.00449960232378556,5.335565342183266e-05,0.005496506829529369,-0.0545643986220313,0.043754795799959625,0.1045481030430647,0.002432241443399336,0.00914735974693216,-0.0167590466059241,0.11790457874943655,-0.014649362722980666,0.00011696899151296659,0.020385660378615972,0.009866118236093324,0.059665438205040375,-0.011170583017449035,0.0002560540875259577,0.01604488078664044,0.016593355079300265,0.11908400155327624,-0.08298641737732748,3.925018815487179e-05,0.021384607098016224,0.006677870242186489,0.03819304660790471,-0.03598725581438131,0.0002881645020700516,0.014654250717189538,-0.0952908423964929,1.2148893722094576,0.17322972622136085,3.254952570384371e-05,0.0024718127104897294,-0.0031611051346980995,0.026372416110260623,0.0055610003280433026,4.004706841908576e-05,0.002157337904623162,0.03752740744973319,0.10253472143937252,0.047316270827191434,0.00011789635072844041,0.0011707752195460328,0.027607738680012928,0.19536764565411344,0.01048715234211324,3.264153462378238e-05,0.007611805309026538,0.007353348775808562,0.021318992578354953,0.022387791371009318,7.647084150947608e-05,0.00195066263479863,0.007592040304369758,0.029604987710559926,-0.034535015140901876,0.00011725792792553297,0.0038999934547617153,-0.02942835128919063,0.026897392628393087,0.00253177484045491,0.0006253617445290555,0.02947572137520582,-0.008457463533967709,0.030893556602574458,-0.019725667222203196,0.00011522805570871835,0.0015767590827713259,0.007127379705069407,0.023209311095266007,-0.07040769435524705,0.001971000892645848,0.03775146084429988,-0.05653397718771804,0.5485512910815141,-0.00297156045135754,2.6501746353131207e-05,0.0037019438773098386,-0.013397476320629004,0.03864112472841849,0.011523476086087062,0.0011335599906336568,0.026216003073136995,0.04361131883796723,0.2769476954049625,0.092591487923925,0.0001048641661802437,0.00473441395635246,-0.02140638348305507,0.034363247228326094,-0.09966725961156667,0.00014702611813314484,0.013565282614000806,-0.009281763015519796,0.013165682151640925,-0.006727691131517246,0.0004046606953332228,0.007413894745650027,-0.006522446487256872,0.0253238659103027,-0.043326871213426904,0.001996323230627272,0.011113079104939978,-0.010764618673549614,0.03847664158834306,-0.022731088070248488,8.976186398045903e-05,0.004578971685522554,0.03402151900851251,0.04805749836980968,0.026681741673045496,0.0017598260099349046,0.004192327268035035,-0.033747566292056025,0.12529206603927517,0.029907167101016492,0.00010671732360442336,0.0076963917073797775,0.033364796012688186,0.08252741165957858,0.026638723020848475,0.00016388930959223115,0.001095738990773397,-0.016081642641478596,0.06314711206687691,0.003124575944454308,6.215711357176783e-05,0.00354089332453841,-0.015782000981064272,0.050952954356147453,-0.0021401102168853983,0.0029356937865323853,3.970110309678876e-06,0.07001365185831278,0.28842944664779424,0.1693196934078681,0.00012074904500845195,0.01921926909340805,-0.0432265307129786,0.2037132929467962,0.09602413089421595,0.00015388340823499272,0.008029413984146642,-0.004925240369739623,0.026649874518145066,-0.015572419731012734,8.741399337387559e-05,0.005424658844883094,0.00019203027407680527,0.0009451787395554549,0.0005622894279991588,5.106262681146422e-05,0.02388849964302266,0.028772162302498534,0.061762936522052996,-0.018054276003307616,0.00022712971668299755,0.006914816407785731,-0.017671385803800174,0.05808167371128912,0.02778305120861514,7.565643301803633e-05,0.007877181035038941,0.0077266612466645465,0.096101687068566,-0.01264815100175672,2.0743982908746e-05,0.00011918930771306717,-0.00034529833323759535,0.0011226990827880796,-0.003061008209628475,0.00010750782574518345,0.0052562418948670355,0.025055454552417988,0.08464184563286153,0.028761536574386834,0.00046660042743453277,0.0029408915572942023,0.010379284630647082,0.04224291304612378,-0.04175108807369903,0.00014072956929228104,0.02050912666000794,-0.0008441935114392008 +2020-02-18,0.006620556010947265,0.04627533088453949,-0.05242576673405198,0.00015129741754812878,0.015814553344546477,-0.01610566491221889,0.04735201777754345,-0.020135201900519515,8.161137513100885e-05,0.018503271688001303,0.0010263753565676434,0.0034865332733180258,-0.035081126378545026,0.00013617883243329223,0.01827355017815275,0.018278481592224522,0.0172623511465365,0.006987008187410295,0.00035736171637460763,0.011896243421481118,-0.031722124025642055,0.07686731902240689,0.035318887794242866,0.00021593264127964387,0.0021643808232991264,0.0016789816907662137,0.005438512865359696,-0.01685816154668926,6.740817042333441e-05,0.002284440221997542,-0.004161942750218244,0.018552705072031217,-0.019632280076495704,6.582315827098173e-05,0.009507721484826374,-0.008404886282014426,0.08046601982628099,-0.012750143292201924,3.5819369447720216e-05,0.02902741977984474,-0.005665628409572918,0.00407985045139625,-0.003115471774302799,0.0010708992875165066,0.0003669821299809046,0.002141052427359788,0.005624859271003133,-0.006649828050882201,0.00013309983803895406,0.008463934702111542,-0.033283979234731025,0.026927072120978595,0.05292157170105255,0.0006041857347897642,0.01787609189235018,-0.019775485930852467,0.2117943673048589,0.032257997033449406,2.782502399753188e-05,0.016090997310330153,0.04974343040939108,0.17111938209747093,0.002633064908654161,8.635501547103803e-05,0.02137716569087058,-0.031313713354625496,0.15115534599174174,0.09351457751390257,5.8314006155405386e-05,0.0073109202191913225,-0.04134992980590219,0.03042023772000801,0.0363656088167759,0.002651155159576898,0.003560227732934975,-0.0016298400186565455,0.010687407169918606,-0.016488458980161033,0.00012549451064700027,0.005544739216728176,0.09337987310907997,0.5201828098802781,0.05925802914066824,0.0002779748567520806,0.017351474731714157,-0.0010571932808343687,0.007265977385131881,-4.132609083859592e-05,4.098465733794265e-05,0.0013437634371769884,0.051319249927120725,0.2801400504685575,0.06319439945106255,0.0003019200154711814,0.0021226081107027783,-0.05942064616880732,0.7606775683380714,0.022733594859865952,3.2416564907136866e-05,0.0007689124142591002,0.0033096720390519865,0.032797861482609394,-0.0008836264893163713,3.3714843079523175e-05,0.010205714542601179,-0.026182535965455014,0.07388264014009775,0.0266669513539704,0.00011415424298209242,0.006288938413537923,0.022286672838859507,0.15993025938796582,-0.03250365570332902,3.218896200744263e-05,0.002817859072729829,-0.01837491195991672,0.0616804033680963,0.03630769761914205,6.604735711973283e-05,0.015649183089661994,-0.023665189064665998,0.09397892077980614,0.12074877219587554,0.00011514050253900012,0.0030848233762325716,0.04258793511373753,0.04826852685498932,0.017866132348670537,0.0005043106047017587,0.009174347379403527,-0.016325189788167598,0.056662612868783664,-0.06876743616853923,0.00012126840089149709,0.022114470931920066,0.017701050495294173,0.07181136984399265,-0.02849265060096665,0.0015820674833013331,0.010392783644469912,-0.01970568117233374,0.2019795850958434,-0.012818209671914013,2.5088007532392327e-05,0.0027369026226688143,0.06860466662354509,0.21615755914202403,0.07319138158581118,0.0010376586253202928,0.04981080524447534,-0.015829330986263334,0.10338841834591493,-0.11724788236497222,0.00010195682714160002,0.016227622243861678,-0.00922859967690788,0.015938536706495827,-0.009009363019047877,0.00013665727191438046,0.018908970783144994,0.0158976589593399,0.023343218085344866,0.010492041426995771,0.0003909096238269065,0.016841215353975716,-0.006590731054486492,0.028701672439660188,-0.010309745213267598,0.001779822642075629,0.00365862439488795,-0.03564429224859246,0.13955891023207576,0.025992592640056,8.194506360795375e-05,0.012398404760033654,0.019672586998856663,0.02603746080647888,-0.05274981887943647,0.0018781922196514607,0.012469501893638714,-0.020259298141882362,0.0691353309346531,-0.002952963918357088,0.00011610218314806671,0.022077639179147634,0.03351161211682128,0.08961874810930533,-0.05832415672396747,0.0001515852079174115,0.016139965505608655,-0.025886644856518537,0.10396969823613919,0.01395387810838859,6.076911437385724e-05,0.0069397778898124055,-0.03081456160928105,0.10218762876307588,0.007807703598610215,0.0028580888777793305,0.009047189501694324,0.03131661979342137,0.1774983013951432,0.018248782678140858,8.776497815060307e-05,0.016561741463659362,-0.05212865025804923,0.2905181184285932,0.10308042278602302,0.00013012598853197663,0.014678182672693049,0.058497820379865235,0.3829036794916002,0.15361254601593785,7.226014749015722e-05,0.01076454635397716,-0.04701623929000578,0.2453522956329732,0.0791449708516897,4.8162071395152245e-05,0.02055883178514705,0.03312786471551729,0.0599760027046472,0.015888443063233747,0.00026930556049858045,0.019496286856742515,0.03883752783347918,0.138262988138863,0.09884976749445806,6.984897135501574e-05,0.0003992722563247325,0.01904339029195918,0.20755625961011154,0.020987246854602223,2.367225978048691e-05,0.0093638722789642,0.02419912677721677,0.07043551369978057,0.061001498022880636,0.00012009280064882683,0.005238644194743142,-0.001484575518049938,0.006963646127180291,-0.08176601440129987,0.0003360420085889334,0.0027133929941547683,-0.010642715896765081,0.043718762562240845,0.008256828386067257,0.0001394300567100694,0.002499336967879298,0.0011200436985504302 +2020-02-19,-0.02610499955320871,0.15245644447929924,-0.003943977028120269,0.00018107749875299504,0.008704336558327438,0.04529347592641333,0.17767732650781137,-0.02386780602794914,6.116657549108227e-05,0.013976208959667629,0.036978560300477664,0.11227341908259417,0.09666517148811235,0.00015235975113621797,0.005023247269969852,0.025212144893472843,0.02342898111829875,0.021544706750195423,0.00036318194344041224,0.015259796229481242,-0.025033835516386774,0.06285292785125239,-0.005355861162092654,0.00020840093045808585,0.0007782108135797527,0.013034166277843843,0.033882591692786256,0.00589679128357042,8.399498842016842e-05,0.0004297588484848424,0.04978700318794166,0.17726507710627323,0.10801517645252078,8.241052047781592e-05,0.0011674028106341068,0.022891073174880063,0.2052754246035704,-0.011085755342991402,3.824087395212343e-05,0.03251726541651445,-0.01420143059594352,0.011994997974575813,-0.056443493596843704,0.000913012457698497,0.008354700233996225,0.03450096778379273,0.08780361057721822,0.040763679204461854,0.00013739811958913143,0.002268619297305929,-0.006686701363418068,0.004746541250687418,-0.04392012546019597,0.0006885873280503438,0.004189323140090455,-0.012813364288317036,0.15851743327968923,-0.021771518628699665,2.4088454191989625e-05,0.008604452764453497,0.05844073769028052,0.17927688916292872,0.06847376737836218,9.683724370550553e-05,0.013729205319181743,-0.0012770405789960986,0.0065620585089933925,-0.02395395770589904,5.478055368840564e-05,0.0014470233124774276,0.0022425300595739785,0.0018377377359719864,0.003340135699381818,0.0023800041402344094,0.009144856200403513,-0.06996448340008686,0.4372528198928212,0.12096018368474075,0.00013167311825521352,0.014994002518010153,-0.027782090172115925,0.1710993620257028,-0.0649137057067931,0.0002514344363979105,0.017896657303332238,-0.006052066869972663,0.03429331091781598,-0.01712728046610093,4.9711315616451315e-05,0.038295715444778056,-0.025308078379554722,0.12720731265933416,-0.006726725960195435,0.0003278943250627687,0.022585839759155738,-0.03627447421166094,0.5201827278514598,0.01856960943277421,2.893846092230891e-05,0.008687585376896047,0.012235982738513704,0.11057826311479414,-0.0745213084737659,3.697011492809541e-05,0.0016320398232027656,-0.023906914183756962,0.072889816958576,0.007043294308498535,0.00010565241261486057,0.004334201406747523,-0.019885095054595507,0.13738319394572165,0.00990183623031341,3.343385376607222e-05,0.03341166120767964,-0.008454571637003526,0.024022337579550457,-0.009749294498925027,7.802858385255186e-05,0.001259818255099286,-0.005575204316522675,0.02158809937149269,0.002520644204815351,0.00011808506551426497,0.009954410510160076,0.020879876022328013,0.018423024114344558,-0.10271523317909212,0.0006478024056709283,0.003891598163731409,-0.03590797389095567,0.14302240286957932,0.044256885680049866,0.00010567514188519834,0.010151876136145656,-0.050556209634840026,0.17474321951468277,0.012690409669477315,0.0018569206579102408,0.0018057940720861234,0.051615614463989226,0.39509616577310086,0.08281717731079401,3.359390440342611e-05,0.03925056566196181,-0.037950701602465324,0.12414703493845128,0.04822737611513482,0.0009994353984484233,0.03012803578813173,-0.006445140476997703,0.04716167210478464,0.0017924549327921562,9.100575066995839e-05,0.00554084603098624,0.027482858792193143,0.046425615406280006,0.04042084964237673,0.00013971711950715214,0.006603450854881121,-0.025230813440594642,0.034790460826034805,-0.003971094774579157,0.0004162698771508741,0.0008348474572772691,-0.016064965765922427,0.07827355031449922,-0.027446120928846265,0.0015907982797478625,0.006924883326401437,0.017712984307073222,0.054647959904942305,0.01330513157687925,0.00010399396922116436,0.007906083789541834,-0.016153338184314525,0.021889549504053835,-0.03234171895147029,0.001834436375779841,0.01695771020020771,0.008476742972857098,0.03160916720071079,0.0006362548539837562,0.00010625074837768287,0.009905857227375275,0.01947349990210665,0.05066048021437942,-0.020970239905777576,0.00015582426484442205,0.02152661606516723,0.010286462456083414,0.040690888344552464,-0.0895561673098045,6.169966401331984e-05,0.0009073167151381193,-0.08471930400929586,0.2637883317949462,0.05520781287352786,0.003044001456008574,0.020784202765723677,-0.04074986162430388,0.22783132435066258,0.045969809483576145,8.897198385723262e-05,0.0023006023227743894,0.007865226914564103,0.04894918394274125,-0.071959455574,0.00011652700525768994,0.013016598092528054,-0.03946176239952064,0.2324663061749516,0.045351418239643525,8.029068465223758e-05,0.024572104673960257,0.08985844964432793,0.40728250259280807,0.1772931692080606,5.5451150790576404e-05,0.0023116712622066127,0.03372004196479605,0.07648885310746235,-0.017004354023263887,0.0002149410427521512,0.010948233134403849,-0.03365050261451797,0.14947324728655806,0.07426125875927868,5.598123325291309e-05,0.0032672977885692097,0.009746420332868003,0.10176066182524089,0.0015417393805124806,2.471135159006063e-05,0.006377111888726925,0.002795739720400459,0.00820350620593808,-0.030530789435161364,0.00011912589877331377,0.0015757508111106028,-0.0009886178602421713,0.004480873944697671,-0.0002004114500486445,0.00034777126610134157,0.0049609404438103796,-3.010112258582301e-05,0.00013075667081707408,0.003489595598544661,0.0001318531877151359,0.02682686892032247,-0.0015646810220603905 +2020-02-20,-0.01085718672232508,0.07864769817847511,0.0047240139723492254,0.000145988240518697,0.003606029913709655,-0.020633719486494954,0.061331328966736945,0.0009053168690749704,8.072455753857277e-05,0.017743502098045365,0.03867148131362293,0.11719081105939605,0.024824372411929838,0.00015264917188656738,0.002397281168429434,0.006825255397400189,0.008007140789648832,0.0008024905633009859,0.00028767975395421503,0.007149095606733768,-0.03130837229252777,0.06968015407739159,0.03390724157855015,0.0002350981217280709,0.011314705546986114,0.011008796648149195,0.024801367754091672,-0.10386917012186149,9.691945365968736e-05,0.014018156715860455,-0.006731283013740213,0.024528447055986866,-0.017342336546979285,8.052257467408627e-05,0.008641550357179872,-0.01487711751938909,0.11951641498217079,0.02554290014151529,4.268643154145308e-05,0.004261217681812755,-0.0051203411944001275,0.004559597172593369,-0.030188458519973094,0.0008659986443014729,0.013149886848258133,-0.00032210032044069635,0.0007219690645965548,-0.007784834263467522,0.00015600354030429468,0.010400906605881869,0.001352907599978961,0.0010972724818396665,-0.0014930426553592113,0.000602667826050022,0.0033873057951600226,0.01901761220065437,0.2914826507537871,0.03576318179809782,1.9443124910314686e-05,0.008877986083258859,0.034534136570760626,0.0906068880237147,0.013614654648368057,0.00011322398225685658,0.01692891087420502,-0.005860739905491086,0.03526519977936295,0.00012389693571169736,4.678082947345685e-05,0.002016793706847681,-0.037951718592434756,0.029605069234374136,0.03516911247172141,0.002500278225080293,0.008268587860973514,0.0382066615122403,0.2726678222809988,-0.03829631715508962,0.0001153074343608916,0.0018310837112065393,0.06683926876853366,0.4268442739383351,0.04408422035386635,0.00024247695084746987,0.007325758106399638,0.0242870927626093,0.15230600333840455,0.01028648307688657,4.491790224100689e-05,0.012103605222307887,0.027923412785773608,0.16407812153015125,-9.74240050791045e-05,0.000280481763016837,0.00886916111862043,-0.046567029148191726,0.6996629725645794,0.026273908556493527,2.761975821311117e-05,0.03008064202019151,0.03555545397926147,0.36305425533964153,0.11367120573161443,3.2720234368906266e-05,0.012948657732623737,-0.00948724304192076,0.02488975431413304,-0.037806987500993,0.00012278411165865224,0.010333754092643444,-0.02327070752306741,0.16409162546890654,-0.012670264450076763,3.2757861831583236e-05,0.009683963590995494,-0.0010720113968938282,0.0029667040155996554,-0.0015472229593859119,8.011292072375042e-05,0.007330570486276294,-0.015362241441159009,0.058415584493850384,0.01721469140076616,0.00012024705687308254,0.010030443626742668,0.04165591263008747,0.03866495480976859,0.00827398770850302,0.0006157929439327453,0.03727566146967111,0.03822767472665105,0.12481245700778239,0.11899186272474466,0.000128915743733032,0.013220420146163534,0.004551480886759938,0.012972280308872153,-0.0089310745620385,0.0022519335620703124,0.01779984358205535,0.03206588398010868,0.3371246936556734,0.03914333301371081,2.4458783190424415e-05,0.00028189840948507263,-0.05067630445729455,0.12341972598392584,0.05728404360574006,0.0013424299368817436,0.028181716596147786,-0.04414676609493958,0.34799853690088506,0.08118873582802527,8.447868027402769e-05,0.020243936229364375,-0.004564056717223108,0.006457275169494151,-0.06457687881049451,0.00016681961910190122,0.010762706483916064,0.07428264781174294,0.10611975611761777,0.17617534545865596,0.00040178622800993575,0.010704608568564578,0.0118817533864349,0.048616517691959356,-0.0184550757660208,0.00189429244551317,0.012907871629526654,-0.006348666973934497,0.021928126969471683,-0.0736054832654709,9.289051688315376e-05,0.00731191460356298,0.03889648108665155,0.05129579665197826,0.03680461130987506,0.0018849755694125931,0.0070558391012014365,0.03346709742822197,0.10796040937223042,0.040844502538214617,0.0001228201325774984,0.02143534099167407,-0.006671987276932315,0.016960848998614293,0.00246957793664156,0.00015946596226672167,0.035820335523411885,-0.042793859223461087,0.19693490660951457,0.04455555870285272,5.303623390057201e-05,0.0198657731159096,-0.01642700984642991,0.04618365577813894,0.00029534920968583075,0.0033712291061725364,0.021368349987104487,0.003096928456474105,0.016226071142888134,-0.007362890479917639,9.49419981288488e-05,0.01711879546293748,0.006538738499377164,0.03832272835639964,0.004740170343563918,0.0001237366439887172,0.010976298886270091,0.008671831220175305,0.04379541688792954,-0.0018910049336717642,9.365497463928769e-05,0.0007533084397768583,-0.06081059075596464,0.2936931563164755,0.06886170489725582,5.203946112285602e-05,0.010701335819916776,-0.05430551380688797,0.09935383156491617,0.0413343021732299,0.0002664947764715598,0.03309746367590232,0.0095916555811394,0.03768315179584306,0.003727408625676631,6.329373607339049e-05,0.0015923347548606511,-0.020992593610427792,0.23210920885774702,0.004623647150523345,2.3334849953281223e-05,0.01422561103818814,0.0094184742839553,0.03149692855952796,-0.08164019066473226,0.00010452527419485423,0.00382372030275528,0.00586761099448213,0.023626465353431075,-0.004855185314908305,0.0003914628295182284,1.6744646608453373e-05,-0.003946904455989655,0.017831933508201205,-0.06818254705913615,0.00012677393573143052,0.014798460288522934,0.002293738050044154 +2020-02-21,0.03359946352615147,0.224567669554511,0.0922613959492863,0.00015822375787458363,0.006158925229958264,-0.006817837946112266,0.02012579222443566,-0.1514925998275201,8.128384069541476e-05,0.038260722717636975,-0.049108634865984234,0.13999869975888463,0.024892685661749975,0.00016226732021084605,0.010074689337475004,0.024115915792753385,0.02568582636782473,0.028582926394036944,0.00031686777374025294,0.003054393451967902,-0.012593683696110958,0.029382096878940424,0.005394836895504438,0.00022426823609354618,0.0027680855232505904,0.010298729308595867,0.026283383823125242,0.005229982288804442,8.55557309215908e-05,0.0048404964705483795,-0.054811431187050334,0.23468087831009457,0.09070292658365527,6.853040405219009e-05,4.53817439926966e-06,-0.05207647576803893,0.5040972454655732,0.09293294862507347,3.542630653849095e-05,0.016255334280732624,0.016012039746827186,0.015619874545102124,-0.03431229511794199,0.0007905218980265463,0.014588626604512173,-0.04530954933101376,0.1273540955567772,-0.03560522233063083,0.000124405251338483,0.0133823903770671,-0.006116909153612093,0.004263131188067627,-0.00466306101921412,0.000701338518348817,0.012170558401360006,0.014488731112974825,0.21620746207892858,0.01782651248475372,1.9970202248953194e-05,0.008706241184949642,0.020000381365996273,0.0506659028258321,-0.006748754215684079,0.0001172663827355996,0.0050804779665205805,-0.002548692846496142,0.015008033854733968,-0.06219497451685322,4.7803040163933434e-05,0.005633772000385094,-0.03672793610950526,0.028105142184241896,0.01338270164609078,0.0025487879786506235,0.011398018046598853,-0.03325465764867818,0.24898854060833273,0.012571690805525317,0.00010990696853713947,0.011061464740705058,0.07136163661865019,0.37806273666391743,0.04313082557827969,0.00029228677125559953,0.013003215205168119,-0.03125138055595779,0.18940581324086617,-0.05765644077489922,4.647686855779134e-05,0.041789050045470504,0.04476203218207366,0.21939668455681666,0.009856997092376604,0.00033625328992547236,0.009532895335722692,-0.031330335438024694,0.415187959413197,0.010183295257498481,3.1314863689673856e-05,0.005705233252191551,0.016606614857413077,0.151173268558098,-0.08257583402106737,3.670183846809651e-05,0.0022474508187781614,0.04413405858025996,0.12123566885782447,0.07015243229740234,0.00011726440657593727,0.001754412081051788,0.050815792571962504,0.3340318806247214,0.029608309204185102,3.514011359443461e-05,0.019631390998923463,-0.011890630708056692,0.032149418376771294,0.012940138739959844,8.19991127371872e-05,0.004264862265531944,0.0027617953143273827,0.010859401670952028,-0.0068238049880217245,0.00011628780868925597,0.003917542145341164,-0.007232504335219555,0.008701022389337754,-0.018759019214330132,0.0004751097882130427,0.014030670894140274,-0.015567045156381194,0.05812808912688132,-0.008443793330313318,0.0001127213412866435,0.005411247973886877,0.07216820327945457,0.2394100115841059,0.12559267587430986,0.0019347406661082969,0.0356798650126802,0.0186955145791804,0.16163775282257484,-0.08971044716103212,2.9742455093553053e-05,0.019177475003960283,-0.025533259750123705,0.0807515291517064,-0.09192711859711607,0.001033776791671164,0.01687592373560535,0.025589836268600504,0.23931659395818042,0.027830471374146706,7.120661439732647e-05,0.01579441124766127,-0.01698876822788938,0.023266794951191595,0.006585396305775769,0.00017233389954858042,0.004839960516714707,0.005348813129578474,0.007243475384490511,-0.0021494402844609213,0.00042385211100668616,0.004781017854224108,-0.004523990506175962,0.015930885367003943,0.0014054364647034991,0.0022010611758790633,0.005956514790358913,-0.014143803811598103,0.05194382083264618,-0.16277712089418642,8.736202700931854e-05,0.005648273835213519,0.0014853946099032682,0.002058405459284889,0.0003860835293411995,0.0017938582009920099,0.0046010535633012085,-0.015957382723078478,0.052774467876575845,0.0019895681963466045,0.00011979917707327494,0.010130396316204732,0.025818580782722377,0.05811607451616562,-0.012354453490994965,0.0001800928496522335,0.011836558272901808,-0.005298684147407812,0.022888407560957526,-0.06447751269702885,5.650233283470782e-05,0.004206861714455348,-0.0012354564518005852,0.0036234133432964167,-0.028227710249790275,0.0032316745667435756,0.024773862412379746,-0.0026009368833907662,0.014354749832274574,-0.005177442408594365,9.013111751941206e-05,0.003246504060021038,-0.012711032816455053,0.0727237266148814,-0.09925294912104814,0.00012675511651752028,0.0011763893292577022,0.025612038564362213,0.15485432873525087,0.0037127654420843524,7.822930930903293e-05,0.008818594266774131,-0.01732899177674034,0.07420355373684129,-0.016819385189070307,5.869430785638361e-05,0.0007449900072094904,0.04332160403820189,0.08113334797638584,0.04712797531742979,0.0002603361782442296,0.02062709534510837,-0.01057288411308617,0.04403116168580378,0.006115797561225572,5.971008703183784e-05,0.001747967204159056,-0.02900077422662418,0.3250996944824631,-0.08756392697915821,2.301570680148017e-05,0.02139334968054112,-0.008697856822404707,0.03309845120718568,-0.04225484269465865,9.185727270375042e-05,0.0008954638573768336,-0.022445165398310672,0.0867421154315566,0.038280723103138146,0.0004078690690571191,0.006425754739787644,-0.0011889968958545996,0.005586248583920185,-0.029039776991937372,0.00012190801483158476,0.008060475763043848,-0.0002206883964433083 +2020-02-24,-0.026629729305916013,0.14425002336892773,0.007623119041944311,0.00019522590445932462,0.003980204918455143,-0.031066506015255964,0.0960272076151879,-0.0030841173905722893,7.76262556557617e-05,0.025123017244525404,0.018504642905942455,0.06048148119728563,0.01648437044680854,0.0001415322772988338,0.0009843499475834057,-0.007088801343896195,0.007483293053876986,-0.16821526182471153,0.00031970388161100833,0.008435771846210784,0.012015147046015872,0.026101697005079215,-0.020209828467558102,0.00024085635993719638,0.026284887816401162,0.00846708156245561,0.020718410138346133,-0.0077355162314475786,8.923270473130587e-05,0.0034918986174987668,0.002812128759787064,0.009703664837478733,-0.004131954534817228,8.503334617935837e-05,0.004128579893749002,0.00614851969398912,0.052017706320590315,-0.0030629003084115007,4.053386199409249e-05,0.007510121664140395,0.007605009536509616,0.005194555014146751,-0.011203023586187789,0.0011290058688164372,0.0033357394722939703,0.01087453308333699,0.023024537982747884,-0.0036499516890860827,0.00016515114193813984,0.0018716730877906414,-0.03061591227028195,0.019593060421316196,-0.0859428001948235,0.0007637817644557125,0.0005190283541587361,0.012213471684971213,0.15090571402148736,0.02358487066729937,2.4118829906168305e-05,0.005777017567436843,-0.023975541868293485,0.06610864915955116,0.021638046027245613,0.00010773608412231552,0.004058581583525663,-0.009796604280490194,0.04915620568650776,-0.0538913246286489,5.60995052609286e-05,0.006892144100513082,0.001149095248554922,0.0009883731863361458,-0.032367119160398326,0.002267556131991566,0.009089561889140499,-0.01979887082192513,0.12104868923099502,-0.010347378960759436,0.00013459608842626017,0.03381355643162261,-0.038419996008549034,0.23441071062961413,0.0022081302042016096,0.00025379794182776313,0.02582967270043964,0.022273706418428466,0.11339680524798226,0.009515328231149473,5.5328975391971256e-05,0.009739479118799597,-0.03608498493362914,0.1872836649043053,0.025875265336112986,0.00031755096466616866,0.0018266832745660148,-0.040254051623276464,0.501467569297836,-0.010196407197472572,3.331171396529051e-05,0.04311711992651061,-0.010871110786511463,0.10668567176805221,0.013920606186028032,3.4044701799890955e-05,0.00861313860472115,-0.019645892136446227,0.0677648815988221,-0.00759989404399331,9.338773176603356e-05,0.00977260884650681,-0.017353727666654783,0.11613809043113303,0.011468256443272892,3.4515206245403315e-05,0.011410659002381595,-0.023742215704815346,0.06609316259472943,0.03894711833770038,7.96419885202257e-05,0.0037548444799142527,0.0011267157439355492,0.004689728183949464,-0.005449001481177,0.00010985385117570996,0.0008456702942261611,-0.01705794639548714,0.0176901099505613,0.0005659047651756638,0.0005511524908402959,0.050075308551959075,-0.03572357112923009,0.14537284439892345,0.049484848959417925,0.00010343263482155529,0.008557994332924338,-0.03162046164384485,0.13060429189586345,-0.034570677516620345,0.0015539245639973791,0.011816985481087759,0.009086433683970836,0.08794023675158637,0.004733541353710647,2.6569784139861003e-05,0.004684614336512143,-0.01530673775772389,0.03919019680122022,-0.023397224871512343,0.0012769575702957657,0.00122074190253462,-0.013039479155820766,0.09577873393286995,-0.01616774062844974,9.066022566366198e-05,0.012951388852840612,-0.017470657711398954,0.03301376543748084,-0.03732394872248757,0.00012489917795238374,0.014474952664798146,-0.022223978306813597,0.03147513524328954,-0.044797617812336286,0.00040528274448980387,0.0015799035446004458,-0.03315145540869682,0.12770338098126202,0.05090133852393279,0.0020121045593412944,0.02792489737888694,-0.04193138158327738,0.14719582811186296,0.06711929607652427,9.139744205086087e-05,0.02598833257315001,0.009534644618048363,0.016400355433412596,0.002827566775931118,0.0014452016270923747,0.022634380260665495,0.0003378722457609222,0.0010617720141476135,-0.0004902730690423384,0.0001260774106585784,0.0032136082971170625,0.010830666445788619,0.02591029847216576,-0.023817461680346992,0.000169450611816967,0.0020779235077220152,0.00491585483894504,0.020047378354051033,0.00252818993406509,5.984879189662346e-05,0.00023433228884311812,-0.05184116442456838,0.1442295693589175,0.01810714190892881,0.0034067361500198516,0.04877289986385496,-0.03334607315847399,0.16666876639600764,0.026306435072478117,9.952473923483837e-05,0.01628769075651945,0.01711173065032267,0.10624836068013195,0.032670974029554774,0.00011679721357306878,0.01164804625620521,0.012336776102567067,0.08148839968079498,-0.002492400119862093,7.160685383071763e-05,0.025305742015946278,0.009395514247698944,0.04571904944127874,5.342818638713412e-05,5.165005140564389e-05,0.025000607809569017,0.010348542548106025,0.01967271719807507,-0.0013635388918097895,0.00025647452538816686,6.0527225364299594e-05,-0.012405408787176525,0.04987279358048937,-0.012467754605153265,6.185314121914522e-05,0.001993244230113654,0.018923801398848247,0.23146243408550948,0.029257591238007363,2.109401017388159e-05,0.014016320013036798,-0.0046022055995561155,0.013715072215449297,0.0027889439096273577,0.0001172942931339329,0.008294512711013802,-0.006462425921176406,0.023031980613614063,-0.10665389400397965,0.0004422748688731082,0.00037455525868829295,-0.03546430959755928,0.1907347104199402,0.05559761891319921,0.00010649606752089608,0.00632632897326149,-0.009826526195449777 +2020-02-25,-0.04874374942753178,0.3728227671926377,0.15887651648128823,0.00013826208154209336,0.003452855244479412,0.028587769216551893,0.10315884470175345,0.019095445173077038,6.649428558486067e-05,0.009890516008007793,0.0060614698047451185,0.020426112050067217,0.001271517717561086,0.00013727436410470003,0.0077550693593210224,-0.0032916393339349525,0.0037311861532939774,-0.10223790808544797,0.00029773725674995155,0.008664927553307934,-0.01713985561598269,0.0422544140394589,-0.04375430265470581,0.00021224274209641025,0.009747205602348017,-0.0181125224774713,0.04855161829992875,-0.003138212380175373,8.145579131701724e-05,0.0054663829347363435,0.05557557302603492,0.17707875751431082,0.10922912501027045,9.208891125481865e-05,0.01247891536315124,0.0015628915425155959,0.01640630042065736,-0.07690400692299837,3.2667567393839606e-05,0.0006080325758101959,0.015654472644850995,0.011387843529180193,-0.07100777469780778,0.0010600875582512722,0.00531533038180912,0.001001625252884636,0.002042925856362682,-0.08958516439376585,0.00017144094292591706,0.0058996902576347165,-0.03348706203477186,0.027267841465868112,0.056263480988054906,0.0006002755364821163,0.0035147776785441386,0.018193481724467556,0.23731579211675619,0.031601434694782875,2.2846094511706198e-05,0.008914400940549135,-0.018009883562720992,0.04784191502762719,0.004114098715778869,0.00011182872864262287,0.004191723538927742,-0.01725179765375263,0.08893668939579782,0.025578090483618702,5.4602837873812375e-05,0.00595680310898691,0.001606237999726126,0.0014455002262531,0.0045325010784273406,0.0021672784099345333,0.0031897213513948346,-0.01532883446974138,0.10986775244765155,-0.007627192182024091,0.00011481298333812622,0.01951522463494986,-0.06195299977037953,0.32409558545237876,0.031087953163702768,0.0002960039157368211,0.0011629996175323719,-0.010633855189967836,0.057425408220329405,-0.012036695885493552,5.216120392341056e-05,0.004430191328181984,0.002503179844518697,0.011922525312039,0.0004899359911676408,0.0003460274940287575,0.012056836185638097,0.018507509084967684,0.2546197574231471,-0.006863210780054709,3.0163803466037154e-05,0.010183262138928863,0.016526570601556094,0.1789188963611038,-0.026722187642967406,3.0860875443942056e-05,0.00022023891765101744,0.015827339175755573,0.047027666586518434,0.013578295652635497,0.00010841196958548981,0.009443611327939727,-0.07699591805500948,0.4825638994163866,0.0011396530997274624,3.685574958672429e-05,0.022845961464654008,0.017480490320942847,0.04556405496363122,0.025413594968388284,8.505671887784311e-05,0.00551303588197793,-0.009093412744658583,0.040640620730143656,0.006424959191255669,0.00010230931264912568,0.007437165290893387,-0.018623717573693233,0.016061821665816742,-0.034725819676470884,0.0006627460358945028,0.03196853358080626,-0.026893044675943004,0.11626030416313869,0.01680964610820433,9.736313012540471e-05,0.008986779476945221,0.014870062261905553,0.05006700469114018,-0.060096522849643674,0.0019062521721539157,0.018546586035615792,-0.06994685013445837,0.6792270354016051,0.09824519105926238,2.648106171238211e-05,0.02623888682395565,-0.013027143837112148,0.039465783590784516,0.006291889297991109,0.0010791945613428627,0.02201510343371943,-0.04196121275386501,0.3180634631782708,0.06417558638828134,8.785366656539037e-05,0.005534734531620226,-0.002680740767651835,0.004124703554844913,-0.006253911944819461,0.00015339367920073522,0.0001616592842857219,-0.006892519891515766,0.010795854397210725,-0.006997211655034947,0.00036645860438906175,0.018119886579964956,-0.011489477471545244,0.04805438761515621,0.001965581179471376,0.0018531798608183512,0.01792190793080919,0.018053684525900553,0.06647199354178203,0.025867601275563694,8.713999202938908e-05,0.007046318897587878,0.03504634715996853,0.05112487519475251,-0.09136320312252437,0.0017040710156008933,0.0008843004274834158,-0.019067752436650938,0.05697729123151516,0.004952200941334529,0.00013259090737633512,0.007229719624709584,-0.04249442924079832,0.10970168532862458,0.05305497261353354,0.00015702871504911145,0.014025097768053068,-0.03506057351657295,0.12306389357385945,0.03457315426286237,6.95348127575918e-05,0.002154721409733048,0.006995375990372412,0.01984661966752841,-0.11227581059681464,0.003340739198678587,0.023571427680597404,0.0047613612316700716,0.027872447129129122,0.0011488938193203455,8.497606217918489e-05,0.008437652762687051,0.021251638526241803,0.11721561643283895,0.03565197868378597,0.00013148243209836228,0.023189131644227402,0.02947603752652064,0.168885347039972,-0.005923797778792251,8.255166344579674e-05,0.006946489113176466,-0.05308757029807978,0.25926055708401285,0.04154296454911922,5.146403030167105e-05,0.0025376023895335555,0.051255016386198,0.09304618504198757,0.04521106318581873,0.0002685759986906183,0.02321303004402102,0.011733122208373697,0.04947796521279037,0.004841227682575155,5.896796482570326e-05,0.010741258388116848,-0.009924492250621706,0.08812424898039672,-0.03488832624303564,2.9056557097285825e-05,0.008823135571666769,0.017276863098373674,0.061825721727456054,0.04283231145679543,9.767977748878868e-05,0.006077523757907457,0.011273458753626878,0.043735842981874086,0.004834247871020381,0.00040630077378369246,0.009515327288939392,-0.025378228076755213,0.13054705866398755,0.022017671098120906,0.00011134379020704075,0.005320140948457974,-0.005657770859231683 +2020-02-26,-0.04284074728594861,0.3564017636120435,0.07529426539778246,0.00012711704168825283,0.009943646688188009,0.06047738712534198,0.2210595596503963,0.1172069042821426,6.564388040500715e-05,0.04013084665602792,-0.014193548285392103,0.06051814168127471,-0.020883038201536593,0.00010849322033593009,0.0013300050450092095,0.0213361399262457,0.021543346386394276,0.04130217576973455,0.0003342493280321246,0.007838857170101916,0.023966093457777324,0.05495463152190649,0.03223332113673475,0.00022818690645888635,0.005684435249616302,0.016419502611580535,0.043707668574240625,-0.10824247370680955,8.202553952759365e-05,0.004534525002243857,-0.005413053175763299,0.02132376873586706,-0.011164244268096845,7.448489070831663e-05,0.008707505114371536,-0.014113640627234202,0.12018788739543096,-0.02428066830094586,4.026956774987873e-05,0.0021784762638250897,0.0014990640093560724,0.001516453721479873,-0.010262242848977487,0.00076231734753562,0.006453245311324056,0.006365654138761171,0.012927856620672034,-0.0011152932036705328,0.0001721782931567938,0.01454403700813996,0.000470527267488299,0.0003551323221239134,-0.03881430219126415,0.0006476180630683046,0.00615020673302504,-0.021828563152230536,0.34105926131560527,0.018489113827795823,1.9072959732571064e-05,0.007566265753400285,0.030752790592409894,0.09014178123810822,0.011607148280101363,0.00010134665827428233,0.0004939538975790878,-0.011028002100431122,0.05473710560618021,-0.03607299111255585,5.6712243686489805e-05,0.00041592622878042874,0.011855153182116333,0.008244140098940934,0.011003410475157082,0.0028046894380980734,0.009153277630762777,0.014637501165700357,0.09468547768060948,-0.017027657706521256,0.00012721422483236928,0.0022972155919538046,-0.027953630070606972,0.1573124001079418,0.001869123454464594,0.0002751588516911919,0.005606819504257946,-0.0012035524574726588,0.007021544213266163,-0.025148178628731758,4.828289977965482e-05,0.011404669585194135,-0.04673490439481998,0.23056987013791258,0.03763224129692304,0.0003340608725093393,0.017291954967689586,-0.03675757697484513,0.45716642104959687,0.008081446196076293,3.33658953053854e-05,0.006857537464828849,-0.02144398939021563,0.19976001311686847,0.10055122400241094,3.5865652382374464e-05,0.002531880498471699,-0.004241119280588675,0.011284185791457164,-0.023621140239823125,0.00012106901659338703,0.01987693480727053,-0.027094436198661233,0.20524004144415825,0.017960146290604585,3.0493719475721226e-05,0.013509595500379374,-0.004927050453485767,0.0152932653066662,0.0001759663038702498,7.142728935887384e-05,0.008108816780531256,0.011050414245763761,0.046440622909512626,-0.07672976452083223,0.00010880005576925136,0.003371924750075264,0.06528887410074491,0.06140593559472751,0.07093231711424697,0.000607721201696618,0.01143389888926627,-0.01734336857656021,0.06815885760115374,0.002497400113064361,0.00010710189624064767,0.010556321464011439,-0.011612202766152874,0.040709428025345426,-0.1501489207835589,0.001830791067544151,0.015854284513010845,0.035969343114747664,0.35989873594067856,0.03297566798997711,2.570007440285538e-05,0.01105251471552735,0.025970234670034776,0.05867969573241613,0.0026703398885594178,0.0014469692120390107,0.02882079701561266,-0.012304674810268628,0.09616029816974798,-0.007103023790760674,8.52118477103713e-05,0.0009834365133034608,0.002954972646141107,0.003973097412638462,-0.004577551353563678,0.0001755373905455444,0.008492175196529467,-0.03669759305135067,0.06675111564887339,0.021072714674124013,0.00031556073973951297,0.007355589295306001,-0.010439118159750517,0.04705029170970508,-0.056460167888258694,0.0017196966060454633,0.015475107800999017,0.024220146354986552,0.10404055130701607,-0.04736120097143708,7.469034899229656e-05,0.007384816440645417,0.014015778672671397,0.022827467082372314,0.008031112447260636,0.0015262887299332395,0.013125147085993771,0.007837827957440466,0.030206791579253833,-0.0057269875839845545,0.00010280332557139853,0.006063058315478564,0.016171569743986737,0.03985795957942584,0.004401359193849201,0.00016447408984152995,0.012114908083793771,-0.03229820477415064,0.1238320035087056,0.02089629125458906,6.365894093363704e-05,0.021972344573235075,0.004178285484036091,0.011891777627469412,0.0015468882436917492,0.003330192885158691,0.0195359338517246,0.047528026285946746,0.20873593943318772,0.038255060408609445,0.00011326431933813565,0.002674547256432917,-0.01221892251583031,0.06711912108115532,-0.015176150472311429,0.00013202234254160614,0.0033078260889833886,-0.031150363567149505,0.17491528447789914,0.0252092437730185,8.423334703261733e-05,0.0038309407602996606,0.04671997647408402,0.2030147535255956,-0.0004078929491275606,5.783921767522182e-05,0.003021453329207861,0.02054324590053471,0.040773161237310694,0.007186774752441961,0.00024565413232112345,0.004236902037270835,0.005249179896403563,0.022537031650269032,-0.0707569429612538,5.791740809052769e-05,0.002416570798648512,0.025625893010415606,0.2586540740780866,0.013196742125105103,2.5561772816164454e-05,0.011642591686113748,-0.009491478678228561,0.030430612465697924,0.008675051360953054,0.00010902651938562023,0.0058391344439802225,0.025965906316487014,0.10069293810395567,0.04045653270034867,0.00040647369322147184,0.0068751428711505665,0.008564857310896635,0.03983716776226836,-0.032505587081423815,0.0001231412261182326,0.010433628924979546,0.002502040543375903 +2020-02-27,0.0009657864277380467,0.005843418196787866,-0.0716234446770846,0.00017478361327701128,0.005652593569658615,-0.05072442570972916,0.17449976498967718,0.026894532591986996,6.97481702453651e-05,0.012056369558242177,0.009068807397121908,0.035521463871272634,-0.0033322775299012898,0.00011810180300414278,0.01177056884950734,0.015131718328290751,0.017031259788992295,-0.06728014458620113,0.0002998536441211661,0.00882847558849599,-0.002713589299784791,0.0067310967553573025,-0.007664015251146161,0.00021093859892534143,0.004784719551226346,-0.015064870276894056,0.03522563472038858,0.02491895310569893,9.337987943624875e-05,0.0006761707189371698,-0.01404350135243178,0.055991166132930155,-0.04208005746554257,7.359456505305136e-05,0.016068716611120783,-0.021218716232990684,0.1832444014618417,-0.013371444287646304,3.9708822092159484e-05,0.012064355737386442,-0.01571382554118722,0.012215141717241237,0.013267799262649867,0.0009920377619361842,0.0022010055037400096,0.02745245151063035,0.06283534293278463,0.02980336204659965,0.0001527703346135797,0.020204487936803135,0.013916895271420081,0.009764768463059336,0.04511064359231874,0.0006966341611393266,0.002985336958428316,-0.00010659427623136126,0.001077518736985692,-0.06851784492311142,2.9480296264061368e-05,0.000287096777482096,-0.05722866281949667,0.16083431891551989,0.05492050464747069,0.00010570265893350033,0.007450913104145824,-0.007273675985488044,0.040072131515554735,0.0009377466929405224,5.109440255090156e-05,0.0009145565363420029,0.00540120423438797,0.004404408262986018,-0.031071388095177562,0.0023918062879844763,0.02308591159097706,-0.00495688308926811,0.029029134347628265,-0.0008231740891750975,0.00014051629765729113,0.014518343326996804,0.03963958110156612,0.2010290956362425,-0.0024679746510633976,0.00030533625132058833,0.02257538000560191,-0.01913220737658373,0.12699888606571616,-0.012005286023892552,4.243518734981184e-05,0.0285833750543635,0.026509013794140897,0.16919658748573765,0.01567650207302456,0.00025821934730689653,0.008835656303676553,-0.04507328021542701,0.606263960680848,-0.03635563048518198,3.085230698053979e-05,0.00704257768776553,-0.00618907917753358,0.07582918250009027,0.017395733802791694,2.7269135743341066e-05,0.004555929875759543,0.03530789617375461,0.08454345864161267,0.04899463518497019,0.00013452858863751611,0.009209232587242896,0.04743899539628444,0.3192627053010633,0.03354481266716819,3.432255979027519e-05,0.0017805035594426525,-0.0039337154113932744,0.010625494285022102,-0.002266568672429896,8.207883385304352e-05,0.0053962024374783635,-0.02041369519862549,0.07062695795662406,0.03318603347213185,0.00013215990591928996,0.0055491099469993765,0.06745907697811211,0.057070085999973034,0.08204261311698037,0.000675627672152807,0.0024771957900404976,-0.06666569789976583,0.29053448010259497,0.10515518685018509,9.658079099823867e-05,0.00187326327677842,-0.0015332763170112325,0.004855636489002736,-0.013826498711847983,0.0020267185193346697,0.03164989502185493,-0.042287541280023114,0.38070682190352195,-0.014960653545675159,2.8563009939387693e-05,0.0002329053175810017,-0.01431490499187381,0.03734515570578793,0.006560022997575759,0.0012532146560536026,0.00024285465354732588,0.014587267481911092,0.11121782616947194,0.006347777347282271,8.73424133196228e-05,0.0035231683728445097,-0.009062338548250712,0.01379276149222686,0.002487412582287765,0.00015507237642214806,0.005674380182597138,0.0079558325338112,0.01217302154135192,-0.037080448746836255,0.0003751380841677199,0.016516764310237683,0.012879252327284436,0.054363436245926676,-0.004889869999279506,0.0018362596574503912,0.011169292261703247,-0.049918775582226745,0.17287437271438222,0.10917469425536076,9.264536091023478e-05,0.00851929938930248,-0.044640998698599395,0.06245485208364071,0.00825993098109295,0.0017768260372849815,0.002501119594975945,0.008533193617710419,0.02500037399746285,-0.10006131561758051,0.00013523251680621186,0.011115451043793141,0.008874996672437007,0.025669139036547314,-0.028059069459263713,0.00014015780023368863,0.0029638027476745358,-0.003598948933660994,0.015756873746852463,-0.03889747695389418,5.5746750108190146e-05,0.008189843392285493,0.0440347165097466,0.1593634366803117,0.02874771498047871,0.002618934133115968,0.015694277141914067,0.01779166220381291,0.0947785644260562,0.005165929027529968,9.337851622546889e-05,0.00670435794640258,-0.029725484228262135,0.1619339890842867,0.035940183495177594,0.00013312257449719252,0.012963141269339493,0.01774913273069769,0.10212438920519219,0.01497869126607672,8.220464606139755e-05,0.001513190817990857,0.06079491139731673,0.2784289385184493,0.035240866461590796,5.4878249906338664e-05,0.02837754832963169,-0.01833726118526863,0.03542175181355857,-0.010786942246975585,0.00025240260283740027,0.005647747559287056,0.001479663458128299,0.00630803727465305,-0.004600545962345027,5.832880426329443e-05,0.008112405484046254,-0.011092686907223336,0.1161187237153443,-0.12166193830420177,2.4647097712612168e-05,0.0031844901008338837,-0.006021645807358629,0.0185584085442626,0.00310620353902449,0.0001134183801255039,0.002219477470697188,0.007851384662823303,0.0290262561210586,-0.08547135753539006,0.0004263666263252523,0.008275165458408965,-0.0235568963132375,0.10114051685320566,-0.029545296811841242,0.00013340272400569637,0.009467988782242002,-0.0018196697391465227 +2020-02-28,0.0010076557065844575,0.00753150557842032,-0.06771431107820312,0.00014148713434663233,0.0037627395721162556,-0.009934058135515482,0.038091200219882555,-0.03837455077781156,6.257668702064073e-05,0.027050244628507837,-0.05147087058579796,0.17850408708602294,0.033847843777769546,0.00013338609372747534,0.016513121473877717,-0.00487236288396863,0.005397133215461243,0.007499923266864314,0.000304680279134528,0.0047223729520652225,-0.006861583612404577,0.015184776109475983,-0.020277939585593516,0.0002364360739679682,0.02482699657663939,-0.0013762183207652432,0.003958952596161569,-0.04691402330560365,7.590209676216366e-05,0.010826269270742336,-0.009808619493266993,0.032345581961294854,-0.0004823063959246294,8.897802732788021e-05,0.009255715381622955,-0.03706008583712851,0.3165097996529158,0.05515730616343339,4.015298849408894e-05,0.01485897271656799,0.019526363459566695,0.018113578093608827,0.028658170195706673,0.0008313079001161435,0.01648798250299035,-0.014119751257163513,0.034847080887867365,-0.02550007908879098,0.00014168456100683424,0.023903461441865552,0.004573468054368823,0.0037842444885996746,0.006917133076889989,0.0005907324404190673,0.015392868109090421,0.0034946031614833304,0.060182430683376774,-0.009031519968284453,1.730417627703574e-05,0.0032949694750126074,0.04283244459142202,0.13411815711335834,-0.02258058148678812,9.487162127211257e-05,0.002946183691108558,0.007569462532856354,0.04278220093560937,0.01826647226957292,4.9803944312290056e-05,0.001834681347313292,-0.0015459336446437533,0.0012731538103146008,0.002794416042322577,0.002368279454660455,0.00722119061506178,0.02596497819509658,0.15721539716679883,0.02176216336870771,0.0001359079910173681,0.0006377250718517716,-0.0724004250913356,0.45123303462165726,0.03150206842263947,0.00024845541206067114,0.018490996377257606,-0.07267639698045136,0.4428550315343617,0.05607497783330456,4.622668613606069e-05,0.013856990427701322,0.052831807308301774,0.30316904337003403,0.05505693736316147,0.0002872085878806542,0.01721445052808682,-0.07681639004118228,0.958755985961769,0.049604774837201375,3.324880467169374e-05,0.0003295240814076457,-0.009739936820865316,0.08795349234702378,-0.004446477333560995,3.699855478976455e-05,0.0030985266977195084,0.011065548819670559,0.03078056052053833,-0.010067537495272635,0.0001158028346303982,0.008807677838762152,0.05649471250524005,0.41432753127967653,0.03355155480612633,3.149607142847302e-05,0.0011515461876988493,0.0005906832208648728,0.0017753453764026714,-0.027042732940813594,7.376479897346385e-05,0.008674111283084327,0.01727764073940642,0.06771989490443174,0.06195834866099772,0.00011665859979514585,0.007896109394997202,0.010025955262641273,0.009123186950719142,-0.009996938293520375,0.0006281375399863478,0.004762820351599846,0.015159232942034851,0.06459755419384505,0.014985724688192202,9.87750278137268e-05,0.013298643095114557,0.03149111418570753,0.10328495393119215,0.0303882931634004,0.001956906794832463,0.012210782451823849,-0.021819869806601302,0.20351569363910185,-0.03222928436172761,2.7569979664087178e-05,0.0015084917325904018,0.01864823777968714,0.053441402149235935,0.001345578597865732,0.001140857032037489,0.009955091115622714,0.006002806905477136,0.04270511298285186,-0.004342726982047276,9.360523577300019e-05,0.0009112531088874126,0.03399109247875066,0.052128995556266405,0.09567407015182518,0.0001538973538548461,0.00456819797516653,-0.02923084711342081,0.03814616912228697,0.02843130760161601,0.00043983965854698065,0.020451217033867316,-0.0002989377520773304,0.0010912398696995558,-0.19313130716273902,0.0021232976571183425,0.019995015026447047,-0.008096310898958127,0.03613831602057582,-0.010342707814174037,7.188025941427231e-05,0.00012247401256700562,0.0013118963733834527,0.0017157259559685946,0.001452311928299126,0.0019007666431331408,0.02128461081178701,-0.03710109960802769,0.1413586938723545,-0.02051486880229076,0.00010398729814595884,0.007663269750554266,0.0011228567488142155,0.0023631052022936604,-0.02949414655130377,0.00019262013080205152,0.00578317012248194,-0.024966439872219272,0.11010417635982642,-0.0030607576511782805,5.5343516483141095e-05,0.003595607687775007,-0.011725425129959381,0.04029869609447845,-0.006196424135975071,0.0027577548786609702,0.019866700711378627,0.01219611138905614,0.06683617677557092,-0.00486493902009882,9.07716759135223e-05,0.018314241388882265,-0.004088097168343209,0.021122258404355575,-7.328967755477129e-05,0.00014035944518197218,0.01357664314789724,-0.004087912172856688,0.02316495361209047,-0.056330748513678724,8.34677718833498e-05,0.0010243885599184018,-0.012825357861306744,0.05970749257211611,0.002628465247982001,5.398685812155208e-05,0.01924099314850808,0.013874710821507591,0.02872985957703592,-0.006944050874348264,0.0002354614591729048,0.03304905611649169,0.008814312724843886,0.03606831034997547,0.0018799059353834379,6.076829241135244e-05,0.009718867024832455,-0.006069382953038494,0.06330880845288049,-0.06059604145014705,2.4734986994619268e-05,0.015953406434765793,-0.009542788776310148,0.03463993324368197,0.01034461816807151,9.629577421832717e-05,0.00822403773855244,0.01891097590642066,0.08646649077433342,-0.06358011353168953,0.0003447419061925384,0.006286934306792316,0.00461737110120233,0.020775253960783276,-5.4341725977927385e-05,0.00012729760566135515,0.01960431451037413,-0.003313919817694954 +2020-03-02,-0.002433199492131318,0.01677794449259814,0.0002847036753283141,0.00015336474886522687,0.0013510262076930173,0.03648326662268089,0.13530525313059275,0.02869893974872141,6.469781079825366e-05,0.0009023329336070355,0.04251953424477378,0.1582600873424458,0.0761429171449125,0.00012428373665803656,0.012658416703300816,-0.018206532812600984,0.019301399171966136,0.08672548895490342,0.00031835106862304586,0.009579961652213875,0.0006006032252961856,0.0015944421506533578,-0.039046598595212915,0.00019709548037621973,0.006679927923465379,-0.004894911201226273,0.014219600306992939,-0.010762485207286997,7.516301080638537e-05,0.012678329913183429,0.0185146457822723,0.06554874788618137,0.013756839262950783,8.287830542091337e-05,0.0029677804965027228,-0.008637859996707069,0.08179554190596969,-0.0008240880312815308,3.621388692117613e-05,0.001441637736874545,0.017978389845183657,0.015700709859650705,0.0019169157897083748,0.0008830316945878631,0.0021648502787960182,-0.007542987242248637,0.01849456139761541,-0.019978668037907092,0.0001426136920280102,0.0009368511876183263,0.03254157176169261,0.026111299313783035,0.10981645266914966,0.0006091642398056321,0.012961910126980404,-0.00406997316887289,0.05554849968363035,-7.707668835301985e-05,2.1834437197658083e-05,0.004257054879285195,-0.019366347883179057,0.057281156900083695,-0.045758013710187166,0.00010043543988582808,0.03464471864666094,-0.007706299874933002,0.04100962371030935,-0.011526980646966195,5.2895891205019654e-05,0.005638047086515881,0.013594839456513727,0.01271261151903935,0.005999289501601533,0.002085750134021939,0.011238574987210129,0.02012566003598757,0.12453648917905573,-0.006810412097959994,0.0001329859076420022,0.003220345900485053,0.018173616815191855,0.093852145937357,0.001134553484606231,0.0002998509240397602,0.01359346861118354,0.025787745994141,0.16827166210503786,-0.01499628814129442,4.316814187293317e-05,0.004087210915419499,-0.017243294397132555,0.11805572961149696,-0.004762992502340342,0.0002407243268256892,0.028289896581517513,0.04006592546767138,0.5896547343405363,0.02211863458268488,2.8197306186155966e-05,0.022491836059187996,-0.004752985784643516,0.04258744778135886,-0.007111927300595925,3.728778711211088e-05,0.0049839032842076015,0.020207057384930907,0.06524669152719166,0.01090285491927827,9.97625027680054e-05,4.045172065068143e-05,0.04403233232340005,0.27959637493162426,-0.004335211657314688,3.637747322485747e-05,0.012499582511750179,0.019097545737417978,0.06009306325011948,0.07242684155664525,7.045804657188434e-05,0.0003703716457262641,0.01075694227292102,0.0434157619970914,0.026016617134428863,0.00011328959019075654,0.00612793834895969,-0.05240786719618104,0.048845814607949706,0.02926433824879231,0.0006132600731929538,0.02761114352875281,0.01106582724188158,0.04502237647557724,-0.003310953503808811,0.0001034526166034969,0.005723748128667284,0.012734572203807148,0.04199058666169253,-0.00858930034449269,0.0019464873809214324,0.00295059727954306,-0.011265707082684899,0.12089656000025524,-0.013416895648136553,2.396220099688685e-05,0.006244192330535442,-0.05005848015132059,0.15437675632426445,0.04033829248846837,0.0010601492681714649,0.01710812496989653,0.002116189246151703,0.020271065197586723,-0.008882269382539798,6.95190095285584e-05,0.007397477259878658,0.038722261999521196,0.0448513014581536,0.10282425459481181,0.00020376568829951744,0.00022026771099550348,-0.004886712076765794,0.007233201374318589,-0.011680839263348966,0.0003877841990236851,0.004807442942205814,0.010544515398814422,0.03845703017227486,-0.15149689519471224,0.0021252069306653444,0.009380323267788978,0.008202388369346017,0.03239702651235277,0.002100576207142415,8.123170103051189e-05,0.006010976013955149,0.03745464549056261,0.04646830085616992,0.04577842379674091,0.002003669512637347,0.00507338622975225,0.024688799757941155,0.07378833123472996,0.031076556512728545,0.00013256483181182013,0.0009872700587903944,0.020680066174107347,0.05106246414059011,0.004665113317597851,0.0001641763255079794,0.008146001635913159,-0.04223976772031797,0.16665436839808867,0.0132708475627614,6.186125754946798e-05,0.0034466898042820426,0.07773622065546766,0.2453622559466614,0.06315061848528217,0.0030028505929199536,0.005804231856296529,-0.009426429609108587,0.04243320980130547,-0.08219513742245065,0.00011050499644001025,0.0047748805349799636,-0.004947103970130703,0.028548991670038742,-0.03344826966366248,0.0001256669423615601,0.0013202886175552957,-0.027921767988680155,0.15528149495527988,-0.06279509387505779,8.504952830071763e-05,0.018220074090328102,-0.05444442956733305,0.2691751277843459,0.044375731908025316,5.083536181165195e-05,0.021740339910142494,-0.08542835490681804,0.1597058968970348,0.07999141489892649,0.0002608017403896455,0.020733198189319745,-0.01565114588633275,0.06795599987242314,0.020241861356630596,5.727072864521592e-05,0.008486966560109555,0.01954487040326081,0.23811675011565153,0.03214492884392704,2.1177472868041013e-05,0.01415679407366218,0.005098867621219537,0.017506554212527642,-0.11935467875473393,0.00010180802870429966,0.0024728128824867118,0.006224309640688229,0.031468207710819436,-0.04069299445961275,0.0003117792099032241,0.0003103740953503812,0.053958027840803474,0.2234551838291432,0.055146460082190006,0.00013830485630167172,0.03080083721299389,0.003921648904868233 +2020-03-03,0.028419765543699908,0.2073616144586027,0.05589676230951661,0.00014493681358959117,0.006005480213132898,-0.04165178955659275,0.1315492305885329,0.031984834572317884,7.597240587517003e-05,0.0038292809343373133,0.014587948375547354,0.04483338159731369,-0.004199535287166865,0.00015051851504663505,0.01798127470250719,-0.003346549519990705,0.004075929790241208,-0.008269189090868094,0.000277101207079248,0.0038107815915799596,0.03419562613726102,0.07594824822905762,0.012050420964288884,0.00023558659291927984,0.0056660203422989755,0.005167298440326751,0.014582653097009339,0.005342516107711404,7.737020372763693e-05,0.005982426571614339,-0.009944026143709218,0.03715586114629911,-0.026248393570887398,7.852804424593702e-05,0.047347909663964814,-0.020810480880191697,0.17659499456133682,-0.04887872560200264,4.04112552462439e-05,0.015234397422348204,0.002847179226037273,0.0026774346749512375,-0.00202453922555632,0.0008200507106908724,0.0014931853652459725,-0.028114071524449943,0.06459583699223391,0.029113398465614816,0.0001521882425352064,0.01712826273883256,-0.0003621275029799304,0.00026838797882965684,-0.012996645588920287,0.0006595121616327161,0.003648781375327016,-0.02172405077112092,0.28256831677544136,-0.045716637620206634,2.2910793658120644e-05,0.006938574333603261,-0.017042269086469986,0.04812929495086963,0.011601215125285853,0.0001051886681719948,0.02676506728263937,0.0010623662949952879,0.006712246862894126,0.005404544972497894,4.455210017662724e-05,0.006694673992148401,0.02173673375249057,0.017972978352228837,0.030650795685198257,0.002358833066731893,0.013494571640528398,-0.03154630277168592,0.18576195934787676,0.01662552722371979,0.0001397474177677071,0.009849230043483625,0.0038355333560148577,0.02143139107902028,-0.0019711368954256733,0.00027713005920328317,0.005437431052394353,-0.003949353326351731,0.024263446032318947,-0.014589097522421554,4.58494851692398e-05,0.024030953415173185,-0.001004069441624946,0.006614470549919358,-0.003321375148954544,0.00025018166012271255,0.015456693161799165,0.05371371275613436,0.728004630255514,0.0235480826203316,3.061831326347283e-05,0.032149334857089366,0.012333496081789382,0.12214325577230584,-0.0038703977047844494,3.37363751312555e-05,0.004828787657117698,-0.004916049339197164,0.016513843698947362,-0.014691552844065956,9.589386407754081e-05,0.010291081898414657,-0.014761741832819832,0.12644786538078917,0.015445746967841987,2.6966121040124567e-05,0.017521342634311703,0.013626536634329745,0.041713059432903266,0.01959305098922945,7.242538728543552e-05,0.0025656579925858146,0.0013633733982989144,0.00475201259832012,-0.01914462734737333,0.00013118549796974302,0.0049569141490516215,0.007812008841604133,0.007106722151654061,-0.01164357819705614,0.0006283027364101306,0.03394140308332232,0.0035899449324430155,0.011499884221691571,-0.019508582426784337,0.00013139545039011805,0.010345069499340807,0.02167335461438282,0.07784141466097919,0.007549800620207016,0.0017870413082393848,0.007496283340029048,0.00428892896476839,0.040162345672662976,-0.015759970099692665,2.746072372535032e-05,0.0033806379808435216,0.015104636275367131,0.04589679484455527,-0.012564522916857269,0.0010759675742380691,0.00710727971249772,0.014438735278087408,0.09970072658841579,-0.013679249189779308,9.643983839662466e-05,0.007011520261252032,-0.0031063333074431835,0.004790699979642765,-0.0004950653861717952,0.0001530363031067763,0.006621827209518541,-0.02295021955162584,0.028829354547281243,-0.003408927822841469,0.00045693648774679604,0.031734099111948535,-0.004392065334996468,0.01731237333008844,-0.07682221518274097,0.0019663577050353207,0.0026166344670253716,0.0008824189664408629,0.003233105155199219,-0.0003141913575922236,8.756798864274719e-05,0.007858672205160809,-0.04866242864949136,0.062354610142786676,0.043465727024000006,0.0019400030088722237,0.019658237885494124,0.019846595993366797,0.07383986110767796,0.018168395578583043,0.00010649058050269521,0.009672759850561582,-0.02770573890696791,0.06624145353980324,0.03412312696942838,0.0001695509625641806,0.007407251917021515,-0.0034637069221611205,0.01452441281523918,-0.02530572154024586,5.8204488707841014e-05,0.006816493430993198,0.011756630728172318,0.03525313021471625,-0.01332732945993882,0.003160845367808028,0.022086717598446107,-0.01893652222336952,0.08959490993127334,0.010589368022002891,0.0001051374538545936,7.460399431416531e-05,-0.004684000782186363,0.027858128494722825,-0.0036482054291422763,0.00012193427660614996,0.009659219819399332,0.053481223283191805,0.3373275614886512,0.10061612592609319,7.498911086457446e-05,0.009577336435456319,0.0031653149652056765,0.0134220248832494,-0.001908063093569891,5.9271550242261845e-05,0.014425318544720556,-0.02342450267172351,0.05302631602466031,-0.056908564719850896,0.0002153814604046706,0.000943512464812253,0.005458319136686064,0.0252838741033795,-0.004288527686598285,5.368212278785012e-05,0.0001924423210760914,0.03079886978275608,0.30714198866694353,0.05719793755909262,2.5871813576171385e-05,0.022643123897153266,-0.024041841754746184,0.08145567767462612,0.08140302054484722,0.00010317045304803518,0.0014339191906040112,0.028126429930926216,0.12667054955102947,0.03367773416626926,0.0003499990996527123,0.007203665321254347,-0.017305463004854624,0.09016047466457901,0.013001902256105776,0.00010993572119502062,0.008243101272153242,0.0006733366491630518 +2020-03-04,-0.06162841137857641,0.4128540805682926,0.17496346763802062,0.00015785959176805496,0.004408375844015192,0.016368484303388088,0.05167288311398151,1.9724687454485223e-05,7.600747388461543e-05,0.011738760509625962,-0.026089082043785232,0.0991554994905474,0.0036799150340840947,0.00012171362477252952,0.000421834754172142,-0.011830794499225904,0.015250526137267515,0.02489102712600147,0.00026181645614538633,0.0053393641062511755,-0.03323119086584287,0.07705151285230762,-0.04469248417036686,0.00022566411690834044,0.003922878472853193,-0.006808348910105343,0.018273762154278277,0.0007783728379497972,8.135056544772021e-05,0.00598239378976342,-0.04836266615032221,0.16432219655076663,0.05904735769874867,8.635825502629921e-05,0.007911318020297563,0.02288246991036589,0.19942746291692556,0.03040508210270089,3.9347446194702755e-05,0.01984630434800697,0.00918393237046242,0.00931119898112696,0.0011039555842936141,0.0007606202018035761,0.008294933615791769,0.005814384887208704,0.013571768571159446,-0.01140941033380266,0.00014980600340179897,0.033095628331569565,0.005741205235117566,0.003456844226448196,-0.00035641597192177983,0.0008117973341172339,0.009678864973752694,0.011159221069567272,0.15568881579014868,-0.006002544137450407,2.135990197910196e-05,0.005619271049851239,0.02517981241235238,0.0829092281429956,0.00698350778312173,9.021954991244212e-05,0.009128472909079125,0.0022564952128346447,0.012674628495154643,-0.02691468171654042,5.0114222424301885e-05,0.006369103508029539,0.0013491592721712286,0.001107196958202656,0.004668536547847063,0.0023766285560086007,0.016625834390473552,-0.031345906384011586,0.20096004176409552,-0.06140473240318503,0.0001283580845657777,0.000714819816316376,-0.023392776598671765,0.15166656805425838,0.0018758954571480198,0.0002388361961251387,0.00966788591167135,-0.0021724077174619895,0.014259091991991314,-0.04208248083207999,4.2915128976561485e-05,0.0034762359477010915,-0.016121569516529228,0.09642623460029977,0.003665984144796679,0.0002755490510083129,0.004528776357990834,0.01073222597849577,0.11995656903553482,-0.09041800326410138,3.712752542809167e-05,0.0018947627927642023,0.016934301925296963,0.18685535737433903,0.012867752751963467,3.0279134253833757e-05,0.00534159529250121,-0.02505129820379765,0.07057774712426523,0.014117436540769059,0.00011433658094219147,0.0030896539699357102,-0.012640924036514234,0.08288263894955547,0.010289319084017156,3.52295931076769e-05,0.0033674490540259103,0.004999302180195465,0.01624871816296032,-0.02209396679590961,6.821308081894758e-05,0.008426859891841288,-0.005276619877652387,0.02038154567191755,-0.03356927863022056,0.00011837698876547674,0.002609694866638165,0.012444123467864767,0.012458271493946235,-0.09204698165131366,0.0005709289718918135,0.003185212959940637,-0.026197504805114704,0.08495671452836122,-0.0002916603970868201,0.00012979209091846226,0.01001342164533236,-0.04216784346662526,0.17438744625319877,-0.027806892393481816,0.0015519772396253668,0.0029796664860239283,-0.03182259126197884,0.31936362137582847,0.002186460449089223,2.5623136588904766e-05,0.02772724942045155,-0.023458292041957308,0.06112999188545911,-0.06617558577038825,0.001254623218049796,0.010874710920638644,0.0067652783093816995,0.05160041121491884,-0.014331820272224745,8.730882587330697e-05,0.020348410788992032,-0.010838058152676756,0.013065751800192772,-0.026167428393294934,0.0001957773561021524,0.0045899996910046675,0.031658982692296875,0.04517990434722647,0.006806587972028609,0.0004022124987110596,0.015387763121374349,0.01875159538668959,0.08108800352760814,0.06614369597073538,0.001792387707696857,0.006691925608845793,-0.0010206505024121864,0.004565194859027852,-0.004793401060128285,7.173120137217445e-05,0.0070572072668753615,0.018256802231282454,0.023813741248849,0.0038713549337992766,0.0019057866149606159,0.002266888913684072,0.012500696001493316,0.04203784921672454,0.0029755267707929542,0.00011781748350883791,0.00038133312363125126,0.009329540283377716,0.02365664866446561,-0.0005733854324445453,0.0001598701565822338,0.001122596592498793,-0.004453618698327595,0.018690580217199448,-0.026579726427923292,5.81572916086496e-05,0.0007823025620536622,-0.008956400070435827,0.0303438842141904,-0.0019845553089816387,0.002797566186520401,0.035347425294119585,-0.0030140492068542646,0.015787764151040024,8.551972136733984e-05,9.496646646934515e-05,0.0069986067153955,0.028776284730453218,0.1761783856437552,0.05050864830779598,0.0001184521315476702,0.0069961557501284025,0.004853881325310862,0.02454808642397865,-0.02140476747398357,9.352338320146076e-05,0.00411345933293188,-0.0029406296333844596,0.0130768581177485,-0.028716152434008563,5.6517678234180746e-05,0.0021823819661195825,-0.005686387756677303,0.009699787336978299,-0.001221478226502077,0.00028582726418309234,0.01623146344502342,-0.0003626226024085717,0.0015173352990803853,-0.04137393215700432,5.942753068019172e-05,0.002303824859382731,0.03481244462199025,0.32234272667016184,0.057898688238340275,2.786428682062018e-05,0.016834287603644037,0.008970405542817458,0.024731348296406573,0.021116974001686314,0.000126786568659516,0.003221420408661457,0.0024910229816241837,0.009475616003213144,0.006852855077893271,0.0004143794908318753,0.0056844112161374616,0.06080478022113007,0.32040997849189107,-0.004909974599740843,0.00010869347815122938,0.01065717626283273,-0.0017786367893552293 +2020-03-05,0.00946375909989011,0.07161544748040295,0.005990230625044626,0.0001397473402180198,0.002434160143681304,0.035235409646319646,0.13183079827077632,0.02627516141403317,6.413173209783583e-05,0.019271301818496567,-0.017842882096068567,0.06254619531320804,0.008139188758816127,0.0001319657752830783,0.0198692743198236,0.03067600870605353,0.02936831810658513,0.07570949351779215,0.00035252314259886933,0.010312036787300246,0.040562059172376985,0.08982370960443307,-0.013074617680001418,0.0002362799006988241,0.010921434793191973,-0.0021289870058460846,0.006728259168814763,-0.09689817173429828,6.909029367191642e-05,0.0039509459994724995,-0.021486540852698483,0.07705911617913727,-0.041808473236032415,8.181488703024578e-05,0.014355420775929143,0.012244569714645655,0.09334899774246083,-0.04262576967564175,4.498134976690459e-05,0.0016322022139811097,0.00824285358822631,0.006872912709993965,-0.005020676778659382,0.0009248718141319548,0.003175814828335793,0.005086828375619735,0.01249454151079788,-0.02208105732548183,0.00014236021898013146,0.003810367902393909,-6.682362255257948e-05,5.3308609983556137e-05,0.0012366236505799082,0.0006127128873984173,0.009990146986641116,0.007974445086379341,0.09542256082525735,0.011406881393992452,2.4904176968588188e-05,0.004461369582850839,0.009210803290823251,0.020415747603644962,-0.03793442086621877,0.00013402421042497554,0.008818256447297246,-0.007458483823420217,0.03376578508301104,-0.11186455791867887,6.217782390635613e-05,0.0013551642726275875,0.012063556577236163,0.011227971990777248,-0.001062336201299389,0.0020955451254261242,0.0015661962653865608,-0.010410323224780265,0.07634828123434878,-0.04300857758015354,0.00011220625228838277,0.005169953302236722,-0.017459677154533716,0.10492400665291396,-0.019044931702949342,0.0002576733920149791,0.0459012976331749,0.06549003514818487,0.3888281961458516,0.08450342695063738,4.744368665795576e-05,0.019032148418360203,0.07897343539327085,0.37445910071886546,0.07042433509406225,0.0003475869382182651,0.011332154181930142,0.005695349305447162,0.08005934321403703,-0.00048190639696961364,2.9521510411987836e-05,0.02684387600430882,0.019136512600970063,0.2242384512691559,0.01441430251146513,2.851244230774585e-05,0.013937863177782348,0.01594835110871255,0.04606851932628318,-0.06053400108482322,0.00011151525712737962,0.02288753240801651,0.015211789769166827,0.11802591431036705,-0.008944407477298102,2.977112987697792e-05,0.0015328625286722978,-0.0269630743677379,0.07569215736289252,0.09085462385257964,7.897614085825571e-05,0.010466774506731315,-0.00247812054620618,0.009093726701664681,-0.015210309390538178,0.0001246031799923542,0.009377589982409592,0.03541727957711204,0.030739436677226784,-0.022460093053488787,0.0006585592537517246,0.012142885452525174,0.015754148292691905,0.057745995853088365,-0.008617901009549667,0.00011483097779112721,0.007259014399879023,-0.021419965145149204,0.07180640828350708,0.0006813802220801888,0.0019145853453090044,0.009678425293795642,-0.028844532009259048,0.2725502223478919,0.005065074513203006,2.721442430853574e-05,0.011670707145096004,0.010199549873393129,0.03212093599457382,-0.0015399636301638478,0.0010381595028848758,0.024805107812711277,0.024614979838542755,0.17882386694145236,0.007246601276575072,9.166417745533311e-05,0.007436762899596932,-0.004664390607460258,0.007364954527755823,-0.012568160027063761,0.00014947557359221316,0.006973781015449545,0.040110060009271316,0.053905724088353736,0.03675535365689005,0.0004270928898754189,0.01608071728597672,0.06529582367106752,0.27109503698052423,0.398213786396152,0.0018668704389632204,0.01970608982186808,-0.004275884249929631,0.01709168146508511,-0.004520050097538112,8.026598141904317e-05,0.008402384466551411,-0.01044058011420458,0.014853804850009662,-0.007817197881806983,0.0017472864466387512,0.008498806054546814,0.021372853088019853,0.05423776275440142,0.009230441107120055,0.00015612655249706028,0.01601735021959212,0.011401021141884612,0.026145529708365475,-0.12887080340617746,0.00017676923484459891,0.01378318684188245,-0.002161570144094597,0.009516595344423133,-0.0021205063086093146,5.543724699795388e-05,0.004034884897773627,0.060445188535776635,0.2256036136210956,0.03341562029198658,0.0025394153636801083,0.027018285096467063,0.022462950487752865,0.11095310334297409,0.01138891925986451,0.00010070891490597257,0.012804735769720093,0.003956739942836116,0.025127508582951204,0.0005533768710795905,0.00011419546612020141,0.010896127510481756,0.0013762268375115453,0.007289179692235249,-0.003916257963878276,8.93017695846543e-05,0.004537850489267476,0.02780055277388851,0.12663171525600944,-0.0199855856907437,5.517703210559246e-05,0.0011108170483817472,-0.02115897100622526,0.0436703665154714,-0.016835057993916477,0.0002362311154635959,0.015758741730076367,0.01442856032750386,0.06264718155590418,-0.039407035298793504,5.7271141360970856e-05,0.007852766739303043,-0.002881796078419992,0.028214615971140812,-0.007705310361923412,2.6352412988106347e-05,0.004406591469847167,-0.00833664678673515,0.0274405642890097,0.005400733763780338,0.00010619579682676308,0.020373726942793394,-0.02107376317617372,0.09416993491603898,0.09767020777216713,0.0003527425059192987,0.019937153513364544,-0.02841978560148172,0.13479943784019266,-0.0063792348637993915,0.0001207548303837195,0.01317251749666733,0.010299693270461173 +2020-03-06,0.036464243995266134,0.25547222047174517,0.08342012998430004,0.0001509420051755095,0.006372736348204131,0.0022942470866890645,0.007223234056854931,-0.04257955203921738,7.621123998244034e-05,0.0006522040982440797,-0.05078601171739714,0.17732672153696089,0.07057048544980107,0.00013248512756456997,0.0090062767018086,0.01366068961377225,0.015437775907548978,-0.005283526307751932,0.00029864534351736554,0.0017073806467047107,0.023593643878882648,0.06275989567002008,0.026634653810933162,0.00019670281687369644,0.0030573567675339355,0.02336727237814727,0.05843364303145168,-0.01123400132418918,8.731559093610743e-05,0.0042453346043658515,-0.0021508193783135628,0.006872692822466039,-0.022794553401102945,9.182625286481173e-05,0.00977414261192553,-0.011531017677372404,0.09391884948814537,0.0023573182888482922,4.210304328916784e-05,0.024066572728285593,-0.0083387136596038,0.005726190690924104,0.004688853260428071,0.0011229955647469713,0.0013531712567842824,-0.0067573430863495584,0.01363785811991616,-0.0076814491859410515,0.00017325735819298318,0.012861124240268699,-0.013195615546118707,0.009943570654946284,-0.019958931025112127,0.000648651830709397,0.02139824612967862,-0.006864708131120684,0.08498830825068233,-0.03548869884004784,2.4070531607739124e-05,0.004448722372245316,-0.013349468148240926,0.040337727725646325,0.009301284658818272,9.831132991695138e-05,0.03245318806725876,0.012341334190135365,0.070244336855067,0.05750625430924544,4.945527420511385e-05,0.005519738237227646,-0.06331805477611867,0.049843094939382694,0.09464917414352213,0.0024776818267275903,0.010667994887428464,0.02788258338205391,0.14313485303232162,0.016637274396908746,0.00016030228795291585,0.0038651730417196004,-0.006223638256689791,0.037290240523155695,-0.009026546277944403,0.0002584386055614441,0.0054327871215810375,0.004936137435768076,0.03049930548150363,-0.045632480845148475,4.558880929375853e-05,0.00040513060034560035,-0.028691488287544666,0.15581137678662613,0.01561950720208741,0.0003034874376719957,0.010222756126940593,0.0267310775939481,0.34181370920129567,0.02514959280949039,3.245317717343732e-05,0.02548640192303341,-0.005951912542436834,0.057284557327947516,0.007117393043259888,3.471368264017753e-05,0.006577254894616757,0.018285214483410608,0.05007933998666475,0.006085499065851067,0.00011761540766560645,0.01020448917774019,0.02299854950219879,0.1620701053569373,-0.02111767510369844,3.2778562820661214e-05,0.006989982537691883,0.025713658025858607,0.08347194189142171,0.11142508085841508,6.829685872941028e-05,0.0023508386094737302,0.0034885178692317677,0.013875115308128693,0.003979925016903433,0.00011496163890864906,0.005877606336613878,-0.04073376213681102,0.03875083265594064,0.020942165035893776,0.0006008264532620062,0.04429476826559513,-0.006956296161681095,0.027462060401480675,-0.005937377735489155,0.00010661810388769868,0.02217902394821247,0.03573670460727935,0.13657693868610965,-0.05452917405858146,0.0016794083304137637,0.013949786498595596,0.0287326600887978,0.25494209469422907,0.02895385918290061,2.898120778335678e-05,0.002048629825035047,-0.01230280653917137,0.0291651499376598,-0.0024054812033394582,0.0013791491976739361,0.014887257266892558,0.022556791153080354,0.18660556423916108,0.008998856959696567,8.049675480669482e-05,0.015107907618161567,0.007519669638642419,0.010620421572154816,-0.13167046863550372,0.00016710998155133715,0.009058790250063342,-0.00017122364328206357,0.00022525477374182466,-0.000681405603209339,0.0004363084699388047,0.0015072965279057113,0.0056279612695604424,0.022976702113964076,0.0010165605123305832,0.0018985137524527203,0.013778964667532275,0.007690302930415052,0.03089881986261927,-0.1097837035173931,7.985312662358404e-05,0.003469384715027588,0.10111760393078002,0.13880223945035272,0.11133896204872548,0.001810954291061334,0.03028954395919746,0.004175708589438543,0.013628668200830415,-0.047777393742330226,0.0001213927642588207,0.008930630200642938,0.04832892772022298,0.1382991248542983,0.08180803534951482,0.00014166028253990827,0.01811121962761399,0.024540029255381395,0.11007161260302023,0.041072104910789255,5.441437835274634e-05,0.014507514466100819,0.017547031595459124,0.05423718840616884,-0.0003192039662156086,0.003066369933609033,0.018228591781669305,-0.002880311216977352,0.01511110558929526,-0.025173719953168618,9.481646205501705e-05,0.014799791845708447,0.01222252542197903,0.06701870796173018,-0.038504630463681876,0.00013225913643472373,0.0004557039430559764,-0.01090441177645725,0.06369487411752059,-0.014763584766127111,8.097416125797713e-05,0.00303251179675938,0.019104212426904136,0.09752123884350138,0.00287307958442584,4.92353833629571e-05,0.026298334418669682,-0.014643603017435053,0.030543857984898632,-0.027675835837228553,0.0002337509847236313,0.006125482874967184,-0.013209364903259378,0.05527344675680857,0.016224688416684348,5.942644710966766e-05,0.0011556106721744394,-0.01824036235294072,0.20066568479008398,-0.026855364392254565,2.345263451052979e-05,0.006445030212738765,-0.012527925284901115,0.0374164128061328,-0.0026419887590368655,0.00011703775181030559,0.002969303588564191,-0.009498297091620648,0.04009155229876111,0.026352679184235877,0.0003734400121163345,0.012026846605871704,-0.030776166350911693,0.1336027759224644,-0.061899169829684395,0.00013193828511467225,0.02192023960487498,0.004424670562107147 +2020-03-09,-0.025835152399332355,0.1699564168886585,0.012762703410580828,0.0001607533548362908,0.02346306003660563,0.01589533795873798,0.051167562128410705,0.00700652326189346,7.45393441357649e-05,0.0032059832646877656,-0.009842327034609008,0.029089816699886153,-0.03763205157313323,0.00015651429567655237,0.01451971630886392,-0.013260773897012435,0.01124121324804634,-0.029830395922535273,0.0003981287496274916,0.0021314420288678377,-0.00033584141573757465,0.0007093008409159612,-0.014803580357868851,0.00024774308971985565,0.004015139226493319,-0.01843541009295808,0.05041855361574143,0.061360018354497885,7.983791010239744e-05,0.001553132850407846,0.016969270488632813,0.06265457491867321,0.016184993793917263,7.946945592316244e-05,0.00756705600023334,0.012392229574534312,0.12435526388371504,0.007333936341975792,3.417306176235603e-05,0.004387010375010846,-0.0047754063979771446,0.004348215040580334,-0.05832905582833151,0.0008469233557271606,0.002199688311312077,0.021178517559774287,0.05132720741709228,-0.0514720819816399,0.0001442812205936368,0.004419365992817349,-0.0025393664080391866,0.0014516758540603749,-0.059863486659472775,0.0008550274847269701,0.01306225554131691,0.010703398005863108,0.13752168767116565,0.013643714121895592,2.3193872796267513e-05,0.005787793020197285,-0.0291792391678371,0.08046269450564143,-0.026066607886746494,0.00010772845455411036,0.012469321419402822,-0.005287183592974773,0.029161881946422347,-0.06651307838370486,5.1035298821749e-05,0.0008316364905512903,-0.010787465896388904,0.00937945896666578,-0.03906269067772839,0.002243182563742834,0.014453625643666583,0.020920589093038146,0.1313935944698959,-0.04768625713529499,0.00013102429260857665,0.008592331453507273,0.003550387569960693,0.01908939634657962,-0.03446142789427736,0.0002879995446956198,0.05830410047331153,-0.025664583028814903,0.16865062710381432,-0.06260032747467073,4.2865432332401064e-05,0.004016562790661729,-0.028807876180345825,0.1493687912778829,-0.16217204775458574,0.0003178616859362956,0.018754710912360098,0.0328906862417491,0.43711658771112843,0.02579823453469463,3.122524672945452e-05,0.0015253472180238687,-0.019385392455258894,0.19105284783227286,0.06541667552570779,3.390024142431297e-05,0.003334843394015579,-0.017008156276329425,0.05399207449706115,0.014307948796599513,0.00010147287822395445,0.01030412540575744,-0.07741191632401455,0.5337533485451069,0.13145002127959218,3.350113970762394e-05,0.009555060737480185,8.242614931927792e-05,0.00021939073637109,-0.014870897245335751,8.329599262399863e-05,0.001954880044479826,-0.006575030263206025,0.025957925705206754,-0.0014077760829726684,0.00011581808148890756,0.002341298063547443,0.01552371077066148,0.014610984993654154,-0.1747833841851975,0.0006072836787843179,0.001754502518990488,0.027268661080756068,0.09287056292694293,0.04505561722791694,0.00012358670265674376,0.010822738145715487,-0.03727928378198875,0.11748512819747692,-0.014201900693000032,0.002036591090758717,0.006683390664842453,0.058813235713841595,0.5767654949936356,0.09353004625976066,2.6221528144505098e-05,0.004362296512080649,-0.012358370497627759,0.037628864715811776,0.0006839923451626761,0.0010737702450188014,0.02154009451773956,-0.015752330805929297,0.11560778793734983,-0.025465426722235254,9.073678254354256e-05,0.0012587969715070378,-0.013656442400961756,0.02110312175745501,0.012625951873385473,0.0001527341874986838,0.0005587930926553158,0.003321952938037346,0.004905273498587109,-0.0396023976127687,0.00038871756217855193,0.01190139549426501,0.00423162998302949,0.01920694878394394,-0.007177175181115994,0.001707653090673033,0.003282594096796466,0.025324495513807138,0.09202824720163212,0.05019451787814822,8.828969623324371e-05,0.005658010004347161,0.04216148378559079,0.05327253168706319,0.025137878075404872,0.0019673867491572317,0.007912783815178508,0.006726057554653717,0.022414995836854648,-0.01908219324992746,0.00011888798139372781,0.025243381622469366,-0.017188914708688132,0.04452957436158933,0.008635899220813594,0.0001564805229349899,0.0006223394270397599,0.018488128110252126,0.08510034130421655,0.05218443490621537,5.3024375834038166e-05,0.00762833653551471,-0.02079524282330087,0.062201847130772085,-0.11790099125834072,0.0031686828426410866,0.013600223703636736,-0.0004037520838918779,0.0021479200554063377,-0.0911301517144062,9.350551671590706e-05,0.014195148097950498,-0.00472968927645987,0.02502064591916056,-0.002530837094835273,0.00013708655966639138,0.003487661417789318,0.009999014811853816,0.0580969897998179,-0.024092581224470166,8.140522476085675e-05,0.00644448914989003,-0.00033274209158590967,0.0013008244777944127,-0.012758175862803575,6.428896538181802e-05,0.000978845108991712,-0.0006622648292041713,0.0014179620313136757,-0.002146787804781987,0.00022771754013413116,0.038251828523718716,0.004102538843722655,0.016656714197435155,-0.01889826032142583,6.124600191704121e-05,0.01826999553964658,-0.027506287808181335,0.2938373601200876,0.01813675799740158,2.4152175441173164e-05,0.0013297918620691319,0.004614777341082314,0.013220383797544026,0.002638101432578266,0.00012201568231947692,0.0004045777590325605,0.011399700924954457,0.05047484302643617,-0.0003261579561685241,0.00035599709293561264,0.003359039222894044,0.03946391856350209,0.21054523630304814,0.02943442116015515,0.00010735606448539368,0.005655308625663031,-0.0001546251637581646 +2020-03-10,-0.00850731667303318,0.06475072981869105,-0.006716690694247022,0.00013894231007056035,0.011635720397709246,0.0507784319492571,0.14708245157674557,0.052834513712814925,8.283787547500802e-05,0.009910098053907242,-0.014816638016418344,0.052496417221466314,-0.002425096160017441,0.00013056212521118872,0.022133979705321164,-0.018184175191688367,0.015668162218076986,0.06583844568718913,0.00039169082963978557,0.01201029513458161,0.02902547147107284,0.06743473963029654,0.0500703445245487,0.00022521295562256616,0.009152089441516721,0.0001094459327515167,0.0002703515112305866,-0.005061864496068773,8.839293717194381e-05,0.003583118983523481,-0.018649263301381027,0.06587220590173548,-0.010042240617192522,8.307097899294108e-05,0.001759368596688423,-0.002575496912940314,0.024299982487973833,-0.04114626549974403,3.634575439471019e-05,0.0058657611793771075,-0.015887121526246245,0.012061997660473963,-0.29864736160798966,0.0010157124232193187,0.008621093641644715,-0.028315751396799194,0.057992007921353214,0.03074660423855749,0.0001707347138549861,0.001693612888560897,0.0147710384437817,0.009993302012278509,0.00019620889728329754,0.0007224809063327836,0.020905585027745487,0.0020615704185238753,0.027059872512229643,-0.0006170094429729356,2.2703625643232062e-05,0.0013203998133886892,-0.04821595486321437,0.15386823580164033,0.06749536684349237,9.308781477510527e-05,0.005996376567486918,-0.007722856555504579,0.04340257760072053,-0.02341310436033119,5.00869128507065e-05,0.0019279266004681797,0.034519557063598744,0.036493046684334944,0.03555107649630768,0.0018449222320857616,0.0007926801307378978,0.02473968856481814,0.15488362132919894,0.02362746199585973,0.0001314440226830197,0.0005574288921907373,0.059526690855400674,0.36622378796211585,-0.055538064686730795,0.0002516943240798313,0.0036421359966580342,-0.053269843662393346,0.361892207468591,0.023622391687466132,4.146323150626216e-05,0.013719861837998962,0.017727670099022267,0.10104068337582472,0.0009621494701356919,0.00028916264842272457,0.0007264440309050924,-0.04508828768211129,0.6287861998473542,0.006734443669134101,2.975712519323974e-05,0.0009870706735305205,0.008196423086397979,0.10442050207917816,-0.00784808981258219,2.6225290034429792e-05,0.01139515773754691,-0.0059227870324478045,0.01644242675184115,-0.009413309335159518,0.00011603338363547552,0.00905724770361023,-0.03421229395419323,0.258635348230898,-0.0018275261501047885,3.0555309731901525e-05,0.029197300229523555,-0.029685832557389425,0.08291795493670104,0.09458879957062247,7.937395736191688e-05,0.0019229467547173468,-0.00129620900302125,0.005550893995092342,-0.03300405616432678,0.0001067728156591469,0.001358727447409103,0.12186582513140563,0.10243244376000375,0.2656401077772374,0.0006800172988939563,0.017375345037703698,-0.04442788788427054,0.1592798770605076,0.04099520534763219,0.00011740342439616147,0.005882152750653477,0.011845630259391397,0.04487341773441572,-0.02635024986157432,0.0016942917616037064,0.011987103667183065,-0.00722152220740898,0.0694368520634764,-0.016619853594210823,2.674366494647395e-05,0.004869220769374683,0.004457854511974482,0.010655621594976367,-0.0716526911637367,0.0013677866829590608,0.008916626218253032,0.0238486607333729,0.14858852896385083,0.001017565584906021,0.00010688194676034595,0.009252573176182692,-0.012259261058417665,0.01467689138410776,0.004885180796748043,0.0001971403845506276,0.0019454083690134045,-0.00017118026763084877,0.00022968065002819025,-0.001258603143183268,0.000427792539333417,0.0056889066775621805,-0.015972541032483235,0.061805816026978794,0.003526041545544448,0.00200306484468299,0.015895296939413304,-0.007590234077078922,0.02956419125472896,-0.017908329865111712,8.237198594119994e-05,0.024135620262872574,0.09254638366937654,0.11075240881619097,0.098364974835483,0.002077224632973629,0.0063133382860366336,-0.051874802925403654,0.1950503851528015,0.08219923871838264,0.00010537211182834665,0.002112414948346143,-0.06379046950410054,0.16804320245395446,0.07665693909945284,0.00015388462313137426,0.004925311875360565,-0.02060423280440961,0.07874841480018308,0.000763772023219184,6.385994689756745e-05,0.007566265322448924,0.0011264187037182626,0.003989304187926501,-0.09059820550098929,0.00267621350642384,0.0021534934249997917,0.0007885526286030162,0.004432427284265992,-0.023179196790201483,8.849722136252509e-05,0.01574683864946714,-0.036127086613133054,0.21274489237530497,0.054123182623213216,0.0001231500471461023,0.007805971040863424,0.001954465084719376,0.011304227317748697,-0.001208725432181902,8.17778583853379e-05,0.0005561729536313763,-0.024612706870041023,0.11419798435106421,0.0024800513164823664,5.416869037087737e-05,0.017775216605819644,-0.0230278186718309,0.03595022714716921,-0.03901664517814833,0.00031230616424028016,0.02665138010490883,0.01635515248049765,0.07485194188364173,-0.06522128928351917,5.433327727511808e-05,0.02059365958838772,0.025297596166229546,0.24263350699964362,-0.027794312793366183,2.690046365024455e-05,0.006917310284452433,0.012494340189610854,0.039128804182705285,0.0354404321395572,0.0001116158100418112,0.0025545861621183354,-0.012608793966674085,0.045087035339793566,0.03165238659188713,0.00044080837742957696,0.005578027706315302,0.06036636711670275,0.31067936158556564,0.05778354258491883,0.00011128956182303652,0.013442865912271462,-0.0006946948211461136 +2020-03-11,-0.01715034494641673,0.12657236434809221,0.0029256365925342037,0.00014329154015373018,0.007206322933094622,0.056181711931042495,0.1787857037428606,0.03020716847971655,7.540023628803699e-05,0.0038247030255238205,-0.03964412397693481,0.12632675417870826,0.02951058566630267,0.0001451712754657348,0.013241941297231377,-0.013479373976212341,0.014880793676780807,0.03550170778853768,0.0003057112943341101,0.003530941079352562,-0.0076675371347217835,0.016918309505669624,0.002132195510975501,0.0002371355657093504,0.008428302310981756,-0.015837178815201344,0.052663811313089316,0.004996989603795703,6.566172290616979e-05,0.005574921441959276,-0.009524836122074545,0.031458013132511314,-0.0009872464383093862,8.884153998631112e-05,0.027340853246686548,-0.006422547192576214,0.05930093910282571,-0.09179498458425867,3.714020936654722e-05,0.006370880931718873,-0.0048390716063820526,0.003616751811926316,0.011151372095626402,0.0010317824287544171,0.0054198339508001805,0.0039717667039939316,0.009298320960427816,-0.10779283470024893,0.00014936233142738664,0.012704894189023335,0.015445371390660791,0.013403247338570762,-0.01337270609356519,0.000563264890836896,0.008155249515326129,0.008166040950738182,0.10085313794815025,0.0026103431276993778,2.412931135861198e-05,0.008912703088647058,-0.06954899249737635,0.26500225917413833,0.11218871871153911,7.796367538976741e-05,0.03604678713111668,0.0140887032507091,0.06676048622381575,0.08446325046501471,5.940367987384746e-05,0.0016862484585792449,-0.01376003272766157,0.01228932997763702,-0.08560917277670245,0.0021838069002562393,0.013593454960369535,-0.009913037792685831,0.06395010476140289,0.002231133722882496,0.00012756091018467522,0.016885601883147607,-0.014646515797410132,0.09265734872267554,-0.024603459986324978,0.00024477253577361133,0.023366284727928826,-0.011088103677943316,0.056498597285145405,-0.06892709046308303,5.528159546146483e-05,0.004913374605801242,-0.0027350666334044556,0.015318147156715365,0.001899795257219377,0.0002942716886792429,0.015442876754564749,-0.009185183167919718,0.1120413282606969,-0.0006578475671977884,3.402043040792962e-05,0.025723119533807508,0.004423551041450797,0.04832605107589646,-0.005893313497912481,3.0582391475959356e-05,0.0003217696301021306,0.014509563802038042,0.04158281546316426,-0.06779993218344442,0.00011239920032455225,0.012979848041598411,0.00440456923814356,0.03237377758770424,-0.021046088080721292,3.142696476918967e-05,0.011852638723464164,0.013527050920196154,0.03745846597516101,0.013831948231059796,8.00627529648743e-05,0.0005432359713021101,0.003567093385793294,0.013685134271883493,0.003505083543267638,0.00011918291738791601,0.004781442576897976,-0.044171369851957354,0.038869079560356526,0.03173350586655587,0.0006495493804143387,0.04503736717865535,-0.01964823453417675,0.07017683505220901,-0.05048913222052804,0.00011784624930440582,0.014834486957939628,0.03758745703652605,0.09777788244642695,0.036511235206464925,0.002467297347113169,0.009781557560772097,0.02328635513903384,0.23318948524196315,0.005117860950698759,2.567880138008735e-05,0.015904487975104742,0.02213811778568579,0.06487228050219268,-0.0013411332883129336,0.0011157137832660286,0.027653567277690794,-0.006464452150842378,0.043206063024963354,-0.042213060983957044,9.963517171777871e-05,0.002696609723822571,-0.029400219739593492,0.04679651000419628,0.05385523980953888,0.0001482799726459745,0.006420921321110724,-0.007066190441645643,0.010374525844830328,0.002588121495234696,0.000390949799601297,0.013173474078641997,0.013975506932553337,0.05665508643273558,-0.013068742345377634,0.0019119608915429125,0.00014743762147690102,-0.025181458269417076,0.10863218462384407,0.024008933845435065,7.4372560507353e-05,0.00027052023010536294,-0.002075908612013835,0.002783200850033201,-0.0036965975515580686,0.0018541329591858116,0.018301436705543527,-0.004133786724006167,0.01442233839809217,-0.009025838880200658,0.00011356079422826733,0.03281781388013856,-0.0028850274224074216,0.006513527623528606,-0.00575367090214709,0.00017955357737264822,0.017075465205468498,-0.021581079886178616,0.08850445093088893,-5.889781392878461e-05,5.951438981739472e-05,0.00789143503805864,0.043672209424111805,0.1449910238785334,-0.06435367265490967,0.0028548421823213458,0.028895806746041128,0.021896774153763746,0.10262543380979444,0.0076472343582718975,0.00010613673014648062,0.0040633174300712515,0.03442432957280649,0.15747912088061727,0.015449195937323414,0.00015852701921509959,0.02147288495854365,0.020242184476194264,0.11172711454499107,-0.05837219854985231,8.56934236681989e-05,0.0037963774374217426,0.03760329258976639,0.16013881100543273,-0.017168144707441647,5.901693747342534e-05,0.01405581517565261,-0.08388707873580145,0.16197949787646287,0.12392190365410737,0.00025250176407269696,0.024808933608046053,0.0150471073461413,0.053092990262079635,-0.04742713427547814,7.047420884319533e-05,0.0067616526741382625,0.005802344426902966,0.050950899924087543,-0.0507897651592537,2.938210667979942e-05,0.004386466762148704,-0.004344415455959309,0.01622953761515153,-0.08461726405138179,9.356946963320513e-05,0.0027767737809888107,-0.021924698006762958,0.09986898055948955,0.07524575451307286,0.00034604372174003165,0.01685664328482649,0.01464011493756198,0.0672658369624046,-0.07241356751577999,0.00012465845270113776,0.011839882719661656,-0.00013138286270247216 +2020-03-12,-0.020427321255876645,0.14553244775159851,0.004425268898178066,0.00014843563304719717,0.0023654119179462004,-0.0017453302996041401,0.005288824288045733,-0.0719301247118316,7.918246477805034e-05,0.004889330975457507,0.022302766782786632,0.07291617096272499,0.013035512730400862,0.00014149206763520758,0.017797153297750074,-0.009607105593254171,0.00797937854548663,0.016367295048058637,0.00040634166119648467,0.0014219806539839826,0.007154727832358669,0.019450894314196335,0.002603205521902989,0.0001924648014060189,0.0015974338786959909,0.009818282087269408,0.02424365984373979,-0.062372204594846326,8.842683145569017e-05,0.0069362484245693,0.0013404798699868025,0.006311464404339907,-0.05031016308890972,6.231893381000527e-05,0.025924039395422146,-0.0013246534425153502,0.011294172953034018,-0.06706856886602858,4.022040625317616e-05,0.001839902337796492,0.01730708359132232,0.01336479047849233,0.031048962050601286,0.0009986344025612007,0.005701896045167193,0.017128237958220573,0.04034848750301093,0.020539769978771393,0.00014843875898423823,0.007189781126453519,0.006468538234920223,0.0048504212176145355,-0.001433655379310729,0.0006518550776278436,0.0047073972765680995,-0.01038417837743089,0.13819150813814057,-0.05504120324299089,2.239306664842381e-05,0.0006965671207271736,0.04733154589026484,0.11231376462778614,0.028347769352815168,0.00012518974144038806,0.010353227969614395,0.0014166093687626334,0.008782391498059832,-0.05801255341532353,4.540452482685962e-05,0.001154568287984702,0.011941401332872286,0.009186658036820386,0.016070046931046227,0.0025352495634830595,0.023674635233609295,0.03905611591452426,0.30398335633411455,0.032742104512636,0.00010572832524824998,0.006503285613645152,-0.003138198259322371,0.018273507536574626,-0.012003732610320004,0.0002659296074080541,0.0388269537375852,0.014182028929006846,0.09130072268750357,-0.012084794144352996,4.375474002183455e-05,0.017536382459828217,0.07959447768643399,0.40356418782252546,0.06574350535283816,0.0003250552049056485,0.012959977639396509,0.039446368579508576,0.5594394779527826,0.031946222295471005,2.9260662147628537e-05,0.0005105519867757281,-0.024539948266196543,0.3022564255955894,0.0744437579226527,2.7125628509685355e-05,0.0035507472607008007,-0.05000186300804549,0.15600649567019037,0.10516527119725776,0.00010324434186707259,0.00391229505866724,-0.010613624578154802,0.07240819013873559,-0.0009509244992935112,3.385855391355697e-05,0.019906033408877477,-0.014808461353857794,0.043983515147095024,-0.014712987226246747,7.464442613159622e-05,0.002745186244090486,0.006268854773631332,0.025906881246883288,-0.04181770432398924,0.0001106424210109811,0.0011097065606744557,0.02579242564775597,0.02371517444189695,0.0004023932062513113,0.0006216435402944729,0.005227742326801424,-0.022890407758820598,0.08253833387479965,-0.008031366446387658,0.00011673036411272692,0.003911110973654642,0.02787406688007652,0.10672927075378645,0.0058785759682959795,0.0016762391138324846,0.025717772845606494,-0.005483014117757497,0.04908645581465219,-0.0701608375051139,2.8723667019041792e-05,0.012506857148869892,0.06578030083176122,0.18779494750548809,0.11966300855024119,0.0011452049627852878,0.012037255718236958,0.007681173234354927,0.06481945417162069,-0.0012382499501789285,7.891286907399261e-05,0.020762052295067012,-0.004663027254602372,0.006926327508694825,-0.011039521023594569,0.00015889503133190632,0.011627011647904497,0.0016956688730379865,0.0024017134111718767,-0.041590897946645784,0.00040525070461803803,0.00877785969271602,0.055115116837041345,0.17684396877839897,0.13135531646714116,0.0024156322590480088,0.0038718278212400248,-0.0024469720224772626,0.007478184783413191,-0.00020773458696349658,0.00010498401601030732,0.0032455084311269187,0.022949361172971118,0.031163168736059163,-0.07439300889004564,0.001830653631430755,0.0016282238315757163,-0.03757230275893699,0.11654460842226176,0.03344833411796317,0.00012772963252459424,0.021844708215497707,-0.0534565072837453,0.13955292796620725,0.05842771394348392,0.0001552823170761921,0.026925958273127378,-0.026751769337870174,0.12033079011908544,-0.11812005838251344,5.426123420068947e-05,0.005351473767696409,0.017878326164954376,0.06551173105398908,-0.04838090234654048,0.002586579545407591,0.0010435608205327258,-0.023888465516824817,0.0989911883891724,0.025942838057322035,0.00012004174122735585,0.0032391050633716685,0.021947821389187428,0.12739618899771593,0.031153250899579776,0.00012493834973130384,0.002612252101171263,0.01787741361940572,0.11802557218166787,0.004248563084394518,7.16435788839037e-05,0.01979154136828574,-0.030042906385105404,0.13816957860934292,0.01595461737974943,5.4648331441709496e-05,0.006267597306147974,-0.0020063631796577645,0.003689238130648119,-0.00015320018968264346,0.00026515648578337154,0.018797339451571166,-0.019743964932493942,0.0749743120306232,0.036681177968771364,6.548415948520519e-05,0.0026891402199994323,-0.035687347320465586,0.4540597056271276,-0.05029181651828086,2.027834884071841e-05,0.007417677477755046,-0.0016913836285326364,0.005173846779493853,-0.018802702894887294,0.00011427139362261548,0.0009449920103436685,0.007268009869260676,0.03192590727650783,-0.005329836655353002,0.00035883949044993057,0.005504746754913145,0.03760119305665473,0.19389916062872734,0.0019510115436551878,0.00011107018414723547,0.01678208567735259,0.004545479337594194 +2020-03-13,-0.007266885717750711,0.057684982653223124,-0.009666184077080364,0.00013322083392461415,0.02410184060712867,-0.015299638534193473,0.049137952393048405,-0.032100261388084105,7.470929561660793e-05,0.01753970547044921,0.03704210524749999,0.11283162983318526,0.019810131889242476,0.00015186650709806247,0.004930756399046874,-0.0026891310622814664,0.0025695312882180075,0.0017438190193898848,0.00035320424563261427,0.0008099959702399274,-0.013003728337585202,0.033202384271445486,-0.019937758844438103,0.00020492568181020417,0.021419766946013545,-0.010280001195262692,0.024195632729214187,-0.024907616891664656,9.276900986418898e-05,0.001983905663568555,-0.024851383613353047,0.0817810696270263,0.012089610287459078,8.916360968086486e-05,0.001569969405031393,0.04204745361278701,0.37125352431474123,0.14432552936121998,3.883897228052048e-05,0.010787771596016724,0.014060617358541494,0.009558347422412579,-0.06840347411375092,0.0011344003824629734,0.0031465005244796593,-0.01459110538212334,0.03276048130415206,-0.0061319857075055806,0.00015573986965078127,0.018495275823470828,0.027610607367049823,0.01907665236059907,0.07522543549179304,0.0007074539127949272,0.0058552633703809216,0.0034314273397410486,0.052013728466197215,0.0006329937759153367,1.9659823314514372e-05,0.00959547791800969,-0.006807764655458999,0.01906382269517222,-0.004991667807405428,0.00010608294833746988,0.012401429806532917,-0.031690833222079884,0.1631360318338281,0.16552209722470873,5.468215001944712e-05,0.0016487838597330276,0.00542346490083571,0.0050284227606475764,-0.035928476389500544,0.002103623544411006,0.0241069302357928,0.013610138852253451,0.0974939594942237,-0.01471048230200435,0.00011487802356829527,0.00930309623796286,0.022655818959477728,0.11552606367446476,-0.0015930281460752355,0.0003036742878433508,0.04462823797753257,-0.049953062675032675,0.2695034633492557,-0.05378473390775837,5.2210605012506575e-05,0.008223754449138091,0.06294416654461045,0.34718304044384624,0.036949958410674374,0.00029880220130055384,0.006845817282374641,-0.020867214438754417,0.24807265682039284,-0.0898401574606682,3.4907264149384376e-05,0.02791394981741588,-0.003897413699380404,0.041170381276463844,-0.00253972517052476,3.162811632695168e-05,0.005512407373674803,-0.011213915291247193,0.027172155896958487,-0.044952863570712404,0.00013294007802458225,0.0032589366054531577,-0.030023691562727776,0.21540239043389314,-0.014256653889644026,3.219629866155025e-05,0.0020699916781929486,-0.01088837133927535,0.03894431001162231,0.007738492962850676,6.198638256619969e-05,0.0011949897005324277,0.01427511912856283,0.059874647213858045,0.04366122885585648,0.00010901477663370724,0.005846173478012802,0.026699263846013392,0.027444395746519582,0.002638201194908857,0.0005560593853593393,0.0002658831680299118,-0.02641752385589417,0.08827014735204985,0.004048663049329416,0.00012596916940375464,0.0024709654927644793,-0.021226711942800392,0.07082459446284532,-0.030863894494257325,0.0019236134480827608,0.033718282128971266,0.02800368234337472,0.2638028044128863,0.015196242396530682,2.7297189195061452e-05,0.0031432275491411906,0.017459246812668024,0.04673812515704404,-0.012714477877356594,0.0012213088017335606,0.010031695091988565,-0.004425680038844502,0.033624152413353696,0.000555492590783972,8.765048234946563e-05,0.01939076415055126,-0.012377062631406012,0.019623477234414176,0.005205316592394703,0.00014886308297456892,0.0009607850181002262,0.027842793605237188,0.035510507560103065,-0.02420645884850378,0.0004500490424701478,0.00013869624995509178,-0.01180068523639917,0.04557425409080899,-0.0006149083898158506,0.002006956679494534,0.01037974183229663,-0.005069747792371389,0.015860705376145205,-0.001307641411561523,0.00010255438328457119,0.005788216731148165,0.03383248336951276,0.043479031062392044,0.0056750089496499555,0.001934332869115456,0.009668997495990152,0.024864584231144193,0.0954290180417281,-0.1513741955912359,0.00010323258041702955,0.005859677940034044,-0.04360138805282397,0.118359576460611,0.05404155751292123,0.00014933351546868212,0.030361199648251184,0.01383440146240854,0.057832167563115405,0.048168608257617096,5.838547655184369e-05,0.0062932109302794945,0.022361141351880498,0.06694966710317185,-0.0152006400060243,0.003165655147601624,0.04208696809044824,-0.005273990169896261,0.02922779391251623,-0.010188503849958189,8.976020799034201e-05,0.005283029844780784,-0.030495984596570026,0.15229680196851936,0.031817493119995384,0.0001452153948893888,0.00918423670495365,0.01860795564851626,0.0944548664033523,0.004150473055398508,9.318006796770822e-05,0.012053543512835156,0.014211464543723412,0.05883808066441832,-0.006188938739548879,6.07054570776436e-05,0.0027098154987120543,0.008733861067457837,0.016501637538462715,0.0025301218922292013,0.0002580528320728249,0.029313754507869282,-0.006428737173504208,0.02759924278494284,-0.06390850154728517,5.7921910713953784e-05,0.0006222673121206964,0.02283225038836937,0.23414406939962612,0.008530975756036877,2.5159200830720066e-05,0.0026040860434122905,-0.0029162760852443678,0.009278073329106757,-0.0020146622495816214,0.00010987017098003447,0.0077274186537121215,-1.8469024657457386e-05,7.997647879353373e-05,-0.0192508584011774,0.00036400693089464067,0.010022431493873506,-0.026240327746278488,0.12106268750566722,0.021577593623142387,0.00012414543095689323,0.0004341067382543299,0.0007632079025219033 +2020-03-16,0.03336104338294551,0.2394710317892562,0.06350187803630351,0.00014732390554720914,0.010465881872280378,-0.02646792454539296,0.08083830685837244,0.02768804712150948,7.856212205519123e-05,0.02169991854722228,-0.0013954379090358167,0.004273174883594495,-0.008122262385561617,0.00015106263450497014,0.026377520695443617,0.019914979431074023,0.022292859043591653,0.02114248780033012,0.00030149627340302624,0.0006489196177739188,0.023747558585769834,0.055679241558710645,0.02025744054480167,0.00022316363624087,0.009797505847186009,0.0006976266550456716,0.001796311306972387,-0.002400644829244495,8.47985062440241e-05,0.007671481828780651,-0.0030125440887184564,0.011679704591582367,-0.004001578423148117,7.568179224958491e-05,0.003640892776016199,0.015273195183626553,0.13490886897122728,0.004493269943065538,3.8822903731434375e-05,0.015751790710164054,0.00922662765253439,0.006960530499355072,-0.006145327280152091,0.0010222225108523783,0.010883983860613159,-0.0376620098100793,0.08466997605527907,0.07531903958550473,0.00015553779634678138,0.006612605031590097,0.008193500179355134,0.005193641085240473,-0.02888162023327193,0.000771119866505683,0.0014770350549587698,0.0035581604069903896,0.04209338690890884,-0.01921456885142403,2.519036387737287e-05,0.008973874007192061,-0.02847351392079856,0.09965748155307426,-0.0041914113357227325,8.487547088897183e-05,0.007926340336810691,-0.03518708053076095,0.2016769574203223,0.14424807960843003,4.911213028873437e-05,0.01654723574181572,-0.015404881282942783,0.010251560803934278,0.0011682824275431115,0.002930834778692989,0.011918959397784964,-0.022837796014301602,0.12726077335995842,0.014556956168864401,0.00014767661846482846,0.022704258075773993,-0.035374345167346784,0.1953753713521511,-0.07178554471103822,0.0002803669548022404,0.01893303867599274,0.037234939899304674,0.22601817447804365,0.03997704170130397,4.6405371130399044e-05,0.02690340547535676,0.01958619259666667,0.10849843431580494,-0.008344959735525157,0.0002975180761240912,0.01898441837230613,0.0069041072590853994,0.08520830939032341,-0.02646895468507224,3.3624498248584184e-05,0.03070268620329599,-0.013441052533497895,0.14906441889760044,-0.07898003291979597,3.012596701022099e-05,0.0012034914079690848,0.0020928798343642753,0.00545378098234316,-0.0056117297433610136,0.00012361448278102533,0.001844756093291171,0.01732201708633998,0.11754523451439429,0.0039441420851833815,3.403970690347697e-05,0.0105556032233941,-0.012306360978149111,0.03695669135570176,0.005444088090643534,7.382678382332567e-05,0.017516505563978036,0.015521820787456935,0.05858421643669597,0.05036631337789777,0.00012114643394927473,0.00773505420737059,-0.04010847395940552,0.04031198060271058,0.031662750831269536,0.0005686925819610385,0.010192044928594081,0.009943644408803728,0.03872718194786933,0.019464445575485354,0.00010807262453550913,0.00015086131896904428,-0.009021862531341903,0.03787140158126066,-0.012987341697892276,0.0015289877355710024,0.010429104038280462,0.016324671211206704,0.14626915204742896,0.0013274643525464697,2.8699471194481556e-05,0.019719963312392723,0.026480047697162536,0.07444748963633986,-0.008782072587080846,0.0011628935852081644,0.013067734689365016,0.03910737958340897,0.2786659976157465,0.03812197338973682,9.345453479179855e-05,0.017183430436509703,-0.0015202053292843398,0.0019761704699730737,-0.030994584577219594,0.00018156127824242956,0.002750028824530312,0.006400025038733084,0.009703731755045188,-0.03897050872567878,0.00037857053103074553,0.01422710471878528,-0.018333403971336888,0.0766173838514302,-0.0321267292707666,0.001854667794165557,0.021508604537760108,0.017975931816443302,0.0845482892081629,-0.017465177562660496,6.821454053208657e-05,0.0041277767687898596,-0.005501752449481894,0.006968296548928453,-0.06893289232728318,0.0019626895613941327,0.012848775223416176,-0.044435914978290955,0.13908873400166274,0.03759040629711374,0.00012657799422391105,0.015466971751497189,0.0016890014325167684,0.004911055335001752,-0.0027337645561892982,0.00013941694645124318,0.01004619193249579,0.01116684537054539,0.048493493368171735,0.03222212237688703,5.620318876462022e-05,0.0025495726733034694,0.04398746672636388,0.1470614242964012,-0.0007414100059934313,0.0028349685245109262,0.04906262927054286,-0.004106664783798331,0.0208949988141697,-0.018832910107352042,9.776591604283708e-05,0.007668012849160107,-0.00018893500236747494,0.0009098118550552822,-0.007279700107241633,0.00015059883639784806,0.01598024097792994,0.0029650063044646606,0.018680696856077327,-0.002312815917461233,7.507256367215164e-05,0.015688505067603397,0.023370142631721706,0.11015644971432896,0.007056787812903345,5.332106651471434e-05,0.00308017571868792,-0.05579400423445488,0.11282998318707915,0.0370677219768182,0.00024109733046368722,0.00030198102853953683,0.015976516254573407,0.06219551993153101,0.01867242631011058,6.38759480138019e-05,0.010134042783201996,-0.02026797259792325,0.2361345818886495,-0.041467885291082245,2.2145322017998803e-05,0.0063297104355582836,0.01303295093464914,0.044900909863491864,0.03152582920910919,0.00010146040306024971,0.002778789502342684,-0.01372855696743898,0.0518489336308263,0.0012596317696924148,0.0004173621225226411,0.012923759741714277,-0.027949763062627166,0.11138105816476698,-0.003351209359605462,0.00014372707491620864,0.007576176951258817,-0.0005904117268240842 +2020-03-17,0.04285696379957673,0.2914230520372785,0.07385470170742886,0.00015551922448926522,0.00892644122947031,0.02819020867285412,0.10800706878534512,-8.903545250045868e-05,6.262628317146724e-05,0.018779496881109498,-0.009597394926488204,0.032104815049782666,0.0012508704319453006,0.00013828669530689824,0.0005424965623579121,-0.016799714043095937,0.02282391020878198,0.009402493247715197,0.00024841607501958023,0.01162112155724752,-0.017045717536480584,0.03349717935848045,0.012166732433934058,0.0002662593216036322,0.013377786815210985,-0.018857315004077634,0.050580203922496944,0.0553368066153247,8.140405137913915e-05,0.0071511011085908195,0.014790318826747298,0.05185935047505732,0.01316887451265488,8.36835929065525e-05,0.007067386348228826,-0.007112109591826165,0.04658134906036534,-0.0012010505338104964,5.2358234331092476e-05,0.012152773591828748,0.016081218768590557,0.01114364468891129,0.028428142220069893,0.0011128496419989466,0.0038879983090078013,-0.04659168429220482,0.11177558996550603,0.07985392609745917,0.00014575495445816843,0.00033275979163044714,0.005936662540761649,0.003783396951623823,-0.038695971967656353,0.0007669813638668641,0.0003236325756173675,-0.002202105522432906,0.024090096784570157,0.0006591417763932222,2.7240957624841705e-05,0.0041152170116639415,0.02439463386881542,0.07612253582263556,-0.03880450225437908,9.519893610044245e-05,0.0013214019670309282,0.02048530390270511,0.12038749285111963,0.09540957140788543,4.789860436242816e-05,0.0140175037118384,0.010709004773097663,0.00865289715775784,-0.08324170867623044,0.002413851465917563,0.012025124974652591,-0.010114822665888118,0.08050386273949102,-0.004861482398840647,0.00010339360109908606,0.0027536034385345597,0.05825311740621764,0.33529977322543814,0.03691822135227556,0.0002690259314561591,0.016335832059673795,-0.013872414490983902,0.08240344848631903,-0.008585808657693697,4.742066344383861e-05,0.009808092973611293,0.029561653509351422,0.15216050141573328,0.003754139253558255,0.00032019430190897475,0.04522622319985508,0.04866112355901889,0.7402927714328126,-0.05184330735386596,2.7277769476556552e-05,0.025866580825989544,-0.029274237948989985,0.3061141405099849,0.08682380642485224,3.1950960327073665e-05,0.0030755211614165285,-0.003439060140066055,0.009895935995327669,-0.0631024287882404,0.00011194524435257704,0.0033933188475648458,-0.02114492949388511,0.13433159522643504,-0.01040005570361529,3.6359712897643406e-05,0.018908702338686932,-0.03783516197230856,0.10892539294461678,0.09879684854708942,7.700941858457772e-05,0.002394530439099693,-0.0006297153131047813,0.002391353711685996,-0.011243981965637502,0.00012040625020696777,0.0031970663537406506,0.026386754466832554,0.025396395301612876,-0.021730230908361018,0.0005938673635336641,0.0002807024987242011,0.023789632758567544,0.08670152361936606,0.045734609007439406,0.00011549070101607872,0.0024740552177675234,0.010705323913770246,0.030309554127358532,0.0010628477569205094,0.002266936940036133,0.017982470369996922,0.017355448240647418,0.1604949123058085,-0.06961449427804864,2.780716796590521e-05,0.01155856653973072,0.026073674384025594,0.08026181011986108,0.009655411980695694,0.0010620979176901044,0.018307242062201037,-0.027643389052037358,0.1845376595819567,-0.04288757469211863,9.97543678816039e-05,0.008608096069741672,-0.020395025215893686,0.029298262729268765,-0.0029943696237798275,0.00016429629266006843,0.015261126872134826,-0.011392589313856652,0.01881109282792923,0.002013572221684661,0.0003476260624653107,0.018937319038428636,-0.024234670187198066,0.08845531385347173,0.02922076490075803,0.002123555065639816,0.008311329839539883,0.0196045578508133,0.07466682108210083,0.028200537682478693,8.424027202460058e-05,0.005737881634202776,0.07687787141286688,0.09106358347997734,0.05723890964135388,0.002098619990900141,0.013163117579488763,-0.023362664737233828,0.0841421380534277,-0.01993847060953713,0.00011000815221736696,0.017629603358408113,0.020987313836552137,0.05442130660679478,-0.019152087062740943,0.00015633213836331814,0.006900902634321603,0.010818394109200961,0.0460186058896773,0.02419343851272324,5.737771721806561e-05,0.012707008296017149,-0.03824304367928282,0.11345504687797507,0.024906034551656287,0.003194822158116688,0.010012424991465874,-0.012883511249118549,0.05972310094151943,-0.1835418031223429,0.00010730808945665835,0.011081036373975693,0.007844218948553056,0.043517177991428756,-0.07048784268259908,0.00013072232611157866,0.006380722530927269,-0.024418203938724226,0.16699101483117346,0.036038129219865676,6.916228152448845e-05,0.011443878259097286,-0.0023949823144662273,0.012560416676902136,0.00020120089364219357,4.792318334778259e-05,0.002974391410502029,-0.05050252728347966,0.08876864554594736,0.0055269538367407,0.0002773849619279054,0.012284064338460259,0.019638555073821853,0.07561429147650374,-0.005075879571601037,6.458326839684108e-05,0.008950040869554768,0.010558926112400958,0.09678137885031014,0.00215211204286112,2.814875759350131e-05,0.00874273726917081,0.005175711627530035,0.014686317461726222,0.0043299163033728,0.00012318735310982518,0.0057571494893063286,0.021420324492720456,0.08019199469839941,-0.016571197811375876,0.0004210396541249195,0.0017614291700553072,-0.02402572419314201,0.11244128668808222,0.015407035372929902,0.000122383389327335,0.004145273322119916,0.0016542309640955087 +2020-03-18,-0.007491071614589156,0.05364854020389766,-0.004140053770706526,0.00014766331830501822,0.012271987898261933,-0.03948585881749004,0.13464306344325994,0.036081200919772176,7.036685332987872e-05,0.0021083375671741766,0.012231295813296884,0.04831768575499973,0.0057028137099142074,0.00011710179419419705,0.0006104805846487354,0.04064448999529609,0.03981766294403095,0.10568307786840633,0.0003445036033174597,0.021352000202401914,-0.0010599847731984034,0.00226741328077248,-0.051820521625898536,0.00024460577871086674,0.01645569749938514,0.0186717929613053,0.046069675099382305,0.055310164353973366,8.84947717616558e-05,0.001960291486409215,-0.03788039129338344,0.11822363907465298,0.040867126832289505,9.401561435497096e-05,0.0029449765591328726,0.021207243286548556,0.19379619615558488,0.02964325744937397,3.7526458857129545e-05,0.015381303794634224,-0.006575384459082303,0.0061209816642732425,0.0031878006567361656,0.0008284090962006293,0.0030337464844215254,0.004758771481629489,0.01063485025419333,0.002002842192893048,0.00015646793737313813,0.00795774657249886,0.02622839268904273,0.018166819054031596,-0.05473184271497037,0.0007056951699707698,0.021882926005036524,-0.031466018061462285,0.406608708316312,0.09289619109980593,2.3061518557490067e-05,0.00016827428494726755,-0.0249446008968517,0.057120767629930444,-0.037490291634632564,0.00012972795215202777,0.00198466300429478,0.0007085803545479314,0.004614126736169641,-0.08223310573496048,4.322762810829155e-05,0.001071167199134398,-0.01124035317284536,0.0076175556875328855,-0.06373974825108177,0.0028779768207775145,0.011155131783689773,0.03165047259102134,0.2102411833457628,0.03323164814727444,0.00012388379890210078,0.007220485151225283,-0.029721746748187897,0.15675776424310564,-0.0918480458096388,0.00029359827562740697,0.018602280374607875,-0.005970766306885271,0.035414921531820805,-0.0004222119308230609,4.749028168105888e-05,0.007067650495953065,0.02321981185412485,0.1401423595562979,-0.02332621031529315,0.00027307131296976247,0.025343449566262662,0.09541335073208321,1.167131021310139,0.10530039952929598,3.392499298964317e-05,0.013786394074344795,0.0034795734950429343,0.04068042536658836,0.00010772506597449472,2.857736867882533e-05,0.013476181493518011,0.01310380682079635,0.04258757112273123,-0.024964918143384467,9.911453914145831e-05,0.0005261891652017755,-0.07170532420469708,0.5124307613640567,0.059919255061108775,3.232277113466263e-05,0.00372788506577257,-0.005538496708199278,0.016809543813158773,-0.015596493333031241,7.304884553979132e-05,0.02061277388458886,-0.016162528604228066,0.06687424346624797,-0.06279364734546103,0.00011050934889682755,0.0002610756496308139,-0.0003262935476439278,0.000373444935886745,-0.009471822198136842,0.0004994102741598609,0.02490158700706976,0.014891422740223129,0.05258206602939286,0.019345807299966773,0.00011920227813518038,0.014598953662765115,-0.03135698231666607,0.11809619369491581,0.02361380312162477,0.0017041881278411076,0.018116285797330933,-0.026824800334262152,0.2078649725823778,0.00923296747639683,3.3184660660737705e-05,0.012893589381172703,-0.036503934820315366,0.11500233771550376,-0.08509666477799117,0.0010377775739654296,0.0013454820626129552,0.012513664799257676,0.0972536812697069,-0.00665061272262777,8.568486392319522e-05,0.0046904280775068394,0.004423999025172775,0.007114901110316886,0.0005319278402792978,0.00014675453837484904,0.005206061857698781,0.02869343855015476,0.043588843916748436,0.018792160362871048,0.0003778428073196226,0.011433524967243702,-0.02242253713091116,0.0864167418433594,0.022411527101321573,0.002011116387618039,0.0022214774235743465,-0.02987564317489849,0.10996348179827332,-0.019190691238693505,8.716841547837442e-05,0.007556616798190755,-0.010904252810814623,0.015945426868290483,0.015068586837981915,0.0016999531542174079,0.005112287939888789,0.007799321146480152,0.025166889720279976,-0.006935748118819984,0.00012278442866974472,0.01510899256926474,0.039369573951990706,0.10964871395976165,0.012362152487398841,0.00014555178932535608,0.015999900787970256,0.011940706150177687,0.05065413889444215,0.006691473793523626,5.7534586879859395e-05,0.017236100472482134,-0.01569223700122116,0.04481924098706893,-0.014257412785370207,0.003318473998680256,0.004315524048218284,-0.008954481649825548,0.04135889659461291,-0.0565443845401371,0.00010769910090343715,0.008613248521921172,-0.015926327136726943,0.07714319400849912,-0.13293353448242,0.0001497196489989028,0.0066896043480939565,0.012967170557020107,0.08029591980905994,-0.11460585302374261,7.638365653087879e-05,0.023164846486869582,-0.009597550605912735,0.044518565488768876,-0.037452832852967716,5.4183448713828626e-05,0.006607185570714516,-0.09533998576787295,0.19413790653786075,0.07137602490367452,0.000239438583552713,0.007142366438737745,0.02930579921309437,0.10310593458933405,-0.05825511613736887,7.067800501200129e-05,0.004294199802527541,-0.013578275642593804,0.1705901488041653,-0.005272781323900115,2.0536288563863395e-05,0.016020205194828004,-0.0251194365754616,0.08635798067683294,-0.0037340164329442652,0.00010167551479590147,0.0010124156546832156,-0.016195356505482587,0.06470763827779874,0.03233710664489716,0.0003945144676806988,0.005461636201359401,-0.02399001319672731,0.11662381612125353,0.011955108289255178,0.00011781891927009989,0.005723821888380004,-0.004264326444703924 +2020-03-19,0.04442471289604079,0.3141030339146382,0.05418623322470387,0.00014956813639619205,0.006671481912928577,-0.007237433279235226,0.024475562101160645,-0.03156291361811175,7.095163784197435e-05,0.03485647395598543,-0.0011678607126379204,0.003984923130749498,-0.04542358573742885,0.00013557146997838338,0.019716799965906487,-0.016390119428326355,0.017146806266305662,-0.01183536804669328,0.0003226017607534109,0.0007784475418430685,0.01674440664482329,0.03727001128550115,-0.029419330341378638,0.00023507584750650137,0.02318574662596254,0.0011889882033818597,0.0028168553526473896,-0.024912507276983933,9.216366556383349e-05,0.010080510208145262,0.009670223740760441,0.036752215778127796,-0.10322623696819268,7.720454183764732e-05,0.003017965583649922,0.020350900435989614,0.1537323633899223,-0.006368513552604078,4.5395932359757184e-05,0.009378614059486349,-0.020397002755013112,0.015713731657023496,0.044542624748006375,0.0010009947708380092,0.005434688891588314,0.04745324657254857,0.10475294677437288,0.05510011117346673,0.00015840233096336124,0.010104560923015381,-0.01204766431137025,0.008214823499108128,0.012307401308140795,0.000716851138952643,0.01667457592124846,0.002629844758520124,0.0339130898098606,-0.023403145212901457,2.310923356295883e-05,0.0019486371658597869,-0.024314256157111303,0.0652479861687615,-0.0738546245091502,0.00011069930993182371,0.006659850539708638,-0.00265326946057469,0.01230941840122207,-0.0009274487994532752,6.0674421305670305e-05,0.009962153432982093,-0.012067725896533269,0.011419718998494987,0.002705359930374858,0.0020610711878070163,0.014480422746379298,0.05847507065672547,0.37366135775657494,-0.06888245425127137,0.00012877888942814582,0.010980484667559513,0.0173204739790373,0.10676435761290048,-0.007404177219322049,0.0002512127704267881,0.013420712987586576,-0.000860658860064866,0.00531699200279942,0.00045937952320514836,4.55959210348816e-05,0.009095390078640705,0.03316497396269263,0.17653221347733816,-0.021143393568688516,0.00030962962116837646,0.02680738510250338,0.039693711858476415,0.5205474096492959,0.0007056523474281447,3.1644020293558884e-05,0.00453751464468548,-0.007985535710721671,0.07317649579741943,-0.01004320151402847,3.645978947518551e-05,0.01274402458556693,-0.05452098420203996,0.14745703363174145,0.11790854337953854,0.00011910251981580123,0.011490563938418236,0.03841579798415528,0.2444647942513308,0.029789609343171642,3.6298268636571095e-05,0.009992643312186777,0.014724611359217871,0.03937835137132566,0.029082508230578157,8.290174904630253e-05,0.00017205318999635386,4.7602398118386425e-05,0.0001877117772697066,-0.008138367544703939,0.00011595404573954164,0.0032290763668998516,0.023707471969356093,0.021353438791963608,0.0008026268507949138,0.0006345896471768686,0.0063468982894048995,-0.00035716882106108354,0.0014481877526091487,-0.024964218591605997,0.0001038089214941074,0.01632883018059373,-0.03402430756473021,0.11310944718299096,-0.037644532809909474,0.0019306768557438632,0.003608194490266264,-0.01456078083541498,0.13035099396795308,-0.052296692761859276,2.872450234199067e-05,0.006907149475336542,0.008101159481951335,0.024615052684259744,-0.035018738096737397,0.0010760134055689042,0.001887725968264948,0.008072335600156648,0.054034252398906996,-0.001270206099938964,9.948456496634924e-05,0.0070478789159929365,-0.005921294826803173,0.00885646243784457,-0.08014811406627348,0.00015779810621322366,0.004497225337889671,-0.01244690089989579,0.019934465095221843,-0.020595049301627488,0.000358393858521262,0.03277474302058171,-0.044868211301790924,0.21000775282642048,0.07329298346588016,0.0016559749763228487,0.002409675233871693,-0.03127476726986343,0.10802638491295496,0.01632170481018174,9.288693106710433e-05,0.0035962416827299798,-0.00036476045164190085,0.0005278898062339935,-0.014035071861385933,0.001717677634747279,0.03347343185032927,0.00470898469782357,0.014172679101107163,-0.002848719222306755,0.00013164105730595655,0.00974101435775816,0.020222791587250696,0.057642223107162605,0.0008624821081969014,0.00014222002811610564,0.03690316000401737,0.010439778175541927,0.04493459962347478,0.0003185050944005099,5.6705387101215686e-05,0.009482020284098619,0.026140560075941684,0.07723679311649742,-0.15331962197835156,0.003207810560372943,0.008342121964238612,-0.012692782135088714,0.07003668168437538,-0.09726842364075058,9.015126709892899e-05,0.020029596275567153,0.02572519077994891,0.1391490186660727,0.03840155206718951,0.00013407235587948425,0.00828356011276471,0.02851293828455476,0.1813505173149034,-0.08536109100252462,7.436556365345015e-05,0.006811822409677611,-0.013796467364062563,0.057947672798296504,-0.1458802331693707,5.9838306456788574e-05,0.0020518030525237653,-0.06390638510804046,0.12372515086515523,-0.011361381414848399,0.00025183474836893446,0.03227926980663901,-0.005744096727013834,0.019968448257204306,-0.14281296335708296,7.153058933107338e-05,0.004743041214193762,-0.04179242947701668,0.4334481226939038,0.07967852457401309,2.4876643211687566e-05,0.0067714206390855035,0.007833265263341624,0.025982321162460388,0.013598845856838898,0.00010538379923624774,0.00716683658033852,0.01830135849689178,0.08066560491704337,0.02789217689193367,0.00035762091025231933,0.006612836972366411,0.02231443201077492,0.10094515474724458,0.010803132144769691,0.00012661120865976758,0.01183825450330719,0.0016420409968262305 +2020-03-20,0.0011155923550991867,0.007691864378235837,-0.0018140315005893976,0.00015337709051883023,0.019136662122821224,0.0029990596905660164,0.010352044654122967,-0.014114306248323825,6.951355502762377e-05,0.001648643421091183,-0.03248419423046418,0.10851837499644189,-0.038905163030122716,0.00013847329334382472,0.0133060818984548,-0.024606965024822,0.024733441039987314,0.047096112404175265,0.00033576959472930495,0.010312800237154893,0.025739158017135246,0.06366000858708416,-0.049753593756911144,0.00021155603338979018,0.008200105675771441,0.0021210544717695317,0.005415590751168832,-0.019460221806209616,8.551705254098267e-05,0.007586461555532395,-0.03481675307816128,0.13431767131143738,0.030748986940275135,7.605801186981495e-05,0.011989327673436885,0.006145669605679469,0.05414461090453839,-0.006295165375238908,3.892356282011614e-05,0.0053497429326404885,-0.0030098732730370597,0.002147900458898084,-0.00518349590141691,0.001080634544322976,0.005231827377682321,-0.016468576586532793,0.03300786451382073,0.006017858128330542,0.0001744618695893696,0.007185189919795942,0.024948014452736245,0.02081053579181558,0.03939133041368711,0.0005859722957460437,0.011499522219184684,0.003445389487113371,0.04505884553195896,-0.04795801849798143,2.2786679993371457e-05,0.010768228690092621,0.038517092886005334,0.14040118825401166,0.007821662625687523,8.14955237891099e-05,0.022295360538887057,-0.02942293228668611,0.15072323047786804,0.08229452476946202,5.494998481775325e-05,0.0011124936614774032,-0.012333593434633562,0.01179784670963131,-0.06005431362189272,0.002038965379400538,0.009734708104096712,-0.06702404555570088,0.4556953450119223,0.12216439600369412,0.00012103421387055402,0.01946011676278982,-0.009215498292310949,0.04309388842750684,-0.06798602865200443,0.00033113979225510775,0.013849413668786111,-0.04939119404186697,0.29653716114871076,0.020497222680740036,4.6917121153554865e-05,0.03457978797741865,0.01665386066878526,0.08821700806374289,-0.0030446482358631767,0.00031113538815209996,0.02284681199030198,-0.049564933599101864,0.7315465804271893,0.004046894946107274,2.811659824811324e-05,0.004722101392735436,-0.007665783689228327,0.09525409387971531,-0.13461206594520292,2.688775977244427e-05,0.00720870457445048,0.000881533649198436,0.0026807029950860423,-0.0033152196179398775,0.00010592853127725698,0.015117666839966844,-0.0036459820571763607,0.028219375078315383,-0.004822042548769763,2.9844170408466026e-05,0.015168471243835384,-0.0005513744070234602,0.0016534319357388641,0.00023362627693661984,7.393288684208672e-05,0.013314857648003345,0.014018056609293977,0.05437697778003128,-0.02600624362621681,0.00011787490041023586,0.003392189886059785,-0.006235006783405566,0.006235863192794623,-0.008854479177850665,0.0005714995765733203,0.018634671085544913,0.004815335752198074,0.01536904515408122,-0.07319391028968106,0.00013187597893469266,0.015666138743094818,-0.020347147937259037,0.06626207325426547,0.012549636670144445,0.0019708687215308266,0.012481617426813823,0.0011206642599256595,0.010356910265023691,-0.027507950605996725,2.7824508627108845e-05,0.002109812933513924,-0.01933802513579879,0.06380341792285263,-0.0692963721942277,0.0009909219436956,0.008096402051524896,0.004826311635230302,0.03948921446783642,-0.12314938277661903,8.138839973668204e-05,0.0002522326150962253,0.026473192980003512,0.04091299403311105,0.08248296785160333,0.00015271807783859284,0.01351890830924151,-0.03144759512709017,0.05372962126974682,-0.17929237199117246,0.000335952265419324,0.00028660224064840263,-0.03032409591420183,0.11286740469773365,0.024786525395232042,0.0020824264143817555,0.012341168451559935,-0.015350398716369765,0.05993993377444785,0.0055909948558111695,8.216630780329922e-05,0.0031769892846750625,0.011004871631553339,0.014155205121854787,-0.006033466062412857,0.0019326179358793946,0.008500996796088666,0.007771192226099111,0.025504340881646492,-0.05210157490369749,0.00012072287896259852,0.01609901071594671,-0.028539537387056554,0.07430764581754637,0.018999134442789205,0.00015569469061050138,0.008354479116156313,0.0005007669346967559,0.0021680894830303425,-0.0760343826021189,5.637315835700744e-05,0.0002219657239927559,0.06377065866736427,0.23103004783220132,0.04415518970454854,0.002616197297045242,0.01482435847559352,0.016106213715922874,0.07841321337571248,0.01962999673930081,0.00010217503063616703,0.0022095619384107424,-0.007879399363975095,0.044651857254588465,0.002671318438897919,0.00012797182686320082,0.01083875515586429,0.005863338377091158,0.029990413862104166,0.00022960178343380214,9.247220171449257e-05,0.014014667831907478,0.010590234402981272,0.049621979481550865,-0.08881257141771648,5.363877895442431e-05,0.037525054161785344,-0.05123657487865875,0.10102795381315223,-0.00284852434787577,0.00024726800613365937,0.0050514828675561774,0.002461856752593983,0.010807549602838949,-0.005581638164670565,5.664347874234318e-05,0.024761432400410524,-0.01466567611453852,0.1448785003316341,-0.009185963660059124,2.611736948838381e-05,0.006213747801064421,-0.013374805756890895,0.04334539486379306,-0.0013386853326592075,0.00010785827851490554,0.010047027734201951,0.0028207686682232913,0.010746604034845859,-0.0014528734414913315,0.0004137368414455459,0.0028503250619574096,0.00037803318101409055,0.0021256285562646243,-0.0007189609519339742,0.00010186250235530825,0.000837215933363344,-0.006378237094670524 +2020-03-23,0.04091804083910949,0.3006458257402236,0.015255863179122333,0.0001439283136721196,0.005644528450514382,-0.01445322407029405,0.04657384415207916,0.005422129495060483,7.446173934656599e-05,0.011729534726788358,-0.019825470284194062,0.06423427039361627,-0.05485720539883524,0.00014277557144506858,0.006738489877899885,0.030037382024452705,0.03225229269164016,0.022608582747809563,0.0003143180648306122,0.00022540674141813656,-0.019821750128095308,0.049924834816383115,0.020025829718738487,0.00020774143767340235,0.00572784188536255,0.012037604799558666,0.030506282143370127,0.006540289759517192,8.615838274419854e-05,0.010525485474943507,-0.03417923384190447,0.12667816449531757,-0.06231256546163428,7.916813543383068e-05,0.020930551215216777,-0.007826719253495215,0.08448470221140987,-0.15573377890403278,3.1768762117680635e-05,0.010877347010968498,-0.0016552850781287446,0.0014841708779241652,-0.023198695979332,0.0008600697655443071,0.0009657783252733881,0.01297204544664319,0.03045590661824342,-0.06792508322626123,0.0001489357016332985,0.012715042500405303,-0.016517321419279182,0.012967254595790921,0.026015160570397284,0.0006226097831511929,0.010587363269244497,-0.010758309212702967,0.1599445682701318,-0.018356137401874712,2.0044596392066388e-05,0.0018114156703124109,0.024072655677218974,0.07135319484872578,0.005216458896496967,0.00010022166612260944,0.004340847223131084,-0.0022917305275449574,0.014411260893388799,0.00019151408445108046,4.476343317466003e-05,0.010200991160916217,-0.02118562285249863,0.018390423254818523,-0.049821953395102946,0.002246841747163026,0.008626946620746133,0.010433484633399905,0.05594696508600614,-0.032607034488074324,0.0001534634494891134,0.004374566739737956,0.0004987650553928812,0.0023622009485676685,-0.10120216603946533,0.0003269545688627166,0.013749539111298009,-0.01839297869054158,0.10442614053417197,-0.0101349460832602,4.961394905728796e-05,0.01660352631234943,-0.03186963220528368,0.20627762186344079,0.01858501621876134,0.0002546312740645506,0.0005891489297730681,-0.026864794060922376,0.37568821680778797,-0.003781491440703417,2.9674688790658893e-05,0.0182308161560673,0.0023017551377396426,0.022013224561089735,-0.04579938126816586,3.49347119237345e-05,0.003602641315726118,-0.040701112156310476,0.1081663177632157,-0.028506485105270714,0.00012120959126352845,0.004358754263502995,0.013109954861035321,0.07441940090690578,-0.04376503995193304,4.069184700324262e-05,0.011240709220421346,-0.007998234748338053,0.021916903467993604,-0.004264125731236962,8.090816175163259e-05,0.004948790214475914,-0.0008645434175158834,0.0029474360311391528,0.001527684236311763,0.00013411921901108328,0.008629672177734665,0.012008406732321984,0.01118650376216109,-0.00452839760328705,0.0006135734764512605,0.0053502446998297745,0.010651930246874157,0.04256959210091585,0.012233695275439226,0.0001053209660762081,0.00033501614638961445,0.04694595567080431,0.1483189150712651,-0.08407332336652817,0.002031518675136023,0.017077631509834074,-0.009178850648465924,0.0841358006758129,-0.0097737642410192,2.8053668878571204e-05,0.028533730740601254,0.0768280313054185,0.23646136992798794,0.14929769843526197,0.0010622598653240983,0.013809250075564708,-0.026130332324068594,0.19882656071934862,0.02321658639873248,8.751775651124913e-05,0.007424608693645521,-0.022995514757695762,0.03177811383223826,0.017356205923139276,0.0001707892005536044,0.006246951110119091,-0.023644408927466613,0.028901178178594264,0.022198426639264884,0.00046958782470491486,0.005244921820734799,-0.03718620640191297,0.14580221074492444,0.040325406109679225,0.001976824466741616,0.00689302632885753,0.014806989868160666,0.05303063794020395,0.015981690237070034,8.958396862809298e-05,0.006061740731423076,-0.007838688025562075,0.012135085296555284,0.0065671412296584,0.001605749290047637,0.01596549632709593,-0.0068799099996753365,0.02239139370864678,-0.006452364408406387,0.0001217356186881458,0.028913617664599274,0.0009307741326367627,0.0027048092584086155,-0.021396848745839196,0.0001394980179395852,0.0016718001111937246,0.04765610955872462,0.19454615357623384,0.16838146252215305,5.978742676033335e-05,0.018264175475187768,0.012180504876887528,0.04142909136632939,-0.005260546166470306,0.002786621217977744,0.022709856138242744,-0.021634575150544944,0.11995068906428691,0.03379256603479106,8.971936573659669e-05,0.009817679084743028,-0.0019350166699426295,0.011562789869459222,-0.010943742190448323,0.00012136203829407528,0.003716614942488865,0.05750315501326849,0.3058797884342695,0.1199108503578047,8.8917980667496e-05,0.013356269605072966,-0.02368998907539731,0.10459332831039914,0.007958787588457894,5.692568591316515e-05,0.010106649716911616,0.002288426290928041,0.004229087061825082,-0.056466498788708186,0.00026382727807550116,0.007143438373739682,0.026849309716632266,0.10703065429804912,0.04370304047183105,6.237913098019326e-05,0.016726487512507236,0.03237288660369101,0.38617076830006913,0.011067552656226916,2.1628844349303688e-05,0.0017631904053775431,-0.004783362210850364,0.015396613127251369,-0.006162650873945707,0.00010859680181584415,0.011261504988241373,-0.021705236229059153,0.07499023005753266,-0.0034459174529329014,0.000456234162486712,0.0022853775547535963,0.02177688339893596,0.10358088975044491,0.008582989371553478,0.00012041702253212362,0.01977931702583789,-0.00019047999374303514 +2020-03-24,-0.001869974346335523,0.012008394664310244,-0.017569622648657014,0.00016467864301414025,0.030903335228307263,0.0081028586466471,0.02561784571527038,-0.030937959554320164,7.589377992076962e-05,0.0012904434200122006,-0.009325922041698532,0.03347248181664324,-0.02338778767256201,0.00012888461273044292,0.006221489850320731,0.023561798474852624,0.027723355747486533,0.029648053911517005,0.00028683391163375054,0.003918304802372609,0.0185479694984812,0.04068286728316905,0.007539385091392452,0.00023855174151965326,0.011654224779020755,-0.017806461619303302,0.040590274174904586,0.027585903343121387,9.578607615964074e-05,0.002363058596693746,-0.021200496862315656,0.09036082514456553,0.0027602017663575576,6.884235308506409e-05,0.010916502541489228,-0.009395228805508023,0.08001739694877158,0.0053839953053216195,4.02644300891052e-05,0.0069024348862285825,0.011232716664007695,0.013212054316867396,0.008082296346303516,0.0006556306383759499,0.004947921362703277,-0.06684618068848029,0.1709024565757847,0.17326738815329448,0.00013676978982849817,0.010277645573101745,-0.004296434388966782,0.0035832697947752097,-0.09487745359745942,0.0005860747805541139,0.0026257195606503147,0.0074285112458809385,0.10220758545593683,-0.01703712149666701,2.1659151840904457e-05,0.010505877148787044,0.006075642119193147,0.017425616645716024,-0.0041138971878982395,0.00010357502969521928,0.0019851439199663084,-0.01418517354882498,0.08860022313985638,0.0068466390490827716,4.506731205066138e-05,0.0005306477455767009,-0.02442721558422631,0.023502630304521675,0.030801358120175818,0.002027124715169815,0.007501829214199547,-0.06217857996567637,0.47603104626726817,0.10141505752081159,0.0001074874176627381,0.010437549324579607,0.07244086757825353,0.4247289021680765,0.08916201686204106,0.0002641070898196625,0.007002658699354834,0.013791092941467105,0.09400394213288071,-0.010859308440171182,4.132506780359817e-05,0.020145561992164815,-0.025977812514099207,0.15730269847054823,-0.01563382989577872,0.0002721781217113441,0.034804962765379005,0.04867445966291671,0.7002334350946703,-0.0026930187820221833,2.8846194436611598e-05,0.0324124786997941,-0.026549656032776064,0.24933816033348247,0.058112316662109156,3.557556917702801e-05,0.00645395219419961,0.021076697400440884,0.057469593225714016,0.01436653936086552,0.00011813734136781715,0.005842998712833947,-0.04178353840587456,0.3329598503125538,0.01789422654555819,2.898716372842982e-05,0.012020915214901708,-0.009769692452944515,0.03052290932528987,-0.032969679126251296,7.096306225523584e-05,0.000514748815686882,0.016921130031251834,0.07580100292567857,0.05272861527460393,0.00010207114970979933,0.005452076629493981,0.012475764284768025,0.012795445473554132,-0.012090901956234492,0.0005572977781461287,0.014320947706736331,-0.01897351463012367,0.07167326314655367,-0.02808553413270733,0.00011142345428189053,0.008788233136554137,-0.051211673741460406,0.16645726638408861,0.04953996783986891,0.001974628434336668,0.015749376256214875,0.017882426646575134,0.14064664059977025,0.0076629814803853185,3.2694845106183e-05,0.003274222988566086,0.02221474505173628,0.06333897274720514,-0.00635903402946523,0.0011466782834364338,0.009193872364125225,-0.024870657916402833,0.16311086775972597,0.030741657418469362,0.00010153833065209193,0.009603833026968234,0.02779781316687497,0.04561874632066818,0.04854324905421234,0.00014381781024782909,0.0076520867510524865,0.0036394659753520545,0.005047250939618719,-0.019546817377550672,0.00041389166427445917,0.005205803911049151,-0.02011814440629346,0.08084979932491611,-0.019867726097816046,0.0019286761765984397,0.004400108186131053,0.03152485830180381,0.1310603706138741,-0.02279385324668736,7.717419745043476e-05,0.0019393783710438795,-0.002994261058811201,0.0037877872560352385,0.005796148564387652,0.001965084705504072,0.008551337825998382,-0.022305830971798488,0.06559348747636974,0.014550275833826336,0.00013473291974346366,0.00759218343506879,-0.028928535609015257,0.08862078521045433,0.010432617688058808,0.00013232784263529879,0.0054224619012824445,-0.014239577918402689,0.051636129969583215,0.002301691456517623,6.730655404356352e-05,0.008442364836351727,0.050154735808539894,0.20607712665507533,-0.08545356494202866,0.0023067483291903056,0.011335293949614212,-0.007799836238273542,0.04470571629224655,-0.07734976816991372,8.678866290658208e-05,0.0164891020369643,-0.0019131226665526013,0.00966650960713769,-0.017475482670144104,0.00014352710158849633,0.0006479892010577597,-0.016166674692984856,0.10991283787776074,0.02883114987516897,6.956983559002906e-05,0.007690664178632086,0.005887396115111929,0.02510529024862415,-0.0012980462104407605,5.893935856334066e-05,0.007936400778373421,-0.022790342960530677,0.04280985345831993,-0.019865359764070313,0.00025955925178490594,0.010297435375619663,-0.002272222399272548,0.008366075133211696,-0.03437777603614842,6.753726230971868e-05,0.014225865199022972,0.0076301716798026775,0.07618643792292101,-0.01269368597715049,2.5839727328277742e-05,0.03429070652115895,-0.005759370757597542,0.015200674452875483,0.0011771406052371793,0.00013244060120971713,0.0025645870254768013,0.017410365347640372,0.06794974326393088,0.014185528188028903,0.00040387598983249916,0.011087859199218605,0.00396139300912756,0.022211018384497197,-0.03670697970830025,0.00010215303053890087,0.020495609488245393,-0.002974009992622676 +2020-03-25,0.003327547010760603,0.019834544546358326,-0.06946492819153156,0.00017741427111752088,0.005136926386209077,0.07393349995907524,0.2394753732390097,0.09263005262307973,7.407828743724683e-05,0.010946748378573562,0.006725783257303711,0.020005927120594562,0.0007037991518690275,0.00015551826048326294,0.007001727519807158,-0.002965204515700887,0.0032475845803229264,-0.00021025115779282745,0.00030814990519637984,0.00148815376513772,-0.023741606490478087,0.049912545144074075,0.020625758505773816,0.0002488846766253172,0.008699378099479346,-0.008677586317494665,0.021634494027717964,-0.033421921512303165,8.757878977424212e-05,0.007210920398735739,0.04339825200902684,0.12838890212762188,-0.06627950416415185,9.918239871266054e-05,0.006733094891461655,-0.025558642433640567,0.19838846722179057,0.04644359214614521,4.4179416405755246e-05,0.005345840168942414,0.008422381724966677,0.007935203906580502,-0.02273344972380396,0.0008185055272591666,0.003586349658855771,0.010806469397205238,0.027344716773308915,0.007807441977358828,0.0001381886215950257,0.00667000173022402,-0.03140612485477334,0.020753490335671126,-0.015105040910107103,0.0007396862812101574,0.002295188914411774,0.003503323109401976,0.042156511653273485,-0.06292824664968127,2.476499909280779e-05,0.003898378392436502,-0.017690956926947752,0.04727078101614621,-0.00018093551514782345,0.00011117562640639997,0.005039046253931402,-0.004508618589845386,0.02648514475184017,-0.017027681144658937,4.791847241896825e-05,0.0052437398514794155,-0.012005589802251623,0.010650259631496737,0.003612731612248614,0.0021986002756995606,0.002293819778177151,-0.02896025038147717,0.20444958472598102,0.0148959684430014,0.00011656500518362246,0.015176993433524263,0.009764708784095669,0.05414653499352269,-0.07287915534046391,0.00027925236358188895,0.0007036627221337314,-0.0031672916233838177,0.019363116930523956,0.0004963099116558385,4.6075890774899726e-05,0.010230288038561195,0.030808436917333645,0.1783389275807013,0.004596675552851976,0.0002847149824237744,0.00048301684602634117,-0.028923794623535292,0.3702678316043653,0.014451422963280499,3.241675342839569e-05,0.005488505261890805,-0.014727538298012327,0.17586740147063895,-0.04747048014264664,2.797863503054515e-05,0.0008304502521337794,-0.008342142626149098,0.026257776810764487,-0.013931510296704277,0.00010233929338659607,0.006538015558114091,-0.03735472693333965,0.2819999426009287,-0.06572825351561665,3.059770986247494e-05,0.015159888712572634,-0.005909312955560584,0.015636197855934283,-0.03854539274406351,8.378826850700144e-05,0.019018701117124177,-0.012560393033915668,0.042532106242746774,0.020213416748166072,0.00013503145114068042,0.009037829746676485,-0.008623801709231757,0.007119108346151226,-0.007859974528619165,0.000692386706258268,0.024469695238382407,0.0034331010189246956,0.012521883595663683,-0.015269217018372003,0.00011539923493006231,0.0013405749276879046,0.011308027912419145,0.03937309286883215,-0.0030257672554197764,0.001843344533257587,0.014661022073802207,-0.051085072499168216,0.41832575849628206,-0.0641705485696962,3.140231040369677e-05,0.014134865141178567,-0.0416377544133837,0.14046236415343666,0.05128786202662855,0.0009691669490969353,0.004811612949875882,0.006806839458620353,0.052698068706259656,-0.1261201495395026,8.601544720673263e-05,0.0024950064569101687,0.011499478594257546,0.022133972011552344,0.00959795373462277,0.00012262080953659375,0.00406569599009446,-0.008636729683703258,0.012951700383812008,0.0011716802389273135,0.00038275991696639614,0.0003899818262944135,0.028769256959372182,0.11671644673283789,0.029008714277164373,0.0019104995019641458,0.00219218336993013,-0.025305370251414192,0.09003917112696401,0.009735082551084634,9.017197418839486e-05,0.022247993325409797,0.10296635509428376,0.1313218676156533,0.10795781304261375,0.0019491061002905208,0.02444866188921665,-0.020770496577967864,0.08434862825870576,0.0023540658897736144,9.756294292430935e-05,0.03988369999036575,-0.00788570560101239,0.02195664904216825,-0.0396773214568317,0.00014559111611726208,0.013022743178982972,-0.021722490298993907,0.09864905041193704,-0.03324994933395071,5.3744079367761284e-05,0.0009385841187944832,0.00355644454728928,0.01175421790557615,0.0025980406272327118,0.0028677438813548293,0.0016817942200430234,-0.04954243384555669,0.29298736029169997,0.1797700163442944,8.411414289019459e-05,8.309700771073566e-05,0.014423944586389023,0.08785307123820275,-0.016441082498760223,0.00011906603216162001,0.007975899820194924,-0.04029895602896236,0.26359255582022134,0.07237749177667308,7.231183014344625e-05,0.002666736750779272,-0.03915150640176237,0.15947890112670274,-0.038265487864995555,6.170106170136901e-05,0.0031974747684636977,0.015224964864987795,0.029368382636762745,-0.0765809803474989,0.000252758438238588,0.016469521237406297,0.021695790433905373,0.0843134714521296,0.0310717309949349,6.398716696194742e-05,0.0036097632496970775,-0.023630848374828668,0.22482754212376568,0.021488812064816967,2.7118214173805993e-05,0.013168995485704176,0.010148159076583105,0.035097867019218056,-0.045702252788036364,0.00010106842704973829,0.0010882849657455848,-0.007112456507448361,0.02180095697158727,0.0016366342756917905,0.000514247319795395,0.013998282520917775,0.026907688016724458,0.1284181347266174,-0.013962355537825627,0.00012001121209313688,0.005536089514390082,-0.002568222479002021 +2020-03-26,0.008758125840035415,0.06313071896774865,-0.06874145752806304,0.00014670909212793342,0.004831287884695125,-0.003463535642405648,0.01187570327095937,-0.05779589584432122,6.997950241276959e-05,0.0004435077168904635,-0.0003138581774591327,0.001044976407124086,-0.0002679659343475119,0.0001389389996649554,0.01613981359154832,0.0069794129588436945,0.00682480604367024,-0.023863787072321924,0.00034514090874489814,0.007861543428414747,-0.05221730368159342,0.11531053201445259,0.14711875980018196,0.00023694264874282955,0.01942453425291926,0.0025842308034920904,0.007531657105106925,-0.05099720954205632,7.49182284137569e-05,0.0010755528371087007,-0.05471896898098488,0.20255658153700276,0.09653219472074837,7.926498868948578e-05,0.0006523950042844357,0.004263999134309818,0.03474505996493444,-0.011075358234343306,4.2084547001895174e-05,0.004084626490918324,0.016960501016269645,0.015135559054396577,0.03345322726707769,0.0008641417677127777,0.0009984443893741087,-0.029750573171776054,0.055516012730067954,0.014956201870301125,0.00018738678365055555,0.018653256812334446,0.004633091130103711,0.0032684759250156594,-0.002159808585701497,0.0006928670531260266,0.0009091234523009892,0.005478393010702693,0.06959175249916157,-0.07325432564513257,2.3459470242521748e-05,0.000746102952275186,0.007701168941828249,0.021707150372376874,-0.025974502542485317,0.00010539132723493924,0.0026760320786208165,-0.009913164273639712,0.05193290928679702,-0.0015076161898208227,5.373180981432938e-05,0.007555750388473032,0.0013842714643470815,0.0010009641098179206,-0.012781992586586672,0.0026972781424141018,0.0028062784369299065,0.018279147684381446,0.11618783001135759,0.002717295110756341,0.00012946351936752277,0.006597743497407467,-0.024920565461571058,0.1410529940891728,-0.0037284404704255062,0.0002735796661086665,0.011658183915876778,-0.017523108025157063,0.1048293370867527,0.0007358956120757682,4.7085724240180164e-05,0.020530947673036298,-0.015804857804434174,0.08997808569912137,-0.0528728152067806,0.00028949472260382747,0.024151935211011312,0.03515331523482508,0.38428100432673656,-0.014450698482856858,3.79618704606426e-05,0.00765885479343633,0.0046346698997461995,0.05089920577303776,-0.01982675682713374,3.0422122496988994e-05,0.0027620484014056652,-0.026788349923213335,0.07631431575452735,0.022752434696801466,0.00011307398667668058,0.0036585815654351294,-0.06666845878117167,0.41795482055939553,0.056266729096663776,3.684541503250699e-05,0.023395559102256935,-0.01831314508466854,0.04703554812248494,0.019492829900727027,8.632053214624382e-05,0.010262974604913416,0.0046600607746268684,0.016162314799453563,-0.015746553338648748,0.000131836788373666,0.007128360999944957,-0.00820513112962357,0.009042941356113046,-0.03956455818841096,0.0005186225223286504,0.003300014050037478,-0.0035393332531547033,0.013261860518967584,-0.006844140057282974,0.00011233187540731747,0.01623735510621342,0.013219633171286813,0.041510853290553,0.002608124816706906,0.0020439812995542883,0.015215279669970487,0.04807911716766058,0.39065786371601346,0.03227314660724801,3.1647696784587945e-05,0.015065813206162465,-0.021001332346719172,0.06773246119053522,0.005842513716368396,0.0010137275761694948,0.0003816925875151603,-0.022592462878620198,0.18889235936356252,0.0333676046528043,7.964799165175366e-05,0.0007461936958715639,-0.014171688351869834,0.019621428683929507,0.01305607258984805,0.0001704654437223256,0.006524983122368507,0.05429456997047542,0.07534689612661198,0.081873939681246,0.0004136137282995735,0.014966690661391367,-0.00984660710323376,0.03589287198489689,-0.00033935555906101743,0.002126320568800983,5.960960164312027e-05,-0.0090897147910524,0.03309060602389232,-0.04070061486664714,8.813246273082065e-05,0.008669610006797304,0.03268892042190592,0.04879279210813989,0.00143846329734331,0.0016654135695203696,0.011732671992849202,0.002165292710092887,0.006228590108567499,-0.005006513854301193,0.00013773455129210017,0.0031232959408953338,-0.008720339749231448,0.01897662458691256,-0.011562406221871893,0.00018628368295526467,0.004045154765001458,-0.043515310083724924,0.22426153760664402,0.039970164676617556,4.7358856993040093e-05,0.015584285359115584,0.03863833643192814,0.11400527353994117,0.0023825076024643344,0.0032122662639319996,0.00624355132247161,-0.024445908011402683,0.11422469575165319,-0.14177384909524093,0.00010646006670737538,0.011442302750954477,-0.0011182825457666005,0.00585257643619111,-0.010240564195683134,0.0001385687299436708,0.012925321801769326,-0.02364433256690398,0.11730863635542094,-0.019406819641454857,9.53335513468967e-05,0.007227401437668697,-0.028447667307534754,0.10742412484399912,-0.043544908922274556,6.655676899120518e-05,0.0005609874030729898,0.06794511796835061,0.12480410253594232,0.1263512429527659,0.00026543536763710284,0.03645233197940169,-0.008750506044416266,0.03491768383414206,0.02711379678166979,6.231636561943783e-05,0.01023157660554207,-0.0024829671196620016,0.026421219341734106,-0.0310606807894325,2.4246519024949326e-05,0.0063820163663412185,0.0019119085301371427,0.0068295969776101095,-0.005633203887756774,9.785454438098115e-05,0.008101250504238117,0.0016798556680486197,0.005989723771255964,-0.05833960196882171,0.00044207213960599626,0.0064110355908578364,0.01623010327901687,0.07885298982057283,0.001947960514225537,0.00011788944267578478,0.006990817942655857,-0.003054843380893975 +2020-03-27,0.07393386220762851,0.48465564157908775,0.15220187854422476,0.00016132315436694794,0.020792444485959394,-0.012505502338888135,0.04534282708438207,-0.06940742981107065,6.617639025329307e-05,0.01514507805079433,0.005611193482933664,0.02051145443592002,-0.00376206419983443,0.0001265482057706417,0.006721319492908386,0.007424647606769966,0.008072842096500544,-0.010872195559835035,0.0003103968063572987,0.022971025276145366,-0.018040318194978124,0.03428697970114378,0.016044375554571375,0.000275304135570549,0.005255620635133079,-0.025130660906166717,0.05956604695320394,0.06123832834660172,9.211956330008845e-05,0.00521920767904537,-0.014867177273971962,0.04648613243354865,0.0002135319552240167,9.384150408232564e-05,0.00811602182819003,-0.014507814984882498,0.122761943249897,-0.017024100292362367,4.052629192922352e-05,0.00030603244704503546,-0.03479312726991927,0.02730266963958922,0.16299463083356328,0.0009827275653830458,0.005487535020296943,-0.010464204570642512,0.029860988375966804,-0.042895236289881816,0.00012253606487450566,0.009287197777352737,0.02317986937928924,0.016800604566393436,0.02380565901846756,0.0006743889296838691,0.004151807176022618,-0.003950735177203886,0.043356258308406934,0.002105019717834999,2.7154944137063013e-05,0.005805473347055973,0.018882067304204705,0.0632449857660025,-0.054326163575426925,8.868996428608344e-05,0.019040000810645722,-0.004167956534457305,0.023249314690789856,-0.0006029577939853241,5.046320661305213e-05,0.010573779714269397,-0.009373686957418146,0.008193005878143363,-0.003933344387402332,0.0022314653724003902,0.0052827915786843975,0.004601964377239464,0.029033490891388937,-0.0004309709610934856,0.0001304355888751245,0.0032998816418780786,-0.03319647048933694,0.19586621970051768,-0.005058700221134853,0.000262446389031994,0.011544370765260048,-0.011868620729484504,0.06667959926786361,-0.002457226297646125,5.013814092855423e-05,0.008781300953685534,0.04255736945428095,0.2196930993729282,0.012961597386274235,0.0003192604836682685,0.0050715063728021,0.06885162979433358,0.9144051048708287,0.0016307274070603128,3.124681918319808e-05,0.01663173571848211,0.009037127112228259,0.09432601023527591,0.024224071740417935,3.200962857224877e-05,0.00911188488629382,-0.03539630678605078,0.09118427993600134,-0.03778175124019168,0.00012504338835806272,0.015217178568422545,0.01504379715959123,0.0984571045426845,-0.04301949752249484,3.529415473637702e-05,0.0006018405109679743,0.006526583573199156,0.020235797121224797,0.010594840544543502,7.150607979658686e-05,0.015668591470025382,0.004647021800492871,0.01776120620078818,-0.12373358270872192,0.00011963296023751465,0.0010736382628802044,-0.002727406808794854,0.0033821879068712075,-0.05856398522773618,0.0004609223308009355,0.03584619440869586,-0.03602273071805782,0.14881206192829582,-0.14128359215663985,0.00010188834463992661,0.012099783221985213,0.06678217467475134,0.22735312812856662,0.11786697715604111,0.0018852927519727805,0.01028452418559528,0.045739180815926796,0.42690318156034496,-0.00031597981672353025,2.7551242287331536e-05,0.0070052162524164,-0.030120224013636038,0.08878765092292358,0.019406404714497328,0.0011091158237064168,0.04429485552866711,0.04485437128511431,0.32459247660187396,0.10991826351647455,9.202206343486357e-05,0.0012594125710658662,0.0028467597585136706,0.0036903618321408394,-0.0045216739715774916,0.00018206533075408905,0.0021347226622392967,0.0010347055468377662,0.0014245132016705996,-0.0013893115235877114,0.00041692142420340515,0.009266411243762054,-0.02820990527181263,0.1110934077488641,0.014394439306830015,0.001968174860101281,0.004434014258009952,-0.031472498277009445,0.11816888604610694,-0.08418348833965868,8.545125536119083e-05,0.004312744393865685,0.06810154540381376,0.08653445036078083,-0.03675892920239212,0.001956343535435127,0.0040294821627562,-0.019977044477603775,0.07759834563497645,0.00032343525365541336,0.00010199874088247489,0.0019346920864184174,0.01623494725522659,0.03870899884719478,0.007531062824666521,0.0001700197287807256,0.003434215644001504,-0.0068215856038699165,0.03033886600711554,0.00041841941312527326,5.487820713748694e-05,0.007335347963296934,-0.015555681925841057,0.05446668617139042,0.01655966527611865,0.0027069246025700137,0.00015661464431184136,0.03914306461118378,0.22347768107399846,0.10993761795512155,8.712870099206363e-05,0.0011940047074067283,0.00046140816305155675,0.0024662232063410636,-0.06857163158458968,0.00013567932615490136,0.0030850855040302915,0.015774372002946117,0.08431533056669646,-0.0019130947886858748,8.849000714130183e-05,0.030684166943792335,-0.041505807810508985,0.1813815516142941,-0.10093484197362175,5.751262006975921e-05,0.009877247706441643,-0.037884117219624765,0.0661391916601751,0.0021109688619902053,0.00027927218508154395,0.03671602699598963,0.002666786724137901,0.01089143905420654,-0.0009592950800604382,6.088599318195767e-05,0.0038363402672696866,0.07486406508527792,0.8494528338545747,0.22768226929433702,2.273868897597877e-05,0.001464455304886593,-0.010821551799749486,0.035420665164248195,0.012053570622114125,0.0001067927560354106,0.0036685401793977446,0.03774795217966055,0.15393891147132654,0.1271238894075214,0.00038652087663195215,0.012560732901316665,0.01144541631660498,0.06089458974186268,-0.02654453724988829,0.00010765263921364236,0.003181923801529568,0.004535307793544573 +2020-03-30,0.02001259741851352,0.14104953865632308,0.0019595533512135788,0.00015004391000126877,0.0182168728792674,0.02929572636083514,0.08843194680443245,0.0029240768296367762,7.948873965203963e-05,0.01890334349112017,-0.04553041659383865,0.15891567130615072,-0.01946879473389094,0.00013253546364566698,0.019003026073701,0.0026637615361932102,0.002898066706637112,-0.0021814295527315523,0.0003102093060525755,0.014187016870924468,0.020534871424487663,0.04957481328123935,0.01135884548285826,0.0002167348118394943,0.016190820808510784,-0.023590572259929377,0.06425634989419077,0.06324498566838743,8.016211447835932e-05,0.01025999378471414,-0.0009328588936666971,0.0035550765367528226,0.0044863367571644575,7.69939953549655e-05,0.013522186617671636,-0.010395371536665856,0.09003177846243471,-0.10026377681582188,3.959522372585755e-05,0.009815689186339377,-0.013977399431431897,0.012277495739384916,-0.00942780040157714,0.0008779329938847987,0.0033776484256536317,0.0026376007936006053,0.007025017905237978,0.0029428415827983632,0.00013128754147665017,0.002618702724771698,-0.015893479345575,0.009977343108359715,0.04143483821626971,0.0007786251594052481,0.007950917411179242,-0.01990175844696675,0.24062483434119641,0.06721641582565205,2.4647552046027075e-05,0.0017075186176276163,0.008489829740607845,0.02547279750752947,-0.05402435114129703,9.90087039179344e-05,0.00810465236224094,0.0021574403732274225,0.013017018202382982,-0.013438199613973988,4.665402393359315e-05,0.009515073830804247,-0.010955258737508175,0.010886894600417208,0.0017561776873091797,0.0019626442813682056,0.0030383769291174962,-0.03144538976647009,0.20435041256031056,0.006373189794529712,0.00012662911484929098,0.005971223871593449,0.045893147378933526,0.2344818116670881,-0.08258116251641047,0.0003030727669101802,0.016108194184507808,0.018659913225496382,0.11670314694346207,-0.09878378066183759,4.503892422900777e-05,0.013237846632132856,0.023069295356825018,0.13712563972930347,-0.028462949923566645,0.00027726973677054216,0.008848517111170195,0.04295741452415019,0.6011637398487067,-0.11387464050179692,2.9653474591671035e-05,0.031742229100027906,0.020521084940429566,0.2577590574544938,0.06673265688047933,2.65991704256752e-05,0.00314172238089082,0.016768609669324558,0.05574674172773974,0.011265630188641372,9.689476694151394e-05,0.0034621748855734637,-0.007852528947597802,0.05270019130046004,-0.08424374295759414,3.441832494421535e-05,0.011384044246498914,0.012379267668243054,0.032655987161344185,0.021594582661888354,8.404454283455894e-05,0.00901104846888963,0.01827071094391999,0.06691426301275415,0.008292615508245208,0.00012484907911980653,0.0030381408686126314,-0.012865642746991555,0.011193338035458642,0.005838952857719756,0.0006569728610347723,0.024865595930685547,0.04448481048699568,0.15824448673687772,0.10955804187588133,0.00011832299819514496,0.0018793894336052042,0.080141979711545,0.3248446452679204,0.11117627242581157,0.0015834469901070231,0.013663756256010942,0.015558715969034864,0.13470944441529636,-0.017781422085502256,2.9700099410026174e-05,0.03404957064751429,0.01074260740636055,0.035619573143937294,-0.004293796284408082,0.0009860348474657057,0.021668851108556132,0.01013272701219913,0.07652572918801989,0.0016789123692652938,8.817480524551038e-05,0.0064493464282852605,0.02530572652678553,0.03654094866773837,-0.037634298430073286,0.00016344979434130142,0.01962174892259899,-0.0065065514248208054,0.009929064884795507,-0.045758953873776105,0.00037613732502563663,0.006369016741488287,-0.026794891115755042,0.09770654043565836,0.01599569089249403,0.002125586100751306,0.01864588521350017,-0.011632899745092082,0.044095346938728776,0.0032127489390305227,8.464193665876867e-05,0.002164046554177589,0.032198314921784085,0.04589184208858679,-0.009259222330630012,0.0017441139070545812,0.011241793266862032,0.010825230967215719,0.03606228658724163,-0.035465255840032364,0.00011893233551096828,0.0016858739740052368,-0.018846271999959714,0.05122391708965795,0.00469036312588939,0.0001491464926989431,0.021017342598847102,-0.014128827549804828,0.05684823030954564,-0.016921930138967287,6.066009690700017e-05,0.0017407431857250815,0.04178885032411317,0.11756448034221603,-0.012004208338969211,0.0033690104076338732,0.018167135377240965,-0.012168830808244562,0.06248619555951529,-0.016323106117907417,9.687357784286186e-05,0.001252759094993945,-0.0005891820124593437,0.003553047986830151,-0.0023394163913718637,0.00012025667474562017,0.023467806033484816,0.008967031257963042,0.050084396855207124,-0.003083786209064781,8.468274636371612e-05,0.013150469912038568,-0.008088896798399236,0.03631019447735911,-0.001496235210675556,5.598969664010039e-05,0.008230825800748494,0.016339414885568657,0.03787800765318156,0.003163658405821595,0.00021031912534767776,0.000936675968383322,0.002709516893139246,0.010681186656128048,-0.000996974544953283,6.307928099786758e-05,0.0072291564755134945,-0.01831460702472498,0.20172684580622172,0.011197078639047946,2.342422289585779e-05,0.010390249598537576,0.0021975283305054605,0.006490002241791206,-0.006729844391384454,0.00011835826777057791,0.01026112701647586,0.01782199058457306,0.07785641414521319,-0.002941895019330385,0.00036081931973664457,0.0033805111099811016,-0.01876198199702446,0.09003691064373484,0.019905446581773206,0.00011935206181302202,0.005713389135357329,0.005605056134346968 +2020-03-31,-0.016093324777500317,0.10676640812036332,0.013265320349975327,0.00015940345396303838,0.018362544786049817,0.006943489534652428,0.02258625272858622,-0.020849045109975702,7.376394383348231e-05,0.01918966792980121,0.019016975541579318,0.052281787222790636,-0.0746789595210517,0.00016826284478215913,0.016182380240920575,-0.022621005960615274,0.027634928321186563,0.013159463054979462,0.00027626217586509695,0.002846635267147811,-0.00010577283391449571,0.00023426875305961647,0.0001362481045910979,0.00023624223718436498,0.007579894119740266,-0.011636071814129009,0.031200773329575604,0.008297825283206514,8.143062616465365e-05,0.003910461277853016,0.03708426292008101,0.1362306374226339,0.05910746354475855,7.98738683223897e-05,0.008883292641399945,0.0147981614808174,0.13498226898200144,0.004452763440476359,3.759496219895572e-05,0.001524700697584258,-0.0018891500515174806,0.0015675247501076243,-0.038578833186414994,0.0009293875155882822,0.001318678457991474,-0.045632340842193246,0.10762310649420187,0.05000616748953159,0.00014826174608027613,0.008401057882893066,-0.004586336513960481,0.0031836430214929965,-0.0681879094905842,0.0007041511786200114,0.010029450910108545,-0.01963635810505935,0.26644843100562365,0.05536717987485487,2.1961933180384808e-05,0.009088910043199734,0.03931379988949067,0.12122599664788365,0.04329661983887535,9.633859256096142e-05,0.0064135440863668505,0.004503873550602448,0.025003927850078125,0.010100107226778496,5.070371376664207e-05,0.008130224090537371,0.06175120552691791,0.05078226002760121,0.22094994304942647,0.002371681620987587,0.00607221529182181,-0.016932020197863287,0.10817835702615235,-0.0071671319638097804,0.0001288013765098618,0.002563004831789206,0.016453289993985747,0.10665432803232117,-0.0010243297087451594,0.00023888149065462485,0.03061213448724932,0.04807893384830659,0.29445323418769065,0.05385671613699945,4.599381730098549e-05,0.012265852717627078,-0.03749440996281591,0.22325341375587374,0.03448887940393167,0.0002767930764430753,0.0004355303712151805,0.07167700141768288,0.9520228037465821,0.03701947281111037,3.124371795058185e-05,0.00706886949294583,0.004208338476680753,0.045177075245000406,0.004534013418058145,3.1122484590115205e-05,0.01134920656856905,-0.00037116591660018395,0.0010190358824509476,-0.03382831989254489,0.00011732791907442679,0.008366181489391665,0.045900139782941766,0.3227489122911921,0.004542257830222702,3.285047071159771e-05,0.009766167754733674,0.013305894506331139,0.03764633993750192,-0.020225884397098153,7.83607706902818e-05,0.0005307351216604413,0.0009139831053850443,0.00332333614498948,-0.015923816314509807,0.00012575130266501806,0.002610351960057429,-0.01183611550694053,0.013325293730507778,-0.058195869394929475,0.0005077009372235941,0.00047677259213823285,0.007131063457650055,0.029680534104271135,-0.004267192801573372,0.00010112734336070826,0.003990502359298688,-0.037658588513618425,0.14134643958952134,0.030746979398913778,0.0017100087766396747,0.019778643701111966,-0.007633778209267521,0.07190668165596278,-0.00341944950626918,2.7299361261301663e-05,0.0066372271437621045,-0.0026782760833157083,0.009630282013589125,-0.06943738320733601,0.0009092589983836469,0.0017848901825152604,0.021917551076264214,0.1937231463396389,0.01592470586037774,7.534182858531895e-05,0.013557980223064228,0.013997345957524596,0.020790165445005695,-0.11012757883548643,0.000158903380923471,0.014463886420415493,0.033442465593251675,0.053076910911989135,0.03960848276281383,0.0003616567405183217,0.013536475333545213,-0.0023191360320055383,0.008625955102678304,-0.0068486651075753665,0.002083863996576695,0.00841000246401917,0.02319919440767249,0.08061353574042776,0.03889063919472309,9.233265096702468e-05,0.010023721499787669,-0.03114258212902346,0.041755303779110554,0.04555760582814835,0.001854044538149779,0.004334903670075749,-0.00741067504601665,0.02594948886166988,-0.04290284675720086,0.00011314750943106587,0.016751457693357823,0.040400880876381585,0.10068094307892579,0.040072521219258014,0.00016266867735379605,0.010516442644229787,0.0164156616019225,0.06825306396194324,-0.06664977916357688,5.870163040599376e-05,0.002788645601961696,-0.019507056854043123,0.056186375736455456,-0.05686590125906872,0.003290627998158053,0.015062628268687716,0.09078902200805578,0.43943267290231286,0.4831484585722907,0.00010277359868473037,0.00455539047873028,-0.0021563329764631356,0.011613918981646782,-0.002494374361989989,0.00013464735198321897,0.00789779056760429,-0.003599825708738466,0.019882745089430665,-0.045479505405409286,8.563549814163892e-05,0.023270643295600187,4.6139867158403074e-05,0.00021132042916852976,-0.10506116822741073,5.487597513997306e-05,0.024742450745910402,0.013172468932878148,0.023067443472355634,-0.04280968209840216,0.0002784178734489021,0.002697491216007108,0.005446017958208445,0.021257556692482398,-0.058898238310293706,6.370596504713109e-05,0.0014560653316469253,0.030761113795845493,0.35237414291068236,0.015524231715810287,2.2523159339383133e-05,0.009151014398842037,0.021047952507086343,0.05673773723616151,0.09388337103431615,0.00012967217877944242,0.004855001653899093,-0.031369588535172264,0.12342027552214957,0.08554169197163598,0.0004006362863344424,0.018449366763879153,0.01239627219521734,0.06545869848497049,-0.057993860421213156,0.00010846647684459591,0.016082953652132994,0.007235671454220828 +2020-04-01,0.02273956202957681,0.13379593686788072,-0.005208387969802787,0.0001797321439220648,0.01393318166785631,0.04151288248988001,0.15483738542647843,-0.04628556780158248,6.433059784417598e-05,0.01313506146032058,-0.0004883633855776693,0.0015235406672179657,-0.021678590763784714,0.0001482812536617843,0.006120150874878348,-0.04353570555392739,0.04527360589667048,0.120926188361926,0.00032454009387730725,0.018560091259389257,-0.01284734027274411,0.03431444934763744,-0.03681173576292324,0.00019589978762822444,0.0060284459287601195,-0.01622263224432288,0.04318013475627005,0.0060881267928466895,8.20321453523564e-05,0.011171052468376965,0.061951667634469305,0.20778113340166476,0.17340583713400098,8.748563443604961e-05,0.004952039959747714,0.04004935156043382,0.3178766961132134,0.058875739870476104,4.320513960971601e-05,0.0004949629975805267,0.00787340269942863,0.0069421146740231586,0.007192200555893846,0.0008746120732118774,0.001606272995431987,0.08773105083178555,0.2206118162488891,0.25465019235884895,0.00013905494819722413,0.00604185202676287,-0.003530446312611352,0.002307984746361776,0.0030848982060573517,0.0007476890762086178,0.0015430972671744946,0.008809175938640593,0.10727360046577819,-0.048170754274289615,2.4471760635413423e-05,0.0020668292170887012,-0.03210127931941806,0.0838814820130928,0.01835376658632313,0.000113686077789205,0.0003841215628262826,-0.0012320614729405665,0.005976990300909934,-0.002612710365025761,5.8024531752631374e-05,0.002566215187212582,0.017268343122002452,0.012822331433896826,-0.008234038393883102,0.0026266768329201383,0.021565118296934225,0.03620530456819136,0.2533153429633551,0.01316497216225579,0.00011761502840262181,0.005847016750945901,-0.017971175464194755,0.10446014493437725,0.012951920280201938,0.00026639992139860787,0.031477328790026536,-0.006520126765117474,0.03618348649013663,0.0002958596409842828,5.075824341085839e-05,0.010753482979218588,-0.03626083834550212,0.1845135326206881,0.04207726693124376,0.0003238891683632163,0.004205094239358528,-0.044450157377595216,0.596145242156647,0.04311816366826754,3.0942218744043884e-05,0.025143069053229276,0.00947967562195428,0.1153093249386948,-0.008544738687960747,2.7466970193863027e-05,0.0018892873439632467,0.015662088627267423,0.0376390029301341,0.02630779083104317,0.0001340399702267028,0.004885781574960308,-0.02401115679063162,0.18200285677365627,0.002691437797143929,3.047384504459739e-05,0.014379859114078701,0.010422453634653831,0.033322366994130555,-0.009256192346723256,6.93444185468267e-05,0.004101279487550748,0.00487903963712042,0.02147525612552914,0.0005547763912670342,0.00010388302554290406,0.0003292969601741346,-0.04988590249009888,0.05305570847059568,0.061331114071555254,0.0005374292216976739,0.008941954646718025,-0.02136834352410687,0.0741669081348626,0.015891085913474975,0.00012126813301791224,0.0079894442266651,0.025150149950892025,0.07743900679548316,0.0025342054693974683,0.0020844907833659694,0.009624377258161051,-0.00890194412200257,0.07755854207827322,0.006408471364008546,2.9514635382060414e-05,0.026431472763868202,0.001375863438053998,0.004521310481986723,-0.0026024404672556974,0.0009949065001619505,0.0033968635559962967,-0.02181639803121973,0.15174998220818042,0.03538868066498253,9.573705038624781e-05,0.014816411735947397,-0.0011676600311613362,0.0019834741206654067,-0.00017389482427799112,0.00013894254914433984,0.01367084686393958,-0.009924452038624606,0.01592494769309706,-0.028006179775366517,0.00035771111628495614,0.008855055405286425,-0.01155047125409663,0.04196459099939192,0.0012223978477196207,0.002133374256202627,0.02366876500358751,-0.02315835626072415,0.08675979450334141,0.02400789181899369,8.56405773435441e-05,0.0030476299392860973,-0.02348664794401763,0.028345356829233417,-0.042537598831785234,0.002059758487942526,0.005612724408684939,0.053756819937271966,0.18200430153366814,0.14020903312919203,0.00011702211785458081,0.017650330509335274,0.002773489412620038,0.006643724135696695,-0.014581410263611082,0.00016922919840742202,0.000945552113017912,-0.030317828378352438,0.1202758135473131,0.04749088406087713,6.152246276113806e-05,0.026178761015231696,0.02555629604552403,0.0798137209367834,0.0018904489164337681,0.003034858242738324,0.006164574941524027,-0.019342190258639112,0.08625919151775924,0.0004600555807745493,0.00011154261922022907,0.006767912118855127,0.004412602431881285,0.02808783042362022,-0.0035074731185529644,0.00011392981441150614,0.013836323719914377,0.006872445039374276,0.036243967549988244,-0.11063416610027058,8.968591456924516e-05,0.010780738957506837,-0.040324761080038914,0.20198992186142764,0.05966002185496852,5.017524440589276e-05,0.0019040385234656008,-0.02053042679311137,0.03648960518010185,-0.00016579081185704768,0.00027432046450602077,0.004142227659694934,-0.020272978458130746,0.09057734661681735,0.09091104891528162,5.5656044875600845e-05,0.0022901461469111858,-0.027486540726881708,0.2865509078288092,-0.0011968988608636467,2.474853994952607e-05,0.024571850071945782,0.008811184053686976,0.029032351236876724,-0.08591145019200246,0.00010608672153308138,0.005506803459766434,-0.0028470242711809606,0.011738298065055858,-0.05892574752873897,0.00038230854699325374,0.002954593921007403,-0.06644141807260372,0.30957773895336527,0.127515039515342,0.00012292521176272912,0.0035335101383750797,-0.0031112998457837222 +2020-04-02,-0.008090925226730158,0.052913824735082805,-0.13590464128942542,0.00016170208398074933,0.007521922784312447,0.004785452022324792,0.016435760754133888,0.0006409596817043115,6.986242914933527e-05,0.0007898862796872246,0.0746471572407282,0.22410105664611463,0.26528192975691434,0.00015408720358575336,0.026303270188241606,-0.014651048803874241,0.01718381510567417,0.003723592683296054,0.00028775109185374893,0.003615636231360177,0.0015441395279846718,0.0034091892720675534,-0.054379152464963165,0.00023699173458171727,0.006932276964810269,-0.004787847222993456,0.011691421425145426,-0.0004660413071652918,8.941692044212638e-05,0.014034834300580666,-0.01353192821391174,0.05569166964408654,-0.049416993360791,7.129503755594056e-05,0.01445024816091413,0.008864773835213322,0.08037316823865613,-0.024184897580735543,3.782293151384439e-05,0.0008326370969334658,0.03549995140477045,0.029846522275248435,0.14020271726763228,0.0009172311828218159,0.00019654997229380804,-0.01634629975531518,0.035613714355106615,0.0007254204304006291,0.0001604959486063337,0.0006085709899418289,-0.0034171637089122405,0.0023208618137122872,0.0026274983093648265,0.000719682364679199,0.007007111424670616,-0.012534606761555434,0.16651991094680635,-0.010482939389509604,2.2431965750099448e-05,0.0032630072526939977,-0.008146404051987065,0.024221431555965692,-0.02012524484028493,9.991189059157238e-05,0.011527720943533324,0.0010189368494349748,0.005287136213641556,-0.0019827427875327517,5.424860659402232e-05,0.0013836536688562155,-0.04006192352626841,0.040939045588422505,0.05236431605884587,0.0019086093912543327,0.013529631488400525,0.0031844255700290915,0.02162581376553163,-0.023245468955876227,0.00012117436474703821,0.023715567319972142,0.04004727990177048,0.2131626654282108,0.007653596994710643,0.0002909176783223008,0.010013780509734728,-0.030896975437349972,0.21797689268024795,0.01980213869014429,3.992698037307384e-05,0.004091167388938824,-0.041272579953995164,0.2034092986491859,0.03554253507598219,0.00033440874239392917,0.011322425865156995,-0.07615749838640674,0.9556715315588992,0.11207299477746381,3.307000436119226e-05,0.030361248602762098,0.002554417948255432,0.02736871260044662,-0.04202550590485144,3.11831006904061e-05,0.006534384902794279,-0.007907935343007013,0.025042486618547983,-0.014545101768149077,0.00010172048335801742,0.017910255435572706,-0.03770457631831241,0.30338802840390744,0.012411697273775765,2.8707012701905464e-05,0.030302496702645565,0.007158196676802794,0.020451098996976207,0.00393232359927944,7.76004711517874e-05,0.009668529772441644,0.0074817686614889346,0.027932794056527314,-0.01605224493298131,0.00012247247424770655,0.00900370470634109,-0.025836252401662752,0.030442921485494007,0.01380770976296103,0.00048508601309587353,0.04156768602190927,-0.010001019028710706,0.030883784422148387,-0.024525702671991622,0.0001363012222796924,0.02441423925074562,-0.02188569537139963,0.06921118149317922,-0.025715992165267855,0.002029566386692381,0.0006267279413068232,-0.012610031595579321,0.11808989758840469,-0.03349137391692088,2.7459057345100652e-05,0.0015185316810899965,-0.01739189901958772,0.056059627106801846,-0.008245332828058513,0.001014303841507367,0.012714663433467735,0.019103274934964345,0.1398234650262231,0.011484745776954368,9.098156625716114e-05,0.00046952278949329864,-0.011657769104503156,0.01793298385182349,0.0015210588537946513,0.00015342929102599994,0.022904405687166833,0.006048740742417528,0.010103108820778339,-0.0367007639120235,0.00034364802590081253,0.014098475346628694,0.005184204421602564,0.01912795938219154,-0.014682096162118161,0.002100698950198382,0.025364737941394124,-0.013997686212013,0.05093146695969403,0.005239255803985475,8.81780395286089e-05,0.0022242720590932817,-0.03767638295284093,0.05351885301689477,0.05471737324029907,0.001750006239018723,0.010542211501573206,0.019781189408404422,0.06158735071410929,0.011792268579238652,0.000127255603632201,0.01977867887023147,-0.017050380217327143,0.03964596727536238,0.0003990926304185013,0.00017433935142038595,0.005261285139566521,0.02359678784955459,0.11049325395779938,0.03163418204885572,5.2123197482666114e-05,0.010973129247019164,-0.06196179966983808,0.19015312505947035,0.14808174256496826,0.00308843605635078,0.006447259062741413,0.03919035227222926,0.1988677421214236,0.045822715676496234,9.802918568686772e-05,0.019323357489794895,-0.02269001831370987,0.13109037893108375,-0.01565979059520779,0.00012552343401290162,0.005248372311074506,-0.03346496999986809,0.21766493543167548,0.07648907563451464,7.271946354398139e-05,0.014506630038396454,0.0008349677866789253,0.0033049008899966774,0.0017002711140413722,6.349779953638879e-05,0.0025797997203574966,0.037710315963344135,0.07756622964375537,0.051647578867863614,0.00023703740480525022,0.0182032643546982,0.004646973989223734,0.020107044539455728,-0.003332783956235709,5.746936222723451e-05,0.0061320737437637685,0.013903762708712308,0.1268343457053477,-0.031605402378648804,2.828308376693507e-05,0.005160693262914229,0.011900628473972323,0.03410782826240032,0.012272679705975878,0.00012196207205002763,0.007094038435973709,-0.002214718378618836,0.010051555717056777,-0.0009090354827223306,0.00034730672773749534,0.010945626439020136,-0.07495781719936141,0.39145008395265085,0.04745302408964276,0.00010967618531245505,0.0012231819912287268,-0.005944226292664234 +2020-04-03,-0.011054310589284709,0.09082634705104389,0.016028184613661327,0.00012870825400936465,0.023250390156689754,-0.007117832179290933,0.028543905085868924,-0.009935585885821665,5.9833565342611925e-05,0.014360470679096146,-0.012013818669954055,0.044450959571332056,-0.004124382635321763,0.000125025078686784,0.015955155623077723,0.03229293964110441,0.030915535984923907,0.005647637147758553,0.00035253209091523093,0.010568380582581392,0.0007379247248378612,0.0014365745137069322,-0.08164827570509511,0.00026877054811277743,0.003033985542891418,0.007639045867383694,0.017254080865041887,0.01937170312032855,9.667051413928915e-05,0.004848625767044973,0.017088235522923538,0.06363746947024244,0.004609302293360867,7.879055772384665e-05,0.021579521236295203,-0.0025201958266658324,0.02332544846034485,-0.0009974091922667768,3.705125305644591e-05,0.0025106731150335553,-0.017044078313994356,0.01424075726473143,0.02619302506933917,0.0009229649817416423,0.00804212327922583,0.017291823616183047,0.03800462713910071,0.00832953639291328,0.0001590985447484513,0.011411742463921333,-0.017793228202855685,0.011967493346305168,0.03776296085396504,0.0007267347250698867,0.007649517442605291,-0.008989647045312894,0.13803933194942913,-0.015333346982980315,1.940718658311636e-05,0.009747281684428637,0.018122923410492396,0.05394864032123345,0.008286062212364586,9.979270374559451e-05,0.0122331371881798,-0.023739529139846234,0.15661685759895108,0.042531572523446484,4.266732472710886e-05,0.0022603409121190886,0.005882790859442163,0.005706902535633051,-0.006552357615853284,0.002010508557350612,0.0034443169062778663,4.601622032633349e-05,0.00033549319483840997,-0.0034018953106749452,0.00011287021081585595,0.023361893426357014,-0.029344035465736457,0.1406834507201804,0.017278792814744703,0.0003229870118325674,0.005438744842481071,0.08435042808358836,0.45238806913217294,0.07604040880311709,5.252149798583839e-05,0.005700408106633077,0.024921322024348925,0.12240210544975112,-0.08343855575950153,0.0003355590809516484,0.003875126686415578,-0.030488468534163444,0.4221948296136227,0.020041130955809727,2.99676667592709e-05,0.006494299549181327,0.013718136532458266,0.15336360633388393,-0.02690881967052836,2.988508652921165e-05,0.01513955247277971,-0.053351911362454575,0.18034276672367588,0.06440257269393328,9.529585492644175e-05,0.0015919684332989252,-0.03894777471127121,0.25807968130850856,-0.007371500140148545,3.485950465128702e-05,0.00570898009228467,-0.004582892805980702,0.012709605766296506,-0.05385626288981441,7.994383939756199e-05,0.006509504856082502,-0.010885767655902058,0.04340147126394204,0.049628587813821165,0.00011468409829519657,0.00028918350756892606,-0.056779418865148104,0.04901261326668522,0.034859578752135106,0.0006621534492015545,0.020476786701265747,0.009919097868554976,0.034581226737976034,-0.009139237937900358,0.00012073071954052073,0.0013107371847767546,0.019493138528466125,0.07862031984300309,-0.008922500977929083,0.0015913515722034987,0.022663827061217716,0.012648617483626952,0.11941341250819393,-0.04242745713625191,2.7237807408283926e-05,0.0009634896723433009,-0.009452355110314633,0.022445597505781296,0.004160719936770931,0.001376829389972184,0.011474937072989246,0.04009503422039233,0.34866489242444054,0.04395155419437882,7.657870394809603e-05,0.01925410703343009,-0.033038007268683084,0.05067313926664419,0.08657780542013745,0.00015387973170943102,0.017954545961771488,0.044513988279448566,0.07544129907512925,0.018176254918619475,0.0003386813347899004,0.010054277638585796,0.03316963470564897,0.132185821537718,-0.12006363399638287,0.0019449397632519475,0.005115923338156134,-0.014300744965804578,0.05603860092427485,0.005514772358593598,8.187696728251949e-05,0.0014236271094867489,0.010774308705317065,0.015196640055041377,-0.013236492082228924,0.0017624590276553338,0.03343202896600433,0.023894188623334908,0.078105134482879,0.005262573239860595,0.00012120728958789489,0.022656947743978643,-0.019448443872413644,0.0569007988522778,-0.0015941790146029341,0.00013855648913905412,0.004939361404386958,0.006372038657665647,0.0239157388896111,0.002113334293418796,6.502921684170516e-05,0.017198099077801614,-0.02685892447104328,0.09211482924525878,-0.018641342355452378,0.002763612348326148,0.00046280507992009376,0.006609091729709516,0.03212287219201169,-0.012423558497833052,0.00010234531819082962,0.012030109842644182,0.008333251890324222,0.04245573053340371,0.004494260633442664,0.00014234393772322583,0.0049456275389806095,0.013013016018077224,0.0853249275837639,0.004867297747945068,7.213578042977899e-05,0.02750582468401572,-0.00863244453520796,0.03953895633355804,-0.05628938545102329,5.4872657027522496e-05,0.013896703624334907,0.05877349901784486,0.10175967211150254,0.08432764186728763,0.0002816016803025325,0.010365781772722711,-0.023137507455994563,0.08111060763819658,0.07487435819277512,7.093381087451397e-05,0.008262057920760551,0.03060908042035146,0.27150203909803355,0.02968744769211537,2.9087639037124505e-05,0.013972826430956068,0.023844591507258758,0.0739187547246744,0.0826244514748742,0.00011275718091227503,0.0007458430194064713,-0.0010397130175038732,0.004191473372463203,-0.034384477133222104,0.0003909981845218545,0.0030285465377455347,-0.0029715613265693707,0.014006739691314966,-0.014840838033015242,0.00012151207467834071,0.002678708185668231,0.0017460364659962545 +2020-04-06,0.02134039513842872,0.1403290053509086,-0.020701544016549316,0.000160820568687569,0.011600587241377863,-0.05135567588690029,0.17238815609780672,0.10234968548074196,7.14811533933844e-05,0.015119484006550683,0.008944277979216559,0.03194664841687024,-0.07320280585059111,0.00012951414130266006,0.007744925128284223,0.03298555934577292,0.03725338454498038,0.04797401235480211,0.0002988312241141771,0.009177453218360599,0.015349308842650705,0.03841060465376373,-0.019378110476052385,0.00020909105459681533,0.01232455791922377,0.01090175971272283,0.029257716263472795,-0.0734973612686072,8.135849783706339e-05,0.000774560744483974,-0.003101860769589195,0.010442448831064625,-3.66232306553429e-05,8.715851044689571e-05,0.0014658743743213038,-0.00046852141036767404,0.003903751245173056,-0.0193595070193065,4.1157209423131884e-05,0.009325632812541498,-0.012468697423588384,0.011024739740535328,0.008303502292136757,0.0008721627354161813,0.01814436335374536,0.04186615340543795,0.10443429013453914,0.0420060530070399,0.00014017863534452336,0.011556816646268227,0.0009433452647154201,0.0007669788440260053,-0.02115616053149524,0.0006011898604886172,0.010893017930841433,0.010631928618804451,0.1247175103970105,0.032389245993371056,2.5404310294017253e-05,0.009019807271439861,-0.01828551938157838,0.0528548881613913,0.0032542406193335803,0.00010277161474106935,0.014463897240167509,-0.001475553498444203,0.009027282025818277,-0.03703905050201912,4.601079822805037e-05,0.004409514477215185,0.006836964411537106,0.005762324811652438,-0.14343439969010657,0.0023141342858706945,0.017890100325832037,0.039678332368840656,0.25027426980520656,0.017714519102153225,0.00013046358725850472,0.028449631332275117,-0.03133241670168112,0.15319623827552253,0.028741713461774072,0.00031670434692815575,0.00013007195036181382,0.03478000651880131,0.22723589582770795,0.030676072430081365,4.311353946322005e-05,0.0067495304489271135,0.03691913730072759,0.22399783113441674,-0.01296046749965612,0.00027164051074285916,0.018758358989822876,0.0008389866205762587,0.014878372439174834,-0.002128683991550504,2.340075342920729e-05,0.0025349508594621722,-0.015174448500987082,0.1563433844464017,0.016763858380326777,3.242762305278497e-05,0.004338130470505826,0.03838680933949821,0.0832222571817433,0.06131659892237673,0.00014858168553655448,0.005266631713033139,0.029080734666446784,0.18981470869327705,0.010646759382406683,3.5388967115396874e-05,0.014885931656586436,0.008498334098675418,0.029285156006475466,-0.07431521729645815,6.433741997605437e-05,0.005827041458084077,-0.005786192145320774,0.0267171662379471,0.020467867143975756,9.902641443106941e-05,0.0037895706683640255,0.03759208688114912,0.033460261808377544,-0.0035181271350354,0.0006421591311531363,0.015054243996420616,0.004747999022519097,0.01827959716289857,0.0014603933940173866,0.00010932764903917835,0.006455796079920469,-0.0432256191091996,0.15519737210528814,0.022801731172593508,0.0017876234114262578,0.029526975606375995,-0.014707556924721874,0.14210330999034368,0.00015755494539141057,2.661451395139782e-05,0.002343455865066144,0.03429179257597734,0.09502949759451602,0.015489165575139251,0.001179785419658743,0.013030645022640496,0.006980253434199703,0.04767216592112877,-0.014967752454425262,9.750613685549879e-05,0.012114755647159406,-0.007359434518549363,0.010578365914579486,-0.008422723290912287,0.00016419927914811144,0.018069240720798033,0.013297039415815021,0.015883549702095063,0.002156344896714808,0.00048051981764443377,0.0015862112062660374,-0.012301299061496065,0.04885819497185178,-0.006719953648518496,0.0019514790793296942,0.0016558793712431433,-0.003576629349626108,0.014463144855122421,-0.010103359449064441,7.934171260236565e-05,0.008416584347287134,0.006669058421765738,0.008404794536031483,-0.08619010426035294,0.0019724891028046906,0.0028902540743281756,0.009395448466344356,0.030471316679052975,0.0041695728015921025,0.0001221637429820938,0.004467432138960947,-0.03539973313341061,0.08850774159728585,-0.06847151285780728,0.00016213586948586405,0.007063550255288846,-0.025533005535296964,0.10062622459836751,-0.004380148533892776,6.193051417654741e-05,0.002390864766885257,0.025184529341147066,0.09117060963246071,0.003965768899434053,0.0026181651523948736,0.007538086481474653,-0.0076512584673197005,0.03672733901596111,0.0015380714274437354,0.00010362963774889245,0.005708731489189539,0.0025056645555146142,0.012071142438718083,-0.012188823750745415,0.0001505342556375189,0.006873705112208851,0.00988148505491362,0.05978624842752661,-0.00881381241715342,7.817531042818498e-05,0.004593521605649966,-0.023043394311284,0.10734730961738566,-0.029241365308671725,5.3951395411713794e-05,0.0032002694790501923,0.03460928761519459,0.05850463001398647,0.029988723558524007,0.00028842427983171717,0.008517186327338935,0.0014321514061644194,0.006368481752474403,-0.02970819175430357,5.59200306604123e-05,0.002934584191683745,0.039911043548626866,0.42865137320555086,0.030685976813168755,2.4022607720290535e-05,0.02390063856257106,-0.004879489187113242,0.013032973469532673,-0.02945077899364462,0.00013086991287913083,0.0009562539359745565,-0.022011619457000982,0.09980112717681343,0.03274757340450005,0.00034765183062010843,0.004559884878309975,0.007193661549620891,0.035680929037628,-0.018873677216360463,0.00011547438112150632,0.01432418495971354,0.0047159802257706876 +2020-04-07,0.0010115548294312277,0.006153307319583579,-0.043746716155912205,0.00017384708212965033,0.010932946718638972,-0.04663049862813509,0.1602288413594538,0.06325173569910718,6.982965458662232e-05,0.014034881293083067,0.08279676167647294,0.295509649268931,0.21040354460076016,0.0001296101129708601,0.0015410538986264516,-0.0043675566504081526,0.004721077151967356,-0.007712386806905808,0.0003122232969413691,0.01595241851440584,-0.03908967792926012,0.08102498273515288,0.08480702150680158,0.0002524299709493222,0.004268097043478891,0.0261005806737099,0.05905638233312035,0.10006771941031335,9.650061247412284e-05,0.0003173698595327469,-0.003306350275608395,0.012449811878194309,-0.01310758354926919,7.792484140011696e-05,0.0024728557658009157,0.027004896624130553,0.241579902448535,0.03670614463552145,3.833366401523273e-05,0.007536587533901903,-0.007567741708471781,0.005786062874475017,0.0032114234786415835,0.0010086208438930104,0.0035594314006882825,0.008584470402760239,0.01746494688926138,-0.00853479560895982,0.00017187318488976917,0.024829099523849544,0.027398963708893522,0.018207677979772307,0.05358892242155471,0.0007355359963735019,0.00023828410510388573,-0.025025984554937007,0.3097846381146782,0.0516320813896245,2.4074323044065768e-05,0.0035938951812557896,0.030883264409239327,0.09480120281499196,0.009459509189356657,9.677437829171878e-05,0.015244953003939495,0.00233229723522014,0.013013144577204133,0.008587936693332987,5.045026606009516e-05,0.01619048134545077,0.08454449464845594,0.08076919948786625,0.31344417207823544,0.0020415617793161597,0.015255634257167305,0.03024956455914892,0.23541785346028954,0.009842740155898989,0.00010573818213163093,0.014051021586485843,-0.004943944108068834,0.029668351453968702,0.002270820255581748,0.000258040793792382,0.012627284376301418,-0.004437042290234879,0.023955596588309324,-0.012228206877634658,5.217320702418448e-05,0.023090493457919168,-0.012256952039448647,0.07286118505927018,-0.02196032862888004,0.0002772509631885816,0.013105961700584912,-0.035516356920764255,0.466407941429651,0.014044381088741781,3.160040921173135e-05,0.026494651528207933,-0.008856845786335648,0.09677044085733379,-0.02869209124693805,3.057863340613759e-05,0.012970833276935104,0.014288328464994098,0.05119807519144592,0.01610935923039711,8.989810710906757e-05,0.01125994847636512,0.08921543351672845,0.5949020110031918,0.11602686914208843,3.464072152126864e-05,0.012270920414535279,0.004556195480510272,0.014183658467306029,0.006048558403089903,7.121827757980073e-05,0.0016058707189055637,0.0037981862115300225,0.015743108310648242,-0.023944576001611418,0.00011031494812167695,0.006974632244835503,0.016980855554941856,0.01493851959112086,0.0007120810611768474,0.0006497219934717088,0.0016186073321120655,-0.003993920087657578,0.012702882036032823,-0.04781469791438388,0.00013233755757638806,0.016244131367409948,0.013834796558896188,0.0528361270489123,-0.028204782769468785,0.0016805869083468942,0.010162648618520825,-0.013240384912874109,0.12048633395123966,-0.10055999841127161,2.825823391145266e-05,0.011805198535108011,0.019348945607961254,0.05669606640546855,-0.005449391657733912,0.001115772478919978,0.00029578773932481496,0.018455274558675867,0.13556361094833055,-0.013958650630150192,9.065735110804942e-05,0.017107530583810353,0.0038783385436879617,0.006264473138000644,-0.004615252208987756,0.00014611895288228774,0.006944001233863915,0.031609167464602454,0.04890508184252694,0.033703263602270654,0.00037099066436601367,0.005159382082472904,-0.04387842714214515,0.16636219343439554,0.039922542666383294,0.0020443100088815606,0.020075694314237832,-0.026678141357800843,0.09502631837487992,-0.040257979861729624,9.007453652908083e-05,0.0035827975028611342,-0.061116191560569626,0.07469044419247824,0.08579325988920293,0.0020340818892777644,0.027290409809572907,-0.003363398956589626,0.012706995725435814,-0.004062672126148671,0.00010487006514697263,0.004032011321636382,-0.015020400688120553,0.039844623215149304,-0.0009051013396198733,0.0001528171760344917,0.014789018275336688,0.014509609167311472,0.07346146537959876,-0.007640542094232581,4.820699408549261e-05,0.007577687844593929,-0.06008972502513352,0.20913835755584256,0.0865762808527492,0.0027232316229919553,0.017207923839740763,0.008114516411419104,0.04334408551927919,0.0017116546098863942,9.312651887703557e-05,0.0048594939053388615,0.04528634961698645,0.2616376282615779,0.15508253872969924,0.00012552432534116052,0.0006829138073308791,-0.010393453725537601,0.0707785466898392,0.008104768567298635,6.945554837942266e-05,0.012387161822606758,-0.013887064621006993,0.06144766536038308,-0.0041626434766019954,5.680053997343071e-05,0.004407917711193921,-0.11066249376876651,0.21164550627802084,0.107519842248703,0.00025492991138595427,0.00696463254410601,-0.020333695069766983,0.0841132335780709,0.060976480170594226,6.01127163850365e-05,0.0031011798993242825,-0.0398075293042576,0.3469241731844263,0.025156562482583193,2.9604787426241578e-05,0.0034200797936704322,-0.008969701070933698,0.03068711914271112,0.020934219473824983,0.00010217174594625886,0.001559783480164489,-0.0035116514134721547,0.012114450105122404,-0.012526443224766306,0.0004569152614253565,0.0004763463292122034,-0.03180215767421764,0.1877858272080292,-0.016487516311124342,9.699862341160445e-05,0.011679972903029287,-0.0012373283067136304 +2020-04-08,0.006745003150447667,0.04745344279351068,-0.013989955230066228,0.00015031454769762282,0.009627690511853325,-0.052853237554580115,0.18857124977427683,0.010364442610106073,6.725222272309622e-05,0.005886096236991559,0.005131438046579609,0.016795598809092198,-0.00914725260827176,0.0001413320967907286,0.018533333680215085,-0.016648825503546533,0.014072241342964425,-0.002687676314296984,0.0003992897695465498,0.023519108112988647,-0.002302629090858954,0.0044954232696582256,-0.05502887808135417,0.00026801010577461997,0.0038190655144262438,-0.00017971806097122968,0.0004756069286503705,-0.00020789042674461433,8.250690406476557e-05,0.013353840308379423,0.008613246715282718,0.033320269753526574,-0.002406491334846015,7.584871607658297e-05,0.017820603729149797,0.009185444376146289,0.07015508328176945,-0.00439076644987513,4.489930737487185e-05,0.008360586958859518,-0.013079981207532896,0.00945680120226964,-0.007638916551002431,0.0010666149021586907,0.011537759938197301,-0.033616154245990765,0.08876167060369665,0.005887111769888921,0.00013242941073727055,0.008997615379417024,-0.00835097887258527,0.00583471967047257,-0.000518141757378883,0.0006995870279913563,0.006141799020778849,-0.018677048620982573,0.18124510613863062,0.026058166987784813,3.070893462861959e-05,0.004628778165134198,0.043450903896848456,0.10522853654952963,-0.01859934819808696,0.0001226637740520083,0.0013616460571444246,-0.0014149705394880794,0.007688522540806625,0.0016649438199393197,5.1804361354321595e-05,0.001836971835874701,0.008003989662106146,0.006898267500453093,-0.03124301120063459,0.0022630255654210903,0.01577156886473872,-0.01481015263646281,0.11144620709483083,-0.005418554092151513,0.00010935694008425068,0.0020380576199121687,-0.010567208848279518,0.06404365903124852,-0.06644870632215896,0.0002555008716425858,0.005367657155236098,-0.02100669254331817,0.11116563276873237,-0.05362045899445848,5.3228973456571766e-05,0.009319235124705366,-7.348701701024705e-05,0.00047271048039083734,0.0015819905746549737,0.00025621360974151437,0.009354724386100823,-0.030210639950748772,0.41282931162064984,-0.01451227610729742,3.0368240551847065e-05,0.010661300201451186,-0.00029397227381113033,0.002988047016836064,-0.01724135895239438,3.287007188336503e-05,0.002354526830820108,0.025212907663738616,0.07216665544603984,0.03609015739176194,0.00011254057005977491,0.013111798091389326,-0.013732879640858812,0.09812264695142814,-0.010901240525735437,3.232843898175201e-05,0.02555654695800346,-0.023454075126699298,0.06630506471600035,-0.035578246907284075,7.842400023802822e-05,0.00042725604405389203,0.0021970509076685257,0.00754023153514941,-0.005467847956416702,0.00013323061537381757,0.009728966803642066,0.017946812963841718,0.015293089607801808,-0.2871729426789195,0.0006707607859200048,0.02899264847642162,0.029937229608613967,0.12446248934060226,-0.047887485659884994,0.00010124163131924245,0.002976732195315659,0.06986669812358576,0.2422231528768914,0.07494433815913046,0.001851286955529007,0.02263437600633636,-0.04888615920370576,0.4152230713757774,0.10417381013657567,3.027517320892936e-05,0.008264914052052229,-0.029372475145591728,0.0876369411751708,0.03410557946796621,0.00109578311467236,0.01764696743174733,0.0028966291014626655,0.01891622725040529,-0.016669479100254462,0.00010197272147866852,0.013880028335791219,-0.013481608861311112,0.01767073434037699,0.0020370769761793982,0.00018006632927165144,0.002142327016239783,-0.010426311431896238,0.015389464359308332,0.011933683194570803,0.0003888759657869683,0.02133880443385846,-0.017889722680346838,0.08401406345562892,0.000905476817708972,0.0016504484306013997,0.030053060067667003,0.0035320486620226146,0.014537617226503369,0.008556624541642537,7.79513819634932e-05,0.005458081235888222,-0.011827370130674877,0.017114841824693257,-0.08498956785926919,0.0017178786809364031,0.02614447420929071,0.020082267029905215,0.07042510271363207,-0.0828865855500887,0.00011297992573989703,0.02296858267538335,0.04505533506836947,0.1090283025433159,-0.016909067280800653,0.00016752026420146547,0.006692385376871069,0.035174288434049426,0.17576793889470949,0.04813087145636354,4.8842691223127236e-05,0.02203482919368432,-0.05100398069614615,0.14082402609406552,0.06348777600218208,0.0034327752808671415,0.020844746688745815,0.035493968383647025,0.19057782957678868,0.032950621016609054,9.264516352465908e-05,0.01874953913919828,-0.038995825916202737,0.22723492531802633,0.014591301888114343,0.00012445255740204525,0.006295876912670938,-0.007216921658069731,0.045506134525659936,0.005157641111015869,7.501199971545308e-05,0.011684713226414201,0.030265395202250397,0.15615158728871079,0.06899919981187216,4.871327642555553e-05,0.0080881804439145,-0.026041319320950752,0.04729497049573053,0.000443469622896444,0.0002684586600285093,0.015198819670398711,0.0009151755375816993,0.00363190045232746,-0.019501227722428554,6.265919954416198e-05,6.368828484762238e-05,-0.006251393985330631,0.061258045783576,-0.01291796225604757,2.6329645869331075e-05,0.004151623853517765,0.002226557622676824,0.007425744634624633,-0.02178316434650234,0.00010481004162547774,0.0033419278079325236,-0.010960954141022862,0.03719611051829576,-0.0028534062072189084,0.0004644926029232789,0.009260740133274672,0.0191391196130457,0.07664418843687537,-0.08790457509394836,0.00014302584513229392,0.02263224551497851,-0.0029245082635982137 +2020-04-09,0.0006154017131340293,0.003833368773760523,-0.028864883061578167,0.00016977146018662536,0.009034963069222733,0.010970374299834555,0.031539749165725536,-0.07433084669208713,8.345910768657064e-05,0.012072633065348847,-0.002582320277096504,0.008760551148105318,-0.05136487153414223,0.0001363565110376217,0.0024935465029242328,0.005158534381614363,0.005582143082811966,-0.009246378793096215,0.00031188409048420326,0.005720534281347438,0.0032209531090715763,0.007781591182339527,0.00150481227456796,0.00021657771327255386,0.018115206480976597,0.002359082914317947,0.005516355588391176,-0.01956663092256589,9.337652156875721e-05,0.0029092400974225635,-0.050587540406106635,0.16679068987490783,0.06495944723619108,8.899418178315391e-05,0.01599697055334324,0.0045785508423013665,0.03793329182994719,-0.012774968023960423,4.13910194860232e-05,0.0011294569100636928,-0.015520427711529783,0.014450470109107699,0.020023401489178066,0.0008282596337664722,0.0024247307384477734,0.003298986042461082,0.008397680469937798,-0.00017503140463237483,0.0001373671913748868,0.00655324063163357,0.004270164248764274,0.0032586203521341867,-0.014898472699588486,0.0006405236544197805,0.003651157075714216,0.010026854749510879,0.13776643496928329,0.008475112969856355,2.168922794293861e-05,0.0034177657346774384,0.0020845823353657163,0.005247105714543853,-0.1649281902802304,0.0001180185506812749,0.008261549415546292,0.019076844319940514,0.09216625588605588,0.02669406795563525,5.8263478352185026e-05,0.00024398792719375323,0.05069069958744561,0.03719844573643049,0.062329646736988556,0.0026578254975060645,0.03050832878675973,0.023876568206137278,0.14355753629573667,0.007974541623079763,0.00013686676957192162,0.03617776467319979,-0.06313516031728107,0.36891301161005885,0.09209580784315019,0.00026500590205722315,0.00595156577944684,0.05899302899817298,0.3665949333103967,0.07323577758174524,4.532890137336935e-05,0.0149981721134452,0.01020495416157386,0.0717722561611732,-0.003957210399843336,0.00023433721664399085,0.0037164578497189777,-0.00502556799394895,0.07436333934526657,-0.0013279902155006289,2.804506820771925e-05,0.010053859243647288,0.0010552125306540544,0.011910384669560894,-0.006165968090780823,2.960028283181459e-05,0.010345541663958662,-0.043809382630033665,0.11045960816063223,0.026968167171974314,0.0001277574958170388,0.0029471764294828158,0.0234113559025026,0.1382146767563071,0.013062746358272837,3.912593966759395e-05,0.016129709548202316,-0.008113635325271805,0.026743519188536402,-0.03454002333361018,6.726270221686247e-05,0.004292893784843561,-0.00264663987523439,0.010334681250783703,0.009502615801426986,0.00011709715962010504,0.00020938198154575875,-0.017720643576733527,0.01576832393497384,-0.0506834434882759,0.0006423467315460278,0.019446750749591242,-0.00711128415797617,0.02775464880756946,-0.021897187017524147,0.00010784457556023922,0.010354496366301928,-0.0438944457028185,0.1551289002894062,0.022712820902449613,0.0018160844090551792,0.04366668783438609,0.0027764633107393993,0.023522065372093,-0.01944487775461985,3.035279450010075e-05,0.0166621751578108,0.003242566429951937,0.01037861056271634,-0.0069039304604291175,0.0010214589916019594,0.018908167364339434,-0.012379267376754061,0.09013930857001815,0.00909197509293804,9.145477046675831e-05,0.010589040822901633,-0.0460932202979688,0.06671411146169968,0.09167845090708954,0.0001630664930289769,0.0021497481508389645,-0.05360934548376374,0.07307243483559407,0.1490649880776331,0.00042110542863847575,0.0016886166098928467,0.020705646861835677,0.07340731717178929,0.014153529205847386,0.0021862498455284,0.021545288765396856,0.0036241631267640434,0.011265042272826773,-0.01515591025049162,0.00010322033923438267,0.009968043759552027,0.0003220392214236699,0.0005103374879132639,-0.000840256497249408,0.0015686587931571213,0.007683502886132836,0.00012790714932057196,0.000396943269243189,-0.0007462495686176285,0.0001276681055944894,0.02336282369604347,-0.00650178233911477,0.01838434214210384,5.324451243772945e-05,0.0001433655181637883,0.012423636334263181,-0.0278780668093869,0.11654599214975708,0.014121684419359848,5.838203597741325e-05,0.01817437446185155,-0.029971507770713376,0.10560972168040406,-0.0066476579167963085,0.002689817106873526,0.0112259747803679,0.020200985162348094,0.10156197321777925,-0.0017298217610076099,9.894229740160612e-05,0.0032452088824798365,-0.028794949763715626,0.12956336208128744,-0.01880600206168837,0.0001611739688748584,0.004261147964660927,-0.03019691016695237,0.1666905033422082,0.03220583762018061,8.568412137469041e-05,0.03161699682432478,-0.04365471232599334,0.21536178218403465,-0.05273177550461696,5.0945976283317604e-05,0.02194520619001038,0.009650159888621421,0.018360251655114866,-0.04288208845215266,0.00025626262678710106,0.006879455972871814,0.0019169403827917373,0.007727940305902581,-0.01869440218685919,6.168211029913237e-05,0.004060273403698399,0.008041944588142188,0.11626312213554481,0.0006997112280865557,1.7846390041008028e-05,0.005153452600578832,-0.012550040655457943,0.03289346014531386,0.0284462850884942,0.000133365819161261,0.0014273085182967052,-2.6771373982216104e-05,9.162677784501802e-05,-0.03788088070552806,0.0004605493964441084,0.003260119194513132,9.112106586281346e-05,0.00046926470834751595,-0.01035625817881539,0.0001112173885472596,0.010490596291915172,-0.0043043080616701306 +2020-04-10,0.008088818713524496,0.059637332448665856,-0.04707663106370658,0.0001434344513792714,0.0012671275522697669,-0.03921137651099456,0.14827854820534012,0.030672835186660818,6.345185013387675e-05,0.022848747269374633,-0.029676667608286904,0.10390540158905136,0.026069293824972153,0.00013212171783490793,0.02833009222138776,0.007996470386778426,0.008769857565220963,-0.004444496633967137,0.0003077327017104407,0.0173461385110262,-0.03308572194166987,0.07120194306015203,0.040973205848987754,0.00024313447435562818,0.012750865603563089,-0.00021208177495550393,0.0005593581095219113,-0.01868938538548252,8.278661976972891e-05,0.0021453837483974133,-0.001615507125405436,0.005176320829774796,-0.0007889496669435343,9.157513063815068e-05,0.0016407425265238156,0.006260934851331687,0.05875058564998658,-0.005251444220762521,3.654480080548402e-05,0.002969444060585671,0.0004590933069698631,0.0003728606144412741,-0.03091320057614024,0.0009495093311007041,0.004269770681128402,-0.05053956515610053,0.10211775686706512,0.031520529084524525,0.00017305817553069856,0.0031467938890718246,0.004131886951634636,0.002826525145239142,-0.0014097334761491596,0.0007145291246511813,0.0017549923298631935,0.0015818117398292704,0.01914036004280569,0.001120137967051202,2.462790564181468e-05,0.009500035335611903,0.012510967587102288,0.03134443820535816,-0.06605461663723887,0.00011857180920984217,0.009228262165156575,-0.003836526690445819,0.021149104286279422,-0.005137836597686852,5.1063204241053976e-05,0.0011856688627910265,-0.009874420265051092,0.008690972477151613,0.003720652519458893,0.0022159818820433894,0.013387597409591025,-0.009758111362964297,0.06795261659637682,-0.029506544927765298,0.00011817121299873018,0.0008386235105011507,-0.018301533010369273,0.08888909806961533,0.0062995143731837695,0.0003188212071893855,5.727563192952159e-05,-0.029544166771561277,0.16037570175619692,0.019021447708437597,5.1891249994754676e-05,0.029093393807237487,0.02778987689847333,0.170705174302899,-0.1052139674464416,0.00026830375145021207,0.004851814214043049,-0.01770531416233895,0.24100431066328049,-0.006579639557928704,3.0486604587887647e-05,0.0021251005262772804,-0.01655382210042348,0.24396591386866656,-0.038815131024581354,2.2669964516571916e-05,0.011631894922458629,0.07521390401140614,0.1867203052257379,0.1369925905086411,0.00012975656458184226,0.0069890070392615924,-0.02006063591932389,0.1334086463609686,0.0026833211119042925,3.4733863599455695e-05,0.03077188437005359,0.006447094303822229,0.021962097075161773,-0.004441761329489386,6.508300520919102e-05,0.004255476594444968,0.004525106005802619,0.015818599819632122,-0.0022695739167259044,0.00013080047277704666,0.009989288887364738,-0.032105298276955914,0.03208676190415423,-0.0008520164747932835,0.0005719082728904757,0.01726187654476732,0.015442667513996557,0.05199991120414982,-0.026925828337136134,0.00012499876670502607,0.009159276373294547,0.03557489401672274,0.1208372241681838,0.006850047248379395,0.0018895659283332082,0.004395675149734348,-0.008985990428502406,0.08891165278815817,0.0017974376748300515,2.5988993678690054e-05,0.008571626060364226,-0.04695540265220377,0.141674637969685,-0.041665457617711746,0.0010835893484046977,0.005387843342109007,0.004146419909774186,0.032206375813536074,-0.000394037747408788,8.57347859777673e-05,0.006895081784615043,0.03358561652368736,0.04543774846956457,0.088738339149276,0.0001744543922369555,0.009444602522808036,-0.006382303980045542,0.009551929557388435,0.003658139314295308,0.0003835220057540087,0.023956699439589984,-0.07077667919781701,0.266680555410494,-0.053407325972419206,0.0020570704811902186,0.014132524360698192,-0.017191314553776756,0.05821152901234439,0.006660643734631117,9.475245045795203e-05,0.006780941264254865,-0.015225760305619613,0.01740249394836252,0.006314475636144079,0.0021749270211285,0.012331743835629079,-0.03047704675587711,0.09021518532784104,-0.02312487029966773,0.00013384719437364886,0.007129634619215287,-0.011919072536499273,0.031766423473292615,-0.08421272822194655,0.00015210185749650563,0.002270699633467238,0.030827289626781947,0.12774943643151845,0.0055165545951198,5.8896606832773735e-05,0.014770449164909938,-0.021061703393552584,0.06078448420074216,0.0042904194168059085,0.003284118464851319,0.03785431221321089,0.013907062639057253,0.06992314791261317,-0.01663481997615233,9.893615077840371e-05,0.007650621518515095,-0.02571146208398903,0.12259910256184839,-0.0017951665068199675,0.0001520898623433288,0.006100438654696791,0.034068692258706505,0.1965949946091637,0.036732278289182727,8.196561573984616e-05,0.002024338144434858,-0.031468666170855704,0.13427866990380122,0.002959407191200333,5.890046175953241e-05,0.022529834843628863,-0.0026322180291940903,0.004559949189738913,-0.0001490104570821463,0.00028144351755654876,0.015278792038731124,0.013582181015923421,0.04937432516260643,-0.038517496662886445,6.84041919912018e-05,0.009139849897206034,0.02610196818670259,0.3160483697272517,-0.026125210103665118,2.130840717773091e-05,0.009632384854148811,-0.006815331196750586,0.01862232564059936,0.008875022058364473,0.00012792694050213296,0.005593712164072026,-0.03841184616065418,0.1516970601147605,0.11112239154821837,0.0003991314846187951,0.012358652129056399,-0.0022842803890383108,0.011426886352135058,-0.05693249698137643,0.00011449678686899479,0.001892139751178276,-0.005360401657777406 +2020-04-13,0.010136325198726056,0.08092048023064892,-0.020344642650342488,0.0001324672949233315,0.00016004943133884832,0.03621810836274383,0.11368485416999362,0.03538753939558366,7.644228867935536e-05,0.00785632706163887,0.0444536763430958,0.15370342508178134,0.014198601059306135,0.00013378928795929114,0.007434979541621837,0.010849902450900022,0.010738728914673574,0.00226126990802845,0.00034098934647479816,0.005772397773045688,-0.03341992617086675,0.06434771272597965,0.038278303970712226,0.00027175037005776277,0.0037838801556915333,0.0047390320514865475,0.013393058377356038,-0.00244069394492716,7.726034159130325e-05,0.0018187125619322443,0.014266277231553853,0.044990095460147886,-0.0025429514547767,9.304297746969382e-05,0.00016200186421552265,-0.0339539178855356,0.3305148539699542,0.011724709927833817,3.5228773732569967e-05,0.007209804218708642,0.01649974099012374,0.015799533714890478,0.007880084417263214,0.0008053369830756292,0.005171258029270936,-0.008734636463352851,0.023534175775149012,-0.0011998033147621074,0.00012977998745746235,0.01456089886038253,-0.006534177852744899,0.004208994751485494,-0.059993419228972646,0.0007588167787943748,0.007513353396613586,-0.023313473719091506,0.3269073485028186,0.04076094898215654,2.1252258742341577e-05,0.00376918636697199,-0.006555599211314349,0.020884922459453586,-0.0002711356713735315,9.324607604321236e-05,0.01443889878589237,-0.017715688981818273,0.09243892508315169,-0.06690536799379014,5.3946711852975276e-05,0.0003441744915024555,-0.018919513193266495,0.01531760085419039,0.013270751932831984,0.0024090298521629717,0.003693925434755241,0.0038183394637891174,0.019692298403039207,-0.004068957947572257,0.00015956228086512922,0.010935926715349245,0.020497364833093536,0.1103226794173482,-0.0020472639172955985,0.0002877010600513339,0.03053706251615031,0.00026672037907255933,0.001659294516290346,-0.05878041192122093,4.527867169361411e-05,0.024200813616249223,-0.010979973374191633,0.0635832373078175,-0.08082810852214241,0.00028460692195882777,0.015467418299705427,0.033681464375626816,0.3948191367108317,0.0008455626696149616,3.540160905862316e-05,0.009611740970412098,-0.02160514474482537,0.23379579554971025,0.0467641580342235,3.0874660624988805e-05,0.0038700428486222985,0.022234275403826418,0.06128302423759588,0.01248129596757356,0.00011687067369513987,0.017038053088299938,-0.015256190516570577,0.10521202393324948,-0.007756667873589727,3.349446956465481e-05,0.017154409333321144,0.004508849864607676,0.011804973698903789,-0.0027378087485890436,8.467947034456337e-05,0.005159962807210776,0.002044622793393654,0.00762441400481916,-0.03750878943241746,0.0001226183091697798,0.0004363530971860527,-0.016407766773601794,0.015524589908593366,-0.035061043916030925,0.0006040945236616215,0.006937580943869879,0.020643174778729317,0.07438343528608997,-0.04321037406168629,0.00011681167916826715,0.00580150594036547,0.024426384032991327,0.07586095720759145,-0.0046637999570518065,0.0020666171886332472,0.0014586755124808733,0.051940395465123086,0.486747684792892,0.06963401191937776,2.7439964978852212e-05,0.007379762754864917,0.01758659723045049,0.050202308586678186,0.00012619691947021353,0.0011453267346524236,0.0067485960971625306,0.021757523766857592,0.16271587142304744,0.00894674100594914,8.904410917220899e-05,0.006286693268210135,0.011860759323325904,0.01704990245319968,0.003109606410119419,0.00016418594653219425,0.006074470344069413,0.010228547176558163,0.014725080682189282,-0.02053544952561906,0.00039871280472143073,0.014050701557668355,-0.030834755651841118,0.10787481070476326,0.006919975087522308,0.002215495160796604,0.02586833353058037,0.004617970604119129,0.018643601330973317,0.008283346938749702,7.947155794770285e-05,0.017325838855131455,0.015279422080837109,0.01840787155257199,-0.010372929416430861,0.0020633863093208644,0.0016325659065674952,-0.03442088762564643,0.09854231394145362,0.021231781893169703,0.0001383933894484839,0.01766541096743035,0.04206040373507632,0.11276497359454309,-0.0015627722831861876,0.00015120271543301865,0.0014729000346660013,0.008018145442038025,0.030006130494485844,-0.004514409573024242,6.521955948127019e-05,0.008209104502434499,-0.02674370549406699,0.07246827659584239,0.002822101163069127,0.003497773682578118,0.0021916688870035374,-0.037007439819536914,0.15420821261768777,0.042429680174245255,0.00011937739807505802,0.0245890338226949,0.016954386521584014,0.08786397831630198,-0.02898762569319187,0.00013993682009708677,0.0016329012127540145,0.0093025758618339,0.04703713651644685,-0.010363445759506864,9.354294611248234e-05,0.005758746895917331,0.0034502880183251553,0.018460431699637316,-0.02413608654485863,4.697436219366664e-05,0.01289547543301169,-0.03851557008237712,0.06981273694895622,0.0008144901807695591,0.00026898685673572623,0.0047839164909144515,0.021463514176293785,0.08273578404917006,0.024984838203386334,6.450922413716043e-05,0.0015059332288981193,-0.0015730218271852248,0.017546576848593523,-0.009912990213827293,2.3129893418953532e-05,0.00015763993659344364,-0.006619025871684586,0.020479375598250256,0.006695208003675115,0.00011297603585534286,0.00975196594646188,-0.0028424460933722437,0.012747855483444703,-0.0005027952256781403,0.00035146580401400356,0.006820037144360631,-0.022210283191956157,0.11439741603718713,-0.0043739541563311635,0.00011120125205252354,0.015389586354915259,0.002583656874536024 +2020-04-14,-0.044581044961439956,0.30246917482195024,0.12887182930559246,0.00015586754904547205,0.017888025149699536,0.0009116971412028958,0.002467960278752099,-0.013288800382016925,8.863861347826355e-05,0.029374675826033883,-0.034751333365871905,0.12543551094743183,0.03681783960391553,0.00012815872374510978,0.004725946171686294,-0.0443306929533507,0.05561574259575649,0.08386058677143692,0.0002690138475004174,0.028341319204602016,-0.008696930376961004,0.019164025823527005,-0.04777157429241158,0.00023745264865327872,0.019296852157698063,0.005859353837139999,0.013007039270670954,0.006940974715689787,9.835988527535657e-05,0.001669658613467106,-0.02747398927362964,0.10834233857388072,0.015457485125355502,7.440692791808664e-05,0.016503131057395034,0.009251325113144297,0.08505521324100483,-0.009249660523798817,3.729938061769567e-05,0.0024017769859961046,0.0017152354488841506,0.0016963953933555559,-0.010004464651472056,0.0007797249763685662,0.006145342235085116,0.04697784960805318,0.1072973705822712,0.026543458486400103,0.00015309673903493018,0.008524180080418706,0.005099579560505715,0.003772498993029946,-0.004081035235491612,0.0006607384762968268,0.0022944230882324824,-0.00469525558680973,0.06667708249932151,-0.012945374600239368,2.098482920348087e-05,0.012252152630395982,-0.00926039779670383,0.025176163579145115,-0.043197561794237616,0.00010926753080687154,0.011158935160977558,-0.00038303822342665347,0.0026250952813169286,-0.14031830685273206,4.107323040730044e-05,0.0013836016432679098,-0.028077521265745687,0.02256996772316244,0.01652023218672856,0.0024263352035749394,0.002833127545496939,-0.0665600365331976,0.45764152270158737,0.08802248821621501,0.00011968514147062825,0.036225731716573666,-0.013581729377771013,0.05725970779750104,-0.02180240920579716,0.0003672942903184034,0.0074151095789082855,0.02370920149725449,0.15288007612244536,-0.017031422955154824,4.3684462183452375e-05,0.019601560195839637,0.013802766264397363,0.0733411998877921,-0.004420678900312432,0.00031017367113656387,0.0016053471043680333,0.0012221108719756475,0.017671234335403203,0.00036745827965964996,2.869947504067827e-05,0.00723697243493745,-0.011926501660831463,0.14501415571522622,-0.0035504122443078667,2.7477953460494596e-05,0.00695797390813277,0.06804272269252834,0.1663181773486032,0.1038343928628768,0.00013178461803838146,0.004999474742737997,-0.044746938020006115,0.30276424274772024,0.012406634477844515,3.4139025182699336e-05,0.016863036224084048,-0.009401478390050838,0.022341295927969095,-0.0071073159923855786,9.329646169255923e-05,0.0037914844571956758,0.010340613959115194,0.0453057450001655,-0.03334595023498429,0.00010436182004255305,0.0030437176443590588,-0.027061268849726663,0.024063844281506066,-0.028223417687935827,0.0006427746029499702,0.0013590885576946596,0.018130738970144576,0.06295397391573312,0.01132791456664725,0.00012122114020614075,0.0023065182124060463,0.052448479640632456,0.17912948428451614,0.027399899388121065,0.0018792519201013692,0.008152424829432318,0.0019847100925934153,0.02055530169240833,-0.00843186555518965,2.4828782157646024e-05,0.015123033574178468,-0.0036147626029099608,0.009727760203679301,-0.021090122416346255,0.0012148934593781352,0.0018688352820361506,-0.008881137252914421,0.06689662810288868,-0.05191083807433992,8.840768067334765e-05,0.008388201825597118,0.047340411162776035,0.0792119302039771,0.12180245459411611,0.00014105445774228496,0.010616108734079976,0.057335055421515,0.09322370124143645,0.10262480461472803,0.0003530187792506329,0.010924797645779518,-0.021934169001581513,0.0895071079255749,0.0007919650528303574,0.0018993893637787615,0.003662349995204313,-0.03136855486826192,0.12908463693955277,-0.00562991169162982,7.796691031237585e-05,0.011368947306836973,-0.014757708309253917,0.023632747576813152,0.0052327165290781815,0.0015523223044700502,0.0026217570911435785,-0.03856666214780586,0.10083544454874899,-0.022000925388477994,0.00015153566967149418,0.015479110356212824,-0.03850347574140905,0.1152753833942686,0.05901406003287392,0.00013540158125746146,0.007182246821653865,0.028355155692273246,0.10498737480890624,0.026268194563972436,6.591873808918842e-05,0.004663722789383351,-0.02950440036300733,0.08792877025177635,-0.027486259186536,0.003180342195375665,0.009143849013402091,-0.04127193722087039,0.2050438753457285,0.04548876558871049,0.00010012640505507865,0.001057019268155842,0.02090301210415929,0.10862019144386259,0.031448878813953,0.00013955939964445594,0.013674153052532894,-0.02151445390199931,0.12545636016842973,0.0200327835892693,8.111223015366378e-05,0.005082277033676233,0.0033058896692118554,0.017953973074462806,-0.06036543480880793,4.6278063822827265e-05,0.0009053073590474159,-0.025537798003991516,0.048348095261894625,-0.017800319823539038,0.00025753334718231567,0.02179443822744294,-0.009956317046104323,0.04691886744972286,0.0038376819889890034,5.276738510993439e-05,0.0028657120380095945,-0.031404545696585226,0.34820603206644,0.01873886948447699,2.3269524586891254e-05,0.01687046416007103,-0.00909920776493367,0.02584896025735925,-0.015891141934815365,0.00012304655732577911,0.0015911493726481687,0.00467848146135159,0.022148051921252868,-0.006164919460196392,0.0003329640541749673,0.01540074254340975,0.0019134350773384985,0.009570548095925719,-0.012527255643698356,0.0001145113981015017,0.008121749572514136,-0.005021791377111121 +2020-04-15,0.015733472993443083,0.12905332068244002,-0.042188620907101,0.0001289264424379631,0.007356344040312504,-0.006995768686930167,0.02115949955502744,-0.021255044462895695,7.933057020019583e-05,0.007706941455928857,0.01199952879067654,0.040732309372141076,-0.002338762399110507,0.00013627693675461082,0.015199223375749473,0.055961847690981226,0.05182393333072087,0.10795921445822004,0.00036444292993750307,0.01686141775742191,0.0003997445254409176,0.000833193915252743,-0.002249655971816308,0.0002510349601826126,0.004173388990575331,0.01337248267836273,0.03815469485586265,-0.016920268122658972,7.652631467146925e-05,0.02122031363537387,0.014478071676987558,0.05654993078866312,-0.00031917587476668784,7.51222349094661e-05,0.017220393744696208,-0.020810170108498328,0.14299659117544244,0.03736240167609648,4.990551712117041e-05,0.008449055247990937,-0.015032530685961432,0.011248616703419556,-0.017581729765293,0.001030570643732546,0.0011232403630769732,-0.03870714214688625,0.07824263035154823,-0.011363404458362088,0.00017298544044074075,0.0426954527450532,-0.0062785340188313355,0.004957267984754596,-1.4502505060628966e-05,0.0006190706474731051,0.012310393628968965,0.002680485229624324,0.02764450504619849,0.009073966972243145,2.8895312072190125e-05,0.00737988791804745,0.04153553761710206,0.10810345688079588,0.042707979228630705,0.00011413827171752134,0.007599224484240075,-0.00789536705305085,0.04524304360017071,-0.1122677814308296,4.912271138275923e-05,0.0022511367103526725,0.02115227654441467,0.019407514904112876,0.007756798603754966,0.0021257400748446917,0.001387077328634138,-0.021958622316752874,0.15089478284634444,0.006508206148028271,0.00011975205432164786,0.02193708657419726,-0.0010839092034150277,0.005703205735423915,-0.08155839559083988,0.00029429446719854836,0.01935698383288743,0.00674918112289419,0.03894109985969618,-0.007315889245109456,4.882068014403178e-05,0.016919403817320804,-0.0022440761315280218,0.011194749176606298,-0.02022391892968553,0.00033037716832704444,0.004195131501841302,-0.022842325228333394,0.306598062055727,-0.012908809932621345,3.091726984871878e-05,0.007262684119796976,-0.00935127796353764,0.08940703632688238,-0.09110603697317034,3.49446726444147e-05,0.004693572103218963,0.0015976949944580575,0.0046439935436130815,-0.000542650713758177,0.00011082175490281952,0.01872069814207989,0.004461201946235261,0.025582547652392526,9.599484111978605e-05,4.0281020747343564e-05,0.010115803139223088,-0.004151170530568092,0.011282179494846768,-0.2103687421431882,8.157459983413767e-05,0.0017808158593369918,-0.005227601974605263,0.01851626906492236,0.014427167598248969,0.00012909149368260458,0.0027699241475792587,-0.06136278731632407,0.05681337417272082,0.0653507609479213,0.000617348016299332,0.01047487553129242,-0.0070667286546810355,0.028286942860029463,-0.018597769584821,0.00010515221167544453,0.007983669074162874,0.00922174117113829,0.03337765455055581,-5.006548482106866e-05,0.001773275802085943,0.008346588898716735,-0.07144529544528964,0.6943786133089969,0.13836061808955477,2.6458151296712056e-05,0.005598631633536976,-0.019453330133113643,0.06124122193135315,-0.016468159521863493,0.0010385355785308672,0.004177819704463904,0.028548853662824232,0.20886784265052893,-0.030100499666840867,9.102123769402938e-05,0.004584144276778839,-0.0036925644685879984,0.005462300458409047,-0.022069588059812625,0.000159550396389069,0.002932555585235099,-0.028090370492201165,0.04047133016643117,0.025338085050786167,0.0003983950213928825,0.00417891107668453,-0.010139509444617067,0.04372856243055321,-1.7142835009355273e-05,0.0017972234849171506,0.019470997229385115,-0.03555272204367779,0.14085033588699716,-0.015393425623266826,8.09851406717189e-05,0.010521471571283435,-0.03193455677346939,0.04422032536272565,-0.06848830465068692,0.0017952136880889944,0.0013694004819138224,0.05099381613410693,0.16657532839946518,0.1002962020098074,0.0001212894068158015,0.030044668647961917,0.03524395246091971,0.09263680155778772,0.028191699138700947,0.00015422736227135373,0.009239326740697041,-0.001704563412056098,0.008440834340320082,-0.0021057232154931826,4.928805839675396e-05,0.008797088444416179,-0.004202884800340516,0.015491222710290428,-0.02112176805562688,0.0025714604352721085,0.020688033398070366,0.023245367062534265,0.11822674480442079,0.0062028931319010215,9.780504270101898e-05,0.008758528206019703,-0.001064082183885964,0.00605839046476774,-0.004247436854571216,0.0001273733865773587,0.002992881238436907,0.01716743992210733,0.10797743931257778,-0.014854780276459414,7.520058360720632e-05,0.012421769669330049,-0.009895062976544643,0.048591355922589216,-0.006774338845569735,5.118078461378885e-05,0.00035424102375421185,0.04814372691655114,0.09622946155867543,0.02316585530425031,0.00024392765757442943,0.040846484656138604,-0.0020177864041220333,0.007856066715520714,-0.030372643597810233,6.386815996868117e-05,0.010879384202892903,0.023355431735728627,0.2748036744344274,0.010243860688351604,2.1927880201675942e-05,0.02011640994302862,-0.015548755607807049,0.04479482051796849,0.029022385697127836,0.00012133240363115976,0.001770219158347839,-0.03496476359190744,0.13918504428059628,0.02994018632075995,0.0003959733840540513,0.010776832425409773,0.019484919785074405,0.08104649807481362,0.007462664815078313,0.00013770070507611803,0.01859635523946337,-0.001065747562181075 +2020-04-16,-0.022458393597816814,0.1582900374298485,0.029518946892041893,0.00015004160148155565,0.0028859342888318358,-0.024274474565742124,0.08203036639866068,-0.02168072251585329,7.100447380584159e-05,0.011731279842440307,-0.014546173705310443,0.04338773226295328,0.005776326503496387,0.0001550882953308905,0.025362352003117355,0.020231273271377064,0.019222825968746776,-0.040598730333222185,0.00035520072085204273,0.00837176414084997,0.00048557875143099394,0.0013074692362256208,0.0011020197116858553,0.00019432378784709327,0.01721985442945058,0.013316401309980802,0.038249811560676646,-0.024273038958356204,7.601587776136885e-05,0.004673179220454077,-0.05514179736746105,0.21307051613656294,0.03806858020253862,7.593594732738103e-05,0.00015826885941362787,0.009344927658275971,0.083076809987505,-0.025078521289757762,3.8574006224916274e-05,0.00916608658139521,-0.0036828745157324156,0.002500862790717961,-0.001258612988362441,0.0011356430394407996,0.008106779157405035,-0.022418920403926224,0.06874782856281116,0.006432806237708136,0.00011402959875991965,0.00982660979597052,0.007505460267110141,0.005898716451017225,-0.07092224183960835,0.0006219338118209767,0.001677237725939868,-0.012631014248614632,0.2021478730972956,-0.0975068394084693,1.8620521424274815e-05,0.006137397141444931,-0.026778292103183336,0.08356046418108662,0.005384679124679785,9.519914954273966e-05,0.006114985887109659,-0.02295991968049404,0.11790520286409388,0.06463659956338227,5.4814974061194815e-05,0.010652871343813644,-0.02226851285982469,0.020973613857935187,0.010819150832738772,0.002070813175106094,0.010863312252833764,0.006114443225378603,0.03517957061859509,-0.023225432740144727,0.00014302715174482005,0.00812139896456857,-0.03664984872256253,0.17356711703324545,0.010669889752567233,0.0003269738104323988,0.035963540295702735,-0.03287865612783992,0.18063666761603486,0.0298499485515027,5.127068279898638e-05,0.005965499126416812,-0.0493032317542488,0.2702224579949693,0.06970127129036247,0.00030070507305024545,0.011987892281960653,0.03844084959538589,0.5323350782915263,-0.09083377346253088,2.9966645058988542e-05,0.04939616462540004,0.0059318842456106274,0.07058157107972296,0.006628984491428915,2.8079091728092065e-05,0.008439923641236746,0.009944202805049143,0.029605376277280476,-0.0011870558933603141,0.00010819872507575979,0.037226367331892524,-0.02427418351570568,0.18385703721401783,-0.06483386585167654,3.049697401240924e-05,0.003242823720001571,-0.005090584891987943,0.015001351125508428,-0.0009933215061899365,7.523409309732514e-05,0.007188475021085243,0.0035366946113532137,0.012455071142610494,-0.11236758341268256,0.00012983743995199906,0.0012498710599524226,-0.0010836850462450436,0.0011228071032484807,-0.0005371542366431262,0.0005516625346769447,0.013214426235403923,-0.02710469695509804,0.11401738591423202,0.05497396619340351,0.00010005976657374566,0.0009392032587078954,0.008325499353814662,0.026596659244934696,-0.02557512828225671,0.002009103808747611,0.021470671300032995,0.012917965488540128,0.1284668985021318,-0.007423119678738757,2.5857413224422836e-05,0.010672266035960684,-0.05322711140607131,0.15594118934935328,0.039601256592530575,0.0011159463743753266,0.024504640984907886,-0.00907574918885865,0.06699803744122489,0.010887859137353647,9.020820633488199e-05,0.005757411337765566,0.00989036939919523,0.014564552243927333,0.002490142919380466,0.0001602731457509538,0.005823411373777865,0.03135249590168715,0.04426477442698859,0.004030614481283944,0.000406553569200357,0.000566921355920799,0.009254247760337866,0.03798632823942337,0.02408386747270252,0.0018882702335213586,0.010207430955455673,0.024165135217927024,0.09005822998051029,0.05242206933074903,8.609069087004594e-05,0.0036954051128310463,0.0033448227090083025,0.003916377644641737,-0.0030302847582297354,0.002123076934220979,0.012476075952818867,0.0058413397816954316,0.017955331100076515,-0.000893908314002839,0.0001288947082104102,0.007964071744900535,0.013263615267158767,0.03551674065128428,-0.04800717718948435,0.0001513872109966917,0.016298164889360773,-0.010234910975260234,0.04145493196051791,0.001706753872791345,6.025898162155692e-05,0.0013935272149137486,0.017348131329773475,0.044504664799318826,0.004544239665155315,0.0036945812750144155,0.016736192283018186,-0.05232630616421163,0.2727879976523305,0.06277809154260582,9.541911642574376e-05,0.02289287158424114,-0.016221800350916662,0.07825874250741101,0.000607009955930825,0.0001503235319448486,0.003829491420500038,0.017349971480178222,0.09639716044940799,0.00508880310399493,8.513011553453115e-05,0.011144357480085769,-0.03996005744415585,0.1819871247597129,0.04115310902570784,5.5186497939175884e-05,0.00780402710720888,0.02033751803002954,0.03802745015629497,-0.08302546952945877,0.00026075349565270455,0.008466535358159992,-0.017510217528618026,0.08137566501838121,-0.056285009422516526,5.350709420288906e-05,0.005746271497872313,-0.0028639504994823774,0.032492629220325656,-0.00700524271961985,2.274112461735823e-05,0.006577140881587484,-0.010559044492396648,0.029293031564434004,-0.08347876409829334,0.00012599962855793976,0.003618065144055287,0.0018986576607531874,0.007541104462720594,-0.007857206639989591,0.00039686214920192056,0.006562948597548788,-0.025793386464553404,0.11758953781494644,0.002486327818062453,0.00012563524120004873,0.018413574852341463,-0.006772658281622801 +2020-04-17,-0.03312139605976923,0.20039346499048455,0.005085496261754527,0.0001747880201755488,0.013749781917072521,0.017969805512955097,0.06780324094664551,0.009098542331347062,6.359214145437368e-05,0.00916180958929449,-0.0061693627524777245,0.023928729196068747,0.0014863817265572316,0.00011926633583129423,0.01873630690501053,-0.003238922761057236,0.003225404793416231,-0.012431814469487181,0.00033890987300255624,0.029782506795370024,-0.013367709049493545,0.02839578229111651,-0.03077652517787716,0.00024632070505225823,0.00027762337360735237,0.007595023354870325,0.023167687087363224,0.00840664676771664,7.15802440383491e-05,0.00271134253043638,0.0028896948005110073,0.009913088995620755,-0.003947856142720795,8.553282703731199e-05,0.010590744606771,-0.01748433419515168,0.14070311259241014,-0.004266201241257249,4.261318628543308e-05,0.006622044901858203,-0.018092369492836866,0.015518138529169959,-0.007739203811345975,0.0008990847073280414,0.008959875684749995,0.05188108017486567,0.1268922253223329,0.00817947977116029,0.00014296702573802792,0.009605349395047045,-0.000921228994298681,0.0007758772564925814,-0.014380844618333348,0.0005803619550956205,0.010086745499949328,-0.016753292828402624,0.21901784399948526,0.011563845921311598,2.279520328174641e-05,0.0007716863135475984,0.026819289595944668,0.08492947746633973,-0.03230554076308681,9.380799541830124e-05,0.020758141586838724,-0.004364316129948751,0.01989821666310788,-0.0015413569502798804,6.17396074975115e-05,0.0038635579381568865,-0.015796228574490107,0.01212012565841805,0.002984947593003562,0.002541963203015798,0.002321290010906715,-0.04342725311018994,0.2584522765247802,-0.06211173270884923,0.0001382719557983076,0.028650983053904195,0.010461111782396575,0.05918109999240731,-0.006075710368279668,0.00027371780057643716,0.016701768398395003,-0.01383986769903886,0.09138954022940615,0.005978629826900958,4.265759848200868e-05,0.005720809837358301,0.04338287286869387,0.20392441955589222,0.02298417386226648,0.00035061935040753815,0.01110312099108476,0.11382816218684584,1.7326772282109377,0.145698844901236,2.7262287132461983e-05,0.001997183445513437,-0.028422795158265544,0.2691223779801624,0.09514175542408887,3.5285695548285084e-05,0.003272161504819371,0.01190342510151989,0.03335036829686401,-0.06631226682725701,0.00011497252388715944,0.021558962041904724,-0.03547445969990646,0.2677345441985373,-0.024175596439870516,3.0605801444249645e-05,0.011058654638692197,0.0006307486858846413,0.0019274508768080268,-0.055586187135150344,7.255217196739912e-05,0.0008786178729473233,-0.0036072688408216947,0.014522711506848028,0.012995126494241364,0.00011357412401220038,0.003396409483934575,-0.023236090732262193,0.022282479234912157,-0.041337144250551426,0.0005960395999451268,0.0005298725418576269,-0.04588195807530144,0.17344898889307203,0.1395169665345954,0.00011134127245726663,0.011187360210968623,0.03297116958173867,0.11024415408917475,-0.027428472412595495,0.0019195434997685355,0.025822597513301238,0.00812483489693394,0.0861099659558999,-0.0016079192657234914,2.426293430389769e-05,0.008163282998206074,-0.006477580182308231,0.017334672245244147,-0.004796031582131986,0.0012217108551519345,0.009863070802214215,0.0002909281357871883,0.002401351384463305,0.0009320468716131097,8.06780984032489e-05,0.01241323707451047,-3.892168921548516e-05,5.349664473281535e-05,-0.003281245469359733,0.00017171590479198986,0.006888406013019963,0.015278618333433388,0.02560799715594247,-0.006238103390378215,0.000342461995594847,0.02329466203336553,0.009196190261674462,0.036036570382102645,-0.01597732644135863,0.0019779478493800622,0.008932620528109298,-0.020490201490188636,0.07087087045050602,-0.02358907699038141,9.276172849849001e-05,0.007192460328803272,0.024800594993834617,0.03055956281001012,0.009085042902590922,0.002017400643870813,0.011480335081687049,0.009219189343794584,0.02801700817328004,0.002090387524685752,0.00013037280642036502,0.01696339326063122,0.00015273976907958153,0.00042019102679634156,-0.017505288844869883,0.00014735529017325543,0.010149541750728108,0.013368367905399026,0.05571775919074783,0.002639757660190035,5.8559676932946444e-05,0.011840161121627904,-0.03341693990727043,0.10613678654758615,0.0004792556196359219,0.0029841372996216513,0.006507747767240935,0.0028051772307352363,0.014672224966191751,-0.0036179293984986666,9.51053391252549e-05,0.03539475128211756,-0.013504083523038045,0.07601924746840594,-0.039613361190523166,0.00012882564741705833,0.02012720346602442,-0.004146548800678606,0.02410384627588767,-0.03170072782895575,8.136715492323903e-05,0.016965126528009886,-0.008213485003258398,0.037583130956264914,0.002450547837327527,5.492649749035731e-05,0.0055642788559926186,0.004352773566076619,0.007298380764857248,-0.05115795887623915,0.0002907829594641513,0.029919216036137782,0.03148096751446761,0.1342155646405138,0.11300140322039254,5.832564689538832e-05,0.006455825490544107,-0.034251028030878226,0.3817470925693481,-0.0180835122127509,2.3148836022450154e-05,0.013188365860485628,0.015759767977748338,0.04561757434770071,0.038585819321980123,0.00012076097070670478,0.002285675933360933,-0.000389538666359957,0.0019234868686981883,-0.035582041716995534,0.00031921943028566683,0.020875455935667895,-0.014805459219415775,0.06498555164317785,-0.02093027164029723,0.00013048989104468545,0.015272910101714698,0.00019787407044161417 +2020-04-20,-0.0010617603817207508,0.008843582578358124,0.0007826164684354477,0.0001269652477906567,0.011927682043792263,-0.023140443288845028,0.08932651368961007,0.010653927482689176,6.21586847641346e-05,0.026756865916563753,-0.04255670916003936,0.13705192733268853,0.018826130933861006,0.00014364155385567203,0.02657044289909341,-0.012423737068067946,0.018275868209937228,-0.02081461413187123,0.00022942571308692708,0.014718305698107198,-0.014366649739057599,0.030762548912377605,-0.0724289681219216,0.0002443604739484156,0.01613701555306266,0.02180805401131469,0.05168739125792239,0.06272727150205887,9.212532663956754e-05,0.0037327178139278964,0.04265807552798277,0.17723092673962398,0.029176358491618867,7.062388521609065e-05,0.020135078574195678,0.014017982141512671,0.13866767487446918,0.013044297587646015,3.4666411134147204e-05,0.0019047445420460282,0.016489191900612234,0.011393672855537362,0.03613501671475536,0.0011160416782051957,0.002922891560061742,-0.004385252402648939,0.0094319724614411,-0.0034019939306125626,0.0001625750729253521,0.012495650805396217,-0.023971758296291546,0.01785884885989497,-0.030213092748451145,0.0006561011311964455,0.00854774685990871,-0.019660509020470018,0.21519343138190225,0.013735336485669242,2.7226294413675798e-05,0.006116266909516134,-0.015713761262528762,0.04886703235473594,-0.01643411583608194,9.552459893717242e-05,0.01681080625238779,0.01894548135692892,0.11928890459506196,-0.013205311005401957,4.470616450381763e-05,0.008239256265577859,0.01225560359550595,0.010336297088617696,-0.0027243181963850322,0.0023125583229582866,0.016756428562327827,-0.012678446403837244,0.08485440742603048,-0.08806913553684902,0.00012295430573495752,0.00962520913555443,0.017971315361983056,0.10935173155271838,0.010326956050618584,0.00025448514289532826,0.006408138810787024,-0.00045292282270983523,0.0032319821784824393,-0.0655116024498623,3.9474460564292455e-05,0.022797964900053595,0.010079704843331748,0.05984365684715431,-0.0049546386379352636,0.00027759810598250955,0.0448275435458124,0.01887535339410802,0.24387600904223752,-0.03176754981658959,3.211857312626163e-05,0.020946812863154713,0.033945146912631834,0.33690522881949553,0.17497938254192028,3.3662909563337677e-05,0.003409470210201239,-0.03645784691496057,0.09942537646100229,0.035962374361069506,0.00011811812075355765,0.0067435744827190535,0.044989935445685365,0.31009676442844486,0.05221004491204991,3.351278430248847e-05,0.01775760183844339,0.014890205217853477,0.03947824177678553,0.06031137147501576,8.362194467782695e-05,0.004725575292543238,-0.0050218731877015805,0.022300848178330855,-0.03333649954344613,0.00010296579006911414,0.008835418456250495,0.0016542334468743793,0.0015717935254493788,0.006375602568488336,0.0006015571089277475,0.006004764803775454,-9.517836381076608e-05,0.0003662124159812607,-0.0015928337710702147,0.0001093934147816502,0.0011155889236057577,0.08138131540989826,0.3008365714255796,0.047073865712969835,0.001736253961045783,0.031122828410323967,-0.02028077972815015,0.19442472427508287,0.008687578203034722,2.6823494232787363e-05,0.009169799684503942,0.020253240322680492,0.06161755495410243,0.010963022015301301,0.0010746358502937263,0.030714788376126068,0.007060795626339559,0.05319980156503134,0.0002354992634436834,8.83831084981257e-05,0.005668464654800733,0.007748660448137237,0.012638277444407871,-0.027209107883597473,0.0001447051978655976,0.004864391222639597,0.00844144274091269,0.01260832212529899,-0.04469128418633075,0.0003842937283393955,0.008926227631726348,0.00985052928854766,0.039116692332092126,0.004988000754909211,0.0019518560431259929,0.013154066472834298,0.02061520298330737,0.07127711776663015,0.04614308610175542,9.279570080130141e-05,0.01374901868104112,0.007025006943863948,0.008103273577734297,-0.0008632891921173337,0.002155080256170792,0.0007397223161359327,-0.011314173071171534,0.03273577278562342,0.004246447157915196,0.0001369355645532177,0.003556026452767538,0.05465176549297125,0.15284738672651924,0.08004404176511079,0.00014494610663463116,0.015197755429840141,-0.02588063062316808,0.11293547921540323,0.029548707781848992,5.593174647229233e-05,0.0003952176283996624,0.0447317233849483,0.14461653080318237,-0.04367832872687018,0.0029316745000813513,0.010468485405325629,-0.012334015713474512,0.06371193801846044,-0.0017714403400524103,9.629954878734118e-05,0.017216164896362424,-0.012541793880070993,0.06505538719818055,0.005142070560280955,0.00013980965929222963,0.004072924481628045,-0.0011172493772313066,0.0063541458710629035,-0.0014636619484674305,8.316520058992406e-05,0.005766863144512794,-0.00796710803987255,0.03630239305653804,-0.036633200214897965,5.515855073254373e-05,0.007994401010628645,-0.012429323706606312,0.02317259680925779,-0.0373922590276272,0.00026151836217648794,0.0033880251505021756,0.029167376981879045,0.1421060496897206,0.07445011345915598,5.1038650613775076e-05,0.022615979509082836,0.010024984997693859,0.09603701029912387,-0.010145451565058724,2.693248242673979e-05,0.004761040438905208,-0.00716981957094579,0.022818834176017058,-0.02265724614834647,0.00010983069680722955,0.00698714149369923,-0.0015666904650440806,0.005907341132547225,-0.0035692846799197293,0.0004180412333099042,0.0038812308992679035,0.023424230188369134,0.11736675497902457,0.02638513847038532,0.00011431205338361637,0.01858022347190423,0.00554420286731513 +2020-04-21,0.0022369487081746607,0.017493859574792853,-0.05644749429123133,0.0001352249949688981,0.00015204143192516719,-0.0283522849982125,0.09952143514711029,0.012513996305332611,6.835683752577129e-05,0.0002403809257361584,0.03899705556424384,0.11325559699883758,0.016561986704110923,0.00015928297113752455,0.002453599186432959,0.017670162242011015,0.01903123313520815,-0.021150363420271417,0.0003133584886655565,0.012759839019055995,-0.009439514299268764,0.024303928007057198,-0.0069531332162319276,0.0002032221075290994,0.007242837935532234,0.000528653013272963,0.001223717733262177,-0.016478778653200677,9.432703822384438e-05,0.00019598577709153313,-0.007052512492563912,0.029136006256983444,-0.025401186713273394,7.102376612787849e-05,0.007881785865776304,-0.0036584891931748004,0.0353936714679522,-0.004098573092697604,3.544661560474549e-05,0.011696125877141118,0.024838996629996824,0.021997255149826662,0.06376649771147092,0.0008707838040734428,0.0015953914692238545,-0.02434815729265249,0.059149985538981466,0.003569175383740816,0.00014393729683159496,0.009293858555103503,-0.030761168503206884,0.021242276824490366,0.07215039752306732,0.0007078253669553419,0.010781537444431194,0.010712651142155522,0.16288232220456397,0.04663053801622163,1.9599536422436618e-05,0.006001642786275978,-0.02707999274445873,0.08826432084106182,0.035338132432666605,9.114112766279655e-05,0.003644382436834024,-0.0052067271265058175,0.02916978737192057,0.00030794178744847074,5.024506041194788e-05,0.004489723612702183,-0.008039026210889907,0.006672513021939769,-0.012013028090404452,0.002349832938687084,0.013559162228734146,-0.062340905948768996,0.4129353519900978,0.07268215869198064,0.000124234767613548,0.0046975767563453156,0.050942339822772235,0.2245370238588006,0.06603523641946289,0.0003513169943493829,0.029300859766405028,-0.04032888969370291,0.2369111699031534,0.03762371325774509,4.795033924613035e-05,0.0025893962871301676,-0.0059684903326339585,0.028244382350623636,-0.029518825381249454,0.00034827252950214423,0.021807857610843716,-0.020588802078618528,0.2746536899961109,-0.004537849678167797,3.1108270868007265e-05,0.0038782292103688525,-0.011435538721327005,0.11840898488760448,0.005686359065601451,3.22666352620219e-05,0.005389688082116657,0.011794987815706598,0.03201121036862176,-0.042334148314091984,0.00011869110058608873,0.02190459222267957,0.033657421701499664,0.23678854296102633,0.020983008357056743,3.283314881226217e-05,0.015243802263468637,0.025263197658497997,0.07696401435067418,0.11679437269361541,7.277429223313039e-05,0.003132631629013197,0.01371099548127406,0.053395574530826606,0.04982247196039257,0.00011741195500753669,0.003134234977927624,-0.035121329521215605,0.03082145734251129,-0.0067482183671222435,0.0006513183881152323,0.020632977880062724,0.004370272639580908,0.01588721762943128,-0.00570410081006921,0.00011578350586422978,0.022435036929919848,-3.7028661567303866e-06,1.3830197792135223e-05,-0.00840302919981036,0.001718417939491008,0.0031228604087945857,0.06120375926291026,0.48027777228099855,0.09289394165004201,3.276934841686065e-05,0.02504204010111774,-0.013033527277793415,0.041641874747242624,-0.20553700940454664,0.001023299970144176,0.017658085909129383,-0.021696544580061112,0.14823536994957637,-0.01545595416790857,9.746852069590745e-05,0.0010680995204541894,0.004222205703750636,0.005175680082404397,-0.03443752642579311,0.00019253839639760307,0.0031104139566894137,-0.0009272080545673685,0.001368503833735301,-0.03113240810567085,0.0003888974460453963,0.007052531686435409,-0.016732513953913297,0.06608828607272098,-0.02719708587297333,0.0019623977983154865,0.010773109892227462,-0.0003664895401923727,0.0011585721925215274,-0.025947959524166623,0.00010149130901775108,0.0006106162259162605,0.07558148328297007,0.1087728723269096,0.08650001587006052,0.001727316833855031,0.019301885623940297,0.013923527793375495,0.043932543624641024,0.00423901630982792,0.00012556799901515094,0.0060291746765184576,0.023206905273373834,0.06968398014001959,0.013875092535138623,0.00013500338482590036,0.02633788008126813,0.005057190503892939,0.0243986082451161,-0.09748283142628239,5.05892434810324e-05,0.0014459021796151875,-0.022783339877311404,0.07855404717303455,-0.001846587167205704,0.0027489502598860758,0.005688992878085182,0.005031803722172654,0.024232796179499357,-0.009676019743241879,0.00010329058408116456,0.0005029909447312441,0.01215860187139105,0.06273824795000496,0.014509912342174438,0.00014054391141238114,0.03273774354569522,-0.003263115295498726,0.016980980793675538,-0.17466158066140183,9.089046952595489e-05,0.0007346870132933643,-0.0061552183496768826,0.022438743410227894,0.00021367898182883926,6.894334110304171e-05,0.0004369365508169847,-0.06322779735992519,0.12106909959335727,0.06087648319699552,0.0002546268130031936,0.026882795824233936,-0.006634478146952237,0.026100947783593634,-0.050984902760488636,6.320695460973833e-05,0.017917755553807386,0.005083705600398684,0.054660899864025475,-0.023488761848951822,2.399578161800345e-05,0.0025792766870351208,0.01474965869471914,0.046429531722092875,0.03527651559487644,0.00011104439235946102,0.005271418352476713,0.02856156310571498,0.09429857385513865,0.05303236617617814,0.00047742462750276893,0.006509727075214253,0.011616467891604837,0.0534832973828524,-0.014238958247806393,0.0001244021016972441,0.003029825887999984,0.001245310586601922 +2020-04-22,-0.015774593625773856,0.12034846105324551,0.013676662519964885,0.0001386130829150219,0.001734482554424996,0.0342810315932943,0.12369297824442824,0.028986339460540463,6.649965044783444e-05,0.0022089468209154205,-0.00877658212777889,0.029802016879607585,-0.00033665147400039426,0.00013623132143876894,0.007641792896718527,0.008991731475380052,0.010717253222056243,-0.017279862440685027,0.00028315725468923544,0.0024393266371060983,0.007467755352672345,0.018543875646359675,-0.035773152931291914,0.00021071106774442192,9.551794327621944e-05,-0.008628030406307542,0.02236203238115615,-0.033873127405282456,8.424558196989439e-05,0.0017891600821091317,-0.031245395085291734,0.12370045903649524,0.012720239517367959,7.411473574446386e-05,0.012192979737323953,-0.027226302444094498,0.24085649603206913,0.05190207741239775,3.876402947302158e-05,0.006178396560038478,-0.027612591212266068,0.02346249207416957,0.04311700234100829,0.0009075651506758861,0.0011574286862214645,0.011248537406351795,0.026441181721828615,-0.07281862181416288,0.00014875688731615054,0.015945105854727352,-0.03661156144141366,0.02255043410494911,0.11003020317050632,0.0007935744980026605,0.012123291641618331,0.013072245480215223,0.17923827784374707,0.028179106421102895,2.1734128063429153e-05,0.006088534944225241,0.03266099630237345,0.08283066858058773,0.03388017268821859,0.0001171357060041156,0.004058259049273928,0.0138060353836675,0.09067546142652345,0.03171728839971553,4.2858900567149874e-05,0.0009006294608958933,0.003502176554760063,0.002978803997653254,-0.0215453928628669,0.002293079336918117,0.03059837339620126,0.027371665789824397,0.16246500871273653,-0.04493247214363201,0.00013864157971157706,0.016701534461031703,-0.01134617982922396,0.07257240117156631,-0.1287932186947987,0.0002420953243300253,0.004343346842935627,-0.006122626461955806,0.031137938794046555,-0.0006223886348879487,5.5387129703829007e-05,0.01843618983383582,-0.023901741149085744,0.14093826234914314,-0.0033278195183004677,0.00027950361773080483,0.01465524166136643,-0.0651566690628996,0.6888512261750422,0.03450281926731511,3.925216987240553e-05,0.036156837087215114,-0.02211403336025539,0.20597999408261003,-0.01940020989435777,3.586944261888627e-05,0.003812523973542026,0.00664455948639505,0.02076670067931075,-0.005603890983981361,0.0001030674298657031,0.018699098800804795,0.04611362781361605,0.2991175682879528,0.01710780917934257,3.561063718336948e-05,0.029026061195030185,0.006308647759113138,0.015918932821035632,-0.019730592984213754,8.78617222001935e-05,0.0017362659478837455,0.010336702492255594,0.0420787572855081,-0.05681125427620234,0.00011232274464261389,5.399044964557627e-05,-0.049385782408787916,0.04641671311891139,0.012280741967612157,0.0006081393648956006,0.000264567675281734,-0.015898951313646253,0.05366341133111478,-0.005484460653883908,0.00012470280190765633,0.0035201336992295488,0.014624288774727818,0.050908063725675974,-0.07692788377520464,0.0018437725705447684,0.03398233613624815,0.009172453043426185,0.08593305148635738,-0.004816738090939412,2.7447794817879857e-05,0.006345293147774339,0.03067571246600681,0.08461825026305464,0.024637874135765746,0.0011852279579457222,0.005312674144842647,-0.03173762246722158,0.23148357837505595,0.02776405759594773,9.130190638349831e-05,0.0034748264201899855,0.007979310654506258,0.012097420915178186,-0.03364029187458352,0.0001556746751665017,0.0027377016494294186,0.015445139530883223,0.021251041993309693,0.00033220194580127705,0.0004171723543419607,0.009230386636841472,0.01965711250569364,0.08006617430537495,0.028440766811510858,0.0019029219986335198,0.019698433986876585,0.0124511978030336,0.047420660465848606,-0.07407150686369307,8.424301556072446e-05,0.01446135993416825,-0.007487557935357584,0.010287138617209389,0.0017549009691523478,0.00180935087877467,0.05271499104787479,-0.012666820649279919,0.031602186838751954,-0.0149795212657252,0.0001588058590731505,0.011481221097395728,-0.001381745022786848,0.003477699516005435,-0.03396649780193358,0.00016106316538896,0.02272387450227592,-0.007081907698576305,0.03811764125557754,-0.006273935957903162,4.5345914912861794e-05,0.006335154249307735,0.017443094439268537,0.05297009405181266,-0.05852445481972364,0.003121122726603189,0.0018205511723700678,0.017231974594655843,0.0872614437400283,0.003337335406999464,9.823205335934834e-05,0.01960695362596236,-0.008788946410583635,0.049416029374554075,0.0030972902194246342,0.0001289821923012818,0.012940438538146252,0.011285191526943615,0.07103337210361142,-0.00041384100763837845,7.514415425005283e-05,0.02023933093613902,0.024306277768339716,0.10810560113123997,0.06675718576352206,5.650900436189246e-05,0.009230077142034736,-0.016784966484979413,0.038970446484174456,-0.0030811171967218406,0.0002099976771827717,0.006264054561725834,-0.0008068014710998812,0.0030186885205962842,-0.0008461592906059415,6.646036989430807e-05,0.000495337679692088,0.014368978909276945,0.13699472129538026,0.002934368430457382,2.7061593096904414e-05,0.00920020248934154,-0.011609404314749473,0.036313500569659034,0.01908684707536215,0.0001117508370065644,0.0004462605343595971,-0.01244140476613399,0.04435315212486445,-0.023458760658119124,0.0004421533302583359,0.002062168502465545,0.005670291056444453,0.03138972370032587,0.0011178873522243774,0.00010346409298331085,0.014771596513792363,-0.0012520233459912264 +2020-04-23,0.01954339265293318,0.13533548211221288,0.012548185608347332,0.00015271259856712273,0.01945210712495196,0.01025815514536024,0.037134184395393004,-0.1394730807894255,6.628357133960837e-05,0.0169505242082527,-0.03640147429186874,0.12795353479316576,0.03494884800766535,0.00013160242433630354,0.015590803432676275,0.0018775345755944013,0.0017608764757669644,-0.0011848326335524,0.0003598544753521332,0.002466906717487856,0.030526713502042474,0.06480055850124346,0.09420737474865193,0.00024648986906181553,0.013071166009430544,-0.006282319870300321,0.018648913764596563,-0.005652896637520779,7.355517689187265e-05,0.0026092418492582935,-0.04548112511469981,0.18413640840820775,-0.009073253908536387,7.247385904605451e-05,0.04020180921043558,-0.006926822139249109,0.05072738778093474,-0.045701761023749704,4.682633330339094e-05,0.00036457730027951104,0.003591332783362926,0.0025229595044440768,-0.0065419540812793105,0.001097716410511034,0.0032509587817408222,-0.012558436059350935,0.029142714040838222,0.00018440238664165875,0.00015068410754804599,0.002428468434631561,-0.006784574405822471,0.005387014240498928,-0.06704498323307656,0.0006156003305384602,0.002990969911006099,0.009614341022639793,0.11441696818658743,0.021795886562226894,2.504101199929334e-05,0.002306856268971233,0.022618207309428207,0.05789822280945885,-0.014688896877762675,0.00011604969007445744,0.02014012402852282,0.009017905385681587,0.05068434953576735,0.02222721733729431,5.008337825506933e-05,0.0033379915185722097,-0.030502734702528206,0.026185473106633442,0.02564789265960964,0.002271963369918844,0.0032625065102577927,0.05420532871504023,0.34863479226315225,0.07130449612636897,0.0001279450135235847,0.0041969182610842514,-0.009077975187426847,0.04949274926200052,-0.005285101161468022,0.00028402439555650066,0.03258181391863383,0.05057519733364715,0.30381251914790686,0.05006013968784073,4.689136510888287e-05,0.008203900340003834,-0.02234540698613129,0.11544259756267271,-0.01369438184503068,0.00031901344445905554,0.025643848934916606,-0.010254852050144375,0.1266580202519075,-0.009104583715039196,3.359904511247712e-05,0.01212293562750215,-0.018210067241760206,0.2455390562349494,0.009940475959555058,2.4778366724352415e-05,0.004384220641580866,0.0027892655872679135,0.007851726623528425,-0.00413682192855297,0.00011443199101374427,0.006187660358227856,0.009789119584764716,0.06788702184611256,-0.020381834072903525,3.3308053464738855e-05,0.004562116194490059,-0.03241966220924601,0.09044827619446154,0.18819074066236036,7.946677227316598e-05,0.006337182318982792,0.001499312563324067,0.00580662715634458,-0.09914347585925122,0.00011806382108472132,0.0022799291421059737,-0.00046088727127186434,0.00043245170500571996,0.008060420338754978,0.0006091618005212609,0.005650907056984119,0.0016691468705825115,0.006581319215708505,-0.0006839357440007715,0.00010674993164105116,0.009810261858626249,0.011088537652035416,0.04095878609900575,6.70414532318383e-05,0.0017375862581816043,0.005985393372699724,-0.024410013176396607,0.20677206614244528,-0.04656989350856799,3.0356964428332367e-05,0.005631711283843161,-0.04278050705267226,0.11758063067495651,0.0032589844422470384,0.0011895464689477809,0.01454692998897009,0.010244245297066544,0.08895906762064168,0.0013744518743976685,7.668587721428354e-05,0.00956117667786557,0.009712889129530238,0.015332364028017536,-0.00175965681843556,0.00014951497609864438,0.0038955915748624653,0.008403270379923087,0.013277316208686196,-0.011880941626872267,0.0003632803880803939,0.0017102248984231453,-0.024686679881497593,0.10668123091328179,-0.0487997415684888,0.0017935975771621651,0.003023838221613636,0.03476376926497053,0.1358517058598514,0.09660466537290502,8.210169684402811e-05,0.00274488631290504,0.014535683495153072,0.025238388163201342,-0.16526431755061372,0.001431696734092224,0.006614937866255355,0.014920671081468476,0.0490421382755311,-0.017065352013265363,0.00012054105708128925,0.0020196596733304643,-0.025752152380117865,0.0652274055886766,0.02521392092455094,0.0001600456242370127,0.00515617271432392,-0.023410848802469818,0.09371268412880183,0.003505244195178131,6.0972318274674104e-05,0.008084127738049509,-0.04068217240456295,0.11527247834109586,0.01747042221891914,0.003345003398699946,0.003039162406350699,-0.0168601529379353,0.08422828322664586,-0.051279976364357896,9.957358227595172e-05,0.0067910529510386685,-0.0038647551970684706,0.020288443573675322,-0.019996870428374086,0.0001381446412168058,0.011976136323954225,0.03320431969215997,0.20659669806942063,-0.03647847511857989,7.601860736463376e-05,0.019599516647517558,-0.010730718875706615,0.051413828617006656,-0.038779298650481936,5.245613238390302e-05,0.007680377629292093,0.020519108385651255,0.03815623172299806,0.0028390431783627754,0.00026219379040594504,0.008218805851206977,-0.008196577731470173,0.032170412825869424,-0.03832546326597168,6.335637252177252e-05,0.005539898568898138,-0.02562686849522192,0.2206740864136116,0.003595150269239785,2.9962323482591173e-05,0.008788395357049963,0.015747838363574743,0.04608346159096332,0.02371844872362909,0.00011944963282102284,0.007934603340883795,0.009972654714420402,0.03498154888512823,0.011961369132770976,0.00044936549191231217,0.0002793436589213173,-0.04114339305805676,0.2635474746285695,0.0023502935521895426,8.941554781131196e-05,0.011365214861565748,-0.0022957149817976383 +2020-04-24,-0.030801888826507185,0.21984773588572612,0.04196156451291001,0.00014816374118812716,0.011672037796756208,-0.006729025388984819,0.023419568097440873,2.4796365610512447e-05,6.894198949784739e-05,0.0018429553779562527,0.036331609722376534,0.11043590576375696,0.021563563879342947,0.00015218489441443485,0.003819917172616017,0.008337909074464678,0.007875992484497442,0.0006334702067745598,0.0003572890596030639,0.007682239968814226,-0.05392500017566544,0.12533343119685117,0.009678949016911942,0.0002251235860730661,0.011600195254446841,-0.0013733601791725294,0.0036972879716608074,0.00029113514462231687,8.110505305242659e-05,0.003282882204875861,0.012347820854904086,0.041662470685632454,-0.06030809221468065,8.696312830146295e-05,0.0099135080655145,0.052369122300505916,0.5172701259620406,0.18994891812666465,3.471814498990379e-05,0.003963730836502015,-0.013638249273080851,0.012401624597662768,-0.025116601472809103,0.0008480565830002295,0.006246301795600524,-0.07491048802485074,0.17168056103424223,0.08758343475474889,0.00015257500362530688,0.004975153234809822,0.014635982932099001,0.010343109140903497,0.028350341669502042,0.0006916639574304555,0.02097560737726424,0.015336864498002131,0.22541498441771718,0.042889807356509345,2.027573412450503e-05,0.009758066138104031,-0.02088474041776224,0.0607493203951624,0.033480836035105724,0.00010212655816340413,0.005592712326962554,0.03061159017304045,0.15190101636853354,0.15727585015334936,5.672663588949569e-05,0.009672769286157642,-0.057698961064377004,0.047963606639590074,0.0904411196016551,0.002346276189158045,0.001713262496761925,-0.038999389913130234,0.2646454809389913,0.020275301774396112,0.00012126778317098828,0.0210312395471835,0.023166810602741495,0.12829514248069787,0.008143368801942415,0.0002796174473503224,0.006520272623541775,0.062260771845697206,0.32783806518285274,0.05191609481185042,5.349535554969375e-05,0.010269052939256094,-0.0457078764261106,0.2425362239693091,0.053065397657277545,0.0003105998489845373,0.006051741355425968,-0.046792016146203125,0.571550764749229,0.012731133941964786,3.397403886731837e-05,5.677783394075634e-05,-0.000947090776690947,0.010079313139206368,-0.0054720207369512806,3.13936909370022e-05,0.011106167164867559,-0.00477753504212103,0.015082280869736507,-0.022584365368978565,0.00010203745378930619,0.008132261556102784,-0.030153086738564015,0.19584124134456096,-0.0631928726487179,3.5564769623705796e-05,0.007426742903470932,-0.014848831716183607,0.03999648682286697,-0.016282786602107954,8.230909410146834e-05,0.0075845401245898374,-0.005295435418365917,0.01790449489078528,0.029456432185761234,0.00013523471744890958,0.003943442121844821,-0.07455805619978183,0.07750011534974637,0.11000129417541743,0.0005498798297097403,0.018325379467613905,0.01947215060312795,0.0739386396232329,0.02110180517479964,0.00011084815605670476,0.031317537002728775,-0.04667447162794415,0.17836922615685383,0.07317119069323923,0.0016794947740024924,0.008533672801197597,0.041500106452898054,0.3858061817224227,-0.01373856657130862,2.7660639974711998e-05,0.010625721987550777,-0.014663629210086522,0.04505943086080698,-0.005433687993392556,0.001063964256475176,0.0050326021211918644,0.02009517012170532,0.13414646466432675,-0.03734340077833903,9.975578689957786e-05,0.009657152784547658,0.013020938415757473,0.021205027629146618,-0.011373345696384549,0.00014492684185741234,0.00744626702826983,-0.0023379761055421114,0.0037438653755181494,-0.07169388235131735,0.0003584460165749294,0.01080461739148107,0.021206453419520637,0.08231981495951209,0.04102464712160648,0.0019967054278975426,0.011927477967718148,-0.029900614159920784,0.11422345392209424,0.0341357312267227,8.398760381192298e-05,0.00660277423753616,0.014633248832386645,0.01889590147678767,-0.01777490339021552,0.0019250868774085658,0.0322502722094376,-0.07008360025265871,0.2379631822704761,0.20174819244439532,0.00011668705316026638,0.0029548536218385307,-0.020450383279621058,0.05728450192769846,0.013602013873210651,0.00014471871133805774,0.00763285463825642,-0.051253286786975986,0.23076213887708424,0.03415834934294439,5.4208961889946756e-05,0.02246348904943881,-0.04310521929654694,0.12950220567753837,-0.04058327907129957,0.0031547921497599176,0.006716773276366998,-0.019799695636081853,0.09595689523411303,-0.005683753000883773,0.00010264147807637888,0.0010709104464274592,-0.05438370729544977,0.30092251303204537,0.16345336532546237,0.00013106143361740264,0.0011161816954587582,-0.018762072870662186,0.11759387598189659,-0.016507625637660978,7.546486715340176e-05,0.005882334049043702,-0.0649405878135709,0.28311196868820887,0.13898301521376533,5.765080561116455e-05,0.01642517436948436,0.050274626055045166,0.10200205119713941,-0.030439927738334725,0.0002403086135558149,0.00959607777923021,-0.00825346937238852,0.03148248240982436,-0.0009257887630561666,6.519014552378148e-05,0.0018814538594464619,-0.0063437350141744555,0.0690184958388384,0.002029052583206146,2.3714328353587857e-05,0.010622473576791313,0.004963297363266715,0.016826795126264903,0.0027251509524416737,0.00010310455522906208,0.007374696789491233,-0.014043982637504738,0.047575324473414386,0.006386067310875837,0.00046530368915687705,0.0007988893914001123,0.011533049960948824,0.052279418216886996,-0.00691998122766876,0.00012635290270556466,0.012698482724925348,-0.010674740018055177 +2020-04-27,-0.009135987489643815,0.05465797596782603,-0.24557141210618186,0.00017676184857467914,0.004794122405172512,0.018522287729881525,0.0630362345082766,0.013646572098696968,7.050418398253712e-05,0.003353304525229607,-0.015447504446511136,0.05682861379135139,0.007410025931081953,0.00012574434728450962,0.027477955651370786,-0.0017367871021837639,0.0017532983145778778,-0.0005266143627856918,0.0003343171272138252,0.021741301644244836,0.015376205841854146,0.031023334590155747,0.02194816143223361,0.0002593334154549486,0.008080398496590802,-0.015399773953374225,0.04270329294024852,-0.06056847268976344,7.874078138650724e-05,0.00442779968738772,0.029466974055970332,0.1000960362191691,0.02048178040356478,8.637906844232839e-05,0.003180840723710478,-0.05401013074945225,0.4993562241086853,0.15141704247893434,3.7090558743115725e-05,0.0021277593260329098,0.0007492022715769228,0.0005673769404080166,-0.08514175383713596,0.001018291669987239,0.001980237533626104,-0.03729919487989964,0.09560011837256244,0.01806742996517639,0.00013642781192732778,0.0015292981849307692,-0.01230717456933269,0.008995092845019838,-0.07370055926689129,0.0006687704398226872,0.007928711186486428,0.015913401112522083,0.20067223016780764,0.052981920549827116,2.3631893562734478e-05,0.0031828448567523208,-0.0052517394365740174,0.014884246524279707,-0.002135651056428937,0.00010481594492769435,0.0031533103876993894,0.005565880314226974,0.02794842377956926,0.0003605880953258078,5.605809842937958e-05,0.0020295500340172163,0.030863317352317513,0.029250123997318772,0.015518455111001564,0.0020579644369696495,0.006588081458324799,-0.0612923391191208,0.4097288290091605,0.06612353707471443,0.00012310105673380092,0.007835538302433725,-0.005239774827042974,0.03115416912521901,-0.028316629637005347,0.00026043819863950967,0.017388705131629455,-0.007684010767753788,0.0412461815533821,-0.0031531955600233403,5.247653749248097e-05,0.021051927464835776,-0.035498353881729276,0.17101260622527653,-0.03626741544276816,0.0003421108880826806,0.024667816016925123,0.02042428994351989,0.294321371568085,-0.04982771140203078,2.8797540628882894e-05,0.03947531734032092,-0.012400075593995037,0.1309422144679986,-0.00844825220678998,3.1639263139098774e-05,0.007813252557861704,-0.0015526518173987877,0.004481927160422007,-0.04349878899750893,0.00011159173697703426,0.013276818467530068,0.013618244227889502,0.08474435152515142,-0.0006554824479299267,3.711955266620782e-05,0.011187885619152882,-0.0009609100603167567,0.0026203884147865666,-0.00428969761887706,8.130073126786951e-05,0.003747421451351915,0.014072327245340605,0.048434055814007955,0.060047716343167086,0.0001328506499848885,0.00010028721297558824,0.03926917085460816,0.036273840491137695,0.09376545969702783,0.0006187764178293827,0.013724278503298548,-0.022223971265623702,0.07905553069375212,-0.04381537013351515,0.00011832470150230636,0.011994992956396396,-0.028077655784579162,0.08864565759470432,-0.014593835602939115,0.0020329306055409556,0.011630965266308212,0.005620619473720446,0.05401569348958956,-0.05111299031892156,2.675755475506588e-05,0.017410235131561085,-0.0034954160088464235,0.011436986895394628,-0.022745284081086153,0.0009992140159266966,0.02269324667096806,-0.009747400241278022,0.07713279250041173,-0.08292056381265564,8.415412090926245e-05,0.004705586370278299,-0.004936233016056892,0.007464677645158446,0.004186078202819279,0.00015607379152360537,0.008770172576490178,-0.011819261033776384,0.014153436858435285,0.013351712448618254,0.0004793274782829706,0.01615622530230699,0.028405829400173728,0.1103184834558689,0.03488110787864065,0.0019957655998842777,0.0013232769641922915,6.681550291502339e-05,0.00026366189886813573,-0.037161536389871644,8.130555834474782e-05,0.007258012761714885,0.044937661117875956,0.05948983389282759,-0.06243250188330972,0.0018777808267610423,0.0028223800427172154,0.019008417584688745,0.06901082938251338,-0.0037662254530535177,0.00010913015042046097,0.003583465780993042,0.016313668610469918,0.04523324809023832,6.655344590482193e-05,0.00014620231101803788,0.006490506841334247,-0.03302099499753552,0.1410347738167925,0.040875601064350314,5.71449522367115e-05,0.0122709655368149,-0.004191840431993866,0.013254876075884624,0.0026822941574170273,0.0029974167405712134,0.004438210225952417,0.00492105351632241,0.02609620913762623,-0.03121340176183461,9.380397332768457e-05,0.02587765995747892,-0.008059906544015512,0.051083310668189025,-0.001821418252071273,0.0001144225849332229,0.008561904307046213,0.011794984474880935,0.0655495871566748,-0.007071453349678852,8.510912224748765e-05,0.002800791195005984,0.018795025936737805,0.09088590571931715,0.007422452455193456,5.197491463996875e-05,0.011200881671395529,-0.008580740685884531,0.016290051455402344,-0.019389315553541096,0.00025682169948723106,0.017449699536996863,0.01400083662439182,0.04506429190134396,0.02026867443625645,7.725663933195513e-05,0.01020751786710011,0.013322638190158689,0.15641546490360955,-0.17358112340605572,2.1975655046840804e-05,0.0055525399473131416,-0.03328469944320506,0.10116032604813448,0.15230835224458847,0.00011501206040838965,0.010099031778840757,-0.011265256357438087,0.04789802035276043,-0.1347018204406264,0.00037072466883531906,0.003256436505930955,0.03425108032749357,0.1677663534174644,0.045942377009779475,0.00011693410757420927,0.005133963358989531,-0.0017379768757030075 +2020-04-28,-0.013257985659125476,0.08292633919343184,-0.03323513330792699,0.00016907197858770243,0.0004662558291218513,0.00029754031827373354,0.0009548352363551854,-0.033093792477262386,7.477009154609235e-05,0.0134509553763676,0.009272867349914676,0.03098589525142547,-0.05032203094510405,0.00013843541381951686,0.03445976602118541,0.007341608002727703,0.008689642968630411,0.001204354925710069,0.0002851393238643947,0.010270252024645994,-0.002517076947739587,0.005502144049348614,-0.042891694161688844,0.00023936591502779183,0.011594174723221641,-0.008653849184256338,0.02580871803832073,-0.0890405201775865,7.321324040698022e-05,0.0030686600838207055,-0.0018770151473993717,0.0072602054165926844,7.389923298757196e-05,7.585928132745202e-05,0.019910629628390793,0.00392790837083585,0.031159284976425176,-0.005504707726349761,4.322873026557865e-05,0.000274729622106393,-0.0017898662074537198,0.0015382592418916484,-0.013995309589747176,0.0008972961870640756,0.0003868299530413147,0.05752440172628771,0.12598975431291684,0.05885915161744918,0.00015965361915017308,0.016554626017937144,-0.003966433730430892,0.0029080689516431785,-0.013416833551933632,0.0006666837372427528,0.024145404275408476,-0.017592689313570657,0.2481422756395629,-0.008141515120531401,2.112779925867809e-05,0.004240432969169054,-0.003840923983763936,0.011579077396161364,0.0025836364565484994,9.854005335903289e-05,0.00892112926248246,0.0006240183080804932,0.0034532628634146513,-0.0002734549477024687,5.0866225440255857e-05,0.0012328205006435242,0.027815095614856795,0.022673900943066802,0.0076305931634240865,0.002392639591240679,0.0022558242879031996,0.021090679784223763,0.11363533715496142,0.002071626960059086,0.00015273173344765675,0.009818926015163265,0.023025832606179988,0.12448263483607064,-0.052220613403036305,0.0002864275596671911,0.0012284694034327074,-0.0021954794370720823,0.012029514526532685,0.0004525364941790846,5.140936373806071e-05,0.009644992818144373,-0.029614656944043583,0.13849613945837844,-0.014058963146876075,0.000352416185273097,0.010890746185266694,0.06690902257396479,0.8234043655198191,0.0323213608745248,3.3721101443398886e-05,0.010829829023228616,-0.0016376463245434622,0.01798011824985816,-0.0678290719270565,3.0430513454422546e-05,0.015982721668944128,0.043750076346618684,0.11710421883885522,0.030235238193104363,0.00012034527111354946,0.0005677667116951023,0.010629432355448715,0.07543308187245686,-0.0009483970886500079,3.254922085080054e-05,0.0030427769786610204,0.01935783475615808,0.06009227068416633,0.02913184036566466,7.141929284609053e-05,0.01937771654816666,0.01934280242627935,0.06821916322154245,0.014661122926286352,0.00012964674077198132,0.000138056422141023,0.004037001237488064,0.004043543755960244,0.01172804059138805,0.000570653252433247,0.004617519238652346,-0.01575725721613811,0.07156598750610434,-0.11061894098121772,9.267443887346352e-05,0.007272559994373236,-0.038439175301940846,0.11316902169649828,-0.04497194580612487,0.0021800460855993264,0.016479034278050336,-0.0034698250802597656,0.028610535452242944,-0.007201906647070323,3.118629561961496e-05,0.013619982665538554,0.026133050248636356,0.08817764298305962,0.031509236468121885,0.0009689533922108766,0.014359252943584809,0.006010467864062804,0.0559339795826291,-0.002192232141789605,7.155800154019445e-05,0.00707774142351449,0.006811047348560296,0.010826943859463593,-0.030182709446778175,0.00014847502286040993,0.0021878032569061364,0.019216947485064785,0.02482721346657207,-0.0024515179208940514,0.00044428365781451864,0.020638296997698247,-0.05237876195911533,0.19451909980089638,0.06088443669882189,0.002087100293674866,0.002467158831289467,-0.009597782683092452,0.039512108466637476,-0.001465420980793801,7.793473755995302e-05,0.007509084605764127,-0.019332021944656712,0.02330061307395847,-0.01937785151352743,0.002062467544668222,0.02927944528115356,0.007417787244631174,0.024665158581673712,-0.0014533285964258794,0.00011915341590943981,0.029166748529829842,-0.013553969981691713,0.03568338383249384,-0.00652790378433995,0.00015397877635331506,0.023244760680363023,-0.018385521963408247,0.06822418512627589,0.0046546141733836725,6.577358773591325e-05,0.0025847295633325547,-0.06563490028882539,0.2007015112330302,-0.02685968016386091,0.0030995756833720493,0.021211577460879955,0.009864491549386779,0.043466978293271154,-0.004471753372121059,0.00011289009162919921,0.03227984568177597,-0.01390035730318468,0.0806782406580286,0.0012447975577853762,0.00012494829352082825,0.008637721884505921,-0.019389416400065366,0.11157988801296584,0.0272196681162688,8.219161518104143e-05,0.0010958611960832933,-0.02214593812652542,0.09684556135306274,0.00459956926676968,5.747272064622121e-05,0.016713583724277243,0.10840810092409946,0.23153642419254775,0.1602247934431256,0.00022828207360661907,0.0037134444281260036,0.002745579563920536,0.010316963637070293,1.7423519686802244e-05,6.617539002880485e-05,0.008744289179124173,0.011266447804022254,0.1544949280819321,-0.014193427525029664,1.881499329755109e-05,0.0034178118132694307,0.011138882351326054,0.03750297909600991,0.01472340356951442,0.00010382090581400226,0.00513051705102592,-0.006623971779527809,0.025047590253839278,-0.058160826048606035,0.00041685066079097117,0.00029032063197541313,-0.002141863498690735,0.010290933333804115,-0.003562611404766297,0.00011920893853298347,0.003769980005672768,0.002982079727092044 +2020-04-29,-0.000787842035032154,0.005159308391937913,-0.009350333685695978,0.0001614857647395634,0.002431165526285649,0.011076235668637684,0.042228348377653505,0.0036025232340329925,6.293592483197118e-05,0.020029272961094247,0.02421009203306347,0.08956138819303974,0.0034528281922795168,0.00012504687082325462,0.014329391722403897,0.013066536719866071,0.011809306805714128,-0.024911803831590293,0.0003734254765101451,0.0012775234408415035,0.013005237072119964,0.029160609853611612,0.021917147418357156,0.00023335625328881857,0.005712021214327171,-0.016205991989611118,0.0457838530429467,0.027526448189090117,7.728763548451548e-05,0.012257316168102224,-0.01485898652528261,0.05584325111237742,-0.03523675633988224,7.807434505365542e-05,0.003466992842980286,-0.024024778072858244,0.17786084674956787,0.017584977793022906,4.632096981130084e-05,0.01175969414859549,-0.02326638657130526,0.02075449844919787,0.04379071489547005,0.0008644930049408313,0.012199291300090882,0.009554337978604914,0.02202350321264991,-0.02851964398934311,0.0001516966829445469,0.026280172767561494,-0.010991210049213855,0.009382419099901956,0.004263078450342082,0.0005726048701157472,0.012347267040495059,0.012569000936213486,0.1432880318679769,-0.0033944424971232372,2.6140484367659558e-05,0.00044638886397770777,0.007749705855757341,0.017315297259687303,-0.05237714854426033,0.0001329554992413257,0.015789808470796633,0.0007935672813826559,0.004484574695508322,-0.002124905416832743,4.981089095411844e-05,0.004880310436529789,-0.006115565618120855,0.00572930650990094,-0.07324876182559487,0.002081888882081701,0.02383798049666102,0.00969315387689142,0.06562878818810097,0.0006952591421925124,0.0001215410068288411,0.0017358671486710092,0.026661625004396665,0.1516912344818285,0.016366096825395547,0.0002721663079885667,0.014572629771430787,-0.007076029810384969,0.04307343213086908,-0.03026024313022384,4.627443573617964e-05,0.012672975601827811,-0.01750730780142981,0.10502743076065672,-0.0244130751188197,0.0002747283216922438,0.007356072716712431,-0.033606349935269966,0.42146726016039643,-0.05690128912710467,3.3089311637045875e-05,0.02106447931984764,-0.004666224312407111,0.048986781429208696,-0.011075598995871993,3.182500021133523e-05,0.0014800508928292017,-0.011991951906696007,0.03227755430363372,0.00891244511597169,0.00011967736360701532,0.02055593441586124,-0.03265670314579978,0.19282791336105667,-0.01619304770421743,3.911963669933329e-05,0.020680099892627007,0.02179140801963219,0.05603411391677048,0.03621301524962954,8.622042634812222e-05,0.011815251480033241,-0.01460197710072699,0.05293683442275531,0.11487801532664606,0.00012612532296576266,0.00016843937300041424,-0.016039545335517342,0.01461329557822715,-0.0007625899814661153,0.0006273637863601261,0.020241643546111465,-0.03403810405673441,0.11662490967711814,0.06005807434546396,0.00012284572571968005,0.0015231986326166942,0.022878648438121325,0.06559741424073347,-0.0337835301310452,0.00223852948491343,0.01777131171840997,-0.01839191882972996,0.14601981162683222,0.006866395112528768,3.2388993548594975e-05,0.00189605277773351,0.052009042716037256,0.15491984478012186,0.11996907019575706,0.0010975974181217966,0.01600443365310003,-0.035341189181239005,0.23441491709929324,0.07994851239317338,0.00010039718993514516,0.0033333567900233124,0.01946282116652969,0.02919943589056994,0.00997971887760764,0.00015731738440983282,0.01081602507611706,-0.01616453255953031,0.01951894401769725,-0.006750497649186127,0.0004753469872420545,0.00903756220056742,-0.039108174204113624,0.14319731695619045,0.0297118098258125,0.0021168154732050773,0.007813362032540828,-0.008362974063046874,0.02955938252450037,-0.05155535384098959,9.077280638923832e-05,0.007451073770103865,0.025726062031060884,0.03255821562405302,-0.007483147358201621,0.001964219007005608,0.019383440451365995,-0.027367448977692894,0.09116190443548002,0.022261781714680615,0.0001189424730970718,0.009733198090134102,-0.016188137773358813,0.03963983581612203,-0.037970896432710316,0.00016554856515847675,0.002802989502968787,0.012916479774296066,0.05382365634032074,-0.005390533945138051,5.8571304455057104e-05,0.0005806041713839617,0.02452334396835419,0.08353248217369769,0.046485596630333796,0.002782546052969175,0.0225704586661917,0.019043953704485445,0.11646048349730696,-0.2192082644210735,8.134279648772882e-05,0.013367627951825316,-0.028061291951067466,0.18494683905097545,0.021043751043334374,0.00011003264010531728,0.005132370373616638,-0.01310170772613024,0.07055676993771673,0.011754612533376995,8.782899533121807e-05,0.00881516193696079,-0.08022210826488924,0.39672421061754326,0.1774696468680604,5.08221181419533e-05,0.018297386069330738,-0.0018979753215127367,0.004085256683038082,-0.0007415671399324741,0.0002265168982776984,0.0022389251289524873,-0.023662977941157293,0.10698523421290353,0.05361388289806353,5.499965091021328e-05,0.012085255060821386,0.027777118459337977,0.32824736828758183,-0.007517572078992607,2.1833191477654254e-05,0.017562976011552746,0.024403115351219674,0.06424459537958196,0.017898392861680473,0.00013277540631785617,0.011678495012145726,0.008907310472766404,0.04028233488519509,-0.043667186564212916,0.0003485458576160083,0.004751999951485142,0.020052327354796406,0.11388921307796299,0.010623004196265206,0.00010084491161422464,0.005303702585991644,-0.003223819502593022 +2020-04-30,0.006751683634855288,0.04578774022717959,-0.04622098596355352,0.00015593710167875153,0.010840038274841746,-0.023496295849431203,0.08473912491862316,-0.06431889592450328,6.653129144291295e-05,0.0029888870122567355,0.013382211569558081,0.053791030641853914,-0.00013983064237818723,0.00011508407482003118,0.0017883082935248535,0.006308734075597704,0.00679661020908265,-0.11620497068853855,0.0003132692117473921,0.013610439254808215,0.02908683336698522,0.06671586382347369,0.06743625773765202,0.00022812091331834161,0.019255646582068367,0.005078890583871225,0.012990009380933242,-0.06302008693163055,8.537016718050284e-05,0.0025071198643055103,-0.06158992605994857,0.2926650579825128,-0.04083443366748834,6.174882015794413e-05,0.005635760903642239,0.03267928243687761,0.2715579639342077,-0.023125616116156433,4.126754015401021e-05,0.006843182435611097,0.020351505083947317,0.017773669259571228,0.03864680911540166,0.0008830071597610131,0.0011789049075436758,0.041062046968037634,0.10888669896555304,-0.0994900947806937,0.00013186442640253146,0.015654776277445073,-0.014118246125079765,0.011442269667359756,0.00855108374444106,0.0006031049988352865,0.011310593545478724,0.0019162846750149611,0.021923939347191976,-0.01321161504199563,2.6047390678304953e-05,0.010734005316128508,-0.01560251814280995,0.04589505973822272,-0.04203947830069568,0.00010099033077097933,0.0048529684708752815,0.0032692043614893852,0.013880484607542078,0.00046384352240368885,6.629782166789151e-05,0.0073653713137344775,0.0023806128532079026,0.0015989489251436969,-0.006353578856119737,0.0029038699011230224,0.009170191464950078,0.017486647318142163,0.11843143477189148,-0.023601855188701056,0.00012150430568419675,0.011561116987536962,-0.038253977648408835,0.23385369112489163,0.03389229938608729,0.00025330315697494863,0.004850767447542529,-0.07260397383392264,0.46415249097974154,0.11572657832618381,4.406164043027751e-05,0.02674170148270202,0.04192701765454229,0.286242167266934,0.044943374668176016,0.0002414055037845217,0.02459251101892921,-0.02267878801136074,0.3828720900608722,-0.015043926241489787,2.4580819837083616e-05,0.04465557801804515,0.00254283359376488,0.02733060000871182,-0.020371974761854518,3.108497219383953e-05,0.0032462793146966675,-0.006363038436762147,0.014861673066290193,0.004063725950727403,0.00013791757081880218,0.01373069959974873,0.07235911248269551,0.5089382587356989,0.08244000698767752,3.28413126940755e-05,0.013601125127503898,0.018904771984293967,0.05189816811676793,0.027103810684476887,8.076009057398961e-05,0.011431899535703102,-0.006016178773731853,0.023393017545307194,0.0177482977112582,0.0001175934364775209,0.0028659443405031773,-0.005812545646900282,0.0056834303953541155,-0.025738069563830773,0.0005845630930648985,0.008551653783734212,-0.010452135791704488,0.04660314297467963,-0.017198819499060537,9.440083708893501e-05,0.008615944208838166,-0.008636093329559738,0.029900259069763825,0.0005387712371726912,0.0018537943342686292,0.017166107777127414,-0.007391602419318978,0.07714078281041727,-0.0005317710301135817,2.4639775840654233e-05,0.010745316571153492,0.03604429654104237,0.11041461135096253,0.04508115096683039,0.0010672871379089788,0.010288332725436274,-0.03049647621782711,0.2689323870815622,0.03018004766701029,7.551482099285696e-05,0.002086164522199073,0.003038452708407943,0.004095137812426127,-0.0009211848647841313,0.00017511741831308884,0.001116026448546176,-0.023399691763852547,0.030739695191715658,0.02421133063322517,0.00043693264481559844,0.026282813581312174,0.04205832986579124,0.1543421801556782,0.07575256830901661,0.0021121158393611773,0.010737262953517323,0.0018431901662660426,0.007379020606511561,-0.01740557365409508,8.014229813671884e-05,0.004473048958400583,0.02867882958740947,0.03623515976303758,0.0010782932892557306,0.001967471430258149,0.004402551122675741,0.008811408142032302,0.029273957496801496,-0.08449249986907532,0.00011925591164032961,0.014127713069273474,-0.029530167714025536,0.07355574406579629,0.029189757451315194,0.0001627457651824582,0.010951285706880299,-0.029709701509217826,0.14439430228135972,-0.0013681973805952667,5.021831736594583e-05,0.007785173297437864,-0.021189234675721366,0.06566708178519426,-0.046628861784054544,0.003058338923249547,0.0033143458554886983,0.00023581043371294583,0.001019466149043658,-0.016501011012443532,0.0001150616977965813,0.006982793382904787,0.01959467592189221,0.08718495984771184,0.029451854472027778,0.00016298862559049808,0.014973343584232935,0.008316937264880597,0.05844976080007136,0.0015216333672191515,6.730221941558989e-05,0.002759719240273928,-0.0014183091202577337,0.006968638116462417,-0.015731394128759638,5.115291393519751e-05,0.011336407635718825,-0.04396873370063396,0.07713738290717458,0.018632421453645725,0.0002779127374267567,0.00345401570300577,0.0032636855551293914,0.01213115354821879,-0.03747280801914873,6.689914778671235e-05,0.007174856161307293,0.05945465452474814,0.718071538192987,0.09149593457371011,2.136236996667139e-05,0.011280924522998528,-0.007585427883108858,0.022846937377032736,-0.0026405188708627267,0.00011605425205422444,0.005644632819681602,0.005627987187361994,0.023019618452948053,0.012710029800055618,0.0003853744784568298,0.0064482291384049635,0.0433495792384857,0.24671841090759053,-0.05427771509315323,0.00010063640710990115,0.004316144932835077,0.002016097827698439 +2020-05-01,-0.02305778892734537,0.15254629961566724,0.025450899028379194,0.00015984629189643535,0.008913466741318005,0.059696187794133736,0.2043318982850844,0.14204176530584608,7.010047403834556e-05,0.013311365564154624,-0.06533065452433724,0.2211475450351798,-0.005912938332845647,0.00013665706564234585,0.013702349009573225,0.005384367479634635,0.004717247997470188,-0.027426803798706587,0.0003852244467087917,0.0023124303373510636,-0.0182124483874254,0.039882968335145236,0.007281382754265685,0.00023893437352671943,0.00013670968226950326,0.005220342980810088,0.014920576849000108,-0.011631542000843655,7.639416061245739e-05,0.0005636751206579917,0.0038599379427004497,0.014893889760298946,0.0033820935723410097,7.604349037439405e-05,0.006967774035781849,0.019365267666462682,0.1571292824942302,0.013356092772777588,4.2263454409810885e-05,0.015913927708677344,-0.002921487720913105,0.0030120042199090072,-0.14119425191973234,0.0007479856670063429,0.0029951680920089823,-0.02810774262628591,0.069632104075147,0.009144185295967637,0.00014114917240774932,0.03413993346416287,0.03831942065196329,0.02341213402002221,0.19609391011181085,0.0008000226653782507,0.002914407097548525,0.023331581261952658,0.31902354046606757,0.06234916910287007,2.179436562532923e-05,0.01001367662901601,0.05614346467410354,0.166696377609942,0.1126923516522019,0.00010005161085226788,0.004633793899282444,-0.0037796069231458155,0.02127268127981195,0.002780450126576087,5.001338171342083e-05,0.0028392335657230466,-0.02284589977633271,0.018212499540563306,-0.0283029294704675,0.0024465927586427546,0.012617465040468984,0.02730571986648226,0.17993085805514206,0.01938026878547776,0.00012488206952323443,0.042535427781089825,-0.0399643131078862,0.2547661882274263,-0.02405185995294311,0.0002429063093595603,0.00393245955449125,0.01552545386621936,0.09167306486248578,-0.018045541600091343,4.7704957129064965e-05,0.013943564269205625,0.018955197232285722,0.1049307694492517,-0.03126451572019907,0.0002977229116524235,0.014712009212577256,0.028841526220143274,0.3414390199349028,-0.057054365504960916,3.505381727869041e-05,0.014903564995549939,-0.0005876979529401472,0.007097885664528503,-0.005653177580750215,2.7663484799947422e-05,0.0026241737800162704,0.018534833270044068,0.055430003107966995,-0.004137207960122971,0.00010771260679728503,0.0004075079968209102,0.00016867201906007942,0.00110542275910358,-0.03084622618538994,3.5245771216236366e-05,0.005237297127621865,-0.0080758616594397,0.026567996221503933,0.006282332636455344,6.739186144726125e-05,0.012308850094604824,-0.0053081134145245915,0.01799479350052641,0.0018137291667880307,0.00013487824980991554,0.006773489446372844,0.04831518970300685,0.05047891668482508,0.09501173830121463,0.000547077967051637,0.010186179974179078,0.011742336815287113,0.04807600842692761,0.011412636640071026,0.00010280450348218064,0.007750234237162109,-0.01142740110855999,0.03753198254561456,-0.009908292056646067,0.0019541825938554232,0.013250889129503026,-0.044380940819486174,0.3640845214539187,0.04453805278300288,3.134559253642466e-05,0.0017444703288081874,0.03297593267990371,0.08662253874522742,0.022362080164223277,0.0012446219321698892,0.011297029518432946,-0.024503953760110334,0.19973667474638243,0.015196275238469852,8.16966017726846e-05,0.021345765842646896,0.029206274136470783,0.0455035319460271,0.02558914560933563,0.00015148737356738924,0.002337623448461993,0.04499696528150914,0.06558692605366329,0.05769255062195063,0.0003937946955170684,0.014233089140285189,-0.036618549577263924,0.14536182458199495,0.017947455460131663,0.0019525452793440086,0.003077433476786518,-0.02180711163921741,0.08348482232893205,0.013980678340333034,8.380713418855257e-05,0.005981661139356291,-0.05961126462212038,0.08271050347168338,0.06218139773518577,0.0017916157127208466,0.005885905825421439,0.0007973129558953634,0.002487992493954628,-0.01560966447738564,0.00012696844241274466,0.010650862642862814,0.02110775717417488,0.05577906284885299,0.005277496213642859,0.0001534020813401166,0.022185229361580405,-0.015344814067745747,0.06159454996649239,-0.0292678719992713,6.080415662867734e-05,0.00453053189012609,0.03445163564401796,0.09681336187817692,0.017893882319639762,0.00337281563228823,7.999649181909536e-05,-0.015802667918081863,0.08353430080646684,-0.05949025389049914,9.410357934358743e-05,0.0014027358533187555,-0.020944178857627317,0.13568124056015918,-0.0024374464013566344,0.00011194490100139978,0.00589810784048519,0.02271357568362977,0.1296197688114736,-0.05548258774042259,8.288252334138168e-05,0.008826230823251865,-0.04240153285476828,0.17306915641683926,0.01719140675909343,6.157568829571456e-05,0.012908661948813818,0.08576610708600443,0.1477875816624839,0.06064744694774973,0.00028294833940713417,0.01778037442231759,0.029079959551192816,0.10301175696229475,0.07835397061518456,7.019745699298879e-05,0.01866281187921657,0.00409026736061236,0.04293302150203752,-0.00218458800773537,2.458054614937455e-05,0.0230770074836689,0.0009101732084726663,0.0027847239738457885,-0.018386330916427746,0.00011424859251001908,0.005882671875989428,0.0005997088490915026,0.00269875193937503,0.002562067485016103,0.0003502720310799157,0.01281069397280038,0.010496465740612162,0.04394348137379447,-0.21538087748107274,0.0001368108144039951,0.006809115150084135,0.004625910762136693 +2020-05-04,0.017070403441131463,0.12803861671366432,0.03311456817181035,0.00014099035229706805,0.0004465212121190509,-0.016660862504852846,0.05723245767442504,0.003353112245292323,6.984987144612082e-05,0.001779484739449016,0.01990526341831374,0.0753010444926476,0.003936562362425027,0.00012228245055184904,0.0241939233222561,0.0248250653780325,0.025370269025375432,-0.020356625993149687,0.00033024266835966087,0.007695621444612204,0.02320720480046549,0.04829276683796355,0.03931225150013112,0.00025144240328504544,0.009387762029609163,-0.025230023257132566,0.0659253186256683,0.14716106755077252,8.356264018862868e-05,0.011958571677371467,-0.022043591991468527,0.07174970679066778,-0.014736051667948908,9.014716816147394e-05,0.0008194135293655698,0.0043926745289660065,0.041712678367980996,0.0005457941282674281,3.6112667028119536e-05,0.01991065250224359,-0.008366310333123076,0.0061213752682154395,-0.01821751142325664,0.001053973646634834,0.0005661324541228492,-0.0010777797787349678,0.0029353708174448823,-0.007488990761557286,0.00012838933375982573,0.01333170173887655,-0.013481126965147286,0.008927404639273736,-0.008522317300747815,0.0007381172198806464,0.005692284942804441,0.04114067818700782,0.7145506355041582,0.16191491267176902,1.715778518600467e-05,0.02342934516184374,-0.035561444846944665,0.10143606804823273,0.060153421058195544,0.00010414490528860932,0.02634990616265677,-0.0070335114688466795,0.04092731225377108,-0.08070992822498267,4.837497942934726e-05,0.0030910038356242032,-0.006465433151631344,0.005327234226778373,0.0010421752896560795,0.002367111994894511,0.026587741220605587,0.0054865906676693,0.03578887024920842,0.0013295092797548395,0.00012615564228873904,0.03228697563749495,-0.020633245182892217,0.1106631246790574,-0.010520971277038986,0.0002887173228454235,0.0063903656152848615,0.008795536075777684,0.059113594169068334,-0.12438377942145985,4.191176057773048e-05,0.0009912014272621978,-0.029031961843732395,0.15133688814999266,-0.001868373033161853,0.00031616834963834684,0.016323892448432215,-0.02846425331725845,0.38152241760491984,-0.001698252946612389,3.0960642566273067e-05,0.06285941796667117,0.0069194826017621724,0.06924883717503377,-0.029755945317031046,3.3384343909642766e-05,0.009124625505063788,0.011394742412155944,0.029121972074856277,-0.10649117315742393,0.00012603944633864447,0.011804581557786718,0.006908432913333139,0.048666510076264796,-0.038649373140474876,3.2790022675714485e-05,0.03962372430658187,-0.00354149606449141,0.01145820740875045,-0.0012081121421120072,6.852475106728523e-05,0.005739720619871708,-0.0019583900604495806,0.008193136246304746,-0.04523224574789994,0.00010929432568145151,0.001809049126182703,-0.005591269193433095,0.005511767087390668,-0.04804094435565639,0.0005798225562079399,0.025723419625320938,-0.01000578645038622,0.03141739187097092,-0.00781310607438006,0.00013405008993645594,0.008382501457632795,0.019399527080351704,0.07060122230844078,-4.0255767607297515e-05,0.0017635919084702577,0.02311526796002747,-0.008955267349157048,0.08143327411463049,-0.006107315441809273,2.8278661840464672e-05,0.000350284012798316,0.04220332819818018,0.12577187282438712,0.0394672462280776,0.00109707026250402,0.0004813893817447565,-0.005075135711463692,0.041592693292983214,-0.1082961801176137,8.125615345750222e-05,0.003941338213064321,0.022059127397775703,0.03246660976122178,-0.07927676650719806,0.00016036026829917356,0.0065961458029871215,-0.02627421707480537,0.033707836623417385,-0.01905534868454251,0.0004474070438227369,0.02562912502065929,0.0030015127169708386,0.012161496053720596,-0.04464772313085426,0.0019129495900894375,0.017727483405563158,-0.019085586210669525,0.0773665405427585,0.007364257835248504,7.914850141956053e-05,0.00426956122635881,0.0020651963278444283,0.002998039024808634,-0.0018374152148475588,0.0017123843667954364,0.022738717856104432,0.0022040497904386863,0.007813712408556425,-0.024265477454235275,0.00011175835872945437,0.0033890074209666143,0.0213417871181616,0.05778354614699788,-0.0022682148033550545,0.00014972246508751697,0.0061816800672442745,-0.0593474516285825,0.23855232477233532,0.10989317661241842,6.072008165484867e-05,0.0007811701549808407,-0.02017701128705286,0.06123044484705859,-0.0028675134719806767,0.003123255261300604,0.003887491505281372,0.011284985826124944,0.06403643980018196,0.004827401004950997,8.766261264521103e-05,0.01779595995251784,0.00929630201432964,0.05457671573423678,0.0014602815672327633,0.00012352748839794374,0.007051447036549896,0.024427768376306568,0.12157374359726374,0.027677845990460408,9.503699637201559e-05,0.013933772593841761,0.020456286181886975,0.08358628327597101,0.03977757156678708,6.150907150093658e-05,0.012549224070685913,0.015289498623026004,0.027357612693322174,-0.029397857464664823,0.00027248615540915306,0.056075341712635486,0.0006679174215280372,0.0031363713160745457,-0.057465745014471846,5.295532942247609e-05,0.0025282566577996797,-0.017343210020936473,0.2081995652990877,-0.006948619089725028,2.149220381180216e-05,0.006999144172336191,-0.009490280703826626,0.028903160391543902,-0.0748141511169888,0.00011477378125250753,0.002219430026447964,0.024765302504051123,0.11044120366263852,0.0892997414215527,0.00035346016583046453,0.003874286868320743,-0.023584759028148085,0.10679712975539557,0.035306205110438395,0.0001264863494233774,0.005694792677943163,-0.0011313839666898069 +2020-05-05,0.0017509502407358404,0.011058784669523732,-0.0467971340502068,0.00016743759848581225,0.003411561070783552,0.044874890266791936,0.12580666003597193,0.0008310707711918602,8.55874906632604e-05,0.02304534549336123,-0.0035544374467890534,0.011864303292101775,-0.0006080896847711737,0.0001385880678236868,0.03294003020281968,-0.027924760559640705,0.027857321141806887,0.022730610440244988,0.0003383124369150974,3.858499559442237e-06,-0.030372379178719343,0.06492682042436185,0.009493377983812154,0.0002447667662353852,0.012956427017687195,-0.009237894426950955,0.029683979011058906,0.00223502131717713,6.795127635926296e-05,0.0005020941107411245,-0.020212219035266085,0.07841588266111979,0.002073768476706751,7.563099531973384e-05,0.002765164682890101,0.021767036652752335,0.21569457992402954,0.018789366023387315,3.460658069812545e-05,0.003699306680564682,0.0016631951186379095,0.0013495798102055726,-0.0070110058785771805,0.0009503627723568487,0.0017286802163757867,-0.004237076395810825,0.009807079233797367,-0.04151697765024471,0.00015107357165375178,0.0010523931176351217,-0.023047646587997066,0.016412436063084915,0.027538678877113285,0.0006864009831104553,0.0035676574786592556,-0.0017720524802930986,0.021934138993862134,-0.0066846905710449345,2.4075691947603194e-05,0.006586425114905436,-0.04869023395692388,0.15638531844546819,0.07770274082101442,9.249045595374507e-05,0.012118729630108786,0.005659367297026113,0.032973808464743674,0.0014134182152405277,4.831261981232929e-05,0.003547361594966564,0.058338666762914645,0.05500333653804139,0.07886207201381015,0.00206866629016607,0.03067263889632808,0.053135919866744756,0.37552878872848894,0.026507862778759567,0.00011643862670017506,0.0003008068867673794,-0.061806784568783066,0.3746554894715605,0.07695506770523915,0.00025545374982937307,0.0028036356681673037,0.03538751000648083,0.19482513194492318,0.0009509130415259183,5.116417575677047e-05,0.015680070673206262,-0.050382979397542015,0.2733925305684051,0.004402100393520914,0.0003037274251734412,0.015345975297663676,-0.06898500632907609,1.0006177126707254,0.06286176489976743,2.8609927242521995e-05,0.04636926604306133,0.024683888415584332,0.2734180227591762,0.10671120163957382,3.0162556277642538e-05,0.007664196984897394,0.010300744695728285,0.023905374217393596,-0.02236829413415536,0.00013880203471371095,0.003346357865948048,0.006970600422205211,0.05432502125341721,-0.009139565357350742,2.9638939445015815e-05,0.004694945380092181,0.014900645305820739,0.053782264264936985,0.01543820270228283,6.142474707578551e-05,0.0028525159740006327,-0.003745463599284392,0.01533336746406938,-0.009101817877869782,0.00011169060222761234,0.0037701900443609113,0.0017688214316941117,0.0018001143681577036,-0.05476924942426395,0.0005616418415710971,0.026998277327008564,-0.0032690605600353083,0.011539102766066928,-0.0047373780567660125,0.00011924410930790389,0.011340164792544127,-0.032720792505026824,0.11366004796455396,-0.01918086513704895,0.0018477157192858173,0.0048190903614751725,-0.029145995200774582,0.3054882135532179,0.01270212483849202,2.4533901964286988e-05,0.015586347170479664,-0.059022463845206166,0.1388736234120427,0.0666287650265192,0.0013895329113205602,0.004495651085208782,-0.005475266459199156,0.04653346151693521,-0.007390139130086991,7.835478851032302e-05,0.006975674580557488,-0.021761191278614755,0.032194452964419494,0.0430071557410643,0.00015953170344633398,0.00811584714146827,0.014695225840072846,0.021519088738664167,0.0010511866733578378,0.00039197313475382826,0.007777410368873621,0.015805425585209337,0.052970358946392626,0.01806224064284822,0.002312723001005132,0.010995033740200957,-0.006075293874104232,0.02759411429216483,-0.0002951025475818946,7.063845667560106e-05,0.00849008757968586,0.02349268558116117,0.032356952787269105,0.010681856209039718,0.0018048546921447363,0.026793890029610027,0.02540559556924816,0.09335244456854012,0.023632647654528945,0.00010782506328951879,0.011433800879877524,0.0006377324182325793,0.0015670281452929158,-0.05079335182483723,0.00016497649535552106,0.01160515199666641,-0.012187079368403995,0.046081637986227934,-0.010447814297199761,6.45484260213373e-05,0.0228439360268046,0.02873878308593687,0.08412726548636318,0.007395989639042959,0.0032377973237995967,0.009251423513736041,0.0005126547648937572,0.002295047702717432,-0.001787735440854413,0.0001111152971970872,0.025294455218833847,-0.02315012520974992,0.13772807329089867,0.006469417966145209,0.00012189661806620224,0.015286872710823417,-0.011120629510719788,0.06221137995341478,0.010796005981079191,8.454895343017349e-05,0.0018063542878008795,-0.01162372422463375,0.049210259919050515,-0.0021309349995729085,5.9365896923164156e-05,0.015171132209320773,-0.0009572036015257089,0.0017175652893822383,-0.011563842347054966,0.0002717192851120902,0.006565396404945479,0.00986371669976521,0.041773091831745254,0.004983458195095726,5.871625465417516e-05,0.0094107246196889,-0.026438742041238507,0.2909949407409142,-0.025207079773879728,2.344156672898398e-05,0.010083297600810455,0.013621420939533625,0.041597566737261574,0.033365763820207645,0.00011446255909282419,0.009784920060444124,-0.0021289054028347004,0.009279562717511677,-0.03473619931944418,0.00036162364860775745,0.004395695338737006,-0.032797908437612405,0.14831028724519738,0.055629897378961596,0.00012666209559777523,0.004155028003402836,-0.004227215479160407 +2020-05-06,-0.043538080001640944,0.3348316565802372,0.10324893040444148,0.0001375084369289589,0.005123105971732948,-0.005401846034739793,0.01777914867217325,-0.05976010946012124,7.29023900564652e-05,0.021693740995784992,-0.010286528991342093,0.030676672771976343,-0.16296641237401308,0.0001551164315284324,0.022287832640939607,-0.013824615749240975,0.015191621099439289,0.015057245480155522,0.0003071261569109103,0.0031887041375892157,0.003301918150790826,0.007767253857741498,-0.052153235275415134,0.0002224316464042798,0.011433946736620711,0.026326916809475416,0.05987954925816954,0.0018679280453365883,9.599933361903276e-05,0.007262337481656291,0.051392540622119225,0.21130471599883732,0.10981657133219237,7.136425774521362e-05,0.010577119903302595,0.0057859454759346535,0.05632783323526399,-0.027865212165408524,3.522491109816442e-05,0.008899085407075218,-0.015218696607117341,0.012820012625996802,0.01545252226145336,0.000915448237673195,0.009896581209377323,-0.014736391791594423,0.033177441645665204,-0.002686608695077682,0.0001553138380216898,0.006992134441788948,-0.015153580655166747,0.010599561857657203,-0.08185688742126142,0.0006987980902383298,0.0009605227211251493,-0.003082367409252373,0.03626665925860635,-0.05769354745900295,2.5327926755297717e-05,0.0010962216092475464,-0.0036010124669135753,0.009873160449254285,-0.024821716061769254,0.00010834764296999231,0.0011423932523729587,-0.008659579629472034,0.05523307728662715,0.016712254229518626,4.413258720612469e-05,0.009521562030111175,0.04311591860407073,0.03272252095534076,-0.12197813296204885,0.002569886017567254,0.015637723251623496,0.0575204566538467,0.3217679599796467,0.04688859454401342,0.000147106423174865,0.006241135198005252,0.06726366867839992,0.3972193952599183,0.14298085811881428,0.0002622154860226171,0.032881718769905234,0.03632237246598211,0.22623689892290252,0.02561447706556111,4.522428656294001e-05,0.0006983907874635959,-0.02897122668320494,0.11738459874699142,0.013019928801384575,0.0004067640585628069,0.013859601733360417,0.04753656256535817,0.6366994831334943,0.01733588857634194,3.09830029273196e-05,0.008836260847023648,-0.004613748512722263,0.04714958642717201,-0.002271527455379831,3.269322321144955e-05,0.002515151644102017,-0.0023357156686167565,0.005265549595942343,0.004828972970255109,0.00014288907414201023,0.01683338526497786,0.01897231620163262,0.13699109027494596,-0.14703160923271402,3.199045434258517e-05,0.021427635130765704,-0.03455682057695729,0.10118490616891973,0.1264644298176589,7.571735370350635e-05,0.0136946840325858,-0.0011447606924006948,0.004170998259142211,0.0002802071350931317,0.00012549409635143695,0.0029971515303020904,-0.02633210311777641,0.026447984512021617,-0.018373724782750747,0.0005690737152882917,0.033882202595673955,-0.02523673032204961,0.08618299166746654,0.02878321705470354,0.0001232530089187942,0.009518001834523778,-0.0046119139410665715,0.017295463605421287,0.002835188223015565,0.001711465549777499,0.001446465283706714,0.03446292136658476,0.3325096510633585,0.03368688079278326,2.6652013785140847e-05,0.0170843928210224,-0.07357576519139696,0.20015972396857612,0.09959313450911517,0.0012017921525041626,0.0022095759913512997,0.01051504518041496,0.09595683590132006,-0.021840000360536703,7.297277591197693e-05,0.0008290268323636683,0.02646272568711349,0.04243193900539325,0.02315595302701862,0.00014719297497929552,0.0017002276981775352,-0.01824750917231207,0.026932632202577245,-0.015229773841783716,0.00038889172676364366,0.009755189727824796,0.003283938176644535,0.013853246945300185,-0.03347006433723578,0.001837357801468091,0.0074793078319012616,-0.02417540457576456,0.08702604898315631,-0.006755247284489949,8.912814224115095e-05,0.005911636144574562,0.0031856801473512174,0.00446221377754425,-0.11194961918904078,0.0017747165041160657,0.012754258834583865,0.03662172470707251,0.1257724329556571,0.04979807710930273,0.00011536375089472585,0.002502537376991726,-0.014272532218037988,0.03509880204119086,-0.0010398796461725415,0.0001648424703653545,0.01138617682074671,-0.054548050409210104,0.21216650145570168,0.052665498375076635,6.275037754013459e-05,0.005106953963755465,-0.023202923931670075,0.08654197294089543,-0.052279566800544144,0.0025411715376953657,0.01342725260486758,-0.008432322759202025,0.04873618256809936,-0.0021842727762054247,8.606692437027919e-05,0.000510174341376185,0.007480039587836242,0.03716154251157819,-0.13553542776901928,0.00014597246713076963,0.005440302681578406,0.050933911607166676,0.2977305722271413,0.13756250280225937,8.091560709058958e-05,0.019378539651631256,0.025689761945484953,0.1561077882373934,0.04495502630248385,4.13602260969351e-05,0.010955039386833888,0.008839308176343166,0.017258771141393313,-0.15045977322723658,0.00024971107239773576,0.013702580332190913,0.032442775539862884,0.12208784577605018,0.019755913638164375,6.607846518151965e-05,0.0012885585774032753,0.0007795315530643444,0.008511257252853552,-0.07548157337626356,2.3630410547435504e-05,0.009962153369906567,-0.016737479844249573,0.06323908303622704,0.022200222346485752,9.251527998959129e-05,0.011250504751468954,0.011717650843888507,0.05689897599545776,0.019475590646045506,0.00032461162848466577,0.0076372172877989045,0.005238141780238447,0.03009307239955372,-0.05017579728880109,9.969709760560779e-05,0.008835600160858369,0.0018191234726985437 +2020-05-07,-0.04508200594423919,0.28535470664868334,0.07133147395612116,0.00016707242474861252,0.01669841966799835,0.023295697429440626,0.09221639351492156,-0.0852587068992602,6.061472094259966e-05,0.02126569522369172,-0.003803814664745421,0.010535486135606717,-0.002228767055596093,0.00016701749782320864,0.006541575626175333,0.0007204341461206656,0.000656827412730211,-0.025377236505073012,0.0003701782305978019,0.0023883196955250137,-0.005718794468951717,0.01139217333814349,-0.0001940124260864041,0.0002626610502151827,0.008443674015034404,0.009178936671924825,0.025680033775611986,0.010725183021813762,7.804471926737666e-05,0.002315316839140683,-0.05747175045837057,0.18460680671262308,0.05139305464092801,9.134747981845892e-05,0.005006018718719809,0.00012247317502583674,0.0011602635951716246,-0.0036860032909555064,3.619786244560191e-05,5.553602070344755e-05,-0.0034679757082922602,0.0030849892211535206,-0.011893375310127683,0.0008668963660492825,0.0019745480869708186,0.006282615406938624,0.014544115222435908,-0.013877480964745389,0.00015104802631882034,0.02779527911947995,0.0015864460419317817,0.001078869799300259,0.005568625397918378,0.0007187545842350944,0.001889939486163146,-0.004025565190740315,0.04978526298730186,-0.0378440388036864,2.4096216017792393e-05,0.00874925503814934,-0.06388639285008557,0.15600157215615418,0.06028128042665902,0.00012165513092667393,0.01281098701390035,-0.024819303526009313,0.1308213973620782,0.09912143350946173,5.340385706781566e-05,0.007329720210541042,0.00663845980854783,0.0058995361389557015,-0.0004673698167301798,0.002194686220808738,0.011235536666142283,0.07436884351108622,0.5062084935147223,0.08656822070421004,0.00012089649440284585,0.017891346968394915,-0.04564830772385827,0.2778612047864134,0.034678966200469015,0.0002543929077830731,0.013234731670677584,0.021018103298838475,0.12776739692352765,-0.007538479111221344,4.633769550520186e-05,0.0030597514765269875,0.04583253730850723,0.2352377958626585,0.08455256957092736,0.0003211098344039517,0.0013561199359163499,-0.05507642866928048,0.7767972552353547,0.025822421093885228,2.9423092721931993e-05,0.026366948729147455,-0.013860843281175697,0.14498500234450912,0.007629080796832181,3.1940983343990764e-05,0.004808640321639114,-0.030894059322756774,0.07897810245984752,0.04072578315815735,0.00012600594532047028,0.005397174005317522,-0.00973031189601299,0.057605898885182034,-0.003378209568565337,3.901684781929156e-05,0.01368156979756451,-0.009572952826169228,0.028250727558710487,-0.04066474278159479,7.51265878376848e-05,0.012445576533299998,0.007235556365107138,0.022309582455598484,0.01200311850244172,0.00014829587965941188,0.00800111911535887,0.05003464676872637,0.0486777148217922,0.08237593046716256,0.0005875112910106894,0.015003592102751805,0.02727577915199858,0.11019787020593266,-0.011405161351389609,0.00010418134823851956,0.0005298857487452246,0.03322903025584727,0.10267003266717499,-0.06760079310409259,0.0020772709212207897,0.033562552124550595,0.0016733088690767878,0.015698810400122977,-0.053625558907453096,2.740889731834046e-05,0.012492280711805113,-0.019247620184525402,0.05971673291226736,-0.0076028860322087995,0.0010537856259087218,0.0004918967644939572,-0.022417959094649373,0.16956249366289394,0.020362953189495134,8.80424097344951e-05,0.0021168230342432258,-0.03180513776630499,0.06128555930705646,0.06597931418375755,0.00012248545320313453,0.003282376202876377,-0.0009698650475358773,0.0012858431784524137,-0.005142714597639153,0.00043293950562130613,0.0011876068314747978,-0.01124516332358118,0.03670094995307478,-0.0032119683535540558,0.0023748643223315364,0.012656932566808153,-0.003178404704347458,0.013891440840894368,-0.005550545517374642,7.340950092243541e-05,0.009741933836146641,0.08424300567348406,0.10880658765848043,0.15632622485337935,0.001924668129507861,0.01985649404145378,0.04773366652768329,0.17282917192014538,0.05815862305238286,0.0001094268209008385,0.010602942250110652,0.0020119224448238954,0.005749277441910617,-0.06481023094378702,0.00014185947389613735,0.013274624026144523,0.024741348815193683,0.10648108792737901,-0.02978459877685471,5.671067513220262e-05,0.0222531703488346,0.04180119140347726,0.12431586934413003,0.030325942403830023,0.003186985933863618,0.0021912700874613263,-0.04113926277256347,0.17974656025881747,-0.006837001481611851,0.00011385090502015348,0.005572976422034203,-0.025064976605592277,0.14984989051211745,-0.039839285523010394,0.00012130303248345538,0.002899519553666257,-0.009733667839995443,0.0574472678595919,0.0038706464026252133,8.014120013118885e-05,0.0020874911632544598,0.010474615830921475,0.048758623889630565,-0.0372827855298532,5.3992577270981214e-05,0.006129296171141749,0.024396896101025897,0.041084964144439955,-0.012456882943930695,0.0002895216588495614,0.005314415118664015,0.0063037599780821985,0.027912368803858296,-0.001983673891693147,5.6158739286736775e-05,0.004224354459117746,-0.025082390355182702,0.23075037713084726,0.032644400505688384,2.8045151371670396e-05,0.0014267785354299513,0.008133873666774212,0.02726626169109611,0.010542821979373918,0.00010427514171100818,0.00671855219029022,-0.03956247899219817,0.14778769162559074,0.1205244625454397,0.00042196186381896145,0.00757033859999044,-0.08663164128920799,0.4541908234437599,0.30966449063307055,0.00010924711653413932,0.022258564165522667,-0.003380950680757242 +2020-05-08,6.022032843278959e-06,3.680369098456288e-05,-0.0006900460922260363,0.00017303674146435435,0.011229152686556769,0.02119593312606614,0.06847724135101028,0.008491694769519737,7.427057924091918e-05,0.010913123712076644,-0.048041664763948416,0.1586794344022517,0.056557380343725476,0.0001400537072191618,0.006834592903038913,-0.012624681752476233,0.01246685122168991,0.017229197177827234,0.0003417680958071691,0.005103331739106901,0.0013199389225616923,0.0027868956061693926,-0.0014169015469563543,0.000247816892613292,0.008779483063142246,0.0066622230263110515,0.016429682335342897,0.004416547940754807,8.853943381410355e-05,2.3018622687128723e-05,-0.053208587151763694,0.2192527090351264,0.005077117471740486,7.120764359779063e-05,0.009384935124421753,-0.014246350547832406,0.12091830683242197,0.0069190738654359325,4.040268091615733e-05,0.0009523206379592321,-0.0317553289377507,0.025548171173712098,0.07857733065640847,0.0009585208960803839,0.0043918156291444885,-0.03048202963714164,0.06822218701178828,0.012029121473483654,0.00015623564685521694,0.01613508375171918,-0.009603885592671835,0.0073577408285888084,-0.009827397241121501,0.0006380090660495834,0.0014760015190366424,0.0014335636914809121,0.01795598537694734,-0.005807357946564987,2.379197743386424e-05,0.012713405129842856,-0.024864000786627198,0.0712502812497435,0.010668173885729208,0.00010366579097540677,0.00522841211019665,-0.01753182206822602,0.09049243027145658,-0.015947557401037836,5.453516366531617e-05,0.002102064376834763,-0.046082263398887525,0.03676406186219788,-0.018130758137431986,0.002444743422339765,0.01386638082333046,0.08013417452251115,0.5000735599012849,0.07671848794789257,0.00013186695637867223,0.0280441258660335,0.041947413643476004,0.2546460728812438,-0.031195794774617983,0.000255080017221712,0.025951025411196864,0.02144637750184815,0.13083707460278776,-0.062026040518486314,4.617257305154737e-05,0.010729595913937283,0.021088087343849007,0.10827074144580838,0.012700439905752835,0.00032100580656741894,0.02947919831902302,-0.0033766266280413834,0.04326789081567736,-0.00011537278136754835,3.2385271861746455e-05,0.009939847096805383,0.01422879397988661,0.13584939062248383,0.0354814440548936,3.4993880598706966e-05,0.007519150169923558,-0.03372950464231942,0.11013918408341135,-0.027975915704180083,9.8648585875983e-05,0.001905108283267389,0.04883858987394698,0.39553811387147636,0.04340276547045835,2.852115795337754e-05,0.005834916854003455,0.02331909897165901,0.06153561809599659,0.03979856057517577,8.40161121645162e-05,0.009972525833857923,-0.0028178716731314044,0.010961581110947314,0.0005151462386300123,0.00011754295514621247,0.0002067908499616862,0.013700030622899269,0.013254961862822401,0.013792289602133499,0.000590770249703982,0.003664450284617431,0.01707773727673031,0.0667297769586481,0.02919267089966491,0.00010772007917093358,0.0048399843499354785,0.006294349785369254,0.022084589499382197,-0.06273959769010697,0.0018292822364341732,0.008342639201931923,0.045400580732291945,0.3936385614684796,0.05049594598966454,2.9658280434032346e-05,0.004865026920501047,0.019338083676223836,0.055738047140529344,0.009575555207628293,0.001134313122535716,0.0021313734825593794,0.048897033054571604,0.34342740361470403,0.18437745113204884,9.481416065226339e-05,0.008679335678607996,0.018150928701069224,0.02859733572831137,-0.17182497859296494,0.00014980236269800622,0.004736377700626458,0.021252790174762917,0.029692689751767507,-0.11882659508495517,0.00041083773649427604,0.007306809543976412,-0.012761888609079924,0.046665169570275965,-0.02237873743819533,0.0021196904466656646,0.002944389302766725,0.018497517166409093,0.06897960832945571,0.0340406659938674,8.603656944836513e-05,0.008736384739364007,0.025306031152176105,0.037964841939452994,0.0020630847988031705,0.0016569890331412254,0.02118062411446616,0.010078510824090243,0.02972492705588626,0.0022819799232394614,0.00013433575036712967,0.014216236370132897,-0.0047026221584749095,0.011091515990503094,-0.0012151513439465245,0.0001718737498709058,0.010350330761488185,-0.007489063072304138,0.028585461896464624,-0.009480013619053216,6.394346982379458e-05,0.0035619936188070692,0.016559580256590312,0.05593620218065775,0.001462003915320353,0.0028059143226334734,0.006064396033625734,0.01738253517629162,0.10662096472265309,-0.006844710140173397,8.109817476139083e-05,0.010254840914785037,-0.002755297317742477,0.013615253523846866,-0.025118850437632866,0.0001467585868540316,0.0022132734775687384,-0.03243589915895264,0.206123217942688,0.009066842946769309,7.442994984702036e-05,0.000764024932696005,0.034412335388544726,0.153568945616731,0.030630248693288356,5.63194155600997e-05,0.005248456355547934,-0.045263825917296566,0.10040766768206773,0.04120471807779995,0.00021979295844404541,0.005668305931590662,0.028407480624764406,0.122157656655939,0.04406082271186419,5.782643274605215e-05,0.0001268059801568047,0.026392425465081266,0.2640326740346666,0.025778497810558576,2.5790093407213234e-05,0.010987149512971672,0.016585395374436946,0.053557224469342295,0.022179592001325944,0.00010824721494167437,0.005703200345617483,0.013474639189793046,0.0563198313547259,0.020130947494854976,0.0003771236514138114,0.0022380151611054435,0.002562278216423023,0.011514298197968743,0.000634784406398461,0.00012745609479275155,0.003984578048689759,0.0053830106637254875 +2020-05-11,-0.004827591803925341,0.03252629362053556,-0.017221946582428243,0.00015695767144272127,0.0047203659733248615,0.033085312614196644,0.10553401706040627,-0.052267941725386374,7.522345898457839e-05,0.011582459017367347,0.005074828665096251,0.01527994967045607,-0.014334152535638307,0.0001536372995494335,0.00405680332958562,-0.006735071930309321,0.006118409404150464,0.0045634991932333654,0.00037151090044909156,0.0025596999763246313,-0.023913414357808173,0.05188493260387211,-0.02399726836870202,0.0002411560181968099,0.006141914172715826,-0.009383797698810054,0.024773569034865568,0.016893792926978547,8.270595827903726e-05,0.007800847155824912,0.007277333726145584,0.02298210108608571,0.005587156744335413,9.291212993503712e-05,0.010524965188956206,-0.008594939115265631,0.08429411108947432,-0.0003676877907022133,3.496585754252734e-05,0.021789328159293995,-0.04064688798116907,0.03088467096421248,0.12670226686658967,0.0010149136846742388,0.018471350990018117,0.034008718602744244,0.0793512854957864,-0.015015208092805831,0.00014986429959824401,0.01430866887185411,0.0052318505430076455,0.003991780798686809,0.0023703552129958295,0.0006406384527558749,0.0009185366200208322,0.0033511939540871727,0.04253708905173822,8.815735490856096e-05,2.3477647992962737e-05,0.01066912920370297,-0.02022640948407673,0.052574700829039055,-0.00377675901662921,0.00011428599747028956,0.0172398063891539,0.021184983576055413,0.10973397634686137,0.06572201277738891,5.434365360010363e-05,0.004413990188835724,0.012472319580232583,0.011301494039297479,0.005329289334129153,0.0021524562979293722,0.0048168901331580565,-0.02764184873876642,0.15387266020875628,0.01096457159440041,0.00014782835077137063,0.02584043035434253,-0.0368289653638525,0.20954568475280522,0.020892722750726424,0.0002721566989398664,0.030187454893697525,-0.03596473071493678,0.23267539368254825,0.011575533411008476,4.353988839305029e-05,0.02898495183649755,-0.0056384943541021495,0.03480001666545875,-0.031774617975378686,0.0002670364251554064,0.00914745796518979,-0.005351447397086991,0.0738091817911034,-0.003126075532830799,3.0087846244755052e-05,0.027911137833037874,0.006643694472424942,0.05838610837853259,-0.005915639302160565,3.801734920999591e-05,0.004798213648873253,0.008110863369234528,0.025432097518211,-0.1609163286458103,0.00010273245373005287,0.006911010615932586,0.0559914662274744,0.3469096019549484,0.04193426662231164,3.7281887858548825e-05,0.018533298390349902,0.005970658629069282,0.014578820531854088,-0.0003893801502429527,9.079819889194441e-05,0.0005666328608561239,-0.004082125070203938,0.013979969967225201,0.006621673311791732,0.00013351457076829913,0.007665228251811152,0.046606561424729305,0.05229565199614694,0.05714852080496689,0.0005093977728558994,0.006370355083530204,-0.021740853542313192,0.08328652108060244,-0.007337673951928117,0.00010987221445212783,0.014578385395152747,0.03429650717797701,0.10715509280720946,-0.001770198271106395,0.002054263978331485,0.003454058576552799,0.042284584461523445,0.37594548629621377,0.03250510882077162,2.8922736928845995e-05,0.01684842163708524,0.029465812235713533,0.07412838641147283,-0.020088128583747117,0.0012995863469297758,0.023752926986344257,-0.0008493029521471208,0.0054437656206172995,-0.0021350681538933043,0.00010389361511508731,0.0005937545131508143,-0.00901943145581832,0.014100711495574193,-0.02320762269704995,0.00015096752036076726,0.009843113543758115,0.0014934751148694967,0.0020661881358950617,-0.00613335587247275,0.00041488911500129125,0.003839858253758647,0.035407692937042615,0.12605935971350815,-0.0856009114461983,0.00217707241266541,0.0007873079187486229,-0.017312189910140774,0.0785504981143734,0.00018959503861148207,7.07120510733311e-05,0.0024667480563535784,0.015557490580682735,0.02045448374734642,-0.017669107923992407,0.0018907243429200054,0.005203140630396156,0.011951091194351022,0.038467382395429336,-0.028532161624608702,0.0001230923214045701,0.004287543646340531,-0.012357138809492626,0.037237221337559974,0.0005360832010621085,0.00013452439113159046,0.004295190047325178,0.013348757145474172,0.06240505846244638,-0.043681605809567495,5.220774829769556e-05,0.027148332395486183,0.01066086184220387,0.03400124202647746,0.00040811850590095227,0.002971772719076548,0.002411979665964646,-0.023901566515553727,0.10853744414735844,-0.006074232685698043,0.0001095436848785227,0.011462116900963408,0.0008704016864882333,0.00533856124772421,-0.01879894250121874,0.00011823778318194001,0.002041730953137306,0.018398306380168584,0.09584205675155906,-0.037778090469612786,9.079677443550634e-05,0.011151292699625249,0.020550620992292417,0.10768181746331618,0.007816461707713818,4.7965609527634385e-05,0.031068150385907364,-0.05540256315070011,0.09556586949890782,0.04890220832516886,0.00028265484620112905,0.016164648764584087,-0.0030588910524064665,0.011064174859984491,0.0037022691995413624,6.874788695882389e-05,0.0012358408048689386,-0.005300321603877542,0.05823102710836819,-0.0246180480674305,2.348437771249824e-05,0.0012138945073604168,-0.01675541963144379,0.050483471433367164,0.025849930283116027,0.0001160152452825807,0.0018087658912576,0.022401208022123646,0.09530377012490442,-0.06506731390018418,0.0003705009523812623,0.0010131874668595545,0.0031411145242440084,0.0186597438559724,0.0010423608714272643,9.641617296521792e-05,0.010206385597778592,0.002245249410768794 +2020-05-12,-0.0021044517543584614,0.014738509979744517,-0.021317481758725325,0.0001509982721821695,0.01976020824546584,-0.024181366640326232,0.08248408943732867,0.004623444146945248,7.034304823204741e-05,0.0016360083704446435,-0.04080185562286251,0.13071267655603372,-0.03952646659870413,0.00014439741269234635,0.005739539518554618,0.02297053848399425,0.023682140065709678,0.020280516715320798,0.00032735432797657897,0.009596056362476242,0.010839998320795245,0.024220160695874363,-0.04121747488827238,0.00023418008912852253,0.0075817574009469,0.004265856437637552,0.01102377632540521,-0.0005149964393628508,8.4493360385044e-05,0.0047926521532778875,-0.012362583300192222,0.03413899767033946,-0.014908184975495719,0.00010625474176880536,0.003876689792051024,-0.011044769891365961,0.09351216225279192,-0.04326987344594564,4.05029995776157e-05,0.000638048617007647,-0.016920376110608704,0.014435000711683887,-0.035883793505351154,0.0009039366380477102,0.003224024877548458,0.013414170637921672,0.029391792425180273,0.0037277841717253068,0.0001595877828524545,0.03546678765328276,-0.01231116034926312,0.009591268298454672,0.002715564929127479,0.0006274040334926151,0.0027092843020525476,0.032180332305576036,0.43401836157331813,0.009542051903445667,2.2095570060267414e-05,0.0003431943996876855,0.0006611401320130565,0.0022650835762425907,0.0014586230480872955,8.670823119907725e-05,0.01896534798683699,-0.004553596817468208,0.023210164322401222,-0.035749185702209293,5.5225311987774585e-05,0.00167543472299898,-0.00652615429140765,0.006698462925668094,-0.008153143738152372,0.001900225543519097,0.003750164516653236,0.041632754497321,0.28235748605630584,0.015945573583491697,0.00012133551750266457,0.01777397114953841,0.03919144212727244,0.24880820502138823,0.024072815269369156,0.00024391290479782192,0.02049582438636401,0.005866032400131597,0.03706699680987019,-1.730566850280096e-05,4.457773649801921e-05,0.014754168339069182,-0.0004663429074648614,0.0026700446047464434,0.0010150927619376358,0.0002878549267005261,0.00812528043230636,-0.016950423296282824,0.18924607980879668,-0.01248180534651842,3.716925765591936e-05,0.003676339829972297,-0.0005184943412706765,0.0064887339234475285,-0.03805209758462923,2.66972030227452e-05,0.0055526199920064075,-0.015815330785496292,0.048978324045253686,0.002007072297037004,0.0001040152735148814,0.0009687175494588142,-0.07357672684011922,0.614925042789979,0.13147682684189738,2.763825756801543e-05,0.02857978796674926,-0.001270244948368145,0.003483466693250517,-0.00017889596151250768,8.084500575879484e-05,0.01805683494014244,-0.0008243865503147605,0.00351627461427305,0.0008611978329586573,0.0001072004745964791,0.0029822197805711567,-0.07253713651143402,0.06168995255858657,0.08418554367363147,0.000672080867733433,0.007194559441862711,0.0021619451250900266,0.007669151640724751,-0.04104901360194245,0.00011865426416848339,0.002947439537609175,-0.06768656809029416,0.2140219458441918,0.12784659174249627,0.0020298472660986214,0.006527658352700343,-0.02763788300970396,0.2661608267103645,-0.0352518261059422,2.6701941040712423e-05,0.008380103353055304,0.01273448744344075,0.033291502769608294,-0.002960894289518385,0.001250602636041827,0.008809282803015897,0.009770046019504475,0.06999457009731648,-0.024086241402540835,9.295182095145543e-05,0.012066608498856596,-0.010702257539605065,0.01871987171400699,0.02521934107473186,0.00013493291905006016,0.0007225576088215979,-0.011991814792907405,0.01544945191934243,0.0132030931221271,0.00044552876519342815,0.01957385346863065,-0.0017117650852085855,0.005923921473746566,-0.031313191570702614,0.0022396760816958614,0.006746845352304819,0.005119400929124159,0.015672490918834187,0.0006617664829562192,0.00010480246232330842,0.005720736186606547,0.02595204566182533,0.03104828039950604,0.003731230352517626,0.0020778358569665256,0.002865641819794963,-0.0038672445836704862,0.013425332734521492,-0.04390086546350397,0.00011412810816613949,0.005144449647947408,-0.0280742125394635,0.06790062971143208,-0.03642789145785763,0.00016760777375425794,0.01361693111990176,-0.016989020199556042,0.07447075906795642,-0.01562582123576782,5.567964750426671e-05,0.002142103594686754,0.04611992405722819,0.15078925550083536,0.04650587930891355,0.002898920093306591,0.004279560100425843,0.03307568298267339,0.1749930709104079,0.027128510695159813,9.402179515454304e-05,0.01382906749038153,0.026948151340787346,0.12741830528643766,0.04177202531824368,0.00015337618727228277,0.003890057077993557,-0.01794930892278263,0.10948803478056475,0.025428532242551958,7.754070946836866e-05,0.016539957920073126,-0.05608857807831973,0.2825182746856175,0.05851287721057518,4.98970970553938e-05,0.0031809405005147028,0.05719146661295718,0.1065608396867012,0.008632297496059932,0.00026167545846817125,0.01910618149906205,0.005793337902981816,0.021241337080467708,-0.02176116297728095,6.782056211268382e-05,0.006871502944549043,-0.014969164963452646,0.1575548524303692,0.011059542994181446,2.4513034509924724e-05,0.008913288887556471,0.020702658692227302,0.0697014431853322,0.04366070602961041,0.00010382293848963996,0.006174088853767719,0.016091230020133837,0.05192159388173973,0.018889819762025816,0.0004885052078743409,0.0036466666171546384,-0.016234152852605238,0.07445001155587039,-0.005915332007570114,0.00012489258574975383,0.006640178259166559,-0.0032117834946312797 +2020-05-13,-0.0003568363472482012,0.0023590960139448242,-0.07245129785738204,0.00015995950524381604,0.01221703058956763,0.03103330031409563,0.11802668614101709,0.0230515226034687,6.308967311844696e-05,0.005917094122281492,-0.00901361653069972,0.031224968667023584,-0.023127118015862688,0.0001335347418094194,0.014228188370531903,-0.002376343753428696,0.0025056038795433326,-0.14749090601486048,0.00032008454699967683,0.01111081760435818,0.038854030111631306,0.08333920608739166,0.09015273123403673,0.00024394082361512974,0.018964401639872643,-6.331627537694799e-05,0.00019075733438006178,-0.0038527698293584827,7.247377011260319e-05,0.00835253900372219,-0.016614237461593646,0.06191453127742698,-0.005503802752982983,7.873678528031388e-05,0.026648731423087598,0.00022282641611994986,0.0019963710872101053,-0.004874653516321531,3.827577722882193e-05,0.016325318318778308,-0.009433275536111708,0.0071104618598140275,-0.007464147703680153,0.0010230797656142834,0.00749106462761128,-0.004381560525895714,0.010494073448289036,-0.053548569052547325,0.00014599789770026854,0.015251724993813746,-0.00985427667797614,0.0070977524859911255,-0.014076127894913023,0.0006786225074720435,0.007847866021660935,0.002287242270522735,0.0321847784556175,-0.00879967379641866,2.117797513380969e-05,0.00143007173465313,-0.006188466275976689,0.01916953315325895,-0.00025437043705493935,9.590086625215685e-05,0.004687167070115639,0.009682491603762302,0.05660234474035075,0.011299239152513766,4.815202161510696e-05,0.008427693075868228,-0.01012965272367212,0.0073589216086627825,-0.019934696151177596,0.0026847469186758997,0.01059306789206645,0.007472521946913237,0.04708208141543675,-0.07096026998605942,0.00013060615766574753,0.034964791277181016,0.043025480940936896,0.24890758171365954,0.0317242927754132,0.0002676676216979161,0.013636647551184254,-0.04874224284117883,0.2808878088697433,0.04905452985125037,4.888026759241534e-05,0.004488973699516539,0.0363258827284634,0.18772022206694533,0.03881008851482988,0.0003189274678155121,0.019365053059081594,0.023986885674989796,0.26767660625455547,0.00842933980528062,3.7187217086641376e-05,0.0020510930512173,0.0037229007092949838,0.035006999625711306,-0.008228973623745165,3.55310688989679e-05,0.0014952404860662885,0.007784794636644486,0.021810419749971433,-0.2174360939550955,0.0001149756549892808,0.004562526580374531,-0.008383355262164657,0.057331428388141766,-0.04497970480006429,3.3776720849262866e-05,0.0006849422644651048,0.0037517011930999363,0.013023005623472288,-0.010417256071346618,6.386962931308551e-05,0.005776915952813876,0.002875764907402385,0.010723426760187761,-0.03067286568916807,0.0001226219972068736,0.005896449790048334,-0.0400137686246789,0.04053706239110476,0.011241352229146474,0.0005641995618565496,0.01378732737616246,0.009204414034225996,0.03170026312758956,-0.024953669824684263,0.00012221352986760645,0.001293843017390701,0.00853300750691622,0.02841648247276868,-0.05108960739712582,0.0019273073805123216,0.017706164685132898,0.003911491292050788,0.03388954537098592,0.00022725653754325948,2.967965307782475e-05,0.023147638693573586,-0.003868048876072279,0.011742257308765727,3.448635956328834e-05,0.0010769898988188433,0.007370130619447082,0.045924494515383614,0.3528460643211092,0.11799199062118991,8.667318388462079e-05,0.021789253438585725,-0.03771211637054014,0.07180076379455702,-0.0003045039726028067,0.00012396446985155042,0.0048659675280551705,-0.023683153924023308,0.03532480977262463,-0.1166057710655257,0.0003848253026484691,0.00986037767502576,-0.010874682801061143,0.0401449470609309,-0.013525038819322356,0.002099597513033262,0.0042502584663981,0.0019242793096902965,0.006076690346606904,-0.04572969387785891,0.00010159945407022054,0.0009193779236222762,0.02990144074984243,0.04346081928851675,-0.015331701696734035,0.0017102964620593659,0.004962431660341008,-0.0003060466837204653,0.0008728885265036834,-0.0658776856766929,0.00013891365213802775,0.0046831508846566705,-0.007311930878286321,0.018687806774476966,-0.06609145671011261,0.00015861129768377882,0.0021593897863841057,0.03424713360614835,0.1432937884466476,0.0212431705129249,5.8332526665725276e-05,0.0018141149672959499,0.06416703692554046,0.20074203889400932,0.06967809575196109,0.003029644786243357,0.020971910958601438,0.02848418051849406,0.15527801464327837,-0.026591917682105223,9.12503062204544e-05,0.016779791867987944,-0.03821518587423568,0.20012898511688743,0.006616290324349091,0.00013847990842510735,0.011502051202025392,-0.008383509053179373,0.052381853752601806,-0.027400771994953478,7.569961534113697e-05,0.010413084261610703,0.003136696563016302,0.011968188494606182,-0.00010951376558431635,6.58705792287458e-05,0.006612346827460522,-0.0013630495569648352,0.002175759361642597,-0.013501117932433448,0.0003054430018015744,0.03764174514097322,-0.0005673972288271623,0.002487722614470226,-0.01879726838762377,5.6715221447241425e-05,0.006754611782083411,-0.002978000827329953,0.027260695404143616,-0.048346462150528534,2.8185073344666473e-05,0.012520781106480744,0.0016889261079821864,0.005621559318852321,-0.009802796041481453,0.00010501777581012399,0.009148400773211055,0.009305164136896266,0.040366917090811395,0.004330553451059887,0.0003633510557820325,0.006818729905654379,-0.05883174809195661,0.2906122103136337,0.08583322241155265,0.00011594971656325629,0.004838585415823371,0.0018680075281377313 +2020-05-14,0.005516814032076679,0.050538724666239355,-0.029204324858789453,0.00011543849336404087,0.0016736938006224264,0.05324308957794406,0.15044127474703475,0.0653350653727836,8.491937136607312e-05,0.010960707526225275,0.0040165540284443765,0.01623342312767197,-0.007870866565434433,0.00011445656525235368,0.002728634111539722,-0.032019601649045375,0.03166139423858923,-0.13237290550368483,0.00034131371936623947,0.008044981525952278,-0.023494755032994925,0.06362823699396593,0.02701707127067258,0.00019320519667204714,0.015900809346591223,-0.011284393534538204,0.032757693012330724,-0.007686216601340592,7.521624606918598e-05,0.0025642810049862946,0.008593554039213054,0.02797165684454597,-0.0065021519247657035,9.014558798702273e-05,0.010989973497522398,-0.04496210776556711,0.41291696274204653,0.0698138730119541,3.7340708375361595e-05,0.001905738053196183,-0.03038145283991746,0.024532656487943866,0.040073101739135794,0.000955011820032116,0.0027146223797842265,0.00414731289481648,0.009142149280825893,-0.031090977585283036,0.0001586281940402805,0.0008508291811103546,-0.011915151076093354,0.00979265683433972,0.001300711125417558,0.0005947348335326565,0.0035446881169888833,-0.004575814414489153,0.05943911144342809,0.008839726658363734,2.2941345366158282e-05,0.007480391050945118,0.0077791616850763036,0.021696032018562815,-0.06250180880441944,0.00010651322216860712,0.014577031989831374,-0.009512819818426903,0.05326336446583166,0.003834099780138483,5.02738903216441e-05,0.001909549577969741,-0.0002950502559916078,0.00023599587029424283,-0.0159431388448615,0.002438453987441979,0.008684215914846551,-0.07404634456438136,0.548895488212557,0.08042330655140909,0.0001110110142003871,0.011682028622034355,-0.062218988544688436,0.3293556918064308,0.070585980562628,0.00029252703249611273,0.008802078395358221,-0.013443554979170174,0.09016871334521419,0.0024229874577823742,4.1997091167413745e-05,0.0020927906167086717,-0.0006326943968706814,0.0033232054570678776,0.0003854528319716532,0.00031377880411366765,0.012188762650409066,-0.060531658401876305,0.7822044766639448,0.03479854023299245,3.211385977331118e-05,0.012288253891322766,-0.006774273328216117,0.06652636915506926,-0.00400895346587011,3.402127639648552e-05,0.004645736733046357,0.0016929623507770403,0.003969133610280249,2.2139376264385588e-05,0.0001373960784770075,0.0016215069282254626,0.04310341926439152,0.2671485389075081,0.023250029774785783,3.7269305131435755e-05,0.014872401602602421,0.0309384788273238,0.08434607541860951,0.06534472039507745,8.132263817247203e-05,0.007896728375668037,0.0014310049336894086,0.005135118197026319,-0.01327627490116561,0.00012742049336563014,0.0006879873950106603,0.0011596152607526657,0.0009526064883312395,-0.04958112971629018,0.0006957864201906643,0.012827408108772037,0.039956478997610935,0.13941164996974692,0.1393531448640775,0.00012063522891882965,0.010818996142851497,0.002227845820006193,0.007383345591138697,-0.001223350170416015,0.0019366498638796069,0.007278773680479288,0.0014040335276227975,0.013858252390122484,-0.1386054022736032,2.605260814783743e-05,0.01310180804034504,0.013807116195156724,0.04594730019272836,-0.004362218834578218,0.0009824585841880793,0.03909472889937727,-0.007006794894865373,0.051088390073282065,-0.03934933939887752,9.133197118141086e-05,0.008544972207366816,-0.011672865339708847,0.016624710588882333,0.012937734604783943,0.00016571765078338507,0.0011844445113778916,-0.03540265079962101,0.055177034983719786,0.028732632736718448,0.000368282714744687,0.0016960536447040717,0.006463515797107617,0.02438884683167238,-0.0018009455551324187,0.002054129830363879,0.0139054360455102,-0.008550701326207683,0.038369545871859076,-0.07663897612521671,7.149990227907773e-05,0.010338803003143458,0.008242442364514341,0.011466886187743287,-0.05839992551674889,0.0017868479934266847,0.014996236985679456,-0.026310621601663187,0.09122402360855783,-0.04527862933256008,0.00011427149820740922,0.016118897180129887,0.01099181744904646,0.028837453159011064,-0.059125448613221776,0.00015451583069568927,0.008126650399058315,-0.04646843609050479,0.21269337479212289,0.03668564544742796,5.3323422856640204e-05,0.003454593786089009,0.05601519235792428,0.17657449775965356,0.05137826612519258,0.0030067402406844124,0.01844704158470779,0.028127557625032537,0.12275914057287604,0.013033075240876189,0.00011397740227585276,0.005357833158311836,0.03548199381249567,0.21512359577313014,0.11961517021668602,0.00011961365239774333,0.005581889891704243,0.04138715973737583,0.27448328418353785,0.06989594991708303,7.131787930168242e-05,0.018297581431870578,-0.07168311632826238,0.2700054174809572,0.08774944018476483,6.672549346244632e-05,0.026703872987064555,0.004819377045717233,0.008885856163044926,-0.020656778510105275,0.00026443626837584775,0.022969583825616875,0.008520634744527474,0.03984643675287899,-0.00567337659816181,5.317369420994243e-05,0.003994408281828278,0.0024718351146165826,0.028699786626100447,-0.025081843055931398,2.2221435715202202e-05,0.006601152820193074,0.009712126551702067,0.032816041133535444,-0.023962542871693252,0.0001034515756956589,0.0038459125223876444,0.01323692424720467,0.050598156960144774,-0.11300142980558578,0.0004123636323030882,0.007795356577425882,0.017477696096060726,0.086499254419463,-0.002431089637502891,0.00011572937705818704,0.0026542042141711637,-0.0019251647743094363 +2020-05-15,0.022245000688465213,0.14851396263227684,0.05322910579648634,0.00015839873955470632,0.005232255137177812,-0.007413743101732605,0.02779438713326702,-0.029931804811664284,6.400161857394154e-05,0.009995309284911833,0.03106614062231673,0.08802664711272414,0.042661249813456543,0.00016325644984043638,0.008732977499515142,-0.00721686820257519,0.006556322700067513,-0.03587142446055935,0.00037149785383119524,0.0029557285217908227,0.004814151445410504,0.010596683982979124,0.001522157093427717,0.00023771004692362246,0.0035071881331452427,-0.006938517652374394,0.020096280889847436,-0.026937323604516276,7.53872228771423e-05,0.0046849881705185396,0.008060313953593327,0.0351070883605702,-0.04283326224204921,6.736696793796033e-05,0.010820982506722527,0.02443265788731125,0.19414232702792245,0.02354167913073525,4.3156786337796714e-05,0.0011177842796945697,-0.00883618067911964,0.007402927496267581,-0.002108446376739878,0.0009204620303132502,0.011116378415835026,-0.007940116437242413,0.021351683031335035,-0.010524972850807862,0.0001300339166762468,0.0036498464994512447,-0.0012819452159048938,0.0010035473830538187,-0.01922084095994641,0.0006243900035762818,0.0021949060093863133,0.0007287529097960359,0.00973513744173308,-0.030270825566424058,2.230801890931578e-05,0.0006183511180527534,-0.024969927922616004,0.0845918389325404,-0.0021150993545430755,8.768793856147241e-05,0.013987338452051652,0.01126575492155984,0.055298491903975296,-0.06461731408442392,5.7346752626153155e-05,0.008206161891371739,0.04640219101008075,0.04089919479798938,0.05319557923030143,0.0022128231288581057,0.010425052890169081,0.02021985266450388,0.1432586243660229,0.0017315888040580795,0.00011614735333500494,0.02754988509943381,-0.003683811402188071,0.019433611080612194,-0.02153817571178327,0.00029352974186124583,0.0025810645112795197,0.05592392411022404,0.3735857947707288,0.04100534439189052,4.2166566529659295e-05,0.009743443715750245,0.07179712747209695,0.3864567686549298,0.08585093466261069,0.00030619137860579514,0.008101993654832097,0.013986310822797861,0.17508995184221313,-0.017029359026680384,3.31491337151087e-05,0.009158286409629908,0.02027654475270122,0.2055277607958029,0.04617872312675683,3.296136351851423e-05,0.003817666951273956,0.04119864890817467,0.11866135497123702,0.10602065476676441,0.00011183981150026581,0.008976993651397359,0.017814343120448065,0.14547686761372836,-0.02210723011464157,2.828578576565179e-05,0.0059984788589429175,0.006117801619990215,0.01865392163716741,-0.006019571843392107,7.271141970917321e-05,0.013762211182980415,0.003621006891382092,0.012744084063466152,0.00016949643815090235,0.0001299179979518587,0.0015731809155104394,0.027687081193163262,0.025393710289827714,0.021773213924591917,0.0006231987522652357,0.0007325467541897737,0.016964725371277127,0.061836414541764265,-0.006865385092413494,0.00011547515203034377,0.010673602783083422,0.017665002507602164,0.06645674397618485,0.004734603148729016,0.0017060581067468111,0.004360626585387196,0.00494219499030902,0.0478968096290469,-0.0026278531149383877,2.6533557680099408e-05,0.014555499266455196,-0.013508030135016221,0.039569412084582666,-0.05854769522239857,0.0011161015029580528,0.012359604182024983,-0.028025398958231428,0.18479267846766223,0.02911248505118913,0.00010099332870322424,0.009719544571873713,0.015589401858074947,0.02425356128749997,0.008985910767691065,0.00015170479957172172,0.0016075194166496301,0.015342988250631908,0.024321448515490472,-0.04435912005434978,0.00036209658554211974,0.005736566358998127,0.004728546263224581,0.01794752465723251,-0.0026910675080836243,0.0020420831647609307,0.0071989674413235226,0.04419442576940067,0.17421892717965912,0.11476144377894804,8.13884037195727e-05,0.012587498049587231,-0.008088889253867197,0.01194617962111914,0.012516068088861574,0.0016832051095433368,0.014565429129706287,0.008902060205015555,0.027373489559909363,0.0011061211865010115,0.0001288476194344035,0.016307956278837587,-0.07619205360502726,0.1848350737097689,0.2648075768708904,0.000167103547714365,0.0014534941892014582,0.023684206099728242,0.1036007353676667,0.050323921405048114,5.579688044644762e-05,0.007808946312254246,0.05032819267256649,0.1703853848093565,0.03260230285876135,0.0027996068877088882,0.012886986682929407,0.028187814233979477,0.15617466249523995,-0.11329979749397204,8.978243821622904e-05,0.004084266712596444,-0.0013376673511706957,0.007651757013391035,-0.0026243652138106446,0.00012677912247034543,0.00809409382128141,0.008843329407763372,0.06015529208844505,-0.007569237169123248,6.953295099321888e-05,0.0073803407432254265,0.01382880946452703,0.05878193244901905,-0.003860274814950566,5.91273382144747e-05,0.004496658607687883,0.046114258742275586,0.09765704334256482,0.01749422639504416,0.00023022954468613304,0.015592733214714083,-0.008307271283617747,0.0304643810628971,-0.03493740113886729,6.780791800515011e-05,0.0066415012424684,0.016210994106834364,0.17961775002989305,0.011193733608049811,2.328582779700166e-05,0.003525720712282897,0.012791578455103628,0.039316920682085664,-0.008173662803948116,0.00011372438764666547,0.003909466119546131,-0.0024210052781284117,0.009975609637017173,0.003511968192279682,0.0003825465248511124,0.0111947985530471,0.013846532713882065,0.07512360181781196,-0.003097776789630698,0.00010556900540810934,0.009230797324988084,0.01145752395135156 +2020-05-18,-0.02544883344471595,0.17711386122472003,-0.024008487265829583,0.00015195042257303378,0.006756836683903197,0.0010401922556831876,0.003279984150541326,0.0008831624647360298,7.60943475315976e-05,0.008586059842695977,-0.024745563940574696,0.09162707132323875,0.011067051557458128,0.0001249311548923213,0.004364923619560819,0.0012770918340935015,0.001210671178146533,-0.001005205365875258,0.00035601129821951575,0.006687032471327058,0.021051892260503476,0.04028923881313075,0.01290064932174047,0.0002734008426048929,0.0017423269245643508,-0.006615240790460621,0.017752080569122086,-0.011009573963161856,8.136603185201792e-05,0.009229733162308656,-0.03110081201337556,0.13605854115567312,0.008737647264107288,6.70711531710555e-05,0.0358726241726584,0.04621722092991851,0.44161133189735263,0.07103980568544711,3.588907235402892e-05,0.004198052795811537,-0.009456104074076455,0.007164275805490776,-0.007653368941523389,0.001017852232116887,0.004086966918801365,-0.04737344609488998,0.12881824309761145,-0.028190745981622238,0.00012859364083285342,0.008249680034316146,0.012613887621339456,0.008784197538025002,0.036845761486672776,0.0007018935025649375,0.0074548971828599896,-0.009312456993959068,0.11348733360607181,-0.030095289852477357,2.4453423944853694e-05,0.010101800599560487,-0.0120248654420235,0.0327700893827319,-0.04117546026308708,0.000109006811681556,0.014015526012337392,0.004890713420623642,0.02823366802337734,-0.005669176054210379,4.876034051269714e-05,0.004772390039206291,0.0034254537116062294,0.002384987124030488,-0.009402452136461622,0.0028012704310838086,0.01409360001175702,-0.027644804907616945,0.1786677704092261,-0.016976601615664846,0.00012732668121937746,0.01162260180430181,0.06197724535271027,0.3653282991442461,0.05894988790667381,0.00026269825419640797,0.006228525513498938,0.01787162072680348,0.11663317161877894,-0.0023780083071443105,4.316212415235581e-05,0.006126324414373573,0.0026693955278616877,0.01275411631404863,-0.04395049786475184,0.0003449446095989831,0.01326688040871488,-0.0339890516114085,0.38041122403236305,-0.18413510345633527,3.707797059481566e-05,0.0026065362308821454,0.014530817263138708,0.13859870332470636,-0.06983217509044704,3.502777755704552e-05,0.010428659522335515,-0.010127271849176656,0.03102721558171551,0.00028628181791585423,0.00010514107681674149,0.0016783634804764262,-0.041317770522650864,0.3124275452880582,0.011483721085784205,3.054780001144776e-05,0.01141317526885638,0.014549677142869795,0.04144995611456325,0.006987014309903493,7.78227661976986e-05,0.027781444407656942,-4.73697422548297e-05,0.00018600229201015052,-0.007746762028294003,0.00011644780896778223,0.0019809276718653355,0.0372166326395153,0.04016028812544253,0.02478385074331835,0.0005296827346440621,0.022729302629643247,0.023031590680802107,0.08456423883583868,-0.08365176794719315,0.00011463657405293151,0.018733233172671167,-0.050554090524447336,0.19098118366699104,0.03381992138840755,0.0016989668136749105,0.013584807354390981,0.03444960029290257,0.26489103609457487,0.028502099149005783,3.3442529632268384e-05,0.007040880792423562,0.042307132604746056,0.09397702843255636,0.029703707373698873,0.0014718486472551254,0.019163200796032925,-0.029680849565833865,0.23796326203913995,0.02980372343381987,8.306002496777471e-05,0.02012693144627478,-0.016126402980278082,0.026305822496453513,0.02505678519532074,0.00014468749879965594,0.013257554977557644,0.03260079182109911,0.04633030074671884,0.05131097282454936,0.00040389357344791763,0.0053032108613022474,0.03168850644496371,0.13729898141713898,0.036968764437582194,0.00178889477737985,0.001082500022870715,0.009122080216159881,0.04023278516194036,-0.020173600183323172,7.2745169341146e-05,0.005330601710317793,-0.006840670893348239,0.010191486771435516,0.012617397275480247,0.0016685466124763042,0.01592946768583851,0.01994622577401865,0.050482814734251216,0.009950625299722049,0.00015654283891581924,0.00199789474729986,0.06389560447725184,0.16442760730620354,0.15157958512400418,0.0001575275875418743,0.019579235985245275,-0.001691864991925045,0.008416009250508793,-0.019607947525763288,4.906518322261163e-05,0.026459040563534365,0.025717186474431063,0.07774179903570087,-0.02710410357609003,0.0031353564765675707,0.0091307004533331,-0.030762486618776584,0.1583682061506516,0.06723215286623511,9.662600211438567e-05,0.00689471072999331,0.015316479569315769,0.09477913971178636,0.021752084238737937,0.00011719443185157437,0.005836982420269397,0.0015141461860420484,0.00874906134894817,-0.0034915121326182887,8.185685295001037e-05,0.0019098904221847846,0.029588012706694675,0.1364603720144197,0.031551657627723606,5.4494997943506386e-05,0.012991823622139145,0.02586418057775986,0.05007833460684409,0.0034649112071084643,0.00025181305399047445,0.013077566099684537,-0.01900814556564545,0.07879644844134172,-0.006929793607558409,5.9985665565616694e-05,0.018835557696939603,0.006891316569839351,0.08558316469704884,-0.07187209318072649,2.0775196702671458e-05,0.020590909978684638,-0.00470275045876715,0.015012672587129532,-0.01277722251532412,0.00010949716775069025,0.0042487022939972675,-0.006562374494454563,0.024704581049084226,0.00875115402395913,0.0004187082211779195,0.007794877476181968,0.003927560529045905,0.01932429320039587,-0.002296162172040982,0.00011641020782360355,0.034894867599299155,0.0036433089806544574 +2020-05-19,-0.026858892728862466,0.18575847022257747,0.0246092223864211,0.00015290654057541924,0.0046073478647976444,-0.015042296712388808,0.049668514161549895,-0.016912934202797263,7.266805050033436e-05,0.0032579132374709096,0.04219371020613687,0.12250653565778047,0.019052581182365715,0.0001593256362793485,0.00682501397591035,0.0009520568723313461,0.0009854173263001572,-0.019202077549218564,0.00032606978305540205,0.005366404659016163,-0.007040376748360791,0.015530025281029335,-0.00819187566379739,0.00023720372758566133,0.005450115370277005,-0.021209992552816814,0.049974762532478886,-0.052121786503827386,9.266943533074312e-05,0.011619051192101229,-0.018936033084316507,0.07558792426861748,-0.0785531538480745,7.350661767406155e-05,0.0013077931612183206,-0.010288413827792761,0.07737181569823914,-0.0016740301710361906,4.559993780036526e-05,0.0029434408234718943,-0.0013794586226798112,0.0012046215226914113,-0.05188392127014947,0.0008830856883958733,0.010070320223378273,-0.02703892670307478,0.06338526006803644,0.012130124588243895,0.00014916366937980593,0.001124039443422492,0.014437533037675684,0.010955990063461004,0.014902794710970465,0.0006441184209531439,0.0033730852835579515,-0.019534511196167424,0.2777919045847178,-0.0007258839317243904,2.095587274796114e-05,0.002019996521705064,0.01882580872092034,0.05467449821817039,0.024737760401808064,0.00010228686631502157,0.01032340411316823,0.025690875670168672,0.1496780504770584,0.038149391883815185,4.8315069409065315e-05,0.010058843339457689,0.023935317556479405,0.02032385589099319,0.010729672971298409,0.0022969738951071237,0.00013949071008664284,6.504830218761054e-05,0.00044360676089836475,-0.005018342542972225,0.0001206673893643393,0.04609195701240538,0.004012060208148674,0.024202869380199627,-0.003588960855269551,0.00025668992123304346,0.019167629520726873,0.009806032311218956,0.05831825766138954,-6.672261605286507e-05,4.736414866181904e-05,0.008423271363144823,-0.029422492270764745,0.17062572789162792,0.012121525126511669,0.00028419847801087843,0.0008090589093102786,0.00183122092545741,0.025080000202236493,-0.013700375868741359,3.0300056477787075e-05,0.02065160357231448,0.004813086333399899,0.04243257017919512,-0.14478271433222578,3.78971039236418e-05,0.001482053138023979,0.018846448294693025,0.0473287400274519,-0.07153992714453328,0.00012827066024824745,0.006790546134729193,-0.014775039370160786,0.09065077506440616,-0.012587930718716635,3.7648658085622125e-05,0.01007032008957041,0.016476563836633,0.041488743554342525,0.0027347468132335726,8.80468341244419e-05,0.0042296170409543195,-0.005658254408198863,0.023019048054230946,0.003157097250258633,0.00011239414980901134,0.003841987540479299,-6.503576741297501e-05,6.847109271586508e-05,-0.00021127314466644272,0.0005429009128253588,0.02799625065160749,-0.0021283969647033505,0.007939574521707713,0.0004683244592529711,0.00011283437056547668,0.015129243160305552,-0.021644788045526157,0.09022428625457143,-0.16360498164582046,0.001539745902160949,0.0035982265423702953,-0.001984782174051945,0.021643210069979397,-0.01845675800388751,2.3581605585187475e-05,0.012747225934210175,0.027129437831376595,0.0773235490871491,0.00530370062424214,0.0011470973718199129,0.00015540670443395894,0.04366033648751482,0.3410278316063021,0.08814061241481032,8.525559664691275e-05,0.021482097080408335,-0.009326806216381153,0.015866642483838282,0.005611894679822605,0.00013873732087876797,0.009229213064038875,-0.0027212489044492775,0.003971993461779706,-0.0033743831690570157,0.00039324540445734833,0.015401216954086923,0.0024451960172553492,0.00894337251485165,-0.003188054551767324,0.002119154888128861,0.006738017474925816,-0.015887467834185952,0.06801611500533172,-0.016714126121665968,7.494337250304899e-05,0.013747492468661748,-0.030242545453896926,0.044005353336687696,0.050750147749663944,0.0017084018041637328,0.003875221011506557,-0.03248726747535725,0.10553095184892343,0.042206355563126276,0.00012196897251641084,0.0027749908610695297,0.015900449087038145,0.04261780697674688,-0.08391109383652,0.000151244178938971,0.020123653899827332,-0.0012383883150483266,0.005186282671372148,-0.0006759672862474749,5.827933490036393e-05,0.03342879140776481,0.026988107135492958,0.07874181117290636,-0.017050001236865432,0.00324851654877806,0.010482079866124852,0.007088661693309318,0.040528926922018836,-0.010205884778363315,8.700409935773627e-05,0.01741910984969134,-0.0030413639891325485,0.017567389703262545,-0.002568820098439461,0.00012555151231670211,0.005208028552159834,0.05969453568682418,0.3497179623484432,0.14024983473684266,8.07356484890637e-05,0.00358375372519006,-0.016219554411847498,0.07392382591725973,0.0011915013912389926,5.514445872580338e-05,0.001245194434225729,-0.032526789508591905,0.05133047204842939,0.016155828874837748,0.0003089550761857245,0.020158402885584868,-0.001567353611209377,0.006592752278264365,-0.06744271442118673,5.911730224081419e-05,0.015379128012803573,-0.04808631712514094,0.5141403007087789,0.13863661875757774,2.413076856915521e-05,0.003180294767714203,0.0028551398329697765,0.009198838730336029,-0.010846273388761494,0.00010849340575840183,0.00018093764261834145,0.029307928005717295,0.14147529307730355,0.060461303954107884,0.0003265370648384841,0.01205990497835446,0.002917216792111858,0.01272035183013428,-0.017358776929196525,0.0001313534176975031,0.0032992457868313303,0.0007889161634169804 +2020-05-20,-0.025036911521746766,0.16053073996219303,0.010656804541033927,0.00016493359715810492,0.008907063758092111,-0.009941958399813303,0.03153800170498753,-0.041228239339475066,7.563943843019308e-05,0.012082730584409965,0.02731764134013815,0.08631662684237164,-0.023927074300741046,0.00014640164042756224,0.0034843906142072866,0.010061608922869305,0.01271410206401616,-0.024683865549825594,0.0002670850602641294,0.0029786715115096727,0.03334838337468447,0.07457264972953895,0.03976948110932531,0.00023398767549557577,0.006651599583818023,-0.01884156910121126,0.04854063763829189,0.03158957950166845,8.475363432083172e-05,0.012659131293055377,0.0014880147110715699,0.00505186764358121,0.005262639742323119,8.642613990149667e-05,0.0036790480492479897,0.027883379443164314,0.22276582633045156,0.02413830970030696,4.2923532401381095e-05,0.012719725783855832,0.010179268247731795,0.00957532172754025,-0.07952976584164932,0.0008198001072497031,0.011581095549845136,-0.004547192111427284,0.010041022318080255,-0.009025587193391638,0.00015835335052283457,0.003209501271624555,0.024594124566294482,0.02146293034715576,0.015441394814362826,0.0005601014673521133,0.0042444183742001975,-0.0012013742263930383,0.016383345478065522,0.0022913875641553372,2.185236825641587e-05,0.007097640632429434,-0.07297236516475562,0.19950035357421841,0.11916155938635008,0.00010865902177237442,0.013705925719314005,0.01686080651810885,0.08407179451407959,0.014356167427498156,5.6453366517218556e-05,0.0005735005504192206,0.010184517128470509,0.007648529689740125,-0.0026040378806387538,0.0025970807826051663,0.006884215059933059,-0.04418341999281907,0.2684659125468949,-0.029416922043512633,0.00013543231007416155,0.04488695168441678,0.03290075390774234,0.1637994792865131,-0.022417294317717232,0.0003110294875709908,0.005979574095585647,-0.001441467775552909,0.010138439544602522,-0.044257461691232895,4.00492860326662e-05,0.008141135638278117,-0.06388998470904782,0.3319132869592943,0.07621643861300846,0.0003172451222985278,0.006557792400278946,-0.03293989529194899,0.4443310319318964,0.006090132401357662,3.0764212342204325e-05,0.006170273010658114,-0.0035224561299207306,0.039265807213731886,-0.02078982087469252,2.997179628239442e-05,0.004677506749807525,-0.03293342063635785,0.09812912618282418,0.07426917039576753,0.00010810895399860779,0.0227362237836978,0.05836359807189511,0.4320529179937351,0.035931039157137926,3.1203081931839466e-05,0.007094450985880364,0.0411004855093204,0.12879516478670872,0.0677296818131767,7.074972812753577e-05,0.007162619668071451,0.003672572869329697,0.01570338057623005,-0.06246472691466186,0.00010693647425968273,0.0003589583002164057,-0.030898543017632354,0.028833107042572807,-0.004622195637670366,0.0006125226015072045,0.022494506720580117,1.7729905657885478e-06,6.833572894031955e-06,-0.0009888335006883189,0.00010920552281329305,0.012387997576952319,-0.04570267856642665,0.1699222987403067,0.041297770573281045,0.0017262768805334796,0.02189069935096958,0.003791711999555082,0.03249945909481922,-0.10785938289753698,3.0001391992339023e-05,0.01777756528988189,0.055717601853758486,0.14407484741462975,0.039733487541109655,0.001264373884961796,0.008994944137805423,-0.012424647150926239,0.07561313544534566,-0.009961187607615146,0.0001094239681402265,0.018527580689161435,-0.0009083966925344551,0.0013869216122811277,-0.000514996110068421,0.0001545855924664045,0.009938789185005063,-0.03140549558118338,0.041767099098896115,0.05312711696540215,0.00043159385447390474,0.014792260197410777,0.00041551620131315755,0.0017805168386452806,-0.011949166544000496,0.0018088069493549987,0.006860162656055971,0.006412187931764572,0.023281704274355088,0.004522682084121247,8.836531792316941e-05,8.134901008482781e-05,-0.0036857124919415034,0.0054937399717931564,-0.09601968994678904,0.0016677484539716848,0.006410512778451734,0.024721296600710322,0.07168154174037117,0.01323435535462573,0.00013664065779714227,0.004237274427816429,-0.01451403311307004,0.03267232773907122,-0.021856905525002617,0.00018008121359839438,0.003407334378760022,-0.025244306093520318,0.10347316812299387,-0.006810520387333213,5.954559182137004e-05,0.008014341810977862,0.016244860682749974,0.050160646680171006,-0.020873470222916427,0.0030695232144090576,0.017783327898616717,-0.01600985315529795,0.07930428363100776,0.01779543279069205,0.00010042255640957008,0.002627828394528469,-0.003975238389197272,0.023344182541948002,-0.016086808360487575,0.00012349383901184157,0.007210855430468488,-0.03698999637637636,0.21574559758640857,0.07158949520116567,8.109443363966162e-05,0.012957270916519957,0.001528015289720969,0.005959622488703029,0.0018994220523548104,6.444012059859411e-05,0.01877473054604894,0.01697150104197467,0.02793716700311863,-0.06952809627462293,0.000296187881389552,0.017956400669106348,0.009496860444249945,0.04953723290127226,-0.007220487665536899,4.7671924907410634e-05,0.004019041227549855,0.0026053518283974285,0.030576077086926536,-0.0007244813166450619,2.1984464922366452e-05,0.0006866782072530637,0.004204894310826199,0.015353294196181592,-0.017460615713406208,9.573317819458894e-05,0.005881069753081898,-0.020082503029388465,0.08658479614716912,-0.006079404503405907,0.00036559830474218826,0.001517269897899996,-0.014735501924425173,0.08356654782302592,-0.0037417472201380173,0.00010099602190807534,0.03435899449115739,-0.002510617802624059 +2020-05-21,0.006984560678774351,0.048422592541636715,0.013005403714137193,0.0001525378570188657,0.008476459387452258,0.04935273804597256,0.14016463663887604,0.035982990537466286,8.448572262187885e-05,0.014309090415096823,-0.01324506754510991,0.04868625783217147,0.0022380247918036248,0.00012584761435192548,0.011229790326927775,0.008621137126098789,0.008343153230038402,-0.0007922822548324466,0.0003487403421991924,0.0012507898670407486,-0.010280664133459731,0.024605390439534042,0.006619153329874667,0.000218619392207665,0.005321918466382725,-0.0027165264882988353,0.007996863036197092,-0.0013275448692744076,7.41721770130944e-05,0.00359592491367146,0.005230966181215612,0.019278274062798705,-0.0028530067293978645,7.961659821395659e-05,0.007885142509708048,-0.0032079420516584137,0.030747676319527264,-0.02861476910477212,3.577773380282331e-05,0.009166238048303662,0.028960500777958365,0.024165465812290655,0.11253680945939501,0.0009241781212695105,0.01310330858824258,-0.009340010713009335,0.022705324606747814,-0.008017699084495218,0.0001438406197482608,0.02013636325737402,-0.02236216692367952,0.017014298836084293,-0.0679326880672068,0.0006424275940270138,0.005060668627446705,0.02852994232439333,0.36977085965290496,0.05130126058613288,2.2992754389649862e-05,0.009327909724134135,0.013732700620034238,0.03958291012792943,-0.03481531534046278,0.00010306216703045851,0.011516728094237108,0.009255194763421822,0.05519982285153515,-0.009329021389298997,4.7196489490040914e-05,0.004507440288400553,0.009426725321228482,0.009407238615848591,0.0008429504766695331,0.001954436952016403,0.0015392878609945561,0.050763490936995684,0.3500958755886039,0.01725899206198398,0.00011932092010114671,0.010988332027671003,0.00974774898833207,0.0524784654745637,-0.0017969489575080442,0.0002876281857051489,0.0547381367725102,-0.0009613359236506424,0.006183134578624371,-0.0024807597020947165,4.379529220374527e-05,0.02362370100928656,0.014058576264087975,0.08131407559566166,0.0015983115190972353,0.00028494590461316496,0.01133747802356683,0.00436897228938332,0.054503376921778986,-0.04747873999386034,3.3264891426744756e-05,0.0262366437772776,-0.023988852706321933,0.1807257487405284,0.015347569288922891,4.434770543722019e-05,0.003474369616836004,0.01572736481228762,0.04033474309713762,0.01068142864002753,0.00012560282905193775,0.0012172243219384816,-0.06078732000230241,0.43466730036368034,0.05517136642748778,3.230341247465804e-05,0.012318696330764517,7.206517681061951e-06,2.4023655724538344e-05,0.0020302986463701287,6.650644643942597e-05,0.010428388902185545,-0.01581387582494575,0.061465468967092936,0.06019762944616509,0.00011764019083428137,0.0013545308042195111,-0.03025407577240992,0.03215687496017968,-0.026542801554990808,0.0005377564334004867,0.011002558053934946,0.0055389617351036015,0.02374222514885818,-0.01737700178054736,9.819580954214615e-05,0.0040309151583430465,-0.017036185286135323,0.06359774253862191,-0.015112717878426312,0.0017192927399537945,0.00134609508580623,0.0019025053806666263,0.01975171377896381,-0.0015693784133756286,2.4768705269357178e-05,0.001604988724210668,0.059862867193572554,0.18003099554109322,0.03982088262738391,0.0010871300504793442,0.018049215873226332,-0.015592794970735247,0.11630307916626242,-0.02667643867792669,8.928086692607262e-05,0.005430674858157099,-0.01970431463245315,0.02733501445568147,0.023695414727031818,0.0001701325502170353,0.0015862839963508655,0.03622952825007043,0.050610403266133294,0.05672152982358105,0.0004108911573592515,0.00416095903176481,-0.01849868482041442,0.07916196510073,-0.0008732467267621015,0.0018112342734963906,0.01105150180498886,0.008587447592471034,0.038476957422348586,-0.006725440605774133,7.16067144478939e-05,0.002186032703974108,-0.018267040505262788,0.024789116197797324,0.014268033468625924,0.0018318265124267585,0.010704109208693646,-0.040350304733768376,0.1417192838706359,0.056910974573617254,0.00011280644326793308,0.01566350773679049,-0.05950653966041655,0.12447536647595889,0.08996763410527014,0.00019379459445528912,0.00041094401567073023,0.0017900721915892809,0.010203680564421239,0.006988488738768152,4.281812215360235e-05,0.00702680186528706,-0.00841082618488924,0.0256607356992176,0.006548002365413761,0.0031066162707069993,0.0014318919709270445,0.0023734107553173675,0.011242712152761193,-0.014037827154412654,0.00010501283549942487,0.007858033149087076,-0.020095761701306017,0.12744647467957382,0.010257254877040553,0.00011435033195376583,0.0011672773145480386,-0.01330949677019922,0.07549009494134303,0.011090362995744719,8.33912266834392e-05,0.019872390926630918,0.055442929122866975,0.2719457984052155,0.057216493318375736,5.124024624368628e-05,0.014833141310289689,-0.031688534584536104,0.07116101891168908,0.015431242227805644,0.00021711478166437374,0.012164866785885645,-0.0015936981913571323,0.006292278673861996,0.0009296717043047415,6.29814285541663e-05,0.009271700963547399,0.04395383840678755,0.49324389497797955,0.07385963202222251,2.2991450653331994e-05,0.010052563888555252,-0.001479265494179504,0.004729335219897288,-0.022574819584399088,0.00010933393856693414,0.006158185163356543,-0.012412776749862433,0.05226833662806859,-7.787554305248602e-05,0.0003743331043744056,0.0088869376959611,0.07897478675002938,0.3289273517110175,0.16550001166257342,0.00013751822859154372,0.0034092377723478747,0.0006145357021992459 +2020-05-22,0.02913230580380357,0.22467522479274618,0.039838414469696444,0.00013712172218712727,0.012468286572640553,-0.02889561266245798,0.0920227785155851,0.05734851798462577,7.53437256224207e-05,0.0019244229394710722,-0.03326729543517401,0.10750585040641568,-0.006035081022605843,0.00014314711531067422,0.016385487383751646,-0.002197365066383553,0.002662837453308234,0.0004229093238009582,0.0002785001384377764,0.006787968844233838,-0.0026424265777409174,0.005671973826942838,-0.037027102303613335,0.00024376226859270343,0.0003535886612696012,-0.012019592805831888,0.03205540858911587,0.008272461056810836,8.187195821737693e-05,0.0013141175016120903,0.015301254466063995,0.057462477334099045,-0.02141402656069995,7.813264875284152e-05,0.015295390718933861,-0.014328145993098682,0.11029701477854582,0.0069906292917242055,4.454765567674222e-05,0.013391282009007618,0.006999226460956851,0.005788970979031741,0.007750470776688513,0.0009323810960204885,0.013052617983127669,0.01841773949163276,0.04085864687561922,0.01509380730354543,0.00015762105582737851,0.00976602331934266,-0.017655146462490383,0.012246496849117895,0.020041776334023532,0.0007046667958422861,0.0031054407250688987,0.011215975474629332,0.15821090885055158,0.0014086780885527686,2.1126298658113303e-05,0.008999575613675873,-0.06895185938714954,0.19739163143487595,0.05124167745122714,0.00010376915575792617,0.009238239022553572,-0.008084906415810353,0.049929101684612016,0.0131622844006245,4.5580917534545365e-05,0.0049944018357393665,0.016002094066448588,0.014014828610338025,-0.03523031258684301,0.0022269578673569535,0.010967080448923517,-0.03467798915904883,0.23315992130824045,-0.00029551015787829634,0.00012239174145274644,0.019444919955875294,0.032398712889500636,0.17253512758827122,0.01102268632085986,0.0002907759342793355,0.010980946335539863,0.005424831430078916,0.04096455097008018,-0.046087111430822364,3.730259154248523e-05,0.015186335962818048,-0.006565057943887423,0.02677371612475208,-0.006172141262960915,0.000404125929644066,0.005074064190765114,0.032693664332926885,0.4356466957608984,0.0336349437944534,3.114292545796983e-05,0.027109075884754436,0.012287840808749508,0.14667275991858716,-0.04263496170827023,2.7990317276582612e-05,0.0022435977257716836,0.021834567236472896,0.06429172161769076,0.0227903622221366,0.00010939873214081327,0.0019931362955312006,0.005087865719841153,0.03670083980150726,-0.0004963943052986723,3.2022262613333273e-05,0.019843804910811967,0.007010379482260017,0.020403437256354275,-0.10946115919285616,7.61755455280567e-05,0.005864514222033741,0.00624740953019617,0.020208227376653676,0.016124245571699582,0.0001413579868617448,0.0012957362589130915,0.04889016687160385,0.04227378084381339,0.04536387083132962,0.0006610373357728928,0.0005219681012913382,-0.008919058701022864,0.03460013031283624,0.006902894334124953,0.00010849939008685528,0.012379342251607387,0.07808473158332449,0.2470368705478537,0.18976424889649507,0.002028726580403405,0.014992937025476742,0.001409161184112104,0.012605214409443935,-0.03081774185807217,2.8747006680965288e-05,0.0007391174987984555,0.011511663147101232,0.03350768135964786,-0.05541738497499294,0.0011232203565378878,0.0016368420013527743,0.0036976263843917887,0.02600007416695479,-0.004472824456741399,9.470525623981923e-05,0.006838846276133522,0.02774188157993693,0.04180377127782861,0.04532279908621707,0.00015662671411564036,0.0033620744508600494,-0.047918318793756895,0.06698922104277458,0.0905488248892165,0.00041058261698218593,0.006102568388300998,0.017931656163521693,0.0695360954045736,-0.012858152081985819,0.001998759051156236,0.0005890008444657062,0.006151201086280172,0.021616048250374446,-0.10017046688852305,9.130067616807763e-05,0.00923643604167744,-0.018399370790442713,0.02757067149431008,0.01992087952081139,0.001658948177633383,0.01453921394907665,-0.008223223015815715,0.026567185296511128,-0.003184392477722711,0.00012263447050566242,0.008491229951164716,-0.031545784464471115,0.0997811201627461,0.006762072548115029,0.00012816024609468434,0.005449455467505513,0.024181215390083124,0.11202936666289762,0.04182871142700216,5.268174716851572e-05,0.0317755428447943,0.018583054709304936,0.06615892209290113,-0.05451612704233285,0.0026622371695029703,0.0037553150224406365,0.0062733167307953055,0.026437077785322782,-0.0175388725266644,0.00011803867799263855,0.008547367335996004,0.001465209130467402,0.008380405356785747,0.0027927657048591246,0.00012679302840341446,0.00910674243830945,-0.00387205064810862,0.025014363405129962,-0.02827478962241335,7.321503481758773e-05,0.011784274467998724,0.013689531874749208,0.058103674202469306,0.006708870823516659,5.921509034437598e-05,0.006310633111302903,-0.03253715186337056,0.06204919245565748,0.02393116433186763,0.00025566589281281497,0.008294970366437084,-0.017079784011635547,0.06348243860144175,0.03408963298993941,6.690262358415464e-05,0.0009780623135555876,0.0026048060655331343,0.027517727495988208,-0.03297268747313377,2.4422724721935994e-05,0.016644680750506444,0.0017343084668306698,0.004394056222913683,-0.022936196525732658,0.0001379652459009193,0.0035035759262930146,-0.001909257337003688,0.009779645398954628,-0.004194354682111933,0.000307729641701169,0.010619408466935047,0.01823977604679335,0.08789175374275944,-0.027475343586189447,0.00011886203663916357,0.024704242513054066,0.0025946788940927772 +2020-05-25,-0.009701146648211268,0.06770580090413121,-0.03418720755983978,0.00015152481896161122,0.004410182483110617,-0.02710582447081051,0.09655620810544971,0.0352435520857415,6.735858356729128e-05,0.0026758604863019184,-0.043142749329703904,0.1162093809857432,-0.005271585686340117,0.000171736985049824,0.015447385093039117,-0.020796092862619582,0.021748121611944365,0.04109519738970406,0.0003227214643793773,0.012085713705559012,-0.024013827574595123,0.0552158198492821,-0.12296621939373423,0.00022755984814047103,0.00218356391170893,-0.00417180391424834,0.011314365351008436,-0.0023783341773816855,8.05082578144728e-05,0.0033938604857631227,-0.018664210738852202,0.07827658931854002,-0.011083412455776775,6.99628657674021e-05,0.014274401807630191,-0.009090608259892174,0.08816765523097547,-0.09219414329973045,3.5357558332977054e-05,0.018053263134609324,-0.01716048920804437,0.014563590563141974,0.005226797068941132,0.0009086695823301028,0.002772113999933807,0.015997648245608044,0.03667404500817643,-0.14100356294263544,0.00015253138583584287,0.012536394844582016,-0.015562413174319988,0.011268594649325996,-0.020114987421553127,0.0006750431627628777,0.0017645397175036466,-0.0051755954835262675,0.07779359785279706,0.002357463268920462,1.982618969381987e-05,0.002332206465614167,0.0005139444041351054,0.0018780639574801823,0.0051827552293482616,8.129368335830624e-05,0.029940500141716613,-0.015770404182232446,0.09647425145619487,-0.07099864466259793,4.601434293203594e-05,0.001400416042314929,-0.01015794156235974,0.008864263140535273,-0.13455209421183448,0.0022350438225471284,0.014964613402814055,-0.02852355453239026,0.19886048610612467,-0.011295117854148303,0.00011803403568949285,0.0408849395473362,0.0459766590825318,0.22734784471278116,0.02107843268699144,0.00031315171924478576,0.03515241364758519,0.002695728122041618,0.018953862702581547,-0.09011939648347994,4.0062616970914635e-05,0.001917607736297102,-0.029600900908253857,0.17307702442428233,-0.022211829386582078,0.00028187224626207845,0.01921193973928784,-0.006748558995633525,0.08709145690444232,-0.029493868788487098,3.2156274283297506e-05,0.004840159943464283,0.002464768903194636,0.0267196739728606,-0.0013884768003700116,3.0819583155635906e-05,0.001550827880044933,0.029804314653692356,0.07726051388585724,0.035269397146969264,0.0001242637063896836,0.020358635011890308,-0.0034255104304944614,0.02725070715127395,-0.01946998086500607,2.9036207660705276e-05,0.004641146731084806,0.011133016431265793,0.03756196391955721,-0.04488860347384035,6.571158476130205e-05,0.02092362969094783,0.009717403804586836,0.03827823662590799,0.02535959210619867,0.00011607719982987643,0.0031722133250781867,0.02006450077807096,0.01826257550832489,-0.10582252030648025,0.0006279743360044722,0.015770065803818574,0.0217471837762141,0.0680095813812165,0.006040088136518373,0.00013459190246645393,0.004913155276380511,-0.012120557939020612,0.038171630077478425,-0.033256222744861244,0.0020379854553140824,0.0033316104152794675,-0.02835699473723887,0.2611677986338544,-0.026149988704044846,2.7920472875816412e-05,0.004843654592212833,0.04298400545880743,0.12055361541482373,-0.0005932669228485858,0.0011657298386394265,0.017736771712487654,0.009363899891309984,0.08508558612442002,-0.014475864420519497,7.328690991250708e-05,0.0024520717961214016,-0.010407325342997634,0.016539203372993198,-0.004382231254758122,0.00014851486678648133,0.003354388288755041,0.0036730266609743237,0.0060376532019458945,0.0017469914053466916,0.00034918841817171,0.007678105870375105,-0.02857071737236785,0.12456772137996511,0.015733269945722855,0.001777730673467032,0.00735892972007651,0.01742344783958332,0.06871506629290769,-0.03847140888922619,8.1352799076951e-05,0.008821169848568148,0.06835901026189292,0.10530701251119912,0.09101895939803033,0.0016136734949575848,0.001723173614692131,0.03024243637851943,0.09528350335758043,-0.16546753052001403,0.0001257520563085311,0.002967363300325987,-0.02586115880436351,0.06546703363335855,0.004477048045386239,0.00016013478982645582,0.00605690222722716,-0.03204620945424674,0.13086284037943047,-0.0387703996452364,5.9768760513489404e-05,0.002609654440294469,0.053168952348172246,0.1878347852125263,-0.04490318451506904,0.002682873145302933,0.02841848296649342,0.02374671638866219,0.11370278156217162,-0.005158599148711317,0.00010388983271604681,0.002655674481597579,0.007102508001683231,0.044936897323126675,-0.13235739170382738,0.00011462238292026725,0.008393133806000683,-0.02200942308164246,0.12130861712380003,0.0055724523173322615,8.581549375344218e-05,0.010523959467671295,0.03852566272342872,0.1576565114574077,-0.037059408277196296,6.141657599611473e-05,0.022241077766144233,-0.022829496659776148,0.04515745577504891,-0.012623668511554238,0.00024648827480421606,0.01091402417123882,0.0034653877578794266,0.014495884384686597,-0.015799561182780163,5.944584382642518e-05,0.010094078745041191,0.028893926715387885,0.35430623084120516,0.021190325784259948,2.1040645655163426e-05,0.007708159082193331,0.01189421199517886,0.03982710238006041,0.01141516389190164,0.0001043916901093445,0.012730440959816722,0.006124612148507404,0.026301390628976663,-0.023686109725963196,0.00036705221645111445,0.0017863486668662398,0.06661140875091986,0.36522500346472786,0.08048079837387886,0.0001044623791322348,0.008194611966269482,0.0013902287550914333 +2020-05-26,-0.05766384704765246,0.3941227330615472,0.15056755298274932,0.0001547243657720945,0.019130256394528068,0.04645632328863553,0.1401094094025412,0.03896445666004524,7.955876986415658e-05,0.006938635782641465,0.007420382901397008,0.021217699406991905,0.0025589320537156915,0.00016178014788981144,0.0073255270688688985,-0.007530856993855223,0.007995255518078394,0.004402472031323799,0.0003178922272945454,0.011303090417752518,0.0032773291633269707,0.006483179687703586,-0.011202436522356732,0.0002645024969495347,0.009992904354902845,-0.022888049014313117,0.06377509008429891,0.03490870982063648,7.83618055158671e-05,0.0043742068055507635,0.010963133357517323,0.040928649542866895,-0.03719303692534041,7.859540152862813e-05,0.005294180235943446,0.002012411521850052,0.015351303918199267,-0.13750890165069243,4.495418618140388e-05,0.0056573683660562325,0.011074553361413301,0.008160808913465257,0.02353838853143553,0.0010464965424577472,0.0061833982072655716,-0.015084666962463786,0.04378005431122258,-0.04341175856367982,0.00012048176377948385,0.002881395273983518,0.00023820675801707346,0.00020661917406949814,-0.0043372192993801975,0.0005635180292847653,0.0010868606334110955,0.00477632003935387,0.058581366230684134,-0.012358947117581722,2.4297227078259995e-05,0.010101739979497306,0.016929913408038993,0.05317735346804994,0.022198945982205915,9.457558909601208e-05,0.01434126009576971,-0.002213230886531315,0.009303376865371474,-0.002729300419923425,6.696500826314957e-05,0.0004687887696243307,-0.03281904573066616,0.03070066376815096,0.043147991427271264,0.0020849764614174313,0.00858701903120666,0.044368819956619863,0.2600490868989907,-0.054488084575680794,0.00014040243921040822,0.029392897647789837,-0.006307696092289444,0.031847851265891736,0.00035974625133362295,0.0003066894637965528,0.0009474425995711887,0.02256228654528553,0.14083694021754192,0.008247973635432573,4.5126067158053554e-05,0.0019850023430867184,0.02197089994503023,0.0966659244914115,-0.011199335894467768,0.00037459436927365957,0.028085507227097746,-0.012928911518438604,0.17716307501152037,-0.013969166484275462,3.0284400772566186e-05,0.045743395145764046,0.01513096205418567,0.14917990363625713,-0.01264691277904087,3.3887375024687434e-05,0.008968775569542743,-0.011681058446413803,0.032288734070259756,0.010761136355076546,0.00011653434368408773,0.012482586621455878,-0.014735026922558968,0.10060267494544893,0.005228537637077095,3.383247591830618e-05,0.00877531889186109,-0.014104390975585414,0.0412656557778536,0.03861481564036708,7.577797042745702e-05,0.014696947759074937,-0.01093935155463796,0.03263129037094446,-0.033997498795617885,0.0001532872126311619,0.0026360090765196725,0.03623930811069807,0.027835302438289432,-0.004320107486643159,0.0007441483350707313,0.014284153398543886,-0.006411231449198566,0.02438915437427358,-0.033763058130693885,0.00011064472708382557,0.005348926660926729,-0.03830243221629724,0.13264449839675566,0.012243427007045674,0.001853345063526464,0.0016507465077386964,-0.01654560974460607,0.16399639921293166,0.01080550547866097,2.5943625062631932e-05,0.004190567812805721,-0.006629618622113591,0.020740749228330496,0.0026444595861334287,0.0010450459221477237,0.012770722584119782,0.040400335456846855,0.34476285051595296,0.06558735257638851,7.803512881767713e-05,0.0035352381609134007,-0.0034104125392656315,0.004994041059175107,-0.0006690623932986416,0.00016117593343978367,0.008776699268345407,-0.009505946341305584,0.012461337627523687,-0.0014246380934751668,0.000437859331163512,0.0056463628761885005,-0.02419644619565158,0.10441963604845887,-0.01809787224211035,0.0017960554910963669,0.021460599624674222,0.007248347333913683,0.027209714883478404,0.005858664462812641,8.546836095859562e-05,0.0031080835142999128,-0.027531792644588476,0.034524008195527346,0.0003477244207030045,0.0019823962649763555,0.0019561048803150953,-0.031976891666026006,0.10209469652213662,0.05044853962053655,0.0001240935187898732,0.011958462672940725,0.0202710195110876,0.05174189612892268,0.005942204384279927,0.00015881577124331357,0.01334026517823164,-0.037529019425238744,0.13847925262922223,0.007736919846739928,6.614491019704405e-05,0.009080475043735107,0.010294295711994394,0.02626909048094038,-0.010524646071117472,0.0037142374201754786,0.013841544934914034,-0.0015437941037874782,0.008520420349044665,0.0016574629935805299,9.01299079851128e-05,0.006209790633361378,-0.007194551453612777,0.03678019428216607,-0.000551261251831988,0.00014185690763162556,0.015883585469878714,0.0014663390025657945,0.009537714907953595,-0.0030455537812808372,7.271746797008514e-05,0.022388693642921703,-0.00487131480053695,0.024404505792523845,-0.007452099571186802,5.016762871303304e-05,0.010969798932458181,-0.0064785218963507715,0.011607677732551867,-0.000756367542909262,0.00027211969961048497,0.02384777254958938,-0.008164553442864975,0.03708270963629021,0.0016927441163893703,5.474889415057771e-05,0.026319618359080164,0.01696254385556187,0.16284713259390585,0.003002874691821975,2.6874608916486532e-05,0.0014932285155589856,0.010563834854393554,0.03546084003349157,-0.18710042304581698,0.00010413136188214576,0.000772788150577523,-0.00046143844380208687,0.0018349811493043643,-0.01887266826238898,0.0003963785438084567,0.007576126253232697,-0.04283219226740841,0.202454522248922,0.01797500363817121,0.00012117544330952437,0.0017170737262307307,-0.0019508855139291179 +2020-05-27,-0.03918388536890967,0.2665494256509207,0.041617015554009436,0.00015545916479331508,0.0096017333482307,0.01803577977841975,0.06471401213654943,-0.0016027339986140396,6.687243301195098e-05,0.0006572636948116414,-0.022319074462859814,0.07832628830310773,0.000896915949395891,0.00013181530497243681,0.014670586030548298,-0.010735352365260993,0.01298223577192998,-0.0010208132480782797,0.00027908382588331764,0.014051698692291469,0.00026566227345581854,0.0006530802866318603,-0.0009909977817538912,0.0002128438384794391,0.0002790570833393274,0.011639741121701208,0.03136297708311415,0.04289275238681697,8.103502686339856e-05,0.01665627408578385,0.03017822828353431,0.11863352277768063,0.0523660369305821,7.464077977249186e-05,0.0005940898306532668,-0.01715459098220473,0.1440480729647403,0.02006289171482117,4.0838664302789776e-05,0.013458867466780561,0.023632202179034233,0.01865741823027498,0.07144679629144896,0.0009767815170976845,0.0026729752823705507,-0.026104107610929836,0.048929009122699596,-0.12504985946153474,0.00018655389316156644,0.006483238598253067,-0.018298706000225356,0.012089800843226067,0.019438150624669647,0.0007398191880377,0.001081575034641021,0.030695688501917274,0.45760143412000404,0.007719043007573941,1.9989999883072438e-05,0.005124330321996786,0.010090435762759479,0.027009778033358033,0.010977755560796769,0.00011097877958977021,0.004432841752283159,-0.0001275541361801549,0.0006352617594109024,1.7906262300901656e-05,5.6520194960791666e-05,0.0060799776717728035,0.0384602472614352,0.03561174379562509,0.02238425409766682,0.002106404647599055,0.0014455476218218125,0.010781753243869362,0.07202514956318701,-0.0009544846703032618,0.0001231848579754589,0.021165349713968794,0.0005005668737075881,0.0025690110895525754,-0.004715626766650021,0.0003017201803402113,0.006354433155563957,0.06989774612913845,0.40553474130629286,0.11552335958211139,4.8550763372917546e-05,0.011826539238971331,0.0086224201511595,0.04786289910246513,-0.017678895790275827,0.00029690464218633375,0.0011350938416441131,-0.03181240325579096,0.4653045428877921,-0.11622123488703201,2.8371965138131483e-05,0.016439076109006853,-0.019132616612845703,0.21127626938007485,0.08503170007281877,3.025557133523986e-05,0.004515271590876263,0.024303127282933178,0.0710720946918231,-0.06296162852865789,0.00011015032978527473,0.00126958872128781,-0.011913763584047417,0.07293088403209552,0.0032448952127137713,3.7733742021192896e-05,0.003571224043770835,0.027078849640370283,0.0780913788386818,0.020606572300621316,7.687842934566887e-05,0.0017537660392669416,0.010061179205124504,0.03839501412775254,-0.1197850540985193,0.00011981816065812147,0.0019023487514517386,0.06836989332633968,0.0627547454876933,0.08053931597261088,0.0006227215440829706,0.0007837449951721921,0.008303377223749582,0.03172189764249708,-0.021079401760252886,0.00011017463440771827,0.0007169116486834111,-0.051505200046599156,0.1690607009401376,0.02142391772823224,0.0019553638764924696,0.006015702571416895,-0.0677910361205138,0.6351576443202737,0.17387850147306536,2.7445613155745523e-05,0.0070620072748662915,0.011016370862224992,0.030188569695357416,-0.0020188215290574845,0.0011930737228179721,0.0033280309070102335,-0.0037492937344930388,0.02375130431497944,-0.0009166884312044926,0.00010512055501873435,0.011508514932139753,0.018035853239950758,0.02451994504307471,0.01805291972920123,0.00017360514287543928,0.0027779743045076672,0.057938197779007675,0.08765533244941624,0.11648775348048501,0.00037939408400154164,0.01181213854168222,-0.07054267458429245,0.23249278464827763,0.08228669149829142,0.002351758831556977,0.0272006295692407,-0.019470807418119677,0.07907442971648383,0.02624603924859949,7.900203224587306e-05,0.011657156476981586,-0.013613501708750983,0.018586113246167355,-0.0062675078511104515,0.0018207841450582406,0.01883186245373098,0.04585216238549718,0.165289455706447,0.0719864119136754,0.00010990835523398348,0.013593574385658313,-0.011918355642151358,0.03362834143712334,-0.00039238205736374357,0.0001436717125050883,0.01066953904723409,0.032166468867586735,0.1229639193522208,0.05504267230604889,6.384687061820575e-05,0.00704061767758009,-0.006163962882617596,0.02213860305471551,-0.17934582895997817,0.002638929933583357,0.00846810631331222,0.0436367213075678,0.22432912326020515,0.08435293422687246,9.676248734277058e-05,0.0031078901783675667,0.007457317262193254,0.0390938909538159,-0.0020184415991716057,0.00013833577489697898,0.004714816194686659,-0.02102819736270863,0.11891622998653759,0.002707697157046196,8.363915007538982e-05,0.010738915273871923,0.0072832828564100074,0.032406412906917696,-0.0071150024447267325,5.648636270287102e-05,0.011772625266149323,-0.02607319063776881,0.054330947069391504,-0.1547606538153269,0.00023397868650803014,0.02343201557780136,0.03068024713333234,0.13283338777438722,0.08356987141811593,5.7433592235192355e-05,0.00014178369700757149,-0.012587160586356273,0.12974642726426502,0.010420234908733351,2.5030161430952857e-05,0.0008181003814376111,0.011743840073362008,0.042001983222667016,0.0016592490798351235,9.77348151386459e-05,0.0021625432225613403,-0.013361492779537302,0.060098751339156056,0.01769879195966589,0.000350443091909512,0.00015723042624206244,0.007418443131734496,0.03719740727471905,0.0006552765484538474,0.00011422782248949893,0.00034816142639691023,0.003006096989141277 +2020-05-28,-0.01900700781874008,0.12868960111559796,-0.0012177607546613478,0.00015619131543808526,0.008362335956394797,0.06113605960212272,0.20260460438690703,0.06659313717223675,7.240334976222181e-05,0.0077732573068208,0.03475969863044123,0.12444041606144572,0.02280385610778791,0.00012921464907131243,0.013981989089948884,-0.004778036619301225,0.004830945696459415,-0.02914661096636209,0.00033379911007564594,0.010308716478854594,0.01569059183399471,0.03701799069616319,0.00426961344429323,0.00022178095816393769,0.011664903612484012,0.029989026309663363,0.07474793617363226,0.13508006422333746,8.7601168450517e-05,0.010244549473046453,0.0014020658764583615,0.0056675307147834525,0.0017430430159282816,7.258792675459828e-05,0.012867098815507242,0.014374549186666837,0.14613723536578413,-0.03014688729534345,3.373121312867594e-05,0.011413404195579936,-0.019489588648495627,0.016363767116118217,-0.008977232272802716,0.0009184682952015875,0.01903147412070155,0.021393337587307305,0.057372349241355494,0.02324263136876691,0.00013038805210762532,0.002654882426812832,-0.011599391582141816,0.008709047543537697,0.0007782825161736695,0.0006510118694039842,0.006130722784009299,0.0029551758247971715,0.037948130325295676,-0.0020902961018847465,2.320682521483873e-05,0.003090810625696278,-0.019818502848994786,0.06430186534580912,-0.009677046229339067,9.155842423733796e-05,0.009057821807088692,-0.005730736774374157,0.02966086307609576,0.005236883311700037,5.438617240635079e-05,0.004098472225752706,-0.03684644262659601,0.030768464111251885,0.05997282731568951,0.002335676652810661,0.005350319762514465,0.06976038664930377,0.48741525368337174,0.044756829034716915,0.0001177773749589069,0.008625129493052107,-0.010940873714764258,0.07319914885540464,-0.005113574476758642,0.0002314484122970728,0.021980687220930925,0.04966280086242315,0.29447069931582615,0.0343311201790613,4.750617643385209e-05,0.014073475636433914,-0.014474585072695688,0.08365104602726656,-0.0023237118528829587,0.000285181634977398,0.016664520188470398,0.003704495369757225,0.054330170618621054,-0.006644268409181862,2.829555512314777e-05,0.017928520932594134,-0.0010760438304347247,0.011410005017494758,-0.0062954332109457275,3.15083626544025e-05,0.000522815154509028,0.04170405745348327,0.13659636324193364,0.06598651428994327,9.834718401707305e-05,0.006940562150893663,0.024434438786147202,0.16767330805669595,-0.016689142637015264,3.366129438145814e-05,0.010426781028551987,-0.0038693388005573946,0.01335009979705329,-0.00606459894705326,6.425835868618955e-05,0.0059655676399105045,0.015630838080537394,0.05495404935524422,0.03333846466387887,0.00013005622989812138,0.00474744532499601,-0.10989650157070992,0.11623934360700758,0.22025759709077553,0.00054038872602781,0.013836370717973138,-0.027067247265330746,0.1026806494093458,-0.035674397720999555,0.00011095362421205797,0.00699033943060574,-0.03125489798408817,0.11866329460473868,-0.0083470704990534,0.0016905221222691953,0.006408794151377963,0.012100806831585598,0.12377291959918699,-0.0005857251935087546,2.5140325027079578e-05,0.005731647903201234,0.03293405438346104,0.10174412036459189,-0.021941996556233672,0.0010582959805622608,0.0007638756558645203,0.012791477549581539,0.09167934156048277,-0.04281819765869357,9.29126550687963e-05,0.011587614785662864,-0.03551689938418516,0.05839904441330767,0.04326174793499334,0.0001435405779252111,0.004189958889134736,0.0044572772163791975,0.00589816589619943,-0.007083419413597938,0.0004337670667294576,0.015153490696053292,0.04248332324627654,0.14432306671095704,0.02298442601902497,0.0022815662006673053,0.009724689588427433,0.01501858817798995,0.06664025383121833,0.015317271338042471,7.230741513497845e-05,0.007864459369616151,-0.04296286962856695,0.06462133846215085,0.04497952224157858,0.0016527018922782516,0.03343240820030165,0.006128596743860214,0.02137450933776187,-0.041499298821961565,0.00011360067935172365,0.003948137502261326,0.018086470713691485,0.0331435085572402,0.01605053415350461,0.000221215587227484,0.014185273466718398,-0.00413873260031192,0.01843029582061933,-0.01377190053084702,5.4808635095763185e-05,0.00851121772188581,0.055496410704013927,0.1780783495215868,0.040167475721471536,0.002953737057114447,0.017654233595212548,-0.04756622804909893,0.2569817569038463,0.11303785005749216,9.207399570141062e-05,0.008928039419336302,-0.020031667187421498,0.09536872228111562,-0.025397709737653342,0.00015232525588162608,0.00895667174004525,0.005704754729716257,0.03013260731016287,-0.008861775970187412,8.954657179483667e-05,0.002988065202419597,0.0020194578378325665,0.011389570588376667,-0.14016412406337092,4.45630425560489e-05,0.004292238426220296,0.02401876326432095,0.04327736092929018,0.011073834949608192,0.00027059468767904807,0.013859895208014918,0.004762513846365445,0.018601673318845772,-0.08372322839114628,6.366468786496421e-05,0.004690896440650757,0.002073850288058597,0.02238055716575926,-0.023954254790642816,2.390769973074598e-05,0.020284731080021826,-0.028859314844101907,0.0961167475413051,0.10897402741004285,0.00010495325549067637,0.0018573549277981188,0.004472833458980905,0.01909001710101532,-0.0032979862650426824,0.0003693213220079488,0.011918216458946161,-0.02046517299624772,0.11479978554355759,0.00017891391994427673,0.00010210479539848145,0.02929739552654849,0.002043803496276493 +2020-05-29,-0.01262912926948225,0.07832419765293076,-0.015264746777093519,0.00017051556870971595,0.0019882238071492297,-0.012938660182113185,0.04960235722455384,-0.017334933533210948,6.258892864848155e-05,0.020020843364473753,-0.020616699960007832,0.06805055811718672,-0.006919405416964669,0.00014014727687906498,0.04021863914492814,0.01244562890714453,0.010529707376769785,0.018628696733091223,0.0003989040094859378,0.0034567234460834767,-0.01531405043131057,0.03667043303955861,-0.034552559408389256,0.0002185102463719755,0.0051623485994534545,0.014882679233743956,0.0430280393166752,0.02735921139080729,7.552249072920006e-05,0.003763097707338102,-0.003365497221629953,0.01372019794255818,-0.1008083025011049,7.197450960968869e-05,0.00011525266490511668,-0.012356270213021771,0.12210436209093053,-0.04321966082991797,3.470202613317766e-05,0.009167718410563231,-0.01853768167818316,0.015394945440132275,-0.04325282206175212,0.0009285858315694078,0.0034010494918021526,0.005701535525490677,0.01481772338855805,-0.10238964942238915,0.00013454644826123362,0.0070287860817065655,0.01211168592140207,0.008576511071306997,0.01564665969000039,0.0006902688986935867,0.0027682485254761787,-0.010093509749658976,0.12521288113728238,0.024988532544985422,2.402237750708024e-05,0.010800892657489163,0.008453151000503596,0.026259740326481325,0.01150928311585159,9.562671513471566e-05,0.022580965646989783,0.00885523481446934,0.05357250045956275,0.010017813757044896,4.6528599756884746e-05,0.0008294343994133021,0.00691642104023416,0.0059650814643871135,-4.6868851212247016e-05,0.0022614553458703596,0.003919227991141489,0.03458230312235617,0.2471116329368881,0.004721360118134253,0.00011516296304351389,0.028432979360019924,-0.044308278772973365,0.2629792739342256,0.00809051683687747,0.0002608985043437801,0.00458192539641228,-0.015162546734878714,0.09091140660402448,-0.1528238296532912,4.698018592209461e-05,0.00033169306990336466,0.00975434007744559,0.053036861649445564,-0.0375970399232682,0.0003031146190541375,0.0004508276928167779,0.039070597458056765,0.45977914851046103,0.05435905909860147,3.526395446265764e-05,0.006823835567749537,-0.0021937900038074133,0.021788075637492653,0.0035759782818719486,3.364014724506312e-05,0.0029351707790197285,-0.012711946701443889,0.03592160118230198,0.009286480243898446,0.00011399324908464401,0.002909595172365385,0.02692891026333381,0.16622204439562566,-0.07505369960574354,3.742161580597668e-05,0.026426802725743548,-0.013288520412309318,0.04117717522705349,0.018624392544568328,7.154799363011647e-05,0.004202619792500791,-0.008643756377800238,0.026565886328655166,0.01779275343875201,0.00014877391904487283,0.004172303468344696,-0.03667404634854842,0.032845050836876694,0.018816680569752435,0.0006382112457315615,0.026748770407353538,-0.01992582301877711,0.07734073665625094,0.02733760041357019,0.00010844111473910358,0.01831536823382077,-0.007802127732773552,0.027535493818826355,3.3950881940206614e-05,0.0018186091059495717,0.006799224837484506,0.0053394480741554015,0.04712692924532426,0.0006371792356488262,2.91346241778158e-05,0.018763020199170324,0.06237806557576334,0.16266691086119614,0.03794182681704954,0.0012537298125959912,0.0012517448611930283,-0.007315464358814156,0.07041539189692066,-0.039916907055416534,6.918308774126714e-05,0.015283544544951835,-0.011638366518956656,0.015812835840235427,0.0019715270112916393,0.00017371113340689898,0.0035963636387193344,-0.0033364767524309805,0.004736258889420734,-0.01803438607933288,0.0004043491956858157,0.009168661862030062,0.02125597053431559,0.08547964929489675,-0.04640007361883799,0.001927385328941477,0.0028459227729990483,0.03808132652697636,0.13234530099573447,0.11472883614715954,9.23195996808179e-05,0.005865170660891669,0.0761516783400762,0.10352663470843637,0.09163718254421067,0.0018285404598573486,0.012639276222862796,0.04853929934921748,0.17509016152248405,0.06626226273440726,0.00010983678094337313,0.014287290890317647,-0.015120505278153121,0.03914965484962539,-0.012416398746532938,0.00015656646375721803,0.021648096593708414,-0.04854647411940523,0.21104380252954374,0.03474855111304247,5.61434394495973e-05,0.007134996836406117,-0.05751388972663973,0.1793150818601225,0.14045417194584434,0.0030400027714956547,0.0057661136394345025,-0.04995828349942508,0.25588896691045526,0.09926791359186656,9.711728167354319e-05,0.003367974375680861,-0.021301159091074277,0.11481940728325195,-0.010823333343295456,0.000134539162453339,0.003176003424135372,0.00822461939944303,0.04442909784422101,-3.503976690557806e-05,8.755823808110006e-05,0.012723468572279984,-0.06516198183743273,0.28411015055964406,0.11226239780134786,5.7644108784288346e-05,0.005060189513986814,-0.05153958151984495,0.09551354873008502,0.013570622270552375,0.00026309058145347164,0.005800128959654236,0.0048423606114173234,0.02005826059433979,-0.0005185280175270942,6.003136726145645e-05,0.00033837596217511115,0.0014761807212600494,0.01809234144264211,-0.1538468495012012,2.1051160352867322e-05,0.02240217815113293,-0.012625751596544613,0.043130218485165815,0.01914123695315337,0.00010232565822654215,0.002524915703017815,0.018994337693568376,0.0685454472266454,0.023879081103730555,0.0004367908292736742,0.0142212537448074,0.026398276196836216,0.14675790568760083,-0.02151671306696033,0.00010302576759091925,0.018733057936930916,-0.001982602192415381 +2020-06-01,-0.009169460054882037,0.07033498747053255,-0.005821831292629373,0.00013786655779532523,0.029168958410691264,0.0036788161110741535,0.013741622528529625,-0.05765563739205567,6.423631094686079e-05,0.007043815503492678,-0.02713458753045094,0.09197629575160811,-0.0923346840698416,0.00013647230097149193,0.017313262219548473,0.007381135235948228,0.007992078365103761,0.004376846206431202,0.00031169604028339167,0.00025570293608907194,-0.016430064537837973,0.030838601502679523,-0.004134886745500457,0.0002787676452590864,0.010975899625930778,0.01636219578689694,0.045568829016496115,0.030168202134285702,7.84007931354707e-05,0.009221580266341668,-0.0075924745361577155,0.027454245371517395,-0.0032996104793721055,8.114535944974282e-05,0.015139530687768823,-0.02551303472851297,0.23064081371288356,0.017068534043655426,3.793364478539182e-05,0.0058724121200720075,-0.024634843217330463,0.020282971046050244,0.02147372688933442,0.0009366191187601179,0.00025459331410950295,-0.016797966122167354,0.03540723868015254,-0.025575574351790583,0.0001658924147645264,0.008479899337499404,0.018768687234317752,0.012384921002707064,-0.12766238998988574,0.0007407386652715551,0.009345936188322506,0.0013927339285353883,0.015809213028896162,-0.03038276142597568,2.6253106081757894e-05,0.013042030369597528,-0.030199501590604645,0.08884373770378327,-0.1229536117361983,0.0001009773553400769,0.015201317065270383,0.0006380583227834251,0.003343213611488794,-0.0025547946307735913,5.372272951588523e-05,0.007436624789874949,0.04374763156903408,0.03781237305496291,0.017354777140538104,0.0022565428484235934,0.021017593285949022,0.04280008537244576,0.31259330907788524,0.007650252882425047,0.00011267227546326318,0.004634527969039367,0.025669243580152826,0.16476829729730755,-0.021940563393407,0.00024123907205557635,0.036264025859048324,-0.0212399613102714,0.1345342929048325,0.03260191212085459,4.4471489618190374e-05,0.016759692012478993,-0.004275005393516135,0.02595881746324822,-0.009391857048056491,0.00027141795242453484,0.011609155092174184,-0.0033215390281031523,0.04232825038733114,-0.03251379234826846,3.256411452833843e-05,0.0032208001071452703,-0.025516353096019066,0.2618493227809401,0.11442056460627477,3.2557335682798913e-05,0.003974887265658001,0.007010265272174683,0.0226193534820249,-0.009490016268311236,9.983366630251315e-05,0.010571479544784903,0.012568314999622776,0.09043167958739985,0.0012821323430737617,3.2103237811124865e-05,0.009277035559408751,0.004135670122853001,0.010858755029350787,-0.015715887307862147,8.443903027428138e-05,0.005607031416601918,0.0031762481797878135,0.0119763612601373,-0.009495116093893276,0.0001212657443830829,0.005108004388377155,-0.044587820711972856,0.04255032446789211,-0.0040963879171538545,0.0005989477411810227,0.026384581039984714,-0.013526105649765991,0.051413175830953395,0.011736679827574543,0.00011073485797325531,0.004003608187927998,0.02543310584375995,0.10189709774157071,0.02329572431376428,0.001601978779169001,0.008320591077710254,0.007681420684123864,0.06643001813875538,-0.06163712615587482,2.973441337422371e-05,0.0008894217310430586,0.026835126613605466,0.07013945206188361,-0.003585909778998927,0.001250871073949735,0.005788344330974311,0.009256547346027265,0.0720847688600175,-0.03363700722378156,8.551280645840436e-05,0.006283413414404999,0.037580995067444334,0.06357918017589628,0.033722259372548455,0.00013950787959075289,0.0032211415407625253,-0.013249912594442581,0.01925003028207813,-0.06501257936635141,0.0003950804230664351,0.010837512567351751,-0.03455354083067453,0.13708958794649573,-0.005204958255142778,0.0019536125111167062,0.005558582800241149,0.030560672568334394,0.11189131250935978,0.008353285961319736,8.763082693570237e-05,0.00957764721920463,-0.008281199351320191,0.009774337546016643,-0.07964479301277949,0.0021061199327662523,0.009873027947640833,0.006618959858177453,0.020562192963897233,-0.0019910884420199543,0.00012753704589374507,0.006353321480248389,-0.02091593438577461,0.060548108353817534,-0.016702660833477982,0.0001400351520888055,0.013371956125340324,-0.026951574952914312,0.12407983516290187,0.0074783281226262705,5.3014768101282994e-05,0.014432456443762138,-0.011065946610554505,0.039148447380301286,0.019160146824279783,0.0026791195025186944,0.009130654769761961,-0.010392443402429974,0.04921611391503577,-0.004686966666852487,0.00010503908252582943,0.019724419818240885,0.030994989225749742,0.14533625529555141,0.05652413534739726,0.00015466010762564203,0.0051276367618395755,0.042272355183291956,0.3002989967013374,0.04114243479283434,6.65811454659527e-05,0.006542793411280696,-0.06214025318331623,0.3185333185016415,0.0430696533893961,4.90304125137237e-05,0.01511890038285852,0.003424943538326444,0.007395944984898483,-0.15117385949196674,0.00022578190782833433,0.006483821333402038,0.023242087787043994,0.08263526114629022,-0.029290657981242064,6.993975541247056e-05,0.011499202790349692,0.0003677089036898111,0.0033071690276408948,-0.000964734700091525,2.868659746822039e-05,0.004442030393265142,0.0012694050043164122,0.004300782725621378,-7.276836762514089e-05,0.0001031719568797354,0.008704534005753535,0.009875280223035493,0.04460976127273021,0.0027850675450943156,0.00034893738324736956,0.010224789322053198,-0.016914938308167125,0.0826617982409718,0.0006984938591072888,0.0001172026321944674,0.013303441285314292,-0.0006430440083420596 +2020-06-02,0.001185199045467908,0.008013504577283849,-0.03193057975023738,0.00015640671246430377,0.01554913408305999,-0.01899642032150239,0.06366418399737875,0.004029043017074221,7.159572973815423e-05,0.003472617134131552,0.0062966480489549965,0.018619585430266806,-0.019151171692455157,0.00015643596895630608,4.0596946421776834e-05,0.014789179003524123,0.014376150805743924,-0.055517318860389214,0.000347191674122764,0.004700086591727614,0.011464149607987075,0.02634592348132491,-0.028862741492268296,0.00022768068594960995,0.0023058800057699164,0.009126470182172391,0.02225636847593079,-0.05378119675120199,8.953550266846877e-05,0.00215798394016355,-0.01975423064381746,0.07825381420770018,-0.002752618925040983,7.407036085495104e-05,0.017751559325551197,-0.0004959017477663291,0.003947243976436334,-0.0019152297054685712,4.308243909713266e-05,0.0006573668099933831,-0.009982578991212632,0.00786104063008662,0.00022767380094593947,0.0009792813893744745,0.009733378146539115,-0.031236844396040662,0.07371740491273679,0.04326869997266959,0.0001481695637852877,0.005575781764958787,0.012259523266756635,0.009092443503399739,0.020060610106483478,0.0006590484291767754,0.004978852125565069,0.008262787309034646,0.08585403259761158,-0.15246173176990166,2.8680628509812127e-05,0.02197132968498492,0.04471654431622523,0.13034514096049837,0.0937240077486779,0.00010191178908556865,0.004483949811301354,-0.0004084639948772455,0.0018989759303993123,-0.00866969775672965,6.054748925415988e-05,0.00378296085879842,0.008281058485648331,0.007386288749851721,-0.007155749842158292,0.0021866664573393815,0.007622488339397426,-0.0403821943452322,0.24692126006496742,0.039653366853483446,0.00013458093392990257,0.01958044524615255,0.003254338506256456,0.015939573688423917,-0.011092470068714234,0.00031615077811669625,0.01302716641419941,-0.01811867966656558,0.09629273326180623,0.022937476704665814,5.30022112280372e-05,0.0014442565131264134,0.029331618790793264,0.17417069220966677,0.0007155617116127661,0.0002775541732109993,0.0007923554389811694,0.05501200322592147,0.6656987745273282,0.08233697238701615,3.42933517099819e-05,0.02838169240891047,-0.02028175649145973,0.1789695999885987,0.05039401108721752,3.7862388361321954e-05,0.01024804351690611,0.013370218855075725,0.03658561441065873,0.001616275078944206,0.00011772018045263548,0.0026396899182235256,0.024173931848562927,0.164633331782841,0.007774347792252644,3.391734915193964e-05,0.0242126214353292,-0.019446707150773537,0.04890812752874134,0.0456332683633312,8.815408063725563e-05,0.005471486976062534,-0.003603890467197371,0.011399350041094469,0.004676111446467796,0.00014455732025055846,0.003506770414304316,-0.07589870732403918,0.07289283699868461,0.062059808572842844,0.000595148149063028,0.004573149975370846,0.00768062030467894,0.030935307356432736,-0.008344781232055896,0.00010450278627656271,0.0036482647711101692,0.019019039236941992,0.06685474249545117,-0.00040457232265710016,0.0018258938621545516,0.023319804830414605,0.04462048873107916,0.3671268955489105,0.05848909776295606,3.125361919340736e-05,0.00390962795779076,0.001489359056825913,0.0037442859242751104,-0.012762001516328572,0.0013004740039046071,0.007643216253527148,0.00782347934004091,0.05536114708205286,-0.004197104189564202,9.410669104937415e-05,0.011207220337613504,0.0165181448637163,0.02398042876323586,-0.013106282846125505,0.00016257348401304777,0.00442120781924202,0.028876720017180828,0.039916510337985205,0.00731486183181887,0.00041524002580216074,0.007957901218975976,-0.026504921745496568,0.09659197374454452,0.02106702943268016,0.0021268449336264003,0.007306447313775546,-0.04990243001331396,0.1876817717355638,0.1541815310262209,8.530804120918785e-05,0.007692912822092468,-0.04629677237576425,0.052859507200142354,0.05921127962239782,0.0021772324406300024,0.0016871763976453286,0.005390075617697825,0.018904920630132105,-0.0011221901470375782,0.00011296295279753065,0.018167960854511837,0.03695040964115914,0.0964864968876664,0.032252429182541315,0.0001552433817653898,0.01659778994505219,-0.02405047065883,0.11344785378846461,-0.06823921760886212,5.174176277812994e-05,0.00665749550535708,0.006665370855224394,0.023399764666805246,-0.03582745568027436,0.002699795607547429,0.028553464426721166,-0.021414514703946924,0.11533436306690846,0.009417180946856526,9.236131040628285e-05,0.020383384107795596,0.017191861844280808,0.10941454070451562,0.01507568228581875,0.00011394851119119415,0.004934356140747593,-0.012422030720235133,0.0676233505977675,-0.007062950813764618,8.68849613602988e-05,0.020405590416595988,0.022523324084992902,0.0910473621936924,0.0017805952912663956,6.217453025673325e-05,0.012416702161626495,0.024252443876987988,0.042233288785343166,0.01056336532851493,0.00027998192827542105,0.01959235931665125,0.017603961342417596,0.08170894620843357,0.014973626504260278,5.357413560199263e-05,0.0029539912844056956,0.023510484380433624,0.3068513883291662,0.01040651374596014,1.976809273688787e-05,0.008573221750363293,0.007029192801913301,0.024666889763946178,-0.017375015681606744,9.960933190114767e-05,0.006919907001017262,-0.020270517403706636,0.09825299058499684,0.004438282055559008,0.0003251973717492504,0.005869721834788096,0.001490683726908096,0.00764642856859375,-0.007704446177662647,0.00011166026923921107,0.0010720104580340844,0.0009039782159653573 +2020-06-03,-0.006930610482391623,0.041919136334000635,-0.008569340213402535,0.00017484199318914062,0.003248550501719168,0.0041692275391129775,0.013537076913961044,-0.03467561827308885,7.38994536977305e-05,0.021608905813085853,-0.020808953664025152,0.06443099166485278,0.006401150711907366,0.0001494006998790824,0.010717817869366986,-0.0065242584768050544,0.005409848887008038,-0.08494241721771649,0.00040701824810258826,0.0020259836236016255,0.034245238114331014,0.08157048701037327,0.010331300242472198,0.00021966704474761278,0.004873536645497903,0.003954619988750807,0.010151784519391159,-0.009478599326659457,8.505681300659833e-05,0.006618170614309956,-0.029965099985486292,0.1105250601701771,0.01478217594764027,7.95508503503321e-05,0.002672774185117723,-0.01650450508606731,0.14574769163668197,-0.02337983550449386,3.8832865202088613e-05,0.0006426497283656457,0.006057816350020584,0.005001704475628954,0.008368642566520937,0.0009339913663062707,0.008899227922207752,-0.018303046621681127,0.04673360673354598,0.008824398168738824,0.00013694808783909355,0.014551601720541091,0.005829046412001335,0.005168184794772101,-0.042889812668782876,0.0005512947256641152,0.0012353635802858044,0.005563918107362375,0.06381977463673469,-0.0033265546672305913,2.5980544714595816e-05,0.009043332396037313,0.026965408580999002,0.07069006361214338,0.0016448814544692215,0.00011331820082160232,0.011088497923620617,0.019577583664424473,0.10399676233650829,0.047616229855848735,5.2990874665363066e-05,0.004618949378684578,0.014469025057912439,0.011073467329891869,-0.08561536623565452,0.002548464643102109,0.03819736899862195,0.013640500509404192,0.09009334135686123,-0.019073028241001638,0.00012459187444289937,0.0018715453310891989,0.04576540192298317,0.26574924460264515,-0.061232146876818806,0.00026666957821761396,0.02509312391174512,-0.02180754322836886,0.13680250731574817,0.004187574137016541,4.490282250993369e-05,0.003998995957419608,0.002937596554615836,0.013512130893078273,-0.07194492454651473,0.0003583068524949143,0.010510886423781104,-0.010439052643890103,0.15138127622772377,-0.09430789312784431,2.861667404382118e-05,0.0014345608338653427,0.005015730286436219,0.04586440872929888,-0.07548086698472671,3.653760571269615e-05,0.006801162556146236,-0.01385901163898162,0.03582315276558904,0.013485586390284323,0.00012462099379092594,0.008653122578549522,-0.005058640141184318,0.03213972961060701,0.0018228614807440772,3.63566570246641e-05,0.01127479489606738,-0.005136205002474476,0.013125286594462498,-0.0003235516468133418,8.675828064298471e-05,0.005004537757176635,-0.001413467877682987,0.005364157178004125,-0.006209472899685872,0.00012048501719066485,0.00018656789533832985,0.01681881886384269,0.015416774263199208,0.004734948451324755,0.0006235589847900256,0.020302832652207545,0.022980838794905596,0.0838401417018818,0.026722230563432668,0.00011537185665486437,0.00846690025309911,0.027853039747281757,0.09724482610541643,0.00857684658245802,0.0018383375980181571,0.03201894483895451,0.019701204516741563,0.15488927845456654,-0.030006172129612322,3.270797205799367e-05,0.0009544496558970097,0.0010175703260116578,0.0030497889572485386,-0.11263312154205544,0.0010908522103236537,0.0013526535284687292,0.0038809468001748597,0.03329717455276012,-0.005418821906236366,7.761683866168202e-05,0.02155872344640072,0.029267997362891277,0.0481381834031293,0.0315740866734334,0.00014349894107726222,0.01018993081109363,0.03677824464620164,0.050843409052213816,0.039501011107816196,0.0004152027763497187,0.01948167183589257,-0.037806571938711155,0.11178499933010166,0.0263271221203397,0.002621404934951277,0.012758630586528437,-0.01325749229857949,0.05718319065669184,0.009471121018498363,7.438465787216683e-05,0.008648728401557346,0.004612263415762975,0.005631398859260112,-0.00573283575304853,0.0020359870252924126,0.004861047873625073,-0.0013499558260350224,0.004518378642425993,-0.007463505934568603,0.00011837308653055637,0.01582199301140757,-0.0013891888176166477,0.0030180317505705467,-0.0007577095535852891,0.00018659407551494312,0.038479169344408364,0.0020378125535360685,0.00804440539002167,0.0032349219236871775,6.182785930853803e-05,0.006853130945252639,0.05706293379313705,0.17551658865217984,0.03327555045828554,0.00308144190996253,0.008611623712142859,0.03987808557817058,0.22441698730336263,0.05256742265266079,8.839325849647628e-05,0.030393353323391582,0.042388912380728165,0.24239793576154867,0.07333244665074497,0.00012681894641410348,0.0022696865087511744,0.009246256578539032,0.07159664398328379,-0.005350244922552004,6.108322716397846e-05,0.019777548323580578,0.0702852805257005,0.3870595537435095,0.08542996399953136,4.5638775732363815e-05,0.029694443986570423,0.03854373091629326,0.07219409226595838,0.04081127693583071,0.00026030438530736793,0.0017676525887496803,0.00011552972395921763,0.000555433346633332,0.0018626057883624927,5.172210142080167e-05,0.0005463026909129241,0.016132790892430176,0.157063064029044,-0.0406018122575967,2.6501272306949934e-05,0.01741565450920246,0.016497740125722648,0.04693026786881036,0.011380067474786884,0.00012287976997846475,0.005299445453999038,-0.0007651442206338317,0.0032218299478472055,-0.0008012341239628927,0.0003743420885553774,0.010724533234385589,0.09348410210759688,0.4528763513288778,0.12737706862438125,0.00011823060560791116,0.04456165213970772,0.010674823663749156 +2020-06-04,0.0246007871607199,0.20134645791210226,0.009835954720094834,0.00012920865140552296,0.007365629566532866,-0.051078251322226674,0.20399757618347222,0.10017024165717511,6.0078840160238306e-05,0.010262191798056298,-0.0003370453715273566,0.0013309017837920148,0.0014757018555982423,0.0001171492641290217,0.002224039815960406,0.026862759399752034,0.025861165383486415,0.09583247227698316,0.000350566479197408,0.0007838394655615417,0.015522639880616215,0.04314089123235674,0.011627281027993045,0.00018826701707291157,0.008706718595144986,0.0013859860210826771,0.003281044782073529,-0.08365089963672519,9.22345072343218e-05,0.013329323808511762,-0.009586128285905833,0.042172807234482385,-0.14493877192258775,6.669612171115198e-05,0.0023596111213357524,-0.007796912594882931,0.06902470765278794,-0.004390899043918655,3.873617233879087e-05,0.02101585552048921,0.02504513700183975,0.021111305704508927,0.07299199008539328,0.0009148567646593029,0.009036325900806623,0.011324722265275752,0.02806614247518735,0.0124471322688024,0.00014109340706510332,0.0026473827032909426,-0.011142742318934112,0.00684828094681898,-0.011972888358591954,0.0007953071317349684,0.0016764785973682268,0.017978197170478424,0.2525023563413879,0.02008095012096171,2.1217953497208778e-05,0.014356696871049334,-0.030415616107731046,0.08371052427753013,0.009571195335818418,0.00010793631675994574,0.029635368549498962,0.0009933159378138496,0.006110168426860219,-0.014886694003576732,4.576105626872365e-05,0.0024706852058782457,0.014477292398250805,0.013896804757773062,-0.05222096418211891,0.0020318674006702922,0.006916907222776435,0.07106370143849208,0.34693445025415576,0.017439197177874382,0.00016855921702451366,0.015302567375126587,0.07051275047924581,0.4265672211647858,0.006796915709072437,0.0002559696105093764,0.01284611582956786,-0.05994652956743154,0.4150776931697387,0.08314443953485819,4.0681373515667335e-05,0.004717630306158903,-0.01202981838134222,0.06226096824065693,-0.024374638754672023,0.00031844175436702944,0.03707691519845438,0.07574879775042732,0.9581285700597735,0.08931872801548105,3.28081834859728e-05,0.013087170790129301,0.03823898127751741,0.4223472912494967,0.1849516019383582,3.0249507603021557e-05,0.016208142963493773,-0.006809517658855465,0.018267128833183505,0.0033716535964958922,0.00012007948441760386,0.003312079646275751,0.05344789328508738,0.36726769916357427,0.04227949829843786,3.361555093825466e-05,0.011744981865757148,0.006125042500991487,0.01585806934589187,-0.13316510168012366,8.56320175103637e-05,0.0026072619002534313,-0.005104467211977462,0.019892772108096524,0.012400585345341697,0.00011732855087799058,0.005923110796326874,-0.041550424421820775,0.04357465381407815,0.009442554615229205,0.0005450258240412045,0.01778495324063979,-0.02595548402233318,0.0897636242020136,0.0030134399614952447,0.00012170677715381533,0.00635607427368177,0.04277361748546124,0.16633439368113706,0.04103152425952819,0.001650490757011156,0.01551712273526311,0.03622724934783696,0.3475301268114431,0.00354740945486736,2.6805573095888388e-05,0.0033274999173237207,0.051462867592021865,0.133280870206374,-0.21711645532905335,0.001262401297582827,0.012386901708416756,0.044816476799996875,0.36575246067309986,0.0658645463544199,8.159735826136072e-05,0.027840551856743136,0.01867462604177254,0.03015917238610842,-0.018750507374790313,0.00014614295364661273,0.01579312545156683,-0.06152174382173828,0.08490925416930964,0.1156339069401647,0.00041588908709347107,0.008228796205967042,0.0043108557026761505,0.016462381485835283,0.0006295171157962288,0.0020296500586988488,0.008897561650377148,0.004563249841651547,0.016315377739166654,-0.04011716584302598,8.97361607068997e-05,0.017021897362281137,-0.06654439559530473,0.08059588532251329,0.09072865856523497,0.0020524652193569947,0.02059884639910963,0.014613560817588188,0.053607948332975115,-0.030308915014206548,0.00010800476131248761,0.010827441627569177,-0.04444746012218526,0.09646387863184219,0.03376203289306183,0.00018678526158600136,0.004196554317181547,-0.032140665229457716,0.14212525249106286,-0.0549154810748625,5.5194720326201336e-05,0.006313113391489782,-0.05003912993626528,0.13388365323643128,0.07490528000602906,0.003542421649384679,0.014531193648632005,-0.003982361373514499,0.020429440959373792,-0.0017628304865776152,9.696717763283925e-05,0.0050331583933035705,0.04145619060019833,0.2145126733867841,0.07948552287189616,0.00014015132934112241,0.009081928353693225,0.048839454224242455,0.29195335102249964,-0.006893671124445459,7.912359957327758e-05,0.009290253880647636,0.015639152737178533,0.078112406939582,-0.005833120663536677,5.0319995749938705e-05,0.010020831165130025,-0.07511009306005628,0.15079318868460134,0.10827185038907892,0.00024285439599778012,0.010532951898030161,0.0100707422471496,0.04320530682374935,-0.0928953920881409,5.796138612635689e-05,0.0049080641031895925,-0.02369645501399623,0.2474441351327637,0.04461785764384686,2.4707994798186127e-05,0.005224028155806335,-0.032499605146318666,0.09485932564874293,0.12480031285667206,0.00011975868431775322,0.0001950342994488121,-0.013462128658594537,0.06261406362498141,0.009457784182916741,0.0003388986333712292,0.002218275363756476,-0.054592408488893227,0.2527495892133924,0.04601059928245823,0.00012371250258694217,0.028301118416840115,0.0019806606967516767 +2020-06-05,-0.015369440543772117,0.10387663514291805,-0.06736990163142266,0.00015646844624614203,0.01206330216127605,0.019776308696242143,0.0633874699824683,-0.0026599680422226763,7.486043410987905e-05,0.008753008244587383,0.02847110204085229,0.09066690380955487,0.04306657722757658,0.00014526222670889616,0.003335269976576544,0.012122245597859198,0.013569022202487667,0.019251733903558072,0.0003015104589942549,0.008371984683827601,0.0452183413463841,0.11169279877585929,0.10443706768636986,0.00021182988318164633,0.01585687635122185,-0.012973935562903806,0.030235559107769493,0.005912041239138366,9.369156051290696e-05,0.0020211111768467464,0.014267568204466171,0.05001046691176159,-0.1147777231519805,8.371030094641087e-05,0.024843128859774934,-0.001312765657179627,0.01135086316621225,-0.0006109246963701348,3.966038565418436e-05,0.00044660669185448267,0.01492649491982995,0.014157450154830983,0.028179539002008223,0.0008130506153916104,0.024298790177439765,0.047252899795853454,0.1220186658827674,0.13713262780163266,0.00013541415979875424,0.0006553899867686431,0.0006630222714017517,0.0006056712864519916,-0.0006779820955851464,0.0005350760223716192,0.0029517100924266963,0.001767676391115812,0.02383245489464033,-0.009614892585136627,2.210328233965034e-05,0.0007689344374641526,0.04455026688577237,0.13403567560508883,-0.008312187390570143,9.87372302210058e-05,0.00582947683545449,-0.01812049522093154,0.09460199267620815,-0.04616952862934428,5.391772960555148e-05,0.005985622608952891,0.028099560604025145,0.023687716054759948,0.021238196047894967,0.002313658799274061,0.02995737094843239,-0.04212710152822368,0.2915029036929609,-0.01541733348996441,0.00011892435426877014,0.04098240953962034,-0.019033905463753796,0.10341961147075159,-0.04406836034423454,0.0002849923733185505,0.001256491064404134,0.004003054427787802,0.020854044287259576,-0.008666243925551962,5.407072086029334e-05,0.0015550717625876212,0.03950992725485404,0.19511941478969405,-0.014681288667661862,0.00033372792852308576,0.016709007942149533,-0.07775132562942749,0.9694298407319284,0.06259894145800257,3.328293751425822e-05,0.028193485810425262,0.019588108318532346,0.1991252888738316,0.007247194471269962,3.286607085116075e-05,0.003661379078031445,-0.014575210294513192,0.04157772528811486,-0.0425647378741307,0.0001129215575783191,0.006816057324762822,0.02795871600055769,0.2172595747199705,0.003034106032569227,2.9725603024515915e-05,0.02199787914743926,-0.02502469974217742,0.07077457315061554,0.07210786165929534,7.839150437216337e-05,0.012266330695640388,-0.012526263976718447,0.04726000254454906,0.04147540706926271,0.00012119268705389562,0.0014889992283627326,-0.024450334574706346,0.022403586000471477,-0.032277565643231365,0.000623796349682265,0.012452433770636437,-0.01239341469241188,0.050346313980816064,-0.02729128304122043,0.00010361182202536724,0.0010176668095333947,0.027285255878580342,0.08756922991261629,-0.00706584377131975,0.0019998419541287886,0.04115963305295318,0.03272154519054443,0.3232967205159569,0.021952980338233726,2.6026435946489226e-05,0.005838722535744071,-0.002142370976690809,0.006575734081977126,-0.04875164141919577,0.0010651768119969483,2.1125935940909395e-05,0.034804971945484486,0.27371301337475284,-0.01169261905803064,8.467817419742082e-05,0.0010524326021186846,0.013642117718087071,0.021262114935721808,-0.04335470319436715,0.00015143306674874634,0.020994208300668823,0.019481809504341405,0.030333279737751843,0.010105298742525162,0.0003686496585605998,0.00021901152448537946,0.014080678736062145,0.060547948494991476,0.010312919116712234,0.0018024967822397144,0.0016011161566472413,-0.020975786843171376,0.08142374636758658,0.0310150373572375,8.265279622085117e-05,0.010977367884393857,0.04015270871758719,0.049151977229426415,-0.09042526410573618,0.00203072468142845,0.0015514845459328156,-0.010559978817364358,0.03631408005771837,-0.06295534910396437,0.00011521367691221324,0.013736043679173174,0.045417413473416345,0.08808645212864305,0.0664091248117557,0.00020901317160575117,0.006736456313514684,0.006230892473607272,0.029502406078894025,-0.032288575255883786,5.154739768476219e-05,0.013281719783586244,0.014207646602638103,0.05241433974443141,-0.010337195059188712,0.002569153686934886,0.03623061912477402,0.01759356301209119,0.09037525772405647,-0.04933545468907094,9.683777955333932e-05,0.013835868348490755,0.009001217266676501,0.052913717869360215,-0.04379495419581184,0.00012336550805174432,0.0002920440995754531,-0.007927383629346368,0.04297259502844764,-0.0015583805652976451,8.725433110988311e-05,0.033460387401063295,0.06732878041593009,0.36350991651721526,0.06393303804575338,4.655130708982052e-05,0.012817236072338901,0.01847118733699127,0.03793429544739084,-0.0060049509750721855,0.0002374062700373142,0.037135584661488134,0.00786984155401319,0.032755958998563685,0.0011935922075022394,5.974341527310301e-05,0.010036481283549482,0.016631776002773845,0.16556501473449306,-0.03915582502577076,2.5917991352895986e-05,0.001634894616621694,0.004063955130431485,0.014422984366760858,-0.004299088355141647,9.849240360479584e-05,0.005209969109446987,0.006468679612869691,0.02714840782254787,-0.1656524797152694,0.00037557722423815277,0.013531146674932455,-0.013789379419593665,0.06773149465078337,-0.10775289473171491,0.00011660733183476243,0.023445679288081653,0.007986545892061247 +2020-06-08,-0.019685347289573094,0.14362416490030827,0.0034988562473651174,0.00014494463616339948,0.005308525758271701,0.009360690135962626,0.03422554076963906,-0.005338410142263812,6.562481270941949e-05,0.00570858785313662,0.0028660694212813806,0.009728122881575527,-0.06437840819460361,0.0001362871350941515,0.007722663846309277,0.0022319183823023775,0.002287416095658671,-0.021742025321478547,0.00032930702286701675,0.00998137282476012,0.013726306943145547,0.029360139692386773,0.002610135364250848,0.0002446207880587068,0.0035824792357304503,0.01004358430209691,0.030958556842248672,0.009068176552881207,7.083611943882153e-05,5.0634584244009864e-05,-0.028410036211872155,0.10223032015391748,-0.12789890190768433,8.154210557979737e-05,4.82490512099525e-05,-0.0318422029223503,0.33746964908954585,0.04213970130408582,3.2356906969007526e-05,0.0013240763519952613,0.0062684061131252225,0.005585558830972934,-0.04136193442582014,0.0008654366472948396,0.004853777655538101,-0.005430574939482914,0.013911140942464617,-0.035029879386854854,0.0001365038645367543,0.012101347988360506,0.01998784260018858,0.015136989745391606,0.047284326166326,0.00064543239944515,0.004469353469485773,-0.0275012702899531,0.3492154992769182,0.13347619816394438,2.346832171321579e-05,0.009213865371510716,0.0064449565599624435,0.021543616111123435,-0.007118492460810772,8.886943736220729e-05,0.002685084936726299,0.013028905987561117,0.07291137455220814,-0.05137114242064298,5.03007525862129e-05,0.0014831083519187178,0.03273746982651172,0.02902607040052581,-0.10304670999046324,0.0021997829897107456,0.016095574694251102,0.0005082769773342922,0.0038896069106116493,-0.07162006568095815,0.00010753425563737355,0.010532487229637847,-0.014524514832235907,0.07645261893979811,-0.004550400374927817,0.0002941829504019446,0.015710980644429984,-0.01396242503645379,0.09128514502382158,-0.005512061678286162,4.3084563817387834e-05,0.0010496046314466341,-0.033758222912437234,0.1915852983246612,0.03144521799795696,0.0002904050768824928,0.005608782525516287,-0.021730890955970104,0.30715465040955997,0.007076040951975203,2.935963612576336e-05,0.006837215852957204,-0.02478932343544021,0.23657383657705083,0.051678078775046946,3.500899712010601e-05,0.006213639723101178,0.007026777614061484,0.020067529747193325,-0.08198518811812804,0.00011279375357229384,0.002646315053723354,-0.021654673337918286,0.16322039053946055,-0.019550547420880044,3.0645703835597554e-05,0.032133791764023235,0.0032894307730055045,0.011203387228238,-0.030566578759742457,6.509517311638379e-05,0.0013412093823544748,0.015244571834962552,0.06773110636123889,0.09236211991845365,0.00010291428402815616,0.008432291180553332,-0.0009459481608787779,0.0008580537336207569,-0.0052553647697632325,0.0006301274705365345,0.031866035128707726,0.005563144612854897,0.01903083936761512,-0.01726159173645521,0.0001230405928425671,0.0022562246530683783,0.03419967645228356,0.12576476998474215,0.02247388828864543,0.0017453485568955831,0.007382124717888589,0.0515262031780893,0.5069937653630475,0.01616022779039332,2.6134110211193058e-05,0.014457057853953358,0.010552401356560373,0.027465486404847812,0.006130900323575371,0.0012561319907290903,0.0021101534104512936,-0.02220835441855302,0.16712241552734855,-0.03055872319415872,8.849267405564598e-05,0.0037644694750978104,0.005740594217876377,0.008135708204127245,-0.016236123605578197,0.00016653551781292399,0.007057408880177164,0.01109984757106084,0.01697429400260849,-0.008679345558000512,0.00037534376723310586,0.02338800141850971,-0.010928270006230615,0.045961767731297606,-0.0009530319865489206,0.0018429138509057173,0.009863613223393231,-0.0023500957830200446,0.008826043206158603,-0.011892606684911938,8.542989734318682e-05,0.00512363645715512,-0.05494091761235759,0.07880772685804772,0.039918830616587665,0.0017330228925837323,0.030060738575175043,-0.0009389266360967902,0.002642350337565927,-0.001107564085407917,0.00014078529584969456,0.0008822015132160341,0.016136527876691353,0.037997844610746685,0.010964777992188908,0.0001721517755320526,0.011904080023242324,0.015692962924003486,0.05614640906903924,0.021020254501900943,6.821767100219912e-05,0.002168306701424344,-0.0019731155090426836,0.007451019254610411,0.009113734361215757,0.0025098911226425907,0.02509515859965419,-0.008674603698211117,0.045218417039376124,-0.002802701007072442,9.54277883841823e-05,0.004341790078001354,-0.01048843017997276,0.05331209217645334,0.009936418068529376,0.00014267423402275785,0.006040053768951463,0.03034912335610083,0.17120810377752443,-0.026573551977841888,8.384371872321296e-05,0.028280371542211472,-0.019243928505656715,0.08036596999337647,-0.005051506059760463,6.018232182943252e-05,0.006364046647995534,0.03390224132476563,0.06328684979120461,-0.005390399094356095,0.00026118265155370465,0.006603929623657523,0.0015836099459092452,0.008389772965031598,-0.09208240405072539,4.69366822534984e-05,0.002238003823714137,-0.017312049523529403,0.1961765984979764,-0.0045987531171733115,2.27684030738036e-05,0.0034839485104920355,0.003948716754343681,0.013875614374864668,-0.02820529429473627,9.947472000153434e-05,0.00922817985138527,-0.004762835439355692,0.016985735595706253,-0.009665170177765754,0.00044198668667556873,0.008584903263392177,0.007259180670099973,0.03822075473172864,1.9845726065620584e-05,0.00010878277738542196,0.00791856734007183,-0.0007661471557027565 +2020-06-09,0.011385214984569465,0.08130228531793349,0.021596709449966525,0.00014808977262971098,0.005576857484298385,-0.0016181880415507537,0.004796317722664004,-0.018832500870788395,8.095274312297806e-05,0.00981848352029954,0.0029761551767617605,0.00988572457176419,-0.0011617803232918647,0.00013926573313649502,0.007738187198546279,0.010896249856806024,0.010898263915290507,0.003550584118294383,0.00033743302781138665,0.018128727306428997,0.012848534856839152,0.027493633295504687,-0.05270036993002213,0.0002445227343054732,0.008035967883977832,0.009192255038918426,0.02402735027725487,0.00387452236949774,8.353393219954877e-05,0.004999170467754067,-0.0024919151293966027,0.009400337950162835,-0.012356207749486063,7.778209474637574e-05,0.0014417393071758991,0.034626596461620744,0.2768218536234754,0.08337457939147945,4.289513587177192e-05,0.012137395992032186,0.0004563623599170615,0.0003684370137939792,-0.10611944129095159,0.0009551934819004649,0.009702177523991332,-0.022663749541391946,0.049523728586659564,-0.05034620087990735,0.00016002222832900336,0.00554051039726626,0.011716340986821129,0.007539674013623802,0.01339306980337588,0.0007595629838263691,0.006059699820536474,0.00622450455081603,0.08197084287149553,0.0007531967936147162,2.2629146676951255e-05,0.0029257959532194722,-0.03623788824745793,0.07517051725791964,0.019830202200204785,0.00014320770354646635,0.0032996217525133077,0.0023662058159345935,0.0128536214096188,-0.05780069646372798,5.181897661549143e-05,0.0037012031699758777,-0.03464165294286842,0.03096007343141775,0.09342890016859351,0.00218232584960208,0.007144070378013165,-0.003755752296712663,0.025141599776855966,-0.014490609957444181,0.0001229295071899356,0.027419511972475094,-0.021983502889552812,0.11748684497933201,-0.024086456399659593,0.00028974495675343406,0.015359219844357258,-0.0007511420682705603,0.004623777782379429,-0.032750413879183975,4.576000758913991e-05,0.007895977421927838,-0.044496539305350996,0.2248337245192392,0.05711420997532929,0.00032617568852342924,0.02111322700438963,-0.03277850685143111,0.45583614327886685,0.016040951920585578,2.9840812251193092e-05,0.021146747204325328,0.00394365059525023,0.050956473641267964,-0.0022301840769276436,2.585715704300868e-05,0.017435911519679125,-0.01819512703749516,0.048061397757049484,0.033154123733881706,0.00012194990065085284,0.00560049223045719,0.019559761434673365,0.13588771245821296,-0.04907768418187412,3.32487821055112e-05,0.040501069314191146,-0.01758954027296011,0.04718419789168663,0.04364109388139971,8.264856060528405e-05,0.006649905054177456,-0.00020661723885007302,0.0008613182774643695,-0.006383970007086516,0.00010968607245781031,0.002343648997044999,-0.00016926928374097036,0.0001578576787785079,-0.037238525478287314,0.0006128977195732317,0.008432505731194317,0.0060782620048729745,0.02168031310884261,-0.0430161857142002,0.00011800485499347785,0.005704912735004782,0.10102824486867434,0.42347645572028386,0.1471042144934158,0.0015312027953827188,0.012393207919596048,0.03910367015926742,0.3187720808160038,-0.0066447167718062475,3.154419428079886e-05,0.013886606799128154,-0.01051176665066182,0.02925417225029642,0.04260064688956926,0.0011747870946459938,0.009004102289351543,-0.003223953532755338,0.025191652668588426,0.0018348207744756395,8.522318426392316e-05,0.011937389013306278,0.00932733027355088,0.013408963817915264,-0.001301751367130067,0.00016417518806389605,0.009051054089022799,0.001895157528173693,0.0025878843927261887,2.9907725236846336e-05,0.00042034352061881764,0.008035588922999834,-0.006726930883743525,0.024783843377002922,-0.05544108453659115,0.0021037719041222306,0.011527541912408585,0.038095103415110305,0.1339264222310605,0.040351939752338965,9.126268886825008e-05,0.003640988835447625,0.02699123863998449,0.03130645175310963,0.010067781105588923,0.0021432170666834975,0.010555322021759586,0.02292591167695688,0.07816278477038353,0.013499492629759656,0.00011620976621281996,0.009532738394174012,-0.00022232398393371594,0.0006878548908568806,-0.0004150686576011674,0.0001310237009948623,0.011927952430116125,0.007704154396152814,0.03951021858998342,-0.007582695137131053,4.759150845374808e-05,0.006255165544392276,-0.024384742116078367,0.09198850872947198,0.03611353655626342,0.0025124801924616483,0.019237676699501372,-0.010162984079716761,0.050555243891028945,-0.017927524698473196,9.999898827003825e-05,0.007620532038558133,0.01240284473721685,0.08088253426151963,0.0013619232076212114,0.0001112057750108435,0.0035712368132485416,-0.052855067008960824,0.2986470811082283,0.11121852338083105,8.370994412706026e-05,0.0046183103925106165,0.03026773409814796,0.14482061039790642,0.0063963657967149755,5.2528733678413896e-05,0.016719138643862368,0.004696891573320941,0.00967838074002155,-0.05861570024391962,0.00023661225026972677,0.007907298901682212,-0.007344945261640664,0.02841300138932912,0.012776838842119926,6.428147401666762e-05,0.002738586838880107,-0.04451562407103456,0.5091901275731645,0.124091942622297,2.255608782545396e-05,0.015009829052734278,-0.006962562427578906,0.02021414481858056,-0.034764155580656,0.00012039894847379519,0.003375530574883795,-0.020151404311795566,0.0687317453173762,-0.0027425075874855176,0.00046214250643020823,0.003169611480631222,0.00413265975266081,0.020719182823225,-4.203195545253481e-05,0.00011424279614631299,0.0008201433521242008,0.0011414757682069983 +2020-06-10,-0.03528381144533848,0.2657862766841389,0.03567732352339006,0.00014038785006128233,0.005689915503257255,-0.011207692181655916,0.039107217507771595,-0.01639798360091956,6.876537320013221e-05,0.008951038695025683,0.005457265282303799,0.017747129918871053,-0.056836371351889445,0.00014224733597606904,0.015532976536707066,-0.01167010818408656,0.010611223312348228,-0.04394205740402241,0.0003711737751310274,0.002427781916296881,0.01674816155444453,0.04030683538624211,0.004404478107187606,0.00021741335210604613,0.014235242686447278,-0.006496984114820056,0.01838977895852059,0.001265190941932973,7.714042648204104e-05,0.0015518678558743945,-0.0061876724201427235,0.022442679246886536,-0.005069417634420322,8.089887205721729e-05,0.002278736673384009,0.01927821948902685,0.14637689147717517,0.018667518676747864,4.516406408690472e-05,0.010392487580209409,0.0063708816659365985,0.005189411126581728,-0.017504549919311607,0.0009467302336506521,0.008346268051142258,0.06030504891139066,0.14988125997821192,0.18482920270453765,0.00014069161829088255,0.003052374740709772,0.015567572587257298,0.012227401310325722,0.005946672034879401,0.0006223161782445557,0.006876432545598641,0.005410133663328462,0.06972931283922042,-0.09829989146127362,2.3121467716818408e-05,0.0018978162180249584,0.037804726263873614,0.10606119560694212,0.04274114155987406,0.00010588650581513105,0.016388024498200218,-0.00394459395328521,0.023926307216360684,-0.0016917932947016717,4.64075293659221e-05,0.001670320089556833,0.03164726978415914,0.03335117050227977,0.012428864623933118,0.0018507516329151963,0.007064027373421419,0.010760838756026075,0.056241232559506575,-0.020384199782208436,0.00015745026708369336,0.0037694459252489024,0.052635479732877945,0.29448013629180214,0.01930964465836486,0.00027677751899565187,0.013285444165414637,-0.017094974264531354,0.09274016319808258,0.007599282744155905,5.1923212141760265e-05,0.017768548574058227,-0.01886827576240851,0.1007781730065354,0.008723491881024396,0.00030856917652630607,0.002791313056001306,-0.004012762136524549,0.04593099815865323,-0.003098521384317925,3.625498791699637e-05,0.004732734150988951,-0.008947170703190354,0.09190442224150912,0.007657153252609056,3.252602737708647e-05,0.0064609584336651725,-0.027030715801572264,0.08157770676232586,0.03349204420131376,0.00010673548051010176,0.00242786230017244,0.040527727088114716,0.2609137311841773,-0.11318286594128392,3.587960792029479e-05,0.014307035245952364,0.0022685289584794877,0.006718998244256696,-0.0018927691787079537,7.48543739123804e-05,0.0027932996864543994,0.0015864381255628706,0.006737499277306148,-8.034422667182071e-06,0.00010766461763407633,0.0008640961763978548,0.05440785998078678,0.06361581681901182,-0.0003490517738796556,0.0004888460358177292,0.0037955163362374074,0.029742438184533745,0.12453536544232814,0.05839396477353119,0.00010052402678395205,0.005076595835759935,0.020253620838184525,0.07620700950943433,-0.06743950613239408,0.0017057953673263126,0.01429482924783005,-0.024711565421149707,0.24044625802088554,-0.0063293361077367705,2.6428008050418935e-05,0.016591849670546575,0.009681368263799221,0.027826911676711363,0.00234095073042051,0.0011374779864144677,0.003512376510105623,-0.018746463939332828,0.13106748438360424,0.02601194196756303,9.524672245632575e-05,0.007980196444466237,0.028754178193147937,0.03860940560959845,0.031770778708146596,0.00017577343113830493,0.0036104429566005108,0.0532991321607273,0.06653613096366912,0.06579081342263335,0.0004597973969001096,0.010645606080094603,-0.04771404642849747,0.18248674747621935,0.05865414932625006,0.0020265870320231288,0.02443922334946976,0.03495288275374435,0.1182170897651724,0.04235444813877333,9.486218130143255e-05,0.01185060066798064,-0.006782251386000116,0.009147351785737667,-0.015639605270073312,0.0018431288345725362,0.027603214030829208,-0.02738044186211925,0.10540136843238984,0.037256684007959937,0.0001029224793425441,0.0061582050365231525,-0.003363664553571618,0.009410247224843347,-0.011912540240585677,0.00014490121311715024,0.008097952532729137,0.0006571206006516854,0.0028462239264212823,-0.0020249540129775043,5.634948384896554e-05,0.01621920991657649,-0.061356883634879844,0.1914038421014551,0.08946731102928344,0.0030383003247356965,0.0053551389964127186,-0.010284494442259838,0.05563642414708998,-0.02929789102909239,9.195266258336814e-05,0.00465824013550874,0.021388659802272874,0.13213879642865864,-0.010848892844494987,0.00011738538007752218,0.0046432095946920444,0.004944530117174687,0.026601171025670944,-0.014018198601486453,8.79170222030631e-05,0.011963690313172806,0.0531788816088266,0.21983558153866384,-0.025078689591945372,6.079790407846919e-05,0.030463500354263828,-0.02104187315108219,0.04093700686964655,-0.06653331113277791,0.0002506096017911525,0.0014540065283192348,-0.02290840083771384,0.08756417622975277,0.10428482272496788,6.505529986904701e-05,0.004711612013818654,-0.01646561875119736,0.19040076570329603,0.0024588058070906106,2.231211040891002e-05,0.004871350908989466,0.0057643277291635625,0.016999121907299967,-0.05206653080579191,0.00011853077955241225,0.00047368652367070073,-0.013107547922895493,0.055251335687928116,-0.01822701126423063,0.0003739440640702308,0.001574033916422463,-0.009279235155145489,0.04681339447772528,-0.004118459228244204,0.00011353083798852976,0.016647981253982713,0.003975220664528714 +2020-06-11,0.009319150805581124,0.06522312511712529,0.013704276998698793,0.00015109890593339447,0.021626045671588153,-0.02574106458537049,0.09702416207314025,0.004465365512316773,6.365860686751088e-05,0.031864567883657664,-0.05048988138409887,0.14931681986510795,0.09485145652059891,0.00015642019505565882,0.017107490045989947,-0.036951379583768075,0.03434514913668836,0.17250530195620078,0.0003631057340622745,0.0035889617970992307,0.036462669477269186,0.08726651464039044,-0.008899120270494606,0.00021862438565926835,0.0072058323854398395,0.007690284888382263,0.02332418967425361,0.009469367228084837,7.199172899829864e-05,0.004724643483085379,0.05653281788386432,0.18979824906278595,0.270574099701902,8.739735453866275e-05,0.007539037265075788,-0.014987274114887957,0.1202340131066896,0.008655666221219318,4.274584651700861e-05,0.0072211858268895176,0.007378884981211256,0.007105282055969929,-0.0029889195058316175,0.0008008555779690968,0.01689445380951745,-0.009869559631798848,0.025969282221083113,0.0018851611127736652,0.0001328922687132043,0.018353232970158923,0.016707023629797355,0.013044988926393818,0.00869068232477183,0.000626007779565588,0.018500101714647034,0.00463015564300699,0.053501715386460195,0.0006402943852570295,2.5789960253189338e-05,0.0047839791566917315,0.05314620887812683,0.13659746759472435,0.06725893081522001,0.00011557946503644739,0.013466292026143068,-0.012892711760639896,0.07662227419675152,0.034062116299159305,4.736429241935453e-05,0.007084168967149582,-0.0015931735537584903,0.001355745727712556,-0.011408805591710494,0.0022919641308646304,0.01135009984276512,0.02967506813761686,0.18778213850225967,0.009876081866267485,0.0001300437702086071,0.014856540671884017,-0.049209580878125415,0.2446623669561997,0.045827275356052063,0.000311451713893608,0.022035227055889808,0.0022248024131634177,0.014208986105469331,-0.06655317395417375,4.4105151005701526e-05,0.0004908526217704647,-0.05642674821484899,0.3281390739103497,0.03209534344785607,0.000283409159862987,0.0032427474710044132,0.023438607540948293,0.3170000519651684,-0.0005635736529919918,3.068334512800399e-05,0.0002441888097004484,0.010516592867188403,0.11472810209246125,0.008053925627137927,3.062576608015055e-05,0.00957397483697961,0.053134122737760976,0.1480728469136075,0.12082769360782634,0.00011559015445070834,0.016912180073149014,0.008354772643082178,0.059476373572162046,-0.007817624110889225,3.2447596409629416e-05,0.005423690834716249,0.003076999954732431,0.011283393116200482,1.9931592892317245e-05,6.045958374890878e-05,0.005508028563413226,0.007728558005215861,0.029543939475535148,0.015955462142389333,0.00011961307668996003,0.006213334407382879,0.015106852292349688,0.014411957457628903,-0.010746050807327523,0.0005991375964337544,0.023801195895096453,0.011501233022058022,0.0388635955193994,0.0022585754701077592,0.0001245625338909021,0.02204509941823837,0.0022079852167891175,0.007131512774058616,0.00011555347636473677,0.001987163820550891,0.011236227466865775,0.019755834631759967,0.17450458225251758,0.0038510358616903754,2.9111912822607368e-05,0.007809859418538737,-0.020026004335974706,0.051864773842655365,0.042387838586795616,0.0012623886673269144,0.00018160011652531693,0.03682426968773477,0.23499597758474433,-0.028572794995378643,0.00010435165882607135,0.018609444247021392,0.02180090675550988,0.03545689315964241,-0.08621676639489793,0.00014511732522125902,0.005860548997327829,0.028122151829092782,0.04281345100872126,-0.006320257519621272,0.00037702680394544237,0.0269442928325578,-0.010246349549815912,0.03711374955024969,-0.00010113325123849421,0.0021398566266549995,0.014082869430280854,-0.00955267840714339,0.03195016523877178,0.01034797265059629,9.592734381554682e-05,0.015167756227475094,0.009417279270340488,0.014088629665674906,-0.01862923246883257,0.0016616283298243398,0.033334877217753495,0.019437510613810806,0.05626547292610173,0.01025092225310811,0.00013687202935544303,0.02370772780378114,-0.006386140651093814,0.017232699622357368,-0.00011626615611832778,0.00015022615006331818,0.0008445870189331013,0.013395089358550667,0.04890741814833061,-0.05102001692732437,6.684744358500227e-05,0.007004071997807063,0.04390019232903513,0.141029329585696,-0.030676828614002814,0.002950360190723214,0.021754877400602397,-0.019449309787189843,0.09988570251272093,-0.01753887887278807,9.685932452965592e-05,0.014947565435453843,-0.017983535625185766,0.10568690194201193,-0.07688103139778056,0.00012339986841838622,0.0056921409661203105,0.02834534594463347,0.15466250721904817,0.011763002274666937,8.66852915696386e-05,0.007795986505709946,0.004266990563299627,0.020436830706705506,-0.00018058143748433408,5.2475372474345124e-05,0.0021705905805122295,0.035738193450008914,0.0798668802076077,0.03457743079546263,0.00021817011935713418,0.0038636756914277337,0.013481775818020385,0.05612157866657235,0.01764467761287735,5.9735375508305084e-05,0.00739725790364544,0.006346708997300853,0.06341356294950369,0.000686456329626095,2.582246612135334e-05,0.009426570421117546,-0.004922534825129447,0.01312836938204046,0.0048763918384875805,0.00013106507315295245,0.0002794618569076548,-0.0015721158636243578,0.006166122531625407,-0.017152587432848445,0.00040188367989365094,0.002894525036322272,-0.050419652671101475,0.24821729629406597,-0.01700698464446146,0.00011634282495813565,0.010747820765812788,0.003980816907924581 +2020-06-12,0.0026671983991506847,0.015266953283388916,-0.0038040380496713725,0.0001847521619124112,0.01979940248497493,0.021008338509590142,0.07023517322003861,-0.06621610492701586,7.177076499833864e-05,0.009610924928641485,0.010959625202203106,0.03313562862620058,0.005158474045163369,0.00015300220606272551,0.020418127976551997,-0.01045166126674873,0.014469053703183313,-0.0952298233979037,0.00024378840936540482,0.0017956418021924335,0.030354863300546743,0.05683099639099466,-0.03996398203964672,0.00027947359618039593,0.0014741233636317121,-0.009809726091040931,0.028558509834135028,-0.0039043405153504534,7.500117692794374e-05,0.00702389658130675,0.022930119957231997,0.0976988221219736,0.02668560524724725,6.886631648668163e-05,0.00407117747353963,-0.000477155398311937,0.004321533000831624,-0.09909134564847687,3.7863488300377393e-05,0.004240428204259242,0.021965949693794482,0.019285779724104404,-0.05684114295773304,0.0008783297017835822,0.007151921692176714,-0.02158479461829793,0.05507001608925396,0.01041251463223258,0.0001370549115461266,0.02570816175587236,-0.005365821907837748,0.004016792026467125,-0.01735485319863056,0.0006529520147542444,0.003774731543441847,-0.009595279126049534,0.12398803897025183,0.012864372685398397,2.3062193470411875e-05,0.01099868746257382,-0.008070660656716343,0.02884586466992773,-0.00032410140967931617,8.311445534928682e-05,0.0033613325028617265,0.016135455401856576,0.09316137488177045,0.009023166616899043,4.875365237417287e-05,0.004193977038487974,-0.018382765208074327,0.01656660493596765,0.029242452921129737,0.00216421447331737,0.010979197978186826,0.00537129981828392,0.03549381353343612,-0.10685529560151806,0.00012453139099172513,0.020771779433695018,0.012727517227412864,0.07375360718590782,-0.09847715089333542,0.00026721981535486416,0.002416599079071004,-0.02254314189656778,0.120612610655832,0.01084791086432583,5.264809759131303e-05,0.003583107482223638,-0.0485718025608317,0.19148063613478405,0.040898238750734034,0.0004180672684077498,0.018913061188403524,0.1021686049766976,1.2601963090218393,0.11912237352174138,3.364414464825091e-05,0.032379291947948904,0.0028701373272545542,0.03027500840787834,-0.004486656588339253,3.1673795874818116e-05,0.013822788019965877,0.014844845311626156,0.04841675086457146,0.0021743817627348605,9.876493691660562e-05,0.01571783681590264,-0.03662571545620199,0.23232072955006847,0.016713978530094993,3.6415856611183024e-05,0.012779917078599462,-0.00032561221577988823,0.000912908161569495,-0.07209468162904592,7.907714518840403e-05,0.0018242819921032943,0.005887622305431441,0.021217875502698342,0.008647467159889852,0.00012687809248657344,0.005774214511978956,-0.07714675166149579,0.08566721793482444,0.06301580491374453,0.0005147288876949634,0.054478195717655636,0.002152436207466658,0.007722886141098208,-0.10916632807493527,0.00011731044061362587,0.0011682038527155631,0.00027499324280309064,0.00111231828432673,0.0002708507273542905,0.0015867632037384898,0.0005537623334176838,0.021492537753322882,0.22730067442782498,0.003250783835741656,2.431471420504506e-05,0.007893739626986706,0.019131399759471732,0.06070782408002893,-0.0012740102609167714,0.0010303228924703626,0.009978957977974401,-0.01890969161118192,0.1396799580933124,0.018482275957602275,9.015213025876784e-05,0.0010361452130025761,0.006512272413513103,0.009964129670086686,-0.021875340296585707,0.00015425476012747766,0.018379364997754888,-0.0005791356454024923,0.00071620541062318,-0.04365870703152827,0.0004641374506551798,0.0062020737187718725,0.036578148479270794,0.16485710410653373,0.056187441482058995,0.0017197463363380979,0.0020234752634296777,-0.03326298306655278,0.12807951340898333,0.05658884064246063,8.332434264488687e-05,0.014391988265028464,-0.029982727404385998,0.04472302878514377,0.0061980653606730106,0.0016665452895207843,0.003749597216390332,0.007240120279343134,0.02155316541930295,-0.037093962558617286,0.00013309163353931745,0.0043610277122126395,-0.03198171162227753,0.08339482373652422,0.010371336865581554,0.00015546154660082853,0.048656704784642235,-0.010476081953826589,0.03955016985272837,-0.07129156548591123,6.464939414572119e-05,0.001278969193614753,-0.02850725004514883,0.10520070458474608,-0.01742331436081192,0.002568353121936036,0.0033492452085505243,0.00516136679159327,0.02968994309839155,-0.03320942874987391,8.647606686747947e-05,0.0004222315057760324,0.02661734744090275,0.13871646415463323,-0.028006122371789705,0.00013915459373832243,0.014534077855142274,0.008257855366339177,0.039494051413016776,-0.04131989040743798,9.889726551218003e-05,0.015461811711510993,0.015950659183987418,0.08589248516497787,-0.11221339871943084,4.66735529317364e-05,0.0007146475030479576,0.02073032079937717,0.04007734635331486,0.00987189229306501,0.0002521949924712941,0.004150449522562107,0.007859799706119447,0.029733381530842835,-0.0010676369024488891,6.573271205734477e-05,0.005613129421271499,-0.013791228632669364,0.14282165306301414,0.010336126630621799,2.4913812310991086e-05,0.017331801251853855,-0.02242344860991509,0.06488291643517356,0.05999590242268958,0.0001208039145167796,0.00493640191155443,-0.00648740385665642,0.023519270716464636,-0.033833968461574375,0.0004347855024994866,0.003191974054797312,-0.01609232378733717,0.08520910347791243,0.004834083577936203,0.00010816943526119425,0.008155958268050875,-0.0004085274078630626 +2020-06-15,-0.003124289673108635,0.0243964466790618,-0.051110727885433596,0.0001354288843808021,0.005539431230664042,-0.033703349042819915,0.12442846397559906,0.03522297176628752,6.499259007219548e-05,0.022519551449171227,0.004124636090608176,0.014822145483125196,-0.04104465597536025,0.0001287276290603665,0.000522600238626362,0.013438684753948797,0.015363902520415276,0.016436262506161203,0.00029520457216688324,0.003886156790469347,-0.026249386616978912,0.04520089534319607,0.08382771336639787,0.0003038574538211219,0.029143571713195298,-0.008896102527147329,0.024664164659970175,0.003831292305614653,7.875535766819382e-05,0.008587316721523084,0.02241371090772634,0.08206900814024752,0.02353449182430145,8.013540507744781e-05,0.005972748756507929,0.015077735138547304,0.14300762284238452,-0.02240275029337003,3.61555969961177e-05,0.01369232614630686,-0.0006835529757394282,0.0006226361096221666,-0.013069766522202132,0.0008466085712044752,0.002893661833702088,-0.010852251880043436,0.02606314773184007,0.0011585900792317782,0.0001455978244883256,0.029267949742045957,0.011236162649836914,0.00838097717080861,0.005091618594417873,0.0006553113919610522,0.0037886149533261407,0.024454888883661763,0.2921609781836755,0.05962203806773136,2.4944010080429035e-05,0.008597897804609764,0.011968418512690291,0.03498041795455131,-0.009653185559235672,0.00010163956808668382,0.005170759890753922,0.021753314455281284,0.12948820662802987,0.04935330051505346,4.728866352221932e-05,0.00032208219469709553,-0.026074215847075723,0.02149564280927341,-0.015854316872455216,0.002365831402759797,0.0068876567074918505,0.07880955717167779,0.544813081912901,0.08585375130429022,0.0001190374096752165,0.04256610518998796,-0.053219741371575854,0.3466596845018607,0.08244794519885022,0.0002377265316530039,0.015840630947633157,-0.021816741776502408,0.12889396113219798,-0.07729679757606082,4.767802717417031e-05,0.012416052098102849,-0.007485263479152888,0.046606810649796264,-0.16022978893583903,0.0002646942545986152,0.020934901860169778,0.004428616337124846,0.06375648707264463,-0.0015605002327028906,2.8825304869859832e-05,0.004889454719234902,-0.007812087936558501,0.06787061649338684,-0.029520660501155656,3.845625937254642e-05,0.018613629015202034,-0.02876124618250207,0.08788047443899846,-0.00726196202787561,0.00010542365340371717,0.004383987980629461,-0.06967898078731369,0.4049224318109184,0.12699771428265397,3.9748645065571643e-05,0.018781507286438376,-0.00048028387162297244,0.0014119830324294147,-0.0012290822688413858,7.541294608346122e-05,0.0026613407467252397,-0.004689369000482312,0.01896177684279442,0.006738601678297999,0.0001130795242423445,0.00012680634774403184,-0.02493247965347104,0.02736144767252619,-0.011447735767577745,0.0005208371608618981,0.014060029249802273,0.001213546775512527,0.004954528366729156,-0.02227738410305009,0.00010309561897810114,0.0016896001552098292,-0.01653469494007349,0.056094057995821865,0.004547867940787663,0.001891901415921395,0.02448660449173809,0.013705068560761863,0.12837178679446615,-0.0001584736506744643,2.7453253582352686e-05,0.009676098835804708,-0.02215367417294389,0.06385256688071814,0.024795757547824312,0.001134328054063982,0.03067484933444176,0.02845095624893602,0.21788905406616457,-0.026306041190681077,8.695350599310574e-05,0.013363046333553938,-0.006534490012029402,0.009926824738934767,0.005277143112839903,0.00015536268938044697,0.0008222746412770935,-0.017085387141650085,0.02351137913609992,0.013427159044859534,0.00041711002982198483,0.01399445577511248,-0.025811870109895538,0.08875326879072329,0.0056675827562203225,0.0022541637166025095,0.014030125575420264,-0.014958972009068578,0.059424514197761055,-0.05650606588834623,8.076561044867685e-05,0.009725518378678199,0.04433768895399749,0.06297411962743923,0.04643708872782558,0.0017502018529955247,0.03961331961467846,0.025256338893306512,0.07475556764599578,0.01588270224903385,0.00013385755537397606,0.00921948576571136,-0.00846883788853587,0.024757999493574673,-0.11823068929697257,0.0001386655715325035,0.004599044127642,0.0024532712895263104,0.00987191679144727,-0.04161089544543534,6.065380005237506e-05,0.02369927827734025,0.0691308834075401,0.2266177736468788,0.037151759913110656,0.00289132023743044,0.004961663632820317,-0.01187680564841849,0.05778257005374045,-0.03902969774763061,0.00010224530292541569,0.01410016071003493,0.023216840763332854,0.10710552916253233,0.013926568153634378,0.0001571998096739485,0.012236128096616422,0.0117896293069535,0.06773257396099917,0.0011989286059099554,8.232870210922658e-05,0.005540488086033478,0.0019492704618081001,0.00864262043029878,0.002279328742742666,5.668577083993548e-05,0.007342246626008066,0.07084845641790659,0.12068730242437718,0.06326575277070232,0.00028621883297449735,5.570759235119099e-05,0.01283621702521287,0.0563791290568779,-0.0033886183921560727,5.6615202428214666e-05,0.0005363557785043854,0.03185506748226921,0.36108910646894743,0.03478402882138666,2.276121432942725e-05,0.00676536698413938,-0.036903789348768826,0.12228390438956473,0.1285663111505535,0.0001054898392007255,0.0040653018400487835,-0.013905050453381456,0.05123203926358651,0.017169987900883525,0.00042781784606418045,0.00884386587026343,0.035434742475234905,0.16069921600202577,0.014690581181530464,0.00012629533779871907,0.02887661655689733,0.0015772451915789401 +2020-06-16,0.037085980389452905,0.2868580563651366,0.09897335899294754,0.00013671913334673222,0.007105832352087516,0.014789835111646957,0.043884266749518605,0.006365985637956098,8.086582330591126e-05,0.014429334044444872,0.025727394020481797,0.08627913927373657,0.012660396442761708,0.00013793903978540051,0.00963848805094294,0.0016670366770443579,0.0017617596636149832,9.728569143596981e-05,0.0003193495797124387,0.0001767288278208142,0.019704297655892745,0.0396056489224629,-0.0018094686265925008,0.00026031644114242393,0.009356150903135699,0.011263609284529373,0.031208498622570895,0.01166793337228227,7.88045767435107e-05,0.007512916612651169,0.02921307852558611,0.12269328522865779,-0.016312340890949014,6.98628641041492e-05,0.009899277861555918,0.004934274476133391,0.04773066087066271,-0.14977762097341435,3.545067191419744e-05,0.005115102686990794,0.004151056577944829,0.003005915891751688,-0.017877849792702686,0.0010649436171770539,0.0051991436569341475,-0.012234216982126084,0.03117949210310469,-0.07145577073883339,0.0001372047126643558,2.1716255898722968e-05,-0.00625998436515487,0.004997643427974821,-0.00029786900559322746,0.0006122549992174479,0.00040947215917801205,-0.012457902157563466,0.1826282222102537,0.010507468618953584,2.0328241597605964e-05,0.009685164821905847,-0.00025054151403651085,0.0007350505157246933,-0.0035196621748104636,0.00010125431706318085,0.024543185512507386,-0.00918021605764653,0.050854851839151824,0.024152566623550576,5.0813876468828134e-05,0.006873856826497938,0.006095767032819512,0.003799483732552377,-0.00024249436221917883,0.003129152607235657,0.004468309101434849,-0.09131090962723203,0.6184134667222838,0.13621213083211892,0.00012150547250672762,0.01462196045689672,0.05343944163624037,0.31152548862417234,-0.0164980789617536,0.000265629654745774,0.004359699125868577,0.06902074858180798,0.3921748574913879,0.14066448821972632,4.957478892884545e-05,0.011910473792953267,0.0019607908137549836,0.010533077063421629,-0.000618107987641626,0.0003068052658888865,0.011191311538362968,0.034230060724489135,0.3925966947848946,-0.01034339079560256,3.618189107262415e-05,0.011356035052023603,0.013078369573795275,0.1260102540050891,-0.003829808332441703,3.467603460989386e-05,0.01213030137052473,-0.032869610856205406,0.09102835076689007,0.04823202057663638,0.00011631631742309316,0.01526200923366789,0.025335277507739923,0.1582507344851595,-0.030020705068164042,3.6980459857686423e-05,0.007724571663601928,0.018412322386482376,0.053007596597115014,0.011643191725065323,7.701012695168343e-05,0.008897627341306717,-0.004402699613335168,0.013116504579043694,0.0074407077502242356,0.00015347920321660827,0.0006216653487554182,-0.030147025981423728,0.03249645547009266,-0.022909087132946763,0.0005302541100305457,0.020230888572887355,0.015033830323864317,0.05709767410494915,-0.028910201320924058,0.00011082487138964909,0.00228100774664451,-0.03389609198291993,0.1268512882674423,-0.023956699742058152,0.001715038690839011,0.01075294910710678,0.061243927046712825,0.5530736422705368,0.06193216265732959,2.8474903693905876e-05,0.02720409361342689,0.00039686067660208574,0.0010652056958338784,-0.009631744021374301,0.0012180801283867846,0.00114169182686892,0.03149192602745742,0.2517739169596166,-0.04236385012377148,8.329407879776339e-05,0.002941069930511543,0.01208858820394584,0.01703185490985056,-0.03328768456828851,0.0001675170518214987,0.004229259723024574,-0.04976243967057656,0.06970306944971161,0.05360441001685012,0.0004097827520041847,0.0007656289000551094,0.0010984251884488129,0.004342756338199174,-0.04650631834948353,0.001960448155113095,0.008123351953398243,0.010588345640226182,0.0358618067406426,0.0010765041145671598,9.472973324131274e-05,0.008193049638708837,-0.01344374370721956,0.017595957025633963,0.0011255366119127964,0.0018992604455530524,0.028474426632658614,0.02140138870773054,0.06538348476689632,0.0017565727448629455,0.00012968505422289092,0.005056428723813664,0.015460621593556451,0.045707816539947536,-0.12569202271547514,0.00013711875182163586,0.020440584654310083,-0.019583893340625595,0.07399957910905786,0.007115382720367829,6.459274045942749e-05,0.007201408827062786,0.004794155723400748,0.012890803206243773,-0.006434244094892196,0.003524927721088273,0.017237557557277378,-0.03694866637224082,0.2059103968313388,0.015683249621239514,8.926085915203697e-05,0.0011010979404288582,-0.027806095996985702,0.16272012105557518,0.06724419775590958,0.0001239251757526266,0.0003217694735264704,0.008486894338785762,0.05095435867731491,0.00024999701168258373,7.878003223433673e-05,0.008444963922155106,-0.050959735104102136,0.22397530197449994,0.06515171422937309,5.718398618506173e-05,0.030953081909368737,0.02961449064717913,0.051098449438772085,0.004022135922577781,0.00028256992714491795,0.0152557192255596,-0.016508444454681217,0.07346072019469961,-0.01487770295853533,5.588115152859052e-05,0.004479575963631858,0.017564665899116216,0.17259954603777977,0.01044762421734561,2.6256179317704386e-05,0.0010631999203173034,-0.013722973553496791,0.0421254064415956,0.011097100154514938,0.0001138709874691769,0.004298794316665218,0.0031197725195483937,0.014107592670889353,0.004510782205778003,0.00034857640570244355,0.0016693004935421408,-0.0013701425753614987,0.006560367656001536,0.0006503518464173862,0.00011962153715718322,0.042688860285768834,0.002731149734105449 +2020-06-17,-0.014122862312812536,0.11069469174335915,-0.015874913761294296,0.00013492192032107627,0.01077683727388376,0.05981296387240823,0.2014778918384386,0.08579299998833678,7.123254348200858e-05,0.010279671741031162,0.017266069980979182,0.06020562289511052,-0.06204678156755215,0.0001326641709306416,0.013978402367237443,-0.0021622282545243256,0.0025116272161160823,0.0007659875345361275,0.00029054554050468465,0.0026612517584678782,0.006659429753187614,0.01284838495614264,-0.015292837320928529,0.00027119786998752477,0.0057121523543725355,0.006320685104096859,0.018068638265193695,-0.061229399555906845,7.638102300812303e-05,0.001194966202776969,-0.01747080226558577,0.06383664423200935,-0.0033362868978264793,8.030316354840737e-05,0.003287856300800512,0.044625432257190394,0.4338906939109614,0.15932497861614173,3.5269614667208385e-05,0.017794264773602627,-0.007314077003305382,0.005920200516275136,0.010377343270873175,0.0009527257393091723,0.003759886815913915,0.035703119880483976,0.08706475258659382,0.027837325065203637,0.00014339225162111047,0.011616071281601177,0.010570280439449374,0.008251494885229332,-0.009085399720585278,0.0006261497811824366,0.00019642028431199592,-0.011184873146962777,0.13956391743273885,-0.037028551701504014,2.3882550302074406e-05,0.0007789427441107115,0.018846066697017355,0.055596001547633264,1.4925277017622534e-05,0.00010069970616031366,0.012081507675758142,0.0035193353992065755,0.020752696615963545,-0.08995437158879431,4.773621040350761e-05,0.005723336624012325,-0.01360867279157526,0.011336628659261123,-0.00048733488692693843,0.002341287914565613,0.02226533668327849,-0.10414578699965783,0.6057995836461993,0.14376837583134036,0.0001414701595797751,0.017652399575290422,0.026620243319997614,0.15578942181126276,0.0060394255138601855,0.0002645953984870595,0.017843123445942577,-0.04202547808804653,0.24541346423496613,0.04166967781954469,4.823643830698947e-05,0.0241095289401764,-0.008285252773311986,0.04244102425278764,-0.01054253730292698,0.00032174122705647747,0.015571376100731844,-0.031725885004498605,0.43644587702706233,0.021276638395194114,3.01657120965544e-05,0.014042401312466198,0.002108775318421118,0.021140636812017718,-0.0020045842164891424,3.3326825971882774e-05,0.0062675590156934715,-0.06436022098738929,0.2089868569974737,0.14536285487147213,9.920220098010406e-05,0.0015238135743596637,-0.0414014651592136,0.3028669005287435,0.03681276184449296,3.1575938946104686e-05,0.010366478940599463,-0.0293458363658644,0.0923526564950713,0.06549625087943102,7.044894302027152e-05,0.0053495240722607335,-0.002248630966285086,0.010068118927293509,-0.009568584624186182,0.00010212179640986096,0.0016293128144384509,0.0687185506515688,0.06765437692949802,0.07235441104894079,0.0005805687477148138,0.012274633053909354,0.06189666853438704,0.20749184568398918,0.3198244055276701,0.00012556027257748203,0.0007347912552045009,-0.05857526715288045,0.2168616330696683,0.05073297797408719,0.001733607306994498,0.030461805345909983,0.008611724050953565,0.08194548323507525,-0.004820705878112134,2.7023853617818278e-05,0.011316504029146685,0.007075992144056019,0.02418529440644346,-0.0004725007511273451,0.0009565490251600522,0.0074677179250940895,-0.02498083834694849,0.19331268975925983,-0.008310460119221296,8.605424301001225e-05,0.0018937378362340544,-0.025904470926894727,0.04385575648315961,0.05777346626005023,0.00013940986487572156,0.0003156675094530999,-0.013516588405011987,0.017852654714217746,0.005111510154578337,0.0004345784610317224,0.008724214256844174,0.02338530885183014,0.09011056107171372,0.02937265719609272,0.00201148944207868,0.0006791689048683326,0.03247669718908263,0.12560634586553385,0.02312714778522329,8.29565428905999e-05,0.019033186057046646,-0.07722494173337713,0.10408708205524561,0.07279282192394608,0.001844327098182779,0.018686061043389112,0.01580849758936778,0.047227603130992404,-0.06286213720840748,0.0001326205207182908,0.006661497421107205,-0.07099356937310507,0.1940930411566919,0.12159961566962357,0.00014827550886951758,0.00035263628199817636,-0.05301303197989163,0.2406004120936148,0.09825414174239903,5.3777449580461554e-05,0.005172929480033072,-0.02136849682815644,0.06723685846278853,0.0036027978762334972,0.0030122056384930067,0.0057028788476622665,-0.03303144384289684,0.16316670142138676,0.02405567792126473,0.00010070165182335596,0.010187686541937139,-0.006581080647487389,0.03933071488032482,0.003977413925164144,0.00012134619334985708,0.0023831982925699904,-0.013500569819833828,0.07400427349252955,-0.10403682966071992,8.628672753013932e-05,0.013907016998436906,-0.0009241939392012843,0.003737312576645665,-0.00935896852255125,6.215142473259386e-05,0.023640900908649905,0.014983542101384471,0.025835440076604738,-0.020849204170461468,0.0002827665433709918,0.0014875495163888274,-0.03209085144601048,0.12952873910905646,0.15912842549493866,6.160691730597745e-05,0.008628318931437808,-0.004209638132585135,0.04884387322833672,-0.11966726035510825,2.2236475629543145e-05,0.004625932403783961,0.0007183158268892838,0.0018096432383222154,-0.002551387622889878,0.00013874950282493585,0.0018260801059530225,-0.0033255851016301334,0.014220743230503584,-0.177263011421456,0.0003686156263935667,0.004195619442080145,0.02566042473107453,0.13007685121772655,0.006687099592568125,0.00011298885851719933,0.018048121046158327,-0.0067427227357848485 +2020-06-18,0.04802101022427557,0.27801756757399354,0.11052715862539682,0.0001826609183332662,0.01418785214674904,0.04284366755692757,0.14653081803804846,0.029147075916795807,7.01565450027325e-05,0.014982552918727798,-0.006541088109259284,0.02580216583273736,-0.041450016263581926,0.00011727111152326599,0.006170400208250479,-0.0147059848817894,0.022343300953011475,0.012421347787091953,0.00022213379494967158,0.0005915369223059355,-0.004537165026663751,0.008570037401296594,-0.026809750199652413,0.0002770126684420836,0.009356579875244533,-0.0031823839685303818,0.008573328100293069,-0.0612356787764843,8.10494129166231e-05,0.0046388109860814085,0.04375944326064195,0.16552959660659095,0.08044690597627842,7.756860595406632e-05,0.00878065625496306,-0.005691348174598864,0.039396047730211596,-0.051119607098524804,4.954058314855361e-05,0.01365409471474911,0.0016134549307024934,0.0012827751295849473,-0.004562371628505907,0.0009699539008299582,0.0011177873916221443,-0.04599161325511075,0.10503172108103345,0.08029393818836177,0.00015311581418137857,0.0115199815873715,0.021472769623960247,0.014126808057802124,-0.015558456043021616,0.0007429650398150274,0.002206263722462828,-0.002170036457539382,0.03359306338008746,0.001283265294945329,1.925042004777517e-05,0.0006306078154446871,0.02579041870622823,0.06719099430459347,-0.12023675671946102,0.00011402454893306802,0.012914377280641728,0.005370820068193879,0.025111382989759762,-0.042969701381856774,6.020489309084783e-05,0.006287953789050654,0.0017101784896276589,0.0013835729564395775,-0.0014536810012855215,0.002410806465830988,0.017001954366893144,-0.009573379887311969,0.06826384109020563,-0.021269254496138177,0.00011540554569505675,0.004542521318947451,-0.022433918521852073,0.11790510927289849,0.0057306935504045815,0.0002946325639003324,0.00800781294869532,0.1077461500984984,0.6607517637963162,0.24192607208685987,4.593295504131068e-05,0.001981543854472601,0.016015137133985027,0.08411463835843071,-0.08254910995021579,0.00031379490454890344,0.0001967127575606101,-0.011694191645885288,0.15733213361789153,-0.01762296104256786,3.084487437767573e-05,0.0010558909636481856,0.004811323548643624,0.05423645965964072,0.0015884075492533206,2.9638412581346827e-05,0.0032682800491553093,-0.02672073629597364,0.07438983817035887,-0.010949379784733128,0.00011570644833936166,0.017169976943665996,-0.031661441017180554,0.22849382479804778,-0.04797520586588871,3.200726649176423e-05,0.009661326146227197,-0.0019032645781787323,0.006003929672479225,-0.1754048883270055,7.02814884896286e-05,0.0046785774269173415,0.011532503009404543,0.04975274599514573,0.0354910214367071,0.00010598761427554169,0.0044340342622903985,0.051777398909716464,0.051314545651847523,0.030482707304544002,0.0005767336652061311,0.012918502312385484,0.016194576331747455,0.05910850367201485,0.007169881022349572,0.00011532026576576473,0.007621192419819447,0.10377680913128294,0.38780875260400355,0.09235322452101481,0.0017175203093540389,0.013181503392824138,0.01808901278875942,0.17618517864193992,-0.0008134346015544108,2.640144455606007e-05,0.00024475390816129346,-0.0017636256014136183,0.00544183949142913,-0.053759347710937454,0.0010595755697013886,0.007840250103949169,-0.03505809488848837,0.25436155694105705,0.06605438363008696,9.178304901466235e-05,0.0024379783597548235,-0.018798898986144057,0.02853710155463823,0.03640426534355665,0.0001554776399740723,0.0023893638561837743,-0.03603913692322792,0.05194406261700714,0.007646204597318021,0.0003982377102662418,0.010150521519922571,0.010035204524388693,0.041317488634185426,0.007948632343021282,0.0018825332386809396,0.0023771236817823204,0.0323765057467169,0.15430611602634334,0.032470975793192164,6.731893022378806e-05,0.01243072670290052,-0.12067149438461411,0.1812524447149143,0.16523116727007667,0.0016550000446561167,0.005970328305299386,-0.013840945446205614,0.05085171926153342,0.0067812787646642754,0.00010783907467340145,0.0025531757474224256,-0.04322756125320509,0.10912463113288798,0.03102533979078264,0.00016058253970731027,0.017012036490556944,-0.00843407245135795,0.038199799385639215,-0.011115920428091315,5.388776484609089e-05,0.0009700661653525563,-0.009539926580369687,0.03607933477690438,-0.0001970095067733548,0.0025061356176135753,0.006904773649155626,-0.018541421254763987,0.10457099573548757,0.0021377814745717873,8.82007642602064e-05,0.0057150305880374844,-0.005114051429213826,0.03010339868623006,0.0012227550438888687,0.00012319989712510781,0.003306073452061304,0.012308616175767879,0.07633376439453937,-0.061931312959605626,7.626780504314184e-05,0.02531464705201322,-0.023885737887695015,0.11831119165297553,0.017738005461704724,5.074114095368708e-05,0.019611360514374197,-0.0067765460933801435,0.013878349921171434,-0.0023488964066320267,0.00023806741562047086,0.028891336363741565,-0.014419534340112406,0.058852422052726956,0.01978518537186741,6.092580424074522e-05,0.00038346622579646085,-0.011396674290262218,0.12737831394322377,0.01244682526191162,2.30841520399438e-05,0.0018787843464346623,-0.011303536217573702,0.035817507941691897,-0.002248109418384212,0.00011031331326951645,0.004644636146437898,-0.02322454758900255,0.08881381189804309,0.022892356772223395,0.00041218741079901476,0.010797375321540924,-0.06498036320399221,0.3311924560809978,0.07081217974760903,0.0001123759806485396,0.049428655362954654,-0.0020012400430854944 +2020-06-19,-0.00493100944960283,0.03553667277144961,-0.0043811270994000935,0.00014673903391184786,0.00987192454086464,-0.04332824499912299,0.13757027582829534,0.006202858851374351,7.557132154014024e-05,0.0023102515386820336,0.029838757903057327,0.10057618593581774,0.045845381827348014,0.0001372406553080378,0.00801183197677188,-0.03425337479838162,0.038652435362475826,0.10676683116334822,0.0002990848126215572,0.003998773025487659,-0.0430190199291984,0.07773436490941311,0.13223762612753157,0.00028956444154948894,0.01441127081726391,-0.0048423979941064,0.010200193603142137,0.0042587600447594924,0.00010365704067602128,0.00776225896636894,0.004979233938731463,0.01839951647373234,1.5106529128845545e-06,7.940465737705369e-05,0.0016405118894666153,0.028216544717309364,0.24689556241454688,0.0567290252594253,3.919125411268193e-05,0.0015965291013028,-0.004710674103099415,0.003936082214190837,-0.07303479353620627,0.0009229192089579214,0.005246787110494934,0.01694514315525737,0.04204238943592392,0.008322261989355602,0.00014093528492848043,0.004697870830816473,0.027119622193054773,0.020950005152636363,-0.013891948002780019,0.0006327379151049208,0.0076035900273516924,0.01646413110558744,0.19279602337434604,-0.0593618320837084,2.5448578774061247e-05,0.012522263577497392,0.031954089059183115,0.09240212245932033,0.01609777784386187,0.00010272958463599067,0.04170754347145967,-0.023204089527095368,0.12165432711443043,0.09484939402562205,5.3690665834048395e-05,0.008850534870620888,-0.00019239579611994405,0.00017635266025311323,-0.0009228139861699988,0.0021278280793573844,0.014463885419587718,0.04965569646276093,0.3247316317362691,-0.0010158229594092161,0.00012583359100816328,0.03317622459114138,0.0652843914395304,0.3332318470861153,0.0625546516921113,0.00030336892430896957,0.013306543507894952,-0.04656210296411405,0.2381317187450274,0.03655221981881701,5.507776342725546e-05,0.02561654963952131,-0.01473320403886642,0.08345107113738745,-0.015690994790276202,0.0002909726004542358,0.013183705703106317,0.0275263265582878,0.34764788530018154,0.006468591966504213,3.285783142146049e-05,0.019102636604886893,0.0011914913725636477,0.01111477194511673,-0.057231397633533444,3.581558547228998e-05,0.009832087015849698,-0.0346783575985987,0.09229997374703829,0.02178819621408405,0.00012102628402861851,0.0025835232159607925,-0.030419614500320106,0.18598269301664774,-0.06442737155644881,3.7781008819456446e-05,0.0204478011182289,0.00857821901330831,0.02446518753631688,0.014229990078093002,7.773667544931787e-05,0.005602182131116436,-0.003844788638887791,0.013671263606817887,-0.0840087074298819,0.0001285915432464029,0.0010346894675883282,-0.0034139197002146073,0.0028216928492326232,-0.006313772373364694,0.0006915428979609358,0.05025767751389715,0.027195518368895905,0.10575516111110435,0.02821943409038459,0.00010823850350386267,0.018752679340065886,-0.029265536819564647,0.10611136281636958,0.009764622178576694,0.0017701651125925548,0.023483909942794826,-0.0008367590645987969,0.009095338685755487,0.0018268309169991752,2.3657222003957834e-05,0.01471950511198983,-0.00915306039432794,0.02770277030348534,-0.08158282649510873,0.0010802254292008359,0.0029870340570494246,-0.04176578272538164,0.32059167130079214,0.0754149313650521,8.675490379734552e-05,0.010237779956154503,-0.01673948093792893,0.02851752808732347,-0.008675690197359842,0.00013854009958212842,0.0029878837296797777,0.026326984470004554,0.041598236027077844,-0.013907434587717931,0.000363270487140718,0.0037522277553476294,0.024154097666469688,0.09945444535667468,0.025179627142278158,0.0018824218683410612,0.0005144381216919364,0.008813213510746487,0.035846320320643846,6.137335293086532e-05,7.888239366200643e-05,0.009097950362918637,0.012970351527057304,0.021871588701137583,0.006556464282732501,0.0014741735276633133,0.028298613427671673,0.016228072209319846,0.05320866404057737,-0.10877797493048577,0.00012083718881167691,0.010946357342177112,-0.04147044137145571,0.09009398826217485,-0.04044124133975699,0.0001865963830006866,0.006457183905156464,0.00880588069793001,0.034573636547473904,0.009062446460515305,6.216438767627082e-05,0.020802594488893374,-0.020860502886161106,0.061515944223970005,0.007410817457678604,0.0032140685651774934,0.042112924384358826,0.029275159426959543,0.1608717638668638,0.04690397993467385,9.052322460010238e-05,0.026485656348991936,-0.0064746783622032286,0.03627278807614494,-0.028861569744737643,0.00012944880482430887,0.017779174304827814,-0.011566069538500626,0.07525232944939424,-0.002631247629652687,7.269667535425869e-05,0.01134037050260353,0.005465151311655069,0.02494457173879714,-0.040877181632153065,5.506473244369061e-05,0.029101536621616908,0.04463776847531783,0.08669120477097883,0.007942937992469952,0.00025104803756773514,0.027102610607526785,0.005194016309473043,0.023362952683059192,0.0010710778306038612,5.5282790341172164e-05,0.0025793707787729716,0.022306904542688903,0.2218481998150324,-0.07706348097022354,2.59426708355439e-05,0.00496521697955508,-0.006048817041024681,0.017741806954771573,-0.0009241766371167507,0.00011917401296485969,0.003588661979557377,0.01425481361375982,0.06849286060502689,0.054482499756092644,0.00032805314766108456,0.005751692258482834,0.03959818539066601,0.16962968260524747,-0.06586269611169622,0.0001337042558155339,0.025777494280339427,0.00240203928047257 +2020-06-22,-0.029292398872963338,0.20208319502973776,-0.024529314677219603,0.0001532891173480957,0.007292344403812856,-0.015425272692741538,0.057455586793151575,-0.015805796309454636,6.441857483875421e-05,0.0208603629060183,-0.009213767862503174,0.025543777343027537,-0.04097631156413654,0.00016685889020556482,0.001310078302596171,0.025389362161596967,0.026654398271992816,0.07216160367554945,0.0003214776345919452,0.0061184307444919084,-0.037345837913308436,0.08679304626266346,0.08436812716438491,0.0002251412374426868,0.007316909999306784,0.002651918314265374,0.008477930701962904,-0.03564996717361121,6.829942068988772e-05,0.00757849298380631,-0.0015129961562093837,0.0051233461133160015,-0.003296711244172202,8.665108074792763e-05,0.0027001287357523874,-0.031721800103692896,0.2515672065580082,0.04970641688435637,4.324166533213719e-05,0.0037648212877850968,-0.02067503177499301,0.01826966907880137,0.05237485637145373,0.0008726905864277053,0.011063279626640301,0.00014523168376542715,0.0003742476590210403,-0.01239298162320469,0.00013569510030863422,0.018372567898828178,0.010562261966822282,0.0073580963384257785,-0.0660819970244676,0.0007016423965738494,0.00939844857697117,0.01698348974542546,0.22661790911287552,0.01758301908172183,2.2333433434709085e-05,0.006901516774377905,-0.0593868305691984,0.17457967795430435,-0.03649820451219082,0.00010105260133413188,0.03136678166392855,-0.0009489080738429758,0.004844082932543094,-0.01073554024032038,5.514096857178745e-05,0.006874384379366568,0.006923694667608006,0.005766925716642706,-0.006498454824547187,0.0023416205599234045,0.01615886341516969,-0.0059523607122500275,0.038476178673681825,-0.015398747213105298,0.00012730615940679605,0.016140586008491976,-0.028447142480660714,0.17192022316981906,0.01208058361818842,0.0002562240630303422,0.0319279940302144,-0.028410630323620144,0.15741845284207373,0.011837120849285936,5.083773412177521e-05,4.737852350748979e-05,-0.06001972504986049,0.3468092340306169,0.09670931996791786,0.00028522668648328197,0.0067255408604239095,-0.0594354896409654,0.5948368932512023,0.04986266375528512,4.1464666759607306e-05,0.030834725908881592,0.0013641214894272984,0.015989452400353907,-0.014011941044885649,2.850369545244291e-05,0.00495882101805002,-0.0007250393338206491,0.0022088377852548108,-0.02054152146812857,0.0001057354214918424,0.004509063731671366,-0.037274106113222294,0.25390820206989384,0.032981043328286136,3.390961688489134e-05,0.005829804846155266,0.027035171289172273,0.08060820418316096,0.09003460895746455,7.435792498040685e-05,0.009900092903873971,-0.005553326495310683,0.022028995177673434,0.006568574541537803,0.00011526756405741309,0.003459489631556089,-0.027184567989168473,0.02400188064806908,-0.025948409023647895,0.0006473702317782355,0.005964102515162956,0.021137180648919,0.0764512127452489,-0.0015956499888476292,0.00011637205115098581,0.008243515122322926,0.03182829694144259,0.11614232261702559,-0.05238298590675192,0.001758903726512813,0.018227932269327875,-0.004422095221512515,0.034488882375884156,0.004477668319933104,3.2970927486925835e-05,0.0022138937750186176,-0.0066114237720925435,0.02160257199195178,0.013357567124728492,0.0010006007029562897,0.015478130460021354,0.022371714198049585,0.16176711827749465,0.012065647910767988,9.209470407566028e-05,0.0036385823991634657,-0.005085430552617284,0.007207563339308645,-0.027261807116291135,0.00016652699551517448,0.011073888890705388,-0.016423733274842537,0.02267117900050087,-0.052123949055759976,0.00041581647386087063,0.007257756907788727,0.018788157755129847,0.08220767008686361,0.0011960125450536387,0.0017714226750678984,0.016430777400184223,-0.0037126045687870834,0.01480799625163848,0.0031299980750381573,8.044013103556479e-05,0.014015816526207014,0.05600331249417895,0.06343921444922618,0.04465631942673573,0.0021944874964722996,0.0336622038997079,-0.0003084558553535942,0.0009905578719783576,-0.012475026831294306,0.00012337557837310421,0.0038754458559911416,-0.011636079341582098,0.026671940601950155,-0.014610552849312198,0.00017685300137692509,0.021558343639767722,0.011711900287500014,0.043768950850243196,-0.03065276760519735,6.530931890842234e-05,0.015604526481427914,0.019288095749579067,0.0506777232819423,0.0004180957096381733,0.003607366895311765,0.037113509696757745,-0.003042804003453811,0.0159915739296929,-0.00513990488892928,9.465059306467327e-05,0.0036516866163345658,0.02783261420272683,0.16053977313193007,0.02612443532512866,0.00012572803824054417,0.009246209203701587,0.029090701341959214,0.1659450863231047,0.02547796050957723,8.291602867498315e-05,0.002280655867441537,-0.003144276934752293,0.015999793650976472,6.0737841958456986e-05,4.9391680540735244e-05,0.02162816363524277,0.006541658962117169,0.013969387595389316,-0.03211195873090535,0.00022831788134806115,0.012337869369007689,-0.02882232716361248,0.12111649309891977,0.05600103627146778,5.917525417299035e-05,0.00041612299028286005,-0.0385926601252275,0.40278383090352754,0.0982930229630199,2.472088259458452e-05,0.0019389284837257794,0.006597198759377695,0.01882685507878524,0.009253632087120274,0.00012248721313956826,0.0001965202980034947,0.03229922434568206,0.13034571231638625,0.20698370511003775,0.00039059197324735643,0.0043054254122837175,-0.05221395666870652,0.267684249394646,0.03837686691558704,0.00011172119759284224,0.020020443882722026,-0.00466306846136024 +2020-06-23,0.0019111968323283677,0.013691777342083407,0.0024708297115898057,0.00014761557171603698,0.00567346853354567,0.012183767905146274,0.04669000823528332,-0.02174866398541651,6.26135306352307e-05,0.024923291646902424,0.006695441004786841,0.026490905792252398,-0.08850737108639652,0.00011691751711634042,0.005363400973812571,-0.003415893098041252,0.0037781342006687085,-0.03290886763901471,0.00030513691206900443,0.0035715108880180367,-0.008691051718184531,0.021396620822513923,-0.028068188277610095,0.0002125322872884403,0.011404942194973814,-0.026183749190303342,0.06287084457148577,0.12861192093262913,9.093462447094144e-05,0.0023289798638878568,-0.038779610633644504,0.1317097711561752,0.058936719435280074,8.639235331106206e-05,0.005113982053741582,-0.028068005985474508,0.22381978193544647,0.038007380349535866,4.3004282555047146e-05,0.011190512728351858,0.014611800951246003,0.012680384428240689,-0.01666396723412428,0.000888620061999481,0.006653660386118228,-0.014997264671876419,0.038021964149170695,-0.004911506387825262,0.00013792385724861118,0.014676513948677963,0.0070959839228829525,0.005694915152246038,-0.07411806599861748,0.0006090454781655305,0.004188906810504067,0.008242474979260799,0.12394964367125394,-0.007647184752502211,1.9816873828974916e-05,0.010137624240727993,-0.016530425353910933,0.046614160870673035,0.014303207965850639,0.00010534579284252589,0.017242995411543578,-0.023173547457058342,0.12940336045922562,0.049166174262131566,5.040908162463568e-05,0.014897158106729872,0.019110225249988982,0.0163800123159432,0.0024024263193830483,0.0022754880267965437,0.018834135858208978,-0.016238804881930264,0.10641656314689127,-0.0075547519336224,0.00012557319450705787,0.005847427370453179,0.004744752956575484,0.03293937985143424,-0.02841426075748862,0.00022305215245790132,0.00945220596470339,-0.0432753653540216,0.30806221836244535,0.024420836037270723,3.956974582945097e-05,0.03346705772002978,0.02371381877204988,0.12406304445904791,0.022227884502886455,0.00031502561611113154,0.030551756007817836,-0.044664380845358835,0.6210056266691969,0.02823087728230918,2.9846678954386252e-05,0.008090479022310972,0.00259224483498126,0.0275621271745388,5.57026284487536e-05,3.1422808205293406e-05,0.0005641279931159287,-0.006263547030308742,0.01719467387349948,-0.040661103213671924,0.0001173408298876195,0.00138902021044113,-0.01274693273587381,0.08890836465779489,0.0027000640474640907,3.311734009976065e-05,0.009262763549583837,-0.008454159659061591,0.02521210809149757,-0.01153924531272387,7.434275774917318e-05,0.003275420426743586,-0.005565201693888271,0.02605871722476073,-0.0179818046220625,9.765094963686215e-05,0.0054802309875067534,0.015406583112383328,0.013123267879255811,-0.002515986233642459,0.0006710268507200424,0.011126385914236798,0.0010914964458397843,0.004288669533120077,-0.010913057906513568,0.00010712374631334401,0.008297478467986766,0.004169414904282387,0.01316994759123846,-0.005111700652987667,0.0020319370183822026,0.0455862585355544,-0.009310925914399219,0.08451881238765172,-0.03407187631148941,2.8328376146186603e-05,0.004378805892520127,0.003153836630136234,0.009458453457849873,-0.05838376220894392,0.0010901602225869955,0.0118324228826497,0.015863029963408805,0.11337690828303833,0.0036177423911090117,9.317237756613311e-05,0.025354033583206963,0.013045006918985223,0.021909184264686472,-0.010077060152143675,0.00014052820278457497,0.020204750356029887,-0.020299978343735488,0.02873771063428826,0.012837800570381828,0.00040545935105224196,0.002776804141789704,0.07206222010032849,0.25877890275277016,0.13651521983802187,0.002158385982604762,0.027919950749596783,-0.002149667290786755,0.007104252437310148,-0.005089680443840354,9.70830101931319e-05,0.004032676574557841,-0.006378316444727199,0.00836218799977408,-0.061831929629403246,0.0018961091174058465,0.0542716517711757,-0.004876559059237196,0.01367727689383322,-0.01688407930587558,0.000141263475033389,0.002337671472233507,-0.01965802103648473,0.048866699994479935,-0.005345367284575721,0.00016307491461261113,0.017636496230503878,0.014747543099685068,0.052932903875047725,-0.0019116203157575648,6.799983818707689e-05,0.009055939766769173,0.009959046101873219,0.03274779706090271,-0.04728654187154258,0.0028823964242396076,0.0009372870838840173,0.023712093459502745,0.10232871910524725,-7.682699941957132e-05,0.00011526910758204796,0.003921962623095959,-0.029298728112986387,0.15454844283846558,0.06815128615667855,0.00013748170780940064,0.00415564756123038,-0.01965792127858152,0.11878420166236733,-0.00553845030728628,7.827581661952843e-05,0.009914937929741482,-0.021776730554533164,0.1023759446234872,-0.01088018198890858,5.346162440733984e-05,0.027432678729878004,0.021287531944492535,0.03949197705907514,-0.018455970006343303,0.0002628123869698093,0.02478108124938042,-0.0001723262553309252,0.0007880869079819349,-0.0007356922059201602,5.43740539584712e-05,0.0030199880569939464,-0.010917819430752235,0.11267423147315755,-0.04372741460731588,2.50001484899233e-05,0.014248052182939315,-0.015450259607313492,0.05362461781141522,-0.020202185045083736,0.00010071184120692346,0.0005982513624064341,0.0359037788921467,0.1265132959515055,0.1569591161394432,0.00044733405465975125,0.0009471837143824656,-0.01612636315209858,0.07410195661687749,-0.07536632553136093,0.0001246460602508829,0.015337898829621764,-0.00299242540681267 +2020-06-24,-0.024641261308457427,0.18635475080422492,-0.10209375658009646,0.00013983279848080654,0.0007767569528451827,-0.0019849084887558818,0.00641890734235095,-0.04709028586349614,7.419760874962334e-05,0.008319160453335327,-0.009759571951091712,0.03261671968547849,0.003782150755160303,0.00013841644581657434,0.004525531691613157,-0.007326184197214264,0.008494441201998382,-0.0002488159167829046,0.00029107900078510654,0.005265190993128081,-0.03550401034346496,0.06664692631730375,0.06898439597868018,0.00027873728059797583,0.005803194662393168,-0.010725274533875744,0.028907519819090538,-0.06628846925112143,8.101106196857314e-05,0.002580446442755539,-0.012881828825626768,0.04259359820213421,0.007442189357036969,8.87407407050941e-05,0.019093020879374867,0.03998497531529426,0.34220752478089955,0.08469370457129463,4.006875899717782e-05,0.01410735746097661,0.025131529288688614,0.019856544209817802,0.0511225077097587,0.0009760229650481223,0.004753011920312639,-0.008871414955461683,0.01825129372590661,-0.004242727227845732,0.00016996563672158434,0.0003105007357494167,0.02425254793734906,0.015469012282975016,0.03664032603175084,0.0007663358550134368,0.010646192451032717,0.011275673100236293,0.15188681429237116,0.007018664613823972,2.2123059771397668e-05,0.0006559235528326578,0.031286065393151895,0.08788288485123182,0.013541656186565866,0.00010575421403300706,0.0077271168928661,-0.0006159108456091387,0.004144945483565102,-0.000556121426953079,4.1827397838803674e-05,0.002026942587595924,0.02829834303261902,0.02605021652984945,-0.042279610064889186,0.0021187154905742745,0.005377445335763079,-0.07363460930500353,0.49821822718170433,0.046471544524719785,0.00012162265579496493,0.011351420923140317,-0.07910642847175599,0.3638447083976014,0.1120329689944195,0.0003366696333891905,0.015232334787235312,-0.013207641429021845,0.08264057747852961,-0.007501626508999959,4.501869303230305e-05,0.033361691072130474,-0.0025532152678454734,0.014883884496589138,-0.028800297386037576,0.000282720922425228,0.005473577819104212,0.003785928671185813,0.049885519975151206,-0.0026171455203421474,3.149402408325254e-05,0.028497789466574722,0.02009379393050859,0.2022948382827892,0.018051910452242057,3.3186301283126015e-05,0.005136084050629085,-0.03761219882380513,0.12230865351272002,0.030630005651316107,9.905908084730909e-05,0.01171387846288572,0.0033508882039900954,0.0238880277537671,-0.00330110523350279,3.240201507990535e-05,0.0014537394461432921,0.0003037347732946124,0.0009724269634528416,-0.017202189712646386,6.924922304770415e-05,0.014096585670268707,0.0008415717842382335,0.0030746496155397945,-0.049192085188134865,0.00012515382602166564,0.001782973208538693,0.017344508235414696,0.015304921423033654,-0.014174796913710938,0.0006477485478871079,0.028994387852859946,-0.03813007546130544,0.14473972108414726,0.09784554293071884,0.0001108832489194855,0.010555804070199152,-0.0022483670267583766,0.00721128272635296,-0.028731586210058228,0.002001123349172819,0.022900881985493463,-0.026033240956579197,0.19970607731693335,0.019236010130998606,3.352116873640211e-05,0.00025222432072896737,-0.029458727160570925,0.07228407264012585,0.060997807308505105,0.0013324245752425604,0.003768067413253663,0.012219851933698922,0.08479931577731743,-0.04667372678687338,9.596198852112834e-05,0.014145105558892012,-0.003566195569409125,0.006302028361080093,0.00018058542786875785,0.00013355808675865957,0.00017442266589183433,0.04522024695440762,0.07051198218916653,0.042286573489607335,0.00036810686772768635,0.027454945861754145,0.011955853851640889,0.04762517380694967,-0.009145375613019688,0.001945782822583399,0.012297558058406204,0.05533558067518326,0.18264454224718632,0.09799347070109332,9.720489664809872e-05,0.005516880252459581,-0.007296151767140952,0.008815305796809827,-0.002837222396364949,0.0020574707448581665,0.00735211933302063,0.04283420300831995,0.1609074007604513,-0.0389840336602586,0.00010547042783063084,0.006547199321428736,0.012263902254957286,0.03302842027367932,-0.012403070863812295,0.0001505224416192839,0.03466902226943614,-0.04193404013318051,0.17134691801671714,0.013634049299777065,5.973162560082795e-05,0.027048104719181846,-0.0013981322875252285,0.0032790095974184618,-0.0021685580980740707,0.004041323676914013,0.008144698603492043,-0.005422484791385547,0.025539680190211064,-0.0007760137105956257,0.00010561447842418747,0.0017421998649968361,-0.004254709171543166,0.021728026378599045,-0.0031927674805534135,0.00014200720641448363,0.009560320410278163,0.0007531037118759608,0.004727928349913622,0.0002686266486138233,7.53412116870237e-05,0.023063621743296743,-0.012823001695504687,0.05637987384513223,0.003235025576471676,5.716273434397311e-05,0.003940647771966514,0.003927554480231437,0.008015857910592011,-0.005343593522289752,0.00023889199747710075,0.018321251194844887,-0.00108382914612221,0.0044825882012030785,-0.006888423327611193,6.0123791215200285e-05,0.008583634061340238,0.002177640293590602,0.021209684863804323,-0.020903081899787058,2.6490076563694487e-05,0.005858240115274529,-0.029119254054492342,0.09824777631511293,0.021229643016565856,0.0001036016042586613,0.0032200549123616983,0.0016985149300601564,0.0074560934496353025,0.0004210181924235446,0.00035907568453829854,0.0006653813762650662,-0.031657807117492415,0.15344367243034698,-0.012719926621955459,0.00011816902184167888,0.03496058413604172,-0.003359990497795723 +2020-06-25,-0.01712402636109478,0.1206368866874381,-0.055566267502903104,0.000150110942214897,0.006988298424535612,-0.04028198816279155,0.15146911602754265,0.038934575557725885,6.381126191487129e-05,0.03401980975647744,0.013020384551354841,0.04365423483859363,-0.023371863411948468,0.00013797316767353318,0.0011421991641741495,-0.01159752525984828,0.012120619752607491,0.0016319988650607554,0.00032292997326303414,0.007859904724718193,-0.00818628408360758,0.02032805054400241,0.004765067814654943,0.000210711797565142,0.004143452866756654,-0.018002994706570588,0.050601806164155744,0.045477547419112564,7.768290804382765e-05,0.00730241848774539,-0.05633566530535164,0.21605278956772336,0.08944741422066958,7.650915486289175e-05,0.016719442393906415,-0.010282241267074997,0.09797951216312328,-0.008999875056453138,3.598745475159561e-05,0.017940749313942864,-0.0009665913456235896,0.0008234215836165932,-0.05043805099929788,0.0009052435569272995,0.003163844898026959,-0.006506329509157467,0.012377699393264118,-0.02059000993464434,0.0001838052912328415,0.024916941805451093,-0.014629142911537402,0.009757280740051173,-0.029239956523666046,0.0007328488993639125,0.010015781352404078,-0.015034219674631373,0.18782357274772685,-0.05985025789339304,2.3853580856348677e-05,0.0035782499323514516,-0.022330607649349944,0.07097908900526366,0.02155671680809556,9.345900604120413e-05,0.019352359262434272,0.02925169779302921,0.1481198257637218,0.12557783702679629,5.559038781136819e-05,0.01221105328320608,0.02778425760603813,0.025793035241203043,-0.026438310514270022,0.002100967421019299,0.0012195851979318348,-0.011762170727078997,0.08920917249982128,0.0006129263372340835,0.000108500084332664,0.007116529834238215,0.022943202019999,0.1259504929217803,0.006705825115582479,0.0002820735664267641,0.02455906579887154,-0.11656147863306912,0.6442917743769403,0.07303635476183377,5.0960469114535954e-05,0.013116110672148152,0.022142510792986285,0.10682896410710285,0.021715918471417822,0.0003416053434004938,0.00025287097787546385,-0.00585224098867905,0.06825813000971823,-0.014462054564882143,3.557935302516384e-05,0.008124061592725006,0.013969308324221026,0.1426596189942265,-0.02882051625724177,3.271564991893741e-05,0.005920312470785925,0.022690800252869164,0.06159651904864977,-0.0032714188296257946,0.00011866329365979541,0.008781340510258221,-0.02790732783906044,0.21271697780894486,0.014005778740482451,3.03045944349015e-05,0.005880080308605005,0.02167248609166245,0.07107096719699371,-0.032085635629784254,6.760734629601302e-05,0.005227095974302017,0.003874217047305793,0.014323058018917902,-0.03369829620980229,0.00012367923554781207,0.000617865602037239,-0.004330142387372632,0.00469751347169938,-0.06984017327948373,0.0005268775629343053,0.017872920985342634,-0.008679509298476959,0.03222096084678762,0.007480303836599944,0.00011338162959265255,0.004114166006520386,0.012713943892622894,0.04014808691402753,-0.05789003865647306,0.002032518978924862,0.0018523174907638742,0.013854474837461092,0.12112914367053518,-0.22031264797507671,2.9411936289108798e-05,0.0010944723740870313,-0.02685079231518188,0.07275094296664184,0.048618715123931025,0.001206673425396296,0.010942222439828262,0.027372882648403374,0.1881869980834369,0.017887823739424154,9.68626985733395e-05,0.006492110086590542,0.004637726291693583,0.007487897139974217,-0.011902303405650226,0.0001461808996308363,0.007074347713340891,0.0017690586312668253,0.002713026811272382,-0.07581048540697648,0.0003742760651210097,0.0003248775393764747,-0.07266669422039003,0.3259198212534247,0.006851869027756809,0.0017281242768471211,0.02520425990210912,-0.035379570927582385,0.1607034499352074,0.03524769876635171,7.063463931656953e-05,0.014173739626358978,-0.028489076652497468,0.040247318404842,0.003345575965473915,0.0017596188916378323,0.016732951007317247,0.01059652485184096,0.039681170411105735,-0.08639751074824496,0.00010580227938555762,0.003715508672691021,-0.03397177419828453,0.08765571570061656,0.01866846355574868,0.0001571080234268013,0.010919626048555722,0.012642124828215766,0.05445362596383362,-0.05656912528164311,5.666399563847519e-05,0.0028030094100287544,0.04926606618352345,0.16931054992933947,0.04372351201977345,0.0027579216465426545,0.0211781707040891,-0.004538440301873003,0.025364777305107715,-0.10205434232804586,8.90053565252826e-05,0.014650826892210438,0.0006614157841249048,0.0034118049502794424,0.0007101152186955865,0.00014058893601379547,0.004804057858888983,0.011028803469377325,0.0515063587882739,-0.03264039083847409,0.00010127826381013312,0.01990395299899339,0.05377996267308735,0.26622299195977495,0.04737069168068076,5.0771773202237546e-05,0.005130337265957379,-0.015256036300959949,0.029836692504565263,-0.015606304058692006,0.00024929893832198214,0.011797616292688138,0.029424705472203504,0.127073155972606,-0.0069008170800192664,5.758013571880192e-05,0.008169175892376552,-0.0165514786560141,0.14391970542346494,0.005869494218528581,2.9672068462263548e-05,0.004856514561989403,-0.013697923082702231,0.036628041613823555,-0.040655707336828446,0.000130722392814623,0.006357113548331254,0.009728215476108066,0.03789256559676975,-0.00895790698237509,0.0004046757136745251,0.006136653509198044,-0.0008573282793975448,0.0036171885171586626,-0.002585902593088305,0.00013575248925763383,0.04736041625780528,-0.00523624211631531 +2020-06-26,0.009489228781293458,0.05106608035173622,-0.006067438318006204,0.00019651014544053345,0.002971913944996233,0.011142588068958284,0.04189999881437814,-0.10308097851853205,6.380909590552739e-05,0.004175975548015808,-0.011685353353885502,0.03785386050913083,-0.05892386820517243,0.00014280022004289677,0.01107932552936028,0.022384474349387274,0.022699017292115566,0.0432108390528439,0.0003328186855054461,0.0005353006869401231,0.017602383718942807,0.04399192922788074,0.0020228257228629594,0.0002093612238454304,0.0017383625094640049,0.00031485723874581976,0.0010364965492242095,-0.13774411235322692,6.63273371062095e-05,0.007012190386970071,-0.007995082363695472,0.027469237701616127,0.0007870049222955315,8.540163589825388e-05,0.002048366551089831,-0.027750880224314604,0.22873698928304473,0.024678758988546018,4.16043725825248e-05,0.0013387198637286454,0.00535370026461264,0.004225603735331502,-0.05348641947679719,0.0009770348878368944,0.005201552639336195,0.002893197909504171,0.006809824770653861,-0.019242167758321143,0.00014856075304741026,0.01071823685633201,0.025255365182796342,0.01866708104430143,-0.031120294669004993,0.0006613046825821133,0.00859220030079161,-0.019794475568243278,0.2935438001473051,0.0674119958539798,2.00952714613929e-05,0.0017697401215611426,0.01136269145294177,0.028982592491172132,-0.017151437343856654,0.00011646489009954709,0.005157534223699349,-0.019349760918322866,0.10773322766295632,0.04496079149149139,5.055775142124311e-05,0.008430724843374399,0.03651030753715665,0.029510670659335263,-0.06348347768615913,0.0024130114591932104,0.011155600468735658,-0.02044646172123583,0.13127072194737957,-0.047539055196036045,0.00012817472603277106,0.004669114164790622,-0.01246762640149297,0.0857663436360934,0.0005938808738945588,0.00022509980361652278,0.004689000919634497,0.03412937913274088,0.2586130630018161,-0.020439142236988225,3.717396500479544e-05,0.006788019185678657,0.019874878454824725,0.10514459626246564,0.022783197399548726,0.0003115331964331416,0.013341468261004515,0.009249404829812955,0.12075193797367846,0.000475631632014933,3.1787026930158345e-05,0.018993290755972222,0.018053614780485616,0.19671470695274243,0.023865909794519642,3.066260513398764e-05,0.004674973506958242,-0.03719854188623208,0.11061979408232608,-0.06367686312913276,0.00010832178968672504,0.015026785018457119,-0.032810020369684285,0.2528237790272912,0.0014955345179375502,2.9976502310884214e-05,0.003674810493350089,-0.002670273807508796,0.008331999612264942,-0.0005449261849450206,7.105324829203789e-05,0.0012688587603055992,0.028431262483424553,0.10646123516176602,0.21898225501257107,0.00012211056477948155,0.002599693576470904,-0.08981139299483486,0.09304450820741475,-0.04525816077959126,0.0005517168514416435,0.015026321315828182,0.0013363359337285907,0.004206085637405482,-0.048511243779073496,0.00013372836809146037,0.0005735057415849373,0.005634582930048061,0.01931468581077587,-0.03196987468810847,0.0018723770186244635,0.0057085518608329736,0.051954468969878466,0.43661788129723644,0.055225429124177806,3.059874311651725e-05,0.006069781171003858,0.030953913119130743,0.09500688152812252,-0.004824542753550606,0.0010652014914885278,0.009230553217372041,-0.012865001148438514,0.0819680147906023,0.010022058247783922,0.00010451799156426264,0.0017815043625734226,0.016520795992691465,0.022356293943528442,-0.1159619616483571,0.00017441207279475472,0.01370369906482604,-0.01968625538465107,0.025137730935162646,0.011036823259385107,0.0004495116534937497,0.0029451723688533045,-0.028801385059113074,0.12004410316801065,-0.026248483244622995,0.0018596143260955246,0.023983863582307745,0.01645874980025363,0.061729244046696566,0.0009286759115582328,8.554531999789954e-05,0.009015369680039312,0.007234667380168626,0.010344550915193979,-0.00864577634232486,0.0017385377256262926,0.016222455333614594,0.011075409931767371,0.03510917398490996,-0.000958347520912133,0.00012498423439368057,0.008288121880966096,-0.002023016973861192,0.005061875916494303,-0.022867977615275356,0.0001620124568023361,0.024509020187133444,0.03982677940985107,0.15986488973128934,0.10939619290286452,6.0804541949612055e-05,0.02108759521229656,-0.02819974004188519,0.09086397534991411,-0.0413430745270432,0.002941517450957349,0.013265066080015145,0.023681197928641432,0.11438413758094645,-0.03407678315413518,0.00010298605831433226,0.013431185871577392,0.011506926152384335,0.058121162093213,-0.031838318708856866,0.0001435773129357133,0.004364499726714545,-0.009927347280171283,0.046025006945476156,0.012844935044958386,0.00010202064166559935,0.016685192896391827,0.0007111003530529657,0.0030737563150923294,0.00011388041926564281,5.814452876969576e-05,0.00037948231524708364,0.05472452266507502,0.10146944152708876,0.03979302985800024,0.00026295177459777496,0.015069916917365823,-0.021948409904582966,0.08863454062906043,0.04312751909081488,6.157642060889566e-05,0.020091418606517655,-0.014835001897968186,0.16079244755338493,0.006754750733365681,2.3804181099649655e-05,0.007566446944016545,0.006801696343165408,0.019537595544663205,-0.024013428294298197,0.00012169005543608787,0.004023770471643283,-0.014446496912121286,0.0461392600815427,0.0193048956661571,0.0004935372017279224,0.019978665298413675,0.012055248086678518,0.06318771504181205,0.0006080917043057669,0.00010927361162360359,0.0043533136413682096,0.003024357041418041 +2020-06-29,0.013162226017056173,0.07880145606312283,0.005567647151364297,0.0001766370022948748,0.030396091936495718,-0.00024844530665583,0.000769743527212543,-0.0034074434402480785,7.744533771810693e-05,0.021863867627650312,0.047969379772417095,0.17609184244539988,0.10444627006779394,0.000126014949646961,0.017026693027951723,0.015800877030937938,0.017377703891675235,0.007554306769103101,0.0003068715710748897,0.0005384174124026919,-0.013967467694434953,0.03482747572000627,-0.0018612108368859406,0.00020984249906089492,0.0034103494470946096,0.015760913000875065,0.039287953778654246,0.00538569448710135,8.759285892102274e-05,0.003938362322166167,-0.018445620858832924,0.06463269092489915,0.008470220008269504,8.373960251600571e-05,0.012091490360924903,-0.0011563699918121944,0.011186556933736753,-0.00567720052364919,3.5448592027167304e-05,0.00510460910799272,0.014412822911527168,0.011792972011075426,-0.04689423203239438,0.0009424765850453845,0.002102470710681001,-0.012073634232120883,0.026553185143611838,0.0008473161788286886,0.00015899493065753867,0.018550443056580043,0.0025523231284935964,0.0017535314828147836,0.008924241544318942,0.0007114533794173207,0.0013987949541711384,-0.0038851925865298655,0.05557944267331379,-0.01372564179127161,2.083152927013345e-05,0.00030513689770002804,-0.02936445716967568,0.08761670141889916,0.033004624251623545,9.956028149838394e-05,0.006044384863714056,0.024188057646420718,0.12776911952545297,0.054362189869618514,5.328891910976368e-05,0.0016023234801212578,-0.006441675450557298,0.005839674596877645,0.014191895606760522,0.0021514594495940244,0.001979759315148136,-0.006478073897815325,0.043681634875312014,-0.016839439118609176,0.00012203913514486484,0.0062725521690905756,-0.007736408605197979,0.05100564932926304,-0.030525012007025256,0.00023487097492972395,0.007234230334900582,-0.028185052464725538,0.18300530252313826,0.002490349382254627,4.338265529660528e-05,0.02270303617686478,0.03433601953021797,0.1892342513725,0.04186757308154476,0.00029904531873504656,0.025072429452041436,-0.0659949640130044,0.8648637269961486,0.0394182536619531,3.166601001431368e-05,0.022825230948044496,-0.02778358898985117,0.31274408372353557,0.09090734730200524,2.968116560275536e-05,0.005196158620787244,0.021443485864482838,0.06708589769311582,0.03778411916200524,0.00010296435568112397,0.0017939648136530404,-0.013696673738589737,0.10028577822221361,-0.02456866823670354,3.1547731641276685e-05,0.03418256737746324,0.016343823923408288,0.04393115981515242,0.01566417108418563,8.24818490146382e-05,0.011730962555346884,-0.011516213319023173,0.04426910388113416,0.01870006583687328,0.00011894811543239364,0.0040823394283105415,-0.017405789289285847,0.021854404317040787,-0.008508400507490018,0.00045522940775550766,0.02543064373436509,0.011054816205048765,0.04407436432686237,-0.03481147959771746,0.00010557266343322983,0.008908540810900655,-0.07609937062132235,0.26539737143922376,0.12093511389273091,0.0018403635473035803,0.023255107401552753,-0.0042429501237711345,0.04056492735809929,0.014187396405901252,2.6896726032767474e-05,0.0037537251649729054,0.011232427678298152,0.030093898964084025,-0.16769805411233363,0.0012202995249887911,0.012394203674701624,-0.0024859075308920338,0.021355801753007064,-0.003508664138336987,7.751660303536055e-05,0.0004349707948220617,0.030163468833504983,0.04693976723479742,0.009718153463174308,0.00015166512906644651,0.008625182613282479,0.020378922714216877,0.0316124670142172,0.01014368527872855,0.0003700213189760531,0.00024271372037224296,-0.030529105751945198,0.14608326627990442,0.0008553939984743075,0.0016198095448138963,0.0010314899542049447,-0.01319949954825783,0.051259898660390754,-0.0265472767855509,8.261712781127412e-05,0.01439727667198419,0.014520753659994674,0.01873185274985225,-0.081258961695668,0.001927017303846009,0.037076011724614895,0.05578180884850363,0.18099263258505552,0.047355545117583435,0.00012210901629960134,0.012807354727796124,-0.015697208014038868,0.045099091578632344,0.00016507261410180204,0.00014109609537420282,0.0030275567839887895,-0.02168109076943477,0.10493274202957828,-0.07016613400240383,5.0429426701722575e-05,0.0020491041104289407,-0.02273281557751991,0.07042527147149498,-0.053679470600143664,0.003059445751269592,0.005974985887644418,-0.03800159165881221,0.1702563388339524,-0.04747165971077317,0.00011102967473588469,0.01328216643523805,-0.01927450611589264,0.09627004017724368,-0.005794149371057922,0.00014519541085360193,0.01040294070114338,-0.011825966975640926,0.07852901872927269,0.01385796504412741,7.122872818389522e-05,0.019241988211216206,-0.010905409131948757,0.050890586310895124,-0.08392742997042393,5.385820857663231e-05,0.00185178794603142,0.05640510912624808,0.11099656967995769,-0.06029624060533519,0.0002477640438124483,0.008052253594276389,-0.0047590586626490745,0.02249644877740214,-0.0013436903706028466,5.26043267818406e-05,0.002563903346226589,0.02267953660772951,0.33231164226923793,0.038056033208184334,1.760840041429895e-05,0.009909611377620076,-0.004351424307153024,0.014357727724015508,-0.0027998458803284174,0.00010593871107498633,0.012935434082652762,-0.0023463007773173268,0.00955328960140274,-0.03661248284976916,0.00038713167990220347,0.004963633966920806,-0.04782683538585449,0.23065330499957332,0.013484113876639506,0.00011876371097453727,0.004226760658369662,-0.003088728313609673 +2020-06-30,-0.014121941565167592,0.10582756390873806,0.005944730680937987,0.0001411179292352378,0.0036256363515867448,0.05519912905218998,0.17643473201339782,0.09684977819440156,7.506866106562206e-05,0.016811654168120096,0.05886885260765852,0.22632986188046428,0.09467660073484216,0.00012032085720640774,0.0029340880777458662,-0.016812461872507994,0.015382166949489502,0.018920560637516765,0.00036887706023919415,0.015181964277505709,0.002226190937928106,0.005086265708645366,-0.015711134545429654,0.00022901352879144037,0.019744051569270653,0.006989604673164625,0.02171888193739231,-0.045528843905584176,7.026869504614329e-05,5.014686107660503e-05,-0.01277791915172054,0.04888138789046723,0.0024536228670956613,7.670196017421147e-05,0.0006482479663663765,0.029997804373180257,0.2451985578383143,0.008563621534620468,4.195369065237733e-05,0.007112801614215602,-0.0027780829778789374,0.002238686566766748,-0.12240012456449997,0.0009569664379434383,0.010283026740817509,-0.0013683832897122558,0.0035545739031126733,-0.007722113929282768,0.00013461148037696927,0.021069339532491328,0.002678426699218818,0.0016850637772609035,-0.007848269320246478,0.0007769405358723934,0.01116015221362664,0.01118323033048661,0.15243575893707886,0.012879486342761662,2.1862670117658553e-05,0.0043349156343758495,0.022021718154364732,0.06265921374331938,-0.0281426189178764,0.00010440403819796223,0.00045707421016317746,0.02288046550830016,0.12690404116188603,0.04556755649283014,5.075177340405928e-05,0.0037322613706056596,-0.017801182203539167,0.01657865644741799,-0.033838346020309495,0.002094220883552455,0.003802918947924141,-0.005387108186508409,0.03124652873220414,-0.02791250588289832,0.00014187505006574142,0.0023146583484360255,-0.03443853941897271,0.18845208039983322,0.011899202461142218,0.0002829775746208165,0.028595647967970237,0.011168166137174343,0.0599858992639529,0.006649663448586599,5.244373908042027e-05,0.03176615660279493,-0.027983775884386292,0.1497416375662743,0.012970695993013329,0.00030799987709310923,0.014652641781040188,-0.012853476347587314,0.13724258452670607,0.0014687338682709686,3.886529298485041e-05,0.05023884360839062,0.007406084255921175,0.06497102522444187,-0.07172000039362944,3.808470866505374e-05,0.011266921977468902,-0.026312960121341978,0.07748931194517707,-0.002641464645022817,0.00010938320861352345,0.006781523758721316,-0.00853525200985462,0.06252766418722389,-0.010003893508472932,3.1530911046761474e-05,0.02352501373066261,0.01307415353979968,0.0354872014621963,0.01743478783350867,8.168065490120144e-05,0.012716993369589074,-0.011112010811213966,0.04260387899139098,0.03612924378595737,0.00011925925949477233,0.004989081025771079,-0.020626958035612982,0.019897380331926163,-0.015254604438385649,0.0005925361413599862,0.032224791260631595,0.015270344317272578,0.050142350660687215,-0.02175844392294605,0.00012818291659874375,0.012237044872744051,0.00852955177339186,0.02885918789037665,-0.0026942820445172615,0.0018969735639907657,0.022636436266741146,0.010407152217767442,0.09594035155447357,-0.001979363303800745,2.7894128451476734e-05,0.02070964263593044,-0.003478599780865213,0.009018268316615334,-0.041255037230363584,0.0012611088763656707,0.006451292708351525,0.05408719202527292,0.4217740796287247,0.08790493447659367,8.539652375122884e-05,0.016086167752582106,0.022413446973597345,0.027728413306396155,-0.05798651380350696,0.00019077831974774413,0.004331645894471622,-0.037082981397948675,0.05048527576100614,0.03229790409049243,0.000421612835797061,0.016640049460621063,-0.0641772858682842,0.2993931291857201,0.057993747375548875,0.001661459877757256,0.0007303976993752099,-0.0201134194987612,0.0810493208501904,-0.011226168360696743,7.962086693460314e-05,0.010831416535262602,0.007440107845137225,0.010458054936714561,0.004683428673913297,0.001768501789769324,0.0017270135996197225,-0.006796759292337394,0.01953577438729632,0.019382734807687405,0.00013784381842453305,0.005139002827055639,-0.012991993264095487,0.03873891218543007,-0.0031415088166225264,0.00013595298315329543,0.009992527108836862,-0.020484487832749244,0.09110909295440063,-0.012172678301145573,5.4875351099336764e-05,0.006203870796048432,0.014794895188695716,0.056767623523451265,0.0017680132058529136,0.002470183617799029,0.011733234923567598,-0.0174474671444289,0.09775187514254817,0.007034555542632488,8.878668942068058e-05,0.022250094300526282,0.01885636072147757,0.10033487154851553,-0.024713492057692365,0.00013629086974787145,0.010911932246270328,-0.020648472023062973,0.13807962375414137,-0.043146462684696234,7.07305480750473e-05,0.027860114450531222,-0.050498215905690993,0.29269045453582687,-0.030473001020306315,4.3362555692617974e-05,0.036583504131257334,-0.0276782621363958,0.049578081745598225,0.04344693551066108,0.0002721939656716809,0.02941931482346223,0.002152379423374987,0.00936271160055876,-0.05374112170317497,5.7165178170039444e-05,0.0036142242148246824,-0.01217224354678819,0.12454186242415456,0.004353295150081333,2.5216601935477747e-05,0.0037826533148608635,-0.008219766307022851,0.028757700089481683,-0.008421417932280214,9.991122522278912e-05,0.007094104339733499,-0.0012624266402774074,0.004785439952015939,-0.012994981224373486,0.00041582658395929975,0.01085471086196638,0.015513682005719485,0.06446579278232759,0.006902336423926752,0.00013783431533077872,0.004207852441577173,-0.002242458117608358 +2020-07-01,0.02316599145822373,0.14941316865280616,0.03147873868057145,0.0001639640358944925,0.008712179806225262,-0.0072562966412647424,0.027709153281850158,-0.00873528879332536,6.283509848158902e-05,0.026948928926730797,0.02516861175804521,0.09631535232969544,0.013595768244012008,0.00012088180837839457,0.003886837100074668,0.02079703100112301,0.02169976943624887,0.01711179542581417,0.000323455154311959,0.0065196181960341755,-0.025885593549516556,0.07118174656414786,0.03072802046765854,0.00019027742259273233,0.011897846914739739,-0.0071925434765438,0.017812790023689313,-0.014967337097817822,8.81652182772281e-05,0.005649620995536044,-0.04423317503361191,0.16114619023219987,0.04508248267592017,8.054116859124612e-05,0.000854705774873605,-0.01815731922695856,0.1748513155952677,0.016636052749868655,3.5610776135918236e-05,0.009429228809182849,0.0029168172008493497,0.0023385243070894743,-0.04396055857014607,0.0009618605451146078,0.0023293892388051157,-0.021119609139407712,0.05297570044413053,-0.01935278571227825,0.00013940265819844757,0.003998048850748127,-0.007488127859132309,0.006063354085490413,0.0421526768251626,0.0006036492687080726,0.0047976870962449375,0.011495027313314567,0.13856087113579094,0.007017012961028446,2.4722488972975914e-05,0.007403751777527434,0.001380322769441466,0.0033467723793426255,-0.03786985177752995,0.00012251958406767806,0.017303565672902827,-0.00044978788090957396,0.003094743290380939,2.1118826930057243e-05,4.091145619023046e-05,0.006788775780843371,-0.002196027342657153,0.0016313233650004698,0.0039649787753421395,0.0026255522127405033,0.0027244788023408836,0.02693058563884866,0.1797270139209527,-0.00024006683143938489,0.00012330609572417303,0.036344731544304426,-0.039419275423925745,0.2322970555048639,0.022315572729399984,0.0002627684166401305,0.018576474137061486,0.05977455556595763,0.3461027083780852,0.05791729762795321,4.8648820359062676e-05,0.006840337261808209,-0.03753699420359275,0.19283134886068246,-0.016339569020614054,0.0003208253388131721,0.008807808127743337,-0.009477069048483767,0.10984826133594328,-0.042738986161011225,3.5802313305768726e-05,0.023179616572508017,-0.013731352825920773,0.16316933550465554,-0.028343779262371326,2.8116191368841895e-05,0.014828186896859595,0.02583511916346869,0.08265148573792876,0.02633812649407546,0.0001006891234305842,0.015197521230442256,0.010602564301067777,0.06990182148884136,-0.01787943663860499,3.50360226493455e-05,0.018146174817547857,0.020559023592711518,0.07107984586450279,-0.00789074752718848,6.412588765713417e-05,0.009536753266871506,0.016722460330237793,0.0541348366128341,0.06259287388214864,0.00014124462815542511,0.0017108576744298578,-0.025418450281927813,0.021122158644135,-0.0637871851075526,0.0006878382614144258,0.013365784925416587,0.014048670785237229,0.06801048942056619,0.0018914187030862084,8.694514665105784e-05,0.013137275432914708,0.028348154568234196,0.09282623308737027,0.0032389389226694415,0.0019600774836382325,0.014954366055101996,-0.0241862187879591,0.22207729667662512,0.0336818610037192,2.800567278583318e-05,0.004873690536708166,0.020541203788417808,0.06581129987068106,0.026222048330929604,0.0010204616594701012,0.019186454769307044,0.011960447662587545,0.08800143886183846,0.000860441110346467,9.050723661086157e-05,0.0021694286729525914,-0.00896641193100331,0.013195567453915145,0.0188845159635749,0.0001603747536806508,0.012533432266832314,-0.016736368590482407,0.021387681432765503,-0.01635080013130758,0.0004491603783640751,0.0031260716434167815,0.005127076582304874,0.020379920786219707,-0.005975465892133871,0.0019499238622434198,0.02382119105185894,0.017589476011470106,0.06784329628968985,-0.08879819890911093,8.318333567892279e-05,0.005795078223458115,-0.050773243496806515,0.07172764953275478,0.004430592158211983,0.001759646784237833,0.013611438690019323,0.02439165738052237,0.08179823199041585,0.01264024940295457,0.00011814447880346934,0.009444188753067143,0.027592302970974474,0.07516672206659188,-0.0261929756845638,0.0001488067784216271,0.025724256939893903,0.03552665587464426,0.16381282227655714,0.052069123730139014,5.293225080184799e-05,0.0022050792982656,0.007916494751065506,0.02622840743282188,0.00034187141548711573,0.002860744454311091,0.018282900960231885,-0.06506094470065628,0.32825431001582506,0.16210642100067155,9.859400275685751e-05,0.024970399970150214,0.06225479576401583,0.34166893191105707,0.15477781348222833,0.000132138114976042,0.0014990943899192036,-0.014933837777412697,0.08296571294410508,0.003964732970867772,8.513761473800306e-05,0.0033901491327921304,-0.05885171183205259,0.2748180337102483,0.07910505924577926,5.38221778152688e-05,0.006386468681396529,0.060715196375465706,0.11365313270925513,0.0419164298472116,0.0002604626093577936,0.006240969610415779,0.025130181514148746,0.1120732330201105,0.0334926650690835,5.575811727781319e-05,0.001230777599793688,-0.007065185707559734,0.0711538561433337,-0.04198372014460865,2.5618660933005995e-05,0.0024561844696359214,0.0036487526553936537,0.011609310203912208,-0.010704710820839406,0.00010986186639423657,0.0019739720801182723,0.0004254634363050593,0.0017124194307222196,-0.03815363223537891,0.00039163371039143454,0.001999309680268381,0.038637146797692534,0.17272657763346225,0.03221245134435835,0.00012812022004144875,0.014435811778519462,0.0033393154718793457 +2020-07-02,0.027106648669374008,0.20269833074823748,0.033610586387827324,0.0001414204577349587,0.006745404373479006,0.033694771017079315,0.12075534064359582,0.02776011924285587,6.695248310000063e-05,0.010919781009319821,0.04483771888824145,0.1308598179359251,0.01330336219586803,0.00015850187445749474,0.0010247823703045489,-0.0023075290869628644,0.0026421460918749284,-0.0027874619830202505,0.0002947529857781599,0.014872973620671467,0.007473739417191659,0.019449447376738236,-0.03974601297913695,0.0002010612867769305,0.02121169858931982,-0.009991210792924567,0.02258382558891451,0.006877126108477987,9.659782554654895e-05,2.761466950864039e-06,0.022319408994286843,0.08336532497720149,-0.0020524539895372625,7.855739945711395e-05,0.0001604753622708781,-0.0010134132711722187,0.009189989069012087,-0.01350635060224684,3.781553133985891e-05,0.010925836403637715,-0.004038076735581572,0.0035327155264271034,0.018172211689045925,0.0008814763955908287,0.008078788613484662,0.06099087396179281,0.13787459219736478,0.1289464608756435,0.0001546829699588375,0.007236783489449641,-0.019957207024105104,0.01624755310277576,0.11596198735041525,0.0006003937402917594,0.012329837543359345,-0.009841418915349114,0.15768756204440498,0.01501535493148135,1.8598720558781415e-05,0.0003534005876084344,0.019639609628800646,0.04135966918946411,-0.007421606670534895,0.0001410609591750537,0.007203776008733736,0.006367876583370558,0.03661012688602689,-0.02823932756920734,4.8961557204163534e-05,0.01014587291417408,-0.011970326539849816,0.00870665800424949,0.012663199729978734,0.0026814980440302036,0.006467194444649868,-0.01680130597988534,0.1108157113599877,-0.0029483330954106035,0.00012476529856860828,0.029110290287545505,-0.019391542516567616,0.09587242630722749,-0.03016822320371127,0.00031320369011655935,0.004547025936355263,-0.017718662600600232,0.11163028898420384,-0.0009637970401523459,4.471053281007458e-05,0.03130907509005384,-0.0027820328362015154,0.013200446733649576,-0.0033565835193727547,0.0003473445029171747,0.001681878529517785,0.008284768064565665,0.08770002725926303,0.0018137795906621366,3.920223769350369e-05,0.01880979526686297,0.003892100320656432,0.03714835462391323,-0.00014352703321204684,3.500468325388888e-05,0.013180023941073654,-0.020176181073776788,0.053074532405816076,0.002434912772898182,0.00012245472463209383,0.0006328153306029874,0.008663786066418374,0.06272945831024887,0.007260446317874747,3.190278217287709e-05,0.005395873633865924,-0.008806965430067119,0.025578685021777868,0.007826038192808263,7.633530759025122e-05,0.0063326281103058026,-0.022490788858985956,0.07759573395535281,0.11895307253248916,0.00013253037863453397,0.0031597242377881998,-0.0618709521174251,0.05927264397319199,0.03463635354122664,0.0005966340850180573,0.027166290912589174,-0.05073347139618217,0.19046986928587556,0.16472091761085356,0.00011211256915250587,0.000847014939205864,0.02673258298145306,0.09171184865690958,-0.0004908923889820209,0.0018708314004359428,0.004330525773507231,-0.05249267037733252,0.48327801275765736,0.15374357640493358,2.793082893191941e-05,0.0080099396383786,0.010652037471050839,0.030116820727433165,0.005184012937248771,0.001156364715612155,0.007653850565624709,-0.036185820897170866,0.2915114260528574,0.05686596263366205,8.266249140487723e-05,0.008212166368216431,0.03219183987761024,0.04394895820263594,0.012929268479599559,0.00017287914278046618,0.0025732162623395907,-0.000477505485999022,0.0006278869938432527,-0.04166741393383055,0.00043651662850113923,0.006642365286173844,0.02134979489708461,0.08094786908472489,-0.010585500802288858,0.0020442717528798425,0.008522682713401208,0.020431186354518807,0.07372051834793902,-0.003142672855168455,8.891920584310803e-05,0.013717530668935947,-0.06402444017369692,0.08440155772209834,0.02979316822275954,0.001885699645563342,0.021633192168211433,0.03479943676675243,0.122029913269955,0.025828956003960013,0.00011298530148283702,0.006564587899286148,0.02327646777086326,0.062025597780926194,0.03503274936128242,0.0001521270675937748,0.014603127525050708,0.007820569502473052,0.03518013906067447,0.0034321356542275604,5.4256872111633896e-05,0.003197028349490841,0.05064631124040453,0.15389097387370546,-0.014704017372344294,0.0031192682844059655,0.007989176996182375,-0.021956520944437254,0.10478874840038753,-0.09008953116498933,0.00010422920948618034,0.015410876163080959,0.003966125089852506,0.02409835144680787,-0.053569975093004214,0.00011935479142118077,0.015171646688661054,-0.019260676760700163,0.11550837227566041,0.0177160794494818,7.886908051005927e-05,0.003112705607944063,0.00826157825243919,0.04543023835471134,-0.09130796713663124,4.570517754103572e-05,0.009214360741788292,0.025687887483788995,0.04435011143421679,-0.008028541142887166,0.00028239894439521877,0.018356655475716365,-0.0004145407257976264,0.001765263298342436,-0.00014514418879296303,5.839451926775499e-05,0.009610718607586055,0.03384064220464348,0.37723366398441954,0.060806463813871836,2.3145120160975845e-05,0.004049672259109874,0.029465778888233957,0.09188316998783384,0.09424026005946584,0.00011209620763765435,0.005317213616146351,0.010984142203635578,0.038929505887153916,0.014487726800534801,0.0004447492518604964,0.010555946372657807,0.044857367392985785,0.2770194051695296,-0.1274095985023739,9.27460421430241e-05,0.01910771431670458,0.003563204124388385 +2020-07-03,0.03356528890756811,0.27586641186651745,0.024139613555882507,0.00012867025078604506,0.0005651001301234452,-0.03646942625179733,0.13447222629943875,-0.035901561636396614,6.507390402522746e-05,0.00855899822490036,-0.04595443098259413,0.1690321919069222,0.12216612485229858,0.00012576366187356128,0.007729508666184699,-0.010519510263524474,0.0123536087441725,-0.053597395536451306,0.00028738859915903545,0.0067489033087015735,0.012576597736562355,0.030180134003324914,-0.0031776445590237672,0.00021804181010979187,0.008420139203697151,-0.010669286237964403,0.032632568205510075,0.01106475617814907,7.13889266110146e-05,0.00031018595284436194,0.018781795459301597,0.06021711524002135,0.010173032488652992,9.151810426732176e-05,0.004676461102644348,-0.04406878326327794,0.3996981770245653,0.08206739617915494,3.780920161403475e-05,0.009113358914485965,-0.009726094583333192,0.008327699656762078,-0.045990863440282075,0.000900654496481495,0.003956304501380492,0.028453346584757393,0.08522072430192869,0.018974193342876394,0.00011674815320299424,0.007339763935591458,0.025699771968009825,0.018135107961037348,-0.0037905733858270042,0.000692681331020007,0.009950602372352022,-0.011136422299231194,0.13936874077725653,-0.022431540028912206,2.3812396455398003e-05,0.0014932601202898214,0.01290265356220124,0.03467377350105881,-0.03881899880915533,0.00011054241963435615,0.01402203827470798,-0.004087391888763296,0.02444840567696092,0.003121536049045376,4.7060610173602664e-05,0.011480821788805794,-0.03183709211139921,0.029611131676261587,0.06264193136488715,0.002097014150034376,9.815376611909928e-05,-0.03296947475255948,0.21295071261387563,-0.07125556835488098,0.0001274045793701279,0.024586234500808032,0.04680110148580016,0.2756924950116663,-0.04669118274981219,0.0002628689937438946,0.004218036732722144,0.01368584560260017,0.0761519316335511,-0.026037186743877477,5.06234417414154e-05,0.04222499758548276,-0.004664005402345366,0.024260136022457073,0.0007815963920731109,0.0003168492042060118,0.010629733249543107,0.03420728498482459,0.4785538679084524,-0.06929971179052039,2.9663200435666474e-05,0.006912659866733388,0.018115732037282044,0.1950709281858926,-0.11545981552512784,3.102737586380172e-05,0.009002433232711455,-0.020296768698518954,0.05691914513836073,0.0017035322229196148,0.00011486594490440847,0.025797917300298144,-0.047055475822591765,0.32898614212562566,-0.07337974294859426,3.3038851419993195e-05,0.013615474728800798,-0.007835603115146644,0.02417790022394305,0.008607677653068945,7.185073770909003e-05,0.003419699432517016,0.010625296831851429,0.03773908427409767,0.013423654280338199,0.0001287354955594607,0.004318831476500371,0.03014575948940141,0.03252772150336866,0.007429035547949837,0.0005297221686303725,0.013466742924943497,-0.0017529406076580273,0.006279559095308623,-0.0414975447363968,0.00011749626436484526,0.035258336861665567,-0.03518095593037763,0.12186563641791177,0.011456750728089453,0.0018528725599698097,0.013655445261917198,0.0008843707335121367,0.006884897246948587,-0.017529144988981758,3.303080014579488e-05,0.002956656278857034,0.02189088361777272,0.0630031861691052,-0.14962832782450142,0.001135983566772196,0.011180892895487082,0.021230626421173883,0.17556398134114973,-0.04086759569089338,8.05291343615369e-05,0.027672629108545295,-0.001441533041091341,0.0018522321633123796,-0.007241874263595779,0.0001836853694927913,0.0011068731953399308,-0.029410298442561763,0.044460186154069846,-0.07984821467915107,0.00037969254365517155,0.01336448884655433,0.036869934673056444,0.11361390735489542,0.03099734486365658,0.002515308237645345,0.029060562536490225,0.009798369789629497,0.0382160816965905,0.000661080336241961,8.2261768018003e-05,0.01238209372440651,-0.06156134406680944,0.10354974105935688,-0.00615899892347995,0.0014778701174617962,0.004394809298625004,-0.06435129133996392,0.19678068522542078,0.3117216302138783,0.00012956593526241303,0.01179271527858325,0.030603704903283676,0.08724190532291821,0.005292112595805617,0.00014220315758990302,0.028003919019696004,0.027631107717539048,0.11316637241977687,-0.012110560831285555,5.959294199364564e-05,0.002905194774819184,-0.027024175694121223,0.09100463815578559,-0.04122528018514804,0.0028145371569045273,0.0027546628773707127,0.012945922368563265,0.06260640153196147,0.02262963021227037,0.0001028619674435689,0.00909356088369129,0.025902084197908713,0.13407757231168282,-0.041812480134053115,0.00014010039424647988,0.009220501521038298,-0.00786172056154276,0.045818962592750284,-0.12427454566029203,8.115607782353813e-05,0.024204314617388464,0.021400362387190473,0.09944104519708236,0.0047321631899639215,5.40882390200057e-05,0.0308380705002131,-0.02456655688513155,0.048702844927033036,-0.15954149109245805,0.0002459344429513817,7.763447804406531e-05,0.013064282297626555,0.05911088388559724,0.007173519445739654,5.495819727855147e-05,0.0010240235416460032,0.013255894338639555,0.1454963760333438,-0.009539561599390881,2.3506509379313623e-05,0.001556924945468501,0.01432869584685692,0.047045725831487605,-0.03323374706025275,0.00010646220462053446,0.003257110830567167,0.010457200435816928,0.037519677578181365,-0.010059057116714497,0.0004393233692178983,0.0044816583646544676,0.016934756534626092,0.07712663374259875,-0.044464420134086954,0.0001257611142787793,0.00631545669510723,0.0002865019267423853 +2020-07-06,0.0125559930982782,0.07802540684719975,-0.01047022708580512,0.00017017729271105066,0.02041034019476487,-0.02958065368807402,0.08342924269933968,0.018350098824195187,8.507461495422293e-05,0.0007732061027053375,-0.04248141943139963,0.14888784717185674,0.06694215532274321,0.0001319887675277902,0.006847860347461866,-0.00492814740411069,0.005283152365544195,-0.01710127707123716,0.00031481716944836496,0.0032645138111245895,-0.03448871218975585,0.08764870780256712,-0.043059776031719246,0.00020588714562392473,0.014952397722634571,0.02882906715749573,0.06900709774735395,0.15953634780571943,9.121863457524225e-05,0.002011435462589204,0.05372916114946205,0.1826353289538746,0.07705670379839222,8.632073392168963e-05,0.015221366947530016,-0.011158260786616636,0.08422228581949702,0.004431520672947655,4.5432652990840166e-05,0.01304165360017129,0.008595809936588534,0.006514777003166303,-0.023196293549856573,0.0010174944198133216,0.004209275415226539,0.014005338255781088,0.030654869798432825,-0.06041810756441408,0.00015975557137815194,0.005159191781882075,0.007270308461382269,0.0060607867018068065,-0.008359418944087059,0.0005863382081327854,0.004674228342567801,0.014574007506629492,0.1958655051695847,0.02766521609145417,2.217398867057137e-05,0.0038676331833762496,-0.045119959582077616,0.15123668197691156,0.031071055914441023,8.862629602046206e-05,0.009051185072905471,-0.006231486894532456,0.03361159754132977,-0.033609529101307864,5.218724245450222e-05,0.012217186114448914,-0.006355703313577585,0.004846279686771649,-0.031880759433295124,0.002557867914270074,0.0195028970831169,0.0008144659029682484,0.005096587494910561,-0.012199192083481688,0.00013150598878983042,0.005262731832642051,0.01508386999284876,0.08504836919710357,0.0031119569616603793,0.00027463445511654623,0.03612826936243238,-0.03132418518823903,0.15058327305335417,0.0060797175735436805,5.859546514989253e-05,0.024747660856927874,0.03957815303365949,0.2099823649135095,0.00019294717592751323,0.00031064152404549077,0.01988450709286961,0.002447997105797873,0.029525855855272207,-0.08628328113865134,3.440635262832011e-05,0.025784881621814585,-0.014129948876189045,0.16272178549963134,-0.006115928663569533,2.9011928508847263e-05,0.0006574924112822626,0.03524219894707178,0.09022484784471427,0.06633614020570612,0.0001258228725599068,0.0032183232615559465,0.03315440899927311,0.24226909240154862,0.01349012479046347,3.1610812187588015e-05,0.0003134946226718946,-0.026031498958922053,0.06183597484517138,0.006073173908801303,9.333302610921183e-05,0.0026014927421821495,-0.007122803361160068,0.024425245837607,-0.021865243733558692,0.0001333400479699865,0.002127163018302316,-0.0009111113484629619,0.0009528098406146466,-0.004188958046218668,0.0005465636986270284,0.002825429252759491,-0.005784084465165894,0.019679350535998293,-0.009616385233935832,0.0001237114433325088,0.011964618026299088,0.025013127521785427,0.07728992121586685,-0.001133991835870489,0.0020771330084570954,0.06916704767126435,-0.018770655790402824,0.17727786023467262,0.0037245780565838423,2.7227460710693874e-05,0.003105303061338399,-0.002256551161349796,0.006614162311833467,5.8989843495690186e-05,0.001115428163740248,0.006635927185816345,0.038542896405791595,0.2613468214104755,0.00785851332251556,9.820933459445886e-05,0.004929179093913694,-0.0016695076397471977,0.0025296602542746014,-0.00048388304122829986,0.00015576561703421169,0.0031383538606813374,0.0005217381727525097,0.0007944816136299297,-0.01630672731596255,0.00037694039012859976,0.004987006473363656,-0.005716594757693447,0.024485904475206346,-0.004593942762667807,0.0018095542054312318,0.030851967144900575,-0.0017446131406307552,0.006895249317892175,-0.02827481398473167,8.117822214093048e-05,0.008690778331351658,-0.02348449148470775,0.029170526460509938,-0.039661825962900056,0.002001308709302067,0.024124690246836635,0.08542169569671582,0.2922946063788062,0.17666706058048573,0.00011578796556280156,0.01577493925041725,-0.013128348992749393,0.03336886955741756,-0.09121387045568481,0.00015948836098995185,0.0012692812962963767,-0.012620657942537706,0.054084512695884074,0.007212656850501213,5.6953838604240407e-05,0.004458419136434942,0.01450279042212371,0.04033877671865292,0.00017874510476083473,0.003407586625672808,0.006123437834430491,0.008601744311096062,0.04213319022048823,-0.018781896326036582,0.00010155533790736307,0.011766821076409004,-0.0010137564234849112,0.005745540172915092,0.0013507926326624632,0.0001279568493049426,0.012044534239821483,0.022400620988376654,0.12519664575556383,0.03249858413166849,8.46283869665412e-05,0.008989524877762105,-0.016628997084651424,0.07311678361127037,-0.10688561531641676,5.716054664349114e-05,0.013666960615943633,-0.08021991765589576,0.15799138380998545,0.2537073909182526,0.0002475587054197095,0.01598888951713877,-0.00344427281057406,0.013096477658961934,-0.00818873082647951,6.539693776046662e-05,0.0055358252729757855,-0.011623605987214855,0.14101807889313941,-0.0161013607834431,2.126656616012616e-05,0.005560219766771038,0.00864733928908464,0.030114689091755194,0.011197633396202849,0.0001003721160637266,0.0161090925918346,0.00900201468364198,0.03793804834860858,0.003758302290473561,0.00037401817110602626,0.0036662803114128123,-0.01577436058296502,0.07593119446236593,0.0010959699467537215,0.0001189880447980197,0.019687940924616548,-0.0005273898120044029 +2020-07-07,0.03187708622098296,0.19532516285884127,0.008308424597818696,0.00017258657330522007,0.005312403029514996,0.020833987707919853,0.06410323869899591,0.008749736103765665,7.798354222981305e-05,0.002146763085008014,-0.010066420196026073,0.02719171145758766,0.006895495277046914,0.00017125202527672035,0.02053996612258822,-0.013567302666659271,0.012737921098741601,0.007550051349575404,0.00035947013555830717,0.007088089160314648,-0.018133486340077526,0.036768127568423244,-0.004274180781754104,0.0002580522011979128,0.009780434613164682,0.0011211711199243517,0.00300864892106433,-0.018729555032496653,8.136677992422777e-05,0.0011111155478088493,0.05282744636104965,0.20137615764645267,0.03722045609074971,7.697353339388448e-05,0.0016168036306933357,0.023661585671655026,0.2620242499345756,-0.020662561868487174,3.096713114738532e-05,0.008248284374175649,0.008440775058494297,0.005836439029602898,0.003987174935453761,0.0011152677920677975,0.0027871874143157198,-0.011865283231813559,0.02968641865066182,0.004358461806650771,0.00013975977351453816,0.007739919644411614,-0.006077170290150323,0.005199292851321865,0.009009938648539682,0.0005713227058618631,0.0008589405210543649,0.0028509530459412996,0.03355650509115513,-0.11090425444325958,2.531839268186891e-05,0.0008582754107868975,0.06769398905953267,0.19617978741571881,0.11072574330969774,0.00010250543315263851,0.010125659462526995,0.0022852880602068095,0.012021391597856698,-0.01389582106612514,5.3511610815579665e-05,0.002298816888501625,0.01643954819588094,0.016415514548899925,-0.04267673656079173,0.0019532523251660763,0.002252390539259314,-0.000631509826528262,0.004960657856783869,-0.00029759073975310255,0.00010475938647344479,0.02731236270148303,-0.03099473019612114,0.1841788411488794,0.00999837205624981,0.00026058916608984314,0.01160624817986891,0.02886510794330222,0.1893872521433435,0.012826930096787875,4.293222522991285e-05,0.009955645516282093,0.016257744448666876,0.08036226075703089,0.0002418630079890228,0.0003334225389899381,0.019927023196259483,-0.04282621736262445,0.5601785225665934,0.02266065633960485,3.172586664210905e-05,0.028591666761383822,0.004601216045564906,0.04976179057902566,-0.10557622607261835,3.0892875593289376e-05,0.0035147529114149287,-0.0322847355908192,0.10986888063168761,0.004774919868393118,9.465537706954296e-05,0.02746959575311357,-0.05251428419276433,0.3801304050726164,0.042548245689327344,3.191076515250078e-05,0.028871627371444303,-0.008251653473286236,0.02585127456464125,0.009373471915731076,7.076791551741646e-05,0.00025891267479904957,-0.0010078673538602108,0.00388334442699914,-0.040876814794650884,0.000118671399036723,0.0009689929370009975,-0.02632207779612549,0.024183144716028223,0.005235693248878068,0.0006221325940344793,0.03795086809297637,-0.02286368776396753,0.0803926732902771,0.03860568592995053,0.00011970597248894871,0.008393722981562829,-0.03473907507824556,0.11948706538718076,0.010768248381822892,0.0018660210174138677,0.07893871265860897,-0.02874744231048071,0.26404857592562925,-0.0315201665822252,2.7996102624378594e-05,0.0026657441028899204,0.006161287873147609,0.0177060375746438,-0.00632594661500437,0.001137683315378729,0.007462816695650965,-0.017268196957411625,0.11897184775986301,-0.007502026797144046,9.665591356800646e-05,0.005404641056056336,0.012189851780575129,0.017403400324397068,0.004026379118062191,0.00016531402536759836,0.00914319405840969,-0.004219041996430537,0.0064536197881712625,-0.007476084694688136,0.00037524454419744416,0.01889644361374785,0.022023842936714298,0.07689805636605461,0.009078434218928821,0.0022198727468316047,0.010754993389577023,0.013110498239542322,0.05495615021630279,-0.0022662591468190006,7.654084720813398e-05,0.017554852858559906,-0.03417970056760443,0.05206300813972508,-0.015784811970946302,0.0016319850950981113,0.014983029346235353,-0.03604332353711992,0.12463134556757656,0.05698815894817277,0.00011458125714997185,0.003403321908919177,0.0477665345296801,0.12561965235228165,0.09207475960845236,0.00015414396400000762,0.00018769036437367805,0.037619853733418654,0.12143486613568194,0.05016141992430285,7.561146091557519e-05,0.004380501300196597,0.07113896461605797,0.20871203906858568,0.10376820812885035,0.003230562123440333,0.019238485193004657,0.042027089135066246,0.2424368441070757,0.11490743537700396,8.623255613736874e-05,0.007368407516690392,-0.009934158181999275,0.05615506596351915,-0.0008727461603615743,0.000128292986081495,0.02239539552347977,0.00689513290960611,0.04201797357995385,-0.05668719829547657,7.761688997963254e-05,0.002602864683934354,0.0025142655471238244,0.01198908726309181,-0.006547604106167173,5.270750006355768e-05,0.00387919130208464,-0.03425620290270038,0.05643537272672602,0.03417569520497774,0.0002959492329670846,0.004583429901406824,-0.0027071727996671783,0.01322034456038085,-0.0012560751448213428,5.0919904377580086e-05,0.003843774094214515,0.0030234842068840523,0.03168871353775108,-0.0100420453074169,2.461695780967524e-05,0.0007127539674340242,0.016543077697541642,0.04375739996222372,0.039155127843053965,0.00013215200769450965,0.00379565604955896,0.023059585455653443,0.09110375946213004,0.0442996977989295,0.00039897268896709387,0.010167000470720323,-0.0057857779135513715,0.02798038787302588,-0.0026021793088543453,0.00011843493464999829,0.010037309542259648,0.0016404364077374156 +2020-07-08,-0.04327982554253526,0.26823645423628206,0.10052056457092129,0.00017062956586819323,0.007264268107206129,0.03126655878708821,0.10985308203583453,0.022189108553508627,6.829334199239276e-05,0.017746993022403085,0.0006261635156631086,0.0022466767854218673,0.0004447486601370917,0.00012892714507584208,0.026380486901031907,-0.02305143451057767,0.026268216597783393,0.011368538989731777,0.0002961660169829354,0.009572625433404293,-0.030692328951088286,0.06916259497933452,0.013543600222138078,0.00023219685700052417,0.0029255360117665394,0.003010227128110676,0.009985132794531455,-0.015243878383193982,6.582519587108023e-05,0.007971911495413578,0.004884756088964709,0.018750507230953232,-0.0014759569748874096,7.643983088431208e-05,0.0045808844217122315,-0.01865175816125526,0.1282570497374921,-0.029659977199941994,4.986974465222608e-05,0.01177881990538393,0.015454537933838107,0.011702309822515342,0.028262451451207832,0.0010184253934439988,0.0074978277195707045,0.02324235305669061,0.06121419494186073,-0.005508061826579419,0.0001327669070714081,0.004012906866955738,0.006338031796907838,0.005450198512034748,-0.002199569639486013,0.0005684162054160186,0.018715159004423932,-0.02425040543874631,0.305228597377882,0.09566989088775764,2.367644927388101e-05,0.007561642909943815,-0.0419812914279247,0.099586504030428,0.01228260074609836,0.0001252294131167047,0.019753513287001204,-0.010520135446983228,0.046704524287161236,0.014717289156633591,6.340510073049553e-05,0.007270693682586447,0.02906630930280886,0.027095577429242533,-0.03367682665430116,0.002092254220735411,0.009322510813276496,-0.047484218354877546,0.3020059509339225,0.018499840726150445,0.00012938558700527767,0.01682472018566531,-0.07986800463481045,0.4531348155703789,0.0808571322534518,0.0002729314829488479,0.026060836005474205,0.01221148517755584,0.08248124235746374,0.0029357782697154167,4.170366745217484e-05,0.02361666959393452,0.0047611504118672395,0.029729054710207894,-0.038352176988681624,0.00026394753404533107,0.027641071091936708,0.013482789185060328,0.1793222841823787,-0.012084747509196251,3.1201517242824765e-05,0.009768453769664006,-0.006617904344138654,0.07109042299796509,0.013903763996526949,3.1102199034731115e-05,0.009063042884510814,0.032423730830965836,0.08421642760506674,0.04872295667651226,0.00012401920017731757,0.006322002754718235,0.009708150246368655,0.06604644545752483,-0.015520034560298192,3.3953098683408306e-05,0.0071335335439415785,0.004526829375955143,0.01443101698100893,-0.03912594310512619,6.95463865456437e-05,0.0029626944417624774,-0.0010817223674581627,0.00400491122955907,0.00035982559015815095,0.00012350129496037785,0.002019306463362699,-0.049320995709640145,0.04988556991587953,0.023654330868720343,0.0005651093057057435,0.017223793428308265,0.0052924352974452835,0.025734969935628977,-4.2558612228448976e-05,8.65601302197668e-05,0.00017646724636548382,-0.11360249567279893,0.38265145668038997,0.028486909789340518,0.001905476846484841,0.016041126789241987,-0.04977549780088456,0.4897824687038596,0.03578128286609367,2.6133319100827097e-05,0.0210503823761016,-0.0007664684725619755,0.00208945535102484,-0.011416856614024681,0.0011993128034071055,0.003217095770976677,0.030897585401309303,0.22618454961165343,0.01912661829612564,9.096770728668554e-05,0.012447651027318908,-0.012740731859332995,0.02140317783216742,0.027899842669367677,0.00014049520490278558,0.009725532654495106,0.015531378600416229,0.020251828593745407,0.011722450161381086,0.00044019963411287316,0.0007823269965417899,-0.0073548029973855835,0.02785679438572058,0.00016660061007240328,0.0020463986796735423,0.013595269911102935,-0.01755561453350553,0.056399308577640306,-0.020544620616520463,9.98694428653896e-05,0.01430863763409409,0.008116082191704106,0.01191182970413866,-0.018503788748975694,0.001693733792135017,0.000868156799031534,-0.013303235543955613,0.045641895171557194,0.010052904131881065,0.0001154807638854681,0.004697626877789255,0.04477118564663288,0.12861840512411352,0.07892845858938997,0.0001411093696313654,0.02821210896116694,-0.004758966826404312,0.018720572176234962,-0.00023831454346938201,6.204509931685616e-05,0.0055445068013475155,-0.020910945455544283,0.07770229791460324,-0.0038369767686853534,0.0025506910872573384,0.017372821257425165,-0.006057860297593767,0.02932346339609166,-0.00033130366695200347,0.00010276484247441062,0.009384008036243154,0.034342175787122585,0.17655512797557882,0.03941159005538891,0.00014106142127940296,0.002775038292171971,-0.0243765684720249,0.1590009182046137,-0.15371619286882796,7.251396217357871e-05,0.00791831540300317,0.02907186864107014,0.12965033693790606,-0.0021944563111826565,5.635684766999775e-05,0.016264824941884522,0.014468753146670154,0.03035240994516158,-0.0007428621772063661,0.00023241669543720857,0.014305717864632243,-0.013936851274097934,0.07016761082030251,0.009905450049602466,4.9390378252951706e-05,0.004343907687328549,0.008785165576495035,0.10590653782565569,-0.10987440801578661,2.140220234966169e-05,0.016128776139210082,-0.008119684542091377,0.025449752792879223,0.0008674068089553043,0.00011152302815037921,0.0039053551461256508,0.013533264067403515,0.058898074344123565,-0.0456365767491586,0.0003621841420002111,0.002230938453425129,-0.03031689839312785,0.15356642988107622,0.013790926076924611,0.0001130733544786293,0.00901688101549306,-0.005434868915978969 +2020-07-09,-0.007073320263828884,0.05101420006655887,-0.056794762480182545,0.000146628646352183,0.014170272903074876,-0.02754592337553857,0.08759687619546819,0.017855580716213078,7.545347442697154e-05,0.0006125552678266133,-0.006430823025655555,0.020718621336399044,0.0036007694559541193,0.00014358296241494034,0.002243146050862221,0.013944559506810667,0.013787526755203254,0.023813864531447505,0.00034133929568156313,0.0007450078729158475,0.012602905719442767,0.02682508500848326,-0.007852898275258036,0.00024582573863272093,0.015080697407388034,-0.030139045979174637,0.09146574169342435,0.12200200743096408,7.19478433575156e-05,0.00537617141215148,0.03250503529943841,0.10887393527363316,0.012526499482723396,8.760251534813619e-05,0.003205008221958174,-0.03023185745638388,0.2844795582781427,0.01596164667168109,3.644285396741177e-05,0.005134510008309888,-0.0003844826407839008,0.0004217760420986022,0.0026385531340462087,0.0007029745718132317,0.0023472444242110856,0.008753551349087618,0.019910703976502915,-0.12560765651291927,0.0001537303282759832,0.004929955192696393,-0.005515971820395589,0.003981125384394629,0.010269737765269439,0.0006772367880241453,0.009767677669291425,-0.012897372896177931,0.14750389710296408,0.018152824289344473,2.605676830897954e-05,0.002976646871701856,0.0802789625424398,0.2313469552108041,0.09837643926808581,0.00010308346331383883,0.00366193570298112,0.005817350022560973,0.030575226597952778,-0.00023681016616608047,5.355713411483156e-05,0.007509997874334998,-0.0024255998985647474,0.0023214379543542198,-0.05331443160535974,0.0020379102689138933,0.008128376637519875,0.014635309102236305,0.11378437691364719,0.0025233513543349547,0.00010584524960909458,0.01803650812014772,0.07106237714638043,0.3952043325675256,0.03459440003837844,0.0002784365641975537,0.02935838730559789,-0.04302655233793727,0.21634653285813685,0.014157000978950411,5.602057528690993e-05,0.021452344252428805,-0.038374364719033334,0.21939932266792292,0.027117828775198746,0.0002882655366980042,0.010067785366026528,-0.0687344651873365,0.9049162864532061,0.07597693505119121,3.1520738533889964e-05,0.04263258802804189,0.015567507422090865,0.18323409639998378,0.004636096976147657,2.8385366085445914e-05,0.005814012411383971,-0.008832627480750697,0.02954855170571753,-0.0088138037702931,9.628895443678709e-05,0.002470898688783832,-0.005004767959980176,0.04603873624662198,-0.08870341563566614,2.5110359415407018e-05,0.0018524521785141964,0.01800400938033468,0.05693217624482878,0.028349160917060322,7.011143041903407e-05,0.010061754644535743,0.015838289206666557,0.08324131712446732,0.047102600843114156,8.699973326233416e-05,0.0035340729070930613,-0.026288510198083676,0.023026250794851225,-0.06194848062666097,0.0006525567789952995,0.013948136423994072,0.009018764767924764,0.029456138257154103,-0.027706257893023598,0.00012887161143669215,0.008697050783824068,-0.06876352142053595,0.21305885115545745,0.0342462312869063,0.0020714654917388955,0.007178888473387695,-0.04525983283454239,0.40870013314721293,0.04055108404130523,2.8476746007607217e-05,0.015166650672084994,0.0029450233733281043,0.009012309034588665,-0.007183877150879269,0.0010683755494653284,0.0040992129131440305,0.0022212115540769435,0.016628328705863213,-0.019187950541646494,8.89543040282696e-05,0.0026838177939573233,-0.04713052151730917,0.0716470962050099,0.14923988508183172,0.0001552562307028373,0.00968832971995311,0.004415684239627302,0.005588446872953513,-0.11829454578001396,0.00045353498878018475,0.005035962042108341,0.02433803409548342,0.09306262817737374,-0.03822979948173853,0.002027031618606065,0.005187005895383661,0.010976001146609793,0.04119707685439981,-0.04197735301312579,8.548070836843521e-05,0.011174487515031166,-0.04613828341716191,0.0694927899503466,0.009375497780643085,0.0016504367160152203,0.029079433705853544,0.008811348167706625,0.024817597191471655,-0.03481079293721601,0.00014066908652573035,0.005810380790000854,-0.03545540346936232,0.09998032459123832,0.02291699767625518,0.00014375675652914327,0.004003722869838215,-0.018735355921701963,0.07365865827835694,0.015206773656560988,6.208005160001723e-05,0.0049553529518452984,-0.07066389006169113,0.2036237774992348,0.02598194028753771,0.0032891759778064097,0.016299017843462636,0.03702155847698068,0.22447682194607566,0.06770412161318337,8.203964314552155e-05,0.003913703224760716,0.004533621655478647,0.026033772425236485,-0.011699455541387535,0.00012628999741777226,0.005277478741857361,0.01716013573076738,0.10041817843224296,0.02507586364404665,8.082711512903119e-05,0.007211248159549214,0.003450576857528059,0.015583924954566553,-0.09573137918218971,5.564962625959333e-05,0.012552327189543022,0.015145665157486471,0.027831336478115545,-0.02072073815334712,0.00026532836650719325,0.008482763563407094,-0.01032741216096703,0.04073178474479698,-0.03303653949379658,6.304816422092985e-05,0.005639179467883141,-0.016532505158026168,0.19550588394682117,0.00016347978310739047,2.1817757978848156e-05,0.0008341936996887937,-0.04520786581880417,0.12086470746790869,0.14171345881812458,0.00013074451083990938,0.00683126578969384,0.04442452319244489,0.1800344586124973,0.12337582236746993,0.00038895119405167784,0.005430005760609406,0.016274884437214723,0.08646112693034078,0.009779451918728864,0.00010781242574727671,0.015666296363549985,-0.004583210209767462 +2020-07-10,-0.019793934863869538,0.13849588986088848,0.022714748296170137,0.00015114084142149817,0.006155450784367266,0.0007339403736548219,0.002831485211462028,-0.019772177308199544,6.219521988215558e-05,0.016501527081835946,-0.04898782299715692,0.14684254622766896,-0.004749974969690485,0.0001543239880984747,0.006138636835878772,-0.0036418927149248653,0.00378600234799758,-0.09936881060559814,0.00032464904171354575,0.007941119955746218,0.00418926168443487,0.009014944868397327,-0.0843631218214584,0.00024314883151076722,0.016313619535711293,-0.01679557971434022,0.04438734225837086,0.008612096293785478,8.261950647015122e-05,0.0009734286835594123,0.008232201684490502,0.0265389572410174,-0.06163980798426228,9.101689220820587e-05,0.002489619861937648,-0.018456312626675166,0.1622141330815412,0.003848541209772787,3.901708884611983e-05,0.030989047144631333,-0.020850419784429135,0.018668855503327364,0.11125931502160268,0.0008612751074985378,0.004579632920080146,0.0037525852679385495,0.007681513242676016,-0.005047630135614475,0.00017082273542770365,0.00956983461576711,-0.029133996193225542,0.02615957919356123,0.12927714573558402,0.0005443693487005441,0.0011830525886208317,0.006384610733276662,0.08028389972467638,0.0027185693390819714,2.3698930823631863e-05,0.005373693784098947,-0.06945566146722888,0.1799641000416085,0.060199910149473436,0.00011464967042432061,0.004021954207382477,0.00016657978556657675,0.0009702293945154434,-0.022587749943064617,4.8329209201878075e-05,0.003298800869119536,0.025943475704050964,0.023119511555557856,0.0373695112932866,0.002188630650970252,0.0054732338164132695,-0.048966226656055434,0.3334001915351998,-0.007465423358229184,0.00012086008665560522,0.007850545453625922,-0.08885801779690239,0.43483767193314754,0.061319529745196694,0.00031643002895524947,0.03527577654734064,0.04705980606351203,0.25406795629800133,0.027334832972674233,5.217484828742315e-05,0.004940507196932952,-0.02226429729704324,0.12242626037001296,-0.07019687279523211,0.00029972379043935666,0.012124851047670908,0.004516556892714925,0.05526799610735145,-0.011144925307140079,3.3912827289099296e-05,0.0048969774971688185,0.004343339169056475,0.03951076787175801,-0.008920710785546525,3.6727382967965394e-05,0.0005966639199834495,-0.023019793858936478,0.0657421162701524,-0.10587105952388615,0.00011279257354991523,0.006719480296466161,0.06483360984339284,0.39716732202756566,0.1809506272877343,3.770674732046236e-05,0.01184323601682239,0.004034787573844687,0.010307290424297667,0.0001694095536182776,8.67867737046351e-05,0.0011044066523836164,-0.0031726944450959763,0.009416744154327077,-0.006468134038221792,0.0001540550973244942,0.003256195835235969,0.00975140915117958,0.008659689458194468,-0.004611528369176598,0.0006436364372079518,0.02514253154713057,-0.017339493175358447,0.07082579099038108,0.016968793627415085,0.00010304596121913983,0.02196709861617208,-0.06560624183472129,0.18585245603648784,0.03013716274905813,0.002265666746602193,0.00266402301583889,0.0051631218089733125,0.051136411344240726,-0.012193733036958388,2.596356472120918e-05,0.014919850864026614,0.005328431657657155,0.015261145741926628,-0.042417093464058565,0.0011415200128718646,0.011149959687608008,-0.008217704303095277,0.05620318745168852,-0.025035291679104482,9.736776626031074e-05,0.01710021640237138,-0.005371219333837847,0.008444525483809756,-0.02833615051374196,0.00015012154410844113,0.0012354826389483196,-0.0022995145090606403,0.0031072373785447824,-0.05295539472579787,0.000424781540271473,0.0001731976725893121,0.042210759112736,0.17656519577821803,0.026456247416624765,0.001852970065362079,0.020804556016709747,-0.021206531357589754,0.08097927164009026,0.02150623736164171,8.402067054687088e-05,0.0011293248093747303,0.009598795662584248,0.014384318506418367,0.00014975518914819557,0.0016588405669129456,0.014752130455600644,-0.003230081855490666,0.009818424634188548,0.0032005396032874344,0.00013034301238711214,0.013708829439087251,-0.04327844106290945,0.09559074771292018,0.03221218858463967,0.00018353382933720166,0.012324466102555486,-0.043262854503906246,0.16538664883652454,0.060248945631402935,6.384525835077405e-05,0.007298062089007955,0.014878015015401208,0.043683835836982404,-0.02790235485931929,0.0032280650982246728,0.009635048051292507,0.008739762582477623,0.0554844015277988,-0.002506339324713455,7.835546636494494e-05,0.004364481636515522,-0.012254666856839893,0.06990759095983763,-0.011594011433627023,0.00012712704653315314,0.014476248266211758,-0.021157742173798077,0.10391032984788322,-0.04133958452613264,9.630731960064921e-05,5.435208675667706e-05,-0.03934347946798481,0.14894484037336833,0.03466770446978628,6.638878140924073e-05,0.004853699130590838,-0.0228899730023727,0.044966460255189876,0.012756540848010986,0.00024819096813062164,0.008537871460248744,-0.012637867283795588,0.053318554115855475,-0.015305890028950964,5.893995533879085e-05,0.002824205960409566,0.0026235119148251126,0.02555402053442795,-0.002387194721189775,2.6488361019058267e-05,0.015329983335385194,-0.005637771385737419,0.017033912376339323,-0.00011825303590300693,0.00011569165044549342,0.00848672859308071,-0.018697469204103364,0.08239615051863174,0.04856351786035562,0.0003576875922145502,0.008103046898849327,-0.027503740376802824,0.12345372683383776,-0.03736990851710944,0.00012760254924507644,0.018403726242863506,-0.010104297489523401 +2020-07-13,0.0030534435324907913,0.019493497147776154,-5.014868908639213e-06,0.00016564819885814516,0.009183136819272715,-0.03976833803731155,0.14328647352638207,0.03398659352573091,6.659517646658824e-05,0.0011084280478509847,0.03335191406489355,0.10045536048976748,0.022323069201140102,0.00015358360278947843,0.0008007733150401145,0.011140823826701446,0.009578832612012148,0.008614631824148445,0.00039252975102773633,0.017382486192270567,-0.001019623770700691,0.0023472003219236733,-0.08319917116884043,0.00022729378875834458,0.004983448326310529,-0.0004888849045464134,0.0012635367817700664,-0.0038221834152712335,8.44822513207056e-05,0.0008241771888290764,-0.013701623844043727,0.04893622987039024,-0.0008495337868337406,8.215450592742668e-05,2.210130090005277e-06,-0.014503386074180877,0.12081084760829307,0.004743532697219752,4.116822012317106e-05,0.0052993290571134,0.018621170293135605,0.015279472044754943,-0.020849242468535072,0.0009398172459767844,0.011290763692401042,-0.014340447445785831,0.03498785001736357,-0.013102122787242342,0.00014332017588861653,0.012836680217226937,-0.002778440888807996,0.002119095453190805,-0.004418612178654026,0.0006408774640506499,0.008386434308409602,-0.013642188484145987,0.20176445982807578,0.011617303286370766,2.014940220442721e-05,0.002822021993678334,0.002366666743947384,0.006141028335912261,-0.0018406245162154865,0.00011448459305337485,0.008227096485207504,-0.01435097380192436,0.08244486333880632,0.001956226468341673,4.899813923847303e-05,0.00793117792114399,2.0632156164487317e-06,1.748978379471074e-06,-0.030172309078340228,0.0023008226711037304,0.002935764113087664,0.025436199726901382,0.15654730479741782,0.01631029871296293,0.0001337084145673586,0.01736369293029142,0.04113714554419765,0.22331485818241012,0.022436627773380177,0.000285249417014317,0.008211875892230146,-0.003467865815035636,0.021316203182893526,-0.003877452640262771,4.5826151801080344e-05,0.009451866321065839,-0.05105419702956638,0.3017683505312965,0.007547287968117905,0.0002788332549649126,0.004484082736830372,0.019761133665368535,0.25877571374691943,-0.19957392032671897,3.168973240380151e-05,0.009229036288598972,-0.003235981239093931,0.03300384978023322,0.00649066932391749,3.2758431742925916e-05,0.012137015328342977,0.003227310954319081,0.007214701803204962,-0.0162606552086431,0.00014409376273376913,0.005124059462696666,-0.017376590576901958,0.12360226202273793,-0.012705999889030387,3.247360665062637e-05,0.008363400340486986,0.007747743858340278,0.026890885811414262,0.0013193816049710651,6.387744375118448e-05,0.010431156724936844,0.00889523266181221,0.03388662322303474,0.007954435772922435,0.00012002663029856489,0.0023003232868519345,0.04081489512921004,0.04031576038363038,-0.02798789353598816,0.0005786545748668815,0.029208538495625658,0.017719654281811565,0.07142340208172124,0.009683448177356495,0.000104424095097809,0.007991492043871418,0.06323326131282345,0.233568214487181,0.058237529443155196,0.0017376048312636235,0.024008118751305194,0.05713219734072635,0.5481918229847352,0.08070485235396904,2.6799739323649253e-05,0.00579029197436278,-0.006042627083635087,0.02155814645624331,-0.02886907825031854,0.000916401190437152,0.008949041154232125,-0.009358646375929168,0.06364863702037625,-0.01242711321102465,9.791507763660807e-05,0.00559510711831418,-0.007183159551367477,0.009739953502050442,-0.00036479974654409533,0.00017406201859489863,0.002675809191697542,0.012785764339431498,0.01666055683046646,0.016737496669640944,0.00044049511541935306,0.004514255842801469,0.01403863066078877,0.05580783209032589,-0.01912279509113863,0.0019497545268543808,0.006304831332139783,-0.009353154214766088,0.03604095282835493,-0.058648831266108974,8.326302813531057e-05,0.005564358831657228,0.04717063715506512,0.067408597232453,0.055967951127577895,0.0017395368961170999,0.026109577689182033,-0.009614054503365525,0.032656128543124205,0.009476944637864053,0.00011664279548979055,0.018983131835098744,0.04209496437128158,0.09916632217528133,0.04245384345525709,0.0001720783827307222,0.01469356371868886,-0.055049825606766044,0.25744538578067416,0.08871921914146723,5.218969516651823e-05,0.00667627061691831,-0.02104606337224008,0.06756986563943393,-0.008537429996402371,0.0029521327069161776,0.004630089481776475,-0.018216385250770732,0.11254068040537996,0.00412180471484576,8.051804779159816e-05,0.012155204877783515,-0.039001067482644106,0.24184099251254773,0.06506235744742198,0.0001169519216043085,0.014351374254806011,0.02382585430626958,0.12605109324543062,0.05214463981068427,8.94026853734557e-05,0.004046792332656505,0.0031624506383333057,0.017894478608374266,-0.014189402926964379,4.4417294477484096e-05,0.012434499557166844,-0.019415319196427524,0.04339736252526114,0.013497624868196124,0.00021812758592610026,0.015033404926133817,0.009130525498963812,0.030443252807663534,0.0029445521530085802,7.457943611225866e-05,0.005375245552785978,-0.028247527188302753,0.3260755137787461,0.04306316823659275,2.2350823732388114e-05,0.00983817795768039,-0.013089537867547216,0.04388088863110694,-0.01710623900116434,0.00010426963769598876,0.010468113587179747,0.015368512896733137,0.060435291515394174,-0.007167765118774997,0.00040083828517170026,0.00010070664386611482,0.0032468804188761176,0.015122554261153819,-0.003566325910274869,0.00012297389775780895,0.014575080952872748,0.0022704773502453877 +2020-07-14,-0.01294697931959882,0.0856698028715093,0.008937718459384326,0.00015981858111346455,0.02819024899793925,-0.0051814487744968945,0.017272378902225084,-0.028209801422924348,7.197962488146479e-05,0.012278066101460637,0.06290181608255484,0.23958373521400195,0.0842966025063236,0.00012145154880002398,0.013988261117986987,0.005318939915602365,0.0053683023037273386,-0.017362482188072535,0.00033439207526591246,0.010562272463109128,-0.00293457766718946,0.00599462146469704,-0.01621671196499229,0.0002561424834948584,0.01649192462254078,-0.007001241792995212,0.02206114523701905,-0.0023265936524857283,6.929370177830402e-05,0.0011371351794051549,-0.008948542868322876,0.03088253013086567,-0.00705301413175146,8.502160601795469e-05,0.0021490820180950403,0.018139827051843457,0.15240218661069568,0.004811558491425769,4.08169508475103e-05,0.006480679355069029,-0.01289127439299618,0.011941923512868163,0.037516553200218045,0.0008324657106914784,0.00203349631551749,0.008068026797735535,0.0185285041925489,-0.006291551931669813,0.00015226106330052088,0.00781290347224177,-0.023992504781885225,0.02476756140718756,0.06930535332897657,0.00047349642011617905,0.0035096590327037516,-0.011222041048106106,0.1408579279840775,-0.07575538545702402,2.3741783847489343e-05,0.006272298291803134,-0.04519528891981268,0.1365566212645311,0.03443709512638385,9.831763929356482e-05,0.012150967210554645,0.008912775729448694,0.046615649697166396,-0.04470542162750229,5.381992093478563e-05,0.0038836079386505656,-0.05766372693469334,0.05541970488704165,0.17872195066969004,0.0020293711036636053,0.003781989311062062,-0.020318790507899184,0.10841427632844738,-0.12814882793526122,0.00015422809177882116,0.018561649311233382,0.018163156650838255,0.10074977700114907,-0.019222922216231387,0.0002791614638379592,0.024505926393286602,-0.0055650515605861536,0.03304409770807632,-0.0038334193614106243,4.743907920863045e-05,0.024126750802162783,-0.02581237509575695,0.12998222278602853,0.013927470375870705,0.00032728855261615766,0.01010260396952496,-0.0018717036325969164,0.026776174996300837,-0.0033229140621828007,2.9008066128379818e-05,0.010908263610367012,-0.0022595037127646762,0.02627160011078799,-0.015131554132556579,2.873480428216004e-05,0.0020055716093087777,0.012182364630447846,0.04058162852348634,0.008538064523340305,9.669964482667736e-05,0.003441189412797604,0.001989251001981256,0.015365999355484246,-0.08374455722078937,2.990343998880049e-05,0.03909858919559877,-0.01478790488784959,0.04793013200042188,0.032634038881470186,6.840304041302396e-05,0.008776610996960352,-0.004321671095012872,0.014693757788727274,-0.0007204988818307221,0.00013448301291310287,0.0023111759601118784,0.04203107345148734,0.045313598466107996,0.035126606881886194,0.0005301728589791085,0.04734357935081829,-0.0327478791383966,0.14158468105339395,0.05430661489242514,9.735380295600454e-05,0.008204426667999329,0.005110359046454922,0.017992100973320015,0.0018675047384281527,0.0018230085648851973,0.02230158016713718,-0.015805925463395515,0.1237687259729199,-0.001081272198404969,3.283909683835038e-05,0.025627755631245183,-0.028448006432715413,0.08683355191124899,0.03540305057709373,0.001071113618571764,0.0007458688557117945,0.008651893130523046,0.06996487070318066,-0.019251785251610743,8.234870116236495e-05,0.03724022597980408,-0.021960354258696593,0.029479731431682765,0.0278093755770962,0.00017581713766176758,0.004549112029979598,-0.008240516521496767,0.01197968086096785,-0.0053683411107204445,0.0003948326872282355,0.004594950426872848,0.042437924118558824,0.15965463572796698,0.006675088101230641,0.002060264312639535,0.012282225203011303,-0.01135521533005816,0.043115864515804424,-0.006797773787898351,8.449843122943842e-05,0.010169793627877807,0.04941911343182371,0.06400680014237174,0.008119120003118294,0.0019193139749286484,0.017678733381242474,-0.06748069402010765,0.18917804044513312,0.12384678693137013,0.00014132690702670398,0.006596104022801265,-0.015633542504189815,0.0426378432717383,0.002166796331909621,0.00014863549915781766,0.022106591332207413,0.030783872858398117,0.13666652856712622,0.03489682263584602,5.497623807634061e-05,0.019523149843785798,0.060400946755270774,0.19390298887488364,-0.021888199004594888,0.0029524143023808265,0.013714507735492883,-0.02719495709527988,0.11525338243278968,0.015042985753831358,0.00011737490907576947,0.0007761703284551761,0.015992242474397855,0.09323503702485447,-0.011082466972277608,0.0001243915853048324,0.00926265858055538,-0.0039116588001573875,0.021589941574338474,-0.015899247530188725,8.56955356028958e-05,0.0023822798122246224,-0.005501887572940427,0.029046407698963196,-0.003018301990247162,4.760654648698213e-05,0.007616752444775638,-0.04751114909681306,0.09947718581908069,-0.023636033994265428,0.0002328635090917215,0.013020008389724445,-0.01673115913644928,0.07454542655106257,-0.011246227948099098,5.581094828957195e-05,0.01801496153314389,0.0062992541432138295,0.06833117808801976,-0.0729592547638639,2.3784909723107214e-05,0.0015732780207975165,0.014801001329708583,0.04468248845009503,-0.05481140853903955,0.00011578777550233151,0.0009142427968843111,0.018737769688109147,0.08521426751339775,-0.028845755113674768,0.0003466039855358127,0.007138941709728415,-0.026345163084561897,0.12209145093532082,-0.02533339469416151,0.0001235911668152719,0.003088387824558718,-0.0018845673563056885 +2020-07-15,-0.0035578561283949937,0.025465113168085567,-0.05254044620302954,0.00014775063484286015,0.003805988814487055,0.024155087700194738,0.07777205740738417,0.008270151727490163,7.452389703565035e-05,0.019006608714829138,0.0371656118776151,0.1330718856679252,0.012418039328766995,0.0001291969260489094,0.020071273991078813,0.009929356604064292,0.011173904982852971,0.011992059714626262,0.0002999051962619594,0.0013263050526809445,0.008060344339352508,0.01737189618527393,-0.03567534246533734,0.00024277510034269206,0.005152970505040102,0.0020535269571546884,0.00550716263149565,-0.025278230327469245,8.141777811810222e-05,0.0012634607974577642,0.020259252918473136,0.06555278178908534,-0.011356148179446498,9.068222246005181e-05,0.004890502017614647,0.008997213559652616,0.07178866253688156,0.003235641839032298,4.297845322079106e-05,0.0036123030448109023,-0.013186590096981487,0.012272879808191778,0.03274316048395715,0.0008285730663444008,0.010721504988657161,0.04716285142850845,0.10657549711945408,0.07428839637106367,0.00015474070587253157,0.013446821756413863,0.00440173465453107,0.003086302635636751,-0.0073655447660107,0.0006971234748926521,0.0054802278333055095,-0.010786222850890183,0.13453695350430883,-0.0046626443552583805,2.3891894542856654e-05,0.001232983975980888,0.052249753649049865,0.12176894854563168,0.0413278132533105,0.00012746728306198233,0.0030933581170718245,0.009255422343795703,0.046840123659650915,-0.0010950377104101201,5.562115803588867e-05,0.007265446096146417,-0.03298715374130053,0.02920785181551359,0.05552425003703363,0.0022027651686428833,0.020197620184550315,-0.04404753119139243,0.31922218689433607,-0.08607674793625919,0.00011354829334146457,0.004737022358310376,-0.006827903435671929,0.03545153649712925,-0.04002398265234541,0.0002982363254315434,0.03737629424960658,0.024004398274806354,0.13172107898092966,-0.04642979233515928,5.133298277822176e-05,0.01548049374901554,0.005876378472582728,0.03173555421362887,0.0023851265203954385,0.00030517607250063163,0.011442102836333436,0.0265618927817294,0.37945111158879974,-0.015542611770158662,2.9049149467540452e-05,0.004173388819993413,0.005346063120127994,0.06050254034515308,-0.01750026628933035,2.9521755646758278e-05,0.0017543493589308107,-0.03064936910283819,0.08705880626113552,-0.0031827428665208695,0.00011340483922440309,0.012700088242848706,0.0029752240089041147,0.02336321988939682,-0.0325540873608707,2.941571096514643e-05,0.0003287450518476222,-0.030187290583296476,0.08708135359997234,0.07040463421226059,7.685574672022584e-05,0.014735489058403665,-0.007719978226199107,0.02696385096688215,0.008356295937905473,0.0001309129932822959,0.000113471061672078,-0.033452535959532126,0.030469197373299138,0.0028721380732061297,0.0006275431502192831,0.00817731683203588,-0.018145623963342353,0.06348957620743007,0.006872457035867434,0.00012029719129705265,0.02252916843135324,-0.06686987526456718,0.21029571259623342,0.025063938737990135,0.0020408884561169682,0.020805078520076285,0.01648411993567882,0.15506625159130127,-0.09784310937065362,2.733572974589018e-05,0.0034633203882885677,-0.0012443463652022473,0.004372383917861031,0.00022036426212311092,0.0009304526241556944,0.008415973849902938,-0.01605497641033013,0.1204445262656999,-0.016020666815798015,8.876632645993337e-05,0.011029335268242743,0.016973225588315786,0.02232725652804208,0.010326379702831224,0.00017942146873254115,0.007724183831955324,-0.008603622996397197,0.01152005596204052,-0.09994395765285884,0.0004286775073274584,0.010772450231645832,0.04759810180773814,0.19800905369176275,0.03021485215192507,0.001863180484030036,0.03999075224307511,-0.011844560521521379,0.045966422579862436,0.010918141303659404,8.267393640897187e-05,0.009596879769511799,0.04123402952874302,0.05255081850348975,0.03792138220229445,0.0019505338189738327,0.01390401669466531,-0.019246449882021486,0.059885840389176145,0.004907529497437005,0.00012733345441449386,0.0004534961207374738,-0.010329676802993317,0.028204789574529366,-0.010068700666165836,0.00014846505570518186,0.0022693148804385777,-0.023407959030671808,0.09811321863537402,0.00386599082068628,5.823042375643713e-05,0.006242259965919865,-0.01200013500679403,0.033104888856123095,0.0047804480487231545,0.0034356748509345634,0.0023341493300124963,0.0439396154110023,0.2561256723042392,0.03524371019829,8.533824567356483e-05,0.001162368856694484,-0.017096122323542788,0.09563473624852263,-0.02428750246470344,0.00012964110870179456,0.003616701026330912,0.0004029254194530662,0.002196062408165775,-0.009988642579902899,8.678180673750747e-05,0.0029530047598968737,0.07523210180814362,0.31742909321343316,0.13659408333399803,5.956674399453399e-05,0.03339904159314097,0.02149620186795599,0.038185686639268836,-0.006831959267457931,0.0002744672440882965,0.0021451476912252294,-0.007505112138662073,0.02616560191513324,-0.014015795364057896,7.132484423020308e-05,0.01515079719385675,0.017201022493855574,0.18724375161265172,-0.0011029465675468195,2.370163005497488e-05,0.01664443219098736,-0.0030237349383004106,0.009249492600606576,-0.010088281902960771,0.00011427066988278569,0.004459614832049119,-0.022525209823742,0.07703270830893505,0.07510842767818926,0.00046091585650191795,0.009008208684488511,-0.00022177985275215051,0.0009733521518293075,0.0002572276119950118,0.00013050402111830926,0.0017468548269691912,0.002754575662840245 +2020-07-16,0.043894543168900596,0.35513027638864003,0.06683400659054828,0.00013071018159999817,0.011185884555246458,-0.01249261888300359,0.04249532826296158,-0.08729749649398191,7.053794923849075e-05,0.010937551159250417,0.03140467374374743,0.1015844669271778,0.009924542255376177,0.0001430092682747413,0.014518860612212546,-0.035844019635817174,0.034945951490572454,0.10924849057574261,0.0003461686171221451,0.014544385675484751,0.00854818894253621,0.019899044546128845,0.004480851659925904,0.00022477068078635722,0.0012058214544827602,0.0018644729611815452,0.004619488994948768,-0.009957391231448016,8.812698099277944e-05,0.01810340562264627,0.1301101923333504,0.4880498098271534,0.35883909136732817,7.822346077683266e-05,0.008381703455881549,0.01358503535205207,0.11095294502127159,-0.08260042256629495,4.1987551855389026e-05,0.01032780394013929,-0.009425944818716166,0.00815817461964691,0.006015016152087276,0.0008909979048027789,0.004601709898699594,0.0026876995527190545,0.006204659585048532,-0.04098001640077354,0.00015146930972193603,0.010830307108730515,0.027673283067580268,0.019273686936410205,0.047812516501781005,0.0007018111168948515,0.003020543039867245,0.011054880614632126,0.15532694712194453,0.010703225884909883,2.120948092268288e-05,0.0031784526930294845,-0.032523506030943436,0.08774429244922513,0.012014028073302822,0.00011011069857659407,0.029157490472824253,0.014326159694575133,0.08936064144473053,0.020919806190458877,4.512792123731219e-05,0.003475601395717784,0.009680252013214805,0.009020319901573018,-0.006039804602129382,0.0020930890055379484,0.005868167673828442,0.1077163719761042,0.7681004546854852,0.111218079715264,0.00011540265565985783,0.027137660678702553,-0.020374275158342375,0.09996177461733492,-0.012703547284471213,0.0003156141323259287,0.015248727252437793,0.035758732264156184,0.19619083999752882,-0.0020011629238512853,5.134100230520924e-05,0.013504267710815922,0.014360278554500198,0.08707583036057959,0.011470154261234357,0.00027180162387228137,0.009400920783058812,-0.051708583265432956,0.7632883603752134,0.03211176907377575,2.811280825449314e-05,0.02043873786600038,0.025937369564346335,0.3271116230505237,0.08980539811260928,2.6491811927653597e-05,0.004398593635599463,-0.0009225051468374924,0.002912167331705178,-0.10759535117323178,0.00010204112262949138,0.01607653543963317,0.02324813473748061,0.1617013923756141,3.716473510230992e-05,3.3209835968830116e-05,0.018240666388335137,0.01929307273301642,0.05342979625475889,-0.05774080630260162,8.005625419952252e-05,0.003736586235434103,-0.006199058942320324,0.021890325738403212,0.006818324548374181,0.00012948579788803918,0.00024520011842927604,0.08994455147394076,0.09262207421139629,0.05640717765094403,0.00055505487236162,0.009013283365179424,0.017430140449875692,0.06159911021343056,-0.15454700804539306,0.000119100190675166,0.0016317043698662376,0.032368118170028624,0.10648594659529645,-0.006757134373506036,0.001950941871720316,0.00689155482871329,-0.027930446876937586,0.2865448734860302,0.009100819750355416,2.5064984281811163e-05,0.016921414297689265,0.021450683475210806,0.0645880925355893,0.04018025713482567,0.001085825272130597,0.011820058178661313,-0.0058218549198680546,0.04250119216461727,-0.02581155521223465,9.121912659720881e-05,0.013628792464407909,-0.02218306024919953,0.03801994264628821,-0.011090383773868773,0.00013770680040339585,0.0008016514731374559,0.015046260830403838,0.021277630829173846,0.014020877981178785,0.0004058908213060175,0.01089616414603281,-0.0051055035840319165,0.017083858157268848,5.113934232590758e-05,0.0023163435346548176,0.02095685718114636,0.003228800697144734,0.012873777291086212,-0.04875277179351498,8.04684464769413e-05,0.009940154595057673,-0.013675897992590193,0.01846061905121575,-0.05261553935697794,0.0018415638628606463,0.01424486607838292,-0.010893395449723094,0.037758662936732294,8.439981665870295e-05,0.00011430433435174538,0.03802656890318444,-0.009283775436902949,0.02228036190065418,-0.10379623519622966,0.00016891287818773676,0.007048414261782044,0.017268830937613267,0.07873601663097268,-0.0647037813298868,5.353076173513755e-05,0.013658407968378571,-0.011735067284243525,0.04571407935260091,-0.007931626084712836,0.0024330647353403598,0.002168594829771163,0.0025209206981409364,0.012340730377397687,-0.03249936687592954,0.00010161525021898771,0.0016006187452887904,-0.041002011799369735,0.2083847718133619,0.08030226037821424,0.00014269211393762635,0.020517524343399283,0.022390340251856163,0.12093613769958056,0.03988034033983864,8.756958619895066e-05,0.012376366748365895,0.014653229784089174,0.055761157266483743,0.006870807237646746,6.604637353208232e-05,0.011200336964354995,0.014333515131742408,0.02689214987481753,-0.0002894386794834694,0.00025987025963742033,0.007287805091752286,0.002130685431141045,0.008197916480837165,-0.08662147823232848,6.462941468277585e-05,0.00444126493291155,-0.004932240163397302,0.05367385511947747,0.0003018963665840606,2.3708971316798644e-05,0.005777419146412593,0.007691200931184531,0.02418082773494057,0.008952752985078492,0.00011118135401884824,0.01289982170230433,0.005990179389654598,0.027962270033911107,-0.008676228149219187,0.00033767225184301705,0.01071328481604555,0.04424635514157108,0.21111499410508536,0.03745650986483169,0.00012004116936023827,0.0006673642343338166,0.01009462661219473 +2020-07-17,-0.0036403736237178006,0.024766360619766357,-0.08789970295293376,0.00015544270693165977,0.0022527766356880323,-0.007135451746895863,0.023447982700708164,-0.0626102036089007,7.301742532074524e-05,0.006110310851534231,0.0060754011233592345,0.01670180135494826,-0.005843678358884658,0.00016827083414918317,0.011244170321361591,-0.015039779884356546,0.014613698245049656,0.0006593310916470552,0.00034733552211006026,0.004384345954273446,-0.01188655824539918,0.03171885941378425,-0.0011011058303163127,0.000196081370201312,0.007750657852550456,0.00875823386008536,0.02132324916986483,0.021777343788943047,8.968295207865856e-05,0.008376426870349877,0.03707459748672313,0.13552310470359633,-0.0065148989471835225,8.026994353750171e-05,0.013451115320012556,0.0006524222012179988,0.004620078713721311,0.001169905139275511,4.842593010380988e-05,0.0027986041052979766,-0.03015204376784032,0.02417703524006928,0.13094577430282078,0.0009617418129614774,0.005600676738202836,-0.006867091675854922,0.017939866893270248,-0.11728099262348408,0.00013384911846085542,0.015328510552089688,-0.010775590002267119,0.008063025964831067,-0.011794265251976119,0.0006532318603184564,0.002312494929542696,0.0004577014210053673,0.006335053089430288,0.00017831394659854536,2.1530533510560805e-05,0.006141595475986598,-0.03512058987226261,0.09916673934346316,0.005415534165659158,0.0001052075254369378,0.04210445906006839,-0.006657212095836434,0.03757924458177103,0.004505199797295714,4.9866187568918974e-05,0.0010676323581176772,-0.04387033241328195,0.03632914578232933,0.08443572741282394,0.0023552592137456177,0.004668153374471382,0.00421445517486224,0.03272937649393642,0.0016035010536034106,0.00010596338292229584,0.02192696414207894,0.027945036368942886,0.1785741086964783,0.01322022643690952,0.00024232287889087238,0.01350476693221256,-0.03535826160063868,0.19269348017172697,-0.13786574110846106,5.168741827198304e-05,0.017194993825116977,0.020395206751510804,0.12505898392243583,0.006169842452799445,0.00026878190263849894,0.013937448708588495,0.09043963489950115,1.189118008011633,0.2142207258020542,3.156196803073031e-05,0.002606463252808082,0.005029860036031791,0.051205064510536386,7.568091939907642e-05,3.281895071684868e-05,0.013168633528964207,0.008086544582377517,0.02436415445557669,-0.008492560068421326,0.00010691395538916014,0.010972017733533197,0.04559857417622527,0.42709153072245376,0.05999706816595012,2.4661681213554563e-05,0.013327655695956337,0.010345442412784499,0.028436679910980485,0.00360082801149517,8.065802068178265e-05,0.001375758506025889,-0.004369829715351974,0.017245993723707418,-0.02189713381760941,0.00011585769542041624,0.0023677973589419556,0.08290894305648407,0.07593080245913482,0.06228491540211241,0.0006241068516268454,0.010794821969716385,0.01395876638184061,0.05364115627918308,-0.004222987676646765,0.00010953046137421596,0.0035981771019414142,0.036360052111557836,0.12810332099680552,-0.10387656954523355,0.0018217269491714436,0.0337562370420258,-0.0205977611078271,0.16536888321154425,-0.013911992957967832,3.202937164421515e-05,0.005209409512842467,0.017118587056891767,0.05615479212652815,0.02277703729726774,0.0009966722388226271,0.008304738449470368,0.022793159918941257,0.17770791217393112,-0.04840902966739809,8.541288990584375e-05,0.004092807145496852,0.018673125419830138,0.027625276132173682,0.0011019608984793488,0.00015953492507929878,0.011456587020606632,0.02413179981422043,0.03383421890867843,-0.03266138971085745,0.0004093902288421234,0.016249503563923063,-0.009651288689948596,0.04216687342504534,0.006137028846780336,0.0017740434293064744,0.014009074454191996,0.006339869373021933,0.02183409112662007,-0.05709434207679014,9.316130459904085e-05,0.009645458097877955,0.014511817955162034,0.019572461417441046,-0.18172826399742803,0.0018431198138326398,0.022683633111396224,-0.00850261761285914,0.02723677440304326,-0.0027595425975486744,0.00012368385441457902,0.01822615669764325,0.006291777285159973,0.01509794100012119,-0.04575822012335997,0.0001689335830121822,0.019913438900491826,0.03336586183047457,0.14595855715802541,0.030965719981722917,5.579389881401107e-05,0.005936913524599142,0.048146024240765285,0.13763097367327287,0.035734524617172296,0.0033156013347784242,0.0033440133888989055,-0.01644884226763027,0.07147167909263161,-0.002441019259957023,0.00011448324255143485,0.015298050145178925,-0.014696748798168765,0.07747031042616356,0.00827528847521002,0.0001375772928092459,0.01933738107812622,0.02511059699134762,0.13832382508927382,0.0409482136639381,8.586353148956305e-05,0.013793384484964533,-0.022535774927310622,0.1089353382678556,-0.0015357651960365907,5.199374562784545e-05,0.015053992218121226,0.027863775635179524,0.05049436467823237,0.008923136791362042,0.0002690459421534626,0.011385139440964507,-0.01766731024149443,0.07910136434413258,0.010824975607292,5.5539355662279235e-05,0.00738336065987131,0.018161756528877974,0.2036131528994305,0.021262931502273503,2.301353352725991e-05,0.0020958660738101317,0.018275456172768722,0.06233208678406768,0.028532400811749837,0.00010248623149570562,0.012529535433611981,0.012865903800204097,0.054143906925110764,-0.07868792458595976,0.0003745576575004201,0.010414218000531987,0.010366001443062042,0.04713618510418132,-0.09487165450722249,0.00012595883358999135,0.016144902219542807,0.0072417911190417765 +2020-07-20,0.00987747409232329,0.061016441546327495,0.0017294673007864614,0.0001711928440510947,0.01082694260086813,-0.0325134959166579,0.10867174988527335,-0.0256356075256038,7.17889389532753e-05,0.005329314994153733,-0.025434768649761394,0.09150910336680933,0.01685483539253404,0.00012857623254121072,0.028127518427092088,0.010296733068801855,0.011243504781913993,-0.07758096528732486,0.0003090762267438637,0.0031744587797190296,-0.015299201714095672,0.032748169317960145,-0.08305627612627688,0.0002444440754576964,0.017762578651135914,-0.026668047556931144,0.07476957074697095,0.06870290770107675,7.787769221343364e-05,0.005219758334805906,0.007757683139519439,0.027236774555200897,-0.0001528382297882717,8.357304308474024e-05,0.02092827817566208,-0.014745178136588355,0.11897711749580428,-0.04891767125634918,4.249963451213562e-05,0.02287298928974525,-0.004048989889959122,0.0031594456069604024,-0.00057761467421192,0.0009882813414452882,0.0011009350027882552,0.0032027205388008057,0.007405802573249877,-0.007581518095144797,0.00015121984932800326,0.014790497998693924,0.013949648665522922,0.00907979673759466,-0.042503729424206355,0.000750950829733674,0.008264655075383915,0.02065740343887303,0.3445764723533962,0.023680890077909016,1.786540641315671e-05,0.006877792092686844,0.0012733085194931906,0.0036449611707545775,-0.018108942509822017,0.00010377476929047441,0.02374365075201812,0.013094623165085932,0.07323678853624145,-0.05754608339146449,5.032983784439255e-05,0.004906820414729619,-0.032386388407916515,0.027131588270499305,0.0358801602665845,0.002328146337216794,0.021014628376721335,0.041142568989765954,0.29025300996808295,-0.014846887600527455,0.00011664517571996998,0.02464500958480256,0.03978297138993603,0.23777213500007577,-0.03841418037699705,0.00025908632568333816,0.010586962095550816,0.0323141370955325,0.20942801744807973,-0.004920922744800502,4.346290370747543e-05,0.009767598003323691,0.0242946409016199,0.13168817032557967,0.019172389178483327,0.000304053864742458,0.0007155785435533923,-0.03592534988445258,0.44359090905540544,-0.006680290489595303,3.360845906057819e-05,0.004901112540288207,0.00841894970181202,0.0918141003002453,0.0018518457658829154,3.063587163068954e-05,0.012259887526809244,-0.03046439402715525,0.09564508023048364,-0.009844035429406558,0.00010260125285191919,0.005257166112139036,0.010482045704680663,0.06469451101893091,-0.016386552568728518,3.742579120945152e-05,0.013501487021132259,0.013546621137524433,0.04968393116324973,0.007902515583162812,6.044945863694753e-05,0.004139568214051986,-0.013263857794409684,0.044468373617301125,0.02830663299916376,0.000136385188020214,0.00866743603467158,-0.047508061313957885,0.043025929688865594,0.02433661142909653,0.0006311209641361911,0.016651706235541828,0.016827797942969222,0.06938072788756211,-0.02849787386838336,0.00010208794129588483,0.019812018581461206,0.025162173313971924,0.06849448584995317,0.008486453415946693,0.0023578257919086606,0.011309152462407558,-0.04431646844238166,0.41630008166116794,0.034627328100146564,2.7374162662886256e-05,0.006306249307830431,0.01160027147455971,0.03379598596476459,-0.003958521952579953,0.0011222104320644764,0.00767587376083515,0.0101213983493804,0.08415441295718734,-0.10806368079214958,8.009202352157089e-05,0.01023445399066916,-0.006598243479878857,0.009913078668192726,-0.016996892474513612,0.00015709601583649505,0.002942322677569209,-0.030361415315891826,0.041440964727383775,0.005508716521371677,0.0004205291151534905,0.014194065088007869,0.008065184842591869,0.03081748173330971,-0.005668416657748324,0.0020284650027109254,0.010847905214260899,-0.01296304086751178,0.053186192725023666,0.006469884272635163,7.819848832184765e-05,0.017752140633226315,0.0019616836249150876,0.0029410894181878633,-0.004731980655022563,0.0016580511724071556,0.027493846491326097,0.008928875459609362,0.026404013387705802,-0.0030455464089765368,0.00013398088978459503,0.021767582323085777,0.044983458253874384,0.13327057732343198,0.006042936998811256,0.00013682924709245312,0.00696217525685475,0.0222111723063873,0.08099805033021572,0.010824055896635336,6.692846135898728e-05,0.003790791335044045,0.021019938146768984,0.060804581062070984,-0.011477213152775822,0.00327652277538031,0.002109911102995206,-0.01674862934969231,0.08431414019574518,-0.02110076266241616,9.881421543134633e-05,0.010030652637102897,-0.008893671206870938,0.057523953041027975,0.0015778891790702153,0.00011212259254705422,0.0020230470328563236,-0.06345358360576873,0.3375433206166639,0.25807559396521423,8.891506178128523e-05,0.012112449318918046,0.01989111863284159,0.07209961846540192,0.010028077429706305,6.933837125352223e-05,0.0120709981501776,0.08581157812149329,0.14725987738569196,0.08771881777000609,0.00028411283157973454,0.008285522355902254,-0.017742830365992304,0.06703053977847079,0.016988374981831773,6.582101265559405e-05,0.003415453313016524,0.03311432112959677,0.3258551341537614,0.04467303200107075,2.621938939240898e-05,0.021719413778573993,-0.022944554434868918,0.06777211147058572,0.03672204862610464,0.00011834163809133518,0.0015217972208509743,-0.012859581758962827,0.04718864189320627,0.0387350297669227,0.00042955357368141325,0.007595451458061166,0.010214404047525914,0.04233904898275894,-0.04637663868373271,0.00013817953611908437,0.004219441709935801,0.0018968359715827044 +2020-07-21,-0.005089418208898113,0.03947666970580497,-0.046741706645476055,0.0001363371512471019,0.0033509487667635505,-0.01864147691305041,0.06383215328757358,0.0031628069904034548,7.0073102910625e-05,0.009835190516498777,0.001548585064391458,0.005424215388255558,-0.005613972543386898,0.00013206731374698633,0.015423505154507515,-0.02223907108511034,0.026219754416336304,-0.030783024234159358,0.0002862568445754495,0.008433635123159052,-0.0012458849706661927,0.0031870275650126186,-0.07565522468175516,0.0002045454858562405,0.004921788747525826,-0.015709529858686826,0.040450617815920395,0.007410504809126181,8.479783586830801e-05,0.00633511228059409,0.015318385665894493,0.05893945853194448,-0.0008917823858089666,7.625998453786523e-05,0.01691205891888403,-0.018462297525187615,0.1621694021110782,-0.02579391668962541,3.9040506587097465e-05,0.005140628546996895,0.010267996202252112,0.008841436424997918,-0.039583377196146165,0.0008955867456341687,0.008789181256471698,0.001664255093988066,0.0038635114203483243,-0.0007436098503556805,0.00015062587437383632,0.008417253077090374,-0.010750852221374802,0.007273204530884431,0.005428318504266923,0.0007225059864054296,0.006253788073787205,-0.004567727870946058,0.05566510553454121,-0.046596142962729535,2.4453440708075012e-05,0.0006651993848442423,0.046270879157341405,0.1465082239132247,-0.014477800619313273,9.382029315016952e-05,0.0070067388471626675,0.027990596897366514,0.1811704545857857,0.0766902801081689,4.34897192583949e-05,0.005414511954592414,-0.03696335789543037,0.027270061825629636,0.03612525964644051,0.002643676237077105,0.0102528382793313,-0.0027331592814705133,0.014262983730766076,0.00019904935887782622,0.000157690911284882,0.008883649503356038,0.04010637313126503,0.21977514008234988,0.02152384170649,0.00028258106420296647,0.02399543624456748,0.0016516033263351566,0.010127992792327137,-0.010099305867078122,4.593495775064254e-05,0.027953246395656696,0.018107442512039704,0.09182319534871439,-0.10135579413732008,0.000325006106409948,0.00233042126679648,-0.10258311780199587,1.2075618064952616,0.09792966579327163,3.525305489386662e-05,0.0038408331858766007,0.01505985009120125,0.18412836108184058,0.015557557747439898,2.7326352757232654e-05,0.0015871717629941534,0.021569394985819192,0.07994337786518092,0.02945780287785519,8.691169595301043e-05,0.0025974258622039883,0.08901904378799605,0.6762023569865735,0.1676490400215814,3.0408753686768646e-05,0.013390530896030163,-0.023168127991095445,0.07257483147454341,0.0017911261734667935,7.077539307274476e-05,0.008958132240837649,-0.0025801767370195396,0.00908604526970942,-0.003516364321922576,0.00012984437929273646,0.002158690088141131,-0.03972331341006296,0.04035346452207198,0.008686984703493501,0.0005626524333537468,0.005884897420096317,0.00891311874307705,0.032215763672091356,-0.026098148694244823,0.00011645208553729703,0.0019289940758599588,0.0026085104545786643,0.008208368195262238,-0.01706211130252971,0.0020396466076116324,0.009915100233496545,-0.00969951059864312,0.08114976911919888,-0.0010050026361972217,3.073581465892329e-05,0.029772189438937766,0.020136795757426797,0.06370797876251616,0.016526387795917336,0.00103339845594048,0.020772031476765693,0.014748209641080234,0.13034017666611442,-0.008896461971289333,7.53505870582764e-05,0.023705766623466858,0.01044028636825064,0.016643710509862995,0.0025917277301354368,0.00014804973831750732,0.009746493075963994,0.0161883492409688,0.02870009267119679,0.0066286203919722255,0.00032375999141915767,0.00774047890961016,-0.00677895902749363,0.026518574766168496,0.00019306345407168676,0.0019813589950014136,0.021806022446459624,-0.03239052718264876,0.10642158819965622,0.06204233904656639,9.765143981110361e-05,0.010350116925477078,0.02551391389563634,0.0363474323002637,-0.0560714790848733,0.0017449401717510523,0.013449381747223554,0.027918865413493227,0.09910442273441385,0.012566186762604322,0.00011161453787715692,0.010530639563452465,-0.016587142420593858,0.04767437226772252,0.0050888328642857686,0.00014104151566468717,0.024578362014178724,-0.017560547850041536,0.08017730181782082,0.00785384062994589,5.3456503497030647e-05,0.01242606035738296,-0.059651993019285844,0.16561622160178777,0.08109069578976813,0.0034138162706898872,0.005061103849606431,0.04104129427892489,0.2139329185468686,0.057715119134913444,9.542979764852508e-05,0.00672271492091077,0.010488191255193404,0.05876511581210912,-0.02677789223500065,0.00012943203703201658,0.0171225704952821,-0.010161575693884404,0.05859110230934279,-0.05229349450708081,8.203101524866493e-05,0.0007856878694995171,-0.02796030681561261,0.1314923871417709,0.01808903277141841,5.3442740203936164e-05,0.0002771359370600893,-0.0396139231596952,0.06863173688697201,0.031394928750469855,0.00028141825063935207,0.010616696035225196,-0.017259320763541693,0.0796165189067618,-0.05479706434729282,5.3905724966336e-05,0.028280818854285496,0.04584514390558506,0.5122311533552267,0.018873118580606085,2.309184520136884e-05,0.01938924236361865,-0.010710958200331376,0.04220040711674048,-0.000990383742986641,8.871981924011368e-05,0.003003038235413708,-0.019510483558648203,0.08473095444641154,0.004950652823929549,0.0003629559378480232,0.005760502560100085,0.015305019909559995,0.07471492181516831,-0.08216772347969215,0.00011732710332323295,0.009637403144860055,-0.0011153547097182824 +2020-07-22,0.0020454158941044564,0.013203906156642376,-1.1568203645349e-05,0.00016381956984587638,0.015664295943539318,0.05069799915136702,0.17591681796889877,0.08866115021718238,6.91502867854206e-05,0.031145423088966156,0.06146912388939639,0.19651678850619198,0.059589139853889354,0.00014469534828046748,0.009272429705574086,0.006833560186601287,0.006797161623089505,0.009036553459746419,0.0003393026748918198,0.0018735172626461146,-0.004432359702146512,0.009621652653319043,-0.0002097849476644833,0.00024103665704295707,0.0072322520513926625,-0.0012840989751603297,0.003103327789938665,-0.05481382620175183,9.034780143212763e-05,0.003312476367927612,0.015034183890258483,0.046757712138508566,-0.03731383864045507,9.434447243462738e-05,0.012096247158531422,0.010245335962099384,0.09400035292293137,-0.016591005812315054,3.737621631327737e-05,0.02062317856834281,-0.007744023952340702,0.006719520050089511,-0.019094526641280037,0.0008887369159295717,0.011280658074897273,-0.014731891134465658,0.04576866107816117,-0.0006260018110529863,0.0001125517312255212,0.0029601989760708464,-5.6656379895343415e-05,4.492099384481245e-05,-0.0038739791132686966,0.0006164868589226838,0.0012829092168881282,-0.0019552514158596716,0.0260185132331718,-0.01658183483955534,2.2394580021102934e-05,0.0020971479156305086,0.0399097027271881,0.12162317596080739,0.016835204221801833,9.747947707167911e-05,0.036419927966359705,1.1797089737328244e-05,6.0452260604799035e-05,-0.08762614450207964,5.4931841140514086e-05,0.004108543266823588,-0.0052308627177406275,0.005281656320831486,-0.019237098574192105,0.0019316398515864446,0.020955342711038973,0.05105767510354938,0.392758730079271,0.04978006053994143,0.00010697623182932599,0.008960918855884055,0.040531644612042735,0.22671914883739616,0.023779819434008483,0.000276830702939709,0.01756339615555593,-0.008170144981565156,0.04015846394830555,-0.027622633960938024,5.73077854735873e-05,0.0031256353223802296,-0.018944138175151677,0.1016913515904974,-0.006158140976556841,0.00030702775748041284,0.013263610525922814,-0.050071127486850976,0.627495047130145,0.005437110611211235,3.3113668735187404e-05,0.0002141896315012693,-0.0011960047049881552,0.013854619676461984,0.0044880077256695345,2.884164246083558e-05,0.003434547752146309,0.020794762956224077,0.056106224238921275,0.024248146285639278,0.00011938937723261577,0.021926381094062027,-0.009638474926471267,0.05928918061631371,-0.0020350113314059207,3.7551323610320656e-05,0.025166219825933978,-0.010422950479152133,0.028873772854664817,0.004029575629807663,8.00321568238932e-05,0.0019242943750939264,0.014262983125526933,0.061184690742208045,0.03350411898823556,0.0001065899343600883,0.00039247666765796483,-0.005819131678102324,0.004779615334820281,-0.005534889055955594,0.000695890327811919,0.03915845834351336,-0.0018497436836292134,0.008125140312502504,-0.0010099946944879096,9.582232242568118e-05,0.005580584778648846,0.015069857383377634,0.05471183521258532,0.004681286256358809,0.0017678566003778145,0.02709068381666041,-0.06769736520690559,0.5651223076364097,0.08472223357048139,3.080431178985978e-05,0.009046167943209206,-0.048200675571248804,0.15084097817269118,0.21053822556699567,0.0010447323793561626,0.007056454655726469,-0.013248738685816367,0.09480398859515737,0.018386881207901662,9.306225422896723e-05,0.0012815827094101067,-0.009233491196111806,0.013689392140597705,-0.0018462795646503431,0.00015919417089570826,0.008564033152433089,-0.006284754718927773,0.009763268208369646,-0.021403467950231667,0.00036948518246798226,0.006114266985567484,0.026478977954143463,0.09654808631308834,-0.08483054018736047,0.002125728959760388,0.0030775060965107675,-0.013154351358315872,0.05803485241138267,0.007231436390804927,7.272285560254426e-05,0.005738213605811249,-0.015320184987342129,0.01944355698659647,0.00215200517417644,0.0019586889977474794,0.013335241930501866,0.01907885549893678,0.060267339415697146,0.0031168751661706517,0.0001254256429212195,0.017564368909496246,-0.01159812384578049,0.0313076031159915,-0.009045883040610115,0.00015017522742018298,0.01627220424032838,-0.04157626147898196,0.18262281724418744,0.041682246792362466,5.556538425789424e-05,0.006094703169578058,0.04353730291202163,0.13225227314680052,0.025205549390786265,0.0031201569039311997,0.012353445963757845,0.005672298734632419,0.029032087866865487,-0.016424894948105062,9.718995839835912e-05,0.006117604344552583,-0.021616798316136582,0.11977024168613662,-0.0164335490087204,0.00013088902393437686,0.0012401249134887525,-0.0016648292894670342,0.011964853999222471,-0.012843767780061488,6.581289620454562e-05,0.00487774825012401,0.01398741625494975,0.06781700318067357,-0.0054333635571708295,5.183776872726447e-05,0.025410059215707072,0.03592720460493715,0.0654098095417175,0.010324807188288288,0.0002677996078922315,0.01777015755160581,0.0009359042713417638,0.00418578614735912,0.0010401416835712923,5.559922895231528e-05,0.009212542111754454,0.03903951443804132,0.47573544663745626,0.057389187341674495,2.1172404437411678e-05,0.014790100796903979,-0.008102950433508565,0.023866031689734037,-0.010784816253752397,0.00011867846866678457,0.013252479959927599,0.003484717540130975,0.0154122243965199,-0.08156695894528228,0.00035639387261348493,0.0036372267978683204,0.03393271071817751,0.1624317082819403,0.024705361202534026,0.00011965188335045367,0.02078132420612663,0.003664709526622064 +2020-07-23,0.0004307996679551362,0.0028677313045323664,-0.04246159922030086,0.0001588632659492323,0.0013115172962869656,0.0021414210305398837,0.007527826708791409,0.0003644176588749122,6.825633684822671e-05,0.006853681491282569,-0.0109632136788389,0.03435508161109718,0.001018110877523637,0.00014761962534644234,0.0008492984450458652,-0.024283350100425177,0.025322726106292895,0.04310815320068065,0.0003236428373426508,0.013155171462560188,0.05041629862717035,0.11279115264333577,0.17986159327263837,0.00023388032879749322,0.010920788102566678,-0.009142085997405422,0.022585413059134408,-0.0024680145264963337,8.838203651209411e-05,0.003036563718971106,-0.0029661174485458835,0.011422799082253365,-0.006503682307902012,7.619134863024073e-05,0.02381068897381362,0.03771748975846636,0.3469511167065464,-0.010773218452690537,3.727975983951292e-05,0.003473695699526805,0.022564664662101608,0.02037759758736195,-0.01705873429423346,0.0008539268883139434,0.003158356448841968,-0.02011699613481998,0.043659592438632606,0.025389831338878798,0.0001611184746318829,0.008347263475726808,-0.014860319534231056,0.011884086512619442,-0.038650637414443134,0.0006112047229855473,0.005863982913255885,0.00458059106528577,0.06365184693960654,-0.02246995862882012,2.1445358034958823e-05,0.00848837513003596,-0.0070060915762445684,0.02185512817787387,-0.011223551387995016,9.522993537282476e-05,0.02758323645873753,0.0011770481798648212,0.006337710075029943,-0.0022706283822331286,5.227856888566863e-05,0.008298773275236988,0.005561476268103304,0.004209845012645711,-0.03657998769337615,0.002576599709749798,0.01719181056226897,0.02871427713112868,0.2571720980137476,-0.07376872644717493,9.18810918704575e-05,0.016905656158309565,-0.05412865569114246,0.3219042994504373,-0.04036218427134469,0.0002603806434931833,0.0007193377570084913,-0.022026519201892636,0.1232199767116716,0.005041450589519959,5.035304116169802e-05,0.0074165309961633724,-0.024097507928171336,0.10063670765994502,0.019617039435903816,0.0003946412871447687,0.011217764479210777,0.1168276473861286,1.5007234424029408,0.19478877577302706,3.2305405437045864e-05,0.033648552668699906,-0.012808087464357987,0.1433460779073332,0.0018072239811516035,2.9852463706120222e-05,0.0074076941677098836,0.00806041714188406,0.022853344862551122,-0.047195473012647246,0.00011361364688101143,0.0031573043036442284,0.046380321070071125,0.3063937089939426,0.03542447180597698,3.496602654176572e-05,0.022504809803988488,-0.013770320361819468,0.04347568153721096,0.01986052995627767,7.02222963899504e-05,0.001666032739588146,0.008213095917556054,0.030856997698922552,0.01060486410501159,0.00012170315090488559,0.00035016022881306655,0.04041825682841755,0.03999372702005614,0.019437593814438336,0.0005776453246590531,0.026551156918773106,-0.015442525564563787,0.04286207437338925,-0.07101238645930605,0.0001516460674575818,0.019812119625241584,-0.03475886173337843,0.12914950040602402,0.007060914211539034,0.0017273963202629203,0.002161075345482562,-0.02994065778171317,0.26685113378570124,0.0027510714227718786,2.8851904119963574e-05,0.019198842885870156,0.020807465639678384,0.05993567933352881,-0.044601593116319414,0.0011350239451382047,0.023502227001653157,-0.0027219698552170637,0.021834767625671804,0.001991141794633742,8.301572788030136e-05,0.005909491455837679,-0.015533485936629692,0.024038945979531743,0.016338865099469104,0.00015251020095810914,0.000523045735547283,0.004119605258752324,0.0057091803211975385,-0.1441348622424892,0.00041417678965174524,0.01087656112761908,0.024029417065449598,0.08957527773996055,0.008166518231004479,0.002079243789812964,0.0119719040086041,0.0003694059932858159,0.001628569476008727,-0.22237618525776623,7.27759723981487e-05,0.01531337089317092,-0.00906489316511804,0.01269448770392582,0.00019593055894481928,0.0017751076784423715,0.019154733072155275,0.04513891820582193,0.16622816415767208,0.003496826487832207,0.00010758768793686093,0.005869373717805412,-0.005316251816398246,0.013591077304311758,-0.0011510032434084707,0.00015856671807861115,0.007490143905346281,0.014888675197836957,0.04906226093673544,-0.04075683749950242,7.406660236049313e-05,0.001084953530766786,0.03721124737163688,0.10146995755044033,0.014288537846829553,0.0034758002303964565,0.01923054919311483,-0.024672746197861573,0.11426833720770757,0.01695947061092863,0.00010740689312472882,0.016917507637484203,-0.016584777752520114,0.10692997787263336,0.010759868877411724,0.00011247887488488512,0.002013797666472567,0.03174289250122818,0.18953278218924358,0.0651901940446748,7.921562614110533e-05,0.012888806973006055,0.008532779838273817,0.03878017212231663,-0.0028633032363440157,5.530039109600059e-05,0.017413797792830456,-0.005500432237871009,0.012117792394541166,0.001520634976537881,0.00022131084944052566,0.019891348551190537,-0.002540358660938458,0.012288840779413172,-0.0005271821712687008,5.1404187075566245e-05,0.0006276469925339235,0.008660157217549688,0.10057649808719342,-0.0008664040754305817,2.2215728113816743e-05,9.531177139956027e-05,0.005572403073350676,0.01576682551529432,-0.0591684486571367,0.00012353989449986698,0.006772579859705808,-0.015163875750330092,0.06007683039812589,0.03391221518828551,0.0003978608229139342,0.013812641691095692,-0.009852592028391276,0.05638478788365532,-0.04044070449789437,0.0001000830069582527,0.005292560233292072,0.0036251839167420596 +2020-07-24,0.010677448780985815,0.06816332103314192,-0.025859705921272284,0.00016565453849462172,0.006457561069344505,-0.028840095440126726,0.09492462203779868,-0.023246004209289246,7.29001367943604e-05,0.011883899534492407,-0.013998031204374765,0.043600194020796935,0.011286847665367595,0.00014851685360236066,0.01510524741650335,0.0005419524939394565,0.000661887894569217,-0.005829732463274958,0.00027634056246132646,0.0015139349159756792,-0.009164550466569204,0.0236767131867548,0.0009012313174416377,0.00020252914353317657,0.0011640560848671967,-0.0043060639652022885,0.010596691199932378,-0.02758982301563005,8.872723298756439e-05,0.002355899581851722,0.024003211216557564,0.08793660554658082,-0.0847962653956307,8.009206747788175e-05,0.028857487319331205,-0.022366237664557732,0.1706138519404291,0.01614529115570102,4.495492337775692e-05,0.005287517824461569,0.021504214442892723,0.01696618151751359,0.062459337628750555,0.0009774268382755486,0.0059473733951852445,0.02245983355460215,0.06172626436940863,0.008828812982697564,0.00012723260680002667,0.0022737951611953664,0.010987284398131637,0.00736792946770121,-0.005139222839905153,0.0007289022059156806,0.0015664136186991687,-0.006912682733450401,0.10035535828827376,-0.02329805043500171,2.0527159102168077e-05,0.0011449933830152339,-0.01015666923488636,0.022784805375539334,-0.006636871021209825,0.00013242104900497586,0.04440519315172495,0.008508642217260467,0.04778638645632574,-0.0857040515647665,5.012078791124033e-05,0.0023908394310405185,-0.041434622812743925,0.03135081052509618,-0.006979920734028898,0.002577730967771586,0.006642136244565355,-0.01059398817831262,0.06365337657062567,-0.0005674743792249402,0.00013695886411335887,0.02456715201826909,-0.024217864799705738,0.16472179132360185,-0.002464195498720112,0.00022766329950116393,0.02593608830159394,0.008029861045150967,0.04057346118519915,-0.2673009200181454,5.574769669090963e-05,0.015532646561755698,0.0412319350751851,0.2276727467560434,0.04429615253674212,0.00029847604245562375,0.003556656914438269,0.04382840148913628,0.5137758875050669,0.022339975356655814,3.5400724029453836e-05,0.030921699033286315,0.0028406872673948595,0.0325456316177222,-0.01849066459980422,2.9161672570997262e-05,0.0016528826710793226,0.008076513737080532,0.025209680565054644,-0.021308788154340796,0.00010319991728062106,0.016908831277392036,0.0093934561467575,0.0664222416590072,-0.024752869246484836,3.266662446809488e-05,0.028821111316522367,-0.005399890051276446,0.01769603933719694,-0.04534594697488673,6.765286987975672e-05,0.011286607199541297,1.68883542933291e-05,6.386461601819282e-05,-0.001984099188457295,0.00012091373079022997,0.004819380994026117,0.04888657351415,0.04275002193674124,0.03249096664494997,0.0006536252453636909,0.018964360915005734,-0.005318286310119466,0.019459037256309996,-0.002420591169060048,0.00011503668902240262,0.006271981739116644,0.020317667278574612,0.06793085875370145,0.004587501457140719,0.0019196670651098246,0.03216146070725101,-0.012245027633013581,0.10919564168191165,-0.018923806613136366,2.8836109104880393e-05,0.02167825133623446,0.0023037003919870033,0.006966636684277698,-0.06841128998478475,0.001081120503055561,0.007603630210268083,0.015010057575573,0.11220735474011698,-0.021134226288236004,8.908132687051092e-05,0.02074219908057626,-0.06849710245694371,0.10584695995795429,0.2610574185282984,0.00015273522100322517,0.013610637844779751,0.03463328559942074,0.054150921668082455,0.10524014403149363,0.00036710623034848493,0.008105149795543607,0.00017079580265281157,0.0006906501261232723,-0.15495406426371308,0.0019167675099945277,0.01212285730369161,0.0022390573765866985,0.00875828812378504,-0.09429055496777582,8.202313508903468e-05,0.010695241801339354,-0.0009133930157012071,0.0010856131331054943,-0.011808485536216258,0.0020915092503129276,0.0047646529998372125,0.0007118309175899431,0.002017964218207758,-0.0005593414343873148,0.00013975888348366302,0.006478934025853842,0.019933133398737993,0.054364572077872035,-0.03528716302283816,0.00014863461940018644,0.0012319229245538429,0.015810997656639555,0.057293395295736016,0.002423144957958033,6.735481371838374e-05,0.0009201838291886207,0.008239035634198139,0.026735470130216685,-0.029736809132908312,0.002920832240723972,0.009554618589054492,-0.020017500100980138,0.0958747341554642,0.009850172076347873,0.00010385950235746758,0.011849447375809737,-0.021351466724167743,0.1219638212456188,0.01708777805362917,0.00012695724090757007,0.0008050064945726732,0.004921190602096204,0.02431983680837289,-0.006336777654832682,9.571020100447946e-05,0.006033484894456747,-0.0021840309486473985,0.010170609768827278,-0.07547136287713824,5.3970841771159457e-05,0.018873221199438316,-0.049263296799275914,0.0921597632483252,0.03479138248155181,0.0002606222657192854,0.0028620421201608786,-0.01115592031111794,0.05249756264227398,-0.154355244084108,5.284216937784741e-05,0.002312554784509113,-0.01192379925769134,0.11466826602992382,-0.011697724293061398,2.6828889455710807e-05,0.006713313058299709,-0.025737467240560332,0.07897257924987627,0.040556917185653525,0.00011391959939016466,0.007860771577323782,0.0012661660792143313,0.005703694556107578,-0.0035525609901842425,0.0003499148592111269,0.00861878931706854,0.00796690767988728,0.03874007675183244,-0.0008964537414161873,0.00011778801522122106,0.00482631472410125,-0.0006095204832895081 +2020-07-27,0.027287341070365723,0.1720891837393314,0.027340852691988847,0.00016768500515211654,0.006982794952961132,-0.009029590183887075,0.029193196256396527,-0.0029028795504332998,7.421589336540102e-05,0.010481384688868835,0.032046608922138176,0.11627955720968819,-0.00028351641848651626,0.0001274899396986464,0.0008284205560844431,0.02865573725210253,0.0293169080803761,0.032105251837135196,0.000329884019325323,0.011573751214009088,0.007251900099398923,0.015935288662187803,-0.021863065871646416,0.00023811658754957222,0.006308117450885636,0.001708810364834435,0.004545365048039339,0.0017035069697637977,8.208651940844194e-05,0.007444123452327535,-0.005041924463237851,0.01534373749467904,-0.002661123848511997,9.641731434385896e-05,0.009928829554477048,-0.02420095754467595,0.17627523859651836,-0.008323896508615123,4.708036846369464e-05,0.010980344735159882,0.014885700796270218,0.01182356866234003,0.021802422920047162,0.0009708798647105043,0.005243406958461053,0.033893790756031716,0.07912450967912374,0.03935679259088892,0.00014978592254019245,0.003622003610530593,0.023540096398329137,0.016102755289817753,-0.008649402112176281,0.0007145496356763548,0.004457104018694781,-0.018580601220299368,0.2563810551184603,-0.007209992978438404,2.1597158793031377e-05,0.013674641336071361,0.016982188483475446,0.04311304807997133,0.002080580659764703,0.00011701349903842086,0.013095447863077033,-0.028730958688925935,0.1544158282965408,0.08215305533856257,5.237452782285633e-05,0.016200171323116186,0.018060438304935936,0.016158598215977437,-0.053600369147379645,0.002179955238039179,0.011728985623638768,0.037829318700874665,0.22781657922659568,0.01110784725605258,0.00013664548962480065,0.021706269260417205,-0.02249152746796302,0.1294116126448657,0.0036214163986076635,0.0002691249322346063,0.0566180584278696,-0.04842207179575737,0.2835141939004862,0.05206107423169572,4.8109353068400284e-05,0.0012117913865723811,-0.012267046662677208,0.07044439770218767,-0.011257011106051967,0.00028699898741680506,0.00234295336109155,-0.04954857738856088,0.7498959053434857,0.016434120468348603,2.741955731053463e-05,0.027618410677552874,0.014289880060280402,0.11634700472291007,-0.015845311013651175,4.1035061208643266e-05,0.0036525935653418354,0.003346935390027839,0.008389633546045319,-0.061843991153413276,0.00012850709111145102,0.0011404794877301163,0.005642425009276626,0.03660582642903065,-0.037066724562155706,3.560475123451769e-05,0.014151689541835316,0.010008409345179015,0.027118859404149005,0.011816872995636673,8.182217552280638e-05,0.002993392941780076,0.004557491734938437,0.018205858690057444,-0.14642737415495405,0.0001144625238871871,0.003321491242313128,0.016055143776259315,0.014272019231874763,-0.08938611463014749,0.0006429901769885415,0.012051991118104706,0.03655672790703984,0.11765713193615995,0.09813808902472027,0.00013077811333499724,0.012647056414609344,0.004409475207336664,0.014549030132325547,-0.0004087984787181775,0.001945234826876173,0.008939714685276814,-0.015893682820391577,0.15683531518106175,-0.12435449664547052,2.6059307830304337e-05,0.0009266882341861305,-0.02721867086302969,0.07790691757393108,0.01876846076530855,0.0011422526181224873,0.008104503447126047,0.0074410694391611526,0.05515217399147898,-0.018825726275011088,8.984592089172125e-05,0.02459516130711758,0.020260626522519733,0.02877388437145249,0.006718342531590124,0.00016618803899519165,0.024369871061648368,-0.017985958744692384,0.024386787264776392,-0.004321246521572227,0.00042333377267275214,0.008980927387816454,-0.013497241836251408,0.05607931843190425,-0.029467159042292884,0.001865488790837783,0.005378797833537861,-0.010413132668468892,0.04004514619103897,-0.04263929468275998,8.342993178700692e-05,0.0028629580398656118,0.02885707886250454,0.045955729908896,0.021210582483764142,0.0015609532266403876,0.0011287112260087455,-0.046421471193932334,0.15812552047357853,0.043414191751568874,0.00011631426174604468,0.024296762059898457,0.0001525878042742368,0.0003535778042168825,-0.0008109792778461796,0.0001749424503653041,0.0023751807418583622,0.03473122240714972,0.1288203531765,-0.010745219719780498,6.580357801156763e-05,0.007255659213957537,-0.017219723482542276,0.049207406717003896,-0.010823956773195156,0.0033167577553452417,0.005263671188496004,-0.021852793997221807,0.10077158345406949,-0.011437266866003633,0.00010787218102085227,0.004918169226734799,0.017753899282591478,0.11247052137201008,0.0082538741852304,0.00011447636424494862,0.01560143203176213,-0.007460587635064926,0.04323753044494842,-0.001530446063359439,8.161328408575066e-05,0.011316532233480886,0.03029764288735202,0.12464085509270484,0.027871441578020757,6.10936141130563e-05,0.0029742485239858214,-0.019549202828298112,0.034806358555503195,-0.0334845862971004,0.00027384187319709187,0.013486900716210351,-0.00806637173568113,0.03372570928372727,-0.053520327016236435,5.947459813765375e-05,0.001750935281299262,-0.010692542805801638,0.11801648511488319,-0.010067753655168541,2.3375968164071044e-05,0.00024267182242339276,-0.013323799696622946,0.043714444416649914,0.004738332678030581,0.00010653985380296721,0.001623017414870129,0.012462147681184785,0.051814844207793594,-0.023034598479896824,0.0003791112461267956,0.0006164603792629096,-0.00038298803139208366,0.0017044952051690143,-0.0010770913211007541,0.00012869486372090868,0.013451869930882694,0.00020259454391544497 +2020-07-28,0.038455526319710984,0.2836486834127524,0.05467220893691323,0.00014337207525171963,0.01814525201403097,-0.04598774756101434,0.15187371307521588,0.05703333986093968,7.265576074361416e-05,0.010461424735033014,0.03400310243760936,0.11956102274720357,-0.01660167575637646,0.00013156068524917532,0.022489411694184596,0.013917551826274861,0.015566371206613533,-0.005676860735700615,0.00030174724998868925,0.004010549651209278,0.011547854360227615,0.025545979749757645,0.0031494099501975814,0.00023652470348775479,0.0004005646065290653,-0.010541138367070794,0.028628381465327566,-0.04945293516805211,8.039655849589895e-05,0.003808089984980792,-0.03230711342591317,0.14345511185993925,0.02265812774207829,6.608029653135022e-05,0.024022466579503514,-0.026999876309414403,0.21200223374450516,0.025413459127290376,4.3673696547657e-05,0.0026937489352835305,-0.03342547204452441,0.025337777995791462,0.10249084655042322,0.0010173111610260225,3.7040125744536865e-05,0.06331910034701405,0.12864110479483218,0.11944515220171506,0.0001721142627270593,0.01001975703691439,0.0036180935328256397,0.0027226734654270672,0.0007416131844636399,0.0006495440205983154,0.008285986263820546,-0.0036523683323677813,0.045906200910209555,-0.00012893663972839077,2.3709697057636922e-05,0.005992344509335339,-0.0017062014255545684,0.00531525980656035,-0.015719808610606498,9.535793569817603e-05,0.05484078538207577,-0.018262596659787536,0.09421126849492284,-0.0053884358285645655,5.456592158499213e-05,0.007973841013851393,5.758935800958216e-05,5.0659534284386885e-05,0.004012207896541421,0.00221719564432402,0.007591397073854039,0.04624668783587303,0.3020068816981772,0.025750039506354832,0.00012601316013598337,0.01101632142086058,0.0024338890060035946,0.013110840949755313,0.0003522093411776304,0.00028746068225188093,0.021352497016179205,-0.02844622349367855,0.17873139901738452,0.0004291044641688306,4.483164958017664e-05,0.0100898759218021,-0.010846899969275693,0.05154587565870927,-0.047157731433202774,0.00034681551745868673,0.0076579516256844475,0.0471715937850492,0.5889649857471015,-0.011886335746613267,3.323696078742312e-05,0.03446164161059271,0.00020937261757988487,0.0019924343886249638,-0.16031683752788212,3.510892749209171e-05,0.0028924505784558947,-0.016886016387255096,0.04546101106676412,-0.011282031207236896,0.00011964949553265348,0.007992308568457802,-0.046280925814939734,0.34544788371599916,0.05605081776697332,3.0946524200325343e-05,0.03432259438682896,0.013533154781435545,0.03497435671987538,-0.008920640328163414,8.578803019319621e-05,0.012988067795533915,-0.0032820404471504516,0.01403327420523879,-0.0264420239871075,0.00010693835846103338,0.00484898412668513,0.02667509315715887,0.026452438219395136,0.0016181355893245361,0.0005763891505239205,0.021505801151117464,0.03833895400641353,0.13196189289126437,0.07720491171288833,0.0001222862796336015,0.013431398797599761,-0.07622481628501915,0.26700556913933304,0.00019044742791689116,0.0018322943445470317,0.006312054334904362,0.012934643505863652,0.11932894858513093,0.02424286896332921,2.7873457606296645e-05,0.01542797988492955,-0.03318120774509273,0.10813854668833836,0.07936442669137247,0.0010031893910701405,0.009718714628453473,0.020517011827293936,0.14762264279406362,0.006503795800400967,9.255220629482481e-05,0.0038067887705408995,0.0032743926095496548,0.0051605439652414155,-0.04641634744427605,0.00014975476684872104,0.015252850081744394,-0.033148601323735205,0.041408662106846184,0.03303092858971027,0.00045949196707284945,0.01184672204870624,-0.002421265496882371,0.009947060930780321,-0.05078583074943039,0.001886678829761733,0.005241240368743148,0.0028171163850975534,0.010018877397552702,-0.004971411112889997,9.021444836908656e-05,0.002692822831044547,0.06978748983247463,0.07718632280711808,0.10081961494634983,0.0022475761655238,0.029583640551539843,-0.015928606165782483,0.04964541979482698,-0.0527090273986146,0.00012712021642845788,0.010428290354400118,0.0019583387858276955,0.004695373735773112,-0.014286475020370303,0.00016907447017561452,0.007165445851088833,-0.04214188016499426,0.17798442623647343,0.0383193777200374,5.7789086569388036e-05,0.016444378072049903,-0.04771726896170503,0.14847609571145834,0.035078612783164216,0.0030460504948637323,0.006624805587111641,0.0017652311334715148,0.00896207317097199,-0.03653960111181718,9.797914917264293e-05,0.01359027587579417,0.010477734170773452,0.05502945105492458,-0.009045321862972067,0.0001380806998889707,0.002184784977543622,0.0028089373544848114,0.015104758599685238,-0.003529845120638447,8.795832762896529e-05,0.004440675365528612,0.013787496734639013,0.06309599068664659,0.0014168452653984278,5.4920066417117834e-05,0.00800576855831222,-0.057310202244097976,0.10425884800625607,-0.009428307589000439,0.000268008404419807,0.0033233473407790898,0.011337733143153186,0.04854873528265489,0.04784035041523551,5.807145209353194e-05,0.0006829529642200165,-0.023355199683966245,0.23340711383617954,0.035849437987316435,2.5816703192931796e-05,0.010489610555635206,0.008591030210257217,0.028410377445597407,0.009076701171091793,0.00010570054028614308,0.013802633518857108,0.0028057732048552145,0.012366793008611815,-0.004122947841265156,0.00035762135350334343,0.003801952301270151,0.02738421794834696,0.13364041521042427,-0.10410874570378516,0.00011736384316372853,0.003556089639444806,-0.0004194630536227008 +2020-07-29,0.007464183296943931,0.06037647037130303,-0.02565793753889704,0.00013073779599612564,0.016419408628246004,-0.029181594204982893,0.11059867773700988,-0.0946255051765242,6.330960526716023e-05,0.012518682617563393,-0.025579317454504733,0.08346307365455663,-0.02766833804774402,0.00014177242960350823,0.02631384272893255,-0.0323994384238595,0.039565761475642766,0.058271576051481304,0.0002763667621668101,0.00023897298773048947,0.03432649171165896,0.07590897374814748,0.08533781026868979,0.00023661053174350838,0.010440595945232261,0.002902915797320958,0.00760013181396586,-0.012251858598172183,8.339884843796762e-05,0.0073417705369934454,0.015250551325605882,0.05501341034466107,-0.01609663735888383,8.13404987915769e-05,0.010945757487577147,0.019726727502078892,0.23500132985353797,-0.033972155188122743,2.8786133820655744e-05,0.007693114762971274,0.02419853887124947,0.019826110621794655,0.0580570252373977,0.0009412313961749225,0.0017499972397674569,0.013164608489558971,0.03189755368825219,-0.006500631706649318,0.00014431532680882369,0.017575116806551057,0.009540908321516316,0.008333668210533872,0.008757625759660267,0.0005596002181846462,0.006289236128147552,-0.008398167489015848,0.10832034180374887,-0.028576519341378205,2.310453856709027e-05,0.014046191852581894,0.0027714410723398988,0.006490888768759375,-0.005667260622656046,0.00012683891542993308,0.03206345895557075,-0.007587252155162885,0.034435451403423877,-0.06117171555871739,6.202125581062475e-05,0.00031093905672298816,-0.032095040804848006,0.026330859437622662,0.016799488098824204,0.002377365029597767,0.010041859106962085,-0.016055441611864955,0.10401531070875301,0.006477769744185494,0.00012702145775340655,0.05380908680663449,0.010600667602245673,0.0513315221552167,-0.011160177825169613,0.0003197844237172928,0.008146686815158417,-0.05768294531419441,0.3787372919185196,0.08408157399475029,4.290128632610431e-05,0.001624384127766402,-0.003628340437122152,0.019023323817938254,-0.022087912127414445,0.0003143463600247662,0.009900224355259765,0.05129746837379853,0.6462416548953148,0.021502581372536685,3.294057802546764e-05,0.03249284948929633,-0.01359525145243188,0.16235939055555398,0.05692634023932196,2.797638147197093e-05,0.008655075583300264,0.003790068896879985,0.01076035080791969,-0.03387506237455204,0.00011346017006284414,6.629529577536456e-05,0.022808767673454945,0.16455894989096975,-0.002489238599988534,3.2016414237537074e-05,0.02248552170788102,0.009227077153683224,0.02830329090078262,-0.009530110141681581,7.227774579588432e-05,0.0030183896062010588,0.001288384860640978,0.005421010187372504,-0.029719330484949097,0.00010867108047778785,0.005649603233773254,0.0043189635088028274,0.0046789520866563,-0.008671494514915801,0.0005276020788859378,0.0020803165308812964,-0.006700813647630317,0.025274108376163673,-0.008704726149552745,0.00011159319343129729,0.01562991615641335,-0.02448359481819724,0.08346016749537126,-0.0018478387887458229,0.0018828473282684278,0.04531038984156196,0.021278583272835706,0.1733040866123277,0.02187791916083165,3.1573018262849956e-05,0.0010422750725586792,-0.0424376050807352,0.12907349420547837,0.10613880997718189,0.0010749420932076798,0.0118346750696016,0.00495473658302873,0.03760844229670821,-0.14246421488084401,8.773257327443303e-05,0.010861882351640319,0.007898570990028907,0.012643696569722248,-0.026507183205089824,0.00014744153622206922,0.012879708154577153,-0.01873133838890892,0.02439890523886471,-0.06295389017107961,0.0004406587347507469,0.007518573324235419,0.022589697029082558,0.09739359279607897,-0.24740290834111553,0.0017977544001189314,0.004416352627100215,0.027825463926518346,0.10324115533525827,0.07404000940738638,8.647288097946518e-05,0.003036043265630792,-0.0004613230070782851,0.0006229700511865581,-0.0012490511984628928,0.0018408361624790127,0.009251392686466286,0.00020123761414738434,0.0006406481068056762,-0.00033997013112018376,0.00012445308000815294,0.01045190193852067,-0.016508722919438706,0.051013105229936614,0.00489304842915594,0.00013118739072300604,0.011383680152442649,0.01636431721886377,0.0820591738890991,-0.0057617855043438655,4.8672614354292364e-05,0.021347048084578924,0.028778313835146466,0.09765818508285376,0.007504153673318808,0.0027930245521937975,0.012912802440182442,0.04300316598616572,0.18364694627777287,0.053568842229457174,0.00011648158993007061,0.007679734937541458,-0.017859689301330535,0.10636781166447064,-0.00399540439988516,0.00012176555687595252,0.010787452258454552,-0.025592360770057932,0.15458919521737122,0.010605197635547209,7.830327231727448e-05,0.016205122106260635,0.010360667120622526,0.05226754913088389,-0.07837389165321962,4.981991464875538e-05,0.011771727613256644,-0.0266856545078867,0.05271766612432975,-0.0006196818456454872,0.00024680336563823017,0.02839688966147515,0.004670137153577723,0.017033599036405996,0.006653080189113519,6.817695355782018e-05,0.0028580611058989956,0.014957544956091577,0.1578864537019341,-0.013251536143583119,2.4442562376396002e-05,0.006504359711136018,0.03057717818716583,0.08518378056699746,0.07447021022412723,0.0001254727619425025,0.008592361735560295,-0.0038950330874876495,0.015602214001220043,0.003573691913509279,0.0003935073891030277,0.01509134815141168,-0.008511907528949392,0.044130443173873546,0.009403955765321959,0.00011047408268182474,0.004995263691501816,0.0006104361232625612 +2020-07-30,0.013949066509401932,0.10124588332400425,-0.010627626392883812,0.00014569825661872512,0.003083227872577648,0.039236708256714325,0.14605974968678598,0.07055261325653404,6.445736384064908e-05,0.0029933805625549058,-0.008295796837272346,0.024378172431522717,-0.003657997377834508,0.00015741791926657866,0.02535234001760102,0.01521904522882329,0.01654397677155684,-0.018894575120354577,0.0003104669336610346,0.013890396955339394,-0.019578743708935885,0.043504180239776445,-0.018148626699650238,0.00023547868622458376,0.000466711926328437,0.007948212019901948,0.02308043159344443,0.022699450354439956,7.519210752294245e-05,0.009175934619462327,0.01950812044057335,0.07681843019940846,-0.08075919226144052,7.451433936179791e-05,0.006819802625165884,-0.0010238052940318991,0.011127460904726072,-0.007375642453283442,3.1551492539513905e-05,0.00660289907747862,-0.004383483783034036,0.004148086160587605,0.0008123297098743139,0.000814922712740294,0.000345719487358651,0.0036875839926159243,0.009681317972977107,-0.044094184342721665,0.00013318929593548264,0.0042177237834158145,0.009508675128537944,0.006347363601641698,0.0018224411016813618,0.0007322358547523414,0.0041920127610366505,-0.0009471199168949831,0.012862361518055311,-0.041528635546426725,2.194355800059754e-05,0.0017614955802674624,-0.004395370264658804,0.010798585795987383,0.0007394916367434608,0.00012091484416663579,0.0430062566564297,-0.00484192652836762,0.024974368638270128,0.0036497678042147394,5.4573963435579377e-05,0.0004436435470757954,0.0007530767654019239,0.0005773099719387235,0.002443466306949362,0.0025442112107929987,0.012095174056703246,-0.00046682813027036245,0.0028318085708150522,-0.006505086205993131,0.0001356579449993571,0.01815101975797902,0.0389756237577373,0.2173601764507712,-0.0011089839161006316,0.0002776651204281888,0.009509371437465788,0.029120847352679197,0.18124816456430676,-0.06996981421237722,4.525758195290584e-05,0.0031743566302240385,-0.04713259908691405,0.2233222220273869,0.028718287682581205,0.0003478373840789493,0.0031677523427473585,-0.056865214756834905,0.841863068904115,0.027997591356678266,2.8030797677029523e-05,0.0035291332796403827,0.010918949740721653,0.10789437258186005,-0.04689016405447759,3.3811448934478444e-05,0.0034360200510117726,0.04648804896266388,0.1251633196607806,0.08003409231748902,0.00011964291959587114,0.016133916448250775,-0.008330750362113034,0.04865752441063525,0.006346288945714543,3.9548178672506025e-05,0.004948586267060804,-0.00984452652787216,0.0294801760574023,-0.04550309424620891,7.40358629939665e-05,0.0037893888757301033,0.00430398040333881,0.015426454008058126,-0.07154524733127948,0.00012757123859985522,0.005075418471722807,0.01421715344739755,0.013655914328753323,-0.012956699065780232,0.0005950691401834613,0.03936362991334249,0.03622570821696319,0.143655274656758,0.056299971728731114,0.00010614054591085076,0.012439959916942873,-0.00023462661415307444,0.0007746919793642642,-0.017132929448883515,0.0019438707664670939,0.01670012963673404,-0.00433979031116327,0.04128240037851976,0.0022487540064769617,2.703248680239451e-05,0.00010690875869108214,0.0674579992727818,0.18389246196371126,0.19689317505650233,0.001199335803968775,0.009811972113084301,-0.025143668559356246,0.18761599664358805,0.0586740814453147,8.924510847189755e-05,0.008973582125928211,-0.011841532614540318,0.021333563658065224,0.0014446675079075309,0.00013100560999935768,0.020232196191411263,0.012020907010367572,0.020277060172709273,-0.0030491482138012235,0.00034027979420157096,0.005394872282767624,0.01671539571976275,0.07193902276692088,-0.004765777525343079,0.0018009533758875339,0.02040143274877542,0.02969234510959976,0.12635327744293248,0.06376666629590642,7.539600917460806e-05,0.010523400001522059,0.005971033365675044,0.008785805025838724,-0.047171430739833556,0.0016894491653170543,0.0059096327804851745,0.0034280350127538603,0.009673550432424571,-0.01342863604859422,0.00014040267601738994,0.014257077218365393,0.0015999200828817875,0.003681211171038214,-0.0177091646708597,0.00017618459591385946,0.01210814809546921,0.040375630564314376,0.1611237501045352,0.009677233569072644,6.116087381254579e-05,0.00495039478592125,-0.03679179830630998,0.11572120305965039,0.027008920538185325,0.003013395488296384,0.017899862878830258,-0.03853091964631972,0.18973348762764405,-0.08718314923708702,0.00010101967235714643,0.0018896843809373884,0.02763244189382249,0.1628451050224926,-0.14721499770244983,0.00012305672175526712,0.01490643091319842,-0.0342925503160364,0.17404224471282,0.0417632279058473,9.31952563526424e-05,0.011423404295387867,-0.014455891558195681,0.06714109665632988,-0.12768517480381464,5.411327839656086e-05,0.005305099764667881,0.0020927536984252744,0.003681179420050112,-0.06942921351101705,0.0002771791296801072,0.00588644383238549,0.007411136943239555,0.02855188487130643,-0.1432127365408587,6.45452712671788e-05,0.006474598374132206,-0.011629047768924566,0.12412259648874555,0.008385874165258381,2.4172668043908635e-05,0.015219444396135977,-0.003834965096599403,0.01136549510470286,2.341121521092691e-05,0.0001179456752019836,0.03259098829311389,-0.002102733591864191,0.010935758665727765,0.0025062202620865634,0.000303084206493081,0.011865539277707452,0.052151148287701524,0.3181013826892308,0.04908473566133726,9.390097776861223e-05,0.02816029374184396,0.004438766332364256 +2020-07-31,-0.02636991857265053,0.1660184099720534,0.037312433799896,0.00016797286221088882,0.011011316959131566,-0.004065277826525198,0.013158976635975343,-0.049862033723321264,7.412737855321196e-05,0.033080902600793625,-0.015381740658866183,0.05252030475115044,-0.029317277071577812,0.00013548008230183475,0.009149907624027861,0.0324002719876118,0.02990835236963944,0.09565344541498427,0.00036561501551382646,0.008095993463145108,0.03284277022669258,0.07905016923238753,0.0607743269684647,0.00021738759115741345,0.007050611940781082,0.0010783771067694385,0.002595836984507779,-0.002341406619365327,9.070682873191746e-05,0.0121636327762089,-0.004734310914549356,0.017450641780791993,0.01303194216869392,7.960406165133092e-05,0.02728997946101967,0.013168345046139436,0.11440521725147125,0.017944564309671163,3.947153192164485e-05,0.016722491329869516,0.028384332749517842,0.024395751807289152,0.06422266444018705,0.0008972413283836002,0.008232018979620483,0.025470982376673064,0.056953788650419425,-0.10592474995787629,0.00015638135161947839,0.007126567855269678,-0.003995399143237549,0.002907314685313985,-0.04378028607124848,0.0006717265102165325,0.001760560828202395,-0.0065951808228325035,0.09792337617804736,-0.006083717832886631,2.0070727665427726e-05,0.0024445951159750407,0.01984806892720403,0.059604820275089294,0.0001154797856491228,9.892086709298291e-05,0.024241315684707034,0.0010920484210356711,0.006743477980028706,-0.0067811383876915056,4.558477020890624e-05,0.008537853999938953,-0.018448505970390022,0.01920532944087023,0.0021395983324017658,0.0018735375958247077,0.0005100226119217845,0.0812283837776872,0.491730641725885,0.07835481929737155,0.000135935424589191,0.007322987398561718,-0.0006324659095459846,0.003534516243650859,-0.006466722336865475,0.0002770865030174441,0.006812031017625059,0.006039862755722198,0.03191387413540067,-0.004055830225373291,5.330997738834529e-05,0.010237546004383508,-0.005719405490924576,0.026857517853864404,0.00011132048000397717,0.00035097147617656454,0.004343755773332001,0.048983128386908534,0.7777057691149183,0.018513444620834162,2.613734252472564e-05,0.008003533970866698,0.026598852892208893,0.28457167713702175,0.10284709215076408,3.12286307956936e-05,0.005386102183367301,-0.08123257013338744,0.2185576224766032,0.26212679333053984,0.00011972559177296664,0.009156504568800404,-0.0007830167435048053,0.005151193139445854,0.0018122554137409077,3.511200189166219e-05,0.004956396551752749,-0.0009028636426259834,0.002879133949707156,-0.005040294001298223,6.952446834609123e-05,0.004090882040146871,-0.013576309339579366,0.05397965511924076,-0.10156835978073413,0.00011500062881550878,0.003440907355232242,0.016371555959239475,0.014562626218934442,-0.07191592505225006,0.0006425779456004352,0.024421871400263095,0.05437533276116929,0.18242856186897813,-0.017218673059731265,0.00012545705895452026,0.004299225079023847,-0.0628641823496508,0.21785841335498218,0.00710542652704679,0.0018520303933680126,0.01633683707633058,0.032662121322829876,0.330445153916957,0.01876010642311372,2.541717012202676e-05,0.007907954531493204,0.05302904119505473,0.15135133526198144,0.08843830654157521,0.001145509744156306,0.005583198015912461,0.010628775188895837,0.08888238767230823,-0.11640020218913051,7.963301370705116e-05,0.005864605267955837,-0.01693649032489402,0.024948397471514127,-0.06793158855639847,0.00016022347627708014,0.0018525993014288705,0.014911663673515565,0.02269615382628085,0.018068704857281043,0.0003771184214512986,0.005856718934490121,0.02043432903769928,0.08245522075598455,-0.0008444812301106707,0.0019208460753909434,0.0029955190378718097,-0.027923991771006785,0.10311948526319216,0.017503935517514207,8.688146497079578e-05,0.0021155164320844104,0.0008670712585478939,0.001255627873931714,-0.09331404474887865,0.0017166076130469892,0.004355833456547996,0.01754350698595454,0.058718492213366454,-0.020610679597155887,0.00011837433588690109,0.012027376542647778,-0.02142441986549022,0.05073754687100992,0.006698486568258044,0.00017117486003039763,0.003931119962802724,-0.012676133349283823,0.04669619333127228,0.004263251294084271,6.625508963445107e-05,0.018248219806886443,-0.003895034015784095,0.01269385146823387,-0.035883881923791994,0.0029082778820717138,0.0027694692865909394,-0.003202151938358252,0.01548050525718502,-0.019898233529894258,0.00010289573513930347,0.00495111582835386,0.007833233825796702,0.04402522060348952,0.004030409759276782,0.00012903286318910654,0.0004472899698472882,0.02487649229582564,0.13052553615606546,0.01878306257372412,9.01451479083482e-05,0.018581701792006747,0.05570012553679675,0.302053523754827,0.09570439752682823,4.634679023740551e-05,0.0015832389918816546,0.01252589242612004,0.025055659642849226,-0.01271143022017632,0.00024374304411040818,0.03896665410437903,0.003957441184022901,0.018539608176238082,0.013378843683609596,5.307967970669383e-05,0.004407310850675603,0.004415517485028748,0.047533069184724004,-0.0490150310892404,2.3967185486393104e-05,0.002875926188189214,-0.0002390197205453561,0.0008886969215326163,-0.06886001638622474,9.401324063777548e-05,0.005552868798998251,-0.012849023969681208,0.05073506238005112,0.020888703105336855,0.0003991994290910874,0.009042331606161046,-0.015165621256418207,0.06098953076639628,-0.047599808756313505,0.00014242187851694045,0.006492557654070024,0.006017933981356864 +2020-08-03,-0.0017443685282856928,0.012671818480707898,-0.04292089607614744,0.0001455746931380769,0.017903617626920613,0.054519261231287405,0.1585225698681536,0.08350949552952099,8.25219315253246e-05,0.011902166064640066,0.0014649206120504617,0.0048949377096924734,-0.05759104263944765,0.00013844080778161873,0.0007789216694581401,0.0495975701716419,0.04612700336841798,0.1514578274176976,0.00036288834093100214,0.006117419075451848,-0.003400437631089997,0.007227227381167731,-0.006188333007740099,0.00024618459154735563,0.0068017973451693185,0.010483570308242714,0.03286837745794848,0.01859489196494834,6.964303453292938e-05,0.005928228667471558,0.009778591910748246,0.040663897831414206,0.0016334228781672505,7.055977248986737e-05,0.004230469191028174,-0.012087601587441179,0.1067003162869648,-0.08942619469787765,3.8848391767778176e-05,0.0017479573720391918,-0.010659483611294927,0.008120898549374544,0.0016500604884563885,0.001012224553469613,0.01127662067811924,-0.024745216215036413,0.050859035699545606,0.04751639453967506,0.00017013161227918432,0.009557035244885843,0.02286527596245182,0.01684705440989333,-0.01435995003124376,0.0006634020772414513,0.006070148753365862,0.005972149473047248,0.08120051003365002,0.0041061767336518775,2.1917686018614786e-05,0.0034894722228935617,0.014705332451948952,0.03926997189963803,0.0006541199180453518,0.0001112411051113035,0.0194672119075489,0.0031223027115172583,0.012969288913127755,-0.0005671269386296007,6.77673744001485e-05,0.002040456821322259,-0.018792204708124493,0.016685715794834997,-0.015107480720531804,0.0021966247125208608,0.009047609818513484,0.0077430680268216895,0.05627873415603612,-0.0288869053968022,0.00011321940338118918,0.009247504066760982,0.02857005882119661,0.172801980436446,-0.017783680493253858,0.0002560180886479919,0.014557954184956649,0.008441768376687211,0.049872741612694255,-0.0038244877840753265,4.767943988910463e-05,0.0010166050109180192,-0.04942236364875831,0.27729686461556413,0.07067276589078926,0.00029374153518790325,0.008046407052657797,-0.01567634412106979,0.20776349625100934,-0.0068529455611642184,3.13116370813607e-05,0.05240194984214245,0.002112002652152121,0.02178773468827377,-0.03266729520965982,3.238650549300453e-05,0.007539058767979867,-0.027795276216826932,0.07926554276240899,0.00992468741992917,0.00011295600196029977,0.009164835746312952,-0.0002759625839716109,0.0017763939304405586,-0.06446232924405546,3.588420245711203e-05,0.0042088373137092365,0.006700110431916868,0.01804956290756879,0.003418853099737104,8.229863910579941e-05,0.0031915958697591577,0.005427881575069996,0.019724154463581205,-0.03228686244800801,0.0001258289476284415,0.003101477772133753,-0.021924396304578115,0.021535540151733628,0.009588595798345464,0.0005818987657070817,0.006513696394883241,-0.027578181392313283,0.10167261019309258,0.04975421428182016,0.0001141688587313474,0.014092792530088761,-0.01251367439948795,0.04284592369497113,-0.004005325689473757,0.0018745391506711305,0.01964201325859459,-0.05350873065143974,0.5849284297231109,0.04069287758835594,2.352361775245978e-05,0.01662231906995981,0.006767979707354633,0.020021524589410172,-0.011023776408940152,0.001105180396312928,0.010311955261188324,-0.02669182971524509,0.21684061766961688,0.05645042806342754,8.197158885214519e-05,0.003412317463060686,0.02203081812411725,0.030787490977373443,0.043584103341259235,0.00016888913597209649,0.012853187318471647,0.030980867564163662,0.041404506663488425,-0.0036744513001812293,0.00042948685346690606,0.015813455333481784,-0.004792791897467662,0.018917878174690327,-0.016580944945582116,0.001963660884147971,0.01702186317310105,-0.004359364695050285,0.014421925927302083,-0.01634023811515966,9.698181607914947e-05,0.005913896919946577,0.09344151471410811,0.14285220858753767,0.054888418958371134,0.0016260357974365502,0.0007753831433725008,-0.04110405283135116,0.13357089632025276,-0.049420764039458165,0.00012192389867247954,0.018893615941481253,0.023292817682832742,0.05421672481948291,-0.012947625422994127,0.00017416028421626296,0.009383204708688217,0.043213955183147024,0.19197867865123225,0.028280586610787143,5.493953053903598e-05,0.004865043049648009,-0.07270650063565248,0.1988346374940671,0.0719706926746634,0.0034657661738702627,0.020613001242555336,0.03398408870315189,0.16698640000337536,0.03135439112560588,0.00010123602801448584,0.013152528529131716,-0.005301190709670834,0.024529968020566898,-0.051495368367925315,0.0001567246218281447,0.00048319878677636065,0.018269161573866176,0.10852189308755167,0.012405285602201607,7.962509332521089e-05,0.022528781862925465,0.035647236721539834,0.17016255742138747,0.01991557812340775,5.265131967072957e-05,0.023665984245021303,-0.061888015221322513,0.11766904063310589,0.04207986390116116,0.00025643289557543045,0.013090141815348545,-0.021810080780210673,0.0819812560961442,-0.012035107374205366,6.615414819741482e-05,0.005975106447075317,0.0281547599660682,0.3119578374767656,0.030039449645274142,2.328558823583625e-05,0.018293746491754987,0.003691097206398915,0.012853452166405155,-0.019462614056755752,0.00010037941527290975,0.004473272335241551,0.0037082597406503403,0.01452016061787218,-0.0050942409433288975,0.0004025563638917563,0.005231418817462621,-0.05413293765062105,0.23702507125429148,0.13993930391751463,0.00013080944586973898,0.000599834804720066,-8.136834852438504e-05 +2020-08-04,0.02207449297066427,0.1628150045805308,0.014453928825023528,0.0001433781245062286,0.00428942055054932,-0.0027071522731933967,0.0089814915742834,-0.02099448339802863,7.23227188989292e-05,0.0027644327752573156,0.03194000514226917,0.11799266444641894,-0.04556981654969384,0.00012522100296780708,0.006161834608691174,0.008633260239982761,0.008241726463314164,0.0006186032799029717,0.0003535285501876728,0.01917309458639488,0.06115642956999238,0.14771914911582448,0.10751882840893819,0.00021662226746901685,0.012897967435198993,-0.031025727389528343,0.08778661818187612,-0.05100386505439615,7.71685594451126e-05,0.00651103438604043,0.030513989865559272,0.11672611419797561,-0.026491523044773112,7.670449671449984e-05,0.024826837735791352,0.014660832523508261,0.12702237460917387,0.014807234449294633,3.958011209024034e-05,0.0020603983132619127,-0.0027179088876847536,0.0026834239040425018,-0.0034609240842746925,0.0007810707893459352,0.010371366477437957,0.01827880698389318,0.04828969241756264,0.0032502258622643322,0.00013235955371202076,0.00579725148672126,-0.008640795868071628,0.008407907882451727,0.006577293850127326,0.0005023312064165607,0.0019541964240275167,-0.0036448816885695998,0.05207043034960033,-0.06695741410448165,2.0860036223665696e-05,0.004665324356293755,0.049209382261462056,0.1483553434906484,-0.008029098846852536,9.853618815001871e-05,0.041055049908886566,-0.01835278330405632,0.11307336070438988,0.04579136897305628,4.568813757765618e-05,0.003913802083245293,-0.03078535668479542,0.02498812038290076,0.01471766534911105,0.0024028882448144176,0.032234796566418866,0.043311164782447585,0.32207212061414114,0.011691074689349393,0.00011066208243334667,0.013752107629613371,-0.012387207427235206,0.06926120655631499,0.00014763501665665437,0.000276943763115,0.019521131696874146,-0.01566483876478341,0.10816898214145755,-0.018704142044734022,4.0792858793524804e-05,0.018409701851839644,0.019989174672900897,0.11487142056131648,-0.04668773370424877,0.0002867937473583507,0.009592957296556962,0.028295799656316654,0.3486153061514383,0.0063611259410328354,3.3682611181253225e-05,0.023025868478742398,-0.01021090602335662,0.11137677224837676,-0.02511931258436922,3.063030776878321e-05,0.00042082866251220725,-0.021739928114671063,0.059057480871833844,-0.03604479052036711,0.0001185784970720812,0.00849172086692096,0.021156378511701344,0.1486117841135823,-0.00923367889551437,3.288368327182982e-05,0.014530888218303539,-0.018944940046907797,0.04589088316220157,-0.03593628812255199,9.15259408292835e-05,0.005417114382712095,0.0052573697776480445,0.02039805596285787,-0.009925235841656234,0.00011784966189512416,0.001653592817348862,0.07964449983946122,0.07945353613546058,0.07075098353945121,0.0005729518421565259,0.020774994837403433,-0.001793938792614975,0.005979331172416037,-0.0030974817003555756,0.0001262818752267759,0.0007015081372010645,-0.034744559040459665,0.13182239898953768,-0.017497482986074595,0.0016916743639754392,0.044097482688026,0.02219494403692884,0.2029778184369241,0.03180781217156226,2.811820993476057e-05,0.0002904106324598493,0.030256780824756222,0.0987810453405224,0.0223322026734033,0.0010014294785710505,0.00594968439162247,-0.0006612066462902333,0.004729139362488018,-0.11174487933358845,9.310665863920348e-05,0.009317383146399448,0.00615718955643217,0.009790838973315204,0.006675622731434926,0.00014842532290476544,0.0037101056747340204,-0.007962884928105277,0.01160867138898169,0.007662696038519627,0.0003937239522388487,0.002431173305974253,-0.010472785142823475,0.03825232959762901,0.013567978670017017,0.0021220452757380725,0.007964829223422048,0.0035892471222974238,0.014711909027308076,0.004652515535016822,7.82752927462677e-05,0.003669608045442483,-0.02981529614139921,0.04418550831872953,0.010483676258603724,0.0016773993237145903,0.0024456939520015484,-0.03170556531820353,0.09399374286237655,-0.19353959759326425,0.0001336449626561463,0.0049225259367302555,-0.04149907523686146,0.10406576365338206,0.0560476141290447,0.0001616556617054928,0.008479626613040213,0.002129499523246872,0.010234945516094291,-0.005472800997378907,5.078154817942533e-05,0.006740451678556032,-0.024256061825568276,0.07029248175310325,0.0029785382259116385,0.0032706153601125727,0.03315782623459221,-0.0036531643037957962,0.018212984321093046,0.0007042719616882287,9.977659117102162e-05,9.86949391302758e-06,0.025643649112715782,0.1501177886159018,0.05333852432092865,0.00012388206952875294,0.015294968184390603,0.001956445788488717,0.009951593706769058,-0.0218111047620354,9.29873519816334e-05,0.02163894416369629,0.002243107731569286,0.011927242032845788,-0.021543733641462958,4.726694080578846e-05,0.020166047418557213,0.06009181325547845,0.11546313490195104,-0.010168111610227203,0.00025374725820720943,0.024786994128450392,0.01622794935885329,0.06365094742509972,0.11074373987468415,6.339764815414323e-05,0.000246296549143371,-0.02942776040954423,0.3264013939723591,0.05391088286405891,2.3261434424427336e-05,0.021275532735823954,-0.020033184342238813,0.06279815099609895,0.013946878641659218,0.00011150955820509123,0.016567573313751156,-0.0019387804288391365,0.007735128199657386,-0.0019825405556668017,0.0003950836724202849,0.005039459745579019,-0.028760017409864294,0.15504394093480994,0.02242881851068781,0.00010624442288177809,3.9575823445514927e-05,0.003033405857691861 +2020-08-05,0.02035275045517974,0.16802933871668077,-0.02887775963984498,0.00012809275705265988,0.0012708243717901118,-0.0009965029120120553,0.0034979387894854283,-0.016051789458596154,6.835603968637588e-05,0.005915653175829546,-0.02428620716901555,0.06720557525023432,0.01993877166296677,0.0001671674035556495,0.010908280400511838,-0.023819628956108455,0.02433339139659887,0.021021779106421546,0.0003303696982773597,0.009981074581714197,0.009029566762524218,0.02267075413395082,-0.02754648533251752,0.00020840048182085461,0.011842478057875075,-0.008261766566372293,0.02230752321773121,-0.0061424223421457985,8.086643657582017e-05,0.002994858737429799,-0.0017405589282940479,0.006399921593748375,-0.02644651239373047,7.980019141936869e-05,0.0003030628164937181,-0.006854486075881456,0.05250475406468271,-0.044891297139346614,4.476874133811991e-05,0.015527228962137969,0.0012068128702203717,0.0010102001794053074,-0.0048480337218671475,0.0009212495281860267,0.0063147090330850355,0.02927186788899019,0.08763704268201986,-0.004821452168314742,0.00011679509626473884,0.0057329410511273195,-0.026848219529298827,0.018646905133417723,0.07534273874291497,0.0007037737873833861,0.0009700250122867337,-0.018790099589500533,0.25249140562838196,0.038350513572597514,2.217712637402679e-05,0.00048401579823142754,-0.020354612375286303,0.05173619828281412,-0.05511566875202747,0.0001168743912226998,0.0071230617246805725,0.014709078097246817,0.0779066764293802,0.032021418582166054,5.314624617137311e-05,0.014193613794388306,-0.0006252030040802075,0.0005264126029339152,-0.027835153323542625,0.0023164223706678487,0.012604632966228421,0.032234185105000375,0.23390559888659823,0.0008290765290950489,0.0001134039510509592,0.00019817006618605415,0.0745863728665494,0.43840622410934954,0.05404799986275696,0.00026344563585488704,0.028234750214225272,-0.006432487046118782,0.04236594883391488,-0.028031255806735846,4.276839366324266e-05,0.003227117738660786,-0.013922950092306683,0.07011365882191878,-0.018884089349244883,0.0003272769678332611,0.009181987724817209,0.03868605304872175,0.5835903252299847,-0.006195480970335308,2.7509111951875854e-05,0.002161700698140996,0.016320764073129768,0.16076316892082218,0.02733396659983707,3.391842187506113e-05,0.011185302243819849,-0.02692029821713959,0.07464978696435455,-0.008524995619451619,0.00011616466644688686,0.0031446642174801503,0.04527396945285432,0.34701735171145515,-0.07634048756657241,3.013628806068267e-05,0.03157712897000084,-0.006337844636069799,0.018247289640443306,-0.0030910020138385243,7.700529792525051e-05,0.001131893164309796,-0.006426336555265091,0.02486650407517426,0.017340645502654677,0.00011816730446262354,0.010054484817010753,0.0403796830655572,0.03715542431200759,-0.012969452987556434,0.0006211782516032156,0.0046998170380083415,-0.020407344274140458,0.07618206546761616,-0.005902075033245816,0.00011275083245655824,0.015250411113221136,-0.06873153824996227,0.20841211382466318,0.026462345920349684,0.0021166657378736665,0.029444418102031536,-0.004268634641386787,0.042554316904291616,-0.00584444092228186,2.5794526274777945e-05,0.012744516754213404,-0.004175610364066478,0.013674258559247143,0.0015298506744410919,0.000998360636249184,0.010771451639526234,0.03257518317326544,0.2577290927296338,0.05267444588023067,8.416839869129783e-05,0.01626315148258489,-0.014259471444348318,0.023153002120021565,-0.014991197389827826,0.00014535885808543758,0.015350091150370705,0.03073779693001936,0.03877378982404897,0.05039574676995049,0.0004550282906446127,0.011040810868512729,-0.005749368237595413,0.021132681501610424,0.012082485912498778,0.0021087051508515042,0.002949304485495812,-0.029981602287585608,0.14525059632475898,0.03241162495444278,6.62258109760912e-05,0.006143042734294363,-0.037904078208073844,0.05120183784376285,0.00748515299538652,0.0018402531992006115,0.014376254926382262,0.031363461057243296,0.0819126119818544,0.020098550710064462,0.00015170127966115482,0.010298270351402655,0.04202453383754598,0.10404699316848749,-0.016690408892298142,0.0001637320677937305,0.005534757619744723,-0.0016779964771967432,0.006947555259616253,-0.034103254999270555,5.894852734473287e-05,0.003848176476104229,0.05292511688324842,0.18886868733057377,-0.0345314959074524,0.0026559501649039475,0.019817086616373325,0.012466230363343262,0.06386807373283412,-0.052821048608079096,9.709388989284378e-05,0.008570032427803008,0.001353408344210666,0.008134691313364955,-0.0015157357459716853,0.0001206558981063094,0.004003477138332892,-0.024098996225533922,0.11175645727895701,0.02018363676197701,0.00010199409443074431,0.0009770296636558763,-0.04348020278431392,0.23073255559080127,0.09144694125966964,4.7362005014803654e-05,0.003860031221776015,-0.010137406361692554,0.022449381678604146,-0.014590547945061063,0.00022016681813117497,0.009739746287063327,0.00888902332229446,0.0432428531711375,0.03608877538932726,5.11156726838071e-05,0.0011570879455250708,0.012263082087767316,0.16271920727672637,0.0030185896575587088,1.9444290507951312e-05,0.01090321201518768,-0.0029556143753603054,0.010226736027754047,-0.03595183382817331,0.00010102286679880478,0.003267988692091239,-0.002221794612486015,0.00969594851117276,-0.041897983461769775,0.000361194875169145,0.005131051634045287,0.008252353201407528,0.03803671842389956,0.00022917502172389045,0.00012426435270788218,0.004281953387842791,0.001996835453296287 +2020-08-06,0.0051936409328400416,0.0299928112868467,-0.1468695590718077,0.00018312234028017654,0.008395490725438036,0.018506762110937797,0.06095966359056723,-0.022181037813152123,7.284477520462217e-05,0.02369540750325135,0.03152673778369065,0.10350087004800024,0.013397966866895367,0.00014090689291967252,0.017869980735142697,0.007920551839219329,0.007831421200062944,-0.029555880655821164,0.0003413364871314924,0.0017907225555531337,-0.029760290577445486,0.062728999526293,-0.0034444370794141535,0.00024823703691846145,0.0003080212948424852,0.012945194284820709,0.03322883227025939,0.04357550368352816,8.506290946443801e-05,0.0009954181529224573,-0.014327510998718426,0.05156827723047141,0.018000502466300805,8.152259260715272e-05,0.011705191307209692,-0.036716346912544086,0.2826495263696064,0.05944583816781969,4.454611327092966e-05,0.002390571682368483,-0.0162750573359646,0.013128710298419107,-7.45681975971737e-06,0.0009559721684344064,0.013535432966613602,0.028868283319851938,0.0606482956497108,0.008757859021869001,0.00016644250544037823,0.00020403046144410624,-0.015610101362835718,0.011505020984293072,0.016435955295646426,0.0006631971729447249,0.005360401321168013,-0.0068882295348851146,0.08512145594493009,-0.09006571178103576,2.4115227129150938e-05,0.003462419528207081,-0.02065138291863515,0.055363652113729185,-0.027102164159464922,0.00011080910479424815,0.008249409935748957,0.003984641773698873,0.02240209952717261,-0.014455469655036026,5.006824625736144e-05,0.0013798767109054256,-0.006256997857214917,0.0052913503392689664,-0.07729383690297673,0.0023063353826664685,0.006002936028735313,0.04250874857887285,0.301306870468935,-0.057372481636541676,0.00011609710572247714,0.004996507473516561,-0.022562214812048464,0.11924776385448217,-0.09027738837667482,0.0002929811759645044,0.0036607540601694445,-0.0063013869996595105,0.029779994197889507,-0.007550020884506941,5.960360114165961e-05,0.004302349481535971,-0.01836543815906906,0.10789578986813009,-0.0035032982758240335,0.0002805327718658078,0.004370135270522539,0.037796751712993584,0.5318002356009194,0.008011408636834123,2.9494170306894248e-05,0.004496587854963369,0.014500106144521917,0.13316992016493803,-0.011994242777823776,3.637866445648872e-05,0.0014749310864365242,-0.031914408874518706,0.09413624590796064,-0.027938663268878953,0.00010920755541128886,0.014791410402960156,-0.0069805735954047024,0.04968171968663848,0.01183158892944449,3.245539253609969e-05,0.009456861898174112,-0.0014671961732306503,0.004321850802713648,-0.0037357585012186877,7.526547341112496e-05,0.0026605208844300756,-0.004930478819638289,0.0206790461697608,0.009127180109607565,0.00010902025417994449,0.009292651904328727,0.030881434333052956,0.02895795287461497,-0.06259430472997939,0.0006095441505373026,0.004437707046031794,0.036508815031919176,0.11331641534816157,0.041791203820775134,0.00013560975106516996,0.01461248433031901,0.04512903310498133,0.16962554324542653,-0.06770253041484667,0.0017075913727390142,0.0009666403802022243,-0.046941140262476595,0.37921945996796685,-0.005310159816849899,3.183062856819765e-05,0.01216540889533056,-0.0324108215472578,0.10034706098115423,0.035451492745023364,0.0010559823327863037,0.012347461295134938,-0.005644917560985143,0.04475194409451169,-0.06910407192776914,8.399846321934082e-05,0.006305934013083665,-0.014831932995172497,0.02197422830329519,0.0013738089876401828,0.00015930503735645804,0.015477877819057937,-0.006413394607206933,0.010027958201523766,-0.003415510508952557,0.0003670957537745701,0.009955683205120731,0.014303530904231906,0.058565252678455956,-0.022756603073058844,0.0018930129215475684,0.0030837529418900065,0.038267495718080025,0.19028846714663372,0.13720666459142952,6.452201844459723e-05,0.012570288113228346,0.019999566082969336,0.025727571092978827,0.0010864867782168456,0.00193240867302844,0.004328941239247969,0.002028651715281999,0.006001786398536859,-0.0010862513072947483,0.00013391924556227253,6.27137744622806e-05,0.002062917318823684,0.005280019613707474,-0.07209103104708436,0.00015838230611735736,0.0013992858208566952,-0.04703433040389108,0.184213173636331,0.05763389287086816,6.23172393694191e-05,0.0016561746638669868,0.02242884794779866,0.07134125028529638,0.004877874212150957,0.002979780737812393,0.003722353748911082,0.006587703081403763,0.0403854971691036,-0.001607707575936405,8.114264375755203e-05,0.007733366888290297,-0.015240505537954101,0.07435757893401099,-0.07971398651568444,0.00014863973305228453,0.0022195956522293838,-0.0002741497883518539,0.001570072109436497,-0.02291646623692285,8.25880124841142e-05,0.008771332066998344,0.03918510574830904,0.1754401543171178,0.015726406363852682,5.613573551709177e-05,0.022350425153013897,-0.03848597067225786,0.07165735827227446,0.0131893742144671,0.0002618611345993141,0.014702108446492728,-0.005249458976108535,0.019462468118273717,-0.01790936761200663,6.707041720578464e-05,0.0026893084648884655,0.011211896651431248,0.12707960115588912,0.001340596187001794,2.2763263634954147e-05,0.006305521984290802,-0.010790163019602648,0.02930692060942895,0.002371687174091069,0.00012869651384737977,0.003870575782910819,0.0011356370968106618,0.005245710913885779,-0.016558428393440402,0.00034124255761727707,0.0031111430300515153,-0.0612605181733866,0.2946332808061165,0.09829059122615058,0.00011908872900782188,0.021997940466767292,-0.0012184353897946758 +2020-08-07,0.020825930659030652,0.13194893838677138,0.0012712582205751317,0.0001669110547569733,0.009385557535249282,-0.07696716934729692,0.2904906397612304,0.14044366484291554,6.357463832643405e-05,0.01710875080428132,0.002406935347846541,0.007204811954144288,-0.005220563035077804,0.00015453931370402582,0.005440136094238613,0.028409507619448552,0.02952160142748154,0.0270361639239374,0.0003247817747024928,0.007298222105137246,-0.004613296860305216,0.009472680747161623,0.004012170453409906,0.0002548216206128226,0.013093313273146225,-0.012254202832519172,0.030869769887956543,-0.09303803351435655,8.667591044979747e-05,0.0012870591160523625,-0.022682165532603698,0.07644501058963722,0.019269452777217054,8.706131560655017e-05,0.03604242663228936,0.02189685941736803,0.1867977565342383,-0.007518058014792871,4.0198401964477115e-05,0.011584736434059125,-0.028045843167945655,0.01905166452887184,0.05233658678359612,0.001135220858235431,0.007580099428885406,0.04671109275565016,0.10141069831720635,0.059047200549961,0.0001610638738430827,0.0021522790564207817,0.010925416698646807,0.008447492184794682,0.01106822373329674,0.0006321710005666869,0.015197041173712518,-0.013833150984365584,0.19201291919005914,0.004691822163303522,2.146908108647098e-05,0.002012948954132383,-0.0028152701395715777,0.008271141080808847,-0.1253669572229689,0.00010111269434786702,0.005358513700232002,0.00040624507606972735,0.0022638552033552536,-0.004038971581915211,5.051278137090375e-05,0.01381498191553387,-0.006490179424410159,0.006475956558980773,-0.004018003644837638,0.001954680358557029,0.005317832541328738,0.03885802989865989,0.237179227291033,0.005063597036396498,0.00013482059393474257,3.0897709867282034e-05,-0.023176935251138363,0.12382943838622354,-0.052782829775788784,0.0002898279974952785,0.015577634439105079,0.011976487559503774,0.07779374137924897,-0.04367382027238622,4.3365640473213265e-05,0.015679807463177355,-0.06064926370411033,0.3444061143063728,0.06326771617947052,0.0002902294556573141,0.0034936503468052807,-0.007309185837870364,0.09696214747403006,-0.04528604061031775,3.128217994157212e-05,0.014603544415640239,0.009666590803933289,0.10019572180539595,-0.0160193067883504,3.223338130416182e-05,0.0012431999512886194,0.003760802296015531,0.01147072527326356,0.00434314170040136,0.00010561178446136276,0.014550392872533832,-0.012358552754592831,0.09745408958069916,0.008804963302879295,2.929273503368807e-05,0.013215629370438702,0.004071262765836563,0.011947179649370648,-0.045000581052463705,7.555115732514242e-05,0.010375742443196799,0.010598536841233514,0.04306775458462312,-0.056210016437363425,0.00011252325321408005,0.007412079691458429,-0.008362362752373688,0.00869164219298117,-0.021674690465785403,0.0005499240646931201,0.0008881873875913743,-0.02069431762608303,0.07305449498775768,0.028751754757327025,0.00011923127187553085,0.026350495274999424,0.015901732977736283,0.047405755228484565,-0.03626092534539804,0.0021529431464955948,0.022727537110069182,0.02450568696368051,0.21798798309936393,-0.003741126693481164,2.8907898664786137e-05,0.008214025757122519,-0.013731169624088001,0.04406312445197182,0.006220805595124003,0.0010188341952005612,0.008111518554905595,-0.01987716582847004,0.12720161677927128,0.045447935094823595,0.00010406087485604675,0.00857077662508092,0.009640911050224212,0.015545628416175735,-0.07646700563145477,0.00014637104707255127,0.008899206543378875,-0.03253467486267363,0.04829685938027088,0.07554690455431894,0.00038666200101221437,0.02270267987549088,0.014753560037039338,0.050648020364737104,-0.011079028928060643,0.0022577959742206815,0.01674135388422402,0.005741284791343314,0.022647687098375256,-0.008322261534922869,8.133465042925755e-05,0.0030680177559214527,0.030871481468383605,0.041800091646498,-0.07175423706569219,0.0018359355394607388,0.016890682932206205,-0.01487934836759151,0.04577445483795272,-0.0028730242875097773,0.00012878840593256703,0.02414601304369969,-0.010604345812881846,0.02333223785417188,-0.04242552515539682,0.00018424167057929985,0.006636503205192316,0.016581157433198733,0.07029918043689108,-0.0006896894330863061,5.756765061665009e-05,0.013012932981898807,0.04425034918226096,0.15291807395301427,-0.04992396944972922,0.002742685059331948,0.016533774656774535,-0.05031863679783319,0.28672660089300206,0.04509073160467158,8.72974285890904e-05,0.019105835241043756,-0.017698352747574746,0.09974648639306198,0.0025453466564169906,0.0001286755474913777,0.01647939076413771,-0.026229854268193815,0.13229274650120262,0.01023196096461526,9.377963618323493e-05,0.0025778928984823805,-0.042375174949027095,0.17922469171815644,0.06798278726216911,5.942388712093329e-05,0.01992512816592992,0.049922863302601594,0.08253707588061811,0.04214219134113096,0.0002949034148863075,0.007051452728142914,-0.019316073142204612,0.08714687650185626,0.03682046485403925,5.511646954152877e-05,0.0005984795797856534,-0.0026155081904221298,0.0285240804956673,-0.0229404608259993,2.365787410929977e-05,0.010732073696752512,-0.007928119886980316,0.025582225537244933,-0.16706594036221695,0.00010832803114140942,0.008774886630636823,-0.00231486915504063,0.009122307530470624,-0.24116354758550276,0.00039999053064372256,0.00473838044331927,0.029608535931464335,0.15112456521810372,0.017910018835233785,0.0001122157107957846,0.008195676958075597,-0.0024559596162045416 +2020-08-10,0.011660690039628219,0.07429333665240904,-0.06335386447907249,0.00016598199162267337,0.0012199516457683144,0.0059452557314068144,0.017570291333272266,0.002328646438477398,8.1189918273792e-05,0.039340734862545676,0.06797100608180949,0.22593827028246727,-0.01618454233366076,0.00013916534581823008,0.009593577299088546,-0.0030488179984294135,0.0035734156298844314,-0.0003979464423235363,0.0002879491648373845,0.02087997722795157,0.03276042787145921,0.06952690217141401,0.03333782323674164,0.0002465440115217179,0.011279893759239127,-0.014200887088021377,0.032919562540362594,-0.010703586387791297,9.419072913613767e-05,0.005466220090500877,-0.008173487169353042,0.03800952433141256,0.007997448065614816,6.309643264489813e-05,0.02533162709668783,-0.0008832531687881512,0.00893002584788342,-0.018922182346455884,3.3918067703583194e-05,0.01228709669989097,-0.04133991213279218,0.03643838204477358,0.07846423114137246,0.0008748936226948938,0.005105177827048985,-0.016154752741453723,0.03675744764431732,0.03309409003518187,0.00015367982394687497,0.002096548842908611,-0.006383810803412561,0.005084413136795159,-0.07766406689683353,0.0006137104714014569,0.0021113016556075907,0.023596109992174538,0.2625905293735526,0.15426983752447568,2.6778370289371018e-05,0.0015230445341063033,-0.0063455709903090535,0.02022419291031173,-0.13269979138723345,9.320743266021322e-05,0.017357089918774365,0.006045660491372344,0.03205459833824089,0.004376905072681409,5.309030663330444e-05,0.0011568311124915758,-0.0032598888097923532,0.00290490455123147,-0.08089175292441321,0.002188738578011419,0.014263812699469306,-0.10569945114357053,0.6241841222524784,0.17182191082365025,0.00013935165241819498,0.03358857710477335,0.010019329935898049,0.04864456661809636,-0.1720853443201754,0.00031894263029778284,0.009812348624676188,-0.0525511177904339,0.3056076869174638,-0.008093271393905196,4.8437156537529105e-05,0.0033492343156716828,0.01023189083551204,0.06726166650004206,0.007802364159503025,0.0002507119773102887,0.00939156660328562,-0.031935344197091715,0.37998194080284786,0.013621256174430735,3.487698029357306e-05,0.00043394928354327294,0.004742578620170089,0.054751535910618813,-0.00017837328805292977,2.894009427526495e-05,0.012557036945382473,0.03373586781917496,0.10263106738714851,0.04276558963416319,0.00010588533049944166,0.00862841882286828,0.009729183861931955,0.07913572873339708,-0.07493831728390717,2.8398550972557995e-05,0.007724103198387833,0.005922253469454282,0.017000876804709533,0.0034995439286322613,7.723124804756802e-05,0.011158552848423854,0.012357740846957345,0.04765236874250276,0.05989826178008941,0.00011857774450163286,0.00495868681866518,-0.02136070133630578,0.02376896976329376,0.02616941074182125,0.0005136658706675444,0.021638083742896108,-0.0062216371671116695,0.02482428637808046,-0.015263542725169785,0.00010549063746619899,0.021234446055910395,-0.020763675164867587,0.06297551513500373,-0.04692963894461971,0.0021161754510634627,0.012981050814847036,0.009093744297528029,0.08282823248564843,0.0029410179791157028,2.823231817269104e-05,0.02669336617494416,-0.027329190697047315,0.08551244365617132,0.019854477586688714,0.0010448855507538125,0.017086756780891894,0.005655755332574428,0.0406959432369273,-0.006087682449591406,9.254759513785753e-05,0.0021063627059430185,-0.01314944960848613,0.019717023989313215,0.004052780026758746,0.00015740248935876053,0.014604152219194685,-0.011892832432906222,0.017148438520639294,0.008700278034076378,0.00039807475167255845,0.002667872257889996,-0.00130533021412786,0.004591948055956269,-0.06709489041483171,0.0022033006628301064,0.01213241786014728,-0.008657125165074485,0.029230888462207498,-0.021909721665877353,9.502153705783188e-05,0.003926668921664255,-0.027358443176315073,0.03355642073799748,0.0415883698197693,0.002026716210261809,0.00012385635229611837,-0.015126678349799062,0.04812066523633247,0.0028907942224061897,0.00012454548443411917,0.006653665901252461,0.04783813395012582,0.11925879024933331,0.0072911088901915395,0.00016260886071873415,0.008455937692167882,-0.0026735115180482184,0.009379740940162999,-0.049611235910879604,6.956729882088681e-05,0.016773286969948363,-0.01536819781796038,0.05424187420976287,0.0031173645207815985,0.002685383479590157,0.02270787139670646,-0.004470595423566823,0.024439508690446757,-0.004166507113512703,9.099414924992666e-05,0.015024354716859239,0.021752248042733,0.128192827092902,0.045314256702557655,0.0001230555500349715,0.013934753249928187,-0.01113952885948405,0.06505145774402409,-0.012021855142892673,8.099505199571998e-05,0.015030717666422702,0.0027760053851811936,0.012744959024691678,-0.055475652045069455,5.474308343291746e-05,0.008387032856542503,0.03007872674343079,0.06965607226813132,0.010440427894254157,0.00021053769326370508,0.009937114248650713,-0.0117223111654365,0.04355060218725252,-0.0026071960399954193,6.693194674003939e-05,0.0049948022416233286,0.0067841439270397985,0.07286241727076875,-0.0005085506588559068,2.4022752297950394e-05,0.010058285366252737,-0.0060640606076016595,0.019791665631765182,0.00033371607060593626,0.00010710016812065894,0.005209479388050762,-0.010406468148256156,0.0388068717037748,-0.040069052912138685,0.0004226907026636525,0.012078616070962174,-0.03517028625517902,0.16874980680870538,0.013852837703036185,0.0001193725344862973,0.005223621803773191,-0.0036514548472145964 +2020-08-11,0.028098133842003794,0.17551388016954272,0.0282928216529385,0.000169298298489768,0.004542191346086152,-0.001371306555590299,0.004534046530929559,-0.030247365174007106,7.257033133916421e-05,0.02759317887806689,0.008807888039383286,0.029116100148845917,-0.009381181834607196,0.00013993803957343482,0.005233154707792665,0.018654658177050795,0.021432509692976078,0.00837727102494375,0.00029375287313949624,0.004382610657957082,0.0021793601249116127,0.005017155044049421,-0.002023908199931812,0.00022728420235183097,0.02110602927499221,-0.0016664737551341702,0.004448628862916143,-0.0014649873169678886,8.179354721346365e-05,0.007381374263768716,0.048795995257369586,0.18214304818992946,0.01745576198196897,7.8607038625905e-05,0.019895189637446593,-0.007392768837194348,0.07257332229436597,-0.009698689465052169,3.493242507097387e-05,0.00022130109520518708,0.05018413815086405,0.04216327098457498,0.13359304346997405,0.0009178610930751593,0.0281610346630757,-0.013211719346631113,0.037401155838609514,-0.0024742273509534983,0.00012351969258640952,0.0031121216673674255,0.0018980476701847741,0.0013750673661287354,-0.0011537045959025877,0.0006746950108118953,0.004178960405945143,0.0011236389386418031,0.015651106301745925,-0.02085228522927957,2.1394617632184714e-05,0.0004503242946882664,0.02798342302676152,0.07931693550675205,0.019815778042718186,0.00010480595247769254,0.0021948171180453243,-0.008433066274000986,0.04437483894815732,-0.02085122739903568,5.349467358276587e-05,0.00760732590525721,0.005486937228966318,0.004836887853113301,0.011957246602333193,0.0022125186814980825,0.025515748703951,-0.02040699920911355,0.13858696355015834,0.016679786610608163,0.00012117384141372315,0.019872639356710426,0.04218188759646073,0.2293218982851035,0.0017287439553267097,0.00028483195704879496,0.010977044737824149,0.0035651419678917836,0.01947013704619526,0.0029751654344233156,5.157850811027882e-05,0.012323940868740262,0.07584548372938966,0.41706575594599327,0.13993724881267697,0.00029971743024211707,0.016678732269577824,0.021459095651396944,0.271202848802784,0.0003928307575193823,3.2835784720537445e-05,0.021091441186893108,0.0039028972912065313,0.0407970718043846,-0.01605747484504959,3.196243359316936e-05,0.00040285172281186296,-0.010027681095420213,0.031199326360490446,-0.001216785046388089,0.00010353282220888629,0.011203709722456942,-0.04013242246505626,0.27975431498155845,0.05335550993146701,3.313682983021727e-05,0.008995808639041106,-0.02404866397059792,0.08980617899610722,0.04911926046689839,5.936932586823761e-05,0.0002055932538937576,-0.0036082292344745527,0.01627071798175294,-0.02491447227116726,0.00010139954329886114,0.0038163563058246017,-0.05815360992450133,0.05277619064564258,0.07643358285529664,0.0006298167412716178,0.012579764266004621,0.006355992667676068,0.021271050523579086,-0.006131716383748861,0.00012577098363001366,0.004410812194266502,0.037428702180403776,0.1331369863021902,-0.04797875661887899,0.0018043684351869234,0.0033093339761817104,-0.015715755132138895,0.14352116285249383,-0.11737063898882048,2.8157980524554828e-05,0.00465493745735787,-0.012923772244932977,0.03988314618330481,0.003160231229649329,0.0010594272887472027,0.02201429215041478,0.015456685206792761,0.11507299791091417,0.005441093715280811,8.944757639806801e-05,3.6282276217934704e-06,-0.001813180598636893,0.0028921767646983686,0.00029515434934127997,0.00014796589211347867,0.008112887251874864,0.008594267552614235,0.01170156517276865,-0.004795503738564275,0.00042156915550773413,0.004125943750977428,-0.01264564258099628,0.05548650187356573,0.034095469407771244,0.001766460367847006,0.0013492572260040705,0.030209729483465664,0.1287934645358124,0.06810811023199277,7.525638987008149e-05,0.018329642003897483,0.012896961234674507,0.0204714516388222,-0.025936290538922945,0.0015660872235032347,0.008294137461628449,-0.013561008754806425,0.05179703150608013,0.0015034633886958201,0.00010372970955297929,0.008744866039157067,-0.018858949039561153,0.05152259109821523,-0.049757944152347015,0.00014838164014270062,0.0038687230881036573,0.027915915161609805,0.12531333652659118,-0.08362929748706939,5.43711478184482e-05,0.0058027548144760546,0.025481314546043653,0.0792332209502249,-0.0015654750766449631,0.0030481236166488568,0.0038520353178792795,-0.024060087393401958,0.12106283508532857,0.0077167470288972305,9.886143977968608e-05,0.0021913988373579523,0.010342610194374073,0.055695951027751545,-0.06787090879858305,0.00013466890134130393,0.01086678324151112,-0.03679425099440895,0.22644870175726367,0.014048765672876941,7.685264697161746e-05,0.0015295739931975231,-0.022130591366386423,0.12549140687155833,0.023934035304888905,4.4322722198252325e-05,0.00951745945878889,-0.02692152409028795,0.05137833747027243,0.004741226000917199,0.00025547534231351083,0.007800306434031025,-0.011634607347734133,0.039877359970190554,-0.028091644623563103,7.255038279343302e-05,0.0025484696901018457,-0.01055487471889631,0.12991420400992076,-0.053506162972803466,2.0961759387142315e-05,0.020042495362998635,-0.005269986538341906,0.016577560614905326,-0.01329819240506004,0.00011112143619695595,0.007995462877514601,0.03162268923053308,0.128811025960476,0.1461064789016677,0.0003869668227593187,0.001470926069819054,0.024017371794981524,0.09655305365918702,0.014986667520882659,0.00014247257164897573,0.009225421738147645,0.003588156105905902 +2020-08-12,0.0069948115534966245,0.04543511827675977,-0.047666040716605615,0.0001628061999863965,0.011269184106801392,0.04285857594666394,0.15437145424884427,0.052386464611277925,6.661641664183322e-05,0.025695192708837907,-0.0034455287281622213,0.013346825523537333,-0.06874928210710335,0.00011941945824528817,0.001324083561804814,-0.014560664190206216,0.01623719490963217,0.015286874948183196,0.00030264816028786147,0.006618927947112248,-0.0012612449290655449,0.0034527053807930034,-0.0015016759523935788,0.0001911338834358835,0.011302858157075572,-0.00010361261743742276,0.000299501362432481,0.0017742442842054857,7.553714780911669e-05,0.005962439168895535,-0.006408157588913806,0.024037092736333813,-0.0023661332873755113,7.822419445979786e-05,0.0048661489465623604,0.0066580606275853365,0.05741238115045168,-0.021000746986671683,3.976864560875016e-05,0.014857607485898747,-0.02886942871181008,0.020240910263386702,0.02766954031179021,0.0010998993287634224,0.02051245927260425,-0.00552062807624127,0.012296802826499283,0.012009499145438533,0.0001569850034218442,0.0023384884539495083,-0.0038221194402599024,0.0026718475747732813,-0.06893603694006663,0.0006992249783507225,0.004552071922806747,0.008565607992588204,0.1337938583166405,0.0044459888507547415,1.9078525477224402e-05,0.0033414837407734236,-0.03382800001227354,0.09069480642159021,-0.032398571525073104,0.000110801321910298,0.004972712852770645,-0.0034996420044281665,0.016787601789802636,-0.00765838075915588,5.868090186149527e-05,0.002036472074177636,-0.005030926018665554,0.004661950912851361,-0.10968458108814338,0.002104763031590643,0.013576341324573405,-0.011594529328607014,0.07396930167029216,-0.006778196425059254,0.00012898930792298654,0.019736619075154258,-0.02747305942918073,0.14556217168107483,0.028275165152244357,0.000292258217525359,0.01135661704253545,0.01597492601406368,0.0983977625724468,0.0154976624790735,4.573140961136881e-05,0.04118477625435425,-0.018026349091051243,0.08424742652795111,-0.007456037462115918,0.0003526451709697204,0.023569333719901376,0.03316612493460005,0.41994518506469636,0.004615883876345114,3.277421945940525e-05,0.006019598993089596,0.023460593200432183,0.2274218755326526,0.04227099311385112,3.446580775916276e-05,0.005568921034066183,0.044794105460993036,0.1292855684607741,0.06547937440971612,0.00011160754999417465,0.015289271339376131,-0.032789668243677746,0.2478178280817542,0.046083168685216225,3.056306128573986e-05,0.013751370562885577,-0.01920572898713282,0.0660204327121385,0.01508428771400684,6.449555912037504e-05,0.008422853198654295,0.007007486950022846,0.026189524578945137,0.011613153652565107,0.0001223441698783606,0.0012166338348985597,-0.009747706893067483,0.010133243928907422,-0.004655216655656821,0.0005498313846704942,0.0074079704142667015,-0.001592985768832365,0.005705688641435091,-0.06124995952536423,0.00011751406148405077,0.00946349419481093,0.05971927276955041,0.1772160132091922,0.07138578341888117,0.002162871525185062,0.0656450254555304,0.03163480591246598,0.29517662756062035,0.05330458013055587,2.7559123628666296e-05,0.01916961981818488,-0.015729453796871577,0.04776608785336377,-0.014456848079709185,0.001076626930024226,0.0006718706603248263,-0.011933254605197412,0.08743701556558185,0.014383376646959076,9.088437485561196e-05,0.00153487878698429,0.013448598869487152,0.01878441032814835,-0.0011201684767997706,0.00016897593567405094,0.0017695427997023614,0.07773564397404631,0.12621437995849236,0.27660779464917346,0.0003535210482954766,0.020413727014428784,0.0726092189279708,0.3232868324065026,0.20826514730960652,0.001740820892144655,0.01278194670363203,0.01632880699050657,0.06838145151708884,0.008739306118645629,7.661371306219075e-05,0.01146398379877004,0.000686841911242309,0.0009065882409091714,-0.03201433022449535,0.0018833190449072145,0.005600914920634031,0.002008843992570188,0.007086779397023628,-0.1447079971267497,0.00011230868267584365,0.0076638726416605575,0.01765003385036822,0.04208505452121573,-0.0011629343905024396,0.00017001139252988338,0.0006825510933999288,0.02044689765721176,0.09280118382278503,-0.013453040575162873,5.377591787686109e-05,0.001295429939051639,0.015123471445212427,0.04595654914205984,-0.05351639090358153,0.003119048575025429,0.001253654741787768,0.028225004495800236,0.14956963898372622,0.008068756431033892,9.387093530445224e-05,0.008942150318784899,-0.021696424069187325,0.11610453940343932,-0.0017754594854086972,0.00013551886175218786,0.020319224958701986,0.00795606925159813,0.04056501301228127,0.007426857196791303,9.276745319271212e-05,0.00011815129304453464,-0.03691498750960248,0.17300272162987484,0.04534600166424911,5.362868961034206e-05,0.018513861714731957,-0.022929614670255567,0.04507791494976519,-0.02473498615042068,0.0002480060816298365,0.018248826066074694,0.000793459876026361,0.0025843350665561778,-0.020770731841559698,7.634674492250006e-05,0.006486254812653959,0.0028671743676609907,0.028437535719592094,0.0008985244265363006,2.6013179120255388e-05,0.0014780475261744735,-0.005233481635711552,0.014563769744561951,-0.04201748718887412,0.00012561047706657162,0.005307063717078857,-0.008926514042859827,0.03398866536324298,-0.052248111525101046,0.00041397656061070156,0.0020942142480026528,0.07093219936388839,0.43286782455102635,0.09501873626766273,9.385554080936451e-05,0.008350162576300882,0.00607121790714613 +2020-08-13,-0.007948817684591481,0.056049968590193976,0.01385408640128154,0.0001499732304683658,0.017208927311344237,0.02783623841757658,0.09534753811010417,0.004733367254230925,7.005055656511989e-05,0.007221906337819324,0.01634957291489961,0.06758920438742434,-0.023064855467418658,0.00011189901991218213,0.016282985147361154,0.0068210018735569205,0.006222260695067797,-0.0016499745535202615,0.0003699711182692697,0.003908268363545938,0.017715860671652667,0.034446367663473414,0.004677398371318455,0.00026910179561165604,0.02297773409283359,-0.007525329480582002,0.02054134197055071,-0.005657483136757625,7.999142736896034e-05,0.005756669086373,0.011358102362686055,0.042136584655744144,-0.0011752535523858467,7.909268194331274e-05,0.0010885141264865977,-0.034323220087069964,0.2858063463499396,0.06249014536514035,4.1182695759447377e-05,0.011138574207474508,-0.02863374023066957,0.025206472570570005,0.024387077521957838,0.0008760134881679479,0.005286361164320459,-0.030503983924705443,0.06504745413038676,0.007604942330981843,0.00016397896701861547,0.0014069763651634731,0.003418609682889415,0.0026018143865134853,-0.0005330112972760687,0.0006422403180633216,0.011060096403373586,-0.0005768589271023291,0.007762598917186549,-0.018904442415271176,2.2145488259248603e-05,0.004866866045468394,0.04110775529709439,0.10164882071042361,-0.03278875324318443,0.00012013580311221174,0.013332060998914966,-0.014551869190435043,0.08558946242304923,0.017385023387270517,4.785863434847633e-05,0.007553096501220712,-0.04816907972286921,0.03654398225906131,0.05848328871202147,0.0025708423783967265,0.014639632469607687,0.011475543024217588,0.07600971162015249,-0.04718879878865949,0.00012423851980625616,0.022525554035048072,-0.010173954286215965,0.06525238551659263,0.0024125325228954737,0.00024143577383281526,0.02192598364373373,0.017305164272294248,0.1310447203713605,-0.011434444613624117,3.7197791329298255e-05,0.013882853429232424,-0.0014555869217429977,0.007860235876361825,-0.0018091883358978898,0.00030520340422128805,7.572503744505445e-05,0.01912538441130843,0.2595083585649794,-0.001793135301436967,3.058363159404555e-05,0.04893286342670241,0.011725614152792005,0.11238476218262267,0.0028750128076565533,3.485859488910152e-05,0.00824655411169437,0.05182709492962172,0.13987794510648244,0.05460880035632753,0.0001193521861065614,0.03362860697495673,0.020344890242230556,0.1363186303106902,0.0025890105199259735,3.447406638152788e-05,0.028780680555171453,-0.018342799342526438,0.04644667188281445,-0.06298999431178069,8.755650092441303e-05,0.013423044500418719,0.016077725133527565,0.06200489897815031,0.06011763416538966,0.00011856245707370406,0.004796224660689266,0.008813224666932984,0.00891013181017203,-0.029770670661265958,0.0005653615564969943,0.00014504222967515537,-0.022561102548041473,0.0880252922738142,0.011067605872529687,0.00010787948210446151,0.023038969013437827,-0.042415580759920836,0.14067411769989746,-0.03791649128979573,0.0019352202175768021,0.02072383133592784,0.0015546465410773327,0.014163758006992213,-0.015939700754187228,2.822509173770044e-05,0.01648738900832592,-0.005886592221057467,0.016865375990043716,0.0007778087770221808,0.001141140697688037,0.00837253007314804,0.006883251706892298,0.0497453877068152,-0.028974192409662654,9.214387549035495e-05,0.0020993310197699004,-0.027110073858485913,0.04334689064712021,0.004567198747390481,0.00014761080098591803,0.008975652199459443,-0.02425962197506756,0.031222530865757468,0.022207736976504956,0.000445984576138956,0.0019608303970658266,0.001593543748048242,0.006340158822418935,-0.08395565391726573,0.0019481132256448687,0.00899561407242476,0.02483640873516493,0.07334855200796053,0.0228013858212057,0.00010863946647123141,0.008216430441958123,-0.0072738440990618046,0.009496353490561943,-0.019689931263389342,0.0019040761272205095,0.02626044957698241,0.04060608466141131,0.13264720002640285,0.06531948902110761,0.00012128555088467501,0.007490798387276483,-0.05036753671652733,0.13416870161239128,0.11058889569170992,0.00015218080279198807,0.014343943967186431,0.004044751134098014,0.016503278509973157,-0.029665708259176467,5.981849766583774e-05,0.02777105380529458,-0.09158317791461114,0.25191311461127297,0.14389265588838515,0.0034457438511650905,0.006381509217316245,0.03635272275265022,0.16015484776547456,-0.021702816553612746,0.0001129113047724675,0.004464497385862635,0.00820734798628739,0.04618953566145055,-0.0034480763614466686,0.00012886056632088245,0.000510188978071301,0.032488546300440055,0.20328014229773067,0.05571274185849274,7.559342484025496e-05,0.004361669657593006,-0.05273521938255543,0.2518868302564349,-0.05922833106969016,5.261901216510333e-05,0.022461735139774487,-0.011487188821259845,0.02124911806828152,-0.006813098531747242,0.0002635738038660616,0.014138036692837667,0.024558608031818592,0.10699704553148592,0.14904646160202087,5.707505486466556e-05,0.006645589722021753,-0.026594625205618803,0.32686894900246705,0.05550173244962174,2.0991887638332414e-05,0.02593091133659268,0.009399928800754477,0.02725226557699182,0.022453880796092167,0.00012056768330502889,0.0012144214116377586,0.014612411316449775,0.056912500829080656,-0.03754554485287229,0.0004047083730953398,0.0035012554570115813,0.00048064417942330565,0.0022989022258381397,-0.00017951077646772578,0.00011974985124991518,0.002486982807957161,-0.0015539599683320562 +2020-08-14,0.008071632298670571,0.05645927854927331,-0.11459792363797158,0.00015118636630376693,0.007122429984296005,-0.03262576267743205,0.11585230177181448,0.019251532802199253,6.757196252113294e-05,0.003041762241429086,-0.010525777926178674,0.03096343763270977,-0.0055625762273163425,0.00015725419379510045,0.012618003591314611,-0.043670004420982185,0.041151288399117886,0.030939653302392733,0.000358152226356061,0.00436796747992283,-0.008216527436684034,0.022528240612438178,0.011491302877965107,0.00019083534137590775,0.016519662827242005,0.026590647015200003,0.07385919887611764,0.15888190817300668,7.86087792566285e-05,0.008030958567203565,-0.010425060561020836,0.03830353503168492,-0.40185009430343843,7.98600513133856e-05,0.003622508917878665,0.010207223042445287,0.10008312649905304,-0.0064849655784506716,3.4974004009232766e-05,0.0032295439727731794,0.00945809822328589,0.007050394316284173,0.004860528800653723,0.001034511206332363,0.011414698789905264,0.015388261161073944,0.02932911118598738,0.0011233519420844925,0.00018346470746284071,0.02768674996047671,0.019170446526746536,0.01327922115578961,-0.04784105169465364,0.0007056412866996247,0.007994519622435796,0.02254472239488968,0.315199106811363,0.08125137506038171,2.1314870738048636e-05,0.01154881437681398,-0.008996156278525513,0.02378972248593027,-0.044604495280863125,0.00011233592176458063,0.0008555641823905101,-0.02923281974086232,0.1546771166857025,0.06939454077607785,5.3199366294615025e-05,0.0005793049315486719,-0.0013659072700010096,0.0012019731150332098,-0.02664853674744979,0.0022164066032813604,0.01559267010960211,-0.03403093102490132,0.24277259893757092,-0.0820514170373229,0.00011535230336491454,0.022341402969409757,-0.012610070017612258,0.06817258832695948,-0.008594231459880938,0.00028642831401569336,0.015557873930530104,0.06937303752316207,0.4684572431974583,0.12177634919973952,4.171398766002991e-05,0.006037479215214057,0.050060348139018655,0.31990228955907507,0.05996242558786372,0.0002579071157350894,0.011885666958353105,-0.0018420709939374117,0.020923142854433193,-0.03107793536901307,3.653504739237756e-05,0.0005890844486218273,0.0004821505088676001,0.005205985692739958,-0.06361694849455565,3.094292525826417e-05,0.0057685244897024215,0.023075532182915377,0.059877454351579984,0.012149044505307773,0.0001241398319877765,0.0011842415105778098,-0.021566804067832162,0.16066046672602347,0.01611336048581846,3.1007670802542294e-05,0.011084703007921479,0.011025271898047882,0.02671588505511689,-0.0425595043748656,9.149495009837637e-05,0.0008046260448262505,0.002576495839494841,0.011495933512248304,-0.02205520029704321,0.00010247874489351792,0.003289903375734718,-0.04368696246385387,0.03782885664959683,-0.05119192792569347,0.0006600915839102295,0.011911272638322888,-0.01632228469155897,0.06229688481773022,0.015612880425209977,0.00011028098271569156,0.007014061074656137,0.05055308555077791,0.18432954837159535,0.02648939302180407,0.0017602399926810329,0.008532458204878622,0.02592581640289469,0.2697919248350124,0.0229245622231079,2.471073650982963e-05,0.0005665275504974374,0.02159518554668953,0.06950851685316699,0.0001729562598182236,0.0010157578512145435,0.004476007466637304,0.017109933999155443,0.11692777047322417,0.011196499826613679,9.744427050068241e-05,0.002459221100785118,0.0173984415759148,0.02075045275988261,0.008885156863179044,0.0001978919637892451,0.013695155599952942,0.032173724467340986,0.04187246850642839,0.02192598903040816,0.0004410386879167164,0.006312753488140201,-0.00017812096471739325,0.0007888425310781942,-0.0062013925084271225,0.0017501491519895812,0.0026610078519655246,-0.012100414408258355,0.05024101848087455,0.012177589205194737,7.727378400779989e-05,0.01805133472775549,-0.020405634502230957,0.02564297267297023,0.008603789059850587,0.0019781486579341593,0.008219808459831952,0.022752233354287242,0.06371609427309106,0.013993424274812068,0.00014147865540247326,0.012302032706990632,-0.012877951336764672,0.03716945253945223,0.003026730718609829,0.0001404497567036068,0.008962563922133336,0.01992658396958252,0.08177725815760824,0.002206473759474693,5.94722313658305e-05,0.003941664123896115,-0.047793494052166645,0.15724222071578267,0.027614341521977403,0.0028808302656526128,0.04977272326865613,0.012484378369295668,0.056648181520959094,0.005688517085948314,0.0001096280073470994,0.026847126576360625,0.0054382284565443655,0.032123774180796656,-0.11201943628393551,0.00012276983387090877,0.0015690004862237142,-0.011365413558376038,0.0689339983796411,-0.025628511499395757,7.79830958659073e-05,0.0018934543681334245,-0.008974278095594795,0.05007574906242648,-0.005643678365249568,4.5042186430383596e-05,0.014517125601216959,0.029747096544924082,0.05985730031746045,0.011587664381152118,0.00024230191784581782,0.027088316211905668,0.016640081656721147,0.06616948911944137,0.05240106284338433,6.253340074027586e-05,0.00012070498259622803,-0.01552942828891683,0.17811492064221213,0.017384640915502268,2.24950235076197e-05,0.007922839233889705,0.01610132877326568,0.06191569399460494,0.033281147948923236,9.090126716627198e-05,0.005947859842007777,0.00885372982405328,0.040142360327901305,0.007684452712258759,0.00034765728246717196,0.0021934279129078183,-0.013584338611235093,0.06345778644646186,-0.029007110959295878,0.00012260985410729962,0.003398941751471825,0.0028229018384124116 +2020-08-17,-0.0675997692512136,0.48548505811837916,0.5208565138804772,0.0001472502122098672,0.0022297859810673742,0.03583088726475546,0.10586381988418422,0.029646284616756523,8.121206032409546e-05,0.02589718388534394,-0.05350126774499408,0.17698585917036935,0.11622054786338866,0.00013983719667848637,0.019065662746737728,-0.016514235394578247,0.019307108753706437,0.002377778079294997,0.0002886749399629935,0.0015568959302213734,-0.0049441436518147695,0.010514022955922837,-0.010009150994784237,0.00024604805259762386,0.007705422265097346,0.004254498168991035,0.010866066181862429,-0.012837652920863661,8.549146022394153e-05,0.001345859121407988,-0.013156286442516976,0.052692265437357506,-0.04664940306707382,7.326158406879185e-05,0.005459632741798864,-0.014173947574821743,0.1151836785935229,0.0056956340142189895,4.219864366345623e-05,0.011815637125237668,-0.024682289691377077,0.01969771607139833,-0.011634340606966961,0.0009663052937467258,0.004644143995926019,0.0191825946634157,0.0466542292569578,-0.0058380526885106416,0.00014377329211634563,0.0028430034077041835,0.02663122548102605,0.021891005861012995,0.05751752050234459,0.0005946340753289319,0.00269266174741645,-0.014536146249986712,0.1360061331233898,0.033563206568463025,3.185030387307257e-05,0.011013445888691728,0.03824741452392422,0.09817983082837071,-0.031975760583127615,0.00011572597306027266,0.0009594502682938565,-0.003471651112284261,0.017990991232142463,-0.0018625322444232385,5.431787860886624e-05,0.01036791181757074,-0.023570401138783233,0.021766531743334764,-0.05715328118578448,0.0021120330589848467,0.006794903260788717,-0.004079580397509494,0.029235403383430197,0.003232159282399709,0.0001148308325525097,0.028607135970831452,-0.036668290395030986,0.19044164374494374,0.02999071959144621,0.00029815148220515897,0.004421175111777018,0.009481497070724864,0.062261377943324946,-0.025106741166227874,4.289623176670219e-05,0.019339668360243423,0.0750990356571799,0.3308684125615973,0.11101623646505716,0.0003740811804525688,0.005606165692868192,0.027276077802733147,0.3459915503343119,-0.05810055508711523,3.2714979995380844e-05,0.0436148679181322,0.007195290801657553,0.08728800681467275,-0.00023452806571056678,2.754073226471253e-05,0.007078335720617859,-0.01145286867306576,0.03185657562447891,0.002536847143152645,0.0001158078360223368,0.03667108474429924,0.030785031619114077,0.2579602753650156,-0.023021831768941355,2.7566342528180685e-05,0.013171951030342393,-0.013788997307060956,0.041727094311943054,-0.01519275047871363,7.326421921488762e-05,0.0016312719376000667,-0.012668236182728962,0.04899375032301012,0.061072198090613525,0.00011822901260793547,0.0013368480984176177,-0.0138668418736696,0.010258697331642008,-0.09853040182093598,0.0007726110369448622,0.02041888862151763,-0.014108628589169376,0.05637740071788599,0.010527519015230429,0.00010533331711190114,0.010524375506059988,0.03506886680075088,0.11413585920626838,-0.0015627086490545066,0.001972053962837443,0.007147154937777295,0.011127776623135011,0.09672055161056865,0.002452958594123886,2.958501744604239e-05,0.00010032089534539146,-0.042825973951807844,0.13448747218248275,0.03460207473751461,0.0010411101669404726,0.014276780301707627,-0.03499187814319261,0.2350263005310199,0.09041420442030797,9.914628182686141e-05,0.006056226174914066,0.024471218503202097,0.03713134981010101,0.016527295401685,0.00015554650023504688,0.010371774231134782,0.023761689614390215,0.03311073793211721,-0.00045729723928101927,0.0004119195198191584,0.002969417597726996,0.021200450150132454,0.08671634994677964,-0.009196490158843136,0.0018949355099169814,0.0019710950807982964,0.022111534830158864,0.09044555086516907,0.02258361396279328,7.843719448079785e-05,0.010995717258992507,0.0051280428173189774,0.008348547295198027,-0.0012366786333725076,0.0015269257627633208,0.0060560546095085556,-0.027562457547376355,0.10334055578941043,0.028907451343789844,0.00010567279183044213,0.02254449677476507,-0.028607057800818955,0.07782335972943877,0.026719055154968478,0.00014901280629357785,0.005592009501684044,-0.04827875868152959,0.17958227507552577,0.06986030799516868,6.561551638816269e-05,0.0004914643281568147,-0.033073199307057245,0.09490140771886221,-0.028395687492090104,0.0033030991591202134,0.047390909647880716,0.020977726448784085,0.1203886563003868,0.004004336946804381,8.667890601822511e-05,0.006898635021619703,-0.008995066840923908,0.04606872723668462,-0.011705212609387998,0.00014159860190824996,0.010556343476353442,0.00441882153810045,0.02240671168270797,-0.03492266432378236,9.327752947834675e-05,0.018144613325687783,0.03975965869556664,0.1748993148353029,0.03165623326851447,5.713496088954996e-05,0.011561627526137914,0.00885523431229521,0.01652116778418692,-0.01202333042955549,0.00026132966367331864,0.011372473556826699,-0.019007295476860593,0.06868706035840161,0.005929403661617706,6.881130146071391e-05,0.0022154869898691207,-0.007888925088240973,0.08474841476434374,-0.005195402833568785,2.4016932317451894e-05,0.004067194725957705,0.008101748065001626,0.026512740300932147,-0.04277276995800373,0.0001068152056092939,0.00832259766337422,0.0019502707919344005,0.007696832880436467,-0.030101734313911128,0.0003994025475271318,0.014061468350782143,-0.039692208021690586,0.17892593908186671,0.03893207050728024,0.00012705850748132965,0.01700281167564643,-0.0019868126037081873 +2020-08-18,0.009161481325416406,0.04843977684505167,-0.00026540246969785014,0.0002000092820227693,0.0011480228348136668,-0.007518093538526087,0.0258431829245606,-0.021742844234471106,6.980270451641022e-05,0.002904126608754356,-0.007677939731114144,0.025075185810756597,-0.0216041484843148,0.00014164385672549916,0.0009862544930982309,0.00014386106174599347,0.00015017055989811751,-0.0028996218673307396,0.00032331534515413787,0.006007772915348711,-0.02283224850943268,0.04169005075810245,0.01830865629792491,0.0002865589856020733,0.0019064687843037339,-0.012806907784751437,0.038334330984519216,-0.0691551624833407,7.294627741753506e-05,0.012455866795541793,-0.02809623250811853,0.12089136491731595,0.06240613858292259,6.81934499799065e-05,0.006407115217471298,-0.0037305167075738434,0.03858868197502535,-0.007537982122148789,3.3151841601246885e-05,0.013310528245828073,-0.02785995705825062,0.023640809572345826,0.026648677988789556,0.0009087886293745759,0.018909084393923546,0.01603068691629927,0.03730827204004976,-0.0002048102628292438,0.00015024806371927382,0.011735611437540995,-0.016437703783657148,0.012852949447226706,0.0268439683693805,0.0006251190139263603,0.011484578479723052,-0.008912710629608484,0.1228773391070849,-0.0797138750532465,2.1615276615579447e-05,0.010868704797944398,0.08175755694172294,0.24821412421694908,0.193812930743105,9.78481125451951e-05,0.00825378820983088,0.022202635994562847,0.09663017829588379,0.04604825964082557,6.467755237478158e-05,0.010336663894731802,0.026909628907387285,0.01875033505147743,0.08148023941394647,0.0027991208468676307,0.009058862064523991,-0.04866359186213441,0.317262436463194,0.038301822107773206,0.0001262227429796358,0.03913206319425082,-0.01940007337883371,0.10725003795016956,-0.021017405790556217,0.0002801006715116768,0.020048569543110385,0.030341039920003768,0.20897440184134858,-0.003665613268914657,4.089764746937934e-05,0.002601714412003415,-0.0382001370882962,0.22081098902616628,0.015624132496108714,0.0002851222082376532,0.024343800900755014,-0.06393263729539371,0.8922629951860149,0.031863738938249904,2.9734454081564674e-05,0.00045899498355858083,-0.0010162103267147584,0.009517892289768534,0.010230691758708551,3.567175916224941e-05,0.0017379125419636097,-0.03768096769066789,0.09589700310969831,0.011975301161816016,0.00012657261946465905,0.03421515431208051,-0.0037016716489105977,0.024192076553207334,0.001844304088818387,3.534411573946269e-05,0.002408301638512665,-0.009416966825326086,0.029645837126546327,-0.05124449341826824,7.042465116829871e-05,0.0011216126113590596,-0.004436431486455683,0.022344954218198387,-0.06347852801194194,9.078266033446313e-05,0.0005379600002319596,-0.013056216084155347,0.01023995198968388,-0.04812576639899047,0.0007287775237995475,0.01666068338595028,-0.024587450529683058,0.09800735210934526,0.022782070809810814,0.00010559439160475082,0.007680572786372216,0.030265181867713018,0.10955291642552972,0.004889116084501804,0.0017731215952692737,0.013191644285849229,-0.032771777702288264,0.31020332389006133,-0.022534812328557027,2.7166628790582184e-05,0.005027461544482718,-0.09589298371259726,0.3194381362452587,0.18028717270997302,0.0009814571390280686,0.005017103726774311,0.007252703864649534,0.04721634222071893,-0.0036519038583466053,0.00010229001645489913,0.015041277991565443,-0.010645085011777676,0.018381234427601964,0.0024665883533927842,0.00013668468190997964,0.007682403244843707,-0.009748247181593787,0.015858370176856037,-0.03366149021102174,0.00035283519200485507,0.013567363958520172,-0.013729667218776317,0.05514436692638939,0.031308316674844155,0.001929786201663,0.0013839606000391256,-0.01942118283998829,0.0902067668573143,0.013571674083614838,6.907596010180201e-05,0.008148488783637484,-0.0788691017266147,0.11237114919711527,0.16666225949281774,0.0017447341592008684,0.011731912514448706,-0.024370161800190252,0.07949437285510354,0.019109626746677107,0.0001214613381947035,0.009157226568056696,-0.01356681193417209,0.04265949365568025,-0.08033926231225266,0.00012892064942162285,0.005838421347619333,-0.0056594477396950315,0.02463482718095804,-0.010133749115676136,5.607102032247305e-05,0.001420292961010316,-0.018757890031798823,0.05474032609734013,-0.010578510804187131,0.00324784027638364,0.0012280522425429572,-0.013233706922132698,0.07372883028339532,-0.004217044472336251,8.928628210967243e-05,0.004986401983443306,-0.030206884970224272,0.1629877295673155,0.0708857368479163,0.00013440388306806922,0.000345023924526151,0.02777755737918596,0.17729474844527193,-0.12153658058924274,7.410489228164087e-05,0.008796903909361865,0.029291646565906437,0.17022604178881703,0.011644696082799288,4.3247915461818196e-05,0.032993670986845525,0.10474554901473578,0.22314272874251637,0.056341405607861265,0.00022886650198298476,0.028655180441615177,-0.004242333210310601,0.01610120101157058,-0.033642921833526004,6.551803757880894e-05,0.005858931645894344,0.003101431771311294,0.03542353240920382,-0.055604047609015876,2.258924160325919e-05,0.0007598427744113324,0.0022590158684017386,0.008537682413155353,-0.05906424799322777,9.248860954338713e-05,0.011154752037257482,-0.008987020191908652,0.04411822863170248,-0.015529319682744036,0.0003210891432898784,0.01375039102449363,0.012176703135235134,0.055325011491632776,0.0009159225979576317,0.00012606078330164612,0.00819328532457003,-0.007932335707685347 +2020-08-19,-0.08422900497727075,0.5482523320358293,0.33943290571954443,0.00016246797465051594,0.009965827289229349,-0.02602053631482414,0.08630260331161774,0.0074976064818302445,7.234405930685581e-05,0.031164328407876127,-0.00814280195801757,0.030759842557794948,0.0048193379468471935,0.00012245794542923625,0.004616993819891849,-0.006158596330010397,0.006728635930411918,-0.02380844507382184,0.0003089033120424387,0.0019030767582773904,0.04232795146132739,0.0940299420186285,0.047223687738567895,0.00023553684558901393,0.012216995139305919,-0.020504715386856224,0.0561405922230409,0.02408175624980997,7.974867858680456e-05,0.016197301897190656,0.0031033259697472396,0.011193362752815789,-0.011537955670400094,8.134983425564751e-05,0.004857475716480298,0.027036462141801908,0.30633432058551235,0.03869339709034079,3.0265846110357324e-05,0.00731580937479562,-0.049494939638786574,0.03926727648232182,0.07004751007582105,0.0009720191144102611,0.008269349594104584,0.004594199354259979,0.01347284961050174,-0.0017167589273565935,0.00011923733499151732,0.0192068024466458,0.016385502736582833,0.011206916674677882,0.003297563554387978,0.0007146575500633851,0.01072064727370691,0.013905924731870661,0.21329306359479724,0.04837028815378854,1.9428797938864994e-05,0.005941870021495752,0.03325724911936676,0.11414251179710279,-0.021737247659989932,8.655455664610947e-05,0.02077212413974442,-0.00782221044805447,0.04097736375718706,-0.11800013268255245,5.373376842428296e-05,0.011059094618799111,0.0101058305380115,0.0081909215342131,-0.025214692507897624,0.002406368968004648,0.006242505755989651,-0.07826434849694008,0.47616851627123197,0.09781578760941939,0.00013525564668092648,0.006594365824150024,-0.024212660255835367,0.13600471782946852,-0.026044201060629955,0.0002756746084246864,0.03376698077169033,0.03314357993335758,0.17160448686072818,0.0321613492634521,5.440411288214676e-05,0.011423084633769337,0.03841257416672967,0.2071251394996192,0.020813867778416675,0.0003056521150195096,0.011523830677113406,0.029616685896031142,0.40856056082733233,-0.12352280985851621,3.008224539385488e-05,0.0289980436028094,-0.0015767601866823319,0.016848450085065404,-0.00844104539935,3.126708533207512e-05,0.0055279791032608145,0.0056118038019088755,0.017886972424643835,-0.010481009353699387,0.0001010621183771867,0.0033246543157499572,-0.01316012587810245,0.08651764405619715,-0.20057028414382638,3.513562916268287e-05,0.014936636884013437,-0.025763005479210548,0.06666860224331332,0.016887685708405733,8.567469327251098e-05,0.007849480238456049,-0.01482574348088525,0.05942711486066414,0.09097283428628761,0.0001140723611719342,0.003889095356510679,0.027427419864949208,0.02636544241665397,-0.036788647620738954,0.0005946007504124533,0.025502612132371955,0.01297235626569534,0.04484117837366269,0.003141008505690136,0.00012176651025750246,0.0007954270954066479,0.05773868581982159,0.20547686264286458,0.052790178866595094,0.001803529055880914,0.011948834311618231,-0.04915969399901459,0.4436338770190339,0.054933297798031,2.849486892651367e-05,0.004289374569953879,0.0297158765575866,0.08663206975257313,0.011496476402775775,0.0011214531237374998,0.009761509955567212,0.0008036044303517015,0.00625368226591508,-0.016821078012969583,8.557209282309806e-05,0.006098848515334835,0.0015976888166990954,0.002520733180111522,-0.009428199998283742,0.00014959280427888634,0.013190889068264714,0.01794692009590001,0.020104389538576222,0.0013777696952901855,0.0005123927221793085,0.0017187217102066113,-0.015951266252637823,0.06058703487376106,0.021172392167607617,0.002040637234149714,0.014838984390913704,0.00822828852673609,0.03388763793388796,-0.0712983995083341,7.790378955353155e-05,0.022181043017056368,-0.02109074134611444,0.03074874443654725,-0.0002601797626047814,0.0017050677905531345,0.0015754616954308219,0.005165073629991876,0.020323430813677375,-0.030166052180076352,0.00010069213051236326,0.009632122934086081,0.03443796475563789,0.08279987120974562,0.05008498857441852,0.00016860412359080763,0.003868827867267474,-0.04428663894575044,0.16127155773570287,0.05274229936564802,6.702377201089149e-05,0.016706349761045354,0.010572633562408921,0.03232844565796335,-0.035684763112539965,0.0030996768074466716,0.028727481537828496,0.037413923055735786,0.20898537988198923,-0.009852093647221574,8.905491931179094e-05,0.0010630939030268848,0.007397958766921459,0.036669356056135964,-0.005202920175753178,0.00014630844931078316,0.0021133176940331126,-0.01871444917719415,0.131385534854407,0.012387850396173648,6.73718067758312e-05,0.009567136666798447,-0.016171965560426865,0.07652653193596616,-0.014719400536411718,5.311267444012171e-05,0.00483250229033147,0.0036298330424598068,0.006824258180020168,-0.021300795529380804,0.00025933467840316904,0.024050972682505,0.003351748846194411,0.013809144753557705,-0.03515276574712661,6.035580716761572e-05,0.009637264107959363,0.03031999569148779,0.2936973231372002,-0.0751808223081784,2.663547416394133e-05,0.008544154331932282,-0.02249214021503332,0.0768709254527,0.053612734373676196,0.00010227691908219336,0.002120665350605927,0.022282620669784068,0.09817085877906351,0.011289428608406978,0.00035777636544747407,0.010450715380622626,-0.006601614516076362,0.02599232327625453,-0.004022449210710761,0.00014547114507253655,0.0024053595339168943,-0.0001443403975150954 +2020-08-20,-0.03963494688648322,0.28568184892551124,0.04665064025027229,0.00014671760078084148,4.236080669866747e-05,0.0057194688599952245,0.018192575155253646,-0.057834838032408464,7.543485305192833e-05,0.002883669630679535,-0.04751953933207913,0.17340288602017728,-0.028701185846520056,0.00012676901182086408,0.01956014372010988,-0.022694008916842968,0.024188416463767834,0.02671043789602952,0.0003166442747992697,0.0122118988622788,-0.02960630774548756,0.06484348111915574,0.05142804833569216,0.00023889975235775245,0.03125528477221375,0.005962767896976509,0.013638952494870297,0.012248842617277511,9.545828502594998e-05,0.008760412627345384,-0.016559635731267355,0.06742059197095651,0.005206119872267804,7.206892980186246e-05,0.004242790179578786,0.015229877131529866,0.14430750406129486,0.008257815796072751,3.619145963177264e-05,0.0005049666381937318,0.004680835825919338,0.003942877026898234,0.003956877870642295,0.0009154928641167044,0.0017036945387633403,0.028357385809265778,0.06086555080708687,-0.016158549984974954,0.00016291329281683717,0.016317338032741324,0.0036918333776103924,0.0028160385721692593,-0.0010628343962968065,0.0006408078908724783,0.009937437755074772,-0.005630625653553268,0.07413124921157287,0.002782456682869053,2.2634876302790484e-05,0.0014099739422483973,0.020312406289727095,0.06774946850340036,-0.023210421827201823,8.906488676474612e-05,0.006483105060894227,-0.020757726301990402,0.12824770996015974,0.03632143236180641,4.5560867088494325e-05,0.0055682450224636545,0.023651259054529812,0.01972774746523482,0.06564434643696007,0.0023382973510603254,0.003067160035361456,0.10435056514915828,0.6573574041412477,0.08887280025278778,0.00013063073014428603,0.024738142265742155,0.04844354858247407,0.2757692379715071,0.018154328066593287,0.0002720184498785644,0.016547739845556294,-0.025251649116653382,0.13920250728122308,0.014602315496294262,5.109796967283668e-05,0.004924725181329666,-0.08778712635302491,0.4599635829794297,0.1130681859757964,0.0003145532611058762,0.02160837281599382,-0.007473313997063293,0.10014808557640933,-0.04591621158484627,3.0967119452403796e-05,0.010119876421036065,-0.001943860154645768,0.019604924445490352,0.0021946458101075,3.312695774965719e-05,0.00920719372309898,0.01928784811416266,0.049288908439161984,-0.0015071415210698227,0.0001260542036130434,0.04404405146786897,0.04404590151007333,0.2931142272876575,0.06284498091006015,3.4710508860744026e-05,0.011462709564380273,0.010495259369779703,0.02777474869859129,0.035237351410377114,8.377615419630292e-05,0.006248178062876308,0.01352387475752029,0.05132145567492412,-0.005881666567801171,0.00012048993487347729,0.003314977010287514,0.025039649373542392,0.020781007485675438,0.001991972726041731,0.0006887112953970805,0.015652563054406127,0.011056071938446427,0.03527287579867559,0.0027422688625868153,0.00013193073920260588,0.00813508122579911,0.09054705251942252,0.3219117030481027,0.10276961501422374,0.0018053305308011964,0.002658474916313859,-0.03247832247835566,0.33650859851113296,-0.08839859934335507,2.481873369297618e-05,0.003976512276265985,-0.019138477516616268,0.050744200720746875,-0.02746203026608633,0.0012330827996756223,0.015168807974320842,-0.015204729258307537,0.11028272091537611,0.004754458171094045,9.181145330687361e-05,0.0009300232820958693,-0.026799338029901993,0.035590005731562555,0.027398858479256473,0.0001777220830929402,0.0002388470886346243,-0.02566834902255957,0.03769343110437411,0.02760986771990765,0.00039087345546976024,0.010026771092442726,-0.027252871173180038,0.11322398358595727,0.04014717029101455,0.0018656242307279964,0.009922576538785042,0.019654466451157673,0.07286935247459779,-0.006953675432502055,8.653797308520822e-05,0.0045379307630555605,0.0865895140830226,0.11871115699875837,0.1170725329487976,0.0018132219030090428,0.014207284959903836,0.015552749616213732,0.051081095013352874,-0.005291122056072642,0.00012063213613031167,0.0036962840185725014,-0.004323919477337323,0.01017983005492431,-0.003427543340067011,0.00017218584487840754,0.011409275783546117,0.027632895593866388,0.09739456029558351,-0.03664078865302716,6.924774251530476e-05,0.019594724622450488,-0.012219841319624523,0.0391362306915974,-0.04054336680243465,0.0029594065387115423,0.00928430463259587,0.017093245673934276,0.09481009504026443,0.007905670525904547,8.968308175454218e-05,6.997331328805509e-05,0.020084923010791622,0.10774229251673709,-0.0013637201422055907,0.0001351900546503191,0.008276158363638833,-0.02415593155217561,0.1360705069941094,0.02594349991961001,8.396697085459721e-05,0.007117156169655363,0.0453392785059819,0.21752247010410436,0.044292760807899116,5.2386317821476727e-05,0.005915303846647056,0.06692215376436203,0.13084632158234585,0.04482710120584222,0.0002493663138167761,0.001417769197112746,-0.012132419731274104,0.04906401315065443,0.018499705698060434,6.148918467364991e-05,0.006005702557323407,-0.014672993845217447,0.16907503765621004,-0.10746131653359903,2.2390847291345694e-05,0.008818355944581262,-0.014918844501690055,0.04370072474822163,0.01766776190120126,0.00011933161337542514,0.00043863427934823153,-0.01990833246637431,0.07079485579342923,0.08011570608922264,0.0004432626660666716,0.006055958111446296,0.022419685752691876,0.1134085841774831,-0.014929383467952789,0.00011322840466160804,0.03732827541295076,0.005237758082148145 +2020-08-21,0.01075724609463457,0.07065560285136405,0.0028103318653438917,0.00016100563712336135,0.004679710984486922,-0.0058023721565712465,0.02104901446774715,3.2483670540442304e-05,6.614306874798424e-05,0.008231859715038151,-0.0027416119722475834,0.00821930920869501,-0.003471718094196061,0.00015430069194275752,0.002228516845420689,-0.008563229083144625,0.009481518389280474,-0.025422752753150687,0.0003048088181404441,0.005690917210897111,0.0043223388429924,0.00938372503278216,-0.0723662242109677,0.00024101346619055216,0.022498097878469032,-0.013146821751419466,0.034738760944864264,0.010319801474837069,8.263293726578163e-05,0.0030327547830561394,0.040475889101433585,0.14330704639742334,0.09288964493232464,8.287407754238761e-05,0.014012395616642751,-0.00421210214799556,0.03187525912618242,-0.09730021183634102,4.53151879099185e-05,0.004783638833315613,-0.018630653549150663,0.012338317195266103,-0.025642247372566814,0.0011644395440910046,0.008220298080092331,0.016408665937511325,0.03530428749576081,-0.04839538464168323,0.00016252033492617385,0.003169428639677138,-0.020820151160843788,0.012845615916300355,0.0285689559733453,0.0007922336847079728,0.00017289963085429958,-0.008393246010366031,0.11278506403276373,-0.000906335963449967,2.21769160090629e-05,0.0003554178491686844,0.036131590542463794,0.10476180391069197,0.007296402274158677,0.00010245546998164726,0.004175757573172988,0.007016884050846584,0.03367970252129277,0.014536961831972253,5.864592918111478e-05,0.007774216066478062,-0.01340730466002206,0.01151448893924347,-0.008110485828150988,0.0022710138550897886,0.0004204053270425317,-0.016554284641322584,0.11084127762107857,-0.00024910917081992246,0.00012290258092681548,0.00886887713578978,0.0064177106616748565,0.03044230721681673,-0.07166643286974446,0.0003264455860608228,0.005262972717783575,0.027593769219258078,0.14555490594398357,0.006535982386839215,5.3400476925208734e-05,0.03660159139300196,-0.09960508443948463,0.49483598585237826,0.11012915226640446,0.00033174702750262737,0.033475348792795095,0.044665284724182956,0.6074495977025633,-0.14348577528596154,3.051336396047844e-05,0.011284679568874972,0.011440809940453149,0.09863330469172915,-0.06992382094794675,3.8753853727132506e-05,0.003821916609662646,0.012875059019444007,0.03315419394711847,0.0025684016524450694,0.0001250931447890566,0.011067852910963395,-0.02509770613712552,0.18310119697473365,-0.046603454848945486,3.1661772399094304e-05,0.009628849653908322,-0.0008172272424020406,0.002164879401688486,-0.012297181382318717,8.369249394164897e-05,0.0014186064291090857,0.021770510495187273,0.0760363051270744,0.10969856174242468,0.00013091704791110906,0.003619946679958747,-0.028645579953496068,0.03174493062131947,0.004834028593157397,0.0005157732313087857,0.03136336465769389,-0.008642232254552509,0.030610053816584496,-0.008161615430954597,0.00011883595193770435,0.027876516377416012,0.031051318553634345,0.10165528106458235,-0.010203672137511645,0.0019605109661439963,0.010475573907718597,0.00920797834115939,0.09699139527989623,-0.016287126227615575,2.4412557398514605e-05,0.0002365394791293265,0.0004900378522873475,0.0013895390754438508,-0.013694528619532575,0.0011530021932637199,0.017454147616647996,0.01726546086038751,0.12393790097521798,0.02238214555281828,9.276831789843543e-05,0.007504391103301549,0.0026888950983898928,0.0035248652426138265,-0.004568429110419815,0.00018004320170991368,0.0180409537128446,-0.026118601907879208,0.04452571690081643,0.02890116749614989,0.0003366998470995104,0.00159851357007515,0.023098823872894882,0.0961351343940052,-0.0019139609251124954,0.00186233613846138,0.008632279036568127,0.020093963503186648,0.07684377187653697,0.010500536106920913,8.389716882348193e-05,0.01619924411537368,0.006518902387324239,0.009521366311022664,-0.0035142051549466795,0.0017019719410774695,0.010475439431092004,0.029826984407958713,0.10869181231894148,-0.049057984254234105,0.00010872478398663911,0.007466954894740141,0.027016849865048036,0.0810210944417252,0.02830481657751792,0.00013517518732483825,0.01220468456063495,-0.010537379463336934,0.04599799095800114,0.0015779926380792351,5.591234165927062e-05,0.005113949222373328,-0.009812295137928995,0.03480306864472116,-0.03788958032062124,0.002672213307627311,0.005664339200746732,-0.020066333968016714,0.09472266966003363,-0.008267660018286788,0.00010537914656745065,0.005878898306718906,-0.004900593796075286,0.02838939764024576,-0.02207153473287353,0.00012518529365620822,0.003447418952458537,0.03754908216857146,0.2477946093797324,0.022869116171493637,7.167309690349497e-05,0.011786339545160326,0.014174448446102685,0.06293324993861137,0.0021406736993618146,5.6607425523650884e-05,0.017083278487227953,-0.03092051122280073,0.06371836166907138,0.013209301257549719,0.0002365982124434927,0.0411443192357302,0.017661269042722926,0.05848751961997664,0.050728434288587594,7.508843942284746e-05,0.014747462503393392,0.0021591998594776454,0.02314983180877269,-0.009101324469625914,2.406446930937592e-05,0.008771454953513964,-0.01110420746298781,0.031570475365455965,-0.0010568678734398252,0.00012294628502940893,0.007089408135259212,0.0444308762912386,0.16777957211105882,0.22174171110262783,0.00041742049347701137,0.009890463066868048,-0.00949777328784769,0.04794498089957645,-0.00014472824441184463,0.00011346200265511088,0.022995416289921137,0.0022257771604824966 +2020-08-24,0.01135402841085876,0.0864396950483165,0.0003653276926479791,0.00013890674495295935,0.014641265553865856,0.04436917925469494,0.14659656739709995,0.028159183073583498,7.262198583871036e-05,0.02808052365859803,-0.061513144279146746,0.17232923641450262,0.10234149756508668,0.0001651224666528862,0.012574729482370609,0.006067708384598201,0.005532693021388092,0.000669648891649103,0.0003701314446929883,0.007917999995385982,0.0118880494489525,0.02628055108518252,-0.00900315723505062,0.00023668672877435432,0.019010684570560477,0.031023862979986935,0.09273177912672535,0.15589443412679196,7.304895732265636e-05,0.002392146970738372,-0.0035143577046868883,0.014226893841886456,-0.02633236503258099,7.248125890222674e-05,0.003566871474349907,-0.002423702853412209,0.01806981000746324,-0.028127393090632617,4.5996459340728693e-05,0.004071066763315151,0.010679366112924754,0.010897701883419859,-0.019672978038743162,0.0007557102952785904,0.00249096908650726,-0.016268630643249675,0.03694644095308396,0.03623517165761566,0.00015397147719718588,0.011995787597666964,0.008828017716205122,0.006290232365714683,-0.0033990822208969157,0.0006859948659173447,0.00726212937147023,-0.006155235880254853,0.09143266841225046,-0.0011350174895851095,2.0061624411112432e-05,0.0019338526872553288,-0.009312802135362133,0.028333769385143346,-0.001242907142988304,9.763983996123138e-05,0.003791877176016695,-0.006644279665585793,0.03824815214826903,-0.025053845404010202,4.8898919655875526e-05,0.013493758885694665,0.021316192160898445,0.019327658672925498,-0.02948581509882304,0.0021510640983427335,0.010209606274529387,0.04959812664839488,0.28313944520914264,0.016235881990744338,0.00014415078250417922,0.041970347449582675,-0.017666841070721227,0.11626651461118649,-0.008226754221951892,0.00023529488188603722,0.01680387741945525,-0.06586182622774475,0.4301966494548645,0.10255579657898833,4.3124860290546824e-05,0.0018753825701134925,-0.05654383473944204,0.2921966613635171,-0.004589199040060029,0.00031893106021364516,0.014510695264321662,0.0070015486950100484,0.10977721994553921,-0.020750443184140325,2.646745093153037e-05,0.02276933717179056,-0.0015379189589578188,0.015243390070159108,0.012113811699860312,3.3708047461727694e-05,0.014077974991696211,0.04548476822640636,0.14875113888192806,0.046439291785603604,9.849823363034298e-05,0.0017561866853536212,0.0002826828957306091,0.0017622947108766978,-0.0036492199629793464,3.705214626381168e-05,0.02355696829764284,0.0283135093876807,0.09309842042483568,0.1471003970687721,6.742621362819909e-05,0.006196595228031202,0.004573021216157154,0.013435724511153133,0.0005519196424188951,0.00015562906972821844,0.00705867208055901,-0.012798386639500562,0.01264990135280424,-0.04115462626249643,0.0005782872919888764,0.006618424261715914,-0.006310604674694867,0.023652306622513157,0.0007005044695014285,0.00011230096378149285,0.0035801331846649644,0.029111834849417914,0.09721982095246463,0.003714813794315277,0.001921913939207892,0.0020330005358003946,-0.01604063171433686,0.15911456416151315,0.002795582220424583,2.5923505555487775e-05,0.01199135646919971,-0.0609229781533793,0.2065234053126187,0.04792085540498266,0.0009644575508067543,0.005530496079400671,0.04212722137560828,0.24490087909302702,0.11127211056299023,0.00011455079670789461,0.014847597202335536,0.026043445636054437,0.03840490241370778,-0.23019026252134583,0.00016005054697706175,0.0031508392198823254,-0.0375709830612705,0.0587585679381183,0.013294765857606184,0.0003670162300592228,0.003064584637314409,0.056605474736861484,0.2148493332253027,0.129676316316328,0.0020420894799981467,0.02314618215422784,-0.006246281733754847,0.02414051880861344,0.009096633498289096,8.301667594668706e-05,0.0024209627021976646,-0.0345842183676273,0.04917918229739811,0.02378817199661493,0.0017481305119218203,0.0019676620912658276,0.03694935974681741,0.12223197676405186,0.06320757414699395,0.00011976726126085687,0.006361765293726051,0.03444422565365614,0.09126400366731831,0.02771670283297542,0.00015299501653617522,0.026875106643198275,0.004007644033057453,0.015017330745523616,-0.005515158265575768,6.513438528994284e-05,0.001968138176208237,-0.017176256648299155,0.04410723292576889,-0.00635294615965729,0.0036909381321661833,0.030412216124374697,-0.0473261168847731,0.24812296981900453,0.06889093845974718,9.487995543881896e-05,0.0007220091333506604,0.006138932243306925,0.033359238852290515,-0.044347664932802434,0.00013345581182609248,0.024084312274371442,-0.033603204695498046,0.17843803585846155,0.04102879660918014,8.907215548703502e-05,0.006644487801006769,-0.005251230699919542,0.026587332700884824,0.0011134566335681644,4.9640222919112584e-05,0.012151873148483474,-0.028877929719836982,0.061337789246775444,-0.02170600735549255,0.00022954473198453316,0.010414888184199275,-0.017277870424134614,0.06644371190763303,0.022771259476501805,6.466223357976985e-05,0.00606296859905466,0.04094114674173498,0.515191126348535,0.14390939944145512,2.050325977495791e-05,0.005481750885578164,-0.007638013251113992,0.024013218367614702,-0.07184916170489233,0.00011118315708720544,0.005844153587079906,0.0036995673018857113,0.014172813228008676,-0.000524360634796299,0.0004114554690342253,0.0034381014851689283,-0.009163718214488503,0.049900779543598166,-0.0005034774815318267,0.00010518073272515822,0.007246238755357948,-0.000779735902963179 +2020-08-25,-0.026637820557993797,0.1576959582852106,-0.0026271322851249526,0.00017863424153782194,0.021780128406543413,0.00985478723791183,0.03229860523608092,-0.001390592274309545,7.321060749153871e-05,0.023416755947341928,-0.010836441788907187,0.038444375507951094,-0.029977839587143982,0.00013039204490048275,0.015121932417313263,-0.0012694076383139873,0.0013346964125404623,-0.034970367992379583,0.00032098628055378983,0.02111736188968612,-0.00014072910513549788,0.00025085816593099975,0.00199366969524355,0.0002935306495756585,0.001586217448709294,0.006283608941768399,0.017489211736266958,0.005430267548043945,7.844868231091945e-05,0.01818513448188228,-0.0015087104592207091,0.005188996153805377,-0.0015251040857267263,8.5312448693378e-05,0.010150709620948231,-0.06083887461848286,0.619490605583879,0.19924868358981354,3.367790454654136e-05,0.0199475397178947,-0.001623079300562613,0.0013857681318357577,-0.019757102591079826,0.0009032208535647297,0.0035866410750288254,-0.08140252645645461,0.17093082385616773,0.29517943810442177,0.000166524977884672,0.006295792963305206,0.03220617208013154,0.026515288964130957,0.04691213712126261,0.0005937000737732224,0.010451668978754715,0.023718252901778394,0.30248177527041964,0.05857613559911816,2.3367178262852174e-05,0.0016376739079535414,0.008649095908256858,0.024658596959889763,1.5782543473786847e-05,0.00010419656178241065,0.013523245361139751,0.0053494929519129,0.03210865584436875,-0.07200327058252533,4.68977830007244e-05,0.0007558251458656697,-0.027240964528511068,0.025109159898673974,-0.008095240556360284,0.0021159883434257705,0.0035261319453208364,0.034982747728457504,0.19635481588671974,-0.0016240919751246193,0.00014661029532789374,0.01070742914807981,0.0679157923035379,0.33495837261538813,0.09336871714251181,0.00031397000909166373,0.000871085061395354,-0.027695556908456227,0.1693567558603513,-0.03225727213870227,4.6064730274666644e-05,0.011239376153157073,-0.011667570179981686,0.06410584551332213,1.4851646033752947e-06,0.0002999643180024099,0.01491862622379168,0.02450390991683656,0.3419612303779694,-0.07077504698247293,2.9736424473065395e-05,0.01635193794805424,0.0007456203227323774,0.007316119927999041,-0.011775038422301551,3.4050118669286536e-05,0.0030123313772476095,0.06483748305569074,0.20704573297720583,0.08144700445027553,0.00010087478423382637,0.005575327555124435,-0.02408416964074734,0.17081132546399644,0.018313502636839143,3.256922248543119e-05,0.00019416457430464478,-0.04296782312409337,0.14623780173217477,0.15398496459472077,6.514199934600657e-05,0.009814519392400536,-0.008729870325137208,0.03278289203942667,0.026766246997022215,0.00012176125753519449,0.0018369865580500969,-0.01686092599549436,0.0169357217182811,0.004045385215464622,0.0005690537304438353,0.011192402455388682,-0.00999614297268059,0.03772397865126035,-0.04684214129770731,0.00011153238206394687,0.011333274505193615,-0.010875126658163361,0.0335030516733974,0.003449163912868746,0.0020833830726542783,0.009441552127312725,0.0108284326660128,0.10101045273580901,0.00020895066126175324,2.7566490406299557e-05,0.021553731697951314,-0.01880718476918347,0.06626867671399268,-0.003706007724343898,0.0009278692079441932,0.029367667541191956,-0.020710656353366372,0.1410948305509494,0.029924931369959835,9.774811779422499e-05,0.004909197449032129,-0.006332545531072856,0.010895922188976835,-0.033569873688539045,0.00013717018178367905,0.017723537503202685,-0.016480764413769666,0.029218888943546725,-0.001532739486807384,0.0003237558074463571,0.02222610122567774,-0.05547631484029692,0.2074858241302418,0.13807685561285138,0.002072380586236709,0.0003470946350468446,-0.03502852258007278,0.15144181090055447,0.08417939367484853,7.421067749632533e-05,0.002636840208975371,0.04928325283032115,0.07051477221060505,0.019750859541848263,0.0017373865265309168,0.005140222930619697,-0.03565890769196663,0.14192119537671347,-0.0336695973151141,9.954897935524611e-05,0.003232968360385861,-0.0002928249242683774,0.0008807148663484355,2.1833787639601767e-05,0.00013478236993851863,0.014221874303578878,0.048571427877456136,0.16903834274545204,0.03313256219953289,7.013092540449477e-05,0.015538729122635004,-0.09016064592473357,0.2719259386528658,0.1036101352749207,0.0031425662064845494,0.03265282857152947,0.03461320637215752,0.17607840829343116,0.014126522113922717,9.778591385720948e-05,0.005256929467068408,-0.011560288279024009,0.06475459896890277,-0.008257611473025797,0.0001294669242356973,0.010581334435195756,-0.01798731087177853,0.08512199650952004,0.007780259775417875,9.994777673187954e-05,0.026932022290818723,-0.012339038160643016,0.052975350151080354,-0.01337120490375623,5.8540289565638996e-05,0.0022705003728217604,0.006883726439588653,0.010600155850578509,-0.006212241652640356,0.00031662175115476437,0.016967172549669153,0.009665643984620996,0.03598596415105345,0.005078487313641868,6.679008983404724e-05,0.005428321567956346,0.0334959982219633,0.35312022950512384,0.062305346803395535,2.447381158374014e-05,0.01817431429242648,0.0014725420525832302,0.004487304559570518,-0.018115932294067424,0.00011470731758939829,0.0037894170064217197,0.015376420299268159,0.05813102046961934,0.00657557774120767,0.00041694163537351616,0.0031519892915977607,0.014776877540161371,0.07151750895657168,0.005921046882033017,0.0001183428683074582,0.0012285439243346307,-0.004157741620563927 +2020-08-26,-0.016205392287385434,0.11913275488843732,-0.041876827081013784,0.0001438516831361503,0.015132111258001051,0.005965990047217729,0.023476341127967124,-0.05898502107512042,6.097652063862034e-05,0.00029619889874726965,0.0065904840662344795,0.020545640575048065,-0.037490156060929244,0.00014838665079577865,0.007991654014457596,0.001326920601741259,0.0013627545843931232,-0.009160986896032166,0.000328620870394809,0.011153302634634998,-0.03036799042159702,0.07450139439130589,0.05295462980613552,0.0002132796526896645,0.012893520958593597,0.008177549711999724,0.027504569555536127,-0.0023558203686870906,6.49179923018613e-05,0.0009572438417418896,-0.005829198419500149,0.02160408128419907,-0.06168759808660893,7.917040945861482e-05,0.010573482267133326,-0.01954359630205958,0.19748666225082867,-0.015444306909864826,3.3936365439020775e-05,0.0020610772972762875,0.0011365221715984794,0.0009675107782575512,-0.022778501949594833,0.0009058721068087211,0.00867524924955167,-0.008730371733387822,0.02232262759697121,-0.08866121209061392,0.00013675691911581487,0.008552713803586883,-0.012445463188625225,0.010665560103567054,0.02311917805189508,0.0005703635394492564,0.0040934481610097944,0.025069003045832178,0.3131714947646277,0.0921649352474351,2.3854901483227455e-05,0.00024529225671835733,-0.021494461268963948,0.05624809228698486,0.030053227245446006,0.00011351932626773917,0.015111821165001402,0.008274969597844788,0.039908992815415954,-0.01640468255362229,5.8365667616353904e-05,0.0030043621077496235,-0.0006954716511756129,0.0006628402913983556,-0.000680762271570733,0.002046414031672979,0.004027091175527236,-0.016021223458991103,0.12227404364910462,-0.0113275425673924,0.00010782352129944586,0.009933172928524525,0.06594479553820648,0.3542030841654439,0.07800158276023494,0.000288294541453961,0.006137245987911813,0.024220959827241054,0.1305598884008795,-0.005321193128216732,5.225676672169804e-05,0.011812970789878655,-0.06315038347423976,0.34258926526171307,0.027402032389141216,0.0003038008949956627,0.003061882913861387,0.023761684966685695,0.29999471230086105,-0.024420169648323647,3.286955806892951e-05,0.03137889904225992,0.004480875016653937,0.04778480338722009,-0.006879381810889792,3.1329591779728205e-05,0.0036342208138567082,0.030458426373655888,0.09252952169100845,0.002454210201261757,0.00010603516108694299,0.006461861010735864,-0.00030252946779097913,0.002098710112400179,-0.08083411917781073,3.329719153720335e-05,0.00574653517363326,-0.020085223961163242,0.06768336570342322,-0.014913898800807155,6.579185238109907e-05,0.007178349393292528,0.009806464440945331,0.03643520256073326,0.009051805993620666,0.00012306650444740265,0.000659844425386502,-0.03667123499588877,0.03747871126837924,0.015076906150506067,0.0005592634643460327,0.016733196667746447,-0.028606772832629267,0.10317415804747584,-0.03800954540439982,0.00011670351661960724,0.005392839330361934,-0.020045364161859643,0.05906209646928837,-0.07492420469179957,0.002178332978741223,0.04360208768719796,-0.016586024201997104,0.13417725924454668,-0.0017616261882872333,3.1786709542565934e-05,0.005212203905500986,0.04377947871026655,0.100214971774744,0.036778674271049104,0.0014282664914244175,0.01340320389991395,0.018327414118207028,0.12713823622726964,-0.004992464868865722,9.599545117243373e-05,0.00047731515998832453,-0.011321188898872079,0.018907666009137708,0.009261161931801749,0.00014131865680659317,0.006548467013911662,0.00207053263705396,0.0033433792453888087,-0.03483108991284698,0.000355467870235094,0.017032859379541774,-0.011884298755012821,0.04919259748678912,0.007726964162472848,0.0018725100058326932,0.013672571206127544,-0.00966979868758742,0.033262135843002825,0.010843786865984185,9.32733704298667e-05,0.01639537901307459,0.04379103656837204,0.06740201339821122,-0.03809187929347986,0.0016150632960400884,2.7120579691556745e-05,0.0009880396164407147,0.0036000996419990982,-0.010143454347861892,0.00010873663117312789,0.01449361995411217,0.0874454873401973,0.23721241648956845,0.22073994093007063,0.00014943776404847145,0.00965782311127306,0.009012415704111076,0.03278197252520533,-0.06268361077201114,6.709961969858652e-05,0.005256156357553091,0.026709309293851353,0.0754139322509436,0.006909016824746911,0.0033568283066665364,0.007315936701446355,-0.029410668019549613,0.12865699052911858,0.03247226236286318,0.00011371351160685185,0.029398722636715464,-0.026942008300310193,0.1561420535076791,0.05693857017050008,0.0001251327137756262,0.007249649082803223,0.026619805679405646,0.1346718297095252,0.04132124852805385,9.349250988212135e-05,0.005853906164796407,-0.055046509260222296,0.2626918202713758,0.06878849808550427,5.266603563828887e-05,0.0025112271711285024,0.08225705922571973,0.13559225746386613,0.024097262803031816,0.00029577923525473895,0.029857804454502503,-0.0029469278731205865,0.013011942574004771,-0.016542202868435232,5.631728950225033e-05,0.00804412840526943,-0.011436677528674607,0.10412955354791024,-0.03070856122110469,2.833721432403705e-05,0.004468972431347751,0.011726956342743082,0.03114927682540022,0.012457426992675037,0.00013159709566643472,0.00704219624750262,0.045308607534264134,0.21504598688434565,0.16469387477222605,0.0003321064756413059,0.008428575515764826,0.04971093677094312,0.25510453438141234,0.03893441134379022,0.00011161063142619563,0.011991244662433608,0.0035506565737968647 +2020-08-27,0.03204185173104381,0.20970921413440144,0.03265333717413277,0.0001615796554074512,0.0048608908383760445,0.025991225534075898,0.08537041449586982,-0.022953468832584863,7.305162722856159e-05,0.025697339858980057,0.002269736046459476,0.007424841678480626,-0.011306351985755088,0.00014141170606438538,0.015077327688684973,0.013165438471693037,0.013510026567491,-0.05183679929407292,0.0003288872072276113,0.02024805271744847,-0.024150554102428848,0.05999686064557903,-0.00929550397579744,0.00021061841754708825,0.00013453119735930968,0.003712210786992802,0.010046003323675059,0.0006414269463240824,8.068374547653432e-05,0.009418252164631763,0.011728010696368295,0.043165494307207404,-0.005140957794408152,7.97218723532233e-05,0.003939387740357497,0.0039465642776338105,0.03175107301130186,-0.027521132642156193,4.262450891099644e-05,0.004271296997843699,-0.008082626555569183,0.006799159135818666,-0.045299903479519676,0.0009167313722745165,0.0214629300241337,0.001532849818649708,0.0037045351534482998,-0.003214989317772681,0.00014468642065769058,0.01756988384552326,-0.00365236672213684,0.0024736559339444894,-0.002236764704809883,0.0007217045491809489,0.0030994960685708545,0.005481069455980606,0.07187467916042027,-0.010582384599041395,2.2725433471641526e-05,0.009734826915729565,-0.01944562148191174,0.051430268188788875,0.026149437071216315,0.00011231921942353215,0.015945479607000948,-0.007008603181027834,0.03808805233625381,-0.0009554789568417694,5.1796990185517236e-05,2.6249387404052074e-05,-0.022183065688100544,0.019442284707552725,-0.027546147953077114,0.0022253444319074844,0.010898600750298911,0.05932173060381769,0.4383374134594666,0.023163218425304978,0.0001113672201820404,0.027064215922909887,0.06262144839465852,0.3677362755929483,0.05491394232590338,0.00026369073273530236,0.01489627798379769,-0.03828085261531277,0.2728009828480047,-0.04484542179826736,3.952725244600401e-05,0.016873326034375646,0.04154550846373925,0.24138246959076853,0.03065105588913849,0.0002836646120559031,0.010942351199051872,-0.014111159757396264,0.20192768854662202,-0.025655337636344446,2.899993777203937e-05,0.04693225165850287,0.01250709738099672,0.12225310464775535,-0.095067789933995,3.4180494651027923e-05,0.006793613688716662,0.001816380717653773,0.004917406412329607,0.00027281033612341275,0.00011898536178869582,0.016310749924469767,0.024839940726688346,0.16543431946529008,0.004248616692488596,3.4683053196354073e-05,0.0069091895008530765,0.005917337989545066,0.018079937426603347,-0.008854287473101977,7.256159749605621e-05,0.007984994665307459,-0.008758164280978337,0.03932137733578912,0.02706364860783682,0.00010184341674996994,0.0019423628268412036,-0.018215236119414308,0.017200384963515676,0.005125479060927183,0.0006053021264977016,0.002992445399503249,-0.00021794822795536683,0.0007735562135467464,-0.0005289221775460445,0.00011858983708831042,0.002909429602790088,0.035502090663366,0.11599558294642406,-0.00766989113204758,0.0019644078077235704,0.011456205792212076,-0.0520183451043754,0.6654059459163548,0.04906960246459531,2.0102591592508754e-05,0.0058792106478718215,-0.0017842300042309723,0.004842296714185277,-0.02226389648304907,0.0012046772546954639,0.007604311231026475,-0.04347654614393663,0.3395286878363991,0.10822503334601905,8.527155912943847e-05,0.007356960961869468,0.014205676339219465,0.018594223127027583,0.014530091129251393,0.0001803139236189426,0.007504426501814976,-0.048664713906410105,0.07155230710795289,0.06419625828711074,0.00039038619072153074,0.010127923661947051,-0.006578221473196967,0.025843840437361005,-0.007126340320859997,0.0019728850471633953,0.022010718137929024,0.03187713226071292,0.15623597939618986,0.010682726587750458,6.546189309887563e-05,0.014980715142385793,0.02778138250800516,0.03929456684452571,0.007053767032376814,0.001757512975798731,0.016965994641393714,-0.020426942506050472,0.061536035091479105,0.016825236195207285,0.0001315194223779008,0.002993711372356501,-0.009978054953955658,0.029086143112038484,-0.005428156483638803,0.0001390657335371139,0.030804255902881963,0.0191507375504668,0.08958895600183844,0.0023113378817982396,5.217289717718849e-05,0.00814433150380993,-0.03635205550578409,0.11353436548345244,-0.018926462642826318,0.003034727454364757,0.005082157181983129,0.016091055292283992,0.07785945657009831,-0.045078719680216296,0.00010280487981326704,0.00810036123076554,0.02631333222297658,0.16956163945299818,0.030041405795236408,0.00011254054821834072,0.006028531355282746,0.031666690121573415,0.1961982725613888,0.026889131335102137,7.634070946122808e-05,0.009707467182023862,0.019005730364046722,0.08277454483956331,0.006124524968124715,5.7707884933524565e-05,0.00651955927707069,-0.024462716931999536,0.04696789623482912,-0.002066861884387744,0.0002539410880902728,0.02458510661099491,0.010240596854660538,0.03814944364464633,0.011753818210207755,6.675002559400724e-05,0.0014509266109767006,0.016887353930194537,0.17990480769756176,0.003385084571032362,2.421866063175985e-05,0.006705696349312419,0.0026945740884594845,0.008338511978817745,-0.19159710627306253,0.00011295632043983917,0.002326648793223185,0.008084528933634403,0.03845774239500517,-0.007437573992238753,0.0003313591019684771,0.009494948891121954,0.05830975775889224,0.28027550481313596,0.06346582157235259,0.00011915928530264676,0.0026001164917659274,0.004881951878057972 +2020-08-28,-0.010921797859928332,0.067555557803289,-0.007254333138137138,0.00017096989068228933,0.003224359804883008,0.031529940860636436,0.10670030939412717,-0.011947884486297104,7.090355392203503e-05,0.012981552933097499,-0.012704523318481948,0.0428703866713999,0.00166340666067361,0.0001370876016573294,0.010016272274024206,-0.005802327692528983,0.006748356688361281,-0.007017553352937976,0.0002901830755216882,0.004978042868713985,0.012927113845955034,0.030119997211845734,-0.015174383324148246,0.00022456621468100642,0.014333438968641457,0.016233590340202633,0.037039159079604304,0.02249747280534278,9.5697414396134e-05,0.0037313147750622916,0.04739516142622525,0.17905836260625932,0.10417597656439244,7.766569862775121e-05,0.0034197091674951848,-0.01817252758370179,0.16486955786992355,0.00949616144675105,3.779840533683147e-05,0.0011141990274236638,-0.005044002826771422,0.0037578248954453996,-0.00025511154090038875,0.0010351030032251626,0.006376117043565331,0.001763217445692368,0.00424466799190364,-5.5645649550013875e-06,0.00014525263988651965,0.011039126664975401,-0.027426934116353163,0.021348946261135815,0.06834796834234291,0.0006279501629912193,0.0008151029162708459,0.002928637374739438,0.03976357667247996,-0.0008283907974079359,2.1948404137122497e-05,0.005028792057451796,0.01011234615002159,0.03600460771569341,-0.006871310749792138,8.343434899558864e-05,0.012707634681210393,0.005053827055057071,0.028391878843898627,0.008053727683298923,5.010580700391401e-05,0.008966037597246382,0.014182631799902543,0.013988064000698595,0.025942979381896374,0.001977525944654937,0.005965351466224572,-0.03453932046702468,0.2620219207662422,0.01621090895311032,0.00010847465330542673,0.008329452538809073,-0.015647633291469846,0.08291370749617728,-0.003216133905835614,0.000292233874795063,0.011613500444726059,0.037831592487297866,0.18790495543355468,0.013314056252145988,5.671231106439284e-05,0.024074166335673053,0.0013982368833813515,0.008406101965545568,-0.01133903539265135,0.0002741403151861128,0.008928731103304156,-0.029083412610890338,0.38044065702277713,-0.0751567414094768,3.172405345392771e-05,0.019538127253025606,0.019326472076875056,0.2519893623694038,0.04123792437958054,2.562430441494205e-05,0.0033734289019176356,-0.01711720234894783,0.06102839117716288,-0.02354014828577576,9.034905598441235e-05,0.003875414539245875,0.006104609801618731,0.04844602381737144,-0.0022773297010843874,2.9106644889965748e-05,0.023900741745997253,0.02684130961522697,0.08224911408837401,0.09579848811840566,7.235188579824754e-05,0.015527763082704156,0.02029609811581553,0.07909981667099503,0.0723046621479732,0.00011732367882894352,0.011799577906012243,0.008384476725442902,0.007770449323082699,-0.004107967383995811,0.0006167446522740461,0.013518321836309148,0.009376594787558869,0.03841655144018105,-0.07172628874013867,0.00010273366472741971,0.011833060772486853,-0.02480506211404628,0.0760839805671092,0.015758616894514948,0.00209250385905552,0.005937749935955631,0.013336608586310422,0.102288038057428,0.011789755808383833,3.35276220346882e-05,0.02450308567485663,-0.020582388555936384,0.05969260517671569,-0.0962410991361216,0.0011273181753975877,0.014386369531131236,-0.03590516133685765,0.29837051753537824,0.03088246630846043,8.013580762250763e-05,0.007407351948204375,-0.0018656945210653603,0.0028589780859698075,-0.011782480265745382,0.00015401928251045882,0.0020241445532566274,0.020549365179316458,0.02381579937516328,0.0076391724274468345,0.000495264455856431,0.013222186595971316,0.028676743358653032,0.12001212192517474,0.014816467897783382,0.001852060017609369,0.014070672774766082,-0.012999949674892007,0.05462365359057382,-0.02092605069593558,7.635742886232071e-05,0.0032318748964415716,0.01906686057454686,0.027136697786155715,0.0024055760006986065,0.0017466238437749625,0.01609092306816262,0.0005698133888686449,0.001908633572352619,-0.0006563320601211931,0.00011828403399999465,0.009169912567686338,0.030761338283015947,0.07718973164949679,0.01402704439476127,0.00016154966830819376,0.021547086729522002,-0.0364763939396724,0.1569875101743048,0.00738529552392189,5.671014018135751e-05,0.0136275389774048,-0.02252612854272743,0.06843237863066302,-0.006783633465845982,0.0031199165663427352,0.0004890637469430539,0.02416558945634496,0.15318824361751132,-0.04009746761879914,7.847160347604203e-05,0.001737812134125169,0.010546103136649628,0.06100782576175755,-0.051368650138990855,0.0001253623864801693,0.0031088615326900584,0.029581332648119796,0.15120617776389708,-0.013917924235752303,9.253305455094479e-05,0.008171922225105476,0.013643277845149187,0.06292240615565935,0.0002423481265434361,5.449551947346373e-05,0.0006600288195687551,0.026204273229153613,0.04999668522142265,0.002540200649670361,0.0002555408303329825,0.015268076854202076,0.018743415283989127,0.06748757001551152,0.038342368096806335,6.906202565536761e-05,0.008306718556552389,-0.04656282202239961,0.49683241648511356,0.13702339222130802,2.418024265948704e-05,0.021048094653404462,-0.006586636930486158,0.02073447447940208,0.0029498989606780864,0.00011104005209718317,0.003571358244696901,0.020515486281359987,0.09230181574172926,0.008788202563578469,0.0003503479188486279,0.013251234441913933,0.01334868749446308,0.06395978026092675,-0.045061515851802965,0.00011953728809267254,0.001062127094289229,0.0021954293769554994 +2020-08-31,0.05225169926382441,0.3459807240318196,0.0644255196331757,0.00015971109943077418,0.03389954650576203,0.022618803511684663,0.0752108271385291,0.0021895756123219067,7.216054250619227e-05,0.018285108747264592,-0.0031098843551540657,0.00861547450995583,-0.003852248550357377,0.0001669791485538661,0.001241560546625158,0.02423083384204231,0.02515441477478114,-0.026031901687033315,0.00032510376424753476,0.014121665071526554,-0.018815750590100475,0.035649082376882385,-0.021619973138032048,0.0002761664800712058,0.004413919878256045,-0.034216130560213484,0.10364988741322635,0.11627707388538003,7.207900776484649e-05,0.008670001716493824,-0.033207335354459105,0.12748476342795015,0.06162301752320351,7.643030644254363e-05,0.005394438617652569,-0.031526927435369695,0.2387409857948622,0.014752537315535458,4.528488600618419e-05,0.0023030106284510667,-0.015632859235816813,0.013568643873576005,-0.06935534630040424,0.0008884781666616972,0.0035199471998514655,-0.004523428435868223,0.009582748896755235,-0.016533341026632585,0.00016505911113177054,0.007888924622082663,-0.0017198656004421245,0.0011495051583221038,-0.0011290063927487722,0.0007313208306993521,0.017005413320436123,0.009958839734821428,0.13659552087899998,-0.002606489011168367,2.1726765364779222e-05,0.007262107256461115,0.0032572858437947797,0.007087059436354042,-0.0005963121214589641,0.00013653400655422944,0.003604868426958033,-0.000840986995837313,0.003912783230596489,-0.0014437698765850419,6.050138409797162e-05,0.0008075080186949966,0.041355940321140636,0.0320341458381877,0.12191688543859411,0.0025179536075034745,0.001433484591333806,-0.0028046539667072458,0.016818265121448444,-0.05631737338828281,0.00013723035910428614,0.0038995019219069003,0.037766637618306134,0.20266580407034784,0.01256078403787933,0.00028855996520030686,0.01946324866661299,0.036360091741030574,0.1934713152090896,0.025722363041831137,5.2938220961997255e-05,0.01073047548177423,0.019676352652201034,0.109916742826707,0.008517310865842648,0.0002950309343690254,0.001725795190990499,0.03771176950353159,0.5576905884853874,-0.022139865925181107,2.8061690254446856e-05,0.014177146913800696,-0.007540780055529759,0.09927264850939739,-0.06190186283164863,2.5378641691509194e-05,0.004720687273425717,-0.0233847284268677,0.06472218094047726,-0.1395948014564196,0.00011638632180459406,0.006103934487037897,-0.0012805459265552157,0.008973699379665974,8.981063344703031e-05,3.2962186975970345e-05,0.007778658322095403,-0.019025235254556898,0.0532998199899714,0.013334045184367333,7.913738140908046e-05,0.0044690509306664315,-0.008024768758980992,0.032169234506168716,-0.03000357768246041,0.00011406184590336618,0.0016917349775534664,-0.05523792268564297,0.05516854726791499,0.05033647203044727,0.0005722968443747915,0.017893008488734173,-0.029214975003929163,0.11056031575653595,-0.19587156799539399,0.00011122239886366173,0.000748315657001385,0.053901729792062196,0.18173736392445952,-0.056641020958788424,0.0019036085770467001,0.030047666113947963,0.02744980662283791,0.2833990927752623,-0.011334224166543026,2.4907092230715653e-05,0.007088959544195181,0.01719968893105715,0.04596182719362196,-0.07019819030822229,0.0012234735268600448,0.012994270578858049,0.006814737677863741,0.04676370827232401,-0.003913226136586477,9.704336417986045e-05,0.014418053366482666,-0.02766456576045317,0.038879566642635706,0.043710660721705485,0.00016793755591151436,0.009244353265553135,0.010412475617801521,0.016949366244362777,-0.0030576443863338347,0.00035261797509787555,0.01793435657450317,-0.017378986413614118,0.06718858944086055,0.004194908141951432,0.0020048378885446872,0.020325360862500714,0.007945136863654606,0.026784281345754193,-0.05295347862687788,9.51725607988712e-05,0.01570094336744361,-0.021625877816087293,0.03013182156020977,0.010923202289249907,0.0017841261135376515,0.005659951269129041,-0.02735542041329668,0.08943124263397755,0.01060123620891303,0.00012119094303277097,0.010506202006448077,0.024403618813212145,0.06273560352317462,-0.012473622032479977,0.0001576886838842872,0.023127122902259937,0.013046717057063197,0.055682106682894264,-0.0033616626232863306,5.718728925406003e-05,0.01761699209012762,0.06937820163874968,0.2213057962879971,0.10020281947825033,0.002971312345349795,0.0048858045362923375,-0.02263841506303074,0.08969188445626479,0.022175261594712187,0.00012555483456264203,0.03142823127584238,0.03745956155982375,0.21724211626688686,0.10781511687643505,0.00012504877725738348,0.0037803949822583015,0.007827455146692718,0.05052979668516648,-0.021317336622226953,7.326924824443977e-05,0.0036402401657575673,0.013361562737883175,0.05117571235065218,-0.0674773880721658,6.562068407725698e-05,0.01878066102578502,0.0018118016023224188,0.0030938387534346777,0.0009410989114323984,0.0002855238285281414,0.01148439613148646,-0.0005593219814149334,0.0020534802920349512,-0.0017119388796017145,6.773072497615671e-05,0.0011613075067562497,-0.01579524573827791,0.1631324793473165,0.01356542914631341,2.498142659099623e-05,0.006815718334426947,0.011652291372716396,0.03668339707770258,0.0494632004929745,0.00011103266237802323,0.010924128945220863,0.0326069309245922,0.1301018132829739,0.010518282500091328,0.0003950522547133165,0.014345991004576897,0.02767736545445877,0.1471049979797591,0.00658437524167369,0.00010776286171422813,0.010377271344560589,0.0048592805122428025 +2020-09-01,0.00024693912716523337,0.001683251070290195,-2.886078080849301e-06,0.00015514135969367447,0.005083086336030173,0.04094028647050928,0.13742273882902903,-0.03063370536855903,7.148300548793748e-05,0.0011212129524826816,-0.023697833614754835,0.08267143268078794,0.01023530327628708,0.00013260209526767044,0.013124857214018133,-0.017201149462255913,0.01623236955680593,-0.14842063269437974,0.00035763779140377455,0.0008007979392285237,-0.050308592618165185,0.12017821912469376,0.10208624448342124,0.0002190353324912435,0.021548790312607966,-0.01711592137634883,0.053264765967708516,0.005918085310528405,7.016281410530075e-05,0.014344643581611919,0.008757852306170686,0.03304288324979844,-0.0007077562035261448,7.776954108691904e-05,0.005493685518575065,0.011381153105954306,0.09171328621759821,0.0162919974696353,4.2555198941470206e-05,0.006500919689844072,-0.014012387177952007,0.01107201233544827,0.00046685084859811164,0.000975956260998314,0.023104295619621937,-0.014445780201695287,0.030534357156587904,-0.014427468479780789,0.00016542993832251247,0.0167707975339426,0.003061241218132983,0.0023669676659241958,-0.046167578057539085,0.0006321637451392505,0.005347697013057462,0.005274548244043533,0.07421473425127516,-0.0005830067560379205,2.1179608194389736e-05,0.014471790965288375,0.014076993658670746,0.038121181289566285,-0.00014285953341181218,0.00010969696267415127,0.0012708856680960247,-0.026141115877605776,0.15153127115917,0.08326524792439358,4.8560558630066456e-05,0.007135007601500996,0.00825417389331399,0.007483530377196141,-0.00825465647497065,0.0021512459253327757,0.0010014853153492514,0.02381726594124584,0.1607554766456117,0.004366495759547338,0.00012192092144388175,0.04031960812428753,0.07781103123018646,0.48035819774965866,0.0711580156995023,0.0002508327249881635,0.015175433394658107,0.01546141362788714,0.08855411090466876,0.0024561010095635583,4.9181461198992126e-05,0.007635558434252687,-0.010897439399020345,0.05056909729500146,-0.01734619576772592,0.00035516165320847765,0.014921634594659186,0.013500801887354585,0.2212233637545294,-0.020371010872649836,2.5325545235385923e-05,0.017882962008700678,0.00909777426536087,0.09362285663617823,-0.0009931840741604805,3.2466462993933466e-05,0.001071594334622256,0.030936897704260998,0.08308948419154269,-0.018878179097571876,0.00011993707528011301,0.001986367400460715,-0.004819377365776996,0.034062860959280634,0.0013813976930593564,3.26815155460969e-05,0.005036463143112875,-0.030528620809790224,0.07915685808484924,0.030063644830498993,8.550588752629489e-05,0.013018754706570945,0.0022200917737450945,0.010073039917892448,-0.001619349072779288,0.00010077642971817775,0.0043417144997835,0.01747627358443656,0.016546556845837227,0.006007326415324192,0.0006036938624087164,0.0115485189966681,-0.016764485850384474,0.05963424756891889,-0.02873211573582264,0.00011832608725539882,0.008365486088563677,-0.02080269880467468,0.07561803708673458,0.008008823630322874,0.0017656859293726384,0.021643370063811833,-0.004667315004384566,0.04089742726198945,-0.0740858170529771,2.9346297756291174e-05,0.0017890849796003095,0.049145901393731616,0.14548460570433516,0.07476200902006398,0.0011044384896191678,0.016974857437745426,-0.04631782506827903,0.3049772464586193,0.061874111548084025,0.00010113613726201316,0.007130180454900329,-0.0117117743007143,0.016763686797675575,-0.04143371834224256,0.00016489160396337632,0.013702917236357411,-0.003355302454097767,0.00424440112069287,-0.027820112684291912,0.00045375264306333346,0.017713577844154095,-0.025588645157351445,0.1060616075073063,0.022381031453149472,0.0018699906191898662,0.014138404931738827,-0.009375298378475573,0.031995604778857024,0.006588246449631508,9.401240120693388e-05,0.018222048407526687,0.017231134470492508,0.026550859959817718,-0.12120981474067725,0.0016132901097454893,0.031879642794407574,-0.036056239022504315,0.11630035329896654,-0.014378595626674335,0.00012283310397566183,0.010406824056543095,0.011891464505142507,0.032065260025591555,-0.004891361008136369,0.00015033529491921568,0.006079422728460037,-0.018230889061055067,0.08041131165143797,-0.045684331498943034,5.53356004724888e-05,0.023157276476300358,0.002862921905556672,0.009836014019544263,-0.053000343794818584,0.002758725062761331,0.022887305415924823,0.05417200695786476,0.34111966252282033,0.05330151019057753,7.899666242562587e-05,0.010794593515804649,-0.019713228471836215,0.10053993386239499,0.02882252327656384,0.0001421935655760036,0.014548091695139672,-4.727257309829153e-05,0.00025906331703339495,-0.01359601007138592,8.630819197464515e-05,0.009558455196854974,-0.016641017668959934,0.08835378439349481,-0.03371886647648872,4.733715147020257e-05,0.005333455185600387,0.028794708411493224,0.04779059131733068,-0.0717964730627552,0.00029376474534495884,0.02396870040710483,0.011748166695316798,0.05676836099309344,-0.049534160489587455,5.1460988059041464e-05,0.008820874467080814,0.006687997234542939,0.0806862180494972,-0.03892259995116251,2.1385923588597433e-05,0.000871464025034561,-0.02233090805543756,0.0671048119952201,0.06974655471821987,0.00011632195267665345,0.007172639000009724,0.01819002798183129,0.08604526303893804,0.0024904542973233886,0.0003332225407798235,0.018945826814605125,0.03485205912621289,0.17109394472339762,-0.05662872204711965,0.00011667171953919202,0.03579503272403086,0.0002542216857211114 +2020-09-02,0.009744125312900281,0.06697851309241008,-0.010020736268121333,0.0001538487394907314,0.008905300642527503,0.017578619982844178,0.05770112416094666,-0.001035750888376259,7.30989316626459e-05,0.0037822203460386146,-0.00027024386864225094,0.0007958604163801745,-0.04116114913378787,0.000157078284324503,0.005031644950921437,0.03426619536834872,0.031036162370491886,0.09502045318049485,0.0003726196278094647,0.00012018573150478565,0.009623677321864787,0.020786606770141634,-0.15077505269430203,0.00024224522473895852,0.0046634240870820284,0.014979398169099314,0.04301991175442619,-0.05209224096074441,7.602765399979308e-05,0.00347678887063871,-0.05005615286419831,0.16394607655641624,0.06907399171787688,8.958726856585652e-05,0.016693638817521093,0.0310064534976339,0.2456064946086058,0.0484754640932215,4.3292320252138087e-05,0.0081450743019372,-0.019057209674577885,0.015455758108995129,-0.001100777562013707,0.0009508538881685769,0.019873946343619477,-0.023046852626938577,0.05279275738611921,0.008667448242178294,0.00015265082829708646,0.014890116787183136,0.03436991068629318,0.02457538389788903,0.09763785376219067,0.0006836006249099427,0.004528406421684027,0.0026772744026541274,0.04023229332540433,-0.005740794077058848,1.98308297547046e-05,0.008597995756795486,0.004498313157971442,0.012306415380635368,-0.04694975825379615,0.00010858482965344626,0.019057563056901865,-0.007244886289609471,0.04202656079163996,-0.031310905959765156,4.852544653501747e-05,0.0009416962649151769,-0.03628555028310313,0.02822949775530652,0.01884265097950942,0.0025069953867760775,0.0082256246188372,0.001349503675499253,0.008804397270802533,-0.01775671783515171,0.00012613236793779763,0.0037531993500398942,-0.013688612080907336,0.06885362951357252,0.0010626406621632634,0.00030785117095589066,0.012982794706517545,0.010651255606238424,0.06768845800327827,-0.009244495187300462,4.432483649534287e-05,0.05544942034327148,-0.01868614993133097,0.11260484332720704,-0.006968192155405007,0.000273495110151354,0.007641719751060166,0.01159290590513431,0.15816554411951608,-0.009922860855077896,3.041659971185836e-05,0.02925164321617865,0.009790319602029605,0.12012800655219462,-0.09148095676532221,2.722916403480847e-05,0.0003490910828247947,-0.014062094406532152,0.03324217563354181,-0.011523145727964014,0.0001362646877384302,0.022943679137297647,0.010496008894167259,0.06980111473966605,-0.014531472430152596,3.473395263115959e-05,0.003936811203063148,-0.0013861294577873478,0.0045504952731430775,-0.007888705697611671,6.753400535015276e-05,0.004884163759118692,0.009852986378746965,0.03170802684867366,0.009492566960829705,0.00014208468236872216,0.0009968019215787158,-0.03428553377012332,0.03622557741549711,-0.165608495051447,0.0005409674817463077,0.00841483643953516,0.029436547247446033,0.1193794233230351,0.11343162344419103,0.00010378710560873217,0.0018533558707171777,0.07923203941864176,0.27048925273320173,0.012890392760039294,0.0018800525793584498,0.0028045903456846545,-0.007487918381061142,0.06421678218772636,-0.02579341786375173,2.998435819199399e-05,0.010707517049524154,-0.025532045823841998,0.07451648765169533,-0.029299817098562705,0.0011202230609584916,0.0027947218935463966,-0.005952627386383565,0.042612941270544324,5.030308262689037e-05,9.302353299516135e-05,0.02475517715306355,0.009602481592563604,0.015728566083897843,0.006759606611987167,0.00014409195647019542,0.0034263129875642994,-0.0013122932830769549,0.0018155108284222078,-0.0013901323800801174,0.00041489287448062754,0.04464555503201477,0.02854237881530209,0.11778802273133294,0.015934268898840417,0.0018781893581008536,0.018179797867896703,0.011736147729384427,0.043928824819618593,0.0032557192103908183,8.571687959690439e-05,0.0047402071826462815,0.0010720321837416223,0.0013585892164482026,-0.019960784900300038,0.001961538570638375,0.0177539457827998,-0.04583974591805333,0.14810250740307407,0.04030641710136274,0.0001226297455090012,0.0029437348704470785,0.008208328856248216,0.02492033424064715,-0.06186109738781375,0.00013352459234388937,0.0002056488988537433,-0.07172351131147954,0.32554161444171487,0.16111343091966765,5.37735805127073e-05,0.007823891957372197,0.012076851964144755,0.0375663112278104,0.00016704442654110076,0.0030470055731547335,0.01194627561011722,-0.01664956974796566,0.10206930418442901,0.010851308472923218,8.114250886991794e-05,0.030143411359294697,0.013001540579914437,0.07875069270697813,-0.03258438339438132,0.00011972951343752525,0.01378443118453882,-0.045348540300066534,0.2850663996866195,0.08379954640159296,7.52429787659068e-05,0.005971557201875976,0.0009462651818645029,0.004427125376473736,-0.00042078346627815166,5.372030056425607e-05,0.005086354849230306,-0.0286637038298949,0.05389567391776698,-0.008920606996706562,0.000259303151506482,0.00028608749950561046,-0.023641266119045767,0.09901585366500862,0.04649437895373881,5.937182127880968e-05,0.0010592961360056997,-0.019106370421040315,0.20489540373263151,-0.027278869715293322,2.4058982843453063e-05,0.014048143456925245,0.012683091846892355,0.03760144727555621,-0.008407348898844844,0.00011790427193370665,0.005796308930243398,0.019822021230508788,0.07088060600908762,-0.0059737202906700575,0.0004408070034527955,0.0015155447310192653,-0.010004334849475726,0.048172139444734315,-0.023815045616627242,0.00011894989978355742,0.026791183295308885,-0.0018439713607112317 +2020-09-03,0.037748498507555614,0.26122374872534326,0.02511254970111562,0.00015281768207978292,0.00728456297946267,0.004870851595233601,0.014354230661366409,-0.0024516324031452733,8.142082593751345e-05,0.006471078583282847,0.001122945280415078,0.003603778671424273,-0.009402111927899297,0.000144144371234648,0.004447465037113357,0.019888377342752547,0.023410387768279202,-0.011976052455112986,0.00028672040417160115,0.015633170586790254,-0.021073050893132817,0.04269178063650344,0.004109414614882701,0.0002582741370186568,0.003400039005238888,0.021670445001126293,0.05316918429242055,0.037045141128466276,8.899273865242143e-05,0.020820659083631003,0.03886885180618509,0.1670323746662102,0.06274806361411113,6.827959107011318e-05,0.010838499111274198,-0.017156754401977902,0.16170191227255062,0.006304058064542533,3.6384682793173403e-05,0.0051963300472786245,0.02557161277190417,0.01951762697312078,0.06299805810437273,0.001010359414569374,0.00012303956209166805,-0.028212312131760755,0.06496466204848748,-0.00837482908495012,0.00015185300233833121,0.010394366860894708,-0.015832959554444685,0.01199390015892416,-0.03996850793248656,0.0006452470553842341,0.01551426640933098,-0.004827126213196664,0.05500847657751502,-0.06121153085156201,2.615061013598679e-05,0.010992366781184155,-0.008928633502701545,0.02552009974742841,-0.01742482186788063,0.00010393304875582464,0.012661366503005162,-0.011240368833385493,0.05890193297877351,-0.043797021908465246,5.37171339684811e-05,0.005396988638390194,-0.016518300085079894,0.015220435027842455,0.010218358756738469,0.0021167094983863565,0.009946468754123413,-0.006011633524920131,0.037141971217642476,-0.010636677717310396,0.00013319246495591792,0.015401647798569597,-0.007297946902585445,0.03997011155405031,-0.060260064886668865,0.000282731092166647,0.013707563966641701,-0.007438759103529527,0.05072032988298327,0.0005944153525123459,4.1312300656091115e-05,0.006426535340642034,-0.00258378742754651,0.015979576949186287,8.778163054501658e-05,0.00026648840084606435,0.006519967273167288,0.03718066032588499,0.48242075591233563,-0.0027005767675933223,3.198315810596237e-05,0.006063732522080241,0.00386744161208778,0.03428302246109301,-0.03462374111778981,3.7690020320380666e-05,0.003193768004704667,-0.01279503625088754,0.03134822198797132,-0.023830209876528084,0.00013147747743124362,0.007133424268289282,0.01743345073491999,0.11757748969448788,-0.08400528437579534,3.424928829608926e-05,0.016895606400798145,-0.010780708020126654,0.02884398381472617,0.0011629805312755568,8.286467341697489e-05,0.010327512347679372,0.002199198928792637,0.008052200413689757,-0.01846291434249004,0.0001248816232718952,0.0016470048396018168,-0.05026978004306948,0.06401265093449197,-0.04325193939795717,0.00044886602387549514,0.0031573267372902733,0.013587794119552559,0.043148188055621844,0.007852532269419238,0.00013254776345744904,0.007858669915806315,0.026909847148520235,0.08919928549633536,-0.12959265072206178,0.0019362838805978145,0.01874896765592801,0.02877651305785503,0.28382411000677826,0.040973240913069975,2.607180375675369e-05,0.001835771334519231,0.031214653121053416,0.09891147305983734,0.03720273222397407,0.001031770515739144,0.015734072382323303,-0.007506698489106828,0.06316919043271,-0.059019760826041885,7.913512718586702e-05,0.008909361718293573,-0.007356423074707445,0.011452352788057545,-0.011383259652987402,0.00015160634102807076,0.006976944912314731,0.04022160486456921,0.0625356671411805,0.020200241944849637,0.00036917775259826327,0.020415053523727796,-0.025635762054687813,0.10855421178303379,0.021466483399093968,0.001830416385355517,0.014332946141761723,0.007649242562208355,0.02772324413049176,-0.0755098660270706,8.852475916662862e-05,0.006747984945077999,0.018202255016359,0.02395462418248411,-0.03253551756263743,0.0018889176501241587,0.019400474565376132,0.018072093601349076,0.06285802336952977,-0.02900991910883353,0.00011391050669518102,0.011723451147174596,-0.03803180757973201,0.11065758237549983,0.027236967163288953,0.0001393240741068456,0.01969084691156286,-0.0244486822486642,0.11454551845939939,0.010693756790212314,5.209442861534022e-05,0.005854538510117944,-0.05955275378158653,0.18604323479075785,-0.015742882195739372,0.0030339332693429446,9.898876528370923e-05,-0.01759103726987778,0.08353543241606634,0.009359631537947492,0.00010475175176152475,0.006161296559301084,-0.008047368886251901,0.043928497781946726,0.005015101293173035,0.00013285207499202234,9.262740451993889e-06,-0.011937357741954452,0.07804666644078714,-0.015062052027925394,7.234400532590385e-05,0.026698860282134935,0.025591448539502466,0.14149840158997148,-0.02275015308841068,4.5455949057267715e-05,0.003662143205037322,-0.02045954863769042,0.0412435941046669,0.008131842238084433,0.0002418627231755542,0.003868652346284488,-0.015085658632489276,0.06264712135140528,0.013388070523457002,5.9879412688468956e-05,0.003409608756934583,0.029781673487337273,0.3119253287814973,0.0412744146824187,2.4633705318568148e-05,0.004189145863466247,0.013340775088740667,0.03496872276028608,0.045179937272235564,0.00013335529275227014,0.011054616511803774,0.015371771111029728,0.06413990725403063,-0.01409257421846739,0.00037776659565718214,0.004725959734787023,-0.015352549010094368,0.06584845497840507,0.013024776156686737,0.00013353856315479718,0.005765645358546977,-0.0003176138091313674 +2020-09-04,0.00332683557546589,0.02425151108852598,-0.00041133524327870174,0.00014507050291502716,0.028922380682792532,0.03574540955946441,0.1354879696821414,0.0181401645263087,6.33038420630752e-05,0.012193098052248585,-0.02712217930054224,0.09057797292997431,-0.03384516179838197,0.00013851576022724568,0.0263558771220497,-0.006028767705757104,0.007364459015987086,-0.0005172323529060047,0.0002762838867997334,0.008531294775635676,0.015576479725568741,0.03249141674197492,-0.012577236062649294,0.00025084095058389085,0.004682372057541148,-0.01757512912924863,0.03987231788677327,0.01335123393384326,9.62440258947265e-05,0.003643874786341394,-0.0035345964092642437,0.013901127177056258,-0.007001278804984517,7.460701606160948e-05,0.0047939914614900355,0.02075947402347847,0.17239635304320378,-0.019111946026503637,4.129399357864878e-05,0.006926830784890786,-0.007102435199436983,0.005976521768788592,-0.0010217061069945303,0.0009164389961962334,0.007295712805624632,0.01251798292367341,0.02801356728016045,-0.027151830654221037,0.00015625280602884245,0.0014872241736205896,0.016936083355804238,0.012093406895520242,-0.010218060610867448,0.0006845239935059483,0.0017387080169931957,-0.006804871374235219,0.07050008797671642,-0.0002784089656488364,2.8764249758569045e-05,0.0023460496641994053,0.029945096928456837,0.08672226369076277,-0.018843073961075374,0.00010257609350110053,0.01864295036574841,-0.020122315639728456,0.13887166679839572,0.026402561093295477,4.0787409886422046e-05,0.002085243449805979,0.07366388173411115,0.06006843967889713,0.2536251678011579,0.00239183502905386,0.007262411843044313,-0.07572205952666447,0.4974929381312592,0.03390786726213934,0.00012525284666977128,0.045397107441173395,-0.015249540532949123,0.0921949745720271,-0.007326901243124435,0.00025612840303904295,0.012271728397331975,0.007027452828125282,0.039238803465741705,-0.0035229661516644126,5.044790544325282e-05,0.01724926742052822,0.06174162379169778,0.3286140443643173,0.0465051064836383,0.0003096554543246455,0.028687902808990987,0.025184162974960136,0.35137167101685507,-0.01788226160194204,2.974342716892031e-05,0.0023402435288617236,-0.02316739500277178,0.2191936730643718,0.27536645803868726,3.5312697834064205e-05,0.00506594635609668,-0.013542255804376038,0.04011974834725553,-0.03678283624077059,0.00010873154739402812,0.00038030494606462696,0.016852896055129865,0.10473944007130784,0.013936998589419925,3.716692834544583e-05,0.0060546767757691106,0.003947249071910076,0.01025014196246719,0.006430187529910093,8.537722467903962e-05,0.0013698113530920468,-0.01809761861253234,0.06559568290895407,0.07876656952244492,0.00012615218280274238,0.006283264707896027,-0.02337151372225094,0.02222964072184833,-0.07642075631728935,0.0006009384041797937,0.006243512258205467,-0.0005698763423278516,0.0016097061289672182,-0.13728612899776416,0.0001490115868504103,0.009466859139691723,-0.0013688093357638118,0.004032866295489768,0.004642389480310612,0.002178453576919571,0.025175729864003557,0.017612512992969773,0.15798862887370316,-0.05689461139568453,2.866669935631685e-05,0.002089168700373306,-0.051198601544224835,0.1528147526740166,0.024588908007444055,0.0010953781801610765,0.003656198308083167,0.022765156315684706,0.16277497412409764,0.03515140557183081,9.313408345527763e-05,0.0008714459087780836,-0.015796013352944706,0.024154132233959003,0.0024815079475913725,0.00015434815372153553,0.009588951210408592,-0.010099135963680832,0.01910907770449572,0.0016117723603627353,0.0003033530783979512,0.02795000287090361,-0.048575484608479214,0.19779390016564535,0.061951805109956425,0.0019035074856473507,0.013831745186093985,0.007056221591877925,0.030273048302458635,-0.07614734744293923,7.478361026477909e-05,0.007409326365786867,-0.005732299832451789,0.006839057755876519,-0.0017788852996549044,0.002083578267213437,0.01100442744949574,-0.003824126730838248,0.010900679132150844,-0.0015710133066813793,0.00013899358501054423,0.014279902692895755,-0.04533944083568185,0.12399196910438215,0.06254036292293563,0.00014823234489410976,0.016790952152665475,0.016112580003197558,0.06372056946956223,-0.04105604780108833,6.171622637404748e-05,0.009453622243714033,-0.023771288716976553,0.08479609422438301,-0.015704992954878674,0.0026570206887383922,0.01739223038695566,0.0005454518273260625,0.002742409332539227,-0.0005923726458101718,9.893835688653441e-05,0.01190346866575664,0.030075540186156657,0.20248697806391097,0.040318976714209365,0.00010771523216890145,0.018724899198150874,-0.026817620051246625,0.1855229747794453,0.02337444073559126,6.837088992564238e-05,0.010363814854971409,0.005029025093830998,0.025613251740545545,-0.047307992633205294,4.9347650425546044e-05,0.016599307820518005,-0.023379195151733225,0.04968295986665335,-0.019236806561336764,0.00022943067832486582,0.0029359670052828348,-0.007871244604803814,0.033540146457789626,0.0032196224292739333,5.835698281694319e-05,0.002338749469909953,0.020335218986008652,0.21245584474063003,0.014406295317258098,2.4695137912703457e-05,0.01485636186643207,-0.031123369959746103,0.09408938238343638,0.1332704204929722,0.00011562585627252647,0.003929855810355754,0.029218272048710168,0.10765656656897922,0.011025027492326514,0.000427801176276086,0.005570145291736539,0.01920867508742103,0.10758898404415874,-0.12139445000463614,0.0001022589667128079,0.040704860578999975,-0.00011412287584958917 +2020-09-07,-0.022929239553194883,0.16503354897979652,-0.0010374279016927498,0.0001469278069801271,0.04428521454356683,-0.0025788820177655276,0.008989717873154649,-0.25410866335514937,6.88328795395718e-05,0.001648052641003604,0.007300879848857771,0.021220410122257553,0.004298149249292761,0.00015915439374966696,0.020702054250799583,-0.004852397073462848,0.005060788026473884,-0.060163947966985654,0.00032359815840282035,0.0013194472384083608,-0.004722062930052421,0.009617175658628675,1.6067236325471562e-05,0.0002569105827813864,0.002677653983697525,-0.025943194635152083,0.0667363231908855,0.04251648147260719,8.488049781851886e-05,0.010769397121200775,-0.04770346357785617,0.15820554837798412,0.06162917104096394,8.84744878891143e-05,0.007113507694071227,0.017191970514194802,0.12199483498229785,-0.010690651983121151,4.8326220174875535e-05,0.004368195006316013,-0.03906806380273578,0.03139872869811811,0.023966066488573967,0.0009595212795380198,0.0016141690010090478,0.030645860006984868,0.0749456231631617,-0.05074233621229151,0.00014298399418376603,0.0069153577563796954,0.005486403415798042,0.0037363138214606406,-0.00475350350696627,0.0007177426435845478,0.0004219818110034329,0.006516519269272477,0.0954659000096307,-0.0517087679271758,2.0341838499215604e-05,0.0050173670287802195,-0.019730307964738965,0.049773882675231945,0.025890704096463747,0.00011775609145468005,0.002878601791482354,-0.011470009770622448,0.06215567965966633,-0.00044177194780492036,5.194512389457762e-05,0.00029415415226761,0.019608361479241537,0.019127040494227684,0.00845751253515274,0.0019994774003683755,0.021368683888918123,0.029982138681840808,0.20982771084296648,-0.007522698506745371,0.00011758498653982392,0.008064754465029295,0.008345313676368926,0.03999551025741037,-0.02011146212774568,0.0003231020066867419,0.015002642624566784,0.03593939853935938,0.18430840990159025,0.0189800866814952,5.492709220217051e-05,0.0005586516366912987,0.006390479071447446,0.031259457418920944,-0.03177438069833411,0.00033692930706532865,0.05538057013784745,0.0545196642915752,0.797797672993028,0.05110795568280917,2.835898213395788e-05,0.009883922852706593,0.0009443730958894295,0.008414972611481763,-0.004377884247592361,3.7494935280197254e-05,0.004546981691545739,0.009359843701241504,0.028287893391685116,-0.0015928139303316385,0.00010658368853588135,0.0006300682107636623,0.006902773540079361,0.041310210785347946,-0.006657387297063997,3.859744800195119e-05,0.0024051223182035416,0.02570421064094233,0.057138802510871785,0.0646268928006321,9.973567227862659e-05,0.026650849687252297,0.005363772389958405,0.017365570740172545,-0.010845731179625399,0.00014123094808140744,0.0035787393899410873,-0.006042514479034648,0.005579298230917225,0.0018446018724073672,0.0006190328336182119,0.0008552041317828976,0.001308139981696433,0.004338323772383784,-0.019402093771155305,0.00012691655290342362,0.00806536212862478,-0.04591887640911865,0.17063171212113026,0.0821543194868758,0.001727232013761628,0.018066225857527818,0.03820998013714559,0.3764198849523137,0.033342834325189925,2.610276115900888e-05,0.002288368615284114,0.06571443866869052,0.18880305643517323,0.10347739586717153,0.0011379496634092085,0.014588894616330917,-0.03805219828399262,0.2658319567524893,0.03937556351322454,9.532311069078006e-05,0.000278145201678362,0.020126795093113443,0.031558052660927545,0.03309175644511484,0.00015052540864162527,0.0028220152054899634,-0.016710369960585267,0.02464316504156253,-0.022146721692722283,0.00038921851674047944,0.01701419496272907,-0.01408699120832749,0.06158509243394302,-0.002524954527423961,0.0017729357082621898,0.029368368084773833,-0.027332262069455847,0.11916083571537507,0.07543015111332202,7.359230507502772e-05,0.00448405861972315,-0.031243864370325954,0.04999992247520907,0.00925096849389711,0.0015533617422316553,0.02617183350301922,0.01592757277999077,0.041259803646352594,0.010282675445329246,0.00015294612485708124,0.0079182373894696,-0.05654745096848641,0.1434980319020883,0.07257517077962496,0.00015974507003853596,0.00114749786111902,-0.051925515962361564,0.2312796602081883,0.05405136991869633,5.479706592264707e-05,0.0208242314199083,-0.06524644409629683,0.1785139925863487,-0.017378237508253624,0.003464197487302105,0.047824680986081884,-0.0032695232950251257,0.015020245977088587,-0.08451793608459425,0.00010827992887515199,0.010882697703456122,-0.0431439740230455,0.17899961433524506,0.10390002248026718,0.0001747949313412395,0.00360537744417736,-0.0070309053282495895,0.03555093133676495,-0.020713494627945486,9.354249865441448e-05,0.016882843907026508,-0.03414487191081565,0.14791369566251483,-0.0182621727491508,5.8018232570108834e-05,0.01208027185095996,0.06998252841521682,0.13182354334601287,0.03080230526672118,0.00025883681202100656,0.001527535976546659,0.021201969721890167,0.09414979814929504,0.01450230235985451,5.599782933270262e-05,0.005556692898210235,-0.012620343711066023,0.11461750984466994,0.008729205288861034,2.8408709091407987e-05,0.0032790372330199855,-0.015448721385442059,0.04690130288609091,0.019352138040943715,0.00011513744771416211,0.010322393574501196,0.008940679479775815,0.038727694644319445,-0.018579212354962658,0.00036389563938201075,0.0011471772163453285,0.019657292276176713,0.08730104385188595,-0.008136732451047332,0.00012896624483553653,0.017072829198280435,-0.0020604340774892024 +2020-09-08,-0.0022505697769433335,0.013356616578376385,-0.004971076160453545,0.0001781897043419157,0.014586350069949086,0.0009981370811873232,0.0031455342057474236,0.00505471714106417,7.613884850981621e-05,0.012476859252727427,0.0071167749179717864,0.023048749614945924,-0.21938801199960717,0.0001428344823060118,0.014718505302460121,0.0038991294652744152,0.003662322091434918,0.0016799086549578737,0.00035931800125524945,0.005569571483006344,-0.005896606674772214,0.011538516018705114,-0.0704578940500185,0.00026739296360442415,0.0035020730108592116,0.0025479042285831885,0.007795318735850067,-0.01350321238934307,7.136675695676618e-05,0.010886669997850614,-0.04072385638356142,0.13829566781764838,0.04681125046069208,8.640326951566195e-05,0.0009251321834780153,-0.02322324357859263,0.1987610697760452,0.018247041455269435,4.00673081637616e-05,0.01174573424306144,0.004099961252838359,0.003445276923944871,-0.03750475955585587,0.0009176993069321188,0.00797826356892712,-0.03426857789076524,0.07071619411496778,0.028798880278405967,0.0001694490308087785,0.006076687050172572,0.03886284543611352,0.028414146611116988,0.09151693169922677,0.0006685352888648915,0.011202850487733661,0.0022387916260481087,0.03143532695158592,-0.0700311823060882,2.1223572124919407e-05,0.0013863459836625928,0.008265718648983988,0.025657467697609296,-0.009663752628257208,9.57013062500791e-05,0.010012847543735598,0.008410970928200846,0.04595228532160852,0.009918219667425702,5.152296356684349e-05,0.007939866991006862,-0.01884243690806966,0.01702440221781472,0.01291644099323208,0.002158679518502872,0.01992576430919796,0.03562348109107125,0.2609045099647906,-0.09908724905580248,0.00011235874443016238,0.027753845290120704,0.06624937045534618,0.34857117320461656,0.05347736740906381,0.00029430559565017124,0.006208603475444413,0.04049064253019894,0.23299495833881875,-0.06847555203274816,4.895184903156119e-05,0.014139398486876925,0.005195622634968001,0.03011483812371228,-0.0009510294252444682,0.0002843438729879835,0.01162156400264796,-0.013223947897070685,0.16434836037105105,-0.04127709648006042,3.339073547075653e-05,0.0018055061659112827,0.004160120784799154,0.045329424410845316,-0.00010005150537858414,3.066249177478729e-05,0.004317639294431217,-0.018546921591300464,0.04705572703165431,0.00769239600263067,0.00012696444071476142,0.013671799004642243,-0.022204797600967843,0.16044706875169346,0.02186871839178656,3.196740680239643e-05,0.010583017616376846,-0.00794050367710642,0.022673432025853694,-0.008902800206181753,7.764404814808185e-05,0.019809672884205005,-0.00800705183776638,0.035285995998250955,-0.0027234483673142084,0.00010375734618644566,0.001979782732502403,0.015950938385333714,0.014006981080351984,0.03957225147733814,0.000650904474193692,0.002617913599524617,-0.004133384852049644,0.016725260821058706,-0.00016995642099302405,0.00010402050396642146,0.008038535898190037,-0.04852555056078862,0.16810857365730097,0.04721647816854844,0.0018526773107763264,0.06033784788962418,0.02932721655787491,0.27815895932763735,0.027393083160155936,2.7111902157623042e-05,0.019740016258799002,-0.0003416640792069486,0.0010195219895374245,-0.0069036240468949885,0.0010956554269796533,0.008543863032904454,-0.004289850748011452,0.03599762569916509,-0.004681614588726501,7.935859474584712e-05,0.0015442882829468693,-0.009792453398719968,0.014783212125322109,-0.006093516052983445,0.0001563392740723667,0.007633783901940004,-0.01079293825319409,0.016645979193959805,-0.000749425289808522,0.0003721639125462596,0.012457330814558378,-0.016425595112752666,0.0734865425841289,0.004888236769336384,0.0017324616886292734,0.03191657256683644,-0.027528012971284058,0.12596763255683713,0.05305517414918411,7.011424589325542e-05,0.00438513364515517,0.04501235990154392,0.06113711958703325,0.015342052248776392,0.0018302229671611678,0.011843555868803219,0.007600867077002815,0.026477923886367875,-0.0024731839997874576,0.00011373529144138559,0.010953844027878681,-0.02224869409162556,0.05571151845249862,-0.03390027222011864,0.0001618899560788971,0.020069071638771033,0.013246466764370643,0.05824975064088114,0.007969894559222408,5.550344101380035e-05,0.006782854059775452,0.017709463107670024,0.0670232535701548,0.0196028860869122,0.0025043668509398087,0.015095647843177169,-0.01592516922495325,0.07866797551785079,0.010962699201285658,0.00010069934662732077,0.004600356616821947,-0.019640627789928835,0.10158115664015606,-0.0046310898594083836,0.00014021775074139788,0.01710495704379927,0.02823252821798603,0.15252524061696746,0.028590028599018154,8.75501210370908e-05,0.004384976750545649,0.007798667344196567,0.034781724794395764,0.002447418908905815,5.635295265037304e-05,0.023212140483493425,-0.02537720291318413,0.049127793593219504,0.012964634526735543,0.0002518522798651684,0.01846816302180454,0.020730111557442338,0.09481845976027499,0.02484475009290128,5.436546647480948e-05,0.01408136594381976,0.03666921724013634,0.42823879151920463,0.060317144002886416,2.2092604608064726e-05,0.010890259878712711,-0.01341660417688713,0.03981872203638991,0.013624313267478377,0.00011777802144122864,0.015470617612276203,0.01255658444918573,0.05078169236173352,-0.051823425471274935,0.00038975556297374844,0.002475120741564845,0.012110494174076817,0.05669351897888388,-0.07065336726298364,0.0001223489499747679,0.004032516417914599,0.0005049328661248383 +2020-09-09,-0.0005335557681004514,0.0037115496581065,-0.02421776022693062,0.00015202364027453182,0.04514624711021234,0.04964531657109853,0.1593848509620515,0.05003513420372674,7.473805135414433e-05,0.003342831666431267,-0.005487758026735244,0.018473418489391342,-0.02056732030781496,0.000137418400584847,0.018256812485850142,0.010813760671976697,0.010947626281363572,-0.02030622025783376,0.00033336856563201904,0.002872353923180836,0.0014651686758819298,0.003203549620929684,-0.000569684831847675,0.0002393061953974624,0.0055839652741859905,0.007108002886990106,0.019165371308655626,0.004256033690638086,8.097987418381743e-05,0.0013812060416062489,0.02583204281564594,0.08324764380719432,-0.05594252212506396,9.104930953454113e-05,0.01164006636243574,-0.017306145348967742,0.15091797525227144,0.007396841417788651,3.932402752429272e-05,0.0011587178651497818,-0.014075051900532199,0.012893096420866819,-0.1985995630881252,0.0008418555144764798,0.01002733568625181,-0.001251350241894915,0.0030957550760843063,-0.0018950637875424458,0.00014134295756943212,0.007294608735582738,0.0033207559056712818,0.0022769887411880686,-0.0005422736581766428,0.0007128537338261238,0.018930441546061126,0.01816689446527662,0.2676017437315009,0.0393200215272612,2.0230869268802458e-05,0.010980583963390144,0.03716233617744856,0.10149264996898348,0.01302660213075075,0.00010877258594481626,0.010874544681792242,-0.00019319787395085446,0.0011587678720757087,0.0033939556850861963,4.6931854518786855e-05,0.00350599535700713,0.0220297020434017,0.019671321094878853,0.01230064424660117,0.0021842284943951887,0.030192699595196455,-0.018524238694877914,0.12446512968672012,-0.000954296664507936,0.0001224742476463883,0.012757616224371224,0.002829106445130846,0.015210446102660494,-0.013338972699082177,0.00028801530626164086,0.022820305220289203,0.004182891887369839,0.023423371232096514,-0.0002591822545856546,5.0302340686734067e-05,0.0036699022692675805,-0.0332447736781897,0.19857394497207728,-0.05902368332096737,0.000275923013391502,0.025583570228204785,0.02182955929380173,0.29017143418042035,0.00020294501476240414,3.1219111804517935e-05,0.0073036053794396216,0.019850064532741095,0.20197736485563644,0.060279467764863065,3.283529559338261e-05,0.0009507112399647403,0.040899743214099026,0.10237134719003992,0.017734700573856184,0.000128695961407129,0.010212937004176267,-0.004996173054424013,0.04239618035469976,-0.08603562327520223,2.7220939975344563e-05,0.008963484720835347,-0.0037910085971502817,0.011018728919408596,-0.02192478705104203,7.627823807032729e-05,0.00312760992864843,0.002948581944721304,0.012821427766605189,-0.00457664599440569,0.00010515390553039936,0.004435134814458358,-0.022635950914100356,0.024800288295611927,-0.07229284632799711,0.0005216960824328692,0.0006831076758071651,0.020143143098954895,0.07026252490766734,0.049845079945551395,0.00012066727209875007,0.020751919334455898,0.024180186000879823,0.08123278456044794,-0.004630932675869204,0.0019105018887494087,0.0006658732961788562,-0.019033336179713724,0.20212352782735424,0.004150003082509227,2.4214764184787155e-05,0.004326831702283807,-0.010712695367758035,0.031781910844672974,-0.00047508829108926004,0.0011020213794185449,0.02194168003476724,-0.0034806338749986615,0.023483798808985486,-0.018652599522600934,9.869965504791543e-05,0.004043577269981127,-0.020104597733071414,0.02930630715497341,0.030154137426169566,0.0001619122384804093,0.017522223718199396,0.002878504928505956,0.0033051890215492524,-0.00195897313221912,0.000499890161845261,0.00646552841848913,0.0037947800458232425,0.013464218473018102,-0.0016505045314238033,0.0021845188645781715,0.006210119283791568,-0.01818281608935332,0.06720522518250627,-0.029948704980602776,8.680574642946582e-05,0.006695608027055103,0.013211950266745279,0.014194193489799037,9.662908170048336e-05,0.002313840406973687,0.006371247929759932,0.007537072905961526,0.023519444630156757,-0.002796100841525822,0.00012696724328622333,0.017371238225549517,-0.017276167873893186,0.040902237137825634,-0.0011096227961494758,0.0001712224587741114,0.017108619762789212,0.01275504260813262,0.04837421686582502,-0.019095508148927288,6.43549402583416e-05,0.004086309881774433,0.0349434609389372,0.10667186253560934,0.01359143292953537,0.0031048033394992717,0.01806480587210107,-0.0038388416750049655,0.01707254544741062,-0.024771643167924243,0.0001118516755178394,0.034936295367226464,-0.01233922894014798,0.07022758484838763,-0.001225568306372698,0.00012742101886551005,0.002095168650910047,0.024332855876708675,0.11502801904616781,-0.03523007062337487,0.00010005484923099519,0.0059661277559149364,0.03420960248921495,0.160715210329712,0.024506894156588535,5.349811028245378e-05,0.00045602725154724377,-0.06311212447880743,0.11488855715200758,0.05461617771003864,0.00026783382177771216,0.01024602459459146,0.016539794144093165,0.06544543693204476,-0.001047646814459389,6.284418585597064e-05,0.0014268543178188012,-0.001381530169471654,0.01375094078307872,-0.0068455465767284975,2.592144734091676e-05,0.010821168375029248,-0.0049539810251655525,0.01785047498804424,-0.00016711327072625506,9.7009334774818e-05,0.0021586407774487476,-0.0141048039529626,0.05984111199335612,0.04231870538463164,0.0003715312680873514,0.015853604564477403,-0.0006016253504051648,0.0033041349818583843,0.0014627045716226802,0.00010428939370004491,0.005667472158634155,0.0024154961198887405 +2020-09-10,-0.031324672007575154,0.233171249957872,0.01248744858384663,0.0001420686047830145,0.011250467360418048,0.04677394309642739,0.15048990035513862,0.010612355237244315,7.457738565879231e-05,0.03635226306212651,0.07076667210283327,0.20553457108007497,0.32422606024641215,0.00015927260976847924,0.011651850889320754,0.019562165401576466,0.019179281297629452,0.01690699511157985,0.00034423296217940617,0.0005102104160222786,-0.027556129310976823,0.0650425798339409,0.02625158677209514,0.0002216757710267556,0.004593599306805719,0.002259007084033837,0.005081691072217206,0.00040164488914704716,9.706352804250398e-05,0.008276138590583721,-0.053109032913464464,0.19692607984122415,0.07476325290308355,7.913252303201755e-05,0.0036716642362392307,0.042802567635754386,0.3881306599842587,0.09553045566674982,3.781729714198461e-05,0.006033339881449574,-0.0010872443250270981,0.000769069060212774,-0.016824998175518316,0.0010902010505000758,0.0034425423360899847,0.022333924968986184,0.05059066679775753,0.0261723022965335,0.00015436773632019582,0.025870774517280253,-0.0005920214488504179,0.0005139708443198496,-0.0035692473989971762,0.0005630193433436313,0.002947269674692788,-0.0025314352093011383,0.030613912570713095,0.0044865192740016595,2.4641705800127348e-05,0.008511225647981803,0.023039168576125618,0.05575443812303229,-0.07157869814086101,0.00012275477563411554,0.020176158477799473,-0.024673065866565255,0.136106764495823,0.05270421953725174,5.1027609850001395e-05,0.0009606406919120904,0.002810255937231796,0.00232315303342512,-0.0017229368794638134,0.0023593426986611462,0.007684463829162943,0.036384394803206765,0.2203975606178237,0.013672192156610363,0.00013585026186337012,0.021647162355333933,-0.01982284709080929,0.09986964615064797,-0.009487039567606723,0.000307355332043982,0.024622001501773166,-0.045395121727317335,0.25351898956714986,0.07754431824858694,5.043820770412004e-05,0.002244567497082733,-0.031692575359665055,0.16555029160067905,0.005631843070555291,0.00031551091569441414,0.010081563654940558,0.05357148333837055,0.6656102516415557,0.03908549906015986,3.339980264918597e-05,0.006148417020070575,0.01875242474540241,0.19851362701186293,-0.03677456847290536,3.156085907243338e-05,0.0017425245600729343,-0.03627698571895945,0.0976562422108545,0.023869418834891677,0.00011966136183690242,0.0033989784209207813,-0.016739838251042402,0.14474341251951015,-0.05316664330522067,2.6714363181519396e-05,0.004304048200943333,-0.004591836446669832,0.013657343081428835,-0.01405409419127238,7.454140491504914e-05,0.02159371077414819,-0.012407364377187544,0.04126632259739543,0.028669552248105426,0.00013747773342366262,0.008860325506564118,0.016362429400266502,0.018168945168780662,0.036118323567999024,0.0005147467731572957,0.021094920047987298,-0.01349418576577387,0.04679387973210552,0.007171683116265565,0.00012137902344947084,0.0033674321057343857,0.05668071199815683,0.18038274499694099,-0.0035595756882450037,0.0020167844314462383,0.05092299868229405,-0.01092633703065061,0.10635324455724879,-0.03157989707142139,2.6418371570479585e-05,0.01204544177872508,-0.010061521984124374,0.034704884787598485,-0.0014568027366586337,0.0009478603207433152,0.03172151419631502,-0.02235715118466984,0.16514494833277366,0.009721023245685812,9.015230048103633e-05,0.009925576444590646,0.01738983634304713,0.02557401125590743,0.011843116870968314,0.00016048780201237482,0.0013413528072151416,-0.03210856486848761,0.050784729614561035,-0.18524413243049911,0.0003629039238203599,0.004022818053622463,-0.019511924049922354,0.07279915667525429,-0.15422286581211514,0.002077418953490362,0.0065437179273497206,-0.004180837971590499,0.013835189806849977,-0.01808277786358314,9.695463718862358e-05,0.005356134842947469,-0.02730200170499999,0.035382964658568314,0.01990045649331749,0.0019181274592808947,0.014608224408997377,-0.026587551654358582,0.07951907166603281,0.024192659425411437,0.00013247169153123896,0.0045946154541646154,0.04076974708860076,0.10228865433896804,0.02815455004431229,0.00016157379592648884,0.0001307416116582729,0.0313680911241346,0.12302216348200869,0.017236188445682123,6.223270173987345e-05,0.020535611062335663,0.009694354260531902,0.028578916782052315,-0.004715617619865955,0.0032150755313573045,0.016157219609690413,0.021350549507403498,0.11463312203852738,-0.010120334634934496,9.264873782825747e-05,0.00646231610140925,-0.02893093625249518,0.16553583187740006,0.01843780922464129,0.00012674512297335613,0.017091325407123017,-0.019525762859169148,0.12035756593575145,0.017337846418135308,7.673320055346245e-05,0.01156608364548265,-0.02598636954486549,0.11767933066040803,-0.021592021892728783,5.549997857880188e-05,0.01141630622663696,0.007702328894948315,0.014395801181354952,-0.012554096730843445,0.0002608648794238109,0.004862585697156184,-0.003293636047092669,0.014040230771457206,0.004028567318276222,5.83331913524805e-05,0.006196985486386154,-0.024312274086208195,0.29288574268203216,0.030815348637197364,2.1417000032734796e-05,0.009488754852259855,0.004754066322390986,0.014312981825679144,0.007097391498380865,0.00011610317087702871,0.0086312059760129,0.03485217421438805,0.1347711049577494,-0.0068699597846409634,0.0004076252311730271,0.007106400705693217,-0.016499006776889848,0.08212053278793224,-0.11364054707556072,0.00011507416666989191,0.006703781035100821,0.0004287179358945861 +2020-09-11,-0.005635280998739793,0.04083192608662344,-4.4040657591207377e-05,0.00014594939331005324,0.01605024999222308,-0.0001953965978663837,0.0004997879259457277,0.003355661214065526,9.380840768682508e-05,0.005829809679366547,-0.004735972655117405,0.01393538386918339,-0.020106655902650518,0.00015721263766293816,0.00323009339990867,-0.023399236892156387,0.028134347287471752,0.03836040797483128,0.00028069372663217613,0.005268772011740094,-0.019926504950980903,0.044275926662045516,-0.02570126365216963,0.00023548391328003882,0.008732422916722559,-0.0007105445649248832,0.00197195952149474,-0.004880575104910308,7.867560037567405e-05,0.008036329785671413,0.008773106363152455,0.036895043981796355,-0.002342022046755866,6.977104335918895e-05,0.03226769319813244,-0.026553239681713123,0.2705670662145969,-0.017232481440014293,3.365434926627732e-05,0.0003612824714541642,-0.0049372205644397866,0.0044224936697688155,-0.02647871118595061,0.0008609146455352078,0.006956541192621975,-0.004791725270885769,0.012026751275151801,-0.02759758244929657,0.0001393174341022874,0.0077252696252473815,0.014910957744706568,0.010478189545955174,0.0058969228732213145,0.000695574492179451,0.006117162300007339,-0.010513281695355065,0.15383559744898806,0.03371236505500997,2.0365930062632953e-05,0.0018324809738309176,-0.0007597874180063323,0.0020994087289555167,-0.02198808530507638,0.00010750932538293046,0.026778146445013414,-0.014921168141619725,0.08006655737230765,0.0008653156801287873,5.2458212390838015e-05,0.0021324581332496325,0.06322244648242575,0.060765650313465626,0.015181490221480338,0.0020292526414898856,0.001218526580012182,0.009836078828015946,0.07643435400695998,-0.00034036353496435547,0.00010589745157349559,0.017655269055325162,-0.003097758969140929,0.01726701512785563,-0.004730422380261066,0.00027780405809361215,0.04198595642106404,-0.00924030012144295,0.05420424034877211,0.005177707771118126,4.801907289032102e-05,0.009607844140136117,-0.021381905155926383,0.11392882750022253,0.0016110621364030496,0.00030931400082310606,0.0030748285188422477,-0.023822074730761183,0.26106900355652435,0.040457929614920084,3.7866442215761235e-05,0.023843410110900836,0.01057294048789738,0.11461443714559233,-0.0038121255169968333,3.082039289653072e-05,0.008110612629505614,0.0395962436878711,0.12705687787240685,-0.027952933686930675,0.00010038725172557322,0.004178428090930772,0.014861477234772524,0.09319332237465433,-0.011939774503351128,3.683575382403446e-05,0.0001361455511416337,0.008369886469433312,0.023941770044326027,-0.0038086554019178477,7.7506958413679e-05,0.0027234953904473344,0.002795904705992863,0.011804762315131756,-0.0446392606028682,0.00010829632358409913,0.000467903923428159,0.006553204645251868,0.007786092857095952,-0.0036714488807492716,0.00048107159319956257,0.01638396139321096,-0.011601712118120635,0.04607052628231568,-0.026453053118488366,0.00010599488804180359,0.0035970435644868174,-0.056462573116589525,0.1977637310534865,0.02770515289264579,0.0018324544738261592,0.029070089230106268,0.0011976185278689882,0.009888625224550559,-7.061836371122579e-05,3.114331108491593e-05,0.03039366051029275,-0.00044377437429683243,0.001183308197247288,0.0003062561261512798,0.001226127454843715,0.005419115650133316,-0.013920419963032485,0.09025892506622826,-0.006390334789254663,0.00010270411009041001,0.003957202398383576,0.010723504457972348,0.017279838232213074,-0.045883863037094234,0.00014646789852937415,0.0021563802115735354,0.02477139513574167,0.034659809571644204,0.019536136639322202,0.0004102307475838875,0.02504395636912149,-0.00842126766356207,0.03328417829649476,-0.0022807465956922396,0.001961055896624246,0.012218891137339165,-0.003499426328889174,0.013433715911696393,-0.04936395315961517,8.357782510717958e-05,0.004436285651647285,0.0022056120024919325,0.003043494670111678,-0.0024724145929526666,0.0018014979104181933,0.014738429666164333,0.008604734927439467,0.026416009328623903,-0.06922956504891684,0.0001290584139124778,0.015564651915031324,0.034399226247185825,0.08479898797644057,-0.03383808948598469,0.0001644441320018975,0.016471541158237058,0.02576749248137011,0.09800438808483608,0.020339473260740128,6.417125924772856e-05,0.02223603608390349,0.008100979556654642,0.026386847766680897,-0.08825125815771812,0.002909833119323241,0.003400810552734282,-0.012641466266065635,0.06654700114969182,-0.032439351228678116,9.449515275819141e-05,0.003792305633001417,-0.05555492296649965,0.34317743578631293,0.12724296188368875,0.00011739905720704136,0.017345781437476056,0.02484346883426343,0.14881484442717294,-0.016016354707737622,7.89613708095286e-05,0.00459677273126528,0.012436429346994383,0.05175334247078767,-0.0986944484806236,6.03955162700304e-05,0.005706183808764475,-0.0536227594261243,0.10014704060624947,0.044623818623608896,0.0002610600596302252,0.025098811989985283,-0.0009872489804952662,0.004683801689037448,-0.053814948012608395,5.2413428736648696e-05,0.007226389326274442,0.00983432015724024,0.09381322418979682,-0.03334260409101691,2.7046530738848183e-05,0.0061385488498437,0.002276793446753229,0.0087312063628037,-0.016474923439248182,9.115035078389346e-05,0.007171721814713143,0.028111318788706815,0.11532991174450373,0.013925827074909797,0.00038420873240704395,0.005978315288357486,0.05461566428517235,0.26698817250149803,0.08623313325127482,0.00011716475632262728,0.013462526637966916,0.0003366592921422237 +2020-09-14,-0.016902469062345143,0.10418937392952049,-0.0030462066716370364,0.0001715589206447227,0.0010712047871243953,-0.013028355733130848,0.041273675245260745,-0.06978618571327884,7.574029497408403e-05,0.009061773205351115,-0.00881893315876466,0.026072337408340952,-0.00011092366413729446,0.0001564707944699817,0.020286740146290082,0.007969326450912315,0.00885570220015964,-0.15231839996846713,0.00030371515978175415,0.01032171309574403,-0.006143056225360914,0.014329781164637772,0.000213415468706475,0.00022430693672798114,0.016284248900937093,-0.0264197867935461,0.07008629355536113,-0.008158680236589933,8.230817172824974e-05,0.0009104088275431809,-0.013739636327385913,0.05657833675004358,0.0011735146158303007,7.125492980262162e-05,0.02307757329501938,-0.014487688244955207,0.1403821590824599,-0.002609497561784642,3.539042588171038e-05,0.007614483296545273,0.02516439997636861,0.021910409907665664,0.06672140268500923,0.0008856882100155806,0.007096829166113421,0.020316225773014576,0.043700178934610284,0.00746781103757536,0.00016256299862008974,0.01942370680119232,0.008735545751671438,0.006384421021836644,-0.012632107628597298,0.0006687947911358005,0.011986115042756125,-0.016934534341560108,0.20877269407954457,-0.005651554202681548,2.4172543641225524e-05,0.003643823211056948,-0.057716563502553664,0.154405376522907,0.16068513093423423,0.00011104246244470704,0.0035104448764616287,-0.0001780490302665578,0.0009847697565306733,-0.07624120001875662,5.089401676938795e-05,0.001220394316283808,0.001532860876802085,0.0011238185131879608,-0.0013780669947143667,0.0026602933588714293,0.005676489971464638,0.04300423726152712,0.29632632246661705,0.0005247118577408987,0.00011942441587730285,0.0036565746846887875,0.04308035821068631,0.2208694272574922,0.0031396326278268576,0.0003020312866192176,0.018023625762842062,0.009582243860384452,0.054413264456723745,-0.09225427731379243,4.960476464861008e-05,0.0013475935590799655,0.01955208358051116,0.09102267996098487,-0.031217631647340646,0.0003540219862123293,0.0005561816309236677,-0.0376282231695094,0.47597727451841804,0.06132735965631313,3.280633569182137e-05,0.014925916750553707,0.03564863906188464,0.41412188357374136,0.20528324610166948,2.8760503385702736e-05,0.0005913946683118239,-0.0240699193520748,0.06862363727880658,0.017280338138299572,0.00011298574604064928,0.00471725764699182,-0.00983460287842108,0.07639258999618297,-0.02941504654460804,2.9737055909576336e-05,0.00817602290674816,-0.0017640048839875065,0.004111484288946673,-0.015238760523991604,9.512146502073058e-05,0.02711157540025386,0.007057936429443798,0.025214973701058428,0.008217774801658875,0.00012798757734077602,0.0060576115045115975,0.04194804304414316,0.03897069700206854,0.06390492085131433,0.000615246416756343,0.0141707359824017,-0.006596759154637269,0.025926407908774537,-0.014670808663731823,0.00010709625583954236,0.012612420484920544,0.03660713912901845,0.1313675826783602,-0.010304198853145092,0.0017885321697471562,0.009461778813872272,-0.006551617785702478,0.052847073135853684,-0.028391294200317416,3.187937577930882e-05,0.008150915953162204,0.017263852677382483,0.04761622056955263,-0.003488907458613206,0.001185370376856149,0.00828338400466416,-0.0017345877248876186,0.015376973708528212,-0.025957208492218675,7.511921487103731e-05,0.010785260246072908,0.01033447008809836,0.01612277740866787,-0.01880708089311218,0.00015128425841329788,0.0026424653382163834,-0.03859163120782823,0.059628677728178384,-0.009347630444819099,0.0003714855033783803,0.0042819989893993285,-0.0057102589365196155,0.02618932136844995,-0.0015930703375217241,0.0016899812973611892,0.003131495867942125,-0.030879829511039465,0.12003818415574097,0.052156003990847376,8.253646174753182e-05,0.0023140138167648105,-0.004143120929346998,0.006285726100853199,-0.010801338546792473,0.0016385109522197433,0.0181202305201734,-0.036143564699832424,0.1121003568663839,0.008068035509500165,0.0001277438569112285,0.0033987015542352624,-0.007107145600470474,0.017073557525187844,-0.003442379872726725,0.0001687452538497128,0.013956731041752914,-0.012234373181764966,0.04884042107608151,-0.012496172103521755,6.113870689642404e-05,0.00992419430219763,0.0596400493419623,0.19092939994661565,0.05751834139767728,0.0029606239250001285,0.00920515222510579,-0.010588802079246274,0.05733269914750401,0.00041595620205805907,9.187238974446015e-05,0.017307353731957246,-0.02223978018905191,0.12300855225887357,0.005443841261634011,0.0001311160833788993,0.010340452854217145,0.011695037803271356,0.06925300290087918,-0.0029806997959271166,7.987515592906258e-05,0.004706996659512756,-0.016363182360412804,0.06520109419104049,0.00952671898488603,6.307543891915546e-05,0.007367475777840105,0.0013687905730347977,0.0027655848901104656,-0.006774782137413584,0.00024131227045095336,0.04247097228788345,-0.0213119169835752,0.07273655505030754,0.030492498956283462,7.285916060538205e-05,0.011312112666759199,-0.02953896862960504,0.3159196006801585,0.032014219445112894,2.4124040076363687e-05,0.021093464515069767,-0.014126356518639107,0.039004134453609327,-0.03970147626350719,0.00012659847738377312,0.003343030056445453,0.02028841833211376,0.0647328306474944,-0.002427513418282949,0.0004940279995455004,0.010080370251402394,0.033310308273195366,0.1772515973610569,-0.005841004104168535,0.00010763667914645687,0.0003274305168925746,-0.0006873050396717623 +2020-09-15,0.021705413403214493,0.13960102554725937,-0.07925457821685968,0.00016442431340743941,0.002739751842662303,0.04219973755124762,0.1269547185212667,0.015602135318107873,7.975748110633519e-05,0.010576780459048479,-0.013038265753569393,0.06412532019572813,-0.07492614190278775,9.405621255900318e-05,0.0027904549787906795,-0.03708828428545201,0.0484811568405623,0.11358921144658918,0.00025818536749880203,0.015182065358619677,-0.027698699512002233,0.04853778246092912,0.020298806998965392,0.0002985913485914844,0.0013492094855853988,-0.005234643796970879,0.013748147781564963,-0.0029347524614171945,8.313610670906713e-05,0.006111220188098147,-0.00629347365512962,0.023901505649226332,-0.0015332137063865893,7.726005518932219e-05,0.0027781035723425627,0.04666557366371533,0.44290868166071345,0.09124727160266945,3.613108723772475e-05,0.017152732049671774,-0.006888624226266457,0.006229128293046257,-0.02032608902731457,0.000852805525862572,0.010385163460230423,0.030370062127740093,0.07253232747551347,0.02199797509035743,0.00014641175723406228,0.004266931652929033,0.016448561276589925,0.01236921948136736,-0.025180109387065726,0.0006499949455646452,0.013965708645065899,-0.008631937424142994,0.1093344626204099,-0.028265427195801152,2.3527403350547857e-05,0.0008489730877857041,-0.010789236852725748,0.034966067345870634,-0.014162411156456604,9.166319170982071e-05,0.0153691583820795,-0.0004156868514683533,0.0021097447827717335,0.0030782391241863374,5.546233942638649e-05,0.0061945662584507255,-0.006331001839688565,0.005378708110054394,-0.02456452086204576,0.0022957121647876905,0.0062448194416145995,0.03053242673635133,0.243117185414917,0.005524433249920832,0.0001033469757111869,0.01377113021872102,-0.10165178757591067,0.5243867507173597,0.1756028179163393,0.00030017294215004236,0.02253254543075915,0.028234787033393355,0.14463781302864942,0.01355217425924356,5.49874557908227e-05,0.010295246942125014,0.010382045250025963,0.0498714625355525,-0.08960886818635369,0.0003430975527255274,0.010995295202283088,-0.0032071551694997508,0.0405330913272002,-0.003313160504261391,3.283526129363791e-05,0.000755236465442024,0.009252123171463306,0.10008224113850728,0.0013752728618108643,3.088631475623832e-05,0.001599382746700248,-0.03602893255025662,0.10825593149783852,0.03945256716089912,0.00010720682881383042,0.002324007877895746,-0.008783033173844976,0.06355384064968367,-0.05903345142544544,3.192236790073405e-05,0.014924866559728448,-0.014159278087006287,0.037928963289944294,0.0005456010946645484,8.276515282876743e-05,0.0026553804092856264,0.011420283368045308,0.04244295870189038,-0.014325086590169674,0.000123032493142307,0.005499474353885933,-0.008858449311960564,0.009199426531433613,-0.00117991648344405,0.0005503925040364575,0.0024784860171155956,0.006091149045619928,0.024412529741935637,-0.003403102874216238,0.0001050201054803819,0.004639610199286949,0.021166746443094367,0.07907427815734142,-0.004550286909186749,0.001718058889761111,0.001588516982376866,-0.014104747499922608,0.13860515922676167,-0.003911615632346456,2.616785442637161e-05,0.009339144306991821,-0.00490064346331857,0.0167523897855877,-0.02541570289433684,0.0009564177066011609,0.03217261502041881,0.0400381593974069,0.3209134857489001,0.0612299320828112,8.30829253470139e-05,0.004914207211143383,0.016603394870286406,0.021620547821101097,-0.032693344577302864,0.00018124898743116156,0.008823869688814608,0.022569597631643203,0.032288709532037704,-0.0031232477004346855,0.00040121488997894297,0.01000488113581949,-0.052287222340875315,0.2149274896100292,0.0339258509712819,0.0018856190036777515,0.00998501057338711,0.05010883117312669,0.19195411408339277,0.13937106511957673,8.375432027778461e-05,0.0029734080611667087,-0.015914059549744314,0.024668223310332176,0.00837606845292813,0.0016036895505419767,0.011128407140815096,0.002051405367088109,0.006591434945718555,-0.01783475509062405,0.00012330694948052074,0.02057343163644243,-0.015130770146851925,0.046290070270843725,-0.015234078606539364,0.0001325053977040165,0.020288669167860856,-0.00913666005266439,0.03778544357649096,-0.049168323245412385,5.90169642921705e-05,0.008440721964903378,-0.03307717656653279,0.10165248314068857,3.466740020123324e-06,0.003084100328217271,0.0030777112105224162,-0.04901865157158355,0.24928091300999833,0.0681948551799638,9.781667685741106e-05,0.011786770195715472,0.00021850129557975302,0.001282614528369151,0.0016268059753838868,0.000123543143020485,0.0035054291866080983,-0.01663164466451959,0.08520788864501988,0.013193861300731899,9.23217636460822e-05,0.00513457636897124,-0.0008698196425649946,0.0048784542077674265,-0.05330875191841998,4.481200470915216e-05,0.004207745010584961,0.0675497403133329,0.12971678902791442,0.04535102242855132,0.00025389660172854615,0.027311235114507965,-0.02899700264237501,0.10792071565836546,0.05377811516998988,6.681326072571622e-05,0.0007522552803958492,0.0015168847109354447,0.014217930921126772,-0.004620386610029958,2.7526275966714816e-05,0.001414707063298506,0.01045710490801439,0.02786198705312779,0.009501662057250004,0.0001311922992361535,0.007414658744205197,0.005927950344615628,0.026328157534196688,-0.00815900891191433,0.00035490495284754806,0.000595998818396278,-0.018223733621309628,0.0823248808383283,-0.07233073788318398,0.00012678796867306863,0.016655216516961807,-0.002469393453828836 +2020-09-16,0.0010932460259584652,0.007112870313995652,-0.003984055949296896,0.00016253975499415588,0.014189706963388737,0.023103257178200755,0.08025355582945672,-0.027339859170485478,6.90747712185296e-05,0.0014863007734203465,-0.029205609053190435,0.09317816642700893,0.019401512638028556,0.00014499375988495384,0.0077137639818738255,-0.0028761408061009994,0.0030616716064366936,0.0008661441457840092,0.0003170438940326547,0.0022926552748137557,0.017589622355843357,0.04183306284993616,0.02456406621316955,0.00022000605044182836,0.024591944070151906,-0.003095693554657709,0.009720718494531282,-0.009255130877845422,6.953546069512567e-05,0.008511692350329812,-0.021552441141748657,0.07362440727367572,-0.007288546547603531,8.589433298246875e-05,0.0022828937947272903,-0.013534064990663541,0.13849227150323182,0.004998883419263313,3.35120761070455e-05,0.0030538666221262495,0.013633289191313468,0.010869874781011809,-0.002689083183844113,0.0009672102551801107,0.0018136838887698524,0.011392658812086854,0.021909668059759527,-0.005112636661963551,0.00018182398832361046,0.009551795665505694,0.009984818018168896,0.00928999001406846,-0.03738030788217271,0.0005253506391660818,0.006756069061615626,-0.01665801936516432,0.22361992022127358,0.04125989803546975,2.219911514479948e-05,0.002462804084008399,0.06864664509221437,0.17798113377067723,-0.055810802150738956,0.0001145767201544884,0.017626941983005955,-0.004572062935341021,0.024507877413889788,-0.13568037920113366,5.251318006781109e-05,0.003082630800044062,-0.001904391029025273,0.0016247569378231973,-0.0078040269190046835,0.00228607618498009,0.0014207768947996516,-0.011416252785345265,0.0683230826113652,-0.03652298809316213,0.00013750175195744975,0.00104321674419346,0.014354619765786713,0.08472886519185237,-0.013314896238382454,0.0002623424289794918,0.016343464991791946,0.015458467143158496,0.08716550386166935,-0.01371788230293104,4.995543421756593e-05,0.0023522104244130208,-0.062488794932343626,0.3842525088839521,0.02605863083723126,0.0002680231118615982,0.026250676894287304,0.0021062304675685075,0.029984788692124478,-0.15047867566241205,2.9149769796545998e-05,0.005935226803073936,-0.0054301461637323726,0.06173992288741453,0.014530489331466926,2.938509817673102e-05,0.004777617716042662,0.010481054385678016,0.03366654787088687,-0.048785534598976256,0.00010028342168246221,0.00457708018298405,0.05559696666653892,0.35143957947179566,0.21752467245791196,3.654204119894334e-05,0.00631829931382151,0.016026233842686914,0.045647438093061675,0.0246620985030294,7.783813995527531e-05,0.010740223970196288,0.009270541418330128,0.029019143979916687,0.0035162430455005222,0.00014607271348001985,0.005737587888231524,-0.02030855443075222,0.020901351649766618,0.004472842888329099,0.0005553671666814662,0.006285614075531072,0.030233527646099753,0.11624888302978931,0.046433201615003486,0.0001094677127665388,0.005949363556048973,0.05525748882755567,0.20040300403519257,0.01845371935141676,0.0017697262467194948,0.0239566492407451,0.015218236137325189,0.14950238810418362,-0.02205442041473611,2.6175704783804213e-05,0.0030337095575867995,0.05715533473992722,0.17777751444747464,-0.1133149928546635,0.0010511173687454635,0.010308378614071146,-0.018423388835373825,0.13327963334094023,9.2850305140116e-05,9.205160647245802e-05,0.012918286908268508,0.029522388607936496,0.04454322295479237,0.07492205157093461,0.00015642826967593947,0.009344420245635882,0.08432536700902987,0.11299796464284236,0.3017418662002862,0.0004283428608544522,0.00539548253308284,0.04535974433536284,0.15505543342457534,0.09361857488923818,0.002267430320974252,0.021511906087556144,-0.033674877549404104,0.11824422704804256,0.036084703224727344,9.137269804628063e-05,0.021389917944851403,-0.04889476838108209,0.07773945517319243,-0.08338053215244312,0.0015635007444738396,0.004295502318087921,0.03489991065409507,0.11202622118469703,0.04635142168901765,0.00012342998176806717,0.0029295986233582897,0.09383207721684336,0.20967503884797203,0.14278261399393513,0.000181411566963008,0.019391602584037392,-0.012128478614848925,0.05731471948123678,0.0020163082786191205,5.164806801898483e-05,0.007709371665970249,0.02180739698352303,0.05292369111910647,0.009385058111331723,0.0039054561094190392,0.017778743123455752,-0.02831615479344403,0.14048118660726786,0.018004866541468992,0.00010026669075625202,0.02281979242894235,-0.030628710425607015,0.20310179103089984,0.0008466575462118694,0.00010936434168882862,0.01221830204263112,0.02401488178952628,0.1480601052097278,-0.0071863425400132295,7.67169093419302e-05,0.008338462933908605,-0.02148574964385216,0.09604614950905535,-0.014437906251585444,5.6223509002990974e-05,0.006414078696113655,-0.061649732730392474,0.11883518703948143,-0.06897023501767498,0.00025293884910729925,0.011864715959961492,0.0010061352280084765,0.004290875974520731,-0.0014698969581974383,5.830754679820836e-05,0.007215614461160514,0.05080169320020306,0.6396100306829999,0.09245606775182319,2.0492465230994784e-05,0.006622668144784225,0.014492779216157086,0.052060580221192074,0.0432656882070586,9.730869239359999e-05,0.0016533159749941623,-0.013136266729139819,0.043882943039114226,0.018959132765148056,0.0004718502428524254,0.008509048705303564,-0.01861189578061334,0.08414512394858048,0.04354601456209424,0.00012668740882559046,0.026279247330336025,0.0069525263106950215 +2020-09-17,-0.006259931082181321,0.044199293315998485,-0.2198160821516496,0.0001497755110754833,0.022854015792117634,0.009133267894925376,0.033978400756312914,-0.10578305150476253,6.44961496857994e-05,0.01577226536786675,0.0196264675037292,0.06406112003299123,0.027691651112195462,0.00014172446183450963,0.003842666798985678,0.025902168118254333,0.033751047748873275,0.04707285896554431,0.00025901010907407215,0.005321604916977259,-0.007299659287979482,0.015683760646584617,-0.1472253320000078,0.0002435287033295323,0.010958547115994241,-0.007719605907887732,0.01879573368642666,-0.027442993739508027,8.967731293095426e-05,0.004768541612749591,-0.030438733180742826,0.11509305089990604,0.014592277796524463,7.760100153275857e-05,0.001688111481239893,0.03211197707134487,0.3253013323952274,0.010863068949019172,3.385164808860723e-05,0.02141284045110553,0.011827363257994841,0.010297638751574086,-0.14905470643185942,0.0008857171825273791,0.0004987914540297608,-0.01330423312204432,0.03185973826409725,0.002820920665772661,0.00014601905346836493,0.0018426043270795456,-0.025175097506379217,0.021790619312806063,0.06580214613185525,0.000564710608069387,0.0023955232766495406,0.014321835696709487,0.16526188277783246,0.0018492606156315968,2.5825502483592994e-05,0.002296774911769017,-0.007824096042651559,0.02123464651247915,-0.01871614027226293,0.00010945615168810639,0.00427422261187019,0.00948690423849752,0.053136747305260065,0.04917435586676177,5.025639922488764e-05,0.002276306218059811,-0.009540905159267678,0.009353150839878015,0.008509603435477365,0.0019895488776923145,0.000723768955131055,0.08150459336599998,0.6317833960978488,-0.05131653637563506,0.000106161240532134,0.0009747940126838925,-0.007768415001417943,0.0441219911196175,-0.013081876377522814,0.00027263747270603686,0.021431195019408187,0.045211646991494533,0.2662391875291275,0.02175794501764687,4.783428697705989e-05,0.003978517046968508,0.014247205438502554,0.08560336178411523,-0.02813100516617262,0.0002742999154054571,0.013610905868899795,0.009689543166521012,0.12871535583052016,-0.01100596334825967,3.1239435063957845e-05,0.011101201986641777,0.014943741857338459,0.14945040756331748,0.0007621752605762051,3.340749885224887e-05,0.005412656191746598,0.017521051541521043,0.048376424079999904,0.004166434288324068,0.00011666730349830198,0.009656873653849204,-0.003269762838011512,0.02240471532760332,-0.013085860748768231,3.3710810908051774e-05,0.0011523961905717463,-0.020206432890364483,0.0694373340100323,-0.01597217474516134,6.451697507931139e-05,0.0048736288039678225,0.016159598163572843,0.0532265464595615,-0.027438581411305573,0.00013881962416703806,0.001105983004885021,0.09462941562562247,0.08594950567444991,0.2864613308329305,0.0006293008759949499,0.014317791308507664,-0.036913414519922916,0.15365543719719224,0.09544270249665558,0.00010111656224091387,0.014442915749215371,0.033629577970828425,0.0928256394872607,-0.01945953479481133,0.0023252660037758432,0.030404411733490462,0.005935183095199518,0.061925032557563216,-0.0998339124059624,2.4646205925078368e-05,0.008485571278863256,0.03901212080489637,0.13305144543084166,0.012380847805393528,0.0009586304795005538,0.020217481216225207,-0.008138637266857238,0.04898483200657269,-0.001951250324237479,0.00011064090334702796,0.004804046321817959,0.009315046016782744,0.013916218874375951,0.005892697043337914,0.000157982557542548,0.009472220200018427,0.042330891127397435,0.06824554248130751,0.039578970449336434,0.00035603036097705973,0.011496773042786512,0.04314424229699338,0.1758395751070874,0.06347997239716248,0.0019017637360997592,0.004950512969624876,0.012929199122985466,0.04356729760356711,0.006041931572131836,9.521412313779561e-05,0.014233296765915797,0.05985928304409128,0.08056855663371838,0.042977811684172855,0.001846898885430737,0.022386311159903687,-0.010473833735212759,0.03432508074467618,-1.361120045822362e-05,0.00012089550242977452,0.016386186734836692,0.01793911138240778,0.045767798974508396,-0.009152265741662124,0.00015889172327812734,0.004102179528616909,0.020263880780544988,0.09937122230947747,-0.036584823580467794,4.977094821888331e-05,0.005293502617470419,-0.024333652147300038,0.07841167525751183,0.0016394497372745867,0.0029413358804813716,0.009889160878870096,-0.04079620744505415,0.18496741025432634,-0.018605434837642806,0.00010971478241684209,0.0031030568244744443,0.0558016649644171,0.2948235086169686,0.1382696380513334,0.0001372605805225135,0.012778136195473038,-0.03400791543077771,0.1881331687505669,0.03204535383776781,8.549945379272859e-05,0.01870981466569266,-0.00453362571562473,0.017394233810747662,-0.010319722339555241,6.550700660330468e-05,0.006074222971633398,-0.029976046915070304,0.052339276549251336,0.011041313601016652,0.00027923897712754545,0.023148835750377364,-0.019422906137017457,0.09570613336941587,0.034423364898944174,5.0464830241021606e-05,0.00552993281384024,0.058291344245675746,0.47730824460536,0.07654845587513462,3.150913058149929e-05,0.012793216809595765,-0.020630096588090507,0.06407297683546632,-0.00893771941813375,0.00011254736303973951,0.009152770507176722,-0.01289479012274589,0.057190564340683425,0.05890778401917143,0.00035540036275308703,0.0037502462062821386,0.03342659564992563,0.15179706348000127,0.000973787224769709,0.00012612482413488588,0.007249218761716731,0.00908470459686904 +2020-09-18,-0.002168432983544341,0.014089869122681434,-0.08094950235370532,0.00016275173591248922,0.0058416831937372835,-0.009234189922936786,0.03209996334240908,0.039987695792989726,6.902474211454063e-05,0.0037348825643532197,-0.020814851547339322,0.06963890446365611,-0.057898432147547765,0.00013826701655764265,0.0057738361489709945,-0.024758005857690158,0.02274045680645878,0.008096776624191915,0.0003674382239326037,0.015914791628490653,-0.035134644906415165,0.09205502421340515,0.018166088082935104,0.00019970357724659544,0.020667570971000537,-0.027379219922884283,0.06763120053739352,0.049804252696006135,8.839357792923647e-05,0.0074139484795619805,-0.015615290988752207,0.0594999784483396,-0.000490034709480408,7.700574528276897e-05,0.007863768068778918,-0.024296751820670856,0.2694373142357684,0.006057836414465119,3.092353195241476e-05,0.01760831455534464,-0.023702513497269657,0.01690720178995658,0.0359280426746596,0.0010811039475245455,0.013006566786791199,0.0369380816180627,0.07952898764175678,0.021410478469646166,0.00016240925298981497,0.01889159575274279,0.00930941878855998,0.006666220690927795,0.0017789126239361418,0.0006826015006084947,0.004263207509626804,-0.004521821777163767,0.061906783363644774,-0.0025121695622957077,2.1766970645025884e-05,0.006751028455158218,7.441217426755699e-06,2.1166547877092893e-05,-0.007967554179097763,0.0001044347422178841,0.006855226727077675,0.004454341367021502,0.022868424677999436,-0.03464429707194002,5.482884112299541e-05,0.010257980520059098,-0.017431555338394026,0.014331450778080937,0.006489463164720103,0.002372296429032449,0.006626992154517385,-0.03443592264578678,0.2653842368076063,-0.0919165901867091,0.00010677970288976914,0.0025962644268982802,-0.023058756325378824,0.1349737651673853,-0.00022222682121026007,0.00026454207084149737,0.01995578985428251,-0.022788037816438365,0.14737503530512852,-0.003793234000831573,4.355559644994654e-05,0.007414262110717587,0.022846880045886617,0.16365635037439402,-0.06752350579297466,0.0002300810480657926,0.006742577315574048,0.03197694282015676,0.4795335500788542,-9.522236011974276e-05,2.767248585117433e-05,0.007466663858368855,-0.000523914889104666,0.005824776209322096,-0.003961743295978396,3.0051295960447655e-05,0.0015515412070771137,0.006600790341422676,0.020513672591081472,-0.005494014071202253,0.00010365142443139387,0.0032511647241749864,-0.0692104058473321,0.3886955867464244,0.16444079869522374,4.112956936208146e-05,0.01697396524056423,-0.007013475896737391,0.01958519054122114,-0.011859657566452079,7.939312379648232e-05,0.0015682254443313017,0.00711004904467817,0.02331671138616076,-0.018906564137661588,0.00013942925120723817,0.0014058268230915647,0.03548185335236468,0.02963651283320164,0.01582320505289482,0.000684312946910897,0.03511480610960151,-0.001872799978552287,0.007290183405919014,-0.014996779373899663,0.00010812819427165605,0.031873030807451436,0.03114568475597003,0.10829864121931738,-0.08229611251426036,0.0018458399890395522,0.003946777777424911,-0.015120791727867976,0.13133822510253398,-0.044709346989257076,2.9605035339757432e-05,0.004454090052917527,-0.01553679897126376,0.03972690333203602,-0.0034640624059017818,0.0012786394589012035,0.024235562684023798,0.03976694414041871,0.2641528246667783,0.07542981421218052,0.00010025189796111015,0.0016265182273652906,-0.009521746788573848,0.01526595556563423,-0.062221834648973885,0.00014721023989907255,0.012404248153013355,0.03135409359628345,0.04319821568204664,0.00637823973340189,0.0004166125569966762,0.02530256570174499,0.0045041415472300405,0.022304489081183966,-0.011095103806647388,0.001565200910487348,0.008123866425785895,0.02578783824200559,0.12211456390285166,0.014816765731737345,6.775445323151366e-05,0.008623348250043373,-0.05500653630399866,0.08057545347057353,-0.05947295997160098,0.0016970269225434886,0.014255289681229,0.040297880599176814,0.11691951875498449,0.059478459890482636,0.0001365561371527393,0.017206287399230927,-0.011824559311909904,0.03130813631728761,0.00437647129857434,0.00015310455940566978,0.0183286205088232,-0.001391841788857196,0.005843259386097165,-0.024351935938458035,5.813646640322435e-05,0.0006730450642510378,0.07343486622286297,0.24855634250689657,0.0915853800605254,0.002800241685055137,0.012640393483594723,0.026698206741452242,0.11203198391355693,0.018679144164813942,0.00011854428887202218,0.03326209614004229,0.027333198326297374,0.15898267909283476,0.012720263237793615,0.00012468132983001597,0.006326803188012315,0.023785899293878456,0.1350405649630413,-0.006255482201048635,8.331132244623616e-05,0.016290152824897177,-0.052501494868887354,0.2409368685241306,0.010477939548683786,5.476660284461141e-05,0.0024472886380592414,-0.042238922127596605,0.0987265173257128,-0.047480464990692875,0.0002085971661362312,0.026731880336186595,0.007523931934814775,0.02968454528014803,-0.00592242541868675,6.302731891822632e-05,0.004318767051465144,-0.01669672668834651,0.1691030850736571,0.0028074333810767086,2.5474818168064565e-05,0.01534203154910773,-0.01401270895029147,0.04605921080945234,-0.0026772186803678917,0.00010634438739132149,0.008835585166061151,-0.0175667852487095,0.06571842429741136,-0.01136823917811322,0.0004213404173150483,0.005654760341681576,-0.03629388588790327,0.18454387239148792,0.09053091939545774,0.00011264337026482284,0.01166798883616865,-0.003212004606836588 +2020-09-21,0.005460338607360797,0.040071061733024306,-0.0038174469339988877,0.0001441037588460695,0.003927962880562949,0.00959761129825788,0.030109130988488546,-0.03236451827900368,7.648485762903784e-05,0.01767713227580649,-0.01732822097418733,0.05435457510238209,0.005460636395342128,0.00014747386992591507,0.01043607910017578,-0.02796235036698023,0.025119380248005335,0.055972515471053204,0.0003756925726373892,0.008299433776109214,-0.013433039910626166,0.029890710527803704,-0.014285875181647277,0.00023514504878045312,4.001062745099106e-05,0.008532794045933427,0.028020381948659096,0.00089703228655045,6.649116651052637e-05,0.009055236735328855,0.018126879726286897,0.06421646072755027,-0.04768184909051718,8.282597224362401e-05,0.0028262902788235827,0.0032611194909885222,0.0306151888242731,0.0012805610526783768,3.6528209440216296e-05,0.017013571046473913,0.002885196746252813,0.0022702292552731875,-0.018311284303864576,0.0009800551259098967,0.017760584359450184,-0.006971936823288518,0.01755884448288381,-0.012115588349457506,0.0001388415320034115,0.004538192674779116,0.008907800807291205,0.006298667563568363,-0.05078727376006739,0.0006912675459020331,0.0031063515782334358,-0.008627866735252628,0.11403455292119477,0.0008170294158893089,2.2547051334928536e-05,0.005755357719733662,0.005637980054451201,0.014771548572980919,-0.03917402629528708,0.0001133831572443235,0.01102198111128776,-0.007857457117671008,0.042125056351748076,-0.026542108488972167,5.2505324028386926e-05,0.002285535643789722,-0.027312446128060996,0.02074849027965628,0.02111390376581146,0.002567420878474502,0.005764792981714861,-0.1173030606693545,0.7081980800303789,0.24366667704915865,0.00013630340547662222,0.017490813120293495,-0.06301089216516159,0.3063449097366148,0.06842967282271745,0.00031850275427165606,0.007950165038677301,-0.022644973752580497,0.12445847406253892,0.005521728691367385,5.1251703576913914e-05,0.01241747924483405,0.018735237725700918,0.09957290221895215,-0.14491415740451505,0.00031010220190645383,0.027875831749618992,0.021719050247518842,0.31784547309198746,-0.034344871359208426,2.835665705983571e-05,0.0016041989264374934,0.007463309406504312,0.06897298587883624,-0.0034578686591762117,3.6152149842048934e-05,0.001732114853443877,0.006510873621149973,0.014724042787864973,-0.0016950494658466721,0.00014244097920959977,0.009428308487266236,0.06404360562568524,0.4097268416395803,0.13691373332805676,3.6105530844650085e-05,0.022682343007158823,-0.004092447154352619,0.013204470755799341,-0.0004628101039563761,6.871308751459319e-05,0.007870740814251986,-0.0023676634360575957,0.010709681048931689,-0.07740987766861626,0.00010108623606129796,0.014206412863722448,-0.027288749398545843,0.027696933201649475,-0.0013356310460062516,0.0005631544378616425,0.010653233863050511,-0.021206197839530365,0.07335761502440057,0.023087091661593947,0.00012167563308187892,0.020067784226499855,0.013596848463246264,0.0398587216720563,-0.005506103818212677,0.002189445130953109,0.0220568744667718,-0.03217425904703786,0.2956909361531879,0.053942325862862996,2.7980323875623535e-05,0.0139145577004061,-0.027499975008852408,0.06933917328759195,0.021408457300284275,0.001296656404757495,0.006916222950920123,0.003866094228332551,0.03251219660677107,-0.014052818394045315,7.918661264294641e-05,0.012993495166891064,0.0026055991983705605,0.003983478774972943,-8.340860128325214e-06,0.0001543798059677606,0.0016454694765840727,-0.027947891976728555,0.042085711286699606,0.002529387932031287,0.0003811696367144172,0.033763266463350504,-0.06077976710004567,0.23544948276488112,0.05443791406910225,0.0020008366413124825,0.004371436937742338,-0.009679683552395712,0.03405424033050229,-0.022786546027298026,9.119695407268064e-05,0.013236160780065865,-0.04393108427706996,0.06774376511393515,0.04790509958073386,0.0016120547352732925,0.022207426515922918,0.011169551327273104,0.03825000055991423,-0.03137625706114544,0.00011569652604580518,0.006846709595742083,-0.016759932903889864,0.038507624134945316,0.004055165505388896,0.00017643548176467873,0.0036112979411321777,-0.001252505461671099,0.0060354049184967095,-0.0025574474256784712,5.065089700192436e-05,0.0028482051044774405,-0.0016309070262283576,0.005220406004859669,-0.0008255442279970756,0.002961031183824979,0.015950128410422582,0.010924299340776877,0.05291528207039572,0.0028013300518372583,0.00010269588623258743,0.007888014041256438,0.00399025803583208,0.01917385952186415,0.0016599658236167384,0.00015092188612850043,0.02568735140181867,-0.016690866494015258,0.09519572992132427,-0.037040266454285875,8.292970373405735e-05,0.006738014035370443,-0.09545402481989071,0.4644013199853934,0.2817583583387291,5.165926164048112e-05,0.011959188086741719,0.013198384230669548,0.019995364597776843,-0.004078169556012496,0.00032182578252923437,0.004068926477122394,-0.026040132324143008,0.09353344623676575,0.024352360321946466,6.922940937282418e-05,0.0024143832254434833,0.01812828106692537,0.17020620866305858,0.0035916070478433956,2.747973330771183e-05,0.0057502600005130515,0.02712049914383825,0.1072344633642085,0.10641930225015434,8.840407006034113e-05,0.002568388567229865,0.010563676890969844,0.04458973252682631,-0.07178931684052134,0.0003734291471173673,0.012781139792381071,-0.02494959987023981,0.11672098553136952,0.029601750916606783,0.0001224296012868886,0.013485365322651948,-0.009170414687090277 +2020-09-22,0.014580750728126968,0.10297138391724744,0.00412350221719544,0.0001497441688505295,0.010047494663419263,-0.0005853234731755964,0.0018931400055744226,-0.024912609243607543,7.418630393865239e-05,0.002312674387039155,-0.016452676356205842,0.05344231150373398,-0.1368523318237986,0.00014241263598559241,0.012962272567021873,0.004147171177354616,0.004291451194148515,-0.0011541022714273146,0.000326148691214946,0.019123008531108397,0.002658561058964075,0.006169437434908392,-0.024582442861126194,0.00022547523442258488,0.01451786573517058,0.012564073743154144,0.038612184301311296,-0.07666917613123124,7.104816180508128e-05,0.0003695949383659724,-0.009409211649750716,0.03458687232896808,-0.0006071915291322216,7.98236903743591e-05,0.010772356000652402,0.02576879403822941,0.20910030529645413,0.025798140337462586,4.226083190816476e-05,0.001979936819777626,-0.013298207140619675,0.011347490196347206,-0.011777371452393551,0.0009037286779140682,0.0035103085591382706,-0.006971137840480132,0.0169983726882999,-0.005625442179089128,0.0001434029909999938,0.008715647270510014,-0.012473088432254515,0.008770553261854214,0.025196075647928848,0.0006951385431799093,0.014752656269264568,0.006320222586137015,0.09436436456415802,-0.007220496009696042,1.9959384439008503e-05,0.0017103303132443618,0.01394517853552445,0.04402870222635875,-0.0017600861970232212,9.408908217677005e-05,0.017553013477010656,-0.009218096173778034,0.03760158741693498,0.003475500134183082,6.900759204689403e-05,0.013901783581298574,-0.011736722445844337,0.010921066950489626,-0.0031420551665758,0.002096064957582554,0.03822217772960626,-0.1016161307223875,0.711299167248687,0.09482488653717634,0.00011756078073416844,0.0003283432377113255,0.022606024975584588,0.146499374192468,-0.005824124947267715,0.00023894429482218679,0.020522279937931674,0.03502519680811832,0.20733595149923117,-0.1170429379682445,4.7584655134880255e-05,0.01749579292783108,0.01812248822969634,0.10602403621625647,-0.05986312281803231,0.00028170872659676353,0.008898058788985575,0.10416443178191204,1.340907967937745,0.27073294430463496,3.223670974604078e-05,0.009067050668242413,-0.011750928042649909,0.1341062395911426,0.04545451641946825,2.9275538417292735e-05,0.003172905069828836,0.01225733629513802,0.03865144065688821,-0.05106257127187282,0.00010215348126510606,0.011742202665780225,0.00019022673859018065,0.001409218637838928,1.3701183720020755e-05,3.118067838854433e-05,0.017469663144320656,-0.021037625057424094,0.05338146930315314,-0.06270612130267472,8.73742718610794e-05,0.013403138939035292,0.0019047369273917881,0.006808794976198517,-0.0016233242010971383,0.0001279126039703065,0.005795892844544717,0.03560386762925197,0.031491051845132026,0.02985094174034166,0.0006462277036227444,0.027330385338838296,0.01834277074040052,0.07366413791356959,0.03398411801945996,0.00010480809719531219,0.003106378027770185,0.01756915528316206,0.05845142719527835,-0.004366575211574768,0.0019291897078630637,0.002993924075339621,0.006058411262068683,0.05823564626243437,-0.011453484913934515,2.6751740750667838e-05,0.0024498075318609737,0.004154026566963703,0.011896381826979286,-0.0959963181787953,0.0011416307146917086,0.001158588683570117,-0.005909795485157399,0.049363440333808045,-0.08641524185535386,7.97246599222952e-05,0.029448562751065728,-0.021620593736039355,0.034030751845455384,-0.011502382529951132,0.0001499482695947731,0.006591444182240859,0.022655928688903565,0.033803404657964824,-0.03120741119687787,0.00038470279223469934,0.004290291278337126,0.018259394462987796,0.0684120939805419,-0.08251567976662241,0.0020687300758874313,0.03420050638119384,-0.020507165208193297,0.07583090706763525,0.013428910773115756,8.676603459248957e-05,0.0004646787669542148,0.01590703801432439,0.02276947978123007,-0.02438048841636374,0.0017366544057211108,0.0028271454264715483,0.01583686230759785,0.05778626391793669,-0.049658398438303504,0.00010858268100334941,0.0006492453306925668,-0.034073185315322045,0.07689964022787682,0.011448900435128105,0.00017961756452471614,0.027435695552160452,0.019163496702862663,0.05836015254585038,0.011645853905529297,8.01442304135888e-05,0.0025871351825597737,-0.043846665197860464,0.14919772841597922,0.020025010125012038,0.0027854310679907993,0.005211821648623194,0.006767027071442007,0.03343075319029213,-0.05953201974727664,0.0001006913870197975,0.022303899344589043,0.020445510362462765,0.09527672387850614,0.014327940410677161,0.00015562233415538732,0.003399142166832419,-0.05163822021175591,0.28076915015655174,0.059567519562996614,8.69902495116766e-05,0.012373886983983878,-0.02895979997423941,0.1314541922566343,0.008357496959043286,5.5369233551978455e-05,0.008827259527076437,-0.009848198344456868,0.016166600334633633,-0.008370983155007044,0.0002970075428655781,0.02301943019029413,0.008926973613135533,0.037577590360253196,-0.012028177224605432,5.9073091440539157e-05,0.0060878348390511535,-0.006550841543360852,0.08445080479356026,-0.03439915256228776,2.001357105073747e-05,0.0024130159531080856,-0.013566979354117402,0.03854304784806215,0.011433945668589487,0.00012303992975013487,0.0037523608842447032,-0.02625565882853308,0.10797228474884865,0.11485246110415825,0.00038329980647757307,0.008176584382919575,0.005108597013964063,0.029535925447738642,-0.01208143651860301,9.906559630976097e-05,0.016554586899639828,0.0001872424051007358 +2020-09-23,-0.022868271456351435,0.1428160559333156,-0.011314961791530555,0.00016933350096872064,0.005539834528098168,-0.019101914361694398,0.061804345337892225,0.0804658817579508,7.415977606814663e-05,0.01300954954155642,-0.029618358689348347,0.09227598861551518,0.03292446424623346,0.00014848052210698266,0.007278469902462649,0.0247292507261476,0.03018988499989665,0.036509048438726925,0.0002764504845189848,0.015325473145238494,-0.01068042728530539,0.02250993014705337,-0.009567884568412016,0.0002482631449215594,0.005805366384609188,-0.011254243533391923,0.033360632670321314,-0.002892173116839001,7.365950063588947e-05,0.009513368723227212,0.013325882402172043,0.051332504744501725,0.012735441608317384,7.617165217983345e-05,0.018259087292166114,-0.011125634810252886,0.09969129956502142,-0.11986786217370235,3.827067811495477e-05,0.004265734359484262,-0.021001518497902757,0.01909167902883948,0.026604156966727514,0.0008483036965085766,0.013144635035684452,0.014735814284852222,0.034991352701152424,-0.25856391385627225,0.0001472567780765806,0.0036853664359613367,0.005294899027038328,0.0038815273774171714,-0.06327821244731179,0.0006667751214029462,0.007781424789842863,0.023924829144194026,0.4037457290125722,0.0015946727291068332,1.7658901870334838e-05,0.009742572450234029,-0.020946033566137872,0.049263735341132556,0.021344246931480855,0.00012630644002019071,0.006311812177794106,-0.003015585704296004,0.014991512096297207,-0.024236336315214903,5.662237147236882e-05,0.007712622039797246,0.018405814686792147,0.016573440263224968,-0.02192542173644634,0.002166034404155305,0.0009273893220352776,0.01739356361110293,0.13689121019633807,-0.009702792578292005,0.00010455988927408589,0.009468049756173798,-0.010243363372379967,0.05527706707383542,-0.040748028427797574,0.00028694972914232507,0.023172839319042127,-0.030853643733706415,0.18234809314954117,0.007769266441323062,4.7661333620145124e-05,0.005994741205470708,0.018924697956363427,0.0841009303636712,0.005892193942114806,0.00037086424412789297,0.009969623969106885,0.051280227093749145,0.7004556252525004,0.025803309316854584,3.0380823641508e-05,0.03136260660791114,-0.006247159791666004,0.06735456280000668,0.019453513462859028,3.098826792354748e-05,0.0029985766787950898,-0.001329213587947742,0.004792700530484768,-0.14399410574680835,8.933820758664368e-05,0.007693385347452183,-0.011800138804727484,0.08806737808791491,-0.017026184855898262,3.095026879831755e-05,0.0004922969684028693,0.016535830598782785,0.04940596538910028,-0.09264689011579115,7.420343449853017e-05,0.0023186253073496687,0.008242212445355588,0.028380845843294082,-0.02361641475081373,0.00013279051807188266,0.004479494820656422,0.07251162469782363,0.0665288033391992,0.09499296750666288,0.0006229791123911325,0.0009483467105570447,-0.021699274135315555,0.07291545199766665,0.021761904630279584,0.0001252597796086811,0.004329540518518029,-0.007018980810078888,0.02516517275402479,-0.0028815121987364953,0.001790166037866451,0.038337746847178764,-0.018134229599084815,0.17949507574088266,0.010797662189253562,2.597937906109185e-05,0.004025852182077553,0.011677756114718744,0.03413598465180014,-0.017141355204057494,0.001118454280925058,0.00625185345632688,0.03154751470085901,0.2258769710938229,0.048783226536418714,9.300768596135202e-05,0.002435963026765702,0.004849828040749702,0.008128158557394074,-0.002012669706833778,0.00014082493504628273,0.009547415810353472,-0.010754395097981036,0.015191551403430321,-0.005376243481064949,0.000406338313738123,0.03153367967114231,-0.0011123255073364829,0.004330072999554194,-0.060687726825730384,0.0019910722496296663,0.010448840136373982,-0.013818122298038676,0.051262713395424674,-0.043504181326899725,8.648440708477596e-05,0.01377519357320652,0.0077403153325067255,0.010316848879128964,-0.052177804165065296,0.001865042687579001,0.007694211644489992,-0.04316526024912027,0.15031319066218776,0.022562849296404668,0.00011377669302031491,0.002120609857334977,-0.030998437793776517,0.06232664507980998,0.018409653225544123,0.00020161666809611074,0.002688479454323718,-0.05697397070429972,0.2190935968669299,0.007584174944854468,6.34688643752058e-05,0.010932545512004569,0.03053789648342717,0.1250916086875443,-0.09754963793950643,0.002313816953954519,0.013989198730604804,-0.0033206161418612647,0.016451442293480646,-0.05524553239566903,0.00010040498301049855,0.00272266744315243,0.02387220624240426,0.1101201693508982,0.016737008384276667,0.00015721228198111432,0.012625011035023724,0.01066240156940528,0.0595939887175565,-0.007465010269892164,8.462550616417437e-05,0.01011256565084102,0.003536834648223453,0.016503412677627224,0.005241471594209803,5.3862733739450824e-05,0.011166287065543876,-0.03367699799878804,0.06811818342676372,0.010334492589223383,0.000241045877028683,0.009032501513702614,-0.018124341224771103,0.06259952408340845,0.012992110323903497,7.199553683954603e-05,0.0012143876809407458,0.004290626074682347,0.04575161224507726,-0.029644117156583986,2.419611000698868e-05,0.010110461956902288,0.0009465980774631812,0.0030793761832678024,-0.0003789524887272635,0.00010745134007015752,0.008283179110069486,0.011816363839451685,0.05066540768932078,-0.0010717148075802979,0.000367620976410407,0.010501085886420996,0.02221272157992369,0.10148354402325249,0.003520329335332445,0.00012536547304892837,0.0031585603518430767,-0.0013872078379969666 +2020-09-24,-0.023838371854382118,0.15030345475122014,0.01889842810916761,0.00016772361368923685,0.009238762106110729,0.003758376469116288,0.01293493468667038,0.002754426073414996,6.971826436202622e-05,0.003118151125233509,-0.052198858521313174,0.17875695990429064,0.09786445284922335,0.00013508130587217202,0.0008361186076031191,0.005992559394152554,0.006056973022992704,0.0009785354571634707,0.0003339062622323179,0.016778826765783714,0.009936562934415022,0.020887651053752006,0.0025863259270548127,0.00024891115282181503,0.004904510501627543,-0.002522911316264816,0.006298048752142526,-0.014305933231592485,8.746669294338172e-05,0.003202915435993034,-0.0078057581382552374,0.03180330295667261,-9.319437428560491e-05,7.201661749621448e-05,0.010254505889102752,0.0023459660717751025,0.02101151263846648,-0.018084457634268827,3.828803009131209e-05,0.014220965426072254,-0.020934159661529478,0.01756899538707799,0.01836681092592188,0.0009188685557635684,0.009830474346255492,-0.00791577212260753,0.01807147192024251,-0.0010659833367124287,0.00015316574317007884,0.0035918142619124765,-0.03139673721277183,0.02592797784470433,0.08192783439978193,0.0005918889461141127,0.003426706010440461,-0.004541947696712464,0.05400533851232044,-0.09828840759876524,2.5062721346254445e-05,0.0030492483522493547,0.024604294747349032,0.05188604452009505,-0.006859440726486765,0.0001408676906425028,0.005019734159703562,-0.027655057406830167,0.16057754157959536,0.05661575593930013,4.847876839299813e-05,0.005693573044219221,-0.0063550389617629596,0.005530252286046263,0.0028277590629690297,0.002241280672855083,0.013223270368939827,-0.08780531877866025,0.546535281703897,0.06614170215628484,0.00013220708465530164,0.007864116059697876,0.01682462699695251,0.08202502387852077,-0.0484631483678641,0.000317619612158682,0.03245087233101731,-0.03506021183231914,0.19795048334269957,0.045443641019284615,4.989062277939575e-05,0.018883844701915724,0.011692645862149496,0.06661753225339434,-0.11695752777153795,0.00028927510699341437,0.0034707718464109995,-0.023347411094745345,0.3281603274119588,0.035004401526262094,2.9524522687213275e-05,0.020078023053213698,-0.01969792421782964,0.19931691954602468,0.0913411179817768,3.301855056488387e-05,0.003911323947320357,-0.022425251015207707,0.06248444320503197,-0.02397936615492569,0.00011560807362028025,0.03260152212004897,-0.011942611287595412,0.07620696197943629,0.007089941402234649,3.619903760124207e-05,0.020408970066354996,-0.009978094508081436,0.0348345392972574,-0.02575812269075767,6.350602414997664e-05,0.0009881767097880594,-0.016103809484835894,0.06169403959306751,0.07271422579273899,0.0001193531847013188,0.006213739178455884,0.006242539546446419,0.005169095286019379,-0.02631077761143359,0.0006902752878437609,0.026918513895304603,0.03017147862822464,0.12383689782547239,0.01964440410597042,0.00010254926199175755,0.006747739144619881,-0.023775328134781965,0.07029966207264349,0.0044967477549594185,0.0021706632664283175,0.006561918886272995,-0.015992681867989487,0.14104979893484693,-0.0009235060399004485,2.9156206808504383e-05,0.0008125652893649228,-0.013660390873647055,0.036999098425062424,-0.026186774616573077,0.001207100012764853,0.0015288206361918806,-0.02825630688382434,0.2246522011395747,-0.001985984114271016,8.375878401369664e-05,0.0025390548556746637,-0.017008514978647898,0.022724796084818758,0.01668381163933096,0.00017664924606443434,0.006332320847145842,0.023130502020350774,0.02887947257421898,0.007712360353785558,0.0004597266869288311,0.007217234671848273,0.02077214390441308,0.07978694487372073,0.02039291792813803,0.002017900871905508,0.015158054483744675,0.04087890591860407,0.18093338071549084,0.08970426966235405,7.248880431861714e-05,0.011234708832530175,0.003433452532364744,0.005066533360418433,-0.05013780037460471,0.0016846020809943882,0.025650816106763178,0.030573595834152853,0.08923103998829016,0.04547615478744071,0.0001357521141780402,5.494797737431393e-05,-0.025485884536712824,0.08307049934094368,-0.11961174596828393,0.0001243693218547433,0.01740793882048403,0.007343477504062142,0.029905924565084598,-0.0013717980303664403,5.993195714746464e-05,0.011950522312225077,0.0578187165384945,0.20463897466246145,0.03777028736310664,0.0026779234222473053,0.006830764302350803,0.008709233323170695,0.042751157283110845,-0.021722602501396328,0.0001013380680886949,0.0072791137500357915,0.008909383389379438,0.050537790583473,-0.01910563759668114,0.00012784748258869074,0.0005689932087073902,0.0009578555800174054,0.005277356099029981,-0.02597606927852118,8.584842509293626e-05,0.028014755467674308,-0.0009726811175918808,0.004983555518863522,-0.055055911359728024,4.9054469022278245e-05,0.001371264097403385,-0.014254546362210319,0.031125731021536224,-0.12339721107595547,0.00022328689515971052,0.04502992342584118,0.015997898147290846,0.0752649148412138,0.030016981995886628,5.28548358963956e-05,0.005219293067439443,0.015330418329171182,0.18965692257796224,-0.003797240275624498,2.085530722800944e-05,0.024897261525666327,-0.005907407739354228,0.018067363916121883,-0.021166042866863608,0.00011429075980046634,0.007058109026270335,0.017827170228911036,0.06919314995896865,-0.08326702164630488,0.0004061133634476904,0.0035761865244896473,0.046204979381650205,0.19593857312022592,-0.008517379701048992,0.00013506431977955026,0.00965108444362661,-0.0021641777471099136 +2020-09-25,0.02588280399242314,0.19647934262703312,-0.018963025924902305,0.00013930958901245885,0.01660607590689451,0.00768804915927634,0.026884706178814142,-0.0044828634433634095,6.861536592565916e-05,0.006946016940516019,-0.014233303579769097,0.04085122413567825,-0.002655656209100358,0.00016117506051565916,0.01612147798097518,-0.03334995040774708,0.029061255773088854,0.06367092290821025,0.0003873010478499254,0.009239573963405509,0.014182779583588902,0.02775569170527927,0.022112706161568765,0.0002673665492398382,0.008231388277982185,-0.006983303134954077,0.020252829447556648,-0.0061834393984551966,7.528733578372964e-05,0.006381511074252217,0.019377775317588868,0.06497409611627847,0.010684737405982444,8.750916193452633e-05,0.014558583151905051,0.01765821504978875,0.14198166451497385,0.009961984552575177,4.264942228595334e-05,0.0013093288260535992,0.013722898514965375,0.010812962049237223,0.035241347497111206,0.0009786918223715236,0.005789031064279521,-0.005760823697014573,0.014677947885623596,0.0035055689853191845,0.000137240132719543,0.002927370113500114,0.004703197641052992,0.003818312735834077,-0.0030821050536547524,0.0006020687576818244,0.016013925777882097,-0.013015881048422403,0.1830455558011265,0.03132326396308304,2.119030322533904e-05,0.002279927757879166,0.013347718099943605,0.03991754968219803,-0.02138753449115608,9.933314576030052e-05,0.0016624996905575085,0.0034476784177344265,0.022548292326729162,0.022222307341902368,4.304026255559471e-05,0.00323323467184275,-0.014079030394252734,0.012324609414072178,-0.011511670150161335,0.0022280377986613475,0.008203024357295845,-0.02448813301029241,0.1589055902213935,-0.0376718307419778,0.00012681441059699967,0.021477357149750645,-0.04035724761304779,0.2547724657588384,-0.030703881270423807,0.00024528855288622777,0.0006958908986971494,0.0026322593311401327,0.015674944445967978,-0.060293702573647086,4.7302448285396694e-05,0.001919461683495568,-0.042189457349242634,0.236330931184538,0.014398123681674542,0.0002942186379947408,0.005994330760849507,0.03616299668018369,0.473373999573799,-0.012744207946143957,3.170226139038831e-05,0.01657314550110833,0.0015923592946256947,0.016828715343414128,-0.006859698057258112,3.161344407065408e-05,0.008744701421340382,-0.02960178268352064,0.0721741986088941,0.03328095743666905,0.00013211698415305245,0.004099998879526288,-0.012615188131666937,0.09128649809157958,-0.011501417114172087,3.192122582342694e-05,0.0014932196932220029,-0.015194470906699105,0.05062141042888714,0.007335388847875361,6.654703691838215e-05,0.01003455297688182,-0.020262727495734097,0.0824092759358421,0.0826707591444803,0.00011242694278194237,0.0009808795173482452,0.005953042332752617,0.005527753889870901,-0.009129182894926263,0.000615553540216698,0.0067308253866944084,0.009942762780424753,0.03430020752130058,0.006562244174519418,0.00012201025629173017,0.004592544718560009,-0.00439318401320141,0.01359166727254585,-0.0059933502140466525,0.0020745592115897697,0.010631684320065646,-0.024450851154206123,0.2318552227279714,-0.11123733882816689,2.7118102253175427e-05,0.013951384339450637,-0.0036924902131853054,0.009903927363483736,0.0008518277152682433,0.0012189423782091762,0.01626366138593676,0.01764904834769368,0.1563901292663454,-0.038131552916790275,7.515149031744955e-05,0.005723911615573546,-0.008927530871849557,0.012991414551675875,-0.014108702978355947,0.00016218859281218726,0.003353635640241457,0.021811553013264477,0.027451725763012004,-0.07810048301765572,0.00045605881150158464,0.017219691114652717,0.02042300300079151,0.07383663000733995,0.017861900868506534,0.0021438681661361775,0.00013327738220116894,0.00014399858079930066,0.0005166277471515394,-0.05071884546042944,8.942745154196787e-05,0.003000249045907546,0.02284817884124862,0.03838315476129589,-0.007425498890167462,0.0014797492012111478,0.006776059628907971,-0.017519588984972773,0.06227201987072833,-0.0035677224083150096,0.00011146717559994024,0.0035451687689146555,0.02974955508307629,0.06902376947229777,0.019551490092609137,0.0001747198218480858,0.006111442596329948,0.01713759256334429,0.07258592398174675,-0.0028752793569674353,5.7625051826941974e-05,0.0009369819617039447,0.01751608997958604,0.05422993633122355,-0.023991103524412492,0.0030613721773318343,0.013874205686888146,0.02863206005718679,0.14994867951486093,0.02640759318742059,9.498401457495508e-05,0.005447648813350327,0.03714169797886523,0.23257476935245167,0.01999826075520112,0.00011581370080500239,0.003199075496755836,0.023501467117416512,0.13392631875129338,-0.017887536179699768,8.29999330182637e-05,0.016427118468902265,0.038839132129690555,0.1668416822866542,0.041057337824630925,5.850760916018019e-05,0.00447473066602293,0.007041526902537695,0.011489591541094869,0.0008624108308752226,0.00029880760549352083,0.014114833935090342,0.019456693930243504,0.0661694896106365,0.026157783465530583,7.311822469918645e-05,0.001282901824527236,0.020574029281932724,0.23143845471725907,0.00371862405884186,2.293586470693062e-05,0.006021072146176831,-0.04568470131633298,0.14590212294879923,0.17670199362157885,0.00010945059914062985,0.0035312218768160635,-0.018634150648324157,0.07726606533217525,0.06290468240393896,0.0003801445566959767,0.014014579143742701,-0.06924802468136819,0.36275137388062695,0.11274135184429547,0.0001093377467359392,0.030456471169781577,0.001094143287981751 +2020-09-28,-0.009260926491884583,0.06941786443438928,-0.0021772522670872757,0.00014108140368029266,0.014539673823955344,-0.010776371295204179,0.036960577522836366,0.015015468121386835,6.995911781248865e-05,0.02461823037237254,0.025150841215972896,0.07756895122841542,0.04364861258267486,0.0001499898256539037,0.0015782166719211259,-0.029442371918698265,0.029462673272620483,0.04410593002989563,0.00033726284646039105,0.02125115007106273,0.05872781668601344,0.11584682096743457,0.2558387914270171,0.0002652512915580112,0.02481874162712015,-0.006843881432131347,0.017687907090239718,-0.04791966846813506,8.448366939780032e-05,0.013288476311889345,0.013125530985136706,0.0435685305363352,-0.08187263690784594,8.839624649809499e-05,0.008654004020404778,-0.021446079247860718,0.15724733624787782,0.006068583612595095,4.676955348647204e-05,0.014170775800546532,0.044884936520562246,0.03742629414385884,0.19576942912090814,0.0009248441960076352,0.0032415827682739213,-0.009920776923325453,0.024836796307749435,0.007843031669087718,0.0001396728500495198,0.014155757353248083,0.012116913890385972,0.010960281993007727,-0.07420228210352674,0.0005403742573960483,0.014342846606329899,-0.004168218572936477,0.04908615241232663,0.0005781465141529028,2.530546268202699e-05,0.0016642501851169196,-0.055344146013025564,0.13856704942814183,0.13326172237841047,0.000118648638462165,0.017640932738603,-0.016827240127524488,0.09916786329048662,-0.01111689419394064,4.776433709559505e-05,0.005625364494278014,-0.03216476238865459,0.02999713484647257,0.03658161982547261,0.002091334705807528,0.008610704637572708,0.04358058723585388,0.2355812541683766,0.018194744657512096,0.00015223147529336487,0.018762887228557654,-0.06819409737773506,0.37880980340322107,0.061463192085401755,0.00027876215134672123,0.047490164326180404,0.026627058627428125,0.15296751942853187,-0.019300277787255227,4.903260041648073e-05,0.016179716379297947,0.030709069752060288,0.17851802124956673,0.028336680459868927,0.0002835119727826326,0.007687996268463508,-0.0007787777841707265,0.010909090229603971,-0.04235415626713108,2.962478802676472e-05,0.017776788292450243,-0.007991140157551951,0.08899755915365799,-0.014121351002847895,2.9999385656700658e-05,0.009740815284336958,0.01080874637011797,0.030208318173550273,-0.0006285676808475395,0.00011525812095576201,0.000977640062921281,0.04748570023701431,0.3100989540277263,0.06957558094525254,3.5371617608676614e-05,0.01876575694735954,0.022647456763133646,0.07049940382140235,-0.02565953626454693,7.122154279947316e-05,0.0019377868350234485,0.003708517634475724,0.014375848871140719,-0.07929012165050708,0.00011795475301208739,0.00899936364534107,-0.02550049644946849,0.0262905650319182,0.015510365139501088,0.000554401347095503,0.015281720711563637,0.030451976768210876,0.106506399688135,0.051610595491054775,0.00012034437470047866,0.006122840114698791,-0.026379054246866894,0.09071337594744461,0.0019979313276256325,0.0018664100568677186,0.01286309624693374,-0.011147061638074772,0.09821171100579347,-0.003055074167782251,2.9186318714377625e-05,0.0015583422376213953,0.019550328496119075,0.04896842023019837,-0.015049931206283264,0.0013052966859257,0.0187514517030305,-0.04727352890462529,0.3607991516101396,0.03583396248923523,8.725255608544018e-05,0.0068281047794415085,0.011917392266454793,0.013960941645615359,0.015798095369377044,0.0002014707063423539,0.006880500473900348,-0.009188961143728278,0.014769744367842083,0.005144138528686145,0.00035710616696233376,0.008506453398194688,-0.028611830789708737,0.10670526020245108,-0.017208371464023486,0.002078309199297511,0.018112294874722757,-0.0064443477677652294,0.02207550832997961,-0.004942962397477163,9.366096468216189e-05,0.0016597337622278746,-0.0029619215953235593,0.004447547065555638,-0.012604742389411673,0.0016555038586449598,0.018383251368818333,0.009005688342929781,0.026399843018620587,0.004543503823862699,0.0001351548408493639,0.0065044409673117465,0.03904833932543946,0.09999038445803894,0.011643345610976685,0.00015830867227215563,0.015569555950658816,-0.04026612962171325,0.15044686641352775,0.0074150232024837275,6.532368348286813e-05,0.011931656683876333,-0.006947080189035813,0.018761018568483338,-0.01062574009306482,0.003509651195774267,0.05106743603313317,0.02193401445314698,0.12276790256856589,-0.0046109126571844475,8.887382251359773e-05,0.0021174977041804456,0.00516374807501783,0.03121673692678938,-0.002089130119374771,0.0001199605162327032,0.002698078580176666,0.00798091075525351,0.039725970044198325,-0.03536597977658596,9.502254158396933e-05,0.013514756621854144,0.02386642260533342,0.11005551444871618,0.013837679020654093,5.4503314422250595e-05,0.02586194289594118,-0.06978217297785871,0.13012229649730145,0.03787228225263559,0.00026147017866744746,0.002807625522780017,0.0038018651143709743,0.0159776632308423,-0.03266292498409604,5.916948882596141e-05,0.0037928105016584515,0.006678021054991542,0.09191796179837072,-0.10390515793333796,1.8744708185410168e-05,0.005405106369590581,-0.013456501285544252,0.03827052466857236,0.005217776493079245,0.00012290702471028035,0.008999861480324134,-8.303537889224002e-05,0.0003029236578245341,-0.005882983932193441,0.0004320738177522346,0.0015899948443899952,-0.01595927852388611,0.0707252957956285,0.009439896795457205,0.0001292439663854112,0.021856261492089305,-0.0005090198450788839 +2020-09-29,-0.03253164921126088,0.22143536189408528,-0.10918045771227618,0.00015536231657186647,0.006564589391291774,0.02608281317862644,0.08172331276103435,0.004815293383914367,7.658064048588098e-05,0.010419476246631906,0.005216561486720504,0.016473550852078658,0.004829466069555084,0.00014648539090445826,0.013344490758871112,0.0019763127038101114,0.0018422677388145801,-0.03466977230357971,0.0003620518505908846,0.009034774382128793,0.02823624848590839,0.06409390683800498,0.040044813340990804,0.00023050907218875305,0.012829093965829534,0.007219225333548114,0.019778320654430002,-0.08307314259909875,7.96980919144674e-05,0.003659182379267787,-0.017312396485847665,0.07093391461933271,-0.01903325374184812,7.161320604212727e-05,0.0006373201447599111,0.05318773408166563,0.367847853863503,0.04386566972181017,4.958403628341091e-05,0.013948854526021418,-0.014101858935534948,0.01187012670054251,-0.0023332312828866285,0.0009161483379193454,0.0014211708695619236,-0.004563544362501975,0.010695111719457076,2.756276966330313e-05,0.00014920344045803662,0.010405366006625208,0.016859804768239537,0.012197515916710616,0.007040653231743866,0.0006756246807152576,0.005745175361533367,-0.021699083997130972,0.29714941712128917,0.05689014769331169,2.1761524058068697e-05,0.004995899900451188,-0.08182969523556768,0.23378072633435962,0.19413720363885797,0.00010398082717495709,0.022802241655899107,0.015458950287597927,0.10441965604936579,0.09389601865341521,4.167346006634403e-05,0.005461293508106191,0.016848967334651663,0.01372617281046214,-0.04041136213432223,0.0023941248727902304,0.016110709060628937,-0.09740945071118552,0.7225831157764092,0.06967513687624774,0.00011093418388756837,0.028621774070001663,-0.043747746551060555,0.21667838040445755,-0.006542293647215097,0.0003126427330781426,0.007163096115139243,0.00824685078640747,0.04829094586566279,-0.03269634728899556,4.810424257239164e-05,0.01439572414878326,0.05458751379781186,0.29317144486812574,0.07174952263582747,0.0003068728415289435,0.0025582363355741424,0.026190273564005172,0.35612315975128156,-0.006936247038561835,3.051898234435686e-05,0.009803821903628197,0.03392172906645654,0.3295649171917179,0.0963490193716265,3.438893420164671e-05,0.0031052445034896827,0.014423303059580814,0.04319960519755164,-0.010886232360630724,0.00010754932943504707,0.0032632081585959273,-0.02154817134160554,0.12607776458679396,0.016585816236546674,3.947883208479137e-05,0.014581570269422762,0.003435669963685413,0.010065112223909961,-0.023459391153946105,7.567809631737923e-05,0.0033718410282413333,0.02277016521475521,0.07987188280943205,0.08986258129239307,0.00013035294735029224,0.009698064169036371,0.040519688375056574,0.04163870140125173,-0.04474192301566913,0.0005562172857843198,0.028009508821535734,-0.0012641964441598922,0.004679321247122406,-0.058350191484183724,0.00011371498853155977,0.012709956960432936,-0.015941878511545562,0.060855445061041756,-0.025942354616590654,0.0016813542535662196,0.0044800080482967596,-0.016886948562137342,0.15893928992106945,-0.03908057810044611,2.7321347012896423e-05,0.00037991247522101146,0.03833297172863806,0.09837710354214864,0.024385638035425032,0.0012739422081950778,0.015441531180731162,-0.031080553479263886,0.22179643572876898,0.02082616496007201,9.33167971884201e-05,0.012592772623489753,-0.05076176163271441,0.062023767709377724,0.16197981077908907,0.00019316299353495977,0.009379463530468306,-0.029690013950950223,0.04361426656822977,0.03841056978477691,0.00039073808332315183,0.018149202212097173,0.004249575846316121,0.018077070737553675,-0.0005598451474364562,0.0018220817935110803,0.014031520854361247,-0.005433412845553086,0.021433653216434072,-0.004706299557375947,8.13330157401e-05,0.0005038586969235113,0.01722428334927774,0.0206528393071379,-0.0017008481297629357,0.002073187526076244,0.0041608374195450624,-0.0022268947538279303,0.007063038436318932,-0.025186930879516144,0.00012491775167821283,0.01958918685584907,0.024029259783446208,0.05033844317831925,-0.0003611720716215564,0.00019350891987168995,0.006582171146421746,0.02688473368897352,0.10191563383427517,0.02075723603352941,6.438413333592861e-05,0.01869025869956578,0.02923751750368349,0.09314133149643601,-0.05604985613940269,0.0029751996255847034,0.0030153420870629014,-0.020701802460447293,0.11282132573095084,-0.0031439935220293823,9.127619598504509e-05,0.004337611561297292,0.016939920918401557,0.08513964396116441,-0.032600550097692665,0.00014429136213723172,0.013199838247662255,0.010300724813016112,0.06475415282390592,0.0023178984218169695,7.524001229708904e-05,0.005735588435113302,-0.05124832715864731,0.1726977510860382,0.03692559594014673,7.45830958749565e-05,0.01643471572833922,-0.029066406873406163,0.04664993859794497,-0.0003990277821552339,0.000303787336502594,0.015458539782278166,0.014416942782177793,0.05919025340367027,0.02243253087909284,6.056717972297939e-05,0.000459080086883679,-0.033316805677525436,0.3459375148612186,0.0477322475184932,2.4848317065632555e-05,0.042535106113128315,-0.011975692845431353,0.033491448239445235,-0.02329338938237211,0.00012499012011861184,0.013304475804916888,0.019517497768744112,0.07601197184983097,-0.03674660947563942,0.0004047343926085167,0.007937591334879968,0.04859555999329151,0.248407657207644,0.037019191930336044,0.00011204781918835478,8.856298654245096e-05,0.00031895316489655883 +2020-09-30,0.010572937100843015,0.061219875517605556,0.011749610218091995,0.00018263743125748893,0.009300310850629802,0.037176311352455874,0.11513545186955115,-0.011671258631335488,7.747610044404929e-05,0.0007590227961750736,0.04540591921364318,0.14409059902871926,0.0800472891923203,0.00014577197227113258,0.014841736728360025,-0.020552676408022007,0.022641183875685315,0.006106380064757692,0.0003063635611447963,0.005293179363291325,-0.039690718035810334,0.0983633447117283,-0.039293778773590096,0.00021113169781450584,0.020924020759151733,0.0075656978447364255,0.020209821182845703,-0.009623630624649222,8.173974181299719e-05,0.017202113123448114,-0.030465095557879872,0.11690945662751608,0.005105769575228296,7.646149018561254e-05,0.008003440504156191,0.024624092536674056,0.21070285783727336,0.011217685285431588,4.007637418843318e-05,0.008701176907968532,0.003364079210543074,0.003092203843468354,-0.0066158826073332115,0.0008389631471196129,0.01125401400614226,0.005914450241076164,0.013438773530730537,-0.014629777953882388,0.00015389220893699762,0.013165571598812079,0.012392995153367895,0.00750316676400178,0.002656283287295724,0.000807339198185938,0.003856795789932522,0.0067384934223854165,0.09005814330877109,0.0043077990750348075,2.229783046734229e-05,0.005651488269868636,-0.017132884425295432,0.05456607971333226,-0.0002723709199104239,9.32736066159813e-05,0.019407263675726608,-0.022790831634087686,0.11743329455389348,-0.020676342898268304,5.4629942838569494e-05,0.0015335828628219416,0.03869277974873324,0.029169575850533307,0.041224509980909,0.002587157031104193,0.0032542931866855343,-0.009238233104549928,0.06694651290325669,-0.009864161278732622,0.00011355677855322964,0.0010969403827706349,-0.007751693150502992,0.04491867418523053,-0.11269378880134129,0.000267225486030878,0.002289060903921821,-0.08981700238564497,0.5554125420271651,0.2767567674743688,4.555162032890397e-05,0.009184518817662145,0.040154035914086866,0.1901144518953761,0.0271746227550483,0.0003480974795617112,0.00717822903739972,0.013465925461044408,0.17337931378267293,9.193092403391723e-06,3.2230656947715785e-05,0.01773584605540761,0.019000983562175444,0.20633302525990208,0.01908945289802928,3.076727586135308e-05,0.009759278024329519,0.024083298967716677,0.07612898686293335,-0.018135368230328106,0.00010190340191962741,0.0055151778365367,-0.02160332337656258,0.17103946900674624,0.014200201856920992,2.917538549279203e-05,0.01179651448207439,-0.01057536676530556,0.031636955111606295,-0.09026707039028395,7.41102267608124e-05,0.005608250256894336,0.01208422033145854,0.05243596238353302,0.02041265103423193,0.00010537509702860607,0.0009589651074458369,0.01712317338935531,0.014195732088718537,-0.00012288562282465783,0.0006894488019998124,0.02763204014720327,-0.010861711601447588,0.04136451468733008,-0.013088572868993146,0.00011052393609275656,0.002468130508161144,0.037621004902537704,0.12463536380300479,0.00020599580726111803,0.0019373508645666902,0.01856058838754044,0.03258430411815596,0.2774346738315528,0.07715415249971215,3.0201596948465378e-05,0.001361901681226593,-0.02697255662214215,0.07431902951305537,-0.020436896915664696,0.0011865699713405693,0.020215622903822183,0.012683233207853119,0.09894945026287227,-0.05637659675205772,8.535760784811466e-05,0.0054839736608081465,-0.022060264845787807,0.033468279052055364,0.022812129653990074,0.00015556888068077223,0.005408160111297023,-0.008039316755980777,0.010675258307538934,0.0029545692551261387,0.00043225961469000755,0.01821148818443429,0.046378467309741433,0.23647199922713108,0.05815110056060409,0.001520151982745363,0.0009726806324145448,-0.03217755625197468,0.12301301245867004,0.03971358375367588,8.392519800844164e-05,0.01798650621279455,0.1148586789368488,0.15086126067021755,0.3193906784018755,0.0018926193505917495,0.02052371074353615,-0.014788340047917322,0.04867247651811913,-0.04271464801011961,0.00012037935736875566,0.012990255622872844,-0.035366606555107816,0.10419837118060432,0.017251916484593673,0.0001375918902129522,0.010023514054745428,-0.00922063398719076,0.042780051124370125,-0.004487674681467984,5.260577327281774e-05,0.010172032909002586,0.05418460115108579,0.17752567443139386,0.038949564414645206,0.0028928956445442144,0.00681606114863411,-0.046926012799067114,0.21858673988582103,-0.07048554367734906,0.0001067899572361079,0.006434683837645709,-0.02270248751274609,0.10022753022518982,0.003984725572048655,0.00016426581816260868,0.0019783151041750068,-0.00403367104537291,0.028245971709977606,2.399714358079645e-05,6.754491454838491e-05,0.003678274378478644,0.03213266045125637,0.15677323147903513,0.037255036557573215,5.1513631793742505e-05,0.015454277451823348,-0.021949496300905397,0.04319205843736715,-0.034561929650324806,0.0002477707585848009,0.001940633544380377,-3.2820353858778977e-05,0.00012351612954923478,-0.014849101008229029,6.607451145706818e-05,0.01454530920168427,0.0005841502700930062,0.006065561748462747,0.001315067849260043,2.48476224226989e-05,0.003980064084534439,0.009778560516028656,0.03026719852310946,-0.0019096551517200208,0.00011293060818614183,0.015029518074145659,-0.015087149392062882,0.0561028527035503,0.02527549399056545,0.00042388711647348387,0.0022328832185656393,0.008598269768648711,0.03942865100402186,-0.023007049222303906,0.00012490244627316415,0.0007596771822854775,0.0019048317058949985 +2020-10-01,0.0110260037092483,0.09189075978959835,0.0022869941950725177,0.00012689160063706733,0.0046874185714492,0.027986597347242424,0.10425711919074387,0.01250763714628413,6.441023825882241e-05,0.0067427256999695465,0.021543954975228954,0.06397788291535579,0.01883128876556172,0.00015577321108449862,0.00031979333028824453,0.0026633004581833914,0.003049415622368707,-0.07781239909300652,0.0002947619352572759,0.0046526462401276615,-0.008587839946008034,0.021034630006254457,-0.006642655611914294,0.00021362242303144867,0.011170064564773173,0.015562276440166365,0.03984183676179722,0.0028323715943661073,8.528654350710085e-05,0.005627076781821156,0.030347189495282253,0.10464396741490184,-0.010330737535984557,8.509305870438065e-05,0.017892201106113833,-0.00850866793829215,0.07597772103796409,-0.015113482193888361,3.8403775910876055e-05,0.026524360475013786,0.004983742424966036,0.003305372496274144,-0.01771589317364908,0.001162732913311519,0.018503955294810286,-0.0542868898759623,0.1288344447919198,0.15142399688208863,0.0001473414222180555,0.00023983500795037352,-0.015003186356749408,0.01109188772179404,-0.040135675920895536,0.000661153645978524,0.008983509123631432,0.007484357289688321,0.09692568433738832,0.012108574638327478,2.3011155392267407e-05,0.0008766639235781588,-0.03885454299257893,0.09610747820202564,0.025494077550467644,0.00012009796849999406,0.014616620260026782,0.004462234771607434,0.02529893444311121,0.0210934666046675,4.964917138257917e-05,0.0001563117872783846,-0.020619469734605492,0.017604951819839097,-0.029914317334172134,0.002284365666379639,0.0036431189175829292,-0.0028176521308828886,0.019921334720334086,-0.0007790518011333013,0.00011639144205158771,0.03957379411054052,-0.06515937784707419,0.3590002364785223,0.046419146884639946,0.00028105442426759657,0.0035453015202903887,-0.004352778925335825,0.023783927387551373,-0.00221943320003177,5.155181923430838e-05,0.0159260339728386,0.008752943829957163,0.05855860278034932,-0.015969941209325107,0.0002463486820203717,0.01187440728071346,-0.06918415545671912,0.9610314832968123,0.16406526195226132,2.987440468320427e-05,0.022953347674213923,-0.005075800700718026,0.047783953100569695,0.00869611771640567,3.5489852547094877e-05,0.006406748120527293,-0.018348669425492077,0.06021726926707683,0.006339043223774133,9.815360949513033e-05,0.001749240309586152,-0.006322852595480059,0.049083704724248924,-0.0015038454217714335,2.9755557970996916e-05,0.019429602284369192,-0.00197059298264436,0.005982797675420204,-7.049811464216853e-06,7.302473640331106e-05,0.0011524249265986294,-0.0026277334565117053,0.008420140791802182,-0.008380330620559947,0.00014269559045172078,0.004049867272907343,-0.05605507090541205,0.04445434064229785,0.04263916936449111,0.0007207361318063904,0.006847276028583871,0.008957013261025984,0.032846769989125627,-0.04846184244342131,0.00011477744606172357,0.008423944134332702,-0.03434817592872649,0.1040175091471229,-0.06744763626382622,0.002119416951619235,0.012718913498583796,-0.007283868210404924,0.06375111368740367,-0.0001588979053059447,2.9380318442899396e-05,0.008058795987669747,-0.07015483747977219,0.20451050935592385,0.12368886892683358,0.001121536113078662,0.009343647057088029,-0.01944070113391818,0.14586056868117953,0.010501252064396078,8.875639711091364e-05,0.012464624876385697,0.018640473194455116,0.02835280689449672,0.01979864226308832,0.00015516946370997786,0.011535381495570752,-0.014203961173907275,0.02014779046760066,0.009203527518600036,0.000404655981761097,0.0027443736568299993,-0.011001482844458165,0.04057548295515618,-0.024746702174998227,0.002101541009478237,0.020644488602251144,0.029457389029049538,0.11861333293316957,0.03859116846844662,7.968032766132321e-05,0.01226469606824226,-0.018972897448843767,0.02725215823402396,0.008523638399434357,0.0017306527993574648,0.02322461624007625,0.0167813917256912,0.05584186045807117,-0.09055029580318666,0.00011906500448009842,0.032662209991054035,0.006146167508638397,0.019053167602810818,-0.0007997343275691842,0.00013076682544190693,0.015092724469287307,-0.01833901599361832,0.06648858630543233,-0.13681506559829743,6.731980592804046e-05,0.011575594712377516,-0.044237366864904704,0.1465049659051975,0.04140620785815678,0.00286190346760435,0.0009153033900557196,-0.024313356601869514,0.10900136696935783,0.009883097919174999,0.00011095670368919125,0.010636220979642308,0.030374263591077574,0.1364040435525341,0.022790080182626685,0.00016148764350273765,0.0005767900271250923,-0.04332796354341584,0.31341841190851605,-0.007288194840641176,6.538715931839885e-05,0.014382684732886217,-0.05722583151849495,0.29006688732399727,0.05064298523504364,4.9583976399496767e-05,0.02896944775570487,0.07865792939808477,0.16084528394805037,0.146786793614795,0.00023843146769644938,0.002049262526408049,0.004780433995268233,0.019966445782080795,-0.04352997627657012,5.953617631682706e-05,0.004802817023509545,-0.008177205695513832,0.06908531224232833,-0.017840538539684838,3.0538695602784227e-05,0.0167870794017672,-0.004260812425151077,0.01421013256090881,-0.028877523133153393,0.00010481012786099391,0.01104085229732804,-0.029609759943123596,0.13029150094448735,0.06751394174848098,0.00035821747655942964,0.001770419094986872,0.012482644550055925,0.06441269728078153,-0.00349442946838752,0.0001109958942030375,0.011478359341130928,-0.0087197860890718 +2020-10-02,-0.035169675162925275,0.23536521666138174,-0.05489404635517625,0.00015802021914322509,0.0089099041555687,-0.007919580694222295,0.024720040214900523,0.020541069691092075,7.687117897944723e-05,0.008448286473559151,0.014853816574152972,0.04471273548507819,0.008359583623275695,0.00015367528269233553,0.015941902775625325,0.0037096429875622945,0.003920756751291236,-0.034107295577465044,0.0003193229059856267,0.0009924021384564055,-0.0063067733427233826,0.01379715817489596,-0.01452977292089346,0.00023917476305317467,0.025203555547570068,0.015263297607627391,0.03996000002774431,-0.03745288442411557,8.340068780022218e-05,0.005473464786313282,-0.025996878905086094,0.10737204637246443,-0.07092289965659018,7.104276176118298e-05,0.00035487621133152146,-0.005600137664413166,0.050666944248183084,-0.014949733270324986,3.790291443401129e-05,0.011131748339152535,-0.009392279374201108,0.007954055475051172,-0.04604124390685359,0.0009105990087941275,0.007310342320702688,-0.00226773440185206,0.005459398552146066,-0.042465786621715275,0.00014524770351760993,0.011239398784693473,-0.025000961417607864,0.019760779783072845,0.041579736908030906,0.0006184106921219302,0.01369612697221605,-0.004693071726092962,0.06548114541984026,-0.00014061028174139388,2.1358153996784045e-05,0.00026364647827938244,0.010141941441548402,0.029383414450508495,0.0036961108512484743,0.00010253446640347738,0.006001161658439052,-0.02644693439436557,0.15727961332882615,0.06279526607604556,4.733307544216585e-05,0.009100875418372414,-0.01554368098623333,0.014421981021109379,-0.0012074751334678405,0.0021020930058673636,0.017148908917882177,-0.059695312426796245,0.3552001929827444,0.016679119304920463,0.00013829903322935927,0.0059596818076177,0.005539135856875575,0.03165485303873095,0.005423386501310042,0.0002709629721818314,0.011207734436712155,-0.025100873194229528,0.19415665103026775,0.012488815819415073,3.641644214922185e-05,0.024614717754442125,-0.0022650402738610626,0.010975589290199313,-0.00015865623585795135,0.00034012212882432875,0.0298723273116011,-0.027462649394717754,0.40005231638864713,0.01978201733526166,2.8487600762507873e-05,0.01526078675586003,-0.009391410031328522,0.09951517770791668,0.019790744162944598,3.152994321311622e-05,0.003846863406073299,0.030512979651997243,0.09196547091707567,0.0357673279624635,0.00010687658690560208,0.0010351720060996236,-0.059356837407402024,0.4812295805534816,0.08123467275699171,2.849120478692014e-05,0.008516042664765749,0.002077929013316336,0.005090497707955475,-0.010736467524933983,9.049984660222015e-05,0.002450685183580763,0.01090602465048069,0.050283268171627135,0.0161219324687576,9.917257130491721e-05,0.0002739322832501624,-0.005214983382606774,0.005500187010489077,-0.05808022110324881,0.0005419397843718171,0.00241214415738228,-0.002061803079265395,0.007025919611457875,-0.010182897701155312,0.0001235179333331575,0.007380486325560192,-0.0026107587951210327,0.00803514138300693,-0.010851458695251743,0.00208541456099182,0.0037612774617756745,-0.04279928611887492,0.4278385657093411,0.03746942345248509,2.572401716998678e-05,0.004976288766944018,-0.013337520935521976,0.040762210557194305,-0.015671321556071736,0.001069765667847235,0.01665751701115159,-0.00887207540085781,0.0669541363458207,0.0004894936556298139,8.824161641929431e-05,0.001513594696826467,-0.02498324083954877,0.041099333167117905,0.03330921790305853,0.00014346943412029878,0.0024617848684423804,0.011884271231258596,0.01773892916322627,-0.03317523830973023,0.00038454668280369573,0.0008828151320673614,0.03207965608625437,0.14084534134156465,0.018467267993260955,0.001765377382517512,0.013480479247218407,-0.00931080340870819,0.03353325621570834,-0.0035163351641629512,8.908442888035879e-05,0.01596842623746768,-0.0068609642817492895,0.009510092108756179,-0.002599005579749412,0.0017934019057943855,0.01004422813273614,-0.024400792469752772,0.07841855394533585,0.02261200784848026,0.00012328241639969687,0.0074842360062444,0.005428468519392758,0.014268905561481422,-0.02279773274730934,0.0001542222504335471,0.01412366139691902,0.018562464388847927,0.0873932926749635,-0.005713922380253859,5.1840771504012726e-05,0.008454375814282336,-0.004677465576180372,0.01279353360656042,-0.0669162503638135,0.003465278496911374,0.006166440081072705,-0.02468653559755963,0.11528006637475649,0.009179440000153489,0.00010652376308457109,0.002759432082375182,0.0134882055211031,0.08067318950460321,0.0017898018721207907,0.00012125111235951246,0.001991785518840937,0.027322526545978495,0.1785560681480702,0.029096765520006493,7.237606064885806e-05,0.014845648499768558,0.022213761303684937,0.09767273938612658,-0.004698076446421705,5.716051426349335e-05,0.022637893853820753,-0.002214121882780602,0.0037755619659130355,0.00013951430064937208,0.0002859231473853162,0.041264519258785014,0.02446389085675088,0.09733199361554867,0.030798648624427764,6.250061451807431e-05,0.007272863172572683,0.008689263984722796,0.09212036409189586,-0.023304322093354524,2.4336528675323753e-05,0.003515703707682993,-0.00012593128928508826,0.00039686883535174815,-0.03215555426250977,0.00011091636226396051,0.010222131046084342,-0.015643151420457125,0.05510417135460514,0.010766738933256992,0.0004474739360717987,0.011834937404844467,0.01193095524895012,0.054238708033422726,-0.01023355977487665,0.00012599046437258512,0.017221686994108247,-0.0051924803064120695 +2020-10-05,0.00560766959559115,0.04427973262119293,0.003619136196971798,0.0001339257265744427,0.026280520284677904,0.021818253279253394,0.07843963142357402,-0.026463361907650466,6.674134604037556e-05,0.006603265594320684,0.054898424569608334,0.1851066538798934,0.06618581052054637,0.00013719398020740488,0.007745017894915315,-0.008388593712693864,0.010673950794550024,0.0007930553891032152,0.0002652356034716313,0.0078534682915993,0.014207994880604702,0.03153627479851522,-0.0024192698370929613,0.00023573288590270075,0.00823814202899378,-0.0023197088966825995,0.006252617393441048,-0.03291965890370742,8.100622119818334e-05,0.003764498973493409,0.015859627006336002,0.05636318088805163,0.024742440898273706,8.256335446645676e-05,0.0013467867799809663,0.04538235209166157,0.3713621731305492,0.050516331351231486,4.190713304620847e-05,0.004513690403765833,0.023751924402549425,0.022619177031233666,0.04414321897520846,0.0008097795207471746,0.01817378916110148,-0.048522876462825104,0.13102499774990697,0.11296909572796973,0.000129495376796488,0.019606165786755277,0.016543766389907417,0.012087953188347659,-0.0009136915455504962,0.0006689689763058097,0.003521760407029551,-0.012852672868909896,0.19969985008366278,0.016749927564028138,1.917955402373666e-05,0.005728197957063935,-0.0118934880634282,0.0315057948565951,-0.02375940377268554,0.000112142397852839,0.008272233156125791,-0.008829814057601722,0.0458031795715847,-0.027540351386755257,5.4264742868256514e-05,0.00547250356422815,-0.022397669821667677,0.021231891581158947,-0.16131485264699452,0.0020574871090905944,0.0008039270222222462,0.009918220387056245,0.07935022516511743,-0.027424243951386644,0.00010285791072728592,0.0032186644899186148,0.06044310103812718,0.3715367443529842,0.07987279644912663,0.00025191451891027613,0.03007208494524689,0.041640606652305776,0.23443483924316544,0.03787354231167632,5.0032920213514544e-05,0.004750690478893079,-0.01979239878115985,0.13050742509537638,-0.07009564267712586,0.0002499482031053661,0.005167009754517192,0.006711873573088002,0.07851394663979121,-0.0027243179627148015,3.5475390947347176e-05,0.009960212153642784,-0.008514607456745107,0.08413276569935683,-0.06175889646638191,3.381280299163652e-05,0.010488555171752938,0.05220467493432709,0.16431383845821762,0.09327483427177301,0.0001023429686997248,0.018094825800729263,-0.01571872008407528,0.12642889813331,-0.007805485235983684,2.8718595941179222e-05,0.03779219160467043,0.0014382886314959647,0.004409904564784574,-0.0028266602959453775,7.230931361300525e-05,0.0006687375984425013,-0.0024355187487683965,0.009976007614615175,-0.07809897044551628,0.00011163061073475719,0.004879914466999022,-0.0031449895966784444,0.0036354659814981875,-0.01842449264189953,0.0004944640132517902,0.011648686327894845,-0.0011847057345480987,0.0048197235241311835,0.00018758157610892698,0.00010346045246839706,0.02775125495526453,-0.05374225183490791,0.18019617257708437,0.06469711111994679,0.0019142095218014612,0.027645870182465344,0.002971393618401168,0.028386311168978714,-0.024221125976716253,2.691741946912838e-05,0.0034956393639744656,-0.061967207520376724,0.16664694049251422,0.028189501056992767,0.0012157264082464992,0.008346163761054941,-0.017856017931097066,0.1338794764547318,-0.025418787844838666,8.881703098034053e-05,0.012376026034929523,0.02492717160042104,0.04375329328960488,0.029872578854540987,0.00013446450020689507,0.005376760461722515,0.025893945795224627,0.03783912527144481,0.0066530767343483755,0.00039279057658526446,0.0020722650265356493,-0.03661826536783469,0.17114689995031485,-0.026542309639751058,0.001658360984610469,0.015237053783774301,-0.007337875904818358,0.030254743874555262,-0.004808817445300153,7.781570430391658e-05,0.007928911327612783,-0.017515017533034884,0.02358855561202589,0.005244210488738697,0.001845807555939929,0.01468687837662416,-0.013288705911095988,0.040104243858990106,0.008741522395923653,0.00013128297037133332,0.015943841262452244,-0.002836990183074968,0.008675080296609777,-0.04010958607526287,0.0001325698319561958,0.018521002988205016,-0.008491348881173314,0.04077939551282626,-0.008875954181029466,5.082177465599385e-05,0.006580794973560546,-0.07954552103728439,0.21913603116887545,0.10773425308563388,0.0034404876012166697,0.002096785730735333,0.023420766198092552,0.11441472773391027,0.0395631108709866,0.0001018262471433438,0.0027817190753064614,0.004773480073973061,0.027789790601510395,-0.024619399958065606,0.0001245691852900023,0.00969246977437682,-0.021759904869096243,0.12744452856541222,-0.01005475012605112,8.075780308096986e-05,0.012529191791451212,0.04066738080252916,0.17436715411626552,0.04616464394108104,5.861771943824809e-05,0.01217398117971107,0.01983343137770417,0.03962636964201728,0.010145425650384768,0.0002440298570858837,0.05266448140219906,-0.025488124249885193,0.09277792709441207,0.05583672796341547,6.831366512153319e-05,0.003162937993638395,0.02515238823315166,0.24465141424347625,0.00713377987421844,2.652545136438143e-05,0.0066224416038579825,0.013518758403727191,0.04319400611484501,-0.028643524956150933,0.00010940125042069575,0.007347368043575843,0.016114065342597076,0.05348094892584996,-0.03700668224260403,0.0004749347933708411,0.0009957385321887767,-0.04337586316965202,0.18818968208180614,0.054315327400462,0.00013201525461189591,0.015013343373498906,0.0006485312267658567 +2020-10-06,0.017332192845598695,0.12707611462071994,0.011050099521499176,0.0001442368299130939,0.007665182466006471,0.002286541795254532,0.007349693645537062,-0.006749761913385894,7.46483880114758e-05,0.00924337763886265,-0.003452219865088568,0.01042447841735916,0.0004093717467685676,0.0001531938452248339,0.008770328188198017,0.03226823838384317,0.027002714537369625,0.08636308667295436,0.0004033069329673752,0.00025058549338550476,-0.022561993716001868,0.04957994350655269,0.017550089141984984,0.00023810538561217366,0.00496995644126796,0.040914435143158186,0.1065310151241685,0.15726118794788982,8.385852788275007e-05,0.006571261406181206,0.0008999047296464759,0.0034271876351926966,-0.06692891682463957,7.704571808895164e-05,0.02560447165002443,-0.008450057758218195,0.07451336457871044,0.003499900236289102,3.888876200935424e-05,0.0024687016343864273,0.03725431199754452,0.03443092571946315,-0.018183618251949925,0.0008343968090769521,0.01591252966553411,-0.0108325458839749,0.024364600451153403,-0.04524218998971707,0.00015546517847836547,0.008996168258653375,0.007285957807915963,0.005410156906481512,0.0008927592174769987,0.0006582655838455905,0.003811832587913195,0.02933139645251041,0.42306532825152326,0.1418993555514755,2.0660845716879535e-05,0.005001064493199951,0.01532484896470916,0.035651630131755596,0.0038977684723179302,0.0001276932229386481,0.010924158280635738,0.004801515193323393,0.027436822111495476,0.013747039469236319,4.926135100086984e-05,0.003890308870813688,0.01960357249439906,0.013042886539221756,-8.896831390259716e-06,0.0029314634201959683,0.007761763951153524,-0.007406155401632813,0.05043212614923258,-0.01441384965941479,0.00012084749443154642,0.015361705317323757,-0.08958178513888866,0.5200634962575889,0.07233149389282198,0.0002667298208072986,0.0076074395492361615,-0.052597459145908125,0.34778829320391175,0.02413044414125626,4.260011403896067e-05,0.007501606851792863,-0.059257746194249575,0.33073351792097744,0.10605276344312255,0.0002952933906853852,0.02470144649742139,0.03057726076827532,0.33386204566932354,-0.02650283868210905,3.8006839613228696e-05,0.04080127227419942,-0.01011719153534663,0.10171623515087495,0.022859513048323794,3.323161164490688e-05,0.01165204693289577,-0.0012787205030540961,0.0035667271680353196,-5.807587686674916e-05,0.00011548577541134402,0.0014725876121886767,0.037675107897474386,0.2846337260676901,0.03993948613238154,3.0574581611527754e-05,0.0038441236961538885,0.005527229756755946,0.017196505491748133,-0.10797421435371733,7.125981611918313e-05,0.004153771316356322,-0.007847874659212764,0.03391346063796471,0.0213927277054993,0.0001058104459923196,0.004636516917748214,-0.009762223540714772,0.009031505292230147,0.0027274148203535234,0.0006178231377389205,0.022331092277123387,0.027394738671457555,0.10105137260047277,0.049706098403190326,0.00011410664964486738,0.012117884383893721,-0.00883350231317471,0.027433262398817004,-0.04181867605423358,0.0020666866983238574,0.006611307441551903,0.03634438679483329,0.40301290588418226,-0.009146436674522626,2.31899913743582e-05,0.00292179055893593,-0.03458596216591915,0.10652155454276258,-0.08494983114647162,0.001061533333363295,0.0020186623690692154,0.003471163043552345,0.026527076986689435,-0.0465110142536822,8.71387365704618e-05,0.011293136264727423,-0.015855442707196483,0.023293351255938143,-0.014491390197372665,0.00016065408878621176,0.0012910596199673342,-0.002496495287588602,0.0036367857817427565,-0.012437675065205697,0.00039401879993563763,0.011659153302758801,0.02686761317771431,0.09667111572138791,0.01392640611593865,0.002154183510265487,0.037664794077120575,-0.004706508485962121,0.01756890018343088,-0.02460567166714863,8.594975460114954e-05,0.00020829874510428057,-0.020708665787775964,0.028317987589964764,-0.009705231115376951,0.0018178871672343464,0.035217476298088586,-0.0168998723601904,0.05729680007410875,0.0008370402458761882,0.00011686086401921734,0.00016368645463868056,-0.01802953486447656,0.04413976703881473,-0.06534579705509731,0.000165582662692995,0.016425386464534585,0.04833084634814023,0.19174282880912719,-0.022648507956818196,6.152040631379547e-05,0.010625924560393811,0.041378574284245045,0.1534884566957667,-0.06190068053439001,0.002555158595363781,0.01783679275090816,0.02401614791564707,0.10011143830531362,0.037264512237026766,0.00011933290676377615,0.009904166169291006,0.024138648400751646,0.12425170823743457,-0.050548361924086904,0.00014088714390490036,0.010137247833724333,0.04099057078407112,0.23807080606513029,0.06072980643519105,8.143789174033674e-05,0.008957092308129612,-0.011439797532890192,0.05354752047917308,-0.013017119370127301,5.369407529340114e-05,0.02667657051295473,-0.03343383297107957,0.06982801220545737,-0.08926162881057104,0.00023344570249157604,0.0390137722390814,-0.0006493747427855257,0.0029478300109853717,-0.036781549391919265,5.477814645334187e-05,0.007471314243015257,-0.016345230071049655,0.16756235790887555,0.0065115800489556,2.5167835134926083e-05,0.0033923396021305428,-0.0052178701441107185,0.016769816857392077,-0.012923359091478279,0.00010876118018578048,0.0030828740752496748,0.00017242894884724537,0.0007169035128181206,-0.0045102250665744826,0.0003791206525170434,0.007107535055986454,-0.06440292990031779,0.37031569135624354,0.0908199019051876,9.961054276396191e-05,0.034588240330751606,0.001596936834579584 +2020-10-07,0.008964583894663513,0.06397625752015294,0.01146985466167328,0.00014818283135395525,0.002558078295523395,-0.03556633254895629,0.12213247341467064,0.11563531242019569,6.987445909233492e-05,0.0048035714269848515,0.0012699943414866436,0.004161091960196548,-0.000656728745280359,0.000141186013786378,0.0007398130383541735,0.0106690282966897,0.011041300453626288,0.007998160597275062,0.00032611629172671656,0.010715603028975902,-0.012756044967174368,0.0303449027519758,0.003367529252839975,0.00021995207520488224,0.0040557780980633945,0.022378680407297454,0.058913649239853184,0.04972931965249399,8.29402402855115e-05,0.0005748006655591396,-0.014838976690002895,0.06177447028078825,-0.05617312554291971,7.04830644225901e-05,0.004393686839045123,-0.011237089704643021,0.09905422677116806,-0.019864464222030087,3.89026736656471e-05,0.0011766705158624837,-0.01055060797511065,0.00906369202471447,0.011229025407634454,0.0008976708711728778,0.013386032247690322,0.009830812241079206,0.021367060598851413,-0.04287571001626991,0.0001608816479742247,0.004348003096927944,0.008809567014264405,0.007677008285403739,-0.11793260711577942,0.00056090190177407,0.004048583102868851,-0.014158153804899475,0.20582531935362933,0.019504464163905985,2.0498902859577553e-05,0.0014013476233482867,0.015746646469944184,0.042064748908087035,0.005039523415709546,0.0001112041037307877,0.019415721442640536,0.011633950860252859,0.0615921872931658,0.01563338732728935,5.316960282509987e-05,0.003910368049033581,0.024993179377230883,0.022139507966144552,0.011928562235252614,0.002201793138271156,0.0033065048211564675,0.023947101614201594,0.1534579334234716,-0.008573298946797703,0.00012841498915489518,0.015690170310792485,-0.02529766151652328,0.15083926496945466,-0.08484621372693586,0.0002597013468065091,0.001775672044756017,0.020157994041005156,0.1072915879872147,-0.028460020513818334,5.292277341470173e-05,0.0023521219780873025,0.03068170215969353,0.18530446746412524,0.02155256661857911,0.00027288544203712034,0.01997634631349034,-0.04299346472102292,0.5698965412754949,0.03943812548573091,3.130665411897667e-05,0.017883200133972738,-0.012038901271925808,0.14927870700470317,0.0274056427017765,2.6944535259974427e-05,0.005945763772725416,-0.041536124946434494,0.11979966154496349,0.055347457747133205,0.00011168456111782582,0.014285253836797705,0.01195628153032647,0.08631504911171775,-0.0036383502178981906,3.199646404796816e-05,0.006994583612831674,0.0014432087111103885,0.004183630223418407,-0.004380494509755483,7.648094265048908e-05,0.002608545611616408,-0.012962002879510347,0.04948658168173935,0.026106277279033988,0.0001197659196131688,0.00311695216981973,-0.008754122457968274,0.009526738374215587,0.0058161205301327495,0.0005252232469732128,0.01667030591075474,-0.02033717470099214,0.07846808235199697,0.031684786037550476,0.00010908966025559291,0.006833986859609332,0.052712327106808704,0.19083951815463318,-0.010592201226835568,0.0017728135109765044,0.020526654654901555,-0.0021059930505515113,0.01896336906559518,-0.07438594851274463,2.855772660866207e-05,0.008987606633174985,-0.08948055427554165,0.25550452880771235,0.16473153453332035,0.001144989049039597,0.003709427446840585,0.04181287721714778,0.35260112235473595,0.09227468070478943,7.89681576700532e-05,0.002835870935222565,0.00011627679548833136,0.00017609583198807314,-0.00362859532146594,0.00015584374067089342,0.003150180036763611,-0.01956148777642105,0.029198391460648544,0.010648683414642464,0.0003845447349878201,0.009994307584954442,-0.057405168827387686,0.22700876456894445,0.07919762193020298,0.00196001192883719,0.022436293602476363,-0.01607741887747836,0.05740839337830434,-0.020094923418107914,8.985273569997596e-05,0.017065532497181773,-0.042926032254550064,0.05493042922082143,-0.003659323343638522,0.0019426069886250847,0.03415770954273813,0.031290918645474904,0.11399993741894252,0.04490911554118519,0.00010875011804034054,0.012586471379315317,-0.053397489313862095,0.18434716557115424,0.05790519433754494,0.00011742072271444417,0.012394523220863781,0.0652014688789069,0.3472786639113806,0.13977290016024865,4.582402179217281e-05,0.0203867892033608,-0.07261781058172778,0.25213352468766487,0.09929618999048888,0.002729798644278846,0.003923404442958528,0.06429963065386142,0.3088928154215707,0.16259456661928948,0.00010354788718670289,0.013705857591356691,0.03783831065791997,0.19850132638983842,0.015375208133383958,0.00013823853091242166,0.0012898574151088103,0.048503502023216405,0.2653872167617202,0.05170004564010712,8.644538151313282e-05,0.02004286957999233,0.022515445713841526,0.09836797019563831,0.01251215241873215,5.752733211088242e-05,0.012353785110785815,0.0051749556241217545,0.009935571037468099,0.0032627183391287203,0.0002539470611662969,0.024111879775814648,0.0007918503827633766,0.003098263572193652,-0.041587762163644126,6.35534521688813e-05,0.0016753429729167196,0.037570125187026966,0.5025727947313222,0.002407966530253442,1.928745616200267e-05,0.007106333021511659,-0.012175527718446974,0.03396739490111375,-0.0023194648853708927,0.0001252952243070834,0.004273049132294109,-0.021608409248587517,0.08465546110527913,0.021194261038192247,0.0004023423866959389,0.00419851365660087,0.04108627137002083,0.1969580192162452,0.03101059069543729,0.00011947990216611511,0.009927606504527316,-0.00044680622288806006 +2020-10-08,0.014932121387901925,0.10716321323974524,0.0227501116099019,0.0001473541489357883,0.003901497396598127,0.01942405511141239,0.05594917284395482,-0.07549092942480154,8.330225499208799e-05,0.024597447384657134,-0.0009269318195998998,0.002551298294085279,-0.0013873288129694363,0.00016806750644896245,0.003792850756399966,0.021627063256123232,0.020812026242317653,0.02292367875871426,0.0003507123359094603,0.011469338379843298,-0.03013764634286621,0.058860109655192894,0.027295424821580597,0.00026790821926011194,0.010298468097689787,-0.009296102929445646,0.02553942250262343,0.008781144345590986,7.94761079106254e-05,0.0009407989376484479,0.01358815030069857,0.04193081751872588,-0.032696718505024654,9.508606330328237e-05,0.009530851582801701,0.0271996708573437,0.23817994269267556,-0.007775961172249155,3.9161297881866634e-05,0.025568440800083064,0.02934195617256081,0.020049889596085124,0.026897287442508785,0.0011285527546388153,0.0002925923225784205,-0.008636975737336215,0.018551456158749487,0.00273408115671862,0.0001627966941672826,0.005522697391656919,0.029319700681151986,0.020938824124644435,0.07671276712141312,0.0006844340411311886,0.010608324820558164,-0.008416644561296944,0.11164213892957889,-0.050147899261834966,2.2466407300371644e-05,0.009435244125908415,-0.03224408647358966,0.08892698894654082,-0.02292629509485339,0.0001077128526009051,0.020734669365793552,0.010974553099631504,0.06206690040547195,0.03533852081570934,4.977240255833791e-05,0.0004790939394929147,0.003541435599023904,0.0028547453154692897,-0.019961755270698996,0.0024195519551482333,0.0026078618508692643,-0.0018801817953674515,0.010984224882627269,0.0007389707237759533,0.00014085833008414055,0.036706356959863545,-0.005937453683226255,0.03872238675908392,-0.004432488403178077,0.00023743588032356202,0.003937907857660451,0.0009703337841952801,0.0069596051689528645,-0.0010111892700361647,3.927331007743473e-05,0.025636305941167014,-0.046861303616856226,0.28155901810131884,0.026168736645675546,0.00027430374146528836,0.031859867792285494,0.05566000088365373,0.7502181377500448,0.032595575603513505,3.0788312107175185e-05,0.01882784846554651,0.0003202296204071668,0.002795278572914165,-0.028738224029890548,3.827525688592759e-05,0.010494017208676615,-0.032001689047477466,0.09024984283303011,-0.017541938861743957,0.00011422185330014139,0.008258345411634628,0.020967817830952792,0.15435143942990695,0.011188981599999329,3.1378698546675355e-05,0.0026473919208288583,0.025351075263569705,0.07682495992913409,0.12049247324988087,7.315961721820855e-05,0.006763281512042557,-0.0007814538309649499,0.0031453412514151928,0.0010634768375992777,0.00011360152185242782,0.003903268745289859,-0.060670718217784095,0.06634093440578326,0.07297007058652569,0.0005227248098383152,0.008826445327728857,0.010220728196498784,0.037414234725186804,-0.01827839240037886,0.00011498229735199595,0.0009157901703220283,0.003040949567636019,0.00961527292884973,-0.006482093600915898,0.0020298632281554917,0.0005468740745916975,-0.005180443970054843,0.05345709506691005,-0.01137192766215274,2.491975804438661e-05,0.015331111788107093,0.04865529985031019,0.15097945560668483,0.06057697486578152,0.0010536189377600236,0.02218836567801632,-0.042227154177602276,0.3032506598956758,0.06183971501596214,9.272902695426116e-05,0.025200006567757262,-0.008704833162442764,0.012537649717809884,-0.018520737399787022,0.0001638663219599842,0.000930412817502722,-0.005646823577005112,0.00969170418842296,0.003340350603258202,0.00033443212091567034,0.019809078628098994,-0.007685532130750047,0.029715121462882115,0.0004945779841719486,0.002004687922413257,0.014733465527777444,-0.022328961189485973,0.0974158137720604,0.006930693475715768,7.354098229091758e-05,0.002511164119834914,0.058635737110382224,0.07033898992323158,0.055896441964836806,0.0020722562270312542,0.02222656747817489,0.06117476466580733,0.17194085316661306,0.14698692575944158,0.00014096434135364719,0.008179132326887181,-0.0022429114307878782,0.005709041843870474,-0.007292038441190688,0.0001592609398247746,0.0250403515579669,0.06006130699802701,0.2161645017595815,0.08546602988871783,6.781477536235353e-05,0.03622692220910256,-0.012010866338834844,0.04197677812833603,-0.00822680814520739,0.0027119600656347873,0.015840689540411308,-0.02910451649573396,0.132098302744992,0.021436561876879534,0.00010959827581406407,0.027756537421905918,-0.006708708453647345,0.03578817765120022,-0.006154297484846091,0.00013594402324434843,0.00867297314800379,-0.009056074788940091,0.0627556589736835,-0.011288796288880453,6.825520963802524e-05,0.0023852818620929937,0.005606091285490954,0.025707005284218327,-0.029824369730595122,5.480952941224615e-05,0.04194726063687707,-0.049781770092671256,0.13303646184203316,-0.019678761157732826,0.00018244377203388202,0.010352454793553253,0.02094363385269194,0.08222855400398323,0.016728954925189596,6.33349977383278e-05,0.017054046084479784,0.03677482818385202,0.40428350569062443,0.03507977046952319,2.346907186492056e-05,0.017106675963196736,-0.008436393071287181,0.026427655929747617,0.001975124235587462,0.00011158533636889318,0.0025437682401141777,0.01771182650643643,0.06541459068514037,0.008506314424025305,0.00042679241466423476,0.011923592769435366,0.01768451610398284,0.0900421301853317,0.005320266925944781,0.00011249137260098233,0.0016794135083969175,0.00346769864510507 +2020-10-09,-0.03224037877984385,0.23401536257055758,0.0038684620780799306,0.00014569422937093908,0.01596600896494436,0.004250784143431512,0.014930725244945525,-0.08896584238701362,6.831226335094743e-05,0.004797098215301738,0.04491110926654175,0.13416665413455378,-0.08598376319351016,0.00015484828401290756,0.011933431718796897,0.016493000185586467,0.018126043171787252,-0.0068588046984046575,0.00030708917673062723,0.00747217705763775,-0.01448683452193144,0.0378496186595469,-0.01831955505260648,0.00020026717119187056,0.013322996821428764,0.0019608692526983606,0.0055078408215700385,-6.452071659319276e-05,7.773453338021941e-05,0.016346896889853874,0.04347659671904611,0.1658234038757181,-0.019065860409996135,7.693067983948343e-05,0.010055239301480678,-0.033287470365763176,0.31752906097767486,0.01019609516928047,3.594975444226887e-05,0.0008515696626549274,-0.009678353580210075,0.008171192388687689,0.010151123877006837,0.0009133996373434925,0.002724007396225835,0.01995400397607401,0.04648044752227399,-0.005639093851524038,0.0001501141529299555,0.019456254933062533,-0.02744965493712153,0.02032752479000292,0.08471330299082637,0.0006600498676195711,0.009329411568183867,0.0009806494569327298,0.011594074300240126,0.002141972263639259,2.5205800953935947e-05,0.009054483767986276,-0.011568391352626323,0.03586050379388663,-0.020891754753111644,9.583135380940015e-05,0.00576207812786044,0.008621450103702582,0.04711434202529212,-0.037984773323956514,5.150969840544555e-05,0.0144854814392592,-0.028848939030246074,0.028883678237526317,0.03554080281774193,0.0019480509890722729,0.008178336711481899,-0.018876191305241218,0.13542451564002186,-0.021813774145716537,0.00011470152365669431,0.055824801168718206,-0.006660540767334298,0.03222841234468764,0.0022706236990525587,0.00032002124555588273,0.0011841963574761494,0.009528884859108853,0.06000649694964307,-0.033745051589005017,4.473060383461296e-05,0.0010559240431548796,-0.011285851626883992,0.07026189310624142,-0.021024564120418185,0.00026472886446115917,0.0001311667323445993,0.0363169270406083,0.47967328225142764,-0.019166759263807846,3.1419104001240886e-05,0.010975555377089517,-0.008024561923083812,0.09841321022199147,-0.020137274213976385,2.7242668336198485e-05,0.004790324258262002,-0.01571027035359504,0.04880112883873682,-0.037226917782782316,0.0001036994723533433,0.0170389166976685,-0.022502124527695556,0.15472102699799795,0.004871019357197692,3.3594374583355745e-05,0.008096970083202301,0.005950787103295271,0.016989631516125574,0.0024731558557825415,7.765471600530486e-05,0.011246518665382444,-0.007673538956721346,0.025763491540848473,-0.02300788715568483,0.0001361882309012566,0.0036994639037760523,0.07611798735211096,0.07968754801563147,0.0758199733023693,0.0005459745438207633,0.028060007603005997,0.022848680733271235,0.08724893167415515,0.013464672381776635,0.00011022675453349575,0.01513568071903334,-0.04101935614680198,0.13533162173178537,-0.01789412616897128,0.0019453991768653646,0.026756528298599265,-0.0485210732797684,0.4342936574895658,0.11490150242320707,2.872956876637926e-05,0.000752028207638696,-0.06528550348449158,0.220029525863491,0.05576826537919497,0.0009700789138278519,0.010886124020690812,-0.018957380440158874,0.15630250664009898,-0.004224761460461763,8.076775769664565e-05,0.01951829445098981,-0.014427745760302488,0.024322286446264593,-0.013564332985949903,0.00014000368543709929,0.0203046169469856,0.021685949742415517,0.03458112979824319,-0.03645035368240493,0.00035995083286167486,0.000982191923429779,-0.04429397889086992,0.16532141099971367,0.033941081987169136,0.0020766625557805105,0.002997636986646671,-0.03851945370002049,0.14780797348681965,0.05582961039600458,8.361277298604353e-05,0.01369447257660935,0.012812012603512939,0.01737040842480523,-0.00996178606518555,0.001833515218490627,0.03078737859359263,0.029219510528107964,0.07967847506086112,-0.01023249243193726,0.0001452940933919524,0.0034907683315544193,0.005809056056593861,0.015339344860489627,-0.034705487011205,0.0001535179392719702,0.003980765631865414,-0.02768208869109799,0.11301002127581296,0.015537407255766031,5.9785494273368705e-05,0.011637171568085667,-0.009977574522511534,0.03167696615176101,0.001873620548010716,0.002985378890615894,0.0347333236025154,0.005725915840277302,0.027890783451120053,-0.014672792558542355,0.00010212329466445566,0.018409475091003755,-0.023065693298815616,0.12273119120452375,-0.013234745391136593,0.00013629262243402326,0.005583621278013363,-0.008462648140797857,0.05541037706511477,-0.012201389513293399,7.223769459787663e-05,0.0071361685751014075,-0.061065716082021236,0.23093619906994145,0.04804497184806154,6.64588520661492e-05,0.0017206243445614304,-0.006378433060193704,0.013113813246374782,-0.006296687563181339,0.00023714523437324812,0.021066771347119376,-0.002539572612720931,0.007665350782366422,-0.00026332166041567555,8.238401943303813e-05,0.020321197507125906,0.008533815362278865,0.0765600163549548,-0.04323972484839278,2.8758915857066806e-05,0.004004906791927314,0.0008551393104793383,0.0026360068908860682,-0.005796355019838055,0.00011339640714753325,0.010495674684817336,0.018873024400140995,0.070564434451887,-0.05875781209134681,0.00042158350201652644,0.006940633101041341,-0.008492194415754538,0.040732821129932185,-0.004235412814470513,0.00011941179700616778,0.006970612428713603,-0.0058973394504065 +2020-10-12,0.007960408275488521,0.05473739360081237,0.006200745920648303,0.0001537934404329371,0.004034693282438222,0.07477009892827817,0.2474150096284053,0.258095027610176,7.251242661108852e-05,0.011470236326703796,-0.0005149058846819092,0.0018275204413075012,-0.001081532690900037,0.000130335528226546,0.006445042855410544,-0.002395795914523551,0.002933766161141167,-0.02608889500213128,0.000275608229558396,0.0005609405927185832,-0.013577729893626827,0.032478869559561856,-0.006927312502352205,0.00021873789686994893,0.0009895790310724465,-0.028341400439385492,0.06317702054880442,0.08192416045892886,9.795100708867748e-05,0.010033537643859176,0.01983218715535259,0.06936848555332172,0.019104264308823497,8.388769363120556e-05,0.005278410986428804,-0.0018833329079377204,0.020644259677394874,-0.03600064757974938,3.128429670953342e-05,0.007898399584147155,-0.016923405948067346,0.014583060210617418,0.021371994350673818,0.0008949193321618104,0.0014229839866658329,0.010094718630857844,0.025354622428341633,0.006195755091677772,0.0001392191433819712,0.011648303603813775,0.03142228566059124,0.023414057257934814,0.05509256203022339,0.000655972230562846,0.0026872311911904467,0.01088577246815575,0.15474107577957003,0.015093237884536067,2.0964110017854457e-05,0.0004378441774855272,-0.017660597592437696,0.054727338183371034,0.00020355124280277114,9.586324089474717e-05,0.005748770444407732,0.010074041055813516,0.048761778170485076,0.002193525461833064,5.815485809819528e-05,0.00018952917497972257,0.009261187888274312,0.00846690640916857,-0.19885318846326847,0.0021333637360777926,0.0053477386771367515,0.014147902950797864,0.09049360189423797,0.0021064544095375105,0.00012865489217625027,0.013363645068382796,0.047589137332984574,0.25448083635477947,0.05602199828677065,0.00028957494381316517,0.02323638924639063,0.02789788789326907,0.1600361131077616,0.017976899759613585,4.91037077000699e-05,0.004054495903145859,-0.011968843789372095,0.06236983898635386,-0.008229688612724056,0.0003162746497205995,0.0018867572717355414,-0.038197449563405726,0.5426981155146796,0.018585115049485092,2.9208300217666264e-05,0.02716192862935162,-0.013560229098443089,0.12814406277277285,0.012307658336228657,3.535495159305416e-05,0.0018536312539582079,-0.05579810490500982,0.16151615819364556,0.04162036825527756,0.00011128233478425111,0.010029422901098102,-0.06093511930565816,0.43876697136340553,0.06641007285854741,3.207939090568489e-05,0.0006644633776413643,0.0061825165056325635,0.019866082715453093,-0.004627843955016609,6.899703486235647e-05,0.01014744218316507,0.00954200803447389,0.03732670539676395,0.011640591818951388,0.00011688767344769502,0.005156138664439185,-0.008075458175385379,0.008245973602284937,0.004514861308241049,0.0005597586240814863,0.024178097021104794,-0.007731170335240221,0.026284111004011772,-0.006492182854457771,0.00012380493551626906,0.0016000394150059928,-0.0050363189523676055,0.017037247875901027,-0.08032918967602096,0.001897286685691233,0.03283027689835835,-0.005033282975020165,0.05216835393919325,-0.004135001868699952,2.480997970622093e-05,0.0004946694003891729,0.07152231680533416,0.20298781322515144,0.09216543838613786,0.0011519745348215135,0.003059779384034033,0.0022437276981675737,0.017462878035153593,-0.0033349160726958834,8.556181166760891e-05,0.003622775718717765,-0.05622093910667253,0.06333757584972607,0.1518843056334953,0.00020949904357246566,0.017008021758273942,-0.004321489948917842,0.006682398861466839,-0.0052898741990979395,0.0003711974863616257,0.003238187434073493,0.039647753680459794,0.17283414552925583,0.03473412398686161,0.0017780312137614664,0.03507250604030895,0.00649490240278296,0.02515642813951315,0.004904189136082993,8.283502781662711e-05,0.004927744643016039,-0.03861529012505306,0.051247266295169285,0.023933682101135424,0.0018731208166270679,0.013537294481044274,0.010133074907121413,0.030095845947627885,0.00042323077117631527,0.00013339843496214477,0.014307792149929218,-0.03213534793138914,0.07749889778678815,-0.008047933899092082,0.00016809231430461633,0.005064937446617817,0.022939652294451277,0.08439995676571739,-0.002852411076194833,6.633741309826782e-05,0.028525524565967093,0.05333826045702454,0.18757851986919702,0.032286711748246516,0.002695093279391095,0.002576361455316774,0.02470862972752539,0.11119863332888062,0.018224269638519048,0.00011053244641186801,0.017494292071809466,0.009275184955622039,0.05134818096969838,-0.15611027889545007,0.00013099608002191718,0.0027471745476719805,-0.022923160499258875,0.12492126343229876,0.0007798509298476554,8.679342486536597e-05,0.017265374860009685,0.004584222450997982,0.021066466664337508,-0.005264281777898562,5.469169437219748e-05,0.02543812524469355,0.04423959632706978,0.07768926308654533,0.018927372722295277,0.0002776384093502071,0.007225860148240728,0.01635402724029653,0.05537091123619395,0.026437279190289868,7.344418602626099e-05,0.005568454908944726,0.03393311508655088,0.41516872757080997,0.025052543063847146,2.108775671176462e-05,0.007087609504360606,-0.0020827581898294418,0.0067083729276687,-0.004202800271768816,0.00010852520572826386,0.0010315477777688578,0.015946556518602873,0.06450185124982566,-0.04224423595843475,0.0003896930926915963,0.002393502157692764,0.020961705406246887,0.10365868890778235,-0.0483610531779027,0.00011582243674131517,0.011169004936423478,0.003716722743861293 +2020-10-13,-0.006719181107014064,0.048777997955422134,-0.014941247805615824,0.00014567296500020305,0.009915994333250515,0.042029660273700205,0.13324992548743697,0.014128547084287157,7.56831904051856e-05,0.0037273038814075654,-0.019695770681222587,0.052013493059983706,0.011210185304332656,0.00017516775461981393,0.012635807413762285,-0.0031786487666572477,0.002892547344892029,-0.005271794734607197,0.0003708770178077795,0.009319293672569015,-0.007436800177499176,0.01867645487820179,0.00022634575981491528,0.00020834805080029322,0.013442959920265445,0.0005358336688051718,0.001506818196416851,-0.06560569535176983,7.764542697011575e-05,0.002318863896805574,0.0040274796415673405,0.016606847448448998,-0.01014532982227611,7.116001201905142e-05,0.005760627211433882,0.0019759955369463072,0.01834158020406371,-0.016456076428863937,3.6944332528872084e-05,0.022497909209701204,-0.0027097866100746627,0.002066969349519686,-0.0302221800794401,0.0010109876315065663,0.005719814198796808,-0.05937508327889047,0.1449905604320134,0.12927977042090338,0.0001431945172357865,0.0009566174787163312,-0.009408802738741782,0.005649561984350213,0.007664706038872497,0.0008140366225949779,0.006230562087120149,-0.0012335306652087002,0.016470530471745667,-0.03283319916813569,2.2318507715217523e-05,0.002428992360403415,0.03024568881231139,0.08634415164056711,-0.02672559576396268,0.00010405946545284814,0.00513937373770048,0.011180695816862526,0.05618864338080499,0.025247745129300378,5.601213203629769e-05,0.006062097949330208,0.00549916344869193,0.004185241478511811,0.003846367631055964,0.002562707736231645,0.006434371604031628,0.049399714928571425,0.3464224349908007,0.007025097320168032,0.0001173466080067453,0.027297898641270774,-0.01507579009470144,0.08759097203832447,-0.0484877267633898,0.00026651948657778636,0.0016602195996337193,-0.006696796996834082,0.04054602942251752,-0.0017101678659000254,4.652429051549e-05,0.0034903590539589286,0.039844499980594056,0.22583426105064527,0.026010098850081622,0.0002907805540229642,0.04003553151324979,0.0004611507074256473,0.005442927155844465,-0.034314588700378755,3.515932982783274e-05,0.011466744459044269,0.019263495547011768,0.21059204908238943,-0.10665073857164303,3.056151192102866e-05,0.00998158397497351,0.0030767181061180575,0.007938664075324132,-0.012665634868378836,0.00012484266702463343,0.003203703697182935,0.02492325265015549,0.1590279116130607,0.01544376699186998,3.620126448088474e-05,0.04496725859765651,-0.016342287415184176,0.04681614862873089,0.037027699449497756,7.739172793991538e-05,0.0009564156635642927,-0.01562597036725761,0.057961922300780566,0.054864571989880866,0.0001232686987853292,0.0039211180295172406,0.05529403872727182,0.06279285461102989,0.015462307713443452,0.0005033193729603587,0.014499707305711046,0.036849311662396605,0.15660102606724638,0.06296996835369391,9.904231559473172e-05,0.008993475538762202,-0.009545744012992038,0.02619599972508178,-0.027037516829738876,0.002338804825731752,0.005733137659523003,-0.020108810812528886,0.19869484116321637,0.007829562447097805,2.6024475897918604e-05,0.004190014262156425,-0.062682815693455,0.16658354159405128,0.03108821595488983,0.001230233858105416,0.01823550844359094,-0.01625585510808799,0.12355560046747463,0.006390911357038058,8.761390292641456e-05,0.029704826093170263,0.004317810820461169,0.005677727926770437,-0.007926593899081034,0.0001794875870142427,0.006176247020267114,0.00379010867744753,0.0061608441169718935,-0.06684036663203481,0.0003531143415690032,0.0040351153941049125,-0.009073140638336485,0.0390577166089353,0.000971359492932306,0.0018005332006892133,0.020094327812480675,-0.007743127318757933,0.028820371109389332,-0.03127487046598649,8.619998732939835e-05,0.012940967791457106,0.03849234385367241,0.05553839631677271,0.020470542623042175,0.0017228926301519794,0.06418711949488015,0.026263312177574088,0.08171466357939229,-0.052474421438485644,0.0001273402022730717,0.010946283352299324,-0.039805204181416226,0.10150819461318555,0.03020031737391285,0.00015896412667165512,0.017043743924591077,0.03263295261242172,0.15671805960844196,0.009355984760025172,5.0821941212590505e-05,0.026852516652409265,0.04856294725314001,0.15899584586599746,-0.013997432493152766,0.0028949249971810063,0.03915690264186118,0.023356726588333415,0.1046577438250366,0.01345847784717272,0.00011101487634632173,0.02776490525006085,0.01290786043849502,0.07207347739594461,-0.0556739484571322,0.00012987918930460837,0.01612438114820243,-0.04499965581331134,0.2793246729946213,0.059064540493020144,7.619888066346925e-05,0.021399713235794378,-0.005623298684523054,0.02538322261799002,-0.0005321113070255374,5.5679046337144015e-05,0.0038451967405131356,0.03621172766033082,0.06450153998769266,0.029884944304302958,0.0002737212760391327,0.027909813738062637,-0.036970388095779176,0.14869731270078201,0.07618608083970711,6.18251623645089e-05,0.004686905457163855,-0.022123034139764217,0.21491325668999472,-0.022429158858861483,2.6559064258548028e-05,0.0008104558330898305,0.014958313657718401,0.04493878163655452,0.026179922304884997,0.00011635104985256756,0.00029766198382099045,-0.03371037935808399,0.12309785983925396,0.04076455081484713,0.0004316593061965923,0.026367872901310586,-0.08793716357599564,0.5908019389089704,0.1178616598267607,8.525156050219786e-05,0.0003336001840299411,-1.882292105401583e-05 +2020-10-14,-0.010893072210981652,0.08676126389824658,-0.035757890616468876,0.00013277340609210887,0.001573747225348698,0.02053110294026264,0.07547844294033208,-0.03479533237793727,6.526793534390188e-05,0.008738540033654377,0.01673156792517289,0.06883219065280043,0.0008003505020713976,0.00011244554500369103,0.018155612386676886,-0.00499885146997631,0.00587015505905204,-0.0787523961299425,0.0002874011594956829,0.0029107436797297746,-0.028726490135657125,0.0661436747942649,0.0022461458117896856,0.00022724378735452537,3.603143887859412e-05,0.02415375441557568,0.05667887691614845,0.044990181807042375,9.304866572313255e-05,0.002002444775159341,0.05155385198738078,0.16270685182011663,0.12976945625332253,9.297049289825591e-05,0.011915100617391388,-0.016736751852695502,0.12559139108175027,-0.05183951506564158,4.569933924723977e-05,0.013350618930955776,0.014538933705040124,0.011009344849139957,0.004341051969361547,0.001018394083124343,0.00024005785400006544,0.03368851896204807,0.07844072369890781,0.009856142355988452,0.00015017658116284308,0.009256086171719484,0.014536690445469807,0.010757087930730522,-0.0037937519305826168,0.000660534007261171,0.014851133476672114,0.000995624391605573,0.01285160331948681,-0.008221953875790557,2.308665458031948e-05,0.004715836813557786,-0.005490124786243615,0.01605811186889181,-0.0008034408315576556,0.0001015637609224953,0.020883645970602126,-0.007787412948201226,0.037160074801953366,0.005044453017970429,5.899000645757175e-05,0.005770970262721515,0.007897697124762754,0.0073113589989804665,0.007737148963746514,0.002106809840632429,0.013485167599455974,0.05368260213887699,0.399889104217652,0.022916379156938317,0.00011047044305059551,0.002492840390675821,-0.010249037453667608,0.06010025353309512,-0.10521718813157922,0.00026406753293494817,0.019855313908348944,0.003723090247775247,0.023872567055547585,-0.01943939210808062,4.393042428414729e-05,0.013928685449649062,0.02110501208420638,0.10842869888511217,0.006051110875777334,0.00032079542516247355,0.02022489181882004,0.036483995134895385,0.4399569429296176,0.006861447197402103,3.4412992889492705e-05,0.029664072954856353,-0.006554325440408841,0.06906404556988502,-0.010311509324343172,3.1707185696508476e-05,0.013877071751071815,0.011221508945984554,0.038115162164104474,-0.03538430247352429,9.483665859975915e-05,0.009168388848687094,-0.036814438656423455,0.18954088316152942,0.02030339487043411,4.486499864672201e-05,0.008628769582206212,-0.00011737146419087702,0.00041089601175767996,-0.026680569994281426,6.332977991298878e-05,0.013834405227148239,0.007468837069193748,0.028941107903475885,-0.012420945219806585,0.0001180012013104911,0.002109574153715241,-0.016416408635123617,0.014643991808948827,0.004855383998951515,0.0006407582964306147,0.011948175962876811,-0.033795538974104,0.12784222766977732,0.08209459288490953,0.00011126819844341585,0.011191861193267438,-0.017625239888746626,0.05830916844979486,-0.002442718958672989,0.001940069836218632,0.006470558882230691,-0.05363669055507057,0.5678638600428566,0.10282347546751827,2.428845771803284e-05,0.005169849935591108,0.03115738284066977,0.10029742363163337,0.019130771743599458,0.001015646235404035,0.03526582684801923,0.007372782224400479,0.062235983158396145,-0.06799877584817403,7.888882628476885e-05,0.002149821891876586,0.014447663690424209,0.024066888132067837,-0.0047069315166674034,0.00014168473775555017,0.014928925662171754,0.003258931385478966,0.00401285828735126,-0.00655744140626834,0.00046614959104948834,0.017523837380712958,0.005389985096061717,0.017144023515434304,-0.05885008406286741,0.0024368295460011993,0.021312822063317166,-0.020424899852609583,0.08095070004726644,-0.1318663070333751,8.095239413730966e-05,0.011134366893205435,-0.05514057726274538,0.06813719875955312,0.04006077964965722,0.0020117046751572942,0.0006099120474082525,0.03304080316528006,0.10061538975068322,0.0199379157219975,0.0001301074659545495,0.003095614320106816,-0.029195211440608302,0.07669004460653409,0.010844648859566888,0.00015432383623469344,0.010328721938937526,-0.03794894143931354,0.1508260099340037,0.044262348051659337,6.140975278058045e-05,0.0011263479756411974,-0.026951482782604452,0.09325871637492184,-0.005575146139411009,0.0027391214452320263,0.017912292967479912,-0.03531053679063155,0.2001371264229399,-0.03249626644286949,8.776416607841072e-05,0.015552670251110096,-0.02118752897287356,0.12682166118883856,0.050166562421504746,0.0001211567615215106,0.004796002085877639,-0.0263994972795686,0.17215262826517755,0.011272428405061806,7.253217454764819e-05,0.016572770871571236,0.0665636837785438,0.2879543530512213,0.09696614223779162,5.809798838721758e-05,0.006341895220433326,0.006329307259745115,0.013915055759277753,-0.09076128863779147,0.00022176888981565747,0.0044624610234823975,0.001923314992368109,0.00856533666749245,-0.06502727462698357,5.5836778651701654e-05,0.005401899186853039,0.003640378206529057,0.03615732962982628,-0.0014876638148347498,2.5976548306980792e-05,0.002100859426313272,-0.008366703829848278,0.02733331143724779,-0.017947784215752792,0.0001069968791710493,0.004131168646682394,-0.026396469345380175,0.1116240369681033,0.02976271491290085,0.00037274865722413693,0.008287729748431283,0.029143887600390293,0.12860644540289964,0.01579921598262423,0.00012979457612890207,0.003421821877451846,0.00015805605375493166 +2020-10-15,0.020459013845509393,0.13021984062129974,0.038881045428750635,0.00016614761852185017,0.0013504076705955206,0.007219723120152021,0.02449851644064594,-0.00536806902840076,7.071170084039979e-05,0.010236653130228382,-0.024646730424256347,0.07709813469537641,-0.008868685365099582,0.00014788109189715527,0.010252776117817016,0.012268036773706258,0.012433273283854993,0.009887763971209376,0.0003330101308708028,0.014738057694138357,0.024126567523510112,0.048027282210415106,0.015643212868749576,0.0002628483774193324,0.01856813492595021,0.04004226775430168,0.11536601046253517,0.11362795973881808,7.57857461558951e-05,0.008397079512176286,-0.05341591830916171,0.16205363029383235,0.1095895010668107,9.671677124765416e-05,0.00416606169893863,-0.03720736250273721,0.28051681712539106,0.05940743407906617,4.548504172788312e-05,0.02454898995592851,-0.0021091677464584136,0.0016389691178425089,-0.006808475973754156,0.0009923963027209475,0.010482011102355306,0.007377397272596647,0.017477461007595577,-0.004519651585823382,0.00014760012161913562,0.008755440275896606,6.870649405463525e-05,4.1944457435189645e-05,-0.004835671199912269,0.0008006589546521667,0.01091988959047371,0.007904498371348663,0.11313517595735748,-0.03165085536194413,2.0820897544791992e-05,0.0030108240794491973,0.04049247753247147,0.10653383126414596,-0.0866236443605593,0.00011291141291361697,0.012771540770369742,-0.00546023235295025,0.029051909721954813,0.0007869357694592292,5.290518730798662e-05,0.0018701451680757468,-0.025372024499817427,0.02335966498850421,0.030290538923370088,0.0021184171544550248,0.006170296567738588,0.023341490576216786,0.15546763536561117,0.010925902614231217,0.00012354941720342077,0.029532847415394834,-0.012908095505229972,0.07529768103971536,-0.015788096039540293,0.00026545371071076516,0.0029223588450502996,0.0603303241236585,0.3228087377704904,0.0775063189930498,5.264429727803905e-05,0.022802715166282503,-0.019382552461411417,0.09834548361592743,-0.09227930418528987,0.0003248204436907777,0.012702389431855352,0.04780021188130506,0.6638297708185149,0.017198840239995215,2.9881564200636664e-05,0.03741823710156292,-0.00682839681153559,0.07636626408929903,0.0018877914851736534,2.9874380966098334e-05,0.005408999961192754,0.009372297016538224,0.028985436536241603,-0.0009123397509356846,0.00010415711778334166,0.0018303312433485435,-0.05821527442409397,0.41423523179118965,-0.024214452091973933,3.2462524553565e-05,0.014021615290090135,-0.021884749599538383,0.06980771086785267,0.022133415208214574,6.950492312206675e-05,0.010005357211425963,-0.008325949112957858,0.03287905045372942,0.0005645161987499194,0.00011578787435500658,0.003082843533154127,-0.051475816703483446,0.05082246870932857,0.03905776652702841,0.0005789259940045742,0.04160053844425553,-0.007572247682909924,0.027867192570055384,-0.03553315821791444,0.00011437144321535,0.007560700033678296,0.01685039185379336,0.06720250938208082,-0.0843847321341842,0.0016093247459483117,0.005968281762993263,-0.030798282344467243,0.25265564356156595,-0.016083653656045582,3.13458237878722e-05,0.005543166344993071,-0.01480639505844201,0.046536117636460476,-0.053721374648872264,0.0010402325855232361,0.020228558732862854,0.02081537443334186,0.15321948675475508,0.016632511513445667,9.046818293058933e-05,0.011503285855279865,0.007345877945590469,0.01241348745537675,-0.058327228474130695,0.00013966747594631418,0.002726551599399641,-0.03393425485763971,0.046387956336144606,-0.18930384376755718,0.0004198914112074922,0.004531403019087157,0.021715456452234577,0.0791068550211935,-0.03483439783427041,0.002127674480673766,0.0013232356800792545,0.02282059646765718,0.083263066181334,-0.0031183894814907115,8.79356467454673e-05,0.0036295992853074663,0.03414724405270981,0.04178472164237853,-0.020746348820733698,0.002031493031513771,0.008727571376835698,-0.007906431613859453,0.027622008517567652,-0.014898553793134574,0.00011340737563803974,0.0189510096491509,0.06647717388649413,0.19373949920245326,-0.10952048064815932,0.00013909603535705548,0.00021606082267312934,-0.058608984028097215,0.23934159684786757,0.0855272259333288,5.976679038607408e-05,0.02625392829679791,0.01577005944340686,0.05500315018847652,-0.002258753674816277,0.002717464158870075,0.006933050719087361,0.02386419122412263,0.10882030658067458,-0.012956112997376031,0.00010908809203881953,0.01369002007985415,-0.011594291771364704,0.06265513997818789,-0.06353453008213206,0.00013419869884430396,0.007695471031299797,-0.007533443437032603,0.036745401492613045,-0.023517896645938854,9.697041038377098e-05,0.007671596204412748,-0.009247655410644812,0.04348139261594152,-0.0035785494918042136,5.345343123487444e-05,0.024684081066100264,-0.02445343416461647,0.03879703435931158,-0.05074797570425184,0.00030730577612928347,0.00033060666241269826,0.04317998980521685,0.1635422645640312,0.14139987083509645,6.565486372342452e-05,0.00028668264958209896,0.00883517240860985,0.08429931247269247,-0.0756709467896648,2.7040970946500005e-05,0.00121849683336901,-0.01549333712850954,0.045086707980178636,-0.027307952645053462,0.00012011725788152882,0.0027876861777989025,0.008055018621515628,0.03511210100099579,0.005505314110670593,0.0003616077273862906,0.005543598310903287,0.012030417443782759,0.05167339871893699,-0.0005983152651168412,0.0001333476805015003,0.0011057770925829008,0.0009576071484291124 +2020-10-16,0.03456081090695923,0.22057123316357244,0.0852490789001066,0.0001656996673452953,0.006681624962028822,0.004757636215176393,0.016459777762441327,0.0015390220807803313,6.935500235378911e-05,0.018604231102285564,0.015134008369318903,0.05409487576653436,-0.004598932314580219,0.00012941810803202003,0.008210491348411703,-0.011222078412560179,0.0112665424025504,-0.040801017238514786,0.00033616345582036653,0.003397527197459828,0.011701094421797667,0.027155239675560182,0.011081568675854116,0.00022546057793280206,0.015248381630087444,-0.001594897784074071,0.003956870625237604,-0.008529555908053125,8.800913322083218e-05,0.010496780995448443,-0.035514227405259134,0.15212589954938074,0.012861690342719218,6.849976272271816e-05,0.000261896754363317,0.0016183345020170914,0.01278910847234583,-0.03775177753317826,4.339369545863481e-05,0.02065862151336459,0.012294244359995191,0.010002413464110028,0.0006059459011949926,0.0009478548240794614,0.01813865107286632,-0.0153449818709211,0.039485028171822666,0.0015543204927990532,0.00013589260184228055,0.014478613149939668,-0.005671333135077175,0.004512715594368638,-0.05212497341083751,0.0006142873231964965,0.011860823378001715,0.0389812928413992,0.49585399609160763,0.1810794302580361,2.342746029749703e-05,0.01259970801135206,0.04228565016752027,0.1327811649103519,0.063499893379096,9.46035809983052e-05,0.00495791467369599,0.008390102898964684,0.055370441078789884,-0.0034609012134675884,4.26531512205107e-05,0.0014394030454323132,-0.02700209234991671,0.022082817591785365,0.02896505760472898,0.0023848765634439987,0.01474392143472721,0.03199685852951055,0.21674815738761335,-0.05938214594154417,0.00012147979062975239,0.006344363141260456,0.01768131737263627,0.10659372249513854,0.018862464077547634,0.00025685689158481495,0.0030810103496224745,0.034927952451743315,0.237932808998727,-0.016575731906238834,4.1350403453930985e-05,0.030649761204537034,-0.0035169603159710436,0.01959541836833622,-0.00019117734495311612,0.00029580106626122524,0.015102234011246086,-0.05288513388569692,0.7244862209974017,0.06741237832041692,3.0292401848532352e-05,0.015488634794584302,0.024741095979190452,0.23578997368966714,0.056863355273328815,3.5057045245687276e-05,0.00125421086118754,-0.039426067542869404,0.1155980633470079,0.03690279923305219,0.00010986406377006553,0.009317391213430871,-0.028665721994388837,0.21087117395380328,0.0054881850896689914,3.140060710951148e-05,0.009458911464736349,0.010798526015963721,0.03285112958366279,-0.03191732217196026,7.287717911664356e-05,0.0030804266974992136,0.002444837061809546,0.009171957242565056,-0.05102776092450484,0.00012188113633448996,0.0025271317912234376,0.002920265228693406,0.002689309928432682,-0.11079094268071288,0.0006206646396418073,0.019813196538139947,-0.016395423634684,0.06632527891787848,-0.06623596802486015,0.00010404700098772617,0.009760836685492056,-0.014456554335446022,0.04549880153042197,-0.042493885190803896,0.002039313575780715,0.0163951100529153,0.03674416229105064,0.3277828739313073,0.09331013439707565,2.882599368596207e-05,0.005835118593767518,0.02889194285263261,0.08095816897994597,-0.012227774643933495,0.001166775603442205,0.023326228167606027,-0.014964744292591559,0.12181852617957759,0.004602686526354101,8.180533032978677e-05,0.022808607060070766,0.02889459245949393,0.0449708324312262,0.056431676532495666,0.00015164602573958152,0.014994594033686949,-0.0235191246321404,0.03230077207703221,-0.06612063686530872,0.00041793829248773355,0.005767044904546121,-0.026338398021618217,0.10329279693625246,-0.030366398038715353,0.0019763764041525363,0.0230665850192991,0.023268170791550104,0.09859446957074032,0.026237789471511966,7.571816116223175e-05,0.007893584032382557,0.005062354740527625,0.00733817233413574,-0.046015748800678435,0.0017149120807556924,0.0050295947332213,-0.0033278441827328514,0.011151383779344014,-0.008155185235269,0.00011823614391396158,0.01116440655220628,0.024584754318654607,0.06013122278611697,0.010140686963556307,0.00016573957211070845,0.003605254958684579,0.008417004100174446,0.03919968194730532,-0.005239441158814142,5.2406954253262474e-05,0.017612524665249377,0.010839333202872775,0.028403725570081056,-0.011387082827604459,0.0036169734158323754,0.002186323933527531,0.008356964190523775,0.04179174624767328,-0.0628436459394889,9.947148318978267e-05,0.021203270542082528,0.0407883571562935,0.24380003628077995,-0.0650490283598896,0.00012132861274417163,0.005922188161477167,0.013669257844312967,0.09180940323958106,-0.020588598558574634,7.042169434198084e-05,0.006023441391723624,-0.019334987517043597,0.081595859029351,0.0027421657378768013,5.9555677835376866e-05,0.020100282119268786,-0.007180054214594196,0.012132412116633948,-0.011376240108161347,0.0002885426150443558,0.004068637422479013,0.015370516408121574,0.057779616546992554,-0.025470276834743805,6.614974576996284e-05,0.0003351069834529518,0.01666185485387199,0.18833954240882061,-0.1341789808768901,2.282512273178302e-05,0.001101057421829565,0.006827421292223519,0.02020671153796167,-0.013144806502416225,0.00011810547348578572,0.000558907154663107,-0.0033644108700142564,0.01458406755163238,-0.006109924951821471,0.00036362884887590046,0.007213366245602779,0.0012563974175102987,0.0063799665718732865,-0.021267966113196042,0.0001127925532653051,0.00724988207080488,0.004105305020792472 +2020-10-19,0.041860425566954226,0.26475661164217756,0.09661714514371338,0.00016720274720135507,0.0010934257553471159,-0.02887990562315733,0.10241545695448463,0.050243433036877096,6.76613703266252e-05,0.015877592803627598,0.01160812680277188,0.032061557257413525,-0.016784683791130895,0.00016748454410570296,0.0060723312600012395,0.03068534957721603,0.031965367103124843,0.024898125461432764,0.0003239807714206537,0.014452874656305802,-0.03511985486919978,0.0783927267759465,-4.121240898383142e-05,0.00023440923299910564,0.014835421695662291,0.004948669656353576,0.0111384627405066,-0.08602781107130925,9.700853527844146e-05,0.014462117089433887,-0.01488317541832211,0.05577047564349029,-0.0008845766015273036,7.830348787959433e-05,0.01535967627540473,0.01632209129010421,0.14886903672267274,-0.021721233943462148,3.7598458429167153e-05,0.016874480565243582,0.003549411740378328,0.00329003532954346,-0.04593711100989399,0.000831956475744478,0.015231175710197957,-0.012586197393676984,0.03521424439997637,-0.0753196788784558,0.00012497928937721777,0.0057531650306767435,-0.02575254256536181,0.02193987016323798,0.05580390530944636,0.000573733777309775,0.015263704338586773,-0.006367674983552122,0.07540851399270943,0.002939898261294493,2.5164209664198677e-05,0.010905405153292531,-0.004196783882618718,0.012771367621258136,-0.0004081049873840885,9.761807451471735e-05,0.009626702169249076,0.013855623710846258,0.08170780046020949,0.02943785397298871,4.7733620833759495e-05,0.006781834159394585,-0.039347319937884304,0.03562791487228297,0.05652862268116941,0.0021540100399431916,0.001052490444235825,-0.025395397825059497,0.15904870609278568,-0.002745410313779711,0.00013139443990173744,0.026542487178205898,0.059663055727695834,0.3468337113346048,0.08695333213238692,0.0002663743612882652,0.0016234765792871011,0.03245035366092231,0.19185123051245226,0.00978570232724483,4.764483214681737e-05,0.00528170588327204,-0.006512705041850356,0.03305743022515583,-0.0066152687315378135,0.00032469763628567924,0.011172897155968742,-0.02510287432925421,0.3202479100082191,0.010915655598878039,3.2528750322167514e-05,0.0017174732293794661,0.027851393660915352,0.31542578427236956,0.09592724139959513,2.9500640777782135e-05,0.001916359071555367,-0.054409659002038806,0.1617437650440538,0.0782019057390951,0.00010836055271527498,0.025960380179797304,-0.02462163018767885,0.18722763181943672,-0.06508512488210727,3.037660514666288e-05,0.025188861499879582,0.0033912561279601156,0.010376268944897352,-0.005370888862094024,7.245973710896086e-05,0.008997298548776558,-0.006375072831812935,0.0278154458659948,-0.00691323852117135,0.00010479672735538194,0.012588897513024609,0.03423151098655884,0.0353024826716553,-0.0013141909632608223,0.0005542381064985707,0.025498307783855746,-0.039152855244666336,0.16915083010080367,0.09803152634636454,9.742609920273867e-05,0.013381757312059563,0.007090100087677455,0.018551361997044942,-0.04353695618291875,0.002452989790567664,0.009014798830919036,0.0283601080368672,0.2523642988297067,0.05652632072781757,2.8897625569952567e-05,0.01821734842181945,0.025994599982484243,0.07870317236920028,0.017785237319229104,0.0010798468610582902,0.006154709827419479,-0.02445096583125558,0.1969379075460096,-0.06636366233518032,8.267845315415206e-05,0.0006973838008843098,0.0034029228073842884,0.0051515593130602375,0.003868007459074459,0.00015590454616602246,0.023206661134206767,-0.017494108635598603,0.025478825667348968,-0.057584548374215935,0.00039410897547802773,0.003411507493654519,0.03195410993831709,0.1377833756520321,0.02768095076424023,0.001797546962714757,0.009468749414055525,-0.05545183298236988,0.19410152478855,0.08651227349687651,9.165946749812422e-05,0.015626883556880182,0.003735921202002825,0.004709017964240256,-0.05179882084985118,0.001972170926095762,0.009958977182407264,0.021106138348984494,0.054702689090237226,-0.03487198648948941,0.00015286784420649225,0.013115277921295547,0.012721272298820396,0.034402081398687785,0.008100534072682034,0.00014990157839160674,0.017168451142958556,-0.033396351857845,0.1345208050461974,0.025605400149806282,6.059314512083561e-05,0.015542210752189395,-0.017900683515083327,0.07307908497743268,-0.060836897308015586,0.002321638362136813,0.018217172900453014,0.007926405047515742,0.045029874855860456,-0.01576335844470657,8.75620845705324e-05,0.0052046326823419675,-0.01896523903063898,0.0977848234535372,0.034131893324214395,0.00014065256260498073,0.0025175377201403725,-0.019432037866026586,0.10453842678945262,-0.016084567930073807,8.792068979445028e-05,0.008488174177689089,0.013105074467676177,0.06232540127988933,-0.030757548259872727,5.284717840967726e-05,0.011165417038233445,-0.012172549231627146,0.02400170005530988,-0.02859958441714829,0.0002472685770624155,0.020379006432035083,0.007192922119646007,0.023527539716263614,-0.00014816972865928276,7.602268755713877e-05,0.0011696273688739998,0.0025799044538988123,0.026851480622087136,-0.03789389167825999,2.4789437345146334e-05,0.007218520184279049,0.01849788563214152,0.05902094567434171,0.04116321777973681,0.00010955315537894219,0.004965398917210053,-0.0017312240075751382,0.008371613230255195,-0.015191165901161539,0.00032596583342556966,0.006800680461221477,-0.02115275327283269,0.11648301749114537,-0.013270987315706001,0.00010401023731083673,0.0008699057360429965,-0.002084550966942145 +2020-10-20,0.030750718655592233,0.24684838430745504,0.03885970471512838,0.00013173815134566726,0.007047133672530088,-0.05006661480130174,0.17623828448133608,0.1299389097989002,6.816453837655587e-05,0.0075205789797085105,-0.006171319919064963,0.020061497747462236,-0.012441413582722407,0.0001423022974631786,0.018094326751597178,-0.012906988517930658,0.01465073016305559,-0.04807513945860547,0.00029732642596361295,0.014750407476272345,0.0008250147368230293,0.0017407811233366467,-0.0036171359026825303,0.0002479792315529441,0.0014581736702087207,0.00882794678212282,0.024565287716245245,0.00012697945468624142,7.846655597772842e-05,0.0076249805597071105,0.04511513042729666,0.1456178814666404,0.0553814145697437,9.090700797521858e-05,0.00017636092302631377,-0.01615109366497288,0.15174686273526966,0.01584765526768849,3.64989885136152e-05,0.0008567108461045424,0.022815223219968324,0.020413826976453053,0.02526226906718655,0.0008618765793776226,0.004952157220196185,-0.05739346815004606,0.14346722512891286,0.10652293864866291,0.00013988516415461679,0.014269479617249406,-0.011312047538303468,0.008985515296398206,0.004483954360483029,0.000615350548386578,0.0012606342110329139,-0.005537744620051137,0.07038405415086625,-0.006069898666547253,2.3446684225895484e-05,0.0010215450580639304,-0.018920228342211753,0.054095779905039394,0.002533745687558415,0.00010389963571596567,0.022900608935224238,-0.0025910956589085196,0.016770826929504566,-0.005464089869026297,4.349013821385556e-05,0.005722742100604151,0.02766717049646383,0.02221182547881539,0.027394325164670726,0.0024294248331936078,0.023771355708708333,-0.010082380228925755,0.054527199454253876,-0.11355857086448233,0.0001521605210341357,0.04241648263355583,0.00041526612057645655,0.002543208322462967,-0.04149611687827382,0.0002528440839870302,2.1681201533996913e-05,0.031335942079398243,0.1992498914766126,0.0027843330248848138,4.430019299755624e-05,0.005270028193070645,0.019822411947696544,0.10664558438224586,0.0009543989419890818,0.0003063376852727057,0.004885863607799359,0.0417171202699419,0.49151790974303944,0.01223169477866061,3.522128573530543e-05,0.0078911961754129,0.01420036887651307,0.16685515997981942,0.014538440505375918,2.8434244490523725e-05,0.019981313636995398,0.019226873575161323,0.04698814312701234,0.014688623203419461,0.00013180841677282285,0.008259473167273344,-0.04202890390981205,0.3467858826267716,-0.10950305940556694,2.7994907103650698e-05,0.002678967641894417,0.0027316139670631955,0.007939112321376856,-0.002077937353748531,7.628247241090194e-05,0.0033217253170085307,0.010592978541570095,0.044600759730783535,0.027288512241737638,0.00010859865125968413,0.009690271784768771,-0.02458683553470503,0.023393638105193057,-0.002688898060425398,0.0006007315347716397,0.0228864730311087,0.016736440118288978,0.05647220480463877,-0.014752733948216013,0.0001247424740091014,0.006584243767848764,-0.029056747346346404,0.11003322807626562,0.004033031635405414,0.0016948931234470857,0.01893207240849165,0.038092224542618444,0.4148549665045467,0.050875468978801984,2.3611427111386052e-05,0.007712753225681008,-0.03802558755265499,0.10874951766223256,0.006256222451194823,0.00114319380847331,0.015445183280154266,0.026227125956297826,0.20491487975812359,0.04192571174595156,8.523203340445456e-05,0.011919911643599073,0.006107992921534087,0.007669137144398621,0.00354304015693769,0.00018797383729640072,0.004840763888292935,0.014163088637740337,0.018128004159771696,-0.026430817165107867,0.00044844779687706925,0.0018816520294384859,0.0389034375908359,0.1716076049317914,-0.06400820436106652,0.0017571214860112538,0.003318587579185617,-0.00825857025966459,0.032305171886093755,-0.00027485650601617533,8.202064537142104e-05,0.011201894488600029,0.035504761512513874,0.04170750484606141,-0.027810983482394316,0.0021161652705671895,0.026684210054384906,-0.019441609966563782,0.06997062552190321,0.026801196642699324,0.00011008610504764828,0.004970116891782398,0.02985979192672842,0.06324015655805304,0.025854884723773685,0.0001914054135239007,0.023566059347065297,0.05182906734202395,0.22150956474679995,0.04520429279594778,5.710772179294637e-05,0.013209641140420381,-0.022798480880136703,0.06619844255866357,0.008813034228275562,0.003264195756146077,0.007673282685153494,0.032876484334567746,0.18491366853167437,0.0255441529778919,8.844166822021513e-05,0.008697692068200267,0.0006176243822021157,0.003206712149112837,0.002647056631392003,0.00013967710969261399,0.021379807174607933,-0.003446548592842754,0.024316033982809734,-0.00546556914737778,6.704098137464109e-05,0.00019263272638538103,-0.02229985623229085,0.09732866594493318,-0.14923717825875638,5.758490933243253e-05,0.013012953718721666,0.0012157657534734266,0.0022774969743984143,-0.006882864060415427,0.0002602684292663323,0.001551106606848345,0.014439152315431927,0.05923495892861369,-0.06461966663542434,6.061470305103192e-05,8.512270752084408e-05,0.003968752554634113,0.04478112780325832,-0.007664882698371256,2.286600429108702e-05,0.00831034454734734,0.02109297626842713,0.0745835041981831,-0.03504369445119069,9.885623006158303e-05,0.007125407041196855,-0.01264677658496548,0.04865491959936719,-0.007436258476380423,0.00040971423965558253,0.0014808376090532666,-0.006461947400933855,0.027375300620415523,-0.008677548947793568,0.00013519988355382946,0.006320770208745642,0.0036440382262843095 +2020-10-21,-0.002250725685015207,0.015031505732568375,-0.0050910892020895335,0.00015834584216635654,0.0036871286934620482,-0.025101546261733842,0.07565913920945667,0.029495468166676617,7.960669715542024e-05,0.01065698317786845,0.016087169517688175,0.058065511731863285,-0.012280178376007962,0.00012816179602321076,0.004903097243047078,0.00403567151557216,0.00429907023587365,-3.747127026960221e-05,0.00031681747281071555,0.006119006842959518,-0.03795744477683716,0.08850946923457159,0.04819909125919409,0.0002243907782080331,0.007742055819389562,0.028543409913030938,0.0820908506002671,0.03948147521613829,7.592028654688692e-05,0.002083239116610897,0.02993903447704025,0.11564943701386775,0.01617931615483191,7.595985423179409e-05,0.0010871635664538165,-0.028044433735402163,0.2069557816674048,0.00933912660479436,4.6469470735916886e-05,0.004685028594075868,0.008750884406142093,0.008515860327000468,-0.021278015125411776,0.0007924433112166184,0.00013747832597749404,0.00649243439121476,0.015783142706032635,0.009337059200305706,0.000143838773992216,0.008746931020156274,0.00835806283451493,0.005444797365478924,-0.007298594486227881,0.0007503230157645223,0.0009293787575286351,-0.0007177427047359303,0.009536367242552435,-0.0019334482621047575,2.2428932767405147e-05,0.0037534423724319135,-0.02805073211170608,0.07823705484837006,0.0017709973423730258,0.00010650812638856018,0.007896329838598545,-0.00766760576459237,0.03851935952118759,-0.0030779032839330705,5.603282725254306e-05,0.005041217184592817,0.028437747776265853,0.02575604863884123,0.04167523078550841,0.0021534705356511187,0.008560887261404018,0.01829467811944505,0.11533720861840507,-0.11035576237102844,0.0001305291302327446,0.02259906365114263,0.05556288578895441,0.28965927762143895,0.048062280189456984,0.00029703360244270286,0.008787175811014715,0.06589680856496638,0.3644765976191413,0.054050951419610124,5.0927890743542675e-05,0.012586619687583244,-0.031921289139627884,0.18149875342180685,0.024806733219881482,0.00028986353407094113,0.001705132580526068,-0.04429033875977561,0.5618490357358752,-0.09918017756444868,3.2712941233207044e-05,0.018344803948730212,0.004553528648821042,0.041784539160626855,-0.015898792323449214,3.6409453950508744e-05,0.006714196973325114,0.060586323242090435,0.20289417809637353,0.11156525595767307,9.618952230504367e-05,0.01853310203746263,0.0012967179231711346,0.009656559816079565,0.0008884360831011419,3.101811878317933e-05,0.020788553045488586,0.013846347240017869,0.04451528692596346,-0.05314962987502773,6.896097990634043e-05,0.0018811958979109982,-0.0021897391042153894,0.009363177822475694,-0.0008277095052514395,0.0001069344643183435,0.014402312994630864,0.041558793512561594,0.0405415900814454,0.006982786009754868,0.0005859191793756003,0.0243273638729638,0.028082696592464835,0.10795623045683202,0.021306922480822058,0.00010949066794165593,0.009130054798112035,0.030065865731239847,0.10008207183048719,0.030505491994248964,0.001928131283848118,0.018498969214561442,0.001629042880917443,0.015603234149216487,-0.002786077918748236,2.6847267239234193e-05,0.026578731363509994,0.056840983705564355,0.1605561056441816,0.05236023427914899,0.0011574601015072327,0.0049241711529693834,0.014657442616779388,0.08752997499059874,0.015846492521713326,0.00011151339588966986,0.006529836477163271,-0.010413893684338411,0.015244529446645205,-0.012298189776724668,0.00016122949822840532,0.006442226819766153,-0.008773893942856624,0.013471049519492014,-0.04329927221783556,0.0003738478278578874,0.006494160017934708,-0.019322651463365488,0.06386000115674673,0.00772379509717865,0.0023452445713540745,0.011215994458536403,-0.018617262580865143,0.06621594634027475,-0.0023119415758422923,9.020769884374264e-05,0.007915583721316843,0.005241693286175401,0.0067373781995598864,-0.0010980099564400156,0.0019340062346493365,0.004484526616521626,0.010059180559655977,0.03173648711853262,-0.003339578413748028,0.00012557979991304066,0.024527121688197637,0.054273775917986246,0.14236930791004446,0.047542112212174956,0.00015453755594957628,0.006039387650179378,0.0010512238599406957,0.00481781356861672,-0.0041165709335463626,5.325484736197722e-05,0.021035231656045792,0.003839374297662288,0.012368803272878983,-0.032282917400347826,0.002942055282791822,0.016015279927567717,-0.023835496974147403,0.10170820286362758,0.027411279350361414,0.00011657590659191086,0.011608196587703146,-0.0185650722677373,0.10797976463275381,0.031668247397017416,0.00012468524185687128,0.014905576146265365,0.001953890446349197,0.013297644449692756,-0.08705316507623044,6.94983016037489e-05,0.010700402345276186,-0.006205459842285659,0.026596853610064895,-0.019219786198568546,5.863961381051852e-05,0.008964684322105667,-0.029672865173915278,0.057275956685396805,0.012692592982629841,0.00025259021661972353,0.0033646413595191643,-0.012960261847138629,0.05491058005390169,0.026494222255210934,5.8691082600955235e-05,0.006254336457714363,-0.02466674789918118,0.27284692666741256,0.05785901740691619,2.3325132229073063e-05,0.006582558810339761,-0.011706620790974667,0.029704869642520882,-0.004181330374910045,0.00013775674241473974,0.0038044276112831447,-0.014034838511235262,0.053899906348238054,-0.031141713832371708,0.0004104378275364384,0.008021414551888664,-0.02668526196314786,0.1298604534552414,0.009159998902287522,0.0001176972597091747,0.020355855192105525,0.003384117302890061 +2020-10-22,0.008462654998732489,0.054426576510654606,-0.03206390705156959,0.00016443043376658737,0.0008704604085653285,-0.0013347283303884096,0.004773563544772618,-0.017660677330187904,6.709044880441781e-05,0.01829398704138308,-0.04443879110882253,0.15215999138484432,0.04559823415558368,0.0001351011250440437,0.018863959758882776,-0.0037896635853875435,0.00437341940134962,-0.04191445292431347,0.0002924471461999429,0.0013988624043451627,0.03290633161881688,0.0714154743055319,0.052389930781268586,0.0002410931756445424,0.002089811751361624,-0.013955809037630789,0.03919229108117893,0.00888623173494944,7.775012681567418e-05,0.009943845596374186,-0.0547542225685625,0.19373316432224735,0.09677408523448278,8.292844083652999e-05,8.695448458781441e-05,0.02981028073775985,0.28839784742207475,0.03081836471555876,3.544644341680979e-05,0.02012301686427474,0.025855045462358495,0.0219459988310623,-0.02686561080405595,0.0009085205196783559,0.009751923266985067,0.01851815732441806,0.04245530251726577,0.007240163529425592,0.00015252032287812618,0.0025616276527038457,0.006424883924875226,0.005077390773200851,0.0008548393772521753,0.0006185133169538994,0.005576785167839712,0.008707408797107193,0.1252114531527373,-0.05418728753894409,2.0723717710467288e-05,0.003974649582725808,0.02305468318479997,0.06454688199813768,0.016265501944340174,0.0001061047748992903,0.025976375726355746,-0.008105983373901443,0.044570912825548384,0.005928256565544264,5.119363860858646e-05,0.008099114502604917,-0.03922850786243709,0.033595211649399666,0.038748881095381424,0.0022774422868813296,0.005886837451338699,0.009669482243903203,0.06371996904562363,-0.003909754187112406,0.00012487622796161088,0.023788637995879547,0.0037453501072352035,0.025230029169467986,0.0012133473596701056,0.0002298703198618982,0.027269222468476895,0.020405784628504724,0.12909915788186332,-0.022642672817489516,4.4523658728015115e-05,0.0010454693413520257,0.009392565355393222,0.046448367185287165,-0.006710346292251296,0.0003332733457401892,0.004724674722626323,0.024507017650691913,0.30687261835086194,-0.03222907172139358,3.314076704204296e-05,0.014111936637096765,-0.008803157842996031,0.08055677628505373,0.004849217086706935,3.6510528513428844e-05,0.0028349292070231143,0.03958552286581232,0.1506337766377867,0.04180122825786135,8.465191297450074e-05,0.018192224876829317,0.0821251122728876,0.5683050022042557,0.21755630858628935,3.3380041606662996e-05,0.019640655795070204,0.018495047420304143,0.05396025009887887,0.010032615097943277,7.59904257202265e-05,0.006205769069577877,0.008469497431161859,0.031421506711367,0.0008427194531594263,0.0001232478153683017,0.0009262758932333762,-0.017690520762889364,0.016206898250362943,-0.08031627577044032,0.000623901850029531,0.011574038714956538,0.012075576333741359,0.04873880708181421,-0.02981486762419487,0.00010428431225620472,0.014520452174753805,0.0663499309223629,0.22823328645827085,0.1765842715576233,0.0018658669227658476,0.010439866035950929,-0.06194220813002412,0.5462457101808331,0.09008182001650619,2.915955144605089e-05,0.012738611073359205,-0.0484832038562896,0.12043729970308163,0.012907301729293151,0.0013161384324223279,0.013260046258992542,0.013356565023839393,0.09762528984689559,-0.04134763054850019,9.110833074304162e-05,0.009140171621072118,-6.668698525395727e-05,0.00010155158915680971,-0.003821466009748677,0.00015498859697019276,0.0002672131137989187,0.0364112513166024,0.04567598997395392,0.10573300617127801,0.0004575636851716546,0.01562888636829445,0.008654220134659569,0.03246406739415985,0.0007066668422407436,0.002066214228599792,0.011383177490355771,0.010278906061539268,0.044431217867880894,0.010429903113219572,7.422480238209505e-05,0.0015966852038533912,-0.03617714966338102,0.04547856472214436,0.03177947981485368,0.001977446708321433,0.00015568023434795472,0.0021631608776012208,0.007239062727730313,-0.10299513386613587,0.00011839204340990791,0.005196231386593387,-0.009005886574380688,0.02070148474286768,-0.022549599428504916,0.00017635401604069317,0.004611994066026076,-0.000964418554459874,0.0039367126717951275,-0.07005700473283945,5.979236946088413e-05,0.00819328639221561,-0.022363897463361992,0.0695737281653291,-0.0038318559317147144,0.0030466339290847358,0.0014822075981441303,0.0014086217246518993,0.007036702273317378,-0.001605738518153563,9.957854507775694e-05,0.027034498818541364,0.0059129643956045445,0.034943913120874526,-0.017476386371957506,0.0001227141126729502,0.0054600976587536425,0.0010201774317426702,0.0065656462553094,-0.005877113973965733,7.349316158007547e-05,0.0036436216944750925,-0.0003430973568188187,0.001603190945515612,-5.676191281312421e-05,5.378727171116657e-05,0.0024332799769318163,0.015141637716920071,0.02630856354939442,-0.008906872210196572,0.0002806112696602854,0.0042587734412581815,-0.012142043382442432,0.050037616481159904,-0.018808549914547924,6.034058856959001e-05,0.009835051350768526,0.03640076316343551,0.2974847763966001,0.05552646938994094,3.157017785622575e-05,0.007876383529294576,0.01104782663481624,0.030638541560084977,0.019689521837679257,0.0001260427084053826,0.005498841780060019,0.01089849221021673,0.047825212891974736,-0.0021406372933864943,0.0003592009504002425,0.010752622898342709,-0.028582530443378877,0.1359575058168562,-0.0025404549174413626,0.00012041186471959124,0.0021899219755601527,0.003107679201755787 +2020-10-23,0.018055904607814473,0.13774173801746184,-0.03464322765506096,0.0001386245907281712,0.008346313950040167,-0.0606283646861442,0.19298883027351377,0.12607456920624444,7.537966569375904e-05,0.022859604053609678,0.004213955572926171,0.015088988324975162,-0.12399219473211369,0.000129189445621803,0.01124412377275274,-0.007701176628343314,0.007453756978071459,0.0025773348111916717,0.00034869820481698763,0.005370500640425229,0.03953210459469572,0.08693405047972277,0.057208152634950674,0.00023793470527822948,0.03548228386360047,0.03823780661001346,0.10307148336003585,0.06485656827847415,8.100301536681693e-05,0.017929749119018734,-0.013988978571147224,0.06099924604578083,0.003934127580414639,6.729013397237387e-05,0.008713986969350409,0.012520680678885255,0.10826875069734627,0.004712619875882927,3.965732611150333e-05,0.0021657234094403736,-0.014996233274165346,0.012986986830781382,-0.022933888438386514,0.0008904685264510678,0.004434076205719283,-0.01841888968565851,0.04537495826067401,0.003172360601039683,0.0001419414033355324,0.0027625430826058554,0.016730672444660994,0.014134432179079186,-0.069779977930056,0.0005785746330191082,0.00383957797573777,0.030827714201511137,0.4124087726536795,0.09925675673541885,2.227594918766626e-05,0.005985367125410972,-0.003062174793635447,0.008793653146422628,-0.023108398612113855,0.00010344551918868763,0.011528670739310456,-0.011542208210841816,0.05604100870878652,-0.08569994757324649,5.797553685287121e-05,0.0010082986875944158,-0.01941821209907628,0.015425437049407152,0.009123991759570285,0.0024552444344321696,0.008405127924232349,0.023814827202379422,0.14851648878772103,-0.11463522538834438,0.00013195470171845176,0.012755618497790916,-0.04523977877793505,0.24793194557795148,0.012348517826081097,0.0002825505884171615,0.026880800329860247,0.004696107488576053,0.028026420016802823,-0.03684864671590709,4.719884363351236e-05,0.032529531488350194,-0.006353820086667952,0.029710694587454994,-0.0024387730971705953,0.0003524592524046561,0.04713272862325459,0.0003964205101753791,0.005036368762609126,-0.011453647587831151,3.2663959298945234e-05,0.02863516895431564,0.01632492898013933,0.17325857051140042,-0.03012220563422972,3.148025798394422e-05,0.011709804061587649,-0.0006357420997806548,0.0016075135066203074,-0.010007844623617292,0.00012739403610797782,0.0040958503252558325,-0.001495204572488893,0.010582234210777516,0.0009238695127044364,3.263740519351757e-05,0.004663822210819076,-0.025048470769287675,0.07021117488744327,0.09210466374291827,7.909560619138423e-05,0.005589345974216685,0.003207674323557342,0.012101627331011833,-0.04990707071843843,0.00012119789826397095,0.0013570187429667424,-0.042723978860120096,0.046124837113452805,0.03179708005876851,0.0005294347062710814,0.01751809496420361,0.019187405151827187,0.06997965412220315,-0.024910671926929404,0.00011540655137087165,0.012600652840821283,-0.015426336934603473,0.04974024906661724,-0.007417425346761189,0.0019905543125705175,0.017675367957928678,0.009068666164090224,0.07745302298204006,0.005469593677524668,3.0108369509213236e-05,0.0022587150858300307,-0.011723986085258051,0.030530239554467643,-9.502816047637653e-05,0.0012554989449843229,0.012985435279400681,0.003162703001767591,0.02023346451590903,-0.022868757851978297,0.00010409114886713404,0.0048434622734820024,-0.0050633203965228185,0.008711656793629455,-0.007663505786241883,0.00013717660121827168,0.004924574939693344,0.016015876318776177,0.022530535325102845,-0.019347791230694165,0.0004080215576642147,0.022617768903029634,0.029840786151933203,0.12254256563099597,0.011190950691211104,0.0018874420777827358,0.02719511467910777,-0.005335564806137211,0.018687845099591375,-0.11415271736148472,9.160338956577879e-05,0.008636904489815064,-0.044031976056765704,0.07075317628769513,0.038256850032897964,0.0015470324616256989,0.015895450845453674,-0.05136568398473043,0.16785681642792316,0.12298043541586905,0.0001212411731513033,0.004266498434529936,0.022477902214700245,0.0590733692450147,-0.011827147261565975,0.0001542497298734079,0.019381979055602537,0.008762654140043789,0.04165577887218977,0.00012046931546129339,5.134218370662899e-05,0.0009336056339605903,-0.03188176720303707,0.10346873107264959,-0.043383941922496005,0.0029204603963468674,0.018237741421752187,-0.037560638204092923,0.20039001148388794,0.051264009037133615,9.323896917446127e-05,0.0008601638223738405,-0.006255851924966712,0.03595784762522947,0.007623707715593534,0.00012616926037721055,0.006081387285167574,-0.030703968043742768,0.1705195473806452,0.03271591706152937,8.516654570228211e-05,0.0028663937089318924,0.025654401172826052,0.1095842037296963,0.013130420816714434,5.8838463134789906e-05,0.03383741392308238,-0.022189994041852866,0.043255730722863546,0.005108641440707062,0.00025011683630293303,0.002835961446382184,0.02878428478650864,0.11452435238996604,0.033478030958768494,6.249884249792892e-05,0.012744958109036978,0.026291471483952195,0.2652424944706705,0.016617507009516103,2.5574259953498532e-05,0.008794705353979424,-0.02004416302154459,0.05476831333342165,0.031896544351040966,0.0001279285638275446,0.0025009504379699486,-0.005280159187898517,0.02131754294996461,-0.03801776538211281,0.00039042519891276567,0.0063282027438183045,-0.03740044392603031,0.18054597149144747,-0.036514734019434336,0.00011864808980320896,0.02326719279572957,-0.003133607141003815 +2020-10-26,0.003098666296547984,0.02130287355076285,-0.022643820511696833,0.00015382368208459652,0.012098384274622445,-0.015643788670518792,0.05106629556000249,0.007986658202307338,7.35052082916361e-05,0.00932415786681598,-0.014228161043373194,0.04890947693080266,-9.991182245791142e-06,0.00013457145821300286,0.016955145498958893,0.038576984809635353,0.038235484508383676,0.01178959374588119,0.0003405097395821618,0.01208302924848451,-0.0011664812436304839,0.002945224114312453,-0.00857064729191811,0.00020723217475175385,0.01055007746827064,-0.00440352730506361,0.01147166423722781,-0.0055285726339358065,8.381485658888102e-05,0.009691576763673016,-0.042254362156943656,0.16852683746013364,0.03496428728369301,7.356857339443122e-05,0.027352797297288404,-0.008616038315803614,0.06317133632530916,-0.006733686886550943,4.6772024882943374e-05,0.007536835919138349,-0.003806657536518487,0.0033310214312614254,0.00671052171354657,0.0008812744258586935,0.0031513556681882935,-0.024660489851882874,0.0597977262455492,0.007522612716816992,0.00014420453379912154,0.004137063588454334,-0.011643533270712556,0.008243995163551062,0.017480049914212994,0.0006903533210224931,0.001976421410205299,-0.0007546065224121473,0.010755965115394304,-0.024924100316287476,2.0907107827371375e-05,0.0015530729979306393,-0.023319812802672448,0.07103052854260358,-0.004498537424422466,9.752838920907102e-05,0.010038705532572937,0.005438709247904261,0.026998233708814753,0.0033494059796507717,5.670512446287148e-05,0.0026475371691329643,-0.01929639867199329,0.017126723290093963,0.005029372294411599,0.0021974801198170633,0.020992309151887455,0.05607903323657394,0.3979169782542436,0.03652662747486995,0.00011597387167805022,0.024268869786524358,0.040485600830535484,0.247322051604276,0.015947340629497545,0.00025348133184685485,0.00045203419283731624,0.022297318624319582,0.13725287747774267,0.0014693486143251726,4.576064505447531e-05,0.016067033635196768,0.07764463092913736,0.3710624754991065,0.09286370608602289,0.0003448666511438079,0.0033990951038482603,-0.007487232634097642,0.09718694485685736,-0.02032777779108778,3.1970073041285294e-05,0.02010536510363591,-0.006164601492519896,0.07292774966696847,0.008957626705766473,2.824189951280491e-05,0.0043689965685354045,-0.024153490719983125,0.07958898375312343,-0.006483145729245468,9.775741327614724e-05,0.029203658497868833,-0.023811243872774793,0.14029159946597183,0.003756587857998309,3.9205120451918854e-05,0.009308262006303024,-0.007270133439647774,0.021789481182845027,-0.028768685758203943,7.397293916660727e-05,0.009912290743947066,0.010425059887891506,0.039036210396558385,-0.08454551702011881,0.00012211232606918225,0.005482764546572246,0.011419445203786311,0.010076750939175786,0.002274001468903022,0.0006477389929960113,0.03296450894942412,0.0014829553461727348,0.005830305117631882,-0.0019377060348198297,0.00010705890566233314,0.017184772242260442,-0.0008494918807811094,0.0030314483865577463,7.304664283526803e-05,0.0017985736591791454,0.009283912348690184,0.07110323139817504,0.693093002434202,0.13531036559682166,2.6380317579133108e-05,0.023082033374937645,0.06279633336791354,0.16382730677182833,0.05655999521290414,0.0012531967627800876,0.044785015639796664,0.026906243534289883,0.21938557000191886,0.021984959001846587,8.16715228208756e-05,0.0018038324814589617,0.0004148713142034618,0.000656657195318977,0.00015643326441061936,0.0001491145718772532,0.0006450390039349208,0.04845734819950816,0.06980520623912026,0.12223607972322434,0.00039845175422672933,0.00510176278269342,-5.5257654088668905e-05,0.00017063647946334497,-0.008404563830015737,0.0025099837067058184,0.009890582725643556,0.02952262513878305,0.09597401946465743,0.07534935310019125,9.869420629845143e-05,0.00285634506823541,0.02276883025557572,0.029843239526882556,-4.868057701467249e-05,0.0018965834065396375,0.002534691704289254,-0.04202054352806243,0.14290208863473805,0.06141678041622215,0.00011650354106360667,0.011173957478060735,0.008689729346999922,0.019887317449709615,-0.015834703980407143,0.0001771293055313036,0.0075315835532866315,-0.011709834249400624,0.05136445241645581,0.003158878208083106,5.564190753611271e-05,0.01931385537680395,-0.009967111450564906,0.026595321446485888,-0.007970845847963785,0.0035520750126412943,0.011639564085796384,0.024010513004237705,0.13281684541152722,-0.0064594692780048394,8.992673984088049e-05,0.027700700715013574,-0.06590631089776079,0.3702763372161486,0.18764616848802662,0.00012908085341896964,0.007821068273120855,-0.01404735348602386,0.08826605942565964,-0.02650918534261129,7.527477595542379e-05,0.00930278456174579,-0.04707353626915737,0.1933907366195271,0.017762033534808593,6.117705293129989e-05,0.007657820492122138,0.08841149721845938,0.15636392484447925,0.17291855054083774,0.0002756776616433668,0.007411973436062069,-0.014235115679127686,0.056155200494986665,0.012687839653293736,6.303552792522174e-05,0.010612856756208225,-0.03127967101106934,0.3162220401761661,0.07090452474531253,2.5521213803093463e-05,0.0013207488456020706,0.004363857250313647,0.013535440103113994,-0.22120230531702437,0.00011269564116774458,0.002947467537297986,0.006674829201600734,0.026473534993387907,-0.010039075998421914,0.00039742592338764545,0.017922978357951994,0.006325331768602561,0.028482291971549566,-0.06942081583529618,0.00012719796740812676,0.02360607898511304,0.00462163805112785 +2020-10-27,0.0033207444860236563,0.023117806622223885,-0.011976604252200887,0.00015190617121638096,0.0061461659530115615,-0.0070944879800993,0.02748186704095102,-0.002042920937958486,6.194201794474363e-05,0.0005481139826568693,0.08377068235362695,0.2886220840173133,0.21214353466787594,0.0001342640363922192,0.005056734314750261,-0.007494074433319505,0.007881480105290549,-0.08468456408380136,0.0003209061757063076,0.00908616930853117,-0.02058924834934146,0.04863351020985766,-0.13237658717177153,0.00022151474892172628,0.0018695568609575486,-0.016640875415301907,0.04494875357116484,0.02923591499232896,8.08360819981894e-05,0.003479029725506481,-0.001378761365905367,0.004929503799344448,-0.005536418888482273,8.20683600504923e-05,0.016776885214511494,0.021848320282836727,0.1873360441957663,-0.005574279819617006,3.999404424867997e-05,0.002934768020783785,-0.0003526148486632957,0.00028461371396368274,-0.12095800517408582,0.000955409511774286,0.004949777859463229,0.004348483125407908,0.010168358009468992,0.0073323704500893,0.0001495370631288511,0.020608933601393053,0.01318769052079744,0.010038162582758074,0.0018385054085719571,0.0006421535380204835,0.007816995526521809,0.007217783490912364,0.10118470348835638,-0.004310723264435386,2.1257479875983395e-05,0.00321478565726783,0.02908627923513939,0.07729916499436586,-0.03134110257795202,0.00011178007699183282,0.029352308607016982,0.014123624502135106,0.0787634036377813,-0.014914534839752793,5.047583427346814e-05,0.017708865637834696,0.021791799751124365,0.020944831336442194,-0.006118607395735293,0.0020292670544300707,0.005722376346497159,-0.004391391309059178,0.026744027450075192,-0.026257342823979703,0.00013512242676793192,0.034492809913966846,-0.00047217504652591596,0.0024106574459803183,-0.0597029365743729,0.000303302340824289,0.003757644673055299,-0.01875995826102474,0.11274109813492568,0.01097527932915095,4.687168465010399e-05,0.039538460260197826,-0.02492141174282383,0.16011148887430543,0.0029580941033225216,0.0002565292857256102,0.036110928954743944,-0.0922221211842995,1.1760758000866403,0.1444253700906061,3.254093480156162e-05,0.03053673418056117,-0.019193257708329865,0.21110659061289144,0.03870851922521004,3.0375862047707123e-05,0.009125805403427004,-0.015681753229824416,0.04823439889080447,0.0017079736403381922,0.00010472744315132007,0.01754620682603089,0.0025569236039223752,0.017100915633497357,-0.060341273541251295,3.453748934824618e-05,0.01097534786892022,0.0015464240605419072,0.004454923667404768,-0.068391277155314,7.696011596644728e-05,0.004312000869442178,-0.004719250133577019,0.017996967007099705,0.00886273295318544,0.00011990085276023061,0.00250887744525253,0.050197709803702556,0.04865788484069382,0.035580220398373996,0.0005896662057538654,0.008944929013051864,-0.030452120901690163,0.12048811961815045,0.014445378589196138,0.00010637983877132322,0.024504612882103066,0.011114103720662504,0.03673716077314672,-0.011651414549219233,0.0019417263816206565,0.0005031475209792955,-0.036216033655378815,0.3589820273323583,0.02164887692409213,2.594241332897464e-05,0.020332265859470233,0.012160351125315202,0.03187684006948918,-0.003522621654364106,0.0012472172861480951,0.015880224789130527,-0.015582420452205027,0.1095296326550902,-0.08538794551970609,9.473902930367577e-05,0.01601413021675637,-0.028995410503380777,0.03995811158553926,0.014537127409828758,0.0001712654234196359,0.0065691134567620315,0.03534714361889004,0.05481155862349691,0.055577618807574794,0.0003701571020506825,0.009477877482164427,0.032142895668097755,0.12423259605691361,-0.006171066214191082,0.0020053943135416277,0.013044765048079839,-0.036760777424078905,0.1276990092707524,0.044590189115521844,9.236076680237193e-05,0.009747909544328694,-0.030596338004550413,0.042321626063693545,0.01636095608137545,0.001797149871633519,0.05410199393484967,0.011259754541647026,0.03829394787939797,0.001172799416807901,0.00011649702042807067,0.008336414665596485,-0.010419261235015314,0.026291080980875306,-0.030379497695845196,0.0001606530074990049,0.008804196064500978,-0.023483459576071626,0.10213980627963873,-0.0259137884637806,5.611525911325418e-05,0.009420647606849826,-0.003246785279036105,0.009490563868107732,-2.6535713937469347e-05,0.0032424972019000783,0.003921353373660266,-0.014744109544402455,0.07918002899362624,-0.005156141492624072,9.262825086237659e-05,0.03993948518451372,0.0051224408645229895,0.024141302495841677,-1.6288934554982064e-05,0.00015387817961596436,0.0010968468515587906,0.015177553518304522,0.09227561209663608,0.009793986575812253,7.779712304167026e-05,0.0025720058850624236,-0.005767164592872843,0.026219546359554907,-0.015095077415153226,5.528210451363104e-05,0.014167309053712204,0.03347112898712228,0.05114433056341859,-0.07144462778957457,0.00031908196439773515,0.005732327839710812,0.01749047244293889,0.06360607964414634,0.011790005399085729,6.83781407343024e-05,0.003407751241038687,-0.014263520946270319,0.15793245019746252,0.01876699847813307,2.330164902531097e-05,0.0012061204380086287,0.024589515621185203,0.06440971838738127,0.06638506883423168,0.0001334466076473802,0.005655148491826402,0.0022504422340591775,0.010017536000496442,0.0017095075296657246,0.0003541073397706485,0.007274556828436507,0.03144783097201164,0.15812598943795958,0.026195184682514475,0.00011390931402700928,0.021071818022128343,0.0010870027198901832 +2020-10-28,0.01937477112044871,0.11089060791543824,-0.08532288689618482,0.00018476869878647408,0.002483632576403793,-0.006167073860646074,0.019723637359040144,-0.012630095757508805,7.502442359504667e-05,0.013404851516970023,0.00400360468023427,0.014389244554410374,0.00043111828833661346,0.00012870943948372978,0.03168557212482979,-0.005124131811512402,0.00569198529084583,0.008099406388164972,0.0003038256110746692,0.0140852863098422,-0.01599802747449952,0.034817464699466075,-0.05360308994490337,0.00024041804796802883,0.007286567873386005,-0.004377553301462306,0.012282183133718177,0.011008833816111646,7.782204051999971e-05,0.005296966244657595,0.028633010833961317,0.11195126425929018,0.015417467725521458,7.504605553235043e-05,0.006872784634518221,0.005718684149396918,0.05112436369855586,-0.11605216473549033,3.8358958705536366e-05,0.016190003571906003,-0.014932737516595115,0.013236229798516347,0.0031939803740342505,0.0008700013357436536,0.01309865815248517,0.03359750826381845,0.06792476889044076,0.06131669487560006,0.00017295805245548195,0.02601206794420695,0.0014379637083644348,0.0009945586541313671,-0.018441732712389285,0.0007067110515570462,0.01313599908463433,-0.025297822328732497,0.33854691017148514,0.021359000165282156,2.2268300490460674e-05,0.006709350278152901,0.029676671170587574,0.0742515902487811,-0.16776517166580135,0.00011872999869835535,0.016285890626794818,0.005635351497323078,0.026062509951365137,-0.033453821058256825,6.086485474985133e-05,0.002635007429061299,0.0019337593896636691,0.0017124016369487306,-0.015222770857234467,0.002202519558935335,0.02620299944696767,-0.05734018893569697,0.4037027141117769,-0.1358660343711928,0.00011688251777064233,0.028515711707120823,0.05190953249488524,0.2953116755137765,0.010593037081800928,0.00027219160836128363,0.017879756257545114,0.029600112601038852,0.17413108199551175,0.007932623990401316,4.788263265815916e-05,0.02315833118033433,0.03882687211596831,0.20908258588152423,-0.03157476304723329,0.0003060563186015491,0.018950048862293487,0.04290362927138928,0.5249791964158914,0.01809899508247229,3.3914246211817184e-05,0.023356389219853568,-0.004760006245008282,0.0521407413770675,-0.11095702632084525,3.0500856117317564e-05,0.0015446839547220287,0.014117202386953178,0.038866728437117054,-0.00022155693891920972,0.00011700203374476463,0.0020166940191363655,0.03583933031312661,0.222678271111016,0.04047989037635382,3.717700683304814e-05,0.017415530952141343,-0.01684286069336593,0.05113502854368767,0.0476231511111534,7.302553312314547e-05,0.001522858372402903,0.015465819596629994,0.05681061544964506,-0.07235439648681785,0.00012447783936744218,0.0008310809401672679,0.07439726841104335,0.0771705233498429,0.06267089038871194,0.0005510374377464382,0.006966083409661053,-0.011475306043065805,0.04313920319019831,0.007694689403794085,0.00011196393844521729,0.01916712344754314,0.0033412443729994384,0.012943233336563064,-0.006139026615157212,0.0016568555027437028,0.015736280083545676,-0.05032551600027682,0.5133715234405851,0.03870195226416937,2.5208015486767972e-05,0.006262190506259674,-0.007731249129219726,0.021590575690392088,-0.02301807536386586,0.001170729913791993,0.05878884402678235,0.013084006767675172,0.10481925550772876,-0.039834481181103616,8.312378925003486e-05,0.005591355765186901,0.0016319568904838784,0.002566309193695215,-0.11258604440704358,0.00015008769531212198,0.015728340363059833,0.03237538875840159,0.04129405226711778,-0.015130744587299077,0.0004500195724605725,0.019851211535248107,0.002866258139092864,0.011940228068363073,0.00011257058380864688,0.001860600013932407,0.022538229855368793,-0.010936138310182732,0.041318559473716994,6.241928822018098e-05,8.491984497086409e-05,0.027018892002154078,-0.028612395381245114,0.03772631561039798,0.008739386835707694,0.0018853284270726688,0.030481681608325078,-0.006451272834416117,0.024147346219725866,0.002034827670429707,0.00010585028624605515,0.01849346981923668,0.020411004291589364,0.05433490136730636,-0.004144854303519124,0.00015228105154564608,0.00482715926415622,-0.018846528265958114,0.07865196836306669,0.0007156874944124128,5.848381428663851e-05,0.009681306743152233,0.05025821792203525,0.15167263148820254,0.032989791426032686,0.003140638290841694,0.012876166235834268,-0.023839775639662334,0.11964221990658501,0.004165443273674448,9.911931042935903e-05,0.01902594454219139,0.005217559714074515,0.035889824360021416,-0.010668146540958552,0.000105428221328292,0.006779404288264483,-0.006334636232154001,0.03355438033654635,-0.009591103063966946,8.929376937215579e-05,0.005968565006505512,0.02745096235557921,0.13461403366509367,-0.03944818704029554,5.1252450066120836e-05,0.005641440703385659,0.04711121677999576,0.08807130652018068,0.008554859340532173,0.00026080701963392713,0.01778511877396748,-0.022722815037153843,0.09766360758041412,0.04267596146146707,5.7855379498027615e-05,0.005923640886760347,0.0014597452517221773,0.01798310444474488,-0.07497494166437213,2.09432313438e-05,0.002710339062106044,-0.0152104655200359,0.04309536210652954,0.014289705509631332,0.00012337323035936155,0.004565892999815535,-0.00908300430832588,0.037717045831789524,-0.046013797046660594,0.00037959442164329463,0.0033796850742961308,-0.009455756130795962,0.04629133231188282,-0.06183996154380572,0.00011699529008528224,0.0007365874285313924,0.0050041740570978864 +2020-10-29,-0.0010819475921000226,0.006141694273088932,0.004943647661781096,0.0001862964652215211,0.0031229742490213866,-0.01902657839081566,0.07382507465640885,-0.02618444725787698,6.183969323483931e-05,0.016915155963444024,-0.018166550386228896,0.058953319768834715,-0.0178826614388393,0.00014254809118903513,0.00846604447432506,-0.011464984690205935,0.00974572406921781,-0.03646976784905187,0.0003970335659773258,0.007541556900341511,-0.010866917855180852,0.021555180066111894,-0.05231990553917391,0.00026378646096021017,0.0027593555224661327,-0.011468849118997952,0.025376959884434145,0.02433260294498718,9.867951038218756e-05,0.0011254022002402878,0.030984227752707264,0.11840240006674688,-0.0029094048567632966,7.67838750225685e-05,0.022585095565932266,0.042472720801100754,0.3283410169269527,0.05990046612883093,4.435918499570109e-05,0.01875624287524092,-0.017553725444918396,0.015074363308321416,0.04612201286326975,0.0008979974634854787,0.011126494862708471,0.03071609430039775,0.07385021190813225,0.039310544389570094,0.00014543741030624883,0.011542052561451714,0.011220023190078266,0.00879006801647195,-0.002064606633693129,0.0006239156468207704,0.007216116525890515,0.0013460642465993075,0.018169328040902117,-0.0009636103337620804,2.2077490792817146e-05,0.0005811659087279297,-0.030397972886397808,0.0829892521739017,0.02608785454786059,0.00010881125266085617,0.004754469914574366,-0.000953082629095665,0.004768513056477452,-0.10628016248268277,5.626125251291476e-05,0.00038916520404827065,0.03707550674105514,0.03471332554082761,-0.0056841420307095205,0.0020831178820660914,0.006287086943401854,-0.03447712486943973,0.22002084539211292,0.03436855831151006,0.00012894939845870183,0.03918663497418032,0.030073940815774105,0.16232267484616714,0.008601496339581464,0.00028689262354382575,0.04017661652285751,0.0358138296387423,0.21298251613037927,-0.21742559366860495,4.736611510189813e-05,0.024778464522581783,-0.01332136447363103,0.06336646453620476,-0.032700263481064314,0.0003464783012635943,0.009014704633265654,-0.02854897093637846,0.36602447568454105,0.004135671028478846,3.2367604778388675e-05,0.0040707197279431975,-0.014544435283427682,0.13847763117692155,-0.023441286785607373,3.509125873874933e-05,0.0009135707215861738,-0.01576389416208884,0.03948322445328094,-0.012346696975995775,0.00012860967876352847,0.012635228793689212,-0.08208974474161605,0.5996930896696151,0.09238477826734266,3.161929896232721e-05,0.025160315533095064,0.007244852391645042,0.02134983073298119,-0.01117847053304971,7.523371154084174e-05,0.001040464203640719,-0.0048807584828853634,0.019490756230148454,-0.03287751874841336,0.00011450045792167853,0.0029183349963779305,-0.04994605218514085,0.0472410241682628,0.03534687423630913,0.0006043067198371173,0.008886461602416029,-0.0007111945268256529,0.0027278914922876816,-0.006930306978242965,0.00010973554464297622,0.014901817228175263,0.02264211634281426,0.06914476470220059,-0.026579114284861358,0.002101729834790275,0.01381634187247485,-0.03066090870609634,0.26040317503327715,-0.01801681106311153,3.0277564789497737e-05,0.002428440011434679,-0.0005213852870080467,0.0013817065765892084,-0.002567465166657623,0.00123371321483022,0.02809702380255067,0.028318792356407083,0.21024648262062903,0.03516984935706172,8.96957020529021e-05,0.011357226946277062,-0.02358583559324174,0.03995641164794249,0.0038152038760107337,0.0001393189441551061,0.00012846913300571753,0.018443764749549913,0.029802504717609007,-0.0019415220902394667,0.00035522270948924506,0.005031558507079261,-0.011670979776678019,0.05282399771614074,-0.045583943873267224,0.0017124834861711345,0.04063957054368648,-0.04002269639590208,0.15778812174915866,0.020608085311645437,8.138088498378929e-05,0.006439031282356875,0.0025594312530516587,0.0042624173046016,-0.23230834338966352,0.0014926730586525426,0.0027299239658297894,-0.01778986898682192,0.05483824883510979,0.003878514997552363,0.0001285302074065209,0.009719453903227778,-0.021363162780150755,0.058239479840909686,-0.023257213109606188,0.0001486991336699405,0.0009536851207193333,-0.01160304803208868,0.0543855954829377,0.0014104380025448079,5.207174442728845e-05,0.017167770065096757,0.06491053867407127,0.16561073746294458,0.02270879928700218,0.0037148799194788923,0.03199249052187771,-0.03743496418801748,0.17118281300321236,-0.02396111761660588,0.00010878219906339553,0.00014353404850997312,-0.022561516122186865,0.11053839502766384,-0.000265448664218284,0.00014801846991469657,0.001625696220852262,-0.024364571068963684,0.12319796946552712,0.013980519777675117,9.35414115116831e-05,0.019171512230673666,-0.0007305641401789129,0.0033000482665097143,-0.026063875760899483,5.563978638871104e-05,0.002125233633959266,0.01530730446988547,0.02735622867617144,-0.01734873233298582,0.0002728172891635482,0.030062110728591926,0.0033436536079094,0.013136403660812,-0.0007323271769977285,6.329350850213662e-05,0.0032019822554036313,0.051525291162482986,0.6055242454526397,0.10095781174232883,2.195433075878666e-05,0.004777979262809843,-0.0015680785433201511,0.00440223794933114,-0.011076743675068017,0.00012450972200710238,0.0019137870641009259,0.034772694267977605,0.1445522914326115,0.11892901582269427,0.0003791764293517084,0.009639690545594683,0.009091537345489162,0.03305703001550412,0.0003611527637033264,0.0001575234775529994,0.0018066659141147419,-0.0027425568893641966 +2020-10-30,-0.016603503622827087,0.13494089651273458,0.03632740193917319,0.00013011960433239475,0.0009199623250397517,-0.009800124363519557,0.031003377386615908,-0.023041937743728234,7.5846074229825e-05,0.027086077311572667,-0.04121183684002545,0.1321282986514492,0.059984919778789586,0.0001442857141710346,0.0009694148855592614,0.0009758930549129674,0.0011665690046113804,0.000928816596565024,0.0002823317047255593,0.006607851691510296,-0.0024116791876469565,0.004784155324399002,0.0007937021351613048,0.0002637618842395846,0.001000079146652538,0.006158993471482605,0.016905153537533472,-0.004883652533017174,7.954948347291553e-05,0.0011284008297398217,0.008445693424981006,0.03622578827546891,-0.018021446906687052,6.840806772017131e-05,0.038802059931824305,0.015751799789785206,0.13576535390411407,0.003786390644612824,3.978687610986128e-05,0.005234863692940774,0.006209953996478314,0.00541119255712551,0.00038805734636484596,0.0008849937038485796,0.0004627844917314567,0.02344936236068928,0.0647365603095507,-0.05018943614838566,0.0001266611142284526,0.0028761571959351777,0.009154812063829582,0.007354944689068535,-0.02175711992961922,0.0006084072497054104,0.005042609152127751,0.0004028808415774652,0.004803330537417858,-0.0015691084007104785,2.4995218165267563e-05,0.004545370482662481,0.011825184019542757,0.03529006586164011,-0.061252705522673576,9.954202622960135e-05,0.0021358287176439098,0.024393921823295393,0.13324747505682172,0.1071190625329749,5.153288514870002e-05,0.0001728774149020502,-0.007189085477168981,0.006403182121324361,-0.01271576054050314,0.0021897814152275117,0.005155672833908455,0.008196983338341512,0.05526090903465719,-0.0010367975737346304,0.00012206415115818211,0.015995655996487276,0.033953610432354474,0.2020707637125003,-0.06966610764857258,0.00026019006555290397,0.00621309002337598,-0.010951034303558427,0.06578453418723444,0.009697058647261104,4.6891301982511814e-05,0.0026290955736802033,-0.002786418644040106,0.017071275279391243,-0.002222911964761343,0.0002690092472755578,0.003736311081394921,-0.022945567478548447,0.31023279002775006,-0.05527080796369801,3.069314107696556e-05,0.05257795598319715,-0.010249716070252678,0.09166974302624431,0.008741527522876684,3.735661617597352e-05,0.00026664224056635686,-0.00964799222686641,0.029441665764145607,-0.004323773103292841,0.0001055594995595566,0.004499232181711786,-0.015673044985653865,0.12834422462943051,-0.0002716518309320479,2.8207813633605903e-05,0.010245792109824785,0.009505161071612934,0.02871086725627274,0.00971685295686364,7.339906907355886e-05,0.003617446331449287,0.0015361347835442028,0.005962462930010433,-0.0020390540442035586,0.00011780188148684559,0.009668996432606864,-0.024262455318357995,0.020904977884353058,-0.03729565260667566,0.0006633772864983168,0.004125949137082001,-0.009043926817428641,0.029385697980526267,0.00046804624127428686,0.00012954093810518583,0.006094624722143685,0.03490772313281856,0.12284864659723901,-0.001869674131633572,0.0018237710650247617,0.006118365526937557,0.018643427754390623,0.20950122526228854,0.013129523157316659,2.2883444263377474e-05,0.011502186486458548,0.0074396465481306445,0.019791497200488797,-0.04213024015799311,0.0012289803061297645,0.02040847300146573,0.018624668653068752,0.15561834098653413,-0.009915811222756196,7.969910000980707e-05,0.0007181600809581084,-0.02375419312502112,0.0359235358754485,-0.012023806798206598,0.00015606538660945077,0.0038155984121042434,-0.0022301249891394275,0.0028034880978589044,-0.018385852113201824,0.0004565984167751234,0.01647084764653833,0.014716684703939017,0.05938022067414508,-0.0015350293971152376,0.0019209608746341145,0.016055248519315776,-0.012343242280161098,0.04579691830045756,-0.07225013405566384,8.647356603830897e-05,0.00040063927219142646,-0.02718730578589338,0.0441561782047006,0.007031380656548439,0.0015305653819608174,0.0035425296630279173,0.017266436323794994,0.05817396698374111,0.0004874919262308447,0.00011759532799170641,0.0017789620590581022,0.01125447304765505,0.029297539015567555,0.00198412652758161,0.000155723587499075,0.011834406904764075,0.0005130806834283322,0.002230913391847803,-0.010286862910465929,5.613282235639887e-05,0.028351710658692558,-0.03851012037730128,0.12610689839295544,-0.007125257387200668,0.0028943702779208567,0.0032787023585505873,0.02623968191407642,0.12093633863293982,-0.002696436327641808,0.00010793003568442422,0.004482509535225936,-0.0027115591630653144,0.011985975528646652,-0.04210008346038851,0.00016406142612635126,0.003944959801961693,-0.014297167531288959,0.08453693822411558,-0.05605700046397546,7.999303793174808e-05,0.010529849873572463,-0.0536003380305391,0.2880771720990519,-0.010417225485116663,4.676339985901297e-05,0.004101520163903951,-0.00563177712770728,0.010639049216477011,-0.10082815641910814,0.0002580905099955947,0.0037618153691947906,-0.002319931214613916,0.009568332591860606,0.0018521600023543602,6.029110192286391e-05,0.0057530641899447245,-0.022975633532706916,0.25479152071960254,0.032588581803349566,2.3265576052885065e-05,0.02816254258432049,-0.00848352992279302,0.02695388450931983,0.008577275511588663,0.00011001811441347742,0.016285895192989428,-0.02179991276170159,0.10085256263737812,-0.02939444472695557,0.00034071855764117575,0.021468516354008184,0.012315243738468989,0.06596243452762462,-0.00015045111205566844,0.00010693457101205034,0.021556720790883603,-0.0017980262167196673 +2020-11-02,-0.009310414308030993,0.049925325349686876,-0.10247064872461416,0.0001972126130289638,0.0059073887871162615,0.049712075528229815,0.17617490673948832,0.06972104688631184,6.770618944294886e-05,0.007842309708962051,0.03788530079213992,0.13954179238957315,0.026890470741866207,0.00012559248312558432,0.012842109134229474,-0.001535431633030299,0.0018804962150422004,0.0034984785734407816,0.00027556615491768294,0.0036027840828363284,0.033593980018767025,0.061430744300992816,0.08137653952815932,0.0002861366277978135,0.003332075380970953,-0.023558546663353663,0.0674347239385574,0.04902918834711386,7.628016978035942e-05,0.004603855539647119,-0.013627328228080592,0.04705079404391565,-0.013345562768561544,8.49833045630375e-05,0.0011316754677521991,-0.033033519876790526,0.28120398371738226,0.05311027472859623,4.028394532713317e-05,0.021472160354101148,0.011053300125086353,0.009203619291875074,-0.01311720288074867,0.0009261431165867904,0.010406450684881595,0.05650167404561538,0.14307050185281317,0.10396989056168089,0.0001380934568292162,0.001660944432534432,-0.007843591443739225,0.0048672061940245774,-0.06310830127883234,0.0007876976998423558,0.008684365419996065,0.012782559264793138,0.1792191990782261,0.0033267063075760267,2.125475347976658e-05,0.018348706017393197,0.019146841232858102,0.06530458592319262,0.009024241568110413,8.709726023540279e-05,0.00866351911864514,-0.0006215555974564625,0.0032772468879003116,-0.1720089081121448,5.3386646391303865e-05,0.002473775073861072,-0.03250035675070112,0.02753099883938989,0.03092462568146949,0.0023024442997540435,0.0008639977312243812,-0.014357388106598628,0.09723365717612766,-0.09917878459344336,0.00012150969401841274,0.006262684490749498,-0.02717211654542819,0.1334310409989911,0.021759853420327154,0.0003153369235474863,0.0072685172708531615,-0.004022305841728646,0.025755864181313932,-0.04082941529669296,4.3990603440800235e-05,0.004119382516439948,0.04302074607076752,0.23535740758893672,0.045956505514748384,0.0003012568102444428,0.024891365276531543,0.019772299212057913,0.2068093805295224,-0.003183795084576198,3.9675021565746146e-05,0.039672437458545144,0.021242557300543873,0.21066123146638027,0.05300745311721937,3.369022324993429e-05,0.005025730259702734,-0.0015699929945273707,0.004750032195469915,-0.028119537211412148,0.00010646918192406387,0.0058222604409916764,0.009959259670803149,0.06439587347044338,-0.032272690452091614,3.572410800665961e-05,0.0009463857451172709,-0.00556580280898651,0.012370117092228258,0.006804768820621151,9.975424532261913e-05,0.00030546744209121804,-0.0004159805394934965,0.0015317770399423095,-0.03979784385590929,0.00012417267982151227,0.0010890687750715648,-0.020410590652024815,0.018258331026236505,0.0062999468539950846,0.0006389546829721218,0.0069582009808614185,0.015698925356439717,0.0559404751907904,0.013096377529552155,0.00011812172549172207,0.0014446214698436348,-0.053276726899355774,0.14745036707804893,0.08547490858243689,0.002319053951422423,0.005587972734137184,-0.06395992691876623,0.5878288686383123,0.0360487939571162,2.7979454523435898e-05,0.01135788985526382,0.03626118605065338,0.12860596162982893,0.017593614903142547,0.0009218328360209579,0.011727005469904286,0.019665237582346395,0.14350405388164192,0.005696413533345817,9.125584085181158e-05,0.00020890207560140314,-0.0012073993351933011,0.0017019880702136075,-0.025399021709061952,0.00016743251739385824,0.008106809044323812,0.03366748197383424,0.05713044241827363,0.033961927685880355,0.0003382571324298003,0.012886571444696201,-0.013010163348447512,0.052557832875132174,-0.020050511362459594,0.0019186494828288925,0.015293575904316375,-0.024728142210275274,0.10409254700590488,0.00997959239134675,7.621882069326546e-05,0.014581535864494804,0.0006672060071764795,0.0011999746163594907,0.0010749090757260415,0.0013821815143599213,0.020071526487525585,0.020112890011614752,0.0645627690520219,-0.017201949953801365,0.0001234264865169113,0.0178955870702566,-0.0040120805112451915,0.010299435843891197,0.0006180750530221765,0.00015791252537008025,0.010624409392618932,-0.0021893581828150207,0.008789956612604646,-0.004233662328724633,6.079166137148305e-05,0.0274201775071072,-0.004693119107191015,0.014592925510349049,8.544483972110078e-07,0.003048156553949061,0.005877552305647046,0.00949480636166808,0.036717207026229916,-0.024481022251876455,0.00012863437613750033,0.0009278787370889411,-0.005623284141407807,0.03421110853583023,-0.01085662191814951,0.00011920203408516342,0.0025333260289938024,0.0013137200853683437,0.007394637587837853,-0.048438860671998166,8.40300543740257e-05,0.006743544750288411,0.012928055277339682,0.05469519357655708,-0.009206962747980888,5.940615329183749e-05,0.019520746406045383,0.01533611749093906,0.026485289656382974,0.000393718267788082,0.00028231899162169203,0.018973500020629478,-0.03292145579175049,0.1376091243141245,0.0433003494731966,5.949030235778792e-05,0.013540919239983875,0.006759562929744725,0.07510064088141766,5.764639290896124e-05,2.3222354896841338e-05,0.0003649809120644435,0.01831845327052319,0.05394518222476842,0.04434504121460196,0.00011869846454072447,0.005854437201223096,-0.01125614157886346,0.03533689031783178,-0.008664395873856567,0.0005020988069081503,0.003227841760239311,0.006723201768802987,0.03451428774049095,-0.00396758243183214,0.00011157040910413447,0.029969670657601876,0.0021969491615104865 +2020-11-03,0.014976806826936322,0.11293504946722403,0.003994325631948918,0.0001402416671010102,0.0023677158111688372,0.019119087276588887,0.06435152923848941,-0.0027326480960251907,7.128839063300988e-05,0.015424812051441254,-0.010905582225717535,0.04291716981155735,-0.06429965147742754,0.00011754793023943816,0.008729668508687444,-0.01949432885303075,0.02062671404781107,0.040272694231782674,0.00031896725165726336,0.004735317882527682,0.023482546002507758,0.05044198963433295,0.02016293648829221,0.00024358511479869325,0.004565127162463444,0.002176633996279106,0.005389161449697278,-0.0026690208445578666,8.818829645495229e-05,0.0006811070250051336,-0.003128890003721602,0.013186496432895019,-0.004371077513965484,6.962267882799279e-05,0.0017687457782121626,-0.01566856265466109,0.11690476997399879,-0.08104634727664442,4.5961642604033356e-05,0.008840245392442632,0.0016003689749219873,0.0012807595112413396,-0.03491997551838429,0.0009636011737976741,0.005041430424910476,0.02609697432656629,0.05150276377377467,-0.052975954407416585,0.00017718277925320044,0.0031879173811451317,0.004649621305485876,0.003701777414276346,-0.01810852343503572,0.0006139480715680252,0.007145936486123553,-0.0056264923054760345,0.07154705791918207,-0.020215821313854472,2.343520402662889e-05,0.0024654145089875084,0.055015776016151506,0.1312325913834949,0.09132315009190588,0.00012453647714891227,0.009176515978296997,0.01755245294494166,0.08391644253978178,0.0019108365795521293,5.887793519197908e-05,0.0022371497364776327,-0.017932699245847776,0.015192100306677444,-0.006257357693346438,0.0023022411821918627,0.015093097914296461,-0.047558679708727125,0.26743232559253044,0.08067778773696604,0.00014634166649041256,0.00897445543647592,-0.03434415196288728,0.21748779383748396,-0.024100753593887757,0.0002445266179394371,0.007760131309348252,0.012538236587558283,0.07313940508231899,-0.022130547014013444,4.828875328255064e-05,0.024302658599939797,0.017482771958251663,0.10212539590531365,-0.005413299172481909,0.0002821391457386849,0.01123521179178721,0.000880569164335006,0.013662291823559995,-0.0008115102490150441,2.6746696336498507e-05,0.025101890890427678,0.02212402996160543,0.23657704494569248,0.043867922029964194,3.1244483102067716e-05,0.015421559408203922,0.03275616281164243,0.10525228245571346,-0.04720118207875472,0.00010024997069679266,0.005127716048237577,0.013626420851681934,0.08738304146748498,0.007115875650768293,3.602027443289802e-05,0.008695768355346419,0.010170081242739857,0.029599691847768686,0.012214401569566087,7.617537743841668e-05,0.008030327994661923,0.008307264899851853,0.034241118579345774,0.022234493162562177,0.00011093247722891918,0.0029422153590135235,-0.016300142345958626,0.014364668958260362,0.0038957124580642475,0.0006485916250336948,0.02036319311993571,-0.04567618046597481,0.1837725740637477,0.10581225546228203,0.00010461527254170111,0.015801458965987496,0.014552368357012615,0.0441356072374065,-0.07717203733571132,0.0021162342932832365,0.009114783544764575,0.015907116688130746,0.1899897395052426,0.0077004348502909496,2.1529974472508173e-05,0.0011809844006163107,0.019341706727336254,0.05359727208898339,-0.03903809015314066,0.0011798407105856016,0.01768917081626137,-0.014269142175036486,0.10153057938894297,-0.008001611952775779,9.358939588480301e-05,0.011316612467712883,0.00874520677571178,0.012554503712680418,-0.050774306228323386,0.00016440533992321743,0.019593654268215202,0.016249364117046663,0.025754606756399956,-0.012497213610469524,0.0003621473913633029,0.028240920970753317,-0.026950317707842543,0.12303690492044198,-0.020822407916534936,0.0016977699125125404,0.003110437902750694,0.013842432752336887,0.05035733274539254,0.03067279646641409,8.819420988054035e-05,0.0029259647981173657,-0.013491854250957619,0.018358820295583507,-0.0019482478827134156,0.0018268549319323025,0.02583708920972607,0.05031645126488517,0.15178136256394012,0.054897030374297086,0.0001313431998929039,0.01803258403777002,-0.04633830299168391,0.12297921575096506,0.06092089589219313,0.00015274562570267717,0.020080021542618034,0.039466416882808546,0.17298173872060943,0.023786539330408824,5.568540286175974e-05,0.009468201063357289,-0.03158594826010717,0.09844263012073487,-0.08865626506333886,0.003041086471491105,0.012342862299241737,0.04209858160983868,0.19404458044575104,0.03301164896658573,0.00010792113815702793,0.0022906027832685135,0.010097896003892524,0.05599810562310565,0.004971416573771071,0.00013077307705766533,0.00611378099732136,0.016341200731720684,0.08415393882744034,0.010025925184332153,9.184557038517465e-05,0.0033503077964047463,0.0242015603824083,0.11516066075468284,-0.030898686740768688,5.28185670327161e-05,0.024722449749917996,0.007920469492202249,0.013968048352720912,-0.004443918846064005,0.0002764678211388392,0.0007170336515498789,0.03397366363840733,0.14682927628686063,0.017623608411971962,5.753658751264897e-05,0.009648569807962085,0.019777181211386177,0.19230094000367254,-0.006861478360466847,2.653470545430829e-05,0.004055362798505031,0.007548154795354534,0.01860577065331604,-0.015413483575415233,0.00014180844645551272,0.00400260860908433,-0.000419657780686906,0.0016574510784476719,-0.027078239557490617,0.0003991007389783702,0.01212609095633644,0.004221438545453875,0.02355143983677118,-0.03158888484542465,0.00010266320166231365,0.006957441913877765,0.005297268008288272 +2020-11-04,0.00036075876507269034,0.0022505494596080674,-0.0037766784334204435,0.0001695176463355921,0.0037340133726431156,-0.01610420360630385,0.06174534450317954,0.005072075938585843,6.258144132239028e-05,0.0002728571028954873,-0.023912622502262844,0.0772835496986583,0.019029010023783387,0.00014313220145127382,0.020867486740747544,-0.0072350068437085965,0.007791231069997048,-0.07736061890656046,0.0003134012453340988,0.009841494719760265,0.02385795065987907,0.05606777505752342,0.015538647353434227,0.0002226473785435677,0.0030650358438474466,0.009669372329034713,0.023902452949752687,-0.08204442270114304,8.832884495041177e-05,0.006874387907743089,0.021672104632368357,0.06847808510131685,0.009928709702879089,9.286227874987214e-05,0.03758808124660067,-0.014532460779497354,0.16272342352330652,0.005871820180533913,3.0625818279810175e-05,0.01592978414522539,0.01778913298423271,0.01689003610216292,-0.09858028236365626,0.0008122112310248454,0.00048239456466410717,0.03254315225540424,0.06667096501161715,0.016220576557110965,0.00017068083672144044,0.005159027495343936,0.008252527996028453,0.006572068212198227,0.0009792875633765458,0.0006137751515239487,0.01986497642553635,-0.014074447697461384,0.1949129098227575,-0.046857750645512175,2.1518576868367066e-05,0.003247287885964809,-0.0051466108914089564,0.014749038556613676,0.0013956078710034856,0.00010365939305839073,0.019939532731465474,-0.014753869671350589,0.07769312182774228,0.09368941356658177,5.345461287868424e-05,0.00277900327980988,-0.02212898767170825,0.017135374871013808,-0.010562019014818584,0.00251878390481949,0.01170719154098423,-0.001550331043274078,0.011180136258443009,-0.002674492902766062,0.00011411151057756065,0.012962086514729163,-0.0011005365761158714,0.0065779268411438946,-0.17143521388545077,0.00025907390648667204,0.005741917738620805,-0.021381870818796844,0.14364341469932332,-0.12394761066949431,4.192962098697934e-05,0.007114425688464313,-0.003383563172574487,0.01784921017522217,-0.09813484800255357,0.00031242234900848365,0.0006448634050580941,0.0006736654375228782,0.00816465430624819,-0.01609902092494601,3.424023181939506e-05,0.018807006130847046,-0.008700950848402321,0.10204196225706905,-0.003382881922227645,2.848850262008107e-05,0.0033654457059242296,0.036780723514697196,0.10421439623245886,0.04578358117630401,0.00011368817816433603,0.030904348505375673,-0.017815844173321705,0.13826710571218487,-0.035771011145512385,2.9763219657672517e-05,0.009369427104453043,-0.00011907799422182337,0.00038557154931117177,-0.002437840657206415,6.84705651389309e-05,0.0009725893149678077,0.01583821032244981,0.05771109000787707,0.05007100533837135,0.00012548604290548972,0.0006988854450620831,0.006235330645187164,0.005975171967675002,-0.0009179217398819493,0.0005964645546313403,0.02656093609557249,0.056929952684487486,0.18470524148366962,0.10735124500319125,0.00012973214897361,0.015970930883723318,0.009601737649280448,0.034307403110528226,-0.0036378044351310247,0.0017963094914423888,0.011360890905062006,-0.012709321665246076,0.10882985897938596,-0.03497286685107986,3.0030080779859034e-05,0.01761710742203268,-0.013691213777076152,0.03425640607878828,-0.01344859530265557,0.0013066865573664332,0.009539035277338305,0.003674810448749418,0.026396434222798228,-1.939993502409148e-05,9.270759649988421e-05,0.0012890894480249244,0.006834625015348882,0.009015644547644374,0.0011430261382964991,0.00017892181591837826,0.008074585865526921,0.05697123038291092,0.08785644329691944,0.10299507711067339,0.0003722081642135846,0.010019651710513337,0.01124940178648832,0.036715692825091024,-0.018593131872654777,0.0023748054768067037,0.014153801869372163,0.0085364394941266,0.03450211484640018,0.015396631519768406,7.938188736234309e-05,0.0035119321488483292,-0.0457106376680699,0.067696246116184,0.03293125615686282,0.0016785330029801704,0.007117079553539708,-0.023957418687843332,0.08711279972216827,0.012433181012111497,0.00010896175448030433,0.009175439041798336,0.0070154947015025285,0.017614803042128122,-0.007240549699348013,0.00016145105435681707,0.0008506741921150925,0.013082355340125274,0.055441694587326784,-0.04004059697886397,5.7592160397114746e-05,0.018358222702866116,-0.12224290485021157,0.4378919076284763,0.21000885685050413,0.0026459083694371183,0.028838821669788448,0.04255916092763624,0.2128387759202557,0.0303540426618988,9.94678830891139e-05,0.0021571066878963794,0.005651807172594796,0.03171592031768291,-0.030926641639428282,0.0001292322193177051,0.002208088928002265,0.018228802345184942,0.09776341640467606,-0.08092475460461744,8.819225855369284e-05,0.003508671790113829,0.0230691071304127,0.1265356242695011,0.013709362184366882,4.582108500624402e-05,0.00790045620738229,0.016880253105872187,0.02978315342262851,-0.0388964318426662,0.00027633612903113427,0.0064764865954817265,-0.018039213848203783,0.0671203958326351,0.02398981914571911,6.683092525732613e-05,0.0030113225543855894,0.005554845262240743,0.05634659883571523,-0.026880459734544265,2.5435222703105783e-05,0.015937967249575392,0.00927356255337957,0.02861241431695799,0.0030804411727720664,0.00011329247516580002,0.007816139182555868,-0.01808621401157101,0.06806913062024438,0.020260756388479243,0.0004188180906620087,0.0071786492016175305,0.008218350689609724,0.03788524634686975,-0.09710592592300851,0.0001242471254372631,0.012128539807670872,0.0010516566195639659 +2020-11-05,0.008172839607691445,0.05103716641375349,-0.00019567716170768045,0.00016934524454367158,0.006589502399606291,-0.0019291787886379001,0.006419668208598965,-0.029181392042453652,7.2105836924873e-05,0.0026665465764946633,0.009322733509966851,0.029471807692800334,0.0016926600809212898,0.00014633011028195733,0.008181394002176415,0.011008101149516353,0.010351547911889436,0.0006927182087899151,0.0003589012502368125,0.0005058928452453442,0.004349431761162172,0.009870521507814025,-0.003996331138784779,0.00023056330806139533,0.00547102787597992,0.02141588215830213,0.05002611330747547,-0.0025207533877664493,9.347294927664469e-05,0.0011164725195800887,0.07467135197591694,0.2946896755713458,0.1079206697003391,7.43496535486246e-05,0.016904000051857507,0.007329482921994833,0.06138684720577734,-0.0008006898158521983,4.094459907559755e-05,0.013610617565144032,-0.01919956316542273,0.015229719805972805,0.03648129149139773,0.0009721744899420314,0.008076327465817287,0.002865533058760298,0.006168214650593511,-0.00038286473125851637,0.00016244555454094004,0.005459282153344201,0.013872966716845146,0.009703981837600847,0.008803590468453325,0.0006987852472436197,0.01209069646928488,0.003323876799103482,0.04813282276888741,-0.03340613397369873,2.057909991399181e-05,0.0074570273934678214,0.00017857306729263006,0.0004406094687322834,-0.003120013119494174,0.00012039630828690688,0.00860026531878903,0.0023558501884939132,0.013867181046264878,-0.01377131326262438,4.7821291667409336e-05,0.005119731691298659,0.025231469494378485,0.023129834794317836,0.0006219294814839338,0.0021276147210191666,0.003999655716105753,-0.028593546719488855,0.17968008766471508,0.015176378742527627,0.00013095442717106642,0.026938761545623205,-0.0486022440213569,0.29985940487342816,0.05073355331917093,0.0002509844867835736,0.013256725973109893,-0.03520562587816556,0.20250465540633894,0.11017745770087194,4.897089189515894e-05,0.010122227538126841,-0.011053330955822907,0.04472442634112006,-0.01288624900767106,0.0004073195003980796,0.006903817426791913,-0.005202402374263987,0.07230178979215685,-0.02804365447267531,2.9859678153489364e-05,0.02320770177229862,-0.008229732531435595,0.08178488846353828,-0.009909615198812944,3.361974105383061e-05,0.0049481114176053945,0.040533108469133404,0.09905029948456225,0.005478262969429273,0.00013181865429574857,0.0096124161534842,-0.05037306713947612,0.42884260433397925,0.017252148382536223,2.7132689600109208e-05,0.016625318966672124,-0.01548356997642607,0.046348722670512876,0.03833277623804276,7.406460544661588e-05,0.007273403253974019,-6.0826769059667596e-05,0.0002073234610225971,-0.0682117807036926,0.000134151302588488,0.0013869956080008834,0.0802063825816154,0.08434572489565596,0.08496028566632174,0.000543527366768813,0.014987075089109826,-0.013868323172497829,0.052684910230031363,-0.008096304535675326,0.0001107959072668285,0.023257585056738417,0.06022702374499594,0.1853406330738581,0.02351551182818343,0.002085642819726448,0.006218320040006596,-0.0023097740305045317,0.023363311580527547,-5.6004369245006615e-05,2.5422443365412046e-05,0.005185302260393347,0.01980082004521761,0.055398859459522484,-0.11676417482406978,0.0011685670138281217,0.03872879848122806,-0.037089656776549844,0.27441076809439113,0.0017319797967180416,9.000721173898897e-05,0.0133123282903514,-0.02397031390874856,0.03576589340321427,0.02604110916058128,0.00015817943862663509,0.0031281178206344377,0.008560059584904432,0.013357141923396652,-0.03962323287459434,0.0003678469513494179,0.012865933323660003,-0.02834491242428705,0.11039818015679478,-0.09419665224050759,0.0019900479750762936,0.004431321855776412,-0.01156088662176608,0.04538624969677361,-0.0018454643428602127,8.17254300086188e-05,0.010960655102665667,-0.016154788991375093,0.024445147437811104,-0.029516380368286577,0.001642804260822675,0.01622785353934819,-0.005498382132408881,0.018501779563696606,-0.015165041323642455,0.00011774363893340576,0.017927128378333223,-0.004937033055088062,0.01386010883292259,-0.0810779496478621,0.00014439753204416357,0.007726499218879126,-0.022055692461503528,0.1038873097392746,-0.08389157629587843,5.181698295057202e-05,0.010430754123606235,-0.04043480132877195,0.11962224674877935,-0.0434095318248513,0.0032037706353111707,0.011361756793409337,0.023446850989441218,0.10098882780015785,-0.09445251501444057,0.00011549196294026524,0.009708984736665262,-0.002362437246279028,0.012562754081134185,-0.09151107413612793,0.00013637545327411976,0.0005753116236956088,-0.01176259959188652,0.06573551095329401,-0.19775634093859493,8.46353840578421e-05,0.0019020693202620774,-0.041967983223770725,0.197912646637197,0.0284053738070658,5.3295672666291765e-05,0.0394172992801521,-0.016244475978426598,0.023550747806104503,0.015122644586815122,0.00033630273441309785,0.01785839962926772,-0.015186296647385446,0.05962037324736344,0.015969698142968208,6.333905279273356e-05,0.005455172530679122,0.0076367531875413735,0.07408265506644432,-0.04145068114472858,2.6596439538313472e-05,0.019200017253356825,-0.01777346824928567,0.059187412151514164,0.025217371229807304,0.00010496676082665417,0.004574040502394657,-0.001623934525803049,0.005457217193557882,-0.031181950576028804,0.0004690565959127695,0.01934014325604145,-0.004434341855501109,0.022345654775700587,-0.060103951501207446,0.00011366006028581418,0.00029715307185117527,-0.002664203728470046 +2020-11-06,0.015814707515786265,0.12021681330844478,0.0011825044521553186,0.00013911774730557112,0.01258401245675779,-0.0007756349054912728,0.0023815269549001938,-0.010057834424997723,7.814701078414426e-05,0.004648154029688054,0.018560174853867784,0.057521959626867014,0.00727625899240748,0.00014926074154602905,0.01645488375561158,0.018370228115800698,0.018072338548945105,-0.01349504692897275,0.000343058395412364,0.0007054018877484379,-0.02792460483135586,0.06368804862013537,-0.005501789529389291,0.00022941767061760722,0.021852180090130357,0.009908029999050402,0.0219819229767616,-0.01000628445060675,9.841660305913181e-05,0.001619394666598898,-0.037835895963948894,0.12873359851468408,0.03602609259277533,8.623865380235318e-05,0.009218262012892118,-0.00723103281902068,0.06777466974269668,-0.04137326357684639,3.658739904786286e-05,0.006771429504399519,-0.0070158029404115375,0.005671324591406981,-0.08279537831099067,0.0009539764733177186,0.004726032058519355,-0.009170173997773494,0.020214883265506932,0.00043468599649395666,0.00015862375440544584,0.031105329438632003,0.026279281689674954,0.025436974600640472,-0.015848338434642336,0.0005049779234219065,0.0035498247856205725,-0.0181083914528513,0.22530295089964808,0.039099341110392045,2.3951669129656555e-05,0.004446876872371655,0.021478475795975345,0.05132736198364064,-0.0455895685117237,0.0001243098529527061,0.006094913269455813,-0.013329311728027692,0.082569440235929,0.04465042008604706,4.544124301666991e-05,0.005078267367994495,0.04625742325300268,0.03928880329013721,0.10167976517340907,0.0022963369224131636,0.00644562222674268,0.022843167953915437,0.15727494692965024,0.009540572917578923,0.0001195222866734822,0.014859008356734637,-0.038666412115760815,0.21769942761309677,0.04120743215678985,0.000275033008962792,0.016735276708122776,-0.00783016436538393,0.04683052043115881,0.011250277909670524,4.70980417565178e-05,0.004836401194869653,0.0441781235758944,0.23961230374122122,-0.038730586128425434,0.0003038679937255641,0.013046372852344019,-0.02140023535610765,0.33408108898788896,-0.052270458194295474,2.658256523310183e-05,0.011702166900418937,-0.011053810094444035,0.10812565395317894,0.01719790952634041,3.4155839257210014e-05,0.01563243792706291,-0.03552811040537075,0.1075828758094936,0.005891338125966228,0.00010637797436744175,0.02361386800322109,0.007670124257832328,0.06368131504271311,-0.013050233821401209,2.7821641657459862e-05,0.034880702232789704,-0.002224383182095887,0.007370107644814926,-0.09544350399817912,6.69134086783167e-05,0.002365047217668723,0.010571503611254177,0.039647690910646634,0.021015350966910522,0.00012191789596667476,0.00527947059893789,0.08111173182544051,0.07960250418676255,0.007518401345133113,0.0005824149378500405,0.0007249797784905975,0.02042896214174884,0.06412585491967027,0.011158784626699158,0.00013409085024108428,0.0012031410152978372,0.004885426796960999,0.014840809318817094,-5.6890784453394237e-05,0.0021128277865416763,0.00019006853127388605,0.014107562434552887,0.11816920211571548,0.009708392806751792,3.0699398977536744e-05,0.0025166021314924,-0.0711274735637105,0.22365110684950032,0.059995925600432445,0.0010397707614785842,0.0011379517345446544,-0.010239147282930966,0.08069282187470736,-0.10291700198536725,8.449957605455897e-05,0.018314095617603422,0.028351176402875298,0.03730758766889023,0.07567794460750557,0.00017935740107415818,0.0014772188139714083,-0.005994138914227424,0.008883837768711655,0.0005504492725956815,0.00038728448421675594,0.004514363153698712,0.012795520997325173,0.05367442791550478,-0.0005701906772581231,0.0018477401284709444,0.04172396340367859,-0.030110317824208126,0.11564586557915556,0.01231292371629547,8.353636991591571e-05,0.011511473194191442,-0.014519135329742425,0.02019998818710165,-0.11215108279731924,0.001786762502059138,0.003384407355614378,0.06455315956856789,0.22749607168164757,0.012350567661087686,0.0001124241566643059,0.007674468274492569,-0.02291911099412867,0.07190804790325424,0.01897767895946491,0.00012920539403845689,0.004559689075600749,-0.0007734308155078381,0.0032640771823826127,-0.11181389279465909,5.7832900891433194e-05,0.0055374782355819795,-0.0521322190309277,0.15444689327812838,0.028215872219800046,0.003199227265154725,0.009227907849608835,-0.02552845103715885,0.14316225637451174,-0.008007147438644916,8.870263075987756e-05,0.006385925800572562,-0.0034708105952903977,0.021740302506631223,2.6024706710825423e-05,0.00011577801947027607,0.015006346430810566,0.02954681216621894,0.16881998817971547,0.11718863616624998,8.278191419150054e-05,0.0034755599016757397,-0.04306299743842114,0.16804835464808346,0.036268427081867304,6.440467399016425e-05,0.014134567587534577,0.027984060142528903,0.04943237445645481,-0.08414500764148763,0.0002760124343963498,0.013285622618640703,-0.030034619725364493,0.10981324217887349,0.026314049453846466,6.801141325765887e-05,0.015265601346537792,0.006365728380545715,0.060916148397964213,-0.04724463717681483,2.6961680208035187e-05,0.001394971753268688,-0.002169359772873139,0.007086314364894675,-0.011298495384098023,0.00010700895734372208,0.0019196897115940734,0.018064668991029344,0.06390115064026637,0.0012767667360607932,0.0004456042257601024,0.0015373408636927977,0.010485629393368274,0.04734916035604724,-0.008966291714277728,0.00012683935292045166,0.014473658709874314,0.00035741096630521505 +2020-11-09,-0.008392294596776158,0.05496929191525724,-0.11325089187544382,0.0001614533876316034,0.001064051646147043,-0.022087519050728192,0.0806581212154204,0.009908095497102492,6.570665550550552e-05,0.01553048372608344,0.018095505280755743,0.05709499454267922,-0.04577237439315089,0.00014661212319995196,0.01743056141164102,0.0006752686327395996,0.0007065690044975169,-0.02721742908304736,0.00032254465600882275,0.0077143919348282965,-0.018576347694969096,0.043631938348597535,0.00563232375446827,0.00022276840561347288,0.014061480003454077,0.02053281915816906,0.05335985092131931,0.017210481792069396,8.401962027064258e-05,0.0071856794982309135,0.0505145421220073,0.17357295298839784,0.011323178692209258,8.539338390993565e-05,0.006253702439290215,-0.026797026921728372,0.2375048172729459,-0.019414712391242993,3.869125388093988e-05,0.00482947463512781,-0.020508833937495176,0.016324644207506008,0.04466993798552537,0.0009688176238732407,0.001490737258573164,0.031933013275850824,0.0703131953091459,0.014037895943577662,0.00015880528571395066,0.009684205003485342,-0.01065553040683261,0.007254063220682411,-0.08630817375681918,0.0007179895027426877,0.0037196804152117074,-0.009057937917300292,0.11483379962555272,0.014545469191314015,2.350619822195272e-05,0.011729751745821667,0.04107156980340319,0.10673082622671684,0.02530553600619269,0.00011431480210750677,0.023676459361102967,-0.012516693805200773,0.07077775332874843,0.03305460186860193,4.977997494757824e-05,0.005324855778770869,0.011680293252902785,0.008634701517723446,-0.01838184977337369,0.0026383316633510514,0.003956355274235221,0.05910814361495274,0.35630026426545397,0.05550135257302728,0.000136515914642899,0.0213765150510261,-0.02675257965041301,0.1482602588135212,0.017800857045017285,0.000279414631259412,0.0019301645867430602,0.002971014503525245,0.02219443502675061,0.0034473875254427866,3.770696984344371e-05,0.012040106151836006,-0.011164638549431226,0.06152423780998443,-0.00014861576937491472,0.0002990785268514939,0.019289454887963686,-0.023998760745266915,0.38972991591403694,-0.027128158276128692,2.5553788946089893e-05,0.00478093898964708,0.026319420437158732,0.31706566571808376,0.05254187580814446,2.7733763957255797e-05,0.00034399011623702236,-0.0075121751471631925,0.02336441400148068,-0.004733130115951257,0.00010356990258731057,0.0012277833960128207,-0.028962558951950348,0.18374212004063656,0.0027793489982235187,3.6409992029326446e-05,0.009604396017584192,-0.02343235221049236,0.08571243802611685,0.067677434136888,6.061071684063823e-05,0.0009291324212002685,-0.01083856657453747,0.03587519318555556,0.02518559773191537,0.0001381421454895758,0.0011330607708364784,0.09656586721677701,0.0926790223674396,0.03758020928374654,0.0005955493603077316,0.004258908482034582,-0.0007282691603795374,0.002958535953452586,-0.018801650526010315,0.00010360985769133532,0.008971477427889122,-0.031710634228038846,0.12017021241581374,-0.022420458554395548,0.0016936640689003454,0.014394526847409722,-0.01105620336522345,0.11502285270186095,-0.03047666512707668,2.4717473618314368e-05,0.012275142974597126,0.017946343551130613,0.04772592020976907,-0.06833694054830308,0.001229399228467486,0.013065408596779625,0.0031342213489509354,0.029036510260093556,-0.032750494771030154,7.18804666790889e-05,0.014271674183836968,-0.00929525738179392,0.014960970175115582,-0.005445115837865055,0.00014663817563726107,0.005622689104466858,0.003816982602690973,0.005558954053271537,-0.0021031622069622798,0.0003941223011704126,0.008902323088187641,0.00928670154279112,0.031540309795301286,-0.10595562440997525,0.002282158873725589,0.008801965064630367,0.016549840709923807,0.06981017640764198,-0.012891626785810724,7.606159934345684e-05,0.0027235961623096835,0.031794791280942925,0.04577336503217802,0.03602306866511253,0.0017267136785679893,0.005539406682041104,-0.004863350257052142,0.015768138871755766,-0.015877626591004303,0.00012219998392963533,0.000543519515175788,-0.009758432827430448,0.025100052635780055,0.0033639090932292247,0.00015760348655653893,0.004957192080924374,-0.035024414749409774,0.12648386114488855,0.014137494387196284,6.758490339300984e-05,0.02348458856237744,-0.05708138274447854,0.1633640265165313,0.030494851962561836,0.0033117390860682655,0.02746613689416577,-0.010157581984140346,0.046361130743588504,0.007305619667559966,0.0001089875493158082,0.009581917108514434,-0.00798057970645007,0.05299469991800201,-0.01967359017649042,0.00010921009542510172,0.010485699554999419,-0.028691250365448447,0.1523636267854106,0.03340942895865723,8.906700977979246e-05,0.014545196390583796,0.013053979876451996,0.06940967225525571,-0.07698048363836872,4.726833883649333e-05,0.013642298229535655,0.01311820245710076,0.030145199909015593,-0.009797222398442716,0.00021217077123673162,0.0018570364442680527,0.01104748508600689,0.03628989711752418,0.006569350304414603,7.569933473985303e-05,0.008880427430795725,-0.011876433476992894,0.1291692388258418,0.016153375495099744,2.3722378207032347e-05,0.0040104269166875125,-0.026128097047063637,0.07384010304114559,0.09480170197489697,0.0001236871125061427,0.005147038678238174,0.0003553358781136019,0.00137794970085015,-0.04150096814268855,0.0004064748376722375,0.0049160477632103645,0.011625486486030581,0.060241253862669306,0.006913620863618605,0.00011053222920839268,0.008963857176616304,0.0002869144166211408 +2020-11-10,0.01781092718380051,0.12388491564632109,0.008922821237337033,0.00015203888731389893,0.006222083928600861,-0.02212136901768834,0.07918374417335257,-0.16466666829347082,6.703266621360927e-05,0.011713897542218372,-6.934215268435176e-06,1.975420784072181e-05,-5.6214405108235864e-05,0.0001623808855878458,0.010461670081752994,0.0012926455555925978,0.001290358386982696,-0.0013506369147575992,0.0003380936115811651,0.0039361414432649965,0.0016719239299007754,0.0036283998281398675,-0.006896097773793953,0.00024110107589589327,0.006136982509243755,-0.008543395312823448,0.02365667225736149,-0.06990916625710375,7.885397463158758e-05,0.007369468040827795,0.007682798163028973,0.03125092029914034,-0.004308330671677248,7.21350716972155e-05,0.021725643637725733,0.013969775918554462,0.11991403627857693,0.014243951550784286,3.995011491697993e-05,0.004042877799789593,0.002057955029888278,0.0016855171690702395,-0.0388984409144293,0.0009415588858317962,0.0031195446237290026,-0.026771592343192215,0.06483551111005938,0.027013671563904062,0.0001443853569490666,0.02199558151900535,-0.019839405135200494,0.012153105868584538,-0.041506645100981766,0.0007979317078513064,0.009037014205157082,0.0012308379032723526,0.01727813184207922,-0.010389851424300003,2.1228869512392677e-05,0.001088021441313976,0.013084728758782511,0.03349294926183103,-0.03039056634317856,0.00011605460309475656,0.0004630560155103622,-0.011034165936843452,0.06504582216364993,0.010747520159607607,4.775093960259063e-05,0.0015093660873065071,-0.016983784966807677,0.013935775758955268,0.0037827518436697152,0.0023769842585824935,0.005300030330808499,0.045419015896016525,0.34177875219127174,0.029771807124176087,0.00010935654178029574,0.003683080675342773,-0.043891662733331276,0.27849252987751044,-0.0007276116527365203,0.00024404882155627016,0.03792059128464156,0.023383141906761582,0.13696254035026098,-0.004055635722170914,4.8090801880083976e-05,0.0018141329694919713,-0.011222917489140501,0.048685382974375004,-0.0009339566990267175,0.0003799216010787892,0.017824237044852167,0.024159556570218264,0.3260761887310472,-0.00379865534967971,3.074681281883417e-05,0.013119736011321732,0.02342606110170255,0.25019096182862105,0.009352572431648071,3.128306982761257e-05,0.0019131206876370015,0.011312350186836585,0.032577137896896084,-0.08377603972911461,0.00011185687198686147,0.007481921302419792,-0.10167481957672768,0.7039832318248994,0.09293107528846681,3.33613388786588e-05,0.008059405603005155,-0.00011254653276788255,0.0003249926802087028,-0.010489301570440729,7.677784585129649e-05,0.003554917673201414,0.0034521101881228155,0.013350866847727266,-0.017017730482331635,0.00011822893583526572,0.0023888283816677035,0.03685641152479319,0.03197792383351778,0.0008748056107783511,0.000658776875470749,0.037022798167090275,-0.018580170652902815,0.07282056287367852,0.010095770404387817,0.00010739440991033928,0.0019619411645669447,0.056300853691872446,0.20890948034045034,0.06894240962605157,0.0017297207927563125,0.021047081430221617,-0.0037096393492357087,0.03372536686882475,0.00012859440372478442,2.8285066374720737e-05,0.0016658442093415765,-0.017079180576204642,0.05578915318200251,-0.07200000271206941,0.0010008950253561993,0.0016902452098367133,0.009673077513385772,0.08690724977116877,0.0027433547016263347,7.411981121977675e-05,0.0022250123174188266,-0.003267464918093772,0.0050185426247428035,-0.21006865585487006,0.00015366632409630134,0.0014119913731848103,-0.004510856893427481,0.00692002555088335,0.00026250127637636824,0.00037415819789446105,0.0029380490437362046,-0.0016072406221640737,0.006046152955528502,-0.06344481437777504,0.0020604027072510475,0.0043014579190490294,0.0028468160908951155,0.009875295906195285,-0.004196912877333917,9.249104035488216e-05,0.005332513092536163,0.08914237079707116,0.12038853420287005,0.20496277664241547,0.0018406713192494137,0.00443809201528156,0.01235861171337634,0.04006511858322068,0.0010364736415686467,0.00012221353092513264,0.01268106263529942,0.018472488174404247,0.04706009029451183,-0.028136290988191023,0.00015912302164750413,0.001859155026167641,-0.03512822255683374,0.1675421542327086,0.00393462574098313,5.117360415531766e-05,0.006956881620598694,-0.028312783853711113,0.08220182523180626,-0.056699276253288036,0.003264518774203209,0.0277306079878621,0.0031625727992098764,0.013643370547071479,-0.0160447949739273,0.00011530799683513965,0.002929995137254437,0.03045574604168171,0.16419867225681692,0.06066044185335254,0.00013451180045393182,0.008916547956989186,-0.013727519223675598,0.08969868414379185,-0.013911829853148311,7.238601811824012e-05,0.0055678487635033224,0.053359469882557346,0.19489391907252135,0.08174472488708988,6.881143462175754e-05,0.018364615502624925,0.047339727999319424,0.088914341380552,0.0065476415031263035,0.00025958723734109684,0.009067131750538363,-0.005866081648579687,0.025709707988335027,-0.013384194641147333,5.673686504216226e-05,0.021768550486765518,-0.009728836629657879,0.11193709513889841,-0.03954113363974072,2.2424262242092043e-05,0.009163788478711452,-0.012005946165109867,0.043458916698282314,0.015882135232433293,9.656649306512213e-05,0.010156682220072068,-0.01873144908416346,0.081055533008104,-0.01654288671589714,0.0003642643596442414,0.001522923586757441,0.03455165516425873,0.16534184534777024,0.028560212619372867,0.00011969000145813379,0.002871542246573567,0.0029014513227673955 +2020-11-11,0.009067816680033041,0.05903237491368387,-0.025176056574789576,0.00016244227381669585,0.003605450295775397,0.029157195356068068,0.09385489060326868,-0.04068106375693015,7.454171242123659e-05,0.0032421311809114877,0.004102783575180737,0.012380580852281307,-0.014790686580229712,0.00015329740104432838,0.012354758948290578,-0.006116931294681582,0.006117214307214661,0.004028729776642369,0.00033747978459459384,0.0055939746542804925,-0.02908202294431821,0.06282063579529944,0.03301366728296834,0.0002422256096006671,0.0022497724808135822,0.005799433148395596,0.018871354844888662,-0.0027269333305264334,6.710103291274606e-05,0.008476068786209842,0.0260347109200475,0.10165284947589084,0.008672392176849134,7.514897440757292e-05,0.03756231401539424,0.02373088453857742,0.2204121131616437,0.032626976751005975,3.692130835992233e-05,0.010142359128213421,0.008019037752589995,0.006419529490113462,0.0037089082414478265,0.0009633050709002362,0.012082463977185723,0.012208064367402204,0.026469214058771836,-0.11863924703058475,0.00016127522286037022,0.02755811267839042,0.02250745337328642,0.015120982222955688,0.03785220158799137,0.0007275631834870938,0.01366068286287664,-0.02814478948998163,0.5085750015639087,0.09473680453748363,1.6491713634110713e-05,0.008130689044156345,0.007439023656976356,0.019193748915658178,-0.014854276477089727,0.00011513494780780723,0.00968245111342669,0.0004227849731005255,0.0022812139861556934,-0.024205031942956846,5.216933918622223e-05,0.00392701751922961,0.006037704349683741,0.004656433321969388,0.00032488149108329746,0.0025289568953435907,0.002676734850270222,-0.03588699519493943,0.24473971126991687,-0.0010793792253327374,0.00012066595681544079,0.06402187808778208,-0.003575062181214517,0.022217030686537017,-0.004300732134704655,0.00024917577456608713,0.00579434266767502,0.01960063967345498,0.09876445933411221,-0.014065762685461943,5.590240732450194e-05,0.013446092401378793,-0.021387338721282397,0.1136250311942537,-0.01107087849569343,0.0003102198186327092,0.003543924792081937,-0.03675324072542115,0.396690797327378,0.01969056534186787,3.8447999235551744e-05,0.008222096297691835,-0.008027431839351425,0.07841086272713119,-0.009241889080738995,3.420440999216038e-05,0.002217239801121348,-0.015210831003579242,0.04086093638817998,0.009829455166494135,0.00011991330752733711,0.03574880018572524,0.004496153910210093,0.031890881637390886,-0.019326071931143697,3.256619505850574e-05,0.021122563084177037,0.009865460043886559,0.02590501438185494,-0.009270200169445427,8.44327406577718e-05,0.0029001928691206797,0.017451112911017048,0.05981013117753168,-0.04547385796281334,0.00013341263722958967,0.005452218562347357,-0.0025658022781251968,0.0026816063133712873,-0.01788049321414512,0.0005468947173169108,0.01714950581774478,-0.003571048852393841,0.015374122336603851,-0.056770352158898245,9.77668151730517e-05,0.018444493445969462,0.04992380753818643,0.17952938106904417,0.03370997600436607,0.0017848073317807077,0.03586656058261155,0.0016817114490310337,0.014933082439091737,-0.0024397496515538596,2.8959043514067148e-05,0.002365728829938336,-0.010303766619478206,0.02951635960639877,-0.08294556377940121,0.001141312280470234,0.012221485854886437,0.015220251481213566,0.12421384131175411,-0.02261869719107888,8.15976176152183e-05,0.019968998750829133,-0.006510261458535902,0.009420057798385834,-0.00016157111798766332,0.00016311362872372073,0.0007639818980674576,-0.02446426187447938,0.03526634002090324,0.05115261373834043,0.00039817651421004805,0.004297059920952112,-0.011633303673007949,0.0486325390998689,0.004389952805795681,0.0018540714288164267,8.74885952392517e-05,-0.008082797070359176,0.02746209771175071,1.7828463020266414e-05,9.443181515882186e-05,0.0037860110842579332,-0.032098584348753664,0.044946720061889864,-0.01976349774196904,0.0017752726640531552,0.007064213657253624,0.03445755650746994,0.11360983723186503,0.013687824666521077,0.00012016682205022139,0.004794277472202819,-0.009390743604800683,0.020021833548694166,-0.05636575150625567,0.00019013256745049295,0.0010456569434558864,0.04235423330202554,0.1792603095835569,0.028194346200953325,5.7666900236490544e-05,0.0013384557259367423,-0.05585661398676108,0.18225391598287027,-0.04388143827275786,0.0029047970494963642,0.0001646396966641146,0.033750071782450215,0.15841605800472622,0.01894110188444584,0.00010597808542339146,0.005498243440499572,0.01190809955262241,0.08447896100901636,-0.0017463863712971967,0.00010222442519476673,7.658572370987425e-05,0.012191260547055108,0.07556928401591115,-0.08965464689291257,7.630482561810263e-05,0.009702297336779053,0.023906945374933156,0.1074544618884876,0.012047659682390532,5.591740781937608e-05,0.0054900219613483224,-0.001423554448459082,0.0022890205578913847,-0.014524710871076619,0.00030321716560012773,0.028967895064204188,-0.005072305280910348,0.021070362321290875,-0.06962882753988396,5.986152220409889e-05,0.010263047166833659,-0.019441453711202178,0.1695432418486686,-0.00751439947508985,2.9585542557417297e-05,0.002787442246058969,-0.003370853134184628,0.008941962684487307,-0.02570739558313806,0.00013176981686976227,0.007570578572528122,-0.005335858101492184,0.021060717464339462,-0.09431925644311885,0.0003993549580552134,0.0007942397230610646,0.03620932590637199,0.17329824791777002,-0.25304488978486356,0.00011967351961543442,0.0053659954793855765,0.0020817685958508347 +2020-11-12,-0.028314700974262207,0.1903951050989405,0.10003594401000603,0.00015726887660535624,0.023095163113763206,-0.012055395092209513,0.038708557763857156,-0.032482904206473213,7.472827966333692e-05,0.004603377191677455,0.006249807203700648,0.015938508598841872,-0.006137303444736891,0.00018139117067963518,0.01734264861130126,-0.008612371709812655,0.0073236358774782405,0.006658923218319045,0.00039688426260203676,0.0037364242429977863,0.007600859077141519,0.019273850419272077,-0.030750784614082264,0.00020634405872938354,0.008446406398705926,-0.03183313695933271,0.09406200580762607,0.07915635146982102,7.38944705955275e-05,0.001190143521222019,0.005807142149339913,0.022407362386787946,-0.04261119070867983,7.604340836379885e-05,0.027897838947451698,-0.0024629106119476787,0.020898267020674585,-0.013695431263935631,4.041447956271488e-05,0.019799058670105125,0.022627011263261523,0.019577751208723203,0.03556052770337453,0.0008912697658854705,0.0038239956605168003,-0.016418698961313094,0.0354603408874982,-0.008269028829665705,0.00016190405281678872,0.0015533274826081433,-0.0219103867075743,0.01781127330140447,0.05475141966741676,0.000601283703411952,0.0049868596415861485,-0.002491879130595871,0.02945048660373775,0.00046644161252882215,2.5214902163831764e-05,0.0021113833409563375,-0.017919331220159887,0.05159145915656184,0.022035104564424847,0.00010317988125440106,0.016790657351178878,-0.0064527275909523184,0.03741387210083358,-0.0037772130657780945,4.854812844860163e-05,0.0019688225231623943,-0.0395500226283418,0.03371233291096391,0.04132670560399327,0.002288131088904726,0.022492672413225785,-0.024025837853154437,0.1737415852011652,-0.040265903722439725,0.00011379596679275602,0.014884601479741369,0.0011055813802801333,0.0069081840977813155,-0.002294169182043466,0.0002478192539128128,0.027403892214256327,-0.0010948670712317696,0.006602595779730583,0.004660253818668255,4.670976048330064e-05,0.011598214718332552,0.05737694890984623,0.3310699234390235,0.07681227401142662,0.00028563046667170295,0.01611258745996222,-0.025184232377574285,0.27766934974361057,-0.03137259550900129,3.763838722805324e-05,0.006594353040891241,0.016950582310467654,0.18438198170561687,0.006525512041354088,3.071481140309672e-05,0.009122410499476518,-0.016261010528043386,0.04257378432612242,0.007167507618686263,0.00012303481797297313,0.025259382877846386,0.00938124550951037,0.06113639390515523,0.0029937009479597152,3.544484318262983e-05,0.026866303231978313,0.009856146758666431,0.027270428542401248,0.018565046241428226,8.012952736454977e-05,0.00423166641552321,0.0013728315180638767,0.005694062968303405,-0.003985287052917445,0.00011024110847658778,0.002393800961445607,-0.04275495494261591,0.0369111284943061,0.025708280752940665,0.0006620711919532089,0.011130782723602578,0.004202264643819484,0.016467902665499242,-0.041135394557510044,0.0001074066365774701,0.022721527191592903,0.043977231335016374,0.18557097644775278,0.0029718099331886355,0.00152102728891308,0.020975827767415967,0.031047904961685528,0.3015091175259297,-0.025052104953489415,2.6479760091955243e-05,0.021106185155415888,0.0165350510389731,0.0455636884794919,-0.013617598051063945,0.0011864732076930786,0.014212293193995819,0.009294404711386116,0.06797930215387447,0.0009308496114681641,9.104802310182243e-05,0.0026412388239972946,-0.012031916852646301,0.020311456909144817,-0.0180067489366305,0.00013981028870753954,0.001227994234905461,0.039817631032862226,0.05872979505667175,0.03220774483914922,0.0003891534154153731,0.02012551445687061,-0.0009453720946312068,0.00413527452736445,0.0011081100881120633,0.001771939027163325,0.005233860949108687,0.04414093165391644,0.18426022939276454,0.10520538113601859,7.685997842255221e-05,0.012719310556438827,-0.02282133978326748,0.03337621104912109,-0.04755695649551045,0.0016997353082731444,0.013575609922571463,-0.02357101948369323,0.06461514960651964,-0.005713112816512406,0.00014453068105273838,0.0018610733339154675,0.01382782029723223,0.03717473463113009,-0.042508300523985264,0.000150787807330284,0.030957876703827963,-0.03490578928121229,0.15263341202959785,-0.005919023977333362,5.5816393911958725e-05,0.03282030374755354,-0.012139958197834104,0.03870228063594598,5.657011963315025e-05,0.002973025892284003,0.018213895267889246,0.06539878870473545,0.28844508074709413,0.06309852657310708,0.00011278390788266834,0.007598650063544717,0.032906265131681864,0.18425084458491822,0.0467545511641096,0.00012951792848520588,0.015512159950217937,0.042485663756270206,0.23639124145149823,0.11813145592436436,8.500798559119852e-05,0.010716269014427696,0.027063699604808113,0.12406627944386671,-0.09295101122925661,5.482527271190943e-05,0.01936705476437707,-0.043662672363883735,0.0796840787450012,0.08501911756466783,0.00026715798006446526,0.01609917190883301,-0.0014267035348602664,0.005407199337833494,-3.112354529116782e-05,6.561086038584755e-05,0.007207133230217296,0.011898329220447028,0.11620379424231896,0.004489459136587004,2.6417818872364598e-05,0.00203841813254943,-0.03311611747699514,0.10750906758554515,0.10363853615457339,0.00010767212487704724,0.006311539592765911,-0.003577666089410227,0.01544510464485501,-0.07193330301283189,0.0003651210909469398,0.005991699759670083,0.007513556146189173,0.035802673617010505,-0.039730107307793805,0.0001201992817771189,0.0035066928744249284,0.0006181795867194833 +2020-11-13,0.033704357327870624,0.20577445348108006,0.04111949911362145,0.00017321327673087476,0.009554221448491601,-0.031502160753841074,0.13536628442251222,0.007224992626316349,5.5839350937529875e-05,0.0021083151194898194,0.0093255939200867,0.02280245588255767,-0.023778479800560928,0.00018918734421283513,0.004423210427340328,-0.01597151750708242,0.016341918304782592,0.012792391195268522,0.00032984583388123587,0.00015261626129309887,0.019814989366339193,0.04007424805198015,-0.00850407769249982,0.0002587177548961278,0.008016854853292,-0.0014903154806897142,0.003926674647242354,-0.10124419154586851,8.287051430673735e-05,0.0029758808753124347,0.044633249344351776,0.17105780980141463,-0.038177367646977774,7.656062201014135e-05,0.006053383567760872,0.004951971941033906,0.041364541488639044,-0.07930537816146076,4.1053347465374454e-05,0.0009695900277698072,-0.02046437742039198,0.01624900482192543,0.05709452233065256,0.0009712176267940204,0.002377803848344994,0.00986247311419077,0.021432438804790704,0.0006086661164952589,0.00016090744035098098,0.00240653461208278,0.018138673361211263,0.014283958484877223,0.03099142665819894,0.0006206993621984616,0.008346617596292063,0.019508691677180293,0.23862066575103366,0.031142507699777406,2.4363679701953914e-05,0.017901507872482056,-0.010258482363104369,0.03240464680901446,-0.027176232232315682,9.404308378523199e-05,0.009139307554114226,-0.02749068052355295,0.15731017074691292,0.13369800602207016,4.919154994588489e-05,0.001455631181588482,-0.0049979452937476306,0.003909015186241978,-0.015056486662624916,0.0024937166964443527,0.019323760641032237,-0.059636246180117,0.3360214994188917,0.061153076020834536,0.00014604790823858087,0.009713669680004733,-0.01866145269511119,0.1208284545265814,0.0038784863308856943,0.000239157750350916,0.01374953350342218,0.02026714555147513,0.11886776830497323,-0.08413986851296054,4.802743947526312e-05,0.014172952311009424,-0.03966895923252456,0.2535535358615031,0.04036417432779271,0.00025785047900399636,0.007316050017506387,0.0026142149031380215,0.03660824566422931,-0.0677082154056595,2.9634158557833483e-05,0.000827796121588148,0.004973586865520753,0.05200257289846261,-0.012800656352134234,3.195409963736273e-05,0.0034873113915041857,0.04320942081654681,0.12502207129318266,0.04547371565696743,0.00011133059011186056,0.013329548353873948,-0.007998755475374705,0.057478090798767,-0.031142493174291908,3.2144928377785335e-05,0.000432806624925147,-0.0036230117668818473,0.0104199401704265,-0.06872686222719271,7.708713436601766e-05,0.002489193957194765,0.004495594601811355,0.016660784501400787,-0.05541696163511328,0.00012337872832277042,0.007057920104370492,-0.07114057314187631,0.0621249164513829,0.03183265272311149,0.0006545263022700693,0.03572292589484134,0.053261167224378604,0.13788107639334324,0.11613081215474907,0.00016258932338431223,0.016712869662301864,0.054956609937500546,0.18159229446707487,0.039320579415848905,0.0019424135255524044,0.00588755889872535,-0.0030158174556686327,0.03333145271830525,-0.01813883048651788,2.3266604286363692e-05,0.026737948518265116,0.028035963337895136,0.0662694003058323,0.004513289249760485,0.0013831641137864925,0.007583950275074573,-0.0009147303507587888,0.007597058656785334,-0.017572442527715455,8.018132945864011e-05,0.0038988481341403784,-0.010316354652136567,0.015349244533649546,-0.006153531645042243,0.00015862975190515498,0.005428640215135693,-0.005507043047979273,0.00661662869386059,-0.07153534513283279,0.0004777334173655445,0.02076588415323509,-0.04718436507093918,0.17871328149515633,0.11374835229670213,0.0020464051837862304,0.007352325366120472,0.03886985696852816,0.14383585936107013,0.04332745531461722,8.670340244042433e-05,0.011211265349527252,-0.05415243503387576,0.07813348731760354,0.016359905462673612,0.0017228916781279829,0.00705420912566552,0.009725759478619816,0.02950275756020672,-0.001449627925199978,0.00013061015689774992,0.003272869358576031,-0.02750294112065857,0.057055533874951346,-0.10936877267219763,0.0001954077309101211,0.0017450622390273664,0.0006594365704716663,0.0025051057398550345,-0.09837790570039642,6.424818910677906e-05,0.020561137625470544,0.00676607388462504,0.02242547441630218,-0.009018926146753896,0.002859651794298552,0.010712534769367238,0.011993131456415578,0.05803569646607238,-0.007378912048489268,0.00010279641383330902,0.009714960359545645,0.01322833305119889,0.061736948267030696,0.0026375587796733276,0.00015538917005263324,0.005230692463804391,-0.011318243581447725,0.06125911769622441,0.004219890160451506,8.73890458348512e-05,0.007633699312879878,-0.004817266769111205,0.018289828138853173,-0.0017975841585933427,6.619702431148333e-05,0.005332414277706165,0.020818282773439875,0.04276102033311098,-0.026929622784513666,0.000237370223015277,0.001343463963003052,-0.010770793056946424,0.03998745502917589,-0.11840570852009775,6.697894350940641e-05,0.004803757876316928,-0.0029647345599917974,0.0283953422879801,0.0002622605057155961,2.6938288096744634e-05,0.0015887839492929063,-0.021139949404032448,0.07261000593538224,0.016920980721545978,0.00010176921763392367,0.003843676769807447,-0.00462962353183055,0.016534453851273296,-0.015455704559612973,0.0004413506732573779,0.00240453901276367,-0.04533599683516689,0.2607660144288372,0.12621183633176186,9.957813223549615e-05,0.0017778583213112007,-0.001754322527013711 +2020-11-16,-0.01130901446926513,0.07723461203244654,-0.02619613785788272,0.00015484578009131836,0.012944831449353236,-0.0012028570531005035,0.003312387477810987,-0.006323701042726549,8.713314934906387e-05,0.006489350952164617,0.011933635209166035,0.0474341042706836,-0.0021509965503720453,0.00011638024272837629,0.004278172354378803,-0.027210995285393436,0.030569160811532724,0.06585755611342736,0.00030041994813499533,0.005277904623922411,0.013483504541677863,0.03653459656006246,0.002042679593587513,0.00019310621084000663,0.011654632534509718,0.005692722062203333,0.017235030708180263,6.228796441764223e-05,7.211982411421957e-05,0.0015789877856113355,0.010409968887648823,0.043688630400945436,-0.04295860492264928,6.991507961748995e-05,0.017175192940486694,-0.023003276804345062,0.19567707915014415,0.036494455902549384,4.031330115117253e-05,0.005328317415520629,0.006044241127206,0.004474219992200891,-0.011457868720963823,0.0010417637329666778,0.010135950104254743,0.007882708591001396,0.019789467723020635,-0.015374487058403044,0.00013928464609597006,0.005155304693288905,-0.015399299284207557,0.011208241858029676,0.02664919151499109,0.0006715646444246976,0.007648654178197597,-0.018730104106014996,0.2206202885395453,-0.12926930357964347,2.5299825891875366e-05,0.009987626030369042,-0.004629608594144214,0.01203757251315333,-0.05120327168436331,0.00011425004955944995,0.02593428793258134,-0.006085179313881936,0.029684171622522907,-0.012445310082740052,5.7704577388551e-05,0.0018074184041325023,-0.040560283865135494,0.03501693981489535,0.027487515458217152,0.0022591536467873696,0.030319196331086592,0.04358857206520169,0.2526729559194461,0.018687421811600855,0.00014195999938099852,0.0193873726843835,-0.04468857601834215,0.2676644798109149,0.03125018279201349,0.0002585318213998239,0.014376789423940738,-0.01761626637245035,0.11298805261074424,0.010765521520505892,4.391797438470215e-05,0.014168086847219591,0.009199785324111863,0.0447259881963054,-0.002137745459863494,0.00033900379179278666,0.001295678641395328,0.025311066200920832,0.35588433613295156,-0.017917843866157246,2.9514253121125787e-05,0.03806491623830295,0.007299656533463107,0.06988781232518872,-0.040909391554423497,3.4896565733602915e-05,0.0013504252159219367,0.06608759864113507,0.16033300658640073,0.042279938772559325,0.00013277606416173816,0.012670868193953936,0.06468237230406731,0.537454861159286,0.08345039097239239,2.7799457481463356e-05,0.03330970034289497,-0.004023225140216885,0.010715260471973251,-0.019770805342895107,8.32432420437855e-05,0.0010137165240270318,0.012091604836492699,0.04370578611345025,0.024227073995836478,0.00012650089703758886,0.0005987132591547796,0.03553901220515057,0.03002700737670044,0.006165361482412899,0.0006765016548353037,0.02139570466214556,-0.014881769361538856,0.05633108286495005,-0.0019143490737656252,0.00011119684848624994,0.004465865692646034,-0.03104304679188235,0.09448262186189003,0.028264844344071595,0.002108781475590324,0.003091374980237457,-0.048479196224177276,0.4909738094743015,0.012184951992595387,2.5390969293454707e-05,0.032155695168318156,-0.039976946920080275,0.10368107030173848,0.02952758309251318,0.0012606119552800244,0.0025425085795761754,-0.02921737496573787,0.2525244914616669,0.05664398918018455,7.704834814452491e-05,0.022675907369191197,0.0362392288636511,0.05864253646313596,0.055628407647702854,0.00014585173088573365,0.01529922670773563,0.01949505944101897,0.023804353677206704,-0.06204470675573653,0.0004700803346318705,0.0013626852787603895,0.02560438328829889,0.10695799945874272,-0.009324601723601795,0.0018554591173618891,0.002254327208501397,0.006036409713520648,0.02132211944984023,-0.02364157799286665,9.083196461279079e-05,0.017665866938088,-0.07461747460765768,0.08431895454762407,0.08466741435633313,0.002199847245807926,0.003394701237880258,-0.017290511152604895,0.06441693089429552,0.011140592330230636,0.00010634665629796137,0.006403509413710303,0.0011277466811896058,0.0033392172420451003,-0.024215922443204013,0.00013690750614536704,0.001226717718021892,0.008718565342243599,0.033252117118618835,0.000277080934557337,6.399405796105325e-05,0.004585862749787012,-0.02558907418846441,0.06651127613431869,-0.016022667987774505,0.00364650951194945,0.0303015569597508,-0.02690297085713311,0.12221871687857049,0.03477223232249876,0.000109497219705953,0.0025541013421897197,-0.002774258244551625,0.015320967768851324,-0.09048267499239226,0.00013131715671823042,0.010331839011811245,0.004675905394249196,0.025049843369557567,-0.012898177496221271,8.82895696059453e-05,0.0020526355530534786,-0.04279771479471536,0.2075438042731188,0.04149718426814983,5.182725437737952e-05,0.03273415192158425,0.03289246674048393,0.06596463375403304,0.0041486229672505395,0.0002431166387975169,0.02935605881019754,0.009740583313455032,0.043410278899421076,-0.013125480658450216,5.579647529924181e-05,0.005015548100078194,-0.0031523086007155658,0.03690628252615619,-0.010331506067853173,2.203736730809067e-05,0.015006815262035643,-0.0023467104923939933,0.0074962514241716195,-0.008227868991875964,0.00010942696027424615,0.013224471645160031,-0.0031499444502345805,0.013219546043478142,-3.00948671558551e-05,0.00037559026234188495,0.00917854068124409,-0.022696257822208417,0.11154139429903855,0.02460216017168774,0.00011654401703495884,0.015945754151656527,-0.001960937565506068 +2020-11-17,-0.03805110816366554,0.2662684790854256,0.04269869715266607,0.00015112424199908197,0.008864516908094476,0.003440486275203988,0.010993099147259228,-0.006448812989118502,7.509485989637528e-05,0.0015960874274024383,0.03166785309316564,0.13152359179089193,0.023837466144285904,0.00011138127000203067,0.0019300075615283534,-0.01214091452520031,0.012490818384985315,-0.10870925083421068,0.00032804117898142246,0.009035234165607389,0.012504797856252301,0.028831624108551078,-0.05571530517082938,0.00022693701635374404,0.011028027954522592,0.00699066365600698,0.02203757475922008,0.0013309601917599237,6.926300800995761e-05,0.013631760325618697,-0.0207535056339567,0.07252167093985071,0.007566344142931826,8.396794422273259e-05,0.0018923100540250725,-0.012433637352578271,0.10674455870552561,-0.005753837956150215,3.9943955080645796e-05,0.013230527609365323,0.024239602700816897,0.021140880784963803,0.05759230130806799,0.0008841932734734117,0.007749440564473687,0.004971418456848843,0.012143469969229439,-0.013302608372533204,0.0001431526538312275,0.0026092733908014546,-0.010573600885890589,0.007467843361743188,-0.06708766452281859,0.0006920732633403975,0.0062110069616407955,-0.007616490096300515,0.08923453378048929,0.0014283356107859593,2.5435759628357127e-05,0.00047077607674940404,0.022774520457006432,0.07473647751889499,0.009086467607100157,9.052481672557143e-05,0.006793986538559468,-0.008571664928331658,0.04000023166325204,-0.03770552766356214,6.032043956114398e-05,0.00742232731622335,0.011453847343837472,0.011177811307596895,-0.03641219895088999,0.0019985618319939935,0.04816657905506941,0.005460802367456049,0.038654039076926945,-0.009570768910144556,0.00011625554745646211,0.021705600685225254,-0.0296557548664917,0.13939216971277243,-0.07131813183632532,0.0003294419022206302,0.04166114319466305,-0.0515066169346116,0.24259020113199128,0.1184853436430408,5.9806822172597307e-05,0.009014846615759178,0.010714174882619767,0.06538788549389499,-0.004233541575248459,0.00027005252662258816,0.026892494036375253,-0.0292523827637033,0.40289280220419194,0.004070654938718769,3.0130196920591197e-05,0.005443029856519649,0.010237839334624636,0.10697406028118485,-0.060548681241442165,3.1975072564327124e-05,0.00023709707609283702,-0.024935719594869853,0.06663148338430988,-0.0708989891572378,0.00012054943508789136,0.00809267974009263,0.017868962650051164,0.13298491582540342,0.004150351556660948,3.1037685946435735e-05,0.04871139856471293,0.013205839540626398,0.04021412321579404,0.03065222086983505,7.280560146776934e-05,0.007311255511193083,-0.004986395723956844,0.017275294246975607,-0.011364611796758468,0.00013198053475617746,0.005581155927582966,0.0037425551430501935,0.0033357543684414234,-0.0055343126025958166,0.0006412829685878655,0.023524268581646485,0.0019955744770539553,0.0069784459950318805,-0.06617505486182389,0.0001203636164047741,0.014214025448945006,-0.03354101296844511,0.11052753242815988,0.046234404223184714,0.0019477126050969154,0.002454631668761955,0.008618919452322594,0.08723598808157038,-0.019407110602886614,2.5406177786553156e-05,0.023509057459153028,0.002905052309244567,0.008385910032662335,-0.013213594119321537,0.0011325960112279051,0.04969484222081318,-0.0024679376956049225,0.016813363786286256,-0.055796591304754166,9.774740238731737e-05,0.004282981435673216,0.0354375529164097,0.050780946404424,0.12786692849176873,0.00016470558293448236,0.012729401350850697,-0.05817982497058713,0.0891911064124454,0.192919440598869,0.00037441632204964794,0.0005092708091465265,-0.05007686661129795,0.18211852077443302,0.07614925358493395,0.0021312449808083816,0.006423677669067015,-0.047016518989974325,0.16910410232393286,-0.030832300366343327,8.920448673937725e-05,0.0060585031469197245,0.010762339013480605,0.011782443719510403,0.005029827931015599,0.0022706410552654046,0.007241212123143977,0.03064935415270291,0.0973593651354963,0.013983733292486424,0.00012472675705935788,0.009996345637368526,0.03610835660858388,0.07868548258803947,0.05092954146463213,0.0001860259308113657,0.007512209997364059,-0.014324548704011422,0.05669206769866829,-0.032656944368694846,6.166980516372777e-05,0.004442902605717764,-0.0530230435932474,0.1763372368446031,0.015608805047612898,0.0028499594442091196,0.02817555009903156,0.02238655104958791,0.11970501802343254,0.0074843461585341236,9.302836841932484e-05,0.018686526021028885,-0.014117258365125916,0.06994280944405667,-0.008858785158999695,0.00014637539310411853,0.0035660449495039854,0.04227780325273288,0.2574553539149029,0.09424957273054113,7.767105147202153e-05,0.015564543146132545,0.010267342028053694,0.04549031479424021,-0.0020094231468060484,5.6726564485082096e-05,0.001395636511485579,-0.09700213327408956,0.22622054788781024,0.27347919110533686,0.00020906369871702055,0.006706319780729889,-0.002940211335660964,0.012304323344615505,-0.008158568854032178,5.9420347609725106e-05,0.006352834145408142,0.05051576724334878,0.7421089863211369,0.12793466762707648,1.756267029725403e-05,0.0057208563009773375,-0.004876771009648928,0.013255115771609441,-0.045435546142617654,0.00012860498495081624,0.007103282059008861,0.0022393476610322004,0.01151741701323769,0.0034595011199377223,0.0003064745405832517,0.002965505458727432,0.04512520592657027,0.22046620648531698,0.07180156172346167,0.00011723275292124425,0.007028821738334785,-0.0027226893918850313 +2020-11-18,-0.02391843655401469,0.1475003645216681,-0.012832042297403456,0.00017148505559976777,0.01812203718465919,-0.05680088476184605,0.17846103565155408,0.0247218556761185,7.63698993414161e-05,0.033308576326016345,0.0010736797143038484,0.0035822861039361497,-0.0034664033315950265,0.0001386473853349537,0.011077151133313713,0.016201392938452925,0.022092275102721128,0.03244383759665238,0.0002475026019466316,0.0064939914933662855,-0.04529429319795352,0.09104571735334281,0.10487546636659398,0.00026030453669961785,0.01508268561026681,-0.022435100242310938,0.0599616497651062,0.04422243087249769,8.16960729244746e-05,0.004643736599917008,0.014245757077332298,0.056254782577352655,-0.03076348440662477,7.430464079891725e-05,0.014085209365426548,-0.011462119141976293,0.10068353779137562,-0.007386105302902926,3.9039573604864755e-05,0.008954507575913125,-0.01746113536807786,0.01517379356624741,-0.015010191828256542,0.0008874074992574972,0.0023344480479618127,-4.234549882797001e-05,0.00010676750936409934,-0.17191121506552925,0.00013868517147291808,0.01708534481966294,-0.00106914433966215,0.0006664591011168267,-0.022275099136256075,0.0007841284227197624,0.006269054594494195,0.007622567995807549,0.10062236486247178,0.010223598475136429,2.2575094474879864e-05,0.006576445625927721,0.0146362457529402,0.0428685545734337,-0.02870628175249778,0.00010142426998137113,0.006549008902082159,-0.02327553354804197,0.13854048289087367,0.06704694367176901,4.7291682631173625e-05,0.0009384683419184625,-0.0041757017374004475,0.003317934704380068,-0.03320663162166571,0.002454621917779495,0.004561004011095916,0.06216404767800978,0.4599343781865281,0.06991433863267957,0.00011122323435314521,0.007269398062275451,0.008535938165407543,0.04706973764105105,0.00409603490655249,0.00028081332682952106,0.024813168066439104,-0.006527230572239203,0.03114220837837246,-0.02004362178663117,5.903920542661137e-05,0.0016434219671959567,-0.03782528560935129,0.20909301823490012,0.04433438303272321,0.0002981463464329392,0.005427510900061714,-0.0317811757708657,0.4121247029319462,-0.05194316542184628,3.200158908808937e-05,0.0076632186881492505,-0.0017674954428256175,0.023323148885032285,-0.013263065256662503,2.5319366026666715e-05,0.009357975312815653,-0.023169483034850318,0.06573752733288839,0.02411089992290247,0.00011353394670097048,0.019231774182449285,0.005272173471842317,0.02776843553667285,-0.018289150970072426,4.385616530632594e-05,0.04731262977291406,-0.00977757574748458,0.03642967499835186,0.012034098752687957,5.950497467244414e-05,0.007091281691474482,0.022359617801679957,0.0812418023792268,0.1065569117887591,0.00012584426296624585,0.0065521761056301945,0.06725728256196759,0.06500558398797478,0.0184010882542602,0.0005913767053754664,0.02724150311176507,-0.01582140880941028,0.06242066910289434,0.007086803135472869,0.00010668484776380643,0.008420201376905473,0.021299321268102078,0.06735874320911421,-0.03609621280394762,0.002029508915756268,0.003940402898218518,0.01773798670448951,0.15373018595923332,-0.030176940518151864,2.9670670988606856e-05,0.021194307454718314,-0.047966169484535796,0.1330306406571194,0.01953340098317551,0.0011788393514961621,0.011337377030087315,0.00024160020742836077,0.002000259944101571,-0.03912672932003119,8.043341495827059e-05,0.0008664019822132378,0.003569210794975687,0.0051018138944320755,-0.002546400190886407,0.00016511744959151232,0.0094186762385555,0.001373350346926714,0.0020631582159992283,0.004323085530081813,0.00038207860693390515,0.010242601603445818,-0.022775238314394656,0.10422966658883734,-0.05754027808249575,0.0016936431995050398,0.024301507350002766,-0.008885986954650737,0.032949065312298575,0.00023476984932610116,8.652725823123153e-05,0.020140782851879455,-0.008280394226674452,0.011080601584588658,-0.043971855647389195,0.0018576541669277163,0.012281212628356903,0.014402381436473455,0.05440404817588102,-0.011834265830377003,0.00010488638774351703,0.02175413816778931,-0.02627431801477796,0.07788874977132482,-0.0019098685548764524,0.00013674677581031688,0.020759004283415067,-0.007337341091855891,0.03305096548066848,-0.13858523371262754,5.418367817582149e-05,0.0004858820894573833,0.009698198642650941,0.029656455993647197,0.016835818637454376,0.0030994874520965414,0.027942891658909463,0.021932075731050358,0.10318987344511155,-0.013355430879895396,0.00010572634718295639,0.00576726581965329,-0.007825701972389123,0.042976335844042465,0.002004156939980593,0.00013205495577640167,0.022030606033136068,-0.015580763779593505,0.09155601960768975,0.01451046028794044,8.049159595865624e-05,0.012154966238069229,0.01437290397560546,0.06499780081344436,-0.007105752090098034,5.55767640403014e-05,0.005851004736015202,-0.03194335339609878,0.057004457172675514,0.025816435436633544,0.0002732128274787437,0.017649410047610593,0.0059435962094149045,0.019103769580288702,-0.018618005392290537,7.73650127934658e-05,0.022708506295597754,0.014263036592749126,0.14987966036377187,0.004573130887766178,2.4552774864425822e-05,0.0066459403582748945,0.008107258279332497,0.029980316697801733,-0.05126930570322914,9.452501549527021e-05,0.0026314045185357876,0.033001045891058234,0.10697166788312124,0.14651782923208492,0.0004862805594438997,0.0027610166860743248,0.01898744759207041,0.10011545761803328,0.007775187858308652,0.00010862686536709893,0.0034888995366095673,-0.0016732897148346222 +2020-11-19,-0.023362477693903455,0.15169609227086636,0.04273054380812162,0.00016286624752557177,0.005510450469055382,-0.00113387726167823,0.003874851202967516,-0.00737802119567633,7.021364883271924e-05,0.003031620092333924,-0.024662747710070917,0.07818212036953669,0.021885923054851333,0.00014592551008795802,0.013489566608824128,-0.007235837412919837,0.007618455760522965,-0.001929305947756432,0.0003205455160564378,0.0052077533218156166,0.032689416639199456,0.06936791787999197,-0.02664624946716388,0.00024657343403609606,0.000836986594436548,-0.005452051319647473,0.013571571500649703,-0.06472219253713717,8.77155388982364e-05,0.01940002389670541,0.035797448373716775,0.1334665912426452,0.007193514950756281,7.869902609439176e-05,0.019838565296767766,0.013244102683662735,0.11610794202002321,-0.04061465556695664,3.911643132849389e-05,0.003490454631675589,-0.021473453279830187,0.016734119525799698,0.034591189230602976,0.0009895638272624388,0.009150555456071727,0.015225422103227087,0.03258616995244048,0.0007667369147941997,0.000163379630614037,0.00047943721764508694,-0.024759213928181065,0.015503554174407198,0.08334142021125346,0.0007806025027766617,0.001354507412200405,0.010342032043330568,0.14253560771084903,0.016900238120836707,2.1622469677627574e-05,0.0009617777884354833,-0.02204144354930072,0.06617121086705458,-0.019431410483848915,9.895141070729254e-05,0.005999265074353493,0.005550339382668572,0.03168336206591047,0.010404014658156465,4.9311713912108354e-05,0.005247238045140471,0.019632738927329176,0.01603835547413657,-0.01865858772748877,0.002387503566826691,0.019547566075110868,0.023736281794497598,0.16365219931755073,0.003472956607676184,0.00011935564137028107,0.0001390569242965601,-0.008622885422432107,0.051528451156206245,-0.09502334622236357,0.00025912765132122504,0.01788551801323759,0.00897819110639711,0.04507685871539461,-0.15504822169257237,5.610430124245206e-05,0.027871399340135775,-0.008471340600257473,0.04397631456544326,-0.029187861099884468,0.0003174827404232848,0.009966674666392557,-0.010914060272594537,0.11910745257889625,-0.03240848043736552,3.802573723941784e-05,0.025373196597952077,-0.0030181754285103805,0.028235436771098205,0.002908542136232152,3.571343947098316e-05,0.003151068697842322,-0.03074570078734201,0.08758667163152944,-0.04819431158455807,0.00011307565942126972,0.014795213316700744,0.05670285727682761,0.3509588530861675,0.049137304342774565,3.7319955535269e-05,0.009145529486910635,-0.014144811813761943,0.03915951852197274,-0.013501760796373705,8.008242446769877e-05,0.01224798479507698,-0.002029988147084206,0.006641544906748831,-0.0007692019519970577,0.00013975681163883022,0.003296198113570188,-0.007681193771390575,0.00783315101868699,-0.004061578997318796,0.0005604898894858804,0.041772470581538414,0.012185840080812485,0.04576107413735956,-0.023992977404376132,0.00011208442637104198,0.02337094731782163,-0.0017566464776664346,0.005831566238461478,0.0003307704232942044,0.0019333849381131636,0.011180830405075231,0.0727479377926122,0.6946722842409864,0.1284651472522757,2.6929166413830604e-05,0.0035219212552803835,0.012000065131620658,0.04043542076808021,-0.07082947295202982,0.0009702706764089125,0.0020815963822024587,-0.04950814032069784,0.3922789735639176,0.19274687628417259,8.404409909828642e-05,0.02385223019281324,0.0015014003738208792,0.00274573247724697,-0.005445343871228026,0.0001290576299219862,0.013942979431770794,0.005118824405827869,0.008800123571987171,-0.014136423679498201,0.00033387613327494955,0.007573257842697866,0.0025404247676274437,0.010657764688718123,-0.010037525839631956,0.0018475259710568422,0.0025134638011168543,-0.03521163624621672,0.14862849705562847,0.029966703673483593,7.601065779871953e-05,9.719520277303904e-05,0.009020041276325922,0.012389974210730362,0.0031972182176492657,0.0018097363694665716,0.020053485565431347,-0.015470471862249827,0.04818187953832883,0.009649561710793522,0.0001272142785307226,0.020500051942852208,0.023437751065587223,0.05303626984524453,-0.11829834089361958,0.00017914444329334325,0.002623665820215314,0.011951837356356123,0.052518477561850366,0.0137967908582715,5.554391294235215e-05,0.007044693770080867,0.04939558115288936,0.1519929052677296,0.066364004713191,0.0030802278337867302,0.010891030393576072,-0.009987425255453021,0.055514562963568534,-0.019293823591949904,8.949261276740029e-05,0.005489849287961659,0.004439811631373129,0.02324775114598605,-0.016386427000388303,0.00013849828030426214,0.01502446370281236,-0.012415556241132346,0.0734400496878217,0.008897680976750325,7.996168150513552e-05,0.013243006713270387,-0.001968250899747156,0.008460896789051991,-0.0010893661060885757,5.846708695555419e-05,0.008339518585290615,0.011293622081368443,0.024520840241899083,-0.022801786138182317,0.00022455736165438516,0.01999292808584511,-0.00336903051169483,0.0148111466759545,-0.007581710233829992,5.656276578347589e-05,0.006405645808564645,0.05152518946278824,0.4540653962864417,0.04859438473946217,2.927739800617816e-05,0.0015622689819714335,0.014567379560253089,0.04595959197471292,0.03164552630189083,0.00011079348831309488,0.013695634029298942,0.00455145694485433,0.018882382436384834,-0.020082048580864816,0.00037994577570104595,0.003913233509709554,0.032078480915023654,0.17346031766255612,-0.009621695435144278,0.00010592182442690457,0.014463548327908507,0.004279797474093764 +2020-11-20,0.001500080651174812,0.0095938765886098,-0.0056852212348861685,0.00016535109133803265,0.021725248696186705,0.025049961527957177,0.10158723587965529,0.04246135843407855,5.916684969981747e-05,0.006572622674653002,-0.004841760863804937,0.0162653532747792,-0.07410316589271669,0.00013770098276969143,0.020348478840694045,-0.005852713730680545,0.00550617413699348,0.001105385362350053,0.0003587361942142255,0.006002547543453651,-0.03800936952395077,0.08882270710345774,0.026937450871814414,0.00022390533046759124,0.006034258731226174,-0.003452299329971981,0.009519568815928895,-0.01563707804600081,7.918408562940245e-05,0.0032542714414804776,-8.358494037053496e-05,0.0002786022639077985,-0.10413821943961592,8.803051670746046e-05,0.03150114458975218,0.006058006186975569,0.05217565972753358,-0.05267595111747178,3.9816252133369656e-05,0.01231842991390399,-0.02554841436007351,0.022413396274150763,-0.029830454409488644,0.0008790246789048076,0.001264206682691144,0.019672368587155886,0.04512864321605031,0.0010913578517435457,0.00015242853040511796,0.008986385684876455,-0.016449582258424494,0.012312142479972874,0.02832879760864895,0.0006530487447338439,0.007573718878467497,0.0012661358424312593,0.0200225536021011,-0.011307610711266847,1.8844456991284574e-05,0.011112276648639528,0.027561279802880534,0.07329328132090136,0.007694811074272014,0.00011170850831881884,0.01607431337599931,0.008331832347580328,0.0469503024994958,0.014949122143323952,4.99532726659652e-05,0.0007211112774289577,0.017752816453010477,0.014988240274450886,-0.037135094172920734,0.002310146856137075,0.012797296638539554,-0.01717994493318986,0.1044935556565285,0.005108156365264108,0.00013529581647037518,0.010265562233552324,0.0039532866081106715,0.022709508046461477,0.0001526019332310037,0.0002695620850374501,0.0007592500236768688,-0.0195682178461683,0.09472605349448794,-0.0006009365293661552,5.8189253613591494e-05,0.009520213483839867,-0.011684120311613908,0.05942482907456307,0.006711765123243799,0.00032405213452361807,0.02061436726369181,-0.03484721420779459,0.4193741726261251,-0.01917910591523998,3.448233093500384e-05,0.012598764451031048,0.024883540342674263,0.2497059266336453,0.04236258000060895,3.3293927475125056e-05,0.004101800623369742,-0.008388706553613852,0.02942112506060096,-0.03925013798463862,9.184562678719295e-05,0.006014226978072459,0.07083019338124721,0.4786190389850627,-0.02344858032869858,3.418383890739658e-05,0.005256218237840605,0.024482936152822946,0.07373090679269544,0.046623853212516095,7.361923616722933e-05,0.0012109278051164376,0.004334192248059915,0.015373501464402273,-0.003879333625989629,0.00012890921777226796,0.006255540366962066,0.05094568459069568,0.04268352146733469,0.004572181937976313,0.0006822172895253974,0.03492496610564902,-0.019571501704582456,0.07157045085858531,0.012304784578529104,0.00011510028685571406,0.0033941331030048626,-0.04463523478165091,0.14689731659724592,0.0006679701427531573,0.0019502178883547302,0.028572356532821683,0.005368028730070278,0.04627884100347411,-0.0673712393609449,2.9827341926068636e-05,0.010520109321686417,-0.0500731171098646,0.14762519567033452,0.0038189969777548205,0.0011089587988189463,0.019531828533236862,0.03633348529462107,0.2651603821908327,0.06457977797671792,9.12481496587436e-05,0.006537532455901374,0.009236827062390618,0.011776938930402167,0.00801859939314849,0.00018511251265983513,0.00022213489055860226,0.0074944409756220525,0.012115513399775141,-0.02049390847486776,0.00035505966182523455,0.0004350981299514013,-0.0016507319390141222,0.005909677232581783,-0.006854473558697527,0.0021650260870159943,0.013244426941400359,0.031858675089776405,0.12717019467830656,0.041082643282540784,8.037717629642464e-05,0.006113660076417388,-0.02095606902550481,0.030025606787387613,-0.009682689208597026,0.0017349829819421814,0.025000344914056692,-0.021829472531501713,0.07836753433560323,0.017471368259099566,0.0001103628978873064,0.006694753893663676,-0.007424157192649529,0.019378238696974717,-0.0012773221604833796,0.0001553077877862336,0.008602283116167337,0.009169785087322059,0.033418709795184874,0.00926456110952188,6.697047870428406e-05,0.009753416535179745,-0.014626937735840999,0.057937864621111945,0.00016305072200021133,0.00239281424774445,0.003771203131596717,0.01925458403632884,0.08506177802474787,0.003459384812729385,0.00011260048344090542,0.00542903269360123,0.021676386123185277,0.12671227942705293,0.02819148246765918,0.0001240591951848961,0.008871740148096304,-0.007497630758667361,0.041822904330426285,0.0028316238146002238,8.479271843142844e-05,0.007898194293344546,-0.03652385086969471,0.18316948496791305,0.036097075960417446,5.011535735037212e-05,0.006095495639035256,-0.010632964180754993,0.02180734350158302,0.004891306773517409,0.00023772835240634148,0.03953958827203229,0.008803396719255265,0.03419135091240809,0.003545351180172853,6.402482338287498e-05,0.0026850849930754447,-0.01321756059278602,0.12362984200895302,-0.01917608647211045,2.758412938443625e-05,0.0005326171092041722,-0.0011146532686103468,0.0033947380206522174,-0.02250723372462062,0.00011477372949500327,0.0010903460573680954,0.01385328550269535,0.05478045032642268,0.008139107886870214,0.0003986163953403719,0.000876071626553945,-0.004868405380910497,0.02348763168147998,-0.04825320221376216,0.0001187187463285948,0.01222447129867719,-0.0005433545632419145 +2020-11-23,-0.006052702409519342,0.04451165316292713,-0.026521129413540998,0.00014380109110542853,0.0022366887666268546,0.013041803207853832,0.04106671244635088,-0.10619826728609472,7.620057211542556e-05,0.007320164532957382,0.021627202093800268,0.06720610847216293,0.009736842385963276,0.00014886369494733148,0.014472929123759403,-0.006196147368890713,0.00612250995453984,-0.0015801947682161457,0.0003415545654970444,0.003201517963193734,-0.0035309200834836366,0.006539027029147091,-0.07051985638707567,0.0002825351774052298,0.01871524787023542,-0.006010198388283794,0.014782444092010256,-0.15792695849261335,8.877471819656688e-05,0.00031916116768242815,-0.06615000208926804,0.23028147946529912,0.14697375187215697,8.42870213632721e-05,0.01979363252907335,-0.00785337840002999,0.07491544016656768,-0.006537283360974231,3.5948750721598075e-05,0.005812587759057999,0.010355869407532248,0.009236472574620097,0.005589096220664585,0.0008646198596506893,0.023139285021097158,-0.03836588546369952,0.08723188466075618,0.07853187172586987,0.00015379133140556889,0.009121817597041922,-0.02858871603438072,0.022085105699886205,0.04620867770936075,0.0006327316035195746,0.0020346409012431442,-0.001660245852376463,0.021652947795416027,-0.1427873266169487,2.2849576994766945e-05,0.011627539510566543,-0.0052774675640257385,0.014520011508813904,0.002743368582543009,0.00010797162807433168,0.01792803554921604,0.007697373160339384,0.04107991423644493,0.0007637522262287906,5.2744214786981524e-05,0.003434708371685706,-0.01355839257676283,0.012633776229491994,-0.007667285320378162,0.002093138648502839,0.011178778755840104,-0.06879964100445418,0.44050367702320586,0.06496008751765393,0.00012852533422723635,0.005368485596946915,-0.03196958114572228,0.2089332741913052,-0.021468095103252698,0.00023693955480812005,0.02802896362947524,-0.050051155169253576,0.32641593184724566,0.10861562042704151,4.319203968679161e-05,0.0016156742700572824,-0.019023613665566694,0.1215114646095737,0.010875531579532688,0.0002580254650875873,8.696119251218153e-05,-0.0043227972176750964,0.053604532346376854,-0.0029241645194927742,3.346521218795045e-05,0.01694448071531609,0.0014563092805514452,0.01789196447294298,-0.01913654900325016,2.7194263356391884e-05,0.004341896376418877,0.04791056615899464,0.14460930780958148,0.06477463220707992,0.0001067229475617319,9.997296753027599e-05,0.03395563920052042,0.25549564827480076,0.016420481068026373,3.0698756138541256e-05,0.018480870732246503,-0.009545110827800107,0.026429586003366815,-0.07786747771574323,8.0069662384072e-05,0.005786009806957459,-0.01638492734827067,0.06214128084173466,0.1363340461828115,0.00012056268601377658,0.005538113795296762,0.04106540258874282,0.03753757737754563,-0.031701737588256576,0.0006252956476283766,0.04260808097590737,0.007126287010793244,0.024183313149204702,-0.01365394310985029,0.00012403193498400093,0.005445968999691271,-0.003762124832449927,0.015809906810556832,-0.009053744819186915,0.001527295480389942,0.015080715193385602,0.027308522325684682,0.2171644839619981,0.013192587441501046,3.2336394603918304e-05,0.03455377384236089,-0.03677620657317887,0.12014593599077185,0.027238743091078686,0.00100075810217453,0.004375780004756316,0.0351203656552681,0.28790581245653923,0.05637912721459533,8.123332676025157e-05,0.004225984134252967,0.029588050159682328,0.047100902275180184,0.06267512202955905,0.0001482629052246474,0.0039163248301802185,-0.03946510962119569,0.054486871782493264,0.08767540536924039,0.00041574338953507753,0.021431369027165716,0.014111999274338266,0.06520725166187276,-0.04100183314788223,0.0016774245333741433,0.005901341471003742,0.031360462910069054,0.12669678008798124,0.04044138816265334,7.941586257348026e-05,0.007856141345061662,-0.02754459295185139,0.03810732794411711,-0.01624684115852432,0.0017968219868252945,0.00010316433508434177,-0.026259973448788367,0.09071849997149921,-0.06257812119066862,0.00011468707025614252,0.002599551389005544,0.016392319281757814,0.05104394236406282,-0.015092761530846188,0.00013018368810128255,0.019810518358708045,0.021482456478656202,0.08844111485717432,0.025645876159216083,5.928484068815626e-05,0.018862746807235792,-0.030536087489882634,0.11993149593645254,-0.0004602069130988698,0.0024132271262403415,0.02490766101153158,-0.022857635427344057,0.10320324729032238,-0.034869413768967926,0.00011017384585691486,0.013280677621418028,-0.015185763326787107,0.07699933981357064,0.011218603167380931,0.0001430244906653333,0.010061074884990022,-0.010703760756002007,0.05825920814464578,-0.04637014689905944,8.690014772962303e-05,0.001839896169514694,0.005481857995150449,0.026895687946166487,-0.018141616432227014,5.1226244588365885e-05,0.004415766142610142,0.014243552723996791,0.028119543762021554,-0.01512280622179789,0.0002469672987420708,0.001276814318114561,0.02939958881387864,0.12578221689158697,0.003203377106596884,5.812144290390007e-05,0.000280723923149373,-0.01810350005099423,0.21212086635563746,0.003097988726606777,2.2019651480045614e-05,0.021021950935382054,-0.011107552162536406,0.02809956635063241,-0.023851543223563695,0.00013817443846476465,0.013447652747167079,0.0003384912631677652,0.001643893593645783,-0.004159643135198361,0.00032456503461239744,0.00630860620344769,0.03859164797065441,0.21001822368167858,-0.06180563602361904,0.00010524661570228,0.011359624023741945,-0.004058202645278735 +2020-11-24,-0.007511753204981114,0.05738498426849605,0.00014583134387794486,0.0001384298116389776,0.006724594216612758,0.06428900354092475,0.22915935960102254,0.1831782116564208,6.731465449732976e-05,0.014651559692372716,-0.05324352080146759,0.1823760271607783,0.10310911588782398,0.00013505050723066215,0.022998098870508587,0.022211318735965876,0.02262395381704377,-0.14360916894481648,0.0003313398681433953,0.0030597323818672877,0.015267538434247106,0.035975872423818715,0.013556526564298788,0.0002220523940025461,0.009691594249194524,0.01054493861266665,0.026672923915112067,0.020219200014058386,8.632173674463899e-05,0.0013247758722947321,-0.003751053332371487,0.014712896859656231,-0.0592492252817719,7.480745908040038e-05,0.011404778710893558,-0.008796056540162819,0.06725332519632808,0.00021757374702248097,4.4851075832183734e-05,0.01290195211704442,-0.012736292702223373,0.010134254351877573,0.009674927806821883,0.0009691611974727518,0.012504744728873786,-0.000809516062867855,0.0018071307853376132,-0.05103400724926445,0.00015663823205840465,0.0030945604735908177,0.011848638833353044,0.009385225395143759,0.006340893541808809,0.0006170894375024229,0.005324681335584025,0.020382881409769835,0.2818468631753724,0.08285624950325314,2.1551383814306913e-05,0.0004426488830610697,-0.0048182266699289215,0.014467890276571228,-0.042487529570780086,9.893115026712683e-05,0.020215124488330863,0.02192252994719606,0.11664396365581974,0.06974109883373608,5.2904208518918075e-05,0.0008860810981808684,0.02434132021821301,0.017659225152350456,0.009102363797899034,0.002688409729556428,0.007363713183760754,0.012000490965884942,0.08217006676105068,-0.051454089167674334,0.00012018146183435242,0.023140707693210742,0.015332917057977359,0.09960765001398098,-0.055232125869849005,0.0002383638130785463,0.010585338465263841,-0.02943053891104009,0.1995296300895859,-0.004066457950358492,4.154815788051498e-05,0.014148547407093641,0.0034497876074477823,0.020828539101522447,-0.1540115604860852,0.00027297341645424075,0.0060787406322644144,-0.08830836361887151,1.1392581304020548,0.15361319624996495,3.2166953544569784e-05,0.0028272522944859315,0.00703899032406098,0.06744270687292023,-0.009179937762495248,3.487041247013426e-05,0.004807847563649298,-0.018803582720074336,0.059276854996772016,-0.007400934263734648,0.0001021828960464212,0.002888303649388346,-0.017002475173148714,0.11375759124177376,-0.0038000266351334976,3.452424086873069e-05,0.04019673303153101,-0.017445174138213424,0.04834856116509638,0.039258427005698024,7.999615939590777e-05,0.008276461208064887,0.012030558702408182,0.045493718183910854,0.006032567233231186,0.00012091577371227279,0.0031206086467527525,-0.0913897042263795,0.10249156083330696,0.1216820581218657,0.0005096649010195964,0.002826503364438306,-0.01897332333991426,0.07228837512896871,0.013550866038903594,0.00011047422258190038,0.006576611492137573,0.039371113488915845,0.12416938405728603,0.01617382731172385,0.002035084026567467,0.0008897043408015051,0.002636399658302073,0.030169114439854143,-0.10943864403225236,2.247143876106207e-05,0.013165810150903299,0.027749458807684108,0.06475234879885908,-0.08513624452983073,0.001401103638561161,0.0038846037384882345,-0.0031354153108800117,0.02468618151442162,-0.028314150388522526,8.457982846388916e-05,0.007579703597009637,-0.05773281185648883,0.0868645326468003,0.20141399201304325,0.0001568648393557106,0.013185285626637868,0.003814491695503177,0.0051027088899829294,-0.053341814424421416,0.00042908150480916506,0.02775090964987938,-0.010148588454303513,0.041680950852404385,0.000592133861691818,0.0018872018982031742,0.011592791253756904,-0.0015549237395005365,0.005512120032301664,-0.034577717471185265,9.050671419101387e-05,0.01910725099025239,-0.006248572234863522,0.007906490241105017,-0.026369622101459468,0.0019646004867220645,0.010458916931649128,-0.06327954846187589,0.199568221122467,0.0753805131186757,0.0001256284558886405,0.02298788918502849,0.024094278883724077,0.07048244896412113,0.0324516760464681,0.00013857769183681535,0.008031686099086754,-0.01528213669012724,0.07137954147130435,0.0037189693157082433,5.225456672834589e-05,0.006131203036584541,0.0333908900855065,0.08863376476439769,0.03552516635371982,0.003570646507678866,0.000125151605271619,-0.026346757917049563,0.13783959473492485,0.02693351946789175,9.508100513416231e-05,0.011269435121391148,0.006760800865695324,0.0329466269247466,-0.313716504378057,0.0001488154323932056,0.008400000748055634,0.013521913614968054,0.07989045636492773,-0.004858661752293468,8.005564368761258e-05,0.0037668913678094405,0.002213726503379026,0.012218646212344596,-0.059011593953515115,4.553530704633723e-05,0.001971723001152777,-0.029980145601228084,0.04425244650208696,-0.1029568397109388,0.0003303131366543198,0.0174312589691755,0.01902298340522274,0.07659427806592455,0.020478460669265196,6.17584912653352e-05,0.0007775382718903253,-0.004951303634456421,0.05479194388163249,-0.053971927757173105,2.3314931131519057e-05,0.010791582385101724,0.011234540686859272,0.0369516092219631,0.017713510845011018,0.0001062749549483099,0.015257565410506475,0.011248706364296689,0.03963303170877829,0.008421778945330784,0.00044737659143179,0.009435437888077908,-0.04159221819636976,0.21417924001156669,0.13096216693734203,0.00011122604777019733,0.003679018478632015,-0.00467830975509236 +2020-11-25,0.014647649730418034,0.10668063096825929,0.019523235472760313,0.00014520078167577725,0.003121950637166057,0.03608937175072933,0.11513616769332541,0.03913613530785286,7.521043119489701e-05,0.01152440197930977,-0.05307329127821384,0.18966117642818026,-0.12803737813602498,0.00012944783316824865,0.02502022505392215,-0.016126937850037264,0.015860471703650552,0.02335277879238917,0.00034316553900689796,0.006616540735760987,0.008931961723415009,0.02460484550093093,-0.015102047587492194,0.0001899433018617041,0.007148112706717427,-0.0029655340261975373,0.007112082257624397,-0.029658604971663154,9.104432496953567e-05,0.0024327555569154274,0.0030325034461689978,0.010072938253897348,-0.002176654366965479,8.833544201230432e-05,0.008865996123299368,-0.04676045782207469,0.40965849279155175,0.0990355423990041,3.9143117029612815e-05,0.010138590770980246,0.007851160227309254,0.006803184850324287,0.011145173060123265,0.0008899515336412748,0.004814149321463752,-0.011151249809201414,0.030367392808176095,0.0211945162598519,0.00012840381409329364,0.01031690457693425,9.576830805902777e-05,6.577540908217066e-05,-0.01887234763760098,0.0007116764833662108,0.0031019090555105,0.0031207958940340282,0.044616612370802326,-0.008526764903804702,2.0844503884828806e-05,0.00046776174811621776,0.0249271861470111,0.07322011541268941,-0.008057054283804327,0.00010113323177557482,0.00290873299879849,-0.01506725903988153,0.08729586921401758,-0.007813447902607554,4.858501929161848e-05,0.0014938455094861954,-0.028735061085618258,0.022495000830563074,0.01437183206346862,0.0024914322610442284,0.009769064636376144,0.08186233617790699,0.4811440979086682,0.11313844388941173,0.00014001065242233204,0.024359860748064944,0.028422251492117013,0.1731454702318038,0.042353783867601164,0.0002541883111770071,0.025236749703650887,-0.04113225303528725,0.18495054552219817,0.04297203905650755,6.264520549249122e-05,0.008980780629609286,0.010005654765121686,0.05304656009751933,-0.02138810221261193,0.0003108673384075114,0.018328645548282178,0.060062331895413316,0.9626106920796555,-0.0249783070482415,2.5892962331079206e-05,0.01138913478087171,0.02815008781114554,0.3222621844548223,-0.003326527976712768,2.91844905350487e-05,3.3198180592740106e-05,0.005664423117895975,0.016523746508590946,-0.010744948341740211,0.00011042563836235222,0.025141961021665056,0.016553334842782066,0.10409323885357633,0.0032784826644967763,3.6732911663117624e-05,0.002953710491667213,0.0063615151712546995,0.018467046555588274,0.00896139452749178,7.637311519970781e-05,0.0015039254897897157,0.0035602741098325476,0.0144888279888023,-0.020818051803763938,0.00011235664827017136,0.008012332474518068,0.010553289113958062,0.008992650160289347,-0.012055008216930115,0.0006707731945653457,0.03588936211934028,0.0020333853417815574,0.006763731258024768,-0.0374793813733442,0.0001265375303556531,0.03298579234679594,-0.08770638916611151,0.29395432534724514,0.17746448392160746,0.0019150078184827588,0.0008203267438644196,0.005960194437399803,0.054462247724088725,-0.030298137837995724,2.8141488294197706e-05,0.009578682358315773,-0.007838516314642418,0.02397305354754105,-0.008164374419497536,0.0010690100322540959,0.002803147554833048,0.008027533605348346,0.06022866145620733,-0.013846285954405783,8.87573984428176e-05,0.01146060344091662,-0.01150407673782671,0.019557484122435246,-0.031307830798787004,0.00013883027053064674,0.002141415102624363,-0.031869401532788534,0.052906255667994555,0.016225272211234095,0.00034575685207014997,0.03892959940240462,0.01534973209614343,0.05523521801725686,-0.05343177455258472,0.0021539472766127265,0.00021562451983258516,0.017375921779569876,0.07911906274006673,-0.028879217881886878,7.04623444985098e-05,0.014516232788201786,0.047176398612719536,0.059598930286848956,0.06731807758049171,0.0019677209579327974,0.002764910141225799,0.014658812498145176,0.054538470061427986,0.002166043103164528,0.00010649074750483289,0.030269904980501847,-0.006506025421838181,0.016966027391254322,-0.0034345352109941096,0.00015545187625033488,0.012073490273637088,-0.002299303369423285,0.008884879786041477,-0.0217651756972673,6.316240305491887e-05,0.01790665067494591,-0.001451013243588339,0.004951120298210702,0.000684030553645981,0.0027777039454179014,0.026357169239208514,0.042644801169282015,0.2580336251279887,0.023565658130878287,8.221108135889116e-05,0.0019124264561725677,-0.01632916391545432,0.1059796781952621,0.042566231109615854,0.00011173831977791332,0.0037482934046722404,-0.014965939321065352,0.08561635927670926,0.003775900315888188,8.267913468932888e-05,0.0037354648978118396,0.07226688092885641,0.33217050192332953,0.1382378003042863,5.467963954008375e-05,0.010919300354159724,-0.0029993049473444923,0.005427514592804354,-0.02101800410788014,0.00026943190275825405,0.012427819695261076,-0.020036363227695614,0.08663014931801051,-0.0011200951214964136,5.7512759930784025e-05,0.023183858655291007,0.002657029317328012,0.035703029212630126,-0.01903684385782559,1.9200943363564283e-05,0.00829384619822601,-0.022310595477923564,0.06412095701808301,-0.05920931321845956,0.00012162423756720315,0.00659749268354266,-0.012919066396790387,0.05659184795300869,0.02076613357568425,0.0003598365096612011,0.009582353759567109,-0.03219695567515498,0.1438349713770768,0.038414854055073104,0.0001282100632506609,0.01591024892336885,0.0031880040754265647 +2020-11-26,0.008165087782765939,0.05978394346425654,-0.027238624701764688,0.00014443181989624051,0.004181351612941933,0.04178944444864191,0.14388784516428196,0.04352587627937868,6.968720006112495e-05,0.01209620249058466,0.026475385249232864,0.0931932074993908,0.03001498466552611,0.00013141811494996752,0.0035825476038421253,0.0051396945248483065,0.004830407502155099,0.01151829406385689,0.00035910495182632827,0.004249019865331594,-0.03095228922905017,0.0667053555326222,0.03339654993791919,0.0002427894682750288,0.012571731185705967,0.0015696585509331845,0.0033979609652755043,-0.0007471793458062794,0.00010086338626861967,0.003656804308923872,-0.0015213661976445129,0.005246766279781423,-0.006251176035440565,8.508086549388753e-05,0.007920656594775354,0.03811820469491718,0.3445379447796897,0.09235660647917432,3.7939708835909115e-05,0.00464189545456389,-0.0040238768779899,0.002955754593923128,-0.015055996345881405,0.0010498351201822939,0.002648241371841469,0.005835749562642206,0.012634511019340449,-0.029336605516680526,0.00016151025173050942,0.012063083119973655,0.0005449079682421503,0.00035830631855731813,-0.0004148601849330617,0.0007433494939793707,0.01190250161124269,-0.012100917551249786,0.18325745210734856,-0.0644682444507686,1.9677931626086373e-05,0.0005020384951870301,0.02894677643045282,0.06702011562482603,-0.0016257372793912817,0.00012830573591890608,0.011897109142913644,-0.014744729393498057,0.07716341085342701,0.009875257948246235,5.3788224428526626e-05,0.00981666686972792,0.06346172016281156,0.057310757945457924,0.15253023277437094,0.0021597260176771786,0.004896255283519202,0.033232461297577155,0.21124581502542006,-0.03192505462374052,0.0001294572870280812,0.010657253836965903,-0.04687792907646786,0.29766320395558304,-0.08265224254113111,0.0002438661362582614,0.007706243453464807,-0.04666373184016197,0.2831733640797514,-0.0005897665448501895,4.641817093203743e-05,0.011261786162463233,-0.009011640887654507,0.05723211680906143,-0.049975703447467976,0.00025950807437304476,0.007348536132976279,-0.0021965328555324307,0.0352645031866647,-0.06806589258269169,2.5848191660801695e-05,0.01952882959827994,0.00892446172547733,0.08579044937063571,-0.014013221072220096,3.4755600593010555e-05,0.00911996088572136,0.06790880198732571,0.21067768461999367,0.10489883653791413,0.00010383177731174217,0.018052301338728642,0.03110193103290593,0.20896643688390146,-0.004125043262839494,3.4379787858717845e-05,0.013852116072149687,-0.015026201210658419,0.04301702030170891,-0.008696135239721157,7.744372924002623e-05,0.0050592864513066965,-0.0008727488129413041,0.0034233921300197956,-0.028934915277215725,0.00011656850172699778,0.004859389844702382,-0.004316921059035298,0.004145370553373943,-0.03564901936717211,0.0005952320538421049,0.005553158184380909,-0.01832968119161016,0.07286189056726362,0.009143939008383579,0.00010588647350822487,0.020600728760196665,0.027024223328460058,0.09272423759026936,0.006049462008019394,0.0018705922247963089,0.020648587732006854,0.03847213736665482,0.37361246053315766,-0.03833179113169953,2.647934010877138e-05,0.0003590962960384747,0.002470513881681841,0.007810388905088016,0.001532669945695776,0.0010341556497404892,0.010476047257774523,0.017619768614926732,0.1293880171885316,0.005961467456817931,9.068423351464394e-05,0.024941208436832438,-0.021281607836111147,0.03355857579503719,0.018675197698382422,0.00014967397784723395,0.007665625090863827,-0.018484512819839826,0.03048993414859359,-0.01614534904511594,0.00034798092335333646,0.009730866510242573,0.032126437913713314,0.11755468162258419,0.07540955814826852,0.0021182293752159955,0.00583050868644037,0.020426769093410974,0.08097614787814914,0.01137464076218249,8.093436002377381e-05,0.01216024161516683,-0.01501667730048858,0.01826103067936578,-0.006818860132407413,0.0020442111549209044,0.025882607404902853,0.0037678601333336267,0.011489814605749271,-0.0021189498736541453,0.0001299265146193064,0.01375469759386152,0.023619932858399865,0.058894182051118314,0.008293377181741671,0.00016257982074285662,0.002808390463357108,0.020548774851193424,0.08988643077685884,0.010127721081173897,5.579634140836469e-05,0.002404377116490874,0.03785517932604316,0.11163432499753739,-0.02006457682119977,0.0032139980953535,0.011450474133722681,0.0038532312049124303,0.0208894168886033,-0.03221048323608275,9.175702459372132e-05,0.004419676269681311,-0.0023671892570624365,0.01310845202692773,0.0006393343369734336,0.0001309611127688779,0.005092750429747845,0.009878376025341189,0.0650345208777017,0.001869880472193252,7.184396745363233e-05,0.00945479124282506,-0.003316860706788673,0.015786339835431536,-0.012796730270787664,5.2807204889115444e-05,0.004841729535373298,0.03733137820446408,0.08687875726436746,-0.018657949552366118,0.00020950279321107422,0.009275169350170977,0.011158664262525835,0.0437102963718718,-0.023158905257360276,6.348086495886232e-05,0.0060232757836333976,0.014729406931441216,0.1914138385558619,0.002579551582522208,1.9853780384568077e-05,0.013755158465023662,0.022759027213423464,0.07786593024630271,0.07711196591978112,0.00010216806855032072,0.00032591547537777173,0.019581370368108083,0.07938564808998282,0.025968351591053918,0.00038880250839573376,0.0032091066761202316,-0.04346134829496139,0.20222985758755727,0.07880563444847288,0.00012309196798621075,0.0016834230826598083,0.008580302669735045 +2020-11-27,0.007613091721028875,0.04842600381053824,0.007500427735775592,0.00016625281754122721,0.013520635255677167,0.0807212373627736,0.2655247404370099,0.1309936427250832,7.294463308783691e-05,0.004367637526934634,0.044213660834861765,0.1503883511756553,0.05856809314373244,0.00013600017965639563,0.02183643148182524,-0.0009560551820909439,0.0008700538735395976,-0.01036318931597343,0.0003708554547776226,0.002222866521373777,-0.026577135317754765,0.07159425810942113,0.025250998126472995,0.00019423511489865557,0.0008799470301888441,-0.0068787011973901495,0.014249024665523424,-0.010597905314298543,0.00010540665855548404,0.005207170221848174,-0.01587140120889376,0.06278150167356453,0.0005900998216099737,7.417771072726325e-05,0.0028892875979854567,-0.04955422830310804,0.4135001305774676,-0.007118760459798193,4.1096390631345875e-05,0.016224927527033767,0.03047966044776493,0.02650579873391621,0.07194408811559137,0.0008867761725844384,0.001244710276129297,-0.011096872718889152,0.027698165509761688,-0.010382122821201982,0.00014009140310406265,0.010907611952954378,-0.0007587255179579986,0.0005520144320532963,-0.01614140635112437,0.0006718287993047166,0.0032263215582820828,0.002011454106151695,0.02947739649199756,0.000731339925831503,2.0334982098896892e-05,0.008648129230312078,0.011320897848957854,0.03448315008600625,-0.09341337299592781,9.752702513416739e-05,0.010677391350166853,-0.0008273574600621078,0.00477160075208158,7.342631023206002e-05,4.880798821707359e-05,0.007851153841486195,-0.03251278505901235,0.02390433588522078,-0.009893465382155367,0.0026527752865151836,0.00409468201613456,-0.004850992528214271,0.03476069725013212,-0.019984588570166738,0.00011484027777056075,0.0014707413238408552,-0.016223852198067237,0.08327784593049219,-0.072153904746926,0.0003016704213884368,0.008168061945713768,0.0023738961000392004,0.015400084608821456,-0.08068385004854578,4.342097349526833e-05,0.007545164507978029,0.06364616354472595,0.32221970656907195,0.13687375903280516,0.00032554193461515273,0.014439033286650842,-0.0703947726167377,1.006697755445497,0.08318290707278679,2.901827161309179e-05,0.007370811737544666,0.002724022900199437,0.032755892415541034,-0.05785268561041087,2.778452824693013e-05,0.00382489998665455,0.011467197700570314,0.037551083638319466,-0.012600126694875395,9.836884713916092e-05,0.031402518965024946,-0.09143163734674718,0.6401159975523885,0.02188171219305824,3.299363701704157e-05,0.011502872657930156,0.016121808368643326,0.04440224197688477,0.03764929113471193,8.049821266832432e-05,0.00308008214288019,-0.009726998280349893,0.03777230760049052,0.029567685873617727,0.00011774810242836467,0.005394483123126636,-0.04774325470692937,0.044433116592996355,-0.002460284854103716,0.0006141589811230609,0.021490494168217054,0.004285004455879276,0.016034707913303886,0.0008661658550965166,0.00011248023982950189,0.004927857062068007,-0.06513850612728332,0.23744754422760647,0.06682388311969976,0.0017607159024456106,0.01918022903467491,0.06113406317436468,0.5359238770477612,0.04738040721946514,2.9333396326744862e-05,0.025794901048678175,-0.02719394852404941,0.08076030594940496,0.01254438421405996,0.001100894204284174,0.0021664803279647276,0.025996948273010422,0.1740413231734803,-0.005842334285287906,9.947080597238702e-05,0.006583531187006,-0.035918726785895694,0.049594861532814984,0.03194365357975507,0.00017093446538453107,0.018879684544492344,0.0016204811975846479,0.002674685454709058,-0.011141271085820043,0.0003477564502696442,0.010022287333711945,-0.014254521871521146,0.05322574501663684,0.00231846632952963,0.0020757796343815363,0.008327431719298655,0.007360109742807419,0.02829059844273789,-0.06422539145009397,8.347040601102009e-05,0.003646976899463771,0.034182521911090655,0.05120321430654565,0.03333997951083367,0.001659526026133629,0.0020832552938732235,0.014280118696517545,0.0482987638904786,-0.009348656429995243,0.00011714178508708277,0.013741449367294208,-0.05121240316694668,0.1372145406998717,0.11181675869496065,0.0001512987693944338,0.00489158728828126,-0.06113583870930449,0.27895725227214824,0.16632341274256335,5.348994397477868e-05,0.0022458626765588666,-0.005424734133135714,0.01726554470167499,-0.09849177454761116,0.0029779419793773995,0.011161093245523413,0.043097137189917284,0.21431040350239383,-0.04723013531883135,0.00010003356327575434,0.0016488489929884598,0.014608422756101287,0.07487453289521033,-0.05702422755744946,0.00014149138145272947,0.008258419209380505,0.020808943843954993,0.11526814976249597,-0.02214408145371962,8.538653984805391e-05,0.007182427983240491,0.04447253948794598,0.20667427660024829,0.0390313352076507,5.4082019213733884e-05,0.0150159109119118,-0.045311385741636755,0.07844884531372488,0.04138930333678226,0.00028161136828334764,0.01966281256037736,0.00033957953972173563,0.0012262147789001805,-0.0013336373985595403,6.886354012541347e-05,0.007715437532525606,0.015894944465678074,0.16686434054312857,-0.10784849952279936,2.4576880845720162e-05,0.0011260707365501527,-0.006052125505599131,0.015525598805206445,9.685593464652429e-05,0.00013626004584248698,0.0034003289618594838,-0.013128405759791635,0.05676773029233366,-0.1075947200608618,0.0003645343276657734,0.0026920351553522317,-0.018966032343622666,0.10769218191971039,0.015057930166261904,0.00010087048446298826,0.00668039552477168,-0.002350695000821474 +2020-11-30,0.00978564591476547,0.0610751888519363,-0.008690633168395693,0.00016943817400914197,0.005120331758648514,0.02188552646896703,0.07966540435500946,-0.005159999798521866,6.59170495444248e-05,0.017937444027632587,-0.037878381398174954,0.11607071443904467,-0.009006144805633134,0.00015096141555708182,0.017730897761445936,0.0014502269677793636,0.001455336760690188,0.0006016275805611811,0.0003363104279768307,0.0036594696211657137,0.007188684974021847,0.017615256284600787,0.0027827873271162222,0.0002135296844912214,0.0034995616573464594,0.015419590978528784,0.03855682009728548,0.028146688014728027,8.732093643905202e-05,0.00014914678277928796,0.042047762413164935,0.16316600630253975,0.03127305471166157,7.561414766160535e-05,0.00060236066654913,0.00999720227031072,0.08779011336061364,-0.01154066395336983,3.9050939237634865e-05,0.013103010676139453,0.01315069343520625,0.011846930833574626,0.011654704141889448,0.0008560272453439457,0.0037462676322489257,0.035829204094885,0.0886215272346545,0.02967450991309932,0.0001413708330811728,0.0068019560682845166,-9.272349082406816e-06,6.793187351368658e-06,-0.012451222505580437,0.0006671761907270735,0.001902929048941202,-0.0010445106587757794,0.01579784870406186,-0.0006609039909317917,1.9703243079349124e-05,0.0006220306094944154,0.06049481168435212,0.17351272324230047,0.14575350278596955,0.00010357092166779293,0.007992033590977726,-0.0019356168736511493,0.011064950517066609,-0.10697518985448726,4.9241553024050834e-05,0.0026339055266729424,0.017837109762137496,0.01318499222221835,0.01003295397196361,0.0026385636761781335,0.015592403937291128,0.03286076324773802,0.26601422056429136,0.011187307892491373,0.00010165410019494793,0.023985319317871887,-0.05946913723489192,0.2752663957405243,-0.039874020566638295,0.00033453893765367183,0.019310376255886243,0.04139758438208961,0.23600584301782282,0.11623972805072083,4.9409811916766763e-05,0.0034060644220392277,-0.02072874280732524,0.12836184107128779,0.01641793381089056,0.0002661483836658764,0.001463917585583447,-0.02243298360992648,0.33542906385512655,-0.00023336598970964044,2.7753424611054623e-05,0.003536681515449668,-0.004175740565487525,0.04134936042675356,-0.025810117354338562,3.374010432976588e-05,0.00017468963287154923,0.0268338989831512,0.0699140372378079,-0.0008164337781133663,0.00012363520544213472,0.013209050067132862,-0.045061690432470804,0.32696084059414937,0.022738293549984898,3.183494578138344e-05,0.004021424847641277,-0.006939967496035657,0.020886818825948287,-0.013772765143643798,7.366522489434628e-05,0.007203180666385961,0.021093009748624204,0.07880249176609525,0.0752355550888337,0.00012239035619152509,0.004708401511456752,0.07398891739431832,0.05904599957011801,0.02627285282268103,0.0007162287585292746,0.019957663092392417,-0.022787672027873872,0.0873349085846667,0.01880701900084059,0.00010982421287745287,0.0003559694439186072,-0.00356121483653961,0.013351275635900864,-0.013707532659573751,0.001711963837917008,0.0026706840967091108,0.01671836065108847,0.16077727154824756,-0.0009589411327517512,2.6739373692297415e-05,0.018837835274366575,0.023007603035539455,0.06007713735312022,0.018274293896322295,0.0012520838528464278,0.001692449525063194,0.04569440279120945,0.4011606030333061,0.07807110615329473,7.585258283116994e-05,0.003832722853021793,0.0013795555128452836,0.0023054374507558545,-0.020809549976158317,0.00014123138676557997,0.010704487331087042,-0.00022295578056726485,0.0003237711118841993,-0.00023614628586310636,0.0003952615358899142,0.02453635158225156,0.007669132033249466,0.02787944607617409,-0.011427051944744809,0.002132123785969053,0.009287173743545494,0.014742861167426428,0.05593006764954741,-0.0051592188708813715,8.457203904362898e-05,0.024774131346482823,-0.0038229762597636915,0.005346694624516482,-0.007651565824054645,0.0017774337108706839,0.014076892356416947,0.021720790460921673,0.07655697820386571,0.004024779170201681,0.00011241049999493502,0.006172693286609207,0.010904743573987154,0.02969820295927914,-0.0004163332104362892,0.0001488489113789767,0.01870769080663838,0.041603852529606175,0.19413462340756932,0.07076691203722674,5.2305152870426856e-05,0.0012995458473104913,-0.057407463363324626,0.19908721295127552,0.01679080349400182,0.002733021501202615,0.016340623518893125,-0.004685989530919034,0.023760766298321228,0.004896020698800506,9.810280879879313e-05,0.02317051959663608,0.018098499572137213,0.1051334823714348,0.0203683394877793,0.00012484245670610656,0.00986821982954545,-0.011336468544316004,0.07748250863813831,-0.0060348463507422494,6.920266391574632e-05,0.006988286969823105,-0.036078228509358205,0.15206075344401654,-0.03989915379331593,5.963146263305577e-05,0.027197842630192953,0.021385185597606743,0.041837542400396256,0.010822310476176397,0.00024921619003614927,0.005128261696902321,-0.01094872030077243,0.04686098126385428,0.007989371907383823,5.809869249429274e-05,0.007334374443322853,-0.02211877853756375,0.2119106222242197,-0.003014902290828299,2.6930207461534017e-05,0.010497384669912868,-0.01370045339379491,0.03873525868217346,0.008151258424101599,0.00012363386424530745,0.002176124896364739,0.04932036156841651,0.22457730580982355,0.21167180356907736,0.00034616914486997367,0.0004991856732229506,-0.010599844300211127,0.058160909601206026,0.0016620207312664532,0.00010438547985818757,0.0026032623262212595,0.005490224231713537 +2020-12-01,0.014565008457047843,0.10179108279340907,0.01046756378717914,0.0001513169541747455,0.008878578710192668,0.004738848273240803,0.014641580863122425,-0.037250815697580805,7.765963768434459e-05,0.021090698314532016,0.0023718040827189917,0.008301990131153623,-0.04726752564233387,0.00013215810539494725,0.004826004847649203,0.004562740402419738,0.004942134845192451,0.007974172371013092,0.0003115867818183475,0.008304788548787061,0.01264263844795221,0.026786883015542457,-0.04490380118171877,0.0002469524331602682,0.016949557522738055,0.016486988825703167,0.04644263067830507,-0.0466626230722044,7.75124156299204e-05,0.003311461310409362,-0.07566957231638376,0.2523666242472868,0.14861331603692438,8.797903945371882e-05,0.020454583442371936,0.0008727740703371097,0.006691470514924271,-0.03655068099236294,4.47279383818823e-05,0.005701777058466548,-0.01407622796786517,0.011689006434748345,0.00538135508782431,0.0009286530311942294,0.0012380324532305631,-0.0014448473501266644,0.0037143027036137337,-0.13628272890180657,0.00013602118615413925,0.008144885425636055,-0.008025335144874501,0.004759100106051781,0.00020194036910668124,0.0008242570987093519,0.00668479778252757,-0.004683867678401702,0.05606797255177187,-0.035928235473300395,2.489502432160303e-05,0.0008334198668757764,-0.06025366972231313,0.16013623332951915,0.23079946671641474,0.00011177506509419713,0.0005644680376641887,0.001372079514089483,0.008275147168690539,0.00303487839045806,4.667296295975073e-05,0.008321464871593758,0.029863637077937447,0.025829045092481774,-0.009014284815584977,0.0022550559480961504,0.00920151830039968,0.028515676791634356,0.15260753531081733,0.00043660721924106453,0.00015376582157825117,0.023221731706518683,0.02992461701612593,0.15351224139133737,0.09659603114452267,0.0003018518348045757,0.008395259955778929,0.0018335676473243596,0.012244275047285478,0.0035226623922339994,4.2181771680652614e-05,0.00353755766137374,0.008315776847607653,0.04641829186640875,-0.05144969966934376,0.0002952571879025438,0.004434577958411942,0.002706698314755234,0.04231750041182281,-0.020065971253596562,2.654300425611765e-05,0.005386373920773861,-0.008747009299189989,0.08963431269563578,0.00623028473577942,3.260370872575327e-05,0.006086464513849596,-0.014830807406726853,0.05005195874408105,0.01145236720877482,9.544792096161195e-05,0.026892316772306125,0.021649748752859025,0.1353549153799801,0.004736356045891194,3.694632150272367e-05,0.001489248316356661,-0.0059569660715996535,0.016097010550779358,0.0004970135950309053,8.204597495898841e-05,0.0016386561387310944,0.0060607689215307564,0.02351460788646969,-0.005126056864923089,0.00011785244052945464,0.007773298001230007,0.020439660618870387,0.020039439202255448,-0.01086937541741042,0.0005829934535713507,0.0028267310275131956,0.04332425464571303,0.15396400404560964,0.06759706535456365,0.00011843986723312614,0.009592828919769083,-0.0050485454608085265,0.01727399460706457,-0.041815390658921155,0.0018758264976077967,0.002377275728183338,0.03926402009490104,0.3637660697052763,-0.13671439190609105,2.775586527697394e-05,0.00454683530144887,-0.046923374331080715,0.13898854337206057,-0.00982297487696528,0.0011037774103795132,0.018057212327061135,0.03442950198093661,0.3234606211595961,0.029572811912527242,7.088183755369429e-05,0.011003982120230193,0.017071391414626852,0.024547736962835614,0.015448953392727,0.00016413562199304467,0.0003295074446828389,-0.01835676945910866,0.02596154691654802,-0.03243464312617764,0.0004058537855961736,0.004595670150557396,0.033118595479129403,0.10958950056445718,0.06400840782129677,0.0023423581713278695,0.00977170334828391,0.051537809822446226,0.18582926350917167,0.046611114939356435,8.898201237859967e-05,0.002424589774989214,0.039180810151226944,0.05528497406038346,0.036765582630515964,0.001761746808456232,0.0033468567634330404,0.039768494830867585,0.1360971805093545,0.028590109818743072,0.00011577267348669064,0.025167298654547088,-0.022346960757903222,0.07500578806153839,0.01789531371925037,0.00012077695165279138,0.007955003775272279,0.06982159520875825,0.2968077702461162,0.14968008266737456,5.7415404071127474e-05,0.018553886746582975,0.04500866068780404,0.1476517982599106,0.06352645385542095,0.0028891853713312638,0.002828625276568721,0.0021011168057164056,0.011898171465336428,0.0032346994352188342,8.784368458726171e-05,0.006567181772175287,-0.049451193491357466,0.3356114805564109,0.29344204986763317,0.00010685645281510636,0.004875694879036651,-0.012225664627548776,0.07658614107823833,0.0146831356598141,7.550417897262325e-05,0.016950051346189286,0.06393233936235766,0.25498932560995324,0.0754791252622322,6.301529745906739e-05,0.023877685045632098,0.03680404065810794,0.06458967513196041,0.023979203062452412,0.0002778189052970753,0.022880510114823317,0.030796506673364435,0.12365405716587671,-0.013603147008304093,6.193091002151063e-05,0.0008828196339091766,-0.02129319131811728,0.24903329867665708,0.040656616413836055,2.206046286615897e-05,0.02126558040598848,-0.0030567977469148524,0.009462386792351991,-0.05801645665422393,0.00011292106681403633,0.005829360321042792,-0.005152942727108609,0.020520646117210686,-0.012217753397812088,0.00039581500641276126,0.012142115871939443,0.06361921125946478,0.32473434735121454,0.11217970629595209,0.00011221007427339787,0.0205378408362236,0.008499602910736962 +2020-12-02,-0.04854217650513036,0.2894922834036367,0.14577877149554977,0.0001773245380579386,0.007870854703432425,0.028097317168967843,0.10659347022014577,0.006636716832391655,6.324770615779523e-05,0.005335492084878673,-0.012364864939305416,0.04243299135660691,0.0012273766788759907,0.0001347978398304089,0.02747204879521708,0.0012603628310165374,0.0016669817910484994,-0.04718808290209767,0.00025517174726689685,0.00437067372534775,-0.02679352122422011,0.06326663703204882,-0.006076535621507906,0.00022159135595472255,0.01527180637871694,-0.004278294579255034,0.011439040933838563,0.0049401811057253695,8.166346629202418e-05,0.00828205602000783,0.002902778162918931,0.009898248497746294,-0.0012767428370891896,8.604890533094874e-05,0.02199679815261043,-0.006333080157037225,0.05027425047357829,-0.006403138756573755,4.319843315280597e-05,0.009852485912254757,-0.00549389802260986,0.004365696685653801,0.0011025743616184277,0.0009704469990449088,0.0012953376225497849,0.027822883507372893,0.06526614639275466,0.005235113696583082,0.0001490651265186406,0.0006324771720571968,0.0168055645662013,0.011501443156755674,0.031370295947181076,0.0007142086859478585,0.0021666938981118817,-0.019571710668892794,0.23142479593150347,0.045986997764027635,2.5202387621642124e-05,0.0027094611409180765,0.03129631624132536,0.08751593383102783,-0.05610172039074182,0.00010623243302656516,0.03737824043246256,0.010567988912711539,0.052473153938277756,-0.04223190248327905,5.6691376066535975e-05,0.011268219496016026,0.004191197280844834,0.0038698580541785313,-0.01386376593523643,0.002112350786725717,0.01589480615782172,0.0493719451856502,0.334037669109091,-0.025988690232468574,0.00012162893426072313,0.01137374437858619,0.08049654886224065,0.4872655146040735,0.27852489707425343,0.0002558113544180361,0.003481306273879177,0.0409909015563701,0.23839011130168475,0.06995243375865902,4.8435098793730886e-05,0.011446820152515096,0.003947146194293018,0.022511724883821433,-0.009221513753349458,0.00028897564843840135,0.002100680577444283,-0.00451926600247945,0.05434578634765205,-0.0032278996853593324,3.4508990796639275e-05,0.013375825115324362,0.005424267056038331,0.06296629892297548,-0.04013299468851934,2.8781578287411603e-05,0.0042772816505908876,-0.006886350261552164,0.01537563316023763,-0.008712960723507303,0.00014427093802296255,0.02107218952604439,-0.003864347620452281,0.026993841906472634,-0.0024100640058341474,3.306769040048787e-05,0.0017790527711722408,0.006990674860491796,0.016190028399911842,-0.010685394443400517,9.573017990697274e-05,0.0038643550677457377,0.018442979839943793,0.08091693804730962,0.03955709387227396,0.00010421740299332146,0.0039958974186790844,0.07297515013024473,0.08535248411060904,0.01833855084228998,0.000488691058750857,0.020663897295255727,-0.0007660673795211824,0.002745044130061567,-0.08787737079607703,0.00011746369229520862,0.02024337545853106,-0.02179852844626443,0.0722961416305809,0.006680622155796517,0.0019352239551139864,0.017214497222211536,-0.07721695714066602,0.815878389075233,0.24737540811849837,2.4337134884243268e-05,0.018828005064142964,-0.008427425856780345,0.025524902597081903,-0.02419942447597192,0.0010794489709044358,0.009025227801587604,0.00914745517577663,0.06781483097626406,-0.015448687294180604,8.982583223733463e-05,0.013546625907600817,0.0028203507716457413,0.004221451064118309,-0.0035757813867882604,0.00015768368209425254,0.009088786969847693,0.002392475208750178,0.003433510429233096,-0.012632357833349943,0.0003999567117372348,0.01286976773264434,0.006251751845194113,0.029152402236556837,-0.027132810747209298,0.0016621787450644022,0.005860690705852034,-0.001842771983180674,0.00842331885560969,0.0016700698588829079,7.019056373174239e-05,0.00041882828219536473,0.04413504650351616,0.054267530465921476,0.03724365006490068,0.002021718669508207,0.009008521505774088,-0.012700678880119925,0.04485912958143091,-0.05417081154137768,0.00011217398009901837,0.0014496628609895594,0.008888497533196205,0.022953005797547242,-0.08761324921818534,0.00015698174990652242,0.0037817784374903213,0.044063397204678875,0.18767885043729207,0.009164967784461813,5.73028955604289e-05,0.021290417170302542,-0.051385552319706776,0.14653589505056622,0.01224120171515514,0.0033236483298498816,0.013380947195670083,0.03075319611100563,0.13699847933237658,-0.01945782539079943,0.00011166448874582,0.0002964290028521294,0.004290717049610423,0.030137384717059703,-0.004368559875546243,0.00010324882032837173,0.0029237229840374814,-0.0013226898244378836,0.008234074707097727,-0.011115570266395182,7.597870870382132e-05,0.010473535700149732,-0.056947415617184555,0.2538906836590696,0.07346624083032523,5.637345461824044e-05,0.0257861143357996,-0.02227531392857734,0.05423142105287608,0.008521953408433265,0.00020026370322728348,0.010837917938854955,0.0031806609074976227,0.012471994335844394,-0.09639108567108612,6.341556148456329e-05,0.006476246534311828,0.007816306579861284,0.08839689200689274,-0.015167106364438033,2.2813707822872143e-05,0.017415937197456235,-0.005395927586167691,0.017640227211044433,-0.020586281779106524,0.00010692294267036617,0.005415138827413495,0.002962806887040749,0.011840739674273919,-0.0011976307701311998,0.00039441414647750433,0.011586213437229407,-0.02885652836822019,0.12326651993524189,0.026604933643815814,0.00013408208115679469,0.014519507841505366,0.0031065280321975327 +2020-12-03,-0.008151290144912029,0.048916598683362046,0.0011266854500394505,0.00017622060356887735,0.009478079138083847,-0.016073535847547775,0.04325563415764057,-3.677548717528695e-05,8.9161890090071e-05,0.001057023056514593,-0.008276506677299478,0.026064379326701307,-0.018811407457470404,0.00014689157477288994,0.001411258114728469,0.01424255379066152,0.013553973170610165,0.032583735528697956,0.0003546411307573164,0.0002657502722864767,0.009760513158443493,0.020767645597896376,-0.029052108583244883,0.0002459139465723726,0.004267443132177691,0.04103614842427382,0.0943290458768957,0.18900870180588175,9.49878133369681e-05,0.013701850161885213,0.0033488197032125696,0.014345289830605101,-0.005122590341384281,6.84971172564296e-05,0.0017970823608792893,-0.0002174515718856121,0.0018703049804737965,-0.004920949963710781,3.987022949779872e-05,0.00887653296327558,0.013150815048593622,0.010571215801000315,-0.01341571374412223,0.000959339922824048,0.004331422170565851,-0.025970454652171078,0.061821871206089195,-0.002553979211122934,0.00014689238864988956,0.01144270695107207,-0.03014153125308487,0.027111440021376814,0.05798544053955629,0.0005434218344094738,0.001251596149343793,0.00048694377896091356,0.006933431972854398,-0.01817825730088868,2.09292349020939e-05,0.007938414089796961,-0.03203865214999208,0.08489368410338534,0.051872670306297546,0.00011211143053655435,0.029594404498149342,-0.0037262761923054733,0.018737699166950776,-0.0187461909854813,5.5978415065297445e-05,0.0020609623191217767,-0.025096153688891593,0.020291261138865428,0.005185920087984539,0.002412243238902879,0.023484064213205907,-0.033041562843128154,0.27548862307527605,0.02738157241442228,9.869815182390442e-05,0.0048307080549982884,0.03285425211381682,0.18356633539817502,0.04025775765979193,0.00027714482866566945,0.011877386260302613,-0.08944338562722984,0.5801083335798799,0.18007929821865457,4.343102523333935e-05,0.008787102354225468,0.019388900703420524,0.09710557940206054,0.011101497740689832,0.0003290756971513001,0.018966754974310482,-0.05235347779878113,0.7096079935518022,0.027122715741458164,3.061662176530518e-05,0.021271674184922297,-0.0074006742327425885,0.07730339898880993,-0.0056703615449516164,3.198559299023225e-05,0.010070028014239674,0.017873891337380127,0.056667782536911515,-0.018871634908618436,0.00010160279391977566,0.03164825879702354,0.02015108251044823,0.14398897511843087,0.0013167760937985266,3.2326710717449995e-05,0.01213160336989431,0.02473991922517737,0.0704528609506653,0.10544389215579324,7.785330001644931e-05,0.006063954423865153,0.003584851130654786,0.012120790899942904,-0.02620028035887853,0.0001352348930065685,0.003413207290037715,0.009919752980940609,0.009344687062023103,-0.0007761352981527828,0.0006067526151173466,0.010251271019805221,-0.042916959282278004,0.1352206702362419,-0.061631859352847033,0.0001335893599089841,0.015904775143746837,0.0029165329485782055,0.010928942847461386,-0.0008926826571187345,0.0017128049403364635,0.028166582346162664,-0.03310883641557877,0.338109495227875,0.028899282977815577,2.5180754912781422e-05,0.02808004707124253,-0.010557969459125613,0.030816518980840837,-0.0002529921507609101,0.0011201291302456442,0.012366650917677174,-0.004525252894366729,0.03033997327403615,0.004264360237187305,9.932379483873506e-05,0.0014774661973547287,-0.01720356851204602,0.024035111225798243,0.008095304461896798,0.00016893428241943965,0.008027357450788454,0.014847512253983616,0.024919067775164234,-0.14287397210948027,0.00034199977071963,0.0064791931534751625,-0.02375179316441297,0.10663028192109104,0.015464593167321258,0.001726498424577668,0.001977834274184965,-0.021707789780583315,0.08222281475069539,0.029309455603326887,8.470589540071619e-05,0.0028340087859553224,0.035518414045198114,0.05325670044570269,-0.014365760938330393,0.0016578930137296443,0.008382408275446502,-0.006470928870911891,0.02289584460967295,-0.019418094420087052,0.00011197626918231133,0.010377861016527525,0.011570510682198713,0.027913190634960394,0.004522429477233074,0.00016803642066838472,0.0015331357227439334,-0.008995578657252408,0.03943061553571973,6.529418842954016e-05,5.5681313772549e-05,0.004465104529017156,0.03158732029197494,0.09984568163797729,-0.13243431588576846,0.002998482757844869,0.02009231050204221,-0.038169998134598204,0.17837273331044196,0.0412687041728762,0.00010644719998139732,0.003086991889050522,0.01667082722768501,0.09466828191391922,0.014588993400745506,0.00012770662852468946,0.010706194218271176,0.006017916000897165,0.03576035960833381,-0.016126982224530257,7.959631146782441e-05,0.015036410810061102,-0.031416572583414,0.1445212800139307,0.013716813601401845,5.4635434223502615e-05,0.01676362299535695,0.055899732413899235,0.1001261883039829,0.05609413561930173,0.0002722020801236103,0.022464061080744925,0.004100041745248214,0.018995713376140432,-0.03638769816326641,5.367190949328243e-05,0.004927698359707332,-0.0020311171095440932,0.02061624445399648,0.000941354747912307,2.5418896621687046e-05,0.00424133109921872,0.013794015000824202,0.040292137616026506,0.019449482251168312,0.00011966836292869332,0.0008116366587344675,-0.015383471611053376,0.057047838781329775,-0.009967686771796071,0.00042505304253798046,0.011526251778244324,-0.05031971916547535,0.28599837593847677,0.06225015813326332,0.00010077352209301467,0.005785926376319948,-0.005170033021354831 +2020-12-04,-0.05021610126401426,0.3372361176518015,0.10972419358002677,0.00015746915405000125,0.02009351224835951,0.0031430291372707762,0.008464681745588426,-0.0020169704839733127,8.90939675673455e-05,0.015134413920662358,0.008415899746211855,0.02862191527419492,-0.0005799511563763313,0.00013601883977373076,0.0067040261861632325,-0.0002643226324495686,0.0002634630259294824,-0.022450292785513866,0.0003385965523441179,0.007849580745810807,-0.036739264953193636,0.09301569623626307,0.04243073511181268,0.00020666740874860964,0.007066226014235868,-0.010850195080341145,0.031917895001808354,-0.0203419243437154,7.422497238953518e-05,0.0026731996448443535,0.06663079795569349,0.2715872192360962,-0.020623740401911336,7.198724300667338e-05,0.008523375102635853,-0.01576935786426142,0.12463030629129736,-0.0009594947914136773,4.3389931165360294e-05,0.0012317705279860664,-0.018606365186220063,0.014633234130986663,-0.0018253532185087482,0.000980541560035092,0.0018233632616473294,-0.007340198811786985,0.019947166897532613,0.0048400106183069825,0.00012867331448607796,0.0038025496139323847,-0.02460828962423022,0.01808842951690837,0.004799595436362225,0.000664974399306565,0.005906734740811038,0.007551324963360319,0.0883224183388858,0.01099217571224969,2.547856696766901e-05,0.0018797961529909255,-0.00037209128485262755,0.0009388308778901861,0.0002671864089409255,0.00011773705567630147,0.010024835923128538,0.013145841989585485,0.06992684547276287,0.0443360153261527,5.2918349382075094e-05,0.009588939838695569,-0.01884615458508294,0.01628830657427482,-0.002355960095634837,0.002256678996065948,0.010753690644923142,0.01699397988311207,0.10834939326924756,-0.023651575077161247,0.00012906863701698493,0.00768241288302271,-0.00502492318811004,0.0266952335043507,-0.032089377905890906,0.00029147676135085393,0.012919870907043956,0.007221765866445262,0.03939106273350195,-0.007393870851524767,5.1642429157836185e-05,0.004515708654327921,0.006817001357478097,0.03894147549200152,-0.004703567664669079,0.0002885145933073395,0.012561733374754493,0.04925650288744262,0.7103958512800763,0.09119010872012982,2.8773546164184795e-05,0.021798098539630925,-0.0026810199714429658,0.02410906171947732,-0.02021666816946743,3.715364690940524e-05,0.0021059398553310783,0.029621847299959342,0.08486146504610209,-0.015988282306223577,0.00011244091459319117,0.016926422191850952,0.026055342144193853,0.18562574117846148,-0.02791181509768849,3.2422832732121996e-05,0.022428335871714437,0.0051959020961709675,0.014557346086960165,-0.027288186267900406,7.913272741462769e-05,0.0037665626186821587,0.0038480903674268196,0.018231165797476627,-0.004983703964180296,9.65115781654447e-05,0.007274929604163301,0.011088353719258424,0.011258870890597687,-0.035527093798430005,0.0005629214451658433,0.02045651610679327,0.030146962819663687,0.10121930620164941,0.04020651674128073,0.00012536208835446246,0.012521146226124099,0.06323945385695157,0.192073911017558,0.005238227339278188,0.002113191746351861,0.034329245402578035,-0.01818559742594988,0.1676140161625498,0.012135632710506617,2.7899693738109305e-05,0.01502246973715385,0.0074908751513961735,0.020691875748357312,-0.01771140000173854,0.0011835973026373008,0.017513144832005948,0.024561420116601687,0.1894256680068997,-0.07226774518998895,8.634561546085448e-05,0.015414940617886631,0.020062143418393543,0.036572527840342546,-0.003659946786112537,0.00012946957960568097,0.003986814471686113,0.053488085391753336,0.0734148718003905,0.15630673631651157,0.0004181931565917335,0.01294850173812872,-0.009718404312245497,0.0395243212789003,-0.030476356130103906,0.0019058156250730748,0.0010768066975031846,-0.002879728589446478,0.0105445309559692,-0.008166076745217613,8.762230272368749e-05,0.005202855544991803,0.008203509171088209,0.010360774471954092,-0.005577880267971395,0.0019682698475170907,0.01203279458373729,-0.008356931099334082,0.026809752820632637,0.0018098619648954468,0.0001235008788570777,0.0014955240155728464,-0.02891945552524827,0.07504666676051942,0.04038921250328439,0.0001562136861995474,0.002914844950169437,-0.002201595157670999,0.008766265293487523,-0.014204571454242046,6.12966551949415e-05,0.008714561115583677,-0.00460710226031585,0.010400071085118099,-0.013999362510133274,0.0041986493133176735,0.024012738463195786,0.013355473200441758,0.06647061789983606,-0.007381285545867843,9.994708562969041e-05,0.011717501251336918,-0.013816562883371618,0.08167109815638171,0.01712599426630961,0.00012268526552467842,0.019765295496461527,0.021132433090982238,0.1409303399218289,0.010549087767439217,7.092407851138716e-05,0.007731122840552111,0.028740247193345312,0.11595864899255247,-0.02482099007857559,6.229235460672805e-05,0.020644558938713812,0.020812856294553407,0.03629073828581019,0.000756364965818108,0.00027961809734460463,0.008882837441290174,-0.01054905539677006,0.04866782622143558,-0.014948997631498921,5.389965684098656e-05,0.00851283915417526,-0.012529983070298355,0.12726802300588652,0.011211115169231498,2.5401681826173113e-05,0.007464913494215084,0.008856787639722431,0.031003860278432785,0.002554127708866064,9.985491013902136e-05,0.010667546519591122,0.025424284668796034,0.11318773683977007,0.03872642538595255,0.0003540603848501601,0.006525651098897874,-0.0162877273156192,0.08414599988018656,0.005097808922157513,0.000110866110243404,0.006730037433742393,0.005906139885339282 +2020-12-07,0.0011267921242219736,0.008417824732473746,-0.020944880539945924,0.0001415567254028596,0.0028666215049659737,-0.01862330202975702,0.05328494795518977,0.015668667289615464,8.386150793542823e-05,0.013944659739715511,-0.03869390722930165,0.11537427465637201,0.03931115464696874,0.00015514250764835677,0.007921587423170855,0.03102661207533153,0.032067471978010215,0.10304003821296168,0.00032654082688188165,0.0034520624011643228,0.015410014040276027,0.03188965962648309,-0.0021457775270992286,0.00025284299316285396,0.0064254407669668044,0.014592931786019373,0.03396845999292337,0.01049294587398656,9.380228854603535e-05,0.010372508266276483,-0.0005501755895156505,0.0018917483567371417,-0.03716728415128071,8.533512073592477e-05,0.0011331716397757873,0.015482129902543447,0.13128023543432052,0.0226077748281184,4.044175321291328e-05,0.00107004886545076,0.019895623442959958,0.017452766502946273,0.03362686071095299,0.0008790995562925637,0.006491269205331972,-0.01660681117154996,0.04696201181885258,0.013474659351734461,0.00012365208404943278,0.007556147461581767,0.02374297375207349,0.017045759079157476,-0.01320778056578178,0.0006808369613078498,0.011747226625187034,0.009563707989132045,0.1251404656193434,-0.02324109091205747,2.2774630000626536e-05,0.0037230163150036065,0.000962319086664309,0.002346732979651931,-0.006565135173697367,0.00012181659635977126,0.010146794101015983,-0.010475285696823707,0.05398702720853707,-0.007922283328110834,5.461831289476e-05,0.005899835583044085,-0.02483326792404931,0.016079781335584867,-0.052089995286926115,0.0030121507829879465,0.03415447939711899,-0.05762279097211329,0.44754859042177136,0.06724889080992656,0.00010595127900866596,0.020145171593067134,0.0059767292255173965,0.032118784542649166,-0.0181976719351258,0.00028814607652162186,0.0003863717245558395,0.019835851092733184,0.1292575598912011,0.018188827743598097,4.322707427246048e-05,0.0101195250688622,-0.026388586764677504,0.1332562933695135,-0.04060247951663529,0.0003263737420255764,0.004756081250090043,0.03416657187859818,0.5146801015563482,0.0409161477112222,2.7548265448969667e-05,0.02954999559874352,-0.02419606827208072,0.2092926634439135,0.0979899329656578,3.8625356913275075e-05,0.019252407509952208,-0.04092405674159288,0.13390554909786648,0.012306827059948853,9.844708453683536e-05,0.006544500605662634,-0.03411754670447968,0.25320520024692644,0.01782077872064252,3.112415360494548e-05,0.03860705993442116,0.004478600669553846,0.01141734246695097,0.0014192189766917946,8.696704124291637e-05,0.007752537352055948,0.003520651472338639,0.014679732294201404,-0.00806157648785716,0.00010966132627333373,0.005370848634636368,0.013148544678662395,0.013023074983016102,-0.0442086766497904,0.0005770848946946736,6.465862311648635e-05,-0.014338507451132111,0.05264771096412158,-0.012513352418123486,0.00011463321212529741,0.004246786437962034,-0.013266236781201821,0.048810909956877015,0.002799290654556724,0.0017444158140459806,0.018451933305560365,0.011840473228296114,0.12836493766158863,-0.0005758836728547509,2.371946238297439e-05,0.0321427881015119,-0.001136436994068487,0.003672164776383392,-0.1187325869627473,0.001011799526873611,0.017634609326554102,0.007100295964961825,0.05464365273420777,-0.018037149106513033,8.652913705114583e-05,0.012485494721329052,-0.03783692462395818,0.04894843208677381,0.01902244710466593,0.00018244099453310783,0.006485208512628126,0.006939595652463376,0.008995791532982965,0.002849640972596311,0.0004427909107665835,0.006122072462346865,-0.043627692417000326,0.17092366809152423,0.06856552527967377,0.0019783830358529623,0.010607628605766882,-0.005213685915012864,0.022368218287663645,-0.04522635783065734,7.478316520974223e-05,0.00014268382584071396,0.0887943590714108,0.13568273029770797,0.10639587844037154,0.001626814349283551,0.01199441952207073,0.020646962485103497,0.05596364168261513,-0.12204343173147221,0.00014617268952833408,0.011984336590971601,0.052409663993946254,0.12242859333743097,0.09810118061392718,0.00017353572392885664,0.002184109276087225,-0.010664718514966226,0.050077450809965306,0.004074379637855532,5.197818483652355e-05,0.02283349109577142,0.09007785101496135,0.30793222272167464,0.1365352399389918,0.0027725599007809095,0.020005907580437857,-0.0046773889371543,0.022136678066576487,-0.03215522530901578,0.00010510699157466222,0.00589662392376283,-0.0018170530823600143,0.010072680242317049,-0.0010884029627111185,0.00013082277335713048,0.008881499447253844,0.025629104045379714,0.145685248460862,-0.012391258963022385,8.32082798348775e-05,0.0018044916776618438,0.014984041436753172,0.08533193082770517,-0.04482590303420638,4.413313590889165e-05,0.014092918756522584,-0.030867799701189143,0.05867074188595432,0.0056300303633945595,0.0002565154262418791,0.026465935125506074,-0.010076292760183608,0.041846136128579244,-0.10733149434035938,5.9876966447623075e-05,0.0007904934056689089,-0.006147208387136081,0.05963112390092312,0.0018354755963046403,2.659721882363814e-05,0.006293141331087897,-0.02817361194383696,0.08588823919051872,0.06325683712622705,0.00011466154614846592,0.003861873440429513,-0.005201304665349747,0.02094418527030369,-0.009180723745486443,0.0003914504468815047,0.0027136649806640033,-0.03388655300745823,0.17438704897335078,0.018763645331795135,0.00011129738526728833,0.027842440899990172,-0.00011670155579211267 +2020-12-08,0.00018408605304581814,0.0010820938226122495,0.0018674890126741618,0.00017990471778294264,0.0052061465628381294,0.01150761848834181,0.0341230001549266,-0.022688593195086364,8.091867704113674e-05,0.010646321342016441,-0.03322214957651459,0.12142997290607575,0.014693406093245355,0.00012656074878200903,0.016654840142258896,0.0010365705436360553,0.0011653083153746635,0.00012583602004398556,0.00030021049742025063,0.002955669077205382,-0.021349593896554112,0.05701073691149867,0.003937591752641478,0.0001959434435258552,0.002228360964443097,-0.013497151106049038,0.03693399162338986,-0.01898273015616168,7.979259759645063e-05,0.004768372904711693,0.014102902805772198,0.05846190093915891,-0.043473282550287394,7.078242465684632e-05,0.009914744417621711,-0.031221379191726423,0.30420107661528767,0.012073747447493512,3.5195727914414526e-05,0.0013399631973792813,-0.004606596194852406,0.0034131058377987874,-0.03424591310065544,0.0010408189135219566,0.00842326583777002,0.01137269788773933,0.02744218997289182,-0.05841440408285634,0.000144912758075312,0.009064680852215934,0.0049064569214260535,0.003692329891798171,0.006529815611528858,0.0006495189886316454,0.011398326230577654,0.000705141744699816,0.008049036697364042,-0.011191314516218968,2.6106900131953e-05,0.00873533719981663,-0.001425131359886559,0.003995281759627329,-0.044309077857476696,0.00010596404347078131,0.0024404548878011988,-0.007014534970762767,0.03457571197140363,-0.011940450983160494,5.710702963224854e-05,0.00013638965486524515,-0.00027781459113515713,0.00026105752355435734,-0.006924871060244847,0.0020755911502725586,0.01693666423006044,-0.0725650747738266,0.41937529867840345,0.04386288236494746,0.00014238915346912118,0.0027379267959089177,0.02086992884568663,0.10053761970109634,0.004480676462611217,0.0003214405048578554,0.004649022534274188,-0.02589560849263993,0.17409336194736225,0.0037651847770455394,4.189911640399283e-05,0.007980155219572167,0.02073477767232776,0.10019663138610559,0.011997245574690821,0.0003410617920797216,0.006160797095456865,-0.05163477956453724,0.6354876145484989,0.025558902250449763,3.371828427749653e-05,0.018407684024871085,0.007807121234319155,0.08444130619106868,-0.06661898178428868,3.088998446480356e-05,0.009342484907381578,0.007956025922584428,0.02493161639948385,-0.004624394570150902,0.0001027941758943237,0.024889688754809947,-0.007567826050144555,0.051959538916375635,-0.011399467591047478,3.3643272140889606e-05,0.0008960005928929351,-0.00018993353700804346,0.0004932077525816308,-0.08838319217354759,8.53786225141252e-05,0.005283894026216945,-0.005758533343230975,0.01939002056249679,-0.03122289051404532,0.00013579450984156679,0.008022334682864573,0.007157421171193701,0.007415268457352373,-0.08193041506144384,0.0005517028867953573,0.011792990219045639,0.031240633592333773,0.12134929234508883,0.04867861919482659,0.00010835989966889907,0.008112215904071875,0.007132814109974915,0.024303026833639527,-0.015601289326307955,0.0018837345970747538,0.021060367694068508,-0.03200554313500203,0.33494006082428485,0.02461626921669962,2.4571988422383694e-05,0.020054458585563574,-0.0006873993354266587,0.00183215179521702,-0.02479233872552647,0.00122664509127597,0.011392097153611768,-0.0015322716195469695,0.012176540736645003,0.003978093766144996,8.379873736134256e-05,0.0023025345058471872,-0.00734749288985633,0.009876969433672658,-0.0008956765335467354,0.00017557426175846485,0.010674717021550768,-0.015630009324173473,0.025294036164192638,0.005461735940771747,0.0003546867915509666,0.0193141622394731,-0.01846010499973696,0.07051667909695439,-0.0010396793211155087,0.0020290495678793093,0.02190348349805032,0.013613611781913332,0.045613159623836594,-0.001882800633645468,9.575767112287418e-05,2.468392365049285e-05,-0.015427953371979448,0.024586239432663907,-0.0014680620174214183,0.0015598879484045698,0.00043523839700129003,-0.011111145456689715,0.033846106538955645,0.0044605956545195405,0.00013006670919848284,0.010307897264357966,-0.060941450148209245,0.13499932731499822,0.14071677617613496,0.00018299598279016905,0.0027393760063765373,-0.010217544851448506,0.05034804497163137,-0.03257953827152855,4.953108783756887e-05,0.0005199729353061772,-0.020269342651632168,0.05909228029297307,-0.039006497804216944,0.003251074886074533,0.004878256766086276,-0.021837729482306386,0.10919579123299379,0.019654715786983176,9.948146058989801e-05,0.014220684928985846,0.013711743921606763,0.06904037760201186,0.0008674438169332261,0.0001440291243204782,0.013207532729269863,0.015201609879691854,0.09520219859937239,-0.06263382939188955,7.55250990708848e-05,0.0027793193438532446,-0.03860811051885991,0.16812637383957157,0.039622976352960054,5.771518558455754e-05,0.019814944501399784,0.010359587324166678,0.019936371066148754,-0.0011882034665367711,0.00025335281918494653,0.0008897499614903509,0.002568191139675805,0.00917962003900326,-0.01112550118871422,6.956920073164742e-05,0.0027234866956344617,-0.04882471678224448,0.5182886245156202,0.1266770871913015,2.4305207954938526e-05,0.026076338301534593,0.007906176539965776,0.028584433690113972,-0.03319305832090213,9.668205652473477e-05,0.003495529801796772,-0.039256312347569,0.15785578458308708,0.14373232518168738,0.0003919917892586647,0.006281547202485028,-0.03710630836614517,0.1585362962908998,0.01749712670498135,0.00013405741395603225,0.01530272815577269,-0.009888037309362031 +2020-12-09,0.024512585075926397,0.16970742114647955,0.018068087110405105,0.0001527477648239115,0.005310885874711137,-0.018743785261286772,0.0636772486122875,-0.005042258789019925,7.06290779576179e-05,5.9252391862129965e-05,-0.009467839817795282,0.035364463436425415,-0.0001253472318378502,0.00012384572874260582,0.012991739828876471,-0.029801188801347526,0.02839735269553036,0.10719259816318187,0.00035417963804579045,0.0038367655625140915,0.0021543124245387867,0.004257664203610427,0.0003013120766361666,0.0002647494412700619,0.012686383970688409,0.011233756171164308,0.02954373959657799,0.0035990495109568,8.30244995335134e-05,0.0015989735296432683,0.0038912513835062264,0.013234064992022912,-0.0002650510336616595,8.62751812181379e-05,0.027728488059931077,0.007763047383054541,0.06165552393644963,-0.010275320948371018,4.3177635802731525e-05,0.00022411105165016162,0.01351074890188252,0.013232860799080605,0.01384552113953089,0.0007873547742840071,0.003473894361182157,-0.032430220676820394,0.0706904082232986,0.02372914690579993,0.0001604173362939435,0.003436285264454607,-0.034655919366459335,0.022377472075442453,0.05425578841456042,0.0007569910745180287,0.004438849251248662,0.000997844854121939,0.012427696256166661,-0.0001376877531549418,2.392738189628671e-05,0.008324299296899908,-0.02891926150585547,0.07820561798025559,0.03408685258011124,0.00010985005637512073,0.005196420544208217,-0.01492384468455167,0.0762317024439946,0.012871196171818743,5.510701919842594e-05,0.0013701427280648133,0.01896338844313898,0.013744304831519222,0.0072257971024049066,0.0026910151019621555,0.013764837062556743,0.027350120200358832,0.15902433088994286,-0.01505957565298688,0.00014152975999512252,0.03421544635991281,-0.04528736745021184,0.28548855787512345,0.0025748753423502704,0.00024563859296557406,0.011749994581708416,-0.030104368786930482,0.1974826404874926,-0.016812438357161435,4.293995214983065e-05,0.009101423507358168,0.0007636544116807532,0.004157015625795898,-0.005085322283697767,0.00030276245318123444,0.011575023130988033,0.013059630042463707,0.17404034139611746,-0.012180006586001026,3.113946731084954e-05,0.01650251518355832,-0.009911567986526655,0.09391631182466009,-0.03615780015844823,3.52600597772848e-05,0.002475813372855427,-0.010408204435839825,0.027284896428709095,0.006098217527795761,0.0001228786015715735,0.0059231357432948835,0.005409547942999087,0.04517317794193248,-0.1617631295617722,2.7661307584738737e-05,0.01468694774406074,0.029007729262136482,0.08529556028273308,0.11315292113216294,7.539884434102296e-05,0.005714504794116719,-0.004274054547858111,0.017707312390145027,0.018792892042587224,0.00011036617900032394,0.0025267461488653505,0.038189313165251426,0.043325675295012266,0.000972563452407565,0.0005038161310156043,0.018310017924128508,-0.013689674928266287,0.05212012232355218,-0.007031735275755367,0.00011055381106044192,0.0016310629753904455,0.002534468384862895,0.00801891836071148,-0.0454596265884351,0.002028571225287482,0.017141303394112406,-0.013147101941940588,0.1205329570879678,0.005393328099145758,2.804829162891735e-05,0.032311707584336574,-0.03876006136661418,0.10464012399401196,0.032296694336169815,0.0012110371898780945,0.0037125364056998095,-0.04814816757453649,0.33716876653364913,0.14851656142889905,9.509508467131935e-05,6.536499556575185e-05,-0.022347812269567016,0.03308868226934428,0.015522872659023504,0.0001594046289322064,0.012131004408508294,0.040930736773241765,0.06127705383910349,0.06991479542420848,0.00038340308187516684,0.004039914200347111,-0.017796155127597458,0.07605458122730056,0.005233011474370393,0.0018136402462784068,0.01199687010195982,0.046012506276017814,0.14186643017660464,0.055424136648696665,0.00010406067040778863,0.003303814355229301,-0.0480864042112452,0.0725174543504022,-0.07187804419767216,0.0016483785113762066,0.020583886272253986,0.04588170815455286,0.1591373242435921,0.07407331915395467,0.00011423089068835644,0.017123731521532716,-0.039337552731664095,0.12025998935346442,0.03191034640052126,0.00013260092484254448,0.005623890985992002,-0.002734482031880706,0.009954710627837905,-0.04145589700556973,6.70440681597922e-05,0.014391185573546935,-0.03332681679275533,0.09946085410500147,0.004489670592087778,0.003175847994664281,0.022622626584300753,-0.013893183634203547,0.08711354908167224,0.01452144906665235,7.933350446162195e-05,0.017657807878492752,-0.004792635765097144,0.026213603632255562,-0.05396574321444025,0.00013258930081419708,0.0018322344895355936,-0.014576579605811935,0.07206197452603139,0.0023962472222435823,9.567493364383844e-05,0.01793419916579696,0.01847458194099337,0.09652422672733885,-0.04246853087505598,4.810449761245179e-05,0.007316845071267344,-0.06893685788888734,0.1619406417089367,0.03168758049663243,0.00020755109203110763,0.0005539042976708329,0.01006325516774428,0.03427262132927105,-0.0017724920703421456,7.301389858988592e-05,0.0027606860610760926,0.006829492023875871,0.07122113631613121,-0.0017472586030923532,2.4740631980957533e-05,0.009783002982084475,0.01779046383676987,0.06062931008915175,0.04039099371390181,0.00010256840674981018,0.004427860523574426,0.013770783276269972,0.05035448479577282,-0.021967818297276138,0.0004310706531520604,0.015680027367993732,0.055059458685341976,0.2893079416852677,0.040105316572302575,0.00010900423663263027,0.027307273814257776,-0.003981111673145272 +2020-12-10,0.027804572929337187,0.18892903839135544,0.042233135284775264,0.00015563386349572863,0.005936903539994407,-0.019752826863891956,0.0592136563248682,0.009653097921757732,8.004199505988521e-05,0.02706745036575385,-0.004873706581274428,0.01576137234725263,-0.003077132250153472,0.00014304166436893072,4.570252320978225e-05,0.011513090385292109,0.012397206510145071,0.016397022899416195,0.0003134266600947901,0.00012288177213841834,-0.0019381294669787916,0.004583079668896363,-0.029015296482761993,0.00022127031294166675,0.00884982242333498,0.010114566035602998,0.02950048170100835,0.006289982680721648,7.486259660480667e-05,0.012569364975124838,0.0029171399106163866,0.008860313251114327,-0.011872787702549929,9.660465144487734e-05,0.0007267124291803185,-0.01612040703192808,0.16923786363769222,-0.041708157601117686,3.2664580374637723e-05,0.008294175074268134,-0.0036811083398438013,0.0033034993811633835,-0.002552932848424703,0.0008593085961958716,0.009502194521086752,-0.046965490779287,0.1033666144598464,0.11953669165373625,0.00015887679094818026,0.011482856188925566,0.005809938040666923,0.004398701747306156,-0.053370460589648214,0.0006456116274598474,0.00591239532418943,-0.006137176213753407,0.07616348769963353,-0.14019306266832235,2.401289707641579e-05,0.011117565085815484,-0.04332044015028537,0.11945890466375193,0.06505587919061,0.00010772719952961494,0.008463365821609196,-0.045041613660955604,0.2306317474454606,0.24269837376990594,5.497391541986538e-05,0.0048748247467530655,0.011519855653466535,0.01016958817497305,0.0037512298513253254,0.0022093607974042603,0.02314047228427348,0.04855230747485093,0.3263850944037102,0.0047686476526507555,0.000122414162514344,0.016652876786908535,0.002252642693682688,0.012409735998580359,0.0008241876298592932,0.00028108521361297576,0.00455499055488051,-0.011803389492120953,0.06815384487670109,-0.023629775973793208,4.878399167434791e-05,0.00214385789059034,0.031179429509368823,0.16496645691065115,0.01016330247320677,0.00031150091392988325,0.003475843536485411,-0.03639179892075455,0.5591055160069494,-0.0002989196689380554,2.7010957433624347e-05,0.021645120926007774,0.029539728650505078,0.36271563072713653,0.08990705081885737,2.7209586340315544e-05,0.0008746882838476346,-0.04517207482981247,0.13839242806655072,0.0516423772852787,0.00010514302452771343,0.026628205570112872,0.03263829534426097,0.24237997464641514,0.00969787424740276,3.110449168482369e-05,0.03455103989248259,0.007885115701445936,0.027256390547674512,-0.0031974700647195353,6.413825044530611e-05,0.0009107995962776988,0.0014345650093431058,0.004963719869655998,-0.043784569651474974,0.0001321482953889105,0.00015206212866497397,0.0083007526771502,0.007484644450121685,-0.0017642609217059665,0.0006339016191149293,0.025620057909932027,-0.031232059066002238,0.12247148499187499,0.04114480879730363,0.00010733754120219479,0.009589549882641867,0.0024068124867406885,0.009048079186546862,-0.04271340817026808,0.0017072811207900504,0.014692124522525744,0.003631007671541534,0.03371109229458397,-0.00022531136911363575,2.7697242737579354e-05,0.008151427532663912,-0.05971142975408925,0.15608114317766938,0.08676862215403987,0.0012507724384255357,0.011148674715477296,-0.02218412223107627,0.17424780254452366,0.025253293471918316,8.4781399807898e-05,0.0014216613840819768,-0.021666116618720158,0.028242437929163533,0.012572519886451361,0.0001810607353100334,0.0008721811652663129,0.015014852595159188,0.022076711097608497,-0.013707740689817569,0.00039038274400415493,0.021671495227155745,0.025875677145569348,0.09016124953342534,0.040954707954204805,0.0022244474115789255,0.007094349952734209,0.0061757394046220975,0.0239850882309366,-0.010777194055059796,8.261102523733388e-05,0.0149607152867535,0.04911259730992791,0.07142770306542112,0.018903400220871815,0.0017092414241978728,0.025445323205286724,0.007098494430174329,0.024162671842987947,-0.038515464119816836,0.0001163958045778508,0.008258839393070268,0.02490973748908554,0.06456319992275118,0.019091825768449013,0.00015640278418048735,0.01641276458386283,-0.011728482959274918,0.05185985261918462,-0.03878730236395505,5.519814563780002e-05,0.006189818042770384,-0.007160708562630438,0.024688040681663206,-0.04709540547386358,0.0027490803407042774,0.010687491793588619,0.010997553387051153,0.04762368078709277,-0.024882206119256386,0.00011487187001482897,0.006921417040161112,-0.023156131279435457,0.10711401477894089,0.033710868606472814,0.00015677632859999082,0.014577754130260938,0.00541710254208927,0.03167515793815727,-0.004128338628589519,8.089039688458755e-05,0.016246825825626768,-0.03576587518906657,0.1724208750104938,0.019502111006591823,5.2134643340729186e-05,0.004963944802617974,-0.050676338607453075,0.10015883356666297,0.031140308914849035,0.0002466864897793468,0.018458614505681082,-0.003460609506034547,0.014646997755391127,-0.003430796071280524,5.875141857851554e-05,0.002735893116825011,-0.0017907820404123634,0.02442658523576466,-0.018685282167471222,1.8915213932730225e-05,0.011664091215538396,-0.0020538094997406132,0.006482138850504784,-9.14883540764947e-05,0.0001107517999814864,0.012520190687210893,0.03414663057213852,0.1332056315815411,0.055099676003008045,0.0004040668675637121,0.006380163206866833,0.03572161491268637,0.1867008152493499,-0.0007304250332676196,0.00010958640145360879,0.018878077502330736,-0.00169268864362451 +2020-12-11,0.004988973510379385,0.035515818427541056,-0.022882548405981994,0.00014855112834168675,0.006452936063237576,0.011953907495273603,0.04065761361997336,-0.00959704707646703,7.054699720823274e-05,0.013895265042747417,-0.03377440450657256,0.1081419499599236,0.019789874348404603,0.0001444743365242345,0.02999370016917483,0.007169323059177778,0.007549763884116959,-0.00021660755578759193,0.0003204886380696422,0.004037370888352163,0.02848029504570119,0.05510325801925871,0.04236927106950678,0.00027043629587953413,0.0032619393150468794,-0.014368421611105964,0.04412677073346877,-0.09483554844454008,7.109738976266671e-05,0.008049934943790681,0.05605994499511475,0.1990686572447434,0.06273968488521084,8.263035820555449e-05,0.032035674427591594,-0.010162821537452993,0.12541099421337054,-0.00029805905136144595,2.7789280532185116e-05,0.01492430622661184,-0.009287159930674981,0.007678919327885992,-0.038336137645766655,0.0009326691375568586,0.005329850378686773,-0.016909255938587896,0.03617663130022691,0.0007218159002577174,0.0001634399648934107,0.004113280122090647,-0.027144225187867195,0.021941791600516,0.016043104197983105,0.0006046857329505223,0.013513607828425506,0.012169734617392418,0.1569904799952693,0.02740365930244893,2.3100989349734684e-05,0.0054145787498223906,-0.06152206085940638,0.18947972369242552,0.09895925658637675,9.645376176443839e-05,0.01992122728666576,-0.02329064341064154,0.1338823676592301,0.032075326505055665,4.896885173905707e-05,0.011814454573988937,0.0011839194011139512,0.0010271693889703185,-0.058032082080805826,0.0022480348610340343,0.02067920537229056,0.00027117413341525297,0.0019894871713660167,-0.011298718638817234,0.00011216548167068094,0.02958621629033702,-0.00058669803079917,0.003298424049146554,-0.00030181931277239895,0.0002754332547815961,0.02091002158020457,0.031200143620979184,0.1981804608696472,0.04144450224599856,4.4346231022826126e-05,0.004741248200693111,0.024965404221958042,0.14511848928308044,-0.09279447521191767,0.00028353237845691947,0.003107280954921892,-0.0539254052391703,0.7475494730893788,0.025795916103292144,2.993530648950489e-05,0.007940380834812856,-0.009740921234894012,0.0894745284642389,0.0016586446731831565,3.637326799149944e-05,0.0013950738384136958,-0.013385615642245314,0.04068022033478137,-0.002491220137218321,0.00010599315258960173,0.002892710365819242,0.032689019383351864,0.24682388650204204,0.008916367364148184,3.059194447141413e-05,0.005597887273134823,-0.014881935876820157,0.047489235861688406,0.032571870820042155,6.947709154962418e-05,0.002150373272444741,0.01932916523700507,0.07212240662641195,0.058959599088587826,0.0001225438397298872,0.0004150313257580382,-0.05476666046660629,0.04537050523320093,0.017655222679264577,0.0006899509317196646,0.03418908142023146,-0.00900893717581424,0.03355569608553235,0.001058150249495079,0.00011300386954426522,0.01152230541512072,-0.01325670622119274,0.05573419552951948,-0.0389397780882056,0.0015266274599122498,0.027200748497361225,0.030754522212338067,0.30233129397805936,-0.00029785620235206554,2.6158213304143516e-05,0.02058829362521105,-0.0036906016937641568,0.011358506737035744,-0.025272677510695084,0.0010623000612976392,0.020161901818997643,0.037383054935023585,0.2937262886940358,0.03748777746551557,8.4753494596606e-05,0.003691878910083099,0.03144833051806989,0.04291866469721617,0.04727045614013132,0.0001729405277467295,0.014728388810162012,0.027935424125724848,0.04446057923284325,-0.028429772288948125,0.0003606484473142573,0.012492583410654231,0.008750123219714847,0.03280816657126988,0.00653076455569177,0.002067200249500155,0.013963299530511642,0.03353901961282449,0.13281354016217534,-0.02326579349588528,8.102114583578873e-05,0.012238918729149222,-0.05208506651834444,0.07005521868881236,0.03643558996862963,0.0018482040679883099,0.001117931419077397,0.04621200182201076,0.1734173183758023,0.046754964141038094,0.0001055791963818629,0.011286563287866333,0.024453470479582913,0.07066476120329346,0.011803836909180855,0.00014028071929477137,0.013590292090153416,-0.03886189150603378,0.18897017349675935,0.009879567175631888,5.0193166921093726e-05,0.011800028963589308,0.013456670593957198,0.04573489492231676,0.0006052468526617784,0.0027887397932086326,0.007567710191230681,0.02961525996631514,0.12017330847077205,-0.11368430583416517,0.00012258804022207477,0.00312442103603294,0.004392033724678999,0.030333733554489654,-0.08594516021200668,0.00010500272815212685,0.006384210745197868,-0.023740707703206982,0.13282730120250047,-0.06552482371994477,8.453859213647493e-05,0.00254522040153626,0.0005750264012893419,0.002407710652043323,-0.014561393136184857,6.002482267509687e-05,0.008774293298924435,0.004427407900036246,0.007593659384242958,-0.019360573173947827,0.0002842678971780258,0.035397695107145244,0.0005601831734279982,0.0023482993261115365,-0.002027795605049643,5.93186122083166e-05,0.0035779687006596596,-0.01866866786453257,0.2261293362211268,0.010626198628858816,2.1300397431939487e-05,0.006943506465068188,0.00539633800480228,0.016941721462302647,-0.10735309183449286,0.00011133983454377572,0.010466154156994294,-0.00856794302172831,0.0399842438607156,0.006969769419227411,0.0003377657840673097,0.0007676849556107882,-0.036631754431392057,0.1554209621345095,0.015105373639440242,0.00013499569589987828,0.017641696868873923,-0.0003799838939803641 +2020-12-14,-0.011300126318860886,0.08499398097036157,-0.06767877005669579,0.00014059883135694476,0.01208730148381168,-0.00392780775805078,0.015455168152449938,-0.037848256784671755,6.097994321735317e-05,0.013891307694290252,0.02268430879867973,0.08246217487624188,0.020363891240296337,0.0001272529826229588,0.00998453634143581,0.0008260116229361018,0.0008717219815040908,-0.02865827413328754,0.0003197982017311245,0.007865589215135683,0.00609333865234084,0.014944743441740745,-0.01983246466352838,0.00021333623398139319,0.007877371994923691,-0.0017286555178715618,0.0047821432231696685,0.00021966166529741304,7.892827616546208e-05,0.016133394301016304,-0.03549663717237477,0.14349410746788552,-0.0033276083716563517,7.258435122583589e-05,0.007973428278861197,-0.009521042555296769,0.07708273930049747,-0.008506430710401169,4.23570768527255e-05,0.016881251125498088,-0.012086398751439653,0.010756124967043822,-0.02474651036838449,0.0008665345145862504,0.0037827341536175035,0.016018174412755003,0.038633346926434546,0.01092366119533393,0.00014498149391225975,0.010970571329753917,0.02274461891929029,0.017887604522032894,0.020510782391809698,0.0006215138893113461,0.005350891843230415,-0.013675400673137115,0.1943197983170361,-0.03844427944977207,2.0972287270564055e-05,0.005220033216740021,-0.006249927486330902,0.017260652081386805,-0.0012140239705854398,0.00010756446407031534,0.013689532830763637,0.011340192130389865,0.07258042704975383,-0.021033930480402193,4.3980758172271684e-05,0.0055156336361283234,-0.033872325849082244,0.031229410863902872,0.04522797575513753,0.0021154569886672227,0.016807702609548038,-0.003327979639691123,0.020816277347343846,-0.0592998473813953,0.00013156176850465578,0.0033548653901497513,-0.00783030314490683,0.045299851679563505,-0.004784865360062427,0.0002676640393545585,0.01581189492679407,-0.04015791645507577,0.21961582126739584,-0.008497243861164223,5.15072667017899e-05,0.01460529500892836,0.019204107349812635,0.11630972301771123,-0.07133848871063951,0.0002721227874502816,0.008299526644265458,-0.0364072245111356,0.39982026347199495,0.001826075047845942,3.778792130053852e-05,0.01870168230957612,-0.00340679858108641,0.03229286255641983,0.0053580415053119035,3.524695650544397e-05,0.006200198184135263,0.011432232065756269,0.029465608483259003,-0.03565433132794516,0.00012497938220978785,0.0019916103973395176,-0.06198944186381776,0.4036501742968806,0.08154361557235709,3.547357494235243e-05,0.0035768703129916693,-0.017714584517216705,0.05038054593383469,0.04307325668697733,7.795527065820485e-05,0.0014855350282167725,-0.02271155554364949,0.08234537668678005,0.1531643186739838,0.00012611195426144467,0.0003608271797635864,0.06986693448720303,0.06412544259546848,-0.046032706822088036,0.0006227544995724599,0.014822349703355577,0.0027891543997887037,0.009042746593040957,-0.13856944314680394,0.000129824962151563,0.001381441016187476,-0.042628773945207254,0.15083308084488,-0.051284405803853954,0.001813950429910445,0.022900466647218606,0.004668381336287771,0.0445547213681119,-0.0015206568663342452,2.694354819304685e-05,0.01906274633509944,-0.0028890196521464146,0.008436120839374341,-0.057304224917986035,0.001119641465150177,0.006248979932656353,0.008267049012420731,0.06253010846832956,-0.0014325771648513355,8.804140683252545e-05,0.02142547587822667,0.003281142014268569,0.004435714471391313,-0.001273526245556477,0.00017458496151636987,0.009576766445332178,-0.023388880348115818,0.03559995846114509,0.019623222245553802,0.00037710635805849045,0.0022653955210178507,0.02855373582882529,0.09199541818925197,-0.04294816873130067,0.0024057310882941462,0.005232768091965675,-0.043483684372002056,0.2059683430578064,0.05960599428299754,6.773548267542899e-05,0.0010062377321508713,-0.025344655729106585,0.038618379882535095,-0.03660819252647968,0.0016314341082476454,0.010304705052456698,0.011854905268433176,0.03930946141549704,0.0009956159133927528,0.00011948600227721383,0.0015607348640935288,-0.009042077610535946,0.022497918930427168,-0.018428562162469443,0.00016292444827317078,0.00023766390245345034,-0.018207816144668845,0.07852421357078737,0.012233424314036642,5.659371310325791e-05,0.003622158787338933,0.0008974209613906072,0.0031968434046786755,-0.0006934125368127904,0.0026606815867158433,0.011673645740648381,0.04471980049925118,0.21310500227562684,0.06685112597684462,0.0001043870883340115,0.007815818223779625,0.00659466612122206,0.03564438192489719,-0.013754840317589351,0.00013417219004923937,0.003813442565370667,-0.009890227114366835,0.05668812056994457,-0.0029324710467640625,8.252070025936296e-05,0.005734399885884994,-0.04280110317116411,0.21889739986147383,0.03397905084470772,4.914301015900577e-05,0.010168892784064548,0.019584177382215056,0.03983407161563311,-0.0010666990843027923,0.0002397066200940797,0.01763721335066229,-0.011048708956560245,0.04477975420047146,0.0011610391008880076,6.135418677925814e-05,0.004241685293768471,-0.0051343516603729045,0.0541038275243965,0.0007181457973234616,2.4484368457215444e-05,0.008221742651532978,0.018840836380648807,0.05600102586790718,-0.016995167285100126,0.0001176015808597476,0.010556718901181835,0.006271451016418736,0.029825260648489754,-0.005917245200588635,0.00033144521814680935,0.015433750446438809,0.00511937371914814,0.025040951865507047,-0.02766836987229813,0.00011709485070218457,0.014872785485814671,-0.0031202608792065384 +2020-12-15,0.011530828812457006,0.09189766884072322,0.012146130192861364,0.00013269135033509404,0.014625686885370338,-0.055498989224210926,0.16086329751946266,0.1029016519746972,8.278251818092824e-05,0.0071406791352287766,-0.012895847821565715,0.037589176670560165,-0.011094922795948876,0.0001587026909788781,0.012678882357854696,-0.004327585448889242,0.004341793112917242,-0.09365763446030183,0.00033639101148313997,0.0023537982285943447,-0.014409722612397199,0.02680367169230927,-0.008906116811245968,0.0002812931155350102,0.0066179900879579385,0.026937299490276387,0.06361644614639829,0.07243484770996188,9.24552102401592e-05,0.0012271094965537817,-0.02134091780509749,0.0772875477415248,0.008725093382750728,8.10202204518985e-05,0.012898597573685344,-0.003950222856427455,0.03280530990887013,-0.015043185099917476,4.1292964915147136e-05,0.0035293076268097853,0.02930744970666613,0.02509063126699975,0.07766295385257825,0.0009007644275360586,0.013387364606593361,-0.022018658995414237,0.053940106999651044,0.010555843815304935,0.00014273844076507562,0.008688949915453527,0.01617903620830482,0.011078742016563899,0.030339948726765063,0.0007138164561343156,0.009654848053882083,-0.005670926479123303,0.0855514396954171,-0.07901430744924257,1.9753746851720014e-05,4.4185289854467005e-05,0.0048029724848045905,0.01594800568953695,0.0010444271546192832,8.946532719845755e-05,0.009519184831409724,0.014058310731373917,0.0837874375699922,0.03390796751631864,4.722979361907235e-05,0.0014862969943423249,0.04090958321366995,0.034263806899015654,-0.009939557298912554,0.002328693943553438,0.004321222812180884,0.01368794901927445,0.07961779121737972,-0.01687398738905619,0.0001414752147055775,0.02509905305084925,-0.015068188304302411,0.09847700304207377,-0.03762929856424618,0.00023693785233099213,0.018169392154859933,-0.0278962581144782,0.16711830758054771,0.0036357778924390022,4.702002761962876e-05,0.019458871117628375,0.029688603668835363,0.18306457234185125,0.02873715013051168,0.0002672835766398646,0.0045620915686090625,0.02899165885532377,0.34659089617853556,0.005355783325682849,3.471252023608823e-05,0.004025815095091199,0.000777618859291336,0.006903412818421251,-0.0026578670077379777,3.7634369908552356e-05,0.00550894403354104,0.004373589247974119,0.010257786961164838,-0.110161255421874,0.00013734317214377333,0.002318632060461275,-0.08154397844238974,0.5492738401627423,0.05681978325346641,3.429220069518094e-05,0.017478766243702502,0.008213813382488338,0.0248665847881107,0.0020805543199856036,7.323287278874543e-05,0.0008053300305463193,0.013571497036983059,0.05407375231999265,0.005081074045258299,0.00011475981629324184,0.006828612448718436,-0.03175140136931952,0.03320034381710277,0.0219262207445865,0.0005466330400085713,0.028009145582848317,-0.031853192805963604,0.1052954136527754,0.034882556864158816,0.00012732964387037195,0.015454530823791848,-0.015549401610797563,0.05243119511476485,-0.009291828550956898,0.00190345712235746,0.008856254216879224,0.02006310771924073,0.19665304362437483,-0.0619828455767939,2.6234919005749823e-05,0.0038912069663877605,-0.03132942251943664,0.08419384505417943,-0.014162524623085527,0.0012165874043564137,0.001859465713801285,-0.0025166830435017166,0.021210689204634012,-0.04280829897005641,7.901315178108486e-05,0.021392110814938785,-0.0037128998615146174,0.0050106459928776674,-0.06017678687088616,0.00017488996952223153,0.025195104677106034,-0.0209326834318122,0.030718462193762477,-0.0014389033434231608,0.0003911374038632262,0.006429013317015599,0.0020100318444813076,0.007099517897465096,-0.031355462182927896,0.0021944435863993457,0.01188810706315207,0.018619337237521356,0.07292495862811008,0.00579098342279094,8.191782202137273e-05,0.01815135875150548,0.04291171404029248,0.061356687205204125,-0.08545383216421193,0.0017385658749242538,0.03428560819233667,0.011668876494023124,0.03948376456674628,-0.01579735609163537,0.00011709181180840919,0.00837668869142928,0.02605380226356404,0.06332968012055437,0.017803079528912056,0.0001667724060436487,0.0025203808968357645,0.020614975214658042,0.09617180353443489,0.009677839942618546,5.231774074820887e-05,0.001239350914352596,-0.0683200003206483,0.24481593401167842,0.06692512867906814,0.002645003413969788,0.029867860120792667,2.0276231025574458e-05,0.00010475421759052571,-0.042236383432761884,9.628447886354738e-05,0.003294320491339261,0.00035388663676579616,0.002027401854099229,0.0003621267665352418,0.00012658583435287926,0.009646278636476945,-0.02339705497491569,0.13085332969652616,0.047712818176942735,8.457171080673034e-05,0.002901256014131286,-0.014256940774323677,0.05702348989448848,-0.029616532577292024,6.283765179226543e-05,0.021265318283538955,0.04458701185566541,0.07065116110118383,0.017059263161579758,0.00030769359654237794,0.006686499507976782,-0.0068310955003308095,0.02652226539449354,0.005751752473361119,6.404631046930332e-05,0.0019470267084083803,0.017717240992585457,0.21381997125422306,0.014782343000482694,2.1378592597323505e-05,0.010186138872408938,-0.009416198955251209,0.028865441738446154,0.013741997864088263,0.0001140266545470589,0.005403698030268094,-0.009957244052565982,0.04360834729444553,0.010087350324460509,0.00035991296804478224,0.01956050402478582,-0.021814561829984626,0.08734564784551986,-0.0006182136630147555,0.0001430464287275517,0.010557976843316087,-0.002465051792533134 +2020-12-16,-0.01193851131891134,0.07711286228042015,-0.060221688327261234,0.00016372309120603624,0.0002557799056078457,-0.04189991653203613,0.1260793716214093,0.049976179986508294,7.974062747293119e-05,0.0029793014543032298,-0.013021303903665625,0.03581129714463029,-0.05525329437047795,0.0001682021827594703,0.001972982598662705,-0.03705484889190845,0.043620414331591105,0.16622561326374408,0.0002866969788297636,0.013144929146767945,0.008956216899519073,0.022225188832765145,-0.005229790093414253,0.0002108516070378457,0.013324117705741382,-0.011536220710273224,0.0332930623662969,0.019704831396292245,7.5658295320889e-05,0.0067481865962487715,0.02393000318048368,0.07953752355248045,0.0006509253014730038,8.827963862351568e-05,0.019155351540199147,0.011903760711277998,0.09951951512463732,0.017467966161168795,4.101800665564931e-05,0.024040697863179625,-0.005374616446228203,0.004921119188747263,-0.04901548853166257,0.0008422254869437851,0.009572886175073262,0.007818212497386885,0.01869351704688694,0.00325443356192886,0.0001462440946718929,0.0029987391414244644,0.03650079117406296,0.030617905400256086,0.1127742780540519,0.0005827082400735414,0.008843915955319349,-0.009083729119350441,0.11765216586923659,0.007053932619367097,2.300843278379444e-05,0.000981092072585324,0.019606977619747692,0.0531837798002636,-0.0037777726128782768,0.00010951724024032651,0.007225569077846567,-0.017123530222274558,0.07571511677157258,0.015356550249237726,6.366086369780986e-05,0.009746178026130481,-0.004382975387409167,0.0040537553979196755,-0.0001667841854936073,0.0021087954917753315,0.0012911628909644357,0.04495331061281645,0.29816887369871614,0.018386061356706083,0.0001240656296714645,0.020892357362715663,0.0034439975611805515,0.022284585348276004,-0.01987094642952186,0.00023931312043582912,0.03458007638211756,-0.04474415616512665,0.25127663966116487,-0.010007072635622324,5.0158571854390016e-05,0.019344348791863884,-0.017737416314799446,0.09519539568018819,0.02267622475844593,0.00030708685281335176,0.010663432698027865,-0.04036034119778163,0.5317822008614972,0.006717087318087424,3.1495699861889195e-05,0.029706796577501183,-0.003914561421673431,0.04327484256070604,-0.004220485434442938,3.0222426100299677e-05,0.0062672661501391135,0.02731947157122336,0.08088721756068147,0.0008566762806210183,0.00010879655758935734,0.021106890706564817,-0.021579197636918332,0.11856210685083303,0.00240642609245899,4.2041844404183165e-05,0.01838291537221433,0.005616169336044989,0.017682175456055323,-0.014314674104704956,7.041770724302814e-05,0.012327267869095559,-0.009332691927421624,0.036660016976108725,0.015476576185844007,0.00011640264902615808,0.0031543333961805125,-0.011514092011605078,0.01115322512989034,0.006304997197206456,0.0005900717029896967,0.005139798708237768,0.001173273866035866,0.0037448278223976912,-0.0005604301543102091,0.00013187229108102506,0.01334652765171292,0.07200262965982018,0.2232590149011285,0.11041219494741641,0.002069943676754386,0.004787744490998508,-0.006025843006680245,0.058255350023116555,0.005048419898001048,2.659893155455158e-05,0.0010126655623389391,-0.07197193443577779,0.184122409882668,0.10397431974768756,0.0012779909985728031,0.00020031337394986102,-0.013717125199401383,0.1010373412333378,0.012882700518035833,9.040799469497998e-05,0.015310869716007649,0.046789439302557384,0.07735489253911101,0.04285516950679724,0.00014275963865604442,0.0023573917047021763,-0.042344748903645146,0.05229044842867509,-0.05775130550202641,0.000464816043321622,0.00018960667070196948,-0.03490299232905376,0.1285259296488497,-0.05999704834878024,0.0021048553185652533,0.0006623942035839021,-0.00597362710876745,0.020009626366889733,-0.09847856177273002,9.578323487355542e-05,0.01246602044432961,-0.04788184864822321,0.06435526640499337,0.05636112798424513,0.0018495411951915887,0.03579712400694932,-0.018338718616110125,0.06324667611532538,-0.006219250948623017,0.0001148807644882709,0.0008124139831077793,0.008861511388924036,0.021110815415217442,-0.032831261762583636,0.00017016222968266957,0.017841319476333536,0.044268851320422575,0.15207965935587928,0.0412707664535511,7.104623157578842e-05,0.002841655455092354,0.0645066378921177,0.22813455659232945,0.016719918453109012,0.002679978994155152,0.021225159180072232,0.026111813054061406,0.156350223326537,0.0055234454287296335,8.307667236885242e-05,0.00894091042050509,-0.010391690406007282,0.055486383380176696,-0.007159337703434618,0.00013581901160997085,0.002516723267835269,-0.02588269473078337,0.12935223086229078,-0.10956474827188491,9.464207766658877e-05,0.007630388752004936,0.008423000397167531,0.044636846447076634,-0.0007795937654418532,4.742646024680891e-05,0.001753191162514952,-0.03632203458689577,0.06639117957960072,-0.1302006781035031,0.0002667406326163138,0.0016864026207690907,-0.014411133485643504,0.05690682592956541,0.03544936751517046,6.29720967465826e-05,0.002416352787638985,-0.00364778589741043,0.044100346554957585,-0.13168179758541632,2.134118954855215e-05,0.015554380804602013,-0.021159544832450396,0.06626707247611958,0.05807803139467851,0.00011161369888061067,0.00596908472209236,-0.006752273394945948,0.029914850551126467,0.007903661518498485,0.0003557878816318802,0.025723817216354115,-0.04305965862310994,0.18478705218307548,-0.02411512972127538,0.0001334660602933974,0.007088974441488008,-0.004775340980142887 +2020-12-17,0.0002591524687155782,0.0019285894911466905,-0.027195395663184144,0.0001421026373508457,0.004170251079168472,-0.03301690413854585,0.11157129920312574,-0.049621344099444305,7.100589159786741e-05,0.0014441336777997384,0.007741785028063199,0.027483560210995243,0.007002050851518714,0.00013030627256229563,0.013172786725012665,-0.03409491604978512,0.03382350376087328,0.08189043203536533,0.00034020358655194674,0.014647943616355075,0.0524083010987549,0.14139708164953882,0.05441846706014065,0.0001939355418362445,0.019416674982566242,0.005909540482697718,0.013530917188454318,-0.06939721286214588,9.536153119643357e-05,0.01125985121297924,0.008089976474364097,0.029526611829424124,-0.002348675985510004,8.039397440499452e-05,0.01339705673658279,-0.0008730453361524755,0.006595919242413949,-0.0012585260476440962,4.538998941438721e-05,0.007902196698734777,0.05237010705912186,0.04438201942343329,0.19760732252281116,0.0009099576683248673,0.011327114829807526,-0.017511816067616547,0.03820792626029859,0.007320979346292187,0.00016026533899103258,0.012559190023807038,-0.004865351567521838,0.003744158692165922,7.439032433417693e-05,0.0006351617524653679,0.00268955191315048,-0.0007665730758584766,0.01023121742573859,-0.016574326232329337,2.2327959563048365e-05,0.004063412277338,0.03788328963820236,0.1320365575071383,0.03288438875726024,8.523236308603288e-05,0.026776291643855248,0.011818207126190059,0.06664619174988556,-0.017732408431426577,4.9915804741335966e-05,0.0014235617915857976,-0.009333452051224427,0.008096229474729202,0.0037136761324882534,0.0022484460128078306,0.0028264162766934962,0.03490133688883222,0.23794882416139485,-0.03088072115366714,0.00012070092755952358,0.02546146342564101,-0.03606263108164367,0.17726459159401173,0.028075794471384016,0.0003150240035966271,0.008371772834700248,0.021203289294749995,0.13915419286665684,0.02650881408572553,4.292080889726416e-05,0.0024763674824563897,0.0030957293948650636,0.017774310268341028,-0.08767583656752911,0.0002870496630782499,0.0068078423599158425,0.010169984650931796,0.1298048220974657,0.006822498185202027,3.251319901862068e-05,0.010126360047408207,-0.02388209355331831,0.26418005487355717,0.08734704593155646,3.0203277878211796e-05,0.012443713815250107,0.01529366879099145,0.05270049152696292,-0.017012765071909016,9.348022964375098e-05,0.03025049686024824,0.043930865504289464,0.31520543862784106,0.02482720129760529,3.2193517693711265e-05,0.02539014911495601,-0.003765837809767906,0.010574426238701543,-0.012100097915376503,7.895546246558593e-05,0.006469939212629784,-0.0004382006275457,0.0015688944910825513,-0.06871615436412448,0.00012771086685178944,0.0027122772256506856,-0.002542384610078032,0.0018913169963911953,-0.04081453150025389,0.0007683383080986193,0.02448952620001048,0.00023518446937087758,0.0009629982097978687,-0.005313653320372717,0.00010279433198646523,0.003672595383578547,0.03815801697007594,0.13350286814207518,0.01938293385525496,0.001834485888803055,0.01769563115983492,-0.017433361450912083,0.1755028051879996,0.011895828796863121,2.5543433117591057e-05,0.012868838554940287,0.05161879811481392,0.12943912183178982,0.10533800277397769,0.001303807876044319,0.0033274311912167478,0.0037667812618070754,0.03480438822316823,-0.0012911451612082538,7.20712476322306e-05,0.005261099834504168,0.01268279448380922,0.019424751695489514,0.008086209949072255,0.00015410079008115526,0.013271609526562814,0.020835933478483136,0.024415195706592015,0.019129755746737205,0.0004898427292530169,0.020375921121720042,0.017405919167398556,0.0759109530764968,-0.011316175492862556,0.0017772268235469143,0.0024413132377312055,0.009373280646261901,0.036995883554041646,-0.012485172276913304,8.128840218007909e-05,0.026359387581754847,0.0014584157670022566,0.0017119287475372887,-0.0032243245695297114,0.0021177410635429303,0.03225141916661517,-0.02081264853287141,0.06376927969247542,0.01441659252692337,0.0001293099296250458,0.010200916912268454,-0.04201074454097951,0.10157064214088603,0.0307603778089306,0.00016766891594060637,0.027637030176145896,-0.03861476375267833,0.18654931910349543,0.04550474878969291,5.052119783704901e-05,0.032255785701354324,0.031031799623248205,0.09892976347659437,0.010090121860919909,0.002973021497192852,0.011679074274609229,0.05807705989010605,0.30331883528687165,0.09399907437031195,9.524579550432653e-05,0.007978009251847685,-0.014743970519661666,0.08604327537725996,0.012036778914721548,0.00012426771252904662,0.011085674105988543,0.02183788715089651,0.1263652998229237,0.03893349201592594,8.173940724776104e-05,0.007398106588777424,-0.0234814871785233,0.11042065464315755,0.003865708957237099,5.3446919180773504e-05,0.00851934708910431,0.05835405733425443,0.12397744701975352,0.05062523142536801,0.00022948682785502942,0.03683309668632499,0.003684266189997758,0.012904197661189703,-0.001992595697358176,7.099607994137876e-05,0.010665767073895539,0.020775763782353466,0.20877223986977267,0.01564937738183566,2.567530040190443e-05,0.010236085772956307,-0.007545749777951205,0.024416549587765478,-0.0014322803065795588,0.00010802569580119907,0.01658817375294755,0.014754000438064298,0.05455210090975092,-0.0445630443617807,0.0004263107480736665,0.022781752738184138,-0.02992586414648143,0.13868704339795462,-0.007532334174700288,0.0001235897934154617,0.026505808267996214,0.005688054630813904 +2020-12-18,0.023136597338651317,0.11724315736306216,0.0041011110713157104,0.000208688523685501,0.01283157847087312,-0.02540157829689824,0.09672191340798744,0.02033431368349801,6.3015349456529e-05,0.005096658823111631,-0.004388363893639034,0.01260882178070144,-0.0075754702211573545,0.00016099979809536616,0.010222537809734455,0.029317831148622367,0.03306738929477391,0.07581501873553216,0.0002992263171183246,0.009626506753658413,0.018230751639537374,0.04093198311554199,-0.03311844455122107,0.0002330448771677054,0.009111692139549862,0.00495729811148346,0.014123067649409429,-0.010235517274292819,7.664127778388829e-05,0.009878218030184308,-0.00911125729364029,0.03199834675117936,-0.023956289015187128,8.354887872016971e-05,0.01236210909651794,0.022136298373680946,0.19264805175191818,0.023989890733762363,3.940388048334777e-05,0.005795889741146992,0.002270892027026047,0.0017995700617665414,-0.040196536897797175,0.0009731337001391062,0.010321253966813417,-0.04818650532345423,0.09697318040931677,0.06229955649752914,0.0001737543466613855,0.0038355961232751745,-0.02071294075600825,0.01394053624535651,-0.00986035115295606,0.0007262508292984057,0.0038181478225510716,0.016301065257739927,0.16617120784345196,0.04532823362416672,2.923364702237032e-05,0.008248694938202608,0.02753441311728807,0.08560465299042043,0.005879699122598566,9.55497358695509e-05,0.011030117940510975,-0.032170817813819835,0.15095913019511117,0.07370444260168338,5.998802098770294e-05,0.0007974692460035053,0.005411879983221032,0.005204118467668686,-0.010703936485686311,0.002028261537481753,0.015353434831959532,0.012861937686279077,0.09099941214209867,-0.0031562712563726228,0.00011631076767416376,0.009521979883040706,-0.026924303183454047,0.1382529525885502,0.013193984021306893,0.0003015631625499242,0.02253264340155822,-0.023803514131517878,0.14449448894509234,-0.00959773067022568,4.640350118657883e-05,0.017269710940862097,0.03535306507645407,0.18372547519177507,0.028617518496633354,0.0003171352380905517,0.03183652921427287,-0.05712797506387191,0.7915531571754751,0.026708926646727443,2.9950148240893688e-05,0.025773819903947493,0.0025980878676355647,0.024256296007522608,-0.001513964824737664,3.5785827168357386e-05,0.0036943882363717592,-0.02530477313984456,0.07448466265248158,-0.011365679614198631,0.00010943553082254613,0.015731733994300265,-0.021254035076768756,0.1381140870719122,-0.03710617036451866,3.554641377721846e-05,0.0037347944722668277,-0.021602497215967145,0.06715501797258991,0.035241813795438226,7.131861004719486e-05,0.016696865503284024,-0.004867582383128858,0.018478718663067693,0.005834088861681339,0.00012044535411609904,0.002296336540764003,-0.05930255422933607,0.053352998884592634,0.056905749399987084,0.0006353164862656349,0.01808643375809272,-0.02438459437012106,0.08206466731740118,0.0038106680228410777,0.00012506774844930137,0.0011546415275165613,-0.019231700760858447,0.06339409975956663,0.004151244681882806,0.0019470989772170555,0.005511143727344174,0.04509889569747226,0.4903010584487104,-0.06670838689309154,2.3652947741411788e-05,0.004946014753702473,0.00964836280741813,0.030069807264349525,-0.00297911169161929,0.0010490453213683497,0.012559795529126486,-0.009326022295958783,0.06598129191406199,-0.11806543173959637,9.412419563939658e-05,0.010869028464669882,0.006351451778528346,0.009446664672254306,0.0025330925005765856,0.000158686467315103,0.015585242874373066,0.042081050933639216,0.05688869957395885,0.06581137199463033,0.00042458484143515705,0.005265894349102606,0.005092708024207387,0.022444405044984767,0.0007791457055637025,0.0017586969944250385,0.01115574360878543,0.029008825614238905,0.11456201108717669,-0.07708592656487626,8.124186579395156e-05,0.009290131427648311,0.011893369946312519,0.013855643395422019,0.0003788255508382926,0.0021338084096681844,0.044540523289494253,0.011856171760189152,0.03943128866702947,-0.007886584753175208,0.00011912956286356849,0.000860394470561558,0.038696481498075044,0.09855105660739796,0.02593700744083175,0.00015917342802183973,0.01497627841722025,-0.001276797652121032,0.005159720270236223,-0.001803979679418961,6.039623177102293e-05,0.012143538494027113,0.008692323748978013,0.03496199315232776,-0.030266796904879198,0.0023564474974466765,0.005250356183835901,0.013739238971387378,0.0794355801254485,-0.012422795840306321,8.603757805382303e-05,0.005056125437734061,-0.014995649657764508,0.08259016671350455,0.010025032524917741,0.00013167330215560908,0.001828252988611743,-0.023004154874517967,0.1308170003844846,0.03068606530640919,8.317461416931558e-05,0.009048268573551229,-0.013513775662259616,0.056193929462563685,0.0021044345845029565,6.044142542133904e-05,0.008006830316811724,-0.051396410853364494,0.11699681201990682,0.047690454745158144,0.0002141845588458339,1e-06,-0.0032057543260033596,0.01588110047140087,-0.00021998676609051338,5.019541157606696e-05,0.0014220483094467985,-0.003231135134155601,0.03699889276270991,-0.19942514368323017,2.2531892974045512e-05,0.007585336830574513,0.0023480846730548842,0.0076023550280705275,-0.02746552651924455,0.00010796290731488483,0.0007524455921988195,0.018686970801597348,0.06911634241540046,0.013981229749402914,0.0004261731949495588,0.008496372025548957,0.0027025504674897055,0.015598462232285094,-0.034849089196128925,9.92347598403413e-05,0.017734640795867833,-0.0017367296658509159 +2020-12-21,-0.012630112877955115,0.09688054616751128,0.009673144099949363,0.00013786601970901363,0.004707062054683985,0.011981281633617447,0.04279733735402446,-0.007623618314496365,6.71733570845989e-05,0.0003591727768897672,0.024093980795447653,0.10193604188845255,0.037056207223477224,0.0001093397302561017,0.017362446946764813,-0.010077755009107051,0.011326824158647981,0.004924963764708303,0.0003002779859691812,0.012001622790238774,-0.0012500726498747804,0.0024915749366248283,-0.0704082487386685,0.0002625179910948362,0.017800832406379693,-0.00046171677033563787,0.0013822054252668075,-0.0045253327773464224,7.293731900660348e-05,0.002155376447792826,-0.002337672654989773,0.009333912890191294,0.00010395874705377275,7.348687988332322e-05,0.019183724411137977,0.024794440130448087,0.2235464214610137,0.04156314844092299,3.8035155716718787e-05,0.002725840455418343,-0.014879866126284847,0.013029901582556354,-0.037204471184036504,0.0008806486529045597,0.014517463836767174,0.024088159854613787,0.05964270044164654,0.012082752066791288,0.0001412239037503339,0.001782967253810238,-0.009035755137685673,0.007583587199033103,-0.009440870627838195,0.0005823902916927414,0.031263002197860185,-0.013658905306972434,0.1675626295477671,0.045164108422966774,2.4291901784263723e-05,0.005504043189346371,0.03229559685254399,0.08349230500819046,0.0064316341835577405,0.00011490737459716288,0.0015280733755594419,-0.01388159843910496,0.07241627599663374,-0.007182827740589222,5.3959151025118236e-05,0.0053609082716924595,-0.04018829626114034,0.04159255379527038,0.05111583564310194,0.0018845470331248096,0.022185230233811443,0.026806447759587664,0.18220051763767803,-0.006534218852348449,0.00012107145699224901,0.01863790562380256,0.010197596329420081,0.06392748771526593,0.0029877916887465334,0.00024701220412186276,0.02253060667037189,-0.0030197783820205275,0.018085232288993995,0.0023825539694347455,4.70340023459383e-05,0.02354173296992107,0.007614914643595489,0.04251596309312497,-0.021758444028605776,0.0002951887661321335,0.017761442212680452,0.026567715412422296,0.36174792735351163,0.021208889337510778,3.0477433358534455e-05,0.002183525451098218,0.008624535708216136,0.0874940295422867,-0.0673214646815878,3.293358550524757e-05,0.004714798986222252,-0.019956858080320303,0.05823792788558513,0.013787839839892856,0.00011038473272431345,0.01564182998125402,0.08323535086693575,0.7108850812491244,0.026716748485122926,2.7045859682226427e-05,0.012432959099776226,0.004705850565042882,0.011987617827876678,-0.06576421720659918,8.703273378137521e-05,0.00726615986293278,0.00749260119646994,0.030027835789236037,0.005016403504295404,0.000114092522119942,0.0016289699671183406,-0.007027117883092143,0.006726200297850847,-0.025546604879905066,0.000597149405883871,0.0029901308931625462,-0.031923416172211526,0.12834917803411527,0.024769779587032137,0.000104689295438661,0.010729102019694176,0.06391940483291507,0.1885219952977095,0.038816064103696084,0.002176155221206988,0.03567440152310063,0.005656544119048214,0.048306303745347695,-1.2630183371423077e-07,3.011130419372172e-05,0.002979756923853107,0.0224317403837373,0.06546994535371162,-0.00932357640274273,0.0011201914700367395,0.014571200196375207,0.017192282940752878,0.12484952580095961,-0.03374180662848027,9.170062506375666e-05,0.023108355519157506,-0.021768192672550434,0.03480422851297143,0.006881732437437193,0.00014761678676505346,0.007813466931040961,-0.017622998424151767,0.02813312606779764,0.010003201097838199,0.0003595553240419204,0.002112964218298801,0.011036488219249933,0.0449127342123529,0.004560185647842861,0.0019046349537469884,0.016042078364376315,0.028645994843261007,0.11204245551965214,-0.006029306976125263,8.202980167956653e-05,0.014431584503794634,-0.032814875122886826,0.05398825546916825,0.013412028517386218,0.0015109449915493187,0.007152202890847343,-0.007919439775993,0.024847725082199016,-0.018409076221551367,0.00012627688602727673,0.005587855615262402,-0.004217228185821478,0.009286827770769031,-0.0010143553078315972,0.0001840857135066873,0.03019604109094283,-0.02712629687092018,0.11630670913837572,0.019248362007654278,5.69245580760631e-05,0.017939329907611653,-0.007502869893569388,0.026111371728306767,-0.0031377674948499606,0.002723427295613032,0.01678721875835211,0.03285140106263481,0.17172076404604766,0.015569526891901993,9.516377354539638e-05,0.001045499395632176,-0.044400667145031845,0.23144512238490364,0.07761878677888981,0.00013912406142068683,0.008134227331768641,-0.027938924654347476,0.19015001880559967,0.05266478879197645,6.949635268594487e-05,0.005508985037789055,0.002632834686123527,0.012950578188597158,-0.022855381215650006,5.10954028437602e-05,0.03126972119840584,-0.02154693894340703,0.038956973156918435,0.005551726666929646,0.00026966822030044003,0.03379128367442477,-0.035879616138313135,0.14578487005081212,0.16112507252794403,6.11997587103773e-05,0.006243811766637316,-0.02699303368686556,0.28854114671038883,0.03848769078756774,2.413655195513598e-05,0.02104153197870715,0.011566890635940108,0.044315062940286316,0.019089990359588725,9.123767789787167e-05,0.0006529851504964179,0.018104364536219567,0.07278545912027631,0.006258372074372955,0.00039207272466149724,0.008748767205438528,-0.03377453493127443,0.17763067594202578,0.008566744679946055,0.00010890384293121293,0.019551559336181454,0.0001250164959959128 +2020-12-22,0.018956051040320502,0.1479166514268509,0.018894363085640915,0.00013552436676077167,0.004477061320083456,0.006348634908911118,0.025658236389595,-0.0015291936314335188,5.936959378261808e-05,0.00022610237514087404,-0.02809987680027389,0.08412672346027449,-0.018621013781358643,0.00015451393250784539,0.013299884033265782,0.017287584796145623,0.016605391605011392,0.019125636357160476,0.00035136059804012496,0.014883646430083594,-0.020125383048155983,0.04193057418117577,0.02212123953326679,0.0002511372404837349,0.0075638193057801255,-0.024688007653154452,0.06475527535965861,0.08653856943340472,8.324489861239206e-05,0.009718291644003419,0.029018149978321462,0.11499005904131704,-0.0916769027692526,7.40456038574937e-05,0.004631883687137659,0.007310668816465189,0.058606488108117846,0.004842506913611509,4.2776970759744344e-05,0.011690271965251353,-0.027443752999643883,0.024871388758698064,0.06612891330131908,0.0008509190619099281,0.00560010995329371,0.01846712704311644,0.044843928814525195,-0.016959828787184595,0.00014399836757690736,0.016077112183479174,-0.008640820560789351,0.007021566270489792,-0.043151751348458375,0.0006015134539700111,0.027090234772367185,0.003917817232664518,0.05635770496158754,0.004579548583413234,2.0716370162494867e-05,0.005091667793427521,-0.031801275072761655,0.08548579654041893,0.02441074454986531,0.00011051000753423638,0.025512192480034376,-0.006498599895567958,0.035895151859732834,-0.015376930021891139,5.096192478618015e-05,0.005273863669436848,-0.0015573314750971315,0.0013503816470144573,-0.005930163701477113,0.002249300640443105,0.02875331124084174,0.03198899139746806,0.21332142996974182,-0.10445515803315479,0.0001234008549651904,0.007556382124371274,-0.0013389426057326362,0.008971517360547143,-0.020985119158014334,0.00023110231253126032,0.01870952835566403,0.016795120579807046,0.10874804085566893,-0.011784537818276652,4.350334390526262e-05,0.003874869983811628,-0.02419991671141004,0.1379526763821825,0.01693507222022416,0.00028911494919022315,0.011796552111254709,-0.012155915776055298,0.18048062648778582,-0.001385097689473142,2.795035471083061e-05,0.008017854874525972,-0.0027398669395914095,0.028708412796528388,0.0009334535493165126,3.188614368586155e-05,0.0023689495815796924,0.028427159592209424,0.08107559835624506,-0.04474260279190792,0.00011294475324529479,0.0017712804694866456,-0.049771569596353114,0.3494175109316207,0.008946883177185857,3.290251132343035e-05,0.02226382864645162,-0.00903600443706231,0.028257845343464677,-0.0013033858111022225,7.089486403217376e-05,0.005741110742242454,0.015758350375480176,0.060460485425094614,-0.037306972757527,0.00011917570187881209,0.00020958048819023087,-0.021910823068372408,0.02382084822296509,-0.013201050669681315,0.000525747276154282,0.023723843112683836,-0.000602388698483568,0.0021353040303411387,-0.007708678374269434,0.00011874165689666856,0.017398717676591215,-0.0656013643832426,0.24305117530426618,0.06408955919173084,0.0017323447376985743,0.0032136008075904447,-0.034948975411171035,0.3087268176188114,0.024554474784148392,2.9110005485071118e-05,0.01307434978765725,-0.0028595769854235613,0.008532890923736823,-0.020319410860768487,0.0010956626791481083,0.0021064816658737003,-0.01621562700900178,0.11607505495687595,-0.01375691751356961,9.302945815983527e-05,0.0013189767368310768,-0.004477797721685771,0.0063697291025799135,-0.04675577910479022,0.00016591623903858667,0.004830096427421458,0.01529687056067715,0.026040036258283265,-0.051756839292937964,0.0003371824181844241,0.008632100033336152,0.018931977395112848,0.08300438566403769,0.00756613694328003,0.0017678494543244647,0.0026372899772631082,-0.009923674909278897,0.03612181759483176,-0.00011919039849020416,8.814411140156174e-05,0.006279286723529525,-0.04862070550567599,0.06656593998635851,0.030220334054412656,0.0018157095550519022,0.0015886001295120145,0.03526547318027148,0.10907713930057063,-0.0022901737914581863,0.00012809495117732198,0.0012119396423288097,0.005764234722452758,0.01575338603495609,-0.006162041909881691,0.00014832969981206588,0.007875194218503731,-0.0331591645310218,0.13347683086606527,0.013789298193482794,6.063335757997057e-05,0.034968911426285755,0.0211984534205904,0.0673039788653197,-0.014945222171997154,0.002985255420606295,0.005575242411824454,0.004204534848272208,0.022745233452557773,-0.03961215871228219,9.195347121826759e-05,0.0024698882301412532,0.0017806740587324244,0.009955403216546605,-0.002851984854486852,0.000129713853557104,0.0025055957061185397,0.004587439418619429,0.024683851372475182,-0.0013945987952199716,8.790348999245392e-05,0.0118379629167826,0.02933075836089688,0.1364196994577335,0.0183123081943357,5.403729469251423e-05,0.010558302937227449,0.02891176826925822,0.06623335691067311,0.011565428589497386,0.0002128272735096866,0.002614706747701362,-0.014597727469767122,0.058512515523110105,-0.08506166165314694,6.203700999738956e-05,0.0167332986217735,-0.031047837774542526,0.41691609987246503,0.041900887892116066,1.9213831581967465e-05,0.009226212173179548,-0.019777432021952857,0.05978675044742098,0.030891642473172123,0.00011563090264587592,0.0041341061854074206,-0.008539114311910224,0.032607958415449674,0.009686477100956955,0.00041277861533611326,0.0034866936888562315,-0.01177426450768544,0.05520309766223092,-0.06236928210571316,0.00012216368811693732,0.006357537739281263,-0.003252076620590798 +2020-12-23,0.015984334484176823,0.10452045367888384,0.007904304823249365,0.0001617260042789416,0.0059731618651579395,0.03073490396378378,0.09419820385187236,-0.06643739228454598,7.828882322855158e-05,0.00629239942089805,-0.0417743264684807,0.1517491058937641,-0.031218654162648914,0.00012734459603093394,0.00376655724000336,-0.028029311397886756,0.032492733678179904,0.017421383550407028,0.0002911347417534229,0.006919922838730012,-0.014833554594634545,0.029776126240136244,-0.0021089432070534415,0.00026066025130019535,0.0011681168955062604,0.012031342021651731,0.030243133000893957,0.00256933680640925,8.686284174681278e-05,0.01025572722257233,0.015359731261468643,0.051712560770987966,0.001082774488291329,8.715201409010729e-05,0.005647207399778446,0.016189311193358022,0.15094344349843508,0.01577717795916925,3.678008531620557e-05,0.0023231221734525817,0.020761472917376806,0.018045089978589852,0.003820684979562058,0.000887245684969704,0.0013894820073448422,-0.0006558355234889769,0.0015460127757009757,6.496679281765925e-05,0.0001483350371019073,0.016896502578873734,0.006951527162617033,0.00603292879679548,-0.007411319277222095,0.000563217814093392,0.00557722585339249,0.004184779095267438,0.05579178001557331,-0.10769051588574607,2.2352448829043293e-05,0.0007316801858793577,0.03604120231494986,0.10167097535597658,0.02590832374109023,0.00010530604892145613,0.029604293094333295,0.013419055716481595,0.08087647621235061,-0.037370116229296924,4.670480397603337e-05,0.023880901040646472,-0.005200109382814327,0.0038690253825136895,-0.021499317094570296,0.0026214034862492713,0.0030160341929499936,-0.04154372575938676,0.28653952554588946,0.05863186073533926,0.00011930894708745412,0.004107901170777003,0.000773394134893417,0.004312863540064302,-0.007059219243267395,0.0002776792252643434,0.004185098800746163,-0.01677843900281702,0.10530515491630311,-0.0070164758466575924,4.488103648891843e-05,0.02149902569154598,-0.032698572758791886,0.18075099358797692,0.08209746599617661,0.00029815006678628224,0.007937427520436106,0.015982109165444798,0.2268115821542395,-0.07738138460023902,2.9241462909241738e-05,0.010499955955305944,-0.0017483847890970494,0.016906608532100575,-0.007068491686273896,3.455112810199966e-05,0.004996627298499845,0.019283457860636174,0.05151216999319558,-0.009308390571120975,0.00012058625944344557,0.0012029876406838415,-0.038785105417167974,0.2891295687227408,0.01200623257801177,3.09859520067903e-05,0.004187578835533404,-0.012408851578227352,0.035998395241105284,-0.020899973371872858,7.642330783740132e-05,0.0027142035399600256,0.008099699105261022,0.03190831107784006,-0.011048685519920092,0.00011606831076296712,0.009732832083895132,0.015727540432657363,0.01497738666320658,-0.12511681324703852,0.000600205996250577,0.0018095689315792362,0.02404638969067864,0.09131864689202297,0.03597306516853669,0.00011083487153802438,0.007233634823385116,0.004089174021592437,0.013354404432497748,-0.023629824809348825,0.0019653062860189928,0.002588054507274762,-0.005619317190299155,0.061639163332241245,0.0015389280276850619,2.344277435356361e-05,0.017749909732002148,-0.06586742849818512,0.1713404119773013,0.04528516474087825,0.0012568463019503818,0.010301757650051271,-0.010461022209605046,0.08591996178017637,0.009331013813768059,8.107849753947064e-05,0.00440970485488843,0.019599246792746956,0.02891476077131617,-0.10417590338071674,0.00015997980546641777,0.00816822300955583,0.021085705103168286,0.031148807538773342,0.012214323168411548,0.000388553313439263,0.017139483950127963,0.007037532006415218,0.03403747996534802,-0.006977648091837822,0.0016025564093733768,0.00775372081405269,0.023931968515057477,0.09330794356572095,0.002279141679517739,8.229058982885319e-05,0.007144084002371851,-0.0003854531446018045,0.0005796200021287,-0.0015770152796630503,0.0016531239609398336,0.02972533062126343,0.04204320897858107,0.13542709006462264,-0.1705916796031018,0.00012300034968812815,0.0015097836547064204,-0.028002019957226523,0.0763253565986914,0.0014041239699795205,0.00014872394431149517,0.008036792751552533,-0.015137890921646534,0.06935871242729294,-9.147886323118444e-05,5.32694575408599e-05,0.008351616613748017,-0.03539721138970996,0.11367901933153084,0.011258827429334104,0.0029512553607560087,0.018717959955209758,0.06362138561845306,0.32181934156252806,0.03207597422621881,9.834030529077783e-05,0.010839182814868082,-0.010484227235684125,0.05552479163403012,-0.009872741662939806,0.00013693367765095396,0.007283374459438989,0.020019303685309603,0.11204335184918206,0.01876390550586121,8.451067566036647e-05,0.009067762985799878,-0.04576359868338084,0.24626373794409603,0.038402130923167445,4.670540003453868e-05,0.029489695822560346,0.03003424025163032,0.057337814317149495,-0.0007315943437351841,0.0002553906013227834,0.015093055620836888,-0.023958938062782667,0.11326237868714403,-0.012772138853298427,5.26012739489241e-05,0.003304201460563266,-0.0070769085354013515,0.0905371203642697,5.2399752991240335e-05,2.0167320072597297e-05,0.0027656011425376834,0.014645383722907617,0.0412225732384628,0.010721008048055241,0.00012418656691565896,0.009309998473141536,-0.00729442979246096,0.030425659855306438,0.00427085903340947,0.0003779021074057495,0.011798866301309684,0.012798454076303608,0.059370623583604024,-0.00019028828707199768,0.00012346893440120618,0.0010585733087595786,0.0008526770654729399 +2020-12-24,-0.021827629337093937,0.1288994605786981,0.019468741313906444,0.00017907792531066173,0.00046230202858626025,0.021731244850380197,0.0859350888168687,-0.019218433755121327,6.067707004283027e-05,0.011221051964207493,-0.009719433545952541,0.02939105512896699,-0.07851262540657979,0.0001529758876389601,0.01250090165164656,-0.018217119224930654,0.017501391104666312,0.004533637363424677,0.00035129744150036,0.000930923338219071,0.016765223417034184,0.03486093760467957,0.011190772884425052,0.0002516332657920151,0.009754521983306761,0.0003114605781853698,0.0008223164141328973,-0.0033003912259299906,8.270102001304366e-05,0.01121256496788249,-0.022798312968871522,0.09023793788368774,0.019981962569754753,7.413160520180028e-05,0.0031179014909895313,0.04807119757755704,0.42737794749962454,0.00104952299771704,3.857193685624512e-05,0.005166076938546094,-0.003640297657422905,0.002705702238831326,0.0024265518390891604,0.001037532433709586,0.007044596507139952,0.0016393967271027393,0.003980746068513232,0.0002691573440435724,0.00014400629442810247,0.001020427708386937,-0.03132225756547098,0.025094430924167015,0.056665324543803054,0.0006100986489522237,0.004085190600060445,-0.010979210240425065,0.15059182536412397,0.020066693853600413,2.172663624682089e-05,0.0044843978853285945,0.012513857153441343,0.03686444794639807,-0.008913061686175582,0.00010084038530072018,0.02180561856937546,0.023273831991765075,0.13750692259539515,0.0686134759177799,4.764366371514622e-05,0.0013625576201624658,-0.0042906791135815464,0.003548769427395795,-0.028043326609775394,0.002358148908597389,0.005936495323701952,0.02095285614217691,0.15154401222188763,-0.08838074275085052,0.0001137775447484174,0.0013781843524800815,0.03522337847862664,0.19855641573017327,0.01135506588819769,0.0002746978857075329,0.013052786767575217,-0.05018968435247083,0.28795551502226013,0.014248465476643733,4.909644194934935e-05,0.0009866238697374158,0.024618711366209047,0.16512279883454092,0.012381089425447923,0.00024572258913943106,0.0169611776695946,-0.04959815722475017,0.6259249937477976,-0.06804724159153659,3.2883154922259574e-05,0.021348170350530635,-0.003023480030265962,0.029628153741043727,-0.13187065983121202,3.4094492005598e-05,0.0017745244392466989,0.02472699007045089,0.06473754463286384,0.013784438189702887,0.00012303758178661023,0.0025329431084385803,-0.02580013892544676,0.2047873307588267,-0.00342883188875013,2.9101229321114135e-05,0.004373950818210692,0.01556213899456065,0.0468524085637547,0.02577682234878101,7.364016458214344e-05,0.0045238450943821664,-0.007983163283012273,0.034670211952058654,0.024965982601139133,0.0001052851477933607,0.005136979427648232,0.039199942693835525,0.03934910605582467,0.01895868507509323,0.000569411354590116,0.019674342401321078,-0.0074412485402192904,0.02617569256814924,-0.0021428662959463132,0.00011965576788411554,0.004513889256875927,-0.06561301827339444,0.19987762863504147,-0.04799306717986977,0.0021069052370916276,0.005300162385017202,0.03043438672393234,0.3207003746762908,0.018058280423186964,2.4403228293266598e-05,0.023648046434275996,-0.0438102060682994,0.1289023924948822,0.022869441274379065,0.0011111829976144657,0.011377995233511311,-0.03397127127426848,0.23413951992428933,0.07173578935408761,9.66190402221516e-05,0.004624496820358714,0.02924730102868493,0.042482442063330475,0.04182558650382315,0.00016248815506194044,0.010685181129404482,0.007232949599184779,0.009926395961184751,-0.04987382698171472,0.0004182421106480812,0.028604441859851608,0.024856635229038596,0.10195517457773771,0.017270627635322416,0.0018896588580085375,0.011309795039363834,0.006682236820728746,0.02651000454179732,-0.0014863246846999539,8.087279101640684e-05,0.008887578148616676,0.005037471869524749,0.008090897732609816,-0.029255123105804637,0.0015477225632736552,0.01272090172587096,-0.027668536548555903,0.0875050035944279,0.07610072971397451,0.00012527642124482145,0.018750194217698576,0.03501419234508191,0.09802425767428849,0.03444555019275679,0.0001448007886115108,0.035210059576676965,-0.0026750103709801427,0.010926174786450964,9.091099693271647e-06,5.9754587331925334e-05,0.011809199585763396,-0.007741686739508109,0.0253454922527587,0.0013686131155460815,0.002895029020530873,0.046968913875724425,0.012275217883157557,0.06366921037426494,-0.02676501620412389,9.590479391784711e-05,0.009396104757671922,0.01879315100988314,0.11857383756176115,0.03438034796827697,0.00011494008451868134,0.011273548933703564,-0.01009269505616803,0.056968970794596195,-0.007961690000873295,8.379487872310394e-05,0.01114816763737964,0.03593226373302857,0.17048234675163418,-0.08213516828301334,5.297275479250286e-05,0.007138536197748415,0.020552236929655222,0.03896722674771506,0.00507953485866648,0.0002571514593572591,0.02055363495164944,-0.01680770465189723,0.06475848543294532,-0.011301585243437651,6.453957495431998e-05,0.009280051807169828,0.035665460106501935,0.351621256837679,0.1206489596635189,2.6170016386984246e-05,0.008009793286913529,-0.0019771257725047864,0.006338125144929832,-0.05624517139441812,0.00010903914862336719,0.003104798711004715,-0.009109803886105668,0.04899821151105444,-0.006887226929428759,0.00029306015198405017,0.0006368255437280545,-0.10251038122912855,0.4707090788388182,0.1675526954933748,0.00012473463764355998,0.02421328322813883,-0.0005473989444234454 +2020-12-25,0.02285299047037248,0.15624269288444106,0.024228401403039064,0.00015467848400401495,0.005657840436397968,0.03092575446499591,0.10123215880659686,-0.019697755335102103,7.330141050625932e-05,0.017247477639115327,0.0011863055150543212,0.004354203831786245,-0.04989581964217663,0.000126033210176149,0.0027256938296747546,0.012224613741951447,0.012699690301676912,0.010170825203083236,0.00032487019698780573,0.02508720329676585,-0.021397382609206157,0.052373861736162264,-0.025148574261960262,0.00021376855784636213,0.001151602917834823,0.01597934532402336,0.042345531447754256,0.015384605316435014,8.239448324425273e-05,0.021263125775850912,0.0074827862814255235,0.03572257004079095,-0.0005674622498968791,6.146253946248178e-05,0.01880653451135478,-0.03359080102761954,0.2843396810872101,-0.00860875009145975,4.051179654554803e-05,0.02088714194822658,0.013746364603478075,0.010225655843308324,0.0024165798971206797,0.0010366722503302535,0.012510148470049904,-0.00530902459994373,0.013304369358319114,-0.005392867636252535,0.00013953473462348923,0.0030779787643192952,0.00020358638175035112,0.00015713376823688028,-0.00015053117415044182,0.0006332913508206369,0.0049761931314215024,-0.001735645592064342,0.023035715396662566,-0.03225286302763773,2.2453401118240582e-05,0.0057883418442858416,-0.04142425253829378,0.12718911173991168,0.019412334964521504,9.675107168327745e-05,0.017515236133419446,-0.0064402843246598495,0.03593693542653723,-0.009147231336202844,5.044589365403359e-05,0.001545660498194876,0.02930467981502587,0.02527731272388238,-0.1335733801680488,0.0022611483247764095,0.009927268590532138,-0.049869673104263885,0.2774719502200918,0.0552672871113713,0.00014790046607127667,0.015845969913908783,-0.0034838885998086026,0.022899367850756226,-0.05271381224898075,0.0002355857394078333,0.002768544864903053,0.01776951802256343,0.1257267871212431,-0.0146683569310312,3.981152251772499e-05,0.03127856419288152,-0.017356266122141098,0.08584279177326297,0.015027162775843554,0.00033322630287568444,0.0121793892703498,0.08418705291228644,0.9672605914270904,0.17017248082980638,3.6118694464346254e-05,0.011346908227831099,-0.00999372854612014,0.10438202006661275,-0.012985121641287001,3.198774023163638e-05,0.00531777779088906,-0.008161188659150265,0.02517247659497005,-0.15040314390498657,0.00010443599949701456,0.012902035917440017,-0.03688299611853004,0.2529279050048817,-0.013107263737444202,3.3683857561212935e-05,0.014437749400989004,-0.005108799855546023,0.015440877498013771,-0.030149154186281918,7.335408323919871e-05,0.001980885140063137,0.003017017599486258,0.011440179664523794,-0.002671795408499957,0.00012058508510575824,0.0013009141646648616,-0.054321354406666085,0.04852607506178004,0.05741211570929487,0.0006398394087761556,0.0417696630093665,0.011588722670154436,0.03769571968484814,0.0035274090065519886,0.00012939858870664254,0.010650381852437418,0.05927161172331241,0.21962232188295866,0.04457626890665642,0.0017321656932078773,0.00024346075517544348,-0.039350510304881584,0.30691271264545555,0.006931745159985685,3.296990428135713e-05,0.005864850283133193,0.011609839359427724,0.031018173252390605,0.009471158625777411,0.0012237177598052908,0.01462981064414482,-0.012739483486943084,0.09578238778476168,0.00027628134949072826,8.857105218993975e-05,0.011196485096918623,0.020160461851358315,0.034317968626876534,-0.005680949701668136,0.00013865140999941606,0.02049774352254118,0.029960464977420397,0.049317812095976646,-0.0031238796214792023,0.0003486973616797066,0.014079868676839972,-0.001283554383310337,0.003924748952768801,-0.04605372428602754,0.0025348527319027764,0.00213346652068974,-0.003978506985594283,0.017022384277425286,0.003999551801744641,7.498771237775685e-05,0.006820093160981394,-0.006827996345124202,0.008937931596492223,-0.0039742034040503365,0.0018990370819860463,0.032271356301947905,0.017652548124563586,0.057850355903690476,0.0012100210922559394,0.00012089752371634708,0.014088859986196498,0.006736062434957032,0.01776192691593257,-0.013690456631893637,0.00015373629171793057,0.02105859952383063,0.03372284752495103,0.14125243663253928,0.01803104295229931,5.826962400270914e-05,0.017296659388407458,0.04480955444656145,0.14151212191280013,0.008464141815541979,0.003001200709920607,0.013861795704991403,-0.03107486997085566,0.1575579527409451,0.06970965905143367,9.81091609796117e-05,0.009604614090787379,0.007268641340690143,0.041366911307364,0.009139667713499543,0.00012742684460271487,0.014659002476655653,0.013522022048650448,0.08296104758495554,0.007292905904548251,7.70932067836335e-05,0.0043708995758464314,0.08074121583034265,0.36566216511355765,0.1440094116289584,5.5496124189563356e-05,0.007445748692423091,-0.009951679419920261,0.0207715220727015,-0.01896578825650367,0.00023359172293973106,0.00826135660223396,0.02419747276819771,0.115058971447656,0.07113806235287251,5.2295449256834675e-05,0.011279628492164052,-0.00393270172617241,0.04057206690124698,-0.024442521772197287,2.50089329005261e-05,0.0006628712683670419,-0.010132589503617924,0.03421385699505092,-0.058569906114918614,0.00010352074228288194,0.0008961638112856226,0.009161420028346372,0.037538622147001405,-0.014651635187439135,0.00038469136501455563,0.008440989992700227,0.012644455179340038,0.06641716818592085,-0.0007382195740462137,0.00010904143608967757,0.02244522596953985,0.004196361678224412 +2020-12-28,0.01647464980923956,0.1070596426572481,0.010257298629322616,0.00016273350792537345,0.00958882221792818,0.017570372861030154,0.06439871707924223,-0.18458258067429112,6.546577125806186e-05,0.025335610848583233,-0.037157938759733465,0.12473562603980277,-0.1183576682392876,0.00013780288440498048,0.0017194190308407048,-0.0015565083012692592,0.0019261738226418617,-1.889337685655373e-05,0.0002727242908682945,0.0009797266259814609,0.0002575173091846321,0.000537838052965024,-0.0393316470850347,0.0002505259236477351,0.005658672882199462,0.003469365634290246,0.007951312513410592,-0.013251936747495708,9.527040009397863e-05,0.0024172359864999904,-0.0016766181483806398,0.006372355536157753,-0.010016860122583234,7.720119438767137e-05,0.007092975036684565,0.025536415605876384,0.2144391398667055,-0.10930421801000698,4.083706259675649e-05,0.02130972345070289,0.03939820399172348,0.03430235519019293,0.03533047820566286,0.0008857216726700747,0.0008743990355162683,-0.028201503727075028,0.06752893763398655,0.022240142039229138,0.00014603072279872746,0.0009238208205855395,-0.017216410567077248,0.012914502041732948,0.01119986460688347,0.0006516123454969094,0.013899605499466842,-0.010172737632875805,0.15332991431739815,0.017956005589052287,1.9771232357814665e-05,0.007030890472796417,0.03496563946241577,0.10425601975752447,0.02375207833535805,9.963028494840162e-05,0.0033298449686331613,-0.0012727014804500185,0.00710373860888874,-0.00023221130782444306,5.043144301540896e-05,0.007146892220204526,-0.0303373700398841,0.01980974646382896,-0.006588445208500428,0.0029869089502885834,0.024476433120452626,0.04191068336592738,0.2818410631478483,0.019731927604246236,0.0001223693298244485,0.011525527966673964,-0.007389372172677386,0.03364334736054712,-0.005865769501923795,0.00034010778508798624,0.015261832594805614,0.02030507686640594,0.1268115154299861,0.015056107550824675,4.510315283950136e-05,0.013199262000950092,-0.0015106240732874715,0.008489504204941814,-0.14731072415458343,0.0002932654363788465,0.023857286993551254,0.07571126909097352,0.9689802302073662,0.04068267175955244,3.2424690615145786e-05,0.014507584065579202,-0.007141925518734614,0.06803891373126782,-0.003073729984814622,3.5070314013988065e-05,0.0026376952200910615,0.04535917008279095,0.12755061896221123,0.08107117989393227,0.00011455268820607315,0.014851775993326922,-0.032897943627138194,0.19375176439586742,-0.0814699995436559,3.92207109734003e-05,0.016503018349433046,-0.010510032497905181,0.02967483039693788,-0.014870353164594423,7.852233321060614e-05,0.00349987289908404,0.00951071062736441,0.033934481001001916,-0.027143720550565395,0.00012815051393978024,0.003926252202380782,-0.02275484281101204,0.022085206380160212,-0.030925563111139562,0.0005889086578909387,0.011065991170690312,-0.004279339125354229,0.016146649768903638,-0.0033080736158208387,0.0001115527518682727,0.002194252695861099,-0.03526888277650987,0.12874504568811018,-0.044500612320707705,0.0017582488887216542,0.014839019157600818,-0.028220278446895695,0.25014795876448165,-0.08097176059743796,2.9009919690581835e-05,0.02124883016543077,0.038065704068158755,0.11703652858729688,0.05451037743039384,0.0010633682891470482,0.005812297630121343,-0.011930755896711737,0.08217540422006044,-0.020941123368942344,9.668336433068194e-05,0.003608463692182314,0.023096146547451724,0.039671021583079745,-0.05741670997060919,0.00013740784499562437,0.004760048921596907,-6.632032398917154e-05,8.297378553057083e-05,0.0009565821085654258,0.000458785463065972,0.008781484186888773,-0.013895134161507606,0.04952782027118961,-0.0006371121729578088,0.0021745223237551467,0.001197635345613908,0.011965212775547757,0.050955859296185596,0.0001417179992426537,7.533844754173733e-05,0.006249946350680024,0.010580930559543284,0.016781400239891494,-0.01536160290996512,0.0015673748018498615,0.001716125326543428,0.011912690707322244,0.03544526432382694,-0.0006797771236227816,0.00013315812872754008,0.005058457733521283,0.029629398343707307,0.08171437120786629,-0.04714135944516244,0.00014698897644039203,0.001164788296242642,-0.0453409886038979,0.2014984874041922,-0.038924606808325025,5.492032768597307e-05,0.00778228659107248,0.015406667078365955,0.05468738409737882,0.0012734308633206661,0.0026701742659955446,0.01942849902697614,0.039187953118767285,0.20095035710788375,-0.007331524663399961,9.700728909157266e-05,0.001792326305586955,-0.0013595932408384413,0.007552456765025292,-0.025104196233548665,0.0001305514000029239,0.009077959911699733,0.0011752125648861987,0.006657571344767691,-0.03865331452848934,8.349285189437056e-05,0.003702807708551994,0.008722408555476398,0.0402978918971576,-0.03461827564168714,5.44003247720736e-05,0.006985095287532237,-0.014447374327593198,0.027261907933273943,-0.03416233198437247,0.00025838189118690836,0.013876827397660984,0.005160135263347096,0.022365030155990333,0.007076259098346437,5.73727905213074e-05,0.0011185595156307589,-0.018493243774161495,0.1932356000601502,-0.022037284860854062,2.4692055237085065e-05,0.014354464402361537,0.00729854192910943,0.021660708006678717,0.006100833329991402,0.00011778023700635732,0.002679890502842215,0.0033384145284515265,0.016511223643725703,-0.018023411313552753,0.0003187050702581693,0.000504035594351884,-0.02830036938494866,0.13327613583008083,0.0032589128730844672,0.0001216218226793798,0.011595442867243995,0.0023329069303755414 +2020-12-29,0.002652666230266563,0.021948691072101054,-0.0037795402802026992,0.00012780874392195256,0.000718942460178991,0.006081832625507491,0.023629281094232735,-0.020597903164180822,6.175817899615214e-05,0.0017157020380661324,-0.04149041125005703,0.15000133818722253,0.012368345406566032,0.0001279528048718935,0.010582722845614333,0.009737515570288423,0.008915588539143385,0.007798967294959208,0.00036860905887103445,0.009182333922959609,0.03523058642904415,0.07870789690769964,0.061757851136320374,0.00023420671164736459,0.016564847647269117,0.0010696290836046216,0.0028504638973360684,-0.012297371499459527,8.193404537650722e-05,0.0042680765901768935,0.01489255500901805,0.053196839802380866,-0.0351938479130136,8.214350589672374e-05,0.019486485291251205,0.03666872622423599,0.3291130658553421,0.06697586580210632,3.8207560919684366e-05,0.0019027080591611744,0.011114661309382807,0.008768091528124924,-0.0018858785073958837,0.0009775431688932386,0.012562533314669248,0.03668688235421549,0.09388787731879435,0.003244411841479789,0.00013663538129956375,0.019890388899822267,-0.008559493569998905,0.006872140064739049,0.00015817036406703478,0.0006088081053533553,0.014353112146528485,0.001778431453941333,0.021471250981623263,0.0038118784361162845,2.46832630625471e-05,0.0023321755226154792,-0.027978776253673586,0.07357370386691588,-0.06920701073289096,0.00011296844041194233,0.01855707484903186,0.013248710551875962,0.06908107054489195,0.024525742939701944,5.3985405918584484e-05,0.00950400052885435,-0.0010910674829516234,0.0011670858498164442,-0.021179135813765567,0.001823357306736922,0.010330314976873223,0.03300725368313472,0.22844975632071182,0.00013025762142550954,0.00011889697344282085,0.011104569806319754,0.023767280446859218,0.11740957477596863,-0.09808077009235446,0.0003134615000210472,0.018903511217768055,0.05563904890944687,0.3364306531422291,0.03390631634832571,4.6584892200861666e-05,0.009114650267822912,0.04473782103085524,0.25226347396853704,0.04370933634773269,0.00029228549470231436,0.002100618033687174,-0.10155787615284081,1.2210897301036403,0.11365997568410191,3.45140769191719e-05,0.03449642127573364,0.023387217607405017,0.23396482473943492,0.12506308104824876,3.339717228858174e-05,0.013213900816561866,0.00037121655829403915,0.0010383823732594156,-0.023802141793793707,0.00011515764859093676,0.014629286628844444,0.009210074150378156,0.062237316495496166,-0.016684789703063866,3.418256466300188e-05,0.04753077095868068,-0.001228965347788735,0.004569654591791013,-0.00735920323314344,5.962572129482542e-05,0.0029566955529982944,0.004232325255981322,0.016213082953683188,-0.06950296204793747,0.00011936088408138504,0.0026063126848655154,-0.010672814303605236,0.009040572954620563,-0.08063168235414055,0.000674774340525473,0.007113920016464897,0.0034043461675650516,0.013444746141550626,-0.014922144470323155,0.00010657788978681666,0.00687607385871887,0.03546435607462478,0.1187287074828255,0.017601573420891144,0.001917147437916513,0.028057164379276453,-0.030555388805243867,0.2531107302138534,0.0029933143631731157,3.104269749869171e-05,0.0008920421130210445,-0.011194517467856687,0.03822792217936108,-0.026337355611622513,0.0009574055812048034,0.025409330861720186,-0.009687579564697181,0.07235425289891045,-0.10517314016676028,8.916139651671143e-05,0.011759054151586219,-0.007122748747729604,0.010376692147566072,0.006831005671085066,0.00016200711152243794,0.002371855050662156,-0.017932738574155897,0.02342236201694623,0.02349051508051715,0.00043946049642820716,0.0021126440205969602,-0.02328886395404335,0.10449939054773724,0.02993000080861009,0.0017273680697723857,0.006283550548361978,-0.0268927922825299,0.09020105295367353,0.05964492399451748,9.56565383797692e-05,0.021812448215897163,-0.017709279368712534,0.021280847203757197,0.006290230622973155,0.0020686602404593464,0.006301798021377223,0.015122831922211942,0.04579526947122443,-0.00537723962255328,0.0001308363870817108,0.013760973892667522,0.015880679313173333,0.033916648198840826,0.003041719306871747,0.00018980887944905213,0.010791493197254887,-0.007305993506233191,0.03188606514189281,-0.04747199342849762,5.5923233934149605e-05,0.04541917095768669,-0.03919730541658002,0.12704714095992709,-0.0296899568863894,0.002924215498628984,0.0041199753887758515,0.0357572881236368,0.17261588105075637,0.004982423529131181,0.0001030444001333429,0.004150024557018819,-0.01749701116602233,0.07963948616527888,-0.031415128046753844,0.00015932950396961256,0.003760998602513209,0.008481138626218077,0.04810069737489603,0.0013762750128090916,8.339720344931455e-05,0.007272979607731396,-0.01861035697562138,0.08915001242359809,-0.01645129039730274,5.246633048240986e-05,0.0087582891949754,0.025010832056546778,0.05274858620723916,0.00282683972932463,0.0002311781106920551,0.02669932789970628,0.012655858657425778,0.05079741750427168,0.020611608701935402,6.195328768494848e-05,0.004381432182895264,0.0019705883833138777,0.023610485455297467,-0.012804223926030924,2.1533879924498776e-05,0.00131378761397538,0.006965884389214594,0.0206175012845647,-0.01880524566100506,0.00011809980936208633,0.011312375177728169,0.004135556542409422,0.017694080325953997,-0.1584450435922067,0.0003684121456539564,0.002751797875148886,-0.003742864367515976,0.017785833858377183,0.0016721884719555465,0.00012053180337365425,0.0047010508920828625,0.0012330274345773785 +2020-12-30,-0.017368839351717145,0.12789587014997386,0.005395919534578679,0.0001436153500750421,0.01358323218541589,0.0317166577287628,0.1043255989352423,0.04437155740897868,7.294693608956342e-05,0.00516809439261099,0.004783837049831694,0.016294071560054423,0.004757276956133551,0.00013581381954024115,0.004243822988038318,1.1333723599090704e-05,1.1530781811164457e-05,-0.0021514397683445726,0.00033172768582234914,0.005645844974164754,0.0038574481662462445,0.009337992091495018,-0.0056039740456566445,0.00021614458986419314,0.012793137089976115,0.005488877926979415,0.01547809498380394,-0.017868492869694608,7.743063208350203e-05,0.0010962931307729668,-0.010316755520559948,0.03420854391636007,-0.1997758748277803,8.849085787224864e-05,0.025860028387929786,0.010277235211819967,0.09370521418522264,0.0012101687906908257,3.76106771838255e-05,0.0049487794984990905,0.0054434303261694204,0.004526394374166818,-0.02292489351979809,0.0009273956720031942,0.016385076888256543,-0.0023423560864239295,0.005151127135893127,-0.0003286726887178399,0.00015900564210137984,0.01389124258589511,0.02417041639716518,0.018395602133883037,0.045012204042016134,0.0006422357584952566,0.019515349431619387,-0.0008448675584590918,0.01161944041845532,-0.002330161740658151,2.166836837890421e-05,7.455994743823234e-05,-0.032938506451443715,0.0951451479416943,-0.055531763517684185,0.00010284147454626517,0.01128344008396603,0.0290526517675657,0.1712221717368106,0.07939622623650643,4.776255993490692e-05,0.006380571994629367,-0.015032426930520603,0.012394519887318153,-0.056186087734367396,0.002365496803004823,0.01121892610489708,0.002485274617235214,0.01599576861416967,-0.0073770030429275955,0.0001278560781580358,0.013294503305356191,0.06396595131115063,0.3984930475082898,0.09095467939046284,0.0002485629224271649,0.012861245109849623,0.011034890688087554,0.07501703820611033,0.004700197233439873,4.143516550335379e-05,0.011423883243569924,-0.026492682960779574,0.12248548109563799,0.056957405586021546,0.0003564742282007331,0.01289293893340436,0.0500509407137814,0.8147717938064278,0.03294678091949916,2.549215144083055e-05,0.011638314576848595,0.008332683837834786,0.08748985521881118,0.006962181487351962,3.182064036173516e-05,0.006568665762649051,0.07599267500775071,0.18084248048085588,0.1887740302742702,0.00013536114920516574,0.0027132615449226693,0.0012723974278413413,0.010294030902683448,-0.012168396874569049,2.855155005444357e-05,0.01030990750566521,-0.0035480868151613735,0.010317415332814495,-0.0037568372944996337,7.624312812260429e-05,0.00706133662491126,0.008493015370750284,0.03295163399021059,0.005093416495223384,0.0001178510756112213,0.0009365885912692874,0.07444057990129017,0.06234946085344926,0.08861152709108953,0.0006824213517174563,0.0032669263991640584,0.02672600126292108,0.10466041847868293,-0.06413538085124909,0.00010748244242560272,0.0073757146172927935,0.03746732922324474,0.1431512829758127,0.016350369840396818,0.0016798738377418302,0.005320200357160567,0.010202037092833228,0.1047295053264328,-0.05203473430712667,2.504955650916683e-05,0.011923923002884638,0.025411699996049444,0.07596007721495913,-0.0004895743675244719,0.0010937538424958843,0.018996736198939733,0.023066260811444708,0.1673490337858477,-0.04275613362214254,9.178667386287748e-05,0.008532196448464834,-0.013212140418363365,0.02028720936763145,0.005230321203872554,0.00015370792357856226,0.006877218930287428,-0.033768374516808565,0.048041068059529166,0.03867393916645779,0.00040346086516189,0.0028718621825482584,-0.009166333033102844,0.035387128986922874,-0.06002812099038608,0.0020077084375749203,0.0005209183374640836,-0.061875170011591804,0.2141215063161972,0.0972044922264888,9.271424919430482e-05,0.019513293905113128,0.010694876173822325,0.014317951835206634,-0.023369768848626342,0.0018568296198575097,0.006640001470599704,-0.020176498874333586,0.07045157044759948,-0.008819659373613327,0.00011346741620305707,0.010685711339139039,-0.010244806364008733,0.02124982489869328,-0.012983542441480273,0.00019543789421531095,0.03123367922250706,-0.03614193874089443,0.1472084416106849,-0.14025542298618485,5.992287684942623e-05,0.01807489036531986,0.038369819683721926,0.10115229531531891,-0.008158813616617775,0.0035952746627981257,0.02209391694535777,0.044268930145909276,0.23745674976812142,0.020824625704351507,9.273743466589359e-05,0.014828493896088929,-0.006437037004623707,0.030668125983629235,-0.17020187415369958,0.0001522157358491832,0.002406528612879751,-0.024109038824231002,0.17177535572539768,0.031297037541470805,6.638466048811125e-05,0.005130376814476543,0.020625022523600486,0.10266602257485305,-0.07596586468569923,5.049112986399675e-05,0.010925736243299598,0.016361280714154262,0.03224421288605355,-0.0189172235532922,0.00024739727416041773,0.032641298027409116,0.006757070746241989,0.02338417327884983,-0.1191947043582326,7.185397877516006e-05,0.01014078489841571,0.0343415661756655,0.3360591617481303,0.08351756330765021,2.6365477632033577e-05,0.012054910689344266,0.00563599602949246,0.018072690449324042,0.0019405750998184874,0.00010900761381377239,0.0026792589602343906,0.030797208291372898,0.13246382317185684,0.0679687456947549,0.00036647304416312246,0.00997587620340331,-0.04136021507289753,0.1899788783526181,-0.10875962588547347,0.00012469506477741317,0.015907193139504113,0.008764728669880003 +2020-12-31,-0.01961325496756994,0.1502581311406321,-0.10870118270856233,0.0001380378782034544,0.0018216811382788071,0.026531936527523965,0.0924103838316735,-0.0034484519975625278,6.889039932063245e-05,0.006083825449621543,-0.022923167016227975,0.06364533085208869,0.006423953331133296,0.000166611615224565,0.0010332319101821951,-0.003411962790635338,0.0034422935482822,-0.000226491274569138,0.00033452165730712605,0.005431341204790252,-0.026109330526802907,0.05782779732969529,-0.002013698624228265,0.0002362418626619127,0.0039247260463605525,-0.014021171083737096,0.04224671634732444,0.02707048576303061,7.246663071246128e-05,0.01354656568050059,-0.03857508503337693,0.12061289638298654,0.08404124321215849,9.384324149706864e-05,0.011788928020931039,0.04520006482301231,0.43889712081889776,0.0773239429740565,3.531627909493043e-05,0.011206489937187796,0.020650670449242976,0.015074818746138433,0.004869001037425039,0.0010563962325386845,0.01445228545306254,0.010483698456905569,0.02139274317926723,-0.0403670531299517,0.00017136018791421854,0.001955040326874493,0.017605383621467175,0.011693101064831984,0.0017960031161788326,0.0007359361689933884,0.009567738332518488,0.018601950029728344,0.23034283802637917,0.005793660157816517,2.4066146129029324e-05,0.0031793661631944426,0.05016964330968031,0.17403415662024074,0.041934743306753446,8.563623361225226e-05,0.023101045981728772,0.01517634328212853,0.08911587336768145,0.009696140119357146,4.793733563116529e-05,0.01610435375634541,-0.00536578940448588,0.004969231716085421,-0.0052805090430047075,0.002106043550751126,0.013858060393931133,-0.007069362353559013,0.04530017550181903,-0.032434833766837576,0.00012841994099346195,0.006373443626787534,-0.016681282188249484,0.08181766990974108,-0.16782542970889328,0.00031571161077754317,0.008725567857967421,0.0028862717385653436,0.02119438786227994,-0.04549049462940534,3.835988487885316e-05,0.0251719536841539,0.03759821137278621,0.21044047309324995,0.043622653707304296,0.0002944589255684118,0.00046932335460959256,0.005763638896382534,0.07280344694225284,0.001151045376364891,3.2853001460324766e-05,0.024210816115794256,0.013630829450282829,0.1651086478031423,0.026076422531595204,2.758253464403852e-05,0.008463052689761948,0.00480512241847887,0.012483519505852634,-0.00568214250494147,0.000123991001566296,0.019098709314340635,-0.03853372856116322,0.33020783234999085,0.014230020345949473,2.6955416060860774e-05,0.010474194354704312,0.009648759683618892,0.025879125094373265,0.00602819446110306,8.266073873321915e-05,0.010739902501703223,0.011990801115635403,0.04441620678855134,-0.039600302703636,0.00012343983395658004,0.001870511579322547,-0.013603390921526307,0.015570289537856007,-0.08097434423889381,0.0004993741430525301,0.022400067084311064,-0.0002369148851648009,0.0007769906307701069,0.00019647379001884132,0.0001283401596082611,0.003941209769041325,0.04021557691963447,0.15565489324469217,0.005773233333034407,0.0016582526503449452,0.016651957807996887,-0.016449569917539816,0.1418513806415221,-0.15869404688121896,2.981969353109324e-05,0.0008380745565407482,-0.08549804512617652,0.2607084510770694,0.12127372739254627,0.0010721914637381966,0.009811647277014963,-0.01324762564480994,0.10394097419826824,-0.00469929080038365,8.487443719114853e-05,2.2037485077799034e-05,0.00040673915994674577,0.0006614858251641265,0.00029353827303243366,0.0001451245317192217,0.010094065545238055,0.008538428461521242,0.014082710907213943,-0.0003134290759236389,0.0003480131013718589,0.006855479505233606,-0.0013437379748559007,0.005347609162283121,-0.0041853603778406944,0.0019476246979078194,0.003137796353818953,0.017902846982541076,0.0775078531727945,0.008074085993656818,7.41082848678608e-05,0.010279171923812136,-0.011845828272148891,0.01464930518514562,-0.03452759531574803,0.0020101367223340034,0.027816105213572386,0.021159623916402432,0.06020209161590134,-0.01135832772148779,0.0001392555139977366,0.009126002392424278,0.008380739492834851,0.02144879068031393,-0.000159400249850823,0.00015839443036589314,0.0034799918082674,0.00874505637905685,0.035618748642159255,-0.09766796953145646,5.9923597876119e-05,0.014229815849835802,-0.02986108294612976,0.09001182723743023,-0.03282925810798791,0.003144300421011655,0.010501067474724532,-0.0231974709470301,0.1427551379854359,0.03904962788186903,8.083314233376717e-05,0.012840828635953962,0.004479108380640776,0.01958239133840661,0.00037926065440823287,0.00016587717491852133,0.00459012388903781,0.020159565935406524,0.11744103260709127,0.034935210189088725,8.119139707818052e-05,0.011206398161127458,-0.04687220130458819,0.20945764477048648,-0.02195677731565089,5.6242747644269073e-05,0.019789419263471983,-0.020566946233306873,0.03649367717728007,-0.001501617967797936,0.00027477776126937716,0.04256619195536289,-0.015115666014222776,0.056723876450341,0.0091032437347644,6.626371202081346e-05,0.0038418932569947344,0.028686043830216182,0.3231152986352763,0.05168801539140136,2.2905745018532362e-05,0.002050493484403281,0.004453301883261461,0.01215145712008884,-0.004147777214115738,0.00012810401521034086,0.003558558709947191,-0.007712163003021255,0.03271403763755369,0.009791465895875862,0.0003715951372228729,0.014508999753915494,0.00040400638108108275,0.002192438881478734,0.005115016163489432,0.00010554375109336032,0.010259654964268665,9.681012168313353e-05 +2021-01-01,-0.012164266031031884,0.10116923714410443,0.005697077484303003,0.00012715224081986725,0.009540932317299551,0.010876908199259372,0.03369445794654975,-0.0045527387974142654,7.745643700496711e-05,0.017531350004925624,-0.04339903351867385,0.14626225254513403,0.05001514863156496,0.0001372603193364038,0.010836820813321255,-0.011745677345808617,0.011145367015086668,-0.012089659562996583,0.000355673532743151,0.0017877855217556266,0.05327193699377809,0.12080220177819465,0.12227931456100166,0.0002307392149008546,0.011359698369833745,0.02249565231342189,0.053283129444142416,-0.1252554324482261,9.218401229983287e-05,0.0008644460216001375,0.021324652913967686,0.07794091152708986,0.009444632990622518,8.02798118175661e-05,0.0060881522177991965,0.042105543593050784,0.3954686550328914,0.05241404634767388,3.6511176393353154e-05,0.0015479411376335386,0.013428736909356693,0.010934502059955348,0.00023291991505966527,0.0009470675171247952,0.0054544561399198594,-0.013391488315421203,0.03257775382863808,-0.016115246354437746,0.0001437373374469726,0.007388440091409662,0.012893840051718876,0.009135053045915664,-0.03375019519571432,0.0006899149614804749,0.010318311886470645,-0.008597749648574127,0.1207347677994396,0.021193439513421623,2.122145872881886e-05,0.002064084467017515,0.00816258329373489,0.025999350916255725,-0.020343332468310882,9.32644552891229e-05,0.010831650997484947,-0.016220664332679473,0.08186414352678033,0.013771647021511992,5.577463450120673e-05,0.0031480853171040133,0.019923184861523936,0.016824743118514656,0.009319052762639028,0.0023095815159447967,0.011939943511902898,0.04476205647333227,0.2956438753640032,-0.0010901883552363115,0.00012459288784085176,0.022786745809416,0.016642923615675372,0.0909634143531019,-0.03163576498789796,0.0002833159979556852,0.022071114064484025,0.009915474112251051,0.05968450678109327,-0.1672718033205624,4.6796441717589654e-05,0.012247229814758998,-0.03158645591119278,0.16147031426409694,0.05385059098556627,0.00032239998765466954,0.00749594482860419,0.018785360100422012,0.2407249271871987,-0.020137728887888246,3.238386585337728e-05,0.017271774248549105,-0.005724083477012821,0.06261890387767284,-0.002892909392451908,3.054092641076384e-05,0.014969608508033399,0.011030215809819058,0.03343892895534885,-0.003194787087270043,0.00010625623095325529,0.004254550495958746,0.0029635243962273395,0.02037638375147882,-0.011669130240274652,3.359493241263515e-05,0.03653420250365784,-0.0019359887014323998,0.005159108380202244,-0.09284331858581203,8.319659443735907e-05,0.0007372736730711761,-0.004773111492638146,0.02022756010574075,0.01402948678220746,0.00010789633035365982,0.00041216895247759037,-0.0870259705640375,0.0801766737712801,0.1259413095973406,0.0006204065893685014,0.020731617004760543,0.007621962647009876,0.027201509089158898,-0.08802697606351258,0.00011793964782471343,0.0047430241277830465,-0.004078892022860021,0.014534446486414014,0.0016338102552398604,0.0018012039314039235,0.02366536173936834,-0.0386175866289995,0.3857985602219609,0.014098879581149882,2.5739892109070473e-05,0.0010068225573754935,-0.055636957200203965,0.17511136795232235,0.031643760081052984,0.001038772154532035,0.014348903035637184,0.03332719210618245,0.2880839550529473,0.0826305339296439,7.703805284549525e-05,0.007438046838982846,-0.003220788558189944,0.004974071228186201,-0.020088066902793775,0.0001528254210433567,0.005205120639400483,-0.03035234935016102,0.04213089026608065,0.042034701137720336,0.0004135191150520694,0.009079712992455538,0.02150288553302319,0.09275965529876254,0.0003794349235859855,0.001796751260029996,0.01639484092866116,-0.012536908785390604,0.050841915246756075,-0.0138805266458153,7.911501853403066e-05,0.0061235863070879075,0.00357260804987071,0.005034183947718185,-0.027936320496722202,0.0017641417731349813,0.0002188712986200363,-0.018495803741923826,0.06138479330663459,0.024494134707172675,0.00011937914033579103,0.004524869385815892,-0.030295094444951532,0.09479194195684765,0.0271161436825817,0.00012955711434376905,0.01105615556746849,0.015252047851739654,0.06547989106519138,0.026808833912739125,5.6850480010887476e-05,0.018902202854558382,0.007613282891010051,0.026481931546888497,-0.012924574126866522,0.0027248359891882488,0.012177196654598103,0.004054751875291634,0.02108326611880602,-0.08349263773479117,9.566805916953889e-05,0.00881638421731146,0.009773647077469614,0.05668788920330675,-0.028693078861096247,0.0001250337195747312,0.003197928249644251,-0.008101697311001431,0.04370090045415652,-0.0004432178404060463,8.768682120491647e-05,0.018011584802983607,0.009741225056793687,0.034620878489158326,-0.01702742136988494,7.07168469226259e-05,0.0006517062044193331,-0.005728780843691344,0.010646397247485678,-0.0616608110371408,0.0002623547524439853,0.0068834640870477914,0.009998750722703181,0.03538543332826277,0.018090500562509174,7.026444152366416e-05,0.012770432653015588,0.00766965795726899,0.09549053431830648,0.004977548969241056,2.072272950804624e-05,0.016641707003161355,-0.02507701318117221,0.07630830415003943,0.06556713731959869,0.00011487167948349813,0.0005787049823488502,0.012119603995145257,0.0528645761423629,-0.02360028365953025,0.0003613696258366378,0.005928517847296627,-0.02213968571746378,0.09405846292461773,-0.02470338667221669,0.00013481722083770665,0.0016499780733718182,-0.0018157195932517296 +2021-01-04,0.012861350100876258,0.08747177582563123,-0.18723375276621093,0.00015549098000619993,0.0021719696979639403,0.036664563607839984,0.1402016158386353,0.048746671316988656,6.27485981637839e-05,0.0058163998210245685,0.027862540780024325,0.0752204630722482,0.06639303403895813,0.00017134913600689618,0.006962791750503277,-0.02081308056882675,0.018801232551302133,0.020523799990296597,0.0003736094911661539,0.009608699993403007,0.04314754360288291,0.0844482133756326,-0.017671421724533558,0.0002673396546681056,0.004532297411164065,-0.005240442045071998,0.014711579813158751,-0.01639627148973827,7.7777745436155e-05,0.01157716686637919,0.01738314925594728,0.059991132433866716,-0.1475883579992622,8.50219877620004e-05,0.011524856026194524,-0.008027753715633594,0.05810028291330855,-0.014850714910599442,4.7382111195470855e-05,0.0034131897894978877,-0.021926685800992524,0.018569911925481197,0.011437280143219621,0.0009105586745732222,0.018472108709929085,0.012737652970179498,0.025504904032928426,0.016867273845849365,0.00017463351891551092,0.016087630338486127,0.011282922955072813,0.0066766126872295755,-0.029728283061417508,0.0008260185443464469,0.010664278358855297,-0.0014885744593640595,0.02047703776990549,-0.018068564890049574,2.1663380173318986e-05,0.004745420222974857,-0.03316211973196353,0.10128762438086142,0.0249933307689501,9.726059803470951e-05,0.0011988907763920307,0.011090851864998351,0.05051543729520523,-0.0040933575881758315,6.180201087555155e-05,0.0027266219554185293,-0.0032625066265005273,0.0029931573608328356,-0.015545435894464919,0.002125909757128239,0.008102754372220276,0.01074672250170737,0.07904072540197195,-0.0014574941058098203,0.00011188638062217659,0.011451470004378926,-0.009064569001086152,0.047150104433983084,0.0027312329006812016,0.000297695816899237,0.0031560031276003314,-0.005922090771734658,0.03908447982340206,-0.0032654644118551863,4.268071433907465e-05,0.008890501912164362,0.03804157880898381,0.2511069085293494,0.03961694169908831,0.00024968168063130476,0.02238794707617062,0.016485162203718467,0.23610364694140315,-0.024443350476349004,2.8974820925658324e-05,0.0069161186816930915,0.015308224708964669,0.15614232522340502,0.033986638817169124,3.275562535644928e-05,0.007259202369814538,0.03983734590199681,0.12814529958177615,0.01755080740279462,0.00010014066513071544,0.01604797861606306,-0.02518290882045392,0.18741025889750698,-0.01982899130543208,3.103879899787098e-05,0.015239426410986447,-0.004846103144325741,0.013444394766445484,-0.0034663170233406528,7.99150875509924e-05,0.0017877643203561156,0.000730478435411819,0.0034043165010341145,4.033192523136854e-05,9.811288929727801e-05,0.0011674767869827424,0.002473684605843659,0.0020509560562108823,-0.0030596400709167353,0.000689387703182484,0.004760911365329819,-0.03626021627352662,0.14729954340554,0.0004080466080400733,0.0001036131789690939,0.00042263296744207755,-0.08937232930477618,0.33636275096286594,0.07178592698316569,0.00170535326112547,0.035684381576184344,-0.036732486273146986,0.38260872825207265,0.032221971740764584,2.468753036402743e-05,0.004553322417569275,0.0046970342507880024,0.014822333666453457,-0.002008105362662404,0.001036044504354528,0.026683997291384577,0.008511509612605647,0.0672707273079735,-0.03456207523507154,8.425702370614187e-05,0.009159055367405184,-0.017433743796379898,0.026114595776511425,0.004798260361377035,0.00015756245456940618,0.005317427309865721,0.019109111863566976,0.03120191472610696,-0.07946164961290933,0.000351530628775423,0.002427051126705116,-0.010758550140217458,0.041334489555681676,0.0012800067162584067,0.0020173976497795862,0.00026427127117565697,0.03904139664320692,0.1524410909521159,0.04243198248936053,8.217007203632296e-05,0.002203010300471526,-0.1247235116904565,0.14496807176067883,0.2488051091262232,0.002138716203250085,0.008259269340333544,-0.021201419592663487,0.06820543670658244,0.026951373924932683,0.00012315781738143347,0.007416631244080501,-0.03742168268374013,0.09467014700021716,0.01557861459849775,0.00016023988938260595,0.013660486747636648,0.003423606656912984,0.013992677299266698,0.004388871956590329,5.9716860670194404e-05,0.0046550570364638985,0.0059852301200997516,0.020031155807832445,-0.0013513348488855517,0.0028319977354279453,0.0012862582324899383,-0.03374038368113021,0.14648095444820936,0.07997407122028197,0.0001145801605625273,0.0012991846538473253,0.004188690725731961,0.020048486044426998,-0.0028203260419193076,0.0001515156512958663,0.0009077949412491633,0.00430753455510076,0.021459988788461108,-0.035916372655978475,9.493972688593642e-05,0.0004915709106386262,0.010791015955946255,0.056362505766138896,-0.018365315105629734,4.811931505728134e-05,0.004546151051638376,-0.022746677383648828,0.04036220073402323,-0.0029987831016472454,0.00027477203119061943,0.0002928383775962532,0.025366658030871635,0.10528896554267345,0.09662452911750383,5.9909372575074455e-05,0.0009293254487813738,-0.009900180459544196,0.12848548032612023,-0.002780175780531956,1.9880181451864814e-05,0.014839935800535841,0.005691561776380917,0.0165862309928099,-0.006583469698756171,0.00011994791664672351,0.0038865237822158965,0.02537693026305863,0.09090919521450354,-0.000172270756055115,0.0004400066538470827,0.0018920916636504595,-0.029176155088746096,0.15636629874083796,0.0038105373322373515,0.00010687021878803082,0.018795969138012975,-0.0034349210639248603 +2021-01-05,-0.021846935023795228,0.18812956580655893,0.05874972910957334,0.00012280613060770574,0.01359616130314861,-0.06755084531061416,0.24545712693897592,0.1430298458896635,6.603370543433236e-05,0.0007603002634293764,-0.019209974717565276,0.066565153913329,-0.030007023479011796,0.0001334987063505399,0.008005227258161546,0.024998685772392452,0.02571265814813312,-0.02598809583485839,0.00032812404596873463,0.023464220214527442,0.012406992442218975,0.029454897914757153,-0.0016050154756539125,0.00022039755285147155,0.015122973260313437,-0.005056070223442755,0.014056165342567288,-0.01680589375519769,7.854037669579583e-05,0.0018854117681463601,0.044986954333105775,0.16383618898870908,0.07917676036249913,8.056874706014399e-05,0.01238733753498922,-0.006208632052864224,0.05534979180335828,0.008717296548913636,3.846613447415994e-05,0.009770467462266176,0.022469807000665802,0.015892821757664516,0.004678133490246943,0.0010902927296320417,7.565395507309306e-05,0.03222391729328335,0.07702404787867391,0.054882084935187175,0.00014628974471502968,0.006303022395684997,-0.004269333830767938,0.0033451799896926132,-0.03418605221019035,0.0006238281709268313,0.006767710637870876,-0.0039047052371088894,0.04864688423473209,-0.03077354378509398,2.3919715772406273e-05,0.005904003378161536,-0.016890964584220857,0.048841100539400925,0.004614791864244268,0.00010273538382628349,0.0029909377993776387,-0.008834914694129123,0.04823966539227603,-0.0016347625796024029,5.155370619059165e-05,0.007034986362467224,-0.006785012387007689,0.006155692587058224,-0.03138901178557231,0.0021497932465197943,0.018496759500974118,0.010112771681160797,0.06642823178264622,-0.09251864794539051,0.00012527650176376824,0.015169115961111748,-0.03391123001320251,0.2063140831366702,0.0460869286013022,0.00025452057770000567,0.011879446126200864,-0.0007812464481055345,0.005538357495476579,-0.01826486177782916,3.973452505312604e-05,0.019485019712120098,0.005509751721612701,0.03183022332974596,-0.04213491654707865,0.0002852851402303857,0.0023394358740696825,0.03606846591077091,0.4811567367151382,0.0015968100924396468,3.1107945648962794e-05,0.0015488847573362802,0.01833829797987867,0.22278132545941648,-0.04999173120754957,2.7501852652047583e-05,0.004900708665321649,-0.02397976874716034,0.07142436224275697,-0.04198919062473071,0.00010814871788645709,0.007542993396491173,0.02801332471108142,0.22381719095839306,0.016777887443057863,2.8911031750601417e-05,0.005442509637467958,0.020013939906332833,0.05515366570941882,0.06952223929870081,8.045176775865161e-05,0.005314034961531249,0.004738185310499551,0.016491294792890774,0.0011695063836902704,0.00013137292893387282,0.005308805562388011,0.02942274418686389,0.025485821664333535,0.012801657290188272,0.0006598726029758142,0.02043498014043946,-0.021060356948602345,0.07483107261116752,0.011528967489846267,0.00011845946487168767,0.003165145138063184,0.006636005552989534,0.023797432795341245,-0.0018946760262664542,0.0017897641572629636,0.014014672380370357,0.032728576146711146,0.2994211621941349,0.044787372206976546,2.8107797454543308e-05,0.009109826873424175,0.011252471919494496,0.0377826521737981,0.008355382380138327,0.0009737035814338599,0.009560156654607552,0.009252995644270854,0.06790282801940858,0.0028552446233172583,9.074446380360458e-05,0.00961497185522877,0.016400976508628196,0.023906413179871716,-0.08527460331121807,0.00016192006578434604,0.010254095643447859,-0.010213621232577108,0.013315788678308588,0.005096922825628753,0.0004402676420995739,0.008485355240780194,-0.049361374700871305,0.21572688223493408,0.03171201511107573,0.0017735086883527236,0.005673607555584961,-0.003966108190845944,0.016622403867615078,-0.0008785114143835714,7.655280306893707e-05,0.017935791625235325,-0.07801029421592914,0.09026086382810976,-0.0879716276246101,0.0021484716239780813,0.013136615067104862,-0.023163971579229517,0.07202189394868862,0.029152827491250758,0.00012742789886195866,0.022467777209327293,-0.01612602486378198,0.03984687741891855,-0.07105791307965,0.00016405648691296133,0.010301442160525396,-0.0037535584640172163,0.014957156111258097,0.000519607547469557,6.125028067782335e-05,0.0047623907539818214,0.012507898233042184,0.036466123570982424,-0.1490810327901539,0.003250968771419615,0.0007786881275006249,-0.05189623266455596,0.2700064237138547,0.11041126149167543,9.560977719266579e-05,0.00025591859567677727,-0.025610680980714062,0.14658956271300458,0.05387703025276032,0.0001267006554164096,0.006309323203356905,0.001852299800357995,0.010541771495858263,-0.06284402865958078,8.3108679219295e-05,0.01173253257484947,-0.023573206579206314,0.09868506261745078,0.002932954480472838,6.003639909676533e-05,0.01480853656635942,-0.04056015507572007,0.08730809041282722,0.01355244417518171,0.0002265032883071612,0.0061207704779473494,0.022819899855365904,0.08929692255949138,0.05653297267202819,6.354649743221733e-05,0.006715725135607566,-0.014697472482427405,0.20577779902391,0.008166776434619497,1.8427882034490346e-05,0.003688764426209081,0.014278900675577598,0.043271761426617206,-0.08330164249778343,0.00011534510352763781,0.01142720370977412,-0.014260130094202307,0.05888123252974838,0.021111892715618467,0.0003817460624679907,0.000870717653240924,-0.0033333585851876403,0.014482325841499895,-0.0037420178289967127,0.00013183038388387815,0.008700947618134513,-0.0035650893342884563 +2021-01-06,0.010426978401526043,0.08189218998547473,0.004483526802699563,0.00013464882643302771,0.004024826182950288,-0.00832916248456762,0.03562463466347879,-0.0028249504281263756,5.609981662275724e-05,0.016895407039276757,0.03329944896337513,0.09563460084963801,0.07329326426718025,0.00016107168494961644,0.020666136471300403,0.027902742214918966,0.027529525406117333,0.06536295099693615,0.00034207081206295907,0.014890578392059903,0.03128554185422987,0.07462160535966511,-0.01781170763874176,0.00021936981327232123,0.010716055865556337,0.018682644652766756,0.04524392143583268,0.004143284408491785,9.016227341045464e-05,0.008014412991627702,-0.04201237654806168,0.14947279631674043,0.08602171436900963,8.24716996920861e-05,0.012155988274517086,0.0125795686252214,0.1071600424959554,-0.07801942070645945,4.0256080324664335e-05,0.0008370423790099719,-0.0011124990905165841,0.0010127524499866653,-0.004218691857600638,0.0008471126141537749,0.0029561339349289846,0.005072575297807696,0.012861089134573974,-0.006229573947923731,0.00013791536105085684,0.003575023380375724,-0.0005412878593235481,0.0004147319083562367,-0.0019774268741054118,0.0006379478739971187,0.013140329675010713,0.0168275563011969,0.2736542085697782,0.09324528495267635,1.8324904082113894e-05,0.007622183800141241,0.03454252460077119,0.10017353075374175,0.031073796345432298,0.00010243588692837995,0.0009040736274882088,0.01796552656193103,0.09464458602938461,0.02481726859216494,5.343256134748899e-05,0.00023112911650178684,-0.05687034227999503,0.04694173345394163,0.17651182609636046,0.002362923663646207,0.015669521546967418,0.013101097244822526,0.08473970990297372,-0.1936324403772037,0.0001272251012378604,0.017715480415290488,-0.0006027770516720949,0.0031684258175671077,-0.02043209673415497,0.00029459230493455427,0.009446743204149306,-0.02029484187793816,0.13179101462617077,-0.007089368399302268,4.3377131241396374e-05,0.0013639415358661635,-0.05398565979032557,0.2608314215694656,0.12764418804167116,0.00034111853088173816,0.0024789678990849245,-0.0236850392589342,0.27474521910874505,-0.02223775701868856,3.577455137512706e-05,0.001886435950555408,-0.003580768853502988,0.04286784130269244,-0.0004890271563234949,2.7907850128173985e-05,0.009450282846620058,0.0015406377048338142,0.004353101199837677,0.0013454659255822201,0.00011400516160233074,0.0069562768063496415,0.011252063363500075,0.0739270265591318,0.006757385037680127,3.515776885667682e-05,0.006144206209442411,0.007006571976002215,0.019335958176571962,0.007932617199709302,8.033730744591961e-05,0.0007269794606185602,0.008940959591894669,0.032207565522865834,-0.008039570844443795,0.0001269330830705131,0.0009749427795783918,-0.0323278605659694,0.0390475247087969,0.008431309922057035,0.0004732155609287501,0.01911384152635198,-0.029209208653766187,0.09973112097895719,-0.05977166390646322,0.00012327502509262646,0.0022397226340772854,-0.013434326685084949,0.04603552776537044,0.001866994067779361,0.0018730180093615716,0.017512381095566153,-0.0003950955982323259,0.004127273981146635,-0.02598987741467663,2.4616204256402603e-05,0.013975708623209569,-0.02095719631642054,0.06499764880058902,-0.0026946738128657585,0.0010541606592013631,0.02058826902090526,-0.010536945275140902,0.08175694028109094,0.002863426196099041,8.582538058274219e-05,0.010937886862044138,-0.016923838626420242,0.02445860474345239,0.020171754863272485,0.00016330992638231712,0.011812378811238675,-0.025171960731664802,0.04287285947067266,0.016288277290129077,0.00033700667970700264,0.003771151726231721,-0.028861748928506386,0.126680367007232,0.02694493144210635,0.0017658901034429077,0.01710725387132148,-0.03788744056711541,0.1462219757574346,0.05753975116850407,8.313291149584591e-05,0.02044597818483802,-0.019875723453322086,0.027800355360822378,-4.025575495545473e-05,0.0017772551847921503,0.002349243851216155,0.02991051600060215,0.08743352245801737,0.011256297424877779,0.0001355382788960869,0.016772005169178643,0.025371210053258996,0.06320203128615087,-0.09542346234717393,0.00016273108515132417,0.028198417731969176,0.011856675588479814,0.05326588819951202,0.01548929724730871,5.4328496832689314e-05,0.006556854743527726,0.038452043801027805,0.1229320459727047,0.02036596822711586,0.002964642816769988,0.0420658982707021,-0.004083453431373105,0.022642604302618816,-0.021886841093243865,8.971019503963698e-05,0.012427643473860028,0.019122259115214937,0.08804797921493072,0.02520081792659149,0.00015750001164482218,0.007964867497578692,0.0053196065369178515,0.029420807828444057,-0.024486188009630486,8.552116659617331e-05,0.0014645911576975333,0.0070368550201002,0.03279287547503969,-0.030193436442511087,5.3931996591634055e-05,0.003428495409466821,0.024392195362990608,0.04413259403536452,0.012619885252938425,0.0002694764568905809,0.008254598733751877,0.0451436257625265,0.20562970728991228,0.18040925070102926,5.4591490960343235e-05,0.009948865581372385,-0.0004666642752767915,0.004837223898078231,-0.13387246113611043,2.4890845614086078e-05,0.0025523096566700946,-0.015807194971626273,0.05035996364176282,0.033595669333127395,0.00010971812234569478,0.014757959124109573,-0.006678547981134057,0.031771838824339635,-0.16046410896820287,0.0003313352718827225,0.00529009842959573,-0.026743933370105236,0.14239713236274013,-0.008231731033341414,0.00010757115560351894,0.008808213397759283,-0.0012999487214425125 +2021-01-07,-0.0284755320368866,0.20675863073782988,0.03385043843857111,0.00014564473300332262,0.00811812181752562,-0.008770799678817593,0.03675862556891122,-0.006908866102603194,5.725197252254351e-05,0.0057517162250213085,0.00025008188675104107,0.0009809563677059866,0.0040534009649119684,0.00011793148060763132,0.004440395914424695,-0.018073240459033,0.018275779605757804,-0.03164543673357272,0.00033375514631231175,0.003987296370813146,-0.0063150207761655955,0.015270260205434292,0.009023735252207553,0.00021638448516682007,0.004136397350674485,0.00369291732846681,0.008090279176976843,-0.010713216041487205,9.966732835096018e-05,0.004265255560008917,-0.002332082179001847,0.008758324593525551,0.0009293930277884174,7.81290725290465e-05,0.01144588814762751,-0.014846187101078451,0.14961203363249787,0.03226969547532879,3.40288300474272e-05,0.007103116504308199,0.0260398862890481,0.02093435979807325,0.019571550399321843,0.0009592331652025502,0.018702253307227953,0.010453820201571378,0.023079591347246232,-0.033536193065632755,0.00015838308495815477,0.021942398368268425,-0.026851463850812485,0.01936882347143017,-0.03302590116995622,0.0006776244756150142,0.0008611683722897759,-0.005327114784565919,0.06380397218773366,0.004753616627393106,2.488095965978269e-05,0.001389951067906964,-0.03826206124774896,0.11975041292559775,0.013210562225203578,9.491664541554537e-05,0.0004149829639036619,0.007910613684991703,0.04420762852807577,-0.008599319757044088,5.037032770188774e-05,0.0012224974239519106,0.018782640266829895,0.016231871399219725,-0.000401109437978701,0.0022568932629195267,0.01675257844196385,0.015981939496479115,0.10156524473362966,-0.0057399078254633815,0.00012949007148999728,0.0010085950777447322,0.02222827943812069,0.09954320039601687,-0.06234900514010801,0.0003457820782059875,0.009717852683066389,0.009494386470825213,0.05530469794410465,-0.019170618886814015,4.8357722315483235e-05,0.004874361202966343,-0.03845432598563236,0.19107284896206755,0.0534220513290783,0.0003316904991651767,0.004281554461323328,-0.05959524435235822,0.7570245817155319,0.03327574586152218,3.2668700106053446e-05,0.011426519466059343,0.03845053995513521,0.4655884978310126,0.15645591014250546,2.7591919180900333e-05,0.009040363626472044,-0.024004410783634404,0.07005778085669717,0.021789301732486586,0.00011037162315488404,0.010085913414824366,0.020292022002123416,0.12482833215581612,0.010132002457579961,3.754953236345209e-05,0.021326855295095447,0.01255640145483305,0.0318983824810718,-0.11374399917905703,8.727179602039305e-05,0.0035137706497433497,0.0021146930043368186,0.009886809465998231,-0.01425696822248453,9.780020373081743e-05,0.005199731518748998,-0.036607794602571665,0.029212824516035518,-0.019462259827450184,0.0007162680470630155,0.014214918825791348,0.007027645926531304,0.019704886605771778,0.012030001234402525,0.00015011425713176384,0.00325025614497544,-0.007621820125308831,0.02264288758055371,0.0005726764876239109,0.0021604591524765513,0.006213987665918163,0.011390525468090286,0.11075735429748897,0.004669126540122859,2.6445597375292762e-05,0.004522824404304403,0.046525655499036006,0.14656971061001525,0.04854604445613751,0.0010378140359127432,0.029227699909814938,-0.0054543780732159396,0.04486994234543806,-0.12862343421380068,8.094972351514813e-05,0.008540223538695919,0.030275113212168928,0.0474006220809809,-0.006610576731829382,0.0001507464594572375,0.0009100048061028996,0.010199012114225029,0.013621496682397097,-0.060453560286888725,0.00042977108468414497,0.015499000666856671,0.018661520781549673,0.0793297677038601,0.001966092980128979,0.0018233128442943355,0.00164502980429673,-0.005182499682330427,0.018054793093240817,-0.061347442214910966,9.209523040540651e-05,0.007434781253161736,0.10840759451384432,0.15348781921291957,0.19929849677460046,0.001755751241028671,0.03429261067659694,0.030881503199044126,0.09437334006281087,-0.04028973988774414,0.00012964779733593498,0.0028637989602857375,0.012816091432068114,0.03875339629495592,-0.06441761348111202,0.00013406215729873505,0.006739030632626107,0.0071173138614352705,0.03309165595261548,0.007232692255680825,5.249422670890301e-05,0.011914048130197023,-0.06248985561241603,0.21132068227044384,0.06931419806553749,0.002802757832886033,0.0013860816831272195,0.006668230590775038,0.033046305301008896,-0.017514123437673727,0.00010037562660796464,0.01024383930702612,-0.043262761864868396,0.22831228831224518,0.1408300904962082,0.00013741866925139973,0.014929185117025172,0.04646828816319852,0.28051758298663365,0.18911703880771952,7.835113360954818e-05,0.018525518485848106,-0.005687821548267171,0.030218117382740023,-0.010808526115027226,4.730705940310083e-05,0.015215849361834509,-0.04933575527075691,0.07363909503259057,-0.04728125015108217,0.00032665005260426995,0.028777195353532795,0.013381366932261177,0.05162160701462583,0.004892227723021079,6.445896610098354e-05,0.0054530491559015605,-0.009207612797400441,0.09905297919744357,0.0028042585712340384,2.3983402225674135e-05,0.0019027169580345272,-0.010210301663888715,0.03309149945580899,-0.03640781185590581,0.00010785271732670598,0.00877697485222125,0.01226405868096821,0.059261006318227234,-0.0027244742998255977,0.00032620691928042126,0.004847000952076453,0.027527618924816474,0.13076501391571207,-0.0771691151173517,0.00012057267028070771,0.007120134595599739,0.001536125589979499 +2021-01-08,-0.004436109778690119,0.03317159392203737,-0.06436691304634912,0.0001414238085445282,0.0064745691240499035,0.033253329285891545,0.09358273427198188,0.019053885633733728,8.526090327281014e-05,0.01724670515373922,0.008098411408608834,0.027784800731758413,0.011795971483510071,0.00013483099942578116,0.010660572376856277,-0.019226624458658255,0.020881124575073597,0.003705878540368222,0.0003107542060717294,0.016222741740784904,0.017848869942166917,0.033293680369357294,-0.003875030373085308,0.00028050892993793786,0.0031142247006440277,-0.00324701756242832,0.008518710501344407,-0.004838789460461214,8.322571175303447e-05,0.0034848589502205563,-0.007428664823020972,0.02634449056034745,0.0035647413437800177,8.273910411387995e-05,0.014977753752781629,0.0643712540589297,0.43247334910780794,0.09776835773199594,5.104241743760781e-05,0.013293027681726837,0.008347105841019671,0.006043542907842593,-0.007954486376207043,0.0010650968423540914,0.0017923254517355125,0.024811129824869133,0.06434941735385075,-0.08146544551812931,0.0001348229447548738,0.015317190829031817,-0.021004288172508344,0.016198773706050943,0.02613111179695193,0.0006337970126611344,2.9082088401250882e-05,-0.010105790605327746,0.11533707344638582,0.014556932822457248,2.611103922977661e-05,0.000516636868494932,-0.004126688976116865,0.010928208510868386,-0.03964753642229687,0.00011217699525037752,0.002174654195789879,-0.013768351750201739,0.07631065237019043,-0.13494144181317771,5.07877069184157e-05,0.013653045671287986,-0.03934080274971449,0.03589978908683557,0.040066795243763095,0.0021373433434018936,0.00629638745615472,0.04550858262330082,0.29085767385471023,-0.007387759703383526,0.0001287552334908756,0.002805856004563853,-0.029818198630626652,0.1481865644267919,0.041104770304816456,0.00031158805906243903,0.005551826643800208,0.0101341302781676,0.0581904562902821,0.0015301648362506031,4.9056400223867345e-05,0.01371107614246215,-0.027122408805271538,0.13745905881471937,-0.0022030310358826448,0.0003251933823145972,0.024120727450390327,-0.026273251934344533,0.3598429663104305,-0.005870936989909376,3.029919173853025e-05,0.01662464083994178,-0.011502586523128962,0.12160367243668406,-0.0578510388859071,3.160316124200107e-05,0.0016635323880840993,0.0038671185424301417,0.012035646952240185,-0.09372160884656514,0.00010350010754310136,0.02273223160197721,0.002474238921607105,0.020318970397699317,-0.02537762398572593,2.812757639224972e-05,0.009338452427361796,0.012476438217949281,0.03534335283100754,0.019309518969695818,7.826367848346718e-05,0.002305725039388284,-0.015313831091447369,0.05957890703006821,0.08523814157703373,0.00011752761318453261,0.004840464895289903,-0.01128384382454765,0.012571143240070798,-0.0052415633922532085,0.0005130478276753696,0.009914645335838248,-0.01629569252693529,0.06719984363886282,-0.03791332167081816,0.00010206822637926103,0.004804391688593604,-0.027201389976933676,0.08844572791903096,0.008347401999885,0.001973937560353297,0.020101988052079522,-0.006297026028231336,0.06202850675309468,-0.0012863359530435577,2.6105159883703273e-05,0.014839157218344319,-0.052684797116298435,0.13978307614792662,-0.009922883963105204,0.0012322589698750108,0.013231297112249029,0.014869022822669201,0.11498748767718601,-0.01743664450153847,8.611077263304837e-05,0.001916148402019331,0.019625145793767312,0.03068305643030109,-0.04470034455478994,0.00015095922558800576,0.004765962719504661,-0.007476177120508219,0.01109418198328813,-0.008808540065547257,0.0003868015538942685,0.002385657920143943,-0.04731332882932904,0.223998926516751,0.07447023476208539,0.00163714787581667,0.01702472869468204,0.020711308880996326,0.09130898085571622,0.012787178948976652,7.277536974396687e-05,0.020280783787932452,-0.012240703710709844,0.015600041588018289,-0.04182297382203544,0.001950553297145012,0.02185202815220802,-0.05665267209016599,0.17884619083311015,0.15852586481327777,0.0001255037609569478,0.010071995372039844,-0.03478351457060023,0.08475746503986142,0.03769112115703439,0.00016636266870002008,0.006099556746782292,-0.004987214085384459,0.026595820283455588,-0.001178100188406127,4.5767642975322464e-05,0.009799831806475525,-0.03192165458623557,0.10248961271451175,0.021904338265229202,0.0029520492578791074,0.008958749513794223,-0.00635073905484862,0.03148841873428701,0.009757851119515729,0.00010032611314720736,0.015361192021082326,-0.005214125952990517,0.024300837109182852,-0.024121912809394234,0.00015560411143024318,0.0008261321335823473,-0.0025806624053203724,0.014104148050556379,-0.0028083947903841354,8.654321718813755e-05,0.0006730554953031826,0.006808431377494566,0.02888644527797098,-0.02976647990850787,5.9237995980413915e-05,0.018889606288084348,0.028928389819841208,0.05865126418653584,-0.03871792453417285,0.0002404785129571074,0.015364502640306019,-0.0011153006351212768,0.004386109080674188,-0.001131895390090031,6.323054093489005e-05,0.023790528758645638,0.025344625537430946,0.19585215193234376,0.043693601884339205,3.338787790763466e-05,0.004915308621698638,0.009796299543496062,0.025397052216139412,0.017871538777602614,0.00013483036457667295,0.0006326432316282964,0.012197432030059683,0.058565630107430704,-0.10009227962741944,0.0003282869033667171,0.008890564656186803,-0.03112005029320218,0.14199779931728618,-0.07744087670842041,0.00012552507005845792,0.03242224953619315,-0.0028362302352096256 +2021-01-11,0.0028315537331591216,0.018727110587756102,-0.001989919738631126,0.00015989711071693404,0.0052082383422988295,0.04531800786949736,0.12394710566374904,0.046215203976762,8.772935719460132e-05,0.006985408883027086,-0.006822588867302081,0.023999195453035995,-0.029333495562234444,0.0001315072581447806,0.007885415209361521,-0.005883666374873587,0.007233959766975721,-0.007948578589887192,0.000274498392795427,0.006254075185393863,-0.010130807931297286,0.024360475525301257,0.0019180831237046855,0.00021759859776021906,0.01875940452716612,0.006081020543058663,0.01658557979712269,-0.04246986459986661,8.00557539963782e-05,0.009400563659699452,-0.012709892159963527,0.05039691965742449,-0.11375094096032415,7.399931992107747e-05,0.006443649183497411,0.01871273552440618,0.17706651702275894,-0.02368359267160476,3.6240939646629086e-05,0.01928021806739239,0.020056153441555594,0.015573998769534332,-0.012277216728676437,0.0009930984273617788,0.024477538732110688,0.02007593406718133,0.04460038407631591,-0.006157610841897472,0.00015739794158320023,0.00867727447318324,0.0024834306296337215,0.0018240539872984435,-0.04878499532696574,0.0006654856625162184,0.00600689902507961,-0.00872538005135229,0.09977658530886416,-0.034964254000177226,2.606024565219982e-05,0.007290491149321734,-0.00414538751156612,0.014229857861042142,-0.0970043788215101,8.6539744875802e-05,0.004937553498006333,0.01409244355077432,0.0792679811199261,-0.04703891220106422,5.0043805204666915e-05,0.005280740494007158,-0.011520865405599533,0.011178710061603222,-0.0021028511146459154,0.0020100940746309534,0.0004961123470857921,-0.062343450226196785,0.4016010256688212,0.1894033744026214,0.0001277462404850388,0.011997456118671665,0.04056141054180824,0.21066738327146914,0.0675028551915166,0.00029814256290362046,0.006965598448490003,-0.005338405015942277,0.0326643680107142,-0.03982674968807695,4.603606727045603e-05,0.007047063297371716,0.004312223418134088,0.025348140725251288,-0.017762165699878207,0.00028037672054122303,0.0015911122710582446,-0.03133132267604547,0.34562142815635843,-0.019391791650766425,3.7619091243559054e-05,0.014943082030957571,-0.014855714122157818,0.15727709776253404,0.018555691408773497,3.1558020646487414e-05,0.004664195301311454,-0.04032882846561351,0.1250291178303129,0.07111760763269147,0.00010390278655768428,0.019318512576897026,-0.004847147179679331,0.03075961795508192,-0.030773061245658588,3.639968672812063e-05,0.009772885896253407,-0.00513687094034098,0.015161746181544962,-0.03652749060310692,7.511502478962681e-05,0.00481736114102411,0.0010627973145267706,0.004071707407882835,-0.07042197922040423,0.00011935001607592979,0.006462766019783063,0.009739246665120277,0.011225822836522988,-0.026548546842300468,0.0004958870223499773,0.023531538131499045,0.013092461572225943,0.047822079786848604,0.02579254300592175,0.00011523352767150889,0.004036691869704576,-0.03857254483512238,0.12990529114162763,0.014680939398543485,0.0019057706164843328,0.029260522060715367,-0.0420352940878139,0.49517501388352336,0.0031895781544364166,2.1829187088808462e-05,0.011705518810930056,0.00011571911037447732,0.0003579524619624363,0.0010779513172575383,0.0010569416258627924,0.006075943060759294,-0.014979506590991176,0.11952559350600082,-0.10653591225688859,8.345689883397156e-05,0.010213703206035516,-0.005157866943301921,0.008637640121946002,-0.03074872877384031,0.00014093550472142762,0.009133116968528384,0.008288452028426294,0.013997735424098639,-0.034883261503589745,0.00033987526680752145,0.002115175652060062,0.004623962793549661,0.018404310530265495,-0.0036588060649431313,0.0019473549538057868,0.0018816721266093424,-0.016764687995963794,0.06422546194474021,-0.029204180007064134,8.374880310789739e-05,0.002959422753422462,-0.045150211919750535,0.06798857660186651,-0.00584847257087051,0.0016508249952672568,0.036947668019221655,0.013300069717326293,0.044150015747017636,-0.06213421549395036,0.00011935458063605544,0.019302166961430715,-0.005123283040571868,0.012153165587696465,-0.02159238436474526,0.00017089104692985315,0.017637312627155843,-0.029433710394836974,0.12861187479115935,-0.022260943131463,5.585703366836133e-05,0.014296275495659405,-0.04117296980772536,0.13218058481387115,0.02956084052100747,0.002952314249953433,0.01601910106989593,0.00903144199783883,0.039049016398019575,-0.007710004623678351,0.00011505025057507229,0.037243244044511924,-0.02872436821582197,0.15556342377226134,0.03218911745350007,0.00013390715305349986,0.0006879881204178992,0.00029198360904175214,0.0015736384855844529,-0.03450224765386614,8.776112923406331e-05,0.004040459012386122,-0.008312646231703705,0.038166371533627036,0.0015330914227040765,5.47401293744563e-05,0.006695491406444882,-0.059760231005599185,0.10923771051775244,0.08455027319036332,0.0002667282848755764,0.008791715033549752,0.02851538469250441,0.10666251786230922,0.04743630732391871,6.647858691574961e-05,0.00566234383682481,-0.015372423334178622,0.15277433606157123,-0.007848914643873044,2.5961107544476336e-05,0.0011266837170314096,0.020362397305411853,0.06712530570294131,0.05837271905167741,0.00010603557480762469,0.0007318887732172215,-0.003218343105631293,0.014615645224868558,-0.01599609034493569,0.00034709017507196353,0.003243385199063024,0.03405211026334514,0.14484800727163652,0.07277920221901531,0.00013464905264048545,0.0012032208039458139,-0.005725432537822706 +2021-01-12,0.056936163666140495,0.3799957962996144,0.25113436794985317,0.00015845136793593548,0.0018355493230426988,-0.04174496896163214,0.13932600867711634,0.04556016669589232,7.189231576821897e-05,0.015552547087127916,-0.0788448482945032,0.2254011548170575,0.15863311662872143,0.00016181336508631723,0.02692967868533196,0.006257891521372793,0.0064276818074153405,0.005560620455262964,0.00032858029658578087,0.006090898959975763,-0.032843088817226876,0.06505088196005142,0.07036547754989698,0.00026417309112986947,0.0022335515018069687,0.009124484574737224,0.024561690434327786,0.0019350996895745925,8.11141885146723e-05,0.006740600378675221,-0.04917198164030139,0.14869133857501635,0.05115639689140101,9.703354427663085e-05,0.007909657590982227,0.0010824564450299212,0.010568892378775757,-0.01790542818828716,3.512202676458741e-05,0.00573016305616778,-0.004168571995666116,0.0037342255329906393,-0.017868252654570062,0.0008608580582244669,0.016313727591052152,0.029421002941681536,0.0678250703471256,0.02757326503816784,0.00015168027485168927,0.018078000170650022,-0.019035339929903264,0.016891780397571433,-0.019129121402522545,0.0005508198318448957,0.017660454791480717,-0.008923472744081864,0.12653432173021487,-0.02424273258976102,2.101591723514018e-05,0.000700082633673342,0.0881834205817137,0.2675736566670289,0.1779897131418436,9.790269004103397e-05,0.003824302324989451,0.006548552105065686,0.037346460454718386,-0.0055930910401736315,4.935801189592361e-05,0.007128423146955599,-0.020831166136358114,0.016372934249729687,-0.023855375180444355,0.002481475760994098,0.013615844695239746,-0.004344511411811062,0.0317398366734194,0.0008240219904342496,0.00011263889010405134,0.018658523504417403,-0.013841327912486469,0.09316419702690215,0.005486184568976557,0.00023005779041800894,0.01336547510092854,-0.03212468624261447,0.17133975780169755,-0.020745923513643516,5.281310507466039e-05,0.0028999924681868084,0.03571678515519684,0.18920361645488154,0.026662881394268676,0.0003111212933781845,1.1456795565821087e-05,0.0008549587734749964,0.011304425098827581,-0.013130067856955831,3.1385346230484155e-05,0.00402817015963583,-0.009813541860145093,0.11765632824712624,0.013049580105286323,2.786712703313721e-05,0.007290890690732717,0.03883454511879769,0.10064338729980575,0.029377816162795747,0.0001242955937120477,0.02037841153241077,0.007356191659353834,0.055244921552473035,-0.04443960495495209,3.0757642924660014e-05,0.011119480902755857,-0.0009017673044171439,0.00282320981664711,-0.06852447326521684,7.081556292724442e-05,0.007208725342962766,-0.0013859035590367231,0.005542369044336575,-0.17575386660135298,0.00011433683476880647,0.00554058172286278,-0.017990595205271846,0.020550731544190452,-0.10709158613503023,0.0005003729308435545,0.013073550454117282,-0.019693624259025436,0.07805276079678235,0.009505100887505325,0.00010619972389348279,0.003488727302399209,-0.048326633409270674,0.18957006747690372,0.00582457785138719,0.0016361983555747747,0.0075950958916951635,0.022384475403523948,0.24990270239519025,0.025681777435229997,2.3033406043058695e-05,0.01215603180162273,-0.007483733409993687,0.021425190458599155,-0.000808125155722898,0.0011419967998669016,0.02461562224648215,0.04090519600502601,0.30725329372000565,0.15620041440057036,8.865588594028473e-05,0.01132967961397105,-0.0344211178946782,0.05534498279118847,0.11326831055991082,0.00014678852291538446,0.003976576980223015,-0.006769533638436386,0.008838606783420732,-0.020987593009061615,0.00043962142659289763,0.014110730018378646,0.00152674013531926,0.006069738949661355,-0.0484186239731789,0.0019495997057080248,0.004716929280442377,0.012730136652859724,0.04489227026316864,-0.06680305054274574,9.098124327448179e-05,0.022226161584095475,0.006200912262753203,0.00769336330709265,0.0021752564775468536,0.002003625436492993,0.02494886307066622,0.0019175115479270837,0.007028843781953959,-0.004044884107050676,0.00010808617136346736,0.009734101283159113,-0.00089313797414583,0.0022790689522238514,-0.0033419240103920774,0.00015886252691140233,0.00669376752446964,-0.013871977609788824,0.053616017008545444,-0.003943428068787231,6.314773182229551e-05,0.00970689978652405,-0.04290877134280886,0.13918836047029196,0.030289359416408198,0.0029218722094666036,0.026166626137832834,0.022032161201941947,0.11167523212369981,-0.026964733180416225,9.81388144755599e-05,0.0005773997448020424,-0.0060346985095210285,0.03146028634851376,-0.015856713645533697,0.00013910850748363051,0.005041293727483569,-0.011704666540771264,0.06610192781026332,0.002641689915599103,8.375169758310015e-05,0.02005866776889445,-0.02105436481507756,0.09911457283286583,-0.039578234277862376,5.338902934787315e-05,0.010611846704118858,0.027251424711136295,0.05187717029917449,0.008081935573743546,0.0002561193124795336,0.01460013584600414,-0.005653137340725855,0.018172210739311682,-0.007545061068433626,7.735638173784366e-05,0.00705935321056616,0.01447861550937953,0.15337228622392682,0.008119420422071448,2.435630643004228e-05,0.0007915799259679936,-0.012610527639284242,0.039002059554045225,-0.03323128533247178,0.00011301983834392837,0.008350336719540595,-0.009790166939856798,0.049205549261120606,0.027704708754202435,0.0003136201688206693,0.005503689797250216,0.014113647356245753,0.06436092207228811,0.012873426839496396,0.00012559975738848312,0.002084037496143096,-0.0028405131694761894 +2021-01-13,-0.03161596580950296,0.19895324959467373,0.05545085205391148,0.00016805134786150453,0.006998994963635876,0.04070123875208669,0.14888164453500097,-0.048810730805289526,6.559594552543029e-05,0.018250820671374113,-0.03409363879016764,0.11158161004966739,0.015685965181449355,0.00014134418188638197,0.00630978329122594,-0.0029558437042908527,0.002702434910715981,6.548815973949951e-05,0.00036914252617449166,0.009492353935579612,0.06336404156450028,0.15840381004246065,0.0895159420950984,0.00020930279078493907,0.024472463720554,-0.001552739575429255,0.004372067181609258,-0.10028522772957402,7.754584545530024e-05,0.0018491572334428726,-0.03405163405439917,0.15942250571493813,0.027280619171403595,6.267266780519717e-05,0.004804653729959318,-0.033516519105346594,0.29275360354438407,0.08528001524793807,3.9260449995947054e-05,0.010428405725562426,-0.026281222457583686,0.023669906011793272,0.04958825652152218,0.0008562366544819186,0.006082894810443682,0.009352381175207198,0.023025760403803972,-0.03998900300272409,0.00014202673528144336,0.016580699386693487,0.01220312752840864,0.009276863744859348,-0.010472585712006773,0.0006429753599417192,0.006132662519145885,-0.00639227834711757,0.08199442974593407,0.0017068447606945415,2.3232402188607864e-05,0.0011013296985159097,-0.04654836067814475,0.1211936440897352,0.0559061368311329,0.00011409735702830987,0.002104628967349997,0.004839500589797139,0.025212128758663584,-0.012469830842535747,5.4032224660435444e-05,0.0015546771446250955,-0.05522788069498029,0.04797948940457576,-0.016710773697695858,0.0022450485057556144,0.013161118089689484,-0.0784237962919958,0.3991800677056429,0.1861637107453524,0.00016167062670035054,0.04008603824895226,-0.015726957918592587,0.08075067061140136,0.0008137960941348268,0.00030158297353725103,0.007311302681808021,-0.05079563046421925,0.2837120327013858,0.06419507179044895,5.043239067035636e-05,0.0050527622566665445,0.012399070738977922,0.06988174432327673,-0.020944156030377824,0.0002924234578729927,0.0031403828326358792,-0.00037203671979409424,0.004237385217170162,-0.01142614727432582,3.64349426876618e-05,0.0556721867073732,-0.004884987910392753,0.05665807373979977,0.004670691877609352,2.880602922855898e-05,0.00035717404663916674,0.023375835138912605,0.08021326312695753,0.004694876563034837,9.387365064037867e-05,0.00994513834291802,0.10179300480015722,0.7207417650068918,0.09310476323871027,3.262350519659055e-05,0.001593674566362364,0.0007468802761544242,0.0022257707200670053,-0.013797718938658077,7.439571943544332e-05,0.003125963687821167,-0.005730547086134344,0.023942194807999174,-0.026377963737626745,0.00010944116835892326,0.0004261504572496221,0.041186498599213424,0.03752492478374936,0.0429893999393299,0.0006273510131439487,0.030473274225214092,-0.014064392118718202,0.04585034582584437,-0.045552948481800096,0.00012911133137696778,0.004736349030618382,0.010677173375229191,0.043906035222684124,0.00025145726831252196,0.0015608143456110131,0.008407632622287737,-0.01710024584221236,0.15694656353952097,-0.02190048842009267,2.8017716623014124e-05,0.016600562323196007,-0.017236311616126206,0.04884365355151575,-0.006166039478614141,0.001153738711418174,0.003864959879354624,0.0020567502564799414,0.013495719260065205,0.00021885726479980736,0.00010148717600875649,0.00032213035498278417,0.05312712149239185,0.08274799080334413,0.12181437616253045,0.0001515319508962776,0.006298951855852216,0.006160338365280202,0.008273074565087567,-0.017751097698098295,0.00042740691294639445,0.00641834911886683,-0.014349242001734284,0.06353789258575421,0.0027421528358505735,0.0017504370420707322,0.016473250409944365,-0.013896961239238689,0.05702715452180779,-0.00421537274223153,7.818591345359615e-05,0.022726782871401462,0.04468357687448914,0.06036096561366302,0.002356588780608576,0.0018402165989252336,0.0036651015541143816,0.018879325788140573,0.05410317014753181,0.007629688236086166,0.00013825466819451576,0.010090579071256859,-0.035988164612774654,0.07710718138369557,0.01878855785143849,0.00018920179242222761,0.023333748746129597,-0.0014700710058398064,0.005672273573718651,-0.03027450552090238,6.325503034698499e-05,0.011067088205186808,-0.07616856781428535,0.25684291178708313,0.019159858948391624,0.0028107761697153226,0.003723121717726937,0.06903281532681275,0.427450792343377,0.08226278939990009,8.033596773346614e-05,0.02032251666090721,0.010958905766634783,0.0665791338519205,0.022910099988232263,0.00011936852733387793,0.0008191876780079149,0.01651496310622971,0.08227052970278595,-0.022311942328685958,9.49471674551007e-05,0.004394306529443558,0.0011057631159630957,0.004576339930346192,-0.006575670212362987,6.072831316120885e-05,0.003389289242800471,-0.02489264440121291,0.04656820558771173,-0.03796674664561202,0.0002606219114256806,0.01359366022067853,0.004330562509307558,0.020379229009327322,-0.006254916787312716,5.2840989059606306e-05,0.010251860951188952,-0.014280037097556727,0.14949332584829902,-0.001905919538084665,2.4645567177998637e-05,0.002099761565191649,-0.013008908595954332,0.041727692002380454,0.010038450511796523,0.00010897464492855559,0.007319399553318041,-0.00671294195084809,0.031055451824716432,-0.011204339118499143,0.00034072422349528195,0.0031794162595547614,-0.015144530016427666,0.07660583096323395,-0.0011802116282687047,0.00011323111098114483,0.0016052448238486638,-0.0030805630357342087 +2021-01-14,0.03439262447583216,0.21950856851576528,0.04841271509478865,0.00016569157420058553,0.008011982118004125,-0.033713583706515726,0.11700959963679337,-0.0180345384727596,6.913436100378986e-05,0.0004391443851420049,-0.004294084924641606,0.01764084766623163,0.0023923271635347423,0.00011260259106550282,0.01085559579175542,0.00906451380450703,0.008973688117179015,-0.06999750376153123,0.0003409113021773552,0.012120200963772997,-0.03408909336556602,0.07307069212504537,0.06003652447982662,0.00024410124933093173,0.014551682357397787,0.013375528459787957,0.03728804660068876,-0.018218452850988276,7.832277331382252e-05,0.0008643893882663899,0.008525715002402784,0.029682433300970083,-0.0238115039732687,8.427934769186937e-05,0.010975111027305709,0.00596044499291641,0.05657502835938253,0.0021570145240744007,3.6128715279216164e-05,0.008545138975701803,0.009316439575378749,0.008902321880199815,-0.009750387937312659,0.0008070333189004113,0.00714991432235443,0.00933729720260637,0.023232960720283254,0.00043382812808083823,0.00014053306255160837,0.006738155634864025,-0.0005620488038878298,0.00037712545299541453,-0.13743291356708998,0.0007284714593873125,0.0018150859495201692,-0.009681619526619048,0.13383233714543466,0.0025266693296387755,2.155806309782512e-05,0.0008102059987273992,-0.04521596508936669,0.12064060942050242,0.03829863469018344,0.00011133951376006962,0.01627847968202188,1.5785128186398466e-05,8.172730806205338e-05,-0.04095314632423939,5.436792236170273e-05,0.00292551601900769,0.003198088758502254,0.0030689468445932915,0.0076705130234073745,0.002032469883377438,0.0008813348159552425,0.015665632049918343,0.09824641959834073,-0.026969290790288,0.00013121494332758065,0.009216911149870737,0.027315025505659906,0.14589331316228404,0.024336683123255876,0.0002899175161983869,0.013228100405107654,-0.01805602684250021,0.12181538815553006,-0.05487056519830088,4.175235671529008e-05,0.009097660972224461,-0.0271756170000876,0.14229589656995895,0.011459725891738288,0.00031475587439337086,0.004158067966730627,-0.02011315628530705,0.2771276277301913,-0.013564952164751816,3.0118312516752154e-05,0.02775068469497283,0.012304208777711309,0.11483757805504623,0.009960028128449728,3.579739106228423e-05,0.0024984206127584767,-0.006859468208219982,0.017220939703605616,-0.0013816517887511085,0.00012830877459287567,0.0122346020768097,-0.01949470417041456,0.12302599607216386,-0.0014450404920421983,3.6602616816079576e-05,0.008844647770277079,0.026316095871370366,0.07198863770313449,0.14080761836256475,8.104661616897523e-05,0.003869459128955092,-0.009515139820558443,0.03663316383852037,0.0016719373711480887,0.00011876523754418391,0.004055936586524569,-0.008534271105014918,0.009051933316571037,-0.00018648439331301302,0.0005388906522272391,0.018474639644079745,0.016069083907541873,0.06296142062607062,0.03155676010612837,0.00010742431893014599,0.009934936547727069,-0.01180227084307663,0.04223122877747504,-0.07164713679663436,0.001793705060699317,0.009534886769675979,0.013851305825180247,0.13820713796166717,0.016125174244279922,2.577166277767124e-05,0.00950783733177636,0.019433471953536195,0.060711684591476925,-0.055071723300802,0.0010465244617001645,0.006938323286983582,0.006990783558631188,0.04440031945090091,-0.010530916253730186,0.00010484926843809852,0.0033409247117869778,-0.002913265393853282,0.004889955666919555,-0.07880880627354006,0.00014061139422515283,0.005287820184132465,-0.013489887960343361,0.022276628425363276,-0.08757482732475566,0.00034758641610855017,0.0009317884611107566,-0.018315676036841668,0.0675498932829699,-0.038590556081675664,0.002101593067326836,0.0017279088949272562,0.017641746334680658,0.07099731268186146,0.010427701255602039,7.97241748659216e-05,0.009590035237016622,-0.010082024627595903,0.014193688103260122,-0.016661299771550946,0.0017657519238392682,0.038156824668500504,-0.01129576565731026,0.03358796821502261,-0.008970820833602618,0.000133244096671076,0.018138345476318984,-0.04050525354464475,0.12914930542940364,0.045852354114873185,0.00012713925323738271,0.006121186647416839,0.014810790708033322,0.05962074458924621,-0.1056326951093801,6.063100603700731e-05,0.0032430263368321234,0.01270410990012797,0.04582175234625767,-0.08238845039048164,0.0026277897015145974,0.009000002373986628,0.0012243501089767345,0.005926945528662886,-0.0005006618552432561,0.00010275790917203924,0.01813871080660476,-0.01042602212284454,0.03999562999076698,1.703205166821383e-05,0.00018904573531300159,0.009095803672170454,-0.017820132738249908,0.106931821304116,-0.028002632058447812,7.882294725301569e-05,0.015172738445479329,-0.038562585320144026,0.20949487631426836,0.04212893202287712,4.626367531949651e-05,0.014348087420686719,-0.036275813486498096,0.06793994138260964,-6.604489959673625e-05,0.0002603283025091411,0.012453606641661844,0.007393743919199851,0.03130756383993558,-0.021132496607812995,5.8725876281317206e-05,2.4972342781721794e-05,-0.00990926657981921,0.10251139537677238,0.0058766384096255245,2.4940241374646197e-05,0.008402283302865014,-0.024083211011931328,0.07978901867060897,0.017267640114802793,0.00010550674668957984,0.006058101098967267,0.016193453866426486,0.05398724465980971,0.0021502793928780545,0.0004727987245180263,0.006072402662010032,-6.614985994390514e-05,0.0002704580291525141,-0.01799162320714813,0.00014008797129400245,0.009642988601219135,-0.003420410887721411 +2021-01-15,0.0037627174095816868,0.02310034696791096,-0.00011808502746423902,0.0001722541459671553,0.006588039015033338,-0.03284254487492065,0.10138017995033745,-0.0003527512461258867,7.773100284957445e-05,0.0006431931509308981,0.0101606509030315,0.038617509212195845,0.0034064623412961435,0.00012171230183605739,0.0006900996390002696,-0.0006170202935158364,0.0007204723754643513,-0.08729302766887817,0.00028903469045887613,0.005588744878020076,0.007444269116260215,0.016351273757236263,-0.0597059441438468,0.00023821452974260394,0.026105543603838887,-0.018081106185936155,0.05037916658705086,0.08691652415698595,7.83647509579918e-05,0.0042607386067054194,-0.016007454616032597,0.05714871265034984,0.0005450868420026217,8.218748342973329e-05,0.003849930001949771,-0.028183192807580335,0.23589865854184225,0.055677759592681106,4.0969751994396346e-05,0.00932844492193694,0.016383544467828314,0.01172435234867079,-0.12669652950828114,0.001077615399967959,0.002301881934308439,0.007091008908442023,0.018296693761530515,-0.03472846854228492,0.0001355180981507182,0.007004297651487596,-0.004840856287500441,0.002931417265595699,-4.383418832583116e-06,0.0008071772380774696,0.005575831882779256,0.0007573204725005549,0.011615994613717567,0.00157918954565721,1.9428804784966595e-05,0.002292931783437949,-0.017847186029504757,0.051635389015628405,-0.0182761415577677,0.00010267703878419276,0.024491640047752013,-0.007232818124540102,0.04081448611857774,0.002354754670488196,4.988328320639702e-05,0.004894883120797393,-0.01033978022540812,0.010396952504231703,-0.0001072830204939623,0.0019396716595005351,0.011707798231655615,-0.024771865525920023,0.1506831685153613,-0.002157608859631112,0.00013528388847260518,0.010781462244734233,0.009982842021647691,0.06056596012908952,-0.055206669817925186,0.0002552312362606395,0.0004102172380382374,-0.021654968024543034,0.13731518731839265,-0.011141567807555167,4.442218629543137e-05,0.01310387529032501,0.045844621515938565,0.22745519299788147,0.058425415746800206,0.00033218448350366513,3.0118261479591436e-05,-0.02718576794192873,0.3589783755211764,0.0051863668861229575,3.1427045099469246e-05,0.009699912450440433,-0.008083062034878352,0.08013736090823764,-0.07060776516203388,3.369943230282992e-05,0.009061029671868807,0.015056872273236526,0.04263319132662408,-9.503830255175781e-05,0.00011376526399727348,0.01658023610587999,0.025023480950665866,0.19060622562239238,-0.02116522894416693,3.032515418430489e-05,0.021503551466461414,-0.02600295665672411,0.06982554814069113,0.12235616700372916,8.256305620948012e-05,0.004714807112597956,-0.010825122918098078,0.04474782141739601,0.058785932404142614,0.00011061385694909357,0.0020263022828552954,0.037383406102813835,0.03894780623879957,0.03613271963067862,0.0005486197390031259,0.007357782703269894,0.0004679380126401315,0.0018263638249838418,0.00017045920139537352,0.0001078417778440876,0.008829472425456541,-0.03495512763867399,0.11166376650674624,-0.019646210489155873,0.0020091751318522533,0.018053781442847028,-0.012966504731017493,0.11223149268870346,-0.0027151077204170624,2.970916043269748e-05,0.001984336165178713,-0.008688230720692565,0.02017307841502201,-0.06432191637116436,0.0014080900784630523,0.002873310161588946,-0.004885316773774084,0.03839890146399909,0.0011725681326428226,8.472265805916733e-05,0.017938783147398253,-0.0003003388578537663,0.0005426289523564219,-0.0022649552724653714,0.00013063331536290973,0.014770649489937695,-0.028980546606770186,0.03974639445184497,0.024831143922194904,0.00041851665741394405,0.0007249966837926313,0.06795939005030169,0.29439910288050725,0.23138555203419992,0.0017892182991330087,0.003996350901756577,-0.042431315676202244,0.17128814592338937,0.06873083724816333,7.947848135630447e-05,0.0025905420145696024,0.0047645850707924604,0.007521841752497799,0.001048232035102744,0.0015746284180242417,0.010747297281297702,-0.044100440172708845,0.14830829973117918,0.059410898561206786,0.00011781307859177873,0.0004373461300960985,0.04388115547866779,0.11068877742823278,0.02480316666734506,0.00016070701716502768,0.007709048485045385,0.03724706837973756,0.17739531050504062,0.0461779294832009,5.1246461855161385e-05,0.0020099585282223912,-0.10070397367905903,0.32488034814260147,0.12835505368683842,0.0029379285107457333,0.005974942995504334,-0.050835406961465,0.23797947504586128,0.032760495798875446,0.00010625940338788412,0.004614652606788492,0.009001237963450608,0.05193024695956909,0.014341177254136868,0.00012570213082842489,0.014965693293043633,-0.02172355604469623,0.12002044627068308,0.005165610169950315,8.560997696233702e-05,0.0003589028552062714,0.007186787927546544,0.03303125697049409,-0.013051009186488324,5.4683603273667964e-05,0.02317117585752069,0.02080137449129058,0.03444254021128422,-0.07963587219615016,0.0002944599626916984,0.00807557601015436,-0.006297016438972084,0.027303689620986643,0.007376477530373219,5.734926609622689e-05,0.009120773827184934,-0.004246029600939815,0.05081933440906483,-0.028653165690731227,2.1556851513481377e-05,0.0002751465593632139,0.010110906832415577,0.035947964390742805,0.012711813740943484,9.831612890009684e-05,0.007740507037690666,-0.020758442426074407,0.0911759375203751,0.0703534116050992,0.00035887441463161617,0.001428617469826753,0.03888317609234881,0.17854296919913987,0.061384438374711914,0.00012473570191612535,0.0032475020797034645,-0.0037516415719834727 +2021-01-18,0.009816768999547101,0.06756373608768584,-0.01869035248525746,0.00015365316085363812,0.004509222599341476,-0.006710477212396258,0.02379842075373173,-0.02223550169410247,6.76574762804261e-05,0.005084811473481974,-0.05333624499638496,0.19677336854397626,0.047340167954186184,0.00012538723373954594,0.01004213655369872,-0.0017705109684847593,0.0016649230030557336,-0.08731313685062161,0.00035889906277231955,0.004593049330071718,0.00715956117154729,0.014270922763322154,-0.0046830904524637245,0.00026250170023677004,0.0029160603178121237,0.0039004530257890774,0.00958003426105773,-0.0009022589401299562,8.889856067408828e-05,0.008182969986461137,-0.026411604037779184,0.09380634099854614,0.01891848510075871,8.261376913440665e-05,0.00567281080646319,0.01802590579680774,0.18202588758166188,-0.002247568110444062,3.395959906370251e-05,0.013283942852257546,-0.009853176512423317,0.009159265726791202,0.018419975706615056,0.0008295840446363732,0.003440474421942845,0.024443488186388036,0.05213412454536614,-0.21174661961395458,0.0001639468145650897,0.01130089892699696,-0.010180239441621492,0.006451620418205266,-0.02735448267561607,0.0007712826168870618,0.012976289714842534,-0.014987680092953289,0.19638764752730434,-0.05799368957712128,2.274275307932794e-05,0.004245618773286007,-0.02020165654985845,0.05179283421048592,-0.009517523502539331,0.00011586928953825924,0.00513750069643735,0.007705089664253862,0.04493977237349467,-0.14843706234250104,4.826237024107954e-05,0.0007491444829416713,0.01223777625034806,0.010101556446291621,0.01266962147392095,0.0023628556243844214,0.0061404258702242205,0.005654107681384271,0.03490622938137481,-0.0019355599720482617,0.00013329481148812903,0.025363046528861326,-0.026120959195443275,0.15088253106323762,-0.001989847999104381,0.00026807628221371595,0.006653478033558286,-0.013307457806787704,0.09836459183099625,-0.012212355154743431,3.810809679686512e-05,0.004712338303936702,-0.0018715520643765647,0.009947173572651409,-0.03254737346548057,0.0003100909020764065,0.0020570276247847182,0.026944973427411673,0.30789814328759274,-0.02772233728592297,3.631624362854569e-05,0.019973983606801214,-0.02638130758084298,0.26233986095702627,0.10448915065770095,3.359802450031203e-05,0.006817230930362985,0.01380562298334044,0.04261223837916906,-0.03854344083487019,0.00010436248629938162,0.017947196076022555,0.02475270327355526,0.17525678870449926,0.001062697418973011,3.2624221878825146e-05,0.005859311018023009,-0.0020610632613706466,0.006280341653889983,-0.07548798646828664,7.275878431995589e-05,0.0023044595903475296,-0.004141850092202776,0.01593548700089584,-0.0030561489926043297,0.0001188441014616292,0.0020679981412108734,-0.027479113925367674,0.028040310510025455,-0.04260791723952574,0.0005601385559486197,0.021421151282175137,-0.00821230983463562,0.029221384673044037,-0.02977888004274358,0.0001182906841995608,0.006276385213610531,-0.03585062323021403,0.10251087442777494,0.008383374316580762,0.0022446361163434357,0.025471411569889857,-0.022864192114014914,0.20990890570992446,-0.09847346624872225,2.8009618347913104e-05,0.007054331824874397,-0.09140361199880535,0.25080387581680375,0.116655712500014,0.001191517387459188,0.015413227970928086,0.0161874950737072,0.12146195142057768,0.010325582087540692,8.874932083220172e-05,0.0005626111648134389,-0.031948706244129974,0.05493926791415519,0.06866390701814618,0.00013725108757605637,0.0031015779022207693,-0.03402498813838779,0.05606158312399205,-0.06396799286811143,0.0003483666230434613,0.007549463253949278,0.0174351376852616,0.07196780367099477,0.011518008502904251,0.0018777487152681453,0.017726361337317857,0.039642796111937585,0.1625815175010035,0.027060550778706144,7.823182766085721e-05,0.02345580054479831,0.06249742883875567,0.08475643561675535,0.05543333723560233,0.0018330176978256644,0.013393254730880495,-0.021839374558870264,0.06691368383528104,0.011797414588626987,0.00012931273382353267,0.01032204392043937,0.007952139072757053,0.02204710583337868,-0.055166164677858544,0.00014621527854689719,0.003308057504708201,0.00494898867882493,0.019541262546190513,0.003906876051843959,6.181270732958177e-05,0.001443019924790098,-0.03335491240825407,0.10282633917879651,-0.0020376487302642974,0.003074492855190694,0.01772968249638342,-0.03816103449233861,0.18823404417539244,0.04174218926234743,0.00010084689634255197,0.010384774183318074,-0.0008748271386233322,0.0056861501330866026,-0.004629246871353958,0.00011157443831751743,0.006374869028588241,0.012996108667734747,0.07476542249620037,-0.03153034461672368,8.221692713734937e-05,0.013454132340797743,0.022707737552072612,0.11022358598916375,0.0080813998841088,5.177817331863653e-05,0.006532828030510684,0.0062872045237477,0.010293675023605923,-0.05532539058694974,0.00029779440168880027,0.021797960512904703,0.0008003245958459336,0.00348291223253883,-0.002801186340405934,5.71397070219053e-05,0.002820551772489772,-0.007036056574361137,0.07720811294694727,0.002131642016730907,2.3512438376937508e-05,0.022452331592870606,0.0026318227890344157,0.009876710693025353,0.0002598092580398579,9.31436548278794e-05,0.0006419957358641283,-0.027731533331423745,0.12885635382506827,0.07522210436352035,0.0003392313775568729,0.003124155346626251,0.011915313786231608,0.051628602132480154,0.007946998060683287,0.00013218644209358004,0.008630007243311024,-0.004809313217543142 +2021-01-19,0.003033104685080161,0.02024742365025849,-0.011057305316900608,0.00015841788608756533,0.013974412662581526,-0.009128551748839737,0.03002870997971506,0.005966808434539695,7.294167515486111e-05,0.042047439835785794,-0.002168847411546138,0.006586098630382921,-0.04208999971755026,0.0001523343952267482,0.015597712118172223,0.04282404302862918,0.04635408972781204,0.17874810891726747,0.0003117937934916022,0.000824402747549175,0.012768415292099652,0.025822570454567186,-0.0004832536639938549,0.0002587231563794197,0.01183771209523991,0.011624588310466933,0.03155086057590522,0.01416307311166279,8.044760355091039e-05,0.0030672351856293485,0.04546778984993549,0.18864049732024368,0.09463846400320183,7.072268925852203e-05,0.010932367002389526,-0.05945245588804688,0.46065373726893055,0.14788964430355267,4.4258206919944675e-05,0.008458973122385187,-0.003804079577551018,0.0029400209381140936,-0.026048414559355332,0.0009978010500380395,0.005433413784536131,-0.011530440445194792,0.027879133605398603,0.025788333337326667,0.00014462005096303924,0.004903530652864143,0.00807752714415266,0.0058430886803345575,0.010476422767732302,0.0006757099385950702,0.00013020038682492498,0.007480414854107051,0.1143981570651163,-0.0038034914568616154,1.9486302730078194e-05,0.004032638756286436,0.0015537447822240522,0.004263027940395739,-0.023403384641087505,0.00010827109822973558,0.014120322801921104,0.028447415833231012,0.1643173479518601,0.025253616631755987,4.8732784021977617e-05,0.00443115248651762,0.01298723067224213,0.011368117962711909,-0.020975778015295595,0.002228183507843237,0.01302590698233689,-0.02985892527654354,0.19831624227666572,0.005852395790043911,0.00012389905528623017,0.01098164895148846,-0.04685036178595307,0.26431835779377827,0.0936325929725725,0.0002744693497787022,0.004639039899399115,-0.01554775597573811,0.08113362347562372,0.005151907387369694,5.39793684944216e-05,0.018913314877366076,-0.028880746097655577,0.14093042096795663,0.016583195178463614,0.0003377461963417949,0.009136978863585186,-0.04181678387187952,0.6112320618809831,0.010967044876094336,2.8390610569553444e-05,0.01472620840427033,-0.006332914658015119,0.07590180478619574,-0.00041869744475236763,2.7876178833727177e-05,0.0018328279699118416,0.02066088045081903,0.05852479506158112,-0.03139871200816899,0.00011371864571433152,0.004746890625825006,0.09092604861125311,0.702307349805896,0.021835793710485243,2.9905666161275172e-05,0.0070468249576286415,0.0025524500270681268,0.007785059230345868,-0.0018032722537821811,7.268967200791585e-05,0.0034747561136218665,-0.006123608355054548,0.02689427649830443,0.002539664018574109,0.00010411088470899461,0.011591190611372811,0.04185323547303798,0.03581425952052233,0.03830476747675392,0.0006679571790764931,0.02267094961810139,0.0025883252336507015,0.009993684294952503,-0.06638391896693208,0.00010901323549260893,0.003322150141061538,-0.02765498516822132,0.09240173413193613,-0.08395246603917841,0.0019209341735628204,0.02877787843574637,0.012297357540489185,0.11642520388445177,0.010800548283563575,2.7161077097135896e-05,0.003391913058370163,-0.0013655939691808157,0.003868135447353732,-0.019466887369731956,0.0011542268875358863,0.00580216565620333,0.0307459861654259,0.2897191518196715,0.043773433376192675,7.06702887151519e-05,0.004761158939181449,-0.008426286788904138,0.011700217808938804,-0.02423088268936513,0.00016997602782657567,0.011567275609276728,-0.023638561526748335,0.033540657562413735,0.012511376875386596,0.00040453246990449843,0.010487390318648319,-0.03808944518722143,0.16818661220116402,0.0389161030346299,0.001755349360127902,0.003049715724142889,-0.0013827609029190408,0.005700848443431794,-0.03192267111367259,7.782120772828482e-05,0.01785147359865929,-0.02688451609114387,0.04293739987440295,-0.002993938141328284,0.0015564804635049766,0.017673257351462877,0.020364751167516952,0.07017569885013214,0.011820580580251311,0.00011497631837984743,0.0007398958074613345,0.0005985672410831727,0.0015671230462116195,0.00021036528806034,0.0001548353868010991,0.0010795551208640304,0.05080114295292797,0.22252979345727483,0.10811988005283783,5.571847784875177e-05,0.009703747659125564,0.032272359775493795,0.10101276355302893,0.03341201377656769,0.0030281161364074174,0.015392587613591245,-0.00019720060719597793,0.0008933229156769483,-0.016571333072306346,0.00010980960866074074,0.015717118960944142,-0.013658574476446843,0.06129152965707485,-0.12364992637040573,0.0001616090581714669,0.008958582752788616,0.003999310879812838,0.022151426022584093,-0.07688020733153168,8.539494707255295e-05,0.011355291136935314,0.004553964818933664,0.02262861355015105,0.00021020265179191974,5.0580034409033836e-05,0.040708284704255034,-0.01776055580259871,0.03394360685924254,-0.0036385067219724234,0.0002551102791175707,0.008583389258627458,-0.0005455862963937056,0.0021812504984366817,-0.11631212166950082,6.219740792486429e-05,0.0074089073746336255,-0.03523749063203987,0.364532680108162,0.03320962369612903,2.4940191870599715e-05,0.012591793788232329,0.022846239313106233,0.06049804221107169,0.052620912161097835,0.00013200256359900014,0.006309577010606265,0.0025672577526296932,0.008849455525219124,-0.03329681357266753,0.000457278617364433,0.013786582468524107,0.03158321373655726,0.15158126496768773,0.021916862802028682,0.00011933905331167837,0.013311893930187618,0.0017694174769934705 +2021-01-20,0.010594113668441214,0.06926464946443717,-0.010739034363252015,0.00016174824291191405,0.007885081181176996,-0.0448637121936507,0.15132277450213943,0.06410309359161093,7.113796493050131e-05,0.005937287461964862,-0.03366561882525374,0.10355953499218999,0.005270492236985971,0.00015038125839416638,0.01889214787658397,-0.009013937238796243,0.011660853645470436,-0.01635550106022796,0.0002608867614360523,0.009201483923081831,-0.0019938593621616325,0.004459315967483544,-0.0218380320285637,0.00023395053816509806,0.012181407881420084,0.00906439430678936,0.02128673381883456,-0.14558391806772597,9.29772077775984e-05,0.0016442374391954695,0.07551275585023111,0.3292025871932429,0.1577316814104566,6.730493911901502e-05,0.012042732910826519,0.032841936062394925,0.25953587628399155,0.015186500160284007,4.3394028094101804e-05,0.0043431634292869,-0.03820479043513541,0.03657243597599702,0.06487487432650413,0.0008055800827134888,0.0018272138143894563,0.015170407625187938,0.034772959332589816,-0.004916452734826112,0.00015255185188817376,0.016124643249663836,0.011997112085390773,0.008375484240213357,0.01818003934770569,0.0007001500897738038,0.0008437467153776996,0.0010652980951573329,0.01326385876518647,-0.00884062577242675,2.3934483010201146e-05,0.0064532436869902095,-0.014773178052492954,0.04131058034979237,-0.01254318632748063,0.00010623403416629974,0.0005477377839640148,0.02460640708199522,0.12695772246205353,0.0179204620484252,5.455705262233025e-05,0.009115060100545792,0.014693246629801213,0.012258309732191166,0.022241582371205534,0.0023378150516657433,0.0014573491523133142,-0.03166003305898694,0.2296286086688423,-0.005032456569822816,0.0001134586148915238,0.013923089426987719,0.06211673736071814,0.3292428164210756,0.1098497688501019,0.0002921464144082759,0.014971604328221897,0.0594563467550573,0.3727480404916717,0.13673987920378175,4.493076445245024e-05,0.01761700400703643,-0.003589765835097903,0.017410630833558094,-0.012304275118199303,0.000339811772314819,0.010793558582778081,0.030416049044804435,0.31812197336649334,0.011849913252735296,3.9677048950729774e-05,0.0032480381217981163,-0.002961446648874777,0.029671331669970963,0.00017340071223327118,3.334637148733894e-05,0.013205070740897705,-0.02516255646901692,0.06495849682947065,0.03664369683756059,0.00012477901464479158,0.017504718142608414,0.046028797084056376,0.3120777725458834,-0.020988798420110456,3.4068982544760125e-05,0.005476101345100123,-0.019340409039342133,0.05334851698462253,0.05241860203613173,8.037494451090193e-05,0.010019570397635926,-0.0024690067038967522,0.00897510872015275,-0.09033538434614102,0.0001257856639878852,0.011018083322933239,-0.04062222563545422,0.03647789652577695,0.018413413757924164,0.0006365162396489673,0.008861240965397747,0.01323762023581428,0.042710072532521376,0.020253946436955543,0.0001304564685108174,0.004956985627941349,-0.06957593463791349,0.20400814312054652,0.007090263141058737,0.002188924190664914,0.014300320266086144,-0.013901996876900033,0.11048147829596405,-0.02838761254070287,3.235712340238934e-05,0.011280048222860196,0.020461570865819397,0.057508902952942496,0.01811150475953198,0.0011632556185305794,0.022467326926094114,0.02645994096244375,0.20083020603062834,0.012188555194755141,8.773754542933942e-05,0.0031766300067018055,-0.007202293040931336,0.0105166903558856,0.0025539301856623235,0.0001616356249648226,0.007660536706223994,-0.01155529091341746,0.01699860793543564,-0.026703809122014317,0.0003901857821582732,3.461964053428409e-05,0.025320979159941883,0.09686626724222412,0.010817544809627128,0.002026087851493087,0.006090221138468778,-0.014621268455171473,0.0483335476990053,0.0034418061780541144,9.70569741964189e-05,0.0066790262323075215,0.045557004193952345,0.054599202320723544,0.006638758401268004,0.0020741781326480907,0.04458139347984283,0.015848704941505733,0.046279664806012234,-0.032957631202585456,0.00013568117997748703,0.010026947684217738,-0.02488977063897956,0.0607922114154714,0.015587875772254319,0.00016597142731107487,0.011667342169190327,-0.014602630848903331,0.05457933685970505,-0.03889265258166155,6.530054062699928e-05,0.009236607751684143,0.07163942950413077,0.2352758790528366,0.08564315549314519,0.002885976377381591,0.021711319300654272,-0.0005402095665607329,0.0028931618780593626,0.0002968461308017125,9.288168972467931e-05,0.03243634770853589,0.01735182677603548,0.08562125694421788,0.04076933675637794,0.00014696854299928318,0.006231826807124391,-0.015733317151979512,0.08153329040309422,0.030986336998527816,9.127125593718978e-05,0.0015251924634489965,0.005994624638118624,0.027926742428362402,-0.02255389876653912,5.3949709403654324e-05,0.009764791167209234,-0.020199808659771657,0.042914923220707245,-0.02702525616973568,0.00022949240111293497,0.002334124394558396,0.0003930140220069356,0.0017890757069365518,-0.0346915763918467,5.4625283343963824e-05,0.002336918074229162,0.0001557200765929909,0.001602938517812753,-0.06069878971105931,2.506449906046698e-05,0.008189967076609999,-0.0023057516436271117,0.00839354097628719,-0.047997067944643236,9.602322247083003e-05,0.003065504197481774,-0.0148312641911436,0.06529396794484847,0.01723243059647014,0.0003580412629166636,0.00167865313600906,0.01635794124122449,0.08082823835150497,0.010653788465956937,0.00011591438260284447,0.016511408931049732,0.0035502081799113953 +2021-01-21,-0.003268908284159858,0.022177492124398478,-0.009474432957165107,0.00015587515055698705,0.004560125527493852,0.018765619771826846,0.06691465361192227,-0.01208547191924988,6.729025976731061e-05,0.008022189645854027,0.006325938803564887,0.021733801113559995,-0.007805190049567539,0.00013464384408959655,0.012784719910002516,0.029184238057815438,0.027663150766024873,-0.0036471492880104247,0.0003560529364583998,0.016322710787917263,-0.0017395446868331932,0.004138954614083962,-0.0145819091907319,0.00021990884516580696,0.026627180868544546,-0.032002728615251344,0.0871046399206807,0.2510616369456511,8.022181041370053e-05,0.010672333985040028,-0.0018877040439780354,0.006549187288237582,-0.006781259495993239,8.457389869579571e-05,0.01416849813165621,-0.010096722391808439,0.08869943788061349,0.007386932855274415,3.903535761934665e-05,0.010005421444366943,-0.0029828592495552185,0.0019171812684370773,-0.012972480649150577,0.001199815230395218,0.009932797040388507,0.0641960100582725,0.1519659899884826,0.2375030781263773,0.0001477146327860509,0.0018850381412292305,-0.014899812047247428,0.01055986256795988,0.008188720551328861,0.0006896788092070704,0.0010701327352501378,0.02000331215356591,0.24365512193898117,0.13550461947491638,2.4465221743874602e-05,0.005205123645260017,0.02771983638663665,0.07351085236102953,-0.011706478162671556,0.00011201862615604384,0.017124077039700047,-0.0027909507321887037,0.016653855191305453,0.009451662249562216,4.7173620003231315e-05,0.006876319360950029,0.012083560417795838,0.007956069985234243,0.016473979983878045,0.0029622335454270034,0.010124466690080996,-0.01676236919736527,0.11244536712548651,-0.02665949435635742,0.00012267214039997286,0.0050885208694824696,0.006633503750585134,0.04285407234133713,-0.0003690797986002026,0.00023969507601621687,0.025032751973781815,-0.013118463497375867,0.06303124976986132,-0.0029001871926598683,5.8625695623442266e-05,0.026827307394816553,0.0003915547354011641,0.002389028963948,-0.026723552771459543,0.000270120704059876,0.024048721496766352,-0.0016380141397602916,0.023399907756013257,-0.0037186637861115813,2.9049170275415654e-05,0.009465385721204797,0.007164113788927376,0.07863996200397433,0.0036533898771156487,3.0436933069833435e-05,0.014178939974475025,0.016290532927426687,0.04509275597267893,-0.0015806004912105886,0.00011637274231744611,0.03169611221430414,-0.06774960261093235,0.4537627266934578,0.056880944721990574,3.448818261033388e-05,0.007634376500879432,-0.026049572379375403,0.06703829368383968,0.08012684015473932,8.614994986466411e-05,0.008511657720172393,-0.0026918264441252583,0.008776622116170238,-0.031175282832938453,0.0001402388206836869,0.0015891200065952028,0.019612800769450024,0.021570756194575127,0.0027570803088504785,0.0005196965190321419,0.02137125438288576,-0.02220662540389968,0.06678865228324814,-0.028664890712371438,0.00013994774201352568,0.0004933252943258645,-0.0069838125517816246,0.02614295623182756,-0.00515032799057059,0.001714577234768341,0.001986918305597109,0.05676061137231325,0.5044523024194829,0.17050082845082648,2.8934044917598955e-05,0.013432751800507,-0.05072811352812787,0.14969695736310332,-0.022820465677895783,0.0011079164447478646,0.0013954261379280474,-0.004263236518192774,0.035146720188479724,-0.009521936615802353,8.077561377675548e-05,0.0049968164508102444,0.014806033091711942,0.021233203325863023,-0.00718124374446973,0.000164576788533782,0.012083334170771145,0.0270081968601445,0.042831637799436585,0.024243077734697752,0.0003619385340072028,0.0007568788819785541,-0.021361371719156624,0.08945436986347667,0.006092948914944344,0.0018508785305651175,0.015003902148874395,0.01753718915996661,0.075233330739189,-0.010988926484146034,7.478940315624445e-05,0.009391550866255337,-0.08545124659328175,0.12777027065093885,0.06946757684233287,0.0016625157939536856,0.029176800065445874,-0.039531806044380426,0.11162058795865724,-0.02009572561259024,0.00014031961569823575,0.0006784449591742149,-0.039747273536016106,0.10790837363246333,0.026167297656726395,0.00014931814042136988,0.01921492231040269,0.04565198595671139,0.19162107916232687,0.07151201109582309,5.814740239362462e-05,0.01208402139180283,0.07537375446053439,0.2078721431902225,0.07683630964617046,0.0034367022940228684,0.004675900780574625,-0.0043876514893447386,0.020319882260489506,-0.08441997017054911,0.00010741167962905417,0.01559884866664204,-0.00922691981983537,0.07184547991373465,-0.0015549517206395087,9.31361070167782e-05,0.013285706632014503,0.014647221948969936,0.0893343872684037,-0.014964014801150704,7.755062427718099e-05,0.0001496079769993665,0.005925363457614555,0.025014045098566716,-0.07095106419898098,5.953583666449678e-05,0.0022306297792519057,0.011017382688136429,0.019665587359228246,-0.03294468745845617,0.00027314981253575654,0.006698923389632967,-0.03725937043612358,0.12859811433325735,0.08625282414526145,7.204689816224343e-05,0.001079243611292368,-0.001474571713371678,0.01705481047590161,-0.0035558349403413264,2.230746840029371e-05,0.011608042291242012,0.0234433810479614,0.08886548228187119,0.04229414407409723,9.22138403263711e-05,0.008294997286714538,0.0027073553332799894,0.010576764113974289,-0.005732452972951102,0.0004034785131375625,0.0015185642624604488,-0.0610514395359974,0.28102961133642607,0.059167012352403056,0.00012442728412794622,0.02541549786364123,-0.0013227531033394107 +2021-01-22,0.03397645518727804,0.24327067836669877,0.020745843718112018,0.00014769809167137888,0.01978825376209077,0.019616330792438182,0.06965064433204579,-0.0017944083823512563,6.757766236243909e-05,0.011523125870643225,-0.0011608409089843392,0.004088450112820114,0.00467243030955019,0.00013134429272365725,0.011579667422136801,0.025777800024505297,0.02973469543880195,0.0029129649454588073,0.0002925837568206434,0.003132186153969981,0.003565447585528165,0.006833969437756909,-0.0022224748096812217,0.0002729850077984553,0.011780130407482338,-0.0016711267368045082,0.00466394788899306,0.0017143873801793196,7.823524341664029e-05,0.017407538227400203,-0.04793486479919649,0.15451639072221424,0.04210763044036643,9.102628256364077e-05,0.015012831351057462,-0.04020288024047793,0.4118524865482387,0.008533519823844534,3.347449934757939e-05,0.007393739350662497,-0.021716446079425973,0.020636108048628487,0.043126278814699,0.0008115321831842325,0.011080149651697015,0.01040912352881082,0.02514122072248811,-0.00685997953890266,0.0001447737047195888,0.0001628057631516901,-0.008756479532850215,0.006780056021621984,-0.09080804037477086,0.000631277939486136,0.008178135119445892,0.006165742583824727,0.07163752823554138,-0.009770396178482629,2.5648831590879853e-05,0.009566824660848761,0.0032580773297712436,0.008809851718701661,-0.004526691089308015,0.00010986107064861085,0.031558908673041286,-0.02792220714382744,0.17022336015349654,0.10845500789071086,4.6173458332257604e-05,0.01064233615794254,0.01174483828084197,0.009191948225835148,0.014085738995862481,0.00249208266517913,0.006398455227317454,0.003287438774924866,0.023743500372484544,-0.011073192337567072,0.00011393706714962392,0.03627893749004415,0.06784728844333049,0.3774332651381463,0.07841546391217946,0.00027835597839190876,0.01234214108319494,-0.04564658677973934,0.285352667731071,-0.013331054891389004,4.5059599537936126e-05,0.006454865303987639,-0.02694874615112527,0.17726815689077233,-0.001407264551334902,0.00025055013536482687,0.004282794653587653,-0.021760038814115982,0.26967469061773724,-0.02413642424767652,3.3484954087504944e-05,0.0028982459704205163,-0.03418978734428996,0.41644826722562256,0.12307978864835399,2.7429446827629304e-05,0.00041805593553238384,-0.02569942850998094,0.07743017598057778,0.030608127130990648,0.00010691434393954835,0.016615018255888153,-0.012947040857775746,0.10493668618679111,-0.00993913971767912,2.8499388997285575e-05,0.0036202214007132263,-0.008844481850524302,0.02055834949877065,-0.026012281906193604,9.538092555984041e-05,0.003987152697750209,-0.011607246438654559,0.04425004501972324,0.03008713027126055,0.00011994001089817058,0.00010811699948495,-0.006528047048354838,0.006796352281573002,-0.03231810635864784,0.0005490134133976578,0.006601509910755216,-0.014408643255309127,0.059593140656541796,0.009112788195849012,0.00010176837121690457,0.003752462261791389,-0.01362035418108567,0.04572705076347402,-0.04559486503586567,0.0019117644608388274,0.021274713240050078,0.03534076343822312,0.3240175580279185,0.012410406554459867,2.804720427955568e-05,0.007290135051284398,0.02550232133723366,0.0796869998756254,0.004808549530416413,0.0010463175431882881,0.013917526345988664,0.028423148803605133,0.21240685901993597,-0.07515320482382921,8.911058507746669e-05,0.006542797908472375,-0.04659078155182508,0.07234533287069929,0.07493229978703642,0.00015199694628106398,0.0005864043706182327,-0.004499726778539837,0.006045460326570585,-0.011857307822001513,0.0004272289588226735,0.00043002040352569954,-0.0019369260087112876,0.007176030466701757,-0.029244499455618057,0.0020920839038631508,0.007973499116495468,0.0007651789553570747,0.0029441568564427647,-0.0029322437215860545,8.338586596739114e-05,0.006258262186851398,-0.020323155006194228,0.027953585735012533,0.00025569897585295595,0.0018073022806167184,0.05968823799150402,0.010713958524682442,0.030352210707737328,-0.0148533281110072,0.00013985425008845282,0.011248192970460183,-0.051431741760764225,0.12684311223314326,0.01156854491119138,0.00016437081892239935,0.020657648765636617,-0.004162756691039063,0.017794718246945635,0.0008270005265974878,5.709575715868545e-05,0.0008155650339602151,0.038227345360100695,0.13582920681916724,0.01967929712127846,0.002667466865689211,0.03771027774617351,0.060464139951138786,0.2404946054676133,0.0825458206760988,0.00012506422935792952,0.03594195073294806,0.0007552124915068711,0.0034401927210681543,-0.04640336489930704,0.00015920150776303955,0.0013388215309505444,-0.005476953284251823,0.034710516750674526,-0.008315643480000592,7.463227083687783e-05,0.02477368888193646,-0.026121286487581746,0.10672581980891377,-0.014421953756063085,6.151378604532332e-05,0.005441983968559437,-0.06044529834680596,0.10931728751850296,0.06022617469327624,0.0002695895616474191,0.016768474688678158,0.004972454769794422,0.019729005949611807,-0.04276664509400006,6.267293213398777e-05,0.0076550272168209015,0.00042180879829058844,0.004136865592707558,-0.10216278519776766,2.6307253446254026e-05,0.011969953136059999,-0.02061955904774035,0.06770170947909374,0.05236405174890715,0.00010646054946122573,0.011333634536795437,0.0038243884413668647,0.016351816021067035,-0.010170626502603277,0.0003686582657495855,0.011604287522847829,-0.035100649408917974,0.1542990921921131,-0.19509776390694317,0.0001302937478657174,0.0072397536063316306,-0.005077268113271077 +2021-01-25,-0.010283356625396301,0.07315339113724952,-0.010883277121203683,0.00014865756607104378,0.011217084103485118,0.030411101180136787,0.09948291078965407,-0.0006888653917430602,7.33489985736189e-05,0.009255916225221131,0.021324241933005784,0.06617984958742004,0.031213309417298222,0.00014905447866287613,0.007166971160800567,0.009145199716450352,0.008031884027138296,-0.0031932184679276934,0.0003842763186023397,0.010136239953631058,0.011887657859683707,0.028568585413163074,-0.0313192911614688,0.00021772351284139187,0.020314755549774872,-0.017270370811154786,0.04088920665111366,0.019490349254980062,9.222310028818698e-05,0.014278520012955214,0.012535099784225713,0.04519863773656743,0.0029793396196321365,8.137524423839084e-05,0.014752115968612511,-0.00041215444194552745,0.0038808058095588225,-0.03582892139428057,3.641972712313739e-05,0.03955031328837093,0.008521195965850962,0.007042669724966744,-0.00534238375859079,0.0009330566610838161,6.627750975429845e-05,-0.03276810902089907,0.07499580031015315,0.1025521028555358,0.00015278345339704184,0.018252546820854858,-0.0029533487947283697,0.0023812296102614446,-0.0003339294358485704,0.0006062305592065049,0.0028525241388743096,0.0049558601822296,0.06224396954275966,0.007896173933635491,2.3727094129514e-05,0.01223610869970169,-0.030692237591063803,0.07565648007294884,-0.013881390630051603,0.00012051287783704843,0.02695824824332059,-0.007546072296089301,0.040399321682629226,0.002852829933202884,5.257856231768757e-05,0.012640427332581292,0.02289196361790235,0.01949182055673235,-0.01804995212455484,0.002290622988823122,0.010157794744363177,0.02675398673088316,0.20443927040562393,-0.035145074847185105,0.00010769022707524555,0.008447618756980746,-0.01738521219913767,0.08327001327751879,0.010808045957205756,0.000323295451095087,0.010477610515139521,0.0009308838333628142,0.005674417904105451,-0.013282354170048164,4.620991044312882e-05,0.005897592759396422,0.030198628985608437,0.1476497834068547,0.02168561806913406,0.00033708639128601737,0.012879128394974484,-0.03923964672169416,0.4928853684116609,-0.0870119445117007,3.303766871175781e-05,0.058531729344815035,-0.0031638244890003333,0.03773134298297181,-0.007621017724268323,2.80150775455288e-05,0.004549658288018061,0.0290788446847344,0.08651139619094549,0.004980908688376763,0.00010827459864726155,0.017420828328814832,-0.08282977048400572,0.6303281721461633,0.08852989026927421,3.0353733441781693e-05,0.0060582643212243065,0.004920660945112893,0.01352940088475556,0.002316102409685828,8.063475267383615e-05,0.0034837053857889504,-0.022882537391191064,0.08152563849165166,0.17701546612957553,0.00012833897532483294,0.0045626730375264955,-0.055853779282409574,0.0630668572515408,0.0027304723038873535,0.0005062055892658898,0.004710800870857035,0.013452182963576947,0.045883906683488164,0.005576656185189254,0.00012340091693940366,0.0026906698917657196,-0.05505206622459844,0.21811612110368758,-0.07925882627167746,0.0016199627658250843,0.0019104613947545901,-0.039854020334742196,0.3508021608500031,0.0011208955465056099,2.9214070535038404e-05,0.013454471055849052,-0.004443689944278395,0.013515136203880987,-0.007440387816258976,0.0010749656619823103,0.01209956128933281,-0.02175825091267228,0.19651501421962256,0.03407953006322063,7.373163878353613e-05,0.012514256542850136,-0.018092647984572077,0.029365711880692126,-0.009709814148036473,0.0001454142562565433,0.00043640366958482306,-0.010025107310819296,0.01438688031296861,-0.09859777541582669,0.00039996898255367997,0.00309951832911518,0.015492805164077526,0.05769320516146918,0.014309020986206579,0.002081400878148907,0.017837739381107255,-0.008094891123351818,0.0327568041222788,0.0009040375522500868,7.928661165782708e-05,0.006501885540648934,-0.015353118686079385,0.02083743078662148,0.0005183922492753793,0.0018315957567406928,0.01597950747166689,0.008326428633767194,0.02432218916577789,-0.01100366092215654,0.000135635114602086,0.0006540219110806418,0.051975717866047655,0.1300306332060671,0.11021941416180109,0.00016203737350414907,0.009130312600570106,0.0001399807934960008,0.0005450766366724582,-0.03931564641561432,6.267939683098935e-05,0.021852268752133492,-0.05626378911418762,0.21004557879727984,0.0005479954559418792,0.00253882923099672,0.03769511989558321,-0.011399861887833762,0.057935866701593876,-0.02055292844227051,9.787970510729452e-05,0.0023870113833541835,0.015533398457289087,0.09376220201317112,0.02567525670448553,0.00012014327573648152,0.0014264372551123848,-0.005624341435850522,0.021607705051547545,-0.008614779100997587,0.0001231152165014722,0.001226717761538278,0.031856728948602614,0.15804043783560298,-0.22930035241081578,5.0661769085162765e-05,0.006299750835741262,0.05308889661717577,0.0955339549454921,0.11072272419181893,0.00027094137850305173,0.007917866149448047,-0.03141697550344817,0.10506419304255726,0.08371509305855038,7.435736992700914e-05,0.0063937090764208315,-0.0131097387483954,0.13422885444375832,0.011358721635922067,2.5198775585173737e-05,0.0026227135256873496,0.0077547560700886265,0.024720324109916727,-0.006367209273594224,0.00010965361287853333,0.007449086315378323,0.01904613649377999,0.07768559737991422,0.02897856805759645,0.0003864509271762773,0.011676913966687658,-0.0115494841001836,0.049760752628158975,-0.010047915632228533,0.00013293747969032456,0.005984019214167421,-0.004496942160088712 +2021-01-26,0.026521161119859627,0.19804341848170917,0.019798510491650753,0.000141618080507827,0.002238523555000831,-0.01244930689292468,0.04624086899445829,-0.00034184342392331213,6.459958269752765e-05,0.01475720898695268,0.03085351717494744,0.11516586243706202,0.03212017411648398,0.0001239304764280548,0.014796170603688994,-0.03372950525619774,0.031558989654109255,0.10631552323738616,0.00036070713772718294,0.010602126590195281,0.00014771547613018186,0.00041787092457654074,7.369519806964728e-05,0.0001849616184637113,0.01022063581533556,0.018589049951854557,0.049902892268528065,0.04495849279863684,8.133513972875926e-05,0.011226443332455444,-0.0665095826024496,0.2261901987200246,0.0879721471295597,8.627804493065938e-05,0.02533681558237594,0.00037669336807707765,0.0032498157387053864,-0.010977776400678001,3.974915045994864e-05,0.01330398431534406,0.005402782392116003,0.003972481109525303,-0.0956985542815025,0.0010488186993498198,0.016710347357296172,-0.007601649487563139,0.017077820822376615,-0.06589805367422835,0.0001556457527126328,0.003738374099898813,0.005836975973802185,0.004170961235048805,-0.026762500786023706,0.0006840315137463667,0.0068499563076555425,0.02464963534817085,0.3396318217378228,0.11526188727978469,2.1628425940015867e-05,0.004836453229407508,-0.00723035804396738,0.020930836579754173,-0.033672243132410434,0.00010261816746629873,0.008874828297610365,0.001535784404390442,0.008514308877719473,-0.002792957236978414,5.077415099222235e-05,0.0020561489452870867,0.008504427177365619,0.008536010075460464,-0.020465658270197508,0.001943180395204196,0.014755189248373882,-0.02850076917762381,0.1518139067206653,-0.025681223033089354,0.00015448884713286203,0.009429455329931056,0.012324348405345114,0.06533874473194617,-0.003529766942820877,0.0002920797259250166,0.023552979427925582,-0.012820010762943137,0.07233864522839997,-0.016937578612650092,4.992050554878181e-05,0.012433897116909612,-0.011384073617844798,0.06119714919335298,0.002985205082529787,0.00030658670049522554,0.004795792170834784,0.0556759985547539,0.8256727144405579,-0.046480719740390634,2.7982744893745238e-05,0.028682146394639303,0.000709071494766063,0.006724067616292504,-0.004658163084403814,3.5232191984694795e-05,0.01095526754869089,0.013542331933028291,0.039371804962265056,-0.04284033816808477,0.00011079773573714812,0.031656626873690585,0.013999868762396572,0.08518303609156164,-0.018154090071633905,3.796323606508455e-05,0.024164051835202864,0.011264493642448194,0.03454057115638244,0.0032570376145250545,7.230353681372893e-05,0.008867648363024826,0.01407910314225757,0.05518633195868263,0.03980335372777362,0.00011665196453833228,0.0036480993083933717,0.020145179758444015,0.020865594506870876,0.004831639288077874,0.0005518435173781787,0.021405350467443632,-0.024825939583749436,0.08180997212715789,0.03686426399178916,0.00012772780783498722,0.005666468147979246,0.007946234782168618,0.028928763948586605,0.007231619512028322,0.0017629934129471845,0.012400020840338408,0.0030132615417588445,0.02703405745151461,-0.01643322096541425,2.866208579205144e-05,0.007831750661568979,-0.04964977249030984,0.15376852533648766,-0.020259280517898524,0.0010556527493299217,0.009145003120057464,-0.011828834511974204,0.0943792278875871,-0.00028228932427415535,8.346245961947027e-05,0.00530629422158206,0.007004481809992662,0.008938524502467706,-0.027575055486999456,0.00018495052272664002,0.002956569486603231,-0.02286060164376564,0.03862277262934321,0.009015530620826192,0.0003397411263734219,0.005052343820039494,0.008598826976114088,0.03324296169104662,0.002755953138353527,0.0020048867344333045,0.0004482041535012835,-0.0074597148608937435,0.027896982347678866,-0.00870794321287738,8.57936945163916e-05,0.0003929148534303644,0.058460455110584536,0.0858479377545856,0.03744728212874034,0.0016928150708471945,0.021773886858293883,0.012449681299643519,0.03881137269941962,0.0006191631587913478,0.0001270911376239501,0.00045987939324906716,-0.03237335713343213,0.08361530961857666,-0.022615132642818187,0.0001569503585375807,0.0011599792334242777,-0.012176122630311372,0.0466249870931145,-0.09523748190966491,6.373884857976572e-05,0.0032441033656937647,0.007731074142376486,0.030010051557930975,-0.0032304673280266123,0.0024416935426055755,0.0049931241640921485,-0.003229964648050532,0.017420931845710943,-0.03062296604683356,9.22288849435023e-05,0.0001406397837870071,-0.010509572812840748,0.05474262254320974,0.003653058887016493,0.0001392259688013905,0.005490771896674787,-0.014882533495853162,0.08731638014851005,0.02303902563344298,8.061759618477717e-05,0.008740722580862535,-0.011697633528909224,0.05104731642288965,-0.002935280183055039,5.759336984619371e-05,0.0037963991184240854,0.011242454696035844,0.0199261790972492,0.006754484294616744,0.00027508474740554494,0.01554423160377508,-0.01894486721789472,0.07600619339837372,0.036354434427532924,6.1980768847209e-05,0.0012188016136232532,0.016912875755835798,0.1879059084913245,0.0018236788717039744,2.322246450506456e-05,0.019194643145968346,-0.017971390006518807,0.07025667573876716,0.031159693940943593,8.941348797069263e-05,0.001373258642658167,-0.026212465742902005,0.1086694224339184,0.07696065109381765,0.0003802143360331367,0.0035482692866898088,-0.011522950102968043,0.06203543828678406,-0.015636709678847716,0.00010638872945613234,0.023306509251161154,-0.0014065882764156344 +2021-01-27,-0.014636221168602337,0.0965561959450408,0.01452738783819122,0.00016030069306158481,0.004986478365833031,-0.0011003483136130285,0.003542965532257534,-0.00036643347743963464,7.452016047487973e-05,0.008645505741147986,0.01293880584772372,0.04120808242802567,-0.019141123161393988,0.00014524761003368043,0.006290519521424041,0.0007997680077923742,0.0008586526404571499,-0.003291735596242219,0.0003143506582498426,0.008821651763545501,-0.0014741581336457227,0.004003047176517719,-0.024490293733406745,0.0001926864328958129,0.005592315684207962,-0.005459338384077396,0.014874261502167634,0.0057458745283352946,8.014036962881375e-05,0.0033221151744083546,-0.04309334415743741,0.1662911534391987,0.016552752756726827,7.60380388760024e-05,0.029347912866820106,-0.0015504761839140594,0.015192286565840617,-0.030038509700176443,3.499778593209796e-05,0.0012038016081238369,-6.634879130176344e-05,5.9081368828999486e-05,-0.0074644223570031,0.000866018667335731,0.0018598262109380103,0.017674301406309472,0.04121803141797922,-0.036093152904250816,0.00014993978968885617,0.017945154005852768,0.005617773858599181,0.004160807567390983,-0.00411925154533463,0.0006599499198781249,0.007324713742184109,0.005777135137473372,0.07783063460960597,0.004152949507792617,2.211998073663596e-05,0.004484937360657237,-0.0082694591375333,0.023860324728312395,-0.011087552385096462,0.0001029560313526849,0.0351317220566248,0.0033575866521685857,0.01874907023778511,-0.008612523298561638,5.040914275523386e-05,0.010664089823419917,0.005021949171431206,0.0036208086353910762,0.003471006292095804,0.0027051397930090526,0.008851706436066817,0.005472884551225378,0.03311385186755539,-0.03101749507797333,0.00013600619574056903,0.03115586477695885,-0.04411869392414112,0.2747439883067959,0.047210444726060695,0.00024865814003194813,0.0003696928092211131,0.06438798369299778,0.3220591452687188,0.03854009554123969,5.631578540904193e-05,0.023252773990895183,-0.02617956024316832,0.1232028312606792,-0.04704506272083862,0.00035020993825694385,0.005040591249112324,-0.06851422454693004,1.05814404779333,-0.09352540764444454,2.686990832078755e-05,0.0038685508643197353,0.0021667076599037626,0.027056145236972372,-0.050863787936701384,2.6755686967147332e-05,0.004015330544350505,-0.012841719273320673,0.034856285415247455,0.012279284954820608,0.00011867652591864998,0.004610535142689425,0.010067615939469123,0.06644008280968651,7.538349023818016e-05,3.500167683319629e-05,0.01925431391890115,0.01842098274474764,0.0587723971476739,0.0417104737772776,6.948911384695333e-05,0.009624874572423895,0.0036701208689893937,0.012027929172348665,-0.0019758391970684085,0.0001395205246715564,0.0002334006738891768,0.02339765659819945,0.021623943181361863,0.01078951151275188,0.0006184620170067636,0.01553559320189975,0.02569164659895307,0.10026197353515405,0.06826871441713382,0.00010785535176762439,0.0022610835976949357,-0.018506599487372894,0.05621975767767881,-0.06318476957962918,0.0021127924271999686,0.006300087698559513,-0.007132196291342091,0.06716716585498828,-0.024763216081917793,2.730539472754496e-05,0.012175581018340502,0.006030105197440633,0.018588687102998144,0.0071270716604377145,0.0010605897882633114,0.010865473254458744,0.014302194791208202,0.12755349164560584,-0.018357405846076046,7.466825130232403e-05,0.0009449749750901536,-0.030818991104492016,0.04208324996992141,0.03459385594066727,0.00017284408902210882,0.016274598359460452,-0.04895831218562183,0.09423546959085492,0.10992823505858088,0.00029820570797250566,0.008865361135718215,0.014045079716009956,0.05287622899540481,-0.003860756993119553,0.0020587995985359036,0.0036788036908459274,-0.013073695069022962,0.041180707121749816,-0.017251105859231286,0.0001018579478146631,0.003618678839651799,0.013535283855844446,0.015892671018198596,0.0016798459074290352,0.002117130683142444,0.005280388757283734,-0.030430794940733554,0.0866674176029275,0.01335760656059254,0.00013911484551277746,0.003894942387281073,-0.026754920913219266,0.0689915166582362,-0.01217431468686649,0.00015720572412575604,0.006726159920657594,0.006808065548060654,0.025838760279335085,-0.0060516686585056914,6.430814476730624e-05,0.005488865861648448,0.008550202305860167,0.03157823220088197,-0.008485269640406667,0.002566295336540689,0.01152571882040959,0.019959504976130582,0.10499101061188489,-0.020685315222125102,9.456669703599124e-05,0.017584632972357767,0.028749539612027,0.15786731906069557,0.07484045043557576,0.00013206856075603449,0.009036316659305424,0.058466139710555,0.3864463237762691,0.25851362724749644,7.155894654934706e-05,0.012264208226479566,0.00813318902682094,0.038399961922887575,-0.00898269210103114,5.3232574087791846e-05,0.01259487074825017,0.015628517767642302,0.0241335932179214,-0.012283045151520343,0.0003157367953408723,0.02052504515038785,0.004513996041150619,0.016619032033755768,-0.006188635822183233,6.754136366056107e-05,0.00941353725043275,0.009728830320731163,0.0975171516341243,0.008109342979453076,2.5740140131285493e-05,0.006063957588242976,-1.3435728256355305e-05,4.645851453231253e-05,-0.005935140187254514,0.00010108922254096033,0.0025355448452131397,0.005382276707753776,0.021695364352701592,0.0010798789837720099,0.00039104527647143187,0.002128570507919914,-0.01381495490147551,0.07908243792243654,0.002038580460421537,0.00010005555801580544,0.0011422165361841682,0.00023299460841908967 +2021-01-28,-0.001104400430309854,0.007671342349496823,-0.018690808170139458,0.000152244561140217,0.0034576466280268688,-0.0008365423149035869,0.002954088004667555,-0.02392634657688576,6.794773920886441e-05,7.127264029823798e-05,0.024769408761469564,0.0795613071602739,0.024703154134095278,0.00014401606319665455,0.010587381295630494,-0.008828543489277123,0.008849110159494444,0.00776598297596759,0.0003367110084533296,0.012307822553237167,-0.032006982489469434,0.08482348636370478,0.057006113092389704,0.00019743601918559885,0.012113801173164794,0.016995796450777347,0.045570986398900525,0.030856798457241916,8.143288698881989e-05,0.002051230495884968,0.013084338575931933,0.04665666482860259,0.008096266825200307,8.228637641117612e-05,0.008432309152765041,0.03274697994794445,0.31569219858588304,0.023796181684732593,3.5571814481319705e-05,0.013726578926699515,0.022298713172194663,0.017493591972183555,0.034031944656662226,0.0009829820678107818,0.0033297149305767395,-0.018157602815625888,0.04375448405008007,0.04219988258693038,0.00014511016346768055,0.011615181118915737,-0.0014687506774259697,0.0009893025950084024,-0.08992936379192723,0.0007256768853343814,0.0009528958575202714,-0.002001382871003369,0.026135433166974163,0.0012500072420795908,2.2820400680101367e-05,0.001957121494859519,0.037311591308583324,0.10302601161274248,0.017727410631666995,0.0001075840581202506,0.014266327215591847,0.011386190873160264,0.05769011860148633,-0.06847945918000939,5.555700767389257e-05,0.0004958508509457355,-0.004193877739850764,0.00353113547112977,-0.006041566547268062,0.0023164576184536686,0.005336302789864596,0.015835945909881417,0.10289755196326103,0.008930335301603747,0.0001266458825762656,0.015428982667242953,-0.03597353463046992,0.19580183720449335,-0.05541901001790464,0.0002844949630018847,0.012016828607836455,0.010573370014819457,0.052052363379707256,-0.0004467779777550884,5.721816603698124e-05,0.00021453564939010968,0.01939923320412696,0.10154729045866742,-0.0004875351828096158,0.0003148495170710768,0.015991228797818318,0.017727016974324463,0.26702234179226003,-0.05618606038681912,2.754978991745948e-05,0.01271455491513174,0.011711312064055256,0.09501253946743582,0.007163613119550876,4.118189591748479e-05,0.0009673001098583034,0.04062821134387891,0.1355264380449603,-0.131896651634984,9.656648746737529e-05,0.00282949458105506,-0.011924214974757381,0.08193720184572784,0.0040706518601298855,3.3615613709975494e-05,0.022645351250120495,0.005427836940381353,0.013373382621283533,-0.0013205031500501771,8.998350475899012e-05,0.0035015458591970373,-0.006852086835302672,0.028050197962462147,-0.029379704130702917,0.00011169546052108948,0.0028890277400206695,-0.007044896175582268,0.006998509575532674,-0.11204669632142218,0.0005753665334676052,0.02103055105507138,-0.0019106835131963357,0.006577679751995834,-0.07385493440141623,0.00012226496845582041,0.003676992162608723,0.018781197626743993,0.06766585978388312,-0.04481820628143668,0.00178144678132176,0.026958777028144754,-0.020947928549716357,0.19104641962090418,0.004257804369596607,2.81957970668917e-05,0.0010682824902544469,-0.04632258941005657,0.13248191202545687,-0.012601717658219871,0.0011431612920934295,0.004349970570077258,0.03912934947431225,0.3099887029432358,0.05448015646873918,8.405864869454085e-05,0.003858988288830958,0.015190993714727522,0.020232805219055065,0.012621623069215908,0.00017720479516517747,0.01985433312868872,0.028325613025405923,0.04308729538284526,0.05451815861916161,0.0003773410012487408,0.015876418612565172,-0.0010473552541927817,0.0036966685446753037,-0.0016957767213006125,0.0021960076305656763,0.019917668974125127,0.014613935307673843,0.05552430319305341,-0.14344824725196295,8.444509602231046e-05,0.015970735619743888,0.006887672955200486,0.008862444405996277,-0.0008965156788835906,0.0019319513478564868,0.028244908020220356,0.007328865150023729,0.023246704260631048,-0.004487622805249209,0.00012490832272544412,0.008747328004427023,-0.06359857964448029,0.14839214561924985,0.07659986122932776,0.00017373882430515313,0.028774487420159037,-0.015899877444579106,0.06163391393802767,-0.06911134512582126,6.296336846951598e-05,0.015848558713561136,-0.08664917901505845,0.2553697638604401,0.0407833360690724,0.0032159777491318656,0.014694365596049877,-0.020792032760606986,0.1111136400300486,-0.04271903663768653,9.308295167521457e-05,0.005613716016283891,-0.007153175087375251,0.03621760120381908,0.0005867603829637163,0.0001432319674198082,0.006996228333267948,0.021888222200539056,0.14765517448783308,-0.026548208775894516,7.011493187779453e-05,0.0020007986504221933,0.03446463491626669,0.15297966840612293,0.04910016107171299,5.662228117364843e-05,0.003825717703421133,0.04583750473126389,0.0816733508327972,0.0529541227022018,0.00027363395524696504,0.022891968630376652,0.011860480079561276,0.04801065977591964,0.004459451299794547,6.142978143314029e-05,0.005109649430516911,0.05041362021668578,0.5296631022626008,0.11152183592468307,2.4557234136692797e-05,0.006100688581172667,0.01377448532317211,0.043861817494430196,0.01762640220969464,0.0001097735531495072,0.008311327101766262,0.0048668786885243355,0.022534498451236146,-0.09384329822906187,0.0003404321719905394,0.0189790248861758,0.031055315737972863,0.15780631752707436,-0.0040366845329216075,0.00011271542671953453,0.0020906378741457534,0.005364871439907173 +2021-01-29,-0.024542047971628636,0.1804570447477872,0.012338216018685889,0.00014382141050796747,0.029035136959352607,0.04867770733937391,0.16190256336221065,0.04133910770151473,7.21417905085441e-05,0.013810526217237674,-0.01091471170076516,0.03740262335578616,-0.007670959136649916,0.00013499180654506912,0.0067861931995823604,0.0006062887201025404,0.0004993100735702351,-0.0018205639747429648,0.0004098047770487818,0.02455114613336398,0.04927078942513968,0.10467644264241402,0.02224430905546894,0.0002462852132497821,0.017975370453661793,-0.01731350480934826,0.04022477662458183,0.014134225868969019,9.398057345256152e-05,0.004312971484261138,-0.044162422761699405,0.14400750912760174,0.007175431736277373,8.998240727442213e-05,0.012032770400519898,0.009023378687527828,0.07053179216962692,-0.04999405619876239,4.387153998087991e-05,0.026828823925849423,0.0037955496281858172,0.0032403949479795787,-0.02841341744611235,0.0009032781700991085,0.00745317173048282,-0.026684339842106605,0.07034122416638365,0.07530988455985498,0.0001326503582549732,0.009080589424365773,0.01252152764642311,0.011637910764880497,-0.028556920602795268,0.0005259042156289746,0.002192030243272336,-0.009842725416339229,0.11241311315309581,-0.044373043186472665,2.6092829946001603e-05,0.007726980514313029,0.028347720406086786,0.07966064603728706,-0.04061909532913869,0.00010571225920817155,0.006234975335328028,0.009130372844797634,0.05054160167891306,-0.014289632360179447,5.085121454554827e-05,0.01222220577534419,0.006067133825727415,0.004029902216859834,0.0037713633168474157,0.0029363785213643604,0.011729616060091383,-0.01891412866113276,0.12331469983357167,0.005662976880171035,0.00012621866913058077,0.0034963936158038363,-0.015220525754977697,0.08110241744155769,-0.0010242037333448866,0.0002906056721023617,0.0015001560949742707,0.031227428925018536,0.18649657026342115,0.03702149735568716,4.7165705521802865e-05,0.008535569571843215,0.01261281187943747,0.05828227799273034,-0.04230943988659603,0.00035666640771985327,0.01690930691147083,-0.004816829876100158,0.0651391034171431,-0.003982644058122957,3.06866699689155e-05,0.04319643744279368,-0.011955261219563428,0.15213438912623098,-0.010140551330730994,2.625508229373532e-05,0.014199402083207127,0.039649492153333375,0.11887280412101521,0.0483140542873595,0.00010744293846381556,0.023530905992517104,0.011326390600628296,0.07192256722643967,-0.027922419796534436,3.63763173324859e-05,0.0031392593052100536,-0.007179174454254684,0.020100133965604523,0.00038990976076757304,7.918682626199589e-05,0.000524022720637144,0.000500259536982063,0.002244834585976053,-0.06945342336494267,0.00010189658462349098,0.0012276067019102342,0.030561743595343457,0.03306788794924409,0.0251640861741198,0.0005282593976562744,0.025644133542599576,0.0008832249088910149,0.002884305933283849,0.0010523814322349763,0.00012888904159888488,0.013036117401860085,0.049289932448194046,0.18355456891433677,0.031095585978649715,0.0017235036143956998,0.010756213893741314,-0.02678186759657184,0.26562288499660897,0.012324678295964136,2.592731622182399e-05,0.016646969504347468,0.006107056158672359,0.02154898985685816,-0.0870935274061603,0.000926565801197142,0.01731486603591748,-0.014564465930115901,0.08962783535179993,0.004106382691104575,0.00010821246735495271,0.0004768437587981038,-0.0021704771435162953,0.0039175392186876715,-0.0005464760229744968,0.00013076371493368666,0.010040918888550267,-0.02070212181165998,0.035475703482496714,-0.009461434981553683,0.00033495599658295706,0.00491107012451187,-0.015834830543310675,0.05921240262027445,0.006249650972294249,0.0020727698256546227,0.0006220045177583598,0.020350512969092988,0.07272789974522897,0.0049878977176424,8.97769165439525e-05,0.02209974219682172,-0.023838976266870805,0.03389880833281131,0.0027756187030559794,0.001748156710574323,0.013673714127941102,0.0018809267860253993,0.007699871848925363,-0.023029166049530946,9.678419241466765e-05,0.00045643919012067625,0.014618819466209942,0.038069958245574395,0.008212039320091657,0.00015566474998406513,0.004602114036740167,-0.04008183314664409,0.1677914451653194,0.11245784775500962,5.8303105272088675e-05,0.022909636017023442,-0.062392267275875754,0.20553134262864592,0.021760369100782613,0.0028772047357089425,0.003330666662389889,-0.01733647931939067,0.0791134447214868,-0.005674638190963999,0.00010900619537269687,0.025310630889210883,0.037737924868658894,0.23919366645754042,0.11752885547846888,0.00011441662262302323,0.005297473396336776,0.040718393114004825,0.23669310096208243,0.06085276887683316,8.136801665462355e-05,0.013367018672933533,0.007739369758854191,0.03931663321543861,-0.13030518118042736,4.947395959672391e-05,0.0029461018557039153,0.08845273005915745,0.16916690267695095,0.16543159675910132,0.00025493251947775154,0.013224351067937175,0.03500581161696657,0.14543236161809334,0.038180960522769904,5.985404015786794e-05,0.021568486489144223,-0.00466138359125932,0.05548712234093224,-0.057923059981596636,2.167474148760565e-05,0.002848204208876788,-0.02500268993800665,0.08123873925388381,0.05485723989078522,0.00010758024394919605,0.013918021261859925,-0.03163696999926619,0.1436754289547339,0.09517664721495957,0.00034708860120087766,0.016580099982958854,0.05026032097752045,0.23052100075128565,0.08789650003177998,0.00012487817910529782,0.00795290797879917,0.0032433386024629048 +2021-02-01,0.010832655340490339,0.07964483607993353,-0.00856130204198721,0.00014383477114967197,0.008331140268928804,-0.08162512423570735,0.23942760763318943,0.1381354582776855,8.180129061982435e-05,0.020449174255907473,0.08261692428504204,0.2647052828346606,0.1473082073237151,0.000144378863363982,0.0037658163355713072,-0.018501309766868857,0.017568432169480806,0.015287077116892587,0.0003554162863149207,0.017849975123937472,0.013248399919437206,0.023939798273588088,-0.07082185867352116,0.0002895614315931416,0.006042024293659925,0.005748545133748595,0.014999251481702494,-0.05639198089376322,8.368258717938866e-05,0.0045373671957352375,-0.009519100895856603,0.03620554627816666,-0.016223324905112496,7.714551465440599e-05,0.01328545459919934,0.01888500483082502,0.16142669487341987,-0.042332894775742674,4.0118100301595735e-05,0.010293781445872058,0.002982838560252399,0.002381520143384115,-0.012619559773830977,0.0009658735563987766,0.019639810411940715,-0.03782107930714649,0.09499590835217848,0.08143102625809642,0.00013921656208908055,0.017970892753283348,-0.0020478303047534153,0.0015263755279461462,-0.03973188752244178,0.0006557781306074827,0.012712542815744743,0.01797986213208354,0.2051305219238842,0.04741381159013625,2.6120342163359973e-05,0.003385645200945429,0.02347027599125892,0.05489424739485978,0.013228669703542638,0.00012701131111640993,0.0006115926749725802,0.009323834568823063,0.05482065273830294,-0.05036021188845297,4.787537352268599e-05,0.007979421578472225,0.012392422582531551,0.011401680448411769,-0.013682055436563872,0.0021198753361616886,0.020185623611977375,0.014834158097378626,0.09161061863250415,-0.053799589813556786,0.00013325060672430343,0.01577415123635779,0.06034227663875393,0.41490036080487935,0.076853076803982,0.00022520919123320544,0.005220284370911405,0.0013519557147293891,0.008145497883719056,-0.004474010530191624,4.675260203364283e-05,0.008352281704065035,0.02499800752018013,0.12547693122219253,-0.00431198913514867,0.00032834341676099,0.0013020906219327096,-0.009894473623469544,0.12243950687153929,-0.01767640693521717,3.353523504220747e-05,0.0139026335507081,-0.0005807619140862073,0.005489894446338558,-0.0015505578117625295,3.5344011726082655e-05,0.004289170409646794,-0.017566492745721873,0.05028158460197115,0.02205259494312161,0.0001125379139603501,0.015142471198649412,0.02801960756891784,0.21274424403454192,0.004784119228021502,3.0422619507988685e-05,0.0565521753730522,1.0315268595486098e-06,3.0878927933388933e-06,-0.0009673433557662143,7.406204664766126e-05,0.013685324503858273,0.016888594827637556,0.0746797423800208,0.1306266073351776,0.00010340446719761846,0.00018806570629806263,0.03299889832738189,0.02911640806304018,-0.1419604753556051,0.000647794423644883,0.005147626167604562,0.016041482443410013,0.06364020259580828,0.02383274962127624,0.00010609598663251133,0.002578322988370307,-0.018491821683745194,0.07011950519236945,-0.006275557837784535,0.001692622184951416,0.041467587643605884,-0.01315834932490715,0.11390362823288526,-0.03859029695376221,2.970612806162853e-05,0.012917407728253446,0.026215365187421975,0.07581903490380366,-0.014387421304143848,0.0011304436787580219,0.01678960510654667,-0.009633405831232057,0.08180382005929282,-0.02476876719547207,7.842091674179018e-05,0.013559874557296339,-0.010154941802863826,0.013004450710281558,0.0020178825174441174,0.00018430232425779817,0.002168137804270268,-0.007176061142268219,0.009185066269377222,-0.027739103406087873,0.00044844351720030995,0.0116746489270757,-0.014204251241461002,0.05680999344297212,-0.01663204805041284,0.0019379561559465315,0.010165935710331088,0.007848756906929428,0.027392027935198546,-0.006787624865028196,9.193207501261546e-05,0.02270741119292683,-0.010748369949952022,0.015808588441431536,-0.0004732643231345286,0.001690155662004362,0.021904849315799804,-0.0018765920148457594,0.006670327620996366,-0.008031926145961314,0.00011146505513805192,0.01271516293608081,0.027571039020855777,0.0818162383489258,0.03163262058458576,0.0001366073292935889,0.005115173520051867,-0.03329958248758103,0.14340366825113335,0.05046445185384287,5.667512056522527e-05,0.020200041742003957,0.09335770357488422,0.3065995502306828,0.09806535090505093,0.0028860025126017526,0.0014241490894978234,0.03155275694499278,0.15273065864959948,0.02919764368760802,0.00010276652186880065,0.012784883943863063,0.04072241559907573,0.1818245706784916,0.09872000497964936,0.0001624208374715734,0.0012743970865107994,0.010137908828554547,0.057394402217571854,-0.010546245617755875,8.354636192912129e-05,0.005324293873416239,0.023902501340523376,0.10785488233473403,0.03159926041469612,5.5699453843343904e-05,0.007544010417003626,0.028841445455104805,0.047739332038581696,0.012389870211357854,0.00029455749526193707,0.018652207588383846,-0.007004574860475658,0.03042574960366487,0.007415739623377926,5.724728176535916e-05,0.001969726062542961,0.0010377197458502788,0.00904096365682795,-0.005520023024224932,2.9613970718335265e-05,0.010379134876490784,0.010324518848438817,0.028909897406307502,-0.04370890516672476,0.0001248338128437494,0.002188573790593603,0.0019517818116184637,0.008406895624869133,-0.018599899810017504,0.00036595154241715117,0.019979639538694367,-0.0015278957439777397,0.007602329018597321,-0.01458375000923174,0.00011511153779841014,0.012156009756637847,0.007248319065433226 +2021-02-02,0.03376971344982493,0.26227451612899433,0.03984932104661917,0.00013616260919646267,0.0011559172717030665,-0.027533003937178096,0.09432204017419481,-0.022931764921397233,7.004077413366983e-05,0.01958160374623559,-0.036511392303316036,0.12049222208172036,0.009625753818538457,0.0001401737155742633,0.019887889781110665,0.013593954275893048,0.013930323262355573,-0.028053951360922813,0.0003293460555923111,0.00516353873278306,0.005283599149680194,0.014610140455771095,-0.05485123332448025,0.00018922270337255149,0.016161281965365384,0.0002587334421393169,0.0006143170857494212,-0.004736218562113099,9.196164087466959e-05,0.00514727251322123,-0.04734403086345878,0.15500015383332513,0.011376053208082564,8.962371809802628e-05,0.022089474748163068,-0.005930341386346797,0.05085219747401567,-0.0010575291902890453,3.999158199468591e-05,0.006528428812186088,0.005175260671495626,0.003855479971225659,-0.04617920030538826,0.0010351387459515149,0.00350509921047963,-0.0053300221162280665,0.012995189012487762,0.005368201791606468,0.00014341953063266955,0.016894002646269196,-0.02381470823959341,0.015458249387736225,0.04209878639914604,0.0007530248599311863,0.008291985523842613,-0.01151007786417105,0.15344894456380923,0.02926131691882253,2.235306831229962e-05,0.0004958866722713721,-0.022956589445579025,0.06134575713037819,-0.012534823517251267,0.00011116648513821161,0.003625273744593356,-0.008669977279243034,0.0469371504314913,0.01525208318288348,5.199517661904935e-05,0.004475223937980174,0.011689508660220949,0.01127984763044551,0.01017831768853514,0.0020212312138925535,0.008648798676807436,-0.05021935895317134,0.3338679053408401,0.04372568297157952,0.000123779464651402,0.0020036468352163895,0.00870743992498112,0.04722913418974653,-0.0011539038858652297,0.0002854885761743799,0.006038173486863322,0.006938511240021316,0.0439986538097449,0.0026777194247021674,4.442095214228768e-05,0.020604441342318897,0.024273456993108764,0.12647275896516336,-0.02936954982408927,0.000316316209079005,0.017870420182681576,-0.05050980709510918,0.6886530102209881,0.020397360940707213,3.0437255571527378e-05,0.025207218764744053,0.002564032585936731,0.026188859210695168,-0.028046149549433585,3.2710611907647657e-05,0.01077484213585547,-0.02805232893802977,0.07990112143781716,-0.009537409630729422,0.00011309380180609,0.0007863380210558991,-0.020768020884479606,0.15089566221304299,-0.00403638508095733,3.1791479002128165e-05,0.01201708869802069,-0.00748991709142611,0.02295639824208608,0.004847851508777119,7.23353592142131e-05,0.0038775124263782284,0.015107881435270866,0.0631983348074768,0.07748699671800466,0.00010930663584760265,0.0054703126945856925,-0.009329565777140858,0.008957747674622268,0.0035244318826499646,0.0005953031320210494,0.026261642853273266,0.0012360888204512388,0.004900089525136239,-0.0872560705343201,0.00010617729890598979,0.003682659855313305,0.052586430681166946,0.16573510235961794,-0.011728021803904209,0.0020364716462478406,0.008744496116367115,0.044127443466635836,0.42477815446942907,0.030620507437244295,2.671337672397403e-05,0.0154391441941846,0.0896226521708581,0.2676257852294333,0.18930466278906669,0.0010948663467087642,0.02877390237720724,-0.004512077563673357,0.0386460457007703,0.008125562342241445,7.77494162148764e-05,4.00366326248759e-05,-0.012881263235565439,0.018861516365537886,-0.004774581311190552,0.00016118596990961892,0.008676637668568576,-0.004384106789339718,0.005125317605579856,-0.05006561368902329,0.000490980512818473,0.010107260336667303,0.004533967606630562,0.017573449600604227,0.000735701976269434,0.0019997317126741595,0.022802755229326545,-0.004495742604515385,0.017451672721757898,-0.08408967940913427,8.265226301981702e-05,0.002687038593260864,-0.0012613321540067255,0.001857704244640242,-0.1416300894219952,0.0016878353765923707,0.032029349701585975,0.03780052075575292,0.13657848057449254,0.04935642516332549,0.00010965578354464427,0.018853565662223955,0.01779779290498018,0.046352721763588615,-0.0011276805093924838,0.00015565077404356488,0.025254597743669806,0.03419443200129127,0.14481696298581792,0.0482464211667687,5.7630167743666277e-05,0.00699785764744917,-0.0729422458722867,0.23493272833059287,0.027781760706267797,0.002942752021185923,0.020484042254390947,0.010921727031221153,0.05504030139275049,-0.02679161204788986,9.870771199867737e-05,0.0185748959382819,0.013455901516268264,0.0880668573708611,0.007705200984760741,0.00011080544067094824,0.004812573423351552,0.012151962466641412,0.07450175341674543,0.0011081387059023275,7.714870208822511e-05,0.0036385676687820164,-0.027486486231640194,0.12662600573096627,0.04999960237895672,5.4556149643146904e-05,0.007685265803186076,-0.04184090923080124,0.07834290955515269,0.020181221925881284,0.00026039390280697164,0.021263777575072494,-0.005602105506538326,0.021186628675034395,-0.023364115567439368,6.5751218357922e-05,0.008057856489978692,0.02284999790676506,0.25238681362606386,0.034805176819717745,2.3358814046104832e-05,0.0037073210782932408,0.009669576018104356,0.030969063587765334,0.0061322049550042905,0.00010914109903484406,0.0026561070449617327,0.008947199634682839,0.03703186473170035,-0.068519862805383,0.0003808373347841314,0.009441375618215883,0.030896985704535352,0.17314243757336933,-0.004730518026490743,0.00010220788006596243,0.013231611274035528,-0.00038258882881914494 +2021-02-03,-0.0015006454594308802,0.009363308428700303,-0.032444161342676525,0.0001694865943423635,0.0022441076855773574,0.00019983191920311172,0.000614007061428285,-0.07662906452099139,7.809118627111242e-05,0.008488943592537074,-0.016143628079170802,0.05121097095130448,-0.0020084685905395147,0.00014582612584340937,0.034321804934807194,0.01762922039606201,0.013858589439497571,-0.01846746835529322,0.00042932080454793464,0.014510180495079732,-0.015027945928056799,0.036645083336211866,0.014782682760817562,0.0002145762654290856,0.012277924851749673,0.03979503096410506,0.10960311151026605,0.17940847480052813,7.927800327573713e-05,0.01295532180307397,0.0017014642097930163,0.007385388928068104,-0.060953152229593535,6.759884916658645e-05,0.015352841427281027,0.010118771685029507,0.08333102828406866,0.0009642001267360254,4.164085808562373e-05,0.012663931443795441,-0.01029585100333287,0.008919686473304524,-0.03017886596401541,0.000890138215194024,0.008791955906661583,0.04516920186879273,0.10663648658073398,0.03514319164550606,0.00014811480647103695,0.019666556131549426,0.02337998439091453,0.016167492520022107,0.11894086738594413,0.0007068477931731544,0.00017514226443701144,-0.013081758176740808,0.1567518957031091,0.03051572864210001,2.4870018274396045e-05,0.0042149295543578436,0.010572822606479433,0.032007371559408325,-0.0029534081662310023,9.812777962693088e-05,0.016583634726056753,-0.007224609015236272,0.04246710408971721,-0.005348402239156121,4.788764945298869e-05,0.0007559206464622519,-0.004495088822088555,0.0033025086666620827,-0.0006893114236039394,0.002654711213642046,0.009541167257449553,-0.03496344397624438,0.24420322184507087,0.0072162336643987355,0.00011781888906534042,0.012157052968052669,0.03955738849466967,0.22087464162991777,-0.0022861654722690955,0.00027732561618124186,0.008502697897573344,-0.018077446622713364,0.08963350974895,0.006663395908912417,5.6810373110668636e-05,0.002743973993748838,-0.020839130949571155,0.11752758150282053,0.010175360670400362,0.00029223122048646015,0.014396120363474128,-0.029994783437694017,0.4197703928719935,-0.05419952898977839,2.965269415272122e-05,0.0028234892743211767,-0.002679098332790917,0.02609501472588218,-0.04807299212809136,3.430147668567564e-05,0.0015398786261659378,-0.024738887277471838,0.07313122501726774,0.0016032386019889553,0.00010896827331379802,0.0011087967192036016,-0.03953942273982374,0.30327537299480656,0.025941320877235,3.0115186361115022e-05,0.002889272560518203,0.00547115288292533,0.01365711593252771,-0.046425968295697305,8.88172325457479e-05,0.0050035720340703355,-0.0163657951894789,0.06161393605912612,0.0383547417351368,0.00012145258252827395,0.0028481007146095045,-0.010212929454316186,0.010830100248442772,-0.020307616983376065,0.0005390057730475091,0.015857689040166247,-0.03128741643064547,0.11823862492269119,0.04493051373126425,0.00011137721171759158,0.011690404985427725,-0.008535958752529674,0.027321860978348985,-0.010299960763781037,0.0020052162034112507,0.002103477239593277,0.013703447361228166,0.1212473896457966,-0.031181461777596675,2.906294592140913e-05,0.0019349682067439427,0.014817757046381849,0.04188515486979203,0.0020163274123857337,0.0011566277665166387,0.017490043269011296,0.03963195632040383,0.30828029588712264,0.07333805624167117,8.561017536851947e-05,0.005342274923519349,-0.005742642632919707,0.008902450778144205,-0.01879306119219336,0.0001522465976434548,0.009672364621105836,-0.008563187025415388,0.01377135443689736,2.1763209109302856e-05,0.0003569132633728455,0.011285817084276777,-0.02377342887834887,0.09011665820258002,-0.0608313784552684,0.002044735268564555,0.007569097752208024,0.0475081740453571,0.13786807775634208,0.13331202963135708,0.00011055922578985836,0.026172887985401874,-0.040492902393539996,0.04954330367836952,-0.055922676272496044,0.0020317540555859913,0.01578163892364261,-0.04019626362887508,0.1282740836580654,0.03719573654450913,0.0001241545961275208,0.013382396768801083,0.05408996139893131,0.13804619540893406,0.08345440629160199,0.0001588373401034832,0.03799498114078846,0.01339514551897802,0.07063380279958532,0.0035662988197331905,4.628590636547622e-05,0.004734349654254483,0.002091140883310646,0.007128087569032978,-0.0032853853670185033,0.002780534733011203,0.032749261931208945,0.009287497576178073,0.036346763332250925,-0.08342857614532735,0.0001271081919086255,0.005993019133913087,-0.012635704721389564,0.06699880657126908,-0.030361286097755413,0.00013677073666077546,0.01887505741859065,-0.015695551820215845,0.08045133059254359,0.026074764541189295,9.227670034697595e-05,0.0006246077155952957,-0.00613095846076949,0.030143334660070888,-0.03520799511875718,5.111924998812135e-05,0.0033029391934335846,-0.02571375660789673,0.05666698029533481,-0.015691920045989592,0.00022124061271915362,0.0047117051846854805,0.0001665007671935356,0.0006583807334769745,-0.026533102095630142,6.288593195357629e-05,0.001163838827850133,-0.006199079332887487,0.06359120108481572,-0.014455265702747952,2.5151358751471967e-05,0.003920226554359533,-0.011764665175551754,0.03709405815689679,-0.009010810805507734,0.00011086237739395482,0.005460625312124559,-0.038458321275158365,0.15175879183088747,0.11747566232795145,0.0003994518470273289,0.006532311780683525,0.041190061063212796,0.20361585323821177,0.0376648106983949,0.00011586510065500893,0.01960877228188981,-0.0018033840266169902 +2021-02-04,-0.0042697085108127,0.02915047764525785,0.0031455356873177917,0.00015489561943941732,0.004515368890591759,-0.03123920182130147,0.12588733168052285,0.01599445927210511,5.954268671022376e-05,0.04026538544668862,0.0259767732854431,0.0989666914733931,-0.010100456900559107,0.0001214208746028491,0.012195876480081325,0.020893734258871446,0.021670547000712376,-0.021721936394370547,0.00032539737810230945,0.00875056075424772,-0.02426876554323654,0.05423897929050804,-0.0031400838798775125,0.00023411753902155669,0.005324084018106757,0.01704204193458119,0.041116283061172904,-0.004976417416323809,9.050123842971737e-05,0.0010304161877131633,0.035684872870894925,0.1398519473122268,0.029309150411934347,7.486959626444092e-05,0.008649559760610305,-0.031100725154721273,0.2744552023809109,0.02762398145805153,3.885954063331381e-05,0.01612284079309708,0.016632123052528702,0.011885601406884775,0.0240082969319912,0.001079123907722287,0.010017483263240909,-0.01428962966631175,0.040207709896986625,0.01781213509562584,0.00012427206708799386,0.011937194302700807,0.017212921247747665,0.01391160752745878,0.051698906252396336,0.0006047858521958285,0.0010821177815524426,-0.013028159916282976,0.18135385029101767,-0.02542969829082964,2.1408147568126815e-05,0.0009501524770029514,-0.036626747202138925,0.11973089764090611,-0.003094337093741039,9.0874733517589e-05,0.005175255711647238,-0.014535803069670825,0.07326745579676668,0.008796435585283043,5.5845699858976115e-05,0.006592816100516396,0.05106841475867415,0.04224559456657518,-0.031860597825327255,0.0023577292028599756,0.029221666056298858,0.04123570387389536,0.23636280810047422,0.05194781182702097,0.00014356427396600694,0.016222805953969573,0.0734727059588532,0.4806904688786909,0.08573520503870566,0.00023668392126904896,0.0059561114596590045,-0.0014057537574422125,0.007851825395247663,-0.008887104089264361,5.0431231741844477e-05,0.021001105214170417,-0.0035813033267168663,0.020451298886243134,-0.09808885825794711,0.000288607104572128,0.01678750292674805,0.09260031417071184,1.3085921776211242,0.2560481494450927,2.9365565699203926e-05,0.011019923449743329,0.007202450520832812,0.07088948499552043,0.011837610069687305,3.394534064900289e-05,0.0023595515763870406,0.005027788521485326,0.014139848310602282,0.00021070812363130034,0.00011453942734734947,0.008651988769845399,-0.021730527451198845,0.17739917861572047,0.009550858612286663,2.8295087366301997e-05,0.00589089160648241,-0.005373236201960016,0.016044739453275524,-0.0031845772594123233,7.424729661038982e-05,0.010367106684693445,-0.001328005707566846,0.005242257674578193,-0.031406800561905965,0.00011583243151614012,0.005751931244347604,0.04421413987243566,0.036644002882879265,0.019824557964613916,0.0006896580876397955,0.0025724909465875277,-0.0047089884137283215,0.017420151950246047,-0.06389695628875841,0.00011377888986383192,0.0046689685021370515,0.028798983003007976,0.09855057066567291,0.04618840861661862,0.001875586865466676,0.04311934435390676,0.002964443931448871,0.02893104869782189,0.0004238002689929684,2.634882539898539e-05,0.000916575522575147,-0.034011936679084864,0.0790184108156131,0.009354302450952728,0.0014072599906341016,0.021241069411516378,-0.0170094690883715,0.14335846941207314,0.016652417202049383,7.901199835547913e-05,0.0032369217710858317,-0.0018977380497743276,0.002688482476692243,-0.007542970353237863,0.00016659978686528102,0.0003357482883002065,0.06948169076845048,0.12399526816959369,0.3354709034728914,0.00032163935285729766,0.006973172175958959,0.014312338578075854,0.0610059540922411,-0.020516956246944267,0.0018183970538957301,0.01943781479680551,-0.015282582484106537,0.05549117701848953,-0.06767334560856536,8.83615208468902e-05,0.007340848803327107,-0.007325679044751139,0.00883891222245968,-0.005356395485126485,0.0020602800540094578,0.032053013306631614,0.02083375019561732,0.0616607286938744,-0.0170352218722084,0.00013386740236508222,0.0019531726167135045,0.05386027300615639,0.12906228983917029,0.050417775410244475,0.00016917241940396684,0.028405829797789616,0.019738587320541623,0.09168224378877889,0.00832416961415992,5.254661673511346e-05,0.001277340161226387,0.09736724811842525,0.3337297760659724,0.06987323435915233,0.002765260159986589,0.025268211235539403,-0.03126263756112401,0.1726997637428251,0.036591563342768176,9.004807704035396e-05,0.01086635747409257,0.01967549397232947,0.11283271755855065,0.0011113108746555567,0.00012645947682582315,0.01344369299251875,0.04156868135696649,0.2692378066473789,0.06003979201942991,7.302623373324026e-05,0.011807124174808194,-0.004504259271455524,0.022088705873228608,-0.0007556147458318864,5.125078287149417e-05,0.0053354154515659405,-0.07333728815817026,0.14481393520222033,0.07021751556893448,0.00024691295980750345,0.029874705881631845,-0.052439112511869876,0.17398177867235487,0.043783171454594226,7.494901721251793e-05,0.017916708572949597,0.026666308238195012,0.24182052398140141,0.04727305881333912,2.8451228424133262e-05,0.003849702185920183,-0.004212718546722818,0.01344585685538582,-0.022043242255044927,0.000109517349805162,0.004095512305687312,-0.017583378288452443,0.07220136427393009,0.014539997994876952,0.0003838706311063941,0.0037771289388357785,-3.737149677516406e-05,0.00018463271640365588,-0.030048766342849077,0.00011593208029265003,0.005271623598431781,0.007462114461269719 +2021-02-05,-0.025530195116925617,0.19150796122980077,-0.009391442433088964,0.00014097882449116189,0.014294268880580455,-0.007403006454520523,0.026139112355020516,-0.00021081481161140282,6.795600178942517e-05,0.03080381628522245,0.0215959749570133,0.06770953852535919,0.012062991535233408,0.0001475435286444258,0.01581974002450052,-0.006490658988658361,0.006426598692658389,-0.026714166456963354,0.00034085955084463775,0.013627684733698835,0.02115214499284476,0.04086618185328114,0.012352959829803403,0.00027082460839086776,0.010369698947314099,0.01612334766119367,0.042358163804607864,0.017086444104891112,8.311221044564472e-05,0.007467296276227904,-0.019609672498569104,0.06844212508370581,0.0001886737003592447,8.406916039957318e-05,0.004339024248544276,0.006107324432704816,0.05333613131609091,-0.005594151542962877,3.926703362101558e-05,0.020667287781725184,-0.016001561587703942,0.012821535378752533,-0.038352589030682956,0.0009624254946999618,0.007193334840709328,0.024750891322444547,0.05501084144381117,0.012158440204111899,0.00015732742758038036,0.023077618573384737,-0.023476685375832588,0.019602814553539794,-0.020543746898727358,0.0005853865053243686,0.0020715558426575268,-0.008443804649619444,0.10686227238583436,0.006539766152270704,2.3547053013449435e-05,0.002738021870046901,0.021523541174239866,0.051800735165562245,-0.017905479162505657,0.0001234323052166083,0.02185442442194644,0.0030265601151700907,0.016629809997771635,-0.005251339950845167,5.1229938627126626e-05,0.0043508340974954375,0.036810196533027535,0.027559736724891124,0.04393587482201274,0.002605049885627426,0.003556835779727134,-0.08661370563318017,0.6235985931458266,0.10747140286961326,0.00011429667608189719,0.01785879380450498,0.03465108679098782,0.16003237905926027,0.008326180568167675,0.0003352873981383196,0.0056306546583952625,-0.030805171872282103,0.1958050614590407,0.01734259601247746,4.431601271480024e-05,0.01636475413885423,-0.07110042667057116,0.4603944255136717,0.1367752283405675,0.0002545241277772793,0.0025985763486474616,0.04386334874667878,0.5935969790950039,-0.0013291528993707715,3.066481394428288e-05,0.0073530300295979335,-0.012017179833151068,0.11384538517946717,-0.22246740641730622,3.526702604568121e-05,0.0005131490791764335,-0.015574404318404334,0.054100191808948164,-0.015071969488042446,9.273323190476068e-05,0.0005845575758990232,0.018765512086656805,0.1416075893384493,-0.0005971959066377583,3.061020701512519e-05,0.0012519738761266014,-0.0019824542029470878,0.005092865291697851,-0.02509735699359906,8.630150246423028e-05,0.0035627867931368783,0.0034478854656650004,0.010806502130874925,0.0037443598965734588,0.00014588689561299682,0.006979543698680543,-0.026283532374458223,0.02451221031634902,-0.020634019572546188,0.0006128819328121145,0.025019725551909486,0.004101467790783183,0.015926485060754194,-0.0047423688092175465,0.00010839403313385921,0.010514339858274232,0.023547245604599934,0.08034320504293178,0.02919158977545542,0.0018810924302067713,0.017722117575857933,-0.039944202957805784,0.4630769140717256,0.047062185480129866,2.218108696183784e-05,0.008018964238933033,-0.07124913038151127,0.2379462684733217,0.015924523017575964,0.00097897576167239,0.015456789435026633,-0.001290206207954627,0.00886450600157723,-0.005288654443309354,9.692375520809488e-05,0.00500052593788848,0.04563130094676048,0.06155633521832916,0.05899951337495182,0.00017495867495358024,0.003930401949473289,-0.00558919399451817,0.007862368002530502,-0.009554805773557724,0.00040803717319639785,0.018099455885530642,-0.04257864472260125,0.18010821771656083,0.049821847614332185,0.0018323509018614895,0.005445183269060556,0.006597871005728447,0.025510020100270536,-0.0031019144837151898,8.298190297967488e-05,0.000556038764588251,-0.008039944866382593,0.01159618928723557,-0.17586044904455395,0.0017235145995294896,0.010543698105695148,-0.03174108106008443,0.10626788946572988,-0.014331682167192607,0.0001183411254860682,0.0019057770479509013,-0.06560034879050686,0.15565819046950272,0.06060359064370495,0.0001708419607290178,0.04446746831489273,-0.008961405156625666,0.04001814120583105,0.0047071983737447766,5.465540609408518e-05,0.007966959705772868,-0.019618890506099836,0.059333393829558274,-0.018078115118033915,0.0031339590030092707,0.011029518017695692,0.05122359129053292,0.23295746414942067,0.06620718170629304,0.00010937900394411259,0.004999607066702659,-0.030562640684786372,0.18422176137417873,-0.060136131222473035,0.00012031249403317533,0.007184033947363673,-0.00023581735769147302,0.0012132386114499332,-0.07324707964730386,9.193444195601535e-05,0.004201594735366802,0.02670433466972667,0.1236791644600683,0.04030177543869653,5.426660026273766e-05,0.0037712747802208417,-0.040812452987261334,0.06637719240661513,-0.009961277188867584,0.0002997803853720516,0.03090082587152011,-0.012796468828540521,0.05417441423961237,-0.01166731418037419,5.8736801682651844e-05,0.0006374122003068,-0.009875498334503328,0.10585715613874418,0.0011120925871821845,2.4069667065518053e-05,0.005278270633781206,-0.014795978673118873,0.05181925645861126,0.01155342467122599,9.980711084589414e-05,0.0050244658814320485,-0.006006320976817628,0.022060891068012567,-0.02870317645600598,0.0004291542895882607,0.006475971363849429,0.001621925008461079,0.00848595321481539,-0.012745517861210452,0.00010947171785108541,0.004848009576205683,-0.007111685865224096 +2021-02-08,-0.005020459472726097,0.03186327803465348,0.0005752930466113943,0.00016662478282191573,0.001831380564070681,-0.0035925333768790295,0.012068503243750705,-0.032703763326212915,7.14262627056387e-05,0.012407919236754009,0.013775815369275345,0.04144738210249746,0.002994440494043001,0.0001537508102505067,0.0029655072615964073,-0.01843882629021729,0.02124969889526526,-0.002744031176692353,0.0002928521040629066,0.01789632235276247,-0.0037042870095144722,0.009037628461431661,-0.008668826204835079,0.00021446079791501247,0.003517399396722489,0.029233457813879385,0.07200370470394463,0.05489200626904096,8.864864170389042e-05,0.009476457989204752,-0.000708818832507446,0.002160027155971784,0.001859255642399167,9.628660893244005e-05,0.010779079781863973,-0.018031060831393355,0.14955615519955232,-0.13917094532698773,4.1344296002420785e-05,0.016659987384170214,0.006905213973036622,0.004716716858020015,-0.002477753022575262,0.0011289692698603136,0.0064947344157274154,-0.007293447300200992,0.01670123724402632,-0.006136547039650037,0.0001527024799876948,0.0011870396789321455,0.003377593787985895,0.002485663375686013,-0.05215723235381744,0.0006641856099926907,0.004734077492335136,0.0010921884021362926,0.014952253964074387,-0.014338061625048241,2.176775721767901e-05,0.0010473787793886663,0.03969504936359588,0.11605848153783493,0.03773407738610293,0.00010160392847319169,0.019392148618781614,0.010950445083903837,0.06683752239693418,-0.026522119876164697,4.6118295452190424e-05,0.006886020703348959,-0.019952797985545664,0.019120287408171347,-0.06257939566315104,0.0020353184148434594,0.020250191438394093,-0.013077113787983673,0.07631529596828864,-0.0725697921485267,0.00014101081334764358,0.0010056068920078316,0.03308845058004979,0.17938226696463935,-0.020315274378495052,0.00028563087800202497,0.0016812661742466554,-0.014803089801063332,0.0804795012258273,-0.003986457274238871,5.18117252148396e-05,0.012310684195607954,0.0043679806431778205,0.02222865896428741,-0.021121444754983055,0.00032385771673376233,0.027707375149532525,0.04045777979233734,0.5550307361261553,0.023225796929767475,3.0249294049440716e-05,0.008990390498350289,0.00816621993469597,0.08643430499324552,0.021393770803661307,3.156578812309179e-05,0.003187210578448694,0.0057882710057293955,0.019669094377509265,0.0002772236398934662,9.479539665102559e-05,0.005690796592998562,6.418044460616722e-05,0.0004523869107088318,0.00021519861088211315,3.2770650842097216e-05,0.03839572090462363,0.009074117310446382,0.024379408531327636,-0.012167122805037057,8.251988362797579e-05,0.009265215419403446,0.015063082578968682,0.05624246883227136,0.030696707623324365,0.00012246107748035723,0.0027836361568283705,0.08661584244889171,0.083991174752832,0.16776283980942452,0.0005894395051447226,0.009880881241526284,0.016233597870843042,0.04913064484940374,0.010755497689311017,0.00013907476295299155,0.001059751696092056,-0.04398638818892235,0.17411480291809261,0.01892807112309065,0.0016214433568988457,0.03215695613195087,-0.10783484665050067,0.9750201362221814,0.3073323690305666,2.843987842038369e-05,0.0036677101123998457,0.018499430472428927,0.06093529729905366,-0.017361721236772435,0.0009925689693297947,0.02509417453792229,0.023741276133815794,0.20043743252099092,0.012412355397598567,7.887708847732495e-05,0.0033845315248212443,0.01968531197080525,0.027414201731173267,0.00011637444961204647,0.0001694775135981906,0.020828218542204978,-0.012782124335084208,0.019387529751730047,0.0018442995121318358,0.0003784290558842901,0.009493839452742918,0.009120690983806941,0.03371868380318715,-0.07451815037127892,0.0020965608373553855,0.0026739193311401204,-0.026599073943574823,0.12212894470203804,0.027596264920836163,6.987764864845244e-05,0.009594251290536987,0.06024512963669995,0.07947469425899664,0.07127704155347847,0.001884387736442655,0.019084126329389953,0.005691204773050495,0.01781737285548199,-0.10413963044540588,0.00012655420506920272,0.010834798052127823,0.0024153133113459335,0.006112710215445299,-0.012477161023985382,0.00016017695863718937,0.021766948429475814,0.03858861188016046,0.1471429194034813,0.04587324592394974,6.400791974529623e-05,0.002619691634145467,0.06678902641782648,0.21899478388884872,0.03219360370876082,0.002890609329304871,0.03812195590558226,0.06562071490544585,0.288961389057713,0.0855034568346387,0.00011296442911579021,0.015787875172725337,-0.006931193250118824,0.03280375882024377,0.0019996344931731093,0.00015323048699629222,0.01757586828778346,-0.02403902348542423,0.12588204975436107,0.042450680389744186,9.032369893675676e-05,0.0007789682071809112,-0.029317595856218123,0.14036888218089946,0.055662494754434584,5.249342469172099e-05,0.013709560154709264,0.016236669599451636,0.03528771252540559,-0.00937082122333058,0.00022433799836743486,0.002036968974998198,-0.022216836356691395,0.09966009237125327,0.019592824184771585,5.5433883739766116e-05,0.0026044720473800994,-0.01473693068127213,0.14553453873444727,-0.02311640102492765,2.6125959689926426e-05,0.0007231015715497956,0.013706388870704907,0.041457942696705136,0.010072083201098345,0.00011556445269822586,0.011690650814666357,-0.0183188416963009,0.0718493953793827,-0.021226897908747655,0.0004018859863647629,0.001979790775730592,-0.031232553373448702,0.14021360907431285,0.00025424873213264015,0.00012758191561124723,0.002767263922531007,0.0038970678388555967 +2021-02-09,-0.036607819259867225,0.26642539067673354,0.08026710263259147,0.00014530642946205256,0.010959668063209856,-0.01891024306260663,0.052556086933665855,-0.064314499057471,8.633454714580294e-05,0.003006647977685479,0.019314680581620024,0.062361034045854635,0.00765820800737943,0.00014327533315246547,0.022872235224270194,0.006456303636658015,0.00801080847306343,-0.006495808095657587,0.00027200410269961314,0.0061744833376445275,0.01532898291195498,0.03258257420159337,0.00039913256165428955,0.00024616466834859077,0.01836474045703325,0.004215434766071128,0.01029593728478305,-8.537639073251904e-05,8.939705750859104e-05,0.0033644275622288907,-0.02607514786579842,0.09597737169475273,0.004428578371651019,7.971641920522326e-05,0.029677572089113285,0.031319779035111836,0.2507674804458916,0.03006957295730236,4.282980404644268e-05,0.01702592931907131,0.02052026386391863,0.01850961449897357,0.0020147135170776533,0.0008549295999955006,0.009203677591932413,-0.010296338734278862,0.02580577340481577,-0.0002530592574148506,0.0001395172247150921,0.014107104371612885,0.022747681555663563,0.015405221686477798,0.0732052455960683,0.0007217612233257958,0.01377267183383609,-0.0025684543515109614,0.033136812542619,-0.01175754606526091,2.3098507018648293e-05,0.0013410832589538747,-0.06676704967081842,0.18190934941176087,0.09779233957214728,0.00010903306060928412,0.02578527224398442,0.013619451649725549,0.07384446576046476,-0.0016097947637657845,5.1916270634711136e-05,0.011978457181606799,-0.0003625754538260738,0.0003478863906301186,-0.012713604160535193,0.002032749825239149,0.009329405953791493,0.002805331151067144,0.01838597129893658,-0.04264545890246187,0.00012555952503552143,0.0025394037580571856,0.005121213749687254,0.02923544985424246,-0.014348067299423707,0.00027125100373485804,0.007058397089702519,0.011185875959144671,0.062495347227247575,0.007956704281126277,5.0417727858794925e-05,0.0011661826718376285,0.007676000895944972,0.04519284729569749,0.0014135115640663486,0.0002799317247938988,0.005742123973126781,0.028779446942840084,0.39938659278348154,-0.0016668388989130116,2.9903305198795478e-05,0.005196432066793553,-0.002182091300281843,0.022133240582290555,-0.02209196394111129,3.293894023216024e-05,0.001862557486523348,0.030498764496191152,0.07516474381495238,-0.057195948632079004,0.00013070458444685846,0.0024851983049376056,0.033190504488199754,0.21961507115735893,0.00869891479183981,3.4909537036485385e-05,0.0011698620950822082,-0.011895860564014208,0.03552837143190281,0.014552874822515128,7.423315975066256e-05,0.004292452039080679,-0.010363081664487926,0.039258506960950505,0.014680763476830954,0.00012069901813933334,0.00790454216188836,-0.01968619117223983,0.018191551010671304,0.016066761749739488,0.0006185396311592046,0.008049913503120001,-0.025342785700721057,0.09156132277542042,0.03315397679332522,0.00011650063754262908,0.004932780150508593,0.005149158129207228,0.019056413164394933,-0.012398529672686615,0.0017342601444369297,0.00849860583933471,-0.031386024146305605,0.2374022941566761,-0.012386516926217363,3.3996451496252614e-05,0.011669972505376252,-0.021002215396736624,0.06183609251848844,0.0016701517010340938,0.0011104380626124042,0.0039694335411527394,-0.018560863610745163,0.16535737943421008,0.010229576593316372,7.474811441402488e-05,0.002399605550112565,0.018094598839567193,0.02519351382607868,0.01755500291426429,0.00016951401139305992,0.014371784290881446,0.017165111479327245,0.022817995612849737,0.013072365091928918,0.0004317904670028855,0.013174806775244066,-0.012310660454802646,0.04519618028493998,0.0043869816628638045,0.0021112028420033663,0.005563851409865996,-0.011808643833923514,0.0529146943265383,-0.008461129195925293,7.160017809912194e-05,0.004947329437230717,0.05776474335069036,0.07588435059496577,0.012463501257968641,0.0018922905391904464,0.026949399090494066,-0.023162684413772835,0.07729968533375595,0.006205285928004125,0.00011872090554475585,0.008652546496128385,-0.010100157053103229,0.025180540747355644,0.00036771551741640357,0.00016260108932172188,0.02704567759335753,-0.01216295797564357,0.04913760963538394,-0.0329386207002877,6.041421063513876e-05,0.004238624459542756,-0.007529902387769468,0.026820084346320938,-0.009267856346768702,0.0026610146466278517,0.011604776248357337,-0.05994580975329306,0.28903390346048574,0.09571611899314787,0.0001031693308171284,0.01736630086762557,-0.018864336790606073,0.1147368988874751,-0.035278662995659675,0.00011923375415563853,0.002565611056383339,-0.010391528721930698,0.049654014475414204,0.010174277184701255,9.898599992663332e-05,0.005262152137669267,0.020726678529935844,0.09555854027389526,0.01701558521750941,5.451394347194244e-05,0.0026287317523503734,0.003466695117651792,0.008336253562892313,-0.048717081937578496,0.00020275619236946694,0.029859402481737494,-0.008192605217710995,0.03733774596728989,-0.07492498713142302,5.4561751972826565e-05,0.021594655060428847,-0.03072387070803272,0.3691715148025894,0.050913605073392286,2.1472322964138777e-05,0.015564919782022468,-0.013655953812003989,0.039272892149674415,-0.03342814679653809,0.00012154528570643096,0.004056243087036249,0.00973524083728629,0.040471766185743704,0.026230891935116726,0.00037915999895275727,0.018723167683239634,-0.013508535037658573,0.054374468489162435,-0.016566638305726824,0.00014229348785874986,0.012989237957755298,-0.0031532376696117616 +2021-02-10,-0.02085663873811655,0.1651922372376063,-0.12038738942024073,0.00013351844558104667,0.005175547852978309,0.0018977727039000522,0.007777122407960065,-0.027229487006779678,5.8551198310973134e-05,0.025351611080383564,-0.06199788595675205,0.19463947695319653,-0.051062523806452716,0.0001473476305662102,0.03438636781826648,0.031232990156372105,0.033734396450508915,0.05546425755532267,0.00031247010700011897,0.0008875246163002736,-0.03276351460084206,0.07574986869227525,-0.0002444700180279091,0.00022631136864636965,0.016690720669135024,-0.0012825774596987238,0.003791246723556073,0.0012422676786764768,7.386663158640832e-05,0.015206639280192332,-0.023843840098601146,0.09746319640822768,-0.026193155589117154,7.17836282235197e-05,0.019151524893446386,0.001770453008513578,0.014623060620365152,0.00024219784375205129,4.1518794788533996e-05,0.00688987883051109,-0.01788510237237321,0.01582923513364275,0.02773870281064571,0.000871317198920776,0.017410534244434585,0.014793099719439694,0.038336564650950616,-0.021090186843036235,0.00013492980047499577,0.012331333170050869,-0.004956078182298736,0.0034478376309703437,-0.047923159595691156,0.000702612224433888,0.0024682019808530717,0.006866709068857355,0.09855433355875334,-0.005558327596958972,2.076326808319599e-05,0.0019396101117609744,-0.002215042555474997,0.0062494306479238156,-0.17925034604972215,0.00010529134156714381,0.006972407892051842,-0.03321627277783538,0.1980588869604967,0.1715184635358751,4.720830229152036e-05,0.010288580036836326,0.038729413629627105,0.0363857391333011,0.015898834389364718,0.0020760255434923284,0.004455434033251924,0.00958302688814613,0.06139702869543544,0.010588574772190319,0.0001284421186013412,0.014312550255499493,0.052576053065022846,0.3204414742410336,0.01703728791416956,0.00025406655035823707,0.012759151335063581,0.013601069576694708,0.08704035495604619,-0.014706468373118085,4.401628294899611e-05,0.001925450677628055,-0.006329443380764107,0.035253466558138914,-0.04582432377767506,0.0002959037698049878,0.008434548367530204,0.011088709698818191,0.1628132551219851,0.0015432881631413328,2.8263210031329185e-05,0.014230776019829722,0.012329318444739976,0.12532127385113173,0.034987124803433446,3.286971800193298e-05,0.002333314771167513,0.0488490463496422,0.13948092653245836,0.03330960961445834,0.00011281426593894954,0.015533836008284518,-0.05041407997468199,0.3128803337463392,0.0391218699473961,3.721910760115165e-05,0.051306257387660086,0.015844092060192064,0.0386244447892092,0.04199941085174974,9.09457669618286e-05,0.01009011393242289,1.9208226834202073e-05,7.25183677009484e-05,0.0008400844469698795,0.0001211121883195495,0.0019688042959250147,0.05876707276237493,0.06555659577309825,0.036259075456161374,0.0005123812473930664,0.0015420244158572687,-0.019282650344227416,0.07521876874285051,-0.0013070906280545724,0.00010790125974340693,0.006157715461567707,0.010464906165300691,0.0331770321322971,-0.029981084902649193,0.0020244962648297564,0.01723250756781137,0.042529246134352695,0.4339954304134966,0.0313176005532736,2.5199082190159088e-05,0.022703462415054998,-0.10067421639481472,0.24045243040856304,0.11946000135739451,0.0013688641718473398,0.04096336851611569,0.015536811505913326,0.11351513146769221,-0.06379906924091053,9.114519609632674e-05,0.0037849581697465117,-0.032586371617654895,0.04986740305302987,-0.004794517337133353,0.00015422850193432506,0.0063380735411057345,-0.0016464080853199354,0.0024039060804207425,0.000475838371500309,0.00039311888562266263,0.01955398752413733,0.04466816979482079,0.14625805004930867,0.08184212248004395,0.002367166033467289,0.01453224606041004,-0.04363317882466538,0.13691464152777508,0.09278236937225626,0.000102248590673587,0.001046094641230128,0.057015131836962274,0.06846228461895171,0.042676563676865585,0.0020702173168691794,0.0011606531130126585,0.0230030984214253,0.06511651174917979,0.029448924916992827,0.00013996235667838007,0.0009556970507542094,-0.034100080866674334,0.07490620054818525,0.012595731905960248,0.00018454318680218056,0.017230724432251272,0.007229056006579961,0.024864719877619446,-0.015061806926363159,7.09597282374319e-05,0.0055124143449015815,-0.04756796514986683,0.1581615371894663,0.002632006938335324,0.0028505702896533184,0.05306375252396397,-0.011794604818549562,0.06296974878614019,-0.001291247793751642,9.317341300956406e-05,0.006640700369144918,-0.02370693699359421,0.13735476136925628,0.043087171317391156,0.00012516776892406665,0.0006298474862809884,-0.03907431238650089,0.21876444213414,0.07495059236245692,8.448182938287078e-05,0.005062618922616269,0.035208873208020325,0.15936676594707366,0.024635379902658152,5.5526686979781075e-05,0.022214589675444818,0.01766250500347029,0.030704281548573353,-0.007162764889995434,0.0002804676348783252,0.019451461056364257,-0.011990608255903977,0.046706290459685725,0.001878469786023607,6.383813847788421e-05,0.013009498153972763,0.01717967233146951,0.18766560896440873,0.005837752032434196,2.361899799607916e-05,0.008271188449156561,-0.005763145146289853,0.013466993046728942,-0.010807817300803449,0.00014958838939550882,0.0035558569990020135,-0.0011629151308366686,0.00503083291712123,0.0018121414550118498,0.0003643645345377406,0.0025318052712068172,0.028793517483483404,0.11611622247700211,0.016219398111404746,0.0001420278849692451,0.024096628680564648,4.78732423625917e-05 +2021-02-11,0.005545220767235114,0.03445319408681498,-0.05707663320746241,0.00017020641886105966,0.0015102020005359972,0.01813953392933178,0.06169636352309955,-0.04793047249742133,7.054676183832833e-05,0.0012352281859150489,0.04625248698700202,0.15590977526892993,0.012712727222941398,0.00013723312361293492,0.020646937500164993,0.0014760342562795841,0.0015430808457274842,-0.0037879623593526034,0.00032283128349477414,0.006910770832650025,0.03789295698705734,0.06583564109293526,-0.11155554033061156,0.0003011585519018924,0.014154077545354025,-0.002918144972878596,0.007794463233211312,0.001575507005066326,8.17461656108115e-05,0.008109286012798148,-0.026569609195323054,0.08115146430473548,-0.006374753034058042,9.606798046002982e-05,0.008439770077380835,0.015720897856164262,0.11793418545274598,-0.02882202658526918,4.571263423334288e-05,0.02076246209838888,-0.02328905664825657,0.01978438516348026,-0.013773495364811166,0.0009077664456226302,0.002944089465330502,-0.042106161056290156,0.10664153519172047,0.07433561689527668,0.0001380642204922107,0.018557938311930245,0.013616653302322637,0.009860223371728755,0.0046993969854035806,0.0006750065462620368,0.013983764493403765,-0.012488536887538362,0.19029680635761753,0.022627100844763496,1.95570276851516e-05,0.0025267751668591725,-0.002248563852233146,0.00584159536592418,-0.05061100511808876,0.00011434700434423139,0.005912086034839961,0.005783324652005038,0.028738905388052825,0.0009319183620795709,5.6645989587288806e-05,0.003245323011053166,-0.02155904116461645,0.024128703265248744,-0.18312574620544422,0.0017426831492101812,0.002955500798432993,0.011057605074074755,0.07527056850128479,-0.10105721611334506,0.00012088933442437167,0.0060259727126834445,0.013479142383267924,0.07454713110763342,-0.01649656444856201,0.00027998809018420245,0.007699508063596621,0.007859076947565597,0.04947387798738643,-0.07363782438435212,4.474623954424946e-05,0.024582471359090724,-0.030281174110464798,0.16477762114991315,0.01791966320318536,0.0003028735088675056,0.006422498966155615,0.05806015308993946,0.8358743034052242,0.04734432015957967,2.8824875064405574e-05,0.015054252763711907,0.01777987343822544,0.17665525973793197,0.06514146513361202,3.3626665334508746e-05,0.005140787953867035,-0.041304579777568275,0.11940644626384013,0.07631982919403407,0.0001114277062780055,0.012373906895455568,0.034022638820218304,0.23626784784858007,-0.11402142128168037,3.3262565710719725e-05,0.030220824128233965,-0.01844435077363896,0.053577654726583594,0.03915715628008833,7.632328530930175e-05,0.0004005034193627652,-0.008844210677626993,0.029718925045764427,0.007115884779194452,0.0001360738204400911,0.0018249310459650763,-0.01971317841311571,0.022070934218530135,-0.003481807952008094,0.0005105185152552909,0.0038550586541261198,-0.028284200886241045,0.09795421387557324,0.047831841811906126,0.00012153652048971743,1.1209599596847305e-05,0.03090652152216749,0.10417027879450824,0.026110921220043326,0.0019042566324619394,0.006001572637065727,-0.012638433169846386,0.11976626484683912,-0.001495391923354203,2.7135693559974497e-05,0.00047780292787836316,-0.02288763768221679,0.07841288521276657,0.000996077864961747,0.0009542997400944231,0.0039980497043437925,0.03475964685933934,0.23625507740034252,0.04693121675288955,9.797603230733999e-05,0.009770861070254176,0.022170768067929194,0.03678884941150268,-0.10952807943143156,0.00014223612750243194,0.005096944571231414,-0.03305961137781254,0.050306020462808354,0.02196775337119197,0.0003772086947089123,0.006177451219904843,0.05575720912352353,0.2204272547029756,0.08850953454931967,0.0019605868110203267,0.0020094810535656936,0.022177665828703785,0.0943950860069302,0.01588258969675307,7.538011907939152e-05,0.0017130996102864603,-0.06493376666944838,0.07861126034715692,0.051062418171203335,0.0020533502181157522,0.00959014243732405,-0.009525174853592538,0.030606970522695405,-0.019971775480837162,0.00012330158178134603,0.010542425041778639,-0.008726511526282576,0.022546653298394965,-0.01455794372616706,0.00015689855940408077,0.011996905711000108,0.009586698760673869,0.039390380581466426,-0.0021720892736168534,5.9400873178248585e-05,0.003981660613011169,0.0069115467217258164,0.02049907637074822,-0.037878193400820645,0.0031956485655838594,0.023387151216285092,-0.01608569700289904,0.08524519663273054,-0.08494582973542013,9.386648121465711e-05,0.01844739005144692,-0.03018768028970796,0.18469349962609785,0.057026495337695236,0.00011853290159346243,0.0006810065474298746,-0.0017059903745370872,0.011401391177375727,-0.007544401567135374,7.077297123460781e-05,0.009224536643450843,-0.008328739470741378,0.04629784416083853,0.00769061219088249,4.5213268473851077e-05,0.020944740128988486,0.00662185384488986,0.012859376688342548,-0.009028319829252078,0.0002510666725265562,0.009669413748486113,0.013841533089819762,0.0526643330303124,0.021352934941949692,6.53554761029079e-05,0.014641876595575656,-0.020990861895232995,0.23035340414671998,0.015150694293603332,2.3510773748270523e-05,0.010740820324439713,-0.0038077130222114357,0.013692409048326717,-0.01404435905396907,9.720605295451369e-05,0.0064682809637581955,-0.001629675098536477,0.007222079929210259,0.0019943160354812263,0.00035568594957985464,0.0212033195327734,0.007793840550257292,0.039304593107302666,-0.011887078885455956,0.0001135742840697585,0.006198783873708093,-0.000566049751992741 +2021-02-12,0.030848140728453564,0.22398379025291099,-0.014178537132794579,0.000145646142915935,0.00021092383631863654,-0.006767549895428458,0.019707129695766268,-0.02108651624773957,8.239836955019536e-05,0.001493937408664813,-0.006598334475310377,0.020122816442380287,0.0010357360155257489,0.00015168504522828505,0.013980259729138201,0.008231392997758533,0.008358606622823556,-0.0004065523417528878,0.00033235889518415086,0.009187761938520545,0.02216095358236085,0.04925397689365535,-0.057377050940461125,0.00023542084493722586,0.01018747402931958,0.004847312740965652,0.011850451301258134,-0.007565718274510182,8.931263251846855e-05,0.0028608746236499635,0.02494151754525253,0.09310288073977692,0.018096444397993648,7.860489836973977e-05,0.009840978220906146,0.0062075474123874505,0.05375719233542449,0.00014060072411538476,3.95988051508189e-05,0.0018198546035151219,-0.018187091396079446,0.01704164666210341,0.01386473357147852,0.0008229936406893661,0.0015669150692487774,0.0467690460248884,0.12624256327708305,0.06666930008578116,0.0001295431919246998,0.00805694876489387,0.019467374365686085,0.013373785567549314,0.042756313967655474,0.0007115040611969865,0.0032259225048123386,-0.009873511183169021,0.14785258029964765,0.0007020463341990968,1.9900569442892267e-05,0.004806975876478648,0.029888858848917493,0.08895661855447987,-0.026905759778813505,9.981185015136364e-05,0.010608185432548505,-0.014019701366547413,0.07797322243853658,0.023685072180498132,5.0612186332992475e-05,0.0027183013447546617,-0.03000366288929708,0.02679469258677772,0.10941624111028912,0.0021839790649708125,0.007427989172843841,-0.00849813332647404,0.06266126532532977,-0.018256574712699727,0.00011160315900918467,0.010707540528073803,0.04139887008019914,0.22202004245404997,0.00964854797009036,0.000288738395253702,0.005648687547429194,-0.020746292726673186,0.13934402199685342,0.0036462248783774394,4.193852148682694e-05,0.0101274317341584,0.03352088223570641,0.1920090698728494,0.0253114786638008,0.00028772692472968093,0.007170793932245359,0.009529091160944348,0.11624252329243133,-0.008929538010095214,3.4018619391778114e-05,0.021079546509781843,0.01372767178093663,0.14186403237068956,0.006379469664005743,3.233004401455261e-05,0.0036326758917143375,-0.06584321465595201,0.22343297155231895,0.15628250711300265,9.492629281582957e-05,0.008711523020245361,0.04910739967418363,0.32369272372933205,0.026494981765374015,3.504341139523779e-05,0.02311329495145141,0.004032176829907785,0.012245867648411544,-0.1032828756271977,7.300076153997577e-05,0.002254932527711538,-0.0033869147349624997,0.015352227933434513,-0.01189339955084183,0.00010087451261045851,0.012841994447630642,-0.035618016766351936,0.037046650860685044,0.0306204709899045,0.0005495362463842731,0.017578743479754785,-0.0035214004290627814,0.013759435658243982,-0.034774513130553304,0.00010772110510434915,0.002024778211057997,0.0007176046417107417,0.002431513606865836,-0.00014063411097443453,0.0018942081883290321,0.010576954711874807,-0.01693330713699136,0.1540044080483628,-0.006040254399637924,2.8274232781216978e-05,0.022734473597394222,-0.043404570603151026,0.1275968049648763,-0.0041417919527891,0.0011121591370148113,0.02162386039511255,-0.04888088303119438,0.37025589407562604,0.1699373850562043,8.79149443053245e-05,0.018261569048307214,-0.001265847141055991,0.0019394867871235413,0.00020110532364276158,0.0001540422402821156,0.011713681380117621,0.012424216386921847,0.017641328088430445,0.01155505868895301,0.00040424219514820594,0.005579524921339131,0.010543225045859273,0.039135592743494034,-0.015572408119740918,0.002088102925515853,0.004667519008996385,-0.04053432158915495,0.17614192370371407,0.053330108005273984,7.38330049171902e-05,0.004726281069825941,0.04217059317493924,0.05961930682747289,0.018143044439815476,0.001758328353809269,0.026426764223193653,-0.030702479151721442,0.11368273507377126,0.02734079567994524,0.00010700275706147021,0.014191560430188885,0.004549841249167411,0.011231829318762893,-0.020684643976323663,0.0001642124666128071,0.0008224294575379645,0.0556908449456836,0.26183903519269613,0.08742503094671937,5.191147154375276e-05,0.011496969688140714,-0.043874777657059,0.13878099797032317,0.012408105408358001,0.002996422023216681,0.012924125675072014,-0.0076016708767920665,0.042459637776940305,0.0008912011296893286,8.905808415390826e-05,0.010361948527058714,-0.008855434783914836,0.05390385809040104,-0.0018383885068928116,0.00011913814207834418,0.0012745489732144937,-0.021890433986668845,0.12611358604089928,0.007627151119948088,8.209962915596317e-05,0.004290865415457454,0.11022386398999238,0.48248145412427146,0.36847706327940044,5.7417251841787905e-05,0.006756723876769002,-0.010289994574052625,0.019812878628392334,-0.021068630837043415,0.00025321939144754674,0.017608830278512996,-0.012406032509347091,0.0543165589959029,-0.012166728983692829,5.6795645731744084e-05,0.006555438202274788,0.004316746587088915,0.04961173155294966,-0.004622677938156668,2.2449333653605566e-05,0.005460275691199262,-0.01712029170837095,0.0626273545409624,-0.031512787245827435,9.555558108750522e-05,0.0006011645752677022,-0.015508446064182143,0.05228260594380902,-0.04378859047547232,0.0004675618073560843,0.0005681058484660194,0.009979391838696275,0.041158524216324155,-0.0003562989448998783,0.00013887244351883893,0.009226497858218363,0.0008556367233414561 +2021-02-15,0.06537058612754906,0.46860013672034356,0.22986672872139904,0.00014752531543524668,0.0017804814902011733,-0.013018073727991783,0.047434555058452725,-0.021081592054220066,6.585100724270942e-05,0.015990485890006116,0.03613129844862423,0.11967803308211312,0.020960801709410705,0.00013965816474343493,0.005688322710822806,-0.00389274094103353,0.004708425046644795,0.0035255364996231225,0.0002790279431648015,0.012060091145673378,-0.0017837286578017257,0.003881607209868365,0.0016262176394422987,0.00024044457139000948,0.0003851635523326987,-0.03959221244589454,0.09526335134456784,0.11675117234758355,9.074666118963638e-05,0.003518996957664538,-0.04511052737794324,0.15558542332412378,0.024467874778966742,8.507439194392525e-05,0.020584916563634394,0.04287854215414662,0.4259250136658629,0.037099059906039435,3.4522757660413405e-05,0.018797861707280716,0.030755968975563184,0.023270315075559347,0.06976618941609494,0.0010192293874443765,0.016192049914421323,0.0153581564427659,0.03756958286006449,0.00423628237268336,0.00014294356213341892,0.011684331838397071,0.004925715561144876,0.003516567019670081,-0.006115178761831866,0.0006846597372960649,0.0019686545041507765,0.002411539120922252,0.030074917268865,0.0009897661853531148,2.389530948191907e-05,0.0052325644030019065,-0.0183473395026903,0.05105788706492302,0.000595971967244452,0.00010674838094416336,0.008781847897488456,0.007350461000331673,0.038008994669360086,-0.0017520755184881947,5.443647729140865e-05,0.0018635048258538363,0.06443887298357871,0.06586642547893103,0.15405852433531803,0.001908124964040708,0.00039097704619208665,-0.01463947319602695,0.10358880631200279,-0.006174678881821312,0.00011629598677240593,0.014445381231681834,-0.011250586699771928,0.05508777306870403,0.012271481701528827,0.0003162482903656691,0.012284880740983058,0.07671957411224088,0.40857587829977676,0.15923985243830935,5.289253916758161e-05,0.009621483155087708,-0.03823901868308281,0.2035402372966374,-0.041386084840739266,0.0003096301687909476,0.0038559483773378356,0.09446950554390861,1.3416601175523113,0.0866445103630539,2.9219942936899114e-05,0.0004327296258862358,-0.017330055811557377,0.16327950176669623,0.03157233145086221,3.546092042216485e-05,0.0015501124001671537,-0.007454237372650612,0.026080341685690574,-0.0040799875232400504,9.20688454729241e-05,0.002618524967909923,0.07433544318045146,0.4756508936457009,0.0624090881360164,3.609940086425161e-05,0.013053724924025307,-0.011922798491417195,0.03001901087698023,-0.07616602131132451,8.805605162233919e-05,0.012575392804460593,0.0011242652569418928,0.0040411561444945255,-0.01754651207343407,0.00012720721784097085,0.0012514859936856172,0.028779378224767088,0.025443983918403548,-0.008540386001910568,0.0006465049520272376,0.005381565173369936,-0.00575090757566113,0.0229997483541571,-0.0020722208187278993,0.00010524447662785102,0.0015908730290786176,0.0007083753110342011,0.0022738962325600898,-0.021619841816558027,0.0019994564484882094,0.00014661243981470761,0.02209400420869714,0.19869111839973855,0.014944412539090178,2.859421467265781e-05,0.004590675011935886,0.06970195653485661,0.21740954841688676,0.0845498414502066,0.0010481842379777844,1.2031861838310157e-06,0.01969865775882488,0.1625416663817801,0.0032183191362105414,8.070446638229452e-05,0.010501530907456978,-0.008242772962177396,0.010409117177677316,0.0007229775227383302,0.00018689807428752547,0.00908801129370631,-0.01451279028427814,0.025980526673644408,-0.017279633998808837,0.00032063201371359954,0.03263197751382914,-0.03547067449046171,0.14090843257822927,-0.0898934714340268,0.00195111471377231,0.006937554048173134,-0.03850540165981909,0.14105634131116637,-0.012339671294363412,8.758291858366126e-05,0.011812882689447489,-0.0019518011577324078,0.0024218746804721527,0.0006256520956310572,0.002003369677835888,0.008475114464083883,0.015002146199942527,0.04968807042841149,-0.054405350125193756,0.00011962371845590565,0.0040190100321636875,0.03767211597833588,0.09235982907423064,-0.010004973756824777,0.000165347361847316,0.02113146604562145,-0.023395403660916487,0.08808238355694889,0.0013673960315614226,6.482692317036686e-05,0.002655347224140008,-0.006167889581906111,0.01738364184924046,-0.07406216428557395,0.003362899452695335,0.032687541667216956,-0.009511883901686773,0.03951890885453518,-0.05769725534780957,0.0001197297750712935,0.013975274777239092,-0.023680434003952866,0.1250621500851209,0.02642423660457356,0.00013731707730621617,0.0015703754269357287,0.02044719847538945,0.12093482306016208,-0.012774577650399183,7.997074424674908e-05,0.014084816288995567,0.06851464881526159,0.33539991373203004,0.08252930518835654,5.1341420961310984e-05,0.012901296429646361,0.027146440866891088,0.048570906912615355,0.004829533235750022,0.0002724997318842138,0.027492560359684177,0.021778046808511066,0.08611754925925162,0.05587365215299012,6.288421453524519e-05,0.0007029663123401342,-0.018301063383777058,0.23109480079584319,0.019856825630567093,2.043230843554177e-05,0.008836260879065133,-0.0043598602023792584,0.015659048628444406,-0.015404798085710616,9.732314970491e-05,0.006717161837797393,0.01080333353623215,0.037545843043532305,0.012337527146793833,0.00045354866722775516,0.0049771230871933705,7.977978205737392e-05,0.0003629185952868633,-0.03632570938790852,0.00012590860735525234,0.008811094482204457,0.008943750502171596 +2021-02-16,-0.01329762213431493,0.09112705442807394,0.010104814864870613,0.00015431681079116114,0.02909402123827142,-0.004736134419322075,0.016297560177565642,3.964036541740086e-05,6.972876176938707e-05,0.021545946559150344,-0.06052333081659435,0.2263298303344371,0.019236538706325364,0.00012370242899712274,0.010517446551746546,-0.008630516859613767,0.008478213902846627,0.009965284688742733,0.0003435581789684691,0.0041133777374933395,0.011589261812120234,0.025913537542368813,0.002813055457450273,0.00023400591883491055,0.012421592164363653,0.0001781957050358063,0.00042292727365663633,0.0003863303004714819,9.199797738621399e-05,0.003068820652292057,-0.010659976944654788,0.040629561072367364,-0.005201432377658425,7.698462347248324e-05,0.042389972824629744,-0.03708299084771517,0.28873403489187294,0.047244638918354814,4.4042847389331714e-05,0.005055195303872624,-0.01074909623035294,0.008989780701288254,0.001281749455010944,0.0009220779568622524,0.002742363372936027,0.029622780353587293,0.07131511170783249,0.007510721353004383,0.00014524665449373059,0.001743826621074505,0.03729128986384527,0.025728174348254203,0.11509618514311203,0.0007084721674651385,0.0032875017418039555,-0.010980555425330494,0.16227396510149167,-0.019883556557515863,2.0165001086338418e-05,0.003413792843977371,-0.018797735350355595,0.055905078625323,-0.001806903447356761,9.988615739719753e-05,0.009329020331458096,-0.014106467151910773,0.08263804825076387,0.016956276702114494,4.805073429481015e-05,0.014159731115586056,-0.011902358503146885,0.01001216111507198,0.024537847559400767,0.002318612485486828,0.003399687570759753,-0.0328155338294616,0.20930838210017552,0.007662474269261309,0.0001290164122376109,0.008320527101881341,0.025397071517022408,0.1436859331957374,-0.030515299850557356,0.0002737017794260932,0.03030371578325478,-0.0028902346370870443,0.0182315759313018,-0.007016490202745453,4.465497461687415e-05,0.008471568956491454,0.04763986831952954,0.3298253695541028,0.09410455535226031,0.00023805280442126388,0.018705506376813067,0.05157351120306779,0.630175066006936,0.016680483839360917,3.39621922106717e-05,0.05997994298017568,-0.007929399236139662,0.09429058004917913,-0.08917819180202104,2.809659467315309e-05,0.0015625473012185294,-0.03319641616430542,0.0908689898725386,0.022079909676370964,0.00011767880671916884,0.02332504490336938,0.011594317399047347,0.07379204682033955,-0.004236350842858643,3.629342918331417e-05,0.009813493259262646,0.018679144720621644,0.04995239265836995,0.07289635178705504,8.290449419179395e-05,0.00808721752967151,-0.008417784945837324,0.035363036181680935,0.00957824966510184,0.00010884209101133165,0.006336396761661002,-0.014219460791844617,0.014608290771958018,-0.013691784150652033,0.0005563643380599321,0.012202021826497439,-0.018713996940328905,0.06673597954646406,0.016733012721047106,0.0001180300317126156,0.00562348836514184,-0.04129055358859481,0.1476283671590206,0.009189472301288637,0.0017951471915774004,0.004234602731537359,0.0013309741944465831,0.011434223806893419,-0.005085978102150215,2.9932648236082628e-05,0.002157428251545508,-0.03796324327944898,0.11148864338460486,-0.06311010420606104,0.001113278820369818,0.01487230280304961,0.045273602882819335,0.33396098509888583,0.05778343398132533,9.027655273354336e-05,0.0011509248323978126,0.006783756168799729,0.010890581576567313,-0.041044751799315736,0.00014701598002443803,0.01742741214804822,-0.0037047932616301096,0.0052005400331567335,-0.033567415315340056,0.0004089022007895745,0.005326700498654654,0.0055934802894338,0.01745656256203594,-0.010126712187948875,0.0024835546671679505,0.005080584691933692,0.0074058121267137,0.028770069391800872,-0.07493878653515203,8.258898933110971e-05,0.0037933559277514186,0.055617934546815115,0.06964520009231195,-0.010337562671634179,0.001985184419426877,0.0007464002247797765,0.01853777179826808,0.06121160658020945,-0.0009108406357765531,0.00011998854578120242,0.015083079352194854,-0.025488845938500815,0.07178208673773574,0.004843172714844634,0.00014394429900885293,0.036321173623777854,0.025651863136896616,0.09619441863143093,0.012657565704196195,6.508530807831224e-05,0.017762953761052188,-0.013038547285410691,0.03967850969345476,-0.008849234849351776,0.003114525653629451,0.002354433411436242,-0.028861153479401994,0.14724478991187173,-0.016488969570700212,9.75021782836193e-05,0.030745177049277195,-0.005798449640730151,0.03826346800416643,0.0011598075551628477,0.00010989763446690812,0.00539742047628014,0.0010102465386755308,0.005901801993233806,-0.0035192331862250953,8.09639028582219e-05,0.01055454491110782,0.02372104126229673,0.11325862253207492,0.00044118977641712496,5.263927128824154e-05,0.02968766254290562,-0.04283439991841675,0.0864195781085837,0.031428245896600954,0.00024166287583981698,0.01795652576499993,-0.010413175823299248,0.03868749554375661,-0.0021782792735950763,6.693094562609964e-05,0.020496771022038365,0.017403467711749138,0.19732013642387808,0.015732182071949104,2.2755986647195004e-05,0.011961161610395236,0.022949490341997864,0.07261906965003553,0.06997283600133655,0.00011046668694566936,0.008134869031336872,0.018367949940259816,0.07394537742783307,0.0034367919189762703,0.0003915413447085078,0.004595766011755266,-0.02317963290146227,0.10882455136418183,0.02045042005433508,0.00012199764977155494,0.031819965103223026,-0.002030424100653151 +2021-02-17,0.03354208549011354,0.20588742036076696,0.03704108135218424,0.00017228474848755528,0.026605662441061193,-0.00017408995265270473,0.0005673114741181176,0.0006665352690425921,7.363133357954963e-05,0.0014891514801253782,0.00697282392891861,0.02141665716291345,-0.0012033991434156465,0.00015061014231282344,0.035655807062315914,0.011865328655836314,0.013530169669492104,-0.10761221241976912,0.00029596774647983173,0.006843500622003691,0.01825223463698114,0.0428998540893217,0.007362936160471692,0.00022261683312906725,0.007729645023005951,0.00339812087863468,0.009046799898565746,-0.005932475827096911,8.201448817398629e-05,0.012876734690800237,0.012962287572186698,0.04710474633769963,-0.05225175840642185,8.074336372909113e-05,0.009582068933136132,-0.002725653266540015,0.02424938796929405,-0.1446777574779341,3.854503465701565e-05,0.004206005803123889,-0.020861254573957044,0.019417773389170678,0.028593588483572456,0.0008284871581303114,0.005127610954407826,-0.006706043208443603,0.014465664693294817,-0.003656598432904306,0.00016210254734799265,0.025401121631811456,0.011514404970130612,0.007679997600024399,0.0034664798846644417,0.000732832588416443,0.011870728501878414,-0.015749106833771745,0.21542987693825089,0.03387767651618586,2.178576351768818e-05,0.0008677485066226251,0.005933161939526365,0.0126513213409766,0.0011488170535784762,0.00013931611435581603,0.007488943922875066,0.009239823016064254,0.0518775156098205,-0.08057337877481908,5.0135609749464374e-05,0.006145736585476449,-0.04892396489475222,0.041867244277098065,0.14169073917111416,0.002279136005425291,0.008976483513520511,0.0601487655197883,0.431392829896159,0.12347667626113262,0.0001147376375949837,0.015383438560897682,0.015793611738809853,0.10109072264015526,-0.0844251883686314,0.0002419236845114568,0.01708445453823538,0.008690077088601072,0.05862136829900212,-0.01169168649244738,4.175693695076621e-05,0.00687339325997615,-0.04803548469282174,0.2597208314428633,0.04046076111406328,0.00030481911663787314,0.01765374671103521,0.015241400624568902,0.19971014022024028,-0.03863834571114482,3.167050536557814e-05,0.01958720311653771,0.004623550281680748,0.04544129616714052,-0.0010300198648191242,3.399433762146457e-05,0.0003228495803001747,-0.017937649669580485,0.04476528847578174,-0.009352529165420845,0.0001290764183866958,0.002074520114482438,0.006074108454729512,0.045251618294559766,-0.10512068112256383,3.100564734183196e-05,0.02041419841441388,-0.002687258289557549,0.008139182871545489,-0.0019210211368047095,7.319914144238171e-05,0.0011129106897751488,-0.0036335449052303935,0.013467568717987894,-0.003881053647962273,0.0001233644216940696,0.0015067855651128062,-0.08712419125329224,0.08733800172150039,0.12351108011287458,0.0005701788057004677,0.048963340756103514,0.00278986133423361,0.011963555116450099,0.00028199447780702293,9.815408349094993e-05,0.002572618328273677,0.01013504177439642,0.029696952694503814,-0.010987599637534212,0.002190447409350956,0.0009871294078836709,-0.02213737278837927,0.21551253936019096,-0.0006356050803380155,2.6414094646009666e-05,0.04187534016096322,-0.01172372488544692,0.038725771537683855,-0.0008940603231190936,0.0009897757502514003,0.022613518649070338,0.008641208371878628,0.06287266882243067,-0.0213975016157198,9.152468129586583e-05,0.0005098489629888835,0.043956681009730915,0.062176337871665634,0.1035864231913073,0.00016685727263180547,0.004410092463834448,0.02746752290999038,0.045609489630328126,0.018366779697031016,0.0003456751792450596,0.01811551188400285,0.018822756850821746,0.0620779795968162,-0.05018003034824174,0.0023501522573348426,0.0017741983222333575,0.03319083159502228,0.11747965784323157,0.06236786237846971,9.064541282436823e-05,0.008273306176406637,-0.0077617270257158595,0.010710260358018931,-0.011886671825571824,0.0018015052344207026,0.000742480842708311,0.0010090049183196813,0.003293630522420459,-0.02112559030468283,0.00012137645275638434,0.02131572456513973,-0.011459179159794552,0.03151659711559521,-0.00020121382292711545,0.00014739222181824128,0.0314728752190443,0.023816401183247803,0.09493260876386407,-0.05773236528990087,6.12314645075783e-05,0.011436633690593214,0.04312009200027844,0.1395690386020684,0.005970985068020398,0.002928253356667828,0.02277613627354114,-0.0045244251382403605,0.02471466142519725,0.000796944438609036,9.106454293096209e-05,0.033418591735578464,-0.01155130637884174,0.06397438418952053,-0.002639026877376053,0.00013094405121527199,0.0062006286271967005,0.010592846416507302,0.05710731161785089,0.002187078363131034,8.773434911962958e-05,0.003633338882118967,-0.013728916560339581,0.056079528905447276,0.01552001841259115,6.152892164829906e-05,0.016339329243899917,0.039385941588171144,0.08287692365794827,0.017846721765099657,0.00023170585310345864,0.008948995373578192,0.005815232388300746,0.026743983102253406,0.007330905838494611,5.406987447978393e-05,0.018752353199577996,0.03495782882983702,0.3269909724140854,-0.020322584410139812,2.7582903129179583e-05,0.004726523273545583,0.011515085014044532,0.03620208975239038,-0.046839539201605246,0.00011118404559580317,0.004682331927587538,-0.00016577874976683824,0.0006917606627808904,-0.0028264055180401326,0.00037774695212651005,0.0075944343079767836,-0.037225413152023865,0.16977437296627265,0.015180909529356646,0.0001255854098863132,0.008148763576334674,0.0037664747005705214 +2021-02-18,0.005938271176473846,0.04078041000300518,-0.0014871943505048871,0.0001539908875993438,0.0031623094589823177,-0.05010500449820838,0.16570022652078464,0.014555550283508608,7.2555197715914e-05,0.0058164213937809085,-0.017197187556894977,0.06751371688824583,-0.021973316589446085,0.00011783182769515707,0.003301340483348347,-0.0016194159211427898,0.0015991223485989701,-0.011593858050685822,0.0003417783652417578,0.007876850357864104,-0.0323937914583333,0.06642622886237268,0.07354140708856732,0.00025516432622193206,0.0010903125772417682,-0.0020908277183987263,0.004822055744828479,-0.0023707354027215164,9.467444374063501e-05,0.0007356319111447424,0.028886728798828615,0.11263484929233948,-0.14227763162680934,7.525154778863788e-05,0.0030828149723964153,-0.02282586665291032,0.21399187074098266,-0.019132078409682476,3.6578729329842506e-05,0.00655869737193686,0.005940467202782694,0.005353496019498096,-0.10830127368248621,0.0008557125570181589,0.0002467097917385145,0.014222476445455321,0.03207282975056315,-0.000641374725641371,0.00015506001820792266,0.010564406040967514,0.002057809011294077,0.001576001090284362,-0.004525726300548609,0.0006382236734929035,0.004023461559386024,-0.017758190300947753,0.21476427906301865,0.04706805276185514,2.4641063428551115e-05,0.004108851183143927,0.02037725215854,0.061870921050686783,0.004755914958040674,9.783856545122101e-05,0.00982455003635189,-0.008853023919947732,0.046773591559990564,-0.0828917825026343,5.3278591737289635e-05,0.006771714708995197,-0.020027827924098154,0.018565509357631405,0.022177722696338706,0.002104020442287862,0.008728301400608037,0.02996053178649649,0.21460175893982283,0.013467676596701747,0.00011488632784842049,0.014688397729101521,-0.011250392571617375,0.0634148374700089,-0.02246513227396847,0.0002747166774003394,0.0023865598628736344,0.04384312200372175,0.22607583855360672,-0.03898269079140122,5.462711660358909e-05,0.01433866922396724,-0.008327637962437618,0.04224771416055735,0.0005297128831380328,0.00032486687258648537,0.020085612876880696,0.027001077657887625,0.29556919631014816,-0.0012047871900373228,3.790985807100861e-05,0.03312203520293331,-0.003593468552344671,0.03955635664217379,0.0006521104015293181,3.0351438120738857e-05,0.003545663857789253,-0.0046383936867698,0.014494401846660713,-0.012629230418727221,0.00010308371583324712,0.004617603154379325,0.029966896933980615,0.22481303509983833,-0.01950569484133504,3.079021073979452e-05,0.05358481007570633,0.0008180181949535085,0.0021807252949339988,-0.055985993070838486,8.316476886473069e-05,0.00781277012497588,0.0013939017587351298,0.0055199884357329445,0.001316677882046933,0.0001154629352542724,0.0059090712294489695,0.035482382724178106,0.028030665767681203,-0.011700947534471848,0.0007235273032207601,0.02664196654192632,-0.04309410356104805,0.16241606177298984,0.08288654661643802,0.00011167986606947234,0.00586267430309677,-0.045284211763351255,0.17915318960775126,-0.06859086318608569,0.0016223383805753268,0.007848690760811034,0.013939210160213359,0.13796895707939927,0.005867909588012914,2.5979990014417657e-05,0.009722762087135173,-0.003453133656241464,0.010383863423154529,-0.011376892082839627,0.001087240673334802,0.008039823156641953,-0.001585284722132628,0.010823717042467436,-0.014374738548418954,9.753410142587703e-05,0.006844731316151166,-0.0013535568873280488,0.0023918011822386203,-0.002827667270730178,0.0001335662777354181,0.003997559650475066,0.02279906226619271,0.03419178307822652,0.016374444055931983,0.0003827358547820698,0.013768100773129703,-0.006181528993547439,0.027882481881410744,-0.02069904942167072,0.001718362644859139,0.004850052023315218,0.025773149060929253,0.09915977442815803,0.023679284051972664,8.3391603696747e-05,0.00594141163549264,-0.05063614107079223,0.07438911317682778,0.014976765550455049,0.0016921092968645044,0.021962525730395706,-0.014697711773298995,0.050542538073792574,-0.007963580306632823,0.00011521491826298244,0.02123018601880186,-0.04544299295049561,0.10497212872366397,0.021046730406598334,0.00017549037369190206,0.03390571453630537,0.04795813084808811,0.21022194438822595,0.044480778337907916,5.5679858721642595e-05,0.007722204459332109,0.0028419016302483357,0.008800478943574547,-0.03934388412044316,0.003060700193224181,0.0030881411302205782,-0.030796763585563047,0.16726683658658037,0.0251039499883256,9.158741603588734e-05,0.009699509658970257,0.017400218665266313,0.09089653889104644,9.985264740731025e-05,0.00013882514754036892,0.011895121496385323,0.01940601869317047,0.10827966169289119,-0.008186333838482938,8.47692330550973e-05,0.017170598221307818,0.0051667817063874594,0.02077076940077495,0.0002848748909356128,6.25194176378442e-05,0.025768705386481204,0.030951481145398755,0.059385876720512466,0.0028710234266837824,0.00025411345332672564,0.004183201521723775,-0.007783599733162685,0.024622463839423396,-0.0028770516213454398,7.860738736322966e-05,0.008431857324054222,-0.0020705571235206705,0.020836630044952335,0.0013464916667299187,2.5638406031517355e-05,0.0063299208155836425,-0.029613230244492052,0.09716755476842714,0.08885998180722164,0.00010653037947731493,0.006646802755625294,-0.002129394176099534,0.008952904925009901,-0.011919316861882686,0.0003749039880862773,0.0008310230761922977,0.014530691506524033,0.07032133079763345,-0.00190312315561377,0.00011835074541750337,0.004670381884988217,-0.0015243373107323875 +2021-02-19,-0.0032124412801439995,0.024921487646767524,-3.2329951675544124e-05,0.00013631630911070967,0.001696951786477798,0.013339292006520157,0.03842265163974183,-0.0077830674368327395,8.330210443352294e-05,0.004989048925661426,0.016273102783536768,0.05274167519835502,0.00195252429783076,0.00014272946967791748,0.010812665458112687,0.007370905573612989,0.0070449479996103565,-0.061826598468780115,0.00035311072788693314,0.0076381967183060786,0.041085094571497616,0.10402803167286455,0.06690494581858118,0.00020664822632938194,0.008590351197525287,-0.021815837424024705,0.06267847702516366,-0.04374765584751066,7.599765520420245e-05,0.0026670355688120173,0.013942966832729163,0.04100803519202189,0.017914757378312492,9.976451324143335e-05,0.0046200876880510364,-0.048703636192514735,0.39374101838202796,0.10836209190198247,4.241791728810006e-05,0.0023387487929233597,-0.046919536621621676,0.04248339944690082,0.18868278295916346,0.0008516854737809463,0.003689174539317653,0.026331720205748196,0.05496394559608079,-0.10338746998664478,0.00016751867029059543,0.004337232369519372,-0.0025879143607079203,0.002071339306121798,-0.03632721980781579,0.0006106930988934541,0.006297829350367036,-9.518292756506028e-06,0.00011249564966043656,-0.08528449389318228,2.5214253782059342e-05,0.015804578089639476,0.007434736719021469,0.019796575604345487,-0.022408482588249463,0.00011156463753497557,0.0032975718092513465,-0.008575427301850418,0.047973656976896234,0.005000923317503983,5.031700262809344e-05,0.007196237826770689,-0.010511683145931733,0.008466003976319466,0.006637644871376283,0.002421680060467591,0.0013807601404341556,0.01147386247047198,0.0701935594153184,0.0008964455780655738,0.0001345130692543852,0.004650208150997564,-0.05039789653125377,0.2843143180910953,0.09534423476324827,0.00027448708250022374,0.02701298619053976,-0.03177981500999586,0.18389405264135186,0.02941188072638461,4.867933502468492e-05,0.002725777517747577,-0.0721019821783423,0.4669157390859243,0.11673031778170938,0.0002545045189473917,0.014068141308890347,-0.001097584481390872,0.014325907487814222,-0.00023665009789548632,3.1794064207057586e-05,0.013174617563059354,-0.007622843125246719,0.07956969944398666,-0.0024880091914845225,3.200744248210171e-05,0.011564400121809348,0.022759039620964493,0.06291508615861,0.008046940559057051,0.00011652574601010077,0.031868200626564105,-0.0012193237948566011,0.00852414466368877,-0.08616048697683958,3.3041565326490255e-05,0.01128096603448988,-0.003081045940122695,0.008000402533389229,-0.13050583043558148,8.538148766068258e-05,0.002812403928870758,0.00972020226592579,0.036857329999759096,0.024586149394102398,0.0001205868711422131,0.0037737400357545827,0.02116508948181416,0.024005103291652344,0.00078356505252837,0.0005039553862416251,0.017694904717428482,-0.007885291105480578,0.03231871933325871,-0.016917476706523094,0.00010269507043118712,0.01403617245930116,-0.0024566693476841314,0.007771973550924769,-0.001068774793015528,0.0020287781918443227,0.0017401288398668957,0.016464743543548765,0.17015124491451578,-0.0662339293514546,2.4882959621101644e-05,0.0001371086988844251,0.005294908481781961,0.014712212648662688,-0.017719006382497585,0.001176662016482032,0.007355699504433104,-0.00135561827702992,0.009883738295463115,-0.0020307783877459187,9.133596492877384e-05,0.013798159602290078,-0.037321746214649405,0.05735048103445025,0.05272968728189859,0.00015359259453704346,0.01346002892327609,-0.022885704009361855,0.03234044204824063,-0.011220002464382452,0.0004061834637358693,0.007968968619412993,0.04187662637321766,0.15021787475160647,0.0416266356517296,0.002160729567887248,0.00013821016661254683,0.017347180519589275,0.07148510459274546,-0.0002798704132347916,7.785808388326665e-05,0.009501944567688514,-0.04563803047767696,0.07184838277149767,-0.07730773646988338,0.0015790180290616651,0.004204466972383728,-0.051510066031196254,0.1549804498906666,0.04897805239088181,0.00013168345899466482,0.00456335817179763,-0.029281317995159036,0.06980892573941289,-0.010114082589379928,0.0001700356720568535,0.0004309003278955082,0.037460574004077235,0.13272156889532188,-0.01893776761122798,6.88885186468535e-05,0.0158940724720077,0.0339738864666391,0.1138824648793421,-0.040662032864039264,0.002827524851012367,0.009105432284794851,-0.018310826787843158,0.07288147591753526,0.00736366864117522,0.0001249773656805808,0.0041897137605547904,0.025729905376239887,0.14883316199271301,0.032960848213131715,0.00012537162786713861,0.029132508889644925,-0.002268036240700822,0.013452579310043705,-0.001887948879129912,7.974310232263559e-05,0.006977509685893594,-0.009438823274244983,0.04695241754472389,0.010110910717064794,5.052511270643424e-05,0.03353636861309153,-0.005146450339404375,0.009189470035248138,0.000723610618083944,0.0002730528504155544,0.0009999050970827456,-0.010770581473344969,0.04259376210153535,-0.061918557569496074,6.28792749440171e-05,0.017664014247805598,0.017864801168128903,0.20179272036413093,0.00951425347584644,2.2841466167205583e-05,0.0010090901302116685,-0.03309043678967275,0.10494672088176742,0.009605354767730648,0.00011021547863635119,0.003900408300357371,-0.021422064176172623,0.0915528759937385,0.0256957075067648,0.0003688224049660903,0.002311727034539807,-0.02186319120727966,0.1049530254874458,-0.10808104631348904,0.00011931371998525162,0.02421136252492386,-0.005014680762163437 +2021-02-22,0.010313050981756897,0.06720918927070817,-0.035163132480513164,0.00016227256161496456,0.0077773955957496105,-0.01295487057289215,0.04172642812375762,-0.02210088364523896,7.449590412030131e-05,0.0056905156085196185,0.008756002689736087,0.030335907630261394,-0.001499328228903112,0.00013351993047431573,0.003904568382512317,0.009205418989664418,0.010050336143934309,-0.053590248573608494,0.0003091226510760419,0.011366642296077076,0.011970342527233824,0.0329747007748621,0.0018745617982525251,0.0001899430847307515,0.002995510759272034,-0.0020045592488230706,0.006262390597381227,0.00021556741807180626,6.989168085636673e-05,0.012507123596691774,-0.002403784770715408,0.007865439990080212,-0.036096059881754926,8.967314729388603e-05,0.01579840204113329,-0.024368305191083336,0.20384925609211155,-0.042137697207206566,4.099348197577588e-05,0.006820952493424669,-0.01665547266817866,0.012604522682923764,-0.012068066566644414,0.0010190027231207707,0.008441047054585302,-0.002067626310897842,0.004834582181623929,-0.002596014363914875,0.00014954606478529908,0.021597574342582325,-0.0005196841971928922,0.0003539276182869608,-0.019076621340744997,0.0007177106909124801,0.002255657619525854,-0.0002527975274300628,0.0036858769973223595,-0.015037868143078587,2.0438770783275716e-05,0.004006137677020535,0.02920768809242965,0.06188349542323405,0.02663622856357824,0.00014020819024627748,0.015823090224628134,0.010143205923683169,0.06106872370762557,-0.0796169310842093,4.6753940212848425e-05,0.006516416802878439,0.019369401560600755,0.01615763327897651,0.005407320832033616,0.0023380910987773904,0.008007670146190882,-0.002623473057834879,0.016563320653705544,-0.0008567869911224353,0.00013034107744668935,0.004418737538632328,0.012002537298835637,0.05696409729336405,-0.06076340286830805,0.00032627220398544134,0.0024316683915724703,-0.005845986987408213,0.043330131073062224,-0.07085472983245653,3.8003955207355774e-05,0.005910118380163361,-0.02388130975059783,0.13892373855108522,-0.0025066519378357686,0.00028331429440417796,0.012453189170976754,0.07030065641165523,0.8793101378452889,0.01644986961579766,3.3177795894495746e-05,0.025607144577949017,0.01352465152992316,0.11339207773025889,-0.19402411380927523,3.9849702182346215e-05,0.006519176205169286,0.002401730407037026,0.006122532871869954,-0.014709890042564282,0.00012636182416092458,0.010561519822040386,-0.031677628727317726,0.18045279954670376,0.01924665752803723,4.054911839920064e-05,0.011127528496034959,0.006141082378391343,0.01666460251770329,-0.017480489874756228,8.170099508791308e-05,0.0027446838389315635,-0.007922331247638104,0.02885386606028481,-0.0148631982169614,0.00012554446816533886,0.004237802441072989,-0.06207908844522428,0.054759511252248455,0.06283549185095956,0.000647979593931271,0.014069410759754224,0.014047783511524612,0.049579950577492087,0.02772173880133721,0.00011925805588779472,0.007663486033430452,0.008337567977479724,0.026862361598167912,-0.003417103040470078,0.001992114844080075,0.0038044712842151976,0.06874156511795677,0.6136197101545698,0.0800273724646247,2.8807283728360268e-05,0.03231840926562734,0.03729447582789994,0.1149943000751436,0.012092667086077011,0.0010603261277967095,0.028730255671979336,-0.03433744242433142,0.32220759441339875,0.03658616536675946,7.096722359922243e-05,0.015306150127978677,0.0251728422010771,0.03399605195066408,-0.06912283487251036,0.00017476286487056036,0.012493092991747605,0.009964624055381694,0.015636316587885533,0.004992467449790488,0.0003657887775507343,0.007672481274567109,-0.0010718261880948924,0.00495084272244131,-0.00041658972391706814,0.0016780139819040688,0.01671576484215569,-0.029255583932030118,0.136363536836996,0.03254793067860517,6.883366349832998e-05,0.002031642336465869,-0.06695244329553056,0.07613126391368268,0.0664266795546218,0.0021861531462321372,0.02107284747720235,0.02723810453753901,0.07682280875598187,0.032081044706314454,0.00014047619565929018,0.0038451566231032354,0.02355181848418481,0.05522280953020631,-0.024465830723556736,0.00017288858644385856,0.004805525874308174,-0.027562299054924324,0.10647797050345227,0.03844054921307379,6.317854222392429e-05,0.00028952440214774803,0.003993363613098808,0.012527985574772542,-0.015009055745350683,0.0030211735211167507,0.010774410701482424,0.017614985175602213,0.09096639592862292,-0.09100041547652363,9.632563138109813e-05,0.015029261046514648,0.01660383124344937,0.09030987432945885,0.01286537989250305,0.00013333183529158827,0.004811680713552399,0.02688926337443307,0.1512179844496261,0.01544929706579699,8.410545382326233e-05,0.012721323282272086,0.029713662194551318,0.15286184583810267,-0.030179455481918603,4.885448922788345e-05,0.003339321428525559,-0.010028498379533223,0.017237879172282367,-0.06471279649463835,0.0002836491395753311,0.01753670898330237,-0.0024754024242724065,0.010113375440297678,-0.007347094881631792,6.086449989406688e-05,0.004598191431721278,0.020942246865099403,0.2654587687453633,0.01374614252321433,2.0354361546891254e-05,0.0015597737550060557,-0.004444467429698581,0.013314028348894034,-0.025002631631744317,0.00011668612430565122,0.008014409991929549,-0.008264435637611148,0.0377313413393352,-0.006339918777001211,0.0003452541663867702,0.007010967806974592,0.012111242966506197,0.06534263698789416,-0.05146180073968264,0.00010616072008548777,0.028287828725963172,0.003125326504908875 +2021-02-23,0.001725794253297738,0.012465612564891964,-0.007616087194785663,0.0001464070458437717,0.012627545312214154,0.0363897724716399,0.10734207773384419,0.01672871416334527,8.134294079415697e-05,0.0010622624721592696,0.010199515880313457,0.03556361770639053,-0.0041421011129318145,0.000132669419801556,0.0027037779156591866,0.006382831016124375,0.007376184252388927,-0.0038225700560859683,0.00029204477891786357,0.012427473526941516,-0.01696886278652236,0.038842374456695104,0.019111836985113224,0.00022858342697838313,0.02086952928538107,-0.021855883767388718,0.060454591160098735,0.01566713242222642,7.893794636912077e-05,0.010280472108208021,-0.018209552457141183,0.05624354033815419,-0.016251162603681046,9.499844075112195e-05,0.0024192123291507557,0.027814114476198495,0.27440167955839434,0.035146430590492016,3.475978543611747e-05,0.005516339624007566,0.023862627844144356,0.018921119091921644,0.040287386815130465,0.0009725596234589124,0.004203582899564645,-0.02377941103538245,0.06159290777037797,-0.020415091764387373,0.0001349995350877664,0.00586366123475469,-0.00944830873514034,0.0072839488618337495,0.017797705717061064,0.0006340325380416302,0.005516780465334922,-0.0008175182908399192,0.013739656324121868,-0.01250228192049363,1.773145596868532e-05,0.002567874526262665,0.023017817459685338,0.05807695237033005,-0.025117565383593665,0.00011773656503090752,0.0065042321430664445,-0.007598657116048372,0.0389467701037287,0.00011725943121462326,5.491958148693584e-05,0.005841539323797813,0.0006345550238094955,0.00047088235186535076,-0.01069004585893391,0.0026283297175094876,0.024479490010277643,-0.02308815212472908,0.17290079045791112,-0.013867963512141448,0.00010988649074080612,0.003390400211733472,0.016711463271773707,0.09078576686889026,-0.019308200549214033,0.00028503943224971427,0.03277837115825384,0.06359124501851873,0.35399733615238815,0.09187317493318235,5.06009056565386e-05,0.015859346131625356,0.007705911780905065,0.03630926130112708,-0.028066642712590167,0.00034977875437045117,0.005202311823197053,-0.02179870870760366,0.3211282975968575,-0.02277948911178908,2.8169713000198556e-05,0.0019257623872564827,-0.014045243205190646,0.12946792132012602,0.054967710922166714,3.62450578814229e-05,0.0032112328524252125,-0.01626972163881472,0.04775668594359157,-0.023135250981590926,0.00010974094531821749,0.007602668481630563,-0.05543767514214643,0.35415130254365046,-0.08079906347802866,3.61583448057849e-05,0.012461548674524788,-0.0024625227395096115,0.00753375483705265,9.317807872507142e-05,7.246797879111142e-05,0.0007894971285544289,0.004351191889418623,0.015233129189715287,-0.12276073377875091,0.0001306073767128115,0.0019333791621701335,-0.04356348395468132,0.0472192319631554,-0.01774388662369788,0.0005273260758288074,0.010684499257624689,0.012464073757036892,0.046878020502418065,-0.002783200646442652,0.00011191202514432806,0.007655158163218165,0.05887451362539584,0.19498491450788297,-0.00940263042555426,0.0019379630602620517,0.004852284831114953,0.039580831848193984,0.34074250927707056,0.009315714990512775,2.9870383281927823e-05,0.009123221569534918,0.01153376131901898,0.03128157405579141,0.004589103228558708,0.0012054622965522444,0.0054130618481724934,0.03444806891530754,0.26715713123720725,0.010321282249589883,8.586649846406147e-05,0.011707790263327522,-0.0074204696701139355,0.01238723677096711,-0.015767567796614822,0.00014138467627289105,0.013600127840914914,-0.0033787137832098696,0.004849296825044814,-0.002790577230138599,0.00039992315437477105,0.010911372399336379,0.01869744209817198,0.056877677388253105,0.003366064218256117,0.0025479487283537544,0.0007225586294021791,0.015727242310599694,0.06329721903201246,0.009174255387920613,7.971835323484156e-05,0.0019272832144253517,-0.009778889571517124,0.012676830585629333,-0.00208640226474598,0.0019175912849787409,0.03809957554960292,0.019958159500208243,0.06768249982842053,0.0160172855443807,0.00011683154898776862,0.007516741055950166,-0.007821126665305447,0.021463737678994992,-0.06125369856543137,0.00014771491320767296,0.01468514988614549,0.039292860360248504,0.19856055113900786,0.03018603215441222,4.8298606441966195e-05,0.001227328109540219,0.020602236950126928,0.06328881629708684,-0.0267143244627711,0.003085357284923517,0.018142934216879517,-0.027331126376495426,0.1506001066658158,0.014976857010008325,9.027610677754469e-05,0.008558901817129485,0.0313714021479971,0.17379236291578196,0.03451742799245218,0.00013090734848271,0.006693584687516295,0.030364152461574652,0.1780900344093044,0.016760390977873692,8.064366266831171e-05,0.008887662086683944,0.018013660236490498,0.09137867375695254,-0.006770151939263999,4.954553375327918e-05,0.002276544249803657,0.026518409637490126,0.047214042390763176,-0.03226211468066528,0.00027384554711811263,0.01405965227650298,0.00037263742836907273,0.0013453151954667486,-0.049779583745837956,6.88774091066046e-05,0.006142307862743523,-0.006949552395902635,0.08542317793002745,-0.011789733524598021,2.0989997892854864e-05,0.004523040385275497,0.008200165823233243,0.02151636760137972,0.00118210936276662,0.00013321791855941555,0.003129736833775781,-0.01789460749343432,0.0783386704904587,-0.049475949431535764,0.0003600592322001186,0.0023039800585441103,-0.005570271265708158,0.026419510753867538,-0.006195540446108661,0.00012076007397317385,0.011513767373208021,0.00512972494961291 +2021-02-24,0.002848881494408099,0.016230976838286375,-0.02401856318811096,0.00018561638492405947,0.011344177972614767,0.017070663675731377,0.0596129304863652,0.017457062792650902,6.871008106698246e-05,0.024787885109537337,-0.03179931271711968,0.10421083547709827,0.016287954218598837,0.00014115688319762119,0.004236812950776554,0.010093680428057703,0.009077578181304995,-0.16085681110268343,0.00037527307761682385,0.01331244979855798,-0.026534873942816416,0.05514773875767045,0.03819619023488357,0.0002517602096123726,0.03558289364363769,0.025589144456380757,0.06108371239242594,0.02124496635601517,9.146966366195477e-05,0.0005013074707986293,0.02938097688332648,0.11718463582416076,-0.05569907573299546,7.356740074393335e-05,0.01300224749775953,-0.0007395611170593269,0.006003923949976853,6.301779327662264e-05,4.224132201398643e-05,0.008477217494420495,-0.01666876771331819,0.014019877301977754,0.00998919732256404,0.0009168622003293779,0.005792783749337797,-0.025719515192074084,0.0511005736478996,0.025169335826627122,0.0001759944160994029,0.016113784235667616,-0.018926216596703495,0.016843296247031514,0.06190052502877849,0.000549238632222127,0.00093332525436115,0.015152946368499952,0.21708443067277866,-0.09847740633385808,2.080133453904135e-05,0.003374486067337583,-0.01584952268761932,0.044729252557469824,0.00939264527624051,0.00010526296157008649,0.0010521927315434044,0.012176266603004027,0.06518651533878647,0.027416641803709903,5.2579711784512454e-05,0.002780590382809055,-0.0342282185118514,0.024117038100382227,0.044188290560363094,0.0027681097111383743,0.0063001819045497825,-0.0018322279749616295,0.010705774232198352,-0.013431467970532285,0.00014083595303579196,0.021379713870542688,-0.03570670187402119,0.19218192258947694,0.051037078481067207,0.00028770369239671873,0.01193000333927887,0.01608654961517293,0.11681919119608207,-0.013333334334018117,3.8789096487845414e-05,0.0054085364378376605,0.010025671230872987,0.05487570511386167,0.007530443457002231,0.00030110651514792024,0.003903837049116698,0.02748780613130854,0.4181021092379991,-0.0165599389995425,2.7282737966595324e-05,0.022739708803732824,-0.021954410100404647,0.272244994174017,0.11281477209757095,2.6942852803842813e-05,0.009075083294169891,0.006613498792447029,0.0166009560251321,-0.005687999821647175,0.00012832785504341708,0.0024306764189117496,-0.028242956436687883,0.20618923890009772,0.0198582864359125,3.1640004508388185e-05,0.01012777981928804,-0.02253529376356248,0.06335485944251687,0.09419181244696419,7.886070846437571e-05,0.0031829888776569734,-0.0006530624592432444,0.002378628268275556,-0.054369789818732715,0.00012553844334479197,0.008422623371256448,-0.0040350522851563915,0.0035401994508625764,-0.004438649493308565,0.000651473864477072,0.0009428133541330547,0.027207374910895404,0.10223369337874116,0.04403892651389538,0.00011201562320528401,0.006767942086712768,-0.07328437098416828,0.3194353765962259,0.15917695414105432,0.0014724736366156792,0.025977574856372518,-0.010086007447553688,0.0910777541954692,0.000840089505302767,2.8476667647212496e-05,0.01383131046869452,-0.02001010412699555,0.04823927441675636,-0.021000773236315936,0.0013561878572135142,0.01703775107376324,-0.008392429609788435,0.06809044899617515,-0.0040764043262706395,8.207807317911943e-05,0.025380366352952377,-0.021682586953906086,0.03541110313827701,0.02611485546265283,0.00014451636415617732,0.007300112775350709,-0.02130657528925541,0.0357442278898291,-0.00252474914073077,0.00034214613823211135,0.008661937719893065,0.024947364950113595,0.1007829841020482,0.015899018332481637,0.001918614879047539,0.0052446524080644215,-0.009786897503237812,0.04767840072111478,0.0014233685358225887,6.585878753139842e-05,0.019172025891019975,-0.023023847976543166,0.02819621767379157,-0.04586259060977389,0.0020298514029558146,0.030211803669606286,0.006497725370588169,0.022569523043672345,-0.005685388927305183,0.00011406568342737464,0.00193665519206333,0.01329965771031961,0.038947261919812536,-0.00911973066924824,0.00013842798865442124,0.029655503485530376,-0.02737836815120629,0.09718738830142912,0.026508312374564785,6.875615350614997e-05,0.032544986227736786,-0.005193236070511392,0.01768432899357876,-7.157180233464461e-05,0.002783348178246126,0.010806103884928706,0.004738770030910665,0.025307908374403665,0.0020427020504342275,9.314294180377506e-05,0.02005307264372053,-0.016697654695683045,0.09104917710299087,0.00898875370427983,0.00013299650705733516,0.007591189020028005,-0.00794177538871463,0.053824371190887815,-0.011278647371904649,6.97890576204653e-05,0.008867811062651498,0.03826854033498465,0.1732354014113642,-0.005476279752704022,5.5520407567322905e-05,0.02186960198221376,0.002730311147138238,0.005875333559712212,-0.0006532960100423659,0.00022657344521578434,0.017387241339607104,-0.0026493837979291025,0.011395395725823728,-0.01832437841352381,5.781357699651222e-05,0.012849582536555795,-0.014219813104131292,0.15983930819022496,0.01479833630436485,2.2953112358946713e-05,0.0005145829741054818,-0.0014654578602778974,0.00398914773048254,-0.01960640592497508,0.00012841098559724103,0.007370147085282914,0.012167933202506217,0.04424907545374128,-0.008088146662996608,0.0004334515765733847,0.001584923715288501,0.012050885328827877,0.05569400526807145,-0.007565296375203905,0.0001239316689748127,0.0008290185766921343,-0.00503328373631292 +2021-02-25,-0.00916817514635204,0.0630947611167659,-0.00709794109467361,0.00015366543328380956,0.0011838054614007089,0.03375421438807197,0.1224457500275951,0.04704872143741212,6.614466408852848e-05,0.007491768595048767,-0.002268095441838511,0.008117641004901203,-0.0011032032853387982,0.00012924944567045031,0.008701821682392466,-0.014797118913502584,0.01423073589663288,0.052106290045909734,0.00035092770922365095,0.008716430028287762,0.024250185718986135,0.05795194977133938,0.016343935254090957,0.00021894991910023374,0.0032081903677227954,-0.0035468276764961297,0.010636969033670673,-0.0019464815439076296,7.280629542508535e-05,0.004144478336885686,-0.02771155197395553,0.1225977751443711,-0.03177188267773767,6.63236036507264e-05,0.004025128778268366,-0.005242644962883803,0.037734284216792126,0.0011838795150924707,4.764451891748065e-05,0.0016374733646069195,-0.004787422323012504,0.004121448877328962,-0.00030129869002461473,0.000895770198892765,5.428956886325566e-05,-0.01128258983400069,0.027542524578125557,-0.0069950258163022794,0.00014324086695095744,0.009053831479782098,-0.015226216336715302,0.009670128064762976,0.03505709772675806,0.0007696337934406616,0.0003939210091513266,0.004192766843814537,0.05432810273581555,-0.007232935093982635,2.2998470953193983e-05,0.002059553701728537,0.0015918169944767549,0.0044085334162455,-0.0051219153400661925,0.0001072630242966352,0.0019316014447802708,0.009336798851399186,0.057253635130579406,0.012961243527142367,4.590465787588467e-05,0.001986691745721031,-0.07110638880705357,0.059471006624600635,0.14446282061366514,0.0023319879728176374,0.018482748408990612,-0.037416178660890725,0.21670304716348573,0.02266746589843947,0.0001420844401013492,0.009401526473393634,0.00571029256680186,0.033736437459816415,-0.06706631397884345,0.0002621002120325718,0.009163604457524928,0.02771714157732021,0.17979502396407276,-0.07488639176269926,4.3424190200052705e-05,0.022329410346126188,-0.007563843471989269,0.044075707376483995,-0.008788772771267592,0.0002828329799103108,0.0038388489857504077,0.006340405905701552,0.06948477364825892,-0.1141041109354354,3.786671630660483e-05,0.009128659410066171,-0.01250754678567593,0.13694527041914345,0.02532660293945469,3.0514538578855965e-05,0.011871491171120114,-0.0013183582261376108,0.003887669349127735,-0.002335493733344549,0.00010923627161290276,0.010142414079367123,0.05583560708632894,0.39041155364556895,0.05852221375884581,3.3035505533171746e-05,0.012102495598022003,-0.0035231154739466595,0.01136372707291963,-0.08016008963130862,6.873587501222694e-05,0.001368953171411147,0.008429987421559294,0.031815880922853576,0.01764217227836511,0.0001211522738639227,0.007099926876079145,-0.015133309644153962,0.015735764341593482,-0.004418644786812799,0.0005496948102112101,0.021945642181191865,0.019506990362462596,0.08287117285891828,-0.02259753028198865,9.907698749999074e-05,0.00338724360152383,0.039277050224216466,0.1288955397991078,0.016657431357769648,0.0019557806685148657,0.007233707919060246,7.501778315114283e-05,0.0006906296436079435,-0.00042325003714658183,2.7931946787804435e-05,0.012677608719417408,-0.024291317590327113,0.06595251989088569,0.001843312001881608,0.0012041787203502306,0.011128817591391468,0.02101899968067086,0.16601392740003448,0.006196188232990162,8.431273218709116e-05,0.0016165014230349205,-0.036412015030655824,0.05181848618592661,0.018399057041007565,0.0001658461439004703,0.028002784663125734,-0.028942575470082995,0.04479038810163776,-0.06149009456834191,0.0003708995126475558,0.009859203163356735,-0.05568194117701972,0.22793607498867235,0.12770074822853827,0.0018934404150944724,0.016609705236403087,-0.04755743653713625,0.22968851545177807,0.07318885191929808,6.643080675374173e-05,0.0014363641572534155,-0.011833228240664235,0.019007130544425193,-0.0038223598371440373,0.0015476183681913227,0.0007506004685822898,-0.05926061440722399,0.1943210173966327,0.09503981004945435,0.00012082655992185656,0.0015675461653780207,-0.017904140774817136,0.04045949063505368,-0.007200891050046115,0.00017938802526378778,0.022764740078615387,-0.03790277262258769,0.15088078092657703,0.05826910304340554,6.131277632162852e-05,0.002830992918255289,-0.026943738418604295,0.08481719751061616,0.006693455105716872,0.0030108699198016873,0.041858219776436556,0.035707101419016986,0.15397410498017514,0.027718487265852566,0.00011535793666088828,0.0046644166440562105,0.012364563643933563,0.0652910730701232,-0.029841772252615275,0.00013733643583784786,0.005276842153629923,-0.005319335398433375,0.03292897585159316,-0.11545441183968284,7.640606784129873e-05,0.0049659261843569,0.030601490544563195,0.14385776786794086,0.002288568014104952,5.346341034024468e-05,0.024997678223822123,-0.011586795048492115,0.022854735470088806,0.002110441751514634,0.00024718181690803895,0.015789046899778936,-0.004040865097802516,0.018880014111807796,-0.005644576811403142,5.322141454920199e-05,0.004802174400595254,-0.0018181723574430659,0.019956023275106427,0.00037987901938642564,2.350673624339546e-05,0.0042561185581517615,-0.01734417984467276,0.049154662552682214,0.017026072602829095,0.00012333831577151274,0.00598329298159576,-0.020874318416269317,0.10009649356276049,0.011396865534514173,0.00032871642923852954,0.0090205043893684,-0.023141207844906815,0.10658984811193671,0.019004813100218745,0.00012434890796899527,0.005146678089418928,-0.005943726439934388 +2021-02-26,-0.032097687056905945,0.27618613151108784,0.05090463679927662,0.0001229018599558341,0.0015906113407758344,-0.029090660844391214,0.10023322919416976,0.01654406944449393,6.963897841751643e-05,0.0031764296732297442,-0.00589911775891163,0.018685587695820956,-0.009065010915045258,0.00014604191142343837,0.0011687781721224416,-0.015873714491415877,0.016407356019286036,0.03141134084666968,0.00032651851988746905,0.0022285540750087846,0.005338497011536887,0.011815442354239414,-0.055202308169052576,0.00023641051582076094,0.015456990388841631,-0.02944438760564663,0.09175760656153412,0.05067002923433046,7.006597813424478e-05,0.0031233978586352696,-0.027233134787173287,0.1033671307283185,-0.0019048068430769195,7.730454520547952e-05,0.029662490974193344,0.018348534071445776,0.15421727984603892,-0.03187895792294349,4.080063747145071e-05,0.00799001246644601,0.004704789962017263,0.003999370474600064,-0.04035996229059096,0.000907179839744584,0.004624958995380669,0.006747356280854169,0.018621693222917752,-0.010718095763984796,0.00012669992607545322,0.015087131489950506,-0.0021640151048051438,0.0015454610845600486,0.0006489996518026772,0.000684426115191123,0.006805152208386976,0.0005759613960189727,0.007119966586887766,0.004144581533288119,2.410672477260468e-05,0.003028372840462295,0.018549859811020857,0.056661666213193504,-0.03131027637198465,9.725284800341025e-05,0.00449375722247899,-0.001833614448802111,0.01047069027619737,-0.02253358375322584,4.929405298205698e-05,0.007265493204330278,0.011618420394861953,0.009430470379494236,0.0037388325941060357,0.0024029055691237584,0.015195711382999159,0.05329986514577286,0.35961831359285085,0.06750730453646124,0.00012196533637338023,0.004225392412337216,0.01111085962504886,0.05998011176153526,-0.06225734394250618,0.0002868458836781878,0.008626593160367131,-0.012528635276621902,0.07162208753434578,0.014083918128460991,4.927399187447634e-05,0.021952449535595987,-0.01586600570875756,0.07965080039190883,-0.015843687978738537,0.00032829500075404113,0.019491459034599392,-0.030007025133334246,0.36299318403244263,0.04552485935395637,3.430478509424561e-05,0.02184391848774267,0.006260712589487711,0.07068932568287384,-0.02105960690508885,2.959045459877082e-05,0.006514578005871222,-0.008825358641788203,0.024444855707731573,-0.06272504764188058,0.00011629676677738048,0.02768395253604563,0.012185804850140702,0.08300389169742889,-0.004582186603159508,3.3911588984362124e-05,0.0014427607231414087,0.013932806660122747,0.041937827479419064,0.0448199222625602,7.365632800367064e-05,0.006813949087412817,-0.016232536759563626,0.05914316805028158,0.06655127565707712,0.0001254961511169266,0.004697980083599779,0.0391311498178064,0.038278486085731374,0.020936590129443877,0.0005843101326268742,0.007832785022935707,0.0037647068357672788,0.012432465467738326,0.0036007588248375627,0.00012745589003972384,0.026465675927144095,0.04946699176765235,0.1800694698900893,0.03546587652275708,0.0017631716292253528,0.02152036032499631,-0.03894345674710961,0.3696421652038483,0.017884406477720983,2.7091633269635297e-05,0.03400968846542945,-0.02728544473376381,0.0709615209791247,-0.014819797231622377,0.001257127686175829,0.03336466284472061,0.026538133651364836,0.2667014553416923,-0.026517697144681183,6.626292986573271e-05,0.0038165261917622855,-0.013402246063337163,0.020277221801712483,-0.0019583886100655403,0.00015599638052265463,0.002259658879988793,-0.0234745111110617,0.03590617635048144,-0.017037833157006233,0.00037525916727369383,0.014843796743964112,-0.028942113887628112,0.1566311434796725,0.02808181297780654,0.0014321960473859833,0.012738847693168973,-0.00408327524411914,0.013689851506483634,-0.010018334515496014,9.569743308012069e-05,0.02414622987909154,-0.001476519634609503,0.002054900901407762,-0.0019790171696332376,0.0017861812892312051,0.017777412513496585,-0.013365269401485153,0.04021431072010431,-0.0016880308554782562,0.0001316779705460028,0.01373609942855268,-0.008026845826746976,0.023695650378969445,-0.08594473711270423,0.00013732090729875272,0.011367974974109818,0.0007045153580696792,0.003945260029739198,-0.01238159898199768,4.358416774500122e-05,0.0029047888681127585,0.015904114232089078,0.044462794288620856,-0.08121593250912233,0.003390242716884398,0.059367288591239964,0.0016384280944648155,0.00788705096628137,-0.009071099521482115,0.00010333639573736764,0.006293952980524586,0.0013558583314023384,0.007492556221952886,-0.0033516512507846172,0.0001312336137418953,0.0058090166635275855,0.008546188946928828,0.04675725848255525,-0.01534238673276662,8.64514237240089e-05,0.0105724528341293,-0.0063628187651305875,0.03020401974609244,0.00551057938896359,5.294588385201912e-05,0.01619788698973955,0.011440670719481492,0.02353575620063338,-0.03402790729193866,0.00023700238885759894,0.017845912965794807,-0.0275648402079816,0.10893451034302674,0.019881392417420627,6.29222681977716e-05,0.003318640090943574,0.027264758886553938,0.27594698465417694,-0.10300053828937772,2.5492198649417458e-05,0.004058213897942135,4.55935029479233e-05,0.00015835109212921337,-0.03512373616084858,0.00010064468892359499,0.010377572338196724,-0.020714479500613697,0.08161374844069154,0.005079026329634447,0.00040007247321115864,0.007295312311803094,0.007343631607980206,0.04653720274491866,-0.033331939100368704,9.038209488472652e-05,0.001996719171735564,-0.002592689676945862 +2021-03-01,-0.035468751514639595,0.23549815464596696,0.02745424387127666,0.0001592740331011886,0.0003266055158002133,-0.010660873400961597,0.04032618100857022,-0.09219404282877777,6.343314110811132e-05,0.027330057963521098,0.014009272298157014,0.04644227127955287,-0.0009279286025925036,0.000139540196527663,0.02214158424787016,-0.0005000989178422709,0.0004531512608930075,0.000811809647177115,0.0003724608056545036,0.0067318480049558494,0.011954254250520917,0.030455576113087125,-0.08791413995561662,0.0002053777735630279,0.003945749566220537,-0.002817545454907351,0.009003183778011058,-0.020905350194498015,6.833159460952135e-05,0.009515926776434602,0.042986774372757615,0.12319918885446589,0.03935229366858985,0.00010238041005584856,0.027985339154515974,0.00271876419464097,0.024214955544374337,-0.0036853519022915266,3.850228285146935e-05,0.01664465677519388,0.004714270858360754,0.0032745015897466365,0.0010704034240633577,0.0011102329498174572,0.005478316896008982,-0.004068678751136993,0.009411243078018454,-0.02938166841729746,0.0001511709340459185,0.007581339224131331,0.014163410970887942,0.01016023198165005,0.0031690375690665855,0.0006813787594511301,0.008716059975347424,0.01672327981515413,0.24876576697484568,0.08655869045542461,2.0033352356193264e-05,0.0003008603636093629,-0.024679845234547894,0.05875407759810604,0.0019931879525521773,0.00012478300996507635,0.00775059634884955,-0.0063142523731202545,0.03774374010397985,-0.013647248358331058,4.709109849756796e-05,0.0016632821733875331,0.0012720970142491978,0.0010170208571109117,-0.0010599819828658243,0.0024395703495009293,0.009267895246643093,-0.03406667868102505,0.26579474546338444,0.013507450009689725,0.00010547159433283308,0.01341201160721881,0.04043070591486302,0.24591633715136063,-0.012818409047025506,0.0002545846264908167,0.015257993300500053,-0.013813208663597748,0.0791980985715383,-0.0047285850047414256,4.9129322296273406e-05,0.004044736387980782,0.07479138911388841,0.4548235532077174,0.14657501859812305,0.00027101633021439257,0.017650502728367528,0.01811173334874952,0.2731239702058909,-0.010631321828860379,2.7518859445857818e-05,0.006976080697936551,0.022013377119120926,0.2165049765343408,0.07137335656781131,3.3970387381860905e-05,0.004403543287998413,-0.027433998775576417,0.06540044260478994,-0.06371310680973236,0.00013512359251661722,0.009638533007149914,-0.05380216836012408,0.42577160835477756,0.06347343640982282,2.9188747332280203e-05,0.01673450790263474,0.0013145606487028675,0.0039406346048439,-0.007476303870631453,7.395913838944216e-05,0.011626982301751968,-0.00968555449070962,0.03725589875505582,0.02380144504065792,0.00011887158122114495,0.004371318251202025,0.019586418109566503,0.020672041223008874,-0.007372171835256135,0.0005415607987857542,0.002291694348347173,-0.026651730810973644,0.1013608122154971,0.03479029340867799,0.00011067291406899525,0.019019397063807116,-0.002484029257638193,0.007383032996791675,-0.03707006808271167,0.00215943965384325,0.02196741929743473,-0.005804496873603249,0.048091887033204814,-0.010433811242567835,3.1036658568500385e-05,0.012156371105579059,0.07310185233011314,0.1968175907865528,0.07706205206625173,0.001214327247841619,0.049243385065989485,-0.006038807745727068,0.04895070074346555,-0.010798154348689864,8.215196076494203e-05,0.015538262325307537,0.002162057165724492,0.003145072051102298,0.00016839350724205765,0.0001622489742150954,0.018098185478407212,0.028024081015225813,0.03453864002111442,0.022009578205603862,0.0004657255461380037,0.011533363224761863,0.01468183966568426,0.059587861062197864,-0.0034729443386397833,0.0019097346224791732,0.009443882427511591,0.01554509472009715,0.06504712804762174,-0.006943612590324933,7.667532344135293e-05,0.013435807357866217,0.029798005190201492,0.03937803860871828,0.011283047357136871,0.0018810931537726332,0.0019727894139488387,-0.010607626841465299,0.03812268372562637,-0.0005424812055777409,0.00011024294439951655,0.007229105333102386,-0.06300798866254889,0.16002294515670715,0.08453545979542063,0.00015961501139379806,0.027176754596669413,-0.05572529119014053,0.20538481223925806,0.04512620520043376,6.622133721491062e-05,0.0016619798628022225,-0.0009823694803290286,0.0030949641795455425,-0.05723755555384257,0.0030084118633453877,0.015264506868162586,0.007970130798307648,0.041514262693697485,-0.00510160540147728,9.550116957019565e-05,0.014054753792960449,-0.015454383344366213,0.0917979770056118,-0.06071749961562224,0.0001220897921876662,0.014484322139964444,-0.013568144916149261,0.09183841631207162,-0.06586670827216977,6.987869505477443e-05,0.005648250243195755,-0.04285191550441138,0.22256009004894994,0.07541484126372638,4.8391640642342816e-05,0.0066571608329944795,0.030319101010500928,0.05702794396340514,-0.14831172544949806,0.0002592137290102815,0.009228962137831927,0.0007701205595421205,0.003754053049846785,-0.14709306175709108,5.101203959208053e-05,0.00338775415621483,-0.02822805935269992,0.2793470173864742,0.06335988937044476,2.6071635074356576e-05,0.00796550480672798,-0.01256445960139946,0.03732735877952138,-0.04011544538745443,0.00011765909883565919,0.009873138575252384,-0.00954073681601728,0.04466176725931468,-0.06583844539005518,0.0003367239309352906,0.0013930145452377366,-0.017804211991123687,0.08721000858363129,-0.10075271950668968,0.00011693061219447692,0.016162336380641424,-0.0009928095581646689 +2021-03-02,0.015424716811252891,0.08738284100778546,0.004421888264939344,0.0001866713304624962,0.0004114884750353919,-0.035759745298431254,0.11477594363435953,-0.17873796742978984,7.47573798312324e-05,0.0008677399724523871,0.028568589125866652,0.10131227072310255,-0.1360579640661323,0.00013044395207648723,0.003788356947612865,-7.5620718073925e-05,7.870187365279905e-05,-0.06584623521326848,0.00032428255159886425,0.005200136652125271,0.0008418712456763881,0.001706966344155447,-0.004259165609545196,0.00025805869119611844,0.0051761372129652565,0.012989196841101041,0.03246572250415621,0.008371470316564385,8.7358258112974e-05,0.02239323727862546,0.011383953489212043,0.04333450753529676,0.007316756261969059,7.708131275442948e-05,0.0060860505536785865,0.014544389173957695,0.14920265408740227,-0.0069799659201676065,3.3428551045904517e-05,0.0004767161528081811,-0.009435599146343752,0.008016986523877317,-0.001579251135268476,0.0009076180317563879,0.0033447729631596763,-0.013130449286968427,0.03639875190788679,-0.05819187685933254,0.000126140625688393,0.0115856257816978,0.0059327347153186666,0.0044270650773987445,-0.0021318484223040775,0.0006550333036592657,0.013875287143762207,0.01225408177801217,0.1933034886473028,-0.045767110774965675,1.8891388166177006e-05,0.003207589082833167,-0.021040975886802774,0.06060719866481591,-0.0038758665959398963,0.00010313182562609753,0.0011414489273242198,0.016332180040463707,0.09441837577122089,0.03339050948368064,4.869108496810793e-05,0.007751490904370158,0.02892430062175391,0.020218228448982176,0.016406394796806403,0.002790247578162514,0.03481419043962957,-0.0484412489747928,0.3664851508162703,0.02569214052744214,0.00010877048305606634,0.003526737235269377,0.011569948583907233,0.06365069677429555,-0.05303349300676849,0.00028147284236905695,0.01436591765554331,-0.03680303104158663,0.23759426972944941,0.053012375591878956,4.3632347735773205e-05,0.022935777491494627,-0.0025469873077784105,0.015349894560726336,-0.018202818214303786,0.00027346905607634076,0.011471519858761197,-0.10724691494979803,1.3323635103263727,0.22410829216692937,3.340352576909117e-05,0.017480984799263573,0.027643478466897166,0.2575666891184319,0.11448152263094008,3.5857887842862135e-05,0.007370454867229287,-0.010809079695229203,0.028582964386030196,-0.0028374574455283475,0.00012181596404171785,0.0003645750208220017,0.002412793996815722,0.018234684896954137,-0.012213954482116578,3.0564293174262516e-05,0.020688764832611582,-0.02764782356481422,0.07391812783137905,0.1448924737614221,8.292536140494105e-05,0.003315496811532215,-0.007106066455896084,0.02573310789726085,-0.0786631098359387,0.00012626576645549082,0.003108114036288414,-0.01371980557773446,0.015206959078095834,-0.013128029929748344,0.0005156810128744186,0.02873488524678113,-0.010546723487982903,0.04015936473927246,-0.029087471018433498,0.00011053930626906327,0.025175497984216894,0.023756123793136855,0.08935669749723482,-0.004111494906976347,0.0017063481460916766,0.0043992899804111505,0.0148785483373686,0.11805881750425933,0.0017723267592355567,3.240741022303602e-05,0.0005408762229657889,-0.0026598802383408734,0.008016040542720771,-0.010643757895119572,0.001084859378040356,0.009590367602119312,-0.012344975753854391,0.10793524844675535,0.003667661685991552,7.616449887869818e-05,0.008704815215863717,-0.023633329700688,0.03244074979073144,0.020146761205918236,0.00017194098749174434,0.004860575577476843,-0.08229377675776733,0.1127015269144373,0.24896216234413968,0.0004191226273336466,0.019948610056755037,0.004472067812470309,0.019259402329739803,-0.008267549907951026,0.0017997654724561491,0.009662343345383424,-0.015807637703263096,0.059619589039102874,-5.258125649768706e-05,8.506841988908858e-05,0.012672927478237709,-0.05342456085342711,0.07355256558005514,0.03770158235469114,0.0018055949311230127,0.0012947857093102094,-0.04844435950116516,0.13762564902033528,0.058708406363911274,0.0001394632799172199,0.0035643781609617413,0.03278418400432003,0.0850105596068157,0.00796937704830223,0.0001563334383099139,0.015312174500924513,-0.00038498708870493445,0.0014330267772594562,-0.03951288434613876,6.55700906770403e-05,0.0012996507818644968,-0.000560021898049118,0.0018719676196494845,-0.11458637724557674,0.0028354678988006293,0.031106552180272036,0.022823625427944666,0.11496029567712375,-0.013756120774479127,9.875914691366555e-05,0.004229703057946953,-0.02744159607777627,0.14838950559061706,-0.07601309536454531,0.00013411179153419387,0.0082809033155293,-0.027379490662029,0.15748909340521347,0.045344731891294725,8.222872957415353e-05,0.009850942566643399,0.03593214350949262,0.16937049860713155,0.00804444854219949,5.3320320889402314e-05,0.009430967539598574,-0.03143793977450007,0.06483990529585677,-0.0036756246603955453,0.00023639653135742962,0.029705439012471784,-0.004233417145978956,0.017268008309434677,0.0010676001050137472,6.096255934091162e-05,0.00784738275170882,0.0032355400887831274,0.043123987070550505,0.00010138630127481088,1.9357941071586026e-05,0.011390365881806919,-0.003791665303395268,0.013520810898618922,-0.029291317209269453,9.802485762640542e-05,0.005707497142834456,0.01024911762973786,0.03673007001111038,0.024965322336381223,0.0004398379439280405,0.00017513940408457737,-0.009074744241796773,0.04363146945282888,0.004102702148417319,0.00011912594263532755,0.013370841340827838,-0.006800593300998831 +2021-03-03,-0.00611871689141291,0.0359650593073044,-0.043861845650460266,0.00017991449837285913,0.0007909621207196728,-0.020279044531644003,0.07100044386460352,-0.013342660096907988,6.853255948859463e-05,0.009488334762790332,0.003845948826088474,0.011216351776944015,-0.04261763051774771,0.00015861676354958146,0.009694610763288567,-0.008963119989649134,0.010008472070399184,0.004871610507487435,0.000302245111351867,0.001777873321890177,-0.024247549050485366,0.05122546791126493,0.03794270987181802,0.0002476735817375,0.01170157106017363,0.0026706430228869323,0.008304030652632861,5.143863322816531e-05,7.022207158566977e-05,0.0036994770704454625,0.012509685018962453,0.041507806185033275,-0.0666192012778256,8.84313896480949e-05,0.0009241645947742729,0.007644992210633728,0.05406049089716874,0.0018216126360779015,4.849485629731565e-05,0.005703915317037031,0.00902000587888676,0.006871435148593632,0.00630783735160353,0.0010122881551539243,0.014017576933787867,0.019262344881812977,0.04593515251169153,0.008306430729480467,0.00014663102760221117,0.00017515821908785064,0.003213973267264061,0.002165278918354867,-0.07698456507478005,0.0007255256498353218,0.0033477722016062054,-0.008173767040335693,0.11832594420537801,-0.011692231361475682,2.058567284373407e-05,0.0021329018936036667,-0.046152116359892484,0.13092888361176114,0.05478358689164671,0.00010471458935774292,0.0378049177585257,0.010489757679067308,0.0604360820933141,0.010527506084289987,4.885746973544572e-05,0.006843137009303732,-0.015565599115847277,0.015188876529692948,0.0010862479801848977,0.00199877156321776,0.03397785162551688,0.11557275675865282,0.8039595655423311,0.20986049356759362,0.00011829690261338145,0.03358703399904759,0.025724335340767564,0.13288606465063507,0.0010504745718817926,0.00029975949890071607,0.010947634208871878,0.06929052278967132,0.47324261917607335,0.10860136505262381,4.124306614913339e-05,0.008585574143658957,0.08979723650393197,0.5361403129660943,0.1496956833647629,0.0002760395529929666,0.0034388191297604074,0.03676631962308844,0.4525009355034563,-0.05079946331773859,3.3717930272729627e-05,0.02449413591898617,-0.0023794448691391015,0.027638671722942786,0.001907360310257383,2.8763397842283405e-05,0.007120228197844806,0.015977207735416103,0.046041726310441386,0.005346225770380466,0.00011178204197766949,0.019135990483105363,0.019685296644686597,0.13173665135537693,-0.00393283956910261,3.451657697472604e-05,0.023389344386641323,0.0021007817194562644,0.005552416368046735,-0.0027901949188117747,8.388345040142873e-05,0.001731327855178236,-0.013330320451802262,0.045386501259911415,-0.05880912458813409,0.0001342958152637748,0.001250906394956002,-0.03892857119727884,0.041949558777534465,0.0189640103994639,0.0005304160146611261,1.5144576301264444e-05,-0.010021396430763033,0.04391647158742355,-0.002845282174551176,9.604766506292603e-05,0.0012149832071689107,-0.01606953772430831,0.051410445063325406,-0.04094522763751793,0.002006185996312339,0.013055394104586613,-0.0006653776429172848,0.006302292862515733,-0.037283178251087665,2.7148873810021876e-05,0.015256979713292354,0.007851765353265594,0.027902906576366193,-0.11339094564154953,0.0009200027747294849,0.022525431844988758,0.013225552878379888,0.09564547420166086,-0.0022267650103929386,9.208206600201787e-05,0.016466967536317056,-0.02611182886425789,0.044730222149078694,0.02128995587341838,0.00013777855383339662,0.00539584543019917,-0.02724322531232794,0.04308922684628888,0.014581990016976064,0.00036290565396308443,0.0019524707730618762,0.038613727630893324,0.16177206102569822,0.03623309034494687,0.0018500716639889014,0.0015659180799191103,0.02272895924508174,0.08783385427812856,0.02407629365217892,8.30248270670138e-05,0.025753483079009064,-0.017252715763058837,0.024700358794641594,0.0020913994637088307,0.0017363265154102258,0.0004710807395123703,-0.054722648878762936,0.18545183298256973,-0.00715442947090068,0.00011691009617563548,0.0036845080090469728,0.0012572865770655664,0.0028847792514863245,-0.01025366653268243,0.00017667783521592588,0.0032515697913735094,-0.03104884745925003,0.1316279877626309,0.015646469830008003,5.757198009566671e-05,0.018332130912403436,0.026180707833853425,0.07073371448359597,-0.10295245456942095,0.003508108178052285,0.01565862090882623,0.004048245830996383,0.017451926723729926,-0.0033912974904596405,0.00011538890901525432,0.018118599311805088,-0.0046971347655755625,0.02722016081383531,-0.022571018371530673,0.00012514200776436368,0.017051062251612112,0.001463163567454443,0.008815381451930804,-0.0088601043907855,7.850556942115851e-05,0.016747704928113265,0.0032246121230043775,0.015113641620017342,-0.034331179411507165,5.362357414567514e-05,0.012108101488607808,0.014011883287291367,0.025840029831770323,-0.03609990207439625,0.0002643826154183879,0.02544621145961659,0.004205318179326491,0.012786480135311477,0.013785012947883717,8.178284760594578e-05,0.002656442989563643,0.01820048557042491,0.19878062996131074,-0.011506730755454015,2.3623279999142044e-05,0.008600142003818242,-0.010568341210679334,0.036499798883523935,-0.02890624052794977,0.00010121044155778845,0.009718524871701951,0.011322485205240825,0.04446607541510135,0.008937627875020492,0.00040136632554797145,0.005988524954839187,-0.006867956761122452,0.029322607835142938,-0.061200782933790984,0.0001341518778213274,0.005112617964763392,0.0044641838978472 +2021-03-04,-0.013517790859673818,0.07745512491957546,0.006279189747350489,0.00018456194068695644,0.0005558461153213695,0.03611806860933184,0.13012329176285575,0.08417154221941114,6.660088559086649e-05,0.00018579897969837086,-0.03820176749554058,0.12478270097627338,0.039905239651675584,0.00014162055096671842,0.008570103518485972,0.004503636826541061,0.005224286854281256,-0.037826135645947494,0.0002909405147936483,0.004737231867623709,0.012588355071662885,0.02832972491102046,-0.010927054757052595,0.00023250077193895515,0.010836975105989929,-0.01296431678320655,0.03301489942255474,-0.1018715938212565,8.574057579983696e-05,0.003986645349487199,0.018973424867047287,0.07748473033223646,0.014609960559191906,7.184879042110383e-05,0.00046471896928908197,0.012866832259039533,0.11762757722003156,0.00296486660929436,3.7511212450011834e-05,0.0008364301249783315,0.02441256936672827,0.020941062753816127,0.050407738551982065,0.0008989997246292296,0.006016437919770793,-0.012343818430187043,0.03060919460654203,-0.07610700015476485,0.0001410131157923833,0.001272330944711443,0.03689962381264537,0.030731401450150107,0.0722837793921044,0.0005868997586591265,0.001886203103442919,0.010571105065957933,0.14719760153490052,0.008768397934039256,2.1401412857860167e-05,0.003116651616429436,0.0389260554975661,0.11968341303905822,0.048018458839360206,9.661787240554383e-05,0.022756040573928087,0.02112748140868901,0.1191439585207282,0.05701524579643724,4.991574084380548e-05,0.008162867694476014,-0.006773151943989341,0.006076681225789876,0.00039763576439452676,0.002173938913448814,0.006923843572831399,-0.005431196393593298,0.031692246399842444,-0.016063714466732628,0.00014102450735030625,0.0369169562029807,-0.004909783938269837,0.027493513843961623,-0.004854317760686455,0.0002765287966681797,0.0027554135891067746,-0.015153069859900491,0.07568725640119381,-0.0032028459380710147,5.6394768566301946e-05,0.023511767654000693,0.048609845875006254,0.2289191792248689,0.032145946152547976,0.0003499684317763847,0.015025704819692128,0.06287144741467438,0.7094181057113816,-0.015514876418735325,3.6777433736845184e-05,0.02047417188889396,-0.012451577443898241,0.13384885493617785,0.023010238940524425,3.1080745195435904e-05,0.01418899951869812,0.016464020896158622,0.04980336932034045,0.00454043450148846,0.00010648782080130736,8.318096514442702e-05,0.03655344401430893,0.23815299077872784,-0.017942906957855734,3.545395083213818e-05,0.010051262419238092,4.3680832796957855e-05,0.00014519569722344947,-0.008553745466919806,6.669826633395542e-05,0.008449596380589758,0.0017137520725200065,0.005471621338674783,-0.06148655866817149,0.000143212377308676,0.00035573909743986877,-0.04976171443723751,0.0487772995875934,0.028904813976050228,0.0005831135627078712,0.020032595927104425,0.025312557067368034,0.08250832868879168,0.016872406045478804,0.00012912913408382815,0.006470150133083309,-0.05038495115177713,0.18253728263664293,0.05783100111029516,0.0017716112745554957,0.0020163052840380244,-0.034637565444550926,0.3521544710801096,0.012731693540131593,2.5292767270732404e-05,0.006878379302007827,-0.0005485110424449174,0.0017426365060340264,-0.0074905590697465834,0.0010290816570033136,0.0007641308199119082,0.037968903974098925,0.2937727403325031,-0.004430933679902208,8.606809878059842e-05,0.004372542287114517,-0.009780645697854732,0.016360949224090884,0.0020967486465405987,0.00014109265843315075,0.00935634530593428,0.021678884765764458,0.032354674433220966,0.017411975174013848,0.00038459516184473477,0.007717523893158856,0.0145846463619145,0.055269632574907024,-0.02213888269606681,0.002045312472958045,0.003879355946281193,0.00870397135920389,0.03145202819749831,-0.08570039137047376,8.878900054075999e-05,0.008284112113484813,0.029219608327164283,0.03884805568607555,-0.004368604999928192,0.0018697446290911253,0.00977045817606373,-0.012128177784214047,0.041360447747184864,-0.026564436363844538,0.0001161786590553019,0.04054719112978243,-0.01881817769495783,0.04668497710048191,-0.08274589753673893,0.00016340328798654925,0.0018861493846040725,0.008920523865728256,0.03921517015347892,-0.0015815082005847518,5.5520092466344826e-05,0.026496317348747078,-0.03299949676232939,0.10597614049633791,0.03263435737344008,0.002951326625733798,0.01742612046894482,-0.012334557904716813,0.0633977955206823,-0.0002497081986290621,9.678097701475273e-05,0.015005613842404328,-0.0142302720932659,0.08023641381243993,0.001769755645625164,0.00012861821530327816,0.0014019002758777293,-0.024444117021270473,0.14077490849881819,0.020210244059180246,8.212923908109146e-05,0.0033941160115930763,-0.00988385199601988,0.04342296464379781,0.003841816867931844,5.720765650920984e-05,0.005633569111492742,-0.020037587014293083,0.03744892897655022,-0.007448622971634592,0.00026087677307703885,0.0096361846561642,0.005041385731662016,0.01989617927278322,0.009788534882553056,6.300784387328808e-05,0.008450910613694514,-0.023362796126800374,0.26619503740974304,0.03610504184103501,2.264415660858858e-05,0.00218077384171287,0.0009214132738875065,0.0034172564466870715,0.001977607342753044,9.425097628406322e-05,0.006778974768909999,-0.02146527589812997,0.07984491523176027,-0.09941488607121525,0.00042375728917019514,0.00018452013167207307,-0.020449178182024692,0.10734558740957785,-0.12326990348777563,0.00010910972426735692,0.0045738612600512004,0.0006730551250013413 +2021-03-05,0.000488459476718995,0.0037220133984269903,-0.00016042863021781367,0.00013878329413976006,0.004830743840257895,0.04290040446073151,0.1374864912035819,0.05337374912150414,7.487069849059576e-05,0.0032947483266780597,0.0025816388148141548,0.00808099180225557,-0.018822167375131187,0.00014778420523230858,0.010812993789876624,0.016274865314846575,0.01726471229844261,-0.027022776597898982,0.00031814559460173274,0.001502704722897166,-0.004622472351655116,0.010248885559812576,-0.03709819007271004,0.00023599100551312144,0.0017613325845550235,-0.009584553066357306,0.026645563782734416,-0.025363934992495993,7.854050553861328e-05,0.011173531266342669,-0.003111540914120985,0.012460653294995072,-0.053133028115373154,7.326972453686328e-05,0.004471526084257687,-0.01070337684276406,0.10696832508128175,-0.04063498109599252,3.4313438093727455e-05,0.02262955989315155,-0.018486749111029484,0.012968031462944932,-0.011300703298179374,0.001099338096868102,0.0016382110137825108,-0.016132331329071877,0.03620045387117649,0.003235014491880544,0.000155827823156744,0.01820175389704279,0.02934706837966422,0.021490253697774905,0.040172261069515075,0.0006674942666697267,0.0056238053694411495,0.021814708056097545,0.23405510946577843,0.08167349467881822,2.777500004869244e-05,0.0019901822010771108,0.07077414527396479,0.2056322174842675,0.09454711987583393,0.00010224321851218074,0.007802882140537188,-0.023194067970052495,0.14720481917149386,0.04626298147287431,4.435235816672688e-05,0.0021993992310849276,-0.013293065003624756,0.012933127125822742,-0.06661182925291467,0.002004677678060109,0.011808749837210227,-0.03351770407182798,0.21700908280072004,-0.008813482117313387,0.00012710085107567266,0.011640062523972343,-0.010799579185287251,0.05408642393398717,-0.10498556932193245,0.00030919096677146403,0.0011633459942870913,-0.046195970433334226,0.23788202524259358,0.060300016438405366,5.4702027490217865e-05,0.0188864152243564,-0.02111586388650862,0.12719079390982457,0.005772809886745449,0.0002736150508854558,0.013867062243098725,-0.019460688173714248,0.28103955020799837,-0.0396698500694428,2.873564722562795e-05,0.030899152357076357,0.0016317788217399258,0.016924711859476423,-0.005298378647652223,3.2212298710391406e-05,0.00442265963537031,-0.029205360896826568,0.07444248574018943,0.01743287976105487,0.00012637595970923875,0.009441274559004951,-0.029760369234707422,0.21145626291526318,0.009753484580874201,3.2509488666494934e-05,0.029034953879206092,0.009591320058455843,0.026636957366702557,0.01907384154790509,7.983092292197295e-05,0.0041514035243129365,4.1574796887003615e-05,0.0001414799493292861,0.0016240795075048529,0.000134364282130196,0.00013501614136981403,0.031855949356857274,0.032415932775051316,-0.014193296080270531,0.0005617040957568249,0.001887350954430986,0.01953315273621502,0.07434930806221432,0.03498108868508605,0.00011058123195024001,0.014039778285324917,0.0512608554458637,0.20736679450984039,0.034909088404513997,0.001586594008003553,0.03750200136568861,-0.018937322608709586,0.19967065181448387,0.0022663067228059185,2.4388581270475134e-05,0.013029643304304122,-0.06627338233460865,0.17471788612271072,0.03850188304018185,0.0012401466344633219,0.0032498415283618506,0.011523070170894996,0.08541696563895484,-0.023004845842297058,8.983585600835081e-05,0.005504992005281568,-0.0005775684458447808,0.0007638137862153664,5.787153392561414e-05,0.00017846840899126407,0.0323253513390005,-0.033102453860840035,0.05075948296222143,-0.1390749251839559,0.0003743233449087286,0.02391432692256914,0.047849262027249,0.17593161283664496,0.046333712203714565,0.0021080538524601,0.008884522360399588,-0.018892725527944517,0.07200280700245773,0.0033498623065260353,8.418516318290609e-05,0.007861291218119095,-0.023271037755091217,0.035321442015948896,0.00608748808799102,0.0016377760540947893,0.002139670989780621,-0.017498515790309546,0.05411232558741171,-0.033890714251270875,0.00012812121580093558,0.013673501572633074,-0.009723457710148042,0.02637561242106212,-0.11480672712041526,0.0001494440241079576,0.021760402846369795,-0.014728667745211246,0.05865819954221199,0.0017427818102467236,6.128421982970251e-05,0.004642868226394371,-0.046644956697997834,0.12083662014232364,-0.14884640398528623,0.0036586779486583424,0.007526179668773333,0.015318325094341898,0.07836974717426068,-0.01872240529824367,9.723069881803227e-05,0.00024490345593914254,-0.003477511505952942,0.01763015559965564,-0.045988568871553295,0.00014304517543844953,0.004679666407361713,-0.009905700852135631,0.05455614337977592,-0.11279347698668091,8.587964588128996e-05,0.0033354580155919495,-0.0022483260702075435,0.01104197339407122,-0.0018401289038965354,5.1175252581949094e-05,0.013369677128229797,-0.0005744467284697247,0.0010613009298077003,-0.18401997060874584,0.0002639007410758466,0.019984002100673318,-0.005829854515285207,0.022740525444845255,-0.2716348125603498,6.374873886516632e-05,0.001386660097652558,-0.024834290436707256,0.2798755305060608,-0.008676809944270645,2.2893811968663966e-05,0.009758376404777698,0.0011540066534145722,0.004118988595305697,0.005978626010685534,9.793246540587173e-05,0.0039332251048197755,0.0075488504733892325,0.031846724710756565,-0.0026666176816051925,0.00037363196172711806,0.008963597270735178,0.03702755672175744,0.1699946683610258,0.13594482092245655,0.00012475603148859782,0.007527519043753314,-0.0033366165793183894 +2021-03-08,0.018707096459128436,0.11750433270525137,-0.011495200765035275,0.0001683600666434294,0.010848663598611278,-0.03304188001873222,0.12479316411259189,0.03847099078691445,6.353082281666273e-05,0.006403741696239038,0.07636741761596029,0.22097897706484584,0.14807230886485093,0.00015986535290517595,0.0017133093819957943,0.021202254823043658,0.02059808949706117,0.049685897336579875,0.00034739452161028107,0.006417870687093181,-0.0003366854765403169,0.0008727236611913293,-0.015510599041692937,0.00020185773900653988,0.017623102452830944,-0.003969958851638653,0.01153604887675632,-0.03293521114879275,7.51407728703488e-05,0.007401629198397401,-0.04588101603739126,0.1704748598691232,0.06749462060594937,7.897007307458617e-05,0.0018021328243158145,0.024846472573282274,0.21332267623526108,0.02620291963428844,3.9941680388239363e-05,0.016895008726354882,-0.008613084944321439,0.008075901657560057,-0.008072235357259516,0.000822455662861037,0.005845274078832905,0.026514133152439123,0.05699363284576054,0.0046061443098279285,0.0001626720647246891,0.0063730796829875955,-0.015457173516333746,0.011007833291103601,-0.03746805564045813,0.0006863609974281916,0.0030603983868904114,0.021859076617869518,0.28582138690408365,0.07034776498931408,2.2790816241698835e-05,0.010918191342830147,-0.020910315003718025,0.05850256565024068,0.006396746731148728,0.00010617852807326312,0.022168118577600645,-0.0041617597489287715,0.023891867214418962,0.0017561245525925266,4.9033030018583346e-05,0.005396797015384013,-0.015072983541180938,0.01360484331026692,-0.04659404344312929,0.002160870065230419,0.0037990469803405235,0.029843986133821086,0.22162907232639784,-0.09651014510555046,0.00011081083020759469,0.03489730125886662,-0.004523245843518577,0.02200957724976315,-0.01700015351332525,0.00031823410710076736,0.001045108614862121,0.040873588424162395,0.25163357264753444,-0.005259505191058438,4.5754639700698774e-05,0.027368324781950087,-0.015314909884598417,0.08365900468540785,-0.06986347670428802,0.0003017092045138842,0.012978647488485692,-0.012863840607798785,0.17315179243832737,0.005033599690086209,3.083002591835938e-05,0.021579203363078336,0.0034936184714149192,0.038981523871502353,-0.02186481871007966,2.994321106358114e-05,0.012185738315407582,-0.009353125650160669,0.025042027734707033,-0.0029568320490531964,0.0001203123008511639,0.009210404535108055,-0.003929476881009976,0.028806416124399,-0.0013589717324148166,3.150923679818882e-05,0.02129498550893239,0.012815437292317341,0.03739252248718251,0.030956420314709965,7.598468172707529e-05,0.0011568282318512248,0.003909589055022201,0.012952742825527329,0.0021043459581301526,0.00013801235386763357,0.009637103351656188,-0.040094517395474705,0.043573611827151595,0.010406141992048848,0.0005259409561429756,0.009052883611756334,-0.021091976138753403,0.08049951709388395,0.01722871990453112,0.00011028336407455963,0.001495739849018018,0.0036980529456397807,0.0128423566844756,-0.009349425931195915,0.001848194066146468,0.010707789553700579,-0.020898552064389765,0.17997086780968702,-0.017934930454641486,2.9860438563642557e-05,0.05338814248093417,0.05564078564135835,0.1824989368450162,0.00048021556002183347,0.0009967911754107386,0.03994755058888512,-0.021663627832327316,0.15207149895979946,0.03220921309502879,9.48656534649443e-05,0.018581154542930748,-0.0019295433834187932,0.0031168081975720793,-0.10569817641296617,0.00014611333597622524,0.008389425133468902,0.0064204579788511105,0.009136797760051298,0.007142080884240917,0.00040334428674357916,0.0032803270273433017,-0.004675620859812707,0.019124710387262614,-0.06904879284160104,0.0018949369376979103,0.011752802891742724,-0.008674553521209537,0.03289714121663152,-0.005505247602538381,8.460174915150079e-05,0.012033512603798114,0.015637925922455467,0.021390435558978394,0.003967422909642901,0.0018173422171087559,0.025826486015103223,0.019618413961854174,0.07850720067183367,0.018432168124895704,9.900803442675155e-05,0.010114860808708307,0.011243711929332698,0.026639001357308015,-0.09639870970863924,0.00017110084183060472,0.014207508514199609,-0.04649479695777974,0.19485716734274194,0.056215496432261605,5.823738899328317e-05,0.0022049320496990974,-0.0616023161748389,0.18952668596113956,0.08662164175391121,0.0030806668175276984,0.021862092108175267,-0.012826285806397681,0.06827054310880598,-0.08377565152212864,9.345620164246573e-05,0.0021150224522499834,-0.012583243557540206,0.0645895862912255,-0.043005708150644056,0.00014128331757904398,0.0079567528204276,0.019752222253956515,0.09975344312395211,0.03624410303075567,9.365625062707813e-05,0.011630650866518946,0.003657849074310276,0.014361013781824458,-0.0003097371326760105,6.401593279399571e-05,0.0018711965743131854,-0.03512302422357661,0.06375404431686389,-0.02134553172858152,0.0002686046688876709,0.004271983128808239,-0.004642632730704739,0.017506697385771104,-0.015010369951402815,6.59438774875269e-05,0.012596697243307496,-0.010886062419923922,0.10681396281141348,0.0011159838858526912,2.629505465987366e-05,0.0024445824900251765,0.00024365764661813663,0.0006810705969221941,-0.009169716586044792,0.00012505379575240036,0.0038893079163401746,-0.00919316211703837,0.04473910748824195,0.0031387683516762876,0.0003238959918098883,0.009369283837640841,-0.07492966247345434,0.29673646031313156,0.2747407747077683,0.00014462875925293588,0.0006929744102937387,-0.003307261475179286 +2021-03-09,0.004469789931278922,0.033060141456973835,-0.0010022449458395011,0.0001429779247791894,0.013113385943629758,-0.013164532276300678,0.04105802444957719,0.004481096314933442,7.693392880237562e-05,0.0011342611712622983,0.047923806081249215,0.13890146989971963,0.042262209551228835,0.00015960322590103597,0.0025330649946545707,0.02516735620989217,0.022984835803632503,-0.008661115050387885,0.00036954220570953176,0.01538269599742606,0.05812587112747798,0.1499965708590682,0.14533915290479407,0.00020276169655995737,0.006097854900918325,-0.006162086592150205,0.018319186522423134,-0.11359584363302541,7.344603447055334e-05,0.007156924089997845,0.007909266224717356,0.023608876904889817,0.004165456940751381,9.829936706381432e-05,0.0038658951266500735,-0.028812180732434436,0.22613857437439527,0.025113151791319507,4.3691815883715784e-05,0.006549579392173468,-0.002125042173680991,0.0016270545868750062,-0.007903047207779484,0.0010071872434808471,0.0009859574211341982,0.015725594144340275,0.03841245356411367,0.006056554229451715,0.00014315182895217548,0.003703322468404819,0.012456277980940041,0.008635538176045938,0.002197550231550692,0.0007050553971271473,0.003174163091629144,0.012274707914886085,0.15208070840067045,0.01915944685771915,2.405247817111643e-05,0.0036354961536220615,0.01947764241438884,0.04918953290708804,-0.028262592819447575,0.0001176290874141048,0.019919079161320852,-0.006338626157397394,0.03170076190038775,-0.010992358615675548,5.6284298365930885e-05,0.005681710330386046,0.008976864150031688,0.007908534590999454,0.0019227180417664303,0.002213867409116805,0.006620208732948272,-0.051714173274960445,0.29362984707177486,0.04395017082338741,0.00014493106885359402,0.023691614851786127,-0.015865620899851357,0.07919465633265854,-0.004548347950717578,0.000310219737669676,0.001508219028679133,-0.022638605056365994,0.13614344879465667,0.008778344684640737,4.68396747840202e-05,0.01076216926462886,0.05127050216597358,0.24718112668203407,0.03703764220076269,0.00034185274466462463,0.0035888517747335383,-0.006128503038537586,0.08547108171461938,-0.00108787721814238,2.9755375595465986e-05,0.006436910043382704,-0.023070468684806663,0.23944314035357261,0.06750539889314648,3.219109329928725e-05,0.001985590668352753,-0.0259709827108829,0.06900889503589687,0.008067888715907417,0.00012122887232402638,0.014028876580535303,-0.06273416567421247,0.42334504670967155,0.07886255561336145,3.4229615430788925e-05,0.009128987641106978,-0.011394335055198483,0.031857397922533746,0.0013471095155485047,7.929687416134122e-05,0.0030306281147789446,0.0018079166197113336,0.007539749655028986,-0.12022527242442457,0.00010964026250365175,0.0019112959550191847,-0.0075423292552604815,0.006988354568140019,-0.128295813147567,0.0006168877085376389,0.018946601179477825,0.046739542294966185,0.14764788954891614,0.12434254288041936,0.0001332426374341477,0.022411225666322126,0.019606892982501567,0.06316409066177274,-0.03652630145759252,0.0019923136243125044,0.015085186368733487,0.01837274275697583,0.19190641507248637,-0.23634532898817215,2.461878961710359e-05,0.029900736153054407,-0.03692337595327767,0.10885630466403247,0.004640139925303194,0.0011089681795464531,0.022650557492865098,-0.012089636856145801,0.09767224251561443,-0.0001444254084225355,8.242666718491857e-05,0.012904612402865076,0.006406074754053609,0.008755691333540374,-0.024850685749570355,0.0001726819505533061,0.0018067280419832444,-0.013115989709278747,0.016080679896456413,0.00012129599989833557,0.00046816675865097977,0.007432543915538676,-0.005267485981745075,0.02073738991247984,0.0067412746442492965,0.0019687910940578823,0.014391511521121197,-0.02788614038046808,0.10541983117206412,0.0021412616032187685,8.487044187984609e-05,0.012607269566447482,0.05914273567536505,0.08441578515604377,-0.001933980430384991,0.001741626149397276,0.01379869674288055,-0.04270682972167132,0.12530003404138626,0.024147739244279362,0.00013503992277983748,0.019963882965071574,0.03700985380896621,0.09113619321783523,0.07397067993955965,0.00016462161640495293,0.01999488802945597,0.006933934221073738,0.023578010543865876,-0.0341514899684403,7.177719540186414e-05,0.005505488852321012,-0.024079037817931356,0.07597410557899427,-0.1250076118210297,0.003003942330206891,0.012243711978202837,-0.030931113106875237,0.18077401252107314,-0.17274587193586835,8.511382771309846e-05,0.005272060064627835,-0.018552381035495724,0.10833633775308578,0.012943800768633527,0.00012418990343371467,0.003313111867217512,-0.01827968580902932,0.11040983823615928,-0.015010731955735919,7.830863466218654e-05,0.003309827105675577,0.009798424890585342,0.043740290108945985,-0.04367865221243616,5.630176420758427e-05,0.02388176458217688,-0.011004659702779687,0.025601233598774295,-0.0011286597631261978,0.00020957772375310418,0.009458278457819918,0.010147987690185316,0.03675027194575086,-0.03867523668461503,6.866473534360283e-05,0.001103111950981184,0.005946698367692634,0.06202366523015745,-0.008380815634937989,2.473715606866565e-05,0.005942267209894686,0.02694818183325533,0.07776950477190539,0.0876857229478394,0.00012112369200842836,0.003953658779631921,0.017230039924804316,0.08304104354306799,0.02768776148904984,0.00032705549971214035,0.006148331643909016,-0.006578664956870419,0.03484391053051112,-0.024412330431424847,0.00010813908111807531,0.005151549732103841,-0.0009479362148142487 +2021-03-10,-0.014906985252021922,0.10030228505758591,-0.05244964729756699,0.00015716852543749338,0.010279049312580456,-0.0021553059761275275,0.007616193393185743,-0.010738205614001912,6.79018327273532e-05,0.015397066769164334,-0.08825375519785153,0.27766296183146827,0.1548335394283905,0.00014703219685641784,0.02478875565083005,-0.02294424992989534,0.024022218589027113,0.11640070307921015,0.00032235069177770673,0.007151279995576041,0.021373514329180696,0.04878700074997673,0.006168325009809502,0.00022922901536131672,0.019421777706108333,-0.017923481519755712,0.047235411506669864,0.0068633771268615225,8.285169714915818e-05,0.01353934911310134,-0.0006711675599199809,0.0022162075664172737,-0.022350445097773612,8.886083280670625e-05,0.006174643465286688,-0.0020649703493738013,0.01584254463301287,-0.043729765579724474,4.469793866361601e-05,0.017869017516491295,0.011645304977012987,0.010428320466894491,-0.02526428466328803,0.0008611549148197897,0.015252247044280742,-0.0335414313596609,0.08251754861484893,0.05592469816145751,0.00014213373237539225,0.009530244310106724,-0.02020000422494426,0.017554235499847137,0.0369770131838544,0.0005624629213247301,0.0032494651368429888,0.0052205278991445565,0.061825667996882404,-0.0028695336920937795,2.516334621913675e-05,0.0013160518779582956,0.0411910496943026,0.11295129069036867,-0.09975199498996286,0.00010833348128392086,0.016938080872796194,0.006328944131786338,0.029333831084492383,-0.02051419503503466,6.073293835850572e-05,0.008250911907696331,-0.011330711032111076,0.010483507830624293,-0.00023866390978898326,0.002108014105109911,0.00715242588059714,-0.026831511324425964,0.17714926493003452,0.011512779189039207,0.00012464012871277297,0.01334593731593285,-0.008236523043871926,0.045778201418200444,0.008197480998161897,0.0002786078982606497,0.01792840984618124,0.024632026394424193,0.15855532921299895,0.005176293708790621,4.376029626118858e-05,0.004371007813499745,-0.043968640815179434,0.2643471428895879,0.03155387234849892,0.0002741291549348456,0.02052679500651325,0.041965917757355226,0.5442114159844009,0.00706643801581032,3.200068749299831e-05,0.0013228537862078006,-0.02499301373310601,0.24267847750041158,0.06910383454853535,3.4408764213243793e-05,0.004855747181060099,0.02357321553976084,0.0659976572196035,-0.017763162770424345,0.00011505700468321648,0.005797231034750425,0.019990552753118288,0.15464023817210354,-0.010441488718466563,2.9860334539271043e-05,0.009212101407696202,-0.0032093229231667177,0.007975348412510339,-0.01769729172193889,8.921566883096817e-05,0.009085752099538704,0.02076580322716555,0.07243449243098606,0.20587886085718313,0.00013108467111132012,0.0003930085183590211,-0.0017023027889875224,0.0019912286207904276,-0.0005169743101333418,0.0004886425098898051,0.028729564759973295,-0.0038233906184366134,0.015361921150003835,-0.02763273120944397,0.00010475847017110908,0.00040611023473752055,-0.07890596645846079,0.276524794136321,0.12788204593691294,0.0018314494684997594,0.009437977375110231,0.017194661790008923,0.16831249221247807,-0.0307336021533211,2.626996429561587e-05,0.02344019630376186,-0.0051200334742579805,0.014860995800814961,-0.002614411391856584,0.0011264091215021656,0.0033444731560850222,0.0211059744846327,0.1591353361567616,-0.014896578194281352,8.832109121182356e-05,0.005876730287364365,0.01405487161102733,0.021177070766095926,-0.00945361710816865,0.00015664133692702193,0.006378415172039023,-0.024852909177207137,0.04423715850249133,-0.014479514970284746,0.0003224734199669915,0.0036491632999416774,-0.04252515992651982,0.16177325391020456,0.06453332841867077,0.0020374622726804237,0.02328703705093785,0.007290100286455372,0.024470716757876498,0.005029715559254769,9.558223533601606e-05,0.01189553877999627,0.0693186030458665,0.07696142432538808,0.021297617320688578,0.0022389989873245614,0.00907546711198923,0.0011918508998355344,0.00301859238564242,0.0011007627651210346,0.0001564348438460903,0.008134683392682193,-0.01102454314526466,0.02681200242276543,0.0002945902470831666,0.00016668316088250425,0.009646501449879195,0.006164179757110616,0.025068436608892655,-0.002570277027477207,6.001529841744007e-05,0.0013708481244268933,-0.03558994578594121,0.1082985474370257,0.02268748022367602,0.0031147468317134267,0.011801393130815581,0.016326696745663703,0.06901611795957735,-0.137459433010542,0.00011767612788908387,0.010966731239438728,0.0008212059419582338,0.004764676579294016,-0.01037344089047207,0.00012499120096114285,0.017729412061057614,-0.005169492077401411,0.02959105274321804,-0.004290203524125846,8.262969633792715e-05,0.008493798636921984,-0.01955491597088363,0.10221788227074431,0.02777357955575957,4.808132972531892e-05,0.013315557962138683,0.012729172786717537,0.021404983870546228,0.005597782025251742,0.0002899443637160148,0.0014820312545294292,0.029615184572610694,0.12221385526925556,0.1891626117497913,6.0257120644799214e-05,0.003189410479134719,-0.0031142729088827364,0.03786034683248778,-0.06188499437950316,2.122283341503097e-05,0.006146482565237288,-0.005340457740137673,0.015519393597027862,-0.011106430329268368,0.000120285339868036,0.00794410089122587,0.017304145159487565,0.08361416896442997,0.03147672000115581,0.00032621073053597813,0.00039561973002018216,0.023845247950214515,0.12410460519813128,0.03273747296679021,0.00011004890899107729,0.02438311492145773,-0.001679312422598061 +2021-03-11,0.028700150852040137,0.22430015368863074,0.0024752965211015387,0.00013531352013461813,0.018314024643083047,0.016913690994234454,0.050740480355499086,0.011974017917679457,7.998238388794135e-05,0.020475188446846097,0.0012778778064251517,0.004391350749989812,-0.06524809012754824,0.00013461343460282655,0.0309117280030241,-0.020266098009366594,0.018838446141865334,-0.043782123526077535,0.0003630721333511629,0.01881441866297982,0.022779713941106214,0.04879408853738769,-0.06254120541026988,0.0002442748911803393,0.014366204586504163,-0.0008248540963398405,0.002392953290361132,0.0005570825085989085,7.52644086797218e-05,0.01440627315543673,-0.027451918534957858,0.12425202403253961,0.006927169034073852,6.482747175506025e-05,0.023146392410009632,0.026030080293104472,0.24168842445757274,0.032250244906023864,3.693331343086598e-05,0.0016635554238694477,0.00024009143193591287,0.00015971208920723248,-0.01180269755038853,0.001159267492160511,0.005593657850247715,-0.03647743426045299,0.07995742829257199,0.050615170363245886,0.00015952448549051866,0.0072570090131499,0.004918471039695306,0.0033952400506183245,-0.008981491900930224,0.000708082712770713,0.012981408455466718,0.004049305655474601,0.055993397071031306,-0.002942510061005994,2.1550955636847415e-05,0.0071323302077354045,-0.03667798911851969,0.09257740291345505,0.05463532684657271,0.0001176932516813899,0.02966767091638354,-0.012802699108853155,0.07902201914605787,-0.13317643153486117,4.56052913572121e-05,0.0009619861075584618,-0.04095362138269746,0.033291266274877995,-0.03339946572939642,0.00239930229305882,0.010236211376796516,0.031241804925774302,0.18938973432421177,0.012853523546891824,0.00013574748410532972,0.011157228805419939,0.01909623112377549,0.11723145959685076,-0.0871509950328735,0.0002522387014989928,0.014951947968883703,0.023556547855395193,0.14517217562464793,0.0038409562605331844,4.5707684052285066e-05,0.0014719625730095678,0.04444285558261206,0.2885264620893938,0.023128463341436242,0.0002538651656515939,0.01920014632107086,0.062024110985030745,0.8551436718633414,0.026199442348351736,3.009897408857231e-05,0.01831629396951323,-0.01716449445396493,0.17145550588171013,0.0033178144685800316,3.3447317268085786e-05,0.0022218428159124738,0.0019873935083973733,0.00518708589289177,-0.1308306521253703,0.0001234193296415382,0.0018199000054562678,-0.08610673047695283,0.6604912133530066,0.0774164351037724,3.0113582899615333e-05,0.0018881799600348626,-0.013328118297926654,0.040280043628985206,-0.029233255112545688,7.3359487531823e-05,0.00713225059475783,0.007931848837186884,0.029656044389399616,0.027397964054802163,0.00012229530978443838,0.0063225757877000835,-0.04892389397320632,0.046509124137369136,-0.06658146974210495,0.000601254606542442,0.0028854700811677767,-0.012982668401096029,0.04763445976398014,-0.009948779289119313,0.0001147172505377989,0.005368043445181797,0.0046936794062535404,0.015995756694564447,-0.0014905357149028317,0.001883335998156781,0.012823868327638765,0.0029088521057203495,0.029008434743161036,-0.057775028108812146,2.5785736528828684e-05,0.006714340122862925,0.008377516312035127,0.027072462019135598,-0.13801773032230777,0.0010117164205188946,0.014993316078749373,0.007438117007749884,0.05335114152416764,-0.003301341056934923,9.284209523140931e-05,0.017466047552216837,0.005136698322255442,0.006226833743893616,-0.043201269940004824,0.00019469830759162173,0.007626617509995566,-0.03817665069230319,0.07177433724727851,0.024084723442661906,0.00030530403709941355,0.018558740936277494,-0.025985222140904405,0.10522807968664498,-0.012913525592042488,0.0019140140877681566,0.023430081530272276,0.022621923538740898,0.07631587050153187,-0.03610759722229131,9.510536970954647e-05,0.007494442502790988,-0.021476845801732085,0.03138305300719025,-0.045608864022179285,0.001701188743816449,0.013412764834980669,0.02127851973994813,0.057635933214469956,-0.0037331185527752758,0.00014627298347738303,0.005981538380309188,-0.03388907872194812,0.0823337452819899,-0.00042339440814459603,0.00016685616871257655,0.008743960172780445,-0.023737907394271274,0.11216897617909714,0.01202597249946412,5.16515787468108e-05,0.014812979492795258,-0.014705615980800234,0.040255548963552414,-0.045748173150492615,0.0034623863359908532,0.0037726832449218534,0.0014499854838431652,0.006158879835434781,-0.0027243848998286663,0.00011711229571264434,0.0010273876164027817,-0.03220580990841913,0.17294202115779492,0.03091192288621952,0.00013504996606359044,0.00011653293535487377,0.001819407963444531,0.01103584007821249,-0.1091192016520267,7.797823331981261e-05,0.007603347647071499,0.05756246851505903,0.270118293797102,0.0314172602224121,5.355904283702483e-05,0.015409960761134081,0.03810645848148075,0.06492854988344902,0.04794835188529967,0.00028614903065532314,0.022278323849290398,-0.02923555700867917,0.1128516919856799,0.10162829957120045,6.441954805903805e-05,0.01607300466673738,-0.012826338973180381,0.14498673190161301,-0.010128987000111698,2.2824734686000825e-05,0.01226489132682152,-0.001548238637574198,0.004527732479115524,-7.66931636966163e-05,0.0001195270242186493,0.008089714869665848,-0.009529884116814494,0.03911027687172352,0.006283127066233925,0.0003840826594790821,0.010087334037384325,0.027237796940351108,0.11576289471706758,-0.004031150724777681,0.0001347641560231108,0.008535606860283042,-0.002347530745560576 +2021-03-12,0.03687538424257181,0.27063669596122625,0.04621299984229247,0.0001440908673250391,0.012141454346308847,-0.05066660517381372,0.17751427529826785,0.06796232387236958,6.848556593540214e-05,0.004434464226356624,0.026883392993760115,0.10340459738419833,-0.024953583338152643,0.00012026560415991035,0.010969720917860883,-0.004858160614510967,0.0052088009007792615,0.0049850387717682,0.00031477625757844236,0.0007177373003565452,0.0664983786274174,0.14171981127351413,0.11056119576853032,0.00024551513140147057,0.00873828962332601,-0.018987412909941857,0.05110768265537841,0.01721411337485563,8.111970175340801e-05,0.005606137383311952,-0.03477677461633213,0.1199210801634611,0.018474737491028095,8.50909993547818e-05,0.03452111249375615,-0.003682041078199288,0.03228150423730881,-0.010292531139744402,3.9114112475870704e-05,0.009011247140219067,-0.0025016421986116624,0.0019365257669130816,-0.029486427634715647,0.0009962003748032004,0.012307980270240363,-0.030286924568572474,0.07732429733531278,-0.03601970490339325,0.0001369623125132749,0.0007023125422298787,-0.023407690575438084,0.01788018436822475,0.06070389298105189,0.0006398982663169842,0.00499252660267609,0.01803143794919378,0.23599364157315775,-0.004154480091951002,2.2769466200071374e-05,0.009745813147109726,0.01218611994616686,0.04312621831768376,-0.00018195405151139022,8.394118759148251e-05,0.004466193373487293,-0.010957396781380762,0.05417238302383213,0.013226877445393442,5.69365654814595e-05,0.009885622365022157,0.031385963852568574,0.025297083275994794,0.04377891035015096,0.0024198474721284845,0.02889040390618504,0.083325729162484,0.5650799263349119,0.08993406037707162,0.00012134485041674968,0.00036624736459170523,0.02001811600220457,0.12366458183843898,0.007868841552883138,0.0002506606146155812,0.007548314423081494,0.03606511054079181,0.21581341828629705,0.013530440737143119,4.7072772697091864e-05,0.009085089113419783,-0.0035049988134707743,0.015297955635773283,-0.015448652237041942,0.0003776080860092769,0.00990659738962133,0.05327225436874796,0.657417067756691,-0.004565225207432861,3.362717096378125e-05,0.016963456754228202,0.018709753477002815,0.20710894448179037,0.004062940133174254,3.0182201831744866e-05,0.006814792074550054,-0.02401832294210919,0.07480594397959889,-0.041030571626117535,0.0001034259045865343,0.00041688283723407475,-0.010754908631742076,0.05630643932278044,-0.016182146046915688,4.4120562100688136e-05,0.007146555276205301,-0.0016998940287978276,0.005068612391933281,-0.04858068974416302,7.435499514924301e-05,0.0011055458648342876,0.006297718646549254,0.026150727448165507,-0.007806163661650799,0.00011011540378941511,0.002462109582296719,0.010583959183766185,0.010763533015235952,0.01133955687339502,0.0005620421293380714,0.016477983151665022,-0.012102938734902114,0.04067740747686524,-0.03449177191887613,0.00012523438230672176,0.001600263128947584,-0.048235408282115866,0.15996796986645007,0.016459385220975228,0.0019353169501782233,0.03492356578432658,0.014801639319446445,0.11784687193407435,-0.0025780034198673966,3.229787528694183e-05,0.009039420053772257,-0.046859552254049315,0.11657964631110984,0.029205941562492177,0.001314155239630368,0.011030959424260833,-0.020525894111466023,0.13044497125207716,-0.009380688435094346,0.00010478530600269444,0.006362943625830447,0.0037442464475679286,0.005686135769649188,-0.03845520666833308,0.00015541487642301352,0.004169701316226101,-0.01431264746362072,0.02003878907418211,-0.016362886096915566,0.00040997031735609226,0.015178513806895125,0.015604412525177672,0.06967506567930135,-0.07517399410553266,0.0017358827097129536,0.012444431301978814,-0.013568869492860182,0.05957136273365502,-0.021635433583776176,7.307965708302038e-05,0.0009271015790890472,0.019712552653072847,0.024976849153734812,-0.05246231498159624,0.001961925026893002,0.007376109002941435,-0.0029640666450330934,0.008872264625761479,0.0020499538302929062,0.0001323638875752126,0.009863451969575915,-0.014177192887864615,0.03688310872707041,0.0020297146459965316,0.00015581996607284178,0.0059576354683648185,-0.009622409969191623,0.04286767362531601,-0.0015964470495056164,5.4785782102325196e-05,0.020230895539711545,-0.06084953843045534,0.22463762826148714,0.07612356053236399,0.002567395886615827,0.003031277983860351,-0.014083547950317776,0.07094895731285367,-0.003343114328884909,9.874307102270857e-05,0.014407169534199533,0.019516833507646596,0.10551587188801852,-0.00629444470019651,0.0001341381615595359,0.008203528816299606,0.024365157544486087,0.1334850870785852,0.04824284126966611,8.633465809831601e-05,0.004122966300099651,0.004267220122410071,0.02389673727656506,-0.009498075121281306,4.4880101689844375e-05,0.005635594237322386,-0.0036806664176030866,0.00737535647801424,0.0010908507787760957,0.00024331721481467622,0.020616694995332363,0.012218978174901191,0.05110576299856203,-0.006160674566819633,5.945376858466258e-05,0.012553036093960378,-0.011817227316545107,0.14193344265121968,-0.02188263047015693,2.1481378049521694e-05,0.004850079704280199,0.010137411645072033,0.03393149756011821,0.021059227028131646,0.00010443186141218822,0.010326077589424602,0.023905790035210955,0.08990700053674498,0.07944863127685918,0.00041911920595526946,0.009348472998169875,-0.057792592004225596,0.2592421923315886,0.09510043073604009,0.00012768453039701708,0.01623115623227745,0.0005525241978003276 +2021-03-15,0.011748489274867484,0.08649934439257582,-0.026343624173922876,0.0001436335163874433,0.004668618855722825,-0.046148311203813006,0.1459376759567048,0.053307229753710765,7.587503656356218e-05,0.0210070994330416,-0.005962778568723273,0.01947317377399903,-0.0001881037483108793,0.00014164757602321077,0.02338408408679812,0.0016682804807252767,0.0018931007371281283,-0.008132778363681849,0.00029741522736039325,0.0011406046402089509,0.009565074457279856,0.02236559686984272,-0.0055240070949744945,0.00022377194395013523,0.008513522326221365,0.01375874813671541,0.03555907793569279,0.032568496932428345,8.448413648832753e-05,0.0023316636574091686,-0.0015726165816588053,0.006502401055324379,-0.028833423383318697,7.096414152428789e-05,0.024131352777768983,-0.01025605724173975,0.089032532010709,0.0023101794117751117,3.9503022493607885e-05,0.009765798085448169,-0.02682968826124105,0.026405468094459747,0.02584202064300717,0.0007835496888340143,0.012529489160257342,-0.0004004919127243049,0.0009409236337088843,-0.11453351554055358,0.00014883369366485035,0.010439631000057131,-0.010182207486882951,0.007961030105751048,-0.008703630717920557,0.0006251684240077508,0.007235013565004155,-0.015455740990228334,0.19922102541086686,0.03219700760364789,2.3119447403661265e-05,0.007387866781313106,0.0437712958912577,0.10715446476520459,0.02477624736410612,0.00012134731491700705,0.0006789593436120238,0.00015961011395368503,0.0007028629066079224,-0.03277922578590142,6.392218354950395e-05,0.002998691172395452,0.005015184581184946,0.0042538645776592455,-0.010897792807595681,0.0022994619854062315,0.0156290979725432,0.03986883589182645,0.31741289370932485,0.011914678949225547,0.0001033620462741595,0.046109755900580494,0.016439005462172238,0.08706702386731147,-0.061464918409357666,0.0002923681583290707,0.00409369829128981,-0.04776052699518392,0.2649278210288416,0.04563501521415863,5.078114612981047e-05,0.02705117466046106,-0.07851117529172495,0.4198617620991978,0.07445677146212298,0.00030818533006832325,0.0024758734855466332,0.04805506233763327,0.7320575303744468,0.00966734460107375,2.7241070102145425e-05,0.01924091651738571,-0.002385036792485415,0.02144560057691804,-0.029342629556470705,3.715682346338316e-05,0.006847600898364432,-0.012056255961284268,0.036831662199372193,-0.20374686733053773,0.00010544206355329533,0.01071063854964075,-0.02226444372856391,0.16855184013144117,-0.03653627934270483,3.051200358639308e-05,0.007445356143102241,-0.00707161116032471,0.01910759691749992,-0.0015741157327517177,8.20520968088779e-05,0.003774535988558928,-0.0013512432487962737,0.005510424772750814,-0.003127111594687428,0.000112123605540254,0.009212141177551345,0.03359410047294759,0.0307269729230641,0.02831316510432393,0.0006249119079976952,0.005243248930129653,-0.029889121177068326,0.10870216489272627,0.046863707416549,0.00011573399943058739,0.01876234575977806,0.06671349027172578,0.21519317292450144,0.07372898637325058,0.001989776731885855,0.003962660683172847,-0.008721867958169672,0.07479776107733324,-0.010466409230959397,2.998493450089537e-05,0.002608971119048547,-0.01109092503175346,0.03063388274626458,-0.02958053386908457,0.0011836873156968063,0.027824953128813286,0.025111688102617713,0.159576397637733,-0.11756387417342937,0.00010479314997414889,0.0011096565562810693,-0.011052950802703413,0.014539635354213718,0.0026834055588056973,0.00017941969267194936,0.013993258964672763,-0.0011166579481660885,0.0014801127348227497,-0.016008686672621054,0.0004330412622806305,0.012427789685696947,-0.013604684888867853,0.04554006715627594,0.005274320111788496,0.0023155020059542654,0.007428412923287166,0.018235780668668117,0.06704627890292511,-0.046257480814595825,8.726499158756067e-05,0.012442828773353017,-0.027903398872254303,0.039979725088118666,-0.02261309642492802,0.0017349800910612914,0.008707733524845511,0.018978289023979918,0.05602333049436288,0.012303452207225639,0.0001342159622790455,0.004810936536733034,-0.018337393785826408,0.050795183923947246,-0.00010733277738800681,0.00014634417820935593,0.013721991027563265,-0.02246897221491724,0.10524395597597028,-0.08313624567795518,5.21074676974849e-05,0.010430202107750745,0.0030149706457287904,0.012238105575820097,-0.028964259740416883,0.0023350003533893233,0.015565055874530201,0.04099949077933973,0.19587442803418487,0.1234641001418883,0.00010412171004429865,0.016200368804371226,-0.0313871719374809,0.17928453836110875,0.05582096348280443,0.00012696094127227843,0.00978294092254567,0.011702545295961281,0.05865302528742894,-0.04047102009538108,9.43710119034665e-05,0.011991873671440745,0.002479824559884281,0.010540220060131944,-0.22612185818150105,5.91314697169409e-05,0.015351837416839651,0.038121024262873865,0.07517125894239955,0.04194214443308474,0.000247253319773464,0.0072572107322779154,-0.008192333894648894,0.03699574843500629,-0.009916291974932514,5.5064310153522365e-05,0.0050434903028014925,-0.01611044751780871,0.21272548752914908,0.0158739755660678,1.9539766170584344e-05,0.0015293348541356873,0.015817411486332235,0.05920989526702404,0.01048686118753493,9.337918615023813e-05,0.01535995313581454,0.027737926474270574,0.11380525989278184,0.05723587295659112,0.0003841843137502002,0.005919243665307426,-0.001080536392485216,0.005211676698389483,-0.009177767158430102,0.00011875002991098764,0.003982300114679068,0.0003110639951511592 +2021-03-16,0.0228476479184332,0.14370752434775347,-0.1700150867907232,0.0001681313010734727,0.006643889338612757,0.014148158927242267,0.046811950396010805,0.009317985982079497,7.251931948323506e-05,0.0019560468112171615,-0.014149336337500063,0.04228276680022298,-0.021109064285444085,0.0001547996151786104,0.033449424208331746,-0.003954392895498168,0.004729035405930939,8.108066622562541e-05,0.00028221176047780533,0.000447622752900972,0.003109576495304711,0.006508187214243438,-0.00365028859639086,0.0002499994077618324,0.007693782865680179,0.015509696923924716,0.039246433824741696,-0.08716652357197818,8.62878903295063e-05,0.00016873035547841034,-0.043336407039593614,0.17100732921875472,-0.005861088177962044,7.435805694592978e-05,0.03284801751961563,0.05432981926120071,0.42777273672135185,0.051710858318702584,4.3553571354808844e-05,0.0015794602457747788,-0.019708299038701114,0.017955010176488623,-0.07806757554526349,0.0008464635750536044,0.00986907662395109,0.03314747780608798,0.07424962113673932,0.054141188583052016,0.00015610547421415823,0.012758924998242825,0.011066098076930738,0.009476372110599192,0.0057520888943948375,0.0005707905407743344,0.0076394256011411334,0.0157600384810001,0.19609138158079265,0.02278823116490604,2.3950884508951355e-05,0.005307787630736396,-0.007460298021865205,0.0240250928116946,-0.011773880850753033,9.224485248349782e-05,0.03542273458659183,-0.024933910338126176,0.14003197846112045,0.09156362374463158,5.0121607001367345e-05,0.007513552148466747,0.01559177480415412,0.01279491768594217,-0.14132079530814526,0.0023767364675216117,0.019984660914210715,0.028317793156352005,0.22185443136158756,-0.0009932909397707473,0.00010503726505623719,0.028252677967159995,0.011557526793846432,0.06292256527911715,-0.008850946183954754,0.0002844243150358181,0.010799371278525694,0.013278333787158475,0.09409778930202194,-0.0882284562430695,3.9748900238623894e-05,0.027522562784212046,-0.0357918250332928,0.20727928539247387,-0.0021615036692127997,0.0002845867974680608,0.03999357071923263,0.01633560341775221,0.21284138022383536,-0.07624776359730139,3.184999336074694e-05,0.037917312304833105,-0.006505344715920115,0.08521967792258442,-0.021484680895894673,2.5504225239611994e-05,0.02043317477622999,-0.06373909537499338,0.19836594129773777,0.24003584038980377,0.000103505051017661,0.001600229087317789,0.0658097902268916,0.42243094812695087,-0.020440413233012156,3.59854679516832e-05,0.008451153186341088,-0.0028193744432246674,0.00810916032355787,-0.019477512784505772,7.708222712740206e-05,0.008680735311233274,0.01759301070005582,0.060330157676201146,0.09580235373155235,0.00013333811219189918,0.0065284586610789164,-0.0011190393392342141,0.0009383573867342192,-0.027683967065853923,0.0006816361871286931,0.004711100638924907,-0.016200986933377837,0.05996895521228016,0.010064113389663452,0.0001137106123421595,0.006307487092683736,0.016645564125064856,0.06253520884299814,0.004107923261683919,0.0017084138686124914,0.031881608720849185,-0.02575316158100136,0.20883678258088495,0.015433641124344219,3.171069454713435e-05,0.03068528720889993,0.00909869811749682,0.022707151043191546,-0.1017709221332229,0.0013100500165078618,0.011412709133031688,-0.005222410516221929,0.0373484440643288,-0.0014127265676147235,9.311596248640162e-05,6.732993724506485e-05,0.013341192469638323,0.020931525531612313,0.018346318296157807,0.0001504316275298964,0.0018916174924738143,-0.017734178406034515,0.023535146149143454,0.0011308088478462945,0.00043251192630427206,0.011144238679918261,0.009106975608329286,0.04062919171157152,-0.045596786926065544,0.0017373460536708827,0.032200046090601175,0.011390997594616432,0.04409679994875171,-0.06839138150926018,8.287910569328444e-05,0.013781825090984823,-0.011104135026493963,0.015399367022368188,0.000747019901728567,0.0017924995531346155,0.020457383408248486,0.016921387596212457,0.055199232410933094,0.0029747535916880984,0.00012145599923423215,0.021362812086649828,-0.012162115745546867,0.03165815090181667,-0.07999576601667976,0.00015573418823671626,0.00991342500197753,-0.023715035430742073,0.10397173655024275,0.00033179360675612715,5.56701517555989e-05,0.005599248602728422,-0.008555686476953412,0.0321056936934662,-0.00017967826531587432,0.0025257529067329526,0.004037856974472595,0.010598303611341722,0.056344997675147654,0.0024102028179669166,9.356675373817666e-05,0.005393713200183363,0.0021550725887471284,0.013208122524890191,-0.025640626719153327,0.00011832638549641195,0.009784799045135776,-0.05196446960320031,0.29242651701887795,0.19795761989738128,8.405014093494843e-05,0.0020004214991871105,0.02872005086236447,0.1350136376010393,-0.118567726990014,5.34632014316802e-05,0.013094497406136352,-0.007737437826037723,0.016466716232044848,-0.016049429568633894,0.0002290970858376999,0.005196547912256901,-0.006356739518974847,0.024293236595282725,-0.07646266556956119,6.506739376577097e-05,0.0061025207218766316,0.011042362213160066,0.12509251498393303,-0.013232509083314572,2.27751869309312e-05,0.0026695901109801564,0.0020507436824086923,0.006612792987084114,-8.683719761237176e-05,0.00010840153188203135,0.0002736399253327758,-0.01308307618060379,0.06344485266093478,0.005913329710892594,0.00032504347175091184,0.012685911632566167,-0.07359925704665751,0.3484286512859344,0.1267827860008641,0.00012098495477955891,0.013543996681851155,-6.42511516357294e-05 +2021-03-17,0.029063099061147717,0.1845988124129389,0.020830548774783585,0.00016649438952570298,0.012409223842885283,-0.056118987794697754,0.17549214513285583,0.06988748889618505,7.672955387755575e-05,0.013625593228681107,-0.008457297578870513,0.027215006068050083,-0.07565530466129922,0.00014375414665884856,0.03843756769466042,-0.009497972095237072,0.010485204300882902,0.0024465545496179368,0.00030571859050788534,0.004036550166846199,-0.016362106846805505,0.03200849063956723,0.026186992009852077,0.0002674679820814977,0.005798606631667527,-0.0142457632395655,0.03490704858646544,0.010855001898275313,8.910854072445901e-05,0.0011308996850433282,-0.004657958099805966,0.01631516931065793,-0.0023130818882358575,8.377102853787062e-05,0.020642480301921704,0.033670061846448315,0.2754759382618016,-0.01825553279788775,4.191397573899201e-05,0.0008850586313097627,0.002969546766008973,0.0023015363938031254,0.0035553840192063166,0.0009949863185965172,0.0001988552754669734,0.04060953222624594,0.10392586886992514,0.04177562108107248,0.00013663633652261783,0.011937721561198525,-0.007549406526044815,0.004423682335359595,-0.10373134418918896,0.0008341674470697814,0.008210238861433336,0.0021343946779169083,0.028581951341370992,-0.03850041163927937,2.2253874945297578e-05,0.009536930133379891,-0.0014686189312265057,0.0038296228507966493,-0.017155190586808127,0.00011392109591112363,0.0032044128680945323,-0.026713725626744997,0.1397867140120509,0.07066071272654992,5.3793572021679005e-05,0.00418330206078922,0.031339216622801376,0.022242651147602648,0.055534593816385924,0.0027480495452334728,0.005464628754669477,0.054253303078636336,0.3875750084001822,-0.00037121560418658687,0.00011519205522985853,0.017000653826045157,0.04804823462143316,0.27026559629287256,0.07639916955818749,0.00027529283114931404,0.007096663559649741,-0.03711453478852394,0.2133954501758245,0.03682021805049691,4.8991396782629314e-05,0.010628357623843673,-0.0075071355766501546,0.041363580239460955,-0.028911324602372647,0.0002991182727902805,0.0044423014964248015,-0.07852506210019497,1.1969654264438465,0.09672570854961496,2.7224312014565476e-05,0.0679184966232158,0.008425978890365931,0.10968325394873071,0.009991965832203775,2.5666210378818107e-05,0.002429626158455272,-0.011534816968786185,0.03082233123509102,-0.03365054647548312,0.00012055021246495542,0.0041407853838927285,0.051247996040271755,0.3729424332582921,0.04608166894025086,3.174150128345155e-05,0.015423577901679733,-0.005724574068066609,0.019334155319030412,-0.09088321255624596,6.564404856096991e-05,0.004105780472407795,-0.00251015843704671,0.008713406215577434,-0.021367889086712846,0.00013172304716949426,0.010874166260946304,-0.046434145052977244,0.0475847668163118,0.023080829235295343,0.0005577570515684234,0.01060785384562341,0.03649945978759308,0.1291391855913444,0.05279596517568675,0.00011896368340913132,0.002927207819907391,0.025296306388744947,0.07375301584185423,-0.017134244243713254,0.0022013875383919586,0.016565875136780074,-0.007038071276219205,0.06800334737387721,0.0024280241489971115,2.6613718885328982e-05,0.000705437651446734,0.06637176706124422,0.17069756915142037,0.07472469138601087,0.0012712393090201746,0.023452702895853862,0.009041228979297874,0.07364089886914306,-0.0917985966964265,8.175871004147643e-05,0.008074563293757695,0.0060164263180046505,0.00906024301699618,-0.0009683113637577455,0.00015672711598689831,0.010519263151595886,0.0098402034576749,0.014996857896550754,0.013870284611544957,0.00037662376065581365,0.016517402223910797,0.02312251859135549,0.08659310863547003,0.013026723056191531,0.002069674970874523,0.0071120922147773075,-0.005283558802273792,0.028240041216493678,0.00012135001537973146,6.0027684236042845e-05,0.0039044603963101668,-0.03946069614141996,0.05982680441793973,-0.05080261825684568,0.0016396310281070322,0.0014634795127931458,-0.001068647190835799,0.00347049375806293,-0.0220657145654738,0.00012199979961300317,0.008642057745536053,0.028799479051218976,0.06707919407930064,0.04613059226757028,0.00017404324494888745,0.009964950641140748,0.04404328951836758,0.15673116166201298,0.042633511934338335,6.858644939462099e-05,0.01083480129275351,0.0328863822855161,0.11240529679408116,0.04715711116059842,0.0027729841179784257,0.02612845347775791,0.025076256176880588,0.11198474766508619,-0.0192949349197737,0.00011138953548700261,0.011280463412755341,0.005526181195661152,0.02919772959542964,0.0046400297270549765,0.00013725773340608007,9.501753958962838e-05,-0.0035920078761300404,0.020379715977207682,0.0003908765362254179,8.336578650899067e-05,0.015937004287821677,-0.07944664826354655,0.3287437505584195,0.28800548695518713,6.073869672306731e-05,0.02172490257568922,0.0051064258634040075,0.007874577924581226,-0.09496533735392,0.00031616889409068086,0.016651664409474097,0.021980552559250632,0.09583922415679125,0.07566685967580537,5.703083002078571e-05,0.002592639769874222,0.004927530974531022,0.0527423771745087,-0.022419155094858208,2.410465656792037e-05,0.0011731140792211924,-0.012545512581602003,0.03703366381358881,-0.058029272731625385,0.00011841335743693723,0.0021551059131425564,0.0001812822417587004,0.0008014869954356077,-0.03514854318656944,0.00035652234460952485,0.009358050223353852,0.006655849220295511,0.03272932922816588,0.004306949230693763,0.00011647646089675204,0.0017205713985165862,0.004432980034688156 +2021-03-18,0.02647169503042568,0.17718273162308942,-0.022822139514249884,0.000157996309170943,0.01901216033847389,-0.012833742536052257,0.0427595859245718,-0.0005876543604464601,7.20162259347129e-05,0.016766121114688223,0.015685684672941617,0.07380136345530125,0.003940485885998381,9.831873889775313e-05,0.0020162594397986192,-0.005118787246552876,0.006098520060209632,-0.01649331140395103,0.000283276454956428,0.007612181929134241,-0.01083790892545817,0.024656216641370996,0.009783127549779962,0.00022999417249206902,0.009871753701717766,-0.010135334660358642,0.026821833383408697,-0.005031510237072654,8.25080594377959e-05,0.004304570340043324,-0.008500088340333264,0.02724282428364972,-0.009670544044495251,9.155059375981547e-05,0.00164276442306774,0.0033410507879659706,0.02823034689172878,-0.0015113218806193196,4.0584993170866704e-05,0.007038162058551579,-0.009116037849777762,0.00708470945016511,-0.02100365093635026,0.0009922677173619702,0.006838696634676709,0.021273069466052834,0.05183790085257847,0.021974746310701024,0.0001434976001333779,0.02860003171437609,-0.018328887634771276,0.013599798926895149,0.017785309566338635,0.0006587611509686575,0.01037353594938697,-0.010483544927445708,0.12485386532398653,-0.03362498537220665,2.502239975268819e-05,0.00430982642151497,0.045676494445843596,0.17552340881152698,0.039757357227000086,7.730520901125819e-05,0.002037289051212047,-0.0018845270801572274,0.009376622149134262,-0.019011409481008972,5.657411713492612e-05,0.0008931323581546269,-0.0053363794171623034,0.004363058710254538,-0.06811215669720458,0.0023854955787417764,0.00842086376922197,-0.010952873719866111,0.06978191259490157,-0.023116283056721632,0.00012916276095156426,0.03368326443631496,0.04777396521309157,0.28172091637084834,0.074941849001509,0.0002625913576169895,0.012275858707123697,0.0023509361413438195,0.012055783094576944,-0.0002548881759497847,5.4929590690247436e-05,0.012211913266174467,-0.016258717959817554,0.08162725386783581,-0.024753887762965287,0.0003282750822377775,0.01672912968934813,-0.006750379166331925,0.07960779900865614,0.0027735646280917592,3.518866430930518e-05,0.029196945707856903,0.016621024569729154,0.18287535036299662,0.03306236812021947,3.0365772178646082e-05,0.010074995742414996,0.011179569188034094,0.03396532480932644,0.014541710484508105,0.00010602592053650385,0.009426809244642826,-0.036309417213536865,0.23911953977220618,0.012554467544980599,3.507491184981206e-05,0.020154087185348613,0.008465099170846447,0.02063190974815185,0.02963575205779251,9.096409504221476e-05,0.0010583910008696007,0.006538489724883264,0.02797322067694777,0.0011066675709208852,0.00010687683141339237,0.001687679275482617,0.027728388616334778,0.027718618057702357,-0.08933358930287234,0.0005717795509295577,0.025546854904806224,0.021281589911525876,0.07535147794170405,0.018578941017852214,0.00011887712802480211,0.00023090424059363278,-0.05604860132208839,0.20495222383046816,0.04461588009461302,0.001755219030878091,0.010408127177227234,0.0031074320789642,0.026156508264094123,-0.021505423965328865,3.054949758325973e-05,0.0168873414686722,-0.05048174082476744,0.13492109335636132,0.04780582705486369,0.001223279620797354,0.013692040756017022,-0.02818106445277172,0.1680950586113731,0.06354023406521983,0.00011164212377934845,0.00318052651502773,-0.0027683036331439207,0.004037590047878821,-0.16559178646037795,0.00016182174785507586,0.005095573007423439,0.03630372758744603,0.05194979517338222,0.026249597915471684,0.0004011172082605785,0.0030262258057120925,0.005093001895662824,0.018126179597226268,-0.007677393409548085,0.002177799532515704,0.006672250104383876,-0.03978882397166688,0.1193804825293444,0.01920009740072341,0.00010693457395189619,0.0032200387147444587,0.03988456098041461,0.05179854098383742,0.04357331939440879,0.0019140993718536185,0.015469251571100262,0.0340385845958353,0.12315761818733856,0.055389418369584296,0.00010950305813480972,0.01204505875909851,-0.021743073365897193,0.04115779832691814,0.0072053949110446,0.00021415547042180305,0.005064853755009823,0.007191810265844857,0.03072341439695118,-0.01897345008570628,5.713242625190518e-05,0.020776864310927214,0.07411346149530115,0.23926737932303838,0.10385364114364207,0.0029358351288771745,0.009188642585004379,0.006504573233280636,0.03253165590434861,-0.0023372754997947154,9.9461088620444e-05,0.014601163766785552,0.0014298713967171141,0.00856346401013223,-0.005213516468744183,0.00012109000193355409,0.0034312882258496252,-0.014028328672386493,0.08826906078071435,0.0012738626537106429,7.51702726866784e-05,0.00445798025724115,0.025859474906517983,0.11648181332807067,0.0025019462900870084,5.579675908786353e-05,0.023214999457081255,0.005316198194698353,0.009409519561453354,-0.062326958308206844,0.00027546289552482164,0.012304624558489626,-0.0077571794861139975,0.03724466868224115,-0.0017655504477201032,5.179097666069761e-05,0.004113547752028991,0.01568369272419036,0.13719821817159517,-0.0862980115082759,2.9493827735744967e-05,0.006587730993739006,-0.0016031906535365777,0.0057618942308702,-0.026890921378919564,9.72587883930934e-05,0.005939729708272294,0.03194895095934031,0.11940549039739182,0.10110982147151594,0.00042175503601071975,0.006842819919335994,0.014988875479112535,0.08711407628678465,-0.005895242465103186,9.854906580311465e-05,0.0022485363527981195,0.0037708128326181655 +2021-03-19,0.01451785355617879,0.11434369926221914,0.005949656294353483,0.0001342693098879857,0.0041818625002193735,0.004710656889654892,0.018740320144101322,-0.045831036422050664,6.031356418016532e-05,0.004801866302403819,-0.03443798702455538,0.10524851076179359,0.021769793976520565,0.00015136274778767956,0.00884542825514019,0.008778598804316116,0.00753552483901571,0.01143269141995067,0.0003931692573036787,0.006958646955756793,-0.049701385350377394,0.1086551022354072,0.059953943547863625,0.00023934047121148454,0.01038332316603265,-0.0059230538813071125,0.01769925323693364,-0.0012129458594036364,7.306972621902853e-05,0.0020851868114568754,-0.0038853309679803476,0.012513884434498749,-0.047564531788703686,9.110154345065894e-05,0.017082745760222805,-0.023072652399038305,0.18279037811644702,0.0005722999948147285,4.328553668040179e-05,0.012560882657028814,-0.00617821073463064,0.004837504520658883,-0.010261966802414792,0.0009848863546811212,0.010640410221184341,0.05352585328270543,0.12529733519237515,0.11432802948964306,0.000149376971820843,0.013339097363831383,-0.011573066842026846,0.008271996185464854,0.008711499197296307,0.0006838525870751976,0.007060531998194189,-0.013590403753659327,0.1608944211627036,-0.03286336026011302,2.5171793657074424e-05,0.004033706461143624,-0.012460419277477385,0.03486032917791523,0.00834608298530941,0.00010618232001477672,0.007970084319829495,0.03437220501568366,0.19771939658622598,0.16481745311134358,4.893503862645472e-05,0.016783664637460557,-0.005211875979492868,0.005047150235679865,-0.010309393913746143,0.0020140526205439544,0.02852061138951477,-0.05673761838415011,0.3569648661077782,0.044814317739608485,0.00013079698598291193,0.04274906200598175,0.0059208886687673766,0.03306844994568706,-0.014113275108122785,0.00027725621413819955,0.008600318213818898,0.029894403710322842,0.1854967019732562,-0.01849938386274948,4.5395693871224e-05,0.01660924637428181,-0.022700651536486795,0.1443610791386048,0.0053621013418309275,0.0002591642001516999,0.004248665849075616,0.03795170701083252,0.5164370909441962,0.006190862961158411,3.0496087127606593e-05,0.012832805164531889,-0.00943512725047192,0.09588904010629618,0.00610097980160028,3.287460170008882e-05,0.004176310960119054,0.012498219561103302,0.03843217623979601,0.020596014548980426,0.00010475528152608339,0.013630143588054361,-0.011013529844186631,0.07023162198202489,-0.01993439231321888,3.622314969315705e-05,0.026616275076044263,0.026957441823925378,0.07611881214950406,0.17363298688834372,7.851706489382162e-05,0.0007288899220924999,-0.0028415613266681216,0.011012027727140642,0.005290350299894188,0.00011798813401713846,0.0014337991178545789,-0.024006824789276297,0.021923765362753134,-0.040123628633971405,0.000625885858131076,0.010526383542852883,0.003665407059838187,0.013814863666458075,-0.09812534747151752,0.0001116764545386846,0.0007471895880725875,0.034023662931394756,0.11191799751749898,-0.015087364278806182,0.001951193366963939,0.027970114649583752,0.007830788049792337,0.06725467232273477,-0.004608058011806398,2.994092432662708e-05,0.00884899617379705,0.026054595232059663,0.09082010975048894,0.012569227574647414,0.0009379368048735708,0.006430871910723324,0.006328373864021147,0.042443988405091296,-0.00043886787984999696,9.928910232925097e-05,0.005738157487794447,-0.020688969681736783,0.027859755335380022,0.017736057476084883,0.00017526974359814834,0.006048314695731301,0.04019924890341019,0.056778595674518685,0.04741498534788415,0.00040638456609114947,0.015883501631146508,-0.045934479756946374,0.15399688266330427,0.07690111083915616,0.0023119434849132666,0.0004214927115111177,-0.05750518555817343,0.25034344718194745,0.09504128559165012,7.369892472309376e-05,0.0008160975385468904,-0.00015043518409345362,0.00022623192159248234,-0.03677119168255345,0.0016529995268349015,0.021776899747084716,0.014301857667851659,0.04903076916491807,0.011775188966909008,0.00011556858127305263,0.014120249141603015,-0.018992313069371162,0.0494580773759265,-0.05205467565580353,0.00015566859547852248,0.009279679160176649,0.06087817456492947,0.25841985539585977,0.04256029302814224,5.749759341773932e-05,0.009544417158323703,0.053586053880593905,0.16237830242215368,0.07052803040753125,0.003127820614393085,0.014821363042635679,0.02825359157835683,0.10932893714884058,-0.04073921869438455,0.00012855207985217523,0.015689000928319884,0.01380767096017623,0.06855082605939315,-0.009478786152684963,0.00014607251978627077,0.013807375156835675,-0.0018373763892517245,0.01062814258568231,-0.02958679057101049,8.176914521190185e-05,0.012500228292618092,0.009447933190501244,0.045205585971826744,0.0003167171207740873,5.252814997622059e-05,0.007555195924539057,-0.009414686881509659,0.015510872381137924,-0.03715959729159893,0.00029593685222969627,0.00700589221076219,0.002049870976070974,0.008246864747565669,-0.0035887475419583864,6.180904454518924e-05,0.0007682120203668335,-0.00631036022970125,0.06826031547192211,0.0021509069900078177,2.38515796118809e-05,0.0020193622954948107,-0.004825966676387369,0.01832486135375545,-0.10278703681970848,9.205610296600061e-05,0.00268889210022517,0.011295162674650928,0.046263601883418604,0.0088999863259039,0.000384840720404394,0.00029588321405661514,0.02044759601037204,0.09866803447150599,0.007969331533740787,0.00011869640764120336,0.006706114079201785,0.002652072067068907 +2021-03-22,0.014152934148189328,0.10047143027434781,-0.0003841234458413024,0.00014896714179321114,0.0033799262282223396,0.012017086801371563,0.0365967865277762,-0.0013008965773989099,7.878921472623821e-05,0.011461682184927964,0.03444527528765695,0.10462601551043366,0.01919805612324443,0.00015229553755673013,0.015116529861512764,-0.023205722279328437,0.023306495450744313,0.06471318328021647,0.000336036128280479,0.005127588499881312,0.01945670676852439,0.044794685011535364,-0.035049830274351025,0.00022726921870578533,0.007723466504722516,-0.0003072919841578369,0.0007890951583115175,-0.0355925461836661,8.502929784981597e-05,0.008029341536080394,0.01273421017274397,0.045408194978533274,-0.002072280797074381,8.228631805742106e-05,0.01176878687587519,-0.048358107217830675,0.4810712054477814,-0.0015831063416612136,3.4471370110279923e-05,0.009956964172800916,-0.0013847662932730547,0.0011315130613141543,-0.18686010139191692,0.0009437602880063443,0.0037190837240711457,0.00604373960795293,0.012510463585447756,-0.02305423296191074,0.00016892511681983766,0.01184047162043121,-0.015996329454997012,0.013017614593635384,0.018285454380345356,0.0006006386695327226,0.01906896417017278,-0.01986422868361979,0.27015551110551783,0.11039828505209874,2.191193163614936e-05,0.004747222883022964,-0.017288838314200757,0.04428561952503775,0.016031004914199065,0.00011597226149223725,0.025815901841353343,0.0011095119658856593,0.005556023227874791,-0.006641052633325725,5.6212092986527566e-05,0.002130707837872543,-0.026344764598870186,0.024172585665750347,0.01847296125483559,0.0021256618926536776,0.014697462583178885,-0.027054403170227947,0.14750968547218707,0.010938016781509569,0.0001509278996953813,0.024381619267508717,0.05648656637710338,0.3625692584173713,-0.06715953160065605,0.00024124728245948925,0.010949899700387166,-0.05873246061243653,0.3888537855246766,0.05270264214299646,4.2545420549899355e-05,0.006679294757576128,-0.046829753942821066,0.26643840243320727,-0.03978186206495017,0.00028967556477212694,0.005905719905404177,0.037317436743130504,0.5027939449682282,0.007155943049586666,3.0800090858522444e-05,0.008609206336214406,0.0031509456514110332,0.036797768614694734,-0.0017409902982077382,2.86088985204056e-05,0.004899728091152897,-0.016078462123145256,0.04505343705060512,-0.04601510462600963,0.00011495803574620532,0.017370378948128734,-0.07571534805790726,0.6200497156128976,0.06254340680625942,2.8206538087565645e-05,0.0071118000684456395,-0.0046650821851205344,0.012272413062280847,0.0014526977416488573,8.427654388221939e-05,0.005150187940589396,0.0029088108367443847,0.012680010560003107,-0.020670329243717776,0.00010489250565266211,0.004820402246295088,-0.03256675517980569,0.03126634460411629,-0.015395409798200687,0.0005953507986661988,0.007514098778661996,0.024372451093115897,0.08488961060583743,0.013090850627568384,0.00012084555349896765,0.019936667788654775,0.005300124392592105,0.01579985802595702,-0.00047378003226784636,0.0021530397734948526,0.023336288646663712,-0.017367796311600625,0.15566147904623567,0.0033273401386498406,2.8691004905568268e-05,0.0071857465986826154,0.037890350794838136,0.1228652670964279,0.023724752157791046,0.001008255887672117,0.02616198931168392,-0.016064679428850436,0.10900325176762199,0.019651696867332633,9.814275677798984e-05,0.003200282017665543,-0.046751157908073715,0.06800303884958163,0.0581487508569708,0.0001622592400317052,0.010569642861223316,-0.012390231070365817,0.016595825621127366,-0.0054196902741285875,0.00042853318303234084,0.015354996216989398,0.01502080188109397,0.061685595487033514,-0.04553446722038064,0.0018873815162481751,0.03144267632654375,0.006504189392247201,0.026193601127921316,-0.018204706225594842,7.966881166861994e-05,0.010356586806448475,0.004441895154979627,0.007471662723949037,-0.03453234162653648,0.001477842785778663,0.006797379937994952,-0.002065829840525887,0.007298604555169195,-0.06384333456713381,0.00011214263310791734,0.0001612057577885824,-0.01868731480541396,0.06078261217111256,-0.016099799681663588,0.00012463152744328373,0.011402511054655215,-0.006671407785742557,0.028690586519046327,-0.050618431091904365,5.6753413252371014e-05,0.015352392193568295,-0.05622306976173357,0.19669114952460007,0.0223330840046266,0.002709241963121867,0.014048373351867437,-0.012191789290099297,0.04951752289093976,-0.016807481683095638,0.00012247546806181046,0.01219797877988649,0.00983447199882062,0.05174654624684162,-0.0501476482128856,0.00013782578154020525,0.013177161080365141,0.019721307443243942,0.12168473724581631,0.03133332797725538,7.665637774059554e-05,0.00941414817235038,0.02759008056501033,0.1275841764270327,0.004349590317826364,5.435050065800415e-05,0.004185562377769543,-0.007532963921784259,0.011848482758471062,0.0023680162155042483,0.0003099791910804789,0.004670442126155067,0.0012621505108449701,0.0057672506538422015,-0.012483613467246213,5.4419769298112425e-05,0.015684829004007413,0.033142528627660546,0.2805753196622298,0.0765562805702145,3.047666625393025e-05,0.019124753446002223,-0.01053809030744912,0.034867584881287474,-0.16757442270262293,0.00010564501612068299,0.007148428314683581,-0.0354482584429998,0.13883710002606464,0.06442174605307632,0.0004024550122462798,0.0038134065667468683,0.06255048787888086,0.279451580962185,0.10950350149346574,0.00012820233242247746,0.014573625766356263,-0.0035290328547640383 +2021-03-23,0.012330055506320456,0.09141768703101866,0.0013902416641398423,0.00014263344987829786,0.010066898763117412,-0.004043254623967971,0.013740236696440127,-0.0017397173212729052,7.060694228898701e-05,0.0037166924035032774,-0.0022393259105310003,0.007694204756590141,-0.000740307103321265,0.00013463276657809073,0.02289594168497116,0.04159399598663946,0.04407003862742978,0.1995003389573219,0.0003185334685495568,0.0073058631424938745,-0.030686253574999302,0.07007440937241816,0.04138787297230164,0.00022913012700897663,0.011156874172458853,0.003829273144004009,0.009647664936339555,0.008225727894754082,8.666442775542826e-05,0.004730285143450991,0.019718885153110512,0.07021572161684303,0.02714880252613069,8.240201832473791e-05,0.021136693140501248,0.016808533660321735,0.1399064361822359,-0.029791642828720096,4.1199386468895165e-05,0.013484978648729534,0.039730169844813056,0.034045091496422736,0.18829165789239766,0.0008999340882420764,0.0009612757937948344,0.031221347708668457,0.08331801160197619,0.03361536608719418,0.00013103117499915098,0.0066029915591829,0.007415598789561504,0.006329909505969183,0.008302706992950649,0.0005726286616378533,0.00021370028240987916,0.007335378263290404,0.08988534851262835,-0.0024915232196306395,2.431959827754563e-05,0.005107387568937932,-0.004706087840799991,0.014416187400874034,-0.011280602664779862,9.697519193285279e-05,0.002104239720101886,-0.005306607606656441,0.029787129435729028,-0.010011262262353549,5.014759860167578e-05,0.012142597661850775,0.020409728897068036,0.018869734615263867,0.001973635940674166,0.0021095723099317735,0.0011981151080106705,0.053462716471151174,0.3518412283410359,0.02567559364151389,0.00012504214103434608,0.017315662951453963,0.05163076248231865,0.3079314128682825,0.06720653508412061,0.00025963472442320097,0.014635892532038852,-0.014835244436649107,0.07966339572984095,0.00421752234319296,5.2456202569756054e-05,0.016722301900371415,-0.0010459639047587907,0.005222220303128607,-0.008117725719420035,0.0003301021220926805,0.003992198824244978,-0.006533438829161629,0.07971718985547646,-0.04174737419188656,3.401105312642845e-05,0.04185412341545008,0.004412780796586454,0.03638010865728903,-0.0201575511767376,4.052565769409568e-05,0.008586833712971313,-0.001946691528287732,0.006119549866681232,-0.004423043472809708,0.00010247086838119199,0.018299142330057094,-0.03724669959734508,0.2631491303329553,0.003382975139804055,3.2694765990049414e-05,0.003156521257376167,0.009538058748567392,0.0288559988546562,0.01010998040864857,7.32826664862443e-05,0.0022397651491198167,0.005722938325659383,0.022756841663177155,-0.020111049994686197,0.00011498883486874607,0.004868531194608027,0.0774147919416374,0.0692376154312054,0.11501942952727576,0.0006390832132397579,0.039939999686144076,-0.007625312715018425,0.02548313423963047,0.003614527912911955,0.0001259478696269437,0.00911887071953089,0.03921300086928546,0.146282217009217,0.015758154286869965,0.0017205120551293048,0.0017901976396590678,-0.0512378498022798,0.5089076843012069,-0.12245689045940794,2.589012116755585e-05,0.008670009046067132,-0.03981476339011329,0.11561360443544935,0.0037374273275154455,0.0011259172364736125,0.03297212375801233,-0.006116708970684771,0.04041144114123044,-0.07770867283246057,0.00010079503090655245,0.01532076271026636,-0.017010904682384302,0.02053964200668236,-0.08521920388581927,0.00019546991653893983,0.006900070063141271,-0.025902112950736706,0.03503906676479822,-0.0042068221640490285,0.00042431323282074695,0.012331967322721762,-0.024379025428308394,0.09823503641730522,0.019224822978662105,0.0019235357885304355,0.021584179724326785,0.021248078622640824,0.07874417449250046,0.008805040415800125,8.657482066740136e-05,0.0004285291694506666,-0.03062089279590621,0.038306794181328846,-0.07485530807586233,0.001987097754379775,0.01873143827497274,0.002931830398245439,0.008911699336820636,-0.032180952082762594,0.00013034499331139653,0.0028368386756721393,0.026013725508448483,0.07578659738207083,0.00663102995265344,0.00013914593410473087,5.644509456076028e-05,0.009948271552417334,0.0379198991278172,-0.005171286788043185,6.403160429597934e-05,0.0031626175343963257,-0.0714215074593064,0.23055543815081392,0.06848501400740528,0.0029361057928851317,0.032124431829655166,-0.03570625411078519,0.21757504636349134,0.09403539197144535,8.163488351127187e-05,0.009114437271375796,0.021909342247892368,0.13288930774048904,0.019432414003578157,0.00011956390337392114,0.010306289151032908,-0.0052665084177268544,0.03634434745449149,-0.0544059412819303,6.853850161837641e-05,4.543626347933659e-05,-0.03237474498006518,0.15096483987515355,0.026097335095479037,5.389865654870286e-05,0.011497609710988944,0.02714017242985932,0.046439963411575726,0.02654679420592025,0.0002849378399655224,0.001744186448352209,0.018230701585484545,0.08435301236442386,0.04643360621788463,5.3742412948779536e-05,0.0025549472116308983,-0.018820796108907537,0.21018337827753075,-0.019923795854698646,2.3103134538411277e-05,0.00835880738570293,0.006765885533504194,0.02320166317116258,0.010251243655870091,0.00010193292648069788,0.0027324555375020107,-0.0007966004909780537,0.0031085728863042023,-0.005337887189933423,0.0004039312802115643,0.01012479629957001,-0.033196849959575156,0.17305815532864208,0.011649021369340018,0.000109869361694456,0.004788374598106304,0.001892148060445875 +2021-03-24,-0.02512989701613466,0.15851959013668343,0.05912678210828314,0.00016764644634396255,0.008440029411719249,-0.01049865406717523,0.03268138699193037,-0.050223105367471994,7.708034908109201e-05,0.01799330995277711,-0.028147084902124943,0.08501076836809394,0.015587639271341642,0.00015316399516343294,0.00660487730410733,0.000622217082810329,0.0005496884725351085,-0.003537325620423898,0.0003820262075597938,0.004626225498645434,0.02219406497961261,0.04920428568690478,-0.004923939583536707,0.00023601070061187652,0.00766271029145522,0.0067872559348346245,0.018594464313597486,-0.03362700826084728,7.969981153708185e-05,0.01142159349168364,-0.022751627044181485,0.07330088091567212,0.006317337176703541,9.107372944920823e-05,0.005539575984153453,0.03004273662774508,0.2550949728135435,0.004949007948469186,4.038649881971879e-05,0.0020555506667670033,-0.008836212937257995,0.006578892692238676,-0.0565672501719629,0.0010357576675050185,0.006861061577501119,-0.015399902904999251,0.03696219953140318,-0.013594302629800856,0.000145687423196576,0.00921600566623823,0.021058823787594817,0.014219560596308634,0.03876930146910781,0.0007238895254767223,0.00011798527219266611,0.023606000999717342,0.30015945317616477,0.04685358985153508,2.3436523221720165e-05,0.006349354663615224,0.059989449148246256,0.16833259411293322,0.06750148468682882,0.00010586629045022753,0.0051622988810251765,0.0052711256183391305,0.026376625439012518,-0.0013662230396953804,5.625303416800874e-05,0.0033528985227154495,-0.037786239772548635,0.02779868410298316,0.03938064800348794,0.0026511384613477312,0.015169612856406972,-0.04595753933748238,0.3047576572750888,0.01964111187691108,0.0001240949901640515,0.03742333333777093,0.0058955574846956665,0.03364397908305686,0.002862817892809938,0.00027134745706617583,0.026633519992847327,-0.03229329995056723,0.21609791566476652,-0.05853417399241155,4.209425275667305e-05,0.003998477192221946,0.04840027701989998,0.22560010441539308,0.03128056877263398,0.00035358624212654627,0.015421933818043295,-0.07280715339321867,0.9452601734486401,0.06824412413365137,3.196339652091763e-05,0.020480846526049645,0.013647181345599326,0.14111629515090682,0.004763311352282057,3.2310784713018374e-05,0.0033804805840904513,0.013543069945114753,0.03663308907693791,0.02213406825902405,0.00011908754306160986,0.0035693844379522783,-0.040641086333818015,0.3207129682021006,-0.014480978568911711,2.927124285712572e-05,0.04239959000170888,-0.008225422397364672,0.027362644096461143,0.007893521435292167,6.664652808847784e-05,0.0004278044578587372,0.009996525136100613,0.040982826229590076,0.019074513125331947,0.00011153104036766658,0.003791178170205577,-0.06391581453649835,0.06684870491713618,0.038707646112606055,0.0005465009123776166,0.0003109177910569517,0.009719297842881527,0.03680262331859308,-0.0020124512658883866,0.00011115835816481556,0.0004707940635381314,0.02934001503723521,0.09653371803865084,-0.030802284496182445,0.0019507448687911507,0.03663379787844515,0.006014768563498998,0.056043125432081,-0.11128806893061374,2.7598073650919133e-05,0.004268749381549165,0.01045630789315209,0.03100354628872547,-0.0004686483381965049,0.0011026514677785885,0.01910821961625439,-0.0062179465848677855,0.04892014856448639,-0.06422607833574208,8.464179461452281e-05,0.0051037185140894135,-0.008967359851550546,0.011527845105779125,-0.0002411714374202697,0.00018359542370003783,0.004407143460402093,-0.008826320888745987,0.01267448243954332,-0.0016161051400545125,0.0003997177115584909,0.005474060821369692,-0.01394792800135677,0.05192547575451291,-0.00811111095891369,0.0020819943840668016,0.003725268436796585,0.007991513872000483,0.03397864309389487,-0.011771102114880815,7.545940845624236e-05,0.015101049725265235,-0.03785494750868449,0.055711708868709485,0.030828611589486885,0.0016890922145377549,0.015680193293234047,0.027071189511983507,0.0893627975197123,0.01422922794740421,0.00012002359192095728,0.00795745679487509,-0.044814717110650756,0.11420898876338276,0.06084741157008138,0.00015906724131545393,0.016575279432111394,-0.009367739358923006,0.047305636762410314,-0.06294045840991322,4.8332118437564597e-05,0.019366633459229204,-0.02661372733655049,0.08258984436872896,-0.013432232926316835,0.0030541974719794822,9.136564459900253e-05,-0.01410463307840799,0.08389872220816207,-0.036772332404305684,8.362709620777519e-05,0.0008445358380186789,0.021320034717633836,0.12119601923343962,-0.04861826317840017,0.0001275734606273507,0.0071735344359991175,0.04270599781006201,0.2363810410835153,0.06493962717764283,8.545253111828774e-05,0.006463766955259782,-0.02511795406991289,0.11640203742430699,0.01666212764264294,5.423392983073199e-05,0.005585920852679246,-0.03778542911270799,0.07158212396603347,0.054931623407398954,0.0002573648144740751,0.000963509174475206,-0.00586664566222601,0.0231001213814932,0.004590155885522783,6.315241633047457e-05,0.015658212582806263,-0.01192159104352587,0.1273231247214328,0.005586508770095468,2.415784646881111e-05,0.006765649131616997,0.004895396574588319,0.01329115401357852,-0.011196479543864286,0.0001287461211930704,0.003135056957675319,-0.021759076419445283,0.09234983698054577,0.01138861478978327,0.00037139178679216977,0.0016699239185473504,-0.03377266594535976,0.18377769827275822,0.01575750465977303,0.0001052553870037799,0.02211573637906367,-0.006334097042569184 +2021-03-25,0.016524615265942216,0.10107068496203052,0.007188199307556072,0.00017289909966638833,0.003933899278350193,0.02437545761885107,0.07663565180246665,0.01229792300168953,7.631896092269045e-05,0.008432211643251315,0.032549021841835744,0.10191316071708471,-0.002062613737579462,0.0001477423066801531,0.01716949226108259,0.018791182420309638,0.022463175350486385,0.022423316539680518,0.000282325962642175,0.006126919028724124,-0.0008566735737497046,0.0016291973881252988,-0.03408998167221029,0.0002751309434069943,0.0025479910137854314,0.0064525779446442805,0.017866569025042262,-0.11425841793380012,7.885674337831101e-05,0.0009771043506549796,0.02761250758477301,0.11914966840056346,-0.005048247374612972,6.799905313787631e-05,0.023327738722017516,0.009377069113303818,0.08181352324996422,-0.0011969237714914004,3.930435156450056e-05,0.004776006412551629,0.023398664112699304,0.02117407140580569,0.03654762136922202,0.0008521802728424657,0.004498558768306115,-0.042727787435057854,0.0882426295535141,0.04558054004508808,0.00016931438192613782,0.010993699880299374,-0.0031050773187308025,0.0026033468170966645,-0.0291897344790169,0.0005829948906162237,0.0022449675381701257,-0.00540921059037187,0.054798201342729926,0.00328755842094725,2.941645777334762e-05,0.002544840107895535,0.02707646842365546,0.06950447045660346,-0.004487361033876444,0.00011572583360072558,0.001310631918783737,0.007195599206404542,0.03404938859137755,-0.011085895039009343,5.948664361718136e-05,0.00790025205339171,0.004551041584842154,0.004056733912038492,-0.02743308955563528,0.002188050059884118,0.01722638159027944,-0.005335480251230864,0.03861418700374467,0.0006313148396387289,0.00011370478177684767,0.0265790008606513,-0.021704349984945366,0.1131589140809325,-0.05256772134108072,0.00029700669878008614,0.009486839468484814,0.005883722137298518,0.040243727171449195,-0.005924200543119118,4.1182709329876025e-05,0.017124382123384334,0.04764909808181713,0.22232335470277695,0.026157778023820896,0.00035322904326275193,6.793193979205171e-05,0.036269653879539614,0.48049891905880904,0.005247199933839362,3.1324289378904445e-05,0.012055036779308258,0.0011200830651144,0.011957803205625098,-0.05486850197266894,3.129540227049495e-05,0.003246144732836567,0.02653478192543347,0.07976532416087023,0.052662274681340625,0.00010715788767450277,0.008702788845579618,0.01282208425816887,0.09852104248818236,0.002801125629085492,3.0062286120129035e-05,0.017554052352302826,-0.050939962712297324,0.14892925124599377,0.27982766508830154,7.58326091649426e-05,0.001427334141219259,-0.010545621262117952,0.040485890035269444,0.042758097767499344,0.00011910145699900587,0.002330764636138058,-0.042477661325130894,0.038818341179468065,0.02214822497732707,0.0006254594902509865,0.015600335465912189,0.012834514695908098,0.044021878075504756,-0.025191500138728246,0.00012271478591020134,0.0006565621994970663,0.06195660720295186,0.22648440613746315,-0.04928883657270927,0.001755773527381473,0.0038458142022927497,-0.05550086538343102,0.49437915282257916,0.13942933118990622,2.8868339303439958e-05,0.011770475390009113,0.039982218074056254,0.12226267042608212,0.020937836001112816,0.0010691638743149897,0.005992766529284921,-0.016947371203848795,0.14502294744595934,0.01841584888626293,7.782000561702907e-05,0.0042135993051285745,0.015863867333432476,0.02142760400000594,0.03707855989743293,0.000174735378039753,0.006890745747895187,0.008031806307804867,0.009623099298681563,0.006669102488325906,0.00047907352731047664,0.01451321274166261,0.010842598735168636,0.04189455692690914,-0.018951504738968932,0.0020059778122665808,0.011513855719931737,-0.025237168736157143,0.09080776017321622,0.01709761054783189,8.916779723837374e-05,0.015980497459596395,0.043223702530087546,0.05171181045934387,0.02990376402653424,0.0020778271397744364,0.004723209440681219,0.05263403102292809,0.17597902631730158,0.10045791283854133,0.0001185009298511669,0.0030519697841729565,-0.014524666172803333,0.0352556285934168,-0.01667999257226863,0.00016700830692077022,0.0017226190140471973,-0.014443411776504921,0.05309302534880428,-0.011484795323860968,6.639666179211063e-05,0.000983212767118824,-0.0051904640823572015,0.016945913737895838,7.053617577295202e-07,0.002903081690552701,0.013967434908261822,0.024276451891550543,0.10974207425211394,0.022568644235997484,0.00011004051623223357,0.018782779052752777,0.008120063030241893,0.049469665365796694,-0.007559551832871089,0.00011903679141786839,0.00737870803771595,0.021857958412684366,0.12632511450674652,0.03205639287297638,8.184056020393087e-05,0.00029675099518982435,-0.014667843726196955,0.06496253356749607,-0.027894087241018748,5.674802023466591e-05,0.016242212622448376,0.030244453277090674,0.05348725638650355,0.04305125283404196,0.0002756924106555015,0.034642271410890095,0.012907250061119565,0.05631179007396211,0.01892504378071027,5.69965759977807e-05,0.005655731422201535,0.03626471761346017,0.31901805430582497,0.10659208804603489,2.932920719160029e-05,0.004419538317634781,0.011454072312544144,0.0422073541623438,0.032796806982482794,9.4859483711644e-05,0.004411055332937068,-0.002527421659791521,0.011434971996895507,-0.01003559731261702,0.00034839392099935475,0.0018023058915093613,-0.03081993174056004,0.16899196401311475,0.002452889606875076,0.00010445696787053603,0.010009633925558065,0.007126506848979985 +2021-03-26,-0.031117850194600893,0.1926606906420425,0.06195136685851692,0.0001708059742430494,0.0037208754098494072,0.008258039903854689,0.030054943640283882,-0.044218439218136556,6.592825573874342e-05,0.011105905534525853,-0.046128806225767933,0.16470543026943169,0.04649948908312283,0.00012955718470645137,0.009492917565287105,-0.009980762927700152,0.010618913010174523,-0.010948376106048948,0.00031721340605801447,0.009943593200920729,0.003313116950697671,0.006817371827828531,-0.011310814157754746,0.00025428313502065666,0.0009955737489314204,0.022434820405040346,0.047122837917210815,0.1142240711249501,0.0001039532088226194,0.003334728186828421,-0.007077375370308942,0.02173067342537938,-0.024010280453630645,9.556280754059858e-05,0.016328720479040236,-0.04065365515832203,0.36185038299971967,0.08854668037932611,3.852735342087468e-05,0.005712333300647458,0.022147909237040634,0.018285027377606414,0.04306032672295724,0.0009340753402621253,0.0006598952333050129,-0.00811485698861857,0.017412302360166484,-0.0025299864803703027,0.0001629620791283849,0.024893730833281655,0.018068305921637853,0.01161808214683881,0.0028044130741650807,0.0007601640913519646,0.0028374469080923548,-0.009660163321292284,0.11676054963032935,0.029330961161556507,2.465534748309073e-05,0.005771794313164314,0.018777834768121605,0.04913679112641066,0.0007276891558495529,0.00011352454229595718,0.02093490661940453,-0.0020552514475024927,0.009979808298574989,-0.011516626673786974,5.7970171079071424e-05,0.014538453122149478,0.012308400621423575,0.01156364803585478,-0.19127708341503055,0.00207601138810759,0.014573985589421412,0.0019038654772333197,0.011407912535688368,-0.01949193703993356,0.00013733530105190935,0.02402296794024992,-0.01255650378640701,0.06370096159068674,0.030221981291699,0.0003052326418747575,0.010000511229594677,-0.03819458716646766,0.2752476660974117,0.0016942370937936286,3.9087611316903674e-05,0.00498325425489508,0.03829174101769445,0.20522182325790278,0.012087379983563538,0.0003075164685586712,0.027222631386660534,-0.03357383228180581,0.4724717351604201,0.016141712022425283,2.9488678810516247e-05,0.006886676746754604,-0.019558395437907064,0.18582750253559172,0.02814647515888244,3.516454007172857e-05,0.0010815695610659386,-0.006630271781938294,0.01637799469274406,-0.0010802996101215644,0.00013040473494069818,0.02453307915302425,0.02342461723920197,0.14305665644275156,-0.04483469310586303,3.7823072822973184e-05,0.031355590482303373,0.0027014180696377163,0.007644164412005314,0.00255358697064374,7.83500293422863e-05,0.001683227004599555,0.0020542391392894344,0.007271685021821898,-0.014218525463450466,0.00012917085561329016,0.00848577608477876,0.013048390071416376,0.01240521693607986,0.007333488622809477,0.0006012126765700413,0.0486519326222088,0.033015519314765686,0.09811688538620181,0.03352720037151404,0.00014163167403575974,0.010145690636896486,-0.00708498030888175,0.027120109189769905,-0.009729603355740976,0.0016767425620909664,6.256168412825756e-05,-0.011164776718658745,0.1059577564539625,-0.004991735236620585,2.7095644363377462e-05,0.005288542293050367,0.047528302872526546,0.13915963439403578,0.020534962465502616,0.0011166325863865754,0.02608961113589285,0.011107528749519232,0.0841844530525878,-0.022130938863859913,8.786404532208393e-05,0.004344358177091906,0.003863859206284577,0.005150515146888283,-0.07449846311241463,0.00017705818602055298,0.0031951203082119877,-0.005609462137009644,0.007549989716960292,-0.012016617123288869,0.00042646046354347734,0.03405966945521093,0.023415258471617996,0.08804878699858941,-0.08386694854674719,0.0020612274620919425,0.0033984726812457465,0.005577293665665877,0.020076475558166613,-0.0814220254248653,8.91305134488658e-05,0.0011007379690051327,0.03592638049475351,0.051838054557520837,0.018871668729533532,0.0017228281630413316,0.008902656006834223,-0.008687594659172336,0.027689493030567867,-0.09798748409550823,0.00012430843013579862,0.00972281680532741,0.0020416015330431097,0.004898309145296891,0.0009230040748867596,0.00016896049302297987,0.002052421143928062,0.03269686157164425,0.12663487268309803,0.013871293507255593,6.301829887663855e-05,0.004133123469509492,0.0126613483977511,0.041097755882672914,0.006190570651836446,0.0029199802169420468,0.02788345044566436,-0.034531117268502866,0.19382274354868323,0.023143457753592597,8.862300347151071e-05,0.0020877364113215456,-0.002128594740553056,0.01214183705561158,-0.01973283602827637,0.00012713624164362896,0.003076277426505811,0.015439431662042933,0.08927192164985141,0.013895733161822606,8.180222657278969e-05,0.019588540851609024,-0.01855679527276169,0.09546844710564142,-0.018348477860741435,4.885291840374668e-05,0.009823879068334812,-0.029287913217391173,0.053506782570795296,0.0360968821556866,0.0002668756720426338,0.0010314352533776672,0.04760067752360664,0.19721455889821818,0.22691865444806217,6.0018969930924355e-05,0.002360474702434424,-0.024059311777488962,0.25901174269512045,0.0360462761972263,2.3965971118594643e-05,0.01304492162103181,0.003422240705127874,0.009848049894782912,-0.07304681424601993,0.00012147006863827387,0.004220114896367673,-0.027365600690432805,0.1126615604755571,0.022107234867921394,0.0003828751625138396,0.0036570160784612305,0.022679012582040393,0.10844289783473846,0.014176884932283447,0.00011978290006084087,0.0030013300967581978,0.0007221069546937105 +2021-03-29,-0.01811655650011767,0.13444237798754832,-0.04388894956827034,0.00014250367063253585,0.031894304704132605,-0.018602814823959115,0.06866933221133797,-0.011252560346460402,6.500194705233495e-05,0.005523131258507858,-0.016952791412206864,0.04977300172854765,0.004967649017495759,0.00015755949851309052,0.01066716658344122,0.010384676938531678,0.008922951789850713,-0.01901068977957554,0.00039278265391317306,0.0024501554600489506,-0.0008406342455017477,0.0017454199545280259,0.001471903922780463,0.00025200253743666524,0.0025527128556747467,0.0010107410263568704,0.0030945736350276192,-0.1237437748168899,7.131580895844021e-05,0.00350641622177484,0.0557523504455778,0.22120168978776963,0.11422918093435222,7.395449848958882e-05,0.009344782287541582,0.0037848676060673377,0.03241983982345793,-0.008390860154695454,4.003487181010373e-05,0.006227302339732001,0.013422659858520276,0.011853714656986944,0.012240298924723034,0.000873230513368491,0.007748266274190334,-0.0030230428011741744,0.007348058315616506,-8.183336277878707e-05,0.00014385785756793445,0.006569538132504934,-0.009600335013828424,0.005873828325709103,0.009792279086660187,0.0007988946217809891,0.012474908372856858,0.015051249649756194,0.19143924075926236,0.01274855901453311,2.342957363556438e-05,0.011669944160487446,0.01843972477369971,0.06069312551692195,-4.5515231839813644e-05,9.025389834739657e-05,0.013642509886699924,-0.009229506841156986,0.052446543347840206,0.00706052306927359,4.953628626748451e-05,0.00460451180217715,-0.032109248789804604,0.030509979001643994,0.04454638954896863,0.002052632538064878,0.0033321707417827205,0.01659674995573232,0.09426430795517135,-0.023105397566977236,0.00014488648463376012,0.022065858370201166,0.003502972809569344,0.023791556437406058,0.004362120760071425,0.00022799333106070173,0.002959833366096289,0.023854671404217896,0.1360455890243939,0.01678310404444692,4.939123996610103e-05,0.006545644209696366,-0.0055374754480349,0.025713260528111265,-0.004551301273134884,0.00035492898815596267,0.027643677420100234,-0.0334359817412831,0.4524134459419024,0.0026179029843384303,3.066964907572009e-05,0.01696852022998204,0.000886536629676886,0.010868264053820605,-0.004045587592365243,2.7253244471231106e-05,0.0019962342636963074,0.02067175727281942,0.05127453922797016,0.03500315328453175,0.00012986687385475542,0.0131958509464917,-0.04112458778510121,0.31202749765435744,0.003863666006638048,3.0443954602958563e-05,0.015265918492578084,0.002850948052176166,0.007333628276265661,-0.024209797502263444,8.618819656153657e-05,0.010230813430163892,-0.00958705661610956,0.03973846384844486,-0.0558005263401769,0.00011031201380095987,0.0013548782697339866,-0.005220693706386833,0.004873663330995886,-0.04157076716868473,0.0006122774298676529,0.02557922353462371,0.015822070737644398,0.053703640503905706,0.006839878162727773,0.00012400682948506464,0.000869261145286952,0.03491435912256979,0.10442526122937544,-0.015752903130996213,0.0021459405137623064,0.004285549475816032,-0.048126280951070695,0.4776954753180232,0.031551329758670185,2.5906775974904354e-05,0.01232299500373039,-0.039050980370866864,0.08700843117768259,0.013797950462137202,0.0014673775587948485,0.028439977929791412,-0.013544276367358724,0.09744592424869468,-0.041642277710311495,9.25588118276383e-05,0.0009818480390533972,-0.007613385574636241,0.0112482424017719,-0.006423492621266391,0.00015974914567556267,0.0012832299515239114,0.013616771633750887,0.02211676053743406,0.006215216499124973,0.00035339186833727404,0.005732534726534512,0.032598190312655276,0.11417105649767718,-0.0022452658694325166,0.002213032603306854,0.015119200199058786,-0.0007723201503125216,0.002590871252227861,0.0002714005037708224,9.564051460369468e-05,0.00507515980039459,-0.015553667499182041,0.022538153782120304,0.007039397346218759,0.0017155037213722577,0.011073807101675995,-0.005925509792842339,0.018592884200672285,-0.004971179553717575,0.00012626849154970338,0.013564865546187955,0.0347834132440941,0.09155894630993347,0.06722310973153546,0.00015400392390923408,0.010914062695106088,0.024448740842968424,0.08911298512286628,0.024431841524155153,6.69621562722771e-05,0.00034560318555920807,-0.0026404115458082047,0.008653845290238165,-0.011142818303177893,0.002891881908130023,0.0213229583346303,0.0065879339407534385,0.03687990041827397,0.00116375095926626,8.8858722806634e-05,0.021412514128742826,-0.0056377839297437945,0.032916508770697524,-0.0009338930709404249,0.00012420968071468779,0.0038632309358230263,-0.025557710557161873,0.14358718055170833,0.027158172535445533,8.418892774968082e-05,0.001724015601101924,0.007451606289468174,0.03168310096425335,0.001725822234145719,5.9111177985243545e-05,0.006797810803276637,0.0033930779195878854,0.00536489784899987,-0.004809075756337284,0.00030836265050125216,0.0085333445572357,0.001572384594450645,0.006141079276119535,-0.08390842633394652,6.366906207792203e-05,0.015340940291623622,0.004622950839515164,0.05844682523874678,-0.055638562921625764,2.0407491996805783e-05,0.011108728589353236,0.012078005572158984,0.034388686457457775,0.030132853010297767,0.00012276896731977378,0.0036711100272262863,0.012129049924856913,0.05069787681341785,-0.02065630399358059,0.0003771073375732761,0.003518799801472023,0.015554112988240621,0.0806196753996753,0.005837126879782182,0.00011050349146945194,0.033853614093995045,0.0002734747815522309 +2021-03-30,0.030490263894253952,0.275930282238707,-0.07062378694751417,0.00011685529657176765,0.004696489724661078,0.0011271185161152158,0.003556010013742951,0.0018292349448141034,7.605313758773806e-05,0.0019796473085164122,-0.017438064733679613,0.06599463473677515,0.0012211042423109877,0.00012223254675516328,0.015489469779493925,0.002017677486805057,0.0021481649851589606,-0.0005564929849625035,0.0003169946781365958,0.0008278237797432544,0.03397431010013264,0.08016533503386203,0.026725379864966724,0.0002217490698633336,0.011960960240519496,-0.01853909681345333,0.04747369059747145,0.05671761559777325,8.526726190795242e-05,0.004003146218078959,-0.018736096196762534,0.06728570106301222,-0.06231071052247659,8.17045384435089e-05,0.018990965156927785,-0.011586044013111082,0.10648399692714741,0.00861776485573985,3.73120786536491e-05,0.03078644469612389,-0.014822615158993961,0.0131948788879596,0.022988512753714618,0.0008662918157567116,0.009858104748999154,0.07217131169256631,0.17187879458748848,0.1506344547297898,0.00014682641187500144,0.0016992463315002046,-0.0014502205447231428,0.0011480016355900637,-0.014638743359378485,0.000617470060659203,0.006828249525966657,0.0019317718366243142,0.027034135930471992,-0.019033758706310654,2.129443524173311e-05,0.000758161638927872,-0.0344587682433603,0.08781514946132853,0.017755837905249545,0.00011656853601786704,0.04550413669756932,-0.020911019097598436,0.10846579702298338,0.03784044414542993,5.426804858269248e-05,0.003702212538975494,0.02949409346491022,0.026477080164075555,0.050429389873208594,0.0021726408175637966,0.022959147924332964,0.02366263799153916,0.16543568067775746,-0.015396229878580945,0.00011770260769580612,0.022669674386697408,-0.010820456649426793,0.07093230883022485,-0.011027541510781764,0.00023621622520452308,0.0017835820844756276,-0.008230781251772465,0.056032364055314324,-0.0015279350944116064,4.1377387783220235e-05,0.0002532258077190602,0.03856227600849276,0.24884707740306433,-0.048471168400312535,0.00025539766460459096,0.005394113637758156,0.04200281793716367,0.6134010941211089,0.013281812489018916,2.841607647064426e-05,0.030466346621843686,0.00621747155605606,0.05657318295418396,-0.05390129226596819,3.671849753544909e-05,0.005676673531445865,-0.027556265734071102,0.06625363658010015,0.0002814513696253336,0.00013397797173351757,0.0197971369515264,0.05036308014167366,0.3790937410261499,0.027733377087005934,3.068725520724338e-05,0.02588103683767924,0.02721578657905312,0.08244229923749669,0.08458892562586441,7.318939843745982e-05,0.004627270567928967,-0.0032008525190001503,0.013557251035079463,-0.03421925606204105,0.00010795496527539453,0.0029253611962485526,0.008150876037260592,0.008233537518566108,-0.01069671579026824,0.0005658396556310807,0.008810379962745127,-0.02940818267753057,0.109186408808104,0.009272591396166796,0.00011336672859617672,0.009718065514635962,0.0011170108556564423,0.003816310973985878,-0.0009596448538164796,0.0018785934870714648,0.013840513756981625,0.032764206904285685,0.2563577276333382,0.08425471347295554,3.2865136605108936e-05,0.019241006324509882,0.005413466791623717,0.015869830185735782,-0.07984505371214669,0.0011152557399451077,0.005753995385405036,0.005719282994966748,0.04340307233669306,0.0012097189328415788,8.774992560493152e-05,0.009671007886325024,-0.002176985268332146,0.0033295625765544213,-0.0047347612620825125,0.0001543169726786063,0.004024078860657613,0.00405535056695489,0.005407488278206674,-0.03565934233702946,0.0004304638940849095,0.009816982588732618,0.030288076395390384,0.11482549591727313,0.02286827149445984,0.002044483940208047,0.0015745966708697891,0.025755681789639478,0.10881610450816864,0.025123365132629725,7.593993945807625e-05,0.0011435030916689768,0.06041440386568484,0.09127790824370484,0.05023511304461477,0.0016453261764322127,0.015994576279247233,0.01542197669617625,0.0453479596538759,0.003080867307176097,0.0001347405536282115,0.02633241854700837,-0.022110941310693747,0.03824464347759066,-0.11371513694673739,0.00023436728618005754,0.012779075249963199,-0.012224560090181082,0.05391152630082846,-0.09210279983523,5.5343361892269056e-05,0.006121467951823034,-0.014056769406789599,0.034530633975253675,-0.00201609692900919,0.0038583269504661693,0.0033755920839070416,0.013099470487177058,0.06095159927309969,0.004641154369998478,0.00010690775412636113,0.002995325522300953,0.016753326198937463,0.07937351327611224,0.017450421621741853,0.0001530686406043421,0.008343741985652284,-0.011979359127445141,0.08553064371773755,-0.0017980350595824131,6.624613463158319e-05,0.00627215738104782,-0.0389836091297011,0.19023464586655953,-0.008565250169090214,5.150386542256641e-05,0.001796449804695236,0.03611356906647977,0.06142893001255211,0.016789875079204496,0.000286633439296684,0.005100030986680926,0.010132457725341685,0.04046466101765007,0.0012437772789271365,6.226633011202138e-05,0.009049596039605312,0.0033681389329991884,0.03626465761044724,-0.049339509657007244,2.396280764003645e-05,0.017734731276798695,0.000362930481262033,0.0011844151392227823,-0.05276585608574147,0.00010710961523968539,0.00036779642834289727,0.023430720030838622,0.10652207605001526,0.024593251387264356,0.000346716079887078,0.0048639916788896665,-0.05502814892634535,0.24135092367085517,0.0413893961487477,0.00013058934233498026,0.008624808445857658,0.005415128018687752 +2021-03-31,0.019756252172411653,0.16222004266989332,0.005170058100978775,0.00012879133162154355,0.017577540546562707,0.01108072693593108,0.038476299087626085,-0.02110320422072463,6.910118375540996e-05,0.0008028217070079797,0.06259953147966,0.20990448001304443,0.05790230654917357,0.00013795790143355494,0.005133792284615243,0.015367892923049797,0.012627309901322497,0.015047497993298341,0.00041074410870398835,0.00605587606129662,0.02966931619459266,0.07318885472124102,0.015906348492956357,0.00021210961615916195,0.01019027531351904,-0.022938666212765826,0.05558326085600148,0.031097937087287357,9.010956229957953e-05,0.009202004413098321,-0.05141136396616489,0.19914669466261503,0.08001458988344712,7.574882118077898e-05,0.019208680069050063,0.003816630430930549,0.025224440896745266,-0.005658925648592736,5.1886834286901286e-05,0.01495834874917054,0.0020202338504182404,0.001755574318837312,-0.0099561194610631,0.0008874159109800108,0.004327118075124239,0.00043725359632061487,0.0009875091674273599,-0.00840238262474779,0.0001548296530132635,0.008057793278195025,0.03109171686898828,0.023850967085178684,0.07515542249070763,0.0006371813700832892,0.0031957684799295634,0.015601177090888626,0.22872672789162982,0.008964703786399339,2.032652970091278e-05,8.01937664323361e-05,0.019733485811111187,0.04684349358382026,-0.0202473211696353,0.00012514271370103776,0.007590979715216936,0.011414377821432557,0.06587417147636318,-0.016731914302782314,4.8775181726773054e-05,0.0012025411443229816,-0.04812148645669917,0.04337345596479107,0.04913668656122732,0.0021639039459940054,0.005268324231193869,0.02550678923430365,0.16949462985140268,-0.03704217646773679,0.00012383743796570774,0.03981851479796313,-0.03492386560909528,0.18181947790882524,0.087134915986836,0.0002974336727742154,0.03621573935795234,-0.0015377257310815048,0.01092811906844361,-0.02314062644720236,3.963641978176687e-05,0.03575746474445992,-0.049864081561400216,0.26623607433217855,0.03973728657831271,0.00030867945922654955,0.02218828533408486,0.007614739896086744,0.11160399494490925,-0.14889202795189194,2.831428269474665e-05,0.009024515213981111,-0.000617646068530783,0.007311847606076589,-0.11468173865678648,2.822242055661807e-05,0.0012598948160460564,0.013256588637816912,0.04207509874034327,0.012600077214495796,0.00010149143473783793,0.012678691008330498,0.0742228675334578,0.48787057060766387,0.08681589395737183,3.514191983166496e-05,0.002064932765346311,0.00864085061752298,0.02264482598130207,-0.05709709202056587,8.45989342240807e-05,0.007394702704678535,0.0014683144514096025,0.005616196675288592,-0.028729087237119016,0.00011954333312867703,0.007686529326249337,0.007407493194292302,0.007397428283136269,0.0055005405539374904,0.0005723557617293993,0.0004950808165395679,0.027165511166816158,0.1102685139555454,0.010995462470633089,0.00010369369939757359,0.005116802364037554,-0.04419543938685316,0.1546736942783223,0.03510124865591598,0.0018339190937884662,0.03125139222661608,0.02309733323812005,0.20615928277056142,0.01877051088382043,2.8809859535838112e-05,0.005961711422206625,0.07050584821865527,0.21040085307026757,0.08015470108662062,0.0010955921583914437,0.0177334732865831,0.005793104816265304,0.04716495878957319,-0.009817730383129775,8.179326984656761e-05,0.008506852430751862,-0.04113206969148479,0.05759001399927899,0.09503204457385742,0.0001685694093729501,0.010861802623518917,-0.013244869739656386,0.01877332197067639,-0.2171552094024034,0.0004049584604307093,0.00703098831275795,0.0017390678918610038,0.007469318849847088,0.00027808741923009844,0.0018046204689007989,0.006320247480257902,-0.018988803974768532,0.07023459442976417,0.004696135169281617,8.674349225888428e-05,0.0169977264826027,0.00685128902647802,0.009101241322624316,-0.0680887469838576,0.0018713234106437038,0.04678368560630819,-0.016230670422453193,0.0601559934475894,-0.08084360863675147,0.00010689898762032183,0.014251240827700871,0.053737661655331385,0.13833930209545062,0.0837401487519213,0.00015746845277394344,0.002337234063634539,0.014028224564872306,0.054360505074266055,0.007768897142640475,6.29844224456193e-05,0.0029612218707314396,-0.01760463468349807,0.0576857902498804,-0.002144955536320901,0.002892519056416589,0.01665935872370177,0.03695915917630183,0.19641329126773763,0.040656139030774294,9.360343360512573e-05,0.01566935843563968,-0.00943541575230356,0.05446839004484536,-0.058718870739566796,0.00012562535061410416,0.0028071951511274363,0.01523878989397679,0.09298322875357916,-0.02333850343955965,7.751657175755583e-05,0.0068406638750921935,0.07344972909839852,0.3597959902002556,0.11059467269759458,5.130754967099438e-05,0.021032022783593177,-0.0277932448204581,0.05067538458706509,-0.009694432712515405,0.0002674062746582088,0.014454718415638286,0.004060849698387462,0.016675050548886045,-0.008554525503093078,6.055696936032242e-05,0.013012592630515941,-0.020753388720762534,0.2099604160803838,0.026461155901125355,2.5502507350596543e-05,0.012443530024701189,0.00015918094688036904,0.0004694359155228083,-0.009002956066942708,0.00011852875831467825,0.006075069207583104,-0.02088452398878015,0.09683091973796101,0.030141150732713822,0.0003399683558966454,0.010844965159934244,0.060986350407452886,0.31482110351292664,0.07874725794092495,0.00011095339713573057,0.015798105884625952,0.0057219188973194075 +2021-04-01,0.03474900924080103,0.20742625266690792,0.02520677448656791,0.0001771598439038065,0.013927504780594114,0.049549087888487504,0.15199250012257573,0.08220345660857603,7.822112037147503e-05,4.204776450892516e-05,-0.020778711675359288,0.07037228636378061,0.0066963604080165235,0.0001365885076739603,0.008920555119264737,-0.0032527404396860255,0.0031556680288364024,-0.009317540693629172,0.0003478771917217808,0.006957384383900637,-0.0005121754546243728,0.0011107891155511436,-0.03323660060245007,0.00024125977496146085,0.0030730587422171307,0.023609970830730503,0.06572352372659913,0.10534750869813703,7.843706786917872e-05,0.0018029673227214864,0.026461145551012505,0.10949025538219792,0.024485432576796643,7.091253780599418e-05,0.015401178373081779,0.046135421774272135,0.3496239783792688,0.07034886445751734,4.525138743380288e-05,0.005555161687605835,-0.0070060456319064775,0.006258762791014813,0.00017168373848947005,0.0008632354288009672,0.009434661515611755,-0.027791773841811668,0.06263614768313171,0.022072489242802324,0.0001551504765879909,0.0211190597956792,-0.0027742766622146724,0.0026207689045846965,0.0013748780773683376,0.0005174226067182788,0.0019818674665104687,-0.011120358593422714,0.1394542878058188,0.01128453777343357,2.3763461882472423e-05,0.0060273544065823585,-0.011947994075388104,0.029797330918151437,-0.06860468726680281,0.00011911560813761329,0.015219118321799535,-0.006539549208547907,0.04036078022022802,-0.017819210901952653,4.56089503407977e-05,0.005027257853520272,-0.03223418901390397,0.029489231422570296,0.027278313451801074,0.0021319463279681795,0.002703037273554061,0.1151287247412012,0.729954105752591,-0.001158299140871312,0.00012978970525852945,0.015363721018978817,-0.03690052639332178,0.20424272172822275,0.06037132229620101,0.00027976553019987176,0.013187919704441015,0.008243172959265264,0.048753500340900424,-0.11932583107798336,4.7626598615347925e-05,0.0034821323935800425,0.019533008199404466,0.13857508779413036,-0.10428171036187715,0.00023231153659635916,0.01922348401135624,0.036918216581754155,0.4728198126996614,0.00011755293696370099,3.240225816454352e-05,0.021589856498068397,-0.008328886416220328,0.09939117468935053,0.006464926957450136,2.7997601326932858e-05,0.0018416072043146146,0.007329304531187413,0.02138926862757299,-0.01305457153242104,0.0001103797962135243,0.006860981067699523,-0.025358673217673103,0.1329278886926784,-0.003390867650464493,4.406591541274245e-05,0.027733426673370552,-0.005207884461357695,0.017223753297863124,0.0021103439451880058,6.703643751018521e-05,0.003854733144242356,0.0034329500545558092,0.0131532003492577,-0.096967170765393,0.0001193396185252613,0.004016009058362414,-0.004975390744856382,0.0052999067741108736,-0.018385550093413104,0.0005365800541464195,0.00979414650448319,-0.004633639147832197,0.017948699696332657,-0.0074145301326851085,0.00010866138271144726,0.009169732249677577,0.014826690042446248,0.05274878027014105,-0.005401625357871081,0.0018040599342657206,0.01755541889610064,0.02542316640157932,0.23870888772371562,0.04142209504724039,2.738692334118081e-05,0.007922528312500388,-0.033279123704131566,0.09684155617738266,0.02021168901196672,0.0011235215118592943,0.00043225077405077217,0.012575396373607273,0.0764851985367917,-0.0013946507472087201,0.00010948885843449168,0.006731311996595784,-0.009820006166172537,0.012726644005330237,-0.036123966029030084,0.00018211396532565605,0.010003877518633741,-0.03229744691687095,0.04134740759715245,0.01386311082970752,0.0004483568627057912,0.011341567986414556,-0.0190861776337396,0.058923631616404945,-0.03061392861981528,0.0025106131367126677,0.0035533518957255937,-0.04468135450992506,0.1869236717382258,0.04335575647813309,7.669241212075837e-05,0.013646157590756146,-0.04675511270174342,0.07050116267316227,0.04782708270132317,0.0016485799769351002,0.001868887408190525,0.043660356722594856,0.13956544764452772,-0.09171753690394717,0.0001239439701775252,0.002085386146957126,-0.004109609954112005,0.011331084451823114,-0.0007135054946005167,0.0001470244299928831,0.0002916914994021418,-0.04115452773707811,0.16815366258520362,0.026749132407060172,5.9734497711588964e-05,0.015888429918073026,0.016472107874008532,0.041380106597402225,-0.011660592192023226,0.0037729029203644204,0.001618876167803125,0.03074999191593362,0.1610505898381673,0.03594260243714697,9.497805177038038e-05,0.01621623550073204,0.006186773775063334,0.03344719566680263,0.00248291990780909,0.0001341421644206251,0.00021655647254630581,-0.02394998611334723,0.13383230575899294,0.029603728786394567,8.464338134828727e-05,0.011689167181604204,0.054937012406437495,0.25637900171786304,0.06266877409473533,5.3855489870021675e-05,0.014041036140545431,0.0028356696888652303,0.005264251219669438,-0.007668371534676419,0.00026263247632624803,0.0022429317085213923,-0.01093095758714211,0.042174962917519675,0.024836815998131728,6.444925116993089e-05,0.003710936784938168,0.01573486093307658,0.15286615413819277,-0.007443279549538703,2.6557234890711096e-05,0.0037397649523218486,-0.004487318477915934,0.015857309833894266,-0.03516847557373695,9.891595456418725e-05,0.0029134973039163523,-0.02702688263255222,0.0870510861446422,0.039145882327466026,0.000489383961696995,0.00351121730514853,-0.021297644143620783,0.10916882370424932,0.003949600535668964,0.0001117389874158108,0.020504459147334404,0.0014651439080306024 +2021-04-02,-0.00600228960194497,0.04299371729574009,-0.018920081017906487,0.00014763812912510965,0.005392123376144611,0.022697135902656096,0.0778332791811914,-0.02511415849915896,6.997070611083713e-05,0.01726578361459305,-0.06410250156970251,0.23210677752999484,0.041979074581385376,0.00012775689860217545,0.022772504619185504,0.0276249550776401,0.025441705686676096,0.05187636241180548,0.00036645716075491783,0.009721262153999386,-0.02171913842057923,0.04324715906679571,0.030445329877838434,0.0002627742358423942,0.007966622138719705,0.007455771935220729,0.020399317272536223,-0.005008237751467055,7.980382766286989e-05,0.013206956598626848,0.013465647116636923,0.04739609818733982,-0.008051844516934926,8.336322237475578e-05,0.001276419306186918,0.018726184789188933,0.1457374089075231,0.004708580907801237,4.4063285387506156e-05,0.016267558277870003,0.034131990042067836,0.026814599989434848,0.04859955967750398,0.0009816011854123017,0.0013463081021532406,0.027215258932039736,0.056068771351433296,0.005915097980504199,0.00016972793118523046,0.027517467811440783,0.018766581433443254,0.01636494121084418,-0.07803258928005727,0.0005605251149757779,0.003836280016017732,0.008390856875255759,0.13159181109148257,-0.0030945759519160677,1.900204046460556e-05,0.018149144155355953,-0.004342759639964239,0.013830972853368829,-0.0131062990971401,9.327475177198558e-05,0.005559550123514381,0.0058321080386362,0.032835427836229905,-0.06021489450852007,4.9997086762649077e-05,0.001835844687581418,-0.000986732817952277,0.0007662675692679911,0.0007169028873687395,0.0025115515699393846,0.01659010135543308,0.02999269931752267,0.21349241409310896,2.559106158808291e-05,0.00011560728800627132,0.0035303408398196442,-0.014911137442839001,0.07830869110258444,0.010535197481609684,0.00029485536902952407,0.006091940990271559,-0.09594436347528416,0.6411511087346083,0.1965556092208848,4.215217846768691e-05,0.013879919114430605,0.05049320883185923,0.23648761557315504,0.003082453261451985,0.00035189360617849573,0.030213273894972376,-0.053472079332913924,0.8102824100207773,0.008887446756997814,2.738551374974718e-05,0.0046261573524249994,-0.017551207240819763,0.18204875454664,0.02089480612334204,3.2210761431524614e-05,0.0026159393698975543,-0.049437487143997656,0.12634651428186475,0.07079444288338414,0.00012604217211094364,0.001054783257658012,-0.028533951682889237,0.2087312131698674,-0.019862397311999923,3.1576711580216866e-05,0.02958489594644193,-0.02592408510749602,0.07778057311682281,0.05966199346938425,7.38940860497114e-05,0.0003277254408403068,4.5252520288253446e-05,0.00019609214059236702,0.003055077604971755,0.00010551912468640479,0.007959006752461292,0.038593061492237436,0.035279175859591956,-0.00043001812784483254,0.0006252682284883052,0.002808959926143763,-0.013345838161600832,0.053366329549478946,-0.0012606542095930041,0.00010526028204911847,0.011681996034995737,-0.04161473986288688,0.14829139382694148,-0.01403582800802594,0.0018011521947357877,0.0034537002223153064,-0.03710126811668528,0.32063902364295027,0.005270833149557029,2.9754631213347385e-05,0.011153963381896092,0.03733189225351665,0.10355822349329454,0.017056532840617485,0.0011786006650816889,0.013144479222452994,-0.01319429462390774,0.08979082138527829,-0.12398234995901602,9.785429138573706e-05,0.010171606643503325,-0.015312872675354494,0.02311321972565891,0.007473629533476117,0.00015636574190594146,0.008248193804735857,0.06526684333171971,0.09862584611395736,0.2002575988709923,0.00037984444549503713,0.008009233881460201,-0.04726827454752064,0.18818264424722367,0.0803921970123948,0.0019468860075073989,0.0014468946687102623,0.03247598902443004,0.14091483804809113,0.05519791625258952,7.394282358006915e-05,0.007620465008281993,-0.04573313050115516,0.0601806352910242,0.036198628891383325,0.001889084368017081,0.015466982490535977,0.0003693472345716354,0.0010743146646359735,-0.017371850201225437,0.00013621325909786558,0.00958342863910213,-0.0471868635823022,0.13238480217222437,0.06059566070035842,0.0001444918517705522,0.016627101624220746,-0.012262943808507197,0.050978713857663276,0.0010811176621803936,5.871104207237209e-05,0.014853450608549973,-0.022657374343015544,0.06509491056057487,-0.005277292887731417,0.0032989869943276617,0.01358593984427127,-0.020456383540599903,0.09123560170737684,0.015290445301812457,0.00011153343758859615,0.00832914613431607,-0.009526083672956992,0.047972436164563856,-0.011496747252268047,0.000144006933516209,0.006124692219341789,-0.028433994863767503,0.16836780327139436,0.010402747471028567,7.987806462613021e-05,0.008188854492068449,-0.014280234869521246,0.07365271040660312,0.0026829768374133536,4.872973076485245e-05,0.011978865800053428,0.01337275341535693,0.028121076003266555,-0.013796878689650608,0.00023185597724208827,0.00947811943419403,-0.02321372337248322,0.10747652541669275,0.06740270196825099,5.370881407019634e-05,0.005418408424967092,0.014274963675667895,0.19136173704882029,-0.01703854972126585,1.9246474681452177e-05,0.0017750515524500425,0.003789702360876387,0.01104372074397235,-0.0006228377608201235,0.00011994955758333664,0.0016736633632796652,0.013624091267687842,0.05296112466487497,-0.016985038642787047,0.00040548828935705206,0.010319502331898323,0.01163027072386705,0.0657522965288532,0.0003715050133946701,0.0001013096218062786,0.03316683638762785,-0.005821624624172106 +2021-04-05,-0.02640198849881108,0.19584025393938426,0.07612364267645483,0.0001425677375961613,0.008810209308968291,0.03503615244349313,0.10654311417586033,-0.020469581287428984,7.890445912074898e-05,0.031657088817438554,-0.017736923234693804,0.057365291790609396,0.0030384959657183547,0.0001430297185090266,0.03220071310460084,-0.02607141708103252,0.023941490110187983,0.05491121652171964,0.00036752028651903124,0.013643895011658864,0.0227096229287504,0.04310161907526047,0.0019695296888782073,0.0002756856185124968,0.00030579202391050274,0.0031063576895612355,0.008699441352528578,-0.00759277742109953,7.796628433471957e-05,0.0030662410166526505,0.038182586696570736,0.13745315507201727,0.06059780596077739,8.150804728563796e-05,0.020036224719892293,0.013659462737945228,0.1250326476354691,-0.005847786235193719,3.7463539332859735e-05,0.013674327334165369,0.00669822079670487,0.006443906294449886,-0.03212937281945746,0.0008015950552560915,9.551918001074705e-05,-0.020626898879294735,0.04355677807544918,0.005338342311752632,0.0001655922772598622,0.005194266299469496,-0.012134466790663127,0.008344667167787381,-0.06968158662942879,0.0007107813704380618,0.008960137016643048,0.022320650749426497,0.25084956260579444,0.002449186554452299,2.6516505732358706e-05,0.005496536444091678,-0.005994152347491422,0.018815841347128145,-0.10640376711212346,9.463573776294484e-05,0.00411236089555313,0.013457378371346406,0.06828958259173355,-0.016573827779831025,5.5471233524780206e-05,0.011498786639822959,0.01705290691194143,0.014882749266103135,0.01604274296376452,0.002234797767207078,0.008048390592868153,0.056371960234405105,0.44208876358074956,-0.008644542164574493,0.00010493147264315041,0.018629787532582258,-0.02066817078357187,0.12300083228572391,0.013643076560957102,0.00026019696307856603,0.0029526836301650723,-0.036498044109541765,0.20615590028052952,-0.012204170881583858,4.9869472985634654e-05,0.005790525782177903,0.023575610031257313,0.12214182653804871,0.000885771523281473,0.00031811587061827767,0.0023838593305960643,-0.002374255992432901,0.032154859554316344,-0.007759609816449136,3.0641580112065054e-05,0.01637120808194641,0.017221408038141806,0.1910217576166072,0.05465957384849044,3.0120871213768187e-05,0.005840496908428286,-0.0029586684757565707,0.007092250464252471,-0.02261072480576829,0.0001343801110983824,0.016959196678189972,0.035748920357180386,0.27053963140983245,0.01875444440862673,3.0522802912504803e-05,0.008754311031830508,0.004044898212956631,0.011447030070637977,-0.008218463246726492,7.834154929715817e-05,0.007979031723148962,-0.009501989930140581,0.03442413973250986,0.06108289141660524,0.00012621183049189616,0.00470579750643496,0.03022680859277964,0.029049319721258467,-0.0023062887710857166,0.0005947464942942262,0.012310175699741677,-0.05432815353343554,0.20825059194945691,0.14227233169882522,0.00010980565561177358,0.013476179538674771,0.011777486248739418,0.047804528179016786,-0.03293612698138628,0.001581258031451862,0.0014924768120180517,-0.04413829542732833,0.36827856413916094,0.043276564565248074,3.081919645482108e-05,0.018137915686371464,0.046448700437592465,0.1289469002340983,-0.05582716424300195,0.0011776979818566165,0.024826301546807875,-0.01670251297638976,0.12977034425518885,-0.0011268897981128667,8.571010050073731e-05,0.0012932826858499974,-0.02201376184529586,0.03158162488961452,0.02077380270364398,0.000164514877776195,0.004632272553663322,0.00495169110547734,0.006663819441326984,-0.03531337090161347,0.0004265149294055386,0.03215281865915939,0.001031665823065244,0.003975821918656386,-0.09277016535526866,0.002011233346363145,0.010797311711164832,0.01718828018949445,0.07651280403899524,0.009330383659621263,7.207566809865165e-05,0.023162560384990382,-0.0033291876815936955,0.004419460059661249,-0.01189941201918692,0.0018726053397983802,0.0059762224842652215,0.006345525083826314,0.01871591282737316,-0.036071395671834115,0.0001343298680025713,0.011020093710532572,0.0036248444304804216,0.008530126946727085,0.0011625888449773281,0.0001722638915912396,0.026067665856127915,0.015369162162704541,0.0649311913323653,0.0022514918709591854,5.777111461664161e-05,0.009715433535807184,-0.03900540601098304,0.11720062218201986,-0.00815596100849,0.0031543722510473,0.017318714483607136,-0.021463161996336324,0.10747920179087285,0.0198853275176812,9.933672591063427e-05,0.02577069936956598,-0.007790658282918665,0.034011602026437646,0.005085043019381507,0.00016611461778290394,0.008152928483626533,0.014169960852951507,0.07857830780560736,0.006985955605126137,8.529325278242113e-05,0.006783759140246836,-0.03302258393193976,0.1656946774360804,0.02427462242120485,5.008986828160246e-05,0.001795140227890889,0.012618898025460528,0.026945591523841548,0.004479306043107625,0.00022833006640559904,0.010405240800404338,0.0032793886478223486,0.015182957471214838,-0.007281835568968024,5.370947277987791e-05,0.0031627917717922767,-0.005787713143166268,0.063285957033574,-0.04739494727737339,2.3595594901963944e-05,0.014490060734293425,-0.013085259848603053,0.043248225908543006,0.07047493779656563,0.0001057603839905818,0.0014394438828116713,-0.019592242735397395,0.07776473900011094,0.021023050513632884,0.00039712699081015775,0.0035603117497495793,-0.005036111449183543,0.027055913701238596,-0.027465218407297154,0.00010661171348178988,0.06583742784662122,0.000381041950538025 +2021-04-06,-0.005278637904034762,0.03082079323703126,0.0058450438012830905,0.00018111926365311484,0.013116188839150458,-0.017553727433022925,0.056681400412023866,-0.024013229745103955,7.430863871772337e-05,0.0011970815585432113,0.012837431661559411,0.03754344032722453,-0.10087329960664992,0.0001581762525245896,0.006508598557432981,0.017000957850061515,0.01783873615650969,-0.010805012754372194,0.00032164526675050283,0.00035130476937907866,-0.023561002383108775,0.06789543983945304,0.030473216457082942,0.00018157285794672627,0.008809270097624798,0.006585835796679225,0.01771763177823419,0.005327225173117417,8.116185538137149e-05,0.002800192304848955,0.009771769288703604,0.03640091892939259,-0.05686515874565403,7.876816216317155e-05,0.022696640627392514,-0.001099842536129132,0.010507202017550671,-0.012689943278908888,3.589566835632465e-05,0.0029377601114011533,-0.00397301930360572,0.0031585320604973523,-0.007145314508363561,0.0009700188464858802,0.000852193928765217,0.004432065621946497,0.012033688285957706,-0.011910780585712091,0.00012878619461616052,0.017825818059314814,-5.182172796607923e-05,3.3485740087676136e-05,-0.022427615449936628,0.0007564432405915152,0.001632902901428914,-0.01200792767975399,0.19504666650888156,-0.01418217575022492,1.8346461790492683e-05,0.007947655228587964,0.032438909196705064,0.09065945731398943,-0.00968684723090629,0.00010629287766104599,0.00018026117265157243,-0.004394824648905763,0.02486966313807102,0.0001249588939159337,4.974317102808439e-05,0.004730392224225489,-0.03318010571404902,0.028350187412314497,0.02875727287434798,0.0022826787913737285,0.011657001410276698,0.002540589745347508,0.01644561275846152,0.0003725909488141383,0.0001271266459074444,0.018143413731663515,-0.0679692217375875,0.40225437163516464,0.15137110635513512,0.00026164940800739694,0.004409988214927418,0.05059937848646815,0.288362759999229,0.020751706130537194,4.942730879923016e-05,0.014170167298871274,-0.05127124601920541,0.23185200286971178,0.03910868106467635,0.00036445996365497307,0.03347897899511692,-0.06447497564933337,0.8350705025326852,0.061949951531685865,3.204042549258862e-05,0.006692968212192179,0.011540098378068991,0.11228088457199895,0.020248595752879954,3.4338822178806396e-05,0.007098798975181002,0.03590423878079962,0.11895432676400923,0.07199169584929158,9.722730232095757e-05,0.0010974588267828554,-0.006384633142488094,0.04550955015998916,-0.00011508687968500239,3.2406026391030916e-05,0.02998047144671883,0.013731779277204204,0.04437781869517409,0.002440298995002925,6.86022318296166e-05,0.0021878251172963298,0.008597624334078341,0.03601517915343898,0.01373104383261333,0.00010915445892640621,0.004523978555267662,-0.0070824091903900965,0.006805672135485914,-0.028922690845482695,0.0005948199869332409,0.016753724235758077,-0.03504251123367377,0.11354959373780847,0.030869699999319718,0.00012989596049354585,0.012764727738560336,-0.028318502061425204,0.08572956207661574,0.017018111061888296,0.0021201122068706855,0.026125199636429737,0.06332011844886794,0.6487688298057814,0.1466121366802624,2.509770081910471e-05,0.006893069347482692,0.06321640148995675,0.1818670062843194,0.01214047880772221,0.0011364415987156029,0.02996600744550101,-0.004306002412740198,0.02425295522389794,-0.039458319368164116,0.00011823205743613911,0.012131365673812546,-0.01798055779627289,0.027536974483049186,0.008564103320104597,0.00015411053372118208,0.004770754843882298,0.01481908914565417,0.019777336398540544,0.007561231821636107,0.0004300882955008795,0.0054356103395640995,0.03647374711079563,0.15269275599372692,0.06295393073631723,0.0018514512868660496,0.002982142532140746,-0.0015072968510936589,0.0052995071226154865,-0.001225323378922042,9.12543722923465e-05,0.005588267424805475,-0.0702653159651969,0.10329146610768346,0.08796870369299147,0.0016910395053502277,0.0024902368230347175,-0.01103524430636035,0.029010588680962558,0.014527563026846876,0.00015070978395638983,0.0006100564175566478,-0.0013641585735797064,0.0036016282077804143,-0.00788756573523516,0.00015354170322978358,0.017014754347455804,0.032115363256356375,0.13241088606274407,-0.05135300898066852,5.919745989023888e-05,0.013212123767420108,-0.004889270556957243,0.016039755258525926,-0.045837308248663874,0.0028891120858188057,0.002848352156841737,0.07009442364606487,0.34363550902225787,0.1626763456702242,0.00010146727688284933,0.014950961584641475,0.03402986758065432,0.15154237305057675,0.08967000158298667,0.00016284969886323612,0.010114611671436652,0.0019846476198148904,0.012448426828103874,-0.02062180114130111,7.540803700059885e-05,0.020934507055485663,0.028120184975098057,0.12089643460386851,0.01302474666848613,5.845909326650988e-05,0.03080943535455172,0.027040859234301714,0.04933646504171656,-0.047683296307131924,0.000267227932969878,0.013239185160712442,0.006206302968673987,0.0255706674259493,-0.005904228731639092,6.035389243230414e-05,0.0029765474558852245,0.028158666860493644,0.29662226470516223,0.051577130898046594,2.449286726094202e-05,0.0004607102007714002,0.0010844452803293336,0.003445967655021048,-0.000652363285573771,0.00011000322325894667,0.010042648160487413,-0.0002867243647531736,0.0013940569797052267,-0.004868061790890846,0.0003241992792194173,0.010514023156134308,0.01320806189176906,0.0687726863842785,-0.08009529352589206,0.00011000056157397312,0.0017381195025919993,0.0030872901397900887 +2021-04-07,0.002655108192496704,0.0160989960790575,0.0009377359867261862,0.0001744094498091264,0.01434833565159066,-0.015063511254273958,0.04930315625557499,0.001635826885436522,7.330979757317112e-05,0.00028903094684654866,0.022520346278035654,0.06627516897398775,-0.04124978363874662,0.00015718873715483866,0.0034066813337493393,0.0023463298388483192,0.002585545068386753,-0.04423660683604307,0.00030627024620675445,0.007197267484600004,-0.037704125343103856,0.06656926165791179,-0.030400492573874553,0.00029635543934764766,0.005103659085770678,0.0024438628898670895,0.006009201945726069,-0.0042849363858721325,8.879873465041827e-05,0.0034585114915562055,0.07443902053943087,0.2786075058784933,0.1708856418604427,7.839668390039258e-05,0.0103555311786122,0.009821305077830198,0.0870884144801164,-0.04154452784633191,3.867296163201673e-05,0.0008529981165497119,0.03020626165418503,0.026713222771057445,0.05977064373599548,0.0008719979837999003,0.012040643441023974,0.024791230264060278,0.0687591810330763,0.0073041135397437385,0.00012607508517335447,0.017725658674277178,-0.014519039262771791,0.011500610771406738,-0.00094550834337196,0.0006170798035138392,0.010931413619221703,-0.0032713865393103675,0.04793589903980371,-0.009946363104947585,2.033732246575025e-05,0.002208809925940347,0.06112368507332969,0.16234290762624173,0.08464743477885973,0.00011184774877504714,0.022881583517730612,-0.01956279155907086,0.09313638769600195,0.03535579833375568,5.912528621860624e-05,0.00978758566062664,0.01730927525243672,0.013613794788842198,0.011137666817374875,0.002479834266691412,0.025907655915479496,0.07785528181103503,0.4826411315106229,-0.020379328599115565,0.00013274429286676075,0.004354125637254818,0.030675973609269724,0.18466676083325262,0.00971364712494206,0.000257227771915528,0.01278686915509957,-0.042108885886598384,0.2506640616818311,0.01731979931268616,4.7319771026780784e-05,0.008426797913203273,-0.028259536463437183,0.16292483548911355,-0.0326734977759231,0.00028586734634839775,0.004926776556687929,0.041654858473395624,0.5334337181827803,0.01661974340990364,3.2405254057233935e-05,0.019370457108731056,0.001743057207879283,0.019057583822662805,-0.06910727879758301,3.055804115820529e-05,0.01493807788898665,-0.031404598855869145,0.08346730391159188,0.010781974753805545,0.00012119916300785242,0.0055313943250696294,-0.0004599532166746714,0.0030000178263190763,-0.03949628584168049,3.541458860704257e-05,0.006746262452191966,0.03881196544857799,0.09607112873628162,0.11917546102622538,8.956743250999271e-05,0.0057232605495770505,-0.016694352960133507,0.05577278490902769,0.12950021644046567,0.00013686608865914855,0.008308570902261003,-0.008144479550652475,0.008624584496627894,0.00015699503739396195,0.0005397600248973804,0.034458995782017304,0.006452369516811942,0.021032890408067627,-0.08284428839578846,0.0001291237947768228,0.0075941973055753675,-0.01129996939734133,0.036146217512171966,-0.0019905019397990892,0.0020064742211343503,0.007537638917637332,0.0031928147854861305,0.036125911000156705,-0.01219983706216449,2.272673843166256e-05,0.02117669459784264,-0.04110361402151436,0.12774377529814857,0.006417043197331252,0.0010519898061969592,0.009541873283460909,0.022072198715884367,0.19698045806131112,0.054777001229263794,7.461877201120894e-05,0.006151311289214683,-0.017937123242313786,0.027558151241994986,-0.009517181342402219,0.0001536201196796771,0.0074236951056117296,-0.06265278187596648,0.07999841482247469,0.1322924278667103,0.0004495343588783735,0.009682019593800916,0.00322893407809454,0.015839970200336895,0.00024484713301545094,0.0015799929877626333,0.007921641619025225,-0.008948609778572697,0.03520217433902594,-0.02495947161108939,8.155985616422416e-05,0.01726996199135415,-0.00677265393557393,0.009325323612229078,-0.060256593953705834,0.001805394706860459,0.00044205993573714734,-0.015374511269197559,0.05050538018593704,-0.11841493342733746,0.00012060899843338604,0.009455813093068447,-0.024158180616735428,0.057660732810656215,-0.053722262784660205,0.00016984174469809115,0.02423135316099831,0.041886954627085075,0.17323091990406353,0.05290492224074952,5.90156642568095e-05,0.019007525596548544,0.042019556860004026,0.12574378451044332,0.044850218228089794,0.003167254769322673,0.023574697280370864,0.05898089852689327,0.3063348014505774,0.03288330855908677,9.577576224503487e-05,0.0037433271138351118,0.015945724072060283,0.08600879153534638,-0.025950097577013637,0.0001344504262586969,0.0059824031129903695,0.00804264963787956,0.04561241215176771,-0.013145613857160003,8.339976151029692e-05,0.006986228330903409,0.0581752134548472,0.23856868512935478,0.053537843086267085,6.128750524282719e-05,0.006586931692760921,-0.03998628230267265,0.06878909106900563,0.08538878517230894,0.0002834137071450231,0.025831285540142978,0.02046044332227776,0.08238590447811536,0.018723621560234844,6.175562215391338e-05,0.005548662609693566,0.028338955450366275,0.28853505458993023,0.05159623137086195,2.534057937211083e-05,0.01413592486612065,-0.019520165086164082,0.05471381388496353,-0.0686242339062689,0.00012470832956810952,0.011264820927883258,0.0006884900462295567,0.003101015947588765,-0.018848888206401,0.00034996260217324675,0.006479320203482838,0.02671164217771538,0.13697845900079103,0.01404941093817445,0.0001116914960848709,0.024428221345014052,0.006520724353215911 +2021-04-08,0.002121295624886053,0.014561334278222005,-0.02821913990028028,0.00015405883460376896,0.01845403871271367,-0.00674200785689469,0.023576940941343952,0.0008573385119599521,6.861393476178119e-05,0.017762461437954343,0.06650759567879522,0.20625639890451125,-0.046484889880422264,0.00014916296977653703,0.002938219951073429,-0.017713756930944517,0.01880548228540915,-0.018787185808741,0.0003179025865375565,0.006768551669174226,0.012338098481865366,0.026685102943556166,-0.008547069546724271,0.00024192297929005328,0.010190103340040082,0.00635886352958175,0.017449861919548212,-0.044909713956462705,7.956723192052274e-05,0.0035855290559877384,-0.006106499226812429,0.019323386869621404,0.0015921550967424281,9.27254421238592e-05,0.005345181282846256,-0.017195251585057063,0.14758317862744924,0.01800020399847436,3.9954922168212584e-05,0.0023653727861254357,-0.0063562494103383315,0.005259744395971116,0.002944470337019207,0.0009319252460860324,0.0009612070695590235,-0.025400795248811666,0.06341897090552547,-0.014095624510318233,0.00014005222397442608,0.019879623886119323,0.001443395844487674,0.0011261547757423498,-0.039267457213622695,0.0006264865130602044,0.002321431354714155,-0.0037605868523802803,0.04498402184368315,0.0022668475248555676,2.491266174594515e-05,0.0002484118094771724,-0.027236093019366907,0.07030288186434885,0.012345778799468316,0.00011508605905680501,0.0009609936402933826,-0.003342077025391283,0.01826242240240071,-0.010886974898011893,5.151336138008768e-05,0.00248700784859749,0.019581674726938995,0.015285658576271208,0.01748862651328635,0.0024985534812030975,0.00662571506752683,-0.02992317997999933,0.21567015454675895,0.004154337244977223,0.0001141746799760092,0.028198039631935925,0.03775231491566553,0.27593861393359753,0.020562630168520873,0.00021185530355287554,0.009859513425341969,-0.036040322043463906,0.23382482815609246,-0.011275150645140087,4.341691838550941e-05,0.025027140926958166,-0.020543422821845236,0.12777964069886158,-0.02209547467662055,0.00026497075894076327,0.000445798789368141,0.03336277551874776,0.5566874512492184,-0.00698872715980291,2.4870297076907776e-05,0.021068553220798453,-0.013428685130302096,0.12904178898966398,-0.0725005014333927,3.476840953643673e-05,0.004997648044007324,0.00712053317891625,0.019833148537222112,-0.025535410041751062,0.00011564945906605583,0.006429690626286747,0.006055050776812569,0.038240463088517196,-0.006384334459025576,3.657522636077452e-05,0.03509016498375789,0.0016997137314498003,0.00503426368371419,-0.0010708875885215195,7.485437801693343e-05,0.012816540144031628,0.0036961268791494825,0.013125224569650786,-0.11943043512853932,0.00012876229948430385,0.0021047700044436006,0.011579485247043303,0.010629530105721667,0.0037784830702555874,0.0006226596867421757,0.005493738553745948,-0.013289538937899812,0.04061069936695064,0.00571190410875771,0.00013773853338539677,0.018214772359212348,-0.0417341805097496,0.17383263433151833,-0.07894198161803223,0.0015409187975914521,0.01285428122915995,-0.05704000244695763,0.5149413034408734,0.0500698152148522,2.8484198445452247e-05,0.002115157115349219,-0.009653498098084697,0.030241639352493212,0.002386706177645971,0.0010436398536698345,0.015652754720081787,-0.01276650880991371,0.10651309923979568,-0.0450524933555667,7.981688430491709e-05,0.013854739009745416,0.000574076598238606,0.0008602324931867395,-0.0403153166864834,0.00015750682854006215,0.007053365700792754,-0.00927181117009817,0.01456809048317095,-0.0140278204074442,0.00036531361785801934,0.010081467258549028,0.02208498763819076,0.10556734870107119,-0.05293597190309938,0.0016215034878494107,0.018215704206691517,-0.03808865695435444,0.1274539451600827,0.0469155396593391,9.588104233746728e-05,0.011337355264558528,0.03322618019922752,0.048715324590043414,-0.07423144457333967,0.0016954774082543745,0.0303368480381889,-0.01876082821969509,0.05583855143024473,0.04751275991254538,0.00013311711605683272,0.019594246366151962,0.014972868025305185,0.03881714889805134,0.01749012299335508,0.0001563657885116812,0.008536281250299205,-0.02847011686791194,0.14658122219242914,0.03770064321298662,4.740507482571738e-05,0.004546411157755921,0.00723090402957971,0.026460868043629036,-0.012992045474258336,0.0025900405793502475,0.032071302108165375,-0.027740579610727133,0.14321482094464152,0.038900143748209035,9.635364254236014e-05,0.005766992879638018,0.018798146168775037,0.10754412277172222,0.018370338591654392,0.00012676201240815333,0.017605448879217032,-0.02860622098649422,0.13431311939081533,0.04090441243050311,0.00010073740342200996,0.015040960779319464,0.040375455874972134,0.1461814463994217,0.0083209735494705,6.941807705123032e-05,0.01929956590610482,0.022606066723589474,0.04152584211709002,0.011113109359104445,0.00026542140928156844,0.01812346004864185,0.040889836325459665,0.1579406570539113,0.054306307743788966,6.437775201564784e-05,0.00240635744763643,-0.0015867607166848371,0.015151231399452078,-0.0012142126461116242,2.7020587936650122e-05,0.002443212344106017,0.00814128798605442,0.02568887363247368,0.0094711232479085,0.00011077889267340431,0.004067912280684911,0.003901609440431212,0.016905696261917486,-0.01988186850832795,0.0003637799026688148,0.00838555022082118,-0.0020176774826777396,0.009887193567423878,-0.01139948240389411,0.00011688277302097863,0.019697296967956215,-0.0018456174142208804 +2021-04-09,0.02655465750231637,0.18816758402424408,-0.004585013989344519,0.0001492390512371928,0.003821706015384163,-0.004096691249825264,0.013483235889525639,-0.012623825660064463,7.29037097572265e-05,0.009755126155664866,0.040876564146343525,0.1614700142389723,0.035556473584711853,0.0001171061505290325,0.010756850363310479,0.03469072703553073,0.040182376741841094,0.04523215816595486,0.00029137053864843824,0.008452991765095244,0.029889829371666683,0.06154308390880884,0.011342872115106218,0.0002541218178019983,0.006388211619661665,-0.005199904539428344,0.010249637334410531,0.005597831836192461,0.00011077292199308275,0.0020881960882989754,0.03323437297744196,0.09838236140630757,-0.0025523916361826758,9.911972815145219e-05,0.04616830564209124,0.013157395717045247,0.13202583791429726,-0.014126549026907761,3.417508619487078e-05,0.01461363703021021,0.00910938761189385,0.007688092672553281,0.0016931803006516638,0.0009137246873301355,0.001582324382931058,0.04255407086315527,0.1211030245702299,-0.01573234071630338,0.0001228706084770768,0.007703720365826082,0.00442974288669559,0.003800838227178345,-0.0006413787869636613,0.000569670187680884,0.0012198756547284766,0.009552438968843545,0.12673164488620758,0.008123519372678908,2.2462184457870056e-05,0.00513600546219314,0.03678629818523712,0.11213193805772695,-0.04462960655637269,9.745582364893648e-05,0.013620813989108554,-0.0024127543073810503,0.01478789486725101,-0.011810116032657603,4.592705137718289e-05,0.0024950757214637627,-0.009698817654364532,0.008738731036724644,-0.054039627944223574,0.002164678452711903,0.004325019130478278,0.03988668860541015,0.2623038609571667,0.0030236854603432925,0.000125134023023934,0.0025157515720950424,0.02179123967482753,0.1363026581259359,0.0017268911437600591,0.0002475630610210344,0.016149606805806464,-0.012095680298793232,0.06692868885482757,-0.02549003739259739,5.090716807730951e-05,0.027222494498328087,-0.03413230181400194,0.17057831681857413,-0.026042570265098597,0.00032978322442919853,0.010729500706384253,-0.03718272728178387,0.5267039743528391,-0.025209119149610746,2.9295767286194128e-05,0.02803920914439765,0.011074839849210576,0.1091801591329625,-0.04329424328871059,3.389030214944269e-05,0.0025406994908574935,0.020334364989230035,0.0559886010019656,0.022947213489294883,0.00011699135057249633,0.0011196697925037254,0.017729620250109726,0.14116198496823779,-0.09111992862990517,2.901175845930661e-05,0.01641795895641538,0.011607923819765583,0.0361668719970735,-0.008360345913278508,7.115754931788195e-05,0.0018406533086201887,0.0017099872861658842,0.005776204903085292,-0.019689013820684012,0.00013536266190195315,0.003464603385845223,-0.006050987796689949,0.006567229793222166,-0.05204275231567796,0.0005266470132731962,0.005933282223706977,-0.02179660387079795,0.08681259167848737,0.011558545436838038,0.00010567983311796164,0.006434717247927789,0.0676461893447493,0.22902171475239338,0.07335170841414959,0.0018957708867210104,0.00424640313801521,-0.0128241921053032,0.10876269208720776,-0.0030378166600428243,3.0320213963548415e-05,0.00984848049103276,0.02804029219976715,0.08256038513792578,0.005081924172133736,0.0011104067535257457,0.0026722795360917028,0.02429322984127931,0.1659577227166133,0.07031949507007637,9.747953202207175e-05,0.008925623603367521,0.03596940927238373,0.04822156200115268,0.1626800456812377,0.00017605056277516243,0.008120758486218078,-0.051129337738078304,0.06427826638654392,0.03393584990565852,0.0004565726854308626,0.007518374637930774,0.04629409592532899,0.18322725810910528,0.03913444738112863,0.0019583299489809715,0.002958748807900253,-0.00604844309582498,0.023544924600142656,-0.029498634471884024,8.242076962369132e-05,0.011580908937105002,-0.04566036685378177,0.06203655990756939,0.027261741387819102,0.001829653628365953,0.024602231684916185,-0.0274214734844709,0.10926210819317256,0.06077255963306516,9.943453528573284e-05,0.005153339429939542,0.010722113981595234,0.028883176938270392,-0.02109319129270565,0.00015048590868734087,0.014164278683245744,0.004302687393830931,0.01930545092609431,-0.026299267857926655,5.4396852212549314e-05,0.0038485795434849567,0.02105321196146393,0.07129547529393664,0.00957265877670361,0.0027988166720716457,0.004703310096646268,-0.017193668257991786,0.08381359736931397,0.01611066294820376,0.00010204568194067898,0.0038090870533810986,0.02468014023882839,0.15449895118154464,-0.10369007146525537,0.00011584648792511512,0.009412565643325196,-0.01307638843143225,0.08546077969502441,0.006489422597396234,7.237184772030671e-05,0.01539565463167355,0.000969408522589955,0.0034330985535439558,-0.04406867564683592,7.096888100265298e-05,0.0065189019888322736,0.029029562195991034,0.06046394730768687,-0.022383136058569512,0.00023408489156187594,0.0026226501624661727,0.010615293113016542,0.040321654195106915,-0.09591809120451852,6.546482717751714e-05,0.0023074478483013057,0.02184822036560967,0.2218396631970995,0.0028565725116995147,2.5410204239419453e-05,0.016368590372739477,0.007095942116937195,0.021841781223750426,0.010342929498743316,0.00011356146226141622,0.00032467965438816033,-0.004642466786139088,0.021134023430239342,-0.003715279850594402,0.00034625383457181805,0.014974941632539925,0.018444082315855866,0.07385428295793385,-0.008248271939736422,0.00014303857069513943,0.005568478035624125,0.009028993816639757 +2021-04-12,-0.008077903139730315,0.05632451934314783,-0.0343050540813983,0.00015166582470353302,0.024848888354552748,-0.029004829323972463,0.08672024185547504,-0.05870966613354842,8.025283079653087e-05,0.008321050942757254,0.004949617569398932,0.01886061441406693,-0.01361826395503912,0.00012139841391103304,0.004386093905097798,0.032867077772733566,0.03472051110032892,0.055064738862058635,0.00031947938462589207,0.0005554433581213937,-0.009681019272005199,0.025978618984590744,-0.14944817326087903,0.0001949857155592117,0.005236983346450215,0.015281480724467993,0.04301619675912521,-0.039649339475942236,7.756756670128744e-05,0.009531773977274179,-0.016826254241142608,0.054718799487688596,-0.028972770645102473,9.022787753032603e-05,0.007375991970602342,-0.004615556677883781,0.03819136459923905,0.0006444700891834536,4.144360507955879e-05,0.011624872477451031,0.011689021634244167,0.010198646513889739,0.0012981750080341067,0.0008838537516875448,0.0010260368680110258,0.03171454669741487,0.06576889257537953,-0.031926076137299794,0.00016861642046707087,0.0026963350546617055,0.013357938874799805,0.010956047924405911,-0.045705983601965004,0.0005959500859969855,0.012494252823793139,0.015676477054580144,0.20348502156026568,-0.009998315138824102,2.2958251759264866e-05,0.0013637274879559783,-0.0024227114481295844,0.006873596801646114,0.00624167693001498,0.00010470530256323687,0.012269237252973209,0.006105484259010929,0.03455692132923637,-9.234800926650316e-06,4.973325563544002e-05,0.011667828814879285,0.0029982505869415375,0.002252569629600108,-0.04487950332753427,0.0025960477451992432,0.004824840160058617,-0.0037188901809386025,0.019863210070652167,-0.04528913637442879,0.0001540692703833969,0.040926654634854835,-0.0755409718369095,0.47002310790048235,0.13121685826885318,0.0002488694510489323,0.016065452056736616,0.02722926524425936,0.1884388315674207,-0.01614671531202847,4.070300523471275e-05,0.005924715629711832,-0.010359100107139103,0.05708201042859658,7.977214053599569e-05,0.0002990952919454568,0.03777971417971414,-0.008535953259592735,0.10423178470901591,-0.03963969841689845,3.3984593970935715e-05,0.00627002876915312,-0.006778997127915724,0.06865605729746305,-0.04988436960330325,3.298893531512089e-05,0.005981295393994536,0.026685853604075105,0.08414514840084902,0.015398361809628327,0.00010215856275528805,0.00919145822072523,0.0959115296861434,0.5630763830739218,0.12777334427035875,3.934557363210955e-05,0.017289350613503854,0.0009454308397918775,0.003032864146446052,-0.0009647418823337175,6.911211602255178e-05,0.0022635097685624276,0.0010921875676606861,0.004276964838401645,-0.013452663253102985,0.00011676431729411445,0.004583465917925053,0.04712760077589988,0.042732401937277925,0.04691471267692251,0.0006303671711623398,0.023430459168843672,0.004885392630742452,0.018341490754544488,-0.0025436907896048944,0.00011211167748676749,0.010432086806548804,-0.029301765704123676,0.09511874245476716,-0.02907734400591847,0.0019771829931170756,0.02552671587527404,-0.026946066588416376,0.22276807408584107,-0.008646470999660958,3.11046002123191e-05,0.023895600273406835,0.01919075751216247,0.05848317725721326,-0.053709256417610436,0.001072833753499289,0.027351308814967126,-0.006435392166314223,0.04478293246773298,-0.03598869307514194,9.569475440674468e-05,0.005449809256338199,-0.0233857350545471,0.038956116239292266,0.005778580796844984,0.000141683983378977,0.01957524051793978,-0.016068431820596498,0.028468700095606817,0.0012857809351309838,0.0003239737111714312,0.008912518303632825,-0.004207682781341685,0.019517188568483043,-0.0013140649432744518,0.0016709985528624753,0.005141836361887343,0.03641892327729795,0.11624935649098159,0.06269331990498646,0.00010051408295037992,0.027438997497975043,-0.07078500321916195,0.08875556091833031,0.058088339602923846,0.001982544183752989,0.01084350414037014,0.0048352447978981476,0.015735538877147407,-0.004525116562249667,0.00012174549016935706,0.014221018093868392,-0.0005975501405373779,0.0019078945802621019,-0.0037005217834574764,0.0001269639293259594,0.026732990475626803,0.016139722270617697,0.06693701661563954,-0.004330921593183662,5.8849615581657065e-05,0.010203029773617414,-0.007695051837744735,0.02731310294878407,-0.06517744622362182,0.002670290840685532,0.025047150557429936,0.023205084942203247,0.12172689774835396,-0.007438259426867727,9.482812842324148e-05,0.007610199094553558,-0.002571450873789736,0.014787831083345226,-0.00812649901961652,0.0001261056471064933,0.007886632808454424,0.007232811937569941,0.03794453250272862,-0.03027106667308306,9.015849745213536e-05,0.0005034598747920924,-0.03740702668664306,0.1970082885750107,0.030763424550991653,4.772171976505794e-05,0.01682896127783482,0.04094330710981408,0.07822248826118199,0.05076787936554462,0.0002552000095376412,0.002170539527707199,0.004223018408348666,0.016390054741916,-0.0017503102396002133,6.407032785485126e-05,0.009730886895743772,-0.041029799047967774,0.451820612754259,0.1223012524852428,2.342958710449588e-05,0.02722277563240567,0.012933148609369591,0.04053348368148578,0.01715354663308548,0.00011153195152705357,0.0023222461875772316,-0.005933201552889129,0.026462716970977945,-0.04369173649524323,0.0003534130977654226,0.019552944042597633,0.015570094859534322,0.08633111673745934,-0.06143986538444631,0.00010329889972209042,0.004278634058317937,0.0011637540742156615 +2021-04-13,0.00844677003366973,0.05681812340377731,-0.0013642691339874197,0.00015721369271428227,0.001668435564922679,0.036516511370703324,0.12367984406695898,-0.03317989206490649,7.084364168294379e-05,0.003553491564854865,-0.02686179907411241,0.08808115151829958,0.015024006685326803,0.00014107475901097886,0.0032341538811324713,-0.036335955776380734,0.038149445162412574,0.11261310640008193,0.0003214520639354979,0.0055776424922870625,0.010051158366507173,0.023207853201796493,0.00047093221885669397,0.00022660992099341815,0.017569915000366455,-0.007384295272507694,0.017309668828886016,-0.006649433233300622,9.314660602184927e-05,0.014151940154558722,0.015572707377896898,0.05583138526747105,0.000522636239873105,8.184187577717037e-05,0.011361899986455686,-0.019552236407870627,0.1523300186081477,0.013866967803041199,4.40158972301744e-05,0.006215252885361231,0.005615861946065162,0.004128712131418157,-0.08334463455428136,0.0010489302406964814,0.012061566791438133,0.010251690027330987,0.028152806555106227,-0.004265014827355551,0.00012733144173061983,0.005294416204500017,-0.009702168557615755,0.006222967558384037,-0.001373611723708386,0.0007620713536664014,0.0021965433678308483,-0.007596813326275022,0.10757747711452255,-0.029950264340006263,2.10442227029362e-05,0.002236706470652363,0.027946679223730564,0.08541159086826577,-0.025757709531256796,9.719959085682606e-05,0.01757586623395706,-0.007864485438680525,0.04617081561304409,0.0033635011498485937,4.794734727768198e-05,0.00299966953287558,0.028032147880958293,0.023814626073316764,0.03720102309519377,0.0022958080869330973,0.0010305143789877014,0.038715114479800715,0.22762263294410737,-0.0006967088162590984,0.0001399642795438128,0.0023782392533901594,-0.006529199090273842,0.040058399998460954,-0.0028974604590474374,0.0002523913952828408,0.015903729858225194,-0.04746979763079034,0.2539289524191418,-0.00039697374090545283,5.265821280524071e-05,0.0018816897328863733,-0.003118619799224961,0.015120418591291072,-0.10089704744693875,0.0003399268148906368,0.026427153944963405,0.02512579022884552,0.3143201411799047,-0.026664604092423536,3.317246541642949e-05,0.003115961659802725,-0.023798894792967894,0.24948178064136295,0.11668856091870296,3.18712915467768e-05,0.008442378884716247,0.007920910909648776,0.023421948822842455,-0.0018264163170345108,0.00010893686092908315,0.01345587473739449,-0.014032330229259234,0.09277808096603853,-0.00486262542227835,3.493629028004526e-05,0.01952115713099164,0.010035638403386024,0.03280128624048079,-0.0028285146120119713,6.783151436558056e-05,0.006874295516430893,0.014484099089215973,0.047548933607571175,0.07365364163019707,0.00013928338135829442,0.0006681858632222068,0.03479539986254311,0.039428023613139324,0.0016737324034010745,0.0005044201013971711,0.038181682598752306,-0.0004388904783538385,0.0019231022803017335,-0.03652516884587987,9.60593813332462e-05,0.00974276795972306,-0.006126228466624242,0.020615419229262473,-0.06637172564068074,0.0019073051998125898,0.029937188688963882,0.021488729281093924,0.18961364393092217,0.024896706270788396,2.914226784480669e-05,0.01510267357282607,-0.06823236853880173,0.22115830338028036,0.0968841765747055,0.001008691746604851,0.002160159085945571,-0.014986067635329987,0.12985014805582426,-0.06654175636538072,7.685477977060012e-05,0.004196564166190052,-0.012288251222926823,0.01642497188325607,0.000469510487603748,0.0001765756578966997,0.009200889811474561,-0.025038222508811974,0.04209966535990792,0.013555586146618396,0.00034137268235402067,0.025505797521205985,-0.04538517339188928,0.2142347796893987,0.07915924826070318,0.0016420045753046078,0.0027940330305177424,-0.007681227197358842,0.03349131810612279,-0.017095624076230283,7.358490628875577e-05,0.007724116811915175,-0.017359740787700716,0.022519353111430166,-0.004453807936056854,0.0019163044893657658,0.028369919157150317,0.011952370321049312,0.039726637214817645,-0.007570658452052306,0.00011920329837202628,0.015699560351579104,-0.016713711916231316,0.04381641684596687,-0.0017677877984277493,0.0001546309516704501,0.019799777896261705,-0.010781835784297953,0.04855615537604348,-0.01909152321730784,5.4195389946973426e-05,0.01811262203418373,-0.014595358051428508,0.040669043454675265,0.0034856610349458294,0.0034014872988520624,0.020892455682212693,-0.03804155230751755,0.22017089082641397,0.02465158952247543,8.594861868608588e-05,0.007079956039798357,-0.0063596086926844455,0.032881761270409655,-0.15692806006581625,0.00014026073383095685,0.002546621208396868,0.010048359394440293,0.05573512608208432,-0.002293101583612947,8.527365353932519e-05,0.013366849991859608,-0.001984900524373884,0.00865768443284587,0.0004098277022333532,5.7621477409317505e-05,0.011185871395280362,-0.07172959224680925,0.1399419829777137,0.16592843993373876,0.00024990775467607625,0.015048881925147964,-0.0036937601002900197,0.013535115302930199,-0.010521762555344993,6.786113230836384e-05,0.005344847422447917,0.024109898424635907,0.24720454072829384,-0.0015833383680142422,2.5163452214250776e-05,0.007474487678004963,-0.024154540288921316,0.07895337660493612,0.0943537476075703,0.00010693922506797733,0.001938537693619895,-0.019390635164579215,0.08656918445275896,-0.05508502742592771,0.0003530666362277615,0.00259705826730457,0.017818769320371776,0.07648061458725215,0.005236947345398135,0.00013344371756383817,0.03358918900584586,-0.004995042241128715 +2021-04-14,-0.022611470595631098,0.13258714174357236,0.030616349353550874,0.00018034910202621802,0.008496961488870488,0.025492878396868646,0.08143392407016217,0.016581333904854542,7.511454453931293e-05,0.02362379726924631,0.04727604981274504,0.15815849043011093,0.03884763957685221,0.00013827570294423902,0.01518820506587539,0.003370722068751596,0.0029875878612172645,-0.0034990908676581947,0.000380776479780788,0.008201253574362698,-0.009939092723321061,0.020641491468554193,0.0028092093136092133,0.000251943663497057,0.0013207642751662738,-0.012812706513534503,0.032645471830140695,-0.002808476747023553,8.569681243314303e-05,0.004182450436365035,0.02150465100588901,0.09336841221868072,-0.06959044367812081,6.758063693918438e-05,0.005360166309160357,0.01933421341950039,0.2098973520259249,-0.09198133789512541,3.158771151028101e-05,0.006179319239759177,-0.0021465386296302073,0.0018489679596471941,-0.05808107384833512,0.0008952701607536937,0.005053810963360928,0.04905299062764237,0.119514023316472,0.025685100120779375,0.00014351870597924713,0.01919601974662023,-0.0025910687504509295,0.001840115881431974,-0.013096314810122987,0.0006882688606306913,0.023314821973222537,0.030502600239997,0.4084240352945975,0.08846539039702496,2.225606394928409e-05,0.011074837530961964,0.013194073072698466,0.041091558368914836,-0.011232296431570896,9.538439094769358e-05,0.009985383758707521,-0.008532778284406442,0.04118937432128742,-0.06327374833307255,5.8313228197999704e-05,0.0004085154874867002,0.036685872302002064,0.032983899588114665,0.04607474303760393,0.0021693010322009322,0.007086744688502603,0.021726219342514775,0.13562595846726733,-0.0013070141641119218,0.00013182368482413253,0.003389588358759514,0.016695611463379403,0.10290598613298538,0.002419541955359161,0.00025122908840559985,0.0030160806027697247,-0.008791637809154571,0.054009743502596755,-0.015537667600761222,4.5852036481925195e-05,0.01835147588014523,-0.007232236679780219,0.03619937146637466,-0.02410816123786104,0.00032927473418582873,0.0044216623622614975,-0.03843758116018869,0.5072891410097488,0.009554739864875853,3.144348796240917e-05,0.030805931978179334,0.014153441079517309,0.15473086596385174,0.027322369202179432,3.0560946053034576e-05,0.014203572669243724,-0.012152849074088994,0.03125376522928676,-0.16727153814960874,0.00012525599312862112,0.0124882635170788,0.01821819425587514,0.1382599588663864,-0.04638195845588412,3.0436960541744984e-05,0.05549412491646866,0.004822969229291334,0.012992770691675006,-0.0024563004489659246,8.229815512003005e-05,0.0013611739455386927,0.002649114131595735,0.009632705427508192,-0.10640652714551295,0.00012574797075950566,0.0016379035347075552,0.019900149337679064,0.01588336857168975,0.005811953144960996,0.0007161257385249634,0.020086937215137973,-0.007459171414033662,0.024938982098756782,-0.009587423991669551,0.0001258919246316984,0.0013550461963921516,-0.010169719413969993,0.032655033173376244,-0.00026262262310497116,0.001998839928084753,0.008189738410014406,-0.03395637574247282,0.3560924784673879,0.007540093263965119,2.452114387217022e-05,0.006212232815159233,0.05917813686034829,0.19663811252979788,0.031219000376968595,0.0009839314915889871,0.011994341735933186,0.01384455270883012,0.09905680345395874,0.033316721739202255,9.307226072562896e-05,0.013667093966750263,0.02391497857494339,0.034153217657800404,0.04086742891604645,0.00016526609159960161,0.01535082249831141,-0.0324025309170421,0.04793364002226649,0.017303584835208226,0.00038800957011853916,0.014758712523841686,0.02206264881467264,0.08509627168452294,0.01074019672425227,0.002009543725760917,0.011203035190806952,0.0006255926036652469,0.002367413004457693,-0.00863189236576677,8.478283741593219e-05,0.012077164785265557,0.05949744975525287,0.09109821577801118,0.07894283728196172,0.0016235500135364021,0.010705776952350976,-0.0221756356659465,0.06403132715017876,0.03387358775008418,0.00013721437472540468,0.004120809016033892,-0.03913183184028108,0.10156324464497515,0.04423253543319919,0.00015619027437815435,0.018064792762941775,-0.006089831027284596,0.020752976815089304,-0.028741333854538993,7.1620733863387e-05,0.016033549737272324,-0.00924224244773874,0.02604671794163634,0.00021160457898218175,0.003363120341596772,0.0016682792687290394,-0.005593265265240742,0.026884873858413975,0.0020954521111096716,0.00010348990401689712,0.008746464363410391,0.0032524323439137113,0.01683601208522766,-0.001664227704859531,0.00014009731978772687,0.0027589260750216235,0.012597671726334143,0.07782369170906302,-0.13578911846098032,7.656444828968823e-05,0.004251113709065198,0.040887602640371834,0.20661872296337833,0.013111544606895134,4.97358299228604e-05,0.001644129645290505,0.034860219524791694,0.06611034873110845,0.02794768865967044,0.00025709288848316155,0.008979886389557781,-0.013590099226301413,0.05169587568185801,0.0222388891067554,6.537039471277819e-05,0.017686677680477013,0.03611563877416859,0.3429906590111928,0.05017870098649785,2.716716330816575e-05,0.012173432040991552,-1.3418585123856166e-05,4.4335138675049574e-05,-0.0018252925859492297,0.00010579560315826338,0.002017210545880454,-0.02198093569852249,0.08774900755632488,0.017773586522281226,0.00039484981006377974,0.002393407334833257,-0.01910847374256737,0.08500609567520914,-0.1269323681224211,0.0001287501448654928,0.029696367071240713,0.006075645184981499 +2021-04-15,0.010723624235802252,0.07073849742243081,-0.03456278270415123,0.00016031432872751715,0.0006196213677577827,-0.0087675551219266,0.02939816437096351,-0.15218556918239368,7.155975051367196e-05,0.01136293980515144,-0.011451742877731904,0.04012984119024232,0.0014703727262452256,0.00013200833451980744,0.016915262250201686,0.012701336391451474,0.012561574172111086,-0.0076167364497081134,0.0003412504302379554,0.0006399160416085102,0.017788885674750163,0.04511256845691326,0.003948624102648158,0.00020632362627766824,0.015627403181430372,-0.024110113982968986,0.06416419705914185,0.06149766109234693,8.204521160112744e-05,0.008095052320370276,0.026426770474636554,0.09148903525460707,0.0004159264677269503,8.47549164157258e-05,0.007799351727466519,-0.05302444133809384,0.5036917156325071,0.07804167851578228,3.6100224945173935e-05,0.0023109582765451202,0.014000174990631628,0.010830891599100154,0.003451079105456302,0.0009968137992280434,0.005182136618315408,-0.010156941003330594,0.026203422723342196,-0.009658178086394431,0.00013553978523018107,0.028955002326191224,0.020816064129861707,0.018246988053737062,0.042541664916436676,0.0005576115844688679,0.008857362387259954,0.001248578625761482,0.0154146544372169,0.0002073124276091705,2.413820060289595e-05,0.010332316214390357,-0.016254051522086546,0.04395062916019192,0.020085320619271887,0.0001098620183451452,0.014169540527719352,-0.00542467587854062,0.028401865585471,-0.09675649851518964,5.376364997867714e-05,0.009564309959469153,-0.012616088640670386,0.009761374928966468,-0.036822920277440455,0.0025207902486416877,0.010805475296061313,0.050247477369808856,0.3480787606435566,-0.0039879168641426535,0.00011879245210133442,0.008353232695583532,0.045291041570860696,0.27765540527238547,-0.004506425596213295,0.0002525889850126631,0.01000693123247021,0.04240899104085829,0.256924135699666,0.05268815400634834,4.649582863466094e-05,0.02708544699858029,-0.028526567536060754,0.15946937348915297,0.01508293751387932,0.00029482142275403844,0.0018926882545508348,-0.06742683169811291,0.9419606162545252,-0.022228620825007307,2.9705046689419195e-05,0.003296642955429708,-0.027946316534596748,0.2994903857634823,0.10831095721308219,3.117621570498937e-05,0.0073691225683742995,0.02411214126236916,0.062181570729103686,0.013222328290807021,0.00012490989602338985,0.004802869554109639,-0.04994650229241976,0.3580513889465614,0.0006251291648441221,3.222197035109839e-05,0.017631989110890596,-0.019536382012743075,0.06124651248549027,0.031093695014766755,7.071965887069386e-05,0.011495681681585695,0.01896413038210648,0.06605905382751687,0.13260534285814246,0.0001312650714161709,0.0022767906008258794,0.04982198533184386,0.03633854916364301,-0.017594475837305237,0.0007836623948705695,0.006633540262291415,-0.04213308843664627,0.12952250108344837,0.009722042263642615,0.00013691911455417395,0.03324632218974101,0.00014628166452770752,0.00045600369698944827,-0.011248515849034723,0.0020589258418243894,0.01802509570408,-0.015303243675558692,0.13774228073899986,0.0002579789028822018,2.856922235292648e-05,0.025419675635452256,-0.024830800204066694,0.06768520762296022,-0.024275807423590843,0.0011994115310749382,0.034400276813178116,-0.01519109794176681,0.1224469238303196,0.002161620332155082,8.261652579087118e-05,0.004142929770888931,-0.009289234081750208,0.013553128172119703,-0.014901444291711589,0.00016176544162478526,0.004589603361646226,0.022206686756430286,0.027120584442349556,0.013862342951938276,0.00046999002009355485,0.011653244354420838,-0.04094925570525982,0.1582862618733742,0.0447645376350399,0.002005178922058946,0.02257702298776278,0.018915096224246346,0.07674792324646716,0.020358451290391814,7.907374226435364e-05,0.012164398701948825,0.014054167696074583,0.021975991650435373,-0.01141987720628354,0.0015897683321732352,0.0006069984909736861,-0.0484445598712376,0.14638298610697903,0.1333336341108055,0.00013112045539222548,0.005557851725030146,0.03158660285596671,0.07016182059775045,0.0069064557722727715,0.00018249982244067714,0.00018144338810255486,-0.03466875578196207,0.1481952971049329,0.006828472315165474,5.709758752493346e-05,0.0031459981461061824,0.08470287618746228,0.2628424238784558,0.12022089925336617,0.0030543637166141114,0.012862806975345496,-0.001999773283229453,0.010953807708398688,-0.01067993793079009,9.08147140771202e-05,0.00755025307713901,-0.03246627867600612,0.1853452320782364,0.21802601236673766,0.0001270316321310754,0.01254475616209337,-0.01821855128083539,0.0903797477140411,0.022599220694204343,9.534357087817286e-05,0.0017347070722812156,0.03211887499523889,0.16697674800817194,-0.11746282685553036,4.834501746332369e-05,0.0063017662971353965,-0.032498738936385566,0.058649697220082425,0.032739236649215825,0.00027016564917940576,0.01076186698962194,-0.0006699412517770834,0.002809799073283722,-0.01821219152927057,5.92892328975904e-05,0.0026842508690901887,0.01820265275833378,0.22633757332106946,0.006621192609677961,2.0749580197666062e-05,0.011433605561332431,-0.006931605778159415,0.020966958512938973,-0.024416879612879878,0.00011555996024285609,0.0015554753968145833,-0.003201674553239135,0.013132561052154317,-0.0020205973517433643,0.0003842870298054838,0.015004691407555396,-0.027405289734711406,0.1279121796777768,0.028097209641578573,0.00012271405133125747,0.023088959199202935,-0.0025850230866289645 +2021-04-16,0.0003634288954435931,0.0023256812098124977,-0.03469344275664027,0.00016525547394991157,0.008624984386964102,0.018530288287157602,0.06164896538133791,-0.010182333318231223,7.212185859639434e-05,0.006740665693929576,-0.01998696064482178,0.055076222131345186,0.00535749683527964,0.00016787260083940268,0.0006424820323961402,0.008044521114984361,0.006665815741281296,-0.006111187161231184,0.00040730031660276785,0.01660040553727024,0.02688077465071618,0.0809113993384677,0.023144451822437514,0.00017383204532143946,0.006516989581564545,-0.0032653026364882535,0.007583217708264604,-0.013824147125985786,9.401922227310758e-05,0.003951313152912454,0.024635643691301355,0.08491174827584938,-0.0085137944084309,8.513065729530754e-05,0.011145795730901948,-0.012958222357719432,0.09949642762377899,0.0037488242142513827,4.466183416176053e-05,0.008942919656334591,-0.011102176021108776,0.008577866085551266,0.007146023122458283,0.0009980990296167343,0.008666884053401058,0.022484945425019266,0.062313004446341774,0.0007612956853193209,0.00012617549951827824,0.001974638982095542,-0.020574438137938314,0.014241525161144837,0.011698612928989563,0.0007061481745555945,0.0030911486813626644,-0.006229487364361767,0.08950137800686521,-0.011993608623810414,2.0741749106671222e-05,0.003633123582050676,-0.01674197002240755,0.04749491600661299,-0.022114243608974585,0.00010471538018810247,0.006388925215545937,0.00449230095328023,0.0248923172236469,0.0039630564964720635,5.0800189778111115e-05,0.0002644898853144306,-0.02026743761966232,0.0165167718288976,0.011803352294918062,0.0023932972859054763,0.013326382894869386,0.0200110983932982,0.12334415371069235,-0.012732758890073151,0.0001335071317255434,0.021411900288712555,0.07872477115784912,0.450776322381045,0.06648529689662393,0.0002704322881124621,0.007349723344345419,0.011263763375762837,0.06512708013142524,0.006149151276979932,4.87172613881871e-05,0.02680811210389362,0.03510070928360232,0.19082122018232067,0.024974304640920583,0.0003031628849779204,0.019122141882560666,-0.000847587048329951,0.011455532597978007,0.0003847187781590642,3.0704304017755885e-05,0.004926004096634502,-0.002210173255032257,0.023113364384845833,-0.046497853290442516,3.194808728539603e-05,0.001244724729368677,-0.0008739181546141525,0.0024216173749889306,-0.002183803190610181,0.0001162486700996226,0.001153815402588206,-0.07479594768381813,0.49984762807348937,0.05529912911596044,3.45647014198215e-05,0.014407298959496927,0.0007528690424325091,0.002105228660377703,-0.0021689386932742674,7.928618984689446e-05,0.021480329323777955,0.015765245932776454,0.05424524188440901,0.059874563761334265,0.0001328885906388473,0.006131423578486485,0.020031979098323986,0.017675009824973564,-0.005520382927565082,0.0006477982282811362,0.02286865323255129,-0.012550594350669755,0.05128726512178787,-0.026519287110979336,0.00010300083867711697,0.01561740305500365,-0.03810901480124086,0.13165055834198258,-0.03691209923467708,0.001857907940448464,0.016332626947540556,0.019740693449913596,0.1727998474004772,0.016474830424946466,2.93765807434649e-05,0.005296846179467275,-0.03649028918848741,0.12025270774015878,-0.020969462452003425,0.000992096027757941,0.027833806382913356,-0.020613051785005596,0.17403595976215305,-0.039512500646584174,7.887310625318399e-05,0.0023466752714490636,-0.0020960475646836624,0.002779609113991578,0.0006281083702040237,0.0001779765537079707,0.004741708674933633,0.02038749255248106,0.028813691029376663,-0.02852160228570865,0.00040613351915069914,0.002336276226700075,-0.027522572433478075,0.11193417641912774,0.02111934221551718,0.0019057970762089136,0.0021786799682992205,-0.0400245243163305,0.15259174883056392,0.0006318244131996603,8.415608025202727e-05,0.026545031979112888,-0.011557285173331034,0.015867281786598093,-0.03222830267261391,0.0018106332313221683,0.009408814363019873,0.03889906400667893,0.1348602440153639,0.01409474077972302,0.00011428026710168538,0.008114187226317881,0.018022896732017867,0.04292400710910916,0.005010690886621546,0.00017020985911828782,0.012624499095812374,-0.01871494815450345,0.06591803888515628,0.017692819364231664,6.929442176498787e-05,0.009406407134061974,0.0281430464100994,0.09531934276651052,-0.081519674525881,0.002798389261785971,0.013685956761095786,0.012276364208978227,0.06349128633304463,0.0018109322015600392,9.618253276462473e-05,0.002533934502540764,0.01791747770005384,0.11211522129510056,0.012450412473629107,0.00011589723595141256,0.00996534043281035,-0.000836680683291793,0.005444942474237906,-0.013611259743206768,7.268003793968957e-05,0.015649072509719884,0.008816317802716961,0.03768928178918133,-0.006610405016435003,5.8791801786968165e-05,0.0008419954616470323,0.04037151845588693,0.08055527983527835,0.036787793014123285,0.00024434894476762386,0.0061212812380146,-0.0337641648871495,0.14260044010079428,0.11605265445033427,5.88775218778649e-05,0.007160081906336428,-0.009305021544490609,0.0923957602476647,0.008624857913035472,2.5983438657157285e-05,0.020039169711327232,-0.00020477118015484826,0.000650670672658136,-0.00022430967548951159,0.00011000604864735225,0.0013275876409849369,-0.016724586025206524,0.06085592694312473,-0.1146404560097819,0.00043319203798269,0.021267076465709217,0.04838205724546147,0.22408021106680706,0.04827061233332538,0.00012366665732355093,0.014885855820425035,0.0007981299328790058 +2021-04-19,-0.01707902549926645,0.1045548303003365,0.012459145037757205,0.0001727450332329689,0.006539260124488343,0.006462746577978929,0.018324217986527277,-0.00018025828399439395,8.462568623344318e-05,0.004731817450976764,-0.012881489393153407,0.04249454199832585,-0.020996938998295377,0.00014022651213386683,0.006461184330482653,0.026989234049770397,0.035151078416052285,0.025257302145237727,0.00025913123350198084,0.02060212952498353,-0.006214740266696005,0.013551342868231855,-0.12425796119511301,0.00023995976141342402,0.01000267509766387,0.01832698153627971,0.05786098184232393,0.03893638162783014,6.915950611740074e-05,0.010129643638071348,-0.10318061011099555,0.3520963388104138,0.34271970661504925,8.598574086591503e-05,0.01478851774107582,0.014544085615562126,0.1216274302843161,-0.008532186881128771,4.100657581148638e-05,0.00011923151454751985,0.018724378022212756,0.015970887236718967,-0.007605616052872027,0.0009041138947962857,0.012339410848653849,0.008185618041079826,0.01720015776879963,-0.05520830274701603,0.0001664105789523291,0.008669740753857923,-0.042433163981703624,0.024522068858117856,0.19059941420006904,0.0008458097094499835,0.00042017046997041337,0.01767766507077826,0.23990475206248632,-0.012230226465920459,2.1958811979105012e-05,0.0006755764833444441,-0.0032757169565244197,0.008814116896723446,-0.010105080622646983,0.00011040242190816413,0.0012439315503098988,0.011405918606426159,0.05830378922171595,-0.21475189002149628,5.506749303272416e-05,0.001976963175270293,-0.004010955598072925,0.0033010490838264405,-0.0001235540537619987,0.0023698390141613014,0.02090261199335373,-0.0014834540768336956,0.011472844618185278,-0.08584137871303439,0.00010640330123019535,0.03297231292582306,0.0007693016614412899,0.004071710836588501,-0.00016326734544861216,0.00029256877577894173,0.003890665160011759,-0.03382640258053458,0.17829913541914896,-0.025956631259954285,5.3440133204567524e-05,0.004379004352884143,-0.005733557982382745,0.03182124897984186,-0.010338422741743921,0.0002969571555539096,0.0005774147297710999,0.03135508477726423,0.40011759775546596,-0.008343470702737858,3.2520001571761195e-05,0.028662598134680552,0.012245842707200374,0.11846260521970199,0.01930296704065844,3.4537357536163915e-05,0.004713515033489634,-0.034475738211388496,0.08634752933169021,0.06423080735739672,0.00012861345780515248,0.015763882366842973,0.04238402377542695,0.2967222428103048,0.02343610250110026,3.299472079477827e-05,0.03780172858837696,-0.0037311062878078935,0.011266523006906568,-0.04301162583078368,7.342181148601585e-05,0.015910389618019674,-0.0056529308505952605,0.019975847673446276,0.010724070906125252,0.0001293948677271259,0.0014607012897325737,0.005592132322188299,0.005422745654218329,-0.024123410027292843,0.0005894320757639667,0.026970324060382904,-0.026705920984183004,0.08010647479558534,0.01685024706544415,0.00014032205892080624,0.009777955223406354,-0.003271737935914895,0.010948368546584328,-0.024066532673776602,0.0019179985568944305,0.011943883775774322,0.006675385689142996,0.06412876104951463,-0.00088368671956383,2.676737042858087e-05,0.003140657895612041,0.04514751051650818,0.12800459859758628,0.014315137159729034,0.0011531332780499416,0.02402058406689023,0.010952279043001752,0.07411666661071374,0.013700471577284159,9.840434269428976e-05,0.0004886368401216012,0.034852391655103926,0.04755727413680006,0.10802191085238749,0.0001729661099258569,5.748409897238975e-05,-0.023965503754393144,0.04653768098457997,-0.05447423145117783,0.0002955872777919449,0.024575885321329233,0.01756398734016855,0.06278681159258913,-0.05494820952906686,0.0021682283922168735,0.003915021220631367,0.014491340844651677,0.05447063970700028,-0.11010971130207906,8.535647393710473e-05,0.004504741978133818,0.011319203181759784,0.013933965330994029,0.004634685141851263,0.00201938126077365,0.027029865734235707,-0.06349922782768715,0.2141499846575611,0.1473794263459258,0.0001174806749705153,0.03222859202454398,-0.05079253623690458,0.11942260921541505,0.0673393428140888,0.00017241447319966488,0.00695511696647818,-0.01887265137108386,0.06743119840595535,-0.1257220981331842,6.831026407941638e-05,0.012605013866484965,0.08960608319755108,0.32173025460187155,0.09723333332853919,0.0026397551719768435,0.010162910401208427,0.03140399846947621,0.15664572058448611,0.004336099362366982,9.972567473041649e-05,0.0020977736568774338,-0.026432954796323217,0.15776125493173143,0.09489310256475063,0.00012150835613203427,0.0037656024526999845,-0.0004694947883582887,0.002691963591566544,-0.0003243186389680204,8.249170739781507e-05,0.003916244001938,-0.052967904734388345,0.26620899993580804,0.07358576977455218,5.00077661188148e-05,0.020136078395391988,-0.031769384101619565,0.05337858117647063,0.024648763114330594,0.0002901824637057038,0.00940637984630403,0.01400886001120146,0.05608131195597574,0.005923969060806963,6.211535998076541e-05,0.011414062709158124,0.012971181998940436,0.15995230224318838,-0.006043266589358958,2.09228259846553e-05,0.0036863982264682595,0.0016640225443812036,0.004600852545225054,-0.0038692418780260484,0.00012642409569308712,0.0006014777595889352,-0.010623770923688788,0.042335170977959274,-0.038339149553296266,0.0003955536081746241,0.0011071050533268524,0.06343923258163212,0.27680993382054114,0.07307574541599099,0.00013126472867614584,0.016254494613124223,-0.0008758812454165927 +2021-04-20,-0.00517189117339283,0.04000456306451127,-0.010340176054745413,0.00013671823102331428,0.010850626090233328,0.020781143845359503,0.062077479866527396,0.009820393947468654,8.032410540279501e-05,0.0009385231386109662,-0.03749783100277136,0.1184169802670627,0.004931063357626718,0.00014648372318767835,0.0021134206467506105,0.02332145965571032,0.02764213289246901,-0.0411204013959026,0.0002847423300391169,0.012072952066882359,-0.024853440501714084,0.05632208375361932,0.028350251673446635,0.0002308902402020187,0.012155317662387527,-0.00641580014941566,0.01654207515742865,0.00787653960688447,8.468521168729354e-05,0.0038534897903777874,-0.002277779480576047,0.009410784535512532,0.0014013930609024167,7.101918781375459e-05,0.005966071777721137,0.029062204644283707,0.27513047432394705,-0.0700586389755277,3.622333849073409e-05,0.005790313277628272,-0.00514020111520343,0.004838302666639659,0.00898917119700884,0.0008192790798684063,0.010839255552285909,-0.017248942544321102,0.04320860305898322,0.01935285423521154,0.00013958994503070305,0.03844772054542387,-0.010984737029228017,0.008370138574283445,-0.01183663919865157,0.0006414774212009785,0.013856166147841988,0.00225007132071533,0.02973029488498542,-0.0836882403839566,2.25538068471056e-05,0.010008158349924407,0.015221954988835188,0.04538902013054834,-0.023144590854264985,9.962553441712252e-05,0.017431271553699397,0.030172358947940812,0.17950825231158885,0.24167040340674867,4.731367314886424e-05,0.0015558165421055148,-0.02625802464625565,0.02307584348606172,-0.0001580344473703869,0.002219358391070093,2.678530738325956e-05,0.039511759037036014,0.2620290584318535,-0.0420272739499199,0.0001240877803579083,0.002560306363630624,0.005961739670805112,0.044444230887544185,-0.04965612894694989,0.000207714036173646,0.0007763984309169982,0.03598282310407225,0.20936143188960982,0.0019492611833715483,4.8412722933030236e-05,0.02165714682708047,-0.045073074752405864,0.24358617614579128,-0.003548899515753662,0.00030496595188808434,0.011647316361988087,-0.03862648046085426,0.5313742031479534,-0.017474676869604827,3.0165803851305232e-05,0.005251514340582641,0.0034088448023306558,0.03522075899709842,0.0003233978496999901,3.2336292719080105e-05,0.003275939671687594,-0.004225407783772344,0.010945015860272874,-0.01296091722297235,0.00012435836072066198,0.006922266194565913,-0.019634676690132778,0.1395778489654152,-0.06663765773990088,3.249373463503639e-05,0.026741132228949367,0.002772632539980387,0.007320774234019964,-0.002277339485193023,8.39677825534131e-05,0.006439808747594281,0.0007646213551894877,0.003285658671407191,-0.0001407699261021701,0.00010640758186825489,0.001997183933699008,0.00019066628206758541,0.00019907866564750973,-0.04181185340505087,0.0005474251401986575,0.02602115218643494,0.006841193546722449,0.024512234181994844,-0.03712607674144176,0.00011747216947544929,0.012550004408976847,0.006649584757954241,0.024267331395224825,0.0003615205464321134,0.0017586996608706955,0.03449141013278375,-0.014009547254445249,0.1214411824882289,-0.0008712909599021611,2.9664723751196587e-05,0.011981059072858931,-0.013040758413835443,0.031636844696046294,-0.004760264879949966,0.0013476619190765167,0.005991710374420558,0.016817381179449392,0.13561038726400784,0.018949894801806994,8.258307596666607e-05,0.0025066883706716557,0.021138033897137396,0.028541302777091538,-0.06088080492672947,0.00017479788903986335,0.009275494856829639,0.04262607990137692,0.05952407686269692,0.07347873427289642,0.0004110424160732299,0.022582040271519457,-0.02429716063651352,0.10132041367282273,0.014141401999603204,0.0018586983433444243,0.01261930400328446,0.005541125652187263,0.018869811113637006,-0.0005637164334626635,9.421516563258084e-05,0.005507406778242865,0.04771044344193155,0.06598537692980695,0.04370696791679569,0.0017973925739320573,0.029691677934463093,-0.007418315343991726,0.026261035126411775,0.0009761075640248613,0.0001119204600476398,0.007927933864088046,-0.016521522218703552,0.03973125917073172,-0.001780293535189331,0.00016856915346541296,0.0014116721069108778,-0.004447357434868135,0.01846158064736445,-0.000964395451248719,5.879590485034057e-05,0.00782512049627275,0.056090781944099145,0.16224220099546555,-0.011881072683061683,0.0032767682203607307,0.03668024416973874,0.043804812620017806,0.20623187906280127,0.030928675374348475,0.00010565902500511179,0.006712370467076637,0.013638438438387088,0.07151537872829801,0.0046513976459108515,0.00013830121300263245,0.007220320667197773,-0.03662096718444883,0.22631811049430986,0.05811998544871887,7.653484381564519e-05,0.007919707572242621,0.011470169517615309,0.05029892740211704,-0.009133089164520485,5.7313708065909384e-05,0.008133255537862621,0.09550036196412938,0.18851730406940062,0.17229939180461332,0.0002469921731699884,0.03237150685577376,0.005619727927096432,0.024848713592361564,-0.0010159868202759843,5.623746756177655e-05,0.0045722286361348,-0.0014221486510899142,0.014510044032734246,-0.0357353310926259,2.5287596250200685e-05,0.0060897394166499925,0.0005478212394468551,0.0016314275772241222,-0.028573031824251652,0.00011737619625957524,0.001745398462226242,-0.03542704849627564,0.14511151476105877,-0.00012203537946906136,0.00038482304098070116,0.0024944003270125446,-0.026417066769548712,0.1241395811726108,-0.05093721478327287,0.00012188383597792074,0.020646565822119628,0.0030921401353503 +2021-04-21,-0.003975265269348985,0.025365571352168277,-0.010085594522479537,0.00016573264030799223,0.0010615224927049787,-0.03869438941596824,0.12931670657046163,0.10329175253619113,7.179660179225179e-05,0.023873434796777806,-0.014294614187734951,0.043175092105039864,0.0030877493613250145,0.00015315683040654785,0.011839804515419652,0.004930351600316317,0.005361306404848318,-0.0722148743891225,0.0003103667005597269,0.004181427156785113,-0.03531973093325711,0.06895266802301443,0.01706831433723837,0.00026801807494608815,0.009054056763368751,-0.01963025859741574,0.056733873288861744,0.053378383067545686,7.554927938064764e-05,0.01996860058265131,-0.018407617846606814,0.062322054488446174,0.007915705675544367,8.666538746869226e-05,0.009351089309126724,0.011180535241591875,0.0901804609643591,-0.005640608958074083,4.25156436641958e-05,0.0032154042131725446,0.022557795504072994,0.020449900803631196,-0.08603796824145063,0.0008506486873781947,0.015019101464167895,-0.0164147710069128,0.032075487178478544,-0.0034355211490140944,0.00017894660096939,0.00866870979293916,0.010828774690453692,0.008479085221756994,0.005222896922403431,0.000624244429508882,0.0033394592734656606,-0.003935886943801675,0.053460858190424704,0.011971953561391751,2.1939639055955423e-05,0.0022129837349311324,0.019685715069531845,0.05184650987330633,-0.00503129554818901,0.00011279314499510302,0.008073035803790313,0.024877321558871048,0.15347187802223203,0.09667352473989005,4.5628546083503304e-05,0.005427846099806227,0.03004676615150484,0.025469877145222804,0.021344278992864892,0.002300879418922164,0.01895908105360671,-0.031517236604073275,0.2180462419785231,0.039285626113375764,0.00011894649078008253,0.004520252885282722,0.01793474857677591,0.11018395422781616,-0.04328095846427911,0.00025204911137944664,0.0020303989761416875,-0.011149381820680137,0.06998972475234898,-0.0005022565445306617,4.487220994384032e-05,0.013345278269577838,-0.014098507348252968,0.0804295883067844,0.004432951184304145,0.00028889770828823604,0.021511567240204314,0.053908689404988594,0.679447402621728,0.06125464088856188,3.292555938966521e-05,0.0018325160743750553,0.011222910379305211,0.12559987976741002,0.016946963257536606,2.985368735170329e-05,0.003930284302978806,-0.048874999453982514,0.11785590960923595,0.11233623415503238,0.00013358514225482413,0.011309440502328832,0.02488373241347824,0.14161919248481294,-0.016292283615291878,4.058689097642961e-05,0.00017158455032528948,0.013071009368784543,0.036497573853868946,0.005291957160853842,7.940036743729678e-05,0.008195945954243795,-0.0040565739510768075,0.016022130746384047,0.003686654224736111,0.00011576778440795504,0.010332805901585038,0.0077385912767635075,0.008170369267568764,-0.12971838910296085,0.0005413719942833678,0.008847266996384735,-0.013916509270573314,0.04722917350517789,0.0021243896955685858,0.00012402406929774346,0.0069602429655354885,0.0076193046709064505,0.020718946354329804,-0.036042943485509384,0.0023602980559795255,0.005988722165111175,-0.032656538376065775,0.34714203971571583,-0.02742827285408952,2.4190515961558635e-05,0.003893062614009352,0.06317004542291853,0.221855839684227,0.0037843432913904564,0.0009309183568169059,0.015315260256367175,-0.010367852391747279,0.07534372528692505,0.007245526441772434,9.163626070078751e-05,0.00020704060553729644,-0.007050405839778356,0.009748640376763072,-0.011236564983044752,0.00017069289859783867,0.004323291892627919,-0.04183070640919873,0.0632608857492411,0.024608887589088635,0.0003795454977679101,0.019919390565016376,-0.0585753498908203,0.22450899388348763,0.08395399583301072,0.0020222343774272157,0.0417860331242994,0.031163479078599742,0.14807502311361967,0.024011046319583618,6.752343036769051e-05,0.014407075596141114,0.0366166644833902,0.04768506821437638,0.011469514920881415,0.001908857744160435,0.006730166906328013,-0.004957730603545541,0.014701478878754212,-0.0005505521219097759,0.00013360968382736482,0.03619627972128343,-0.04268539216085835,0.12572278352422364,0.010817220591059107,0.00013763397852921313,0.0014549557982419146,-0.020393672055643096,0.08290572093178855,0.010195708744715815,6.003781193690831e-05,0.018122893766561787,0.06192086428582926,0.20100206812695243,-0.06335933838443521,0.002919809663410416,0.008812478168990208,-0.011699127436189614,0.0683874289003805,-0.03691123164000735,8.509768900376709e-05,0.005099256860018547,0.020547924884311543,0.14025311754526962,-0.0038711443070633526,0.0001062468909345174,0.004433810617336328,0.0330128860453675,0.24228395543774486,0.06846230639026354,6.444771682994915e-05,0.013385136651553409,-0.012030834165572152,0.0491929020256978,-0.021164012032119615,6.146681241914823e-05,0.01962389079154444,-0.01196860103094883,0.02612632502771106,-0.002096999291962695,0.00022335437246943544,0.020087749639650678,0.012466615952672228,0.05339542506986648,-0.008725659064175264,5.805757721854628e-05,0.003970922563684516,0.049522867025334566,0.625525167170707,0.06269834984614285,2.0426420926723704e-05,0.007258989502004629,0.020721995306556128,0.07334745972563396,0.0939000503408433,9.875417340671169e-05,0.0003787507734596703,-0.0030974319828769416,0.013185341758959508,-0.003427327954390257,0.0003702869088901039,0.002593404718463182,0.01522978221486363,0.08401402843482589,-0.03030411176793437,0.000103827806615719,0.013246087640006189,0.0017505215962222405 +2021-04-22,-0.005967094019078992,0.04228804514039904,-0.040826985489101165,0.00014922165599812502,0.002032583625046238,-0.0041568667117034865,0.013705900601599015,-0.0076137145411238885,7.277279377036883e-05,0.009977827545059622,-0.007459460380925677,0.024733473805629055,-0.013326874821291895,0.0001395145488439887,0.008120046722322428,0.040425132426701364,0.0365421020166509,0.06930343091207322,0.0003733582754377347,0.020221449231380546,0.022753477322616764,0.05213424780124494,0.0011890591514012612,0.0002283612638831795,0.0001454442305934972,0.00423064746400841,0.011889017904798505,-0.003572681786149944,7.769759858741618e-05,0.003744783058727048,-0.012126072284216378,0.038235194806903045,-0.008574924973412916,9.305649715157525e-05,0.0046994150990809155,-0.015985583096879984,0.1472723153406607,-0.022313276406482722,3.7222538026526296e-05,0.01439033806973531,0.017571260619960272,0.012833611310927698,-0.02368388312388789,0.0010558417362749163,0.0059663321659219224,0.056805181866754186,0.11671118317237586,0.05882027344719462,0.00017019130531869235,0.04377123793059553,0.0017268265019724349,0.0011934951342837167,-0.03902191271843104,0.0007072165425057746,0.0009878461420053113,-0.005926445256769024,0.07268055509446981,-0.044350112302571444,2.4299583569226517e-05,0.007294684613969515,0.09944410339377843,0.31347215901057063,0.183891582411582,9.423909334962793e-05,0.00614162019176197,-0.002126278655573454,0.013276733207054477,-0.0007331859041767112,4.508071231103778e-05,0.0064512670823239,0.011642558454249321,0.010615600976322031,-0.04383180597405,0.002139078949786944,0.004627797886365574,-0.06831921057114335,0.4161143232434303,0.06084518107739196,0.00013510837858922772,7.579181735941037e-06,-0.020797926548572557,0.1273030631973288,0.005139132314017893,0.00025298188144459835,0.014182414798499385,0.016120084641744883,0.09117578506028795,0.0004282596053441765,4.980222687145555e-05,0.00384009265682728,-0.017686786334938774,0.09015569230411007,-0.05005937355488801,0.0003233274552375969,0.007913083301568116,0.016659464857143206,0.20083913593802827,-0.06275136085829283,3.442254161927449e-05,0.026994388453047424,0.016562927391193215,0.16144778418620678,0.01271345311069602,3.427573040320022e-05,0.002091668086051231,0.0037322043424074932,0.00997291936746869,-0.0074810931723949675,0.000120549624499766,0.014099791755786809,0.019718815202848888,0.1309648828741407,-0.028924660568558552,3.477909959050805e-05,0.012181514165309089,0.012218125214872177,0.03299204378509018,0.0002268065495240486,8.210559145556123e-05,0.014428988383531904,0.013970303707568828,0.052303153442953734,0.025614579744506396,0.00012213118450740112,0.002070966290738658,0.05576263490081078,0.05512534732832196,-0.12605050319224084,0.0005781859172362325,0.005141915777010495,-0.01724918466214102,0.071380915817352,-0.011923804266780727,0.00010171206344723078,0.02161701604110808,0.05350172130524974,0.15208250228267584,0.050068210570644464,0.002257915473941301,0.01192672552452618,0.007382788473972693,0.05888734387805432,0.001005430647802975,3.2238932649464716e-05,0.022485746039556276,-0.0057867064223273874,0.016953646816252412,0.004702002739499358,0.001115936770646134,0.02847646318574342,-0.0004173026529838355,0.0036512951924572994,-0.0029608758074178157,7.610791836038067e-05,0.0054635823413097615,-0.04533260597137089,0.06786182371958095,0.10427154770779154,0.0001576632755411189,0.0008959365436553611,0.0352987421681562,0.04801815012236573,0.0415286268464134,0.0004219468206292537,0.014842391373899217,-0.027349026655248663,0.09971923450944681,0.01334023076514728,0.002125755344693317,0.007280347577440584,-0.009554564452820222,0.039727060250284156,0.0008779818095264538,7.716401837942822e-05,0.010547541672032586,-0.022725800217146805,0.03527878791692916,-0.013285030462099565,0.0016013369347128248,0.007395637697443947,0.01928414435333896,0.058796700955117506,-0.012547472654479974,0.00012994616035455752,0.0037543530277815776,0.015009337103343954,0.03973067312088111,-0.032634002751636436,0.00015314258194031282,0.03187389521966133,0.00716928969599461,0.03174215482682566,0.0014461642737842492,5.5125640566289815e-05,0.0009333531048458853,0.03680091736667809,0.11196938177464094,-0.021001993542617226,0.0031151389459821866,0.013838314089039879,-0.011906706171068888,0.05459530783991601,-0.0024050163560134386,0.00010848679721193203,0.012891361539713405,0.03179302609255216,0.23678940878411592,0.03849655792159256,9.73711675839082e-05,0.0038043906771747953,-0.013494452552398884,0.08577448855558509,-0.10342557269646778,7.441248914210626e-05,0.0015681565050411949,0.01995034371081369,0.10447110758508435,-0.015974496429984882,4.7995616894927655e-05,0.04232420722431944,-0.00902581676588216,0.01625462620412972,-0.02855444874283999,0.00027073158128744935,0.005356371370675223,-0.022347983095000225,0.07362005072643331,0.04445720316997916,7.548429403906531e-05,0.02377887697628651,0.013611631015507093,0.14457524079651854,-0.020869826323349966,2.4291119408224517e-05,0.008323287519908965,0.02299212214597619,0.07114829612392869,0.09723106009885783,0.00011295969694995347,0.006569871787101541,-0.010262053985835472,0.050772968467162616,-0.018653176064581212,0.00031858821787414583,0.018014423113615584,0.02364648309314851,0.09345451957752732,-0.03416608663448979,0.00014492324326694346,0.010641096464710247,0.006853641908946153 +2021-04-23,0.04132693196685026,0.36573587419369447,0.09938522584101162,0.0001194956752770158,0.0017634455023833602,-0.001632130033526589,0.005897822616232542,-0.015992411812247257,6.640084048180221e-05,0.007667222176156648,0.020945660324739043,0.05389272911780238,-0.013342665522391457,0.00017978815847395624,0.008546124231910156,0.016779947640331767,0.017803679359599766,-0.0022521892279254167,0.0003180890312781147,0.004406862510484564,-0.02750916712900058,0.06257109486882943,0.04119118248107021,0.00023003899406576396,0.0038609857491557825,-0.009194654022252002,0.025960696703819536,0.0033590817947647933,7.733316567437292e-05,0.006157196090131388,-0.009117023199546744,0.03707573635965763,-0.004997965214872023,7.215279013411619e-05,0.01095665304927545,-0.0012325612792460756,0.010955932931561616,-0.003674095887704681,3.857960438065899e-05,0.012486296157155406,0.00907018628554826,0.007166522427804078,-0.02984612473672157,0.0009760060934308924,0.0017622700708122825,0.029841956341372138,0.07058710305454295,-0.06730249098881289,0.0001478304226468348,0.01313648904520761,-0.01621085581157457,0.010738120020978369,0.021727617247999202,0.0007379077088321796,0.015916278407198777,0.02575971938679708,0.32525261543412665,0.06190264765647627,2.3601690971900177e-05,0.007189239512806417,0.021341348049367874,0.0629002760797757,-0.0035690933226726596,0.00010079067062653709,0.022698734075009372,-0.009787934069860298,0.06471408849902507,0.010231125703716608,4.257493711661645e-05,0.0006268658579779042,-0.000255953630991889,0.00022158239678439512,-0.0010889516850080515,0.0022529368146922747,0.0014326895370572375,-0.08478583051543209,0.6921831712130838,0.14975364100049052,0.00010079856517527794,0.028788190644445374,-0.02730213445380806,0.17797439511543367,0.004522310661044338,0.0002375457733547479,0.002354802739963551,-0.026632906693502233,0.14256948560640043,0.0031399028741608084,5.26202540952908e-05,0.007373646899885961,-0.057656019137710235,0.3718940755021863,-0.0038168542977050895,0.00025551252917092334,0.02181849385815981,0.05207103059691935,0.7141596064355848,0.02392159257451728,3.0257366250457986e-05,0.015903230250835065,-0.012408460581071309,0.13660821324645117,0.017129922401158147,3.0347491845390685e-05,0.00526366122039547,-0.0027150185683113464,0.005786187815131226,-0.032980676914957076,0.0001511482187705133,0.0031798820635663425,0.029020619562234617,0.21271423028385344,0.006227057220731146,3.1513926044182046e-05,0.001471754093799575,-0.005820608277893502,0.013089531610028984,-0.24442119318019018,9.858745342990893e-05,0.004337161764377849,0.006194942883001478,0.02560087875065028,-0.0394812574089622,0.00011064480543475186,0.0009660130673401057,0.011802851380944866,0.010649446517738182,-0.1577461148029775,0.0006334837270107681,0.009757954897924904,0.041485528070338666,0.143471159193156,0.09827786183066627,0.00012170769134200295,0.0217662071915691,0.02496651514509981,0.09174600850132389,-0.07829746217012883,0.0017465857921899566,0.010203678235369353,-0.05677887650567386,0.5625378830675263,0.002842513896622809,2.5954771844970234e-05,0.023711437228896633,0.0003542153979832743,0.001102399594910423,-0.01020565641811874,0.001050508718581956,0.012041181457432985,-0.024782917647483596,0.2379480702359824,0.036545416642611586,6.935789277474825e-05,0.0008057891368563775,-0.014938104093380325,0.019902449783014513,-0.019173356018238392,0.0001771472157677459,0.018531957907927617,0.01768655658735515,0.023564701731274697,0.007741882010983195,0.0004308094832195086,0.02744682047702912,0.0029957297117008453,0.012898394472033425,-0.003828226652140014,0.0018001857231651687,0.0097933523501742,0.024306980829019848,0.08094046164624112,-0.004447575158246983,9.63508858239634e-05,0.0075140302308139666,-0.05882224205342,0.08853377453870397,0.015358872264497572,0.0016516186774169599,0.009945992083852365,0.02432361560143639,0.09716412643092022,-0.07885137533203686,9.918322316587375e-05,0.01212525888398414,0.010138470219384662,0.026592028456636132,0.00278530912816133,0.00015455438774894086,0.005865122577924899,-0.03674467926347395,0.16274928540353387,0.047820417900214324,5.510478287916553e-05,0.0028279812629401504,0.004406365868529422,0.013827405494225597,-0.0060582737862162625,0.0030203544610154934,0.007697830367857252,0.02375907306893859,0.13014211577693438,-0.0004514283802979966,9.081387366746761e-05,0.010447604464886224,-0.019716825482007514,0.09339063310100737,0.0452713010195591,0.00015310679212265235,0.026416533455387844,0.011446974135344888,0.0642383624342382,-0.02806346674536697,8.428396127481803e-05,0.0004916208639863177,0.005998619278936642,0.026730245145908903,-0.010390253729622245,5.64021620651235e-05,0.04223014464347308,-0.015494618276692358,0.02712970686841173,-0.003328402560342847,0.00027846151026397195,0.015213739955394717,0.0061999936283425325,0.022008820386653555,-0.0051448784657331615,7.005011504854207e-05,0.011211250836178261,-0.028206730977696978,0.31997201191241254,0.026840163000025622,2.2744272492594103e-05,0.0027709693898041177,0.010485651813149071,0.03368282679555553,-0.003317545483066988,0.00010881677858774875,0.008324341177328998,0.020361697926490636,0.07601705194050602,0.08291668725417431,0.0004222123554479703,0.012416865306340914,-0.011452099963755732,0.06353915106834741,-0.0313600410417007,0.0001032322797393704,0.007166901931562368,-0.0007959757245377617 +2021-04-26,-0.0019892197359337414,0.016934397839449437,-0.06904076474674627,0.0001242223053972341,0.013245076976201052,0.018009665093145638,0.061726662670220644,0.008170242389351904,7.000730613705575e-05,0.015132209572949504,-0.012027198414330193,0.04405232620045398,-0.04096505691607903,0.00012629694156185114,0.003578718057030249,-0.005947908123300354,0.007228887172117988,-0.008634855549938746,0.00027769026909549023,0.0027170413594607623,0.009259206529681993,0.019471714149660813,0.003145956129271643,0.00024880972901071536,0.00048239776938429073,0.022354511292632863,0.0662259146814938,-0.0004668784806781937,7.37027944391907e-05,0.0024100211211081405,0.03104220129042598,0.10685139666156672,0.008818409916484566,8.524367462377024e-05,0.036962941100223946,0.006895184642444401,0.06707998101051679,-0.08873251120491732,3.524938822192733e-05,0.004317144153823356,-0.0018693189522388147,0.0015301586328732798,-0.01847993712799812,0.0009420885791546687,0.008216547606763462,0.02513033893619724,0.073274512639256,-0.008754893673503315,0.00011992432808073322,0.006477159847707109,0.0015286214786000827,0.0010314527615027226,-0.03419295686877956,0.0007243942141221457,0.00048158760084965335,-0.011336548509020545,0.15144586389807027,0.007701422421632451,2.2307259693407554e-05,0.001351094032734233,-0.0380138291425521,0.11957974443869208,0.06144994501258515,9.443544591003286e-05,0.0019819850782352858,-0.008539099655505453,0.05228858840364156,0.010527039750551826,4.5969203903588173e-05,0.002555280646380239,0.026835674973831703,0.023721593233946594,0.023790334672697214,0.00220643755661139,0.0018049367288167403,0.07100663889679014,0.36268509561050166,0.030765885183896273,0.0001611095760199897,0.014201281452922807,0.032247213677893974,0.1614324825156613,0.02021345152785162,0.0003093210686082884,0.021562586829100908,0.0343968169439488,0.18613326324862095,0.014398334977755611,5.205413328568404e-05,0.0057711080714164835,-0.01210848422299045,0.07967923475630534,-0.05664652478854227,0.0002504559959623565,0.007318451636467019,-0.04080457652704777,0.5112928692154219,0.007998314403779948,3.311840177655221e-05,0.022617038969305135,0.0012320631936481986,0.011186501523575386,-0.046871909379342484,3.679767731737231e-05,0.006186448221733155,-0.03221898017184111,0.09424895613937882,0.03508892392423797,0.00011011791925254023,0.009659529391010958,-0.0189835310989607,0.13773127841704125,0.006532546845211225,3.183734147772528e-05,0.018833271262497724,0.002843664606329625,0.00860522418008771,-6.649381985169702e-05,7.326449593687916e-05,0.00040090650913081317,-0.010814702603852202,0.039535549757051695,0.049642938830558925,0.00012507640629512727,0.010103930454582183,-0.04593628214093483,0.04445338217909451,0.20831750705049265,0.0005906450854161357,0.02165022458104561,-0.016934561655875223,0.05517233220101807,-0.07312503787549207,0.00012919289381074894,0.0008660769396789123,0.07388952040090632,0.25364883253038945,0.13609690255112755,0.0018696880601255328,0.004717436687833429,0.009635621202928294,0.10512405869933647,0.007421413968705053,2.35700114677768e-05,0.008879578907515118,-0.009898415987466271,0.029422864582905932,-0.016751683459196896,0.001099897001740175,0.0037055002186931925,-0.03146047028587572,0.3125318437355768,0.07156618890294683,6.703422296976483e-05,0.012870852595061216,0.0033576474657925543,0.004996105091008571,-0.0005412854699275413,0.0001586167024782621,0.008646922905778728,0.006335368945083129,0.008939224900313092,0.002021079638088138,0.00040679533271484173,0.005712723183991311,0.0033680402752748364,0.013910649312633784,-0.01750227863978379,0.0018766367427942342,0.010855746629892513,-0.027725126610455918,0.10821428570409894,0.03523281869662701,8.220141838989388e-05,0.01366643612736943,0.0617270112739201,0.086891207835356,0.03973462673799051,0.0017659426976224793,0.0049582813303971586,0.023319025239995763,0.08607187538565693,0.025230968962707476,0.00010734088293482993,0.003066657826513681,-0.05501533720815059,0.13094920171039737,0.07631886985564848,0.00017031045143272889,0.01864971498058556,-0.01049041762169872,0.045579077717542694,-0.05625382557827583,5.6174752763272595e-05,0.02641454363892639,0.012884648399151937,0.04412205407496389,-2.5954222985029397e-05,0.00276780128913159,0.014112010206261913,0.038627434885832396,0.1519797377788983,-0.029006247297507018,0.00012643017787810457,0.005753982718251477,-0.002021374277535899,0.010972078300132276,-9.402797799763e-05,0.00013360374168610803,0.013838182555858402,0.011939724202444869,0.06692167441856804,-0.008576564504596467,8.438712577758324e-05,0.010307495359169054,0.06013706977171488,0.27218615057445,0.03477472963978898,5.5529483536086466e-05,0.03627774817369789,-0.009808470227900918,0.020041563534540528,-0.01707226236949141,0.00023861573145239636,0.03689715294618363,-0.013602649104277196,0.052952185284311885,-0.1322670036785924,6.38783931869069e-05,0.010015400064803698,0.020854432066451652,0.23199811121153188,-0.041404132041682314,2.3192373871495077e-05,0.004371355495339835,-0.0010192581210664304,0.0032689888296539658,0.0007634292187337333,0.00010898825731238267,0.002765077161630324,-0.026762079806701033,0.09779127389268939,-0.0023056136162253747,0.0004313678052698019,0.002076213614750584,0.012926364187039078,0.06213611510784811,-0.005178021126301803,0.00011915275458696705,0.013221329713144301,0.003543695487064942 +2021-04-27,-0.005358768306733787,0.04082658332118189,-0.027119405875268055,0.00013880609219323758,0.006008060124821939,-0.018067483020656604,0.059008663919525584,-0.0011995959197810286,7.346701598386907e-05,0.007221598905865038,-0.03794496718067315,0.13441262319399516,0.02528296092989411,0.00013059042316749658,0.012356898457858569,-0.009492825219751975,0.010209427495542071,0.020480277443626155,0.00031380651213377633,0.004788839797420989,0.01913946559638427,0.038920171776383634,0.014636835140000004,0.0002573077287775823,0.010590052132612406,0.015559787999972416,0.04938314548775057,0.03160033996804056,6.879734306094112e-05,0.020222253783480967,0.006361755455042494,0.02543278755481896,-0.045405627614672074,7.339607952315286e-05,0.00965175481862112,0.03704133615739936,0.3210245624987914,0.06478215054305024,3.956826393228092e-05,0.0021766090139705725,0.018535838494424136,0.016282511300947756,0.01309400488356753,0.0008778809704935195,0.001583795915131938,-0.01689998747742067,0.04134486415918984,0.020020333363637757,0.00014293108807630355,0.0017987682101531905,-0.006034006051955106,0.004562555565860635,-0.004176945539816931,0.0006464306396769987,0.0011989172069149993,0.014061116217790407,0.2204669116302095,-0.002871764493382176,1.900636953200656e-05,0.002861013059730095,0.04438937536744047,0.12149948590208927,0.025769454936469798,0.00010853145651297711,0.006904372731578125,-0.017562612184845446,0.09140792030356042,0.031886736809918,5.408378798939074e-05,0.002249096625234927,0.018511187516596656,0.015311072052345519,-0.03267924588279887,0.002358042631534071,0.032392833542823844,0.010460919849034397,0.07178047337847399,0.0008129816631253694,0.00011992663946902219,0.00136008238129761,0.024862729097538717,0.15537916218212158,0.011421136954955887,0.00024777886230190456,0.014428634845188058,-0.01103977194264526,0.06478245705408081,-0.016799000701413002,4.8002476325985815e-05,0.02403186300123335,0.040677201119149305,0.23062926792236607,0.0660444540415623,0.00029068555417978626,0.002534851161712596,-0.03913548830003776,0.5465499541213614,0.005997452698492525,2.9714684678194735e-05,0.007325314929214136,0.0003889758699832887,0.0038739262013904353,-0.00013121450505507496,3.3546948870685455e-05,0.004620623871174441,0.06549287197953241,0.1515675416097385,0.15304229586720772,0.00013919081723591124,0.006898306074434352,0.02314181890965374,0.13639061058469754,-0.03237050225481516,3.919271895721981e-05,0.04194492259466373,-0.010316663342796227,0.029424999382564234,0.027115772221156638,7.77320602490531e-05,0.005338127538849495,0.009610402043738248,0.03980744590274879,-0.022570467374889276,0.0001103890099904257,0.0013438280605835822,-0.02340907237372814,0.016506400900297737,0.04145712063187024,0.0008106014511221251,0.0002794620502668695,0.00929545452727015,0.03677037546048152,-0.014586014961933923,0.00010640415209432375,0.00923553496436095,0.0010502550371244061,0.00390671326455144,-0.023980321451761,0.001725450126642051,0.000422766090763047,0.00046436486161658774,0.004671833911553257,-0.0390686840559381,2.555960570295197e-05,0.022322530198942786,-0.04278006466824396,0.14111716889071677,0.005378889674497747,0.0009911350886157367,0.010074265515327124,-0.025636619241495295,0.17991499611341605,0.03690839443731592,9.488969106586712e-05,0.002540412117494976,0.022408821276787876,0.03445670413521557,0.04146269174690715,0.00015349373900493433,0.00544677123005494,0.0064494050782995796,0.009383852688243639,-0.004487197702430026,0.0003944958034262556,0.029108211989036372,4.4287548922110414e-05,0.00017929078052228732,-0.03728575019240543,0.0019145822504246948,0.022008031512739407,-0.011514532600370775,0.045729681718050245,0.005401175851224645,8.078644648593248e-05,0.0032399271447913942,0.08039257701778617,0.11737202046817669,0.08539103219264602,0.001702662462371642,0.010827377161505605,0.0007984238531908834,0.0026374292981393133,-0.00010016000925443942,0.00011994128942529124,0.029745341072629487,0.012896549327369135,0.03554055526066639,-0.03740776025543715,0.00014709899007887752,0.0014991761594341832,-0.02582341710169587,0.10000607342574981,-0.02569620013226517,6.302331734887501e-05,0.008933539936688639,0.02996301410624023,0.09944398415334138,-0.0036561954557780127,0.0028557819283206564,0.017147099113140368,0.008209750757018922,0.03654973952198252,-0.0003446743667306011,0.00011173423422407321,0.0059203258017239725,-0.0033039713132815536,0.01678593905564374,-0.0028943249511816193,0.00014274187931540274,0.022633857308135528,-0.00026702791855361146,0.0014374692950730238,-0.03687721169364816,8.786315471195921e-05,0.003666448109552058,0.020782045822069103,0.08902385801250531,0.0009402700696030133,5.867178236327696e-05,0.014155488535996127,-0.03631608976156741,0.06816110749493416,0.030009864694495285,0.00025977170008038944,0.01851280804039249,0.014015245464145794,0.057861554196272966,0.014973889604164238,6.023168175068007e-05,0.001757504728764857,0.04711450567072617,0.5241927484878282,0.07004216678272407,2.3189688531798492e-05,0.0034157817176667,-0.02267022466485377,0.07455685390637075,0.07551241922334909,0.00010628628191146976,0.005150472610236519,-0.0076366890819388215,0.03570282289649335,-0.038743039671018394,0.0003371557141374733,0.003936505410191478,-0.004607234469186813,0.02053889807888727,0.002830552186163472,0.000128479835215553,0.009745912965868445,0.005077635703886802 +2021-04-28,-0.04829887456414669,0.31515779235126573,0.11566559266475084,0.00016206735541723701,0.004929037837698406,-0.07199227274932198,0.22274055974189977,0.24345635185670134,7.755273244097562e-05,3.7225137967435975e-06,-0.0478571444614137,0.1753305934868215,0.03971798015509611,0.00012626595947082112,0.008399016797151142,0.02218721651445892,0.026246665619447863,0.008772389907729805,0.00028529656278372114,0.005134528005524557,-0.012026076745933834,0.029109496091511197,-0.044227705049299196,0.00021616583549085002,0.00633842113446439,-0.01808598954016412,0.0468017420567739,-0.001929919019862837,8.437756660465588e-05,0.013064981138967166,-0.016255051342151727,0.06054505822030108,-0.0020303431328392396,7.877701119442227e-05,0.016831336954453355,0.021842226400444906,0.17126305191193683,0.0008005938113882789,4.373527281724622e-05,0.025965748580561908,0.00944270888232366,0.006591253172062578,-0.07167057785575418,0.0011047738703116028,0.002757396327544904,0.020092543846967702,0.03780245569433885,-0.11518345809502696,0.0001858560907502346,0.005098455587835397,-0.02673048578713517,0.02042210926927535,0.05657507850955129,0.0006397799330863644,0.0030658521824335123,-0.009152821707725682,0.10751314539280382,0.026386438334545327,2.5369752145238145e-05,0.0013586348578254984,0.023085706315021638,0.054234954602755105,-0.048304748869785544,0.00012644886147232894,0.020982207323884207,0.0012504371120213205,0.006401110212261855,-0.06298700696287793,5.498805625027341e-05,0.007658725474951831,0.023365261702248466,0.016980005891871763,-0.01264312359298281,0.002683834835741747,0.013141472182913663,0.019065530096940977,0.10651025664956297,-0.00024003780971150303,0.00014730231134263717,0.0033788926967447336,-0.006911060056384054,0.03708644144264859,-0.0012151823970851018,0.000288561067165857,0.0019395116590376,0.008024784798450379,0.046962713452772975,0.004119012565402698,4.813280469148924e-05,0.003088707372910236,-0.007977925377689937,0.04605921704731619,-0.05702476248726959,0.0002854698363248888,0.015281135758958914,-0.025596966386457514,0.35170194653409587,-0.02566877990693722,3.0202574024503054e-05,0.0190339273441458,-0.0002170539058998804,0.0019837821087972073,-0.006409279254395866,3.655572026511252e-05,0.006123526399643494,-0.031095515719869203,0.09745544307131566,0.005872043157820216,0.0001027813740917783,0.01669500477561806,0.06489449408931809,0.4385048300410201,0.021455160458983286,3.418423345577818e-05,0.01651620555554828,-0.01801771435017692,0.05122672853136969,-0.019686939968834298,7.797950213708877e-05,0.001829446417086813,0.0016344144902351366,0.005875356382331426,-0.009889570981551177,0.00012719691693039003,0.006368705493482467,0.035672014546082945,0.03584189790640079,0.0200687488377905,0.0005688689102157145,0.005873848691934932,-0.039213499170368815,0.13828329279882287,0.02349535966449918,0.00011935809933512637,0.014042210707337724,-0.002693780920443266,0.008097848672396362,0.00018861410814864226,0.00213506838889072,0.02202338362428992,-0.010319832769719503,0.08948486259830693,-0.03921207429344073,2.9655501957163606e-05,0.017701020121418547,0.024721788190393987,0.07794267361468243,0.004183482124295122,0.0010369930648354887,0.014821334716619915,-0.002817116381298468,0.023039615997258494,-0.008908151017571645,8.1424517899748e-05,0.01394582846897646,0.026752094431003383,0.041080059387081314,0.04674291725722774,0.0001536993788153479,0.008695604434557573,0.0633541246948791,0.08215135898176358,0.0967337310023063,0.0004426536572440975,0.0034939840608812123,0.046616088702655836,0.18574743962887924,0.04055753963422481,0.001945195859834872,0.010456457368839697,0.024397457681643597,0.11107391986961444,-0.0028699430150705817,7.047301387857514e-05,0.02482422879739143,-0.0394156826138375,0.060638527658985926,-0.028759590648959645,0.0016158371773810044,0.005648651713074261,-0.017057114178429006,0.050510437017252524,-0.005022931192929079,0.00013379517965398952,0.02460435587855479,-0.028738597113925655,0.07507094463658372,0.007121984058985385,0.0001551865432511899,0.016322418482722284,0.039513429531078274,0.17341667052738644,0.09743593828502174,5.5611909417587385e-05,0.0068798451243585225,-0.04992551317645747,0.1375268244421615,0.06805752066619399,0.0034407504909464695,0.02591732041033963,0.03576034610077004,0.14701498113722725,0.016154355985272574,0.00012099869644873258,0.0025293040175439064,0.0013692338777187632,0.0063907170719543676,-0.012450846465503889,0.00015537775040556296,0.005782082947592276,0.01085239432074083,0.07278177655599159,0.004554717004404907,7.052638310453537e-05,0.0008093934125373904,-0.02306931148811346,0.10203821421434153,-0.027962459195353336,5.682234839365999e-05,0.0068959005190993026,0.02478299622563361,0.04560708609392247,-0.010924647491802867,0.0002649420421066773,0.0002894398757271447,-0.020593910268724494,0.08922329060816159,0.03185029581798375,5.739511835119038e-05,0.005069077137919258,-0.012769166379535717,0.12290096480774398,0.02226434916266034,2.680640279221973e-05,0.0016046888694196547,0.0019300584000582152,0.005653705765592998,0.0006133926125262138,0.00011932905788829021,0.002448289015874896,0.0013175434956352238,0.0050945840353983024,-0.10276070693559194,0.00040764695433653445,0.006152810474513784,0.012720189053870899,0.055578706937393106,-0.12620748794231032,0.00013108618474786613,0.004145854942508985,-0.00047471359782175936 +2021-04-29,-0.02042410821941546,0.13895130207404394,-0.0052361863915079705,0.00015544153134153916,0.0024313164737615385,-0.031127677592142276,0.09728896221647722,0.027077900321396006,7.677037736133878e-05,0.019937112479907145,0.005587625851640403,0.01593406012220336,-0.09038590775359827,0.00016221763706310822,0.026097178147678025,-0.013737673697798915,0.01657287597173102,0.02621634067958522,0.0002797584240117544,0.0019446523491670773,-0.0038590160103596184,0.007917492918415538,-0.04851565125666324,0.0002550272977006128,0.007972349272687583,-0.0023496701871999486,0.00636314804178052,-0.06498601072725399,8.062720760225959e-05,0.0037601030988786916,-0.04685472679315339,0.18989631029737622,-0.009315978890694,7.239802828912225e-05,0.0012259730998053922,0.022016357168137494,0.20047925528870716,0.012714803017867083,3.7659507504956753e-05,0.005702681084901382,-0.055347958444605654,0.05010562758887791,0.4944086411046661,0.0008518436427651147,0.013105356699503903,-0.009762505143732784,0.02211696089014138,0.011602788316521204,0.00015434682922928837,0.021923526995860764,-0.005579468089029323,0.0048563309161467,-0.11213719544437842,0.0005615764457778886,0.011975204303158576,-0.006889501696899968,0.09989378103845621,-0.0042523408081986715,2.055285456521252e-05,0.004535130319755097,-0.0013494039128729698,0.003662545591162066,0.004248840366898182,0.00010944853770993486,0.010821816650981645,-0.013343647217938346,0.08014765848259611,0.007720688593170781,4.686466650390376e-05,0.00034770985890718753,0.013241291696662204,0.011422020486244409,-0.11932298918073744,0.0022610511683341895,0.0044702669725867165,-0.013231212495385657,0.08077305767950559,0.010469815826667537,0.00013479855248374012,0.00841725137169652,-0.05618947547079225,0.3401352554541926,0.0334113182356849,0.00025580649105679166,0.0030541446395837514,-0.06265325673893453,0.360824007123744,0.057108944183977724,4.8911297237775097e-05,0.005635463466882024,-0.005847481024746602,0.03341057287178809,-0.044166083934128596,0.00028845077247125145,0.012992801483246368,0.05861539908143176,0.7324229923829316,0.06002715597068829,3.3210849776460044e-05,0.009946405800670589,0.010756742266974328,0.11317110055189422,0.017768655201874352,3.175608332255284e-05,0.0039105194587628345,0.009512999917953895,0.027278016681792198,-0.0029760949070271638,0.00011233819930121397,0.009167081967776165,0.006360280401649328,0.04957343472425769,-0.0666529071239787,2.9636002881221085e-05,0.01596303064982527,-0.00907191416061161,0.025240141218594435,0.007176926701088789,7.96864599940224e-05,0.0011394095014749745,0.009838916844198973,0.033566499725765815,0.013823731631174691,0.0001340262386974157,0.007792467269702655,-0.02547433332316662,0.025436414864221536,0.05324835349996044,0.0005724301352197649,0.002751532401662901,0.0025126571527925878,0.008986462030965113,-0.06414600119585537,0.0001176875439023584,0.0008018464263387652,-0.03770993745860381,0.12350567461047626,-0.011829660891869483,0.001959693150179754,0.010428556946429392,-0.030636919842230846,0.2647292064884037,-0.015131186753250288,2.9759486809832274e-05,0.00017059747910962695,0.03260538324016886,0.08607949629906456,-0.05057203943170305,0.001238399767993173,0.03303417027981246,-0.03887745371100052,0.31164929804387387,0.08773992511634297,8.307250435412332e-05,0.0012402836395056954,-0.034899982977425886,0.06406006775955693,-0.02032606855240786,0.00012858289742189867,0.011788777970292694,-0.027262025458428533,0.037372225290673966,0.010889057880205884,0.00041870975065897,0.002720270607355829,0.009714878001822946,0.04169362471108583,0.00426096894927909,0.0018060012200637032,0.0073871855902802736,0.006172926882831695,0.025351330417495883,-0.013855942986156687,7.812333014432778e-05,0.0033495648222415676,-0.013238371057964743,0.016107393518085503,-0.0007203931936807736,0.002043085175245959,0.01247494481305226,-0.036581810890531835,0.140009060152897,0.03217498654837297,0.00010352019860701573,0.00192497351372056,-0.001366191751036629,0.003957323800184635,-0.12005909708928277,0.000139949208904427,0.01385700136593848,-0.02536203591199141,0.12018957659614252,0.00014458692545374382,5.1502846537253005e-05,0.014646452845809307,-0.017772984460157935,0.06474729881911923,0.00019874398097633104,0.00260169728793115,0.03082144473535105,0.011666348968840229,0.0547858786394037,-0.01768371954738482,0.00010592705610803706,0.002254893677811565,-0.002181560576608623,0.012029357253771814,-0.010234685685046966,0.00013151813394431843,0.0023904666222354697,-0.022041429315814477,0.1061851802491395,0.006922251982281331,9.818034273354143e-05,0.012529698776002789,-0.014333197571341928,0.06346578327945193,-0.06906209979880779,5.676110451679775e-05,0.010105045880020811,-0.0008111973708520758,0.0014716040050789282,-0.017196481984513963,0.00026876020727805843,0.011049839522510485,0.01471585431914634,0.05599427045546799,0.016093691275743133,6.535160605483928e-05,0.006018664526253184,-0.004366905932484979,0.04887050311365835,-0.033854177710076455,2.305463826119931e-05,0.0035876054604290523,-0.019308367740115823,0.05728145723385633,0.055633478378124754,0.00011782581931035126,0.0057031103791333445,0.013324388587932568,0.05401071878500691,0.040301571942186844,0.00038886181933817316,0.006805138788341624,-0.02160832663977166,0.10374698021560758,-0.07149422772014216,0.0001192936887076818,0.017690456523592527,-0.011122070417343114 +2021-04-30,-0.005803036742606205,0.03920217347506411,-0.0924206165188593,0.00015654231719804896,0.012552470933757293,-0.0017188438864134555,0.006469430383064359,-0.08195988419403342,6.375010678050146e-05,0.006491006825089535,0.0015514675561387882,0.0047738972998994005,-0.005329328844929482,0.00015033732928128774,0.020599110233517574,-0.006976872392430681,0.005995329767817173,0.005418157953385857,0.0003927494269097714,0.006864157584420297,0.024541334389566842,0.05830246922209345,0.03649912005626393,0.00022024649051344557,0.0015865641413791976,-0.010689439991933313,0.02963561175864124,-0.0617684202229014,7.875675192802586e-05,0.0049821470564059426,0.04873757447367868,0.1860617644545689,0.028014707550604367,7.685933665336548e-05,0.014634129766403048,0.001530903411462751,0.01245954422169126,-0.08629141186735705,4.2135121393785156e-05,0.0023813419211828404,-0.014314051959752022,0.011715978434918305,0.016603292457194115,0.0009421690037648238,0.025852117055745794,0.04756458113444399,0.1143694569205756,-0.010425004540830297,0.00014542380512521828,0.0022809727546785684,0.013151479133761494,0.010894661979783131,0.03280998031950064,0.0005900450865218556,0.010408953619756866,-0.0004099454765872002,0.004537596994509045,-0.02841662039618872,2.6922969958664668e-05,0.008443198970605631,-0.03181137938230357,0.09050054617563368,0.03314936486828652,0.00010441967537991828,0.02456331756886337,-0.014869483806688183,0.10010442811544673,0.02545703468819828,4.181233503864571e-05,0.004181253176093027,0.034010932011047254,0.026649019339313886,-0.04350230542558044,0.0024892027594776585,0.00022897237523338758,0.012852969873519863,0.08168667262508587,-0.11988977325573823,0.0001294805069835071,0.03182471264197215,-0.0767534481343256,0.378214443339176,0.07013522423743375,0.0003142447402786503,0.03818344906728328,0.0519316521824134,0.2857122021449863,0.05680225758150596,5.119933346079721e-05,0.024598998096678492,0.01743827667931801,0.08348510207930879,-0.003353317186214917,0.0003442558974651966,0.002998384600150861,0.003496229674791075,0.03816932339890577,-0.023532308666295493,3.801156269915303e-05,0.0167107575282878,0.010332438887928235,0.10165862744937308,0.003209580163921466,3.395785993012998e-05,0.0006399293272809073,-0.002275970591990155,0.006013038568643273,-0.0027522300463173276,0.00012192574348135153,0.006740764301503178,0.041399866500541095,0.2967897466638305,-0.001189271806940412,3.2221252903454196e-05,0.025682726387216318,-0.0032414091402207775,0.009788561507501625,-0.00260842232096939,7.341627756208823e-05,0.0032801320607212256,-0.012792754517723841,0.039665024136324445,0.06917482486324089,0.00014747042740185492,0.0007996496041038235,0.008791209700477573,0.008597567778278114,-0.00980130195204904,0.0005844516549601444,0.01958834572764849,0.010265614529133592,0.03764814413437225,0.023176599692343636,0.00011476973771918008,0.016648723548707663,-0.01960307707767671,0.0675264432165875,0.0032822893426778595,0.001863243209990026,0.003920783747876836,0.010091116357888359,0.09283327372005414,-0.024556571393963115,2.7952312521995614e-05,0.025497958392017288,0.025916244576983813,0.06798624670136341,-0.022418395351059325,0.0012462990780077537,0.021500571713540795,0.018365377190566426,0.14673890882058918,0.01972255154347257,8.334512655174696e-05,0.007050562493542016,0.028194592848050523,0.04139731623894565,0.04063688946370345,0.00016074557506641181,0.0010316418379810524,0.015203960530837654,0.02124917296397195,-0.016139443366897457,0.0004106942436107952,0.00044482408255855734,-0.005636428517083134,0.01692935860088041,-0.006324420711413055,0.0025805592814975354,0.012649522226287695,0.007304315139686843,0.024706960852919135,-0.09675825963884502,9.485288518549818e-05,0.006989642966466656,0.014010553391711629,0.01838821375327521,-0.019063832129134296,0.001894056534006486,0.017437940766586512,0.024542376779582487,0.07640173335194589,-0.052410365623227984,0.00012727099635156193,0.024739510004429668,-0.015341919945416308,0.04234895426427428,-0.0005177010761153613,0.0001468579284086879,0.011267311462340574,-0.03289524437932085,0.11956174520622578,-0.02145296120387264,6.715135748384798e-05,0.014869333877660743,-0.07444146454932281,0.27710284990468165,0.12853758250823286,0.0025461968373442926,0.029654708502734026,0.009975123902021033,0.05222120612724145,-0.011619579925372795,9.50193316254789e-05,0.015137921424448267,-0.02353560827251658,0.11884283359698912,0.05197648230400908,0.00014361943477316928,0.012020828353999109,-0.0011414722480661513,0.006992313317573483,-0.035334451424206235,7.72134887400209e-05,0.012345951959128375,0.004522595172537302,0.021735862144592118,-0.05402835077901256,5.229476777077676e-05,0.01916310851336595,-0.01134229678182893,0.019986040130388103,0.004156189469749839,0.0002766964873276842,0.04008114257428093,0.001873249274940893,0.007022991178720172,-0.011045637584651633,6.632661387460306e-05,0.0035516477456353354,0.01669286087917164,0.21520758515655014,0.0004913204376409345,2.0012644700310167e-05,0.013780367577601947,-0.007202607142837908,0.02263094865298036,0.003795691423237237,0.00011124895306943854,0.0006293249363257232,0.013345760401828043,0.0501950027265258,-0.002065087185285621,0.0004190933912184129,0.020699262986154505,-0.007364198895878616,0.0319098524132249,-0.02650878533361253,0.0001321820582360286,0.010714333445121241,0.002963410932817188 +2021-05-03,-0.015597290210445335,0.08830443663491162,0.00888282192590028,0.00018678982390211537,0.010477295107708954,0.001880925269897826,0.005746412810653265,-0.023597352066541497,7.853897808609623e-05,0.0027119923223615306,-0.016926342689398126,0.05958814518364888,-0.09027146319301795,0.0001314015434757942,0.029697283200261246,-0.0039747500983689284,0.004320562513748904,-0.01851750534942606,0.000310482689534551,0.012545049648726457,-0.019505849840679556,0.04391142345562775,-0.004530807874024668,0.00023242622751133783,0.006402021390583746,-0.016502456737477796,0.04115119897669994,0.02265536891593725,8.756143077264516e-05,0.00991043257902222,-0.02070752211364952,0.07899227471315867,0.010199931339439064,7.691895382841337e-05,0.029386057229709293,-0.025459830742121558,0.2221310587321874,0.035441307805729974,3.9304732060343404e-05,0.0015823204039282863,0.0025600675737278878,0.0020208854377098654,-0.06349160328208642,0.0009769099230169053,0.004652687464166233,0.034103642186435065,0.0857267559817156,0.008974958928502159,0.00013910612718831848,0.017477269047502582,-0.004501361325463508,0.0031806023223109993,-0.05757651630598639,0.000691765440901811,0.0022230528128567946,0.006148401791793735,0.08844759667912823,-0.002482110646595399,2.071567043566093e-05,0.0027950684563724047,-0.005065599303783313,0.014549846550993208,0.0005539797759380187,0.00010342450673164748,0.006022516773288038,-0.014005934013814381,0.08031679906512178,0.015466938184119714,4.9087114365846545e-05,0.0018272308359664354,-0.03324130826070486,0.027800545447468974,0.09274383336583132,0.0023321031923761904,0.006824637259906726,-0.02695638515027713,0.17278765345994423,0.01529064561902608,0.00012838108859728785,0.03287845907375411,-0.0022867963487178482,0.013922487937472847,-0.0021983406215182444,0.00025434246250706646,0.016329748600762393,0.0453732121782291,0.27535948492990336,-0.1014520584178876,4.641522300906932e-05,0.006347265901414593,-0.018831111934742493,0.10075228400212269,-0.11412541459357609,0.0003080405372580596,0.006405627693187526,-0.006984344435085986,0.09457672695294327,-0.037917978535264,3.064584492950896e-05,0.009413088033139914,0.015510747316004951,0.1635173063211517,-0.024798581673386375,3.1692077384810915e-05,0.0025618698022188175,-0.015711301738082842,0.058162747946236,-0.06499802699208589,8.701417527502227e-05,0.016643930732179443,-0.014291529216791226,0.10035490081093727,-0.015759237434554867,3.2895196996246534e-05,0.0015125608175703908,0.006267250276414636,0.016968828978039384,-0.10072902172656867,8.188465957796644e-05,0.009243786098344494,-0.00043313649224664826,0.001686117357710084,0.0006313358551448965,0.00011745880319360775,0.0033025657381361437,0.02207860659981783,0.020704959542923177,-0.02157486801253226,0.0006094987739845831,0.030889506111436746,-0.017946134483208396,0.057411570734413234,0.002160445371223328,0.0001315701888330139,0.0035263325757425054,0.007779288306202599,0.024515846447572705,-0.03821378712282707,0.0020366300585959,0.03275959864576894,0.006845597957986756,0.07817925932310218,-0.01359422480602822,2.251655957832271e-05,0.01841795122824296,0.021621144512649525,0.06219740476351831,-0.011121705995843278,0.0011365215777017212,0.02087496929733687,-0.0061824753126574795,0.050341061983490525,-0.0037767528065920223,8.178349404102803e-05,0.002919679199556528,-0.022408476465324817,0.03396012522669895,0.010996934971849023,0.00015573579115021492,0.011707179478280018,-0.05041820531231974,0.07580081684600215,-0.04300730232361605,0.00038178372463054157,0.01665938272308857,0.002747602484398809,0.009037945579653312,-0.0563976430172568,0.0023563213569760245,0.00029989704264989916,0.00413854041947215,0.011721326037544711,-0.04799054867417716,0.00011328197842781551,0.010480326315948887,0.012763358810595447,0.01707031717422749,-0.02356540492915798,0.0018586626839091928,0.0034760201145295714,-0.06033865464502807,0.21051388004186478,0.10030522456195116,0.00011356144843969501,0.0005534220915287698,0.060545880490639734,0.14812016045505963,0.11367804796693184,0.0001657031641875938,0.00875832338204805,-0.02529651938444655,0.10431222845082457,0.01393579928817072,5.918879127744694e-05,0.002551322745346076,-0.016619770286676494,0.05550238214143794,-0.005230974098146646,0.002838124557144578,0.009578509505236718,-0.006024590855970776,0.02972952862949814,-0.020060412516221933,0.00010080454312333272,0.021783677989716085,-0.022275671472128198,0.10182843712174247,0.03127959070641524,0.00015864358315352303,0.0026604070494779504,-0.006622989010013051,0.03571895211091189,-0.0589495450335893,8.770089464052508e-05,0.005889958282793613,-0.02139720192466153,0.10138269177079698,0.009311846316105243,5.3044524685990126e-05,0.012123240088470105,0.01547210800404055,0.023178879347233457,0.0008483540020047727,0.0003254516274299969,0.015055748385788286,0.007459207141841917,0.02736591485874125,-0.050324625662691316,6.777929887762773e-05,0.007700438613956281,0.0016170012064490654,0.018096742693697033,0.003086512307836893,2.305373081913872e-05,0.007298909174466451,-0.012330143209750948,0.042075252246464044,0.012932216483964138,0.00010243546825223029,0.007232071319759368,-0.018857256178693566,0.08097511010889896,-0.030414892386165186,0.00036707509913459335,0.016759985475830148,-0.02953546413926789,0.17801759816576124,0.05692519166281351,9.502823408747512e-05,0.015753362328628194,-0.00629547481585432 +2021-05-04,0.032300541240960615,0.2523407743530423,0.05252546200192279,0.00013536579932557898,0.001859706505708101,0.04855532603177374,0.16502409808279436,0.044574667155972365,7.059924120790735e-05,0.00799078035123022,-0.014366421494765188,0.05221927030983211,-0.0028288698827943605,0.00012726676638338352,0.009316383168924264,0.006526378345645966,0.006731511610011048,-0.065790185522165,0.00032721070542222474,0.0023027473386836106,-0.021980109408072417,0.0463477710761952,-0.009952570288076496,0.0002481411376112659,0.007753363136599116,-0.0006575462489191705,0.0016908436578503667,-0.0036273579437578365,8.491210192037342e-05,0.005078336637371694,-0.004253412954962949,0.015045085399546217,-0.022064948191703623,8.29531242559788e-05,0.020431937940821987,-0.03341771215397384,0.2604367374461494,0.057246643201564126,4.4002067424254354e-05,0.0045163318107387124,0.0044586045270852736,0.004216853546536254,-0.0007231392178982203,0.0008153709254186391,0.003969183114674707,0.025957729629602216,0.05616902204191947,-0.044252865069248803,0.00016159641752105843,0.007837546606182737,-0.025822769818475297,0.019954892636527905,0.04283473126166561,0.000632525133214777,0.010691431513454882,-0.019134724818519605,0.24661408053950232,0.0122099508556682,2.3122092865989824e-05,0.006165677908906205,0.041665299975960295,0.12434161076272411,0.010944922578812964,9.954261871348235e-05,0.009151260636791215,0.011255391186851371,0.05896229146778503,-0.009089836369528493,5.373386238911139e-05,0.0023942695094740438,0.012452971574372383,0.009410239405960285,-0.003883517630747018,0.002581043338501226,0.022334915418799627,-0.0003534147401640324,0.0023022850214365087,-0.03198313159377416,0.00012632161772867324,0.015169763695676823,-0.0010509442827906074,0.006444233757017929,-0.005170182894942081,0.0002525321279464231,0.015005106795042822,-0.040409044700736446,0.23775882790451872,0.005787102719345217,4.7874349767707516e-05,0.01158720009366932,-0.034513800755875755,0.17310407011998177,-0.03530793365971302,0.00032860359902114466,0.005420240143192489,0.05492035288777244,0.5737719306988694,0.050047370405371015,3.972137301013624e-05,0.011930825191738163,-0.01298885743526457,0.1447411755721039,-0.003798175319681748,2.9981997493550862e-05,0.0084163029358715,-0.010104495522144815,0.03030262507523582,0.002706775234530388,0.0001074130723912458,0.013172896946205596,-0.008409142659992624,0.0652795766161187,-0.006163702716445092,2.975546676707386e-05,0.02665681867249744,0.04291796684627034,0.10041870161127046,0.22110405217384888,9.47549529900953e-05,0.019246701260799047,0.004812034881623271,0.017903033655832144,-0.03802643287595993,0.00012289967496953563,0.0008769849555031065,0.007634569230907058,0.00790930755642762,-0.013104860734201172,0.0005517236942127907,0.02356001039150544,-0.0032511242926776015,0.011963870796752792,-0.10596876778589875,0.00011437941421613883,0.0021769454627178384,-0.006375121261778216,0.023369085181463106,-0.0016316806023238147,0.0017509184257360456,0.013093062309610408,-0.026485138502717227,0.2731933924040714,-0.029048316554563136,2.4929539290815236e-05,0.015503682621248334,0.04257352826399949,0.13837215435749467,-0.004897200650051131,0.0010059171458785831,0.02902309510037684,0.03389229512149166,0.25526512791008826,0.09800011005059432,8.841686933184656e-05,0.005859038438399763,0.01560628244841987,0.023987567409034537,-0.008413267384584502,0.00015355311844561674,0.020785704974771727,0.03641666071008267,0.0544032891348129,0.03316928769236436,0.0003842190346132092,0.025975982639117382,0.02870943465648684,0.10954479488439754,0.025312828615023018,0.002031342874989135,0.004464700583559655,0.01298565953607503,0.045898157664212604,-0.006495391026704496,9.077351003758894e-05,0.012077748670193001,-0.02150789316350984,0.02796749805831009,0.006064001634515878,0.001911707507733324,0.015955099108430536,-0.0052684881508309415,0.01714336776389833,-0.006797854648688198,0.00012176035406405691,0.020841944234163412,-0.014782136521009171,0.04126283646698921,-0.000372758336539223,0.00014522403733892455,0.007138036776506193,-0.014045178321873712,0.06480482156034173,-0.020622926987454042,5.2897343628943204e-05,0.018908016274203965,0.027980132090246246,0.08262202901189158,-0.035723943731471884,0.0032097555781881145,0.006957427252787357,-0.02637321429442175,0.12795334229454028,0.01022604487441768,0.00010253024607034166,0.015325368155074785,0.02599321845797705,0.13949052450075117,0.029421772285596236,0.0001351375789015608,0.00875376039219553,0.031011912639615183,0.14836507928850962,0.06950824704584484,9.886567995958326e-05,0.004807093851979218,-0.04837992973754665,0.21890383662689497,0.037191492870718636,5.5546826883304876e-05,0.02357801067418921,-0.019459696931465483,0.037086575066697235,0.007149234324512786,0.00025582839021059213,0.02374749392507568,0.047224243219830375,0.19309589664544255,0.1608334914524774,6.081438761755815e-05,0.010238387028755166,-0.034459391934674614,0.36072668783366396,0.07708929583793915,2.4646804542968834e-05,0.013904207140681094,-0.0027768038800231524,0.008868457073347227,-0.018472611195128982,0.00010944756501096362,0.00521197469547473,-0.009915428670195946,0.03641932907865915,-0.019482188771812053,0.0004291484266577109,0.00924780219578613,-0.005176850368125019,0.026949698160426278,0.00012275667393041382,0.00011002300511525887,0.0036082939218035,0.0015704479247911852 +2021-05-05,-0.0035295916356978627,0.024354411916626077,-0.0005718740618129425,0.0001532616152436732,0.021052526058572652,0.016831306603391764,0.06258026856043268,0.005271252958048944,6.453434928144776e-05,0.0068149300896433234,0.010860866302036554,0.03152709518090893,-0.001597201716440818,0.00015935941034813205,0.009070549188585457,-0.003161202525480833,0.003348494951900982,0.0003382845499474159,0.0003186181619931428,0.00405705519404468,-0.005520753222114949,0.011439964919353942,-0.02346385804482801,0.00025250583255224083,0.01698635965688573,0.011882266289188332,0.03283161672059272,0.01743642702585293,7.902304341549058e-05,0.008027247221489606,0.06803269861670519,0.22940976940093688,0.0758220188598301,8.701530465618394e-05,0.0026323646530051164,-0.007178225966420392,0.06526987831745815,0.0025018301835680523,3.771402954866177e-05,0.03343330977437984,0.011770185684193607,0.010539187778262734,8.41380977265531e-05,0.0008612335869937272,0.008482939581084016,0.023139865386348556,0.05273090281259082,-0.004209714985695877,0.0001534466839396414,0.022033501831704858,0.030088739964304584,0.021504682975064734,0.12186068264570515,0.0006839042691930767,0.0010929178702374534,-0.005951347672927873,0.07382955276430721,-0.019398937319182984,2.4021928719443586e-05,0.000802969539069681,0.020008399591350493,0.05045069984138329,-0.0071056326410263914,0.00011781380838640575,0.005086199362084828,-0.001457971205172693,0.007386861528734465,-0.0008472595388751233,5.555853776932958e-05,0.010709792943665449,0.037774798871847794,0.027002215799940266,-0.04376168923479154,0.0027285111285009316,0.014300090314262607,-0.06944653122478417,0.47845651960277424,0.0797711015752993,0.0001194428586987582,0.016029001476665344,-0.00851600471279261,0.04851771885045478,-0.06938076598048208,0.0002717964321630335,0.025074981052448864,0.053194335156990465,0.31388999365507564,0.005204503757832269,4.7736312732286246e-05,0.008587607619640112,0.02224902689149584,0.1144858549999299,-0.00906800522436295,0.00032029193007145724,0.0063228087695420794,-0.04760026225985326,0.6661690578668966,-0.028618442135504844,2.9652077054993266e-05,0.009762028337174603,0.00562033889184815,0.055013484212639296,-0.013718862341140206,3.4133047170868794e-05,0.002866052052691446,-0.0201544929639617,0.045756368979331254,-0.0409111346495031,0.00014188715451277792,0.0014517888756492355,0.05061853278787974,0.30085263660476264,0.024433656522944925,3.8864054535027535e-05,0.004698888666690489,0.006362978090813353,0.018564001266821062,-0.009107445284164727,7.599171060741857e-05,0.011862173952991422,-0.005328938304045688,0.020917119508524904,0.00817132427846722,0.00011648966869246467,0.004083387549729037,-0.00346349204368758,0.003064962212286712,-0.004387562948554338,0.0006458990283236109,0.0007271358118753493,-0.0013013311769060208,0.00442363002240489,-0.04587143737809579,0.00012382121088733782,0.006765448664442663,0.055312002825309625,0.19781542451951104,0.043941308181557844,0.0017946443940932977,0.014102244927996931,-0.07245277347020106,0.701226597108062,-0.05974071625643963,2.6569221524208878e-05,0.01921386358356883,-0.015866829830568745,0.04742991665290277,-0.049349064154288205,0.0010937273499822854,0.005328811200826146,-0.0037647546427243437,0.02509806797815386,-3.38689304097387e-05,9.989000377174033e-05,0.00894061981924818,0.0050079429013552635,0.0069064255480245544,-0.014953083304095827,0.00017113995774217935,0.012403565459473069,-0.02289594005800311,0.03477530783135477,0.0004974877977047292,0.00037791263322863657,0.014629131517360828,0.001182577375579742,0.005174560391022978,-0.040400377756702424,0.0017713584253822702,0.014577503308468385,0.03068366281800475,0.10475908940815126,0.04483614709622604,9.397359845993883e-05,0.005883624191494843,0.010175578828755086,0.014720347788315996,-0.06957050908502013,0.0017183761801304188,0.012293823807484118,-0.004932000150727009,0.015707282395456084,0.00036238104524862413,0.0001244050659712096,0.010860796515224235,0.00744784747949304,0.017546104131887733,0.004934070529816646,0.00017207209566625942,0.013095628643668672,0.005443871565855697,0.02540692432787949,-0.06763183920953184,5.2296148061487924e-05,0.01759277819462079,0.02776016533612338,0.09017448371167656,-0.003960850601626131,0.0029178061939326163,0.02287042670512329,-0.02464689750015288,0.13675474444327881,-0.08481020800163619,8.965209185025974e-05,0.008773605875991602,0.014197670258738653,0.084041258361272,-0.054186499309284805,0.00012251388823227724,0.005268952287471623,-0.013544388314900417,0.08621953957024751,0.013081506408279228,7.430232368722474e-05,0.0036703260452916847,0.07648776316089025,0.3649064348876971,0.10232200450823085,5.268146376157033e-05,0.022981718923158968,-0.011524962531829955,0.021252723207685918,-0.009445994266908767,0.0002643956649549741,0.002006193102817765,-0.01705835150866391,0.06880739759722176,0.029604130140201867,6.164761831199485e-05,0.010079609155694398,-0.03281459100482546,0.3461424907845307,0.04705048186204578,2.445926298918698e-05,0.011559648262921385,-0.00021767238712078603,0.0008570014259536658,-0.0006917632093319046,8.878319301473932e-05,0.001497313673887574,0.007262264925371026,0.03172522187035588,0.020065231835509,0.00036082397842184026,0.010791781411454395,-0.011603043660285636,0.06604508357097041,0.008215354257205229,0.00010062438252367196,0.006890057593253444,0.004308296721507925 +2021-05-06,0.030139969672557818,0.20117921739423347,0.06181600795241242,0.00015843323153567082,0.0077381650208127465,0.002389374766819835,0.007042079483316602,-0.005804307243161647,8.141302222105823e-05,0.007469562847817612,0.04039464046946304,0.1298913916350353,0.0343097698436869,0.00014386017417704458,0.006120128778654945,-0.02298252014351669,0.0247331966824138,0.05430623736769335,0.0003136066437676268,0.008533818726487036,0.03133811979962861,0.06845085211922547,-0.022113752894559753,0.00023954761423496785,0.01200237292496615,-0.0010272535659940681,0.002036958372182969,-0.002663195508569362,0.00011011392508326728,0.019534971068052333,-0.019840868587646696,0.06475968670961592,-0.08024186597464808,8.989712375480887e-05,0.004271086221534073,0.016589288049154723,0.12327650430786119,0.008959505888133436,4.61472740221661e-05,0.012114880741527976,0.026168015273099567,0.022736582717998735,-0.015540406278538237,0.0008875449963018205,0.014513076063498331,-0.001986523452143555,0.004565883849686614,0.010906557449315828,0.00015213555513051268,0.015603288517997053,-0.01685003345053072,0.012641391734796602,0.0045407579891363105,0.0006515237265523685,0.0010887887526632796,0.012902028020635878,0.17395204737131378,0.012675097298021219,2.210300009409077e-05,0.0010612839910503244,0.0476800331020108,0.12885420520230062,-0.025979933701612713,0.00010992310556197237,0.02227468653969663,-0.01821817014238794,0.0979150857596057,-0.006737832504972172,5.237414706980793e-05,0.00551247437967282,-0.007817308854119702,0.006973594585433094,0.012636876989269625,0.002186369436304487,0.008553094112620991,-0.0725951975591904,0.4568121903803986,-0.01086142609454425,0.00013077427299605486,0.048153274894906645,0.03277067194375364,0.15778917503386844,0.00214676022343991,0.0003216002463786136,0.019451252723102348,-0.04586028755261153,0.3158744978414835,0.00620876510718038,4.089621967672992e-05,0.01802278113704393,-0.0005991606427846733,0.0027924706285555336,-0.008823134830099316,0.00035362378769359076,0.0025104766237869997,0.0110945707233473,0.1322928128601762,-0.02534086265876142,3.480202250584086e-05,0.018257777932771276,-0.014202480331361646,0.15800117482148004,0.03134342608733466,3.0032092256900927e-05,0.0009913146685757088,0.010479814284972489,0.025625287451849138,-0.023993047679467597,0.0001317369476215162,0.0173957508082266,-0.019315083272936247,0.1533039228836589,0.013395936648647274,2.91028615204858e-05,0.027535378039563546,-0.01635934397642434,0.04738054991425866,-0.1065817006365441,7.654964296193151e-05,0.007476937655404281,0.005475885588371561,0.01934444877677598,-0.10992403027886878,0.00012943347232539283,0.003310049726316759,-0.032334416279430726,0.036825486602017926,0.05481361500599214,0.0005018709897785748,0.005254432442903044,0.009569577939736564,0.031557865421548224,0.00681397654614529,0.00012763540865010642,0.008655350635249135,-0.0013815860303724983,0.005122696794459217,-0.0048399442534614425,0.0017310055354053352,0.027954833852743423,0.001139988446161867,0.010982485963288442,-0.0024819053360207784,2.6692053594017453e-05,0.0031955200333461673,0.039503754974178185,0.09541118781127034,-0.022998883997720432,0.0013536623380695475,0.015823581219567468,-0.022298104946745397,0.1948545034376587,-0.025359297331248237,7.620494444697518e-05,0.0023030288637129713,0.01574909628596394,0.02146831360075183,-0.01001530341771375,0.00017314226469901435,0.01921865837381064,0.07869967310418763,0.11375717907152846,0.05281992681888423,0.0003970983004020118,0.0017376660810494876,0.027130984543215372,0.08469452995785968,0.023735532793605234,0.0024829074581493816,0.018876011572809555,0.013716914708231782,0.048965612755315496,-0.0033491907443518897,8.987845844315435e-05,0.0048414810495742006,-0.04920984443281795,0.07838353711114077,0.03868726826668396,0.0015606457229248053,0.000628186245109856,-0.018008377758409515,0.05794493333057488,0.00130957446582092,0.00012313319860455748,0.004854588565559451,0.02069214474766453,0.06446005629838478,0.00845743852453118,0.00013012933289116812,0.023654556914728612,-0.014052824426501196,0.054207915728646534,-0.15279004720655806,6.327247693435551e-05,0.0027896086160883317,-0.029729063668693885,0.08847758371944854,0.018156547221421838,0.0031846817218774554,0.013032099697111579,-0.01302258745906128,0.07016012810344803,-0.1002740249989055,9.23309874440266e-05,0.014828633468713747,-0.01159045889497281,0.06369838375641663,-0.002230280653161614,0.00013195717291718747,0.00495561945026949,-0.023508645809414995,0.13297666903577035,0.0297499174788758,8.361820904679208e-05,0.0020097635210179223,-0.026765382638949835,0.11586374873930659,-0.03368881601099439,5.8059497868145576e-05,0.008683318399930232,-0.043463993936101744,0.08369715381406344,0.005325331123351394,0.0002531910418118595,0.009317602899865204,-0.002255226018292518,0.008438659304473309,-0.017875026571897993,6.645551008138166e-05,0.00566452748188141,-0.02311118204230651,0.2748977759011755,0.008022899866126752,2.169113202648504e-05,0.01304716503419389,-0.007370325594652498,0.024178115898962182,-0.04463550999673096,0.0001065548405034458,0.005603224520299729,0.001950933572611657,0.007386590947467665,0.00248427334663455,0.00041631916497837255,0.0016543844051163832,-0.014146762612704348,0.06886226368732466,-0.010179298790834629,0.00011766507255748874,0.021843493774628114,-0.002568313797715898 +2021-05-07,0.001720886469954916,0.01274646991865683,-0.00011673488729859804,0.0001427739183319463,0.01611220415300528,-0.0008931358010198799,0.0025991012626031314,-0.0011829891382355306,8.245268917402208e-05,0.009363230609599413,-0.023582303465273957,0.06828055936046552,-0.13168782640802976,0.00015976673424936561,0.011953376201537627,0.02075357407089597,0.023689867386473804,-0.02250846764172466,0.00029566378077479274,0.0017542484979161661,0.03944979132239587,0.09910664968989787,0.07272292181638211,0.0002082762202270942,0.018130236272824556,-0.00725929420749209,0.017639575843984973,-0.007586888785479389,8.98572244598584e-05,0.005890472880391364,-0.008870804806989034,0.03490113328559257,0.0007879328580871365,7.457844932675961e-05,0.03369000018304736,-0.011943148593779184,0.09685098111684769,-0.007704928780525727,4.2287637766349026e-05,0.013661916262533883,0.009708870581627373,0.007392986120377158,-0.007275559673558987,0.001012729842747664,0.003801261714463578,0.013966922262542036,0.029479542319086758,-0.07461486160966908,0.0001656692345592786,0.004305044356965149,0.006732621491744901,0.004901537807915569,0.007388688699691895,0.000671392059293112,0.003204244079979431,0.01284770986780667,0.16463064290620416,0.007493743455297212,2.3256150854262878e-05,0.003533512174218471,0.04596974247476991,0.1530397635785937,-0.01852649634208716,8.923162922456049e-05,0.004147593420293293,0.011160099974084159,0.06796621188766319,0.022856157087603284,4.6220734043300754e-05,0.0049243166184971396,-0.01396148779276862,0.014036309907967656,0.018381764739314473,0.0019399999782494484,0.011484078544806374,-0.05032969432016603,0.33708425339983916,0.018995997068408658,0.00012286775842527964,0.002139288952798112,0.008145517306981556,0.04338054827195372,-0.02236526592708002,0.00029075812935491297,0.0014545477903525389,-0.04325942925460439,0.27540590894123207,0.010534214688182244,4.4245436837283944e-05,0.016382441086852877,-0.05421816710760546,0.31332265626188366,0.0729051616338673,0.00028519364215527193,0.01740654743827574,-0.0032068540884618484,0.038315347701732574,-0.02002866247042163,3.473254925509842e-05,0.029601262582628993,0.007175259857776506,0.07993370442094541,-0.021202825736308932,2.99908933781183e-05,0.010071669406509588,0.04303233535269228,0.1417750247262499,0.07091134731131161,9.777277461882874e-05,0.027638865373737352,-0.01628585494104593,0.09672474215003984,0.01120465294432704,3.8892454977083345e-05,0.0019075060625237867,0.0030106731500461874,0.009600448315778855,0.00031359783422303694,6.952635759713151e-05,0.008141167511928855,-0.0048149527118605704,0.018439352210823778,0.022082231510544236,0.00011939742536778136,0.004113692155695585,0.02531057439154252,0.02125055084665422,0.007999886247879675,0.000680780911974554,0.011926949043421163,0.012054660384707103,0.05329747807527291,0.021034759438982236,9.519942581549728e-05,0.0028597027202950254,-0.037933339739000975,0.11587126776453543,-0.0076595650134846675,0.0021011859913935564,0.007678950251332954,0.03366829518441333,0.35296641806147566,0.004759826157858359,2.4528440318778085e-05,0.01295184620765192,0.02589122444379345,0.07917745362539472,-0.0015716805172661453,0.0010691098447452238,0.027780552386215726,0.05005941566911094,0.4036105404950808,0.17496409128976698,8.259407992080644e-05,0.0060849978936828655,0.01688609964859375,0.030791179209384827,0.008176896377850398,0.0001294340119147838,0.015601743341726919,0.01388148856281064,0.02072900909597513,-0.0003108724030366971,0.0003843805565823872,0.013632297131723297,0.024286954107660394,0.08671626322664147,0.0030862048191161243,0.0021708151225416574,0.00033446452968315587,0.010649672355033682,0.04367391751277783,-0.10682852941684112,7.823560899168107e-05,0.00078469722937226,0.006873134275706625,0.01009605420455843,-0.014391530087918662,0.0016923116599556324,0.016620408237971774,0.053511131579384016,0.21763310007227757,0.10646195459842042,9.7417105848482e-05,0.03587786215350694,-0.003949420406013853,0.010732798171080105,-0.011050147880473852,0.00014916975597753737,0.007659218124154211,0.04779099960979331,0.19727530895157885,0.19716758064984208,5.912719918729344e-05,0.006810518888479269,-0.04071489755255067,0.12259021320131963,0.03937719459059299,0.0031478614129918704,0.018474319129900316,0.01748272990190776,0.08970698286783142,-0.03544972087411173,9.694458782603275e-05,0.014126394441288128,0.024625044116949622,0.13432491847082803,0.016638016895313603,0.00013294781864168286,0.00754381636206293,0.0022689007686740336,0.012760107871896107,-0.054128678967873795,8.410268386556421e-05,0.0004734663982121153,0.08692933480235052,0.4374940736121891,0.11142550482811668,4.9939199538805344e-05,0.008004585758426358,-0.012453720547277116,0.023208277229156807,-0.0076738221920281974,0.0002616288346147545,0.016781050687513618,0.0012155184204535373,0.005197312156949931,-0.10865294318283114,5.8156346938375445e-05,0.004983906832608338,0.05046094662203829,0.4826754326959937,0.07206289921307092,2.697313861874839e-05,0.0368519419945334,-0.005740385045185301,0.021151863645270146,-0.010584463665164901,9.486398203176301e-05,0.0040352819262069965,-0.017860889481137128,0.08588902247531985,0.0007138024378022366,0.0003277882594156917,0.0021945553911174916,0.02908439079773648,0.130784453281149,0.026898033387942402,0.000127372492152509,0.003287004292542906,0.007670741858443399 +2021-05-10,0.0011538483310634812,0.007917357973560076,-0.0456585883937278,0.0001541185905626779,0.028972237256553204,0.031855875533784564,0.10451780038384496,0.03302242981296742,7.313239750155735e-05,0.006186769264580297,0.00203120036489761,0.006812861177462181,-0.08251459427013885,0.0001379178349006961,0.0066495686170240965,-0.006882669157146551,0.007450885145760296,-0.04166653022484071,0.0003117574793522054,0.004332294191902257,-0.0022156202339165664,0.0060235097243102114,-0.03966241938978341,0.0001924613284454633,0.002259879140807076,-0.031503341618895085,0.06637196953344243,0.10893117854827775,0.00010363791264018532,0.010070111270926581,0.007304519502224221,0.02597315714576812,-0.021202062601476532,8.251953365912224e-05,0.009263846283906444,0.013566834444062275,0.11493899390347641,0.0005321816219576759,4.0477133441596625e-05,0.0074808846321143384,-0.03598090196299898,0.031201151564751277,0.12139751157342288,0.000889295734930964,0.007876267332952413,0.04321652921314689,0.0917070396861579,0.001600349955555898,0.0001647817447165735,0.0035695643287659866,0.014712657065552881,0.010756721630729684,0.022722356480722922,0.0006685525361408489,0.008591181738385988,-0.0029067552958891713,0.03952859373403711,-0.0006932000637113009,2.1913911208129687e-05,0.0031168042659925474,0.01057417573592616,0.02670756564971284,-0.010710065148420812,0.00011761514737066688,0.006845160023411073,0.015219206466966666,0.07792656632051047,0.034905605959679085,5.497538592867336e-05,0.005778507009580772,-0.009066211122167218,0.008703832091785445,-0.0011060164069109364,0.0020316004313606184,0.02029025667578409,-0.03259533054542147,0.2025445626357994,-0.018631542587056894,0.00013243016140818766,0.004670293440877965,-0.07094293820468603,0.4241432333677851,0.07137070789513286,0.0002590030393995336,0.024044249663030533,-0.006848101833756513,0.03705558620651996,-0.0016974734725482507,5.20568011795137e-05,0.013757474932163201,0.013002406351526772,0.0665387825091474,-0.0005228559915835183,0.00032205918667185335,0.003173981872727512,0.06448162754051505,0.7541653071200229,0.0459517577207945,3.548131210241672e-05,0.031240611054919168,0.024405892111450837,0.3042522569733113,0.0639045544518337,2.6800480941267457e-05,0.01537964243481359,0.05154802234439281,0.1717357470936442,0.07275683248630452,9.668833022777645e-05,0.00586477482834913,-0.01926811385408075,0.15180247266190428,0.011227300058864397,2.931924173683409e-05,0.014866672345471047,-0.00270271012660206,0.00920374405421785,-0.012811875125980246,6.510469643516978e-05,0.001028239541367932,0.0024961740686191194,0.00988248537186766,-0.00048196647959940957,0.0001154934308417674,0.00402160161574984,-0.03605491871210169,0.034113500151819943,0.06032747881060247,0.0006041069059594021,0.007223639277102206,0.008732962449359935,0.03236197276858708,-0.005664474599735095,0.00011358281129189853,0.006096333490533776,-0.0438757749779015,0.16163835183426006,-0.04943998964370935,0.001742206227243189,0.012813770202610937,-0.00989497307487138,0.09408870195932977,-0.00024902068667491525,2.7043278146221243e-05,0.003977043320965064,-0.0034217074942463313,0.007709038256546454,-0.003888938005546548,0.0014511554922832734,0.026908040559024255,-0.03148231608206466,0.21170283250697214,-0.002049538775516258,9.90297424107801e-05,0.00811020700945155,0.0038888549368222185,0.006987732040176895,-0.051269686122801625,0.00013135024491061134,0.012168900297456563,0.0014057394259525098,0.001983885247651994,-0.05927115359756499,0.0004067168742868228,0.013313965771894493,0.006367126013366798,0.022489160683006045,-0.06765798229872381,0.002194423972051516,0.002297365001710043,-0.025771244013806763,0.08335778883798706,0.0573570821087659,9.919266704521062e-05,0.003565711905179256,0.009412827840851965,0.012604454906797687,-0.03201164501735737,0.0018564071758762324,0.009719693183604133,0.008925203134445467,0.02125750719349877,-0.008769836026084,0.00016634961921483584,0.018466632032885653,0.030788616512230138,0.07714042049506274,0.030050010429452507,0.00016179628609463745,0.04372103543441142,0.015143811729893323,0.059286902523265586,0.01913775017935674,6.23433830999769e-05,0.004389472193517352,-0.0063609575536829836,0.021694816384733952,0.00187339018991686,0.0027789745961130834,0.034455014762397,0.019389024745202033,0.09664511350043285,-0.015675343434934437,9.979680445483625e-05,0.01048466196196431,-0.022992368619951627,0.14649827589843442,-0.004915554828170928,0.00011381827109141109,0.001333867055277107,-0.001431416952519909,0.00876732762575831,-0.012826042446331141,7.722316888027655e-05,0.006292254321671078,-0.006269078219139959,0.025810859466285196,0.0021990340016707294,6.104479185497931e-05,0.015850804145004532,0.058985281884313345,0.1164225879140161,0.04869606943237164,0.0002470220971590601,0.028147441100652364,0.017946001810311935,0.0697684500847893,0.01641892509160813,6.396214328358164e-05,0.013967587887924598,-0.021111424728919418,0.2574362415577841,0.012423372637192003,2.115822067060727e-05,0.016374382518821555,-0.0012196941624432495,0.004454600863290242,-0.01267487915302995,9.570863291795314e-05,0.013085944716185198,-0.019687053901609554,0.07799578308756461,0.01686918635904804,0.0003978666877954062,0.015319197202539814,0.0073925774798200075,0.037903083347017634,-0.00826574132049969,0.0001117102800281436,0.012903303405187215,0.0013215216524719684 +2021-05-11,-0.0017656747460262933,0.014257960011116254,-0.0026546735143240996,0.00013096037109823095,0.008963176034526107,-0.016963133009018302,0.053232719526562916,-0.018818764025623536,7.646064200199831e-05,0.005162216729794764,0.0276541399257836,0.08760098305002996,0.04446943807343891,0.00014603211684219907,0.017164435434661902,0.0358880976647689,0.03641369689289877,0.012117586027205212,0.0003326239538131147,0.009889390131980806,-0.017164315470946694,0.03943841712451128,0.011658973790352216,0.00022772189244584383,0.009959445427704078,-0.009406205276658556,0.026377895531543023,-0.04473617506984967,7.786119201401025e-05,0.008879606864444183,-0.051239897945708344,0.21079626477693203,0.04303858640605091,7.13239193418706e-05,0.025005958579097463,-0.0188974169149367,0.1595167817751049,0.01673497319957375,4.062512215263539e-05,0.015366652466944715,0.0030545410581395214,0.0029268626597147617,-0.005623833508604893,0.0008048008191128662,0.011276054690674522,0.013397597472310794,0.03032482559048336,-0.009489569129705631,0.00015448648789492415,0.0014204203203442077,0.007576202514681766,0.005150853807653281,-0.013167682017980206,0.0007189467244872837,0.004487029632353699,-0.013510130844613513,0.14785844059973388,0.009130107533956669,2.7229284087072547e-05,0.011726275841467682,-0.09757428927869008,0.2997747902691318,0.2714059641131199,9.669217439273848e-05,0.0009508424686430737,-0.006396027346185943,0.033860126276660636,-0.0014195345507579604,5.317206865277827e-05,0.005520827486207913,-0.00010821383501428034,8.311045983548025e-05,0.0018316741854328253,0.0025395108679457153,0.0016821580506547703,0.053551763514469955,0.3373180298185886,0.046504355922567894,0.00013064305570285707,0.02955058850947742,0.07242695038912453,0.39807717813023297,-0.0037570312551101596,0.00028173522587023877,0.012898236156894676,0.006706722618643134,0.03294474597163027,-0.013769192381931077,5.734362422185422e-05,0.004343626497061165,0.010075368854826721,0.05580576410710033,0.012879991967438274,0.00029755599381934693,0.002024510084566275,0.03823116621514458,0.5256087865592458,0.01620770773345228,3.0184581624393997e-05,0.003259339506245232,0.02270295679335599,0.20852705920905767,0.04363699121926266,3.6374892050955335e-05,0.004825290264249625,0.017582899507259164,0.05805885260833575,-0.011429970882482656,9.755393699566818e-05,0.03192642460983821,-0.034035257887707886,0.23132979649576152,-0.11602558047805302,3.398520124297611e-05,0.005339450021981712,0.018896234335457316,0.060326346161025994,0.04227876157278476,6.944574264217303e-05,0.0015959855695424556,0.008967155285105782,0.028005964347790662,0.009424162543440709,0.00014640393662741202,0.0037167993219652,0.016979511828915484,0.017125156010228015,-0.04442373698165493,0.0005667169792863483,0.014382116772562197,0.0021367362951978746,0.008311161253075204,-0.003052533725246406,0.00010821195110800885,0.020108136663797953,0.07501023839442164,0.2822291819817479,0.10313978258099395,0.0017058380734539344,0.005735723555687359,-0.010661893428062324,0.09028654725463044,-0.010716527490208636,3.036641251565257e-05,0.02221209812309731,-0.019258976643824907,0.05434426040522868,0.012099006371148307,0.0011586460719541119,0.03627737232044509,-0.0026399214435174376,0.022493755499750388,0.0002479066532419737,7.815462376908465e-05,0.010253099370559035,0.016552394192655726,0.02419689121132863,-0.02707881618071387,0.00016145319169355343,0.01186799099248623,0.017930124956826665,0.02725527482671282,-0.00805790052627485,0.0003776040680615451,0.021743070749166434,0.0157494870953728,0.06279973592774313,0.009924999117318058,0.0019438329453492693,0.010513050598497416,-0.02545443316590988,0.097282799478591,-0.009633673969529119,8.394942794813662e-05,0.003466443405203884,0.036359898119994946,0.05379135184105239,-0.07828014160221888,0.0016803021795076677,0.013175293356431793,-0.02366551595287286,0.06776454611090385,0.0074700592164647864,0.00013836602992425956,0.0001909363762369878,-0.02285775966756028,0.04991263285106225,0.009480979444405627,0.00018564512919980842,0.026331716942771345,0.03126483095036341,0.13517322783443167,0.04428293034874553,5.6451999013694515e-05,0.01472750157269802,0.014318243033391156,0.050596709380174465,-0.00384675304603197,0.002682165146763575,0.010032051871593341,0.0050167425717339694,0.022986658658215073,-0.01432774394406859,0.00010856417594410722,0.015159421257276456,-0.001079138516151162,0.004969121652213993,-0.0001643759303885526,0.00015749194581768668,0.007030469522981831,-0.0062311185061395035,0.03670234836199486,-0.002732414068136991,8.030098206411947e-05,0.010110241516144262,-0.04177318237731611,0.1699643733614136,0.006868106575617108,6.177134526454324e-05,0.004931267747027926,0.02610182527608369,0.04968821568622718,-0.017209458192084276,0.0002561219919683037,0.004095870012331863,0.012612588957450625,0.05188499353877412,0.009836990609939311,6.044729224246898e-05,0.009786749888080901,0.02065155721846434,0.23461878992624682,-0.06135594543939827,2.271021783037091e-05,0.00908619966048394,-0.019367846296086306,0.06520141055783972,0.005921086160485429,0.0001038324981747938,0.005681391199373619,0.010585732606891244,0.04810797990446066,0.03998528045054614,0.0003468420701283626,0.0008093232725054039,0.018444428128859772,0.0846835029484959,0.0031608319650509066,0.00012474931685212771,0.00776037567149642,0.004211685243596143 +2021-05-12,0.00037936042979688626,0.0022671609354125697,-0.0063622642714446925,0.00017695232072853533,0.0008020055389251273,-0.004001926795535627,0.012485166713187048,-0.042875735750875714,7.691044441966796e-05,0.00621418015000483,-0.02346351829081386,0.07591348567932844,-0.005248010234121549,0.00014297872016747048,0.02014708572237838,0.0056149186574790035,0.005113205009673815,-0.1320428229014726,0.00037061084152469797,0.005593101891669699,0.026127292053507882,0.053461630209679804,0.028787325387660174,0.00025571133207001796,0.009273560933197016,0.008060392176344496,0.02115028899755438,0.0202528595897967,8.321212382808025e-05,0.002484365413380439,-0.05492980385759678,0.2047279556695254,0.03822323754370065,7.8726465477507e-05,0.0006643179419806068,-0.015233484619560641,0.13854140235980217,-0.0072193476181000886,3.770667984538283e-05,0.0077631501562826066,0.02047102284862723,0.019804742442361273,0.020519713746114845,0.0007971042612011837,0.023993846600713777,-0.022878189119300053,0.06340140382162754,0.0690295035091708,0.00012617829598578383,0.013992534524328824,-0.00371581645794168,0.0025004996248299237,-0.002948225948437414,0.0007263598302812247,0.005885838149425667,0.0031542641017086315,0.04086479305441175,-0.012360931625858806,2.3002314593433922e-05,0.010289010048293426,-0.025163644368717278,0.07566801219536387,0.013187775172161674,9.878983304634137e-05,0.011047337862263286,-0.01063547456257595,0.05439397930393847,0.006101035700496197,5.5038661020609144e-05,0.00216435711936616,0.02593493848870327,0.021291800827451766,-0.004495994432935376,0.0023757229873840988,0.0011081173991232278,0.09876214491494612,0.6746846887790819,0.09951213447134334,0.00012045969707553814,0.008562143716977631,-0.09025132503174613,0.5348144317704655,0.12062994735512937,0.0002613116069398168,0.005058410108268865,0.0309585037518972,0.1837299201426048,-0.02588504676145051,4.7463639030586255e-05,0.0075726173618386105,-0.05533949916199338,0.33517400249877377,0.07080427106963855,0.000272114513684344,0.022364291880276655,-0.018713926460337756,0.23554524381316735,0.0007637041055386833,3.297014145864153e-05,0.013628327168465152,-0.01734858193059992,0.18909654199877235,-0.037829629961429474,3.065223196792668e-05,0.006830106215464165,-0.019839406363496875,0.06131854553601809,0.01036691061382789,0.00010422204342758335,0.025671562189473404,0.022136946183428752,0.13692016949255606,0.002486649586942163,3.7345876549975415e-05,0.015107447315828323,-0.00883697898485101,0.029167389124427,0.003012459253576555,6.717128381722924e-05,0.007103815992616376,0.004203385474023196,0.014716814092774071,-0.042473777608790515,0.00013059724364107152,0.0007980838506660398,-0.07158737233743126,0.06075373209533518,0.15165971786826796,0.0006735022040064081,0.008373573675328918,-0.016042179128546313,0.06147630551895887,0.007105095478505209,0.00010983521645375052,0.0004250266861995502,0.01707032904931173,0.05336412176674899,0.0002121280752154708,0.0020531075540848936,0.050315026395106675,0.006616111712990118,0.061375104177341065,-0.026350406447118075,2.7719971706132523e-05,0.006375898324691164,-0.009248691881597985,0.027168808060345516,-0.11842555717058746,0.0011129636887447056,0.014041709505803112,-0.0039039660788385624,0.031378142363687286,-0.0049215410288902285,8.285227721878597e-05,0.010203024670277835,-0.03136380144165883,0.055557201549199985,0.05101517669543559,0.00013323972268197815,0.027330190315537083,0.0349352390779648,0.04782943668287835,-0.009859507811189215,0.00041924932064287164,0.022718143414557492,0.027928401818455396,0.10354637258947043,-0.04802750625081513,0.0020905547025004746,0.0154191635043279,-0.0037758351727276126,0.015864231473483585,-0.004140027251735998,7.636324235827601e-05,0.005378342335510449,-0.03817089289405129,0.05258777985393955,0.02643338719747415,0.0018043661648872726,0.02244850448380091,-0.03130206495126712,0.09971367544941828,0.007936726971902525,0.000124375345480715,0.01980430240707985,0.015081949032327114,0.03942089584716662,0.005757240161654777,0.000155092699561977,0.0230124232326378,0.03141711775326693,0.14443736270831728,0.05949283767316174,5.308853180259777e-05,0.020529367644692348,0.055911585394693424,0.1889104027148404,0.01674125974314676,0.002805201039322343,0.01731275799049578,-0.018093978937662226,0.09406213526532585,-0.07059369933984774,9.568851568576848e-05,0.00920221169047118,0.03842237012515297,0.22159819678500398,0.09307137281058653,0.00012574152222039414,0.0036374732329333436,0.01700712644798902,0.09731419496166563,0.016953562161092693,8.266153108479737e-05,0.0008870853354915608,0.0032734058125794625,0.016118772851162932,-0.0009305019227097025,5.104054099711216e-05,0.021814908285617714,0.012497824622878934,0.02882415771542463,-0.09410869253234529,0.000211401076617066,0.021201374077702104,0.025065024193664083,0.10594905463651974,0.03877895209408265,5.882818074587757e-05,0.01122345084929123,0.02091467127060346,0.22416689971140857,-0.0035298031408101237,2.4071926179590656e-05,0.0037352542571878374,0.00591608498780258,0.0225181871017187,-0.06583908654190332,9.183536267954676e-05,0.0025586267537797257,0.005051228089215895,0.019984344958816735,-0.0025240186752266956,0.00039841440552084795,0.002547006429083894,0.016124470999468572,0.06769984938766116,-0.0018474667333848477,0.00013641733749152928,0.007941485733483338,0.00046815829118768165 +2021-05-13,0.04010962723018931,0.29546942010473803,0.07217988445313932,0.00014355643668562105,0.01371816274346042,-0.031345463732045054,0.09183583650831229,0.005036578242936095,8.189795162783174e-05,0.015732200088983142,-0.0010497665644451399,0.0037253069929131365,-0.1260052678374868,0.0001303550537449923,0.012365532159002325,0.022608266733346975,0.021581466225291293,0.01775224944244148,0.0003535527159112988,0.0014944588353118762,-0.04049319375127929,0.08729353541798074,0.07719423748359518,0.00024271561695744077,0.01705814733414417,-0.019105136883933817,0.058174402660061075,0.017712764838815506,7.170756262455431e-05,0.0035551730916054724,-0.015429814343219148,0.056632596017601324,-0.013105169958944195,7.994367074632303e-05,0.0035888290075878,0.03341873159131162,0.30588984303609057,0.035503208844187846,3.746480876001599e-05,0.0034307903793410217,0.001582444847311862,0.0014181507619455338,-0.0015968316653348581,0.0008605001820612339,0.004400482128677673,0.035270148925295085,0.09200863834770023,-0.032538585337114366,0.00013404190033893792,0.0047939068320781986,-0.031059944078329422,0.022791722198480174,0.05739214307810189,0.0006661129623037756,0.0028883366930218222,0.010558942042589762,0.14122401246913582,-0.1206138785474586,2.2280998476791058e-05,0.0020892473650651255,-0.04576928743985234,0.12380973854243661,0.041050982567413456,0.00010981720409796849,0.019397395154596018,-0.011798130372025489,0.07102567374678774,0.007755572726570612,4.675840056725132e-05,0.0023953583304073133,-1.5264724275677778e-05,1.4265965339350584e-05,-0.050068819554506046,0.002086943887453265,0.0022525546370652976,0.044870804899436026,0.30971302096880654,0.01604767491888509,0.00011922202756620117,0.0073529484156048775,-0.01945326171103111,0.09382750860603531,-0.0006086378156278186,0.0003210483755213504,0.02967300237904554,-0.002750132966758075,0.016637035782654578,-0.0019615193208494873,4.656275810234662e-05,0.007254975152648236,-0.07567205730616473,0.4633027808574707,0.11680843047246302,0.0002691890822617279,0.00018887784913660657,0.0683512344326155,0.8895754098215912,0.030870311894342233,3.1885543514639976e-05,0.019839324619026082,-0.014723292617525243,0.16108360273375752,0.021407407365426914,3.053762926263593e-05,0.0004660983470538404,0.01278505406910255,0.0363642711996217,0.00023975039580303206,0.00011325318823042049,0.010630984668155069,-0.004051769459315011,0.028789007350808738,-0.003978420531158585,3.250950913359041e-05,0.022195142295626746,0.005515553109915755,0.01801995928743703,0.0007687640687943934,6.785981130409639e-05,0.009513318010489474,-0.014268670401963958,0.062241422248038525,0.0961121817961701,0.00010482203669055154,0.0034549043104122133,-0.027366586741246417,0.025249245141562734,0.011547371030991396,0.0006195092517999302,0.007916068250501226,-0.029369766640360517,0.11608856377732492,0.03705146579374065,0.00010648711636818699,0.004738047168492028,-0.03305571666865468,0.143481217685556,0.025132152425058913,0.0014786680815263784,0.02184761280539913,-0.0254017943782919,0.2049831126619978,-0.013273031152867794,3.186607015167688e-05,0.006736290590110417,-0.0421051024181604,0.12364911559525314,-0.00749434175350396,0.0011133071120843206,0.015383180126717976,-0.009563019399082663,0.07179503783976557,-0.01679744434456506,8.870053744467258e-05,0.018191349870630227,0.007634853803417868,0.011330792855792702,-0.02081033245812065,0.0001590324726987074,0.011482560156284002,0.004867811276095905,0.00755415123496062,-0.04134820713515303,0.0003698724388932049,0.0181195210532288,-0.04839520276369588,0.17168426931522957,0.07086036986301296,0.0021848526384730723,0.0025131390240479734,-0.01594530251903461,0.0650344348871905,0.020827337086075648,7.866467682549241e-05,0.009251335821627814,-0.030907019722745614,0.044087854147406284,-0.030183035544039446,0.0017426708222530827,0.02193619773858312,-0.031206703678777984,0.10770556733296584,0.008853898857896099,0.00011479574238362003,0.004812253242548494,0.04112693154804544,0.10285406996530948,0.010535393558023782,0.00016209335183332214,0.016926963134994154,-0.03381517630445339,0.15014396260412052,0.029952616192319138,5.4968983696760285e-05,0.004258622791264756,0.024119214734615275,0.06133244835688867,-0.006176966223092159,0.0037272705700791458,0.015810624260866178,0.00805920540679721,0.0377416212639677,-0.008986177535369802,0.00010622145436280336,0.00430634167451391,-0.018410030990852325,0.08916738714383726,0.020108556095971147,0.00014973015122133292,0.012777576985229994,-0.004505951091648676,0.027713876429922464,-0.014618863814742351,7.690204627452809e-05,0.005701869792622681,-0.004156198087428382,0.0183408154591976,-0.02115524128200054,5.695409980328717e-05,0.004855702328198033,0.017194333180707018,0.032402139029846524,-0.017737791331814867,0.0002587265818518565,0.0452769372230744,0.01571787851452855,0.06016299176553467,-0.01005865034029658,6.496491567109649e-05,0.013562655813073223,0.0003092051401448384,0.004205168246675782,-0.03173857512564516,1.897119176408631e-05,0.006552348246773586,-0.003198455691864992,0.008277820040403158,-0.0005744102052271451,0.00013506204549209515,0.005167241209918482,0.008177590682037024,0.030980001891612,-0.01030668654576437,0.00041607526621834226,0.006622572621122966,-0.0431021050164148,0.18990156253251028,0.06302565570611145,0.00012999951693709174,0.005622462241256951,-0.006822520342451193 +2021-05-14,-0.05344550624124682,0.30015831385598274,0.1424297506984366,0.00018829873480868153,0.00881345263637766,0.04092422497497185,0.12817872594053262,0.061903310429978715,7.660816143034847e-05,0.0031524939350251555,-0.0017088874427256524,0.005780136311373728,0.0014122002307543182,0.00013676424824083652,0.005962452775753786,0.011381675828113814,0.013493042864679767,-0.00087173610014842,0.00028468472687154597,0.006340767780455484,0.00622692096437867,0.013705413931409947,-0.012412531497705997,0.00023772725140669805,0.02150468047562741,0.018543008863374504,0.05156287506474602,0.009238584553418956,7.852172300767181e-05,0.005497450491042663,-0.014327480901125783,0.05791580350250626,-0.021954268719487448,7.25876284301568e-05,0.0035198268018126443,0.01819109029455364,0.1538360335407433,-0.1380216126890708,4.0550785419389645e-05,0.009500933641214064,0.00315380210499817,0.0030383128702324946,-0.007990194229348215,0.0008004730816740739,0.010236786700394457,-0.018402742708998627,0.046282941209615666,0.021122208553840355,0.00013903479175338335,0.0034998876153278695,0.02053458889407522,0.015352826468433707,-0.0010628785901732624,0.0006537655468454538,0.007053536091414094,0.002747162770936311,0.03544139393816683,0.0005500410127150775,2.3099170638754974e-05,0.0009460457610862823,0.04960158514566269,0.14829576655910454,0.018656933847764977,9.93614316212552e-05,0.0005015403176755714,0.0030959575179513527,0.01619617584411564,-0.0004593301681209101,5.380768750685228e-05,0.009076125047417768,0.02718172695608734,0.019626521840719866,0.0060265317621481665,0.0027011995970656886,0.002658625767094788,-0.12311453987217824,0.7867013398946308,0.0975896847566723,0.0001287809321239441,0.028940661880256565,-0.035713249125423764,0.18483499837928008,-0.01952354971658095,0.00029919434942021517,0.007165484721045294,-0.036257054070754094,0.22898020233258137,-0.007861091640992416,4.460212345409572e-05,0.005701132695407661,-0.02108896486008096,0.11686290247517944,-0.004062330036093085,0.00029741673529086335,0.006027720603282307,0.007961945386564476,0.10710031751532025,-0.08858611042097994,3.085024853946757e-05,0.0045969311357642526,0.007308044235583844,0.0812168724640838,-0.12327084858147311,3.006329753600708e-05,0.003644432503774717,0.003921294717261597,0.010209049741509178,-0.016646078574262427,0.0001237276944348703,0.0021746272968382143,0.013768003521517599,0.10470030782921132,-0.058585898650262924,3.0374937006693614e-05,0.011637471868542578,0.016596374125014163,0.051330492593993,-0.0291635657249414,7.168283395860128e-05,0.004899131012803978,0.015521208198472173,0.06202189623601638,-0.03162999320369253,0.00011442714967951831,0.010373492746091317,0.002561903150711819,0.002686217050452346,-0.06460533699266997,0.0005451263406727006,0.0004149535339099937,0.04139689486805619,0.16022640598605478,0.04181313677894628,0.00010874760080292964,0.011865445651323183,0.07022580572130925,0.23630155730033603,0.07655342522097591,0.0019074331301255363,0.005033750813837876,-0.008257181501309992,0.07755353133704562,-0.0013010180988058076,2.7378676380434654e-05,0.000875114055835275,0.0247639768099019,0.07571067394320256,-0.015573634803078893,0.001069386128387757,0.0064998784900141835,-0.01345222209604322,0.10801107992259783,-0.0015197248629158899,8.293758090360383e-05,0.001362045953924693,0.02568585349246491,0.03783638877352487,0.017463577879871725,0.00016022478892073437,0.005981761859330542,0.027594653112617995,0.04069775356200102,0.003277310780429597,0.00038918708067805445,0.008739774720213131,0.005933437678910412,0.027386245720587562,-0.0556410249915377,0.0016792842928064764,0.0003482538776767327,-0.008529737190015147,0.029746719523159885,-0.012285414253674609,9.199981247997905e-05,0.00864697702006915,0.051408546567331244,0.07323793896805676,0.03941282483348973,0.0017449235470611754,0.023427758995044054,-0.030612939539060684,0.09746812639463676,-0.029326483048519557,0.00012443955587773043,0.0026560971878120216,-0.01915066675756578,0.049541511878976284,-0.019233241413157045,0.00015670217312257624,0.003136211144975638,-0.005193429725518067,0.020356091227678976,-0.030991748567930803,6.226927307905131e-05,0.010067998763182703,-0.03750338779179993,0.10744666435110975,-0.03785251812072227,0.0033082294318873,0.02379502695414286,-0.021975749941640872,0.11780116099660866,0.04315127174275629,9.279716418542879e-05,0.0041030331952918294,0.03355057182201245,0.15596621289315737,-0.008353195818947348,0.0001560020063870454,0.021101077304412675,-0.0028781693857150206,0.016229966998074937,-0.02490422497183525,8.387787347072161e-05,0.017090258533699578,0.01957942510579034,0.09096871919836423,-0.010117161909884546,5.4094766519501505e-05,0.019521977760218325,0.012548682951599735,0.02478236824766504,-0.026465479832287753,0.00024687933271433024,0.0009686619371653657,-0.01409320078460182,0.04977919764948039,0.02217298305790666,7.040056148795794e-05,0.006376157053984327,-0.001955538825436487,0.021267792586337438,-0.005464994493663087,2.372331154000271e-05,0.006147102477816277,0.006665504750617599,0.018505153249020755,0.008740327699210773,0.00012590683902313735,0.0010098497385399416,-0.010279390488628233,0.04428690785484736,0.0030946622474697203,0.0003658642512689622,0.0020418066205496227,0.04160859005512886,0.1876851546882611,0.01610105159979854,0.00012697694469880388,0.007312068178379759,0.00393367662676075 +2021-05-17,-0.04607710052280868,0.31809530178876866,0.07703975817466487,0.00015318437599696547,0.0062648959765275024,0.01134955702838881,0.043661110943864746,-0.007224387611185654,6.237271604398515e-05,0.019907150639399296,-0.03923694889945137,0.14726291410304448,0.04275343285986965,0.0001232534382659308,0.008784744747209793,0.02345242821579535,0.02229547263913083,0.01903917765864384,0.0003550086935397207,0.004009957546836057,-0.0008783061615974308,0.001981897784168469,-0.03578723259192644,0.00023187955042208838,0.01769710280210953,-0.008227337583465947,0.02346522780885195,0.003455111518986612,7.655636115810888e-05,0.010882233286925266,0.004184708345210149,0.014586312775821734,-0.018946582799256553,8.418011763877398e-05,0.011013667674411119,-0.007302272122617498,0.07146683690744063,-0.00998089869470858,3.5039029342664164e-05,0.013396527230295854,-0.008780941953469599,0.006749052510453634,-0.0038416504300686476,0.0010033283544138916,0.008045403753408252,-0.0003709561500587551,0.0008804437987146581,0.00490351691921436,0.00014732716203066752,0.00019426826463156107,-0.019842778371821784,0.014587865042963034,-0.00165416904000045,0.000664867498084781,0.0015793834897189197,0.017410615219745157,0.2055298762163324,0.035327877265932194,2.524421941771727e-05,0.009238092111389849,0.020484122142200342,0.046096140069175465,-0.007542698066869366,0.00013200908901506872,0.020928313846259726,0.011557853286287254,0.058354864012065674,0.015613956995196677,5.5752190350298394e-05,0.004456373437060436,0.011505809456473223,0.010066936861505088,-0.04616469706118923,0.002229168027056412,0.02255536463073087,0.06905436939264831,0.4345106924761407,0.040597460219742906,0.00013078044275456355,0.04119168731558869,0.017867269911087395,0.10033118288861725,-0.0929275819893637,0.0002757595092319045,0.029600693880419304,0.03729033481916353,0.28375465494778346,0.026157557358456412,3.7018110203188525e-05,0.045968690567805684,0.08052786399546902,0.3927635703499276,0.14979948893260966,0.0003379105784376351,0.01766128218890044,0.0237489275146675,0.3169723173331427,-0.0004614601324897016,3.109230349976139e-05,0.019673619919374066,-0.006924671054352115,0.0756301416902976,0.01229478071869842,3.059045542936451e-05,0.0005183615887759474,0.011496136271137545,0.029305507666520892,0.003970328397280704,0.00012636459499500534,0.000826695291347582,-0.03454274164093714,0.23828941443657656,-0.12051396266403198,3.3484547191274096e-05,0.008607905190179885,-0.0007893399489831503,0.0025258258743438423,0.0010404662630953355,6.928481437591802e-05,0.001161333126572421,0.009408943770372855,0.03505355920046845,-0.04444895550851474,0.00012273186893869167,0.0022737082415744923,-0.003380860750836232,0.003460841585584792,-0.014466233914971958,0.0005583687758258138,0.013019262265887186,0.007061914774449764,0.031257024740556985,-0.001892857982107902,9.509569233491346e-05,0.008088658975313958,-0.011897475948103652,0.0393078129325327,-0.030455696986325168,0.001942652537174387,0.02861762818823714,0.03008545810440455,0.24283818155485984,0.02772463432774176,3.185824530641079e-05,0.007205479618833889,0.00995737092377094,0.029980035053450906,-0.05564442355390053,0.0010858849622215466,0.047288759394105276,-0.003971953462806193,0.03529663012089346,-0.011967500068728992,7.493704280261172e-05,0.006937038348694506,0.01933816786039721,0.02896878909748414,0.008455226288744313,0.00015755433972541085,0.007371146539633572,-0.010689518046560792,0.015274078412229055,0.009699578847034453,0.0004017048015179488,0.030228828928640265,-0.015101198755805982,0.058559748134131895,-0.02101299753683294,0.0019987688136391146,0.009441157531528506,0.007893549882863764,0.025608741736067815,-0.11227507665401525,9.88950348684602e-05,0.005772430304290055,0.026141524202179377,0.030022687034352083,0.0025128818423965343,0.0021645047270852547,0.008032412060021015,-0.003548082997990809,0.012332625567157912,-0.05904163494231935,0.00011398672106165783,0.015207115132734306,-0.01639645428264062,0.038259492698213333,-0.006871315372948086,0.00017372851657426107,0.014743057670865986,-0.01955281825301907,0.08147019050273162,0.0009156966079426282,5.857665349415145e-05,0.005184864979352097,-0.06134372287925305,0.21277824046395255,0.060083592032755255,0.0027325050546247133,0.018520383065520014,-0.011513393483575185,0.055440517175648955,0.013615125338673036,0.00010330388277771005,0.006640650407757475,-0.03244505524625385,0.16666547247670646,0.05109618480762782,0.0001411769075608328,0.005941484686678194,-0.007871252794660792,0.052042735051947335,0.004300275839912979,7.153728387548165e-05,0.013423845012909287,0.004885196239538827,0.023033541105940303,-0.0005419307178884427,5.3305092193726956e-05,0.00966992101370256,-0.015502779355856889,0.03159334844726593,-0.024870547982445274,0.000239245238222113,0.021439432460312016,0.006717211429321529,0.031058104468193754,-0.11015914614584181,5.37809473095749e-05,0.004320770298445996,-0.017431345935738606,0.16536035765508414,0.01061602934650456,2.7197613908355897e-05,0.02164290413545568,-0.01753528307035284,0.05617473763350727,0.04396255505952182,0.0001091140542835998,0.0060036737296394116,0.0062633384441633695,0.026675200580629176,-0.003970910297753056,0.0003701060265890381,0.013014885946142769,-0.02224603491335334,0.10736757470408144,-0.046283869367533176,0.00011867282132685511,0.008912574012949238,0.0009346431065852586 +2021-05-18,-0.012291872192216793,0.07631888328009295,-0.0038272166349113414,0.0001703227312901384,0.012626081715484974,-0.020346240773825713,0.05606017374159207,0.009068625681765271,8.70843805081824e-05,0.025859474142840073,0.004377138390176245,0.013889800617188417,0.006643630105319376,0.0001457778264456122,0.014046660018637266,0.01031392089448037,0.010321339679732948,-0.02862799335037232,0.000337252813439279,0.005114446852225489,0.03172601515491642,0.06936199374238111,0.048706380530737364,0.00023932701914385364,0.00889627586520549,0.0029237115127219828,0.00582969462893461,-0.051522001867520255,0.00010950537872882288,0.006052988378965363,-0.03123958336907311,0.11695843579527766,-0.1740582409982488,7.83724704960242e-05,0.01169332650104569,-0.019749261109644395,0.18208250301824724,0.02569814022184578,3.719471637761567e-05,0.020394411560653997,0.0159109209605128,0.012181330357132375,-0.005452227133712528,0.0010072688037287283,0.012767786897986138,-0.012693699325029333,0.025837323445465896,0.02616415964827473,0.00017179185587177408,0.014446349552356253,0.01707752052906086,0.013530234618537544,-0.08469305610439218,0.0006169413036924903,0.0026218999159853696,-0.0026603163429317384,0.03382285625141243,-0.04324276186531454,2.3439362304499936e-05,0.004543306939772988,-0.0030826412637238775,0.00889065044616743,-7.178936696216714e-05,0.00010300077440873745,0.015064334832083009,0.001829888401762754,0.011534710963839352,-0.017595316739378402,4.4655988403274874e-05,0.014379651696511482,0.022461882000863236,0.019733019645538877,0.0004438725128589195,0.002220115483828691,0.006194781647353698,-0.014539896636133729,0.10025722150813161,5.5932820242430976e-05,0.00011934322301716848,0.011773359544191528,-0.04602552124265264,0.2526363165441849,0.01719661620345709,0.00028210524895813617,0.02354819489940134,-0.005655626926099816,0.028924266806985392,-0.02251888216295779,5.5078150764548513e-05,0.007805535826204229,0.07524562563132782,0.432356848165592,0.1285122202857221,0.000286830759394587,0.0013465962902532548,0.01646921390467387,0.25047721884730656,-0.005999418106339732,2.7285685499184533e-05,0.014491230878950274,0.019096570416367725,0.21516551171387052,0.026290788887215068,2.9652712507145633e-05,0.002364863010176554,-0.037859374852275515,0.0893292853827711,0.007498891427200505,0.0001365219033750576,0.014597841831720937,-0.021696502182171788,0.1460337759501899,-0.018369330173612378,3.43185385892281e-05,0.0006113367406414705,-0.009269623625641309,0.029322032213874413,0.013025116162376065,7.008828230733271e-05,0.0005148800226801051,0.0038931578171855596,0.014385663538102444,-0.0184784580381327,0.0001237430186467495,0.0029757495426514986,0.02668100510310391,0.027244342464125326,0.02254689724231937,0.0005597594272398765,0.027185991106504374,-0.023438659678659133,0.09202361299985852,-0.009164754696124568,0.00010720610114757114,0.008236815621921781,-0.06381214694963011,0.20722575162273274,0.0868188552833955,0.0019764180331276505,0.030219064860686186,0.0060189063015677925,0.047294450300489975,-0.0007545506150627329,3.272574905081296e-05,0.0032811675888293357,-7.881866397111084e-05,0.00020731094058212295,-0.0403048691233578,0.0012430200008450283,0.0243694153232348,0.009437567527746831,0.07844984032642038,-0.0023692826983051883,8.011127640770471e-05,7.683589571108162e-05,0.002645351920643178,0.004226165137773392,-0.04589885089827434,0.00014773465390831452,1.0883014506283054e-05,-0.011118302424004831,0.014448257056876248,-0.017178698628876023,0.0004416995297717375,0.004958099782348938,0.025354048984568608,0.09835462543139062,0.011381105132320555,0.001998034014798178,0.002963673452957371,-0.0022844586172750337,0.008940436992467764,-0.008916577540948996,8.198132228699992e-05,0.013189915642613589,0.10228854050647775,0.15548217713505152,0.13974754280846066,0.0016353983700637003,0.05893944281168028,-0.011041839179083874,0.03610700189506567,-0.09855492807931168,0.00012116188608680835,0.0013538127109459484,-0.005066377729833886,0.014100035006001703,-0.0693918470712938,0.00014565914327290235,0.011359115793125754,-0.004797162542886768,0.021599134710278977,-0.007701884415199134,5.4207827950040434e-05,0.015274361112230019,0.01759089242944949,0.05380703852716464,-0.09812963881901363,0.0030986094506619136,0.02453970874864819,-0.0010361997703024102,0.004716115945823741,-0.03768617111706724,0.00010929482239822165,0.00317187330210692,0.015354924745061591,0.08630884041843288,-0.03171942640756225,0.00012901885843041156,0.012826410005522116,0.017529350976590002,0.09507339155004339,0.02897424406808409,8.720784377386766e-05,0.0020738134457155416,-0.0344535814172022,0.13612186919998234,-0.032530978474653936,6.361416981501968e-05,0.012565366399610492,0.041667164933485844,0.0766904230928015,0.005624067590163337,0.0002649001547892655,0.0002329713897384067,0.024015237794136488,0.13447592360838911,0.023984226989120967,4.4407541607939755e-05,0.006036817716018427,0.011076211492147641,0.13709773704644332,-0.0011883301248313083,2.0844536319971417e-05,0.003272985635886841,0.016106846367864226,0.04605834606032698,0.052409487551780036,0.00012223938106435415,0.0009214612255444403,-0.015327642051619702,0.07113981768359173,0.009782186237010689,0.0003396179004393694,0.006242776290063719,0.00638755391087622,0.03508142117373951,-0.1601715764609901,0.00010428676504922117,0.001708366748251057,0.001928996792832519 +2021-05-19,0.0006279731680318859,0.004344279630979716,0.000666707669377609,0.000152865647276965,0.004015054654952851,-0.003257702104350501,0.009864738541698385,-0.017850026074627313,7.92385128165182e-05,0.009415283125853281,0.00034067881769209944,0.0010525652769866733,-0.04334285265634694,0.00014972464666868182,0.014976971922351584,0.004400756560043863,0.004916079742086492,-0.02091826540772955,0.0003021177784260285,6.675702470999791e-05,0.03419230189812357,0.08515915311242918,0.01686931325804446,0.0002100848707670938,0.023930732849167247,-0.005580771314746282,0.016090611967360273,-0.0005169682655673627,7.573007810033959e-05,0.006315346540619541,0.013731898291364484,0.04984118851930222,0.01155657866779686,8.084106815869616e-05,0.001865759596445432,0.0225147807006116,0.21466360162575326,-0.018428589203864674,3.5967307176603425e-05,0.0015712716921054825,-0.006367759395485249,0.005281578212429646,0.0013617291829484358,0.0009297532743378787,0.003915399750275291,-0.07194191626825892,0.13854757998655975,0.22250595169570578,0.00018157035541356342,0.005467507814840157,0.01947320614563946,0.01279654272617057,0.029651482144364173,0.0007438222555671485,0.00015000997931989167,-0.015219595118707125,0.19754696299919144,0.048953679444399795,2.295913550260013e-05,0.004588452869008111,-0.012922482282773316,0.03415860893285638,0.006496015919418914,0.00011238201300871919,0.002689556961219592,-0.017995022101893726,0.10539101657668376,-0.10722895230788815,4.806297055730603e-05,0.009811774978457493,0.0010191756678667565,0.000889454093004169,-0.08443570847920462,0.002234850525079434,0.00144090879854315,-0.060381048076624415,0.43830555207768807,3.726863229226215e-05,0.000113364162235322,0.009355968138319388,0.02418435336884152,0.14417762491186842,0.014530079802521623,0.00025974359364343,0.03198217707049119,0.022444866766473472,0.14510706084296904,-0.01563496574829543,4.357018883883189e-05,0.0031482209889392514,0.047970039346762035,0.273507320714587,0.019070237100162618,0.0002890599524896867,0.00022046987305755121,0.06835282667878886,0.9123185048128679,0.0016469217503571549,3.1091396310347045e-05,0.017023162949401937,0.011986608453615983,0.14084464252334716,0.009917087322711425,2.843398280240389e-05,0.0004727622566106926,-0.04578449112476043,0.11318503920643368,0.05879470644706532,0.00013030231203586484,0.03572430408222174,0.025482761515476775,0.15585787407316898,-0.006229827018278715,3.776679386304334e-05,0.006296238985526725,0.013643633593872483,0.04371455582491386,0.016225017234954075,6.919605895929759e-05,0.005450895252397036,0.01998344838959154,0.09050200929753668,0.10288947061019359,0.00010096266541518109,0.0020987155296464154,-0.06618566944016507,0.06061236859741387,0.1006733107508648,0.0006241346180659348,0.007459902534173477,0.034514096560827184,0.1429018381817426,0.06847108343723557,0.00010165873556100944,0.004078811440340963,-0.0372195903014382,0.14395851330465706,0.027354704276788443,0.001659408880884864,0.0031456288626027706,0.050642813771153226,0.4548572481033629,0.11859023397244665,2.863023437641073e-05,0.013820777310548355,0.01070481812442733,0.026586694469051837,-0.014008792548502975,0.0013163949817287387,0.014107503128038231,-0.011553439751163894,0.08756836855017038,-0.024584466732690106,8.7859694442352e-05,0.005381549594893764,-0.029152717470591945,0.03725421665242745,0.03345079462749699,0.00018469238695824615,0.014644335951781568,-0.03001303483000735,0.04783596890360999,0.011508716063041245,0.0003601299586390185,0.005778962929661631,-0.02278869724843741,0.08377531759553541,-0.0029088383084813286,0.0021084036383952408,0.017658643386218472,-0.00015906763907109396,0.0005853996026207436,-0.0004716859131269984,8.718058568536023e-05,0.0064027815649984575,0.10085748924994571,0.1484487349932713,0.08329024189478856,0.0016889190850281964,0.0013133279056917288,0.05710179285811889,0.1652330838224658,0.13206542508775135,0.00013692059331348388,0.004988720033965321,-0.04141615336535656,0.10094065798311248,0.04369043273292125,0.00016632747895446948,0.03424182784869945,-0.015865978791962516,0.06464215436816927,0.004844264987045448,5.990526207356077e-05,0.006725268764703991,0.0194210794389399,0.05552528970578077,-0.04395985201022784,0.0033151301975839864,0.0032038951101379495,-0.0027898494387131006,0.01494414232419162,-0.10060975048385802,9.286463194171388e-05,0.004545777724847237,-0.034345961328352055,0.19820044323277802,0.06051946863549232,0.0001256700649783232,0.01360297034631773,-0.01877059547660918,0.11085228316070855,-0.08722862946724254,8.009070316830566e-05,0.008453733745544445,0.0023313740246920633,0.011308233533441875,-0.0011614638479995167,5.181608297655278e-05,0.007527360198872788,-0.04403057423473386,0.10920815448206178,-0.1766738532999276,0.00019657517706736716,0.010616362905353737,-0.01694532735937293,0.06743100236230208,0.04189831246479898,6.248916529377245e-05,0.0014948869133961191,-0.039634145244545387,0.4101673982961226,0.0642422801484763,2.4930996862496338e-05,5.937018148724623e-06,0.01080448711009395,0.03165866554746651,0.022198613531350168,0.00011929452586250557,0.004532225435474817,0.007979921022558968,0.03027322389898916,-0.11186311770040279,0.0004154969987907535,0.0006709047796677019,-0.011616372140116968,0.05686036994953932,-0.03010734300601658,0.00011701260057786433,0.005455540468625219,-0.0011926716717174358 +2021-05-20,0.016278617967758972,0.11236071365337555,0.014154004188937702,0.00015321088671919192,0.003817544051252759,0.01472514388848141,0.052196694822234976,-0.034963207912894825,6.769039839527364e-05,0.0381384615626581,0.01577100228760635,0.047623538479082975,0.018848122850033264,0.00015319155988509836,0.007077131349055365,0.019538980216413378,0.0201351005267332,0.01247526192560944,0.0003275035012359156,0.014591777192278839,-0.022779945944734287,0.04751154113334132,-0.034611094508646176,0.0002508715098707585,0.00030113573624906433,-0.01672927997980258,0.046072909337555056,-0.011144541091751843,7.928268545673248e-05,0.009209777076722804,-0.06878196895641489,0.22431424559176144,0.09349784021467408,8.997204746168597e-05,0.006957886040830141,0.020793911767103043,0.17048592716693656,0.015920661212051636,4.1825994454721194e-05,0.0016887464377880951,0.009814965383122114,0.008363714004057034,-0.02392603665374825,0.0009049704221805576,0.0017460146572781398,0.005312588957293005,0.012079706367985468,-0.01854635344044348,0.0001537842022041951,0.020491316379045506,-0.0207876547388696,0.016108193219620967,0.01887588740210834,0.0006307874191879656,0.0192505350862163,-0.006554729326830086,0.1000215400332113,0.005213195730703066,1.9529180292250776e-05,0.009568534573480881,0.038796637344474354,0.12750357660859574,0.010576579434529802,9.039049313508185e-05,0.0004940295319659671,0.01355576935595583,0.08691594994571816,-0.08743069644290938,4.3902222668970956e-05,0.0009023230730198002,-0.006024407459011444,0.00449902836398764,-0.010290903635982767,0.002611671675272393,0.005446471085103782,0.07426134977175038,0.47513533030768584,0.047993168712209926,0.00012861677669296018,0.03768108808093109,-0.010933301203271463,0.06115216033389368,-0.013004774504409792,0.0002768520480387754,0.0009305970063156745,0.033240564379137104,0.23455341575770539,0.017194039621985225,3.9919728875766975e-05,0.008350462606145234,-0.023851430996887888,0.13857735732107931,0.004336279888956006,0.00028366710248510106,0.0004118643078033562,-0.09498776400846588,1.3117071587724523,0.16226403334732362,3.0051143829910588e-05,0.02014519827731446,0.008399364687513846,0.08299938795786213,-0.00488778753537895,3.3810629543226905e-05,0.0035705274412484874,0.034424535299028336,0.12343995179079367,-0.03381780831010795,8.983283357540441e-05,0.0039281267841247275,-0.02030262382984905,0.16023529204541653,0.008059640993293284,2.926754992583653e-05,0.002391778398939264,-0.003320548977977782,0.010646784342435968,-0.010657033710320616,6.914627921118705e-05,0.0034794132947532255,-1.971880929356375e-05,7.69585136437347e-05,-0.012418720092293108,0.0001171581785654782,0.0009931327655465195,-0.027600084289742664,0.02517244368610879,0.00580711984639917,0.0006267012945640906,0.03361629010918941,-0.026986732779105484,0.10768413407476385,0.0273278362259057,0.00010548351608186495,0.012199057423095471,-0.007508419771592804,0.02386588883441009,0.001713986227313505,0.002019250066926554,0.019374788588422995,0.0053044545113799515,0.04878839540693357,-0.020507890391510557,2.795801862224384e-05,0.015886913393048235,0.05370987625588761,0.17209441707941658,-0.03299060497391104,0.0010203722521727782,0.018982884651449778,0.02743129585357683,0.21179539560809402,0.055931508179183215,8.624927497121696e-05,0.005788667975185336,0.0025834143186702994,0.0049869995143415405,-0.0034822959968916984,0.0001222644286462744,0.014184562127624804,-0.021912095429251603,0.032284302512353424,-0.03834026519962534,0.0003895797874797917,0.014075303581650473,0.04950505294334055,0.1800396775620964,-0.08000039945495403,0.0021312364932192696,0.002926184267347619,0.024707733649407784,0.10430560488089878,-0.02704845980664809,7.600035754595026e-05,0.009995086649316871,-0.07200962093371943,0.10498824072994728,0.0660645888272084,0.0017050105012355577,0.0376773231094606,0.0166259284452185,0.05689899487576998,0.010510270156033858,0.00011577035071136,0.007401788582739458,0.026934131170758952,0.06978841423154933,-0.030163421607830455,0.00015645160281003518,0.015936256061934957,0.03764416935511001,0.18796137219676196,0.05475431151751483,4.88813325552241e-05,0.003937003772223068,0.02196351214767629,0.07595170027471192,-0.0614843629107543,0.0027408315574077528,0.02233268204503131,-0.032512089143551935,0.1626921711533383,0.06516201240557613,9.940741781929356e-05,0.006339137008278232,0.04145103322669345,0.26901749355575455,0.058216809587998845,0.00011174178967078545,0.01037476053951453,0.0010692490687917646,0.005428170827788899,-0.1174051421911278,9.31695660535025e-05,0.004882947611912857,-0.023257999327448695,0.10743418412137754,0.009134450008296798,5.440981615449791e-05,0.004022846000873436,0.010918036249651106,0.021136221947449192,0.0007346964559251849,0.0002518526734062866,0.005178970065256621,-0.002108870843694712,0.007928728945617155,-0.0017344565577339368,6.613948169461373e-05,0.012582182695380282,-0.020829781796457145,0.1653778500967137,-0.06861488477844997,3.2496655327939214e-05,0.011399911035187761,-0.04025469876689948,0.13074319998962647,0.12168328604033404,0.00010762333243290297,0.006402181302780225,-0.012001373127848936,0.05950915735864342,0.013493340446658592,0.000317888713326296,0.0006150594014215775,0.016994789820219295,0.0755426321301214,0.0032119277582983168,0.00012885328085877887,0.003698924482384615,0.0010894882890503793 +2021-05-21,0.011251120244310136,0.08207702529318811,0.006200951532566124,0.00014496419296001494,0.0020753190659753874,-0.007183980109237897,0.026824786327063317,0.000999871550241598,6.425980103158093e-05,0.014717601476536139,-0.035570239596920995,0.11094395255717206,0.04520789721137664,0.00014831338969459562,0.015678921111543558,0.04411004808060676,0.04371633044108703,0.02252268850128275,0.0003405349469580895,0.006642086178922564,0.0042787453058319375,0.00886527019147692,-0.01787395365172377,0.00025253538035563807,0.008863945128138257,0.0064608146705741505,0.020101284525511583,0.005196474091371421,7.017949073045564e-05,0.001920243453664158,-0.002329190072232756,0.008960673933627697,0.0008082646963081791,7.627006408403972e-05,0.008528231041725995,0.015158687503418552,0.12409478862042339,-0.01477397802566624,4.188964413668873e-05,0.008377001321525407,0.007004262448065587,0.005398072909988984,-0.015768319150025988,0.0010006183226415578,0.004858897681817873,0.060737006333632874,0.13593109991192737,0.010719940851348036,0.0001562415135693185,0.004583959946420834,-0.021048682179335716,0.01566745077421238,0.025299786408816336,0.0006566756762643737,0.004662156112598771,0.0005902466215357238,0.006951688544240637,-0.007177187859532569,2.5302649125807484e-05,0.006589199827772979,-0.025121890294375566,0.07524349579395113,-0.10909037020035733,9.918234860970359e-05,0.027295390496836734,-0.0010877583600595157,0.006497189499438768,0.0008426513637758764,4.71268828000105e-05,0.005334720682710155,-0.03223706263814572,0.02949562617750461,0.1206070685288184,0.0021316741328038045,0.011259368456489444,-0.015361812651924829,0.09730990615817113,-0.02534995293746818,0.00012990848508287632,0.03751163217167472,0.026352771199910308,0.1391452388379875,0.01981761050095723,0.0002932690097548105,0.012744482480563188,-0.018857428028882597,0.10933280819631913,0.004680625447797812,4.8583960142199076e-05,0.016396985964814682,-0.026236525040701127,0.16035129442176368,0.0043893454658688515,0.000269662558508055,0.008918667047910785,0.021967559098527656,0.29785877703466795,0.0012682867879328559,3.060565177909306e-05,0.015389507989788248,-0.013824812017021288,0.1546487714559563,0.01668580814469661,2.9867197205064003e-05,0.0047528415253595266,-0.0025773970687882524,0.007672434315429172,0.0005342558946872697,0.00010821087455642021,0.010320530982914133,0.026416348323514492,0.20283961826939606,0.007773471058245187,3.0082392543863697e-05,0.03148244943411939,0.024590489196464515,0.05651971125584569,0.05048768717370055,9.645941336968336e-05,0.0030619753265999127,0.008699579345191347,0.028393648297962638,-0.026765269484814547,0.00014009597256673227,0.001151384881874549,-0.03707825354665472,0.03714304957930521,-0.08057208981261992,0.000570580957215806,0.015161374627178448,-0.0013387032658514217,0.004604647243229066,-0.014477405705888676,0.00012236972018079404,0.007488346471854304,-0.011231041034598313,0.047809218837078324,-0.036326277369501454,0.001507743764198189,0.0275812425793732,0.01810992907819581,0.14893961779964754,0.011084004425871985,3.126717970997048e-05,0.0007177650463600061,0.006264751969463215,0.017845503529974032,-0.006908493569425327,0.001147747471155445,0.023200521644257933,-0.010492969403892495,0.0789756895407338,0.000749083230968385,8.84770478313078e-05,0.00031387264875621713,0.027583630858267302,0.03548493539622891,-0.09365548998201823,0.00018346482018272387,0.0038500276992070566,0.01683421643382944,0.02106648133865342,-0.016682088317540932,0.0004586747335545893,0.020414664106845753,0.024733147133756055,0.0994965762859789,-0.04755284054508522,0.00192673322027325,0.0027661899796321537,-0.031283208837260865,0.11483614231399143,0.07586806503714498,8.740234189942553e-05,0.008965618127093972,0.03374635527887159,0.04105213633140195,-0.004168277411692681,0.0020434701763028997,0.008063511095033012,-0.006536118194508277,0.020366809095627405,-0.01340105391549558,0.00012714899767114724,0.0042096470993612,0.0034206797737330375,0.010185404180416968,-0.006549818583901089,0.00013614275296626628,0.004232663090210357,0.04596891854430055,0.19679938894374158,0.07397894994040385,5.7010449621922245e-05,0.013400659004889988,-0.010651119102156137,0.030189034905281402,-0.030718716392753028,0.003343983065631711,0.007165201363287405,0.003280105447972023,0.015324092299611054,-0.009569027463371932,0.0001064764632529432,0.006338370618812894,-0.0022135045978057366,0.01167104834293139,-0.04167919550896714,0.00013754073627379976,0.014350878909555973,-0.015530341064584601,0.0942061730046346,0.00710065004867683,7.797409280755225e-05,0.0011371971071423427,-0.00869054987367635,0.042117445418874334,-0.0037680352914696924,5.18600139711964e-05,0.01143126068590834,0.06446422115999723,0.1153319200525595,0.12946288704708508,0.00027252014530261646,0.020167947634929982,-0.011074365239797337,0.0516427415808862,-0.038650643961197655,5.332414845367992e-05,0.004653380549367326,-0.008054872281616925,0.09044990004433703,-0.008088954446446073,2.297639309545795e-05,0.00548455680078069,-0.006639869594236643,0.021338844693019318,-0.09467033138832961,0.000108767115687574,0.00928634066858259,-0.013192384318925318,0.05105298084700252,0.007560566504142593,0.0004073147722387948,0.008136037849321003,0.023271098454422382,0.11741059908580638,-0.0009907380233586448,0.00011352235071691389,0.01422604881621032,0.002897542791865292 +2021-05-24,-0.008610161406663201,0.058546316537817306,-0.07294335337859548,0.0001555243161081569,0.008350422031087825,-0.015359939216552336,0.04919498468409375,0.006844565644302279,7.49167957461441e-05,0.003807585492720128,-0.00029518204816367244,0.0009968333468740064,-0.03347354477767425,0.00013698234240877257,0.0012750227333440656,-0.004507988706490699,0.00470868481715407,0.005393488628750188,0.00032311048739782744,0.000620610454293977,-0.013715162344081645,0.03204498707796339,-0.030835469280855586,0.00022394358387738038,0.027194297449112993,-0.0084335857982814,0.021509850126505213,-0.0011003690959994897,8.560943345348441e-05,0.0034929545135107265,0.011381232437878995,0.03853253949904708,0.008799308644005388,8.66665514564895e-05,0.014591382607095624,-0.004246466372190636,0.03247529357040026,0.0025769357158445705,4.484078614864046e-05,0.008058187848505165,0.0006011208595959127,0.0004651969340692404,-0.004411241455785828,0.0009964826502011906,0.00424212368506535,0.009327873383554298,0.025655137565959392,-0.010854383915908905,0.00012713647940163248,0.012030243971922993,-0.006490582320503505,0.004671558087543568,-0.012529268108458185,0.0006791196040459722,0.0007865212463455103,-0.007856550800308552,0.10028879283484457,-0.11723357816227603,2.33454531686204e-05,0.0002751737759435918,-0.03776394106970297,0.10774933483979053,0.021019772572495026,0.00010411510735435197,0.015118881038575675,-0.0030080541080621435,0.016737831014735916,-0.007723353171836539,5.058809010001639e-05,0.0026563956876712817,-0.05885123414086313,0.04388258527323539,0.2322349431862167,0.0026156904201215404,0.009769599931657493,-0.03702005193758237,0.24014300861002227,-0.03895000353943543,0.0001268583867303383,0.048741102517364035,-0.08598882174043437,0.44015932168978966,0.07403108987405936,0.0003025104114103879,0.009191401790466073,-0.008233601566758666,0.0492065491006076,-0.014109379957372936,4.713330509226152e-05,0.02464375408076986,-0.04106272633752251,0.23364224568671405,-0.02164444427927726,0.00028965645840976675,0.05203765082263433,0.09051388986175837,1.3545281660009292,0.057665938464789,2.7730482125171892e-05,0.004760814162812337,0.012494805859910167,0.11887372545976278,-0.02223408342026583,3.511764207487223e-05,0.0024245991420687673,-0.010501462292097882,0.034226953127783635,0.00371191343739434,9.88335267702463e-05,0.0016225445846455662,-0.0037966364675485384,0.02166052894007504,-0.018166632712238413,4.0487627934232484e-05,0.011913731656814395,-0.001709872346553155,0.005388107365291694,-0.006166278078665944,7.03565977260702e-05,0.0036150362609154336,-0.018915558914224362,0.0661431114317543,0.13190644213470856,0.00013076248137106736,0.0013040041541099387,0.03783931233860689,0.03595721630085812,0.04795331021904782,0.0006014959868166483,0.021819206940417037,-0.007518174572791564,0.024334385074525375,-0.09497362822565156,0.00013004032276343606,0.0017465693942059872,0.010971304646968438,0.039322952969167144,-0.007771045631569916,0.0017907350139290817,0.00217823825784771,-0.015628547706081634,0.13048423312358345,-0.08986033835878314,3.079943719179808e-05,0.007046721867572487,0.036589435533268266,0.13009836597067753,0.024380523218561656,0.0009195072070293114,0.005520529546702846,-0.011341572247740104,0.07985190894603657,-0.01788238647555751,9.458311305128835e-05,0.004648125681296504,-0.015190116564548188,0.022295148716935647,0.0006184423104509551,0.00016080373029228132,0.01192152342827571,-0.01583056043220565,0.022212207007026693,0.010913419715860427,0.00040908023010775455,0.017173101369553533,-0.004182676174040856,0.01845720987488664,0.007274631007781899,0.0017564610881678293,0.004903013821923074,0.022519703903255348,0.07780648873210175,-0.005907624394225567,9.286182820966829e-05,0.001789636720776689,-0.013234498756665356,0.019871981930879214,-0.04396632179357544,0.0016555545900015314,0.014240969455973635,-0.030569268480223354,0.08930943927265096,-0.004984706672875153,0.00013561374837360774,0.020204906037013505,0.004117997391154959,0.009638644158190348,-0.0027817652292814635,0.00017319306422725162,0.0026039952435712747,-0.0222054049791478,0.10103916899169886,-0.026523110879686305,5.3639269856903275e-05,0.01764052838134383,0.02638187948617332,0.08037148580236964,0.017454822528974137,0.0031111560351416534,0.007011890126008349,-0.0024628807433466605,0.013870214661098255,-0.034275789260433405,8.832848293367016e-05,0.005802419769102759,-0.0033759970326715733,0.020460397445924473,-0.01824256084778654,0.00011965993840232156,0.008604153868259556,0.01626914721094682,0.08537263439123534,0.01795748685309225,9.013527844940595e-05,0.010623859919812361,0.00022413571859583156,0.001022809140057858,-0.00038295505603444643,5.507618707620217e-05,0.020470743652682814,-0.01513921049493678,0.024905949332626173,-0.00036412721883253397,0.0002963667797598044,0.012303916416888463,0.006850120805777139,0.027430185232950256,0.0002120095320275852,6.209889411252313e-05,0.005438059311783059,-0.021304413438603523,0.2122253821861005,-0.011980874982335007,2.5900225343247977e-05,0.0012488024113938105,0.0006057535910151587,0.001561202941713735,-0.032425199592775227,0.00013562682683825638,0.002938935518437065,0.0009031596584499092,0.00344579892734378,-0.07778627360450012,0.00041314506558174155,0.003487492789536629,0.02548414065889532,0.10969887089807202,0.02487211096603592,0.0001330575835425098,0.00631732508181963,-0.004710835511144068 +2021-05-25,0.023898941240217363,0.15930518959268827,0.03135639493347457,0.00015864826303881518,0.0015635713215959772,-0.018811918265073342,0.06515876802622529,-0.005571699428092023,6.927407657248581e-05,0.010783010088404842,0.04013491809081206,0.11457389380240471,0.09725381245048953,0.00016204435728464598,0.02873177607017537,0.014276164108621954,0.014279569485726028,-0.011877186382920794,0.0003374149132408753,0.006660542231177519,-0.006957184483140197,0.015017051929444056,0.0026113019616276737,0.00024240781077442523,0.003172703697675198,-0.011804894231881554,0.03475064111323458,-0.08901657552029027,7.417302971636661e-05,0.0004001884203124375,0.010370564195598167,0.03309031957687981,-0.027288056097937097,9.195837281830031e-05,0.01347122582092915,-0.026020469622768532,0.23357972822612924,0.050939614704279546,3.8201339926998004e-05,0.00967889821133676,0.007954483357867533,0.007286960124773239,0.0025407515793197436,0.0008418028100997054,0.01747303237969417,0.08267169721591741,0.20392868778122897,0.13162364213207317,0.00014175566226667642,0.0049708090403651674,0.016171416781725997,0.011484568960453006,0.025492484229209654,0.0006882682384376594,0.0007872799429833395,-0.005653772773112485,0.07814726065065619,-0.020127793042454097,2.1559931689451915e-05,0.0023795715054594968,-0.040538397071092,0.10333016822921957,0.00331675829331989,0.00011654414863691202,0.010122133928562106,0.005266414829072614,0.03351937986867643,0.0074680429138276085,4.422633059783525e-05,0.0072785717209865085,-0.009634522035755695,0.007718578543574716,-0.015258551942224073,0.00243453385947711,0.004993246125177385,-0.020580656118345673,0.13634245699980188,-0.04329008326331942,0.00012421676304436006,0.01046226268043473,-0.006847310989177075,0.039977386127819634,-0.02650047438932879,0.0002652246530688831,0.004972980192147209,0.022828498704159955,0.11014410360545572,-0.01292599424299798,5.838174270478255e-05,0.01683465865396743,-0.039077474292492205,0.189153547598143,0.017073899026975085,0.0003404856418104138,0.026681699670495072,-0.04933889368614969,0.6740062341623366,0.011044968316703853,3.03777584817706e-05,0.026422276944060987,0.0095087932698562,0.0988722370464675,0.0037606063266408768,3.2131629762421046e-05,0.00313860331334291,0.005494649752958379,0.012294206505830654,-0.034510282826843125,0.00014396677177546744,0.018035443593482952,0.01243910767333316,0.08521734548842023,-0.013670594405322143,3.371736298348273e-05,0.003245354969792412,-0.0016265140243780858,0.004993988814877446,0.002118370594380636,7.220838458574111e-05,0.0026759985179817605,0.016320145650201207,0.05759017668194719,0.00457296631852601,0.00012957589433174057,0.0036163782884820646,-0.031264852138325916,0.02187761549579547,-0.02040305972411704,0.0008168305179653309,0.0075241197935047525,0.014846718987595398,0.05239770109364369,0.0015126043965563753,0.00011926259765139894,0.0022462142696413187,0.07916636637116832,0.27857407330330125,0.012683710105260149,0.0018239763046052077,0.04041509390450761,-0.007806218131404108,0.074920006796083,-0.0036660713365854586,2.6793229859403266e-05,0.0041526216607363645,0.032911106976522705,0.10628979612133165,0.001155021914618807,0.0010123301835844453,0.0281766193654255,0.006399381520286887,0.03970961241728887,-0.03580197766053626,0.00010731687008155798,0.013331473858796527,-0.0005224629843499203,0.0009444178647511852,0.0016873406745581893,0.0001305679902762884,0.01015307322107364,0.02586665429891592,0.03488167566572294,0.009248438497385486,0.0004256443108996732,0.01770621104290725,0.009263307458216971,0.04675756794582577,-0.0019847948667793473,0.0015355519239346935,0.015110577277667106,-0.008002509925182503,0.03316521217483241,-0.05630598184765451,7.741654970609045e-05,0.004284641711631637,0.012729267292278237,0.019400175297850042,-0.02751204755759523,0.0016310788023364863,0.0350077125592026,-6.908688771786062e-06,2.0512297295920225e-05,-0.025175557634716614,0.00013344348112402158,0.020206692165438,0.02126608371070044,0.05500033765569409,-0.09867180108960796,0.0001567409733831568,0.007663773016054933,0.019818032020099612,0.07090609686388749,0.007256946786956785,6.821672587102217e-05,0.005507316812028151,-0.018055366282634672,0.053443279569014526,-0.0016701010198546889,0.003202073233038642,0.0026767988984667873,0.030598902197205107,0.155809767026989,-0.038770757531593474,9.769036629242508e-05,0.017378006871025704,0.009603562288557275,0.06363987997537199,0.003129101566825755,0.00010943690193623493,0.0069594955119994684,0.04662923715772236,0.2733450412400432,0.22415849352949657,8.068555850803643e-05,0.008219497059833668,0.006564249606777167,0.026353171352372983,-0.07207345199944831,6.260364150648808e-05,0.02421797357716094,0.009330420756584246,0.014770078127858693,-0.004039520708262489,0.0003079979531014337,0.0018279901921328316,0.008070093052973,0.03281869134304386,-0.030141016249535316,6.114650783408747e-05,0.001232659747125591,0.009664020998280887,0.07586286533862316,-0.01593214730229484,3.2866988164963234e-05,0.013696303373863742,0.009379840102794504,0.02571143477567904,0.030993164216791432,0.00012751993637045975,0.0016949459443316086,0.000545704001579371,0.0025309254791860965,-0.0957796031211806,0.00033986445929071863,0.004395369902050194,0.005115242544122197,0.023269195900802498,-0.006193899053371719,0.00012590896417876855,0.005621691749460356,0.006202152217553132 +2021-05-26,0.02415728569071585,0.17979177493047738,0.027043731466463806,0.00014209045321126606,0.014304135976446225,0.009806952640157575,0.03196374543557519,-0.002618768415600317,7.361849611077594e-05,0.007056762605050617,0.06064127798860585,0.1849185164955063,0.10366418438340402,0.00015169984921982853,0.011343528382157058,0.00015931083941036133,0.00018225653017895713,-0.022127660250076227,0.00029500548060928743,0.003885776397495074,0.01523936926025252,0.04079866491892716,-0.005799422245739563,0.0001954424117232049,0.0033383076235860877,-0.03394071741918064,0.08329779629540476,0.047220510417884644,8.896808563901391e-05,0.00438913872381517,-0.005274845774005254,0.01693438658058137,-0.005326696092908813,9.139662350866948e-05,0.009577938691028921,-0.0003752360035929846,0.0035316010738009,-0.07227546728540693,3.64360656748403e-05,0.003061101014779484,0.0031234207224241717,0.0028220481287841892,-0.02186685435085052,0.0008535144099850085,0.009453807202787328,-0.0038020465674741535,0.009501675963139958,-0.013481022334808359,0.00013991977646879818,0.0046684537483546226,-0.010021816838972077,0.007146587702570638,0.003495077594356711,0.0006854441776171214,0.00043102750825891115,0.012094765565312117,0.15475376533018612,-0.01314439350308497,2.32905111258124e-05,0.0023691713781876875,0.0072843512974213945,0.022844524430610837,-0.03190210933791168,9.472394967952482e-05,0.0001751187814111625,0.013283926964061403,0.06545424896690424,-0.002393711021137597,5.712818854741864e-05,0.002620327021626484,-0.0611480298522368,0.04521016398056142,0.13981687346353294,0.002637967005246323,0.0022231999559119728,-0.012331355453074785,0.07474729726969294,-0.002630346800283269,0.00013575862489556334,0.027618077375902154,0.025546592239597727,0.17716782998563246,0.0007259772424106205,0.00022328335143446807,0.017790819412521204,0.033638234590900304,0.19136659485383775,0.016514428223333766,4.9514001080457976e-05,0.0034576179367681566,0.01968724318908404,0.10393458898998657,-0.021396861330443787,0.00031218469695554494,0.023143465685583883,-0.03796180971911948,0.4889904111333299,-0.00131891214687565,3.221638423608758e-05,0.005290993511842615,0.00035936075098093686,0.004643594976389663,3.2998063353363325e-05,2.5855802309630003e-05,0.012998226182887367,-0.040454508521514526,0.11916642753209863,-0.07893916583033302,0.00010935427490014797,0.00021930823844862422,0.08626416406564215,0.5796603005300065,0.1834848465509234,3.4375516844927596e-05,0.001476550000908846,0.00920447959839973,0.025689993166740255,-0.016379091265157145,7.943513409357113e-05,0.002482739693049311,0.008317811640178698,0.03921690764011301,-0.0038130024482701036,9.698048051558333e-05,0.0050493931640614295,-0.006745797649828224,0.0072265189336766815,-0.004910923782668019,0.00053355565380028,0.004379289133965297,-0.0038048251447036266,0.013372554307289026,-0.00611083534279244,0.00011975849837050298,0.017340506292403184,-0.013596307645091931,0.03994116991950194,0.0027192818644769605,0.0021848386799964135,0.012129414409592006,0.005364784937979921,0.05158041260827208,0.001880585410600345,2.6745437114213605e-05,0.015491495240284345,-0.02021969931938598,0.05688113045389353,-0.07254052547813215,0.0011621916313290489,0.007924486579166454,0.009323451231879233,0.06651791449018356,-0.025145701259066663,9.33391243414828e-05,0.012875532910573858,-0.00346501212361986,0.0059749758411349885,-0.01639306311847198,0.00013687180392366207,0.01827017488334388,0.03072428298961345,0.05350562331558308,0.013017690455457271,0.00032959927112982207,0.006526031738280022,0.037217721470212205,0.1427900705695991,0.027512747183934913,0.0020202360394492498,0.010166192131947095,0.013409311220565757,0.044535287395530664,-0.004896046764830745,9.660343777910565e-05,0.0020962520260525944,0.03856920860260461,0.04402179972136958,-0.04903831261407475,0.0021779611362442836,0.059628533577203,-0.02457893421932127,0.07852047738475801,0.006517819790858388,0.0001240212637628147,0.0020409103377038128,0.021177818293888973,0.050447990805799516,0.008874614336911564,0.00017017576812834205,0.014428280289778191,-0.008217245794793543,0.036645199242703264,-0.021693187057531836,5.472970604219341e-05,0.00476784754247196,-0.023964177524456762,0.07243236204868506,-0.01979203051665015,0.003135796984517557,0.00577057776656879,-0.015172728631496674,0.07636861095709431,0.008197738231688777,9.883013069406191e-05,0.007169388692041141,-0.0031728398952889925,0.015345915258817787,-5.6883347082628315e-05,0.00014993953043854574,0.007127938901094335,0.008349173122981852,0.04838191177307101,0.004180822661240124,8.162235855296115e-05,0.0007403463056770571,-0.0515693668539015,0.2925563140324232,0.03967592306803503,4.4302651423908654e-05,0.03366808052541208,-0.013664987753954706,0.027275517723728476,-0.03831027850873027,0.0002442674721843643,0.001610894865441988,-0.025380467376454476,0.10793694180427497,0.07275788020111305,5.8471452478635285e-05,0.005843103388603963,-0.01149909436201145,0.12242592274144179,-0.11195502612786246,2.423380099810483e-05,0.01666550976598894,-0.005841878226594595,0.01637274721497297,-0.04571680626476538,0.00012472109289920084,0.0066395939499243,0.024013974922949776,0.09910409875597469,0.11677645969603469,0.0003819446289978469,0.0068745809820932886,-0.04879577169257348,0.23485264639371073,0.12342609324391525,0.00011900316946952996,0.005718837173293957,0.0008998096173536707 +2021-05-27,0.00455536385102032,0.03174062332928119,-0.0894949197539379,0.00015177288996894977,0.0036803980535034028,-0.010276717665957835,0.0321383649185043,-0.1949977767997344,7.672575560977116e-05,0.003662863142392379,0.03714031188539785,0.10777208062789607,-0.044830250573710206,0.00015941767962856748,0.010509395770119443,0.009179875854275685,0.007893134393065939,-0.0179360353926207,0.0003925140138340336,0.0020645467630751764,-0.007970276563885721,0.017651603882824492,-0.005027639062344864,0.00023625825436503632,0.007176696699317051,0.018831694357191384,0.060584255580089605,0.07049866598746586,6.786976739125812e-05,0.0025605595813868584,-0.02112222879716784,0.07933637107137982,0.002146398253369081,7.811910631601315e-05,0.006270344606981348,0.0334089929119183,0.3359389290506222,0.0391110673964031,3.4103713049339214e-05,0.0001997424337378896,0.02152315467431882,0.01664579589697913,0.02602362234263131,0.0009971170630519567,0.007304497706235592,0.006593771798737755,0.016616659806600282,-0.0004115006452950737,0.00013875609546825385,0.01217461920591451,0.00191654581901876,0.0014232636395167478,-0.04715444056120148,0.0006582005035558585,0.002783793732587986,-0.009161273546875947,0.1053860566045899,3.46155056190258e-05,2.5905709207091214e-05,0.00950273193264187,-0.022470832364941493,0.05612812577007982,-0.0037986593117283803,0.000118929517575359,0.01265854250614996,-0.015284539475361167,0.07520308097109221,0.03459478948327072,5.721086877997161e-05,0.01122498947313697,-0.0024279016487181583,0.0019060721435199479,-0.020760764486980988,0.0024843611444743422,0.013684861107901236,0.023968824421068985,0.1733644244987058,0.0024425405316173586,0.00011377290824680999,0.02066068016685677,-0.04057444227052433,0.21171787918568605,0.007247296991241589,0.00029675856051441667,0.028493209135886592,-0.020599953850161425,0.10497529699870452,0.010702698807544464,5.527644333942301e-05,0.01865527600488705,0.055001711015806365,0.3156317083955908,0.050632105947528365,0.0002871986415529312,0.016893476565733815,0.010056950227252585,0.1457720718193447,-0.016333009965049806,2.863005654080849e-05,0.020291063616457418,-0.019671018553436528,0.19441188566593706,0.07655775560667039,3.380537395209731e-05,0.0012316727235034367,0.04302314974236345,0.13135153036478822,0.031099074189786895,0.00010550907627295983,0.018706134843399943,0.03248445304912554,0.2113726643208967,-0.06544220866590929,3.549924472967098e-05,0.0018576363689530296,0.0035526042849151848,0.011738918885165624,-0.060711479477844554,6.709592057155716e-05,0.009405302482674939,0.01673854507556705,0.07738672667793334,0.04307963447411146,9.890080456054445e-05,0.006617600193172739,0.006995884108392209,0.006914612617319096,-0.04574310334937923,0.0005782961667132465,0.02488091078700672,-0.008867405303849161,0.03549238794082745,-0.09448781441839274,0.00010515921815754491,0.01413725322883231,0.0002791526224217291,0.0009668102693468616,-6.283578852990556e-05,0.0018531886512922588,0.014383667762077251,0.036555718322727956,0.3259795969809622,0.04826324401701465,2.883680223679185e-05,0.016387992189227034,0.03883442579354487,0.11135045716373936,0.020758989590647973,0.00114023968827332,0.008234558887055366,0.009631807592488904,0.06258680574828326,0.005630195774148208,0.00010248272263483318,0.02142056180720881,-0.04661176641017347,0.06900557298951535,0.10359728069516327,0.00015942513053217357,0.0013739663319268583,-0.03339182054510726,0.049553088618028755,-0.04287021426001003,0.0003867882589796627,0.006570423635798602,0.003708525160300617,0.014497774015524286,-0.058306548505324164,0.0019826691316665573,0.000523009542949517,0.03067955620566269,0.1312765265573658,0.025408600376675538,7.49811964868985e-05,0.005666773807326983,-0.07566642868321818,0.10502203015388537,0.058015077104268384,0.0017910182824466534,0.0004333934171603059,0.001674980709410464,0.005759144513179235,0.00019904776554244326,0.00011523061236427003,0.011487868908441914,0.0184484905106194,0.04961825918663001,-0.039345398986844846,0.00015072305558118897,0.0015940340772957937,0.0046447495403350095,0.01550937719365632,-0.048576085855256884,7.309402326982178e-05,0.011851914761203753,0.030937185418374643,0.09600511534849679,-0.014474182589555237,0.0030542493098932094,0.01010688718731216,0.02720536124716657,0.14227037721017488,-0.04201661056862463,9.512191496792801e-05,0.0013838651311840681,0.005751444932838511,0.03093650665364721,0.0009137053265722232,0.00013482377367574246,0.0038259704680631106,-0.017561781873502057,0.09149743391039732,0.018133642324244425,9.078380121852587e-05,0.014066187671578733,-0.04238648296157769,0.1702343026862248,0.02197812298085182,6.25788677410253e-05,0.015670663535156518,0.029237737375204933,0.05329287471928457,0.005890370516927822,0.0002674878175406205,0.015857406141073123,-0.03267777010155339,0.14795540147460315,0.05651878070298346,5.492068737882512e-05,0.0037628863465587474,0.009678337058473614,0.10901531687478976,0.008207133470992622,2.290574949320167e-05,0.012346900948980694,-0.021876099372872538,0.058928607496776766,0.035243107229720835,0.00012976353659596162,0.0008634054303120731,-0.01567985785884311,0.06731849245636642,0.03229452118184717,0.00036714338741435917,0.006099964986557865,-0.011323632614187944,0.05001598973166785,-0.003896453051329002,0.00012967274351644825,0.012681755552696579,0.0024647415729500003 +2021-05-28,0.022592680451650433,0.1652440333923846,-0.0033052602795124422,0.0001445867702566178,0.013802646595946228,-0.013034295908593247,0.04646681829639561,-0.046980105718605975,6.730621471276311e-05,0.014041252352819146,-0.03528096223362277,0.101736398920176,0.05354843776712154,0.00016042101676968888,0.002145520581816536,0.0009956160936613182,0.0012671848289428113,-0.04174469343203937,0.00026516719811121967,0.0041576386976011175,0.004918464855874247,0.011239352503193658,-0.0018434671545005457,0.00022897393753428736,0.010559830276553805,0.0002330295394565078,0.0006345961565017952,0.002897362060456301,8.01789342522316e-05,0.004992585066926032,-0.00620148870936881,0.025194173753071702,-0.03535737127754903,7.222469098465963e-05,0.016089451891425608,-0.021613422117314672,0.18261755941922728,0.0003292364137417155,4.0586314426304784e-05,0.020553059600108926,0.011249515677864716,0.009087977083635701,-0.2772777236712297,0.0009545779288860267,0.007704465289055984,-0.0024427991802375803,0.005450940752412348,-0.006243184078711602,0.00015670331733371246,0.01938609358410952,-0.008371444769972829,0.005202327485375448,0.002745778541118244,0.0007865513614903487,0.004688355089820653,-0.015400992213048024,0.18955141640159398,0.041472544734646476,2.4212768889191893e-05,0.003931711950184324,0.03592561115986209,0.09989100198711137,0.02524869638304908,0.0001068387586611069,0.014895559979167637,-0.01794100699850306,0.10009763702000406,0.022593960658986233,5.0452745998625785e-05,0.004602921314097438,0.015804716306186246,0.012931998132615242,0.002930198259822262,0.002383658547436817,0.0038636213800829515,0.008403596826233237,0.05996853590458765,0.0018857174797288982,0.00011531714195908508,0.006533956773005606,0.011527089287187486,0.06865368748614502,-0.013449211328494443,0.0002599944158500786,0.012882401439770869,-0.0006954191737251188,0.0038654515611444393,-0.09213365474264305,5.06765897066058e-05,0.008328744766941183,-0.007914250515537322,0.04455438140915329,0.0002348492064147414,0.0002927562545822524,0.006780537594987692,0.05059325448897859,0.6492425039265665,-0.007755649788907543,3.233820458320758e-05,0.006679262418958387,0.022466396054173787,0.23567409662855587,0.0394156258998715,3.1849547661113e-05,0.007302434530843255,-0.035030218161745307,0.09193716818014566,0.039960276022150756,0.000122736709303432,0.004320229954958113,0.053393519713853324,0.36938358159211027,0.05579525941029342,3.3388994356615296e-05,0.0047639372008238465,-0.01705148667440478,0.05826915444158654,0.037565215272216665,6.487851731866089e-05,0.0005549520301939761,-0.005664027640761118,0.02197818353678744,0.008955725532130778,0.00011783713201820903,0.006569095111740818,-0.020773958855580393,0.018882630671571858,-0.0034149477680013598,0.0006288286636148547,0.00314577436126472,0.017046814908684118,0.06797598266565327,0.020578661901388372,0.00010555377265152167,0.008606789616290153,-0.026432723548060956,0.07794159965528338,-0.01108565061807313,0.0021766659001381857,0.02048013223504199,-0.004570423699478001,0.0482452367175173,-0.033196832292183336,2.4360388867541904e-05,0.014934851825120497,0.012915393834318618,0.03463185402633265,-0.014499422897045809,0.001219279245556933,0.0012987415324055133,0.003195201072255352,0.024767115286872175,-0.09344263630882924,8.591092810388812e-05,0.002944890634645061,0.008755442253631058,0.011262632781062565,-0.06637558233456925,0.0001834778110142454,0.006718193778178873,0.02619653296384208,0.04228836276321651,-0.016340101970588133,0.0003555714313421938,0.0018753777446909286,-0.025221396300958716,0.10856907203104876,0.058039262578924465,0.001800583812923261,0.0098588439686374,0.00333692466568378,0.011250149603629873,-0.0008028932102424175,9.516526797265982e-05,0.006169183268749047,0.0038382858845278063,0.0046374823900164975,-0.004576821833989507,0.0020574639631550525,0.03007629816682598,0.0008038784845277566,0.0022021494093302668,-0.026156220024100698,0.0001446304243310357,0.03285435099404602,-0.0017639590005569298,0.004520929024518717,0.00026749254125113433,0.0001581689289567788,0.0031803316395122728,0.002528827745675633,0.010256409824097461,-0.026908359588212482,6.017800788219113e-05,0.005740856398926254,0.02428080666954384,0.07588980265258413,0.01025118687857065,0.0030324786050352787,0.019695321166289057,0.041831986758909485,0.20574894367109775,0.12530318461959838,0.00010113732154291003,0.006666783613957278,0.007136621503877036,0.040861938181453915,0.0006817375482388233,0.00012665854251192553,0.012796535454444334,-0.013055639321216388,0.09115192314790105,-0.025260389373694556,6.774558641137757e-05,0.018238271482923583,0.021504563208809113,0.08485804313260585,0.011941402544700417,6.369201785404852e-05,0.0055855101183050065,-0.01708554053080368,0.03944413016574812,0.0134407914605466,0.00021119115910462477,0.014466467689101259,0.014627932159561737,0.06659495558064782,-0.0001437333533845443,5.462053879314434e-05,0.008553449427717925,-0.029778462857314156,0.28777964019943625,0.03046432220050557,2.6697678336953325e-05,0.0025502981404911685,-0.0015430661676242487,0.005095110629298042,-0.026956465692109632,0.0001058619514830009,0.0031783509189877166,-0.03771172005831087,0.1788899037192807,0.13559372067887637,0.00033229092595454243,0.009756878960408284,-0.0037759406007757414,0.01836776788648404,-0.0178461067596455,0.0001177444830314691,0.011132650525281637,0.0010157513393108302 +2021-05-31,0.006607611592874017,0.03612710281446403,-0.00323086120701837,0.0001934184752405866,0.024805333504616674,-0.03845680918895508,0.14484393104797996,0.08797429231156526,6.37064596839132e-05,0.002563032388464728,0.012704871612181385,0.042893306421071725,0.0033488809024792236,0.00013701810605949241,0.0009021564430173926,-0.037815651190742025,0.037457268931333366,0.17712587200244043,0.0003407244746758573,0.007189831636891001,0.023523257001432447,0.046767033873000206,-0.002210286587151454,0.0002631815251963882,0.0031143440675398763,0.016018416649832275,0.051830581950236695,0.04901128897318554,6.748080277896433e-05,0.00477419976712011,0.039211271656866636,0.1551689596597266,-0.025664943267460893,7.414740118416954e-05,0.005721367552984654,0.0011041968833033905,0.008336249986404597,-0.00010761258606724619,4.542285227352982e-05,0.011435158170117053,0.017459001167207475,0.013636017109487886,-0.0327903594039722,0.0009873625328656625,0.00999786556560709,0.0021233183209746075,0.005252434599048639,-0.028167267301070185,0.00014135668113956045,0.012027321635262215,0.013859133748825471,0.010076221819064916,0.0016620829195352362,0.0006722994015996982,0.007801029641313451,0.010276564802146554,0.11158034564614361,0.02826711047584817,2.7446252357180137e-05,0.011727781040965155,0.0032262147064697605,0.008792741910314419,-0.01617322480260508,0.00010899836381360457,0.021585986531502167,-0.0010046342173446634,0.005908078774645905,-0.0299151642262001,4.7865599973945956e-05,0.0008369494977259129,0.00041378004645953325,0.0003271067796690252,-0.04715366178828989,0.002467192130545589,0.0043477426053831975,-0.024780299309384288,0.17221152259096428,-0.0012930468400982192,0.0001184121997086497,0.012255452425323256,0.010337030675437021,0.05315089030757323,-0.053104859249262885,0.00030115736832017913,0.021040950050911784,-0.04736582906303493,0.3002383802416605,0.0024351460067150283,4.443855113929032e-05,0.0141531020968631,-0.017274327670793,0.0905495644344038,-0.0034114220201011927,0.00031441379687813833,0.01472511204492374,0.014087928566730032,0.18460132081309957,-0.0010958968535346619,3.16695992694707e-05,0.0011908625041071475,-0.015090395369446672,0.15713991691167833,0.032967104584457806,3.2084539352318625e-05,0.0002749502483142697,-0.04587874580456318,0.13339688832753888,0.06025336651208934,0.00011078694678214984,0.008374549146884729,-0.037734219230943264,0.23327894125267593,0.01608010454617422,3.7363900667261754e-05,0.019144296296749665,-0.009211822593487526,0.02997370050768898,0.01547860469922161,6.813693348831651e-05,0.00581774153269516,0.022817801429565045,0.095305890686692,0.018852278757023416,0.0001094718979274044,0.0014016267093025527,0.018769472217456333,0.015821579107501788,0.013021696454454678,0.000678075097565176,0.03508345856433943,-0.020925701907808396,0.07760363209327883,0.02477252036494698,0.00011349689890339722,0.014635415354283773,0.003441327217869492,0.011124765973125443,-0.006317896985209235,0.001985428539711607,0.029265136345895157,0.02693749837481983,0.2397099707723137,0.02032821725879242,2.889703990221562e-05,0.004982392491670737,0.015474380711318203,0.04456564118569744,-0.006748615656168236,0.0011352313815338468,0.003391229042788847,-0.027615553784758953,0.22720446930190966,0.033170424714668474,8.093987510134323e-05,0.004898178244475735,0.01629208420317939,0.02362820039210597,-0.028889768058447046,0.0001627389039953678,0.0034494732463052494,0.02012451708567208,0.030951756507528218,0.003036061167325806,0.00037320210211074287,0.005378179532671355,-0.042301062442099295,0.17531061944635093,0.09991680357036027,0.0018702229938139265,0.003470150923603687,0.010044898600051004,0.03164455793305976,0.0024746191931413154,0.00010184433913374459,0.01422036921300983,0.05466428279876766,0.07100656327857051,0.023649536034058772,0.0019137374382470174,0.020980721976218905,0.012576924000143229,0.035140141520814884,-0.018957119835203852,0.00014180350542429768,0.011027813345059314,-0.0033894234665658852,0.009004668413946563,-0.016510520756991436,0.00015258733324753377,0.012134061424813589,0.010372588965467373,0.03770973792829502,-0.049913187541845164,6.713478142373712e-05,0.0012168854597215755,-0.033803855470133905,0.09871534752624636,-0.09801400005515992,0.0032456345316314427,0.006464495083649052,-0.008335279914096,0.047737099407608764,-0.004248068937591045,8.685698152301195e-05,0.012769494367971361,-0.019366288117450933,0.10729696266998093,-0.00941563480462148,0.00013089400158743843,0.031543879123278815,0.041137935414537016,0.25537128586453506,0.12259397292508528,7.619371120098506e-05,0.010343276782884976,0.014240524260624702,0.07536431426311903,0.0049566999131223245,4.7490596119271575e-05,0.01241586491823891,-0.025168878982354488,0.04414658353022839,0.01797516256187878,0.00027796887356032344,0.01780242330215589,-0.0005926409625711269,0.002936669269168773,0.0008910703238280382,5.0182350952230617e-05,0.004694546327366311,0.048195273127058125,0.6079335075755843,0.10765784537320502,2.0454065866646377e-05,0.008961733214247482,0.00175677676612322,0.0048407223581389035,0.005571467870771256,0.0001268572724685765,0.006518924447355015,0.010233686961080993,0.03965251929942399,-0.011651539832449433,0.00040680783987348177,0.01502687442451707,-0.0056226820418762095,0.019972417191605214,-0.0008884777829310549,0.00016124441909573707,0.005547359731713719,0.001506127722001288 +2021-06-01,-0.012716098986154459,0.08829022588125426,-0.004714461211974296,0.00015230980283862403,0.0052763571591755215,0.002277297731713017,0.007381065031785685,8.60313532952663e-05,7.403060667448872e-05,0.015057534186789614,-0.014828857488053623,0.047558354662047726,-0.0026175411068011366,0.00014423746290400156,0.002238202001082515,-0.0032799060139555515,0.0033181296383398935,-0.0011173713044843312,0.00033360757681345635,0.0055598065213542675,0.03712051124694215,0.08538293068559186,0.026941605835530638,0.0002274786613115554,0.005764467230460992,0.009041403818665378,0.025547181997776867,-0.001084701570724682,7.727510513288667e-05,0.0054971486332945855,-0.019183478816943572,0.08287014426123276,-0.0009778141457799949,6.792335467556076e-05,0.019840506145008534,0.03882877894823537,0.33960988713043694,0.04487916769721713,3.920775922408655e-05,0.003105426162664413,-0.013393801493188978,0.012156538813476819,0.05057180618301952,0.0008496473430269284,0.0030928237470503545,0.010715612186617892,0.030625436984756147,-0.014325892952435724,0.00012234791695776108,0.013264074979622427,-0.01066452359095067,0.008010972271418821,0.006422083719192862,0.000650699673802861,0.016165754546363077,0.00830470226956358,0.10059681647110326,0.007282170918681133,2.4601558456132382e-05,0.0013427929492015763,-0.041632019972082136,0.12631328553859295,0.028259999443995872,9.791054981668508e-05,0.00915572852561564,-0.0008503218143662087,0.0047033060323965195,-0.03084678473255988,5.089110735534613e-05,0.0003995465971985687,-0.06838766210337016,0.05742108730492801,0.11456169083610458,0.002322893602610621,0.005281061792398523,-0.07526738803639814,0.4997332105883718,0.032448954000439005,0.00012394263953371162,0.03987722904763739,0.009337169557415896,0.06082424220186454,0.004260167711313792,0.00023770962695352968,0.001071110519465345,-0.013530877824515454,0.06282665048001694,-0.049454844868861716,6.066567332134088e-05,0.007673275090294065,-0.02919392540289578,0.16808515521608805,0.00544874297777157,0.000286252930796703,0.03788989444915197,-0.00783002053702337,0.10740045783704144,0.00041589185085144447,3.0254292384058715e-05,0.019664802731545247,-0.02008396113256957,0.1969966482663963,0.0310740696971263,3.4062164676126224e-05,0.007633019176961811,0.03596484923590546,0.09120981664858557,0.031971090262392476,0.00012701628820088355,0.01731522890748819,0.01700342401313229,0.1114520797378536,-0.005267306631774384,3.524038009930747e-05,0.03560462713625229,-0.00875161374158559,0.025804902117657857,0.017367342355739133,7.519055799603854e-05,0.005299256579652612,0.008760778235281272,0.03516960013810583,-0.0029301993477401102,0.00011390003355112353,0.0007370701390065702,-0.0215124836325405,0.020913058278667088,-0.025977884671278647,0.0005879610632349066,0.03444012537639669,-0.015540414999621712,0.05760670041986031,-0.005493941659062264,0.00011354698862014026,0.01209598006935662,0.09920328239990292,0.2620195236681514,0.1361947609330495,0.0024300296018147883,0.015373467307289867,0.03746290887148533,0.3480537487654104,0.04041362192221916,2.767817018913718e-05,0.013411777090052413,-0.0067085611752822575,0.019790646969031683,0.009952003350821621,0.001108257457654187,0.02933400008057722,-0.01320195005988984,0.0945654224963342,0.00825324930772902,9.29675447698496e-05,0.009907470573484439,-0.008953281625909219,0.013366063641678718,-0.030246450435802836,0.00015809717404777348,0.0023883003555098216,0.013843079892954772,0.020294137217376818,-0.09844454226330931,0.0003915309035869616,0.0006441959772665355,0.007869540546632093,0.025551944000076154,-0.00042473658303453785,0.0023871283552122768,0.005306339866556532,0.01882505141920169,0.07044224434688487,0.018571999199564305,8.574195014584658e-05,0.008067590476874009,0.021782317280821452,0.03540989744414628,0.0014852230757533584,0.0015291729341471,0.023711988120915857,-0.01938897722154144,0.06632348173942196,-0.099374961799189,0.00011582534965365371,0.0058580166323538,0.0019597652823907493,0.005068079308031628,-0.14606145337484963,0.00015675486687509384,0.005074695368988546,-0.00622389067058667,0.029653562012237733,-0.034177817871862796,5.1227010434343706e-05,0.0018661293959748308,0.027148095477278436,0.07264563324302611,0.008359027293003852,0.0035419947410293166,0.0119209049737416,0.017771821377898397,0.0880814476806059,0.020024989429602843,0.00010036633515316091,0.012186324893923491,-0.0043058216669187716,0.022509046983047218,-0.028181170129845865,0.00013872659140261884,0.004868014294169474,6.242179338798643e-05,0.00032738836542336796,-0.005101880624086477,9.018238133403371e-05,0.0035592187894179592,0.03798971562836094,0.14314831791645474,0.02351962685181082,6.670020802588853e-05,0.001407039758769701,-0.012391548025937615,0.024294985036737646,0.0025899089249421694,0.00024867854780355025,0.01897391183123755,-0.005116070431975993,0.02133080651018133,0.0029382280813190307,5.9640821150344165e-05,0.016969277842577096,0.002822476291691326,0.020814778838585103,0.0006091195355632326,3.498563712721957e-05,0.01346677916580314,-0.010925299397053712,0.04234460745710663,-0.003105086835345103,9.01870539584567e-05,0.0002990970001687822,-0.017332334630650106,0.05981899845127055,-0.005120593896647675,0.0004567156554952126,0.0025524142452323486,-0.023160098319673472,0.10972437748103676,-0.014943913360583627,0.00012089520309091233,0.01843089172721626,-0.0005761320648541978 +2021-06-02,0.01645728647991731,0.09703120385515401,-0.031455373709308405,0.00017936322061515067,0.00464856862024192,-0.005181552863883432,0.018411101611377417,-0.13408155364203234,6.752905698399353e-05,0.005543572699617318,0.007778384783831223,0.024000207983270384,-0.010087804002687403,0.00014992415936383876,0.02128113329597566,0.017886269155967142,0.017601811690619792,0.008056683047406078,0.00034294955814214426,0.0014026502208563394,0.007227888948598666,0.014942250538298103,-0.039148872742741155,0.0002531006320078504,0.013096299588557953,0.016016451842370848,0.04434495678983268,0.03840452879020469,7.886218687157227e-05,0.006193318953229515,0.031062481425234857,0.10690664814902591,0.038635966551546344,8.525528063059393e-05,0.0035928999922471955,-0.00724869461234873,0.06276094005527368,-0.06918231028958742,3.9606729090900826e-05,0.008468783154654606,-0.01446640789964028,0.012944591664141417,0.04829525434918973,0.000861821130028487,0.010168828697722168,0.04235539017366455,0.09206099010687045,0.019904775863312206,0.0001608773603404533,0.023005723971941467,-0.012146927504449078,0.007434136815544399,-0.04020061521299181,0.0007986569004138097,0.0012909881517671421,-0.011855295613176928,0.19008044150891784,-0.04741438312537336,1.8586505519281527e-05,0.00031997055523803636,-0.004569060191445931,0.014170844568122022,-0.032332076819608695,9.578162099040758e-05,0.019722051816134355,0.011437009175831929,0.05443260127707536,0.0008845440626266304,5.914461356557053e-05,0.003746166281952751,-0.010403340524267132,0.009461405600867176,-0.009731715655510058,0.0021445695043843653,0.0286259493137337,-0.030148280648232315,0.2108194517695491,0.001538651875939046,0.00011768035709891795,0.00783809385451989,-0.012705389148881717,0.0688005444581351,-0.0006457507002706463,0.0002859593678256646,0.011142894232598129,0.0515428519705685,0.2614657595907442,0.02800581654046811,5.552832555880728e-05,0.0001514429582089446,-0.00680031140893332,0.033724157359531645,-0.0123361356719439,0.00033233379072927647,0.014561113033290454,0.0002734448496298635,0.003419784268271213,-0.02021200497343715,3.3181901433783995e-05,0.0164427455248177,0.008111248045083641,0.09250719280026938,-0.01687411224560096,2.9295026108880506e-05,0.008990840197931192,0.07856985243430362,0.23667467121541985,0.13900026450304742,0.00010693673272385076,0.003242433627300545,0.05842827053107687,0.40680871548339964,0.05362262254907994,3.31760868169814e-05,0.017909705568083738,-0.01991480718550561,0.05722816219690123,-0.16346182772267756,7.715137826281635e-05,0.0005787501642392258,0.009496790526458864,0.03849564681254178,0.003944250202745361,0.00011280122946318678,0.0031812172358799285,-0.06408175668050606,0.07395725584163898,0.05984049304356556,0.0004952553566633535,0.00976765596684765,-0.0098613470445802,0.034268550286537865,0.005517022940254423,0.00012112297233754452,0.00014598424665782507,-0.054120307610629304,0.1938090527516739,0.03988541427702366,0.0017922779927483062,0.0081240747086685,0.058982621428707055,0.612487277445392,0.05677581542467508,2.4763338472891025e-05,0.010919985777100702,-0.053354182840104174,0.19031854546182914,0.1037741132297303,0.0009165552146557768,0.009514561750603025,0.0061693649193270295,0.049747136137348213,-0.07899282654305582,8.258440015951697e-05,0.0024947100095570243,0.012397480024286768,0.017964536974796646,-0.005028682189790253,0.00016287813034222525,0.008450070473796287,0.02260899477527375,0.0321545603001025,-0.01903580364901175,0.0004035920400197566,0.0026785324551945613,-0.014111330343400622,0.06234988944444557,-0.005870955669684666,0.0017542141593302758,0.0011612167577919504,0.021856661023818974,0.07986888107649256,0.01799257370424476,8.780041870943315e-05,0.010444464201082271,0.06069613463861008,0.08541289991503298,0.013679712353525966,0.001766504544632857,0.009609556408102807,0.030898952735047096,0.09508499916949449,0.04703880543531474,0.00012875016358404254,0.008590967035109991,0.007796421413639563,0.019728395350489432,-0.022420465733954772,0.0001602005192051957,0.010480135296662823,0.006675612797568726,0.025296690990293625,-0.01799949706153361,6.440822753872323e-05,0.0009065569212366409,-0.05971528885715999,0.20275612231543977,0.07179313091643763,0.002791448491676128,0.0013047826270167033,0.04697950367196676,0.22048795455683393,0.07573712975412779,0.00010598981310958157,0.006155990713735266,0.045869080772707724,0.2686856143100782,0.06455909634148042,0.00012380449321567052,0.026426398436390226,0.010392598952519297,0.05773408543331425,-0.051858128138213354,8.514135871198946e-05,0.004992793582613094,-0.02933291832351743,0.1151918935477719,-0.027558947019243336,6.40001144320051e-05,0.006360666110291217,-0.03902601201964461,0.07293296319426221,0.03380322325938991,0.00026089136748716013,0.01093028251435128,0.003628269625945959,0.01600892462156842,-0.16106834463379652,5.635750643042642e-05,0.0043649301197554976,0.03907821785541763,0.4557193272268589,0.0270306772463977,2.2124251544699746e-05,0.0014857992966913654,-0.014831233131703297,0.05067708749190675,0.015137363471676992,0.0001022997515482807,0.009752133283196138,0.008319673104147924,0.03283762798227039,0.01257900979019417,0.000399358060823626,0.011277093001776105,0.012824331397566785,0.05421857813496185,0.006535995861072723,0.00013547476428950474,0.045251802181228526,0.00550750864803486 +2021-06-03,0.002853917789316084,0.020026220726455043,-0.0021592874179892944,0.00015070547976716396,0.0010051945505886908,-0.009227725218819005,0.030634083775826465,-0.02504758792663276,7.227702772428829e-05,0.0021176377282130683,-0.02334864447479453,0.0873238322407471,0.02177625803757919,0.0001236875793490548,0.0065534161021752815,-0.013248142837230444,0.014923800020015273,0.02298451047452369,0.00029960112331884107,0.0028098186861889116,0.003062241629557329,0.007180555208460474,-0.007504484805552615,0.00022314091152749957,0.0017483012148294056,-0.007947755468661197,0.022702021502344245,-0.019549397201496767,7.644106087158702e-05,0.0007416828143328666,0.036130906664273106,0.1235810524516661,-0.09973093758943337,8.578608047368454e-05,0.016548038848631902,-0.00305069007350289,0.026500506875231238,-0.004578766094446562,3.947685283497304e-05,0.014973753487032658,0.0007463914637349757,0.0005914304642392898,-0.005788859432966474,0.0009732126816768752,0.003156103260398351,-0.022826185285904865,0.04785493596129647,0.019732968884999025,0.0001667894149156425,0.022941500229994482,-0.017527379949298434,0.013877913250231357,-0.06857015217529827,0.0006173297276245089,0.005934350486581317,0.009048057191269353,0.10544508265820797,0.010215729490425483,2.5571240384151318e-05,0.0034341325044731884,-0.02841318133065725,0.0994795874302458,-0.001044982445937313,8.484708481496513e-05,0.011361165376735198,0.016222470734122394,0.0839265357515015,0.05378254179774566,5.441009956700547e-05,0.0014811687061827552,0.012430378340636952,0.009860772850935985,-0.051448931460309176,0.0024586480520840306,0.0021624987372039807,0.00987414420669367,0.06890156872087436,-0.0237615498141854,0.0001179295017062007,0.004184161883668378,0.026607512859540192,0.1519133909213594,0.01782895471964044,0.0002712167170482945,0.0293906725491537,-0.06264361608709229,0.35305253022875505,0.023029646521703223,4.9980252632084325e-05,0.0039460238395312265,-0.0272195733953524,0.13032389265647776,-0.0030650170663444032,0.00034422632343067563,0.027813068858828553,-0.013737918420972533,0.16525290375723292,-0.035838239309775,3.4498647163313804e-05,0.01543811017237539,0.01586037802395157,0.14666641703569344,0.019378006012645926,3.612971708145071e-05,0.009629345246377766,-0.030534547743617923,0.07860248883173236,0.012228909360256744,0.00012513475572694898,0.018779230147115772,0.022456644112430216,0.18269274231421598,-0.034017138427228456,2.839330435068566e-05,0.009141527847480386,-0.011502478402654384,0.031344597365554686,0.013628061731167406,8.13590957916984e-05,0.003725269092150486,-0.008423975826527446,0.031832651771238354,0.01617773786063649,0.00012100209486274318,0.0027244291262468055,-0.034732905314453486,0.02882249522937034,0.005400564475660586,0.0006887872475076702,0.005115795954055714,-0.004563910967442988,0.01612146137885518,0.0009260984773053431,0.00011915678187782158,0.013062920481298578,-0.08185626504646862,0.2870985822219963,0.04057721025152846,0.0018299534886900572,0.023379554706413695,0.0054857544768933285,0.053203860420695005,-0.218259765514398,2.6514010019783916e-05,0.005641526163337823,-0.07382017496623036,0.2132360476426401,0.1751216213365671,0.001131841766004284,0.0007744306943810008,-0.022369138299422726,0.1616218260717163,0.029091164751647566,9.216688050385028e-05,0.0008570836933719323,-0.0125452049519376,0.02116055020541087,0.012961159118160233,0.00013992528214330262,0.0025179606552523854,0.00012853474725366048,0.00018905258772593348,-0.03458505784106432,0.00039024903283512574,0.011925795564107753,0.0075705746503103456,0.03620533074620963,-0.00012677739358358706,0.0016207150616490416,0.022453770259144898,0.05251275381523747,0.18474097445850537,0.11181360170882867,9.119939010582067e-05,0.003622458717818995,-0.04571162778166345,0.061071627796020336,0.035083152483281976,0.001860648695171089,0.014876486955365099,0.02107346792500127,0.07444421392519138,0.01926818792602684,0.00011215563500041939,0.003314438389450694,-0.02507344665574777,0.06382233805041176,0.053187719125005244,0.00015925816350817826,0.014151927463963323,-0.008766839951173284,0.03659713086042978,0.0100930755082671,5.8466886086269414e-05,0.00768394274301527,-0.004150599748428588,0.014446630075688985,-0.02040768663168906,0.002723092293554814,0.02472428730429242,-0.04884686492713509,0.24204715660460183,0.09448539494483071,0.00010038695489516854,0.0011687410140783705,0.005880694880537021,0.034522253375031196,-0.004786685160559922,0.0001235350784385828,0.005412339394391652,-0.03780139889384969,0.23292287938283412,0.09154736284559231,7.676167102865122e-05,0.005209423726996379,0.0659961605828502,0.25410291834487003,-0.029612087669676924,6.527643270169074e-05,0.04789025644970612,-0.022152029252875353,0.03787513678037543,0.010094563289408469,0.0002851600619685037,0.0021596216048973,-0.030154334030271738,0.10893201243118301,0.06077948661040069,6.883488485766214e-05,0.002701870745457001,-0.022366500526403054,0.3006941631398763,-0.021271020898968512,1.9191297020086907e-05,0.016223497373182575,0.009000247851620657,0.026799963214698838,0.025196280684635145,0.00011738949544261996,0.009791234886395538,0.04822020085606547,0.19017899690126455,0.25728772736844396,0.0003996634505375637,0.005818726168889828,0.06819963226634719,0.3218694434821195,0.17601848591667707,0.00012135958420316288,0.011065971684355934,-0.006248223259010036 +2021-06-04,0.00032245448706468097,0.0021620686304650704,-0.038358202080134574,0.00015771955133258764,0.002468458319313247,0.005767513722483522,0.022222026631894008,0.003757525540694507,6.227525282277537e-05,0.0028929436755688754,-0.051090379217727765,0.19065467977502007,0.03269312456183434,0.0001239620817381384,0.018637693423158422,0.016499434055288895,0.015404647022945545,-0.06544825061869712,0.00036148073163472157,0.020055088927508517,-0.0267956249474415,0.07594132077495168,0.02208832287591441,0.00018462202774024815,0.005500313557838253,-0.019542865897107044,0.05527347847482584,0.02735021864917645,7.720015907739219e-05,0.011240771695643189,-0.055378664393056436,0.20174644925536028,0.06165456626518904,8.054274608443103e-05,0.03301538547512685,-0.032096236032752315,0.27164942595357283,0.062277423147599736,4.0517620088189196e-05,0.006436106276885259,0.012493756264565092,0.01110180519740066,-0.05452450068581933,0.0008678490918226102,0.008098113845957731,0.0006910951640149461,0.0015877383725106055,-0.001088736900896154,0.0001522021542450456,0.0045167126700232825,-0.018059990370420144,0.011056024685479443,0.0035088275244086024,0.0007984410791493254,0.00273653533948053,-0.012974590140943723,0.20418941693262282,-0.0017005288394560626,1.893578038592638e-05,0.0015438709537785435,-0.001165361229265502,0.0031849108217392634,-0.05318110642341325,0.00010869619129116741,0.015348494197396692,-0.006962807746426798,0.04590297637680505,-0.05275889122536881,4.269778792310202e-05,0.000633002017543884,0.02999931019789193,0.02560886176162637,0.045251762044077444,0.0022847777746295675,0.006816443379792453,-0.028113086482011603,0.16850232092879844,-0.03138367228721497,0.00013729500878068886,0.0028877637573031687,0.012895461860905408,0.07542775301725176,-0.017635308858119102,0.00026473658536852216,0.02658359056416373,0.06302199841865941,0.33647256957005245,0.04898923147170228,5.275983900974503e-05,0.012804168733171377,-0.04454643983318417,0.2709962867513945,0.01886741737712972,0.00027091713120299126,0.025136510196696826,-0.017660591607225554,0.24469915594002475,0.01134561178404887,2.9950426261658078e-05,0.013424640021885433,-0.009328756896931238,0.10175585127438067,-0.0147049127241709,3.062993624928027e-05,0.008032744081682936,0.01241263956692446,0.045308464492060385,0.0005777401357660261,8.824854554728852e-05,0.0015045976891398594,-0.005192944703962117,0.03282928870221097,-0.012900157752520574,3.653798566306899e-05,0.005309417373369181,0.0037491895129338746,0.010434858399737389,-0.04140966793438813,7.965778311412201e-05,0.0022941113819142755,0.006069860272287207,0.024379475370610238,0.00014193267796242876,0.00011384210925223375,0.0003755062209687491,-0.06602809352438944,0.05649600608768178,0.052997273287988755,0.0006680155501161629,0.02475577782902884,-0.04492821998294801,0.15906859439714263,0.1117110890227202,0.00011888327982682638,0.004236867960038882,-0.043944282468104716,0.13324773673775517,0.016299861813576223,0.002116711704139165,0.04541629780036405,0.01212002168121828,0.10747193889179038,-0.005288502133307616,2.8999499866596945e-05,0.01727995636945389,-0.04486969597687442,0.13024307178086167,0.017715962868629438,0.0011263406706246604,0.0015637649444071766,0.03025871903087872,0.208969872218297,0.04163085268007383,9.642563438910329e-05,0.0014696352083521504,0.01652539262126329,0.025771899045599664,0.0015015663671135077,0.00015133896215918782,0.004084448255776245,0.0032316776508493133,0.004767516955064571,-0.20762271303669458,0.0003890807124100677,0.012747124854476483,-0.005302920276096846,0.02035003404303733,-0.017379284254562862,0.002019762474363227,0.009099726008554753,-0.00820541950265819,0.02824719560155749,0.0049492904057127545,9.319998070063085e-05,0.014065747209215511,0.00648826518769157,0.008291091805221954,-0.03786090067106566,0.0019453334735317878,0.0016806800746870215,0.027284861542653353,0.09305991571314819,0.01573960346792059,0.00011616495698770206,0.01066247270866275,-0.017054886410051186,0.046417834940451784,0.0034591845700005838,0.0001489444508199687,0.012138169926047578,0.023255314919734458,0.09355848487042258,-0.006121307909952631,6.066706293709279e-05,0.010826288408907961,0.09350227098147092,0.2563334259350901,0.1701379796014898,0.00345728335368549,0.020642657406476642,-0.012328282941970957,0.058773584768373834,-0.0008855705485930927,0.00010434243884793381,0.013244703301351397,-0.006730097887203276,0.041973884555416216,-0.005747586333048281,0.00011627945876716845,0.0115102765235571,-0.01715219603653406,0.09934472698089623,-0.01666275865047988,8.166267649984519e-05,0.003947660511095514,-0.0629049541130557,0.26024204395389067,0.06349563915971206,6.0751189184353704e-05,5.9102798165972556e-05,-0.03630473172552326,0.06298440215391919,-0.015276889272758226,0.00028103448515883015,0.019128389985158343,0.020676680575423798,0.07264417476216345,0.03571495111135079,7.077736660552541e-05,0.000721762331544848,-0.027623548585049517,0.31140603212570406,0.008722422144818859,2.2886729300716383e-05,0.005504288434208624,-0.007168768165613897,0.026585380900440207,-0.00015587250218542157,9.425634896187132e-05,0.006218147896824532,-0.0026832630416858253,0.013451211632225017,-0.0007082322034439136,0.000314434227075852,0.011932402821462806,0.06376945557873517,0.28806855199842185,0.09326155054057936,0.0001267910667203386,0.025593926770109007,-0.005271284465363678 +2021-06-07,0.034414377813515244,0.2702637540002166,0.05292284566240083,0.0001346600282599937,0.002649694523497551,0.021592951382066138,0.07459663974400937,0.04189909573073937,6.945496050227415e-05,0.006298489056836842,-0.01074302402014697,0.04078678327107727,-0.012239586951649067,0.00012184404155564404,0.034503959433205555,0.003491126665439151,0.0037035263001986038,-0.009550292210078104,0.00031813981883782035,0.0028473213032413226,0.03884211647597052,0.08958348786479843,-0.0021579142833305235,0.00022686771202482718,0.009354204001982745,0.011085554007385234,0.027063535335620927,0.0207593620839566,8.943749229180417e-05,0.010684414037042997,-0.004172021642288414,0.017647100369534343,0.0007571692890708914,6.936861955552375e-05,0.028779600838158562,0.014778751006573032,0.11612417790812678,-0.0018489259864121984,4.364290936210879e-05,0.0069545002358550895,0.008764901143212237,0.008469165868950275,-0.001574045137744497,0.0007980887154888149,0.005450231373932225,0.017534211712669927,0.04216500933167442,0.001251310679915185,0.00014541055486484405,0.006031586920394058,0.018664238504215804,0.016691687599891047,0.03568828971668849,0.000546555647122917,0.0033905535155450296,-0.008097206073666095,0.09351848368622138,-0.03585170276779262,2.5802425043184474e-05,0.00016289038311319412,0.037907419605293945,0.10026162602155113,-0.015941356264823302,0.00011231571258306124,0.008411138163727612,0.00392195985764118,0.02705812065814474,-0.021112657123915815,4.080067363277629e-05,0.0036996221786540313,0.011964470920724777,0.008937193291934821,0.0070230449603039076,0.002611050792509221,0.011262657062667353,0.005815774198480335,0.038481894280634664,-0.01658893711395333,0.0001243664397788054,0.000857206925786906,0.010791959452911828,0.05219899117530871,0.001391675642001641,0.00032014478162144364,0.0009066629012467401,0.06390146591642168,0.36824332643646324,0.028415815666549656,4.888064096308416e-05,0.04106967037598973,0.0057820534238107076,0.03230214131529225,-0.028711604194269488,0.00029501058227036914,0.008259467331450056,-0.053186632793023526,0.755981437527379,0.048019894247223166,2.9195881729458073e-05,0.02446108665520867,-0.01230869735630972,0.10949326895940656,0.019416673012546657,3.755833926182055e-05,0.011002586892222908,0.08518857293310932,0.1871283738205007,0.09373174365400941,0.00014664405302125362,0.000943157957618601,-0.006658927134945184,0.03864968841326312,-0.008910667067666963,3.9797028097197764e-05,0.022420903442123274,0.010010199207694009,0.024662803958754035,0.015571414529594024,8.998656037067956e-05,0.004054165587589241,0.003997455192157359,0.013146007894102618,-0.021853251219536903,0.00013903953647419724,0.003374718072836985,0.005328803417430851,0.0052551633757326735,-0.03134853462374878,0.000579587537263642,0.008867905658556038,0.004698831530926456,0.014419912122407341,-0.010217514573395262,0.00013715551327025762,0.002163196027480585,-0.04917778470320863,0.1531231903660326,0.008649255598353969,0.002061328305173971,0.04922926617354918,-0.015669187368694024,0.14903318790721082,0.00840006198228775,2.7036201695458644e-05,0.004400925715375134,0.013437909103904914,0.04478103446613818,-0.01162919738009126,0.000981089995533764,0.02926490293532846,0.03080746896057112,0.24020489767968578,-0.11030792043183184,8.54082463116615e-05,0.003349014546409565,0.0019235073119664864,0.002984214339135227,-0.016516351430925474,0.0001521280207743309,0.009824009968662315,0.03997525848091407,0.056270515151502644,0.060267387117484666,0.0004077690912222694,0.008602657135044375,0.027041368525136843,0.11468418898224626,0.004897882067345383,0.0018275760593452384,0.004388059971226632,0.003540697468258521,0.012921546713172194,-0.0026057870614750816,8.79153458462328e-05,0.002070398588115209,-0.04142873830636423,0.05135733607677918,0.030321085483207676,0.0020052864093186083,0.01708572722555867,0.030230645175235,0.0825683234788117,-0.07006830583768656,0.00014506077250061865,0.01515309113223562,-0.024207088985506803,0.06170080705929235,0.03498140813196713,0.00015904209871302083,0.028235474160209707,-0.023447805089076866,0.0958844291755399,-0.04595750693013125,5.9685389622352185e-05,0.011289753912633375,-0.060807767568843915,0.18134253663519598,0.03584628930886779,0.0031781722480081825,0.003611338796431038,0.059433485487834004,0.2949803896788441,0.12185425273215683,0.00010022559103568877,0.0030995281651097213,0.011157499349317488,0.06648388361664082,-0.018266362451063597,0.00012170579960535793,0.009095997450637633,-0.01584905698455037,0.10694504379699052,0.01656530161128392,7.00957138552863e-05,0.013346830624770928,0.025201577440984762,0.1334527916486192,-0.1451461186011496,4.7462155431074025e-05,0.010970404198492096,0.010736509891436872,0.025718565391738096,-0.003502452812465434,0.00020353813138733755,0.004206239446094924,-0.015118162338748225,0.053960728654591256,0.020158577543910757,6.966835800166703e-05,0.015681782069459707,0.01047880523873832,0.0997300095151976,-0.10214043837194067,2.7109230705993135e-05,0.0029330142614441834,-0.024273415918617362,0.0783104135928119,0.05179111051936179,0.00010834786160619105,0.0013606145526634294,-0.021259338440762214,0.08813176720574752,0.009109034023018625,0.0003802290006402709,0.009466675981977812,-0.007262529563090546,0.03748145492168901,-0.007965274232542051,0.00011097962899835398,0.01472487747509042,0.005874382295268789 +2021-06-08,-0.05648635423563847,0.40646338662964254,0.15375388373110901,0.0001469632331628849,0.0015150270715738453,0.020254931942573384,0.06352372010353256,-0.04456438740301547,7.650774317773046e-05,0.008480388639215505,0.020708286817421567,0.06979164250285025,0.014225127565683273,0.00013725809173031447,0.0037391948233866314,-0.0031264854893503615,0.0036943102343938933,-0.008277520259759549,0.00028562150986683203,0.00917312479759078,0.012273540155823631,0.027136569938716642,0.00034358270232770304,0.00023665335629744855,0.0012643653290338197,0.002012510156148682,0.004356193450534414,-0.08793688950588435,0.00010087363309851984,0.0017583180681442383,-0.031231537753726144,0.11940415666811474,0.0035897097403490307,7.674741875920169e-05,0.01831766318125319,-0.017612787152180155,0.1262016399080659,0.013905588293701168,4.785878874859783e-05,0.0016087095889402942,-0.013177454842330119,0.011691608238011035,-0.19662522460909543,0.0008691646778583402,0.001716173939321308,0.03596757100892013,0.0930532420399501,-0.01066900250906416,0.00013515791614087785,0.006560366193947644,-0.005880990464479444,0.004484641822755384,-0.028094575580949976,0.0006409838255209033,0.007919605290244726,-0.01266084914989596,0.15319900245008497,0.02730029505627524,2.4628030703252886e-05,0.001884302070304775,-0.0023095686768601197,0.0067437174371596156,-0.006814586549927084,0.00010173784957382799,0.009782944669629177,0.0056383475456977,0.03399473789650695,-0.04285714797853509,4.6687644507122085e-05,0.003273885607702991,-0.0007854444884970684,0.0005887914319127949,-0.00019380324664390928,0.002601818441584904,0.0009606787857228214,0.0004257188497346526,0.0025784214217274273,-0.007628327870455699,0.00013586922154476224,0.003051076231539134,-0.020532803585487903,0.12352260578489634,-0.059720925211403576,0.00025740088743965596,0.026751716353938366,-0.040778834845745654,0.23778762400080097,0.04123455710700604,4.830660556683303e-05,0.01760074284630014,-0.025408350024112302,0.13229818756033188,0.00015916458686519267,0.0003165259905147146,0.017223794208558567,0.08484193305875165,1.0566840323678002,0.030939067343284006,3.331928255917489e-05,0.014679559559853745,0.0058732093753152735,0.06949671286184327,-0.055891137718485126,2.82353339814255e-05,0.005001887603302106,-0.04694509773955584,0.12351258477214073,0.004056701420193015,0.00012243393082251263,0.017643555134670776,-0.03202365393944323,0.19865975586292267,0.02021555293503522,3.7235171855323624e-05,0.005468024254111857,-0.0016531860869738856,0.004773983908530688,-0.0010132893882462632,7.677470796288357e-05,0.003999568458002081,0.0020304727718016054,0.009939739837151088,0.000687740254761853,9.340513411564188e-05,0.005742636290043427,-0.0043950272653637025,0.004047430304635203,-0.0030327425569297876,0.0006206657148846823,0.008563394499011709,-0.010205803562961982,0.03762541792977865,-0.008074472762213899,0.0001141699685482283,0.011719392129395437,0.007818400675150227,0.02464501255217069,-0.013974747608351292,0.0020361419623552693,0.009357015038852959,0.010533586879577988,0.09533103586530364,-0.01899780554419381,2.8413462774534006e-05,0.0027479038156794184,-0.021305459984786328,0.06293788119882547,0.00929797273729738,0.0011067513655763077,0.027966501976186997,-0.0257014291400095,0.19745644126636533,-0.0265021095517654,8.66785446623272e-05,0.003525489429731115,-0.0025074913111115546,0.0036832548500028424,-0.00015220628588428776,0.00016067675554321152,0.01192532524754,-0.007880131416624437,0.01146370607293146,0.010670544441686195,0.0003945593430072377,0.003761277681086304,0.05113508366661083,0.18312784339551622,0.08253140287245375,0.0021642873998976046,0.026635807520761574,0.025469137791902893,0.08906585310597459,-0.03178565909216927,9.174731878598985e-05,0.021563527224079976,-0.03462116071413979,0.047438731376991866,0.02016406832449895,0.0018142024510343266,0.035282613783614525,0.006393877982605957,0.021895139921492963,-0.0016314275754113327,0.000115699812665119,0.023070736391612598,-0.01909062939537708,0.04779155141475752,-0.03418040682286522,0.0001619308121431639,0.0036633747868038864,0.0016615360109962785,0.007571150617960954,-0.006895092243145028,5.356261816497841e-05,0.009029454909719679,-0.05714637350505525,0.1847327683375686,0.05115055071154422,0.002931992093742431,0.00480354005240228,0.014677039602247682,0.07726715172843042,-0.004281742442961977,9.448962675420569e-05,0.0063583639618640725,0.01393040128843074,0.08718694042482433,-0.030929501602867285,0.00011587052479777398,0.006081972876659802,0.00206841774789971,0.0101011828969783,0.00010576918452032302,9.685336621196222e-05,0.02545287151168263,0.044375043583523205,0.21374831235891864,0.056209834241093375,5.2177527188311044e-05,0.025863590606221176,-0.014218710764797816,0.028980254643413035,-0.08839233389623948,0.00023921445368466803,0.010060982218662109,-0.002687190362017484,0.011458156723769987,-0.02681753130714366,5.83173862408059e-05,0.009168519302964431,0.013602104898792733,0.1246787771664417,-0.007441356858684061,2.8147826869786674e-05,0.013372865023835456,0.007543213041025363,0.01917200620676591,0.018905597868804337,0.000137530105829927,0.0067511952925936635,0.021511283027974844,0.09032924164576861,0.009594073164711262,0.000375375497820309,0.017324628119859423,0.009306347231321432,0.04533377096732664,0.00023567476681740117,0.00011757884842874456,0.0006979108005145619,-0.0012661860257662146 +2021-06-09,-0.032551157077493814,0.21932331242100556,0.03748241178859146,0.00015695249300330802,0.001202806466493287,0.01596637631337418,0.050622798265250436,0.008832309731744925,7.567819056103186e-05,0.01021721934480681,0.007899199722045188,0.027228479570894904,-0.022717860207182552,0.0001342013571963928,0.009397741694933315,0.016232487765533665,0.019006072461819984,-0.06105400121753861,0.00028824418842533626,0.011311449887109862,0.0035121541034323724,0.007801047761983578,-0.026811433665365307,0.00023556914121745858,0.015631974675678128,-0.0065451369143063876,0.017021084957416176,-0.004545928289485324,8.396112250225834e-05,0.016209815257681264,-0.04792390382545293,0.15387578293786447,-0.0069725569444714685,9.138433744510466e-05,0.005337560871249791,-0.03694620692768459,0.30515108695067317,0.05576228462985388,4.151963734826278e-05,0.00016865167853956565,0.013025836443009019,0.011035655494508648,0.01509352279211968,0.0009102323635791972,0.0018666334263450378,-0.059422456112630445,0.15278281853443582,0.09661716458484276,0.00013599970531298164,0.014637137152177614,-0.01612102146711769,0.013955276948328689,0.0016609091808227274,0.000564648858989131,0.004294796029781479,-0.004920525439030083,0.05499009568711391,-0.029145643242097223,2.6665503929888886e-05,0.003896945001057163,-0.018933673748195653,0.06246798177531587,-0.17872519019021554,9.003854168903874e-05,0.013689366233790724,0.006913034140693756,0.0382344578952591,0.0017015521916574031,5.08950544196716e-05,0.0007759892395695685,0.010646568167546496,0.00851167890787878,0.006171636440534312,0.002439593006108665,0.0044784161074743496,0.04468350700724843,0.29309409140765363,-0.00843363124092855,0.00012545624826784354,0.030768436152124445,-0.035166735103778525,0.17168131856364782,-0.10252413716783908,0.0003171883603049519,0.014637843306268012,-0.03579482939414339,0.2033898609908013,0.030061451825902176,4.957377066280797e-05,0.01715876815578185,-0.01656729832151857,0.0788244823264172,-0.003294986438718438,0.0003463995927172935,0.04838177914263219,0.007705102417821104,0.10843293616175478,-0.009565141754246692,2.9488143361440608e-05,0.0018342286225992875,0.028219722418692497,0.3286891784417864,0.03143803583269004,2.868461602374049e-05,0.006021474191573848,0.003184961062986658,0.008719122700015267,-0.004475342498681949,0.00011766684092159559,0.016395686058298137,-0.012323848985559127,0.10768412046778278,-0.0316860087285412,2.6435472592236226e-05,0.027242778886411127,0.013180006597956838,0.03815394475639185,-0.03209196677341606,7.658673642637718e-05,0.011693328163897728,0.005413861448086856,0.01976550300662019,-0.002589040621586528,0.00012524138498658062,0.00352237341954043,-0.009694914847235751,0.00786358540156103,-0.02883239496084146,0.0007046913693603984,0.0017276953312975133,0.043496245562889904,0.15039761607387894,0.12273172087089597,0.00012172977759562725,0.005903930464610267,0.04430392878750626,0.142720447749018,-0.041082522140719856,0.0019923939554927035,0.0021484409263085634,0.0154389835261499,0.13406757813373266,-0.022785358771147828,2.9612640545854483e-05,0.002968521970682217,-0.03341187112972533,0.09565318356051107,0.015765709940068887,0.001142017183157362,0.037088177433217975,-0.015604556867556008,0.12062221113636543,0.017297025819573986,8.614891223780544e-05,0.010736862440837568,0.03042256357273565,0.04186432703527931,0.04183116017450142,0.00017151301414198374,0.010965230556718698,-0.033492951434255396,0.045267641615336064,0.07224681551585363,0.0004246874865037689,0.021078082812882933,0.010724767502188688,0.04216942887311166,-0.0026617588018988825,0.0019712445612272045,0.012194782218225723,-0.008150130906591018,0.027028208443995876,-0.0524438982474731,9.674704193154904e-05,0.009136073880952823,0.014788489425515465,0.021663350191323122,-0.006949900060384574,0.0016969747750467334,0.020467598124457552,-0.0071940892066972234,0.023703828076747435,-0.020847037040854305,0.0001202467554040069,0.007470218536287204,-0.01621249027847401,0.04279624656858657,-0.013886186919778703,0.000153569306745577,0.0050380302764222815,0.05089975771346387,0.20964718279513345,0.07493610609058819,5.9257129430608624e-05,0.0009967106215057007,-0.0608910582435203,0.18460067901556051,0.044447431534366366,0.003126354961802612,0.03249569643624015,0.019279823548436815,0.09671095486076271,0.007930860065419924,9.916717791450524e-05,0.005465427157513092,0.020225863416308693,0.11078487262046216,0.00911004663274048,0.00013239981914560804,0.01896868002920687,-0.03126938362371093,0.2016911571384882,0.055175772725876676,7.332991164571331e-05,0.012338758558458946,-0.009124362234954166,0.053682849607525875,-0.03546375919300767,4.2718338436147684e-05,0.002106326140696488,-0.018487502839964386,0.0348677866389829,-0.01683483835175765,0.0002585135240414953,0.020724629719709668,0.026908859336501022,0.1072560375517829,0.047947538423689394,6.238611133284679e-05,0.008835580411519332,0.0012358387302135083,0.014713667473530624,-0.022731258586684577,2.167066058933651e-05,0.013911526990249888,0.0027130272047651022,0.009765042246349422,-0.021289913574887385,9.711559754404644e-05,0.004096289379612029,-0.01182519754898638,0.04719777220200973,0.0012535820502518023,0.00039492522638387233,0.0006872246908194795,-0.022974704911026413,0.11854247265062275,0.017430076809774393,0.00011100633294434038,0.004812376210317516,-0.0018355326625109384 +2021-06-10,-0.02720867763790698,0.1597680498618734,0.02197748040739445,0.00018009600741771944,0.00417326545147949,-0.006894440984809807,0.025129978177552203,0.0015207568897570936,6.58290327042946e-05,0.001693435081054456,0.011287074358553651,0.0434406474981866,-0.012311095773747489,0.00012019386499397874,0.010729242666690833,0.012266789307178984,0.012713798354490626,0.001572431935291845,0.0003256292756706825,0.000864834130698224,0.0022648610791082607,0.005023016363024936,-0.022594831694458018,0.0002359254260567709,0.014371095474770926,0.01079895121186156,0.031661918441686566,0.007156325244139024,7.447167003613347e-05,0.0005092167366263827,0.025135825365216198,0.0871721507310607,-0.02589725586305384,8.460679512735706e-05,0.018096082222311523,-0.022670808976537515,0.1860146971083241,0.014013648850750935,4.179442673639726e-05,0.010434689518946454,-0.011066120819115038,0.007748010896840444,-0.009881471716597997,0.0011014124246249183,0.00470293176294624,-0.03835120858120239,0.08147572081898917,0.0210401468751329,0.00016459351867255652,0.019019694174719992,-0.02855138278203183,0.023967038170524927,0.05223898777088711,0.0005822870576542964,0.004952251287033166,0.007330191768578696,0.09270728312114829,0.014359419571019988,2.35626575892957e-05,0.00012399513055136248,0.016813449715615648,0.05005651498467827,0.0009606087091984411,9.97808633159779e-05,0.011456816426480788,-0.021602061875429807,0.14104074933534233,0.07704316067025752,4.311341428833905e-05,0.007088712046900002,0.04382900446278959,0.03363982533665519,0.040786298265287846,0.0025411531889372807,0.02415065964260553,0.011268121188309665,0.07940537341536988,-0.10288037754134885,0.0001167760348198294,0.011072365153034952,0.017585503407477658,0.07914298241070766,-0.1348220572968634,0.0003440730243584432,0.04775664008627266,0.0010038629158653782,0.0048528248226115765,-0.014825371877423684,5.8269427699721316e-05,0.02244935128757173,0.0005277957311085698,0.003712774624555576,-0.03319520266627189,0.0002342901840458345,0.0027523108260725446,-0.03941401367011349,0.5891708835103611,0.01703196382674873,2.7761288412478894e-05,0.021809395244403375,0.02579404198172813,0.26586944853476324,0.02099133079517634,3.241400364839991e-05,0.011646879663748054,0.029470460279839697,0.08777989776884797,0.005038908692715753,0.00010814703171343698,0.038507632799588236,-0.024127013830370928,0.1492181208899559,0.01993229251174199,3.734860478002005e-05,0.011821195470734973,-0.012251848851599158,0.03899805799509191,0.013806234438645551,6.965239141248992e-05,0.007371114177728074,-0.01575095300974426,0.061652310496914595,0.09043919484649071,0.00011681700690214809,0.002863426272915859,0.018653747265953594,0.01779099703417614,-0.047167332336556594,0.0005992959771436584,0.005498668607315651,-0.03561302443332263,0.11258943535529911,0.040410301115795313,0.00013313652757187993,0.011597888907402541,0.007559014641672657,0.025773083681561566,-0.00369960086007718,0.001882426280595023,0.04083023938064325,-0.0038929464013871314,0.031094335818306684,0.010944033258722645,3.219432582108245e-05,0.007137334593792682,0.002154426987135738,0.005721221353767726,-0.0007447514881173257,0.0012311594399962895,0.007725239763265986,-0.01048487650775217,0.08325328689775505,0.005884218842334293,8.386631753890768e-05,0.006198653617883558,-0.047139898763055695,0.07412487381039409,0.07548209601232017,0.00015009632699228956,0.009251745480673403,0.04922358298648256,0.07504719656865017,0.0468945947910446,0.0003764806529716334,0.007201307489382936,0.021231043871956054,0.104640632303713,-0.008873693100267524,0.0015726110888418376,0.005704535459919058,-0.002248134040715846,0.007908317403173415,-0.002168034201366902,9.12070649878427e-05,0.0013010234168694588,-0.0037243318878707457,0.005098500566121807,-0.02050352190423251,0.001815863066439202,0.035715412637432185,0.04995093786878684,0.15413496307631386,0.046831073020892275,0.00012839807736526022,0.019695903434559073,-0.023710119512620094,0.056309000904496795,0.009491137263364622,0.00017069323036568754,0.014373439287324851,0.06785075808146361,0.3061375188289212,0.13923250620143282,5.409437050762882e-05,0.00789514483323159,0.046822551283680396,0.1455605862034842,-0.013480367865835095,0.0030488028099453805,0.024818585311622975,-0.03479921277249847,0.16592543778930804,0.03439586322257151,0.00010432707179423041,0.0027748998074584317,-0.013612147607631403,0.06756450175806025,-0.04153587236779046,0.0001461062707178799,0.015514895705326215,0.008974722441269425,0.05889333991226369,-0.012765019196134307,7.207813493811435e-05,0.0047076928671670685,-0.02384798142590117,0.10835467024324165,0.011341807058859434,5.531607857901596e-05,0.020893235082429858,0.018623220923170886,0.04129571929779305,0.007507976473874358,0.000219876671592274,0.011481521626198149,0.011647886697078834,0.044313262592467685,-0.039800663406202315,6.536236937677227e-05,0.01124976905704739,0.015256263921794135,0.14675023848129756,-0.011317356670590173,2.6822587014504935e-05,0.008997152639859883,-0.02487528528139933,0.07186691424894447,0.03754179481577304,0.0001209895988337985,0.0002711176891275881,-0.004776995198236688,0.0199997854631204,-0.0016087294393991203,0.0003764934617963312,0.003118587271788629,-0.03248000734426188,0.16317286446226328,0.02951342916384334,0.00011400922073081584,0.004170753719840017,-4.529118294724013e-05 +2021-06-11,-0.008124009338611253,0.05467535286374029,-0.06216119186441445,0.00015713227678447857,0.028985049298031664,-0.016297185594148063,0.061702788258917625,-0.048140268516576615,6.337505486836796e-05,0.002365587684544642,0.005787470292059895,0.01900932736840909,0.0008645843281995109,0.0001408377989876392,0.04178478224792926,0.007671250488250283,0.009444141777440747,-0.02177181763386058,0.0002741394404936629,0.009498333547344397,0.008982070640859074,0.02130598691766948,-0.13176322540657587,0.00022058327611445855,0.01813131914479053,0.0045649188018225635,0.012202663554904092,-0.0383903928020561,8.168177364087216e-05,0.0024030452303131266,0.014984958866017781,0.05107521285123841,0.011023320087577306,8.608653448814882e-05,0.008873182172968116,0.0049279311715766765,0.04381693454168898,-0.05634485678462943,3.8567479478042894e-05,0.001604960073575237,0.011200444618201995,0.010109553823098019,0.01196023083276789,0.0008543740732372124,0.0028478697476519398,0.001576243758778842,0.0040168478971092094,-0.019960304323077396,0.00013721445955888328,0.001182667352436851,-0.004373198978971315,0.003061702699884866,-0.06156725624790469,0.0006981690284423007,0.0013893719417555311,0.0038052239223501597,0.048885825172772485,-0.02967969405915519,2.319637160406318e-05,0.003850291213876026,-0.01130876283006683,0.030680563078908627,-0.0550964238451295,0.00010949714810775399,0.011540202560439654,0.006453412383497016,0.03627879091282526,-0.020667563659965756,5.007240276054525e-05,0.006745455598765685,-3.684893269699548e-05,2.9728202684428534e-05,-3.580182374631546e-06,0.0024175709731164624,0.024263275790477795,0.034183169358126916,0.20081247387072243,-0.011634393775057756,0.00014007923073184098,0.009400052549147645,-0.02512049979387562,0.1593784531128289,0.005153987481963685,0.0002440657846628996,0.0009712602912243372,-0.013591708284205386,0.07168296694160826,0.0038819514495933754,5.3409563473546424e-05,0.027243496190031302,-0.06547348853919786,0.3782105645267193,-0.020502268042597315,0.0002853110769918635,0.04494622338554636,0.045216748275957314,0.5586760617490902,-0.025666131816227355,3.3586867071660144e-05,0.009486809148169632,0.014407638342561958,0.1458388926506404,-0.024230094542739576,3.30066273061457e-05,0.005009100941066588,-0.014529822761844533,0.04133129554193222,0.0027505327060753084,0.00011324109336959342,0.02902985053375565,-0.026436542898061216,0.17307325108938235,0.022191667020988154,3.528312849006229e-05,0.018015569831413586,0.027902406176699094,0.08107242894000485,0.12430222138812412,7.630374505709388e-05,0.007467418552497247,0.01081560696150171,0.04001672218228366,-0.06558215852872053,0.0001235827855827045,0.0007705252520983305,0.020974156282546525,0.019437605157362328,0.02758865295360716,0.0006167615698326887,0.016038568874747097,-0.014647995766060008,0.05254389929989785,-0.023923947984420844,0.00011733887392020376,0.007394773451969176,0.02439531882500364,0.09643126831396465,-0.0005408461258379966,0.0016237074904160414,0.0084483861857455,-0.03905812493652137,0.37758175352620604,0.05756455324750066,2.6600058179689147e-05,0.00651499646708194,-0.022383330637004054,0.05428448569373425,-0.027696562648549174,0.0013480942371920396,0.03468403017654718,-0.030244118939791308,0.2493581317133774,0.058204817907949666,8.076869114138847e-05,0.007335750184373736,-0.01770612547643977,0.026490759268014495,0.012742970112105142,0.0001577518706152677,0.022995218832382456,0.009602814530953744,0.012202802942764013,0.0006126454039581888,0.00045169247624656314,0.0018892477040703512,0.030422024184125082,0.12253165711225873,-0.08997307880337416,0.0019243769285155873,0.0022373670862400508,0.0068226021343638825,0.02823502405055205,-0.04003511113686006,7.752687065612127e-05,0.018472181094725423,-0.00592768304234399,0.009379859294616629,-0.014881994439519541,0.00157096258478143,0.012614718261701385,-0.009953967860165024,0.031964542966840225,-0.04250084566580322,0.00012337971747623192,0.00833818198738574,0.0418537206449648,0.11166858534119803,0.003752281920564488,0.000151936960113009,0.0029318083532663625,-0.009339772842912951,0.03811641350919632,-0.04963976345784398,5.980509835049906e-05,0.009169740269820849,0.03572010699989891,0.12581849118432714,0.010724090192518632,0.0026908304665932163,0.01772231916333224,0.007894655865722964,0.035595769285998974,-4.534661668576628e-05,0.00011032536958698992,0.03716818842155329,0.027915347819230548,0.15355214052183086,0.0011412458383412043,0.00013184023028452993,0.0011867509217972209,-0.022758217154008088,0.1422271902730948,0.0242097509534062,7.56840397670749e-05,0.0115282395964818,0.0058508934813237354,0.025600715158922552,0.0013414605649564608,5.744040441853609e-05,0.027458888216635984,-0.041213870402436924,0.0698466032568375,0.029564014645195317,0.000287691813989174,0.008946825458483066,-0.0306784251316894,0.13854907641004438,0.04227371465279662,5.50609629351535e-05,0.00879190858907792,0.0006060705609206697,0.00719761315571556,7.046941254415835e-05,2.1725309564383394e-05,0.011237641327390371,-0.007325155300366839,0.019558617552801347,-0.0002832777698072574,0.0001309144683891208,0.008650880023590431,-0.010141401223804603,0.038385125220561006,-0.001820328023639266,0.0004164501033866415,0.025990195646997647,-0.018821652821752265,0.09249899366735859,-0.04284898431495068,0.0001165447048574724,0.043085969496825464,-0.0012318889607665423 +2021-06-14,-0.0056069276625852005,0.03359638206698993,-0.0969624447502941,0.0001764895620791348,0.023882629440913145,-0.03003897555637237,0.1010312230584419,-0.09335199172874127,7.134113814320283e-05,0.005561712027787483,0.011333630475224229,0.03814927123796734,0.0033161422975072443,0.0001374295128673222,0.010630515571951571,0.018174634441636077,0.015930558014265715,0.00996020995688836,0.00038503707738252234,0.002622263195730593,0.019002574619436136,0.04425903287676066,0.009499131673146533,0.00022465097053209605,0.005672508101013676,0.00931031364825891,0.025951021317395833,-0.0349040284386533,7.833513518616939e-05,0.0014229721349030605,0.008300793300675827,0.021979326964177603,0.002841096662193173,0.00011081411060110237,6.893233251389322e-05,-0.0375518950980233,0.3295340530116187,0.04126426718853715,3.90778061020407e-05,0.007739594247956061,0.004575384572444683,0.0038211145742353117,0.00010242611256833172,0.0009233839683077841,0.003184819660983098,0.03150626327011916,0.060918459798645144,0.006295164434220923,0.0001808464006712106,0.007909499092322279,-0.01387429083586109,0.009877377322492867,-0.06062335836436617,0.0006865837302150236,0.00614917418474463,-0.009177903372440628,0.10719692557081523,0.005834183161610361,2.5514316616782427e-05,0.00706910912323697,0.019640089797184967,0.054300391610364436,-0.07838423236490091,0.0001074463199081022,0.01594018626270667,-0.011262478832869422,0.07334187189275014,0.02522517834511602,4.322587725460276e-05,0.006444293292890591,-0.036591001740357405,0.029493330814300913,0.0007202612355983085,0.002419766442568241,0.01545119336087382,-0.008443364226891042,0.057692281454677356,-0.18153446309439972,0.00012043422390272448,0.002881538486291884,0.05236261214524651,0.3207927748030024,0.0577481017768772,0.0002527580273708664,0.014323752535980769,0.03694098379145827,0.22056875805693293,-0.007035489607243167,4.717646715461593e-05,0.03266793811305226,-0.04843370193843125,0.3386287976935154,0.024913409869386432,0.00023572768089284772,0.012024869705493692,-0.09171078466013632,1.2816543744667008,0.09954901478236981,2.9694752939804032e-05,0.06848772439400248,0.0055588076657025875,0.05885023523340504,-0.0008037326960271482,3.155841287487634e-05,0.003242484529552004,0.0368787219323515,0.10511373837445007,0.01907270126173096,0.00011301579268665205,0.024710290564524298,0.022558823079719688,0.15706748985112526,0.004695775353387978,3.317588455863587e-05,0.0008986720810129172,0.019584873917880514,0.06136825695869365,0.014513870945429969,7.075455015199001e-05,0.007502442120416032,-0.008011439392016822,0.029530572526333135,0.013655193299120705,0.00012404728979073211,0.002734194399194482,-0.03565499454294922,0.03341069697726003,0.007131084799716208,0.0006099727029137376,0.003639951943511873,-0.0340087965503122,0.12736631388910535,-0.06069762181725176,0.00011238871172870932,0.003035552720178107,0.003974562391688221,0.015600500624024884,-0.06359108718466239,0.0016351965355025225,0.0026934756260785855,-0.010334538746676038,0.097537118895398,0.003704791907287279,2.72460387620441e-05,0.012070710354693643,0.03598280617347461,0.12151112803663909,0.01634769999853563,0.000968166935313837,0.014237954044987143,-0.01587417608709985,0.12327206447036858,0.004168281416244748,8.575356175951051e-05,0.0005376998323558624,0.005641202399802486,0.008178824796816123,-0.03657376793126046,0.00016278941528163679,0.015405685271995723,0.03612386917862036,0.04686776909295216,0.01815844302688547,0.000442408938613818,0.008315568575414888,0.019881482106678772,0.08237835535612377,0.004490660420843848,0.001870621754075933,0.028539106887495613,-0.001990659209364246,0.006796255411795878,-0.013716260721601144,9.39761385393064e-05,0.005290301010226154,0.04823918189491028,0.07222013873222524,-0.002574939289907386,0.0016604232551796635,0.01976979698077997,-0.009328224606244093,0.029248776717906724,-0.04728038431638584,0.00012635933274691288,0.00499979123792378,-0.0377414477920627,0.07651709958146434,0.05186632037972532,0.00019994955071132335,0.010681944610916,-0.031597961249986796,0.12327461057838886,0.04991672943882631,6.256037566287949e-05,0.0005198623188966845,-0.04650129860691201,0.14129594519140654,0.008999019548332625,0.0031192733894593525,0.03795830312868581,0.009514167955397395,0.05288908183226994,-0.021754145132001492,8.948399336091448e-05,0.0029442437952802844,0.009976618457112554,0.05205097992869943,-0.04413274616379023,0.00013900014004366575,0.006883975968886442,0.018997221003731045,0.11399438516965617,0.023082353823743795,7.88234271028318e-05,0.0023866971116154804,-0.0007417573479131409,0.003026868629534972,-0.011224145350517455,6.159077653620112e-05,0.028808280058244543,0.015845730611258536,0.02778698654482512,0.004005330726433875,0.0002780354748988256,0.01306870824147719,-0.003092911527300866,0.014914668032238105,-0.009927987901401024,5.156657437646402e-05,0.0021802703336472906,-0.0419315662534161,0.40406086838487787,0.07571857686339253,2.677475942602968e-05,0.0032281007896410546,-0.00532143979861216,0.01812226297281268,-0.019355805519504415,0.00010264213801159384,0.0019298228057191954,-0.006615531647581802,0.02276440614314422,-0.0034189904007612256,0.00045807479611046124,0.021062389933720366,0.007345589234711408,0.037414066236222454,-0.04380026114443842,0.00011245105238229704,0.0108367310345287,-0.002273154663930594 +2021-06-15,-0.034627823208590744,0.22349121164850497,-0.04054070554405489,0.00016385184103204553,8.016413968620528e-05,-0.017050901370605213,0.054304659985562345,-0.011940465305587506,7.53391593650298e-05,0.0023176491050900484,0.015017302238260925,0.0444848780011693,-0.052725477859613755,0.0001561624888959504,0.0010930669315921755,0.0038349597102576454,0.003623823347211376,-0.025524242771769522,0.0003571590369555887,0.013593782586457985,0.022018936383201085,0.05557033200785411,0.006974411374461948,0.00020732473430951442,0.0023892756115278715,-0.014521285004446157,0.035742393854514415,0.01863379301744056,8.870909588319385e-05,0.0031199185619582214,-0.03466354734635386,0.12364793969114533,0.020961638647637705,8.2257588955914e-05,0.017759572622724994,-0.032937325035977016,0.2894295749878736,0.03892196931716878,3.9025100772792664e-05,0.025943939000578745,-0.004177259161197489,0.0028265173500117108,-0.019753249557366716,0.0011396842621058337,0.005654519905572247,-0.012887430650420128,0.027713125629396283,0.0052909872667065835,0.00016260830287468517,0.0004907852077771775,-0.017150122684544536,0.013351104699321164,-0.007679994918628396,0.0006278767299320353,0.013971251443844687,0.002841782707951643,0.04226020913605286,-0.10090391489269308,2.0039275442797266e-05,0.005920911600991139,0.012939947998390513,0.034072291089769884,-0.012201480937402602,0.00011281899625633932,0.0024273372235487246,0.0071110457605561535,0.039129148712540376,-0.01642650461972182,5.1155801341973986e-05,0.008571120541498107,-0.01201840944987428,0.010851720088801668,-0.008366466211064821,0.00216008770681327,0.00025710317320626753,0.06394064417263652,0.40563376900549486,-0.01248373520062152,0.00012971643731999097,0.011636076943377127,0.07382117833416446,0.41959691593020043,0.12034381190944862,0.00027243124657092005,0.008164993530122542,0.02723449731149142,0.15888310238270742,-0.010564401561758353,4.828392961957912e-05,0.015158082415227802,0.004221152285297029,0.021206511103800996,-0.12458226105303143,0.00032805646707887543,0.0010269218003872657,-0.05044591121597936,0.6351267513116392,0.018068221215876756,3.2960652231885325e-05,0.020053878221425663,-0.0018729126958530505,0.01937780916675492,-0.010017341190537172,3.2291972058544144e-05,0.010773313407922779,0.01749550799900601,0.050586224970650025,0.0020947969546926443,0.00011140817034064152,0.021887263973398956,-0.01544528680454281,0.12336322913199393,-0.02697297272968478,2.8920288722911747e-05,0.01959538454930626,0.011073099059837622,0.036296103227021,0.011699054826205537,6.763734723147726e-05,0.0026376340365559846,0.00043541022821543516,0.0018041392837801764,-0.002099094051330773,0.00011035122520134499,0.007236111036604696,0.011487148603062583,0.011986999561488057,0.0139323826152819,0.000547743599301577,0.035061821139510424,0.0037787369967704023,0.015676300855200925,-0.00412972067049012,0.0001014586513331148,0.007528885922307171,-0.014020033837839391,0.04612176524074532,0.00039333087406018144,0.0019510226694421078,0.009570046855810263,-0.07498588611499656,0.6874960011398504,0.2534256623423704,2.8047331449731537e-05,0.024618636569472892,0.040541711004549306,0.1359576326522095,0.03431773758830457,0.0009749217276339757,0.025435796521039174,0.015625777506353498,0.11809862489238125,0.0242748982527506,8.810943950472089e-05,0.0047631441757514095,0.0023765653680572845,0.004189449066220584,-0.025535099221104942,0.00013388694611491346,0.00956369124718777,0.010724562215216357,0.016983494426115638,-0.011545562491188129,0.0003624569517774366,0.0005013342058377967,0.038593164323563,0.1390336736356793,0.004876938261438587,0.00215149693470415,0.01672949927658551,-0.021787566579264905,0.0809710977562104,0.06663528685169219,8.633145699399298e-05,0.005487695013318047,0.0023429591444068462,0.0031625567640830906,-0.0018772817962525426,0.0018416350764546305,0.027343466923854642,-0.015903344030083214,0.04864707457512215,0.01787021255650887,0.00012952325848559503,0.015523942896239217,0.04168866743865089,0.1120858896214549,0.08831767204019081,0.0001507743435359465,0.010600084231884476,-0.028564492772310036,0.1308392484132978,0.018743273878265267,5.328468477431664e-05,0.007873993803925342,-0.025978028858866263,0.08710532979417492,-0.03772193912729243,0.002826698728005857,0.009148784861935546,-0.012629284370843367,0.06306276730618966,0.001286775100514937,9.961994291571965e-05,0.0053999072135097375,0.005181615893256999,0.027947084652915028,-0.0900284928625861,0.00013445888021860228,0.002101627227911837,0.05381729500052297,0.3203156103195476,0.13635511553072185,7.946803232303741e-05,0.0028705838611602125,-0.010423444156777192,0.05223907974803055,-0.0002336388937452857,5.0149097438833014e-05,0.012191568897722336,0.02726918828228743,0.05460165389901847,0.02660169301818397,0.0002434982289764521,0.014641431751446351,-0.006462124484368456,0.0267279993358177,-0.006106724349311136,6.012059138286324e-05,0.004472596997307341,0.007540199274280414,0.07000672725354204,-0.003973462063403897,2.7789090546143508e-05,0.04007595850489802,-0.004476732528030199,0.011068760754408182,-0.01692873110302207,0.00014137450956713745,0.0049124291041326654,-0.01700447737643945,0.07524685064031161,0.009747390309578476,0.00035620739535242375,0.013753255172047903,0.02772410997602352,0.13592472773183842,0.000280761471175398,0.00011682369468299212,0.0036273852276529255,0.0011378107580482138 +2021-06-16,-0.022531103803075256,0.1317549972920299,0.015473833394105982,0.00018084310535029498,0.008402239333207549,0.0006063728017800291,0.0019615450272967828,-0.018646036020954403,7.417404407274762e-05,0.008215172324000096,-0.008684747637884195,0.023675499651314616,0.005301680679355321,0.00016968961116820125,0.00719909199640612,-0.02876380801423269,0.025145937167221265,0.11157768743506756,0.00038605253771823356,0.0019475953994742487,0.039451516936262324,0.10861888797618245,0.029234449280766905,0.00019004485946246365,0.012724317947494635,0.014168604154170084,0.03703649168224951,0.027294379639668395,8.353028551536773e-05,0.025778108205076953,0.006612894774665644,0.0302484237964461,-0.013831306418653575,6.414734976802969e-05,0.029611148208716475,0.013260672566919708,0.11941347289378332,0.003778435262460863,3.80812185657513e-05,0.002549770291185225,-0.009494731935452546,0.008791282847294305,0.0014129217167736742,0.0008328662072314072,0.0035696153849749217,0.019010912886078164,0.04345227682844703,-0.0018817186641595463,0.00015298622221817428,0.018172105781398325,-0.01306777604771354,0.008129836553245274,-0.06175699924928165,0.0007856773385881047,0.00693420671295026,0.005150006874956981,0.0678094125414633,0.02074427250810599,2.2632921456565547e-05,0.004047282811266667,-0.03162273618388058,0.10468740181319207,0.029707197565630124,8.973380040783314e-05,0.017081722943392347,-0.015521430819145686,0.0836370437546596,0.04191975221707757,5.2239005212509426e-05,0.0012133568836112944,-0.01871200443433145,0.015461997953560978,-0.02371882710380429,0.0023603568836588736,0.006975430867608978,-0.017432417402069435,0.10629336690067426,0.001414797690973793,0.00013495953091940607,0.015913114614941173,-0.02514064700205249,0.14381403000648288,-0.030688130380172714,0.00027069698939344457,0.00041327867744498053,-0.002212406001013137,0.01544467758228776,-0.001084724850134908,4.0350315723608856e-05,0.02352699750843116,-0.03676856057494369,0.19922810257120807,-0.1529629644566859,0.0003041675201177852,0.023962763547825148,0.01259796672881741,0.1906203088246166,-0.0011963849671209788,2.7425939869563754e-05,0.005954611117311574,-0.0024089479952760563,0.02305325433751576,-0.021199017964956667,3.4912173875322554e-05,0.00025962154576804493,-0.0297607925178698,0.08196497843381127,-0.009457970044116902,0.0001169604199537854,0.02210110642808602,0.02250020231204341,0.17008887117294644,-0.01621842078683094,3.0556450220866295e-05,0.015514750355956428,0.005474213091984608,0.013257792307290467,-0.017105748097276333,9.154357529236002e-05,0.007253284267821069,-0.0018564472376922142,0.0071933833580570565,0.007104277306109527,0.00011800434547613844,0.0013997170678418135,-0.03806668212992482,0.03801959189213506,-0.031168977257981637,0.0005722860190452854,0.00686904491944209,0.017693784881904165,0.07384547893903672,0.012724219316473136,0.0001008516110962814,0.0016620538638613342,0.009192268691857478,0.03573653034446099,-0.04459568314348962,0.0016509331971363507,0.0031077343556576214,-0.0029618664299216756,0.022827889810635993,0.0019471217860765817,3.336429074969835e-05,0.0015147929894666172,0.03744390947623495,0.1251476429865281,0.026496725815400003,0.0009782047825957069,0.03295327618278925,0.023453481892011914,0.21947801084155458,0.03547980172000337,7.116098563063686e-05,0.005868425455775543,-0.021010901812518867,0.027803265943757243,0.01653633084531743,0.0001783586866224558,0.0019749396125673243,0.004337864937409907,0.006102437604616708,-0.014010041676447081,0.00040801543453349725,0.005435921655475592,-0.027902396250935997,0.10803952888889642,0.050628863159244794,0.0020017468851136195,0.003116258235803695,0.006758570691829624,0.022154639411434546,-0.006387200011705519,9.787697651637308e-05,0.009742755965235106,0.04365633333995326,0.06521934013280888,-0.08344301426724339,0.0016639797938001373,0.017971710023630984,0.030698495003895612,0.12298221881116739,0.011567482848070756,9.889874874350376e-05,0.007235763492963415,0.03007761778237371,0.06526416250437815,0.039063274866368486,0.00018682244128926311,0.009693084059671453,0.023113727942482596,0.1033712695830271,0.005979463618154166,5.4573784544157606e-05,0.0003810782041421654,-0.02334495918625461,0.07895018844854843,-0.0009874057065621328,0.002802579919570003,0.014331361776620248,0.007649556253666619,0.031370440483788266,-0.0011743909495392586,0.00012129871401623889,0.014740093209358507,-0.016398187797781884,0.09252444779231231,0.027542399054733324,0.0001285287069511199,0.0069495306168133476,-0.001054023279111213,0.006130295462662349,-0.010491582827979318,8.132376837734388e-05,0.0011788134395406009,0.016924205281331733,0.081573358499667,-0.016329412504503784,5.21443593562352e-05,0.024976913529802577,-0.029260499106215355,0.06817931634719959,-0.04763731706723103,0.0002092466345647186,0.0025625269814304337,-0.014969435727958273,0.060316493174740866,-0.054674916884091436,6.171400371107475e-05,0.008223807789705079,0.008284717619075151,0.09403827271466289,-0.0030778870853211656,2.2730257323427944e-05,0.007698801359580167,0.006310816224855293,0.018718855286317015,-0.04448656596038158,0.00011784609907561769,0.012237660843026405,0.019048535162845597,0.08958511370819247,0.01987803238857092,0.0003351611760032533,0.008721202723686535,-0.03770973702281727,0.20094011984991864,0.048884069392001316,0.00010748766850847106,0.024740160592194697,-0.0011185985012119699 +2021-06-17,-0.01965114724362824,0.1360234703793193,0.013235198245773093,0.0001527779375297169,0.014269934522074708,-0.0226156954459064,0.08018772048555856,0.029239684519340788,6.76725600001625e-05,0.00579571882820916,0.0018540001110299987,0.00590542135252516,-0.00022850229811348003,0.00014522991069319452,0.006317105826654325,-0.006419069400160885,0.005671159793101595,0.009602288463874453,0.00038200411664537524,0.01177261454339875,0.006106950292642435,0.013918037554980035,-0.04505726460265235,0.0002295853401623058,0.014953392434005142,7.840013734681518e-05,0.00024696989417745857,-0.0037324851034519994,6.9313774271696e-05,0.0009688780402993446,-0.04182873653030559,0.17213012772670946,0.024505941175251636,7.130298490089794e-05,0.005643440854364468,-0.001742066566471297,0.014931814085340186,-0.03328191524776967,4.000836341574731e-05,0.009670972316861889,0.0019518060553943032,0.0015164755950553945,-0.018449303038215476,0.0009925354383980495,0.008961336580599494,0.055328995214343264,0.09972904398262994,-0.08650149418536135,0.00019399610659875016,0.024404799239813677,0.002398189480392427,0.0015683742998720697,-0.08721980526838154,0.0007474086757674712,0.001435857797699638,0.012019710489731052,0.16259831295344146,0.009969926650509674,2.2029303253748514e-05,0.003493194404386722,-0.04000219266926583,0.11730721615947448,0.0422757573955709,0.0001013001542254647,0.0006705288092316503,0.00039036305030713364,0.001812887956200401,-0.05678333851230879,6.061213159962322e-05,0.0017729171020987586,-0.028789966225202187,0.023338004712734096,0.007227599266009848,0.0024060264911426638,0.009952232819592136,-0.03250068177928588,0.21735837086870607,-0.04589078386107355,0.00012304620080105002,0.004044339316860139,-0.029328652160321555,0.14686238988755915,0.0069495693139337384,0.00030923578536391256,0.025479930695698576,-0.04492348997740948,0.2643260436518662,0.03560050113284153,4.787342379980717e-05,0.012816173840627325,0.0015990237951354575,0.007820021348559558,-0.11150461136229017,0.0003370030219917539,0.007994639105554254,-0.001208074299210009,0.015631723327190494,-0.049360977907207886,3.20713334147118e-05,0.03306984040497798,-0.0031758777438320733,0.03429933966485148,-0.004406821479781573,3.0935684211402414e-05,0.0018622119373583102,-0.03541520487926537,0.10170322945599419,-0.01476526981886308,0.00011217027142595832,0.04843959226279951,0.003398351207709562,0.02272881358536465,-0.006009004508282619,3.453694102960312e-05,0.004901625949659068,-0.02528112309444737,0.08327831526166947,0.08034907058279801,6.730414550647725e-05,0.009891713739758258,0.0006209568592818633,0.0022494687022370534,-0.056197785097653365,0.00012622055032354077,0.005279334995834474,-0.05751579270978797,0.04947919161419816,-0.022135780261939176,0.0006644159898523973,0.012655369703084113,0.026335139749371725,0.08978999173582076,-0.029841832203867196,0.00012345074205711513,0.020853263762770857,-0.05348678591218468,0.17160090122460464,0.019335912408470827,0.0020005348055958457,0.016983510286939348,-0.032211776021069685,0.2698782404648451,-0.028678653329264586,3.069226900248026e-05,0.015239854384352861,0.02011084378014979,0.0569635738752295,0.004693915766401059,0.001154261827152146,0.000756953296574004,-0.002648345270266637,0.020278809876336356,-0.0067768917747354305,8.696765983815964e-05,0.009969585340211078,-0.0027348639717254923,0.0037837450106579717,-0.03957298184880943,0.00017059223338535204,0.004080984792863571,0.017207195094955385,0.022669640300866906,-0.06369128069035368,0.0004356817489053916,0.0028486074873747625,0.01622137512780412,0.061381862330934546,-0.040074826387356925,0.0020483206721754574,0.010636893539460178,0.059993421353816495,0.22640784856401983,0.16271306730166202,8.50163631148852e-05,0.029586472540615083,-0.013553893165455771,0.019073774928601864,-0.12032834634745093,0.0017664632077404514,0.03474539845674177,0.01877199281396612,0.05769600575296744,-0.11049398034123094,0.00012890823658093616,0.013862722708343938,0.015875547447059626,0.04862599984202806,-0.0703257338622343,0.00013234896276921165,0.008293724113734458,-0.002187871385594644,0.0074316634147727455,-0.014906370193017654,7.18537901760007e-05,0.0021266584205709986,0.08676357083573571,0.22077118367526513,0.10178831393247964,0.0037248868885054356,0.014864339360699395,-0.04994926888903804,0.23304650732912988,0.0929354225955913,0.00010661715953157956,0.009361742625692813,0.0119913102640418,0.059755900108589825,-0.11522667373878165,0.00014552802380401146,0.0008616902026459794,-0.04612927571732408,0.23600037865368445,0.07072701630590483,9.2451217476139e-05,0.007360203104360724,0.06035699940374734,0.2944625537519708,0.08585469582325725,5.151633536466594e-05,0.01179958603590841,0.019554886830453762,0.03392881123256154,-0.029000177405259047,0.00028100630055111154,0.021220257505933454,-0.038452886333688145,0.16120141474017805,0.08164905776468413,5.931635710413818e-05,0.01543740705128582,0.013508254752133556,0.16100086682325226,-0.05728165754176066,2.1647229107169672e-05,0.015510259987646123,-0.012541101735757284,0.03597703564821547,-0.039064444700525024,0.0001218482451770356,0.012599063308631132,-0.01276301917761862,0.040128304152425257,0.0014126778238872347,0.0005013379561424185,0.005725267531184617,0.009646135288584573,0.04827626503571539,-0.0038490124848191178,0.00011444359236432082,0.008162666660386224,-0.004572941859190618 +2021-06-18,0.05722096958486638,0.3100351462946233,0.13778713462825676,0.00019517800165888904,0.0044835620677431765,0.0028079485009054068,0.009181420719997476,-0.033515702325556895,7.338203925393918e-05,0.001116288729341575,0.05079015290659138,0.18155086399418666,0.07053603709938291,0.0001294131489296928,0.02091692501658856,-0.03158192140660133,0.03433064298404029,0.0713813776704922,0.00031047344976553956,0.005131005209581933,0.042946540332809494,0.10433309859465816,0.004369542444264543,0.00021537924512179355,0.004824520293927972,0.015707144293720908,0.03786334069008011,-0.010435811908621478,9.05784832361086e-05,0.010263339120434124,0.002370392800400084,0.008474462981277549,-0.11027286193230763,8.20725614301159e-05,0.004159417112057764,-0.021731001357850863,0.17722623104207272,-0.022852303917754255,4.204848488921962e-05,0.020207307077056043,0.0010942347542540686,0.0009751496678474528,-0.009851172127576809,0.0008653344898742408,0.004160788089103924,0.0007363870737117112,0.001532718396210068,0.00177796041715457,0.0001679986039681308,0.00026582885754648853,-0.019745508512616375,0.01453916719380529,-0.003980366339939228,0.000663824306192403,0.002443839942563032,0.0048765238767445275,0.06729694424862324,0.0030424325963361973,2.1594233828824284e-05,0.0037154633678761597,-0.009650749179753722,0.02745130485233304,-0.07869955643902214,0.0001044357220435443,0.00020933083636794298,-0.004430720183646031,0.02472447224369805,-0.0394242300214986,5.044395293254411e-05,0.002471691672394294,-0.01789013948775865,0.014614869830350197,0.0008052206287799108,0.0023874910252145846,0.0033451802741266586,0.0521781286507413,0.3511943281498612,-0.05854880113560253,0.00012226245544410443,0.026287205201460384,0.016299735489272042,0.0816401572584683,0.003084895932118706,0.00030916117989600024,0.003687809706743082,-0.008730317312205846,0.04895047332732802,-0.018379733838538814,5.0238202168230625e-05,0.028270335544157855,-0.02316705121854466,0.1285718844912093,-0.0002841293581193525,0.00029696930105661096,0.0031200221512196692,0.023132949375471053,0.3064141833677553,-0.08290778173857453,3.13294214186408e-05,0.029351315762246886,0.003761610081856252,0.04400237863126224,-0.00374915185069319,2.8561389451203315e-05,0.006375360221885585,-0.017969155421399263,0.051264864132366604,-0.008864881333718376,0.00011290953274938444,0.036455940023849324,0.08132062055364338,0.5949969588441565,0.09339019020684693,3.157027131131839e-05,0.013739789031114627,0.02214378683455181,0.053561816340714316,0.04896259520680695,9.16587601641654e-05,0.0007452147712761336,-0.013675025879271836,0.055871930400375185,0.05773291335445696,0.00011191365401077811,0.005377502222906293,0.04210690944616068,0.0430500760218573,0.08334929411736088,0.0005590556037353324,0.001832438337536889,0.021140295455104985,0.07624678601546508,0.006255739924627894,0.0001167012532390123,0.0025572709217810325,0.09052331109571475,0.31586184034067827,0.10656905534720318,0.0018394265221229518,0.00013931142228878059,0.012423554050714688,0.12641301299162575,0.003187623345477185,2.5271805267185584e-05,0.004066576313940184,-0.03315007244148193,0.10943740667561222,-0.03205025660521771,0.0009903528563170198,0.004200274342893856,-0.018292603626945302,0.1394945749609252,-0.04203688702866514,8.732605664153167e-05,0.01510841309205367,0.002940503401122112,0.004634659278754958,0.00023714587802234013,0.00014974394149327888,0.025839626129404398,0.06862659112974842,0.09691729690109119,0.09162470084087428,0.0004064386945924689,0.01260000066374054,0.039191844875352815,0.12440043078894489,-0.028028872476950527,0.002441879137046771,0.004258715195404479,0.011812396765511839,0.04932123332520881,-0.010921097759449072,7.684125838027175e-05,0.005876019883434152,-0.04708824897053207,0.05202660417658573,-0.05150787232089524,0.0022499053727158876,0.03371940325587193,-0.006120966425617138,0.01974026365506548,0.0002214102809502458,0.00012285224153899135,0.005099854168174649,0.030240643516777185,0.07269296147373605,0.007853465144054916,0.00016863939776140782,0.012067600107553502,0.019915841968821117,0.07838015367380725,-0.027341130939854998,6.201639053414304e-05,0.005839114145094762,0.029146587055759187,0.08642105505545686,0.004486376131151253,0.0031965845932546795,0.02027777795827127,0.03715549721843427,0.1807334943929464,-0.010316291006260383,0.00010226452432610399,0.002996284745578608,-0.013261260094045888,0.07792723164662266,-0.08416714883537231,0.00012341169839347405,0.012284352449415815,-0.001829927314877598,0.009830033917884421,-3.8120996474697625e-05,8.804962733727502e-05,0.01939331862985663,-0.0036655158839262467,0.019543535626249203,-0.01307562460839476,4.7138891528275095e-05,0.009770101897237994,0.027736297027706285,0.0533460807778621,0.02559978741023837,0.0002534984775174269,0.009377137792492048,-0.004094548329991184,0.017405485225731918,-0.0008922822840967031,5.849708736497127e-05,0.005143482907124874,-0.003535795745610054,0.03283284515085706,-0.022012303808834822,2.7784970240610975e-05,0.0006172124288462847,0.012130324427229763,0.033417406307698835,-0.14188591045982496,0.00012688452018732804,0.0062598565168949126,0.006373766375808748,0.027463404776711962,-0.0021734261078443034,0.00036582192758383397,0.007479885547770411,-0.025163728140130272,0.10613455784891353,0.013766147589744183,0.0001357969342939007,0.005647890563215187,0.01052488271824355 +2021-06-21,0.04203120544729053,0.30360862507648945,0.057847393279070757,0.00014640109483085088,0.007659354227521139,-0.027778276303741627,0.0805218836241407,0.043468303434384556,8.277551554997664e-05,0.006236023140533893,0.0035970518219377613,0.011241501749975933,-0.05479481360488305,0.0001480197160401691,0.008105205457532492,0.011849254559958087,0.013564563217503569,-0.13131907537742465,0.0002948173729626807,0.004066168548094208,0.025971518163898002,0.05256913571365707,0.010971951271652606,0.0002585022172232341,0.00589253205288307,0.014034291139349843,0.03427721738101777,0.016907022905667004,8.939879453595917e-05,0.002098236602764237,-0.021160838969725173,0.0778540186636179,0.009207838329322822,7.97520219711012e-05,0.0015710282397591667,-0.007653277606755625,0.06601968585128351,-0.026640336900291158,3.9753248891728405e-05,0.0015138238072156863,-0.018228762583358354,0.014534340835017725,0.08465039183802336,0.0009671785025368056,0.012131894045272273,-0.005881436803961806,0.014519011476586295,-0.05618697401019223,0.00014164729089405888,0.00703292223247998,-0.004989634567868099,0.00437971161999536,-0.02731709983012044,0.0005568619995944537,0.0010030557837055385,0.009410683849358642,0.13171618175757827,0.02953032935638714,2.12914304555605e-05,0.002181491868808826,0.015481936983250129,0.040924168861395986,0.009654603999583419,0.00011238192458190166,0.004569794069628669,0.02750570837819594,0.15695041960265854,0.16114409709611685,4.93312558225037e-05,0.007501922716126952,0.06590264826397348,0.0543514413069387,0.1380764585405404,0.002364910851666741,0.017632492359528944,-0.024206372583582332,0.1718043274476434,0.0068276028854802875,0.00011594385142453393,0.003295947316443843,0.011316972994250806,0.0664739504408296,-0.011513960033828067,0.00026362526085735684,0.019816515590621548,0.0882885063970269,0.5054943408600848,0.12390247435662866,4.919815629715976e-05,0.03534948048416224,0.008910699852474384,0.0494053648830556,0.019521963487075047,0.00029725181254878016,0.0006104003882352461,-0.03549768374784095,0.4339264797062514,0.007380833127814759,3.394799222846254e-05,0.008025809118645482,-0.005376877285366869,0.04915152039189683,-0.025625493056106095,3.6548947711499714e-05,0.004128529324443462,-0.01280859875149677,0.03782809412564356,0.0031404666937299474,0.00010907115592132346,0.002884382571450424,-0.007332378826789336,0.041800827422110685,0.003752048926592862,4.051840977648338e-05,0.012322133479290407,-0.010922424956330664,0.028236190088196136,-0.046154583452951245,8.576110239021918e-05,0.004604069644626023,-0.014945725454250908,0.053802704984669505,0.046092378277725554,0.00012701689296978932,0.013192980474224021,-0.004648736742219822,0.004059334691094059,-0.014474377719876745,0.0006545693321783386,0.010638342248278627,-0.012423126297235418,0.04238413282742008,0.004260657216627195,0.00012337114843290344,0.012727582067499606,-0.007460457398413877,0.022538599084492707,-0.000918346607795125,0.0021245047724968245,0.02124600852011365,0.06826079780946658,0.7360310615731966,0.11410363625245667,2.3848299247591468e-05,0.007945239077028918,0.006299224590937704,0.01843229925478381,1.0493156491182339e-05,0.0011173232859026138,0.002986731752701764,-0.006961126675753756,0.06323587468714077,-0.002832332361137795,7.330635910900079e-05,0.0032074910831731904,0.0016878718134163786,0.002304156995576302,-0.0592880662563079,0.00017289115685209592,0.0125759490981622,-0.02601787201914093,0.03352048076950407,0.060732191764736175,0.000445518197703058,0.0030985766061466845,-0.05550428994835888,0.19148606570941032,0.15353676053923046,0.002246672224545933,0.015349503268090574,0.0215275222803944,0.0875866461284029,-0.093313272075977,7.885813852111778e-05,0.008398174356820609,0.008278811597469533,0.012818587189938854,-0.01741990980386618,0.0016054804793489974,0.01559321068859668,-0.003569275529181326,0.015028694603667299,-0.0032575922044415164,9.409679941577385e-05,0.016653600655777197,-0.040583280332098834,0.11355689291998061,0.08164154684756252,0.00014487519148357014,0.002257392499028359,8.81698449309524e-06,3.498835550981647e-05,-0.06133751035246107,6.150500687083672e-05,0.017943428650981613,-0.050630784113611486,0.1559661104412514,0.025986175619810464,0.003076822690112093,0.004784148194672961,0.044874423683301405,0.24458569170720865,0.03850931453927328,9.126587198988948e-05,0.0020388165934714267,-0.022058961358249043,0.1412732675508467,0.06453293360281337,0.00011323634791663266,0.006234761981279875,-0.03933782876470358,0.24643404530883967,0.043765994977598914,7.550198645711374e-05,0.004179228234235231,0.01648131898461884,0.06744625310057249,0.0006590932731044852,6.14160006063934e-05,0.005618639238221982,0.016621115633802863,0.02972329940508533,-0.1492285168177947,0.0002726418680897555,0.014585311075917788,-0.018091587902806586,0.06771627673296,0.00885048620605631,6.643516093750843e-05,0.004001279099391479,-0.04130884248419795,0.44105492704620797,0.08299127704320317,2.416471254413361e-05,0.023566247791329355,0.012858928379251632,0.040349564232533865,0.0582455273720573,0.0001113973586002119,0.003141579892662205,-0.002744711662243086,0.013053049450717124,-0.009694882199861334,0.0003314459489087952,0.03147500975720515,-0.017418203376118147,0.07466555844641506,-0.0070628530567654465,0.00013361488290802707,0.014291809322096302,-0.00015163148959186987 +2021-06-22,-0.009247317312987812,0.06870123512430451,0.0003764345740176507,0.0001423435521180367,0.022306626897531205,-0.04781927434335243,0.15781517534442774,0.13244090085631227,7.270507818563916e-05,0.012520793456744322,0.0006654373136957634,0.0022164995609368445,-0.00044357893144724277,0.00013887903965708036,0.014926835140381957,0.01606284765431064,0.022033171545985695,0.019402852051599834,0.00024604434107938485,0.0027709868480361617,-0.0012735768524722438,0.00357205113806714,-0.03713570527336584,0.00018655429908976672,0.0064401640797830655,0.009989679615200994,0.023143429572337545,-0.007171678737892098,9.424766151915314e-05,0.009634145355759627,0.03337734640604716,0.1251650617871824,0.03808790256905143,7.824535101755551e-05,0.0018359019823946496,0.04126036754266131,0.3683851757751678,0.11872052402982297,3.8408695872950383e-05,0.008825422347155212,0.00997263076249471,0.006553917680303134,0.012723925745786386,0.0011734201563223046,0.0022078181390520406,0.013541841766732933,0.035472734342856735,0.0007030966266775908,0.00013348883867082552,0.0025034831649927724,0.015583960960946355,0.010372082772463426,0.08059254507776936,0.0007344060331297552,0.004284463248891893,0.001348318759312363,0.01754531991710369,-0.014697537211518263,2.2900980393418027e-05,0.0039007953318481786,0.05798803695894453,0.17345811449790458,0.10802173815947252,9.931042115081917e-05,0.0037482578144635527,-0.012118930601623433,0.05840647819739748,0.02288752553336065,5.840702651219397e-05,0.024375577654739813,-0.025388292720728983,0.021068248675361577,-0.057073962954093206,0.0023503256147557653,0.0143745910828076,-0.04208775036750611,0.2733415087548694,0.008183810920126735,0.0001267074741065365,0.007951783528987677,-0.000800620797738948,0.004842915449595931,-0.17712214476222238,0.0002559930722970311,0.026680773372001122,0.00857593997487594,0.05014087253275196,-0.0022207827988856674,4.817822566337531e-05,0.002325609484224075,-0.050607262111807896,0.2646096157272003,0.018874459325455596,0.0003152056747744793,0.024381395088185823,-0.016434697183165575,0.2591352299258578,-0.11474320036159899,2.6318763257128674e-05,0.013693990916017619,-0.002704189267395902,0.02528962354595268,-0.008743298082657672,3.57253448182021e-05,0.002889678165301457,0.001549405330938299,0.0044552282467447005,-0.0024232089952123583,0.00011202574565844054,0.024207847325267838,0.02401116276708853,0.1973270302504265,-0.0022856890987587716,2.8107290868640084e-05,0.01743278849817235,-0.001956739926150107,0.005731437572815051,0.0001276382220635166,7.569146700134106e-05,0.004609094606472843,-0.003243755158266361,0.01131248418744942,-0.0772092976737062,0.00013111086307345673,0.002967482467660344,0.018106093584591237,0.01771470532250936,-0.040370917112498524,0.0005842065067772292,0.0003249574831153501,0.001557267966328249,0.005850238372025966,0.0003068981663233353,0.00011204069575675935,0.0012138811769789376,-0.01864839422158369,0.06007951149796262,0.003199851177517749,0.0019922059065159647,0.007777316099958024,0.028463893565820044,0.2334210364645041,0.0030403687131654597,3.135714461791014e-05,0.018368919126341143,0.004533389338639224,0.01262314544514824,-0.030997831634666774,0.0011741584353219352,0.0004928221403096701,-0.0055541197313779,0.03878211758857436,-0.004623330357355866,9.536946846182191e-05,0.004384287089628486,0.010045624191327169,0.014591996504144751,0.0021651304644804497,0.00016248287555555816,0.008034111496589145,-0.03831393251236489,0.0522280046114175,0.06107708331501883,0.0004210728210357407,0.00732965762743721,0.0031779336603128066,0.013730037858267164,-0.0035857896729795933,0.001794004109139252,0.007345878697476528,-0.0077212951428301015,0.028445427827987344,0.016199244870208882,8.708995252488428e-05,0.0034789575353760638,0.026839313986331353,0.035008357115464316,0.006254066106774859,0.0019057980241085873,0.02103335563436113,0.01267945905622225,0.04341391943848788,-0.0745070129800973,0.00011571449547452871,0.00523514365671528,0.04336696237679277,0.08874280711913493,0.0649522490951524,0.0001981007943899752,0.012228741583537922,0.006581543271684555,0.030263222184041302,-0.031208277352099478,5.3079460458599985e-05,0.01639517664406604,-0.010658753942110664,0.037638275845683446,-0.009632354553545549,0.0026840757834883273,0.0016170478558688586,-0.032278433432167575,0.15353435042404845,0.03920021128080933,0.00010457971736103608,0.027196763185176605,0.010802197352786112,0.057722071825008305,-0.00018095438331613368,0.00013571597809146666,0.001076558730493657,-0.011859251507628052,0.07415097274849557,-0.008618186273142167,7.564654992784495e-05,0.014531703119269617,0.06168540299097715,0.27277544258324454,0.06600414976251051,5.683613434333345e-05,0.002237604683627858,-0.020712703734788368,0.03929263876054708,0.006256861229866302,0.0002570129413083154,0.0013768464762641775,0.00854456320493432,0.03588276826721931,0.0035687797378680685,5.92131686752428e-05,0.0037353545789559055,-0.005514643468851078,0.055703460138718124,-0.018503757767766707,2.5542685268731622e-05,0.0039637762143321,-0.0017065302668831661,0.00513965593920205,-0.0028235782948263055,0.00011606169599794425,0.009553013638932389,0.006517970378271875,0.025837284476956723,0.003617686858115794,0.0003976431325159119,0.009971638919661302,-0.023238514581070353,0.10913296178460284,-0.009474400115865162,0.00012196191039217754,0.0006733608383610238,0.0017927344680628665 +2021-06-23,-0.008131483794234621,0.06315147498141582,-0.017213404525735342,0.00013616731884428135,0.00631154657979591,0.023650366388459104,0.09380363932971618,0.060416309206408274,6.0496285776846325e-05,0.012619085759545203,0.002443283268087732,0.008343856930629298,-0.041267938865137056,0.00013545784951907687,0.015421412498347453,0.016865613580074143,0.018433379106549852,0.0066448889203276785,0.00030879129367851314,0.006065596098638321,-0.04044635307032867,0.08858715327084181,0.17370361523545277,0.00023889463409398632,0.005478267058389509,-0.0014492640919667125,0.0041056384643187085,-0.02602289338120924,7.707500619223323e-05,0.01163621312258574,-0.011656594653806676,0.04363556057235966,-0.005028631085466601,7.838283914033293e-05,0.0092253229703285,0.03041950263974795,0.2607751894518665,0.03213392031594539,4.0002253153490345e-05,0.013559051226379182,0.019459731157627617,0.014922573270594486,0.04835482104580891,0.0010056292635299748,0.0027956630106933745,0.005444442939116938,0.013431598230166342,-0.16390856924816877,0.00014173843862765444,0.0054839716121299325,-0.009257697789568222,0.007116995702200594,-0.07843128993329745,0.0006358148311677813,0.002461327424454702,-0.009191548630506061,0.11309047214570157,0.01432415083163154,2.422063145895312e-05,0.0060252012884010695,-0.03433062356862424,0.09164381208231329,-0.014740760377213887,0.0001112831943881165,0.0249995537695544,-0.013102509169397774,0.06759304114466225,0.019333663468710932,5.456501814796917e-05,0.014556163695766127,-0.01291725900708971,0.00889074123950135,0.0010682654449946359,0.0028337097852971613,0.027679096494497776,-0.0432600151284405,0.3065254758290277,0.02763545541408409,0.00011613742683319459,0.0003765319437824083,0.021115202802393106,0.12205821742237842,0.004403108220145894,0.0002678776410323851,0.007117507685471387,0.05037637032474911,0.3213094576395508,0.024864130820594382,4.4163584958974566e-05,0.02841131649239515,-0.026198376797761554,0.14083583656885693,-0.013939785843562919,0.0003065829605331507,0.0028194908951338056,-0.007174405076272208,0.10826738413410905,-0.027801382228312355,2.7499100060889735e-05,0.016008465311279713,-0.007642742033949003,0.07251653421349333,0.004161361296802274,3.521225761101387e-05,0.012960813501334932,0.05407297124603616,0.1496680781987308,0.04214193549003541,0.00011637878205647476,0.00534867305026146,-0.02495367882869644,0.17642648501327726,0.027118696937062755,3.267105626291572e-05,0.038469588502360284,-0.007163882642554873,0.023861267422706646,0.006127603608665533,6.656291562963619e-05,0.011620257095943779,-0.016781011269705045,0.07409914828280492,0.019637269686231987,0.00010355081194572636,0.0014246743988428066,-0.04318357451885487,0.04304876399594763,0.01621316167772062,0.000573368015702801,0.01232296804896676,-0.02031925527949577,0.08018690346882068,-0.004400912957014782,0.00010665724285624213,0.0011030328467581158,-0.032764638981804595,0.12067240397500095,-0.06503299028136382,0.0017426757870946487,0.01390377048143802,-0.02107838531553738,0.19256858945464644,0.012653036571365983,2.8147127815288796e-05,0.015805187123392975,0.016103161126816673,0.05403922078852094,-0.02120368027293707,0.0009742565406389632,0.003256583635549597,0.0003970648974083533,0.002703433589345339,-0.005652944993199772,9.780733657663933e-05,0.0023491324587169467,0.032633982948180464,0.04871139106547979,0.07989886319733717,0.0001581193194753259,0.008498068369903269,-0.0035901408051983216,0.004919884638696006,-0.0008213287150227445,0.0004188518868249696,0.004666892944852464,-0.012965822420409842,0.05603206886069864,0.01223646218971092,0.0017935510900693671,0.0009014892175693112,-0.018811143554319752,0.06836124913281527,0.03182394416412213,8.828675983843774e-05,0.008471869783314965,0.03209334710478192,0.04758913015134364,0.013084177578559439,0.0016764261952246066,0.023647507293485345,-0.019142315557893697,0.05712982108095244,0.03927285666957876,0.00013275400860433942,0.020439718321311168,0.010014982018375472,0.03073136787707334,-0.010115854371650211,0.00013210786029143622,0.01818102633905007,0.031018241226801854,0.1354069969517607,0.019214276301440736,5.591006378522467e-05,0.01521711274440484,0.04613740894914809,0.15443565752309893,0.0245743685160537,0.002831546366698629,0.009684039553581478,0.007871094084644328,0.03940081179775339,-0.014188737731560527,9.937348127610676e-05,0.0054661531715204745,-0.008576032489652517,0.04625478825020032,0.010591922254128144,0.000134459194403328,0.00818339272471909,-0.008471452296304383,0.060761411413599246,-0.09069669842007096,6.594452052735674e-05,0.04424875312144561,0.02298993468364606,0.10652730051161194,0.004729312199351653,5.4240565721692435e-05,0.0010889179299167432,-0.0645862471804472,0.13972494995140253,0.12532454163577933,0.00022536967671018914,0.0029091901871486606,-0.030179715710435755,0.13085808807239893,0.021314568343638866,5.7349409386165575e-05,0.008920630087479033,-0.01634625072455038,0.15554129320487411,0.006196037763248436,2.7114633338809462e-05,0.00037599022053492077,-0.0045176311017983434,0.011192029290158613,-0.035312043540211994,0.00014109476194494223,0.004891326364498863,0.0032521671429155195,0.01217237566365585,0.000975228376619486,0.00042113901943219956,0.004798645633877024,-0.01972718960967166,0.09732005654310481,0.004497910250555687,0.00011610065296252593,0.0297397801517756,-0.0045668089913535985 +2021-06-24,-0.026331450565241225,0.14351636944601368,-0.004474070050457007,0.00019402599933979748,0.01212072882411403,-0.013629498130202372,0.044989388183830165,-0.016341631417494222,7.269094315373401e-05,0.00502300166110092,-0.007011475121310589,0.02547961017553156,-0.12845452179212727,0.00012729572609685764,0.010199201965018336,0.008880586625271868,0.007811251321771741,0.0046675166257230645,0.00038369743862951336,0.0005003837129596163,0.0022773652813644052,0.0041536302857935106,0.0032158982854176375,0.0002868815577362934,0.02033046796305097,0.010323502309837704,0.026950098846886098,-0.21736650407007174,8.363988686248427e-05,0.01178338975946865,0.007274672064842947,0.029003004970052385,0.00432785032873806,7.35970282934141e-05,0.007617102654380804,-0.002574518027854269,0.024601873888291267,-0.0003025091236338891,3.5886108332891745e-05,0.00827534644000782,0.014394560139108385,0.011767567989865809,0.02276262466861906,0.000943314410339282,0.0021145606764444427,0.007531646017132961,0.017993278950199393,-0.002566222380565671,0.00014636642784110736,0.013144788749249781,-0.018073581902767456,0.01285832194877588,0.017128588003270877,0.0006870435934457907,0.002041413519880046,0.0025106887167322877,0.02860440347186704,-0.04251310271472144,2.6156688777500982e-05,0.0025014698578548016,-0.030424596309684186,0.09421234353328402,0.02250930970457497,9.593300650996743e-05,0.010833500700650731,0.01879041852044483,0.10303832068865375,0.02808040533170815,5.1333337295942964e-05,0.0005471175399695522,0.06660736237162175,0.05569105148637047,0.029909631048543762,0.002332704842406756,0.016299561177302184,-0.019189586220922088,0.12948123774794218,0.003265231616770692,0.00012195816344711133,0.006386358718838348,0.025815596921824696,0.14126180777133793,0.00033661574976051844,0.0002829864516853727,0.009941257994376618,0.013779767491319483,0.07510867911434471,-0.010014134117884441,5.16788357764048e-05,0.0033028867060162725,0.0508488257159983,0.2904623594213956,0.09916751842541745,0.00028852129617638943,0.0013695114928742647,-0.03184213262943273,0.37352699391979866,-0.005762688491942022,3.5376135238043056e-05,0.019703261806234783,-0.0012633837106216454,0.014993942536140208,0.0007816103824695541,2.8151474048733412e-05,0.004870160908693753,-0.014814771109129108,0.04139849929881373,-0.025727201864891466,0.0001152744618905556,0.03194996090389353,-0.012909604048706913,0.10632160194389348,-0.11285970474976302,2.80468303022248e-05,0.015257926442832696,-0.002552500519548674,0.007538769527616263,-0.010269344532344815,7.506591021614813e-05,0.016344121345756867,-0.009984614071348522,0.041992343148767174,0.005713662095100534,0.00010872008166467545,0.0005590784865334169,0.012800196420361733,0.010285519872053093,0.01567766962613794,0.0007113215198951144,0.011076149820978383,0.02687583840579064,0.11021793653348919,0.04947704748216412,0.00010263506323211626,0.008929593635093174,-0.0010534183894995441,0.0033154263341247693,-0.0008320106461997122,0.002039297972889411,0.01728745019080862,0.03370382489448689,0.2720244060634989,0.017562103970310123,3.186056802459606e-05,0.0009657103750186254,-0.002538613366440283,0.007314495441398508,-0.007377824771419277,0.0011347062803212268,0.030143433055208446,-0.013430775345237499,0.09331885700282888,-0.00548713104017064,9.584231985518628e-05,0.0027345488591980086,-0.006464671793569442,0.00939518972376415,0.0014047096401677975,0.0001624001076236375,0.00875479096958281,0.036558290227377124,0.050729731439930176,0.008716111629147632,0.00041364447405840826,0.014398526591939015,-0.028899772318219608,0.124329494922002,0.002031449986334158,0.0018016506928944002,0.0051614387761959495,-0.0012389044173996982,0.005201598069542073,0.006710736126961106,7.641724578698573e-05,0.0013168709443998553,0.00521863760787606,0.0068430215210165445,-0.02212297355985459,0.001895773401482305,0.003973509770464935,-0.02016668307863754,0.061220400761383645,-0.015266997299846085,0.00013051317100989872,0.007738557933072187,-0.01907749000803568,0.05588691851926182,0.0015680020015812572,0.0001383794010845034,0.015059185182087122,0.0014729040632432036,0.005382528445812268,-0.008160646490676524,6.678855564322385e-05,0.0027940180873795763,0.0267569716170631,0.07631226667308609,0.0021113220237641873,0.0033232320105335985,0.029368277478293084,-0.020964492234843635,0.11124542509610806,0.007012167077766296,9.374384421436373e-05,0.006993700021379142,-0.015039634799531888,0.09187411059057198,0.02557618100937151,0.00011871481694880257,0.002436282337962381,-0.0018019396420101718,0.00971019629147296,-0.00761977895801583,8.777299733029833e-05,0.018782336838870713,0.07129403469669517,0.30460248444997545,-0.0030817090607739637,5.882570582119048e-05,0.004062175576181381,-0.021590967102585658,0.041855025747034064,0.004662432630488346,0.00025150920030386867,0.0064645389841746035,0.007939851114561393,0.030233968216777436,-0.006368002230806733,6.530276683733463e-05,0.005968252599871012,0.011207452278478358,0.10539906351143019,0.001520282948708123,2.743477682444164e-05,0.019496336139182547,-0.008475409072181377,0.02810507432211812,0.0027453118330522303,0.00010541074806573582,0.012336182728201367,0.0031759187458438426,0.012905412535806252,-0.043630229576481244,0.0003879050752359723,0.005429827964550682,-0.03903384051275559,0.18015342148046035,-0.021886449231182412,0.00012409965228090685,0.005907829280301509,0.001033989121255875 +2021-06-25,-0.043913007966318654,0.2783984421948363,0.04706245681404545,0.00016680649990240745,0.007578913283224619,-0.024077923618562553,0.06611594510079444,0.01624274696466905,8.738227524874457e-05,0.0027509755321128045,-0.01342032099697966,0.04686927595171624,-0.05860964316987222,0.00013245606952842418,0.005814549881915029,0.01732824498084759,0.019754587336931292,0.01611091786406169,0.0002960427798633493,0.004519662460617795,0.038176239497397575,0.08767266928852073,0.017614677366641414,0.00022783827796951986,0.0035585218297301833,0.016078896989097514,0.048698420823700225,-0.014992949178772634,7.20921727003742e-05,0.0032452671111954778,0.007342380947268378,0.026071399345310393,-0.005740146553841999,8.263469465669554e-05,0.007133194310639175,0.01936225194560527,0.15511487877253424,-0.03496478792184887,4.2805642855652575e-05,0.0015434296639400213,0.0050625871818229876,0.004621284837718852,-0.05889086779501649,0.0008448012820766179,8.579152676836048e-05,-0.0045690958460686175,0.011655338213846279,0.003244941142458959,0.00013707784692926718,0.007241896209042151,0.01851283300773458,0.01252160359799832,0.09155727061676205,0.0007226654482100865,0.01697941325034177,0.015136826126782845,0.20589043663704945,0.04573270927424726,2.1908943587229552e-05,0.006568271352318749,0.033377025247064734,0.09197620538509811,0.028114781988835425,0.00010780109616583053,0.026025782396299196,0.010718426443720733,0.06084956956711249,-0.016338135063626462,4.958328995558351e-05,0.016434824677142214,0.012939711384983694,0.010181178837106997,0.002788139735359884,0.0024788457111288246,0.030283468246349244,-0.010192380419301053,0.06934403064924653,-0.01690628619958655,0.00012095355878857085,0.009773481588406584,-0.02749795100592321,0.17247787579322957,-0.03222840725446372,0.0002468738960351078,0.008142556236034357,0.060781765505860695,0.3275286251999735,0.029347052645089397,5.2273912244529034e-05,0.03317245133707181,0.011740844147994025,0.05830084870899383,-0.12338236876663805,0.00033190305780660985,0.0015286916211338447,-0.04368359868934706,0.5846891528075965,0.01724131379509766,3.100441940743764e-05,0.0022931840981830283,-0.0001274470940586979,0.0014588452528786432,-0.06068967375117161,2.918787112776747e-05,0.011664116552652877,0.003507471484554043,0.01002500347474787,-0.02413851383150415,0.00011270219459302978,0.030336975860617416,-0.002344755104022918,0.0193526213464825,-0.016410136914065114,2.7986595233709086e-05,0.009385195832612851,-1.0869735824510103e-05,3.4852179649026745e-05,-0.002116941402614999,6.914589901119264e-05,0.001590100959807469,0.006238883348195673,0.030313710436911494,-0.055517500847059933,9.410579398300786e-05,0.004781898674470078,-0.008486238811817773,0.008146737412982457,-0.009077386722804472,0.0005953976171462249,0.014556819466624848,-0.0037065028447330513,0.013404553572664433,-0.0015487151549794442,0.00011638526294290292,0.012437270870132557,0.015767040691340568,0.050722504159096356,0.004697388032277883,0.0019951184127783854,0.04261087120192023,0.009636170649575995,0.07713486585171868,-0.02072582919632605,3.212446836482148e-05,0.04199175587085369,0.014286054525873398,0.04005461397901604,-0.03571538038613145,0.0011660871847753828,0.012342580226845567,-0.0011067838863005632,0.009491901604748824,-0.014204495911655448,7.76488884730303e-05,0.0030523565615750655,0.01562099773449801,0.019627503506098286,-0.12628198572352972,0.00018784043792978336,0.002367896295921507,-0.02033532172719959,0.02563070016660514,-0.031168067058695296,0.00045540153636237614,0.028031731565736625,-0.009905401419968166,0.04138946031264861,0.004969910727255406,0.0018549519221428355,0.01286629564299405,-0.02440535183706069,0.07818493071084232,0.032635229833577584,0.00010015033072249806,0.006680027726575565,0.014074574920616329,0.017334042294497816,-0.12977786135810807,0.002018425048476444,0.0436446821270415,0.023378738926201646,0.07440142735236244,0.01524965776095365,0.00012449612967277472,0.003971278553677462,0.010699895774121365,0.026898668143499584,-0.0077990761273723196,0.00016125349878021953,0.00928156625406921,-0.022414721045402014,0.08837912877047929,0.03447785568444578,6.190098323048192e-05,0.0004590927751080649,-0.022792835516059005,0.080604029182793,-0.005373846828689689,0.002680153467837942,0.013352985994455707,0.01372980330851546,0.06622846801326296,-0.010120557095787212,0.00010312410139451511,0.006045229029374331,-0.042796677646590266,0.2197513048947874,0.15525273413578594,0.00014123403839216012,0.0036788210962740864,-0.01639508675380023,0.1019665633553067,-0.001034694290732049,7.605094861337496e-05,0.016699218714211112,-0.03574142406309949,0.15221353481378935,-0.013393484249145349,5.9015484328101215e-05,0.0251521081126498,0.05881493439943421,0.129477803149155,0.10240142129177707,0.00022147345917597857,0.02558380521838527,0.03666869123179953,0.12906206503943748,0.06715732028939998,7.064983887275965e-05,0.001759790901853013,-0.014295634556410072,0.18866109273652304,0.003111520993910207,1.9550252800073834e-05,0.026532601469744486,-0.01861714120236294,0.05975486458849218,-0.020806566593576332,0.00010890521848957778,0.0006323536530855377,-0.034629637025804585,0.13763174622355695,0.06451453635358378,0.0003966041828934563,0.009169538302538565,-0.06409857251366079,0.2828527586728289,0.09536440556280297,0.00012979552966175582,0.01415554455957072,-0.0008494406970124282 +2021-06-28,-0.0024162725556259724,0.017191682043612728,-0.0256162356466674,0.00014863262046581194,0.004577644625698079,-0.031477690774740975,0.12060592355140058,0.030890482663619948,6.262456938567122e-05,0.008880426434578828,0.005561358760538002,0.018874123750666827,-0.07285920513703176,0.00013630485288632544,0.010904064660533752,-0.02756302720425766,0.02953955524412694,0.06890172052456167,0.0003149131658042536,0.00740656817731641,-0.018703242027682074,0.04218581123933154,0.04851791089324574,0.00023197878052046294,0.004147507403896781,0.008848328491736435,0.023927162508494634,-0.00346132614442068,8.074521177107516e-05,6.801649164041735e-05,-0.0025046269596925574,0.008030613300402473,-0.00034586439383538345,9.151329494591672e-05,0.00142284014310749,0.00285107260632662,0.025795132588483087,-0.01314389342587186,3.790261091560013e-05,0.020343911650933615,-0.008022921477284792,0.0067769523800226975,0.001328141083024424,0.0009129413840957629,0.008610255371429164,-0.006685464726117513,0.01768994168553919,0.002860600563456246,0.00013214997546642486,0.038239839742180134,-0.0012251253242581465,0.0009341947733998834,0.004134728718931372,0.0006410138928887376,4.8620445213462104e-05,0.01576249887973183,0.21618192376732387,-0.01612510353756111,2.1728436686207546e-05,0.0066951809876421,0.007996544958105324,0.023189355558414157,-0.04181019957782136,0.00010243886113499164,0.018420563299291672,0.002733137114804877,0.0126971854673131,-0.054553212359210755,6.0592067935159755e-05,0.015059378729052905,0.007372940136924905,0.00622900775087173,-0.004015290596754086,0.002308579362904965,0.011994023558317267,0.016278277006524018,0.11310009662284942,0.00600218801288952,0.00011843977301075702,0.0109216573331869,-0.030478179358537062,0.19331295697168707,0.03867552375752442,0.00024413850927592728,0.015962141926265355,-0.0013322849939290094,0.007884925692776533,0.00017775368899370508,4.759490752788733e-05,0.011470249135698551,0.029421754646792492,0.14271948187936395,0.06763164472442837,0.00033975989718156046,0.02420242633646746,0.06244319546041008,0.9286056130931211,0.023744601864445675,2.790512975474924e-05,0.008307459239699186,0.004693946998984412,0.046819094976893655,-0.06225218713109672,3.349630297873607e-05,0.00880440034102787,0.05024733107314852,0.14634814939472568,0.0058138438147354084,0.00011059831733281343,0.00031761414534223014,0.009205048805030347,0.07222043650995204,-0.0636634201441343,2.944139354363767e-05,0.01205636761053711,0.03309864207574487,0.08182371418429296,0.08976691914936824,8.96826369717054e-05,0.00820603444439024,-0.0031230561201444785,0.010478422203024362,-0.004094491659290203,0.00013628011478507434,0.0010350058319349227,-0.0021698324684828467,0.002400007484373551,0.0004818645798335494,0.0005167603323187205,0.01274642750196097,0.029121675451294144,0.1130438611195,0.029739519994233306,0.00010843147955120173,0.01589878036890636,0.004879656402093167,0.01646624916526017,-0.0061755165334839175,0.0019020141099119765,0.007399494838418581,0.019187545151084392,0.18701018682957,0.0014226135903987452,2.6383739236349964e-05,0.008224889646398887,-0.00209335648765692,0.007153752846869627,-0.007246849543774767,0.0009567104786873288,0.0033158985035504377,0.008855965298021316,0.05537475164738845,0.009258571901543384,0.000106500036811626,0.011055937711498109,-0.004728706727668402,0.0069318523716682765,-0.0010935737339336372,0.00016100466568503365,0.020379832905219206,-0.02689392656620216,0.03814188448884053,0.03482630575221539,0.0004047212259540556,0.011302922914317967,-0.02254518934523832,0.10214424054941368,-0.004382472346719496,0.0017107649522855796,0.005938875308248291,0.024430264304872783,0.07979077886777822,0.014357090540022925,9.8234905460075e-05,0.0029891057588665067,-0.0687271150574968,0.09059973672105136,0.12873250745892503,0.0018857250495465786,0.0009650960530920565,0.015339590887273713,0.053330391120492204,0.0006876946872688375,0.00011396068333358348,0.0013772758690331762,-0.04554038439529336,0.13293101060635742,0.06980600223565618,0.0001388771392022713,0.00307382211790875,0.02686949631922593,0.10267326215869392,0.01715894297606417,6.387281984776383e-05,0.007941747387873671,0.0019394762151297195,0.005777586088433994,-0.007475447135672197,0.0031816770151035768,0.045176338697062494,5.2011486295800056e-05,0.00025605014434458686,-0.036328333745051566,0.00010104499580241937,0.0020953854830043353,0.0021723315126481904,0.010661763678722099,-0.0028132701637990716,0.00014776032397550417,0.012202652897003794,0.017600687406216595,0.09917799049525873,0.01924285268490494,8.393885175867067e-05,2.2960425735950437e-05,-0.03965129619587792,0.1679143548948169,0.049825204747932506,5.9349485514780564e-05,0.008761961877531301,-0.015759912538205103,0.032117144855464665,-0.000640869852117127,0.0002392468710141122,0.018160927887756122,-0.006716196967832768,0.02618850547939745,-0.021196271918627847,6.377156651238091e-05,0.001390536227718972,0.0265812914089814,0.27277203836298486,-0.007625274293203232,2.5142445244099474e-05,0.019536280982941998,0.012435074849744954,0.037989714426008,0.05490467653925896,0.00011441720626897029,0.007520572986215043,0.02012554861520898,0.08527869278000111,-0.06134123242279123,0.00037199333980102075,0.017130519260249007,0.05920921466310933,0.2974835851159791,0.0969690759950429,0.00011399822519780898,0.005449258430376628,0.003077040698793769 +2021-06-29,-0.0228251763538028,0.1386218036716695,0.0005327817816580259,0.00017412822791230273,0.0016875845840686927,0.01222944449274093,0.041074369521809304,-0.030443504707207712,7.14408068643834e-05,0.004430649396408649,-0.015494024428905795,0.047665844776261464,0.007635517891103243,0.00015036755790980531,0.00309430284213561,-0.001645882059303177,0.0018257599521824207,-0.12211442692702046,0.0003042446085613862,0.009422426268857476,0.0022018193645820306,0.00475768675885239,-0.0035814730243202224,0.00024214952088866807,0.011103048788726878,0.0030510584344188444,0.007888857285052358,-0.02554298923843124,8.444679389142341e-05,0.006047797085499385,0.0032644286962138264,0.010118931507860786,-0.057082831686544135,9.465910323288925e-05,0.008322036079148528,-0.04216170115582503,0.4108317479396643,0.0634075459219324,3.5192712595958076e-05,0.008382519767762803,0.001879304867051513,0.0016505697162314432,-0.05110064746992135,0.0008780275690976094,0.001677941006523412,-0.027420536018820857,0.06333033093261806,0.03506222377347487,0.00015140006761234738,0.0007798403408124828,-0.002718866440716975,0.0017525974555290295,-0.05892111050054382,0.0007582807930375457,0.0012246002414889642,-0.03035821687724096,0.5321365532531037,0.22694603774285563,1.7001058288614646e-05,0.003723714668987828,-0.004061277480944095,0.011846225867853792,-0.0010290252053949955,0.00010184358815526564,0.008475120421369425,-0.007181606808098245,0.04255324068082345,0.011136169679973182,4.750625574996896e-05,0.014843929093362648,0.011987449774962657,0.009818673268189143,0.0024975521151175627,0.002381205980945501,0.010664701340903972,0.030090746617377605,0.19237588115214055,0.01572238409351011,0.0001287165673540495,0.016152274242058638,-0.06697195825953889,0.40382168695006654,0.1333215601932457,0.00025680979910348926,0.017382375377914407,0.04277999912094432,0.25312519271448936,-0.03406770110575622,4.7606511236793735e-05,0.005932028509570933,0.00034677864995997083,0.0018197504737707104,0.00620507188135067,0.00031407062433469436,0.02013298929382167,-0.04099478398469025,0.5219252420070213,0.007493584285135254,3.2594965996587835e-05,0.006279750054783008,0.009013525707638028,0.07914686719967932,-0.04132100990136689,3.8048950446025206e-05,0.006804361552405283,0.027458961074311034,0.07354610009873909,-0.04652715953633252,0.00012026720240113851,0.025254246171100767,-0.0032003972034186728,0.026781870933818,-0.048437281483101904,2.7602940263841648e-05,5.689145820277769e-05,-0.0024753164711125517,0.006749199478375196,-0.010841848611278083,8.131222586421238e-05,0.008943236767502024,-0.002265746043694292,0.00934295056419114,-0.15143206812979193,0.00011088575938795862,0.0012339395204268137,0.058343162138455466,0.05552019707707404,0.09749140041913715,0.0006006403805162926,0.0231335496315309,-0.0028410622723422582,0.011072869666939433,-0.01635384650788356,0.00010799572740020627,3.441278605219051e-05,0.001483624090201733,0.004651198011700886,-0.00023163279843830972,0.0020472846133596594,0.0026122411076327998,-0.005178372423576334,0.048537881357340724,-0.007592610475092961,2.743434910473379e-05,0.011023128217389953,0.04040607490249989,0.12578576632716162,0.04079843654006881,0.0010502348716904099,0.02727855410967986,0.03242967816611915,0.25529605140774264,0.048390677749437574,8.459100490583964e-05,0.0027603536118679297,-0.0023712357950474005,0.002929700418956063,-0.018492974521239054,0.00019102795010786792,0.003132045186747691,-0.028793221632591005,0.035314480604690404,0.034641564227544434,0.0004679951483761677,0.009354737175960968,-0.03460413920682982,0.13831878230238095,-0.020015750365468394,0.0019390867315815278,0.007883802212388272,0.03527893423941452,0.1360647904915191,0.03651064420336384,8.318788254252218e-05,0.010932391753547717,0.018600493321813474,0.02415994810435161,-0.04879327276741782,0.0019138401329694917,0.011377817097580624,0.020363255182548754,0.06306363855241003,0.007694805199771484,0.00012793348064487936,0.0006389008907194966,-0.002246314489673179,0.005977012430474182,-7.423982827001234e-05,0.00015235151440414898,0.007783823549680559,0.02721774566449192,0.12292675378008712,0.015577618963292288,5.404053794054593e-05,0.01009056595785116,0.002398056717000663,0.007915636344978525,-0.010761216849588686,0.0028713866344127668,0.041279426324630615,-0.004959520649016238,0.024528304183904413,-0.0018350546134498669,0.00010058025911558671,0.003962097952361982,-0.018969162464088325,0.09025687897876136,-0.0009937917010834816,0.00015241532226449445,0.018785251748590224,-0.015244170215537362,0.09807235715887208,-0.08874712193276539,7.352006367540355e-05,0.006260741358013269,-0.04874478254718378,0.23025288321402146,0.05771050089579653,5.320720613664529e-05,0.02129721031922155,0.01812589994190677,0.0331344228429741,0.00818909099223948,0.0002667163026892572,0.030690688283309602,0.04001619084964958,0.1505086467603336,0.11698667930236961,6.611327493823072e-05,0.00045129173448357545,0.00753970439248576,0.08297507314159323,-0.11069940861984251,2.3444337268144752e-05,0.002818621696090548,-0.016520863596403618,0.04968474520907996,0.021327437901277845,0.0001162301084419109,0.00011655666769709931,0.03197603207075401,0.13023784918315254,0.06531177321825907,0.00038700388637129425,0.010522533366168419,-0.02078346200469849,0.08594686568927765,0.005595701712359921,0.00013850314796793058,0.012609220703851322,0.0004161446777527452 +2021-06-30,-0.001674262261132417,0.010755216724378996,0.0007553552142032706,0.00016462314939357685,0.019696619232770544,0.03965646659832433,0.13664657167170227,0.12221985833035649,6.963471497112869e-05,0.00397775864057912,-0.004877813112118021,0.015452406286978325,-0.01307204231904405,0.00014602467316121242,0.00648019152676854,-0.024710494443974804,0.0249778980326228,0.06384574928725682,0.00033388230530726853,0.000908319198635175,0.004218809852629036,0.009045011286746917,-0.03634928260986813,0.00024404988692313008,0.011889279080134468,0.01035620317138882,0.029691254072985857,0.0029698280761812535,7.615856642154778e-05,0.0021953640652125125,0.009585014288271096,0.02979556895970477,-0.0020414296857693354,9.439107602618048e-05,0.007784032140572026,-0.04641221586845181,0.3847380944148404,-0.0206775361366439,4.1368114650274356e-05,0.0027063342011130016,-0.002575130949400342,0.0024710388437256155,-0.03982831096115855,0.000803645528687025,0.004573004881928043,0.017466161818363506,0.03779057326178916,0.005040283696824675,0.00016161284883082447,0.007704343021336402,0.00929131411341411,0.0070695179830959545,0.038247160234610965,0.0006424091192665124,0.005060323000374553,0.008107473823056186,0.09257964344982743,-0.0006183685021193863,2.6097135511953012e-05,0.002699829969864129,0.023349494391932256,0.05165685979266482,-0.03587534342761069,0.00013427665586862237,0.007767885903672016,-0.015993195949454447,0.10209580429411579,0.044773842847752876,4.4094983235033974e-05,0.014561181162842114,0.0035610454318901552,0.0032835943609799954,-0.1333782149260173,0.002115197798796843,0.005479487694542407,0.0013044763291308048,0.0076399753045410706,-0.11801121108297084,0.00014050648064246912,0.024985710882843848,-0.0605860822164481,0.35465549380605177,0.07674915954014667,0.0002645296821456379,0.02897288035607333,0.034512912323059246,0.20651002605172714,-0.005893482605974402,4.7076202538799054e-05,0.008406002456087865,-0.04017873239360346,0.18962271090999222,0.014052988631894168,0.000349214837123447,0.0019053005363885358,-0.009633701991167334,0.1343420568952402,-8.171123290150538e-05,2.9758528029934686e-05,0.047788084510710094,0.04312443201090464,0.39048348299995034,0.1558458927772303,3.689796619893757e-05,0.004007319886355557,0.0014077519728368224,0.004256647299059178,-0.010716461533968394,0.0001065322829560413,0.029474215140455732,-0.029370313998244545,0.19464941032862879,0.02689291507616345,3.4853618506837665e-05,0.004647653842777044,-0.0021030849551093534,0.005516747327618282,-0.010796851011426191,8.451836859938583e-05,0.002517749439182106,0.01574127271527607,0.05000027635500678,0.06314600200367654,0.0001439514467334108,0.004373315144664516,-0.06700146626171662,0.07838696949884062,0.06451770212421383,0.000488557847640193,0.029484128980781323,0.00877685239680892,0.026524105521024997,-0.005385492363374626,0.00013927849228551108,0.021810855193314757,-0.023557204154990692,0.08676694577917572,-0.14404641424202475,0.001742563487831453,0.008832598948381572,0.03068122534014474,0.2650007834010654,-0.00940878657473243,2.9771981322172983e-05,0.020964100886148404,-0.0372453707423605,0.12136330815596778,0.026953176587886464,0.0010033585719913972,0.024205530505940882,-0.000982319313688506,0.007579392028242407,-0.009829966307631057,8.630658954463454e-05,0.003213949304337333,0.014370517804876064,0.02122863579190363,0.007092687024394412,0.00015977017733491956,0.011679923115791805,0.038105969541737145,0.04995265143049395,0.02702016474115972,0.00043786313759693464,0.001637538678009327,0.0019525818831470044,0.008315201400097004,-0.0008213464255672313,0.001820064688887578,0.019847680857642797,0.08663503296808545,0.31961409628877246,0.247265771614697,8.69677011146677e-05,0.0026216920614736427,0.04493644375357197,0.06427030960636453,0.0303505525249088,0.0017380629400172906,0.002228800379816338,0.04014073236032456,0.13578099791327608,0.003959057555477815,0.00011712843274619438,0.007043131947952804,0.010855244986819544,0.027884513305217098,0.004450865001690489,0.00015781087819987687,0.017117741343947935,-0.04300775088836955,0.16856461158142078,0.08356814934127371,6.227220620670758e-05,0.024799715295488085,0.015186418329006572,0.041636762300891576,-0.006056037249485592,0.0034569768057022385,0.028213468566454736,0.024676110041449893,0.14476383868410841,0.006709488108700202,8.479244888381437e-05,0.006023795632004996,-0.006896263614594387,0.038354604156799456,0.0019134590984652906,0.00013039385761535178,0.004989792308641784,-0.02081571909284921,0.13198801013532724,0.00496069421306985,7.459429878312367e-05,0.007821826660105908,0.027946540252976455,0.13242127202733497,-0.008096069685859766,5.304173115606447e-05,0.0094821201741277,-0.010816489771037857,0.02403188648871147,-0.0005129151257410512,0.00021944610355108048,0.0031600569435792183,-0.01366142837011698,0.05211671163954434,0.006155917868036744,6.518287016468038e-05,0.0002621668214146714,-0.016875861124093793,0.17284162107994572,0.013442524271910877,2.5191202404895737e-05,0.0034004124839643133,-0.005689031446113581,0.017515521054382175,-0.007110372522101909,0.00011353355519290947,0.004375433638906624,0.0040448878224529985,0.01803038443492041,-0.02449540126724855,0.0003536140123104413,0.003338932843838536,0.0019462018004833834,0.009294584193658147,-0.00682885766677347,0.00011993051544489724,0.005325255500472773,0.0018327337694852054 +2021-07-01,-0.036779518755817725,0.20791220359215762,0.0030320826371624887,0.00018707366079372305,0.024763943983183725,-0.011573901958161067,0.03861630860225313,0.001955052720984152,7.191501398656964e-05,0.014895105141619066,-0.023887942908111862,0.06635283884995163,0.03217832640186595,0.00016653919013954693,0.006505668536827484,-0.006069906533447812,0.005601293645844684,-0.020845085133353355,0.0003657307857251034,0.002337727579091271,0.02315411904261871,0.05438757224317623,0.009794739924191335,0.0002227544357252007,0.0008143589330443124,-0.007396334213599004,0.019228850319309976,0.0022563147460670624,8.398658992415832e-05,0.0043942132518723365,-0.028640608731278324,0.11616126434613296,-0.024283929892547556,7.234537448938557e-05,0.01990352053157,-0.02162040273720335,0.17833678061070712,0.00625700590818046,4.157396745136964e-05,0.013355515298739377,0.0017999167065296988,0.0018483903030849305,-0.058103366186633476,0.0007509370170503511,0.007686722349052785,-0.028400634911759898,0.05577115145147451,-0.02584824713555925,0.00017806572176884883,0.007490207536076385,-0.001196125882164627,0.0008302476862406063,-0.0010773330843251313,0.0007041960297186536,0.0028795896845163443,-0.005349718852947757,0.08101064778082483,-0.021574834540794997,1.9679390492449752e-05,0.011422488759945329,0.04167252196920111,0.1213273759284143,0.05581919796268026,0.00010203331980808582,0.001321672057694143,-0.006582134681006963,0.03694928401888662,-0.013024275126361175,5.014441342512955e-05,0.005697921863746686,-0.01228367038972887,0.011020756294130601,0.0020026583775645335,0.0021739008291883073,0.023481376070523485,0.03696316328120102,0.22449641136730233,0.0039034048321323267,0.00013549143281346409,0.015967090542383194,-0.03403244832149957,0.19756599163495522,0.016978788022529227,0.00026674066955988953,0.030665222731185555,0.00398256966831572,0.023034821556058186,-0.01841823278916596,4.8701180167587575e-05,0.010201869231788079,-0.02334975935346932,0.10919037750061142,0.0004912299881145221,0.0003524397211825744,0.0035825498674094446,-0.03775916646004411,0.5373763941637475,0.008443924671663945,2.9159095281999857e-05,0.003652289471486223,0.01891883700098276,0.20201866292500706,0.021935277610585183,3.1288493444800146e-05,0.012047993979971248,-0.006675588048059988,0.022519815757655912,-0.09575670751839696,9.54877040650624e-05,0.013853953909036688,0.03229936212677099,0.24511004980458784,-0.07172970957087696,3.0438637145690275e-05,0.01437582507711222,0.008904819663656338,0.02658791868516718,-0.05486647081395533,7.42537119874983e-05,0.0024300011545629868,-0.025573221516745875,0.10109150530642769,0.10529828855562458,0.0001156696370028789,0.003361940280679517,0.019946481101177187,0.017233293163401046,-0.04052549155583754,0.0006615666060312353,0.02746459546539687,-0.012260020470728923,0.040019603894809665,0.0024067136831015606,0.00012894497391155023,0.008202326923415252,0.0035648009781112087,0.01290323542718971,-0.03768424782156629,0.001773192320318804,0.015243496033600977,-0.024082186147513923,0.24303905483597557,-0.06069764434167872,2.5480153309128315e-05,0.023379861768973456,0.004147376673625466,0.012159700196389187,-0.05924786715147306,0.0011151207140251604,0.013843702602310708,0.021820062148284625,0.1744159599789273,0.03179724879920027,8.330966801150727e-05,0.007378084512893083,0.033512848081625565,0.05453316565488099,0.06931838712835649,0.00014504274649070428,0.0013332938864982608,0.021004749878391463,0.030759502357892404,-0.0013000223954765743,0.00039196033776000953,0.012133964305982353,0.016350332681074935,0.064557046848654,-0.004465997192940803,0.0019630586693363075,0.019262815082750347,-0.027569855723473126,0.08772640929284872,0.04310082618816676,0.00010083110116072639,0.015581873209682857,0.052260778171625125,0.07089617971346508,-0.018563679408612064,0.0018324419706198993,0.0018194813386921815,-0.020821861800103012,0.06895115255973046,0.02966052971250044,0.00011964486557003032,0.0055688916305924666,0.014858151848278255,0.03612491386393692,0.005497631560304594,0.0001667317652862868,0.027198650079243252,-0.005249125310792169,0.02563480781294984,0.003540223862324562,4.99770709974414e-05,0.03490934311398456,0.0641594498923801,0.1957930297592283,0.0030446456012120813,0.0031058570478146204,0.004752360470416678,0.029775848584924765,0.15623459326252773,-0.03335937144949193,9.48041867100512e-05,0.007482476293390232,0.009533627512173251,0.048635710757630894,-0.14440140493020964,0.00014215550975839122,0.02003368268412837,-0.011526148387627196,0.05428298278416635,-0.01740324324030158,0.00010043132710496594,0.0159919798701346,-0.01770245615734537,0.09274485259900224,-0.011738497998239688,4.7972362533412816e-05,0.003824226771211599,-0.030674249922931024,0.05637615884227027,-0.013810453849111963,0.0002652820492204585,0.0007472358453679566,0.009420068214156859,0.043324813603425626,0.005543794303846919,5.4066931276674897e-05,0.0002692449657815312,0.020062501698064103,0.2011580423254996,-0.07163638450030695,2.5732321661377788e-05,0.005772545673886059,-0.0014755868590830706,0.003998023595252032,-0.019947014046216356,0.000129011489857548,0.0007573394389851912,-0.0009350164810528618,0.003414130745564093,-0.0021199619789340606,0.0004316851293274058,0.0045243366167811525,-0.024389218120015425,0.09756473784488542,0.0024611258447829482,0.00014317816489190082,0.012035042898111312,4.899062326540934e-05 +2021-07-02,-0.017360754300999884,0.13946071476384805,-0.004846431887383089,0.00013164467235436347,0.01662080351921051,-0.0061710161958417244,0.020388042195503712,-0.000697598376711823,7.262592704654957e-05,0.006149632988834246,0.0025944005099759484,0.00808565880469953,-0.03274378052033315,0.00014842901804862428,0.013162877218414816,0.028766201572463134,0.03521193346552072,0.047233744425802776,0.0002757150691854227,0.002116762308906693,-0.009260015151317103,0.023095725461678353,0.016466675111223825,0.00020978665637032346,0.0030512553545998487,0.021862804467370323,0.057838117262860624,0.03232703212858944,8.253505841906384e-05,0.011301561221621275,0.012743237650446094,0.047067156978952966,-0.054779646361617085,7.944227477910248e-05,0.0008060984583583694,-0.037448532833434425,0.3542969360928364,0.02758844375272367,3.624649568842221e-05,0.012682849636302963,0.015692318280090177,0.014152633512075442,0.04359758961406422,0.0008550561483813219,0.006923960776242156,-0.02222370307110543,0.05214901064529221,-0.0009742237933766644,0.00014901577256327928,0.014463709682291628,0.0015024149382301716,0.0010205267265599414,-0.01309927060340125,0.0007195978686747053,0.0013312690328467556,0.005371851954918757,0.0676849785777569,-0.01034046480967388,2.3651273426572536e-05,0.004207561690201175,0.03510176363444114,0.10312003966548426,-0.003260152593020704,0.0001011199634449433,0.006291485605431299,-0.007965439856284786,0.04527530624031749,-0.03871365608115605,4.9523369361122335e-05,0.0009506041557983246,0.00671169872438861,0.005963512645673893,-0.0015934008270416973,0.002195094803542949,0.01925228570319665,0.03180841373517036,0.2536125809285184,0.018431637611196327,0.00010321036779869247,0.010691327279529428,-0.011753752935241803,0.08034077361785748,-0.01902387104955895,0.00022654202600695938,0.016677950531739646,0.004123899198044964,0.02334758092934935,-0.0950335998646448,4.9753897560872356e-05,0.002162720794813538,-0.0206667211833917,0.11888789233845883,-0.0036105541255881703,0.00028649744942606606,0.014212344808298472,-0.023716542543372927,0.266441833508908,0.0018494094147256711,3.6938494799033605e-05,0.038584039870759784,0.017509021231150786,0.19970370252355754,0.004449162857617653,2.9292569001035698e-05,0.0032118597495457983,-0.04430569225157874,0.12680773962657804,0.026491060784083503,0.00011254767326916834,0.013249747930795702,0.019206475313936617,0.15008951955243424,-0.004587164259498349,2.9558996160312232e-05,0.008654683568948949,0.004146621117034236,0.01212869909806484,-0.02995280577567515,7.579795969775031e-05,0.004592946674054573,-0.004581136828007504,0.014286636628130149,-0.005786911018876745,0.0001466195425208755,0.008051593579337234,0.0418409298723531,0.047473891923885354,0.030092305426520312,0.000503758111655032,0.013221303322003638,0.004241452886030642,0.01646957470376553,0.00016912779896898305,0.0001083972518457934,0.008858726184151856,0.07444477767815205,0.27903172853854696,-0.0121463722498073,0.0017123787214269185,0.013896625681622563,-0.05444467104560388,0.5012406006218945,0.07527799032769329,2.7931311723131124e-05,0.0015553787584822614,0.004936698085057333,0.01595542129450584,-0.15500424623295384,0.0010115784329907626,0.010106971547885788,0.016126472957636473,0.12771653187529902,-0.01941972706231534,8.408488200312352e-05,0.002789465376576884,-0.030463705028560533,0.04749556760715991,0.05770279951494403,0.00015138227432628907,0.0003901843432576094,-0.014281262761343292,0.02492092372253585,0.011005139016988226,0.00032893219847257376,0.0035416155920703885,0.03388628608657715,0.12655942291700908,0.027343817842358783,0.002075294945677306,0.012154627328554077,0.0058235413101642534,0.02118251837043027,-0.05597204451801998,8.820636787359156e-05,0.020680865140541717,-0.003104522550559722,0.004481379604606503,-0.052018782853861696,0.0017221075760305378,0.00921566030218625,0.009906887686904564,0.037705039587303556,-0.008675285781224208,0.00010410075394671774,0.010061678167113949,0.007487553742727348,0.022703825798713505,-0.01738997838730123,0.00013369072634134032,0.009283501211034715,-0.000421687033648686,0.0023031810824878673,-0.005285676181027473,4.4686473960966786e-05,0.013940992349520427,0.009603159991233106,0.025044684862664385,-0.0005166068544877373,0.0036342654970280843,0.03462668038666868,-0.03744998965119512,0.1739972578736166,-0.03112460540336279,0.00010706557868846313,0.019587624973990393,-0.01561135941257915,0.0733733740461923,0.010041479794646925,0.00015429896622838626,0.008494111746276683,0.011741988221422821,0.06463663251813775,-0.02348702268405041,8.592343227783051e-05,0.008498384899199176,0.030334691611585467,0.14499086350859433,-0.049511200467076376,5.258311896908665e-05,0.005186522300557881,-0.014812157241998086,0.034404025551470194,-0.0056431179426738335,0.00020991257023139528,0.007897337414894994,0.0110092825098384,0.040068713158305014,-0.03494060445633658,6.832316828873945e-05,0.0022834358154499553,-0.0006582910934876524,0.006642584545170146,-0.027708038497076464,2.556890761566833e-05,0.0060244282173363,-0.014730112561597656,0.04848627873158632,-0.013788818729018356,0.00010619307001604105,0.0010956132958470314,-0.03886145400678001,0.1628110522019413,-0.06245978043939269,0.00037623841281322565,0.0059571309842370935,0.008636126799001081,0.03884473440317284,-0.11516272073051591,0.0001273381833651376,0.020206582183433897,0.0003618460724911472 +2021-07-05,0.0037345629076962175,0.026389185905463783,0.002939223479929913,0.00014965814941463165,0.025517304448412898,0.030917942579958918,0.09293029875152095,0.05737478945850101,7.982956808609662e-05,0.0011087331565832405,0.016628984107303405,0.05313777241375086,-0.18977584017517568,0.00014476366788924444,0.007348506187581136,0.01953903473983358,0.02346370326497905,0.007687932031077245,0.000281044055457696,0.00561101704380968,-0.020997212146942532,0.044355195244864525,-0.020077844451995928,0.00024769367296511316,0.00219049884980756,-0.023980762657475955,0.06748442752311705,0.052654410698464375,7.759007337067249e-05,0.011587695525789221,0.027423721116201685,0.10430815561932875,-0.06265717174097042,7.714325731651916e-05,0.01950728589552463,0.006427107413532744,0.05242283675196705,-0.007796088222898276,4.204299580720517e-05,0.012348642476183265,-0.002174135843467659,0.001810256844909913,-0.019734180862220615,0.00092617118333581,0.0013412308123632605,-0.0327875566768889,0.07299670185053936,0.03609767278517557,0.0001570607628548707,0.00984730829099127,-0.02682397539163368,0.017936300541535822,0.042846960780134474,0.0007309953727907174,0.0018868335472972306,-0.01579389500189423,0.20277569469144158,0.01621360490246625,2.321112219797558e-05,0.0002364296888804051,-0.020993089298155392,0.06817097904155878,0.020966738115977882,9.148035890498186e-05,0.007943527638086536,-0.010134965934914093,0.04947467542995899,0.007284325565411323,5.76635210645876e-05,0.007431467260559208,0.012184677882487158,0.011855801566619127,-0.01887129556698052,0.0020045001971913134,0.01850173074423551,-0.03574894491233198,0.23374811968341963,0.013838381176038824,0.0001258540542427572,0.003443734495460659,0.02922931221485996,0.17061061296785032,0.0176374617666094,0.00026528994204487417,0.012943555130180888,-0.04961901111206582,0.34954242432038735,0.03049031155349745,3.9986110945402604e-05,0.000260285541167912,-0.020560093313465613,0.11126057421699602,-0.027261384917522197,0.0003045584067343505,0.0007934375395362704,-0.0568033302080599,0.7884028087001288,0.026559932310655253,2.9898945139214346e-05,0.004521083806412482,0.0200543814853459,0.23441381157314706,-0.011762026842832589,2.8582998372418298e-05,0.00014660099090602887,-0.00659570854001627,0.017093671724013347,0.0011447396921778485,0.00012429362454869402,0.027824713167490203,0.03952861876777604,0.2778276276168056,0.04776204105044133,3.2864617712456234e-05,0.008415300457292753,0.010573354751614823,0.028946047629014596,0.00454516055666083,8.098431509356416e-05,0.012395120858436227,0.0020325213875653125,0.00791306185106009,-0.01451254396838928,0.00011744625134669229,0.007899633293838602,0.01803502834022839,0.01871069423876308,-0.07524542862423207,0.0005509376962683662,0.012109264119296732,0.01542861118934446,0.05136340513748545,-0.0963608704750778,0.00012643259044771988,0.0013253037373602856,-0.01585770160178666,0.06682485985496682,-0.035712546461596946,0.0015230752448952868,0.02137968542062999,-0.017857991853462943,0.16943110034237072,0.00012227117134994597,2.7103269561972612e-05,0.0026019518813106875,-0.02672824093322411,0.056609135900876684,-0.05238282441006323,0.0015436723367825299,0.007053790270762325,0.005977242891559772,0.04008701116327891,-0.05905081602718766,9.929396892666952e-05,0.002799994108539286,-0.0022988636315038414,0.0032105145922514187,-0.014372385109666002,0.00016899892722343826,0.0036717294207898685,0.02010416302599725,0.029965577999745172,0.0044113026892746085,0.0003850944432678478,0.0017598940738958358,0.01603090311222003,0.06214336264013367,-0.0006461420697911297,0.0019994639616910427,0.02635121401081901,0.025631447891982823,0.11210432377947806,9.53433214636614e-06,7.33569298353323e-05,0.020463022682125426,-0.04388420176648049,0.06396574089345905,0.05137060683905918,0.0017054459514512705,0.026540188067064117,-0.00455337145358336,0.016036074065648546,-0.014041876488912709,0.00011249962208692728,0.0039103814230959325,0.03887538621050762,0.10737598842796577,0.031810676227253414,0.00014676683133798524,0.006330702904555185,0.028383625170643273,0.12465199049116679,0.006750057425716842,5.557539653695881e-05,0.0020751833961167804,-0.034883192727020985,0.13684709207679796,-0.08287115819597829,0.0024160099138439803,0.02031844966492706,0.040106113633274605,0.2178098933300051,0.029580704806980627,9.159537569863235e-05,0.015778498865141082,-0.004749724546028866,0.0257778645420288,-0.001052582457418223,0.00013362332405627704,0.010335403565121505,0.005052951989516093,0.03019043444068838,0.0011004276665219398,7.916341266351683e-05,0.0034912521707157976,-0.007474659396171359,0.03298482476887841,-0.0905278317173075,5.695405119069026e-05,0.006088113790393757,0.01905551496043392,0.03181796613689677,-0.016062114540675475,0.0002919965152525653,0.00995297523594947,-0.01710945692272294,0.06378003588716999,-0.013646571545202308,6.670614471052806e-05,0.018604861574377362,0.0063861980448181544,0.06379156457221209,-0.04853201135875207,2.5829167819531017e-05,0.008069084053144021,-0.015128794026701146,0.047375045065037855,0.01866388538048995,0.00011162555690047402,0.00029436976587241567,-0.014235299566543423,0.05330481008530351,0.010910335861935027,0.0004209477391926573,0.0004733825413215718,0.06643835057625401,0.35492007932738096,0.010041468990522174,0.00010721611539801734,0.0053962418408932886,0.00041683817205963737 +2021-07-06,0.008775156008694936,0.0632417188194849,-0.05644448582454924,0.00014673636800445892,0.012621361581396123,-0.052125603588354205,0.17411015691454598,0.060623991826385275,7.18352349578167e-05,0.0073547000021578785,-0.006834823549803118,0.023495854469434,-0.009808751665917274,0.00013456535705765274,0.003990262123341564,0.011936064792513103,0.01079588786817265,0.006826888084956987,0.00037313901333696964,0.002485716280867972,0.014084455427895942,0.03843583108277273,-0.0475384922716514,0.00019173506983111377,0.01468778803132299,0.000638329001726621,0.0014933361990548586,-0.004042672140755955,9.333267723045879e-05,0.0002320866165823408,0.012565154486067731,0.043653668612443665,0.010792359464643613,8.44572508050719e-05,0.015187857024232351,-0.01308446481671847,0.10661351621632685,-0.0241112051938819,4.208645162078464e-05,0.013552223065364502,-0.031755512249900614,0.023566289459402482,0.21670339441739173,0.0010391367436914704,0.001834989603121244,-0.008600425495565708,0.02447237785124308,-0.011720369452668399,0.00012288691873329533,0.019687059878593975,-0.014196039492042928,0.008734699954539892,-0.07905659212083901,0.0007944079212219386,0.0037559288473421,-0.004582071093215057,0.054863579580101705,-0.008741311350231686,2.488860028103792e-05,0.005673228523157976,0.015793601418076373,0.04028409914161895,-0.03216002399840947,0.00011646583784205287,0.007102788503336636,-0.007666468179261616,0.04156702118636059,-0.0003977473241098152,5.1916840280885836e-05,0.0021119695709135955,-0.04190073972869447,0.035013257586567696,0.06189051218703388,0.0023340606879524925,0.0035302523363246983,-0.037749968505741076,0.19852588498079088,0.040298456280565956,0.0001564773781610174,0.016477953505914793,0.02248359771034349,0.14329451993076592,0.009899214508860388,0.00024296541385365847,0.009935679333238422,-0.012041325930647946,0.07535193416399125,-0.0445397027297623,4.501330108703375e-05,0.008166499143512819,0.041507196508282836,0.21673092554734036,0.08006666886747531,0.00031563802911271075,0.007789368489690202,-0.050491424401008546,0.8169691039442482,-0.0027813543885259746,2.5647333622293207e-05,0.002490508131852346,0.008400147964373368,0.09083790489055789,-0.05607275186270593,3.089594875499888e-05,0.0022600943136668644,0.06447446268449836,0.17385103514119496,-0.0665258809095427,0.00011946294215552116,0.006596654134162871,0.001181912361102754,0.008453667649379708,-0.0028390579796487886,3.2294791204449986e-05,0.020489804519616205,0.022822135066928855,0.06879748423224004,0.03672265091383562,7.354634526775902e-05,0.009452480401656593,0.004789668006166205,0.020699553567028885,0.003071109478899371,0.00010580179311173903,0.000244727946467984,0.037928469906638104,0.030499932716501907,0.031094499560791123,0.0007107911356615231,0.0033201122407845443,-0.0065832794753852,0.025440000367073317,0.0044342132973492696,0.00010892089170135255,0.013540971411097169,0.04434337942589263,0.1740595366959581,-0.03152403633213069,0.001635121914987336,0.026035630532679502,0.010435757932775515,0.10169151926743042,0.0003186571678731115,2.6388910260062003e-05,0.009603974624085116,-0.02328744530043558,0.0647031985157704,0.0207450658226815,0.001176704373477729,0.003947983474688571,0.0052990274192947825,0.03851312811146732,-0.07527867136096658,9.162479493829812e-05,0.005099946597500589,-0.0015471212740960718,0.0021215316126075327,0.00017296914202909536,0.00017211560066092847,0.01031661945278601,-0.011498679991677693,0.018765196542451738,-0.02302612240136519,0.00035172139262418066,0.009819849080137907,-0.008798878733948131,0.03910952861870564,-0.008121937264456895,0.001743793650445401,0.011880961758004478,-0.028901774733222797,0.11665913249702213,0.0441169881374177,7.948700611232257e-05,0.00352082808224221,0.00035822216826864137,0.000496431198390863,-0.04338653272850764,0.0017937858053393156,0.03730493379899955,-0.0009712165281574115,0.0028646013078586024,-0.0317860118949061,0.00013432842270288934,0.01007306873189494,-0.01535204989778975,0.03981747985180064,-0.012428860237787635,0.00015629784151124086,0.013470564925012507,0.0198362522485553,0.08006508706789292,-0.023894389543299376,6.046866313311412e-05,0.003313974829354681,0.002643924824226728,0.007619466677526343,-0.05062228060850176,0.003288838792502817,0.037265173687063675,0.01271546169705156,0.07770038538969606,-0.08937611271826605,8.14047096851546e-05,0.029301416741137648,0.010221647109311493,0.053502706840046585,-0.00216647557476913,0.0001385498031566968,0.00044524246935664295,-0.007440354916978554,0.04313128667568854,-0.005040698836279614,8.159244309921505e-05,0.007331521733220166,0.011375994218128658,0.05424015403136914,-0.005960191178536891,5.271277058891809e-05,0.0114046716735299,-0.028117788014688026,0.05903178204704677,0.012545802582684474,0.00023223338508007523,0.004529826372873321,-0.02144967743597924,0.09247264379377682,0.011366759870453477,5.767955048978932e-05,0.01051671750886279,-0.008744196310704758,0.11086684879726227,-0.0037063097116626846,2.034930030722816e-05,0.00413457469416304,0.013828852437858044,0.04230777402679966,-0.011779523481334302,0.00011425492536840615,0.004051461422249897,-0.015364713671693092,0.056607713947407726,-0.014624137187797637,0.00042783550788361884,0.008597652677461133,-0.03903273797015995,0.22202178558665092,0.023362299059869345,0.00010069437741371747,0.015098891761285324,-0.0018020666223236993 +2021-07-07,0.009962717968134329,0.0835132828539573,-0.06030889775998908,0.00012615627705413413,0.008330404177862316,0.056713098207139226,0.168138743182191,0.1254338020348131,8.093308647246003e-05,0.0028497295034541487,-0.05978213762234202,0.22110186476889407,0.30662334876052455,0.00012507664951067949,0.005768339824799079,-0.0029523508979531076,0.0028793308428858417,-0.00016124823150666885,0.0003460543084716499,0.01584769769337711,-0.01792633631167567,0.03719447956393853,0.03673017375304316,0.0002521801076903619,0.00025560074824828433,-0.005678585560969622,0.015639624516235445,0.019708653210798965,7.927944323943102e-05,0.0019887579182536605,-0.011370849295824124,0.04226163970652763,-0.03613606598041133,7.894714255933219e-05,0.008417659486372955,0.010079108961051573,0.07181916914368768,0.014179699830414965,4.8126067750208885e-05,0.004200419276074468,0.013350591177602861,0.011930073242484423,-0.004437180095006493,0.0008629828673005912,0.0012204802367717527,0.0011687300590269693,0.0025362097070541654,-0.05446139047862078,0.00016113539200004524,0.018764373296687304,0.03244725681819888,0.025805709515836148,0.2141845865624615,0.0006145914867665333,0.0045561103601511835,-0.018648475537319974,0.26920052941154676,0.03647046329543541,2.0643827192494483e-05,0.005243836193685858,0.038091282529303744,0.11326239864715856,0.03551986780677238,9.990584068144002e-05,0.02086306838503585,-0.008276438377069576,0.04159223761521609,-0.005796501150749127,5.6013539754406576e-05,0.004925642336638841,-0.012135398436513721,0.01122406833483529,0.005204601978993605,0.0021087578406536233,0.011853670632071682,-0.017142812646104337,0.11151359937966586,0.008163265491055385,0.00012650461013620468,0.017409525836550765,0.017250203795482262,0.09582766840334918,0.0030611198013470015,0.0002787478592632502,0.01250471246052706,0.08695840171402133,0.5897473574362753,0.058525003312604684,4.1534262303788796e-05,0.005991892604672385,-0.00713683370970824,0.04539573030835884,-0.004923895692192882,0.0002591059451288461,0.010943077990002232,-0.01383744418613879,0.18982945370935247,-0.15440859131210613,3.0249800548482703e-05,0.03924171590447193,-0.021494359193117384,0.17137697633170934,0.11944659064820481,4.190383152979832e-05,0.004017139812302952,-0.019281843567268767,0.05042606437173812,-0.05184569108469186,0.00012317320358895477,0.007319066782071027,0.052713019477640254,0.3785741916143667,0.02827691582093539,3.216320111593791e-05,0.015045725699724566,-0.005336690972200441,0.01332563876263792,0.0076880477705459395,8.878945728517222e-05,0.008767065062456059,-0.013796941773248141,0.05264009055000579,0.016206820219219046,0.00011984358703291761,0.005705436663760296,-0.02826386051405392,0.027882228743870596,0.01761307325197495,0.0005794014219696861,0.016237953795950798,-0.013247380571836923,0.04523726738874738,0.004830353895700948,0.00012325928922613105,0.011481773692708528,-0.014303704399882655,0.05085186950460848,0.010222404835694887,0.001805347368518764,0.008503010408856756,-0.016546318250276516,0.14386926353926674,0.00013843663148489083,2.9574373139513433e-05,0.004567701986242031,-0.02516673203475876,0.07538470923844635,0.007343811035641,0.001091477608473664,0.006928503198909429,-0.005401553582625931,0.041698865267388655,-0.05794111620927083,8.626211358054943e-05,0.01738870877867367,0.022921287819027338,0.03070143291569326,0.029631655440405736,0.00017620805410774692,0.014194658036632429,-0.03281631848803607,0.045124283046111775,0.033890822170046846,0.00041742980696973006,0.007911952440561058,0.03178516065195273,0.1281199096015127,-0.046838851952558797,0.0019229063270778792,0.002127952393203136,0.000773841667956724,0.003207699686401729,-0.008471763803693891,7.740139349773923e-05,0.005301361047734151,-0.06969874394903822,0.09730318555498493,0.08698377296860378,0.001780635735085837,0.010985259013715021,0.012227165960805279,0.03639150940161005,0.0028351453632681147,0.00013311952963131213,0.005646952933493039,0.021639322846720963,0.049711769470361725,-0.008396641021565981,0.00017645940907588063,0.0037929546186427666,-0.026775090258332728,0.10583598170529059,0.036886930178532056,6.174638350518791e-05,0.01942825651903216,0.0017943914233757813,0.005797799621536753,-0.05498860392376252,0.0029334050895854225,0.01082311970541778,-0.02747193160263776,0.1341806105963191,0.026531937399674906,0.00010184506822127864,0.017215508677789225,0.002686829464489496,0.01568750823677944,-0.022266610100818797,0.00012420724238035516,0.0036762275704634484,-0.0066739607763654256,0.036339292658489404,-0.0031777035971165242,8.686721120847979e-05,0.011137155036178419,-0.03266637311193538,0.1295960257090436,0.0018054341190658083,6.335146024635689e-05,0.021657476467886492,0.001910998070054144,0.0033519770141732705,-0.0021987350147952473,0.0002779640371133058,0.02486037579343944,-0.010660798524717604,0.044833681436308156,0.0034179938273048967,5.912888779629124e-05,0.0025280609853400695,-0.041499293281256754,0.4494945077542964,0.09715969657061534,2.3820320291583795e-05,0.004558133540849913,-0.009340601482823056,0.031636800145443116,-0.019893705439543514,0.0001032027468885976,0.005568445961747264,0.010593684595366111,0.03616787085757998,-0.03407699437073947,0.0004616916989726965,0.002748350165306523,-0.016047064734282638,0.0686338106558736,-0.008031573296532549,0.00013391501931846514,0.0036476479844252856,-0.004283553089696899 +2021-07-08,-0.030299499069942434,0.1875200859011972,-0.00404285894140751,0.00017087331271635557,0.018215122418641254,0.07046394589706548,0.24017720204130882,0.15431817623270377,7.039563079994042e-05,0.019006237820273653,0.016811027527447443,0.05933472551161959,0.013258027412772277,0.00013106373078711813,0.0034455078691618965,-0.017277429692368083,0.01860819182803646,0.013466277121949912,0.0003133594643753913,0.0001239360363263593,-0.04454416848781602,0.10445677497153309,0.13044755415013468,0.0002231269430561323,0.01920718155349397,-0.009048679184484602,0.024022603445843407,0.011807098311513177,8.224544569832209e-05,0.0015867328780317035,0.005464298810610011,0.020601331893877434,-0.11851829624212805,7.782676824722866e-05,0.007771103648614386,0.01044408930202673,0.09282475329838126,-0.019464497970362187,3.858383461935016e-05,0.0030278270782603403,0.006468204750246008,0.005266783935847074,-0.018640050272569438,0.0009470721011697059,0.00421258095504928,-0.030064073677392375,0.07863603875142275,-0.09690748025030047,0.00013368666379948686,0.004353966219687444,-0.017662219915999765,0.014490205213957535,0.003817734773684748,0.0005957926072899284,0.0068085923995592,-0.00461189788318064,0.05756755951550313,-0.0005220285520642346,2.387397052581578e-05,0.004661718259769019,-0.007683683538554075,0.021707640059178707,-0.013620505953051795,0.00010514966555798652,0.0036906474613199814,0.011672723121553966,0.08303928216374992,0.018943810129337227,3.956857555551744e-05,0.001910278244612357,-0.04210599030087532,0.0396602513858056,0.04665126256257146,0.002070672405662598,0.0018699524020238496,-0.08325976935343438,0.5649838048567436,0.0961364817351319,0.00012126942327937622,0.023162597643381768,-0.006752573817662653,0.04285228182726607,-0.02076482438323278,0.00024400774979192584,0.002160760949377779,0.06301461271625343,0.39735044624620763,-0.008866364368856072,4.467129291299693e-05,0.03481168409457687,-0.04401010242074552,0.23613197571645886,0.028095401521393556,0.00030717395241741365,0.0077198501663402535,-0.01264939970610439,0.1817210805007118,-0.01351376827851525,2.888649418559386e-05,0.023942381304321785,0.00878747095538801,0.10236620504793195,-0.05453726692240905,2.8680651234694433e-05,0.003125859269813552,0.029594183634915245,0.08739483301974667,0.01682866202836676,0.00010907955642674733,0.02101229718661836,-0.00542428788218967,0.03959908920616506,-0.006826771496877704,3.164097879546596e-05,0.0076643871352384705,0.02001033813955139,0.06151242742184717,0.017925022440922023,7.21221963991108e-05,0.011052534419248382,0.004099591510745967,0.01647633486163591,-0.005635669041234692,0.00011377021291929408,0.005429109766607595,-0.0009065418069605624,0.0008085222594332788,-0.0021277085275918516,0.0006408721773506231,0.011075040334316836,-0.004252677790307981,0.01451758203839179,-0.10765155605453633,0.0001232974796692694,0.017112463663650077,-0.001980629873316753,0.006892498434295574,-0.03119281476051431,0.001844360547403676,0.013185070320431648,0.025127138933670603,0.23574849726203329,0.010739996889352826,2.7407934218753593e-05,0.0289319250385921,0.023365417906034133,0.06728936431767976,-0.03291176746426394,0.001135268002127242,0.0017843553865900287,0.023018993809782635,0.17169104966007073,0.020583759927643924,8.928208496694878e-05,0.006989177393378558,-0.02679019858661665,0.044261456785008875,-0.0104058894610167,0.00014285505586037915,0.007595987482211053,0.04132360714278938,0.06750455345891963,-0.005792992804433506,0.00035137355221303836,0.022499476640198898,0.0003779958218968409,0.0014688495987776953,-0.0014949961869210736,0.0019946192756504495,0.010225178162928747,-0.03993984002404486,0.16550532425727685,0.056301611689008255,7.742562538706757e-05,0.004104330078466384,0.06663263157694405,0.087664571112793,0.072463105778516,0.0018894701919823385,0.029444174290302133,0.033247097492271074,0.1119888243170705,0.0320503966615722,0.00011762376811938598,0.008759224412841346,0.0068368712371812,0.015124235554730794,-0.015744553451989426,0.00018325015219952686,0.014210746719869828,-0.027925026585902644,0.09225653629687298,-0.035227626335469775,7.387719114954922e-05,0.0032198788753055544,-0.01098281906760691,0.032984149420573504,-0.07114835833641377,0.003155924448282612,0.021479512423432427,0.0037597519231348845,0.021047991514291146,-0.01066936964654771,8.885647917263467e-05,0.01696953129330024,-0.0038541541641505888,0.020061218423218882,-0.05393484273788542,0.00013932612553157884,0.003282569180178347,-0.04051313272031515,0.23991184128961748,0.028130444505110767,7.987168408743578e-05,0.019579065065027573,0.041931504460240465,0.20352160513338335,0.02388011369544168,5.1781821160828575e-05,0.006470099780817884,0.0007581459258601079,0.0016096492457978169,-0.0066880621963768035,0.00022964180359452596,0.006782558141419167,-0.01154132985033933,0.04887530619164273,-0.05089961503566602,5.871928220281355e-05,0.001690165470245223,0.03951908826925345,0.4914045796951868,0.10826904789912895,2.0749087514061567e-05,0.0019078254349161078,0.018158077559384676,0.0556974675673159,0.08596912722492574,0.00011395762304786239,0.006004711309185019,-0.000704901398142518,0.003194057288521538,-0.0066950090521855875,0.00034786732813902135,0.00787280831474478,-0.025582790830729868,0.11800957383325218,0.0017661550695282165,0.00012416593807124343,0.005655793614170951,0.0006379791800376307 +2021-07-09,0.020091366616889116,0.1420412291734162,0.01764477949685266,0.00014958279385135707,0.007492328656557903,-0.07793963287595253,0.2719065716001054,0.11977874972942322,6.877794228547798e-05,0.017407788113178845,0.0029531479619612916,0.01055949951509726,-0.00701801219040096,0.0001293716380206693,0.011742540810253126,0.003551437126312561,0.0031421488422250974,-0.00922707630659067,0.0003814566875837951,0.007508373112993075,0.045046749897091724,0.10154525602494525,0.06410795576780043,0.0002321141388963551,0.010415950546326156,0.004522822429995852,0.014090317009333268,-0.00881710727515141,7.008668403364469e-05,0.009733148642932987,-0.011676220071171431,0.03721282813369246,-0.03059315857883681,9.206603713872239e-05,0.00504185567425572,0.016365952750014484,0.14285289746188776,0.009740145315668275,3.9287179756302635e-05,0.00029256653388279406,0.0022380491101856087,0.0022020893727590957,-0.025713286821941985,0.0007837534359136677,0.0012754826768323446,-0.0069403429118189775,0.015918565936244033,-0.06191152070876987,0.00015245401787763291,0.009312091273885437,0.0014812479202274385,0.0011205124789642278,-0.058514519594659746,0.0006461530732395439,0.013680708974693367,0.007851658752911968,0.0882002674427639,0.0015010794988048446,2.6528598294253987e-05,0.002623980637695306,0.013693700630804282,0.04196040145629709,-0.0018596159444541362,9.694652181918578e-05,0.009762374706065793,-0.019177054347142165,0.10919714546622347,-0.013874708756338497,4.9434760196871145e-05,0.0019169340253912795,-0.022847492641543336,0.015580045140158937,-0.04891542741795391,0.0028601763224069283,0.0036583139620605673,0.003280894121197034,0.01895401159042683,-0.003487922982990481,0.0001424436787592766,0.006013145667880766,0.08089014385777572,0.4379496577038355,0.11803345794233754,0.00028600896637398477,0.02446334111075991,-0.0018187932916571303,0.009610052603313582,0.0018618060611766487,5.331120938745698e-05,0.03217354372469689,-0.021512507334190842,0.11817962045843983,-0.002657800279826398,0.00030000966634904827,0.006489723082931401,0.011117453249925661,0.18689534432852575,0.009289766924618966,2.468522329964908e-05,0.013110762829129147,-0.003283508638081689,0.034464735555909655,-0.04334372540823686,3.1830607080983484e-05,0.008864932001621579,-0.01898016164323252,0.05150893769477049,-0.0025237930343089956,0.00011869708931817233,0.003093572820959926,-0.05611356759995243,0.37867346419479414,0.08870132460306121,3.4229092467819426e-05,0.01912728940492965,0.00043469550713509013,0.001101537820853725,-0.03436422418409359,8.749094768093118e-05,0.010480948582363703,-0.003884191370024617,0.015318631851065563,-0.03423107281350311,0.0001159389160249405,0.0069522803221028365,0.03038600308352629,0.030265974910832515,0.01156029289637248,0.0005738448273209325,0.012271010327141594,-0.010389174875594544,0.04811915231069342,-0.08823101009013239,9.08759779835334e-05,0.0009362895888317134,0.03997374083741849,0.12563272005198015,0.02690489564572841,0.0020421667669436655,0.012835314727083123,0.0063851432497870324,0.06440160006742783,0.0019384351392608865,2.5495068474201267e-05,0.010582398327032462,-0.0329937620191694,0.09983446819389892,0.0517965113462154,0.001080494594370789,0.0032923990784345597,-0.011320803126916716,0.11160230878224665,0.002118028047518788,6.755067638264941e-05,0.0038827089766618732,0.037740727528775914,0.05108089184977004,-0.062389030869066636,0.00017438020458451393,0.000927292071156254,-0.022483202906969518,0.032980878619208814,-0.03072629641451217,0.0003912910123024585,0.001254822124609251,-0.015525200453357459,0.06357313966765703,-0.0012648155698303828,0.0018928399655363764,0.0033111253687521072,-0.031462667546486266,0.10898967998522607,0.033421873248148555,9.261909525316827e-05,0.013902272361718582,0.049906339157456014,0.06918505543816013,0.030146735082383927,0.0017931664812042031,0.0020932781822177197,-0.03490966369934494,0.12718083191606552,-0.020819054227423705,0.00010875269803201239,0.004207314053783078,0.009990956314131745,0.026403796146233595,-0.03176264921353421,0.00015339141899175956,0.0006142701319181041,0.006183286696006766,0.02630573548772188,-0.16219711545360732,5.7369737109598015e-05,0.012933778366220514,-0.01210728132276103,0.032145591857307025,-0.027338150110465424,0.003569794905107231,0.018862677270613467,-0.008140514011191567,0.03948135681347137,-0.04281967295703721,0.00010256527047667547,0.012870288324716404,0.014373778793652044,0.06800375210533147,0.022890286471993652,0.00015328472032136403,0.004823619743164843,-0.0036212123415500425,0.02266844613201828,-0.011772869663046179,7.55580844711669e-05,0.006706654226576645,-0.022811778332961403,0.08854220008246211,-0.0013342345461058863,6.475245349371402e-05,0.01148393115658574,0.017519939001385473,0.03011469551068257,-0.0013617913710783976,0.0002836504699633857,0.0027010775204636375,0.020468089947747167,0.07978947942892055,0.022253838905842354,6.378903924499198e-05,0.004906492299269246,0.007705934325734157,0.08208031596979025,-0.010684253755413221,2.4222422177338024e-05,0.0031136286383919233,-0.016686976109282867,0.06321695293492166,-0.05005096524724031,9.226841275831996e-05,0.00665762755158738,-0.00055520344099202,0.002463495919206878,-0.00015726019743823993,0.00035524524438509155,0.004524278108668118,-0.014920248220283046,0.07184835870600373,-0.011736500807802534,0.00011894083764128623,0.009899013163630663,-0.0005192503900890009 +2021-07-12,-0.018246571668371056,0.11660610056695815,0.004714456816366129,0.00016548041023352255,0.023721881037142567,-0.002769257216993225,0.009974259090795136,-0.001608260163332715,6.661824349002093e-05,0.01442814403421228,-0.029862629633033246,0.1286208391263982,0.045887900986823354,0.00010740238213442049,0.00866041556933508,0.01984669219768555,0.02387431232482091,0.0237628510085501,0.0002805595908667427,0.006555428646009673,0.022786191034317543,0.05415377760043494,0.009251109966927991,0.00022016118257231975,0.012148400653217446,-0.015999970693193012,0.04086725179015594,0.07089045301566231,8.548511364762668e-05,0.0015013330213271352,-0.0038722784851386136,0.014133705691617928,-0.01695287025401261,8.038969754749186e-05,0.009603822246347779,-0.02212601690547231,0.20409967325379663,0.006073010545342097,3.717573339271096e-05,0.005853018813285546,-0.020415096192862903,0.018356755290189927,0.059072444146873175,0.0008576306604881365,0.003374607026175795,0.004936764427561531,0.011724000024316707,0.0017053989429147434,0.0001472409055611821,0.010398153103871759,0.03036702891698169,0.016407787805767366,0.12687570701550668,0.000904641757195609,0.012994554470602618,0.00590423348008903,0.07626029865285686,0.0038500701267824297,2.307213641373942e-05,0.0084965502316236,-0.017244603210004244,0.046585405100289926,0.007697726382516988,0.00010996497184520645,0.011462121702427172,0.004220341957055262,0.020052595143873236,-0.00586794676093024,5.9243249853584194e-05,0.00883368838966932,0.011469579375725089,0.008641325746723369,0.006745701426362657,0.002588749852128223,0.0012584081597151423,-0.008610037858925787,0.05666844885268756,-0.029838260028350803,0.00012503046423270118,0.003077370682620436,-0.042526364236960636,0.2420037277524963,0.01933232410373422,0.00027210995514258924,0.0023137790149770176,-0.028198086920817836,0.1859487999265003,0.019614668376111442,4.27156698367529e-05,0.007092186996140417,0.012886542242119157,0.07525861890816384,-0.06352167203922457,0.0002822064690833583,0.006107382029073562,0.08363147552949399,1.0382329985487049,0.11501345752814959,3.342759735847998e-05,0.017843267776173892,-0.006504240194524392,0.07394983512314209,0.003253906371073647,2.9386040305849674e-05,0.021127110138107245,0.023139680538759796,0.05332132719306253,0.0005817668098140092,0.00013979098467423206,0.0024400966930030964,0.005250002949881005,0.034578740307733884,-0.028989043345202158,3.507056442774692e-05,0.0014247038644767522,-0.008734432181018381,0.027778483493987916,-0.039550751459180425,6.971135537961118e-05,0.017445445213720857,0.014850878172074939,0.0511610116778718,0.033700890374630275,0.0001327277117708526,0.001937555600919916,-0.021081747371556582,0.01934521298383261,0.000506922225963303,0.0006228861159732916,0.004754751206149164,0.007872108752715391,0.029521947374686868,-0.0191366557578245,0.00011223597730010103,0.02265426956843862,-0.09476700467686594,0.3766830488779027,0.18254743496139056,0.0016147312553980596,0.004511749947306548,-0.014841356185842505,0.1258369312193318,-0.02820867659821571,3.032827188322384e-05,0.004272386266792173,-0.0371212923820155,0.11276296640888372,0.03404137425260881,0.001076286431951156,0.007489003566681419,0.0184405280234888,0.14226785005698156,-0.09017292480602493,8.631618300643419e-05,0.0006803339156132876,-0.01636592432635625,0.01849388997947974,-0.0038350874227890057,0.00020886114539030298,0.006034226001904339,-0.04369523834992429,0.07187009702417772,0.05739359354724011,0.0003489713675333453,0.025473160626812277,0.02402989581772077,0.09866633200500032,-0.011686716263884308,0.001887701173464188,0.019443054998704124,-0.01814622315313745,0.07100380362590222,0.011295799119407491,8.199644118490521e-05,0.009453196348550373,0.011033655442725327,0.01556132765774416,-0.0030331902835219636,0.0017625845634283662,0.03152869226061396,0.026681567052910023,0.0777158732220072,0.017895152549224802,0.00013602465660464497,0.009410810191247669,-0.037555622990655804,0.09401895116298976,0.022961205353908727,0.00016192725161919092,0.0014735428491092746,0.01572154195150867,0.07343234606779288,0.00700348021378724,5.2254255010187356e-05,0.007217066630423126,0.030963748921113806,0.10363547180817928,-0.005689228179240157,0.002831803839386454,0.017053709784302717,0.005131160288455521,0.021353051739222605,-0.0009047693967330412,0.0001195353065948318,0.0062971130464205575,-0.016860961542102558,0.09363816229332668,-0.08754952317868527,0.00013058408202143665,0.010036974890524226,-0.003029496801679714,0.02240866787802308,-0.01261752092646814,6.394449430285547e-05,0.021659220896805463,0.05258245371062308,0.22984184749612416,0.041056235089821896,5.749884741306514e-05,0.004506459991364593,-0.019362483321294716,0.04433175380625122,-0.03767668455513258,0.00021294896715655178,0.03712917003562933,-0.015842924804030902,0.06842225297844783,-0.03414054420590906,5.757744198965492e-05,0.005161514435370248,0.022080200698905792,0.19427184504385586,0.029359570806238525,2.9324082811694712e-05,0.008218143001069775,0.007243213424297363,0.023787085806382564,0.01533138315681137,0.00010643856417427083,0.0018889629216428463,0.003526011511100929,0.013973420799032023,-0.003090758455869059,0.0003977488741147131,0.015961139800507708,0.03710875074816712,0.1930690506458156,0.04829971426659077,0.00011008685609478888,0.01496016320044218,-0.0014410831092566065 +2021-07-13,0.014952425094427159,0.08126243144014397,0.01864468034025319,0.00019458457346773863,0.011363445379739968,-0.020675401777374897,0.0835264735582514,-0.007004513389350764,5.939369415364747e-05,0.023261439048127067,0.022201615427332396,0.08187539683731361,0.021641268843400775,0.0001254377808336196,0.009458957793238056,0.007482908930810198,0.007154654347325253,-0.01878329987923647,0.00035297964250587604,0.009249390838800421,0.046095160984076386,0.09008304471266804,0.048429828118568254,0.00026773802282023594,0.04650177850930564,0.031014006566370583,0.08751319370924032,0.11732810842126924,7.738041971662919e-05,0.005816898078706277,-0.03791831791307398,0.1380440900349716,0.07625876789418795,8.05974126705812e-05,0.0012675752692747756,0.012224834758285247,0.10101576704654966,-0.03014073282562918,4.15004156163543e-05,0.0012409939080751965,-0.014563882478181123,0.015439982334776364,0.02746503113946766,0.0007274031095860021,0.00787595191333115,-0.04309449988896593,0.104396598294544,0.0204343159920387,0.00014434355055163036,0.00979102341681293,0.012152010409470467,0.007777219124394303,0.004057485688376188,0.0007637446053916592,0.005729061537212326,0.026283412561764512,0.37928550667824024,0.09648134730007882,2.0650867197299244e-05,0.009276791242941411,-0.029050737055381463,0.07452786032688334,0.028242499566223246,0.00011579492890177171,0.025627642827558254,0.002588037693921652,0.015875991846166653,-0.009206294863883748,4.588719897971409e-05,0.00642172553058336,-0.011525029111253067,0.007932682335608572,-0.030359278445082506,0.0028336417347846954,0.00680073454969746,0.06343253292035428,0.3704177674413772,0.08804968753495922,0.00014091990814994905,0.003392905056897804,-0.008694492177724588,0.042183347632753596,-0.043549850162013945,0.0003191621713344049,0.028631416694640317,0.04384159257336987,0.3071180569983456,0.005179925730477787,4.0210727105318815e-05,0.037545111368164776,-0.04793725984154819,0.2536044145836311,-0.001156092494419568,0.0003115323877719785,0.020547624439167123,0.009310950583167438,0.10896324940639789,-0.09262285565680572,3.546044709806746e-05,0.04238779354941996,-0.020155394775967027,0.20585193586817432,0.07527476206949248,3.2712825912229864e-05,0.007306976823829367,0.028774080858538664,0.09185179300380292,-0.012337972575645992,0.00010091055089031391,0.0014009211757191181,-0.08516156193707423,0.6613663375067853,0.19642435311637182,2.9743625755831113e-05,0.016929827679378222,-0.01187728424731344,0.036429854516204396,-0.0019530524927080088,7.228315421222993e-05,0.007317672771366917,0.009402492736099924,0.03339361342636447,0.031182285187519292,0.0001287443523430145,0.00691297976582926,-0.052205821728662546,0.054895863300855996,0.028664530829686875,0.0005435692470803855,0.009871651545703668,0.038191920616256314,0.13767270135548643,-0.021746523231197617,0.00011676419082010364,0.0009452648247064321,0.027074553378331326,0.10182633976092002,0.010334473565466816,0.0017065552098824695,0.03485019492535326,0.0020330664179943215,0.016862608117322448,-0.0018149275968100606,3.100337796332693e-05,0.0038877815581470766,-0.039937213618055405,0.12238266507740957,0.0079023700987519,0.0010669132892126767,0.02739108115338145,-0.013898537673827505,0.1173062310273032,-0.009029920684769824,7.889939452734072e-05,0.009387909319682468,-0.007009593715329444,0.01143109958491221,0.006261022276910213,0.00014472722149294645,0.0012845932029647655,-0.01728618813912443,0.025291969967061862,-0.026034859416305203,0.0003923019725480054,0.006068094019944929,0.04000398604194051,0.1750783854808136,0.04009745149793155,0.0017710102518764574,0.00662772753519019,1.2164576213580718e-05,4.53618509016988e-05,-0.0003717791799705357,8.60392443155595e-05,0.01005574030667555,-0.03365942432399852,0.04938496818872942,-0.00197785621891942,0.0016942952661616769,0.0016707959844907648,-0.05258701601920958,0.1788074075586268,0.16290924684370378,0.00011652230254756633,0.009928328705827227,0.09400359903352824,0.21083795712236666,0.16457881208565897,0.0001807407407737918,0.014312669026615833,-0.02245619349887199,0.0874371503904707,-0.024625134865785638,6.268362033862466e-05,0.00508145721071882,0.018467524414295264,0.05628057992210975,-0.05293464683323915,0.00311005576316513,0.01130867906706143,-0.0007581256623353686,0.0038263529189307916,-0.001970499586197505,9.855910343575184e-05,0.0079326709266721,-0.06738554183554879,0.31645277575018355,0.33605776003705284,0.0001544253519405911,0.008361915816109226,-0.0267810510704544,0.17108658949008837,-0.015836053625562525,7.403896642452373e-05,0.009053840252740189,-0.011799155499715108,0.04938821135071069,0.006600157471431787,6.004474732358895e-05,0.005616381189160069,-0.02253910790629699,0.04406122807808623,0.0021991801901673504,0.00024940750576068457,0.02018899251425934,-0.007652688880377889,0.028701389230515156,0.0008859377396774075,6.630182991532951e-05,0.014858966874378578,0.012888106418506177,0.12189269061383205,-0.08697462182634524,2.7279897569717804e-05,0.017286215205531228,0.008261221606637536,0.025615138259256775,0.01801238042180999,0.00011273441938412466,0.0016674783827914492,0.005151751548693685,0.02317811343105472,0.0014454016284071792,0.00035035215835156754,0.011692245012026061,0.01511619612120595,0.07266279184709307,0.0064361506991737856,0.00011915224613226382,0.0026328342246094245,-0.001942178472168998 +2021-07-14,4.4955783887820505e-05,0.0003204708435814536,-0.03074910697262051,0.0001483486625156412,0.016724177743870337,-0.007588896062870397,0.02486890547376686,-0.0025345323457783035,7.322046114953029e-05,0.002141735819768879,-0.041804937316640284,0.11874327186945016,0.06167448884282462,0.00016286050221901618,0.007266218828347453,-0.02772335051671957,0.029293384007888786,0.05746661862439926,0.0003194067041258823,0.0186503280269576,0.02149400339808577,0.04727516777026697,-0.0004676595478094953,0.00023789318823811046,0.01035885454820908,-0.019250945374839273,0.04706362182528474,0.02646053900896776,8.93127487761253e-05,0.000858299592797415,0.04386478139028153,0.15514266391706205,0.059119050544373955,8.29611149640265e-05,0.029026373860582863,-0.022716025258279707,0.1972961108244942,-0.02134742526079195,3.948320811812401e-05,0.01159765455732237,-0.012563690621317743,0.00834015100813181,0.01823929997780005,0.0011616842624934183,0.009903603341515053,-0.02062301910560054,0.05656528513405851,0.009131974807062288,0.0001274864858028088,0.005104579443570252,0.0053092656383980285,0.004109189821091215,-0.023035702044994156,0.0006315425400976989,0.001809827127960645,-0.005599122537803566,0.08571795084800633,0.007180645148445975,1.9465742823043884e-05,0.006917109775987851,0.015044290205314009,0.037169780564198694,0.001343939764557209,0.00012023550811833943,0.025596658508427655,-0.0017801842442428373,0.010081027677319242,-0.014876786461904906,4.9707504920280666e-05,0.0035959605000786864,-0.006914894190448838,0.005880296561681556,-0.0021196321117827738,0.0022935556500946245,0.012454867892895315,0.04283544274677316,0.28595567013667955,-0.0408799983301629,0.00012326978979960068,0.01996624338312577,0.012648831278121995,0.06875670770096586,-0.10208690304020496,0.00028486792913527974,0.017744482750674386,0.011254388024025945,0.07678601738520217,-0.0008256728215594919,4.128579935547766e-05,0.029939363700327536,0.03451067959851779,0.20565531178371518,0.05032329459932562,0.0002765670185486792,0.02393309986092756,-0.019560220567390374,0.25059195913087057,-0.029640448272848625,3.239193166292705e-05,0.0097914935761191,-0.0186685044496636,0.2354638680982515,0.050923217308044985,2.6489085343662116e-05,0.012034886370029816,-0.014705190574051794,0.039706974136457046,0.00419819870334087,0.00011929620272267711,0.017809064885751673,0.009156725917587606,0.054417705914352264,-0.005757347676750208,3.8868015005517555e-05,0.009583641124147202,0.008888540800753042,0.026558340571474253,-0.00415738877191006,7.420051452563031e-05,0.002454996942621722,-0.002325086644019373,0.008672900541678295,-0.0022211662687558354,0.00012258105956986613,0.004497668621908187,0.08420984748263019,0.08294487161010376,0.1265371119406258,0.0005802950993528778,0.013724065776398363,-0.038631345968430174,0.15098894196981805,0.1606744552369283,0.0001076913216756664,0.013370134991267109,-0.03352013421415062,0.1187015267076572,0.014654629345614796,0.0018124607849429415,0.0037381227192586717,-0.09354480765484392,0.7904656837204259,0.07272993701620584,3.043118476222028e-05,0.0021264845155219525,0.0002943659065580385,0.0008803426687189954,-0.06784482262343698,0.0010932186361078881,0.012214208217595621,0.004178264373068389,0.03440375017693275,-0.016144377234986268,8.087527560851508e-05,0.004126967415709843,0.0007777387294383019,0.0010254051402919474,0.00019548236864448353,0.00017901260906625903,0.020851689584014465,0.012700568902913753,0.018149527177709193,0.0013731291345027642,0.00040166294969774775,0.006121409430258894,-0.022162543763337136,0.08294575764055523,-0.030834719571160987,0.0020709793520164777,0.006867768304648866,0.029006860384750612,0.11893186981462396,-0.0009968835145538195,7.825153188461709e-05,0.022322064126547022,-0.022490453932597035,0.02625587526426249,0.011319805824644175,0.002129359121246898,0.0034809593990850745,-0.01565265015918248,0.044637699717031784,-0.0004062110191252491,0.00013893194282931493,0.011307152895166973,-0.027899865047493734,0.07013299055960573,0.007478521842076842,0.00016126499985223786,0.026858330796295387,-0.015181985192418052,0.07462505292377815,-0.0317825001714784,4.965441119871432e-05,0.004845524860274512,-0.045046098442795356,0.1374418539171127,0.03589836890893922,0.0031063918272559964,0.0036607514156535696,-0.01871530077543218,0.08938227695288817,0.0077670684588299725,0.00010415640172495026,0.003815774359316776,-0.02922881006104191,0.15668166986532228,0.010624871202724075,0.00013528627157661136,0.0050787904002091485,-0.023569065853003272,0.14810832519255626,-0.23680375121341152,7.526821167662585e-05,0.008054658013426317,-0.005520073716946272,0.03144069885338485,-0.0031985144860163695,4.4126560948491125e-05,0.02056585920442025,0.012210147972612504,0.02478658424850874,-0.023046442940142655,0.00024017822940756758,0.002468479166993435,-0.0004640521473088753,0.0021348871718085767,0.00025566079446544623,5.405131134455389e-05,0.013566347879042623,-0.02063964992900145,0.2134131042356707,0.025640898747527008,2.4952411815582734e-05,0.014322453232600329,0.021384445004167144,0.07687145907306125,0.0852780105353598,9.72392999471437e-05,0.004388807573009882,-0.0001485899995937552,0.0006980661068931648,-0.023679527723969897,0.00033552199865104356,0.014813211987342957,-0.0399886371397424,0.1669803106422243,-0.006786770671459775,0.0001371649452396304,0.020053408761208757,-0.006342864021729545 +2021-07-15,-0.03159446380953992,0.22675830453929866,0.015850423780197492,0.0001473446502155867,0.006859955568242996,-0.012015075743237309,0.03295926476644922,0.00010041138166356258,8.747008012529125e-05,0.012777080658864678,0.03022234189449816,0.09711460119251382,0.049153376119916804,0.00014395965186621106,0.008521307065997947,0.0020974174719878788,0.0020715876001739077,-0.05932493302269384,0.00034170350609105703,0.004907978327738776,0.016774290049094566,0.039061346921240934,-0.03134524201820567,0.00022469567129172201,0.0245813911551672,-0.01350098618694051,0.0414106720440362,0.019335160496715447,7.118687920748342e-05,0.0074090369535133515,0.06155499041094458,0.21205988758811653,0.17792230350036992,8.517155892048913e-05,0.007626554051817351,0.01687214465596212,0.13269400252622582,0.006044604051061255,4.3603124463230415e-05,0.005392696438686754,-0.010311105263841299,0.008390541554584945,0.0020364043520574937,0.0009476762887294816,0.011054452045159155,0.05052269241914641,0.12886151711407814,0.11758760949273138,0.00013709611023288664,0.016522146052920572,-0.013542522910193998,0.010271435665946179,0.0012434090875084285,0.000644455281007695,0.00016839705321225603,-0.00995170369078903,0.1133617163625734,0.01469840129513203,2.6160968218397798e-05,0.003047441334734625,0.03147196879373843,0.08966849868121769,-0.01929429488108885,0.00010426416064213104,0.01134130914295726,0.007819606519825205,0.03959670319316657,-0.016143197534615,5.5588850067052845e-05,0.0020114273262209106,-0.0668634381060191,0.058172960794419366,0.11011023412081909,0.002241767188559254,0.013138172693329273,-0.011458803823107482,0.07215970915311101,-0.0021838294815639454,0.00013067623642935307,0.015528497832604227,-0.0387222909737311,0.22085894765474395,0.014955750490102837,0.00027149027504161637,0.0329954242974555,0.017710684277084974,0.10296480977379721,-0.006651062896638005,4.845152775433718e-05,0.0040689666644053634,0.04609004896377265,0.29195236907592415,0.04784559868164236,0.0002601848310003409,0.020117534060376176,-0.09315667150391214,1.2581251460531588,0.11458896020254344,3.072701351066785e-05,0.004696878442815329,-0.0015322945605651364,0.018091150793563413,-0.0007742836706419995,2.8298132476871387e-05,0.009867592274053125,-0.017708862570934954,0.05208998558595456,-0.017981365773727696,0.00010951136347127946,0.0116599002097476,0.010758818453811214,0.0754714383353999,-0.006191380489279041,3.292868051481212e-05,0.01273113897649001,0.006506521392228849,0.019681202838468876,0.0008827529143871645,7.329504351440476e-05,0.01111850854554148,0.0001342884356492003,0.0005313629627730018,0.0016987311774360892,0.00011555691272030281,0.0014816194898226726,0.023946687919068125,0.02647507100464964,-0.02001850734987261,0.0005169920707152453,0.022870958414973927,-0.027979179776519526,0.10791968929967306,0.04652881412914637,0.0001091240061858824,0.0050150263456083775,-0.0016580853323324288,0.005750296618117836,-0.0010793950732414642,0.0018506990611805968,0.005619648789789296,0.01887604647618991,0.1858497146404665,0.008482810259339207,2.611748384032963e-05,0.0019226153922508931,-0.04353018987094928,0.12333205751568589,-0.020023463855086472,0.0011539469788594328,0.0015779822866116104,0.024120283063815726,0.1715124214483819,0.003307419821169846,9.365100988928644e-05,0.004618547192774298,0.009945742429589633,0.01550498463086342,-0.03872879714524793,0.0001513949030068721,0.00809305637143633,0.028968448243697806,0.04747690610891188,0.022487115515208312,0.0003502246709015381,0.003051473046339169,-0.01580333382466122,0.060236630219110056,-0.018474392152730987,0.0020334728901891573,0.0025912263047905893,0.03511966085392143,0.14808344077980803,0.021038405606709457,7.609115683741044e-05,0.011793311409437542,0.039192185211266425,0.054023536323083085,-0.005431999958152293,0.001803406627526011,0.019500797322818755,-0.032966597124568724,0.10580758420067216,0.014723464348828505,0.00012344495865648352,0.0038619271291544365,0.02930041535800945,0.08201224118064707,-0.000828958565948365,0.00014482898024741308,0.011636811506893436,0.051292529052531954,0.2298678271430474,0.09859080725857897,5.446153120633929e-05,0.0016473234790518201,-0.0008926936406184269,0.003583719093413387,-0.017972166871235935,0.002360948633520529,0.00224058653936208,-0.022942926118138206,0.11617425565527822,0.018333457485077136,9.823799242493488e-05,0.007856740561449785,0.02233311590125152,0.1074889741768094,0.06031685235259288,0.000150676729801022,0.014042608407764768,0.013466918880342139,0.08652168038415627,0.04642406022907223,7.36193531638304e-05,0.009312463692629634,0.007338135416746679,0.03576218838900665,-0.0012717922442625096,5.157141292750343e-05,0.009790361522697154,-0.004771947949846857,0.01023291589863559,-0.022591060143484963,0.0002273660868080768,0.03693175584020421,0.009767390454611738,0.03734015394785827,0.0014593834197735526,6.504543476445317e-05,0.002197088555016613,-0.015225000902499876,0.1746778979247214,0.008756952208160858,2.2487990831660405e-05,0.011378075877268247,-0.018034956072707064,0.05323548451606815,0.03373077880010046,0.00011841939618430594,0.0010449546237429597,0.006424393243858318,0.026299303125551385,-0.03190267787661997,0.0003850488643540994,0.004578042549118554,0.032802260654567844,0.15546634012750105,0.018638043413034468,0.00012084792461495792,0.006774513734469486,0.0028698255653615136 +2021-07-16,-0.007033732579078714,0.04782930863478284,-0.008204278650260322,0.0001555171658921332,0.004100637312880011,0.023430026773453717,0.07539229647756027,0.00913556348382155,7.456866004795417e-05,0.008044212609990158,-0.0022798109564702343,0.007892517987903037,-0.0007362921036513807,0.00013362276697985337,0.006142203276489847,-0.03350361983488201,0.04464005453839869,0.08219508324779377,0.0002532998145783976,0.005428580016843116,0.009198552530673058,0.0214805672418934,1.0424961702665052e-05,0.0002240637083542867,0.016776602317340995,-0.01485536556611878,0.03828096180199628,0.034591912924099244,8.473195805535841e-05,0.008055430434554433,-0.02251064331135045,0.07750557105136044,-0.054469033061592585,8.522064978330671e-05,0.007289509251622504,0.02901635302940947,0.26307238868464633,0.043898446105612755,3.782388833949604e-05,0.02329899957251422,-0.00871021133698755,0.007110252102152687,0.005603671325383391,0.0009446881761417991,0.0008799749732971631,-0.019212980840308633,0.04998157084965125,-0.15362639787571905,0.00013441469000744538,0.008323439437611858,-0.010464299254661538,0.007677107586853889,0.009333555311507228,0.0006662494789328317,0.0051632960491133405,0.01717745331001872,0.23728228521256484,0.02083691991714408,2.1573283460359604e-05,0.001020074446918477,0.026345850711602135,0.07872941749532837,-0.06376264594511505,9.940911929934714e-05,0.01250052531241251,0.004708373660315976,0.027271248405271422,0.005872810231442782,4.8599043364284406e-05,0.010989289382445058,-0.03375006149641551,0.027368468451152875,0.006509914786579739,0.0024051770226393523,0.009331306753766576,0.038106700375594965,0.26657701223930474,0.013372838921922932,0.00011763342901020276,0.010377763838855586,-0.01050249524313458,0.05906459746601825,-0.011236326635926124,0.00027534264301965513,0.028378324061735766,-0.009119130015856985,0.05069902961181374,-0.05715815232674067,5.066577810370076e-05,0.010306559427730157,-0.026681388939291614,0.1837446042041188,0.010804877524980801,0.00023932091055968766,0.016035235209086663,-0.051162415388263924,0.7107438691612359,0.016928323313256624,2.9872264671078505e-05,0.0020035230891990263,0.005330451278984957,0.06179945773260114,-0.002166829551781557,2.8817813269548174e-05,0.00649780539816191,0.0177059173939786,0.04409669908198411,-0.04215550402213282,0.00012934067066214857,0.01343875754464815,-0.0790531510226114,0.4931131848449293,0.11953030412462333,3.703095792709946e-05,0.019189296457410743,-0.0024787671163802394,0.007772459159889474,-0.11106824016395009,7.07057380077205e-05,0.008230830742742359,0.0033853321938976653,0.013396173932491963,0.005805255374800057,0.00011554977635382522,0.0018606641520758397,0.02697534618874898,0.02542397895904444,-0.061482400707158893,0.0006064556798595821,0.017602513197448242,-5.800854133086205e-05,0.00021891374707682659,-0.04266671090041009,0.0001115333942983449,0.009504159884714272,0.00982043946243926,0.031544466164933685,-0.04502130285952691,0.001998144607784294,0.006897550773131807,0.0075312089603577475,0.06725072014818119,-0.021154965072992377,2.879717951238618e-05,0.0003096212259320612,-0.01530620878987198,0.04964724273907572,-0.033589747453134554,0.0010079610932155283,0.005057462915308866,0.011666392506153886,0.08428945442914508,0.001090170763671775,9.216987196923917e-05,0.0019518134629298572,0.016851711258089486,0.026576203708197774,0.008107274358533905,0.00014965679885325662,0.007001536239107446,0.008628898772557427,0.01315672199152081,-0.005789866254072845,0.0003764537174421857,0.01140813855432392,0.030845698097808034,0.1286471090081424,0.024776729685960976,0.0018584244635259134,0.029373768164912925,-0.03122840389888773,0.12428137424163008,-0.04453108121793537,8.061838825190874e-05,0.004107637050474017,-0.00040921655266339157,0.000632550611972019,-0.004450088336357776,0.001608181656245519,0.012370759103046506,-0.04883446840837818,0.17429652968763387,0.07338957121129322,0.00011100786776364472,0.004476216860595152,0.004266914770975588,0.012570201566742111,-0.0016331697612330914,0.00013760433076771388,0.003134542030468445,0.00016898112163850833,0.0008387539758040771,-0.0009010003327271952,4.917196023274014e-05,0.005880097003885105,0.04217733168050237,0.13558391218817623,-0.12265713456998181,0.0029484176194740056,0.0076659990219337315,-0.015719194919372,0.07523870644383132,-0.08515612271150289,0.00010392727729872281,0.005396109657761984,0.019501334989031168,0.09146921489737476,0.02050428683947885,0.0001546144840449648,0.008404250288843122,0.010444053560716256,0.0652019358942544,-0.0777985126863632,7.576302363522498e-05,0.0028000272290334615,0.01717245692242857,0.07256419723270864,-0.05428642677299094,5.947814775323256e-05,0.03155532913444103,0.032143203736083134,0.06478435181950143,0.025022890993710786,0.0002419070008742415,0.005502939852088575,-0.017001704667047923,0.07302372918503146,-0.07208421704526657,5.7895236982622986e-05,0.0011523362868602403,0.025318275535246296,0.3075545849280589,0.02660874104162303,2.1239446833038897e-05,0.00799139404861678,0.00701606352794986,0.024517443061663792,-0.008081603360644436,0.00010002931664599046,0.003505830181765224,-0.008772061522620701,0.0342235224689453,-0.007884075933322942,0.0004040219239481238,0.004815925622658102,-0.03071573707599398,0.13909629281009087,0.005294033144693797,0.00012647863854123108,0.011970882459307185,-0.0012569382706625757 +2021-07-19,0.008755560616331533,0.05458459866133941,-0.16204060061492487,0.00016962912486992186,0.008821616939630694,-0.0032033851525333757,0.010074864201554108,-0.0008182381550256038,7.629226065342354e-05,0.00014719939120763474,-0.06745948106334998,0.2161233834351293,0.030561555680428776,0.0001443904409497399,0.022063623831393077,0.014439475924880112,0.01555370721525324,-0.05858945597675016,0.0003133180159724644,0.010816123990620687,-0.004342019588550038,0.009937023666565712,-0.04461462167239049,0.00022863000536473541,0.01156334017956708,0.002992255537115756,0.010013101161351777,-0.02397084351192016,6.524944399482883e-05,0.009337563182295037,0.024949187279766676,0.07874262995879777,0.018518465706452665,9.296861098683084e-05,0.0074053491179350405,0.01715273010692371,0.1420453535098877,-0.0038366286931479734,4.140996245251002e-05,0.025863753687773442,-0.02054067856804217,0.016160468781097274,0.04466923131610358,0.00098017950766515,0.005802022798886986,0.02010591270440344,0.05045279488283305,0.037018182305517386,0.00013934790686278832,0.004914331570494665,-0.005041288003539625,0.003593489738224804,-0.03498063125821789,0.0006857241711068059,0.013249988035379454,-0.019992430426610697,0.27073493116133046,0.05237702420520022,2.2006151028814806e-05,0.001315923458784653,-0.04133542940319553,0.12432985749462122,0.07491772796434247,9.87638600844006e-05,0.010883620848210502,0.0004114925949809577,0.002095537805372753,-0.0017267525122279183,5.527494795044934e-05,0.003748982376894561,-0.029208904557698284,0.02370962143764887,0.01011725005545789,0.0024027778645146244,0.014826449006258695,-0.0061369810949402585,0.03646241898987412,-0.05312737391535055,0.0001385037129575434,0.009730532094352665,-0.051669559288448665,0.28751149986000435,0.03116315906376754,0.0002782836999655129,0.03243105574058363,0.05282816027800123,0.31476095075223615,0.0014540866996735082,4.72765301763011e-05,0.0006416476565390037,0.016710632728765842,0.10765424396782176,0.0025927782522095245,0.00025582827729108624,0.000747515795581551,0.07026953802840646,0.9513887969972993,0.08889314001316721,3.065062230668696e-05,0.016033020172573173,0.0016567774613615914,0.019651780242374833,-0.00015948356508963741,2.8167220135870185e-05,0.0005216822321465657,0.020270529427627634,0.05753514046651923,-0.013955848685338581,0.00011348923534385897,0.002154628322577773,-0.07451972581529168,0.5167580077540638,-0.04084300502505661,3.331013625334313e-05,0.0014217528314056,0.007128202704924573,0.025458760342256786,-0.05793224918025946,6.20754920485364e-05,0.005411101596466074,0.0023359818624334523,0.008412540859633912,-0.025618842271452443,0.00012696700505467838,0.004982771368481978,0.001334376161405283,0.0011851996529613302,-0.020556957692524278,0.0006435204023420347,0.002791266052312518,0.01004292514364794,0.03787112736329046,-0.024592694456812943,0.00011161896756519474,0.000957998347363664,0.04949475451864878,0.1970811524146215,-0.0948258158135522,0.0016118820395996274,0.019900042998943927,-0.023899517753087646,0.21928709154030923,0.009581014015618906,2.802581595307331e-05,0.020871436557244855,0.013572914440758017,0.04569483786398886,-0.00476434171287649,0.0009711297094151844,0.006240930566660316,-0.015379778306891486,0.12606845726079344,-0.015548866221680988,8.123988132333782e-05,0.015055973885910302,-0.0153620748021203,0.019596918547226665,0.028768891286499433,0.000185015227573578,0.017732444422564112,0.02711556321555145,0.04852423274707704,-0.11198902552501244,0.00032074793291832936,0.024197655911117888,0.02055645277041819,0.07261103108794392,-0.039606044547977996,0.002194299540031167,0.0030178617132335652,0.0013512183161925484,0.005491685065873498,-0.002527326270760204,7.894238996076934e-05,0.03304745371135476,0.09038224973832573,0.12434379113004722,0.06295783643071891,0.0018069088068423732,0.011986192585135141,0.011422753241617227,0.03488194869483185,0.006829626541753356,0.00012974364436065075,0.0059023603930648825,-0.015714761487851173,0.04001943034045096,-0.0033053311880252723,0.0001591832134506967,0.009471125111555213,-0.022126628366888317,0.09533938810473823,0.012867298725475573,5.6644377233201784e-05,0.014008615100860922,0.048203353758111814,0.13211701441209417,0.035759439599658584,0.0034580921534591957,0.018792583612715935,-0.025412214067399994,0.12557050486495522,-0.031960813465342096,0.00010066892602794515,0.03867760065416868,0.01930125853562224,0.11502005682226442,0.03680142267628917,0.00012169502790604044,0.01643305227942314,-0.027508165386061094,0.13971807721404902,0.027213762606262973,9.312316439482991e-05,0.00486977271836079,0.03164228014010063,0.12027293614317765,0.010288099250165082,6.612219359994306e-05,0.006808359607355772,0.02784571768715334,0.053588779732008214,0.00022165004281255932,0.00025334593596224665,0.006591630520685433,-0.01990757772785879,0.07970543071602057,0.02320969993571146,6.210761940309108e-05,0.004231786953022775,-0.021952538264399586,0.21733201201784477,0.02381533252125789,2.6061075094990962e-05,0.025023838981191104,-0.0025175204063220685,0.008383928329929005,-0.025505507698160457,0.00010496255819167915,0.0064619552927451425,-0.0018647519117499817,0.007769398530403466,-0.00533085408994507,0.0003783220313281062,0.004374243697926879,-0.004184735277968279,0.01614855752881137,-0.006120856254136224,0.00014842465603814357,0.01926610361855119,0.0026094489086655364 +2021-07-20,0.014491587622813773,0.10553336138393667,-0.11847805132600081,0.00014521543488651186,0.012523025317273343,-0.026206500097630047,0.09200297020813093,-0.0013955409620288737,6.834672399086425e-05,0.005494226389189635,0.004666882120371241,0.018915883584675594,0.0010356697889993176,0.00011412936561085008,0.004839256650973116,-0.011974390391800096,0.011673874595167279,0.0045405523355035275,0.0003461834053207186,0.00916917534153238,0.012673386223073669,0.02248666470261259,-0.015094545592770011,0.0002948936346845701,0.012264320667504025,0.014698326276699978,0.037181379614868615,0.002159691745012877,8.631556612167534e-05,0.0033977017582261957,0.04634278522719541,0.19425746060404692,0.03507741495752702,6.999939389238493e-05,0.0019437585640603465,-0.004228631225020073,0.03759373660143305,-0.001655142326010629,3.8572956956598954e-05,0.022297900149377138,0.03647954261331249,0.023504659853850952,0.14222818777277116,0.0011968513124118378,0.003442244998188242,-0.013632348356624108,0.028640370748976546,0.0025089512494686516,0.00016643855098664637,0.0022865008164679973,0.006115697757246482,0.004201759436938777,0.0005274845828282463,0.0007114414888837046,0.0045353369193763616,0.002886636450075309,0.02963557359939889,-0.011195201429103768,2.9026959247113405e-05,0.0010307449867110647,0.044126472930312015,0.12404649219990868,0.036528203641252484,0.0001056734205559415,0.006077034796232353,0.013540192010020317,0.07920930823016842,-0.11542150928324721,4.811831611327485e-05,0.00025408849740459134,-0.04257855776656772,0.03713721188555591,-0.11098390196777316,0.002236169006664024,0.002373000543797784,0.018441926704624377,0.12166471927058413,-0.0005508138218342486,0.00012473655373456723,0.0037393535407233766,-0.011858179589417239,0.07039320127133639,-0.0076319088177911765,0.0002608528218631794,0.007181797633606683,0.010233880256228033,0.07530789277816892,-0.08686594349960716,3.827901831162136e-05,0.02571119988893598,0.029982304177243603,0.18361053276911665,0.022818766677785096,0.00026912511136714526,0.020671571918568794,0.02908475091557728,0.35437785378288306,0.016867273132496342,3.4058773662620233e-05,0.006532924205951538,-0.004834595671412488,0.055382284526658554,-0.0009041525255983328,2.916560579004006e-05,0.008022266002899611,0.024352649313447494,0.0710412470142148,-0.00719634068759052,0.00011042270823021686,0.027829249198410667,-0.039045821777580626,0.2518169805793355,0.01514236867346075,3.581639999101908e-05,0.015453502937338109,-0.0074741255681079,0.02142073102966363,-0.016494795987647456,7.73576884869183e-05,0.003167022538984564,-9.558078201664525e-05,0.0003080261642528852,-0.0439097894707671,0.00014188339355003757,0.0031984661549081476,0.021737132781590722,0.02075726229143488,0.0009622606398002967,0.000598560076696029,0.014075916332777837,-0.028646379407127703,0.11705754123483433,0.045287648615576735,0.00010300453623334576,0.010037573418595078,0.00604485239023552,0.017593232001969376,-0.0011953932640376692,0.002205257182121252,0.03077478780339306,0.02917673629383438,0.2689050187050703,-0.08785126781221078,2.7901014685013892e-05,0.012383267275872143,0.02695396874292381,0.07245762352738915,0.04265090679493413,0.0012162137366311745,0.01228485543967867,-0.005485333028798273,0.03893874076400376,-0.004122213153852238,9.380948252309105e-05,0.0031347035910591903,-0.024052089924323384,0.030683354718872388,0.05180680367404566,0.00018501006867499296,0.00807319169887721,0.019229986533863704,0.027920585740859958,-0.005998770746838172,0.00039532872237097187,0.0036260942644396068,0.016057138435550976,0.07857882949082702,-0.12162856174107134,0.001583845946700373,0.006850607083691887,-0.014661808991128893,0.057260177196212084,-0.00490855074819211,8.215334292574165e-05,0.016478207760037184,0.010810248949707307,0.014910727378475638,-6.466565787944286e-05,0.0018022459466251418,0.02204443955379769,0.03762708914481763,0.12641823904934016,0.052699931595531845,0.00011792528169136157,0.007679639639762503,-0.010408295716382753,0.026558425520840735,-0.046250547557914086,0.00015886845568473577,0.01509245466077082,0.04249666298060525,0.15099615370869687,0.06655715250166636,6.869147927216642e-05,0.005618789661833077,0.0010626597211819216,0.00304788842915558,-0.09227642393113344,0.0033045567326729377,0.006774181516791722,0.0363289755847614,0.18225826225160563,-0.03338333240043904,9.915314573963248e-05,0.010125824594636578,-0.006003409634523574,0.03466195969166415,-0.012660333028331148,0.0001256046302448972,0.018957573312935395,-0.0021360778609589132,0.012511962607227011,-0.08554593997077978,8.074959258175143e-05,0.008713755754003136,-0.01679166965879412,0.05256452287499418,0.010613120925438365,8.028761369229431e-05,0.01352162263935864,-0.0028521069544919014,0.005799498684308527,-0.012742221321861251,0.0002397754680555716,0.01632348133780386,0.0036164351412057796,0.016045157080798154,-0.01692890877582763,5.604683379328028e-05,0.0020794589905753598,0.022856705039113523,0.25410495355376433,-0.06614484680112813,2.3207682695635758e-05,0.0007048123381244767,-0.023193861656678874,0.07069174723419222,0.029752973785292472,0.00011468676721559782,0.008525607789716423,-0.0015549883158416376,0.00576446723109339,-0.00025058333958023364,0.00042520261452407254,0.0044034273681226805,0.010026001347700101,0.051364165682066185,0.003841346427273481,0.00011179935975416489,0.0004306671399953513,0.005585937357601238 +2021-07-21,-0.002974760304147721,0.02180299030526362,0.0018844093028959935,0.00014428543720694677,0.00885643626509184,-0.004921125931206224,0.01698755377147422,-0.03967547173927492,6.950949941692386e-05,0.015182149384615335,-0.012560780020426002,0.04071268848818143,-0.0024910138892870297,0.00014271973546288108,0.020469319913175518,-0.02132680147065517,0.02252352749703874,0.013203595247151806,0.00031956350391244067,0.011734691981397372,-0.013291763905206621,0.034191110160212715,0.011513960977675932,0.00020340760607473227,0.004147102359541914,0.007690325377201276,0.021054296060051655,-0.004382909675862309,7.975367962655427e-05,0.001193765584916211,-0.030590884803296334,0.10915981692421607,0.024552232546291217,8.222788033125437e-05,0.011834625322084688,0.013438427216557282,0.14026604499411494,-0.06659491915856477,3.2854473080771064e-05,0.015048738480283975,0.025368246730001615,0.02199265353107729,0.052670799677927115,0.0008895238708870003,0.008895287131020236,0.006001643866636416,0.014701054627734899,-0.01322742365329715,0.00014275246496631621,0.0181994960513475,0.02226423767072295,0.015232851825051229,0.02481270405555756,0.000714415667220309,0.010176045216874248,0.006597102505686134,0.07952495551751959,0.00622612348032604,2.4721372965879883e-05,0.002699413226832809,0.02059201193772834,0.05653732520752981,-0.06838629038659895,0.00010819683605805866,0.010369159829185367,-0.033057302520221474,0.18272792040223867,0.18040840001685518,5.092421217089431e-05,0.00240812447016051,0.0034556435480356676,0.003141858863486292,-0.0014453470651278808,0.002145187407151578,0.000526298787765244,-0.07478867629724334,0.4846000009566122,0.06968554432256853,0.00012700024060004233,0.003152711723780139,0.05356855255097844,0.3073820332688235,0.07150604237866938,0.00026986071367371346,0.009881823767263119,0.022881338390246947,0.14671757625914603,-0.0024515643987830264,4.392990215413423e-05,0.012631473917404894,-0.03230852680736078,0.1747907999819151,-0.03393976272005706,0.0003046389242176876,0.0031439806936759073,0.013001903948971206,0.21285970696618225,0.006907396842775538,2.53480015322748e-05,0.01873131382505848,0.008428487844644101,0.08852750459720417,0.0006256566130408651,3.1809229633430394e-05,0.0037507785692797143,0.0009269965137429455,0.0030247237429136017,0.0003388678143779684,9.872227190785906e-05,0.010451901157205472,-0.0024853258202808775,0.020238006679749343,-0.01902981974891808,2.83666449541426e-05,0.007200682561717875,0.02490256229532395,0.07788120582720402,0.07617594252405847,7.089061604973623e-05,0.004429656994886006,-0.0019243800115040259,0.006601325491159024,-0.0010543693963490945,0.0001332932894820092,0.0025382352900373225,-0.01696341278585464,0.015914248062964733,0.008927780391346098,0.000609260003081611,0.03197815626960118,0.02094370329645837,0.07878733858541752,0.030639918153876095,0.00011188788265427888,0.001454199762435725,0.012767966483023427,0.04509151485778089,-0.006929177234665376,0.0018173814164734784,0.024352010936443097,-0.014004175702487954,0.12358258249715023,-0.023520054266559075,2.913952578885143e-05,0.005485858175239529,0.06595839831870053,0.16532980514104686,0.18583262446860374,0.001304338210009186,0.0049118728169519,-0.02149690202403814,0.15936096951532214,0.07080270568777441,8.982961887765753e-05,0.00833332514287825,-0.03477169672787585,0.04636147055177225,0.07774907035500764,0.00017701662914683646,0.011331004305948102,-0.002138727496246624,0.0025781046262367824,-0.05113752066614291,0.00047616648964133153,0.0069057611417783545,0.03428083246654943,0.15993154783028993,0.04467888421596265,0.001661374576974001,0.011889279159434956,-0.013704268734632067,0.05397234650239207,0.0033533416179002368,8.146572688673397e-05,0.005759453628570976,-0.03871619769170441,0.05017646654533496,0.027640346904596276,0.0019180936862701113,0.021916488424162113,-0.013552410234224899,0.04642918798640548,-0.0009301879279221299,0.00011564889502851692,0.026190490277928,-0.04361060390535127,0.12327828775781752,0.019121310730876934,0.0001434055247633498,0.012473987234936543,-0.03371111857167392,0.14290566959394171,0.04758804382704567,5.7575488172971655e-05,0.0151263750681943,-0.0628456949305948,0.1963196088394948,0.13871355848041758,0.0030341001419818075,0.003848895867341595,-0.005256366657253066,0.022899573143046238,-0.04695868669290959,0.0001141823127849809,0.010382865405153445,-0.054014545918484216,0.32830268749726443,0.09135304332005527,0.000119315557820273,0.003278759565635465,0.01687116426882536,0.08963592267401707,0.06139413644851641,8.902493381444375e-05,0.007497973239556645,-0.012447613796084517,0.05367057846943816,-0.06368761468937423,5.829042529183683e-05,0.011338658585823672,0.06009418004361905,0.10193131040318408,0.11099581016649765,0.00028744463054810584,0.009610163466214804,0.005227740870278123,0.019496161722263632,-0.003906432381936059,6.66775002093387e-05,0.003113456171999341,-0.0069338339968112095,0.07339678686363316,0.0013669365707004602,2.43740488665009e-05,0.00967232840767476,-0.027199403918615226,0.08210117219954134,0.074166267332562,0.00011580278210076875,0.0035369724086117254,-0.015179096490737043,0.06635978260752104,0.011982719779695635,0.0003605528543162429,0.008609318952168675,0.011628726232698986,0.043879627111985,-0.0006473084652586659,0.00015178924962772295,0.010400208559106375,-0.003619283877327982 +2021-07-22,0.03577714591650045,0.22149009822946877,0.12422368920225325,0.0001708197022011447,0.0012915342884953814,0.01487305866812426,0.045403878819326754,-0.0078076094466915805,7.859915222607303e-05,0.02075190333725334,-0.017001103531726035,0.049883951539389584,-0.002819998344862285,0.00015765707611638567,0.011644281406285657,0.014682001280078879,0.01359028778848014,-0.005408544197200549,0.00036460654507782913,0.0005178255575506892,-0.025867977334737897,0.05234360853710658,-0.044936962162160116,0.000258580984557583,0.014886301752774745,0.02126540880787286,0.0549711043265232,0.04579186889735475,8.44667947090634e-05,0.002185414278779315,-0.0688366178097418,0.25634673389214246,0.17150805509156708,7.879190312217936e-05,0.003439650112860197,-0.03643951470571373,0.2970867891509108,0.0006222554300292521,4.2061800476861414e-05,0.008130536404454845,0.0044147758867824115,0.004041909786775,-0.032593328662704577,0.0008423000614104234,0.00841452213752213,-0.02167343196664329,0.054816595721210455,0.0007939020771609822,0.00013825393854801426,0.007188075095899289,0.002325272050962232,0.0015112388169997888,-0.010691452639281741,0.000752081714383845,0.002230136122655914,-0.027108108315280155,0.31957795497068126,0.0759997939702296,2.527814428302657e-05,0.007225497821333769,0.03824061071012238,0.1019855489547283,-0.03656957596536456,0.00011138769562038537,0.005314397762780872,0.027786113629422692,0.14308702314830266,0.11342297367586597,5.4662485761747706e-05,0.004356417007861066,0.0008840069869536941,0.0007017696165979157,0.0026463340687625067,0.0024568809267459355,0.014938723618773124,-0.021495534797611657,0.12851199795426277,-0.022527412657692376,0.00013764381043919976,0.019577402126222755,0.006403864472395321,0.037691264051911026,-0.010605925992715743,0.0002630932231323037,0.006575571969736462,-0.03504917426194014,0.1777017455263217,0.03868325572401042,5.5558057496794475e-05,0.022694812117097646,-0.013289963458379076,0.06979274953211174,-0.011826338726630758,0.000313834212523998,0.0006726917954417877,0.022277551972263797,0.2966711825261472,0.012636331822137085,3.116178552006189e-05,0.03040191350998143,0.011446508224554756,0.1046985493159631,-0.006134541035179219,3.652700545798235e-05,0.011261122182546962,-0.02967082194100484,0.09245357408710038,-0.02480138484704122,0.0001033781195940798,0.005599018992826427,-0.0497653347755684,0.3912237253144834,0.02174071127634261,2.9382863787724258e-05,0.014694072751947925,-0.009623027600843161,0.02919508834953778,0.010771593689340945,7.307676607198352e-05,0.0072059552805012255,0.020846647230742858,0.09183410118329548,0.041315729454736105,0.00010379605157095483,0.0021630479872244597,0.004333398708824174,0.004654270022649204,-0.048756952094156474,0.0005321727531306259,0.0012205293709304766,0.01827495902734696,0.07466239117618836,-0.00770233057671138,0.00010302450255787362,0.0011937647351724183,-0.041430173745315615,0.1219704744140251,0.01394171072188915,0.002180124102187992,0.03183992438956825,0.005160034440136243,0.045053814053192226,-0.005923117033602389,2.945121616130367e-05,0.004260909825748474,-0.00941757977512386,0.027949309181391022,-0.011323281257867721,0.0011016395002825966,0.0023377036057959993,0.0027896085862486146,0.019824666446482495,-0.0013172450898047946,9.370505617878859e-05,0.0037879163932219425,-0.012549157729074873,0.017093973397658595,-0.054214778642538895,0.00017326743268005352,0.00024660002113350253,-0.03587053256629923,0.04929084764114813,0.047309885281832754,0.00041771055725168263,0.005043254325157755,0.039260223087438754,0.12339954003279431,0.0341246763730391,0.002465980075766279,0.008763505034154993,0.033917966834008606,0.1122831525299585,0.018153347148115128,9.691825451255263e-05,0.017959195208531873,0.00985748960654079,0.011896951875242987,-0.008590592624245894,0.0020597182394842127,0.0183208183873935,-0.02159002268596486,0.07050113016085205,0.0029525897661328263,0.00012133135737408278,0.0013647792445391183,-0.05740710025721509,0.15067490865207053,0.08003217393435055,0.0001544489818175541,2.4776007598712683e-05,-0.021541828537330034,0.09060878918505778,-0.016383441124506997,5.802647154158895e-05,0.00839183206117931,0.0034460222682429443,0.009632828750433925,-0.04368699290814485,0.0033906448149626897,0.003763437838616246,-0.00040907113120455617,0.002050232968782587,-0.004061087475805032,9.925129671723885e-05,0.008563454264391458,0.004975951329354454,0.027417425094606353,0.008189495052343166,0.00013161647117178492,0.00341977619143709,0.011902266698383774,0.0741705554140377,0.03143205814502371,7.590088591266437e-05,0.0032616201606425225,-0.010200368781829986,0.052333895984265855,-0.006644385666899972,4.8986927548405956e-05,0.00761711482889154,-0.05466846079067571,0.09848715382123072,-0.03409865443526984,0.00027063667769763915,0.011234615568804805,0.041337822579240464,0.16381892778194485,0.05283547559488639,6.274771188292509e-05,0.006078204750093356,0.003653983408848699,0.04040631114172341,-0.02077724984469395,2.333182190930145e-05,0.0041180151858570425,-0.004543215629670784,0.01265785528101427,3.9852474317768056e-07,0.00012546199476894433,0.001884500396875674,-0.011872070773276549,0.043722848052725354,0.0054895109813328045,0.0004280022028162146,0.00882171173559023,-0.03562720391361176,0.1625968799978046,0.015775484217676654,0.00012549930698669022,0.00190670930008531,-0.005214705322110644 +2021-07-23,0.023631765489910965,0.15657190711933971,0.019255404438976102,0.00015961323897190766,0.011000466777963748,-0.0340673057447403,0.09387640137778809,0.018160393455624105,8.707467890219154e-05,0.019747687569460354,-0.022332090126011984,0.07536225608166032,0.005834849145485681,0.00013707955475517273,0.014009228764703157,0.010120541106437496,0.009399433970544335,0.001953854143485464,0.000363387419654337,0.005135666546989823,-0.007905242860962034,0.016841194077456594,0.006654268661283311,0.00024560664251709426,0.016851922462013287,-0.01172222306503472,0.03348722318711843,0.01112086846634484,7.64324154537586e-05,0.004815650776901869,0.04821974586571678,0.18316981050095243,0.05336201882935793,7.724331009490088e-05,0.007556880173400164,-0.04179383089119657,0.4321308145056799,0.06038250554145001,3.316618809330583e-05,0.004969728570136924,-0.0009021032813678586,0.0006130176068223801,-0.021872282047715054,0.0011348229257975965,0.016193512407058165,-0.05231849556263758,0.11593267383802446,0.07659362308728714,0.00015780155597021927,0.010091869142455596,-0.009558866244332784,0.005731311475336909,-0.026916433638366866,0.0008152235772641885,0.005336222278261526,-0.012491626429153756,0.1401386479857358,0.01080874955702452,2.656341174310241e-05,0.008940406853181019,-0.027999292413995888,0.0858176450881476,-0.007023256149418377,9.692180669257391e-05,0.0014895679371897872,0.0144678051877356,0.08886466978195152,-0.020059313385778963,4.582846797121496e-05,0.010491181099989364,0.019176361912780545,0.01892707069253824,-0.16747235040110858,0.001976085747541837,0.006669339923811673,0.006566527353569292,0.04116472500109988,-0.004514938816829507,0.0001312691421142998,0.026995959672969475,0.06998334073119343,0.4057578050966128,0.08124489998112773,0.0002670767110885046,0.01672072553826266,-0.025653869812116915,0.15173398137543093,0.033950027974362924,4.76245613882839e-05,0.0013867995324128098,-0.008686242365184131,0.05006996087922378,-0.07438920163399222,0.00028591800069833616,0.009220731969251628,-0.04590156535508806,0.5488750138168277,0.010299307774418065,3.470437811823341e-05,0.013415288071041968,0.008951242748138931,0.09630774529823727,-0.0004289062310087443,3.105301895764607e-05,0.0070262336263133066,-0.0025467935696292334,0.0074967359738366155,-0.01226052669211521,0.00010943198693190182,0.020091958876321776,0.04895959754884872,0.36442784338249823,0.0577509782211248,3.1032635784632525e-05,0.028617116008970343,0.0007586432206322287,0.0020688693855302506,-0.006059979428208496,8.129837977053106e-05,0.007650647789080779,0.009454383107428112,0.032939205290835924,-0.014141755192453684,0.00013124074146446998,0.0017721263603704635,0.006932234073266104,0.006019772612250198,-0.00028973168434358375,0.0006582163914787521,0.013591449760653643,0.029714402066671787,0.10670735014877421,0.009606875640869433,0.0001172083816097253,0.011006574862612644,-0.04257955991441629,0.1352255785730687,0.037922031620701534,0.002020977576304625,0.018538931771153552,-0.010270336682381863,0.08170662950708643,-0.03902528014482237,3.232284506155812e-05,0.012981905292792816,0.023676344846188285,0.06865383442936444,0.02284558451926683,0.001127511884688924,0.006630619796046429,0.024332421071053614,0.18658066049810956,0.003776810590604172,8.68449041918675e-05,0.003085626143213294,0.029188399448944382,0.04726055858972835,0.05200281094731708,0.0001457661948479463,0.008444775249202625,0.005530025113358688,0.007778349588536078,-0.04666812833211089,0.0004080783544642031,0.009352743212658639,0.004134957579520599,0.015020889871716642,-0.057775720015787055,0.002133662565100238,0.005776381159262647,0.01361784094581993,0.049183865484890496,0.0027268354569567614,8.883333560361138e-05,0.007597006079080364,0.01756397800384428,0.026667018986745946,0.0016342921843534462,0.001637289988332094,0.02032273341407126,0.01665414342208178,0.061375666452970865,-0.002144465799889851,0.00010750833004920814,0.002357636374084495,-0.002407119725536144,0.006430021741169695,-0.007286044147016703,0.00015175591462337538,0.013620346233935857,-0.006392659570759825,0.02936320580047943,0.0007068786438400008,5.3136388496718994e-05,0.0005413325996099143,0.029874086540251248,0.11619537137952261,0.004164838044226439,0.0024368223223201263,0.008829091637115155,0.01932371810579582,0.08180517081736631,-0.003199717982210469,0.00011750342029472645,0.01833748925507596,0.028395734558687998,0.13750865587430744,0.051302708393647804,0.00014975587025606258,0.008557299841353182,0.016807688159680242,0.09884330046113658,0.043305468095305284,8.042840239936465e-05,0.005615123819363583,-0.025210491152582896,0.11388568285651439,-0.11886609427062578,5.563647053739197e-05,0.007817557430399113,-0.017248410891545905,0.02840948096309829,-0.005372485939342264,0.0002960159988837772,0.01810043822194298,-0.013319129548238268,0.0566788184475071,0.011797785964227123,5.8434513252892325e-05,0.010542193284538579,-0.004492221307110798,0.0513318758001269,-0.0017920043107715593,2.2579030701129724e-05,0.008180658108760203,-0.0012127243980989437,0.00394005312676252,-0.0009848244069719121,0.00010758928013757449,0.0036064799649066087,0.013857924030002291,0.06416026476599841,0.023077241231925057,0.00034045522179366734,0.013228701933905962,0.0300179783757484,0.1651985404148005,-0.0024828753419548046,0.00010407514641652818,0.006431866824311789,0.002252851292854781 +2021-07-26,-0.0056543247849151525,0.04773577096389083,-0.09787097582258296,0.00012526316871044755,0.010423360925369338,-0.047394034825219575,0.13758086223119442,0.030048898839417408,8.265634230252155e-05,0.02057193211950714,-0.004338481142327117,0.01726866489834944,0.0008567374043049143,0.00011621873836584225,0.0004468432694806861,0.004351889722636406,0.005026527425943382,-0.02374907056740379,0.0002921982977522298,0.018819235689874605,0.031669091528698665,0.06121989686983429,-0.017382261993157067,0.00027067041191408366,0.004267679866444062,0.009594097974756565,0.028381550228713238,-0.017239489612998146,7.380992696810091e-05,0.016055578034030522,-0.00041924463689010195,0.0014325820402953167,0.0001595171823756954,8.586928932789885e-05,0.004228268889242961,0.011063991287019242,0.09759427784299324,-0.015342803483437488,3.887640383330844e-05,0.00024132121604343332,0.030918049713933284,0.02902366516227756,0.09140590389279667,0.0008214944292190301,0.0062855684415580055,-0.011786805016570076,0.026975734583732567,-0.002209367486352894,0.00015278640271283348,5.1312169912802984e-05,-0.0013722324124629546,0.0010187279896304025,-0.030797438310989723,0.0006584060196997434,0.0015040791941160025,-0.015786132205750657,0.2439255477375644,-0.01670342024224541,1.928595886690304e-05,0.0019120730874397556,0.029143717812111527,0.08097662731300115,-0.006179753130700224,0.0001069144254952818,0.001443740514396445,0.021709514296595255,0.12969415787335403,0.04961083268105715,4.711850602670967e-05,0.002737429389088603,0.03050422543622949,0.024243619306137543,0.049032989354604414,0.0024540619324699485,0.0015498694525601412,-0.010156502532820274,0.06781383591449412,-1.2157883268306293e-05,0.00012324746003935432,0.04172200322443577,0.05159911072566849,0.30217692050366457,0.03613146066169083,0.0002644168686973562,0.007145306934237821,-0.038347386437182635,0.28213506149545503,0.0012913656602910352,3.828597097995778e-05,0.013476892538007183,0.011780172412262688,0.06017276606579967,3.674427318000039e-05,0.0003226550585211698,0.0029322729300322275,0.014245066573611078,0.21620470686222273,-0.009393370681911331,2.7341955366519634e-05,0.026406508179824973,0.009591331169099382,0.10913672661198179,0.0005040222678210125,2.9362272980692488e-05,0.0028495912034371433,-0.0302448749014466,0.07818080334753087,0.043227308615269036,0.00012461617581416816,0.01314400175172707,-0.04322723340863546,0.34427252481812637,0.0148944246109645,2.9003302524794576e-05,0.006644276536686803,-0.0273892856948044,0.0857395461260079,0.15174781587734026,7.082342222033111e-05,0.006477853912464647,0.003649726501418763,0.014710195164569789,-0.004235358150663402,0.00011344633810111924,0.010225259336755234,0.0146653789406638,0.012930915658708124,-0.005672578155790574,0.0006482455909414082,0.007384481352375524,0.007193930781495549,0.03031498159740938,-0.00018429860146693767,9.988377667153853e-05,0.0031967165982045406,0.008455775705468314,0.03278822965164741,-0.0030170209551440936,0.0016552159436440796,0.010168851102354793,-0.05187422133836835,0.4587491674446671,0.05107481550322281,2.9077595915112137e-05,0.0024556440097424845,0.010492141560694633,0.0308404645555915,-0.003480682739083258,0.0011122809521485434,0.00017004553742309102,0.014307499619419515,0.12126392031929502,0.0011315482074778793,7.857018611930794e-05,0.0013672862643770139,-0.017343884780061887,0.02390279388205293,0.0007421872556662923,0.00017125493667407313,0.0017433151748887238,-0.006464792748103666,0.007951139533348209,-0.01250951522191734,0.00046669069887686097,0.006075143451495655,0.0578906341029497,0.23672985084608866,0.08506998151550868,0.0018954207176447601,0.01433925154787462,0.03610714921417662,0.125542350053543,0.004516814458960561,9.227696818539904e-05,0.022610539327345826,-0.016319099838196894,0.022477438304771193,0.006105160353277036,0.0018047895882649903,0.023517641003106094,-0.06434097071921398,0.19879560368245447,0.09929420752387105,0.00012823213394019855,0.008701385497872036,0.01227302886933236,0.0334924347267027,0.0008346560308321661,0.00014854752225119155,0.00428019423120117,0.012241587332622943,0.05103830045961905,-0.01120580242325042,5.8540369052883683e-05,0.014757826370885255,-0.005606967878669532,0.019317806350161,-0.017435465057925925,0.0027509856048930532,0.017715024370985072,0.04372623056808346,0.21651819854939267,0.08472737844836697,0.00010045885088930274,0.008209598859877133,-0.016643076062692667,0.10692377622600784,-0.050299759445884905,0.00011288080400918443,0.02846811716556202,-0.031204934682417258,0.17690528086674126,0.046093611949083735,8.343171659132063e-05,0.002642847103629411,0.013789845814455652,0.06884981720680461,-0.028193506685706134,5.033893390231267e-05,0.015567642657052148,0.028389318378218443,0.05954771235146481,-0.08273980898060762,0.0002324445016218233,0.009924753788594509,0.02260580475104658,0.08839259629053905,-0.053566784257525334,6.359433902816412e-05,0.004878185379111365,-0.007857723160508399,0.09627070132006411,-0.01066581655187247,2.105881230334533e-05,0.0005250984070641527,0.0012160369214763223,0.003287998956677421,-0.025090571096247155,0.00012927783033017353,0.00925465689513902,0.008445131711437412,0.03651582096579609,-0.10050844349684519,0.00036454683252802497,0.010775296640054072,0.014504876552175666,0.07112721952966083,-0.08671771848879033,0.00011680192520451827,0.015358484991882885,0.0015679703250869375 +2021-07-27,0.017669001961335102,0.13743326962816288,0.023847085767086638,0.0001359586125853995,0.007954020757495508,0.05745863048204447,0.1785825589791652,0.050615486627147974,7.720168070536583e-05,0.025483867618408967,-0.014889044646894821,0.05173787197574051,-0.009244778065798402,0.00013312372915529774,0.02076747982483812,0.038918558575644656,0.03761243812016028,0.05862119292090468,0.0003492151826255962,0.009779865357990823,-0.02984504791654689,0.06319495659120382,0.02766640988116685,0.0002471084706843132,0.02629950611754022,-0.0042093659376712025,0.011827456000690248,-0.005709180154712371,7.77091361420164e-05,0.000921095020909741,-0.01663621470272478,0.05386520951660333,0.008895144756346342,9.062249572472531e-05,0.002320666468601778,0.031037092148873374,0.27334763773949927,0.054909600060281324,3.893716388114502e-05,0.00011689609341651916,0.027449560365391385,0.02000976147249695,0.0503009212466843,0.001057884534566997,0.005364878852772598,0.012708692694389448,0.024524498246632637,0.025140229147752224,0.00018120185272035082,0.011883395902290072,0.009284028822188784,0.0069478279563548245,0.00676474410671101,0.0006531482724373591,0.0028207859596250163,0.010554601354735333,0.1196802492320009,-0.019776748562571653,2.6281015309365942e-05,0.014182392663411298,0.022690775761044953,0.07075664489825804,0.004227032435558646,9.526495140351072e-05,0.006241317440478691,-0.012305162565312375,0.061843872294865994,0.015449779640733553,5.600831397430104e-05,0.0004036002866174207,0.032979172061740544,0.028626870393646753,0.05948762762827094,0.0022469264122637815,0.012335267328250236,0.05041458108527886,0.3802192957326764,0.040488960394662606,0.000109112402268525,0.012732185599999214,-0.05286408097511927,0.30689416642826967,0.024707686292564184,0.00026673517149420186,0.019414336966844515,0.016536820179456325,0.107266807095995,-0.0014133371749072438,4.34257778471854e-05,0.012968685401434832,0.046177504706069246,0.24284701459387348,0.04037419188010708,0.00031338954206339495,0.005731824548604525,-0.008902552489724946,0.10784999228443251,-0.06397709356004555,3.425505395130274e-05,0.022824141973073326,0.012299473883098152,0.12314107199199101,0.006159770101398304,3.337069977104026e-05,0.01439933382213297,0.015830213054662933,0.03849626086106308,-0.06641712023254684,0.0001324618960456714,0.02474394332477763,0.03307553950523505,0.2254615435956344,0.02173339137316957,3.388650954023652e-05,0.012421295681665447,0.021212658930541226,0.0620791479911403,-0.07544166246791395,7.575769348579604e-05,0.0029639713049872795,0.006759539183724768,0.026212476033259643,2.0712466866658832e-05,0.00011791190043490036,0.002576723724131977,-0.013962876750923787,0.012600478210845862,0.008447790389901386,0.0006333786765726202,0.00844699757163608,0.025404971330552577,0.10642945853905324,-0.011764008818705294,0.00010047149523131819,0.0032417977598017482,0.02238408313353403,0.08246388405976028,0.008041869395378964,0.0017421867182334592,0.04303682319843806,-0.00959080276449894,0.08584752785916272,-0.021293792506861753,2.872826258529501e-05,0.020547788947612333,-0.01373904966919542,0.04069249976787565,0.0025883931174621347,0.0011038589765992417,0.020414060479217608,0.01964404879976091,0.1623794731145346,0.017500121127774063,8.056112451369054e-05,0.00749318665470195,-0.01187503407960938,0.019372774719290393,0.005324237864544114,0.00014467331162521104,0.005057725666058442,0.02903423024853757,0.04228334119105604,0.0028224982294783696,0.0003941349364804656,0.015499699162016822,0.06448620990386866,0.24890907477394453,0.048505434225542064,0.002008058973728597,2.6353076113176752e-05,0.028910815891040036,0.11013072025415609,0.004653434905566334,8.422523646407227e-05,0.0030532993093290986,0.043906432320427166,0.059372339092311384,-0.06522968741975707,0.0018383202955900417,0.012946851896999113,0.0013112886035621186,0.0045091979480873755,-0.009639365296057821,0.00011521659134023027,0.010481322700891402,-0.062430968384522216,0.15098501548303164,0.03927596999023669,0.0001676202946317982,0.018490984786566564,-0.011614139958554894,0.048943742591750265,-0.023399675382871025,5.7916699498904233e-05,0.0013485589854366196,0.03712642008908501,0.11682804197001342,0.02723014217059643,0.003011993528339543,0.005785591333095052,-0.0011496726563401706,0.005788857277472081,0.00031273721082256643,9.879203481992055e-05,0.0001972694872250354,-0.0038206418624982834,0.01943236302585186,-0.0022853591242717,0.00014258423148239406,0.004481969135946253,-0.028623460222842942,0.17356098936864484,-0.008132820422454915,7.800433073917812e-05,0.009697789567274774,-0.02453021953110412,0.11194153489560164,-0.03214037375930037,5.507538887954423e-05,0.014067863869737372,-0.08057694957630147,0.14798632446905488,0.19726990387264087,0.00026547194545781483,0.007639126115307803,-0.0059817906923548304,0.02289125304644531,-0.0007102243542573119,6.497944869200906e-05,0.006138832733570901,0.002163031553544276,0.02261492845729578,-0.03972061081484931,2.467737280535816e-05,0.005731450510503683,-0.003623164267129621,0.01346265180064645,-0.03386163372439532,9.407329931944764e-05,0.00861704051796149,0.018533938364775068,0.08001488823023704,-0.007294572828839487,0.00036511097051068303,0.0006672270161172909,-0.08573661320772805,0.3574766767823786,0.08243344696357072,0.0001373695286067732,0.006297195048094555,0.004656037406516242 +2021-07-28,0.04509035800327044,0.26702234677683084,0.08645332344247521,0.00017857582242640488,0.006148105308245453,-0.0184705612413554,0.06200241748808195,0.002510193533030301,7.147958057543735e-05,0.0060067146453954,-0.05531141940912447,0.16226381466909376,0.07332100946500937,0.00015768497966007396,0.010752981739728133,0.011454685246175803,0.013275602400466829,0.005795918748940254,0.0002912036266713073,0.021233441233339888,-0.029457765419741107,0.06640242031672978,0.04323830279444395,0.00023212058819094543,0.010856922457185697,0.0034165193729859627,0.009016735725878283,0.0002637126346157541,8.273347888760268e-05,0.0009671788779436559,0.0014173581326745904,0.005542955135144134,5.671181173546784e-05,7.502881577698424e-05,0.017862104192959614,-0.02927096812911872,0.2543236698844037,-0.03128284828966462,3.9468345338523784e-05,5.0729504803397984e-05,-0.012983300263411329,0.010856116818550076,0.016251005616971223,0.000922264261655105,0.0014105772432097174,0.019269334282813,0.04118267708216667,0.02256627576090382,0.00016361157401269691,0.016802605631585216,0.006110945876261914,0.004642578739013286,0.0001163188559840585,0.0006433888308231115,0.0005026091060905884,-0.007125994930986837,0.0797099519133207,-0.0876487745010759,2.6641320755357596e-05,0.005707873862030532,-0.038658911096233976,0.11028728348596312,0.07817786548859067,0.0001041298434187443,0.006788835335234273,0.00012459315538533583,0.0007423776567599671,-0.004789519701738942,4.724230841540765e-05,0.011200390035246978,0.008380819227684628,0.00653160393140789,-0.0049860152563829035,0.002502589418433761,0.0011125047127106145,0.01411512996670667,0.09367692092151449,-0.011676001167118822,0.00012399505959586455,0.0010258175360580248,-0.04112675327750537,0.23111949201846593,-0.036815168261399356,0.0002755472514946709,0.010267451609376546,0.0039024270741515013,0.028707106272750655,-0.022045587878813167,3.829184876299445e-05,0.0014148770384826593,-0.00843037906729926,0.05007232295151463,0.00032501981175472823,0.0002774828654952244,0.0009854376994502371,0.04457921310517094,0.5040398910317995,0.023441624460082234,3.670267520284232e-05,0.0027270885333092543,-0.024387228399258554,0.23184916746309975,0.08604102831701231,3.514298231958383e-05,0.008562887806416113,-0.029775333293240315,0.08561259814075602,0.011700887887961163,0.0001120319022738379,0.005242348020249401,-0.07860465403735609,0.551852127965756,0.058328388110860066,3.2901667954224974e-05,0.0012686911670214637,0.021756540310611715,0.06815479745219717,0.04407974149309965,7.077351841847168e-05,0.00658906774105661,-0.007052882933719493,0.024486173103077574,0.015607835844861239,0.00013170260209498336,0.0019789854336028398,-0.00982973519092192,0.010723945114036845,-0.047743777064079174,0.000523917369723938,0.013677729543811717,0.01671133854231305,0.052477866580210385,0.01120032282206353,0.00013403588165459627,0.008539445772234956,0.04395821984843201,0.19057831363368796,0.03052788327990382,0.0014804228909313013,0.005768525138292249,-0.053304904157117756,0.47549420251990676,0.04868525752857566,2.8827311165262746e-05,0.023009064588734723,-0.024126065049404528,0.06365468297899356,-0.05298971598347809,0.001239160053308391,0.010582440613113739,0.015081131289542169,0.11560533545334549,-0.0655903451186747,8.687237318040772e-05,0.01151562628130035,-0.025660307683846112,0.04026358647674585,0.029618615562949396,0.00015041626095540987,0.0007972416188467032,-0.028278622169229498,0.04315212658590244,-0.0011737537534611178,0.0003761490385097893,0.00014364489680295943,-0.005680349010908034,0.024208275476610894,-0.08123664865732928,0.0018187018509551736,0.005919429738248622,-0.006019280298569333,0.02321956684557257,-0.01987477485820848,8.31727046036881e-05,0.001143411968149486,0.04452521203766572,0.07463091377053799,0.016153912982028784,0.0014830794903568727,0.0034277218069323715,-0.06100627213829179,0.24123823713364537,0.058369968171877167,0.00010019461435964441,0.028859226800378716,0.032426488357052995,0.08843654489531871,0.021842622139351373,0.0001486375465994721,0.03548666705557096,0.011236633908263193,0.050355730419295266,-0.026100049500272695,5.446296198105581e-05,0.007523515524334371,-0.02240011095586229,0.07395868981331563,0.020693652746427347,0.0028706418933191103,0.03087482940970746,0.02087633982897223,0.10775196569058108,0.012062591266086328,9.63761840813501e-05,0.014190656480209425,0.033758584940639526,0.18979202702977205,0.051435170316688726,0.00012899327055464733,0.008135764432049108,0.03443719322150464,0.16190019141410267,0.1201948015987846,0.00010060720499592252,0.013072997280868526,-0.0014317127768151158,0.005520578514551388,-0.09139504449858683,6.518065264996175e-05,0.006443002953456873,0.006076299011770629,0.011147546234656767,-0.009510690505031316,0.0002657597759328829,0.008703577141587801,-0.016737526254353496,0.06776651752358591,-0.10807708831618287,6.141726588425786e-05,0.01453254947302891,0.002582952884748632,0.03143266909765598,-0.002710197831403593,2.1201496142910273e-05,0.0014715280475798783,0.012417953686523696,0.038266374545762184,0.009649844076724472,0.00011343359137659198,0.0009013123443055486,-0.01935395606524882,0.07682630103761756,-0.10056770902790066,0.00039708894650819726,0.011383440983042253,-0.037760193870920396,0.1660733573228223,0.01746740889800937,0.00013022850231121926,0.0028037327202514676,-0.004671105163487347 +2021-07-29,0.045708693814244,0.3021377964839079,0.09125373947876864,0.0001599853947814453,0.0020302009384362244,-0.00391747934762398,0.012922717196298204,-0.03137081918948723,7.273834274590572e-05,0.013092155167202966,0.036902718123035826,0.11989214582499523,0.07821289398365361,0.00014238519264467056,0.012576054201678184,-0.011126664621297364,0.011613935838707746,-0.03799286762178906,0.0003233355311934295,0.018592676472535007,0.014603764040159083,0.02973690280409079,0.00570864491245047,0.00025696078254236227,0.010291141044887047,0.016048708781172476,0.0407572035885002,0.016860801430277052,8.59770337148249e-05,0.00015023123913859545,-0.01184559876352773,0.03688554750542545,0.003653757920389474,9.423031415473068e-05,0.02814140292123792,0.0003377810854590858,0.0029185481465408376,-0.0782810582044,3.968871877500134e-05,0.013466153501917807,0.003910358661456597,0.0031079929613984673,-0.0007309026543281412,0.0009702448654421675,2.3608539158742007e-05,0.0044179300761003956,0.01274545677728367,-0.021911479418505977,0.00012120633510776713,0.0027443348565584767,-0.003998161280852529,0.0030110232031548743,-0.003316583321753553,0.0006490386580963473,0.003333815903584784,-0.002547782391266823,0.03521853447247923,-0.01716450107584495,2.1558266740839665e-05,0.009087648682546148,0.016376486159121066,0.04011082854297562,-0.004333070682007039,0.00012128584752970378,0.009484548737192185,0.0032901483027431206,0.017891233223247108,-0.029507278678114927,5.176509500456823e-05,0.001187176537525535,0.0044339345075962815,0.0033551136006620746,0.000829432931140013,0.0025775376459405506,0.009456432555184474,0.02397182113362701,0.16307196559887516,0.009335636144800182,0.0001209689275082938,0.003880860197225196,0.052074370103386405,0.2756126173195899,-0.018572933733383944,0.00029257227044537107,0.02769047347323305,-0.045003346691599964,0.2821696943153824,0.037125451922512355,4.492575659179775e-05,0.006261860206665577,-0.04847186053314893,0.28967314840409053,0.01828864628195009,0.0002757834865062656,0.015954529823286955,-0.005555781159778339,0.07817529944652057,-0.00018538180520829192,2.9492107516851398e-05,0.0043040604447043,0.006601209899097171,0.0781751526827277,-0.16842645935191503,2.821217136850954e-05,0.0009297962421826817,-0.02210962768014745,0.06489180069527133,0.016824959446874534,0.00010975248427928414,0.0318083505227626,0.052783326139168585,0.4089015417806894,0.046646140576183596,2.9817441907478234e-05,0.0009674293940616908,-0.0026154870824616635,0.0064319851619245765,0.0008786861163051214,9.015398492910472e-05,0.0008783530424699617,-0.0018042036683098804,0.006840891521713509,-0.04833315685072781,0.00012059282065089198,0.0010059576888886233,0.02446816201361763,0.021311254280137384,-0.12814534463403549,0.0006562478564734185,0.0042934347569893935,0.030711248941052153,0.09974296954972914,0.04380155970362251,0.00012959886363774406,0.007394216279017551,0.015841500358215715,0.061010996816065546,-0.011087494949091973,0.001666507856842113,0.00762760646045102,0.001604825137599215,0.012617136199504969,-0.0433350605377027,3.270763348505278e-05,0.021631294044860624,0.010421933558299847,0.031982642760117405,-0.021968189927608465,0.0010653816757970243,0.02314594734330606,-0.022375432231009153,0.1776535931007731,0.08822382520690597,8.387317452921416e-05,0.015974676526007866,-0.012166196373570675,0.017840916015849972,-0.012889286951590247,0.00016094706431893095,0.002007209630666435,0.02486314429255015,0.039215810562337076,-0.03048249934297997,0.0003639140039579636,0.004480738321451097,0.015463222353866535,0.05249608307861761,-0.01054314278032895,0.002283092154696411,0.007046593392737088,-0.0042121681672992045,0.01650414494628575,-0.20601868083343147,8.188475293101779e-05,0.015779433345822397,0.010112333325003438,0.012619374549001175,-0.017306943598727097,0.001992006437943751,0.00897127286739844,-0.023334151737863837,0.08407062050694583,-0.059137732030386324,0.00010996736058401391,0.004602058860261416,-0.013871491012089855,0.035085156543054025,0.0013636551727251578,0.00016027290262848277,0.024585979514831977,-0.050775345821156496,0.251546032472583,0.027297489113841212,4.926623149875515e-05,0.01876334799606938,0.006222691802178459,0.020636730283879818,-0.002607966050196661,0.0028579554954675517,0.004780234321173973,0.004377729234731833,0.02412381093949639,-0.021288562684325062,9.027002259774116e-05,0.010254711647937514,0.00454391227692269,0.024232171722124433,0.0012661315798124899,0.00013598731059594592,0.010684453052054734,0.004921659382744342,0.02648464556619109,-0.01045444369899356,8.789538792965491e-05,0.014492315716193669,0.03157191837438697,0.12795483462263105,0.008485317578329455,6.201427436930208e-05,0.006469251307906126,-0.027764903245536626,0.05190980928601489,0.012976620824567135,0.0002607811073676342,0.00893430524513896,0.01106018007350215,0.04333747495083964,0.001738503978079919,6.346188534704535e-05,0.011322654702593003,0.011302195364300565,0.10431636626331195,-0.017377620604771347,2.7953850937149935e-05,0.01908189177814671,0.0053059568594999,0.014983084055194287,0.006327627560224838,0.00012378598112376544,0.00219207883276567,0.012773394852247372,0.043253558099744106,0.027614635626570117,0.0004654922655396513,0.000785750370637839,0.03003939596571513,0.1475016863376416,0.025027933447269776,0.00011664496740688616,0.04971715318995998,0.003621735866944795 +2021-07-30,-0.02815686383563116,0.20909699885261548,-0.029998815522019554,0.00014240428745255297,0.0018959234229170578,-0.011421809715757628,0.041487229051075214,-4.4580586872644865e-05,6.605885140563273e-05,0.0023269447730078045,-0.007791012661517263,0.02993331772788538,-0.005346078433947021,0.00012040270918584794,0.0033395598832475647,0.009411780866008045,0.009249895036834528,-0.0030178840228773434,0.0003434020304146757,0.00021603145144437493,-0.009924588373576586,0.02187076293682911,-0.012360308574371218,0.00023743587706436792,0.02694376306888265,-0.02413056514910437,0.06297615778718374,0.05715088184185081,8.366389369892021e-05,0.005994300016195223,0.09416850259353868,0.4005376202586435,0.15196951004884193,6.898460892601507e-05,0.002874249942799905,0.010400566609422233,0.08995307585231312,-0.0119492785141648,3.9649671731648007e-05,0.01817237775200639,-0.003446553721515305,0.003302662311408076,0.0017784306884772788,0.0008047586777218083,0.012216764624493687,-0.021120994026232555,0.04607936315560831,-0.010131622733209928,0.00016027647114369054,0.0004321508670372398,-0.0190434472976676,0.0134447902324321,0.04285131642808704,0.0006923343760809446,0.010334377524185843,-0.01876113237587302,0.23005558320061048,0.03263186355176443,2.430239411637448e-05,0.006169179105113277,-0.031026881677351334,0.08939079882784985,0.012433983423522327,0.00010310894638221205,0.01055667679245423,-0.005631620194806826,0.02813545622494952,-0.001581396450282372,5.634316175200849e-05,0.0006089956751133089,0.006639800629486259,0.005281922721210613,0.007976225827633595,0.002451805240196649,0.019011404259040087,0.008542655824707519,0.05597644811746535,-0.021585279640567043,0.00012558555220413084,0.013454030398017416,-0.003100379670343614,0.015824857259044645,-0.02194157483521552,0.0003033774600984516,0.013084335297773881,0.0117600244692043,0.06943782859883015,0.0009784772337316772,4.770600505767537e-05,0.003542113054357152,-0.05625228337368557,0.27007741493126236,0.05927289526595446,0.00034327224889779283,0.008335744366373004,-0.03162086374251761,0.48082127634079336,-0.004808264718065987,2.7291052386712637e-05,0.01588954682450191,-0.006890553081767425,0.07866054485379395,-0.03509056479907032,2.926704271843755e-05,0.00697050244857805,-0.004720553496673899,0.012922256248270772,-0.0006649388746741546,0.00011767313683968277,0.00805787285212192,0.030511968640323718,0.20256629491055314,-0.001664166386789113,3.479328390543574e-05,0.007278038271887798,-0.0002581490020972692,0.0006900861080176096,-0.0015257104261168228,8.293627929949997e-05,0.0027062430247961535,-0.011243071865341927,0.03930418210819655,-0.16434622272580918,0.0001307961073116958,0.0040299514343026845,0.01194748206674869,0.010959174424906081,-0.002819323634855955,0.0006231234703320692,0.015582560700606487,-0.011289981520310022,0.03647880491790516,-0.001752374373839813,0.00013026826776238562,0.009557101111134308,-0.025426285339298155,0.0893229317779482,0.015531678817674421,0.0018270024173331191,0.0005577182856314304,0.002727009294435817,0.02904504316906347,0.0028531487396879695,2.4143308686885436e-05,0.032415581571751555,0.02068671121867484,0.055176829165211216,0.018705940060517862,0.0012257615164100177,0.051514064968659935,0.0188318633150791,0.14708953494376067,-0.009415917739301394,8.525839676242953e-05,0.0034658686294608857,-0.0176371582584278,0.025890526738574938,-0.075740838197494,0.000160780402653015,0.009871680977267039,-0.047771346484123234,0.06909668739666787,0.06871434842182346,0.00039683883790306214,0.012167687310173956,-0.01564572116085729,0.055665099398620715,0.04672586114462495,0.0021785269568120845,0.008994349158835001,0.055841955466164606,0.22213070687935837,0.08166339555289932,8.065706038103445e-05,0.012950249341220929,-0.0072590427102227715,0.008450361234725437,-0.025518605903227475,0.0021354099843543415,0.001839712635887538,-0.013291256743661049,0.0295082294826433,-0.00228400860881069,0.00017845919576119838,0.015214554163621552,-0.01847665036727914,0.054478180947560774,0.00041441419113840414,0.00013748680478297597,0.003977191611559997,0.028520917446774964,0.11944543422899301,0.03416107383457943,5.827843261402547e-05,0.0008707533055171868,0.03378796702181949,0.1109470761283491,-0.07272009866706944,0.0028864514570914094,0.004398644066481803,0.008455646652350888,0.04459645876670832,-0.03487553825675307,9.431635805471193e-05,0.004747878304206317,-0.011108520903351501,0.056788161205102945,-0.003269959986362688,0.0001418597579496478,0.00658743996729088,-0.013869928273289062,0.08659504042008527,0.0025720551303603963,7.575824313399452e-05,0.0070639220227371275,0.01706743283869858,0.08104718274916436,-0.010236682788463073,5.2927048293697115e-05,0.013565197046280656,0.07165331074403923,0.16833684333532428,0.10978376084640562,0.00020753267161049936,0.026103582044529255,0.002093274376043405,0.008335317146919364,-0.00929633095471125,6.244798136786301e-05,0.009775692327903079,-0.009751610825678768,0.11645126839638646,-0.015278246412029566,2.1605455311038168e-05,0.005943156628173632,-0.014489145006658082,0.04550751787276305,0.01960043050226891,0.00011129318596999042,0.006570655433624439,-0.008358128272954022,0.03477996537685504,0.004262144550681009,0.0003787981572403083,0.007273882890870953,0.03353713549326261,0.13435582969473375,0.018142504299408873,0.00014296879153652382,0.012455622357743404,-0.00035290814594403537 +2021-08-02,-0.02117297817374313,0.14819874208452707,0.008982651417167947,0.00015108592797815474,0.0005555593904542279,0.015832657418283703,0.06164559268691489,0.006395754452096233,6.162576292978533e-05,0.01615809715256921,-0.02216141902042472,0.058309223387144594,-0.001164404560238803,0.0001758156427315238,0.007192362576203511,-0.004795212092698277,0.005470713645984606,-0.047751106591625646,0.0002958228345096164,0.007568266795369763,0.01202479220393396,0.02514319245133788,-0.0002140489606718373,0.0002502389637536291,0.0001553910161623531,0.028705578513203014,0.08481130318995006,0.03427848942737344,7.390253011262242e-05,0.012634291862207768,-0.016993471730874028,0.059048567464440885,0.009761680810703709,8.444279556340156e-05,0.01215033887162921,-0.014619069771434597,0.12238773828434166,-0.060249122136647744,4.096193312411767e-05,0.004048518520369898,-0.004933872136224476,0.0031596119541735315,-0.013997793478683915,0.0012042008479637811,0.0037418548898870293,0.025983366352623435,0.05736627777318711,0.04036688831098631,0.00015838010684617116,0.0036939137541634874,0.018888634559866807,0.012984588050491429,0.03328920065897855,0.0007110444433510114,0.006422889015737062,-0.009131802318598899,0.10958972881150464,-0.009062701908430015,2.483187072737694e-05,0.002443317716664708,0.0027246998205351126,0.008382708386515005,-0.026993202519848433,9.655735099711227e-05,0.024539773538568035,0.0015943796482838773,0.008699708347863672,-0.009318080156731606,5.158802088887177e-05,0.018107718373340603,-0.024634686123548237,0.023324355990415685,-5.217939796975267e-05,0.002059967385791161,0.011910018021849928,0.0008789256877086432,0.005891447163959155,-0.01902027693480023,0.00012276717943005173,0.03182170205581964,-0.052858218065425115,0.3148836586693936,0.04646914334906913,0.00025993851127517295,0.009931001063100745,0.005255273932944319,0.0318970976307861,-4.698114042692882e-06,4.640931379384669e-05,0.0020603900353568785,-0.02466165219764,0.14107849759742433,0.0032041057167975476,0.0002881032450822588,0.025435817111333463,0.01261799527884203,0.17827999538195594,-0.000887448725372571,2.9370948899052695e-05,0.00138837591509487,0.02743720441158143,0.31021575648428557,0.06167505810709718,2.9550015647174e-05,0.0016471600876094253,0.03794753053257012,0.10540800440077312,-0.025394160484966868,0.00011596653571067113,0.007006277390569585,-0.0639109608321429,0.413864255193991,0.019240332388284074,3.567054987040213e-05,0.03811925356173823,-0.01942424151882931,0.05666604043498082,0.06576626329237463,7.599737374041277e-05,0.0013148341694736798,5.3810321330581685e-05,0.0002110213705090283,-0.014414118332277492,0.00011659709811346323,0.006088669400661742,0.031808137918095454,0.03168800113883102,-0.01636001166601179,0.0005737450638727543,0.025590817968990556,0.01548809179177205,0.054492770990141326,0.007240788245769714,0.00011963135735598128,0.0010214922751408144,0.00361144126853589,0.013226820945602872,-0.09170986539311801,0.0017524444354744054,0.001301254092570312,0.012745894615647404,0.1063414280783719,-0.0397157084651186,3.082123454607245e-05,0.0002626657515715121,-0.00967230753633835,0.0296371994874309,-0.002170634578425097,0.0010669994684941093,0.00988234701259198,-0.03281503608027358,0.23066440224539475,0.12066975898798933,9.473663462893043e-05,0.009353899527350383,-0.022516319077470173,0.03533659113671937,-0.02019990103756755,0.0001503897125241887,0.023241632686560636,0.043310163844071825,0.06548567856590339,0.060084727459520954,0.00037961853464713946,0.002504998280053615,0.022543781025394304,0.09691396325001068,-0.011104188767280379,0.0018029793153518825,0.023125398400010492,0.026766606297930276,0.13481049284090862,0.01760709307857202,6.370301463808664e-05,0.04352572599722376,0.024714857787239232,0.03800398458418676,0.0023660768479945725,0.0016166134001786411,0.0035061118545276883,-0.03886728734323851,0.12943276853675953,0.005260463742035045,0.00011897508584673812,0.012177771157932872,0.0007818822130946126,0.0017943064521657903,-0.0017389446748491027,0.00017664652192375552,0.007739149357689281,0.026661810571448116,0.10075239413441778,0.025789927489321816,6.458745747990899e-05,0.0006682966230930078,0.012230343379853832,0.03630270023975347,0.0011759135940065185,0.003193138666841903,0.0021614454926992925,-0.0065731718814220075,0.03230720278157215,-0.07855099802842558,0.00010120831673302617,0.01837479932150142,-0.051499906872686164,0.2843638570620956,0.08013425283629401,0.0001313387358423058,0.003255513801570417,0.01905313362648657,0.10526408355804423,0.018148598962358282,8.561205035801877e-05,0.016044273945802046,-0.010427452396924193,0.05460176474410706,-0.02452183790274021,4.799753470943341e-05,0.008191657918618705,-0.018532562996339097,0.036501820014461096,0.0025309086635971266,0.0002475428346557979,0.0119015633607627,-0.012225386792118865,0.04968861413178599,-0.0059543611486338665,6.118149716043791e-05,0.0027591439994664726,0.024131318112192945,0.23399446904646834,0.03682692548994912,2.6607663419871415e-05,0.002168114250508905,0.004303770032364806,0.01619721314116938,-0.014975125026370249,9.287904143128935e-05,0.00015346879729409785,0.01026961572395499,0.03877191824996875,-0.1890152705506361,0.0004175080712871715,4.946169271874065e-05,-0.019783141389145054,0.09386777011823944,0.0033125656535300894,0.00012071202898162396,0.004134202304542248,-0.00041229089202074215 +2021-08-03,0.03469156819967273,0.23840251954710093,0.03936160083611718,0.00015388619987923867,0.0259393270978908,0.051120956815259085,0.19274818889898376,0.03129770143123456,6.363839154289013e-05,0.011094696948619694,-0.033847161068996094,0.12792015609958018,-0.01159388303730094,0.00012239973340596297,0.027328745986300133,0.022600351305834855,0.02192298594538643,0.009527825956373493,0.0003479231613766559,0.009424330261720223,0.02431744672563528,0.047535859743187026,-0.005148541215539714,0.00026766672940262777,0.007068029043073742,-0.0019386791897566017,0.004340112366298424,-0.056705810153845515,9.753302962189927e-05,0.0024955771882485163,0.01033492944932999,0.041643909157949396,-0.00782220918164366,7.281919625139406e-05,0.024146160405189476,-0.008083536748388624,0.07094303355781269,0.0008408773593740038,3.907421630435524e-05,0.004000467271897502,-0.0031568943707873166,0.002722347601961454,0.0004484158023575787,0.0008942547593334725,0.0014641645704043913,-0.019583167672825436,0.03922586926195107,-0.02208164256116528,0.00017457106132851488,0.0017254908608769271,-0.004224214795458489,0.0026038131178368028,-0.0785835104960478,0.0007929769087802824,0.011333891239839761,-0.008894941654760968,0.12621665678664906,-0.015349416581451404,2.100144709902221e-05,0.004170111877587411,0.07695838166265759,0.20925960579648112,0.12507735577018234,0.00010925002913606654,0.036896864133817354,0.002696042988086739,0.01444750448418107,-0.01646185289790725,5.252859601020925e-05,0.0002880107271611046,0.006385832558095849,0.006252911585770314,-0.007917256984683815,0.00199185725324869,0.013213424017191385,0.03594888980398533,0.20816593220224805,0.00027588496246756675,0.00014211107832901037,0.02408382520692537,0.034776436722077704,0.22411320306414617,0.004483033325164718,0.00024028456286289462,0.0374925903542344,-0.06368175048911064,0.3955521123244171,0.0323552516579871,4.53494726019138e-05,0.0069046305835451655,-0.009433300145651888,0.043036184174995266,-0.0049839305203063225,0.0003612573592193472,0.008472302742829,-0.017261796041734338,0.22129638516655745,-0.0375138322043944,3.236993983970094e-05,0.027963726439295948,0.017428163923220986,0.1887100169707835,-0.012310422186269189,3.085591230018442e-05,0.007678652087267472,-0.03361561154890368,0.09703000059138915,0.04369832345016174,0.00011159834094826445,0.02247067550118095,0.0038078814995674997,0.032888785821448566,-0.028716454121159616,2.6744098322886782e-05,0.027480555529758713,-0.006759141169077214,0.019543544102673543,0.00021139789402103306,7.667708183081827e-05,0.0035859309530031913,-0.01011917867811387,0.045694107611430404,0.05253763712584296,0.00010125900601971983,0.004120457784572113,-0.04197855065846855,0.040196749477266105,0.07052451109424464,0.0005969144143373069,0.015513871297550153,-0.009774730223118826,0.03345794772378876,0.0031179236831507416,0.00012296782479304149,0.006385910471894983,-0.02026083674173557,0.0786385419651178,0.0033195818715635286,0.0016536404957896939,0.035207356810228234,-0.02210036240252006,0.19423021794522075,0.00282104813361601,2.9259358025860825e-05,0.024713574534649826,-0.0043087289372258225,0.012961632391810264,-0.016055773888438398,0.0010868278108056668,0.023817327730197953,-0.013094303264932078,0.1258970686849684,0.018920728309546147,6.926158404877981e-05,0.007396503469249283,-0.0029768702454446927,0.004714519511889222,-0.0003179655166126139,0.00014902799343972632,0.014130753446875689,0.008836118983194427,0.013629087897449446,-0.010016967253716135,0.00037213342205852547,0.011755848327664757,-0.03189086163625581,0.12475428451999843,0.08627152128606111,0.001981349659660975,0.023452672991279216,-0.01715932223826795,0.057473931752288356,-0.0015986174505226924,9.578987190260116e-05,0.0029007634975046215,-0.008027031030725502,0.010036951088799389,-0.04290122297782761,0.001988063838565967,0.009849136129221827,-0.011194778687209028,0.032364566577271284,-0.0021636697478347104,0.00013704454504199722,0.01222834743890179,0.01950911873259578,0.046257245693498386,-0.024992536763216052,0.0001709693490053948,0.01706201374692947,-0.09391992409077735,0.3277577570548801,0.22348173463831675,6.993888092305846e-05,0.025774093364552483,0.030573567124701884,0.0914794368412642,-0.0285164176897211,0.0031676755167748057,0.022178607235243588,-0.0034210063754794755,0.0168778267662307,-0.0887842398379912,0.00010082725163310807,0.0001484709902973382,-0.040720753214814054,0.20896612868520967,0.04027780905717834,0.00014131904370794958,0.008470686391350148,0.02608160479843872,0.16385136711559775,0.04832710750895554,7.528924453554907e-05,0.009016911599217596,0.046896702603627834,0.22255607829280843,0.07720439468823662,5.2960276359695566e-05,0.00316903564923609,0.0029392881982140437,0.006937090059575921,-0.007380127764486645,0.00020658283461094526,0.001716070121365862,0.012479803997155299,0.048839649306041115,-0.0025305485334432398,6.354035012795413e-05,0.0022557547239607594,0.039557721050272866,0.4454097644421016,0.0877011752353704,2.2914100603410176e-05,0.014804513093350735,-0.0012071006163774656,0.00393500201760814,-0.025466382259856448,0.00010722782005473589,0.0011795119472607662,0.009913171859491584,0.046155417703797,-0.023765676272468082,0.0003385461822255082,0.0014236652141489219,0.01866535056566942,0.10494238106990515,-0.09066883328930016,0.00010187251622937095,0.0017657039748015231,0.000742864040847179 +2021-08-04,-0.02422509747677358,0.15487267852234574,0.03828689051986959,0.00016541592110866463,0.019985685947295873,0.016750264998711774,0.056145376119949714,-0.042954880997195695,7.158437100367593e-05,0.0038772183442914217,0.022126807597241248,0.07558460722766337,0.03648170816046142,0.00013541993573316192,0.019775945254818312,0.005208920492809399,0.005749834378566526,-0.00734606407026968,0.000305745623835763,0.0008964599999362552,0.011440760780547949,0.025560360608851123,-0.0018260825470132025,0.00023419935817490321,0.030508540636468746,-0.022902030461884253,0.05959701178834,0.05539873291650541,8.390662316081782e-05,0.005759633750808393,0.041067704809164315,0.16141140381922903,0.020806055003619588,7.465451394576928e-05,0.014925983046654847,0.014542254243215386,0.09718956829436697,0.0022979128093620063,5.1311025510621804e-05,0.012742987409079119,-0.0017917859601539353,0.0015952507948151608,-0.08489517080303058,0.0008661676235761501,0.003709587957265231,-0.01788361457023362,0.043135603035487795,0.005716958286990214,0.00014497105982499205,0.008746842706748708,0.004531629389202949,0.00356349481739317,-0.032765712427785657,0.000621587985365009,0.012520563534435019,-0.0020418240011946948,0.024633949172937784,0.000591268266457388,2.470057441542318e-05,0.0200108027039447,0.011592933169663831,0.029853771771259967,-0.000938987591391066,0.00011535732103094193,0.015953559919391652,-0.016438491724189184,0.07753211943902402,0.03138442154073282,5.968182976461775e-05,0.012081164337637184,-0.012586367593371933,0.012421270157521943,-0.03867061485409121,0.001976320504090034,0.007645166516453916,0.06954123740341174,0.4326411924156926,0.044617422201534224,0.00013227161464835228,0.05063112706739309,0.05590352309497464,0.2892504136245306,0.03225041996563816,0.0002992770550603902,0.012627719598201343,-0.02431655025129421,0.1178931664941453,0.009661534244293538,5.809975295628873e-05,0.010568341778147491,0.03743294690010283,0.23074946599410312,-0.008671448980877888,0.0002673622706898304,0.02012826222934532,0.023667423081101015,0.24505303733086256,-0.029367092872515908,4.007939117990745e-05,0.04872725485214991,0.00539674436515514,0.05792702834144137,-0.004916336134581395,3.1126644533874704e-05,0.0179295870640771,-0.01870465806893754,0.05324494369574862,-0.13754410347294468,0.00011316031746098714,0.0011069774356473364,0.021273849093465913,0.13448807625244796,0.012145532269843462,3.6538832703307296e-05,0.00419582744927359,0.00011416445770199137,0.0003936435904529708,-0.058731784563618834,6.42991328453583e-05,0.009350594048241328,-0.0029138884029474912,0.011847632142613496,0.0010329488487667473,0.0001124578948000733,0.010101407814420633,0.023485919025449536,0.02410524689166512,-0.01918224568516428,0.0005568927148586891,0.0018885332419511548,-0.001539880917410214,0.004405254173058663,-0.004274436249869922,0.00014713031844071562,0.008837277101629884,-0.0361473797898591,0.13107720879670723,-0.01854597197084632,0.001769981846117215,0.02478767954834081,-0.03080617719897098,0.2848766696727227,0.0005956244078415469,2.7807575231667614e-05,0.005967234818536327,0.048643481305512055,0.14986300457064106,0.06908279752198423,0.0010612103651561596,0.02218387487289348,0.01556051451280648,0.11156124888797626,0.01367411306992023,9.288299886786185e-05,0.009394139831768535,-0.017132632993669537,0.02672770850471863,0.005522411965628043,0.00015128914616352075,0.00275499766101295,-0.017374189628128787,0.023778883113245892,0.00536796999992189,0.000419388984205666,0.0017106327116738949,-0.02239771459391537,0.08721050127814986,0.027187035458229692,0.0019906057978522043,0.014386883262949086,0.023596352595977733,0.07901697398441669,-0.023717995509285862,9.581088539162138e-05,0.009779056444753086,0.014416007480310137,0.020674036221922897,-0.0017829780744136499,0.0017333925191964988,0.0018794455321735147,-0.00637825324023186,0.02567811244984646,-0.003101356956608817,9.84135047655186e-05,0.0002048909099608353,-0.027204069033678408,0.06680103555420676,0.008565994115580627,0.0001650863058348473,0.01085770808977954,-0.03962564397649215,0.14118238441712339,0.007640953936132421,6.850302438554132e-05,0.003052849080128942,-0.08043516642447616,0.24601038902933228,0.20704982114643133,0.0030989214987418175,0.006763554884624626,0.022406548594624306,0.11468764224537523,0.022529792628536487,9.718492660449684e-05,0.0061928393439837125,0.016106589193606656,0.08947852585726704,0.007240351919024506,0.0001305405823470553,0.008241182932281743,0.013462678658851505,0.07513978951087662,0.012702879829430143,8.47442429460138e-05,0.014307648862498338,-0.010399100686092863,0.05758129707660573,0.006133934720520012,4.5390162178431245e-05,0.017409428192731547,-0.010436754443711968,0.023585202708023206,-0.013825878960523343,0.00021575220669390924,0.02102461226484177,-0.006369638120985251,0.02750560141012942,-0.037517903243637615,5.7584816871642854e-05,0.001281811928858696,0.007577934412923596,0.07629380674774652,-0.008789811905521933,2.5626709312142515e-05,0.012228953657060067,-0.0024505099113776557,0.008196847855028883,-0.03345519760331476,0.00010450054463473712,0.006927708555163804,-0.013314106066488965,0.048821959493181535,-0.013649673440778285,0.00042985776598842716,0.004357583676319364,-0.024518725411205516,0.09761529787844755,-0.01819008129105958,0.00014386389093768456,0.012928253977451482,0.0007391456521846116 +2021-08-05,-0.030347039881599352,0.23920306234187394,0.045565402049151466,0.0001341640574813711,0.0012823834645091829,-0.043709658898239065,0.15160501980230165,-0.027403234018987633,6.917901315185875e-05,0.01565850929985423,-0.03885782883778018,0.14371303235664895,-0.04697609091648722,0.000125077612369374,0.005576494897890754,0.006954554492995617,0.007734797942996894,0.00027370249288912564,0.00030345073774037197,0.006212752854434044,-0.015217523431586964,0.035801807068691426,-0.004496126295400411,0.0002224010347709022,0.005575063674825292,-0.009793978506527723,0.028040937018609588,0.005778725273398754,7.626290852864683e-05,0.001482829214168989,0.04091422934257828,0.14990880311291654,0.011848445707025918,8.008240251381482e-05,0.01090660401346914,0.002546664394198356,0.022878516464640692,-0.004977416492411177,3.81717851895796e-05,0.0061344852804306035,0.0032784665283525074,0.0025759579772955594,-0.012602910864843626,0.0009814694067033635,0.011319900684753081,-0.0267491233406411,0.05668327005690035,0.013757825580263445,0.00016501238558641986,0.005057191232894795,-0.01138537512425868,0.008046437087272618,-0.0943469745373383,0.0006916208583264762,0.00869223372121247,-0.0030935503101344694,0.043579066206426785,-0.03227959910133605,2.11544653005907e-05,0.008598074074193919,-0.001402546617897134,0.004265379172085959,-0.0206181990737853,9.768113543901602e-05,0.0013085790635366935,0.008986519551905721,0.03931771685234038,-0.00450320724494565,6.433762886110557e-05,0.0038511582939857766,-0.029839604289137466,0.0264475467315603,0.016385530638827618,0.0022005469500112544,0.03130089505407703,-0.08096292978831848,0.5502187110373667,0.1100351253731355,0.00012108851917318065,0.013564169468620137,0.05412514868274554,0.24403089561372843,0.028441156084088967,0.0003434492089949323,0.01956634136895707,0.009049538532565734,0.05286080726492071,-0.13620450180593438,4.822293044908373e-05,0.007394572711129656,-0.05550878698949804,0.30920244127106655,0.05615941178545612,0.00029587320096401934,0.00914652387968868,0.001331327179943527,0.01910070856084263,-0.003908427269078767,2.8924479441182213e-05,0.021130704027245838,-0.0015659174079257203,0.016235338928519805,-0.0714092760040405,3.222472365929471e-05,0.005858624591392279,-0.013891372513616333,0.038286951548389646,-0.0071369145692010486,0.0001168737892134259,0.00046767925163026104,0.05685856256817463,0.37392035140156,0.00644375184808334,3.512441898768642e-05,0.02053656001481126,-0.002066012415829606,0.0064119538657300456,-0.0037651955697272613,7.143645923208439e-05,0.006959505474358138,-0.0020345935182214375,0.009323988838560369,-0.07928456621621728,9.977563656123366e-05,0.004187004349038043,-0.03427755097516974,0.03292272802363207,0.012256754326126206,0.0005950994275028506,0.0234489069272076,-0.05955823606667499,0.26571287426478246,0.18714629090068094,9.434420704018399e-05,0.00636238302864247,-0.028023516600863736,0.10397183988989499,0.009966611247638464,0.0017299202333125913,0.0019280093082590325,0.010920952853385815,0.09796150622797385,0.012110833220611123,2.8667331824556278e-05,0.012017835882914786,0.05768569333958577,0.19227104634030143,0.06913432249857127,0.0009809017219483667,0.0001606275230082142,-0.038556232639806134,0.2637218657036883,0.11688370459321779,9.735854969343703e-05,0.0016756525050894897,-0.028031263287498734,0.04317075664452319,-0.037879524405791,0.00015324926362015256,0.01679503727381973,0.009489354878071291,0.011571724346032862,-0.03382465008570067,0.0004706981838812378,0.017486058724809527,0.004299746185415266,0.016267211477645618,-0.010493221225691842,0.002048707929624843,0.010885146097901444,-0.0002687099003327531,0.0009794644150154855,0.0003633509001671898,8.802081308863994e-05,0.0017646760872661283,0.033411735393924016,0.04806141552973834,-0.12598622811826277,0.0017281429636914556,0.0174703015494773,0.014770105194701963,0.048511537588518866,0.003875505953260751,0.0001206297936699212,0.005393843087404641,0.03806399795497743,0.11234018246015244,0.022266133889446652,0.00013735347535864605,0.01792509295037689,-0.015836629619986765,0.06811181609182897,-0.006398564173100268,5.6748478834605755e-05,0.03181529560604271,-0.0561138289694672,0.18319523803224763,0.06902027998671427,0.0029031787852310926,0.002386934270656028,0.0010336451318257596,0.0046780794461962595,-0.06134683196292507,0.0001099118306241147,0.005225116731174157,0.017593023402727042,0.08851221207551922,0.014798346736070058,0.00014414449804382834,0.006483152197163871,0.03267604464487076,0.1921868573214213,0.05879269719691693,8.041822708322801e-05,0.017165226878046527,-0.008727786301381409,0.0398520417118335,-0.04678767673842112,5.50428512824937e-05,0.00419318397837259,-0.010663010297459273,0.018058982258312626,0.002223143987674911,0.0002878829546429909,0.007953307379521634,0.013285223748478712,0.05688994706391056,0.00562581146834645,5.806945089742661e-05,0.0010052846159803537,0.012342144625080613,0.13163648139527465,-0.13855962452991666,2.4190544917830186e-05,0.013688217918142993,-0.027166880803287736,0.09201612960987954,0.08246929797726836,0.00010320120775226863,0.0008362516138227561,-0.013279631968161084,0.05243683705545934,0.0172401143086449,0.00039918804141485747,0.006068982841683654,-0.03759247580735314,0.17736395231741928,0.02216560212279443,0.00012139683579531023,0.014967578471595473,-0.005119479880441179 +2021-08-06,-0.01097192982799823,0.0821233673292254,-0.03552097834441221,0.00014128721244626065,0.016812927817107356,-0.03984164759544835,0.1554566961074942,-0.09651291205997888,6.149479850885708e-05,0.0030287787941247852,0.00335997841125404,0.012424931508215376,-0.018784303156334614,0.00012509492413048166,0.01108324627118692,-0.025194817624592414,0.02463667203499983,0.029195548260685968,0.00034514138150524936,0.00474923070939505,0.03146049851038371,0.07565822656216549,-0.08014175839551718,0.00021757410972346266,0.013520057452695664,0.001612381457390325,0.004157656195330417,-0.007205640611803203,8.467709708773492e-05,0.0009524687354642073,0.03481687454783019,0.13355877381346892,0.00985999542908017,7.649044977637331e-05,0.003531621265925489,0.0026504751096264527,0.026002025900220244,-0.00573763354809697,3.4955470983113905e-05,0.004423995277294209,0.003375361450074286,0.002988231114958425,-0.002167580054009378,0.0008710656524215198,0.012353955158595949,-0.011288777643567444,0.027657210357809398,-0.02127488589404938,0.00014272512507201507,0.01645330915673135,-0.011827121023469254,0.009423657287615277,-0.028063664093949378,0.0006134567019618555,0.001036897869333882,0.018187225248527693,0.18553592703649585,0.06427025970393796,2.921199491950726e-05,0.006313919789117993,-0.04557199491204402,0.14695935107943975,0.06512463259879628,9.211955947796858e-05,0.01758575109737591,0.00790648496758059,0.04295215700643264,-0.007997888597734539,5.1815571124166065e-05,0.003102296537819372,-0.04356259726136114,0.04260662254841669,0.003663188796261625,0.001994158292730217,0.010229280150745094,-0.0390365114220688,0.23903790289984203,-0.08267161717954748,0.00013438671463639944,0.008463978884344796,0.018389450222222575,0.09760980496693729,-0.0012578208190854791,0.00029173163937046807,0.025092578952357645,-0.03508505807386576,0.2170614522528483,-0.07921165509442162,4.5530293655865486e-05,0.014821369487260429,-0.006309591273391392,0.03990460971650756,-0.03035420276168341,0.0002605943329420755,0.03539848547438783,0.03931297214210064,0.561239839638482,0.01579611081648078,2.9068165087261315e-05,0.009273175915396175,-0.029575272862903533,0.3222116751991807,0.1267054932696565,3.066685193703715e-05,0.016471218754287656,0.012193082573558,0.03074454086477701,-0.03747914133016872,0.0001277521621183736,0.00621892065348696,-0.05774465189301899,0.47401360384385877,0.018195708819589554,2.8139303128220248e-05,0.0181535800612359,-0.028656584024630474,0.07161603051971047,0.04904443158805334,8.871387637821886e-05,0.0060845979895224915,-0.005917359046454009,0.021725676169399615,0.01803255652854485,0.0001245383809407197,0.004271181085427982,0.05151470309157022,0.047403498532464824,0.051506443985261156,0.000621149825091314,0.003849607254981885,-0.007009594633988841,0.0247229170384942,0.0015381388847331672,0.00011933812248552537,0.005079138742969176,-0.054928204738334895,0.20670814438393276,0.049126739427560004,0.0017055206858039287,0.017573722148404844,-0.06717560509361403,0.5412957327421248,0.048198927186265304,3.191237884314711e-05,0.018378478089981012,-0.012367356902851637,0.035067215286398314,-0.005367680527050548,0.00115304666555196,0.004919284008897501,0.016181261843257366,0.12431572322422067,-0.016537926600789992,8.66786159383261e-05,0.0064966251404422045,0.015610658810403594,0.02401368694286138,0.016524622089853943,0.00015342911270436986,0.006474344887561234,0.03522286416472696,0.05252092376704598,-0.015227448709372345,0.0003849428218832417,0.005839690528124303,0.014810348363064576,0.0651981455129311,-0.0043405366789250706,0.0017606797616405829,0.007658536977978345,0.044872155705585656,0.1694919053029091,-0.028628526496035884,8.49411903213069e-05,0.017855360048948735,-0.028767880873520627,0.041524286253346115,-0.022849076879659164,0.0017221972333570387,0.002977275612858768,-0.03457437620749726,0.13114629918657947,-0.05763727590555775,0.00010445142036587321,0.0024368779942747333,0.041951270962273225,0.11627217597744083,0.03622670697258524,0.00014626139078139475,0.007774103636001637,-0.02814265000897322,0.12956100947079602,0.00019696409555941029,5.3015711173399386e-05,0.015239084372077008,0.027446505724600948,0.07444882678094866,0.010772777996358123,0.003494195990627245,0.0028837478216769737,-0.01810165989468504,0.08965599828537958,0.03128129816476802,0.0001004337366384998,0.026622451259657686,0.024811379165033547,0.11931938902652972,0.026293838680609822,0.0001507997665224972,0.011583905841902357,0.015002203627274804,0.09358715400444295,-0.07972151599448161,7.58206518957004e-05,0.0007092593343145109,0.04724616586907913,0.2063261760873638,0.017669637148751863,5.7551896027888075e-05,0.009258683411423373,0.03933823079653703,0.07899698907752822,0.031163245517599723,0.00024279161241645426,0.0005517236872357538,-0.00527203273900147,0.01846019199312454,-0.01160479276321448,7.10160088306692e-05,0.00607649688506845,-0.009695351847220096,0.10449390564736885,-0.07391661091318287,2.3938883864102273e-05,0.0009495150377480937,0.0037366110110946976,0.012134940212431345,-0.053446379024732316,0.00010763393372717103,0.006883552876134774,-0.00496860871278563,0.015382985021233482,0.004514725290009251,0.0005091223356567265,0.008218671233676155,-0.047357007636088425,0.21753976773500913,0.029928826999269426,0.00012468591255178552,0.028486785983898276,-0.002869158084108753 +2021-08-09,0.01002653549656254,0.06713644611126496,-0.00936971582282728,0.00015793527159362592,0.016315541221107392,-0.011455503670441982,0.038733810536745565,-0.1311985005728861,7.096341245687893e-05,0.0072006062941095145,-0.017790973520340307,0.06205844758586939,-0.006774302728086876,0.0001326160262511314,0.016062316945615336,0.0013342253794115652,0.0015222827515616575,-0.00027321585483705747,0.0002958024230707548,0.0028519704218197533,0.018279491148348932,0.03940284169486518,-0.06471718932223432,0.00024273607792593091,0.0007443311483352523,-0.009797256775196396,0.02569162252399742,0.006604908923950431,8.326446538095972e-05,0.0058987859745785,-0.013648203393728214,0.06698660876596525,0.001516658512889465,5.9782951056254425e-05,0.0076405919290579005,-0.02335340692738251,0.23343853609356383,0.011252700283509163,3.4306491889955755e-05,8.969832008665914e-05,0.024274975077415942,0.01931115276064439,0.046987033458357905,0.0009693829569716458,0.006539396002749469,-0.007752191654085623,0.017806218657429047,3.998746369628833e-05,0.00015223506090194616,0.022888110184843935,0.008882037743681499,0.0062482751136560275,0.008472105519012094,0.0006948272287889705,0.0022167352830342562,0.008859358179923182,0.11524289438663352,0.002855155371362594,2.290925110605867e-05,0.001280838315103302,0.011621520638899832,0.03549594789174585,-0.000700697162133076,9.726021326450253e-05,0.0070892284009937264,-0.009577278063762238,0.055026635065876364,-0.04211697833925865,4.899265316532391e-05,0.01317882134540434,-0.05866514020510442,0.04980126799394137,0.07853372244187545,0.002297537904238212,0.00839141699179509,0.0024344369746969307,0.013836372496746442,8.196819640133244e-05,0.00014478660939070247,0.007278534896380672,0.04328186085721765,0.25042660319479393,-0.053253212485871726,0.0002676293218976596,0.0413171998414959,-0.00855469445277519,0.04727661969561953,8.09218241355496e-05,5.097051736279772e-05,0.019395753481738498,0.04632447503724529,0.3071078635374124,0.05071971071360666,0.0002486030068719464,0.013132396000496104,-0.03682416037459974,0.49426476095167704,0.023874997951149775,3.091743357685989e-05,0.0004785652209126504,-0.015149255079856792,0.15062863627775347,0.02552793645560672,3.360202441759671e-05,0.009012965850330984,-0.025375082915624195,0.07723693545963173,0.012153380170747683,0.00010582912172787265,0.002471336612989535,0.06528091607558639,0.49049501128391815,0.0474522520840048,3.074284260660327e-05,0.010261968111097385,-7.578592373707803e-05,0.00023366175048436267,-0.0002391623554971317,7.19081813283125e-05,0.012250737509589035,0.009254703587815901,0.037041539131657544,0.014155444701207937,0.00011424102347155523,0.0007568028490139809,0.0026687835331272087,0.00253075250827136,-0.01260934259140748,0.0006027527975200058,0.006474535243250638,0.004593088209657405,0.014658906881286566,-0.00541100205040043,0.00013188311886252487,0.02402002882845459,-0.03921777178221987,0.1322688061978078,-0.026723093817724666,0.0019030257106151208,0.009094432288944476,0.00552907948792564,0.048751459921362685,-0.0009047404766546028,2.916402105704607e-05,0.004851270568155371,0.010491094758331255,0.029017853904018034,-0.031849376573800166,0.0011820253473291,0.005621567756221645,-0.0004150475840311681,0.0030434795990678825,-0.00953026365889352,9.081406972127803e-05,0.005846926768868523,0.02703449692044255,0.03173811826404633,-0.05965278274799446,0.00020104001337216764,0.0006406599978000696,0.02371083956214388,0.03600125917767711,-0.006428983228927543,0.0003780359961554567,0.004192149680991679,-0.016490588704619842,0.06601199087011381,0.0018714740184822283,0.0019362599843442013,0.0002716332695212888,-0.007940891807180191,0.029560297407941655,-0.05369228038561047,8.618880317447016e-05,0.0029750678364733577,0.04266405891445314,0.06055799598244943,-0.01250601306103245,0.0017513295170445095,0.018860370376668243,0.03621009740760572,0.13148908276693916,0.06912257366846625,0.00010910785898852552,0.005762631473733496,0.007946643011108064,0.020464641003261064,-0.0007934320876420073,0.0001574127655872294,0.0209820615848253,-0.01952623490788636,0.07969323160571458,-0.00218266326371113,5.98013511715311e-05,0.0005830610397080473,0.008927981378689779,0.030394296500695583,-0.002982513968278071,0.0027840641497820988,0.00031070350120251613,0.001707480145239775,0.008457105523772594,-0.0073882396552859405,0.00010043254858350924,0.008639802387059792,0.011040234985394071,0.06189711629077588,-0.0032544798241819443,0.00012935067082647537,0.029119174872091657,-0.012732220509195478,0.07761927963963516,0.011101797269352315,7.758597862021808e-05,0.0010163913520820716,0.06002566869948574,0.3025945925004909,0.0757228564482422,4.985666668202552e-05,0.0046268184133914795,0.009446744396632777,0.016664390811246627,-0.003918676559586994,0.00027638986685829563,0.011074201888591447,-0.008226792298399904,0.03111293315433787,-0.03440548139306834,6.575124078993708e-05,0.007474764848905992,-0.013749700126348562,0.15482367554957258,0.028098987400627506,2.2913273473554558e-05,0.0030878408017959037,-0.003136433665928887,0.01127342104989695,-0.026975723396368,9.724994036170624e-05,0.001505444806369997,-0.004256361720368107,0.019276569100983805,0.002901025252540952,0.00034804609076581524,0.0027362160392561067,0.0432857084908228,0.18024572098338448,0.048885612251775505,0.00013754707613257108,0.040347497877135596,0.003476716132121585 +2021-08-10,-0.002080743147181433,0.014461588640370606,-0.018686699206542274,0.00015215598961689796,0.006038914089501607,-0.00768863290329498,0.026738280837810147,-1.2721135717302525e-05,6.899635879854554e-05,0.00908291833226015,-0.016074775506557348,0.050290017491198616,-0.00981728919719298,0.0001478632794972627,0.0024787191728825155,-0.000740814493699217,0.0008495413671765985,-0.026992134372959865,0.00029430171695722846,0.01105969693807966,0.0008458512926198357,0.0020823923032715704,-0.01402672377027897,0.00021253440313852677,0.011078883099016185,-0.029231924315722007,0.08003435687308676,0.05230997283451804,7.974944804553328e-05,0.0036383085269948504,-0.004934755692385648,0.01711086056121362,0.0005248204661864972,8.46220729224464e-05,0.011647300023430056,-0.0007626952480277098,0.006199398086735812,-0.02434922107543742,4.218908729338945e-05,0.024289474597981392,-0.01412891923997642,0.013303200689371695,-0.021284662293544043,0.0008190258074285052,0.00041886823626948475,0.0085879173986344,0.022566467220822502,0.004265197020634826,0.00013307184226930415,0.020063296813398045,-0.021566296732295584,0.01209308876862237,-0.06531951204376352,0.000871691264611362,0.004042610363220855,-0.020712450293241987,0.2587236108432705,0.03198849611179959,2.3857130425643764e-05,0.006539860878754473,-0.0026041533508166115,0.0076632659546189965,-0.010965386266504297,0.00010094938901153345,0.004121266061553964,-0.017713745448857912,0.08975010829330406,0.05113947482054096,5.5556801731353786e-05,0.004244481942057371,-0.006352252898822555,0.005872137445968829,-0.01646837611512611,0.002109864380819172,0.0036633851187619533,0.052463424097633805,0.3669608085867346,0.02844484477309302,0.00011764922094713718,0.01550128028710033,0.01916415803568743,0.10487454473606198,-0.03495654721847661,0.00028296185046730474,0.00040820281398557695,-0.02535282264424707,0.14000461661062735,-0.0034424162028107897,5.100877779607153e-05,0.028440787386612317,0.011981590814396717,0.06971781235432843,-0.000569625285955451,0.00028324192685856054,0.03613716116167536,0.06226836940570548,0.8157762821499468,-0.04505497423218982,3.1675731277784994e-05,0.037428913800348185,-0.005540068741944715,0.060107936325442875,-0.0012141905596524988,3.079392480530254e-05,0.011891941670956913,-0.03431285546338943,0.11081606817112388,0.007000402250641211,9.974172608674033e-05,0.0004637992988675351,-0.009158579392240572,0.06859939227895777,-0.0027060583791862335,3.083899540626851e-05,0.009385995999830423,-0.0075739627423618335,0.022343972294657562,-0.0018611930651373568,7.515193419023975e-05,0.00327655491426789,0.024710928309903964,0.09775062864075437,0.12986506397260736,0.00011558942339406051,0.002807859415036938,-0.0012323420575841683,0.0009654343972216815,-0.018433439678810674,0.0007295987204517363,0.001286008141591179,0.0012081631710877559,0.00498723143196853,-0.0014984161473953449,0.00010196522451162674,0.010341940859921682,-0.05984113230831187,0.24516320190636556,-0.09827436516208722,0.0015666200937122655,0.012353561306719395,0.03457217512627104,0.303341493302286,0.057822395728512985,2.930738564984864e-05,0.014447333506431922,0.02915234974397048,0.09434012562200235,-0.03461490084218798,0.0010102954222605044,0.01779289664173388,-0.002739161669166961,0.01923109526376685,-0.020941607962394228,9.485042686159478e-05,0.0019432720377625735,0.007973183192594093,0.013822889361494083,0.011567597633981347,0.0001361376648497341,0.002559642306870306,-0.005151470955963102,0.007335633280691451,-0.08248621447794603,0.00040308585406758463,0.014625997520279732,-0.04115526174732339,0.17660611426595532,0.08250734234612322,0.001806217202198995,0.00333059789179605,0.0005659482452272748,0.0018640344187363907,-0.03127569809464797,9.74121571945469e-05,0.014538270700511153,-0.001044912363660981,0.0015085386775300711,0.0036554887072637334,0.0017218709940058756,0.020545763654409122,-0.03281744533183232,0.11226673311410863,-0.04034202872017374,0.00011581630945568867,0.021226400367549966,0.02083514695362182,0.0759290041547499,-0.017211612239665542,0.00011123699294170759,0.027489501179883063,0.01915441882367571,0.08468705240657443,0.004108987863128168,5.5203407654553526e-05,0.011437791094393624,-0.06914311052338798,0.1829459560943849,0.07021670168004193,0.003582153211048587,0.0036776345973516243,-0.01245693000438255,0.05875645945894039,0.013928666726953177,0.00010546199356821379,0.02253857751826796,0.02029293995543154,0.10844283388398149,0.011311727078800383,0.00013570782699870532,0.035010441773201055,-0.004156135039359295,0.026618198495869452,0.000733211759160258,7.385156269974751e-05,0.006788342959025266,-0.03344459170150857,0.1790391884287015,-0.01633238370078482,4.694887528501619e-05,0.019264009675632444,-0.025061294187318683,0.049173765406699224,0.005201864485386833,0.00024848456878560985,0.005162589177551934,-0.016312477680687658,0.06306984412818896,0.0016070728782639962,6.431504068085069e-05,0.0006991359580994591,0.00552945177634808,0.058376730311239855,-0.03119523890323201,2.44384464203173e-05,0.005356577598338014,0.02085170387396495,0.07478578269187902,0.06591496177880932,9.746113617288287e-05,0.005939956614015461,-0.0003237123002367732,0.001248310442698876,-0.0038919362377773025,0.00040875640331912324,0.013292769004444784,-0.0004484912138098812,0.0019371773205402224,-0.03545454819450039,0.00013260391899958614,0.004027602588124859,-0.004462752150416069 +2021-08-11,-0.014779771480621172,0.0960492461500945,0.008434628411321718,0.0001627272714857789,0.004706106711642056,-0.049575744478007396,0.1877848383584466,0.0526431305840154,6.334600732231604e-05,0.006803642995644579,-0.03311433794963835,0.09703614365309922,-0.030962665798846423,0.00015786278213119346,0.0012119243109804895,-0.01781761271673886,0.016849730850123413,0.020899267360099016,0.00035688180202699525,0.011582514039627234,-0.00033404561016217533,0.0007800595688096464,-0.10164881528745828,0.0002240659026514241,0.00013890318369159731,0.001533396180303959,0.004247901665862636,-0.09439282508712772,7.881822715916861e-05,0.0027886272140171973,-0.06934723525764908,0.23644305412634659,0.06340378255958751,8.605823722929072e-05,0.007440793001932695,-0.009473695065349766,0.09643383915079717,-0.007337218284051946,3.3689034089160126e-05,0.010372431221819271,0.01621364276708854,0.01326295737380677,-0.013049019343657903,0.0009427249752491896,0.002073271282038245,-0.037089504335655825,0.10062433239677271,-0.017540632330585088,0.0001288872340810689,0.005553017869609237,-0.019789620551687658,0.014696347812418692,0.025557976756219503,0.0006581917033854045,0.002026857510916971,0.01276355852968045,0.19855893825371373,-0.0823348730700491,1.9156012942861038e-05,0.00813859363256763,-0.06250277395574542,0.15122346925195562,0.0796292975966595,0.0001227809906428667,0.035602480126464435,0.0009889852636536603,0.005886284886068494,-0.00034323370271872715,4.729446983071855e-05,0.004972093708156924,-0.01661982778846909,0.014879463792450243,0.0006358786405355916,0.0021785233091406796,0.00531443655388702,0.03070374720364376,0.20617208315600657,-0.039846484070550026,0.00012255008883677997,0.026621419909658574,-0.03443318250643761,0.18971397854372848,0.02347280479250445,0.00028105160163154573,0.0034608386160615056,-0.05412346987396742,0.3101617499309613,-0.012075066112423111,4.915394161433787e-05,0.0022599058927592164,-0.03982320743950162,0.20141895065257837,-0.014076688107003178,0.0003258537433225606,0.0033138039363969076,0.016204160916089186,0.21532568893704593,0.0024292204245373056,3.1229205330454254e-05,0.010174017855936426,0.006570141889739908,0.08097774831370988,-0.043690102564479034,2.7107580822477858e-05,0.008100258606922962,-0.021956871355024072,0.061165458381054236,-0.050925120511827605,0.00011563438060473413,0.013895581203476219,0.08701702497588393,0.67153549563093,0.029093170511757905,2.9931441563676626e-05,0.0031052372835436715,-0.018874434961696298,0.06497129101304426,0.02332065602253549,6.440652161208827e-05,0.00724576329981503,-0.015311723346145424,0.0602541558552056,0.06593089262482653,0.00011619452442468631,0.004227586643432263,0.007316624802255501,0.007188186674682954,-0.10312971906470995,0.0005817910007780657,0.012523362549226962,0.010222380782176103,0.039349460203643924,-0.05454096856351971,0.00010934508948173079,0.009536396361225028,0.029808131402973836,0.09416029604705273,0.004917316405316111,0.0020318241194366648,0.006421624320520953,-0.01298895009679566,0.12087704022790247,-0.0046872351347707,2.7632006738513226e-05,0.007373071629041609,-0.0012527654594764604,0.0035641131687945546,-0.06714305788998987,0.0011491839586952894,0.008145685973011551,-0.018356905451984495,0.1390886144819822,0.009916484759084028,8.788879970170863e-05,0.0005488844190174012,0.034507563219396145,0.05657793477161431,0.11431286358427087,0.00014395030452163946,0.002445228205998417,0.03783969469736974,0.05230149315989136,0.015724893557910426,0.00041527659004809514,0.007078906182103042,0.030061402042500858,0.10447618690305115,-0.01519524970676866,0.0022301920298418362,0.021517810889545363,0.03727698592510967,0.1647966417714378,0.02183223245104368,7.25742911592551e-05,0.0025605545142122987,-0.015315028529573992,0.022068738139302217,-0.033340482011054086,0.0017251128115612579,0.007275998983371833,0.05693687164892553,0.15567689814261543,0.09998474113347913,0.0001449056997058886,0.006257290412870491,-5.353523223698854e-05,0.00012496754833124927,-0.1888868708537194,0.0001736612078733972,0.017073121842065175,-0.006271066683095438,0.02477954775561814,-0.004179405642791632,6.17677764929856e-05,0.023655674446458684,0.01995074710336111,0.05309892875627761,0.0010263035375703206,0.003561159797992711,0.01486130149843171,0.01712725975976767,0.07294269224555228,0.016508369291567477,0.00011680102836906328,0.0022198608275714815,0.03826403888916448,0.21426594356629292,-0.0885855808452199,0.00012950855147854083,0.014878128956299846,-0.012206829015421992,0.05902623830589454,-0.03692705888202446,9.781522385980417e-05,0.01058373669422592,0.07951573019221918,0.31147718936222635,0.1648755751054866,6.41614542923854e-05,0.019088929813751227,0.014400774668252039,0.0245762056358921,-0.008250780168801977,0.0002856935376405704,0.012018481548276456,0.0009421562867427319,0.003689610084360168,-0.005956878926555285,6.349753317600631e-05,0.006062442508516857,-0.015375318251602526,0.1781852498519048,0.017856535078208457,2.2262998090118164e-05,0.01179974569157211,-0.017823176281010846,0.0596238564983472,0.014196733529009641,0.00010448982554892459,0.0038080502100977538,-0.004372065227150825,0.020799175318205212,-0.00604001916317337,0.0003313358953852925,0.00796917781991845,0.011613347730394293,0.05123525371185578,-0.0028991192677074217,0.00012982559894479027,0.012385768584209202,-0.0007923163774735739 +2021-08-12,-0.015327628891210043,0.11927064690269579,0.012826651930647432,0.00013590266900033912,0.0010135518190164813,0.023648487710159673,0.08266756488025757,0.025169194362239026,6.864023395119886e-05,0.0004559582874564445,-0.018871764043221273,0.06539553379587151,-0.027457780098626795,0.00013349395907490916,0.021840634111856508,-0.0036559470342161096,0.0037952955696009586,-0.060218695874291045,0.00032510387654113837,0.002400852578039148,0.009307179200370124,0.023119009128821616,-0.0212912437899121,0.00021064280614778165,0.007897542712826073,-0.010208574534111808,0.024888408030135825,-0.023243248589928107,8.956013213146567e-05,0.005083511733567707,-0.0024630888852565868,0.009226499461063953,-0.017150501252197387,7.833087519352632e-05,0.0334034531187467,-0.008202272046191273,0.0803635389939233,-0.024412502573149447,3.500045823992762e-05,0.0028000911999941716,-0.01871537890903,0.01649974502396773,0.021666913491948294,0.000874714202018874,0.00026769245682848166,-0.012324335884577438,0.026715120718834962,-0.0076822378991138005,0.0001613125926658621,0.017590450243733124,0.02634076661645869,0.015099044593769992,0.11777715770376629,0.0008527138184774458,0.0071706081256227,0.011116574008268498,0.14125562295585506,0.03165537209602347,2.3452438635555458e-05,0.007845819433985437,-0.03286606941745753,0.10650652949381174,0.024244061700546077,9.166901664506222e-05,0.01876859922093134,-0.011430403724847622,0.05520151939469273,0.018282784309423657,5.8287087741797686e-05,0.0006448642697862019,-0.01830713180477339,0.015498655075796631,1.4396344810100644e-05,0.0023038238385738614,0.02237365897865019,-0.031510508585483474,0.2213046485588006,-0.0006043156548807271,0.00011717014951641164,0.016873403436245004,0.040546245976816,0.22775162428786178,0.014088985710595974,0.0002756750104294141,0.010166102319562578,-0.07268335159933959,0.32994008613209097,0.08792787305635737,6.205271928572763e-05,0.019836684591955,0.004771321222702506,0.027654492247728448,-0.0293252894651016,0.0002843542831493558,0.01486209264107172,0.0016769059259924672,0.026281986660375605,-0.0076422712260148,2.6477729449287724e-05,0.0003956954709541296,-0.004275534012392821,0.042548405080679176,-0.047303296398504946,3.357289478761741e-05,0.011064617071634428,0.00986327264640617,0.030660595047640408,0.013110478824760657,0.00010362468298123817,0.005869869515922642,0.06314742374163528,0.37981108013015596,0.037851187654186984,3.840434682144494e-05,0.005705758662564894,-0.01739007536365017,0.0481770374820657,0.010102081283357753,8.002740890521216e-05,0.0004834126709810883,0.008623507631589929,0.03021212371541281,0.011434322023943835,0.00013051225491705998,0.008073645750933745,0.013895727464122048,0.01348707445741116,-0.20498573120033498,0.0005888966638663577,0.019723170173762405,0.015050683403428846,0.061093235100616594,-0.0677137537825316,0.00010369292043185435,0.01030063429939674,-0.052272243437999355,0.18160526487869416,0.030073866811480193,0.001847403999415547,0.02015548414448254,0.03344399569626346,0.2845318573636624,-0.13431557666150643,3.022521893250059e-05,0.029116471738104825,-0.01848447817142553,0.05554067520824313,0.02192848381704146,0.0010880962392866968,0.002751387956277657,-0.049494648907347755,0.3683721082832396,0.1448704746394128,8.947406144794903e-05,0.005032747266613006,-0.0066044382637978315,0.010617682832406626,-0.0018051731170225795,0.0001468086087556652,0.0005042594227133968,0.018566198749039645,0.026823936855510617,0.0034912944998852116,0.0003972870334951283,0.006630182116923986,-0.009482490676503355,0.034548097857030835,-0.01909997193594761,0.0021273974016219046,0.01893719594113935,-0.008819266103972859,0.030857369080717307,0.00631611420501044,9.169885695068807e-05,0.022499633321884222,0.09316074948108959,0.1188653435850748,0.12282125467638882,0.0019482958952923401,0.0384442095757173,0.004233091661190853,0.012267668656054826,0.005191257640653451,0.0001367135849572242,0.006103986889510251,0.005885402427636015,0.017026285353944248,-0.016374359362771457,0.00014012532485211803,0.007454886379480025,-0.02673214825596286,0.10263866909260397,0.006482393118197158,6.356774040111593e-05,0.012234924759983603,-0.006763065127581916,0.022420191295451128,-0.031460663104202057,0.0028590537083171526,0.016082405450240207,-0.0390668475568164,0.1934620173812838,0.08327155957655973,0.00010045075987483814,0.017883523362745242,-0.007603891676000171,0.04343844305822038,-0.03138156242667596,0.00012694700378429837,0.00859727617016344,0.026664542718786023,0.16014861586128523,-0.015224491838048504,7.875164774633386e-05,0.013567497755215268,0.002916717630105516,0.013282405021761796,-0.004856729152394887,5.5190593272263956e-05,0.015127327195949513,0.01418378950000486,0.02476625565453176,0.0008409295746667192,0.0002792295135282391,0.009328863151301174,-0.0043460705179265155,0.017061018128898976,0.0019971707572681427,6.334410440124065e-05,0.008931787716995966,-0.004331132945846663,0.04898183973716459,-0.04321846756195123,2.28138040605689e-05,0.001280340060662405,-0.0068385089836319884,0.019900322569829213,-0.08656419574753427,0.0001201186023429695,0.005752202191010156,-0.03902715811866221,0.1513131768818756,0.2603386493536335,0.00040655391665034285,0.0042051718289802115,-0.0008184756789009331,0.003696693751460839,-0.026007519783235834,0.0001268130948068044,0.01707110916910133,-0.002255585607839723 +2021-08-13,-0.01621083690241096,0.10763593931732839,-0.033669709552538465,0.00015927026956580358,0.01729927824782615,-0.031260821461616316,0.10874124452947535,0.01677408077056487,6.897895544621851e-05,0.02024972829061538,-0.0003293116903073927,0.0012146234061888848,-0.07213068004428594,0.00012541881893936036,0.001406465129924386,0.00793950785661305,0.009636192684860555,0.004433088509284461,0.0002780711695954707,0.005815297875329154,-0.007411888571516274,0.015884814858308578,-0.009072215069403417,0.0002441431235173217,0.014226583671106074,0.009485342221403808,0.021469303894049115,-0.002102496717731152,9.646766817072633e-05,0.003925387196202808,0.0009544909964730497,0.003603638244727343,-0.04798905693883062,7.77178010180044e-05,0.006160935300490793,-0.012881739324266383,0.1280423779488293,-0.015138572922205286,3.45000234212876e-05,0.004498978080987601,0.00372507914465061,0.0033437821333618537,-0.018045086913817846,0.0008590972287730981,0.013445551202262084,-0.02176449928327252,0.05144630376233955,-0.15670857034673097,0.00014793004484027586,0.001998923688892315,0.014558109997590763,0.011595361199343525,0.008502632112810818,0.0006136843852655804,0.006744750401057256,0.001388157819082614,0.016243824648432426,-0.003945979858413923,2.5466739180173894e-05,0.009976092531026437,0.030996690748355846,0.1034056556797142,-0.0005450571352585561,8.904757059776328e-05,0.011781821577449229,0.003143216200601419,0.01828326185344316,-0.00606438433591664,4.83929829911654e-05,0.003223460741139336,-0.02808961777074966,0.02285383609739426,-0.09637315911107946,0.0023972299434222772,0.006962838649188592,-0.015028732370026424,0.09508521720087795,0.00198632426074767,0.00013006530256080292,0.00032740877380358204,-0.007371392878813289,0.04512609698606514,-0.029892621850895668,0.0002529472826247379,0.029850729278984422,-0.040358132799666824,0.2597324361010481,-0.010520083393780987,4.3768920164789476e-05,0.003182382811836238,-0.0024549642247911354,0.012590348138469517,-0.06083019286464596,0.0003213617887715642,0.0004546853452462984,0.04006110549263749,0.600738581223256,-0.15127198016654872,2.7673725977627536e-05,0.016204161185929357,0.022284022307293483,0.2554620516756469,0.056024439507751954,2.9143982525557487e-05,0.006226807925696317,-0.044963397621919206,0.11068534470366448,0.06443237141857043,0.00013085543177561253,0.0033815543497281997,-0.12952517808892855,0.9553850147651999,0.12461244514719454,3.131613445976845e-05,0.03124344093376353,-0.017523023776885666,0.05163997272233157,0.009389418992897426,7.52316225233961e-05,0.00517047394057891,-0.000438829110827075,0.0016024643453581974,0.0004857726951153191,0.00012521479596712756,0.010206729807242888,0.03325793751534961,0.03649702852434538,0.020168468984270386,0.0005208508382403908,0.0009200054759009636,-0.01529315993573282,0.06322304661376896,-0.03356909082564381,0.00010181407489842828,0.0024010252278272386,-0.028202950290731763,0.09327253099788248,0.005753011006221806,0.0019407069221024978,0.0037877157741697228,0.010269314885519219,0.08707257486686323,-0.011666506444285529,3.0327895754271192e-05,0.013377142499376734,0.008623445316219124,0.025618580003569834,-0.09437664322757049,0.001100517694449051,0.01501366761831114,-0.004057892524865478,0.03217635451759962,-0.040312200284656714,8.39826057130779e-05,0.00898394424156227,-0.002136147835238944,0.003050425328562391,-0.013665531913600738,0.00016527847358655976,0.005344233344219662,0.015702267775740766,0.022843063257478972,-0.015343202017567165,0.00039455899675493525,0.008742263195408382,0.006696752250044712,0.030290042098542764,-0.02045839287370256,0.0017136206875317582,0.0021598925920061434,-0.03651330050997949,0.1394057380613888,0.05987948491240535,8.403511753090362e-05,0.005144991177566947,0.026119680106049346,0.0389644542233252,-0.008876998221842054,0.0016663892224174641,0.005448031704670813,-0.026694486364558095,0.09455447522202019,-0.005822415046796535,0.0001118550295228583,0.015459114468221668,0.010662832676628828,0.024080437275528842,-0.024906387409407513,0.00017950171460513818,0.022308956136983464,0.0023960238824862995,0.01095916530126604,-0.08383478606484479,5.336144604153867e-05,0.005098572155574735,-0.029671716088342508,0.10388823287870218,0.014327696561879877,0.0027070380717218825,0.018590812384610512,0.01807639086272092,0.10983198600796402,-0.022650313241300263,8.186974872530776e-05,0.012492800469271157,0.006320916970203319,0.036544939669383374,-0.013187318466554167,0.00012543352312671574,0.02767651669742149,0.013109420668557518,0.08729297074581276,-0.00036413786978023574,7.103181712939329e-05,0.0007818961441838187,0.009648738353730214,0.0306195240498738,-0.0001453062346983868,7.91989618596748e-05,0.003045873611321988,0.007861777462098448,0.015089911354515916,-0.0006670798659430537,0.00025401739149003873,0.046410748716966266,0.007849278683602485,0.03137233449058461,-0.0037938619118748668,6.221531263166853e-05,0.0072684224246859575,-0.02584690628361786,0.27826487441753345,0.0461615458686859,2.3965222482266756e-05,0.0031753916746592257,0.021175857036403383,0.07395421938159207,0.0630987138154469,0.00010008915057650211,0.015757235880191185,0.008800383621796675,0.03833408160593609,0.006961732910074939,0.00036186327714237174,0.004842645064718869,0.008512584959623185,0.04204420945869614,-0.028381601710880125,0.00011596503526052603,0.01035263219683948,-0.003968982404970294 +2021-08-16,-0.020083615569845403,0.12390727205620487,0.0181197401792195,0.0001714082369821818,0.008975162300959226,0.043067840876843906,0.15430798915810473,0.04010403059789305,6.696921596680466e-05,0.014259856492209667,0.006346335980176328,0.020169751125279863,0.013092862177004928,0.00014555251878184357,0.013196405578148974,0.00017510637734813547,0.00016869500204081504,-0.11356247812564245,0.0003503221550147764,0.016770825098976417,-0.0395648173974659,0.09618448830475249,0.10652928455822497,0.0002152295506957154,0.014060635562136744,-0.015181047439119398,0.05006436195777073,0.0009823129921930553,6.620942123068048e-05,0.004461986795423518,0.02353352416728292,0.09004163245956698,-0.007081624475048808,7.668906857183994e-05,0.036504100180160655,-0.0006707986984503564,0.005563204150383023,-0.07049160542498711,4.1349077838704266e-05,0.03033253195366779,0.017521049492818987,0.015978088099570506,-0.002439051031405061,0.0008456294348967273,0.010565394481023956,0.012312955403338063,0.03309373273953869,0.020622489472530335,0.00013010034181878732,0.005871073630834902,0.007490809789922415,0.0057457891376060406,-0.009382501239709557,0.0006372406085679395,0.004918618896143889,0.012382622627443832,0.17901823561045013,-0.02415431780607097,2.0612855299382756e-05,0.001205030469653916,0.043926807085079615,0.1203850324642283,0.022363298456539102,0.00010839473312075364,0.018911006757070196,-0.010764117172772201,0.06184123760188776,0.011426338722036295,4.899616207890373e-05,0.00620654112617289,-0.013758941724703957,0.012612851624241075,-0.02177352362051294,0.0021276231985835675,0.0031681338441013254,0.029360624010255403,0.15643293502806369,-0.008834499557202145,0.00015445045626609393,0.0006112197637091429,0.06715737858845969,0.3404391429734513,0.034925330376210525,0.0003054657193695479,0.04394384858540105,0.0687842405021443,0.3619331733834617,0.15871083502147967,5.353299131974915e-05,0.010277326270652493,0.03848938982067356,0.228559645332012,0.0343775299594723,0.00027754172306194047,0.015556938419963296,0.028200007952002594,0.34492919351528983,-0.0836306303827811,3.392731640854942e-05,0.016115287916588738,-0.007137042548752877,0.07858248642432725,0.00963238292186291,3.0344097753795695e-05,0.002562883059018989,0.029156315034864648,0.07978717075852924,0.032068387938564494,0.0001177124298548967,0.0066044525413875045,0.025814079081832683,0.2277615353987016,-0.030819587078471985,2.617993900859957e-05,0.027317942859543157,0.009465977096859212,0.03072906493871006,0.020564306197423925,6.829571977112636e-05,0.003103845556781777,-0.011508942987648093,0.06046464425365367,0.03966409640323095,8.703271512893723e-05,0.0038742774846051674,0.044131040250479994,0.04208189172895413,0.04572417584040888,0.0005994106726997698,0.009848239680040494,0.030952826835103964,0.13562023555387065,0.038515856953706754,9.606425803871147e-05,0.0017763540685267957,-0.023449373807670388,0.08254384921242007,-0.0071032152144795925,0.0018233318038686774,0.004573152904207809,0.03831355197234432,0.43433157662884275,0.05657572123965085,2.2683664081154087e-05,0.010956206775075413,0.027088946121069903,0.0818197480065317,-0.018562478924407193,0.001082443511729792,0.0026302921592513476,0.012708498575187398,0.10853915629662658,0.0019147581214426484,7.797106144334793e-05,0.007247294973559049,0.00617725731865201,0.007423021082924706,-0.02338560610992423,0.0001964085479186213,0.0044208226593984365,-0.01771705913482873,0.02319971875334114,0.025418443666762307,0.0004383417412853735,0.014332893238852657,-0.004054697820858995,0.017902984508524053,-0.008692204507844014,0.0017554295264649777,0.008295770639259835,0.060276182061102856,0.23061577500401337,0.03146440496420575,8.385850100532716e-05,0.0015188427737446268,-0.08949710681482713,0.12517856763656432,0.2074462522616186,0.0017772814581488603,0.023518749673121432,-0.015607717572842314,0.048611696008457654,-0.037167821935349586,0.0001272080692097434,0.006081606510884269,0.008984481964878862,0.026894769209766217,0.002711512649048808,0.00013542086872761402,0.012259834456517373,-0.011898455310121037,0.046187976052879345,-0.0035586030277997595,6.287464946492987e-05,0.0028972249384951296,0.0021241861781372893,0.006700690794375335,-0.033848315869272005,0.00300463041259678,0.0020767983358179988,0.01981239656376301,0.12034237112547369,-0.008596924511972555,8.18953076443069e-05,0.001709479998662361,-0.013470909591116863,0.07858543656283519,-0.0030499905475664234,0.00012431273907169508,0.010639890419856336,-0.03314275489760861,0.19141086164252336,0.08178015338919063,8.189751524690068e-05,0.02112396085572801,0.021079379575047453,0.10026170255837,0.001972974520513726,5.284089245008748e-05,0.013766812683242152,0.017401859112929643,0.033693804713334656,-0.013001827432469231,0.00025181116826791436,0.004198915146399827,-0.02619435453160573,0.09967337540176006,0.04200331598498594,6.534959665288464e-05,0.004670406186918665,-0.0074215381860547195,0.08569256949154068,-0.0481305410697018,2.2345086823824508e-05,0.0022082774702660555,0.000574867397498437,0.0015528046270807672,-0.012097632608027861,0.00012940761322247348,0.012803562442628024,0.007744095068113022,0.03414813131962095,0.009503720179794511,0.0003574635004523632,0.00021570657235524477,-0.09071303305502637,0.4122430278649756,0.14465544423435467,0.00012603412912482766,0.0139839062943707,0.006300125848081922 +2021-08-17,0.05314852821466406,0.34834593895028315,0.09959752949193833,0.0001613492959282907,0.010643850221460322,0.052499485066377055,0.161200123851849,0.07578115890092423,7.814482071989031e-05,0.007432911532101861,-0.02374286977151557,0.07523798451740045,-0.13095447667282079,0.00014597996722952883,0.0013152994799543371,-0.024660808552521087,0.026954176277739907,0.055620270074427554,0.0003087799579312189,0.0007351949662416906,0.018475327047714898,0.04738101919952011,0.019952915879655215,0.0002040259970081871,0.007096135177651489,0.0325861659586458,0.07751686711340242,0.10965414530117175,9.178755314646747e-05,0.01260774270989954,0.05709597638014165,0.24974423819246233,0.036062368027886565,6.708105462446245e-05,0.005833663515117514,-0.020645306754428418,0.15689737179585078,-0.018853564746345638,4.5123656641324134e-05,0.004203925651159679,0.009407385073700737,0.007146276343889516,-0.06708009713077338,0.001015158608683757,0.00039847150223978173,0.008843763366946448,0.019276301753118057,-0.03168234786274598,0.00016042619531265236,0.008402965685515717,-0.018218723249745085,0.013811116926742204,0.042565151688420885,0.0006447828758398089,0.0001687735503549453,0.014980452470882833,0.20865973755318146,-0.0035343788902651115,2.1394841017984318e-05,0.01286252073364018,0.004689253528990799,0.014179740121248058,-0.040090736420652626,9.82395762233433e-05,0.011503454791393558,0.019229974078044845,0.11734222705884799,0.04532157992920412,4.613029061656111e-05,0.010943395815618661,-0.026671652126507312,0.02356266849057472,-0.003884774601551253,0.00220774249744361,0.030987393794310928,-0.02311179515480955,0.13475671107652804,0.009808226214482794,0.00014113521347678762,0.0056045252971683645,-0.011999877280349718,0.07268903731966447,-0.05409537795037044,0.00025563253066411204,0.022664906025249468,-0.04244071724005928,0.2255150447200675,-0.0736090683107125,5.301126289806607e-05,0.0034423781976324177,0.021923169167628775,0.10413499523164735,0.005546782208209869,0.00034697121032339234,0.023006047597213607,0.026325314977524678,0.3070200682302204,-0.0890473172501655,3.558254797188375e-05,0.004776597397602908,0.034292614988708635,0.33381635187420305,0.11833039598209748,3.432216746719812e-05,0.005729452068719049,0.020231925173475017,0.058167612812396324,-9.179268121208188e-05,0.00011204145115220383,0.0026828193721540683,-0.0069595382653964265,0.050293414783476674,-0.03940441535670826,3.196404100461568e-05,0.017134417358283194,0.02769781369438425,0.09228940938404098,0.089701386966249,6.653819344826239e-05,0.006752359531987019,-0.007497540202534602,0.03632619304010562,0.01466271834619727,9.437294596543519e-05,0.007577705159180052,-0.06089044049430469,0.061000589320778294,0.18812788151912868,0.0005705459757866741,0.028395911012604094,-0.03482437999548252,0.12438108058522944,0.07328696436280627,0.00011784606258162228,0.0008559595288205333,0.01986835647743879,0.07090142493424233,-0.06651800122384577,0.0017985650700572922,0.004768301609837794,0.016713078058547468,0.15012092214436018,0.001782805968761562,2.8628422198912554e-05,0.0016164167386675443,0.01185807163714421,0.034069874168887106,-5.2332084233632e-05,0.0011379280681699032,0.006754867887904675,0.03211515802665192,0.28469211885514994,0.05865676383409184,7.512080995783501e-05,0.0039028846859776624,0.01568217259603756,0.023258332092718298,0.022451406311513974,0.00015913768951391117,0.010351173285884759,0.00367825175664985,0.005326151840914846,-0.017608143741298668,0.0003963983348459944,0.02209450194672659,0.03460512499218281,0.15007323907553194,0.01704346922298003,0.0017872590598795556,0.0036087322449018873,0.0539814155473155,0.23312561816287727,0.05225312232210972,7.429244278615277e-05,0.024429061296969968,0.010826936162117095,0.013785942389363696,-0.10028049585937727,0.0019522988957144905,0.005102798110508572,-0.030677298003577495,0.0984623662189034,-0.0003102454940830222,0.00012344197832202147,0.0071809531599139114,-5.148259186350617e-05,0.0001333959796492693,-0.005620240137921636,0.00015645089012248457,0.004101986485279461,0.0014435819354198143,0.00612663849561417,0.0009886190495867729,5.750864147845292e-05,0.0032387200791363082,9.368801278862483e-05,0.0003423753063959659,-0.05125528970493906,0.0025935800165059935,0.02276230651112472,0.01710875243890441,0.08483560429108851,-0.055319397660582435,0.00010031843656393662,0.008084268243969581,0.02031026103927587,0.08743542703861606,0.001406105165510199,0.00016845691929801997,0.021997376837022707,-0.03428825933904378,0.2393563011571357,0.024410751302659295,6.775623603734485e-05,0.00881576917791074,-0.009185504830942957,0.042973110130361196,-0.005096415940593429,5.3722181331577024e-05,0.024001698340055822,0.039170312629028176,0.07696592128299695,0.014177021009338564,0.0002481349616058481,0.023037294064360017,-0.008235431243789108,0.0338790815705722,-0.03297223135150844,6.0446212427175693e-05,0.0018915336468987318,-0.02761608999030104,0.2576849651481853,0.02760417177657146,2.765058949799542e-05,0.012647915076832524,-0.007951612891737986,0.025892172225736917,0.003018725914639295,0.00010734843232852239,0.0033974351201433222,-0.000949563840699313,0.004196488903461806,0.0002011614434859187,0.00035666957166295503,0.0060270009062669385,-0.06293333487195153,0.3377437393281256,0.05020243324506816,0.0001067247717082905,0.012776772236535783,0.004640593638668087 +2021-08-18,0.007183661677708221,0.048749043024202625,-0.0034920239698622954,0.00015583548603906205,0.008510741058968879,-0.00711294319153138,0.02898320484466768,-0.011899161470801025,5.8886190614505494e-05,0.027703873043491804,-0.003269156891944724,0.010640471493456514,-0.012556014545892192,0.00014212552943496708,0.014196915662076695,-0.004568323428985777,0.005516317112356966,-0.013345217511517557,0.0002794959220254969,0.0065470022257958565,0.01702723193941472,0.04290565918983432,0.007277960353974355,0.00020764775758085746,0.0024209623495627516,0.007512767106103996,0.020171529328232733,-0.013827098656557396,8.132196046798915e-05,0.006231499662011727,0.02256485045404624,0.09975123171155745,-0.020474302595215908,6.637492568508007e-05,0.0019790390230158585,0.0002642759340863958,0.0025213835041037985,0.0026943456932705073,3.594324836446326e-05,0.01229917537641705,-0.005738185172800608,0.004932596560322787,-0.08742589330893188,0.0008971059762550379,0.0003800223217763224,-0.028116168914153587,0.0874023327803843,0.022629104376253543,0.00011248510187745335,0.010035895766913635,0.004104697031174195,0.0029547318809309358,-0.002441045644170559,0.0006790275378104475,0.002680246666839538,-0.005248815697787349,0.07450183297785712,-0.0008365564353035025,2.0995061694052114e-05,0.01023636903651786,0.03490681902748269,0.10854733453627985,-0.013154330565407215,9.553052155427157e-05,0.01465033686961401,-0.00937730560122202,0.056217670644998136,-0.011697459421821852,4.695339947882392e-05,0.0005280771839274752,0.002061574909117273,0.0016847004639224204,-0.044604276140118915,0.0023867085945295592,0.021654803608007724,0.011127922097589359,0.0753878139733094,-0.0030671832027051207,0.00012146888198665923,0.010301964341810637,-0.008057670256794863,0.04095539219893333,-0.0031741988447431834,0.000304653823868367,0.017530165900922757,-0.00572533037851895,0.03953881244957973,-0.013733996460276801,4.0788514374202143e-05,0.031002105076382905,0.007499356029743806,0.04429297037880445,-0.023834421959460422,0.00027904611058589946,0.006431591360092502,0.018475505152720458,0.2798833301894079,-0.008985405746131972,2.7393625875331962e-05,0.015302121440020904,-0.01635197869108472,0.16543632749011697,0.031114330052744128,3.30233510247961e-05,0.014276089003199769,0.018642439336843432,0.05311918241926662,-0.014354941290376708,0.00011305092297284957,0.00017519906284026252,0.035126456556064556,0.26156330819957196,-0.004793318700018799,3.1020578756816964e-05,0.006747119690025789,0.05079207076902243,0.12040147794999079,0.22401187015393761,9.352796467594327e-05,0.006175847401974996,0.0018255797385883486,0.006303298902965044,0.000508051367827902,0.0001324285124596299,0.007129514928170166,-0.007858784938702679,0.008221564265689804,-0.004289451345703143,0.0005463569974228996,0.004455427286853308,0.005902852785807919,0.01964387386875812,-0.0479827231176085,0.00012647969930713212,0.016196334650967637,0.009466571626476133,0.03860066908608807,0.003820118843460004,0.0015740447215715193,0.0011405946233733872,-0.009138989552675883,0.0658376643602009,-0.032455239092293385,3.569488282010289e-05,0.011155723038567218,0.002215680583508198,0.006525084575246164,-0.005849758441344718,0.0011101771300177968,0.008920404209278613,0.01572929378328191,0.10839804570012286,0.013554038252109532,9.66303193568828e-05,0.01946990102638915,0.032670083628689034,0.04823420870599664,0.0528083648223728,0.00015986024500766637,0.004200153885266638,0.050780643783769765,0.08339889741178369,0.07204017688106117,0.000349495676210909,0.02353347980808382,-0.0281927465928108,0.11074497113127005,0.040040137186516236,0.0019731664143842554,0.01205607935401589,-0.008600184492335997,0.03010417108012741,-0.010317438102558616,9.165822968856338e-05,0.015795745256877457,-0.011817043070428319,0.017477977789291083,0.006956062754274014,0.0016807179065751073,0.02590049548829696,-0.011109435186785109,0.03934639157372382,-0.0663903129126123,0.0001118672871711107,0.01099874370965626,-0.015557106099194848,0.03329082872492981,0.0035850819108002555,0.00018943690223315434,0.017279999118055927,0.031341369974907295,0.1317278090406266,-0.02889695846883062,5.80703485417311e-05,0.021569892698922857,-0.042223105422773057,0.1284331395978852,0.023754458252526506,0.0031159546651840296,0.03957962557390634,-0.019204393367298515,0.11373656484941742,-0.02416742683143537,8.399260608827059e-05,0.004051007605709599,0.012626404431879767,0.0800563688385853,0.002535593985809449,0.00011437855159576839,0.0024929977627951194,-0.008773763497913213,0.049876973908609824,0.005492805446551203,8.32021455768057e-05,0.015391794427300038,-0.034301314212769295,0.14322132177042943,0.031114994622836862,6.0193622079459794e-05,0.04640925438043652,-0.050121581595383526,0.08301424762889421,0.05206269749611248,0.00029437540683076264,0.04524591332454075,0.02090452253633576,0.08786292598002542,0.044056667310592004,5.916283363900113e-05,0.0061666924697223804,0.0011359862662232076,0.012399482305991262,-0.05283740615576487,2.3637460339602582e-05,0.019905941319590063,-0.00715514064374707,0.020180993929092592,-0.05632324410181718,0.00012393232224862884,4.8035983590978396e-05,0.023378879950383766,0.12706130563515985,0.07977961781812631,0.00029002695177904753,0.018084865145163578,-0.02504855874543019,0.11024853325142644,-0.005070401918814089,0.00013013128489998177,0.015610619922470877,0.0003334463748308168 +2021-08-19,0.020834388574968422,0.14474604361930082,0.007544138022105691,0.000152216117990091,0.009929742917074094,0.012688640059999024,0.05213295395577572,0.0039647358566059,5.840005698152471e-05,0.023029967428133655,0.025596448192463643,0.08301737534665919,0.08139346223966709,0.00014262902447116692,0.006322211165523501,-0.008005179051050148,0.010794999909122825,-0.04419082616485581,0.0002502743046805741,0.005147326203698326,-0.055891120465255094,0.13343661971846066,0.154273237766507,0.00021916215227463175,0.004556598899179431,0.002967816575473951,0.007797621392704723,-0.004621788103053678,8.310394707091943e-05,0.005449685673747942,0.03400970819526254,0.11568141841652571,-0.01370817613730105,8.626391332608455e-05,0.06216020319360639,-0.008692721696346986,0.0723457402400727,-0.030130338292053874,4.120419420154724e-05,0.011783550692504724,0.004545320269684118,0.0038426780707007087,-0.0568512850904109,0.0009121689277951371,0.001095242349032386,0.014107460049605907,0.036172787769954765,0.01900889063048266,0.00013637310698938574,0.008063071008772335,-0.0009759670891226874,0.0007260383314599806,-0.06608220632409845,0.0006570523624430163,0.0054567886876287575,-0.014042855319297687,0.2083604169576306,0.009269893474475818,2.0084591035159768e-05,0.004265765551568379,0.003412808584008073,0.00900631219329453,-0.005504119337334731,0.00011256826466443063,0.0027636227762161195,-0.012080192137419909,0.05911867435362856,-0.11668109357294829,5.7518953129313885e-05,0.010725047193631303,0.0176259247295442,0.015109519240122852,0.02374128453067775,0.002275224406092725,0.003804127644719147,-0.02628400253457247,0.16179430532513586,-0.09026218207891487,0.00013368429081201741,0.009439891033970164,-0.0386721185732838,0.20501750886263256,0.020792341838338137,0.00029208902862495455,0.004294814605568388,-0.0020460465835523034,0.01156627114094333,-0.03249385720805546,4.982910702256415e-05,0.008431425693640611,0.016328033839752634,0.07663525791960225,-0.013159615081481155,0.00035114951737561174,0.019631867146233165,0.028911881132177967,0.33945257933637674,0.010536814939312243,3.534495783625413e-05,0.015070269386153572,0.011439838939582258,0.12702204957186516,0.0039643774665657355,3.009002185234182e-05,0.012861657245626622,0.011765130402812707,0.03205679931609822,0.013250884556758285,0.00011822228321539602,0.0024019190694025017,0.02226410283441205,0.16759517334818444,0.0021066544248348755,3.0685702367482956e-05,0.08774718228427755,-0.008704225597949013,0.02660838411830609,-0.03793669504440077,7.252521410019721e-05,0.01009838461275435,0.0010708254257102549,0.003987532667145938,-0.0012083660764367866,0.00012279000475560057,0.0036323750666127606,-0.016488517378067356,0.014554019343563955,-0.0006345746171377124,0.0006475513601051301,0.00918790131458228,-0.056982103117708335,0.20241096974062683,0.14910550723721783,0.00011849238413536027,0.016628189756870734,0.007950711981945913,0.02080824995229154,-0.006023353435169471,0.0024523905834917033,0.005077491986742715,-0.0017405909940974489,0.013660964353769548,-0.0022620682914333873,3.276404919166164e-05,0.032931550088726676,-0.04284013946563396,0.1252327129653206,-0.027729185097778643,0.0011184185375546956,0.005590427895415711,0.03773955579245701,0.3035240745482171,0.04247484823155466,8.279979922396684e-05,0.0011805514561085502,0.03316376839795408,0.0502976728123215,-0.0030140164887606778,0.000155618551427591,0.005326096445267421,-0.016256325241338587,0.022278984185657786,0.015813294156314352,0.0004188233712362335,0.0008662820145669886,0.012937962015397512,0.046520553822946106,-0.021435529875133214,0.0021556156928770344,0.006328013197163982,0.012865619281477123,0.06183811674644716,-0.028152157106164217,6.675208127519282e-05,0.01777846850176561,-0.016251049382349517,0.02510862463278642,-0.02921115783235869,0.0016089245469722612,0.010599934127079191,0.0011985074716691266,0.004769114434492539,0.005790515102973257,9.956782926295568e-05,0.00977230052186575,0.0043659221179522196,0.011861342497759329,-0.057788868475132794,0.00014921157477447192,0.00841505296789881,-0.04604649690321428,0.21234861775540295,0.019730950441418694,5.2925026294494914e-05,0.0015387780502991322,-0.04063668698379299,0.12780296193831617,-0.03859771402581734,0.0030136681797069795,0.021906964320832004,-0.002950171539972621,0.01642127915639708,-0.0028786456154928346,8.936775656079227e-05,0.0029474149582182614,-0.009183115666165087,0.050137369549262456,-0.12143333844458731,0.00013282789613645212,0.00600585361239463,-0.0453107184111695,0.2539003404824058,0.09178661228872552,8.440853516320059e-05,0.01563322538430537,0.03898535689855375,0.19205778583791117,0.012920741585561526,5.1017243724420884e-05,0.009599438971304943,-0.026016230244213494,0.046207028547430404,-0.05852917216606767,0.0002745147726770032,0.007925846394524526,0.00019991925715574492,0.000768345773426396,-0.002148466891873399,6.470119451105746e-05,0.010357214016517922,-0.03480718697473254,0.3655324188341301,0.10613872923299274,2.4568255012677708e-05,0.0060741710631398525,0.008928350194771645,0.02612042276461351,-0.08769694206832446,0.00011948131091189885,0.0019204704206824963,0.030050369107678655,0.12823464191516928,0.07336915259305175,0.00036937918463720107,0.0030629681361492482,-0.003598250738608912,0.014840468459946748,-0.008750999080043547,0.00013887229379594643,0.01207327115000149,-0.002376714009889192 +2021-08-20,-0.011038726241040428,0.08257296095110017,-0.028032311654541207,0.00014137339546365125,0.0028712965095447985,-0.03545687601823106,0.11940234888147112,0.0178273270506817,7.125217486192186e-05,0.0023370045753220966,-0.04959182387574788,0.1672104055540524,0.0684116313211162,0.00013719680104345245,0.0032935631661201565,0.0036658620890024024,0.0035148081412318313,-0.019588138785611026,0.000351999750186159,0.0004525657087171677,0.01263852260922972,0.02990099720501692,-0.020078603053538566,0.00022116093106747288,0.008055189179220736,0.009083448758995298,0.021347848804010344,-0.035304253197448336,9.290592083426251e-05,0.012482160259832707,-0.0006466991432865225,0.0021430134794280307,-0.11149930922334315,8.854565157079526e-05,0.021774524983149943,-0.02216099680095576,0.25043591226159023,-0.055627752784445275,3.0345290480649556e-05,0.008522282515147058,0.027937490393700304,0.022218954468480896,0.07504814400022955,0.0009696356147756986,0.013281273974617008,-0.0010034374404545817,0.00280140170300116,-0.007744537689392614,0.00012524973034741112,0.02482422966339237,-0.007339282941808385,0.004980877849662607,0.0037292795411292008,0.0007202314768619661,0.0008977063421421762,0.007339610826655489,0.11044913798943778,-0.08432359569746568,1.9803114171046803e-05,0.010301599901123896,-0.022033911594545482,0.06148699509856796,-0.014283121939307732,0.00010645335936784784,0.0005387644968365122,-6.282458363051658e-05,0.0003343265777436172,-0.12671033210825294,5.2895720187687983e-05,0.0015789994857085667,-0.011958353823768565,0.010281344769319627,-0.002206659119860275,0.0022685295926532833,0.007279175600380846,0.019084384225328623,0.1107138109764432,-0.010434484505298687,0.0001418497122460919,0.013758710691947899,0.026546879075798956,0.12892051862039794,0.0021032585291259486,0.0003188597193907723,0.0073994047866726,0.06711136093046881,0.4411684233221379,0.14730750578595758,4.285017319391403e-05,0.01361559395045925,-0.00018652739184211504,0.0010091844893185113,-0.0037704424140688852,0.0003046203116534013,0.008358184541952668,-0.009097715445150286,0.1522073258897232,0.007620324642729755,2.4804302796082622e-05,0.0014638952305574102,-0.00032499300523364987,0.003042912768052932,-0.006275214438893193,3.568339935152398e-05,0.006665511468069707,0.0025173171808434806,0.006714609055338592,-0.019145623750227023,0.00012076468806112923,0.014466479067916746,0.012154754130938522,0.08246958881782974,-0.02508590597384573,3.40443247895516e-05,0.0019417980120047624,-0.023966418927615852,0.07469873875042173,0.027882320707203728,7.113236686299862e-05,0.00799831873153406,0.004008594006804388,0.015664604153520546,-0.10403004780314676,0.00011700953238833195,0.002101350714410345,-0.024647979133802653,0.02164836044766881,0.02488842776696296,0.0006507765101909478,0.020773294423295858,0.028511579587597122,0.10840373943364187,0.017208876879097428,0.00011070392627392544,0.0037934325179603723,-0.06595575374440307,0.2112111520046917,0.04927425299523214,0.00200426442145404,0.012065763338231195,-0.01811721661603854,0.15018444211460974,0.0018975450562347983,3.102049521067175e-05,0.02213236655667488,0.010179739861302882,0.028169771888918723,-0.010441999454000832,0.0011814752261076558,0.017311902438010767,-0.005158808008381494,0.04101815803345858,0.0021807908246122085,8.37527073253547e-05,0.016836112256804456,0.0171914920219989,0.02460746311895401,0.0013568734478560881,0.00016488916299296506,0.01763256841246442,-0.019131629616043127,0.02603681494403201,-0.04041312612317754,0.0004217625573151183,0.027659273248756052,0.050119542263248565,0.18368363938760388,0.025249262372356415,0.0021148859961251367,0.01050009087175337,0.03952530413165761,0.15143588367305733,0.007925911230411519,8.374074005287243e-05,0.029006871292567696,0.01067955412128935,0.01433744608638388,5.753785741344742e-05,0.0018516483605059764,0.015377815631435829,0.044495724067388935,0.12592431719676372,0.08375251368686815,0.00013999892799128794,0.0275868803484307,0.06802274481034516,0.14651422501224245,0.01766656287756505,0.0001882065510560854,0.0004289832685752857,0.006249872445811409,0.022984953158022927,0.005100534488414366,6.636536020135252e-05,0.003619338482124667,0.010092780709600414,0.03146019801034171,0.003666865443920025,0.003040657076642299,0.02667749713415243,0.012369997129341611,0.0612563169174462,0.002595123755745176,0.00010045216204924907,0.0005755955310721743,-0.013176981320942551,0.07576656034627124,0.013262677565776463,0.00012612440868423947,0.027255240661124173,0.03384793082839611,0.17623092052229208,0.04179046105473912,9.084451566157952e-05,0.014803472898368985,-0.057316928782764606,0.21397142612599743,0.09493750579291303,6.732471523467648e-05,0.012283827139683658,-0.04143041763392522,0.07843056178184098,-0.024499541044879124,0.00025755108242881276,0.0005572640578983018,0.016293223195401656,0.06873131567258599,-0.15772383431874246,5.894768109357171e-05,0.0024470850603049562,0.03300424590638804,0.37379454468018114,0.09633460850243425,2.2780756445692413e-05,0.0021513224244611535,-0.014702368818154128,0.034811827842388496,0.03206783630635441,0.00014762824283582495,0.0005077748362745253,-0.013767840588328093,0.05792580694713282,0.00519630264457128,0.0003746465237389004,0.0030903205996186565,-0.010171132743294167,0.05074168561440623,-0.008799627900767947,0.00011480907770172315,0.006738244666197626,0.0016223210536071443 +2021-08-23,-0.004016522938280835,0.02783805450658772,-0.01579918812408087,0.00015258012087963115,0.009796175923216181,0.018010651298549462,0.06009104665568859,-0.013206180563573136,7.19167703892476e-05,0.011148777032304071,-0.0007738059649241379,0.002554664990134404,0.0013357260528704484,0.0001401184489881903,0.005073847914823076,0.00176083222637189,0.002013835677050212,-0.009979326281851221,0.00029509496789033014,0.00035948599514083507,0.0430021665400534,0.094558385916795,0.07049399994332418,0.0002379512873762434,0.03173462827698556,-0.025984524630750135,0.09116247123438087,0.04817963023511926,6.223653800269873e-05,0.01029979981209922,0.040814550351345326,0.14172844458407102,-0.010024476102656986,8.449827645535434e-05,0.0006277043462538667,-0.04630379487741005,0.43305860233424837,0.031209490594726733,3.666642180008588e-05,0.013062173437562963,-0.010447914060249088,0.00773742854453252,0.024412626783346793,0.001041304456237838,0.0009161310043019279,0.02245748371357329,0.04710228586470033,-0.0855266034536261,0.00016671742579002432,0.00910972975358274,-0.0012514154136441923,0.0012066005803720553,-0.009999675361311397,0.0005069467325761793,0.0018758219424676503,-0.009199178916103602,0.1097190672721772,-0.01141187351441393,2.4985597989385564e-05,0.0015635743004002549,0.07328141829475182,0.18663135634936004,0.08158353573014254,0.0001166434326024051,0.04586412882228907,-0.021306862307079427,0.11795584515762857,0.02165776875871639,5.084659216062468e-05,0.007909566667954804,0.026114429992329203,0.020655258688548544,0.018736787705450845,0.0024658853751646,0.01246212247416734,0.024824007757308367,0.1916933431561736,0.00678472930385629,0.00010656558526492689,0.006739025602322774,0.06894560818387568,0.35899895004759524,-0.0017421442185466148,0.00029738678132067435,0.009689309267752595,-0.07116511995720731,0.4215979901378679,0.05247301576088632,4.754771051439632e-05,0.002599543044329208,-0.025798372112429066,0.15561621586111332,0.014069454026993233,0.00027322740651907927,0.017706283769705452,0.02396469274630602,0.30954135876486555,-0.10348039814718768,3.2127979339969817e-05,0.01715059716892807,-0.003227066288948756,0.030429540470134058,-0.0016562216843037496,3.5431880432174466e-05,0.01404231494604474,-0.02255132762222341,0.04989610632739686,0.010881198163765485,0.00014558888288465364,0.025097322946332844,0.027825691096574325,0.22461217798910862,-0.010873648413473533,2.8615743648322357e-05,0.03092167254681722,-0.009428885947762634,0.025482674709479246,0.0022303117081443726,8.20337858027023e-05,0.016151505566358228,-0.008138540607558106,0.03106151225484585,-0.014499115769309099,0.00011980433544827527,0.0006774908894075373,-0.04513627943848853,0.04255328810780823,0.063538379966699,0.000606272954613205,0.016019423865488283,-0.014947113289839222,0.05523259842841602,-0.023904085993346837,0.00011390633020020692,0.016532108038267837,0.006327495572822738,0.021999370103187102,-0.010043631085572213,0.0018460386036857435,0.005538001830533832,-0.024308955923013183,0.224302945882539,0.009765393639423461,2.786849552354711e-05,0.02173942891735363,-0.015258761394123297,0.04228284596399074,0.0060687334589288955,0.0011798487605619943,0.017967450760505384,-0.019755482004467317,0.1726395673645153,-0.006601041146678933,7.620315183280757e-05,0.005084611094626447,0.07185072616564969,0.11784539668455923,0.2042244319818957,0.00014390103757884614,0.004619778167238092,-0.02571226138783655,0.03852798211682352,0.03784021328957017,0.00038306098809268835,0.010348842241787516,-0.005607439596499642,0.019477315587617092,0.004178012716229426,0.0022314432384010446,0.0042779138404320256,0.01168466934036539,0.045508412149155485,0.0004907058782293733,8.23787342532622e-05,0.0048802746455484415,-0.04851722417112998,0.06714053279303747,0.055276623161468086,0.0017963392281139183,0.011276455489966726,0.0037163178378310326,0.010842796233675485,-0.012974472615668321,0.00013579619154819648,0.04392304254944387,0.009798065281512681,0.025995710709877613,-0.002371728054093785,0.00015279143489725967,0.030387173722311298,-0.07492791155945298,0.38146991064757263,0.1009537612755501,4.793991561347823e-05,0.02560117000726789,-0.0713495525778663,0.2150768372365004,0.048474633438745675,0.0031442398713548065,0.038397566882288334,-0.022010070842645682,0.110897333513168,0.03205564463024758,9.872812911831464e-05,0.006758403197718727,0.0304544034573107,0.19210693757355038,0.004993981672023473,0.00011496557941884263,0.001507737569766438,0.008753811535928111,0.04201979408681007,-0.007871891884745914,9.853532903717913e-05,0.02485737699449891,-0.009281701298754094,0.04669224782750912,-0.016716425873848032,4.996089398461865e-05,0.02680790430321089,-0.0006930744259424352,0.0012948207227298375,-0.0047094629745159594,0.0002609754328780754,0.0029837328105402293,0.009202809453492989,0.03325778385820645,-0.011873946834324129,6.880840633547709e-05,0.005632379698611922,0.030411684076168396,0.36000686873881727,0.06352274701717385,2.179520553012714e-05,0.00951358333876342,0.02663862375932643,0.09336905940088015,0.12521846307763324,9.972815045838855e-05,0.014300509994427031,0.0016982153870587187,0.007601456437445171,-0.01686408878180213,0.000352146950214099,0.007575774002345462,-0.0035800378291527234,0.0153528943069169,-0.031076621633208158,0.00013355776769327724,0.009648310880564533,-0.0010171536632693295 +2021-08-24,-0.01623902843045781,0.09851752260946003,0.009708365028428688,0.0001743143512162149,0.0025650557701637055,-0.014314627219435966,0.04631058890176048,-0.04492233099779113,7.416692367534558e-05,0.015097771993283077,-0.02861157094915526,0.09713935887023703,0.008952644831769205,0.0001362522477673272,0.0019921481905822206,-0.007009947824460661,0.00833095067206395,0.004534667271525448,0.00028398021182647767,0.007934190834519003,-0.027291564616573716,0.06254287018048293,-0.003952743449786309,0.00022832233588075776,0.00878066367507011,-0.006983971103412119,0.01731892803199027,-0.009373745952544352,8.804975787858279e-05,0.0010123562521028734,0.00026416061499497556,0.0009374740825853074,-0.0003760005238985166,8.267965431181278e-05,0.018515092631167712,0.02248036634644503,0.18374877282417068,0.04445271935296867,4.195440357450767e-05,0.008966205190208128,0.009365024423606774,0.008524889835288336,-0.0844673891794673,0.0008471589931579034,0.003925852664760327,-0.017478944649949063,0.04316232418464687,0.008535128657570954,0.0001416029402521579,0.009291963615840707,-0.02440580917653316,0.01971871372129521,0.07308953325844349,0.0006049771722801828,0.011955510795902347,0.0037387605804309033,0.05609556962399725,-0.039770866783324164,1.986194989841884e-05,0.000595833436228755,-0.04316926740435228,0.112960450227707,0.030185970840602816,0.00011352703664932557,0.024980997970408536,-0.011712513750295651,0.0525435218061369,-0.11360050932423182,6.274696920568209e-05,0.005538769714780019,-0.018914892314351745,0.01752233713693665,-0.06384039286472573,0.002105400945408833,0.0005110133318521617,-0.10435862354816586,0.7567286689421321,0.21312447443137245,0.00011348547045582283,0.011393994104085555,0.029295007455152927,0.2067955961783565,-0.01863868111830522,0.00021936157658522027,0.015996941272160843,-0.02462025151551755,0.1298329792538575,-0.006827946637951492,5.341563780141924e-05,0.03599897927903245,0.021272841724297078,0.1260828699700035,0.008537250620191669,0.000278071340424948,0.015140726222370601,-0.020641341127892458,0.28305317470500974,0.0411375196576719,3.0262173179149795e-05,0.013424430096524578,0.0003242176404427761,0.003889939625149872,-0.005860495252718808,2.784681240182584e-05,0.000853555136705346,-0.012541678694458963,0.03955980954870834,-0.023253326759441823,0.00010212315749399645,0.004600983918035094,-0.03824157636653294,0.22426957155129812,-0.0040562224187575945,3.9387444920638405e-05,0.04885553478993365,-0.017037404637506203,0.06095143696169321,-0.025854009516912402,6.197219396722697e-05,0.01614911726764663,-0.018515526994976068,0.06992338518519989,0.0749726140373729,0.00012107716059106763,0.00016151541669857765,0.0020442693621456776,0.0020221468453138812,-0.005861781492577028,0.0005778312041488663,0.027308937815189973,0.03381842628907751,0.12645258711023222,0.0415833483315289,0.00011256715351653898,0.0023467840898175885,-0.01821461913530344,0.059304251080455124,-0.010974390961410374,0.0019713032754496164,0.002691069428035972,0.013910624807928559,0.11428557912652886,-0.05855855810051826,3.1299499941868455e-05,0.009035356604460011,0.012948802554110532,0.04159113684740884,0.0014454173839167175,0.0010178882169288906,0.008330047976966033,0.010999143336943861,0.08267131384917542,-0.003964666654254292,8.859917240577345e-05,0.008018061409760231,0.012380504155121892,0.019278780321068247,-0.018265087661627093,0.00015156682804432127,0.019546280990612643,0.014144230679256995,0.022416545033854225,-0.003214164585830596,0.00036217174616588196,0.003202229882724421,-0.002100351332841745,0.007653085339045081,-0.08379316974697042,0.0021271873013506046,0.00041225732801467756,-0.030596123193665756,0.09896197611781649,0.053126877053451885,9.919468723871603e-05,0.008324751007728469,-0.0014925178392937836,0.0023175030658241147,-0.0074868456481596395,0.0016009449744697716,0.0030887757062359666,-0.035643542187170106,0.1146883027803083,-0.06266320733341883,0.00012313393756238094,0.01219795906198755,0.019654134936291746,0.05560619002686307,0.004481011239100705,0.00014328184658758198,0.008955608061293713,-0.018660078861034216,0.07735154491976719,-0.015460322532691018,5.887872646082862e-05,0.05448983200035234,0.02257420175846431,0.07789050531066283,0.019885228273005182,0.0027469195413426274,0.021443765112729805,-0.027106971735410764,0.16594946207913044,-0.07236801349424118,8.1254182393096e-05,0.005900673002484633,-0.0004969016209566308,0.002567978779124533,-0.018327425886038067,0.00014032652393307677,0.0004105816887274398,0.015516537190766436,0.0894327090083111,-0.034598750102947065,8.206294892578416e-05,0.008669813773147675,-0.008359436170050886,0.038320548751824265,0.004612921507506153,5.48267700254774e-05,0.021294449922452163,0.0010603434057943422,0.0019194706775644212,-0.020578002939965364,0.00026933602845773726,0.007250744798093204,-0.005083770896738427,0.017884998763702357,-0.07562265816116669,7.068242352870828e-05,0.006331843424199346,0.008683022165995737,0.1009920973867885,-0.0012818672706204355,2.2182720312798725e-05,0.02043114167424482,0.012441832777572766,0.0369229469228223,0.020671879393327323,0.00011778689367570732,0.006477961914217288,-0.025364937772830488,0.10939604789789786,0.054060953726105455,0.0003654770740884556,0.002106327824238234,-0.0024842312795963664,0.01125321171496408,-0.012787143737604074,0.00012644082828349348,0.016182602611728315,-0.0071476975435161155 +2021-08-25,-0.061138996726471245,0.42574486673045603,0.11541764264187075,0.00015186422263206036,0.032860374299763025,-0.03128717926114069,0.1112317663641088,-0.062165235430503014,6.749134812841576e-05,0.006648585317966855,-0.031614884446322204,0.09470567960465777,0.014465052083528836,0.00015442328199533607,0.008024954200832206,-0.007698885409034529,0.007579127777500354,-0.2026593180355933,0.000342828156181081,0.004321660595578039,-0.0015943188982698738,0.003464359587111082,-0.036960896523108196,0.0002407964071026751,0.0032831007148084205,0.02572202140215071,0.060871132768365296,0.06456812295632887,9.226573618912289e-05,0.002163447629544785,0.03623797169487324,0.12351872035620719,-0.009435961523739426,8.608370546229892e-05,0.01509606713413095,0.01770271261712365,0.15855839967746116,-0.06722368298441504,3.82868097096584e-05,0.0023698232776151154,0.01618229680930549,0.013138362549223178,-0.05998715542974079,0.0009498252426925255,0.0015089435176856352,0.016832276481990503,0.039489034858072286,0.011251670595256957,0.0001490487105220557,0.0017749644939013052,-0.03542740900506488,0.021473087019874503,0.10599938462732166,0.0008064348089479697,0.0030899404507173022,-0.01186524571959358,0.18748756697656363,0.0012671606480692866,1.885936442878405e-05,0.013567921844421434,0.01598795424646235,0.0508061471541612,-0.004033599923042749,9.348193058504767e-05,0.021931138949517093,-0.02205930230406289,0.12005139163903215,0.057482595794204734,5.172331981738211e-05,0.0008171422930468231,-0.0467639234617962,0.03645467054463344,-0.038560060908705215,0.002501962153248438,0.015552075290934346,0.06993436193419106,0.41811923078359486,0.030154927227319564,0.00013763934012570543,0.03150655734695768,0.003416588147937141,0.022009603347477046,-0.06993864514456594,0.0002403746395788283,0.022977442053162316,0.010114363591450919,0.05954371464101373,-0.006200615780398306,4.784797835445505e-05,0.003016955506387608,-0.022928161335682627,0.11999088502277212,-0.050745297184578694,0.00031492546542336567,0.008924143594276106,-0.030592338978146873,0.3916918427822596,0.04683610154537455,3.241144449731742e-05,2.558662415115846e-05,-0.01019484599697889,0.1431742586115351,-0.0007600874282036613,2.3790163998903183e-05,0.001014851046709569,-0.013488440717277592,0.03472226374459857,-0.02126709801405077,0.00012513432974222517,0.008883947485457178,-0.07064857798263606,0.5011914973763328,0.04098631798786972,3.256057803998237e-05,0.026539609689279327,-0.03800841437252568,0.09502214762768756,0.03574378870860077,8.868134936016208e-05,0.005147576523786615,0.0014518249634803927,0.00553545551014078,-0.018158865527573356,0.00011992493469801953,0.002840875427213095,-0.04391952115749151,0.03992534998752037,0.044741587099972634,0.0006287593060950717,0.006688474072564942,-0.03944400648134368,0.1259165563805509,0.026357841292718093,0.00013185123215804363,0.01902680090440476,-0.03917113746267802,0.13720391931363043,-0.021666095846367427,0.0018323939118427507,0.014042786137550991,-0.0024662290164982614,0.0221731461980283,-0.0014416063287487912,2.860146494474917e-05,0.0032197757845815337,-0.02122926564001902,0.05667896966017593,0.01475940809894121,0.001224571913472183,0.029591155423875897,0.03517393224087884,0.24178661921054428,0.038561434055091735,9.687557719720103e-05,0.0019523110172141468,0.0026038267836975145,0.0040372699210825215,-0.012969054971499801,0.00015221928935955115,0.004890100419327676,-0.007407249939813482,0.012423847636232315,-0.013194319388522816,0.0003422195345543167,0.002740259198236655,-0.005141349879147263,0.020658578576045684,-0.14501318759368786,0.0019289770661055623,0.0028526088301778674,-0.023495984473703158,0.08433899603913456,0.0292152719759068,8.938313646093311e-05,0.01331492933985375,-0.05391805919516889,0.08036257803517662,0.029390128390072063,0.0016678522781632243,0.01122068678531952,0.019231328671101604,0.06627440234992005,0.019195976777246094,0.00011496866982940656,0.028322869011847433,0.01836879034851773,0.047828684251309865,-0.18742924119160573,0.00015568705362834672,0.004728013699235389,0.013896053873087193,0.059025890358655624,0.01814876809443498,5.7459635593263926e-05,0.020251476415589633,-0.08985430276622804,0.310821626757187,0.05969993015293512,0.002739969367178239,0.0094259081458659,0.0004653153884289944,0.0026327783882338007,8.697524756879409e-06,8.791716630620362e-05,0.009032832287887397,0.008949049094807022,0.044718558209259254,-0.0021820084316511,0.00014512755618985233,0.0024302436927327743,-0.03994276177874572,0.18965370397163817,0.03464024856951369,9.961516529460931e-05,0.004527880136510596,0.008760945849932996,0.035815907420551935,-0.022604194938486147,6.147838242716461e-05,0.005056883371922747,0.0068318698132809235,0.014586359679637959,-0.1517377537809292,0.00022836106384191,0.0025156156398217023,0.019310742321108333,0.08423915657236271,0.058607383601942224,5.700321289986078e-05,0.009153168910275986,-0.005463051249416367,0.06157897646059955,0.0027827313555604757,2.2889383425895235e-05,0.0007739492991107337,0.004258945276223272,0.011069071848220936,-0.0007179837577039632,0.00013449304238421087,0.0003185758056167033,-0.021144824840012347,0.08567524379363499,-0.005729755971065957,0.00038902428562688973,0.005070102701157775,-0.026568029965729243,0.12049161701903466,-0.1015994492902381,0.00012629155646377426,0.006543354137075283,-0.010495118243580473 +2021-08-26,-0.031632034486157694,0.23792089881696213,-0.05366726158181808,0.00014059863925617265,0.0030521080647363972,-0.008296655185442654,0.03063536553219492,-0.005579335679146193,6.498161502425995e-05,0.0276723396267589,0.007103773102246557,0.018952776254625193,-0.06524296874338284,0.00017338576953648436,0.006455659654212142,0.0014378026226789721,0.0013920808927878668,-0.033181132909110005,0.0003485801522366113,0.0013548454376424617,-0.004243408587589788,0.00914692589955195,-0.040890105252063595,0.00024273782847068022,0.007745203595196243,-0.004447434127920999,0.01281799794444621,-0.000633395705409198,7.575931977316702e-05,0.009790524433114766,0.02553295649784679,0.08761184258963707,-0.0024070052756950686,8.55122130915685e-05,0.013838608980097903,-0.019138933014389767,0.15042977764814117,-0.0342355628817288,4.3629729794285854e-05,0.009584476358056874,-0.00696386533428518,0.006330522971357755,-0.02541839321937407,0.0008483119050008152,0.007383201173417998,0.024449918725696965,0.056082356097505885,0.01871774033211116,0.00015244495469049564,0.006346399016668846,0.005422242349854409,0.0045723729089245015,-0.0014178014146715037,0.0005796443940811348,0.017676491385715136,0.01224238297576876,0.17069065017914267,0.023258145587345718,2.137366597779749e-05,0.0018470394826267777,-0.018628421874810574,0.06205218145396585,-0.02266910796876385,8.918052995971137e-05,0.011583881015061484,0.0024024007785152564,0.01325330734528242,0.005824143610324581,5.102499946659693e-05,0.00013218059885228967,0.03272142550190395,0.02205513526874794,0.0840298076513004,0.002893646416057586,0.0026536859526322845,0.07415340332519034,0.5638532637149195,0.059142071885782764,0.00010822238415757864,0.00487443802569649,-0.015819401472488785,0.08794893964124757,-0.0411270910083894,0.00027852723773290843,0.0013018960284017242,-0.004245130435145013,0.03155558320365497,-0.004388977113782674,3.7894465323096624e-05,0.045667758492933704,0.00977698120389118,0.059587410980896045,0.004714278404456972,0.00027041891851009803,0.017150642999579732,-0.019452781974243934,0.2956028790974199,-0.016201233261696438,2.730884238362017e-05,0.00820587153509835,0.005071821008706403,0.05351262686720044,-0.06252302074476469,3.166571924675071e-05,0.0025650453234476863,-0.040616940327687194,0.09200140075129673,0.027956431258059668,0.00014221176321275357,0.00426456963698343,0.024555364150534404,0.17143383220169542,-0.05318408125615053,3.308584430419919e-05,0.0013145358868375458,0.007305316448620903,0.022352077874943838,-0.036416147826028776,7.246003070076892e-05,0.016205430435093218,0.011424001693162988,0.04070063253982562,0.04154795622411553,0.00012834108178638406,0.006260078880204116,0.0344806101448338,0.029085953441870826,0.028968187970819317,0.0006775903292072158,0.002515698982457422,0.037357272155643564,0.14424395945630852,0.039774070557659365,0.0001090092948376716,0.013396057925440737,-0.012676640300444308,0.04858227852431952,-0.10500283512829435,0.001674732554914909,0.006162755531529663,-0.022089653819026375,0.24225248584348022,-0.07977553190241021,2.344784113051829e-05,0.01086676772013599,-0.013993093849852723,0.03678380880595134,-0.021183544611740587,0.0012437363291139473,0.006951707456096198,0.0045280308430208785,0.03959677954001802,-0.00891377894398955,7.615091991692597e-05,0.014433775765197698,-0.025457498431807696,0.034962979687764184,-0.0005419853226552335,0.0001718512415530644,0.0037867424644093747,-0.047456211494936756,0.06039469524879343,0.056820490742294644,0.0004510224756754305,0.005178778107750049,-0.016680210019552468,0.060606313817391164,0.011517884657224035,0.0021332118396379103,0.0060925436747157795,0.03024617990411444,0.11530785081089698,0.00126573729944825,8.415928243135554e-05,0.018571988060112017,-0.009499261716069615,0.010851144632691974,-0.031631419587271295,0.0021761633550573174,0.032397430098844826,0.04941574702344038,0.16424986276176917,-0.004940591369971058,0.00011920003589275524,0.004691582345098142,-0.00783302382022283,0.021787288066120482,-0.009115979681990226,0.0001457426452443295,0.0015292005677872166,0.018718746499964904,0.0829569108862798,0.009464077996002166,5.507292160206192e-05,0.015385714636431912,-0.011459922866341824,0.04186034925423272,-0.00044138102413210454,0.0025947582711477006,0.007501504876380794,0.003047630004757414,0.016605884895910115,-0.03759472839795856,9.129369565871036e-05,0.011169811627941069,0.003655369701378469,0.02253023570547259,-0.04353358346042006,0.00011765932618043716,0.0015392411161821136,0.000495837707090145,0.0031994431310709563,-0.04552710282426958,7.330166748060046e-05,0.02636389477197352,0.02821006634731548,0.12148903527414913,0.0053868689951561246,5.835988387539109e-05,0.02118094159924414,0.05145654161542543,0.10297301725299257,0.07308499900233491,0.00024363885493475267,0.011734512060527606,0.006363292349675478,0.029804199765483753,-0.04246384316994324,5.309074098328087e-05,0.004141046406505033,0.017200172135227114,0.16337218718617139,0.015484050148279844,2.7163514236335565e-05,0.007934894542294142,0.009638491228074286,0.02910409008834538,-0.007717847577370112,0.00011576145985053144,0.004159357644945654,0.03544950537094463,0.14336763129184157,0.09435024324604187,0.0003897508229082065,0.008841682219696684,-0.03271576704563714,0.15158675426424859,-0.005604303933651344,0.00012361399691071946,0.006967300047545957,0.003529396334273025 +2021-08-27,-0.0416540167135491,0.30109023909136684,-0.06379873206267696,0.00014630083146049904,0.013458883393855085,-0.013379781006590975,0.04510470452163905,0.0028089804499312108,7.117667392630514e-05,0.002968407107200717,-0.01665927996622467,0.05455298387752993,-0.12267262677070662,0.00014126511297484577,0.00020559260827233213,0.017240944396471895,0.019575135888702674,0.054475681156144436,0.00029725154593166544,0.012011212562384008,0.04066064569157039,0.0851422159147487,0.057325960755287966,0.0002498774666782042,0.013814658087202676,-0.0007564013931122158,0.002339350840077894,-0.025186855161750264,7.05998373653988e-05,0.019473180993559523,0.012417933746384712,0.04951196443801756,-0.018037334035526983,7.359173396397637e-05,0.015621717656345437,0.016167408878353294,0.17547403326768268,0.04214007128116486,3.159556878241053e-05,0.007290749224111404,0.029358676339206448,0.024881444582554924,0.10217996489024006,0.0009099251448655211,0.0022262640201708077,0.002361637555342759,0.005150593037683467,-0.002072425818619985,0.00016033114585420783,0.016747743866787453,0.0030854507353068788,0.0023422735506997213,0.005282701680645591,0.0006438806302157756,0.015692768932500628,-0.008527327217985443,0.11216739569130627,0.011584351940609743,2.2655261599802478e-05,0.001862642596916985,-0.004367943178133606,0.010998320248028827,-0.002580112744010604,0.00011797817034225003,0.01234228385674261,0.011768850270130837,0.07243964695010763,0.042198218144633835,4.5731930083629207e-05,0.0022881275892923407,-0.049527717376192965,0.04078752580073629,0.04264806101740491,0.002368339311656752,0.003557294579483868,-0.07884781942816434,0.513735102846376,0.07159416079518913,0.0001262997681981288,0.005183443926305308,-0.02321785372942931,0.10986803119447437,9.436741872752391e-05,0.0003272344065581064,0.007460150836303371,-0.014757050902781633,0.08140674066973332,-0.014361545796670379,5.1062275485357806e-05,0.015039925395043832,0.020496946641774105,0.10844370741893966,-0.04611000128311191,0.000311509733592987,0.0022326592252930656,-0.06775860574747412,0.8291349764934073,0.16613236978487905,3.391325351030027e-05,0.010370811494678701,-0.009541008675428326,0.10219167081383036,0.009935372209835026,3.119324095473392e-05,0.01779114131509686,0.04008354245437475,0.10942844351435697,0.08287129812464068,0.000117993648426778,0.013281370001539044,0.011690278227945343,0.08560614971251485,-0.01895290882171396,3.1543672803049383e-05,0.014902021808950377,-0.009841173047222354,0.029509977653883322,0.0001918792953110205,7.393590108888927e-05,0.004752453279987689,-0.011917524566918558,0.05078416974250187,0.02540801284110015,0.00010730162394267573,0.007231794637692054,-0.025912468647980944,0.022293702740928727,-0.0006208271570085361,0.0006643579632262872,0.0024577668117062336,-0.0036483634497753658,0.012473299189475803,-0.03495460344658016,0.00012311267439352083,0.022519311442545452,-0.02732607576008685,0.10421361218109626,-0.04242763972506063,0.0016829530225392316,0.01411741322960962,0.035071080518935184,0.328422297019814,0.050539579977601945,2.745988457930468e-05,0.005458004064892462,0.06290198978180572,0.19338822669986025,0.13297507217803725,0.0010634219551254277,0.011493506655686778,-0.028577192267311122,0.20876247407681373,0.013311530097223174,9.115757530635706e-05,0.008004854184333913,-0.001353569937414172,0.002122276389307269,-0.012412425019481999,0.0001505303751487975,0.01713746716936962,0.017372475174353027,0.023311759749086954,-0.008446574838103538,0.00042775052863230434,0.023286216627508682,-0.014068779865850218,0.06738601909517083,-0.004800840613124692,0.0016182178028202672,0.0017338067338495754,-0.013499516095850869,0.06338616404940661,0.011246587398807724,6.833042172787696e-05,0.0203751959251098,-0.05717149073991274,0.07509242399976315,0.04800083503613241,0.0018926076215618835,0.004586805067176029,0.016473083117304117,0.05294379924078158,-0.004571873592573976,0.000123275230495377,0.015603208639914804,-0.002751929448400463,0.008435878555241905,-0.02070958753983146,0.00013224137396126225,0.0019325358723613392,-0.015393728425134636,0.06557143639350206,-0.03190379753823029,5.729847299986087e-05,0.015360842664850554,-0.007589432088803426,0.02299942108672129,-0.006692030652496511,0.003127594440880501,0.010556800159460842,0.019416340400216815,0.09168987994397747,0.03305138541190365,0.000105338357893562,0.011308599541998714,0.013340660314873756,0.07985150631336187,0.005061985499675505,0.00012115880954185692,0.0032737077815563785,-0.02255549779413161,0.1158646922279574,0.020053702188278476,9.207675443837309e-05,0.0018994422699842059,0.03943681841769418,0.16379114957709678,0.008768743826809332,6.0514414355667904e-05,0.006723138066870545,0.032239654251868526,0.056514217289583175,-0.007467290769337931,0.00027813910486836177,0.0040375984986628,-0.010247751353719718,0.04113543563128314,0.0028483197705699743,6.194793790092142e-05,0.008158216881943941,-0.001193912832795238,0.01292792778528958,-0.005500291235672375,2.3827308522541327e-05,0.005086318033984095,-0.015197280660853732,0.055185161772163704,0.028631851656107963,9.626147866743939e-05,0.0011089573325724733,-0.008230290538087446,0.02950176493048754,-0.010404076144477848,0.00043973915670368445,0.006856679497815115,-0.013910036345575137,0.06226795479464603,-0.04416680142733901,0.00012794857674182115,0.017167510647336515,-0.0038269780457327396 +2021-08-30,-0.05182787048299612,0.34954437474558386,0.05071238654471987,0.00015680056792353374,0.004169240165489325,-0.009328891964167238,0.03284450036661798,-0.0007940132247614276,6.815189411508022e-05,0.011261675732089122,-0.0364519754513,0.12161048453309024,0.02916691460703268,0.000138658741712387,0.0034180832113953927,0.0051676960678224025,0.004950188859149948,-0.013135002005418788,0.0003523246677855912,0.006330628948839026,0.02751244967895017,0.075078431848286,0.012851927409106222,0.00019173961037476724,0.014665666013579976,-0.006547046205393268,0.014949567573163713,-0.04155679873762959,9.562325329785844e-05,0.01897386847467915,-0.049162717213605725,0.17722970399143384,-0.05742384461487203,8.139340579666564e-05,0.00902164978140048,-0.024362559363439493,0.2276295993162891,0.006288049758170721,3.670225860324689e-05,0.005844251849058872,0.035137984093401714,0.026218278247124097,0.10415744251074714,0.0010335166090902723,0.004229162805178529,0.05865783883261428,0.12938650545921518,0.20597155780568296,0.00015852543770193995,0.02382568277367379,0.004644047235309645,0.003199831114971358,-0.018803450778326205,0.0007094044843964111,0.002463850908108013,-0.0019556872009659433,0.024396564269314403,-0.0649219281094503,2.388875483079165e-05,0.0017644933823397783,0.05356032491547153,0.15271901043572328,0.022207754639260634,0.00010418402684825439,0.025274887634355737,-0.006002446464202137,0.03584115271951644,0.00022415467172913345,4.7142015319256074e-05,0.005225860093633467,-0.01368750085841569,0.012125142271276932,-0.020595077346952817,0.0022017108816350488,0.01880072458468511,-0.008756589147203838,0.05344190719832574,0.0003875240985754183,0.00013483577404590206,0.02800185845731824,0.044590852789559265,0.25961448454266545,0.012904078832650488,0.00026596536872347515,0.014499736760522169,0.01888706397786505,0.13195509516637793,0.007413417487164322,4.0318024386076325e-05,0.0014742442268127608,-0.04133590541266987,0.2417997798257723,-0.04451204630701172,0.00028174639063191737,0.016172075540326066,-0.04825362768566964,0.6606388759992019,0.03590657160000718,3.031070749976259e-05,0.027596156139221912,0.004357114182535547,0.04206230300103046,-0.006068564168030204,3.46088845970072e-05,0.008769902513737042,-0.03435112936289667,0.0967427972510689,0.031008363496351023,0.00011437869447917346,0.003504555755467177,0.04628014993542505,0.27746807209161267,0.009389821003006903,3.852779165799266e-05,0.021668909980819454,-0.0003874353441001324,0.0012292322934356326,-0.00010104381082521018,6.987835265575103e-05,0.0029389039252293446,0.00784888658286603,0.03106015162760412,-0.0008946860659684279,0.0001155455110107585,0.0001938269378168869,0.014601458128310792,0.014146416204253285,0.0019446571386114587,0.0005899637906321924,0.006845730808585075,-0.010373932423836493,0.02689387515646095,-0.0004557188744789814,0.0001623588771787964,0.024715030369518533,-0.08500353669350819,0.24956919661935845,0.1272939648155047,0.0021860756622123566,0.010197607892863588,0.01418604560033769,0.1523171124298187,0.006776846500264404,2.3949411652590007e-05,0.0035530141538234103,0.009448795340482928,0.03280580749050503,-0.005958567872703291,0.0009416661953173062,0.0010825720573528728,-0.011667620503868076,0.08688138600759615,-0.012795279432176457,8.942958135358977e-05,0.0032576656345255917,0.001685555743661185,0.0024544576604999366,-0.02611175998761548,0.0001620813185971781,0.002177504931350876,0.004230081295019194,0.005685040980730098,-0.09529629565803106,0.00042708963137566867,0.01738453990003571,0.013541163938173383,0.057345275659225224,1.8520624780239902e-05,0.0018302427382306389,0.01339601635618081,0.005497191057674733,0.02352004010803516,-0.05859887413979496,7.498823708048896e-05,0.013825781175447426,0.02618659044115086,0.03227116425989422,0.013940271649388155,0.002017165416710962,0.008925997329678028,-0.020155334232420226,0.05831797378618022,0.006365575692136427,0.00013693157848841214,0.03097830824957729,-0.01349289214085001,0.02988351347126474,-0.014034590947236414,0.00018303484158723645,0.007734462085797354,0.0006103539772113653,0.002995470737755157,-0.03569229758060825,4.973139280757123e-05,0.019845558705509785,-0.033832363934509266,0.1326732327214343,-0.03959293657036594,0.002416946796449662,0.029196829954295192,0.005899863156091004,0.028982578762874692,-0.003246342060965002,0.00010126176303684865,0.008704338129327265,0.001717414616470164,0.01085508024350829,-0.011560727730009332,0.00011473684429135869,0.017847300308919355,0.040532499205863194,0.2316630830931765,0.058337457684024034,8.275519183107719e-05,0.007889314981618016,-0.03598067907818622,0.18412256319793727,0.0420225067847497,4.911450127782928e-05,0.0014587124240601885,0.0256205418351168,0.0457256789251756,-0.11780364317433624,0.00027318543544377013,0.014138073760684685,0.0059834462010751625,0.024547837920748064,0.0046279037989460994,6.06111493173307e-05,0.0012563877494451837,-0.0047719875468308325,0.04803677305923243,-0.005257946815286987,2.563048130866164e-05,0.0015891100536953606,-0.013903737427293372,0.041505268437623484,-0.0021166379521907297,0.00011709471530555265,0.018000287593362464,0.0023774473824212795,0.009248630810298057,-0.003065937715048442,0.0004051925403592615,0.006050551965507533,0.043135000438982676,0.21809624678336595,0.025528789426044855,0.00011328004448983595,0.011677165466022123,-0.0006688384778276364 +2021-08-31,-0.027400693066561645,0.19572433440345594,0.005313887004331558,0.00014804825981243287,0.016536040380907925,0.027404046384893944,0.07905104585596472,0.015271904088444567,8.317974802875124e-05,0.027464614747165123,0.03844166397724305,0.12492655986598068,0.1438001460758852,0.0001423457817322773,0.01422453248301626,0.025358024266632903,0.02166869880409354,0.11474709000388514,0.0003949575648251075,0.0007017801097453286,-0.021217355741592787,0.05355205119884683,0.024565311136236175,0.0002073065003460095,0.005190066896463734,0.02115299914157233,0.0678352615522846,-0.03705015109103735,6.808684145446355e-05,0.013298877204851258,0.03473276335874987,0.13187412544794685,-0.008067735260406056,7.728044248832646e-05,0.019826132034434747,-0.007317481835124076,0.06071350959357949,-0.005689042945901845,4.133090635819286e-05,0.008202219516397238,0.01838798328776572,0.019297691821832635,-0.0012087758662829577,0.000734807398524482,0.002851812384484588,0.014086236310341178,0.030743823852033527,-0.023174704920170913,0.00016021345020142356,0.0021408319822850555,0.013581405124610473,0.009994265160508194,-0.021783647472448736,0.0006642295535446123,0.005811376068849947,-0.0027253019776875063,0.03937190189843553,-0.017279305667432847,2.0627710443795926e-05,0.009300970364882685,0.0037947428499031893,0.007905050663991891,-0.00011468066992007215,0.0001426030228045874,0.0369301572204521,0.01604544757431236,0.09702865390720837,0.06946590423006849,4.654935287340903e-05,0.003314475552854525,0.018752064969030566,0.018358984276408623,0.04449199266201796,0.0019921563574690684,0.009201284509519167,-0.06322590844456565,0.4017832187353202,0.03813896093192512,0.00012949571331582829,0.006352877874157604,-0.022300057067850636,0.14318269310194803,-0.06427504490338302,0.00024117022004307837,0.012105241583819036,-0.07315565277921156,0.4580351841649557,0.04516974986762646,4.498937978807206e-05,0.03145727709480896,-0.008790281850495083,0.053318804682081965,-0.01832977297860401,0.00027171224025288683,0.019832272281382794,-0.012302352238355295,0.17635698607677136,0.003176331443343661,2.894847703127376e-05,0.01777928501160628,0.006871833730902708,0.06271037059939367,-0.0747920062978991,3.661128604499716e-05,0.0005020435834700034,-0.013440857740448611,0.03953369878442988,-0.076521089849869,0.000109517189806934,0.01647866370954931,0.022656687314765854,0.17005899630810217,-0.04566824082228197,3.0774370322650204e-05,0.008391572844354505,-0.0017484879689573492,0.00508786296576043,-0.011342556929703283,7.619116688640033e-05,0.0048136525342600866,0.002269641281070902,0.008752340036887083,0.0023953940189696088,0.00011857186080059759,0.006188231644382455,-0.027656824492478128,0.02462510762471142,-0.015777694812562644,0.000641947833982728,0.020403795912866545,-0.007037876445895857,0.02552343123398029,-0.012259167397927513,0.00011606160956053131,0.0006366825805676681,0.017703795692760534,0.062077025824978926,0.02688386616141645,0.001830436479814127,0.0017849075479608755,-0.07919339880026857,0.7367968258083587,0.19398672911783868,2.7639070354704624e-05,0.005267603189138613,-0.08610015941308453,0.2814758920738767,0.2552862732283837,0.0010000783395756067,0.012161647750980867,0.007166716204669686,0.06008297753722196,-0.04121998370004409,7.943179987323455e-05,0.016644331789860255,0.02757105882381472,0.041112667052917405,-0.03127087650775642,0.00015827895706893252,0.017134077041172778,0.03294736098625199,0.04261481032046683,-0.02727498972934029,0.0004437761808979859,0.017012553028344795,0.009157909210842296,0.044804995238968616,-0.020949728353243727,0.0015842373185301628,0.003418317561147328,0.0003309052415163778,0.0011936666179395048,-0.007878901347506647,8.894283500883073e-05,0.011398778276318342,-0.06613736789985479,0.09082233986385446,0.04366969628184375,0.0018102202233784641,0.041874998374014226,0.02096367141272443,0.06972660674949706,-0.03325487488741285,0.00011912004523284572,0.001766835055653859,0.014998664427099014,0.04171231924826716,-0.0037329750171352675,0.00014576344598876814,0.005159662685396909,-0.010568645044480894,0.05077166578589259,-0.04193638228697465,5.080562806399929e-05,0.0014429724659627374,0.0013958805450604453,0.0048235415113510585,-0.010115666516258903,0.0027428388477931135,0.0042726631143530265,-0.05446831307185433,0.255894545105256,0.20691488921025739,0.00010588232462626852,0.014032229983295438,-0.0020851329964100265,0.010396759911132888,-0.1863176448926656,0.00014544424119149982,0.008407803584060854,0.03404246481913687,0.203507333265887,0.027431719371908664,7.91206110492236e-05,0.001791507222248738,0.043608014183131795,0.19890535348038227,0.015963966327465502,5.510198357492637e-05,0.002397472739341506,0.033919161803159806,0.06505317461206472,0.009897285083920812,0.00025421783193820257,0.0016633232308034417,0.0008131035135347536,0.0037723041934963875,-0.02792360598042374,5.3598607549477366e-05,0.0018182160591663204,-0.03583992777264105,0.32670127925528164,0.04260995355067543,2.830398439998629e-05,0.004579510156139936,0.0009620093095942466,0.0032442042179585593,-0.0025672403781269743,0.00010365256526115855,0.010286468549819686,0.038055684246053205,0.17210698873855776,0.10206360879061423,0.00034853708920233335,0.00599782958994539,-0.0642482473915315,0.2884840607889924,0.05933705410040918,0.00012755904480841565,0.005819552666309454,-0.0024920148342453888 +2021-09-01,0.030985806356971554,0.20311786306779617,-0.011459886961786207,0.00016132484910116299,0.014284199884287977,-0.022587500326818884,0.07859669490147005,-0.07525847074168604,6.895637371430146e-05,0.023806187233674687,0.02652883152375538,0.09446171432796066,0.035939220406292265,0.0001299150614621595,0.007715640073436246,0.020243910623806986,0.018568202079568625,-0.014995982060167602,0.0003679530554403054,0.0003744691430525994,0.00853032454451145,0.01819689518846395,-0.01570721705492631,0.0002452822002817373,0.02650100092033487,-0.0033644197953708508,0.008680262885527498,0.00030652165434383766,8.462994160968875e-05,0.004845406813389114,0.011953238025501292,0.04532440615508838,-0.00016992721688376345,7.738259691283632e-05,0.003071697739944504,-0.012617526667959277,0.1048197259647513,0.0031044065820970386,4.127906254594472e-05,0.007281162346255936,0.01842431087040884,0.01677084093925225,-0.0019125589497389843,0.000847190738619335,0.00016421932285025625,0.049361620213349625,0.11986170318565229,0.09109754867558888,0.00014400277064453162,0.017845308654069105,0.009126909656228279,0.007278868557336599,0.015181311088856413,0.0006128923956802429,0.004538912263016906,-0.016397332553153583,0.22990748902448288,0.04138014423089207,2.1254107646442792e-05,0.0042216944178955175,-0.008083889349162566,0.020666922132951418,-0.0970615414031484,0.00011619718181224,0.02881412147290993,-0.011508031539515502,0.06787236731480908,0.002319167793000991,4.7727629492665526e-05,0.008790616842296522,0.029752574354421725,0.026489214767757268,0.05721598697893309,0.0021906774473779275,0.02191850905868554,-0.08259933708750576,0.5471805921089581,0.03903417982941751,0.000124221847653111,0.02250798997584518,-0.07473640755028049,0.38624110812623624,0.15019364188633155,0.00029962769667227847,0.002910498541880564,-0.010535859055044153,0.05560244316048066,-0.03344908242061977,5.33748949570274e-05,0.006515546521834358,0.04755123042975062,0.281661638667156,0.062223618440224504,0.0002782408330924321,0.007170621580511435,-0.06319918246655233,0.8781490603517362,0.08479795566661645,2.9865751738836147e-05,0.004603878354395378,0.0033068204958041176,0.02973517525744958,-0.03710156362581922,3.715539026035121e-05,0.006806240958107421,-0.00904805060450372,0.02586928460363799,-0.02757784065398751,0.00011266612507859029,0.0018991118424282057,-0.0173931078309116,0.11928361281392363,0.00684849194792371,3.368129499709767e-05,0.005471246757908812,-0.009028757629909793,0.02826555603330761,0.0007635287047411913,7.081868266519721e-05,0.004025169494910296,0.014662593824524678,0.05518797827772809,0.03172419958559586,0.00012148283408580689,0.007115928641074322,-0.029421977441796806,0.026585950834309122,-0.019330415029670547,0.0006325505275609527,0.020702995537722126,0.027661011206449874,0.11993882516401684,0.03142781006653486,9.707206562554755e-05,0.0072277764903519205,-0.060867294500701906,0.1914751750060407,0.03328314427966709,0.0020402843471647833,0.003346976059980065,0.017592837322101398,0.12954716366607774,0.0009684877796112402,3.4921281557507174e-05,0.02014505487172563,0.04484729962469623,0.12580759504919561,0.03362496342383153,0.001165468949480048,0.0028142879616944007,0.010140102629105257,0.07928616457229822,-0.0040300730642090325,8.516684991891355e-05,0.00829831484112617,-0.0057796967660337355,0.009201483884307743,0.003973150818455426,0.00014824927223102788,2.8384338695271703e-05,-0.008478113933569497,0.014159428071586065,0.0072407036179483845,0.0003436825252345562,0.002609066757412723,0.0009203705579930132,0.003963121086450912,-0.050203811849051184,0.0018000133119835653,0.008078708851008497,0.003919947819091042,0.014799552669713627,-0.021317421044297787,8.498104508167868e-05,0.0037840741305785537,0.030745296050769703,0.04143927404335134,0.01934796894411534,0.001844351666602091,0.020829976069817246,0.018725914196395854,0.06521517465410925,0.0018559756029328338,0.00011376545389393179,0.0004858739868243613,0.0439308724226581,0.10375280131641289,0.05497203571235963,0.00017164469000162613,0.008402411068101039,-0.011041900173580239,0.047886421033896384,-0.1975444350099093,5.6278869095863614e-05,0.005910561337244984,-0.023824483086039468,0.07554515617438069,-0.04908634722914145,0.0029890619851064273,0.02161463906850298,-0.01051640237642386,0.048546360548135596,0.003162991047589738,0.00010775838858062154,0.009953126548373081,-0.017018619318779155,0.07962294652215066,-0.14783895462940444,0.00015500541252072474,0.012558878811983325,-0.03679769810657291,0.24734419118450723,0.02698012270990144,7.036677306762274e-05,0.008238164253983916,-0.04440817217415472,0.18307877432265923,0.024600128573739128,6.096383749714224e-05,0.019408134253402726,0.00943991366501272,0.02008366843999787,-0.00010120878020784906,0.00022916821046268507,0.01647644029075884,-0.006997816328133063,0.028051324687012706,-0.014102704869443844,6.203310790348662e-05,0.008611942428289728,0.015123109820948536,0.17212438524386717,-0.08602362017891951,2.2668876124311477e-05,0.006538498216734897,0.017097383375622575,0.056045544641564235,0.03714388302948047,0.00010663444689401593,0.0020707765561191888,-0.03541158995967176,0.1594301977861054,0.06885658401063446,0.0003501086273952405,0.011418811337459457,0.0413707535477601,0.19089671535008138,0.04388214413547755,0.00012412714647098874,0.027957405082758888,-0.0010571794730166127 +2021-09-02,-0.0007380088316366429,0.004819661230110355,-0.0013356819795848612,0.00016193160848021384,0.012155055322056543,0.050032749023492896,0.16944129764122792,0.07628150318546438,7.085094112858309e-05,0.0074633794077979335,-0.057540047345353784,0.17771011461706035,0.045913618927762204,0.0001497804987583105,0.010170102296278245,0.026656728106700944,0.024833628234233542,0.09638254120763921,0.0003622717952512373,0.007565094976952015,0.05631423710478019,0.12432739865846301,0.10017573579383415,0.00023700042810268675,0.009277762353568916,-0.017812583649309977,0.04326117531207268,-0.019159129625995783,8.990323981679069e-05,0.01340581055680689,0.02228665189260598,0.0732973632317326,-0.01892347313923639,8.921673652166716e-05,0.005807285915359025,-0.006615921177294586,0.054541405537260966,-0.043447607068068085,4.159705757334881e-05,0.010015891085342383,-0.029897334275690222,0.025395822191701896,0.1408625528390498,0.000907851835855701,2.4279318809839086e-05,0.07042276032524358,0.15290555141641896,0.147074705259022,0.00016104664321478602,0.023597696494376038,0.025927611050056053,0.018166138915549225,0.07588856813224278,0.0006976285257494825,0.002840504101263117,0.013506235226694755,0.16915126375735257,0.030310736911813258,2.3794788657050076e-05,0.004252239511215309,-0.015255218423681086,0.03745573256078279,0.0040280215214510955,0.00012099047247000978,0.001199514710306789,-0.006482987738152557,0.03741202822052911,-0.025441596210924008,4.877819945983021e-05,0.0005169882773128652,-0.004080941048200872,0.0033343435590517437,0.002584026384735903,0.0023871128342155667,0.011207244651372277,0.03157662502838436,0.18058957797098818,-0.03974899540934354,0.00014388818505037214,0.03029698906324335,0.10881960834799347,0.5171400704413504,0.11546254052852496,0.00032584210309932597,0.005724035100566878,-0.02019140300690422,0.13551569227968172,-0.0008786186988664476,4.196989329661353e-05,0.040670071115379305,0.0405180086757296,0.25791828338106054,0.006491430998594221,0.0002589123525966037,0.008839464599481029,-0.01498442167565537,0.18477416638083058,-0.007892003978752884,3.3653401405563585e-05,0.009190696687809724,-0.006118874351609244,0.052567503454875965,-0.0001714118739501226,3.888981636088746e-05,0.003012469785592812,0.008889166700203678,0.025301982674291065,0.005149304180890824,0.00011316946231119393,0.007231730550548983,0.012503435124572597,0.0845396971814225,-0.0013544454114322734,3.416339586147011e-05,0.021955302973212576,-0.038639283956284985,0.1146714762381125,0.06555374622885106,7.470523710873599e-05,0.009979208048394236,0.00540521647481039,0.021090629948242522,0.003381409736343377,0.00011718503004075107,0.004548651080675972,-0.013694064589981665,0.011105063530258407,-0.019260135286127737,0.0007048340655214945,0.005131617302228852,-0.034039604841450834,0.09876974152881325,0.029595150181765027,0.00014505964210393313,0.016101719842229946,0.06041553222421967,0.1911972653606061,0.15716597108835678,0.00202808477140182,0.007909627030375283,-0.02208038562436898,0.21844931924431746,-0.01114024059301702,2.5991907544949296e-05,0.01415478115424443,-0.04615790738193721,0.1402453050909827,0.009630037498721768,0.00107604157036115,0.0033036599627966545,-0.0034473133178720182,0.026857931335248237,-0.010125274193183343,8.547396314538349e-05,0.0032912479787379142,-0.011988444063357752,0.01648217872843876,-0.012304626821718394,0.0001716696763348068,0.0038798122780368946,-0.006835218919421638,0.010393177851809824,-0.01515746532979642,0.0003774922009217032,0.022143239047749185,-0.028669019762962784,0.1311170892936768,0.017472342583130664,0.0016947431434939408,0.003223099488497886,0.04710311935321471,0.17164576346193533,0.03988033421087973,8.804545669078464e-05,0.003997278310305623,-0.012348910350563043,0.017275794449875235,-0.00515701684499141,0.0017769196969485025,0.011474691762149002,-0.04660989828532158,0.14680484725164683,0.06870782064411443,0.00012579222420443142,0.02109177367262071,-0.04496076041113371,0.10500930970444501,0.08171992263154529,0.0001735666256230025,0.004766574487051314,-0.015949412670641948,0.07597466723556047,-0.0353192224648401,5.123772205279541e-05,0.006588452974872382,-0.036582292603526086,0.12249533158428795,-0.06705915048533757,0.0028305409314450733,0.0032976320603055726,0.013495430290605933,0.06228399544914567,-0.021751217271053377,0.00010778314275014533,0.004766659781218908,0.0005415034995181245,0.0031674388427946733,-0.0033001070194085625,0.00012398062284531709,0.0045226610253799975,0.007177741888818928,0.034857083407166936,-0.004776784959755364,9.739697984739945e-05,0.002506472002955359,-0.016612536823657282,0.07217405207135807,0.004459684715417716,5.7849853425532664e-05,0.008912361779226032,0.04393936233927594,0.068562441654511,0.03295777013477537,0.00031246175573740266,0.02537659758838773,0.017934475293390748,0.06819956434816565,0.0422169380377102,6.539152271981108e-05,0.0046801525803534996,-0.03880961995255616,0.4628434773325062,0.07302478308128721,2.1633985165803723e-05,0.02170677581393653,0.009708751227488138,0.02469792632901495,0.008429793307092384,0.00013740794569140933,0.0011483091731410938,0.028496783820838152,0.0986612981696942,0.039018986163834896,0.0004552783442672317,0.009825509031918233,-0.03980182755602003,0.2186864415874926,0.010807747138848139,0.00010424445228781479,0.022703418104799315,0.0013997226371021958 +2021-09-03,0.030189071059379728,0.19006557806416574,0.03992119804774206,0.000167970441115838,0.004424600293588901,-0.038139796467633824,0.10030611932392983,-0.010775861546243383,9.123499846607852e-05,0.008853286819711174,-0.04404497764533115,0.14050793997271294,0.011479493247323275,0.0001450082568442258,0.01199893874907663,0.02439754926554254,0.024812129241722474,0.061278664771663396,0.00033185626831329145,0.003527641372423067,-0.01503381010781985,0.030744792368917976,-0.00024521774998558535,0.00025585580105054364,0.014771139439830452,0.037137585102034146,0.09602714395564256,0.12604471463847747,8.444353150161346e-05,0.019357431326641,0.009895905410343537,0.031162395913450134,-0.023813011625014816,9.317825002742972e-05,0.009395177410013165,0.015324531831195434,0.13030507067936808,0.0402623290865574,4.032965565696799e-05,0.002117294905519141,-0.02292192433778932,0.018314888244722452,0.07208279907971098,0.0009651428291352959,0.006871825305541839,-0.04596827540141497,0.11606002150305539,0.049794986022786605,0.00013849607010852448,0.0018938068915375832,0.020656552289080442,0.013918379853176375,0.030802324738801404,0.000725426656476234,0.010338444552410994,0.015969618245622937,0.19286127131166125,0.03412021296168112,2.467586005906724e-05,0.0031460855666785486,0.020462265627461708,0.0633310239429752,0.007692752304553695,9.598165765128117e-05,0.008298987798774058,0.011338908124256012,0.06424946470798576,0.011616483442161686,4.967793569479226e-05,0.006077577227141096,-0.01400158967048065,0.012002858203712137,-0.011289226741099168,0.0022751793802836514,0.0038760206239232048,0.0704479361738925,0.4252843032967356,0.0029522758927751904,0.0001363141778834274,0.015204641198272466,0.011045523416659967,0.06692412775175396,-0.02302097416511654,0.0002555711416935701,0.022904131159902502,0.029921336707935026,0.17000924446899718,0.023926765829254276,4.957576334366747e-05,0.00010849279259439221,0.011884918059116338,0.06389366688548201,-0.11658217843468126,0.0003065668461810847,0.007949033820424372,0.033628279063495976,0.44927801722293126,0.023604257190294346,3.1061305461531055e-05,0.010942688732755076,0.021037565918523887,0.2462254003404415,0.059359817319943,2.8545939868295287e-05,0.0029486656309284775,-0.012294583181016196,0.03098903041222423,-0.0009599957129379008,0.00012779933005805288,0.012260369294798092,0.05279477639438357,0.37819736738329846,-0.003663943261972922,3.224518177337721e-05,0.04282795308267225,-0.01602488632786689,0.051921512615172145,0.002325190574668178,6.842660669660097e-05,0.004811666665042222,0.019535369328981707,0.0761094750592039,0.07151338312799874,0.000117363079188527,0.007502417087938775,-0.03422258717481057,0.027354795163728383,-8.208947811768803e-05,0.000715080496067253,0.023754897799735105,0.013371208583722562,0.0552296391671689,-0.09587864413714794,0.00010190241272636875,0.005587009217004611,-0.07350813013712514,0.2582999323868908,0.046798906694499535,0.0018265445015052287,0.0052249590183228506,0.03080957141766339,0.26125475495735473,0.022350194740636806,3.0325198251768465e-05,0.010999032874250282,-0.02799232265839375,0.07818984227659033,-0.05616036125891917,0.001170468871503829,0.008568416604872939,-0.010658102502712031,0.08230739801326889,-0.07072986097547927,8.623164348722219e-05,0.009760814488188989,-0.0012959001031568782,0.0021524028041737054,-0.06982104917655278,0.00014209976559933227,0.014039509094146672,0.03472293461487265,0.05135727634481426,0.034828986683905265,0.0003880774007399654,0.007470096118115464,-0.03909688676751937,0.1514345517130939,0.0728484392577331,0.002001094237709115,0.006817075887652533,0.010321104344740933,0.04013312068211441,-0.003744751189257304,8.251133390101785e-05,0.0020375302279141104,-0.021128656294383947,0.030625327951919874,-0.021529882065090978,0.0017150165767545534,0.005397159754762197,0.04191275704715756,0.13436445638047237,0.037163273118137045,0.0001235884447495275,0.004140808269413012,0.0004695050314402494,0.0011916420529099326,-0.030560748927375814,0.00015971834662685755,0.004305027520362188,0.023114593135104805,0.10715758042893439,0.04349797939182644,5.2647442570368366e-05,0.01610119136774398,-0.011094167608265175,0.029389897513209286,-0.03001183421685522,0.003577788873629109,0.04630652396497215,-0.018330374384009494,0.0929836683513749,0.010353394360806326,9.806301237617628e-05,0.004023662423757789,0.0035688899032660496,0.02172454033758817,-0.01229064283947352,0.00011913608897367106,0.0007925095044589468,-0.0023971617197297446,0.013856692389691875,-0.041600227872587804,8.182508338791053e-05,0.022126401107045987,0.09107269701411203,0.40792376397231334,0.11416531674576144,5.611210826997882e-05,0.0028200200684307215,-0.006722582432888628,0.012688305950898607,-0.004604515790494237,0.00025832229368290537,0.0190966334220273,0.015600761067663093,0.07791656948035612,0.009779183677132174,4.97886485724113e-05,0.003116417567071434,0.007606072954970177,0.08647412739034277,-0.008459820437395283,2.2693714345316035e-05,0.010242517041798392,0.02399956063061575,0.06947862498007278,-0.04832426115012229,0.00012074274377375776,0.003189599000126879,-0.02129920419625396,0.07859721960588643,0.014564885659602799,0.0004271536925886217,0.002716040088055245,0.006218842543381622,0.025333599518550264,-0.0030834979520603816,0.00014059972010173447,0.027579455429804004,0.005153624248955674 +2021-09-06,0.009812382656401102,0.05856145303790809,0.009596054352766337,0.0001771940832488441,0.014875907216539171,0.046586830598351045,0.16002085848212308,0.026334984564570608,6.985493551271054e-05,0.0027124388791461606,0.016901967518203807,0.05877093126823052,0.023082632121699004,0.00013303683208332616,0.0024215362403231613,0.027825829137949447,0.03052662813748115,-0.01990810207552676,0.0003076359845410921,0.006204526979806716,-7.986236989450672e-05,0.00021014941742130642,-0.02322035509114868,0.00019884367244950565,0.020176019101524993,-0.019579701048253247,0.049783887077021714,0.03160681156643058,8.587445492326197e-05,0.006120101902339377,0.01538650317801488,0.07171372246592712,-0.016606783806092675,6.295460740339083e-05,0.0071146041427564075,-0.00956776729170954,0.09312912346226032,-0.008732755599670773,3.5230897179824e-05,0.006700811217178866,-0.001770858828267232,0.00130105073585958,0.003906427865666117,0.0010496257943205516,0.007878733725991915,0.03240408209431438,0.07976615378991374,0.009408628347825077,0.00014205056277981587,0.005542599146640978,0.0013051842839385745,0.0010149126492648727,-0.013213564643530224,0.0006285900881560673,0.0008559520916891191,-0.001146798055873127,0.013387998561913774,-0.048091930748998424,2.5526665087148227e-05,0.0014210098900150575,-0.028169882700420645,0.07999742215696347,-0.029890158124059568,0.0001046068402392881,0.03373202961657441,0.008998786340824794,0.04620832865142641,0.004607175287099328,5.4818291803366995e-05,0.005402022813692517,0.050533454119207497,0.04305140637963879,0.08478817563261055,0.002289362759044728,0.018204686593666225,-0.0007856610649267105,0.004135257907699257,-0.01296133818256277,0.00015634526692163143,0.004251221951957978,-0.01310787289369779,0.07734766245568521,0.007201722499130359,0.00026241778174576825,0.02822059261751387,-0.07374497150764754,0.473531504434646,0.04657549663611005,4.3867662132935095e-05,0.01682004486466553,-0.007486979123233317,0.03996758453057977,0.0012608750650699011,0.0003087347590115627,0.019854075943144377,-0.012329245848979202,0.15841160663630655,-0.029924215711606875,3.2298306031278133e-05,0.01325570453559329,-0.02354811968558627,0.21369687702766452,-0.04061769415472892,3.681626845859891e-05,0.009846023914249658,-0.01993964436655708,0.049820851364757966,-0.009042053952587198,0.0001289225892767698,0.005594656244289076,0.00774239893466548,0.051245315013473285,-0.046193574625329775,3.4899061966278306e-05,0.002742241161574315,-0.020556411137483462,0.059299220425138105,-0.016347143801603813,7.685563117029406e-05,0.013126422627927813,0.012762406346411286,0.04640930687194699,0.010205419758665138,0.0001257407601584232,0.004288182232988992,0.03922660610212635,0.03890450957133782,-0.03425789380560979,0.0005763102593447605,0.0060784029769228275,0.019581272560793086,0.06474848191152884,0.012474382828079804,0.00012729089240938056,0.0008980275374587477,0.029970848009584147,0.10391312023266065,0.024802646946060273,0.0018511764650307782,0.0017871313040108655,0.02571341540409161,0.27401784055891326,-0.1106208408938225,2.4130322251029678e-05,0.003983310482273876,-0.002497063686820401,0.006087452185534093,-0.002286076857733883,0.001341112856223489,0.0005898311899191947,-0.017409405599626924,0.11823594304265649,0.004336157678810056,9.805281516730477e-05,0.009230430566912534,0.0018397974835216858,0.002430486562995825,0.004498324245832272,0.0001786578825216462,0.0030064372053342546,0.027058280450393667,0.04062846800407915,-0.01651419490438065,0.0003822730319381972,0.0037651269662978236,-0.0037089674651783933,0.01687587708926703,-0.013211875326626642,0.0017034798910373337,0.018667693780108473,0.0036873356603217577,0.016193395193050786,-0.03809331382354288,7.305755423041013e-05,0.0274033373200449,-0.0029500092792071066,0.0043654223045649955,-0.005506246595918064,0.001679864725775059,0.01849328929736144,-0.03733997203802779,0.11258640717908534,0.005296764859387316,0.00013140263210968675,0.0022810377623845445,-0.01302840335425904,0.032900202448077405,-0.03427329863513421,0.00016052881560224777,0.0264123996299396,-0.04331573959219412,0.16709876838846985,0.03400411183369052,6.326833569177805e-05,0.006403922354271377,0.05125961235783705,0.19656958755947307,0.06382812592467231,0.002471593526755154,0.008734763310704507,0.01027339648039432,0.045828996841130926,-0.00010922349722175823,0.00011151011631807943,0.011223725818283561,-0.006763635126268274,0.038059568393621006,-0.025116575383854617,0.00012887749805485206,0.009979943852317251,-0.027015067194910376,0.16055096604604205,0.007101938146026513,7.958694379371886e-05,0.0053087848792010795,0.031239394244057705,0.11329587143071496,-0.013833456003538424,6.930042765712188e-05,0.008838231278520257,0.0033691715254320184,0.005651179333151055,-0.030814727598848842,0.00029067884532265297,0.029878358016126323,-0.0005952015585294894,0.002306386651206802,-0.006731380133577253,6.417211008103581e-05,0.004724070943236717,-0.00991078304037382,0.1111323162668,0.00012380225740536585,2.300906061801713e-05,0.010372736278762363,-0.008241554528284926,0.027539376911090537,0.017106191497510123,0.00010460778130806159,0.005854553216412515,-0.008975954337186098,0.034499870742007395,0.0027616622881638095,0.0004101012920249856,0.005880289419550143,-0.020479718690353175,0.10812889744850852,-0.023508959612633457,0.00010848108198911459,0.006159628513677856,0.0007128647541261785 +2021-09-07,0.01842044927439994,0.11473935222775576,0.011292282735544716,0.00016977526172209026,0.009941800310119734,-0.029249333376328557,0.09320033815121938,0.01777314913307161,7.530243345896172e-05,0.035315398958011515,-0.008985149175129194,0.02737244225612742,-0.0008513789319589978,0.00015184795521032282,0.020594685646547983,-0.020092219919301383,0.021203878595557047,0.06337892925239916,0.00031980148083945927,0.00898280258083232,0.01270752553827324,0.030048780774197665,-0.004521963323769932,0.00022127477521198449,0.017781030498234113,-0.0012520798205277045,0.0034589644582748453,-0.007304185660080336,7.903740202149683e-05,0.01975966962981783,0.04133550339158866,0.15630142816128126,0.008630358206568578,7.759793065192865e-05,0.000731252808517741,-0.008089634241799887,0.07591920112903013,-0.024120053997619132,3.654061657172835e-05,0.015497751807356542,-0.011577811066706275,0.011387329625099843,-0.008063193394825403,0.0007840600982375204,0.019583314741808588,0.0147761076608645,0.04074383422599245,-0.006038874707250782,0.00012681190801555885,0.0034580820621275144,0.003027206372476655,0.0021290205203300305,-0.005613096497025537,0.0006950027769118683,0.006934571296769698,-0.008528763010357475,0.10747143715260628,0.0032637329419894596,2.3649163277697362e-05,0.0006647288157989371,0.005391514043960057,0.014003673047043832,-0.0016693719249768456,0.0001143720264994233,0.017617513566124506,0.005598161920264042,0.030906670266903934,0.006677538781897703,5.0986482941618455e-05,0.007130805223271461,0.022031840223157816,0.018875313398530182,-0.06793027640260474,0.0022765624839957096,0.008044829700261519,0.060748379622590915,0.44588999290479103,0.033976705059307694,0.00011211380194839596,0.02355806209605728,-0.023600114741824222,0.11213668287046713,-0.0023591192260447548,0.000325892706750873,0.02452183021488258,-0.008343737537798336,0.0624606141207846,5.0029209293794e-05,3.7628364335919215e-05,0.02575711364835611,-0.010417703839607701,0.0612480396459467,-0.0538731408646361,0.00028032809224692385,0.006095267107711541,-0.014935193799330622,0.18500336267094108,-0.02136619110881093,3.35012854513869e-05,0.002325609662400314,0.007959127957885122,0.09876869739668563,-0.029932274689374296,2.6923273920312837e-05,0.0066974071920649116,0.026890325514276357,0.08024252616799128,0.03393097879428341,0.00010794790614212931,0.00949863084744555,-0.07987187664445525,0.5128040645115658,0.04742852073383502,3.5977816791839986e-05,0.02232276587272626,-0.014968297375276584,0.04558323148720748,-0.0007882110475644162,7.28022287770638e-05,0.012011001359801324,-0.01865574015301616,0.06442579295545374,0.06671593218276685,0.00013240406142822546,0.0031970172765614694,0.011506089500503325,0.01024505559085586,0.006763380539561826,0.0006419319473680436,0.010049819464925485,-0.0015557298979616229,0.005275333092895797,-0.0004942788321440849,0.0001241281607207488,0.0009173151877972908,-0.005872023588907814,0.021530565062559254,-0.0043806945875091916,0.0017504573690719355,0.004817494386597062,0.03488547535069075,0.3164671868118385,0.028351963257639078,2.8346415838628308e-05,0.007029164977951252,0.036802609574305666,0.1186564946718119,0.0303485104315057,0.0010140476661569925,0.005318645855957069,-0.007284041631711786,0.049290623988517114,0.002610728479313982,9.840875704719218e-05,0.016516292299739596,0.014878797830076344,0.019928369621400183,-0.013487287193765577,0.00017621442590073268,0.00847898822061653,0.020280437803498513,0.029304852212893764,-0.0045926236487521385,0.0003972296927450222,0.014167286123792422,0.01827680508700903,0.07141713316012452,0.008891055930816558,0.001983573094471259,0.0013064910624330877,0.0028352167586389128,0.010480501881672943,-0.008689193435713439,8.679497000461408e-05,0.007320670203935013,-0.014240144004038661,0.020665286030562675,-0.04017756304186523,0.0017129715584908,0.013057997573072041,0.005982790722513352,0.025593245985876104,-0.02875051438006768,9.26178035024705e-05,0.006807653590632664,0.008426939605386423,0.023590836006448308,7.997783582268084e-05,0.00014480612296995628,0.008762247480700045,0.009542909237404031,0.03592463003879847,0.006884791729666938,6.483393987967758e-05,0.015702129752470786,-0.006022276863551557,0.022323675075867723,-0.012160042613923894,0.0025568961123390455,0.009278320364857668,-0.023809162921469965,0.12039837311569904,0.02113792861775207,9.837031882613373e-05,0.0008888936991967374,0.014513615805830346,0.07510082980999126,0.006529768302799563,0.00014014953826838354,0.009237203732707183,0.01815373702105309,0.11182560634542213,0.015034668496402925,7.67844852010199e-05,0.002623734207043279,0.03726121811489112,0.15452905454775154,-0.027604823947420355,6.060302406770695e-05,0.010632385090818389,-0.0015894807767054535,0.0027939032915323793,0.00264801458917662,0.00027737882533752895,0.010463140040216857,0.0034652851496145267,0.01401370947141241,-0.016519612322695415,6.148939836011603e-05,0.003909478141233045,0.04586225937500871,0.6049956413983893,0.13349743377373754,1.955845232553635e-05,0.005194254568238318,0.008686718868938943,0.02217913707227535,-0.0012876743339416137,0.00013690524478687257,0.00788178635272795,0.013271982880498231,0.06702520346412637,0.007881491942867613,0.00031212290670945927,0.00456276893399186,0.07917136392444404,0.4396829869877411,0.10266811433425184,0.0001031336198982855,0.0077719987417494436,0.006162457252056868 +2021-09-08,-0.02057908285941694,0.15547525328567446,0.004652413294733366,0.00013997527414042613,0.009191005318060993,1.0984239440968748e-05,3.4686160603528164e-05,-0.0011031318387619547,7.598437354948591e-05,0.0006699104566606393,0.04363751599008268,0.14521110371783813,0.09998079095645229,0.0001390136348101117,0.008523473072469773,0.011673915953041802,0.011722916809574387,0.004973931420369872,0.0003360846949700206,0.011856342936644094,-0.01467666895936827,0.0340901787817285,0.010765623750750308,0.00022526617874457573,0.008379226927140857,-0.011930600293783882,0.030645804011573578,-0.05851768332056766,8.500373641807418e-05,0.0021164777861980653,-0.015184898130627894,0.05771991337644665,0.013262954146780796,7.719267078265783e-05,0.0013541728204087445,0.017629498552298874,0.12140228487287515,0.05205476692034688,4.979797851640247e-05,0.007083776140568985,0.010379826139433687,0.007478251034997353,-0.02444291813381312,0.0010703722126294436,0.007308160105112199,0.007202987060874491,0.014403515966550201,7.210033528694273e-05,0.00017486625238827993,0.019538534228873573,0.004172654905488128,0.0028045291837809007,-0.04689912400029029,0.0007272385010896948,0.007754456592351548,-0.0022318804192460674,0.03482558400312569,-0.08953741915770128,1.909832605235106e-05,0.003844789604357567,-0.001992355002555078,0.0056581476166834305,-0.00013558767064443292,0.00010460284310005101,0.0012157593409851694,0.014155147003650117,0.06518838421637002,0.003975035416224981,6.112318631812631e-05,0.002917699913019076,0.02581568504393436,0.022989789606355417,0.027784059121078987,0.0021901387526960005,0.00031151286864445856,-0.025585568295382548,0.1769822170550156,-0.01882348692746468,0.00011896454402365494,0.013415875708010297,0.020322638455833382,0.12921080925157785,0.00040660449923713,0.00024355075289984946,0.0012703690337060774,-0.006864193664671595,0.04409969158696605,2.9366839358663353e-05,4.38444808273225e-05,0.03326454461130216,-0.023032541932359103,0.13586830693895816,0.026781738203584208,0.00027938977908513755,0.020499346465084944,-0.006098806528163283,0.08701723801799348,-0.0954867293393854,2.9085048569354678e-05,0.01293066426617714,0.025711045156568635,0.3507929017788651,0.06446109677475852,2.4487849263215346e-05,0.0011763227498119587,0.09108223411606252,0.22677302025343343,0.28477100181939385,0.00012937937424237263,0.013298515899255223,0.055509305489455915,0.36138443890488237,0.0212483565652664,3.548041751046975e-05,0.057696959036479534,-0.009941024247455396,0.028640817828952742,0.00011503613280151101,7.695256500846104e-05,0.012084167936976978,-0.005466249977337313,0.02044159343190776,-0.09781680216507979,0.00012227096446791228,0.005222812901805253,0.027032400223870105,0.028772501694894852,0.028807688017580015,0.0005370102135624989,0.023762109621568814,-0.008296370401729307,0.031787281096772174,0.00246075380413788,0.00010985523566361817,0.014042657119816273,0.0667963392040637,0.22712110110515285,0.07161014417790627,0.0018876190478827016,0.011337150339646681,0.02031423740753381,0.22136639919788684,-0.019246616224067363,2.3597772948556005e-05,0.014355043731717419,0.009686414035357846,0.02868477928554408,-0.017891705842953035,0.0011040348581535366,0.013876778961226813,0.000422183433570886,0.0032564094630731038,-0.00022624323058922726,8.633518476145792e-05,0.005917722632822617,0.03184372608810366,0.039608330753846684,0.023149125987237024,0.00018975041127674772,0.005154148836270844,0.012698232211963147,0.019664697822223107,-0.0037814213678320292,0.0003706464981941462,0.010863772410007721,-0.009307150057960869,0.03678246195036262,-0.07577830280463965,0.0019612197714979594,0.01762167707156335,-0.0006617392491635646,0.002335492168779694,0.0008082926891102989,9.090731888354033e-05,0.009028788420305424,0.018149754690851467,0.02201514062320003,0.011429752019416579,0.002049398846706179,0.001385360109832706,0.03406756419951235,0.11873165428286246,-0.007806963666157174,0.00011368171079564333,0.0008308783726605389,-0.03640036876264399,0.0812631735520179,0.07042296959574065,0.00018158182670467634,0.012476950575356114,-0.04995724366051169,0.23177146221434455,0.033471323016891076,5.260807770054973e-05,0.0008560085040396987,-0.023050045808278158,0.07804709245829572,-0.06160203532693717,0.0027991947964047404,0.00689623095243352,-0.004312947651388585,0.027402838835399543,-0.0037636349657108044,7.829232696156149e-05,0.004337438316520751,-0.0039379974841524615,0.018220677291720527,-0.021821297214821223,0.00015673706222677674,0.00023715414702903223,0.040228942164783184,0.18132025933497584,0.06190117681853425,0.00010493998069666852,0.014612376189566824,0.021780001435004515,0.1082200620274924,-0.028515351881269236,5.0582177402605014e-05,0.003554000487814165,-0.03606552873579174,0.06687195625372659,0.028187299977112407,0.0002629527211670975,0.011570356597189723,0.011142357103120346,0.040624858238655775,-0.05153144634814486,6.820238948022763e-05,0.001407096862972434,0.02175553012393944,0.25338954305337297,0.023435214648905748,2.21519655571753e-05,0.016233014234516036,0.01113119008873868,0.04042018756805626,-0.03218896885425943,9.626141456294955e-05,0.0011524291947475791,0.007947812635720274,0.03231954915815929,0.0025847136573429303,0.0003876236773314941,0.012264866383212704,0.061971708758539815,0.27387455051734383,0.08075814385627143,0.00012960256277034263,0.016340475741538667,0.008552078696467149 +2021-09-09,0.012429447984333389,0.09361676158077346,0.00984032907392053,0.00014040572336738834,0.014059115043802209,-0.014084223309464237,0.044098481374593136,-0.05788297951400868,7.663370009265693e-05,0.016151604627131413,0.01757629175151031,0.06456851496557434,7.963646192828801e-05,0.00012592259336522026,0.0021717689026709204,0.021745790019930697,0.025879061700389925,-0.022751305699184245,0.00028359235585580803,0.01105193838831275,0.04316593977327251,0.09572769244910527,0.05046663554682426,0.0002359398953990421,0.03837928654412786,-0.009919547237262025,0.028646045556263718,0.009966277601951692,7.56090726520696e-05,0.006036464166285453,0.01480391189339779,0.048584350553770764,-0.22221095151384582,8.940667525585704e-05,0.01220560591548728,0.0014427562461613573,0.014206046724182797,0.0034103736302205836,3.48271822782608e-05,0.0043288428314980495,-0.04903231680581545,0.038632090306289626,0.1910900271529127,0.00097876626783978,0.0014015234472440938,-0.017887530546161722,0.04671586002947955,-0.0405252732263868,0.00013388993362589065,0.0102565324287908,-0.026182318730580217,0.017215321056546024,0.030891622685060825,0.0007433910655440635,0.007101928121106264,-0.005491083439758425,0.07923180711145508,-0.025042539523220598,2.0652910885366742e-05,0.000827742539422511,-0.022881681685884656,0.0640777471141681,-0.08793970905687493,0.00010607956824029775,0.006309391073592397,-0.0010506137610312852,0.005432304085676899,-0.0009707387439453269,5.4440340227065387e-05,0.001612595527805502,0.011293126246217217,0.009625391114067376,-0.0029630544691610907,0.002288330611334081,0.012893239895794191,-0.05616245869031966,0.3709870807286886,0.014133298471402114,0.0001245774491317718,0.014688282624456149,-0.04105767954280779,0.2556208146033623,0.008094318103331567,0.0002487175426085129,0.007781629052376884,-0.015893394300548418,0.10146222514639279,-0.022695858198386782,4.4123832924812724e-05,0.01631164514289688,-0.0040826044028667964,0.025853986484166435,-0.07651710376927347,0.0002602535064800564,0.0011827659128727979,-0.10341118361354222,1.462164003389281,0.20232303359975645,2.93495638849015e-05,0.03922195184632099,0.016954506733081413,0.20258330402174635,0.021059167455807833,2.7961677231823865e-05,0.02303885979570118,0.059061660862044264,0.1643714295235058,0.06412868337162585,0.00011574495732377937,0.007182652518786123,-0.040245238427733344,0.28483618893106466,-0.04564281255705103,3.263711144201681e-05,0.01575739980118284,0.004421620383222904,0.013374905979965466,0.001830154098191016,7.329394503281848e-05,0.01787058054241382,-0.017568154970729066,0.0763148292786681,0.014796123377044628,0.00010526059299911283,0.004047311890139594,-0.011885905144928056,0.011118927242684944,-0.003102688629132268,0.0006110052375474379,0.008861951691835481,-0.0022271647598626097,0.009070534753053286,-0.004032209882575689,0.00010334880602429675,0.0032894189411898436,-0.06156880096275503,0.19267700880516622,0.005323874785319489,0.002050925925843569,0.0048713295410057296,0.036518438651120554,0.38766541713473723,0.017875101943724873,2.4223524679799582e-05,0.01279850644058303,-0.05613539949773279,0.14303583901716352,0.06162553182505726,0.0012831080205495723,0.013236182338163016,0.006661779543137004,0.047494308217377726,-0.01675226446515523,9.340590519061617e-05,0.004408669898230934,-0.02434710774523663,0.03781829209418036,0.03403076572081672,0.00015194655293305958,0.007687497126362603,0.029368522325672143,0.037764126990033786,-0.01961607910622714,0.00044638188315878746,0.006288938571243656,0.02085008242029742,0.07889219513460449,-0.02523216003877982,0.0020484439113516353,0.005110810656493688,0.018401194985164612,0.07070573802302758,-0.02505943440013847,8.349908913267636e-05,0.012106279623799569,0.01034563188739565,0.01393475882524717,0.005306268662825143,0.001845587995687119,0.02230842552012319,0.01031564528843991,0.03358322999372453,-0.07759700451942901,0.00012169983038643851,0.019550969571362244,0.0077630090917705395,0.018314536615318653,-7.674113682044278e-05,0.00017182823774732016,0.016397217706814363,0.008406759818182388,0.03955716673546256,0.011926848051233811,5.187013602646942e-05,0.006495761966553843,0.0038655783374515434,0.012964989231524577,-0.02261784834244843,0.002825923340137206,0.027073366685641455,0.007896405169425316,0.04059837783771846,-0.017446873907574708,9.675230353482088e-05,0.0022702903736285013,-0.08866913220048722,0.4986579728719591,0.6225006832195594,0.00012895271052992187,0.0026552595463846113,0.0033491716421602705,0.018370298958208228,-0.0035954542725025254,8.623228216379681e-05,0.011343047193442967,0.07633392446826652,0.33645307249788026,-0.007241660816456463,5.7021742830575813e-05,0.0030993283204339053,-0.019891263830379168,0.031563988687207174,0.0189928829853483,0.0003072556606637838,0.006022360970723026,-0.012533905025359003,0.04604651823351846,0.04416420167906042,6.768679934808383e-05,0.0038829257193921073,0.01857626406195604,0.21081085190691673,0.006856590096571599,2.2735091066032683e-05,0.012831486454152904,-0.016311215745155244,0.05374993678742747,-0.008342526515024064,0.000106076049864029,0.0006416892162189921,0.004205300447972637,0.01650922583499511,-0.0010106877803768104,0.00040151178029077005,0.023123736940698216,-0.019025846317075535,0.09420397129863987,-0.0035515919314221245,0.00011567688065123566,0.008709139788370474,-0.005049879030690142 +2021-09-10,0.01717306644693961,0.1190694462506534,0.012828979971029837,0.00015252256502790737,0.006140475184793008,-0.009863942768716652,0.032279988619296325,-0.012755682729542505,7.332088484469736e-05,0.024740123655980252,0.008237131226634794,0.026513711014946657,0.0010172198029839395,0.00014371518918882963,0.016428108710263924,0.024933868619033055,0.028259455126903435,0.025684330011976265,0.0002977787751166917,0.014120579376138562,-0.011328200190059708,0.025452646379542122,0.006800017784982773,0.00023287654205897377,0.012376067320859923,-0.015058328341480829,0.042926396120745745,0.010766874890199916,7.659476243113603e-05,0.016280403042729447,-0.02485175710532024,0.10590295771064925,0.0595439106556613,6.885553641929584e-05,0.017299021516736637,-0.014078406295904232,0.1408047085639736,0.0055898535649529955,3.428742976833128e-05,0.007975741539801627,0.010269137456553007,0.008731076178069059,-0.023101299108598723,0.0009070077048170946,0.005325990068946296,-0.02428170578634702,0.04986186056096936,0.020065930433781787,0.00017028351217595656,0.002668782810252753,0.016177885327394063,0.011420387511936313,-0.03916706625767291,0.0006924130914729952,0.015634334960830314,0.0002994562571383817,0.003492266478688892,-0.030324464829427213,2.5553406647891298e-05,0.002580562313894528,-0.04381442138919512,0.12041931416694684,0.02538603098832913,0.00010808662824130981,0.005208099076926913,0.0035897756712705117,0.021216109352585135,-0.01434862778040232,4.7628113847908286e-05,0.003942972414105825,0.01442229771822559,0.013251677168126653,-0.005112615730031128,0.002122690038155943,0.0008602434770549868,-0.015012475320085188,0.08649519832216244,-0.005274130643865532,0.0001428276910408552,0.019281680143443027,-0.02195838007613085,0.1369127734461896,-0.006925739234167399,0.00024835022731572884,0.040033882460178624,-0.021576841444403472,0.1466080212781625,-0.055079463799867036,4.145635302656931e-05,0.0062555670924406125,0.03902340781160922,0.2268681997462524,0.05231909792415873,0.0002834904120235129,0.005504123244692952,0.004720941021990014,0.04837437241819578,0.0014948660320645711,4.0498921912539104e-05,0.01882904507848171,-0.014541797897696877,0.1514674563034677,0.03111054240854101,3.2076020437244585e-05,0.004327214496255765,0.0023158854225185104,0.00641159838891204,-0.0005965037244748351,0.00011635190914740223,0.015732740345074412,-0.022632999079365737,0.1626962157407396,-0.03714969161873346,3.213342590606894e-05,0.020510749505885613,-0.004456698931116934,0.011077357613050847,-0.006244043247558222,8.91978738629778e-05,0.006320092989360545,0.013890732742530918,0.0556038074084959,0.023993802270182652,0.00011422711833109236,0.005656283703869948,0.03832468156952167,0.0358891836362723,0.03996410686087498,0.0006103662856947018,1.3781358729891748e-05,-0.009262696758302304,0.029322636031463387,-0.007547802916284977,0.00013295982834016467,0.005723386167536804,0.044506383648415804,0.13740337848599943,0.026054648296423788,0.0020789501254932976,0.01022656242341342,-0.06590614205337937,0.5715561985757177,0.11775517814553342,2.9651669193847808e-05,0.007438982043804545,0.01632314520542294,0.05002111181265083,0.0035946303854669814,0.0010668952295412142,0.006532310805769745,-0.020638192263819046,0.16659409817101692,-0.12872278816931898,8.249691065241207e-05,0.00769581510777789,0.030448036695782582,0.04284784947183734,0.007391767579249674,0.00016771644604311338,0.013618463363518962,0.0560278245406741,0.08959255861746707,0.09478174048385747,0.0003589514683472056,0.008718135822506487,0.010088483473639444,0.03954571773498159,-0.00046541807869995616,0.001977319120110575,0.012664264963261335,-0.04669913403541526,0.16972724135594197,0.09342264252082909,8.827701615868547e-05,0.013906718381602274,0.033260472153048955,0.05317542398343455,-0.14607900465406753,0.001554871991306658,0.025621216649661067,-0.020714873125577595,0.07765349172574569,0.015189294675022252,0.00010569083412586927,0.013388269743821735,-0.0005676251466869122,0.0012392735113227376,0.0007447468058832763,0.00018567560009350207,0.023521673444000427,0.0016771241419728843,0.00918536984680353,-0.006534863684022038,4.456382784829346e-05,0.006558782381862957,-0.003746304138781423,0.011236675138986551,0.0017310577853131032,0.0031599722209967453,0.0004230279105196917,0.045228951489188915,0.22255175703452598,0.05273127332042163,0.0001010941588916225,0.0006743218962833801,0.011544480537304194,0.07625739518125112,0.006673996205929503,0.00010978758041141291,0.006668588008031847,0.0128490285924191,0.0726936499446163,-0.01812812515983544,8.360312648771717e-05,0.01379355481143573,0.06612788476161155,0.28408802916007114,0.04654892005111007,5.850312865759241e-05,0.031087910536467207,-0.051573114374293266,0.09448892174637172,0.0879727001679719,0.0002661165344652673,0.001998033280322821,-0.0039771293924777485,0.019634713212215847,-0.0008891083228798048,5.0368559923653446e-05,0.0030536705671059044,0.008051175470047656,0.11465030822714109,0.0015456874273698008,1.8118212573250064e-05,0.022800599747274167,0.027166823645710846,0.07811483007521779,0.05747415504799392,0.00012156661827043104,0.012367786422650401,0.0007899659843184356,0.003521131690590053,-0.08909678078091256,0.0003536340656216938,0.004533319180760461,-0.013484214903096979,0.06438187919312525,-0.0005699206821563899,0.00011995926954410564,0.008223447455353316,0.0018286028780054317 +2021-09-13,-0.013067399715493666,0.0940687217755697,-0.0018240928265889401,0.00014690294996373042,0.0056979162844332095,0.023130309814331933,0.07642195658688113,-0.014745132827343419,7.262293957698827e-05,0.026766743150482535,-0.030706480503116206,0.09997746220230487,0.01713355940234183,0.00014207744467732098,0.022332834772259547,-0.013345390407199183,0.01615466548550054,0.03918860794787039,0.00027880539288378147,0.018889341243730113,-0.03366250016699165,0.0724277080810748,0.03710967961068118,0.0002431864642020973,0.015894854382191768,-0.007601288867079105,0.020377360669792816,-0.0029268750383452577,8.144905400974614e-05,0.00206647086566887,0.018276892435747368,0.09084479733773201,-0.008370238064614729,5.903263251844386e-05,0.02045153316653045,0.005692606380998927,0.04617108325903145,0.00568839048035981,4.228046020171003e-05,0.003443229154766335,-0.003332568079714328,0.0032037741143740675,0.0025677074588216693,0.0008021617118806677,0.004749592671876922,-0.02877202196399479,0.06447570945783425,0.01399905372377159,0.00015604007125568655,0.002971435774137044,0.010400670513281288,0.0064217138011406025,-0.009917082012955785,0.0007916527967236375,0.0074752164546066785,-0.0031629715370178994,0.03502868587979594,0.0012074741272398435,2.690879365494035e-05,0.00022178774442787924,0.003443777692255658,0.01042623769763664,-0.02043363469097085,9.812022255107238e-05,0.00682285735405635,-0.00929503964841505,0.04892474478913498,0.008702696950018239,5.347915001393816e-05,0.0003487693833395095,0.006053184734830572,0.0050797825578026605,-0.03088634325746437,0.0023241372866642076,0.0006360031425771528,-0.030287758457675198,0.184537393652687,0.004746278436085222,0.00013506252308606643,0.027941065159149493,0.01600882823454519,0.08808431261884693,2.3272247747044925e-05,0.00028142923311343955,0.019665159037281513,-0.006040052389026469,0.035992565825683914,-0.014783353617649698,4.727035391947095e-05,0.011543569212936143,-0.021807704763644162,0.11371400020311202,0.028908192968605646,0.0003160696744544551,0.009758681504492373,0.028180592160724216,0.4277679328441639,-0.019245430302102382,2.7338338774620496e-05,0.003704137864615344,-0.008950357472841309,0.09030735026972432,-0.029419955410099254,3.3113035179770006e-05,0.004359257102339382,-0.046670911689380444,0.1204134961736028,0.0038515205907301946,0.00012485153157092802,0.010707699728330888,-0.03989516538379442,0.27574396058069045,-0.18661177018638475,3.342001470678633e-05,0.030486347045365,-0.01112271122732879,0.03307615200056534,-0.006208713002810976,7.455436323586301e-05,0.0013377848870041878,-0.0019826450822598165,0.008944769653566328,0.0005902467933173964,0.00010135015370749256,0.00353811306764223,0.020404355838924238,0.019641619328449385,-0.02031947139941888,0.0005937739773373522,0.0023827184080742764,-0.02278605500689283,0.08611822739021933,0.009307842647543134,0.00011136790976137693,0.00711224178331943,0.03746537864809852,0.1481926829010709,0.02477557346923414,0.0016226413548263313,0.02586198793108601,-0.048662946353280306,0.45995065036870814,0.05539542553928546,2.7206292206459004e-05,0.03390833950965447,-0.015140984269082,0.051271973126561676,-0.0001233143682732016,0.000965484591385231,0.05262412973912244,0.012968134239149966,0.11237826771761496,0.004910100364205405,7.684591877471076e-05,0.00898546900904981,-0.015234974278556301,0.024547889325619167,0.024964119867793663,0.00014647818668650275,0.009208493940933517,-0.03494797405470224,0.05562467064058611,0.05967144589488668,0.0003606271883926902,0.012007923902460749,-0.056180690527491646,0.2217885246724931,0.15955839290712034,0.001963352781523288,0.014169930734196427,0.009536223005826358,0.03677105033033164,-0.06175217247260333,8.320716663608991e-05,0.003994259178158604,0.020807107307545602,0.026031081383312688,-0.007901376649647077,0.0019869946089666932,0.000582287432966814,0.006753562968254397,0.021230443321721346,-0.02409315548146637,0.00012603464052025976,0.02638112012894761,0.05893539617407716,0.1743170556152502,0.11672451978593512,0.00013705557365292702,0.017569418873956733,-0.003998519611643485,0.01723282038346243,-0.0036216726232370412,5.663133427938111e-05,0.006998550960149674,-0.013327554328067898,0.03965799150698873,-0.004883184474480445,0.0031852080457363753,0.011294677807819283,-0.005899246745961912,0.036474568803670906,-0.01798698743763297,8.045387490989792e-05,0.01712075503998299,0.014942083932130047,0.08522176174262998,0.009322121394949402,0.00012715148834744632,8.38977977430965e-05,-0.02027186706029164,0.12174388327759685,0.0037972234001982436,7.8758112225854e-05,0.00023418474679172207,0.02122108070839115,0.09117172823780346,0.00035157333764968034,5.849984355801023e-05,0.008682795698105887,0.031518385252995045,0.04590039250818561,0.02164623505172417,0.0003347934512753058,0.002853352486302251,0.029383872226119552,0.1319991149572331,0.10606802774973287,5.535443004323632e-05,0.005535534132805147,-0.007377257940487871,0.08316264757615427,-0.029562242198513822,2.288747836867494e-05,0.028094835773747776,0.01601447637229572,0.03663754190091104,-0.018113973118156098,0.00015279015780784078,0.013852130882504891,0.00830227477150162,0.03162051245374476,-0.00032242798274966227,0.0004138625883765088,0.007361482556617939,-0.023524356822191447,0.11829094854384077,-0.0021198440125619793,0.00011390375460241259,0.03464335599725199,-0.0035430434077034826 +2021-09-14,0.013253924975117237,0.1021981842240174,0.0010189860417086814,0.0001371475052729343,0.007400293016920165,0.043255857560718786,0.14425888294860117,0.0004580949537654991,7.194703286233383e-05,0.010875267184187593,0.013895218941272321,0.04208423961343679,0.007265803272771034,0.00015273659833407897,0.012593610522719416,0.01184953152115043,0.012146396134245027,-0.0006771796065764192,0.00032924682532159524,0.016112637570180922,-0.012603225316206206,0.028746913483304,-0.0455683274549282,0.00022939727301568848,0.008602644827365346,0.014260652151745773,0.04475261159292457,-0.003335076185181879,6.957732734136222e-05,0.021287088433606542,0.007913105581683096,0.026869289530861453,-0.0004245478911552416,8.64133083482433e-05,0.01683133561365468,0.023553816345877398,0.22732698662089768,0.06331077650145948,3.553112052766428e-05,0.011350993774680053,-0.00959428248396955,0.00843250413494295,-0.004808780734699127,0.0008774062527488149,0.016161433045878856,0.0621388920802757,0.14403556398601927,0.07477790700287197,0.000150853591600269,0.002803834201065702,-0.02831820312225202,0.020646257814452916,0.07385699988014029,0.0006704226905688017,0.0001445036988112487,-0.01029787266575473,0.13733736495098117,-0.02426874480902438,2.2345063665395642e-05,0.005085661135928593,-0.009659311852499724,0.029714383469025215,-0.0475368577522773,9.656739181660733e-05,0.01989182663088311,0.024839868285885237,0.13473972447007104,0.0884046876770723,5.1893797412226886e-05,0.012347618726227548,-0.0033439182871049817,0.002790103126119447,-0.008844397309811493,0.0023375363505850613,0.0011006465301746683,0.016767600390458857,0.11458948174130569,-0.006665691387945729,0.00012041435612129223,0.05307022444333804,-0.031192621333537944,0.17956876536598587,-0.04270370437202752,0.00026898577184703026,0.03223290206324677,0.03639192109093488,0.21569372762152345,-0.07465362285697355,4.752568904404955e-05,0.0164673791258565,-0.04221272321913016,0.24703395703156053,0.03276942543070876,0.0002816265030608507,0.011555814474774651,0.037694427827773644,0.6194545273594203,0.015323836613935727,2.5252126446123816e-05,0.003936115713683502,-0.00024242480430105993,0.002655790703503906,-0.009281286151580703,3.0497547502595174e-05,4.731532298391352e-06,-0.048188257389666964,0.13948703274828517,0.040029193738419414,0.00011128333731810372,0.025129637011592234,0.007691309756014907,0.05609999933481109,-0.009360817403347639,3.1668669833144696e-05,0.028972848623534504,-0.0014771358553230401,0.004032780012396941,-0.014767290573544567,8.120696703114632e-05,0.016701364113491306,0.004218832859875218,0.015220946465360425,-0.022842129609566064,0.00012673578440199952,0.0030462296851202072,-0.03093555100289413,0.02765103278230211,-0.0539441926700636,0.000639472775842991,0.013012776093084197,0.01109285879273812,0.04682078356891164,-0.03482247011266351,9.972196237508685e-05,0.009042795485688253,-0.00462735023169885,0.01643577408207472,-0.0029635455277775553,0.0018070134410938816,0.002431638279511818,0.027712682418566902,0.2602552150117342,-0.015516947374284638,2.738175747184764e-05,0.006718474951000348,-0.008320102661351808,0.024129850343871988,-0.02027400085106582,0.001127315105704466,0.016751130433175533,-0.02099301946654379,0.16235759754331686,0.031081630762179777,8.610491362735513e-05,0.009286270684592611,0.027490121292985056,0.039354979544028945,0.012373676509450265,0.00016486267844691182,0.00968937245556636,0.021073290077803807,0.0336220003297044,-0.012591144489205815,0.00035975986457129354,0.012870878112365813,-0.031864626741945214,0.14553817352265389,0.035136708982122095,0.001697001618159803,0.0019472441739863235,-0.00626181279323937,0.02281034474887423,-0.09550743471411202,8.807620646401701e-05,0.010998798396199808,0.00485716465970935,0.006906251772671782,-0.14427364404320753,0.001748306657830381,0.00789531244494043,0.005983387789127573,0.021653362694203784,-0.010937398564562557,0.00010948076840693242,0.005785921562026232,0.03789566554184162,0.08439039877917949,0.032528471178216396,0.00018203582892246798,0.008417725591473139,0.07453254004313602,0.29761984646602485,0.21368130477175193,6.11220566146155e-05,0.029774508024384465,0.046307962817026496,0.1222894275141423,0.08593036629482752,0.003589093909982589,0.0011450735045985196,0.011452754388330894,0.0624334258066717,-0.01591088508088496,9.125010059288372e-05,0.0005605350690730365,0.018586533595002012,0.1011906662874237,0.0077899287123828174,0.00013320444883962966,0.0002485184622138901,0.03903117504420639,0.237460251057721,0.018093020562267245,7.774445118632817e-05,0.02536847102865898,-0.003306930480223866,0.01431551688099776,0.004046098429556244,5.805844857711921e-05,0.033434774664593485,0.004815979571966571,0.00861502596556818,-0.005468296817156733,0.0002725570621732816,0.01779423227804262,-0.006719651772323471,0.030125402211047692,-0.12066939795025126,5.546618417659934e-05,0.00014343382074101952,0.03467435457091768,0.3490347208354391,0.04263206693721483,2.5631323972451438e-05,0.0035140682147282096,-0.016036480566165297,0.046170143449875994,0.049273511932638896,0.00012141065523715973,0.010724954726498766,-0.012912411467126406,0.048897576161008476,0.01303832156683212,0.00041624400918018317,0.0178932818273884,0.020595868500292446,0.09817863780343429,-0.09475531759630722,0.00012015307894967597,0.008432051891733756,0.007169295358186929 +2021-09-15,0.013407920712375688,0.09642854951900895,-0.09185528503208924,0.00014704233238444525,0.0019353631053744922,0.03434369534950037,0.12255110223731663,-0.0460005248133792,6.724195441629508e-05,0.011072362062035102,-0.03818973264570471,0.11716489656271836,0.019785898970873485,0.00015078089229884334,0.028334954821109447,0.0015785963957484319,0.0016429502254641736,-0.09736845436476375,0.0003242758130262207,0.004517538310182984,0.0161078235863246,0.03166410527117323,-0.001964043769016364,0.00026617509400568703,0.011249738097816443,-0.02713891178427206,0.06891858050227107,-0.03321556595061358,8.598106998078696e-05,0.013586274115411296,-0.0201867971574713,0.06757868097276559,-0.03527490775269431,8.764912069079738e-05,0.022245598138121898,0.0250561727604536,0.18183023615221355,0.03322161380683593,4.725494331437938e-05,0.003280113997893721,0.03228761460700159,0.024187771731485445,0.04908212094187676,0.0010294017115633793,0.010387130098881009,0.013972626554211774,0.0318493122394503,2.9153695324609742e-05,0.00015340512882130897,0.01133551978498797,0.02704587801827258,0.02185870302208094,0.03457342943801392,0.0006047850589925375,0.019118234305476874,0.014127924098039797,0.1900818889098696,-0.007435040036916557,2.21493202935772e-05,0.0024422775959007104,0.00955365432708042,0.027401917270363806,0.002042563004962338,0.00010357134366466776,0.009511633442060779,-0.00626988634726959,0.030027890261866794,-0.051221355943819664,5.8775545269498457e-05,0.004941018352182651,-0.04491265341378011,0.03309902530159825,0.05115317046295363,0.002646527928309247,0.004205967464248452,0.04231837086588911,0.30626074769328726,0.01723493917404196,0.00011370765668789414,0.019776927318641238,-0.04184835765580125,0.24869821829001174,0.02329730624143109,0.0002605637384793064,0.02274794089627392,0.020908745445822385,0.13037011233887566,-0.002333091232880154,4.517632421854232e-05,0.0051377651003193265,0.029058971672897012,0.15473928506642587,0.01283401476152193,0.0003095041403196317,0.020333534111570614,-0.018909700780604922,0.27162169927720775,-0.025330004956655463,2.8890191873787552e-05,0.006558391207536578,-0.015140612573516055,0.1606548308678829,-0.10952996842132173,3.148700596616686e-05,0.009179799029395948,0.026872251714678854,0.07512427056453559,0.006320031639609202,0.0001152249548396315,0.004926776098382643,-0.014709777140105617,0.11445580735566642,0.0031249882668057975,2.9686611972274874e-05,0.00518067589026659,-0.0016673674754367172,0.004914322255694816,-0.08186901840162601,7.522203461813279e-05,0.004290933172444534,-0.017841163682436656,0.06997481061490912,0.051896862978688285,0.00011658160808123862,0.002975712006880924,0.005317618697540304,0.005092988276507129,-0.08134116282631124,0.0005967879942343298,0.025151631945552654,0.014061108843494933,0.047231937512971646,-0.03205623429643078,0.00012530540884465847,0.00823139673843966,0.044046340253358796,0.16828032378267338,0.02345239648912461,0.0016799473269794737,0.0026115205520943893,-0.04057484580374911,0.37776259115104516,0.024147859794020426,2.7619774258145635e-05,0.01552365784796156,-0.017971711588545592,0.04464580600994414,-0.004099414580962887,0.0013160731905150433,0.016540489980238042,-0.01732951106444636,0.1299134036105698,-0.05149892421508202,8.882965837667878e-05,0.015295055427631434,0.011453881970403456,0.01717547786827405,-0.0009620563161760831,0.00015739439430028976,0.0030892096525063015,0.019109306919869992,0.02587223213965925,0.003612915822238668,0.0004239503033104364,0.016694704574128548,-0.013122286462559545,0.03694537925857668,-0.05874478801046202,0.0027529588913042403,0.011446765323547426,0.02011440281252312,0.08073533996868205,-0.09698604732231147,7.993442129304075e-05,0.0043481682332059445,-0.017078616836603076,0.026180423918058613,-0.007681147080732987,0.0016216353855471493,0.0045640248443465795,-0.03376434059093422,0.11541646705629952,0.007123895695713455,0.00011590616398978808,0.003962757151877838,-0.014073787217776608,0.03387994538985326,0.012825390770727843,0.00016839479172093001,0.0015668067695898459,0.026704021545842737,0.12148642875998969,0.0222001547464779,5.3649147974034224e-05,0.008987939390689273,0.09561364272214858,0.29315182254887506,0.22544813074273898,0.0030913296814208575,0.030540804910712437,-0.012100371047509077,0.05456620573938437,-0.0171269592761244,0.00011031015690396666,0.012894551910136354,0.03705710510548335,0.2016978590639075,0.04063594932666547,0.00013323888366149414,0.015671193035332587,0.010964888450971344,0.0637820996926199,-0.03937888662947917,8.131189911648551e-05,0.0044072882037524555,-0.01969746056243782,0.07835117647668463,0.009079621574807607,6.31847268774525e-05,0.004241937798757942,-0.001473116126093256,0.002588960718235409,-0.03745597223101827,0.00027742201178071913,0.002412634173965072,0.009764764470915704,0.03785026040093647,-0.029886570682934665,6.415156810504485e-05,0.000699895426880846,0.02358408587884256,0.25450343954935645,-0.03090623088087293,2.3908739326309526e-05,0.02641338658953772,-0.01533076971807779,0.043740702501791705,0.025801867150377165,0.0001225144094493483,0.000512270408531945,0.0075409028266989276,0.02889957504798042,0.0009026666782700774,0.00041130108825503076,0.008476211936889279,-0.01670284918089178,0.08211293197857775,-0.061978434148415674,0.0001165066717762393,0.015734871844297414,0.0036072020710085613 +2021-09-16,-0.012439714995071143,0.08975941954153965,-0.004038349726838811,0.00014656051381911842,0.007553036566613141,-0.011625261693764167,0.03790711539648393,0.0030184041759660895,7.358554778965447e-05,0.0028139639183537525,0.0378805360743428,0.12768041225580476,0.0515054630731247,0.00013724263401651823,0.03558183341055815,0.03283818866025705,0.03678631253241265,0.04556694133663573,0.00030127340346843104,0.00040761544943373725,-0.019261644004803236,0.0366754312627106,0.00910163949767635,0.00027479947258968537,0.01657999875345432,0.018230942958806857,0.06285656720209626,0.027839895157067144,6.332937659865592e-05,0.0057177256009161345,0.0028927973892877595,0.012745542595674165,-0.003328580791037677,6.65962144799908e-05,0.012854772116397543,-0.031484077951113784,0.2079321736798584,0.05782809175945994,5.19239711406405e-05,0.00891324251025449,-0.005596114808935855,0.004632575394519985,-0.00013160464504300906,0.000931555868982439,0.006485786364898704,-0.037263689242697705,0.09801885954273012,0.019668319429895973,0.00013293461762119813,0.0015555494313781804,-0.00709490476556152,0.005312097955788689,0.004531328028139379,0.0006528371402565271,0.00027229001675545955,-0.0019933335713839474,0.029126205884440745,-0.003741858918588318,2.039477204300369e-05,0.002091237125259296,-0.06754079586572276,0.19825364703643977,0.08364789888498628,0.00010120361514483745,0.005000919970899253,-0.0031651584743292035,0.016056212176338153,-0.011142929434094758,5.54899302743059e-05,0.01373652180549735,-0.03251066762832227,0.029754389533421646,0.03837997953277769,0.0021310704955191813,0.002222125315891558,-0.04469450667960703,0.3270430564210675,0.011835839478201465,0.0001124608399747385,0.000396161537914199,-0.018568372754038966,0.09518417456568723,0.003539604603466815,0.00030207677057309397,0.01496469381507002,-0.026321799440855647,0.16365260648454466,0.006067242718713882,4.530577929425117e-05,0.001331786738397074,-0.013519331037308001,0.06959236649159418,0.0064628221595735115,0.0003201698296325185,0.0033210504608282582,0.058605071016421,0.8030624253805813,0.07392224356266028,3.0284201120061296e-05,0.03190599283784835,-0.008765237625019774,0.09060947959009198,-0.029395602100609923,3.232003089807101e-05,0.003552847108483564,0.001438790641764394,0.003937503557126065,-0.006891110785841763,0.00011770621675196717,0.01220762636955836,0.02539171278812553,0.1750774100511001,-0.009955360463905851,3.350072915566873e-05,0.01282443172542102,0.01718716216885256,0.04626220802236838,-0.25533996721524466,8.236737015370156e-05,0.006684620245115792,-0.016994739809997255,0.05886444587048442,0.04730047169091396,0.00013201098010029826,0.00768909757086116,0.027082442616977204,0.026434634868726,0.03371670134193956,0.0005855851798782368,0.004241432456738378,-0.004586132511955431,0.016123782389500907,-0.001588830730628458,0.00011971971656993407,0.00563825119001592,-0.03821440858368,0.11446210913969816,0.00808904077825627,0.002142814483849794,0.04465360495620423,-0.010471922379262002,0.12064388248078879,0.0003432574009894134,2.2320468434932848e-05,0.02554118255321891,-0.03240283869577974,0.08713431330506571,0.01042089462310285,0.0012158083331030394,0.004401072650419661,-0.00920644389221108,0.06732302283220781,-0.019131197517778968,9.10655146314818e-05,0.009322235552153292,-0.00922412301888657,0.014297453565760824,-0.006643665149642928,0.00015226909897606336,0.012339382936973144,0.04084137674441706,0.060947234514058694,-0.025341415278416022,0.0003846363130799342,0.01617562717012328,-0.0029140252888113652,0.011837732772892821,-0.023904158665084684,0.0019079857449236823,0.01463437387380126,0.00974987064387868,0.03939832063609943,-0.007603319422616386,7.93983566789947e-05,0.004006671318626942,0.06503879210204032,0.09890691794761758,0.14239292199565792,0.0016346432663453339,0.012814655688077006,0.022448263505684036,0.0764260160370091,0.00288716388328663,0.00011637443004827586,0.00965593808435611,0.009551162478171338,0.0192828046243318,-0.016669039242545657,0.00020079200122432168,0.009456418714690655,0.054179778455337856,0.22146331107616238,0.047600733180753044,5.971031484274005e-05,0.01474890395194207,0.05542954326377103,0.20164839849866104,0.037072970970510495,0.002605341041085676,0.006542464234787134,-0.024156600273130883,0.1364151622659711,0.010366826645525143,8.808738950145138e-05,0.008277455791972206,0.032999741071157836,0.18885303125948535,0.034599290075507556,0.00012672063969819338,0.008802138615290625,0.036076261310261426,0.21064967904299595,0.02910502180376023,8.100455134562052e-05,0.013844700712649776,-0.013503990095220117,0.05600374601699608,-0.024207487614243767,6.060276346157176e-05,0.004832457977038205,-0.016924462368291166,0.030234812413556807,-0.06662612281862057,0.0002729210271941745,0.018398328424553332,0.005601218432682119,0.02194743813883586,-0.04745583000027914,6.346189725627386e-05,0.004134377061442882,-0.024316526412657427,0.2852944606029717,0.03922830376352169,2.199072171546866e-05,0.011034288240120189,-0.024138199085166803,0.05987437871105146,0.0677952822939304,0.00014092005677546017,0.007872670280094416,0.005374719240274881,0.02017994998781271,-0.026148300957760922,0.0004198205258037867,0.0023819338729847267,-0.030201634137273205,0.15565168731757817,0.00520611506433457,0.00011113437341625335,0.020093271659816524,-0.0009125263599465368 +2021-09-17,-0.02571903493152218,0.18927550564381757,-0.015677400212239588,0.00014369671406150598,0.002775272445778333,0.005349268603839181,0.014711147089559746,-0.003956753925646497,8.724858545127736e-05,0.016130255555934,0.011852684245759736,0.04142702159820483,-0.016620050977284934,0.00013235190867679433,0.01889249664841836,-0.02422313779711409,0.02341838046525301,0.08338488577842836,0.00034909320749583315,0.013237692964203043,0.007557388929110693,0.019056870175839208,-0.11367831670151812,0.0002074999373903994,0.011834957761934483,0.01575775147896294,0.04088290987667397,0.02270803999434085,8.415873270668138e-05,0.018037843367574174,-0.0182038308993726,0.0679403017733349,0.006089051462480466,7.861857652967845e-05,0.005849894405564781,-0.03029452393896197,0.2694103163501141,0.04241425859644514,3.8561021036463863e-05,0.014349483239751278,-0.02798251612683234,0.023649533033555135,0.04756421523120839,0.0009124497981759838,0.006275262734038817,-0.028757520349673465,0.0579139741134232,0.03465354506766603,0.00017363207466771028,0.020660376190362675,-0.001848717421857952,0.0011996711812506504,0.00029677086610691543,0.0007532387706770599,0.006205023930696123,0.023716166409224644,0.2720154996423917,0.10628575852461654,2.598206274707117e-05,0.003387026527476014,-0.012456992492186028,0.038297959082925596,-0.00037451912451533806,9.662480038835171e-05,0.0016971090280307928,0.002367325339396899,0.012948808180800743,-0.02221059515100474,5.1462391887187275e-05,0.000868616257332746,0.016179144307864143,0.012742277726413863,-0.001466899944329214,0.0024764607814050945,0.007901438690732416,-0.052453008879822446,0.28914302011281556,0.014657945581382403,0.000149282809763872,0.03121212303713046,-0.009714202701099038,0.050069594947512806,-0.01919204081166291,0.00030042862857589494,0.02376146294012358,-0.026575670628123098,0.1482938485351379,0.004368631968438394,5.048031455357387e-05,0.00041505132139387445,-0.03316536014947224,0.2039512451336853,0.028087767889158347,0.0002680063994037706,0.006803751862977544,0.010110762152116742,0.1247485328602572,-0.019222279658556354,3.3634012298432316e-05,0.011028411394867743,-0.019832226958709526,0.20888784949867573,0.035555310784380616,3.17204992478511e-05,0.003636665855063176,0.004527588684964897,0.011075068724859666,-0.002537716661536711,0.0001316871176047201,0.0073800893228958934,0.034383391910936215,0.20786021168858224,0.011671462941281224,3.820935691476412e-05,0.002305298271944663,0.04146711244870972,0.128413308280503,0.30322881822903064,7.159309573212363e-05,0.004190297232028503,-0.00438145827745973,0.016252374510861062,0.0011494859308129194,0.00012326802979353068,0.0021035309898424564,-0.01642153259723297,0.01776954132621238,-5.3085694541430096e-05,0.0005282177978898311,0.011568255317061155,-0.0065895218863192976,0.029004162417677327,-0.1425613745887544,9.562679171834095e-05,0.0042259323838088805,0.016963390477417854,0.05823626094357885,0.004433266051891778,0.0018695554494883935,0.01513465313628972,0.026700139805519253,0.25983682051759843,0.01856105205465914,2.6423785626736132e-05,0.03441838431588271,-0.03203938195144666,0.1042565982245207,-0.012956983504576915,0.0010047357359860606,0.011414427577186052,0.01301679708649605,0.10305474210732139,-0.12008359597776205,8.411274325278447e-05,0.0027617938279966532,-0.006834968248541742,0.010945934418773838,-0.019443001856466826,0.0001473767740315178,0.00897037706333445,0.04939789286273515,0.07953652926230542,0.032688698196800745,0.0003564886456788335,0.011010695633721448,-0.012867130959298754,0.045059949273880476,-0.012214183687154472,0.0022133055030592254,0.011852109063822789,-0.010272786111888865,0.035806958623642235,0.007627287368264574,9.204732709679008e-05,0.005511588156403752,0.0635916557146743,0.08932418546355196,0.09274406445098735,0.0017697350810842445,0.006938050578216762,0.02432038905550607,0.06544193355141033,0.010340810761348969,0.00014724156745522034,0.014394651028656797,-0.00824836956266908,0.020336040578120718,0.007929399524354593,0.00016442281803523306,0.00986198794182494,-0.013634728423745426,0.05495600750835221,-0.039486492822814113,6.055433553053672e-05,0.026661405005635207,0.07427009502331135,0.27513267952065296,0.05609344736204258,0.00255852614761326,0.042082851652524365,-0.009160993433175372,0.047130736816265166,0.001607055360839937,9.668941067436184e-05,0.006580899101513905,0.013322777202514968,0.06894218987688516,-0.0015184838433117995,0.0001401426983965185,0.005718644330378785,0.012064906236662192,0.07275655593298995,-0.08938967615055807,7.843330527554701e-05,0.007529321779994466,0.008816867543626032,0.03903368446269293,-0.010302503482998144,5.677042744755565e-05,0.01931022237587031,-0.013151985216488268,0.02391612034965298,-0.01821943183544701,0.00026812047240430155,0.002076523385979559,0.01966249740455647,0.09101761030715232,0.03614264118748809,5.3718963619402835e-05,0.0031106155602724254,-0.009887104535344466,0.11661832349811052,-0.06096101940900608,2.187427248052144e-05,0.009605528699756779,-0.019711057148541503,0.06120967435669373,0.03955704130257065,0.00011256381730792616,0.003734435705987328,-0.010878877928352116,0.04421727763198548,-0.04574459027228836,0.0003878109559438274,0.014117079016834587,0.047773320410033356,0.23420466193216483,0.04942721153441838,0.00011683196674831814,0.0075799370639489,0.0008374852911333476 +2021-09-20,-0.027140520038147816,0.19275004946663596,0.012540073962408298,0.00014890533247816106,0.00470919371423178,-0.022494439917423288,0.06713531614226727,-0.02541792239811893,8.039604275530301e-05,0.023521185250636702,-0.024899337284314822,0.08299971070838198,-0.041495026900592646,0.00013877409825325794,0.0180200727895009,-0.013320175509748997,0.015518032252428595,0.0398008061667521,0.00028969510261308374,0.0021052296965161357,0.013902837384323921,0.03120861180844404,0.0007966977171397604,0.00023309167574257273,0.00123866712416828,0.007447213422935704,0.01914064337051371,-0.00244662854485977,8.495403447027315e-05,0.004448734487849889,-0.01212975721015073,0.038367116002495774,0.01457711149102446,9.276471360863481e-05,0.019285405115365733,0.023706349925130432,0.19953154743606163,0.020187737704418663,4.074288090666017e-05,0.0034537809366101445,0.007490355695362212,0.006851359837249956,-0.034493012257087514,0.0008430832299709569,0.003590952794576246,-0.05574146925456863,0.13666176589809623,0.08407507137897763,0.0001426242159511848,0.0066329869173137445,-0.0021794274703484345,0.001745720866952698,-0.004732838351531581,0.0006102277815977083,0.001593524886831663,0.00182092501812865,0.026760110329007804,-0.01088337058422165,2.027808562759713e-05,0.005206835272874838,0.029825293161966793,0.08506324318240666,0.021088792108700377,0.00010415828539298399,0.013341839962943807,0.008357953704473281,0.03864329690490227,0.011084079632826533,6.0881817344212936e-05,0.011558129513225697,0.028836890897639376,0.02245537271042546,0.017255556278099982,0.0025046736050582203,0.02240642197914273,0.034227698234304244,0.22515129136162745,0.008483296440532776,0.00012509943837647611,0.005699941057131273,-0.008311480334590577,0.04023982134442696,-0.010690834869034932,0.00031983837457789905,0.000981762020075119,-0.03931442040501261,0.26954661164820354,-0.12328086220968183,4.1084589927098784e-05,0.010289959763078076,-0.0009486306506092624,0.004158316881899785,-5.8972369223499286e-05,0.0003759814157019697,0.009030903560531715,0.03938333254084438,0.5589569712313422,0.04173533712167043,2.923912128778969e-05,0.03322190230835216,0.01086420070711032,0.12747605964432127,0.021350647490915822,2.847415590381142e-05,0.009044815650349175,0.00835743456806143,0.028590416375177067,0.0014016822090186204,9.41619103118623e-05,0.010480415084582622,-0.061083292996931764,0.40667388903829044,0.05714907626161951,3.469513078874615e-05,0.010719975395930718,-0.026897175560535388,0.081380012906868,0.008502725278494199,7.327676796749096e-05,0.0013425574189739687,-0.0009149969800479972,0.0033469230313545218,-0.004532108810679458,0.00012500360308036386,0.006030068456555078,0.025907452029872952,0.026809102794326172,0.010931051297565709,0.0005523546114325388,0.008696783442137992,0.008914247923254038,0.030089259327228578,-0.041214549538363586,0.00012469792312516664,0.0024114111515930263,-0.026370944256291568,0.08702567313315032,-0.03717879782581307,0.0019449008414988479,0.03709484524544861,0.07642249680397696,0.7129020668360725,0.10728844913340344,2.7565986803967216e-05,0.028058101254668392,0.02626908956072826,0.08279600377174753,0.017525870793795452,0.0010373060605467755,0.01033088808864933,0.034485644543991466,0.2277201489437378,0.13306302726650066,0.00010084689508045113,0.004910521999080004,-0.01875423075008689,0.024141791185447087,0.024676247471283212,0.00018334756743420248,0.030598027385363647,-0.02333279865815967,0.03795679475879195,0.008817021709418674,0.00035284276422114375,0.003950971419810351,0.03271732639724662,0.12148029512887049,-0.08211678629333369,0.002087479933933999,0.0007382203565773049,-0.006996040806535118,0.031037886594921068,-0.06756182756268495,7.231869196144166e-05,0.00640874797915893,-0.01526481510936714,0.022611225893131495,0.0006792667798578433,0.0016782035345900563,0.028375309272243212,0.004050289584152238,0.013746207618409558,-0.04896294033058702,0.00011673987194276468,0.007017882284383702,-0.041779609635698114,0.109345688546457,-0.06011910034099693,0.0001548898967615733,0.029007562871842668,-0.06847824812736379,0.2645369691521371,0.09329350752583325,6.318008311272525e-05,0.03447754073045598,-0.04409297521428877,0.12197046848847845,0.022683657654004492,0.003426358255358021,0.03155282265850616,-0.009853772926684235,0.04016160544927743,-0.014444524497286011,0.00012204839018525525,0.010145068524505132,0.019897253028097146,0.1025092995961501,-0.0023239880254765947,0.0001407636893648106,0.008580907592998574,0.025853700088202338,0.1596374906264041,-0.013920277148802966,7.660136574803474e-05,0.003343036806476272,-0.016521736111697414,0.08250245538341269,-0.07027332573883727,5.0331074514488624e-05,0.02659823499213996,0.011402520876645693,0.019733978180106203,-0.06871657591527147,0.0002817186680875753,0.005120196695158519,0.010225787162791891,0.043906538757714164,-0.01803691884358897,5.791378145533072e-05,0.005020018979968919,0.003517829810796682,0.03681822795477836,-0.03755602647700079,2.4651493053244322e-05,0.004329305491286184,0.020473969792197348,0.06470082043874266,0.0056779148020721345,0.00011061174275488005,0.0012584584763105046,-0.0037206225038737416,0.015645203148834826,-0.012048465283134942,0.0003748541926897157,0.011040586697775922,0.022386971930227532,0.12328284922705389,0.00738066180241248,0.00010400745935824032,0.01774549488396516,-0.0005018668569151285 +2021-09-21,0.002295433061192854,0.014039347782642101,0.0036324047367913685,0.00017290369880040211,0.0227142021051386,-0.028530132532990905,0.09323090467526894,0.016644130177006423,7.342676881146472e-05,0.001383126109199146,0.02312728191591376,0.07435510834973909,0.020090326633930476,0.0001438834981658798,0.042499225278374284,-0.03169185752051171,0.035634208955721815,0.11687386297552846,0.00030015696730692086,0.007035778776528846,-0.02927295705213096,0.060945312421118274,-0.019310411864109426,0.0002513182692338786,0.004214791253055503,0.0019547252169788546,0.0056937150088351264,-0.05579655188732368,7.496123449797333e-05,0.00515313206321109,0.01121021750870277,0.04602511381443124,-0.05198192920144398,7.146757123791791e-05,0.014456432000702676,-0.006851733511262837,0.0713888752721064,-0.1198635628141678,3.291308096287743e-05,0.0034852941062145475,0.006211028478819366,0.004790072582002044,-0.00512250710707825,0.0009999222057143979,0.012530437369268562,0.03349749992484383,0.0715785727534029,0.00888893683495181,0.00016364066914805437,0.018283403516314477,-0.0026711397305804094,0.0024484584433128146,0.0006638153423827006,0.0005332467632723193,0.0025258972939873636,-0.004278341930824884,0.046484897546149255,-0.015848209212347954,2.7427511280205788e-05,0.004591450943526442,-0.05081983372046167,0.16307993157473083,-0.11020018617505548,9.257287614669508e-05,0.025019542318931637,0.008223361243658743,0.04283120631053989,-0.08033390998666162,5.404442255778914e-05,0.007864380880792086,0.004174343597654466,0.003627574944681103,-0.017517382995236194,0.002244371642183404,0.015656534919691253,-0.01348083330547283,0.08672199061191346,-0.008329124751022614,0.00012792034093822062,0.006295606584131266,-0.009313146647730731,0.05180588165903007,-0.08304920955387102,0.00027837203501072233,0.017478010329812603,0.03298888446743162,0.17446280066096542,-0.033305812258469264,5.3263014947360916e-05,0.011239200295329772,-0.012565886785773245,0.0625892173451634,-0.016310245477930106,0.0003308875518592104,0.005680065958630016,-0.012509689383080487,0.1538230165913982,-0.0185414697340975,3.37485745066808e-05,0.017267507098465678,0.016599335032985395,0.1721691359839463,0.039761102407948445,3.22119561846451e-05,0.003259583132422529,-0.01919622476949535,0.05339526503469062,-0.002909246947693631,0.00011580727317709075,0.007971734280325925,-0.0843026649998632,0.6743979625860168,0.07549371775794729,2.8874696653640498e-05,0.022477930323413137,0.008374095767392759,0.024405250386107424,0.018994159318411526,7.607326178909792e-05,0.0019561329466723123,-0.008477843401094599,0.03695199334781817,0.000775575925734404,0.00010490498228453745,0.006531789913327008,-0.051077227592064144,0.045530259989352215,0.01700372217803033,0.0006412136329808028,5.821076960386799e-05,0.001813803752128417,0.0065170704679321945,-0.014587681761020595,0.00011714503543297966,0.0038929690910166357,-0.0035683750040042847,0.012227560035134158,-0.0019585967797396677,0.0018730521074584333,0.009892644243621669,0.009561420975307834,0.08571413733775456,-0.011654751012999108,2.8684823149369815e-05,0.014579487342118764,-0.027364168553564695,0.09589180445244057,0.006685556450814873,0.0009329793588365617,0.029689099758743776,-0.020510929907802258,0.15180431449354156,0.0022906396841476558,8.997604073359051e-05,0.013102499496450563,-0.04215762900225124,0.06341401163673543,-0.1396303076021701,0.00015690483840048706,0.008194064832496274,-0.01927528717915623,0.029876262368471886,-0.013977340946362061,0.00037032114141419736,0.00984828361783243,0.030578323970855904,0.12280278059358408,0.07150484127710033,0.0019299933749910786,0.0008170147419121871,0.003958030826488494,0.016308793826449786,-0.005877934313009046,7.786597038552496e-05,0.0005764675865135476,0.001210502698179565,0.002093820161723171,-0.04399520381186772,0.0014371548876858807,0.011801155403840203,-0.0024824128028249673,0.007580904895988325,0.0015000910708186219,0.00012973853528959478,0.008810717832563437,-0.02285333480392385,0.054055952488545105,0.01871110408029656,0.00017138248434531397,0.016713921998023806,-0.01558812627799071,0.06628564471583043,-0.10149958134040205,5.739688926608948e-05,0.007504286534655942,-0.032291589053816475,0.0919982663245239,-0.048877608154231346,0.0033268087236165136,0.0034202105733605347,-0.008447801692620034,0.040238650971667254,-0.016832291342657686,0.00010443374904410805,0.01198734307358652,0.01154224158355194,0.060954653392347596,-0.024438843139387233,0.0001373232516164445,0.0018418804919396385,-0.02118511960027988,0.10226716558942706,0.030522550035742158,9.798134562994224e-05,0.008210982501803962,0.016664470440719958,0.09281154681978064,-0.01142687674583428,4.5127045556527656e-05,0.033852256563422216,0.030592696339082858,0.05407951763438673,0.021571346102878294,0.000275812751492705,0.003961370732570849,-0.011616122723372778,0.052892074887426,0.05255382677591211,5.46116078956489e-05,0.004455514251476845,-0.014005234816785265,0.14597674955642298,-0.02166390469786485,2.4753578477446854e-05,0.026364877501405502,0.01110057608176725,0.032418549771617546,-0.04657849394329855,0.00011969083570438169,0.0054897440853350484,-0.005824284253762008,0.02427557361677585,0.002248723657528008,0.00037818215532665477,0.0020923212429434395,-0.04899759707449817,0.22893470581266995,0.04226535956689685,0.00012258432573549494,0.01603986775157402,-0.007599547182238947 +2021-09-22,0.007867041241752812,0.05306649440000492,0.006735547767772985,0.00015677528969527496,0.0005344645770863586,-0.03298908196438511,0.10201337487572283,0.02697265216502076,7.759319611590803e-05,0.0009525601746727941,0.06547560156293361,0.2079863493817062,0.09473299096225718,0.00014562698882892103,0.016534200656539298,0.0028032035814670245,0.002720928253438199,-0.01157958948497827,0.00034770057220119105,0.002427715383662123,-0.01354693918551712,0.028810505151951788,-0.02515943664330124,0.00024603000780705546,0.00037582571935110515,0.004113178828059246,0.012519082123713514,-0.004397681471790829,7.173842591199359e-05,0.001196999225805652,0.008458115182079153,0.0308636269337142,-0.001457800512426598,8.041119004121535e-05,0.027663613709709014,-0.052275140827604386,0.4093354722771735,0.13190346052208354,4.3793982904327135e-05,0.004412228634076369,-0.0033017173319185105,0.0027817952610265516,-0.002911776535092629,0.0009152916769516008,0.004428388536335535,0.0017058250025570412,0.004258812821130046,-0.010895921692416075,0.00014005796413221432,0.013767195190385316,0.04163535325964199,0.029129088190033993,0.06723890164027342,0.0006986500937903374,0.004994636041096045,-0.0028085577267066447,0.03743367115353568,-0.000921570853927713,2.2358554536042213e-05,0.006762916208606933,0.06275378276735535,0.16374982889975337,0.10058349443690047,0.0001138439859390971,0.030821643981887258,-0.035846536827710454,0.18588833529692475,0.21775302515671735,5.4282130469721764e-05,0.0027602129190454536,-0.026777753088239157,0.02426054851715268,0.011886873231743578,0.0021527643333218494,0.02697185503649813,0.030346777091864605,0.21996633104593644,-0.07460691761459012,0.00011352943366385059,0.04086016377870612,0.010554128298184091,0.05465941673707781,-0.01773192945334775,0.0002989961581795774,0.03116505773003703,-0.02248081298196754,0.14307279184717853,-0.0015614872044325582,4.426045935264855e-05,0.013326269871834355,-0.0003503429602952907,0.0019815778908338086,-0.018695397315307782,0.0002913862502701224,0.004444485323047065,0.05776966713398446,0.8051990903644952,0.06902825263233178,2.9773289537158017e-05,0.0185132889550334,-0.008528735570543398,0.07726855764652041,0.009441587732139005,3.687767674492138e-05,0.011275414900785846,-0.00024422008423563845,0.0007642434521539624,-0.0034451615515457626,0.00010293721308735528,0.010483860108822754,-0.023234975267839016,0.16132767065727696,-0.009180956805923722,3.326792604508292e-05,0.02009491057840916,-0.02610604091975368,0.09400320704360429,0.020190315835564646,6.15709318252554e-05,0.00017634310453408866,-0.0015252911221797522,0.006421599236179195,-0.051955011852030476,0.00010860708058512042,0.006668710182980178,-0.00450249922256798,0.004633672311265659,-0.00031296664602626127,0.0005553974612360999,0.006944788342971652,-0.019170335723896068,0.06530249113936601,-0.05341611941327349,0.00012356229859214788,0.005451955668713208,0.028834595956959225,0.1059675035144944,0.012917627814697194,0.0017464668315106294,0.0068703244508839766,0.003476178468762321,0.04218035733635487,-0.001860883302822863,2.1192100552227345e-05,0.042368197133918394,-0.04258042006491699,0.1184295000389225,0.01218365196732647,0.001175496432520167,0.006059347780520127,0.02013245287913368,0.1496303418291536,0.02471423212561873,8.959889763834631e-05,0.012115010220252496,-0.009401381509937735,0.012817464868264579,-0.005590041429246618,0.00017311509058485583,0.005797884247419844,-0.010326743951911629,0.015782101456552906,0.013786442616249287,0.0003755800295938671,0.013803585560019118,0.022288254414337086,0.09426221403166579,0.033694584403856226,0.001832688950165175,0.0104632281676571,-0.011673197492290373,0.0469423256178767,-0.05385437190367717,7.978396250938736e-05,0.03109076594973751,-0.06993405766819595,0.1076616205336616,0.09369049062169015,0.001614748934161146,0.008230660383678588,0.00012303481114847532,0.00046654261063562466,-0.056973964503946636,0.00010448470677703795,0.020281350180184926,0.02091107982038343,0.053010946473556815,0.0017197375565653707,0.00015990839988732424,0.0021415526676156725,0.008549164088691457,0.03545706637500939,-0.005239645853479405,5.884841598345673e-05,0.00842364896337558,0.059814127064662485,0.20424021429009973,0.03792560273125153,0.002775751412308753,0.006887961978097728,0.005330299368603727,0.02681937888064181,-0.02904379338724556,9.886520160103842e-05,0.00538437608949056,-0.0038751320264093932,0.01993918284204539,0.001727996391174481,0.00014094183844067906,0.010626432830070897,-0.030103276788622364,0.17302292203014283,0.041137939664707135,8.229222945817022e-05,0.01054742065096769,0.04018117783021402,0.16757625234401655,-0.002007726383499639,6.0263948637811366e-05,0.023030045262360344,0.0313348865747721,0.05239041126068356,0.01954168640674714,0.0002916122161750745,0.014618823147911174,0.020559194356042865,0.07695417934812729,0.023220177375303425,6.64336718382695e-05,0.010592421573825155,0.018581544944529276,0.1948651335729782,0.011673447504142719,2.4602484456501356e-05,0.015378442392824623,0.019232526647211548,0.05639448039622095,0.017948013234959564,0.00011920890749385013,0.001735004125616073,0.02369453286454049,0.08364170350957363,-0.013077322481231385,0.0004465326839456468,0.015751660486310284,0.009807718810412017,0.04071512181635677,0.0019754046771170443,0.00013796980913988454,0.011075504313114768,0.003295286540104193 +2021-09-23,-0.018068518178689884,0.09710352661591527,-0.10726777126941933,0.00019677690158778966,0.015699039589278724,-0.012567961379141067,0.04618147171147368,-0.024250433348590957,6.529916008156531e-05,0.02271444580457624,-0.0070028861204523615,0.0226543402370424,-0.02333679498699318,0.00014299565775627272,0.011903471303645713,0.04019113687324639,0.03843727755435019,0.05216044562822336,0.00035289501833204545,0.016995717130139712,0.008697334225525636,0.020428136277258462,0.000808481296156198,0.00022276922070005922,0.013044678956778275,0.02056348778373828,0.05762723621683577,-0.02166306392222694,7.791404033421217e-05,0.005166690261812725,-0.06125775374620067,0.2146162129175112,0.1482858601022184,8.375069038478038e-05,0.011546533892775237,-0.01735873973414149,0.18850686362508556,-0.018511076765745847,3.157836487045984e-05,0.010966388143456152,0.03989455077042788,0.03390575447123471,0.06625491350480543,0.0009073711213496121,0.004213677998870532,0.014577399717887234,0.03977455864767575,-0.0006842908226955036,0.00012815530235745905,0.03879130603580348,-0.004212059707231045,0.00322554565088547,-0.12005497412848956,0.0006382865370681248,0.006207011210675174,-0.0038284406600497187,0.05515699536404929,-0.03127473154399862,2.068445627135649e-05,0.007389010088663957,0.014022801592514436,0.03722882705399373,-0.0018955206964817238,0.0001118939161170249,0.0024496248332920613,0.022757901124083126,0.10783656522549194,-0.017978825460906622,5.94056809095411e-05,0.003409383969628448,0.004681833624263235,0.0034716518809604583,-0.0769484500614155,0.002630284822780117,0.013509379317578125,-0.03183826186554808,0.20828573100094136,-0.047811587530499106,0.0001257887899566688,0.01831536754154934,-0.024650971762574015,0.15464112209909428,0.003419561171864726,0.00024684099240795986,0.016837282526538717,-0.04434085192332487,0.27449345154586147,0.01613471216734018,4.550226347245355e-05,0.006510513963200432,0.013478056388115703,0.08767956318908784,-0.009392067286340492,0.00025334696088007396,0.0006968369874789714,-0.019248289723983115,0.24289408152989048,-0.005814819016948811,3.2885575433587296e-05,0.015680951053191946,-0.0037157633078896833,0.03977645158595719,-0.01164994602830223,3.1210714671701966e-05,0.0022008285488129956,0.015010649255330688,0.03758140770662062,-0.0005903648783412378,0.00012866167153384938,0.017271875293978552,0.035607306850189396,0.22753891430919557,-0.03713072562277749,3.614729652288172e-05,0.012513526597307069,0.0076030634639775935,0.02145047290059855,-0.06329475930969172,7.858309450240844e-05,0.0077594734687851915,0.0018822048242047018,0.007398131774329972,0.0003537075258144084,0.00011633045190358642,0.013571308721436559,-0.014279055217218953,0.013229407721784934,-0.05057985587952756,0.000616928215086906,0.0002019877590480521,-0.04213814509111652,0.12189574383345521,0.014781363037254832,0.00014550331279819463,0.0077696494625340996,-0.011630997960295457,0.032971253964204646,-0.014976327736021226,0.002264126509609274,0.0033350324040540896,-0.06090111634431705,0.5117337269312333,0.06485357932804475,3.060295810611006e-05,0.0010896965169775422,-0.02437437904184432,0.06566148638883504,0.001490137959383912,0.0012136518453433347,0.039140445760333174,-0.019198323784941133,0.15940269107284324,-0.09139499352436291,8.020349728203843e-05,0.0060755295751694464,0.0045988261037281175,0.006424654231314738,0.0011760549739182526,0.0001689439386333978,0.007846517819937742,0.020129022749521677,0.030264770577494746,-0.007427286005949863,0.00038175894202079573,0.012846085417999685,-0.05746679122060387,0.22789758333991733,0.12051176794539853,0.0019544635226669688,0.007816507323004788,0.011195955032373847,0.05027962855351094,-0.043993645705506984,7.144296254679887e-05,0.001400068213693173,0.016466835606686596,0.020598615927068503,-0.043530556331686156,0.0019872353390249418,0.0269279526156167,0.004781384622886395,0.013218033739982404,-0.007424243454001049,0.00014331870024622843,0.003865902767367182,-0.02449007597272409,0.07260520507007275,0.008228809490518066,0.00013673596251475198,0.004029039456941604,-0.009043542306410739,0.03969007095600988,-0.0037142886907207003,5.561227021619022e-05,0.045999662135729216,-0.01636828947190927,0.05789958638094983,-0.10816187847797408,0.002679451457971308,0.01556426163155379,-0.007644309310953871,0.03982646167987877,0.0006299136019382427,9.547883216424091e-05,0.0017716819363557206,-0.04631862620103934,0.23645178930756483,0.09200813032071002,0.0001420606669999199,0.016463812167195828,0.03833356417551143,0.22364079144238203,-0.03603496899318845,8.107311860380611e-05,0.0015615529527747982,0.021932924755782686,0.10487209760623807,-0.0015948009830611977,5.2563465317848385e-05,4.643656992691129e-05,-0.04190272394210298,0.08623738662448319,0.08091403084263418,0.0002369060015457447,0.006144470200465711,-0.019560371703231036,0.09002676274833003,0.06702899572983345,5.402811872307386e-05,0.0059428847985004505,-0.026378523827082015,0.2885367179812657,0.040268302074395634,2.3587433361315813e-05,0.01065214764763938,0.020175566465769647,0.07225095131320229,0.02802809815461454,9.760928510403426e-05,0.007167805083082987,-0.023437297031129754,0.07683775206142883,0.007955068116898301,0.0004807959981079385,0.0053724481530764276,-0.006640224526684576,0.02896425250148953,-0.010932140231426862,0.00013130831719333595,0.026529223348346693,-0.005978748463002623 +2021-09-24,0.0009073005308315337,0.006137731114748008,-0.031543061936099744,0.00015632552295365766,0.008153970865964682,0.007232260852048139,0.02500593409682237,0.00019904763309472405,6.939713256804708e-05,0.000564126353321691,0.015633331767035467,0.05259661637841839,0.0035849074930985533,0.00013749627822659243,0.002793636075984327,-0.0005304438420648729,0.0006027783528156369,0.0021109550984020277,0.000296995330342125,0.0008801634460987831,0.01731163996029238,0.03805394911307555,0.005726673045914724,0.0002380324959133905,0.0020611306445585866,-0.024898222302919926,0.06283359922003144,0.05769130553029904,8.652132116924562e-05,0.003705228976158155,0.011709685547044225,0.04978614103281133,-0.017992051943823598,6.901231926933884e-05,0.01231935611302398,-0.010450540060040406,0.10372902072414109,-0.009892197584468555,3.454912644799058e-05,0.005942930041879137,0.0032675645671046876,0.0027380641986984385,-0.0036771398275080463,0.0009202913455349518,0.012366741255116304,0.0005167533839102407,0.0010020861676945613,-0.004917727268647604,0.00018031844281131271,0.005607508147307519,-0.00530494541012749,0.003103683308378862,0.010376443136992122,0.0008354642614568671,0.013396876570903446,-0.0006998854382633468,0.011058577536671723,-0.038017576956717605,1.8860381787034264e-05,0.002093945399307088,-0.002256954075096421,0.005935844306165836,-0.005895774242754724,0.00011295130651726725,0.01303004777977776,0.020699986132281595,0.10463441328256022,0.04104884028678903,5.5687449739236314e-05,0.0004217723356655657,0.008947494167072674,0.008636742298672881,-0.030866342560210588,0.0020205724868282266,0.007759441143436602,-0.025420515706139762,0.1817387671127736,-0.07489051392486683,0.00011510359474183476,0.016964061482262392,0.011114642375338532,0.05786276478188431,0.0049689671229874765,0.00029744354205838374,0.004724476425853136,0.0009055083394086831,0.0059399304176910115,0.003175591105536285,4.294098999872929e-05,0.01740251600499941,0.009154326254604812,0.055354308061663964,-0.00046153200137729835,0.0002725597783759088,0.028540576271206066,0.014687416612877039,0.17465139212616893,0.0035866758035661785,3.489824550281079e-05,0.023761511749847124,-0.012582529232099935,0.15125394197259573,0.015697223211774847,2.779348174207301e-05,0.00615590689442606,0.04508725037039635,0.1432045080010246,-0.0063050187152174485,0.00010141911513699708,0.026339837465475385,0.014062065700447171,0.10018559378946229,-0.006639418966279315,3.242173279797662e-05,0.01147362824092508,-0.028239661609953576,0.08896141599450726,0.02701461889944749,7.03777184865386e-05,0.011790188305289821,0.00460962298748589,0.018542343926955963,-0.022085416408161824,0.00011367091872468948,0.0018061014691433672,0.052208793816028685,0.04861237438220857,0.05046240963165693,0.0006138643142098972,0.014612284313824548,-0.004702682192715094,0.019184414208316368,-0.1174929504633868,0.00010317704762567335,0.013513111103971787,-0.023741926427233332,0.0720061231380454,0.004215195635907016,0.0021162438095077485,0.02190958148795634,0.012105724237541082,0.1253488015245004,-0.006454515656311052,2.4834349341505122e-05,0.013686880884748323,-0.0036904439144210786,0.01060808504130655,0.0006903680750405554,0.001137399116656955,0.03304030463023359,0.0235062151604512,0.16245157135778712,0.05951981255162201,9.635725818393965e-05,0.01032713156997817,-0.014117416916920056,0.024172210784083457,-0.028096145407410244,0.00013784285325077833,0.00996797104651273,0.0009300885619927872,0.0012573722396289502,-0.12026616257931787,0.0004245847092087521,0.024651005479413225,0.010522311561859543,0.040030144711234145,0.004677018969460129,0.0020373907872121245,0.00014753396137617706,0.006934119982311254,0.02419591355789005,-0.054219537686472315,9.194745187093945e-05,0.008803635483493772,0.0033103639019255726,0.004718201653159541,-0.0017823158218318938,0.001744120275926632,0.013799578645311708,0.017731695209801408,0.06192001809434131,-0.07541148163115945,0.00011345802503409085,0.015049987134619688,-0.013513603090107398,0.032527264901197964,0.003585048874088517,0.00016841624827618158,0.01123925515808003,0.03126835733529213,0.13125237409723936,0.01582128056219127,5.814492622098589e-05,0.004659432377405371,0.024882009254805718,0.08218788728379484,-0.00010118501224741965,0.0028694303569697295,0.003039845069105979,-0.03123200037770649,0.14329802130359637,0.04323858570098635,0.0001084176971406498,0.00947382613814845,-0.06196725545559976,0.31631650114248755,0.12239922616990218,0.00014206961312319562,0.019786730258161186,0.05944374514895457,0.32568229161960116,0.08867383789460961,8.632979647933891e-05,0.036013661033448725,-0.017122012081090883,0.07429442406774636,0.021341630151377376,5.792232333973041e-05,0.007339877232984191,0.02053083164274171,0.040284444791754095,-0.0598151567165782,0.00024848407079906246,0.002299558177640716,-0.003003230209396854,0.01156243531237061,0.006089432086358623,6.458827469996115e-05,0.0018072625841369543,0.05542642721980631,0.5308069947927321,0.11874869849409023,2.694086484632464e-05,0.016560939648929972,0.012181628384565314,0.03987507365656845,0.0034947018971908197,0.00010678562969183794,0.005332463587734594,-0.004322093247979608,0.015458023817238946,-0.08358776755638347,0.00044072545138590055,0.01967706748628048,-0.0029957753459437194,0.016177563989454,-0.01924164271892007,0.00010606397811087421,0.01055263623451553,0.004010735480336179 +2021-09-27,0.013508677612547745,0.09569120068612462,-0.06224381010852437,0.00014928886535317253,0.01402452267907607,-0.05504644069969557,0.16866297186801327,0.08651320029971651,7.831050433927747e-05,0.006774728233987596,-0.013316379936631524,0.04018458478277839,-0.002758171243393592,0.00015329355536806519,0.01882877161608699,0.002034300915504201,0.0020859216788221228,-0.0016641491326819366,0.00032914332581301226,0.00850981562725317,-0.012939616345331402,0.03418379566908747,-0.05168032208914194,0.0001980609639055737,0.0028437681054163735,0.010577700038304421,0.027490469275826466,0.009598342989143624,8.401480688374329e-05,0.0013213723560700499,-0.00975158178146554,0.03802983041069155,-0.0013765561804858363,7.523857019351358e-05,0.019357204136811548,-0.007446694529194409,0.06388506758862304,-0.02803317778574798,3.997263656172105e-05,0.002907228414872359,0.01703252706251908,0.015079445227310664,-0.025282022733328018,0.0008710408242317216,0.010026573696201888,0.026747858202147395,0.06718277547296395,0.006954016716914544,0.00013921721995747134,0.010956039044164196,0.0006320765197341657,0.0004508452173752481,0.0013672864683448725,0.0006852776201107059,0.01337362843628431,0.003255619305286516,0.044219340589718284,-0.01755646940514735,2.1940379869578867e-05,0.0020805986251060346,0.005772638080983892,0.01767860381712365,0.0018620998377123599,9.700126648333719e-05,0.019530150212821992,0.016019957346254953,0.0863370581309118,0.010894547114234859,5.223070975466525e-05,0.007427790793888226,-0.046177660305587,0.0424520211905491,-0.01303230846612165,0.0021215658927531624,0.01588140671961233,0.03990599763640812,0.25845348268660395,-0.03268939849647879,0.00012705971930084776,0.00204231609979196,-0.020547738629781185,0.10645036818984095,-0.0014874291828781262,0.0002988994368592989,0.0008556670408699249,0.007264306393537302,0.04885810207137077,0.010208484648252945,4.188114216471089e-05,0.003984689699980326,0.012085506631875673,0.05425177803741044,-0.010753030832781972,0.00036714506266565655,0.0040987910439372706,0.0014418055886897202,0.02039274640941394,-0.060860172452043046,2.9340074832408e-05,0.02347495449011384,0.00926266180393074,0.08174263186586493,0.0012904591740546948,3.785897921574853e-05,0.005027650080559868,0.04625730569338307,0.11722171998294541,0.009729299518616159,0.00012711447250455396,0.02179959799026437,0.028823721682519433,0.19833279332921516,0.011283442548304613,3.356973424709007e-05,9.445967493700003e-05,-0.006693941712121085,0.02031256644665239,-0.00079768138062981,7.306249683693792e-05,0.00048823616591685075,-0.002817115214965935,0.011120073197943189,-0.023642795005520332,0.00011583653520143576,0.003789874847967922,-0.03208277677918724,0.034302271393336733,0.010746338080060229,0.0005345946797119798,0.007529380210035267,-0.011103882231189528,0.039985045880101655,0.004454009993089188,0.00011688620471675226,0.007419760532105165,-0.01396926254086538,0.04624511106638014,-0.005921159878922416,0.0019387723952945758,0.015530636191060437,-0.0004456509229505618,0.003931045692643236,-0.017622065055271398,2.915203748255537e-05,0.0016261238687723034,0.01678625508833375,0.05186211039151611,-0.09710072086897441,0.0010582174115643858,0.026987685616538137,-0.0006230414517394688,0.004981416909847299,-0.05999753264664051,8.32893924872036e-05,0.0038796306322343146,-0.01836918001320447,0.028580375820849175,0.020616492523022528,0.00015169358706899506,0.009345608597528934,0.009194218032977566,0.010690489039567892,-1.599309781888779e-06,0.0004936522714419915,0.010216918139991201,0.002019717747362108,0.00948819617676957,-0.001910468757093256,0.0016498990303031524,0.017065542595093127,0.012625540085922078,0.04173663722129864,-0.016546598635171387,9.70561100551673e-05,0.014454494110366266,0.00770298150477167,0.011053656973924835,-0.07001901869641865,0.0017323277558465458,0.011504254887495194,0.007819492060213,0.027159735014332418,-0.007023058868944871,0.0001140693721381767,0.018987184607923552,0.026070750165968472,0.08179894143615542,0.02433633582748728,0.00012920110275362767,0.00922876259742138,0.01676576922753973,0.08215183457977941,0.0012035400987100045,4.98104130018102e-05,0.0011572616281092585,-0.013397688094882546,0.05426316049160477,0.0031935176182991054,0.0023401453654568524,0.024439121227262852,-0.00466534609611865,0.02246086376047341,-0.03667601632740981,0.00010332323239154248,0.0006991686689040881,-0.026098104949869763,0.13055351420768288,0.007834195859612765,0.00014497101884253374,0.004611125600431791,-0.011957449331704846,0.07361695922866629,-0.01882356623788536,7.682620365765275e-05,0.0075611273714670186,0.025066036918786627,0.1097970385512202,-0.008681310333329327,5.737760857042594e-05,0.04958074206706243,-0.04955806703269194,0.09547543751483202,0.059665073363483194,0.0002530766608520452,0.006687388295658158,-0.027673689501034854,0.1104131046683398,0.11149052206491065,6.232478914615658e-05,0.005435254541092705,0.01792695534875804,0.20178426449701234,0.006135963439920352,2.292189538506256e-05,0.004866286701072681,-0.020076395196137454,0.05751688322762347,0.017906933669878184,0.00012201110390470222,0.0014383193468645026,0.006564665712842329,0.028029344386397443,-0.003523535800753609,0.00036917105873838704,0.00758250417534788,0.02080652400639377,0.0929840037786017,0.0013336356290728937,0.00012816312415959627,0.00486003646845667,-0.00029164828384124774 +2021-09-28,0.014612639560224738,0.1005103888856798,-0.14680554329870737,0.00015374616886254058,0.00836201073415494,-0.0012954460559269634,0.003760863610984559,-0.0014194653393983152,8.264988922383525e-05,0.01043287430970627,0.0019265527002185474,0.00687115860387101,-0.03841516173872966,0.00012970243357261836,0.00020537140477503726,0.009959307176570854,0.011298286459886694,-0.0005529946227639225,0.00029749824092715045,0.008314641143838473,0.0038910804238340715,0.008790866637511347,-0.03330072642763546,0.0002315987909895451,0.008310338664144304,-0.01055891045342373,0.03174656962912058,0.005973009992397587,7.262213994834105e-05,0.004516253399987039,-0.013286137713145674,0.057995302929279915,-0.09402310318114679,6.72195783026169e-05,0.006328431264778948,0.018144923504496573,0.1491272145937278,0.010132720331351782,4.1725048481428905e-05,0.005646480836287045,0.005199993437485763,0.004682677323007519,-0.0595325689843127,0.000856354038190153,0.013438512833243516,-0.010562035301010466,0.023847925234158907,-0.0483979516452972,0.00015486700502371023,0.005209453244692993,-0.014349764884860113,0.009288508942680315,0.03198678515614643,0.0007551324615624644,0.005277774485064689,-0.012871092628591936,0.17231819976038615,0.045400346214549143,2.2259072108492644e-05,0.0021698904620070436,-0.025192043858422174,0.07813391035885,-0.07928017890464575,9.578001079238589e-05,0.017785362911391593,0.001541684446100613,0.008556462932872549,-0.012179695014429434,5.071810703665596e-05,0.005480352066062103,0.03606736939634313,0.03402798461213932,0.028324101744982417,0.002067289089998043,0.011210897991611964,0.03199080035468013,0.21703645631892304,0.018007486763194757,0.00012129545374700985,0.03698058848991129,-0.0039150104450855336,0.023707095405212392,-0.051267158018506856,0.0002557188893664933,0.022319511654318065,-0.012152952712080459,0.06552688802274488,-0.026612171538987216,5.224241213108744e-05,0.0022888246313382855,0.001908136759369485,0.009951214099389432,-0.06864122897974595,0.00031602412344959965,0.018433157715123116,-0.04890536692537071,0.5967583479105588,0.0009925416242294073,3.4008560521739304e-05,0.03563698719708567,-0.0090344009852715,0.09418166711584944,0.00717939309710749,3.2049015851764614e-05,0.002869943573371889,0.020225406144825746,0.06051919600735182,-0.03417801116309087,0.00010765317858432943,0.013801128526503184,-0.047410404244558335,0.23272858817697317,-0.009636021312990694,4.7056140027126726e-05,0.015334716962650685,-0.016034535216402728,0.042944431159429065,0.0030747751794702695,8.278028240212999e-05,0.0077829267184538935,0.009135440195163401,0.038699649481732025,0.004602643664492013,0.00010793717394679282,0.00025113953618088555,0.003326820962937027,0.002813739757951593,-0.006333007525540736,0.0006758044755776939,0.0006733855541279526,-0.025756990212261775,0.09551949951110868,0.035786100471314065,0.00011349822869109216,0.0014077073646318154,-0.011036480851355831,0.04167948399738719,-0.09356921143780297,0.001699524599748136,0.04268569040518418,0.02770135873889887,0.256283464765925,0.008627730922880317,2.7794744111052152e-05,0.011536040066139463,0.011094230537220074,0.03178130010098274,0.0017922878288528803,0.001141292062361626,0.022214871930137742,-0.026239530225883788,0.17200339952303187,0.04611936543783547,0.00010158852815963277,0.011609073583050838,-0.02064353759174378,0.0320061152820825,0.022166651953778795,0.00015222870173254167,0.013184489388146453,-0.0015342337532658294,0.0022313856931612083,0.005656137634031359,0.000394657901797632,0.005438457560118392,0.01931909354337268,0.07163199939168652,0.008533600670311085,0.0020904029671501754,0.008676767441240029,-0.022804847539196225,0.08372720454302031,0.05630857944328369,8.73878294005015e-05,0.0067871932935406176,-0.03603285823707523,0.058312205606782255,0.020169457290107058,0.0015360892022139693,0.02497203522028159,-0.02050213281644225,0.0698908573945154,0.0007522578320288967,0.00011622370366920563,0.004213038994529086,-0.039536038228097425,0.10033594338212547,0.04247873073920984,0.00015973385967467155,0.000654722107190665,0.008760027684065764,0.03743704378135193,0.0014662071876431885,5.711074905855423e-05,0.01552735128406778,0.02376887380135147,0.06797179273997038,-0.02442232117819945,0.0033143467158294844,0.005030908851077599,0.019837178861820893,0.08452782003295645,0.03203548241559352,0.00011674030165052334,0.017980833909016412,0.036082820896515315,0.22473919775109483,0.03912104730209012,0.00011643470328868134,0.015427257866934847,-0.0517857286035201,0.28681354424573163,0.08310837596651904,8.540024831177472e-05,0.005305796971785284,0.007577921651801635,0.037094941425500544,-0.05333612456150094,5.13431861866219e-05,0.005877624254061884,-0.06580035206747972,0.12086843143028636,0.09717012345358549,0.00026542677194475327,1e-06,0.010375884877724045,0.03880152674567021,0.005781891746407144,6.649526269125592e-05,0.0007346954514365789,-0.010865815898496169,0.13132521238596057,0.005862035481313137,2.1347425965080626e-05,0.02862089483691972,-0.010425962205222723,0.034247260181363856,-0.009182928226196737,0.00010641412481751188,0.0036143868069016235,-0.011944124455429604,0.04786837655566898,0.012877063828066228,0.00039330873537070805,0.017529215883876233,0.023319964094480432,0.11130514330392535,-0.021733634968090727,0.00012000088259922767,0.001404185192283341,-0.004039240797003198 +2021-09-29,0.03624281809919877,0.2430773115702336,0.009556865599543598,0.0001576754644226374,0.005972785736826218,0.04372259258850876,0.15908868788562197,0.033372084004434845,6.594428028866847e-05,0.020375501323921342,-0.045011884229198856,0.11711501814719216,0.024618967125217165,0.00017779183308328915,0.004164169490711354,-0.0017997855646467555,0.0019264218553458688,-0.012857392054135547,0.00031530962193224404,0.0036572639784867448,-0.006728297509923847,0.017557211222631788,-0.021160363825654165,0.0002005152578447245,0.01858315760511831,0.011990064494043398,0.031918044489754674,-0.026139582320314037,8.20223075527542e-05,0.008071740946131922,-0.03599035677865719,0.13486326078432534,0.004412527787243373,7.830371213228744e-05,0.022587661741259594,-0.02209150410175801,0.22246227341143016,0.018750794892674318,3.405395276042279e-05,0.013681963192261054,0.0214077902693847,0.020684616548103107,0.006691192076402424,0.0007981217637875139,0.0021235818160302657,0.008646919431343976,0.027676828922438126,-0.0016184075986286877,0.00010924635848691972,0.020842103958911597,0.005334014547467573,0.0041038138703490675,-0.008359034023759484,0.0006353176181912655,0.0020959335187732335,-0.011665640711330397,0.1592158469185135,0.03110719176495501,2.1834592677547432e-05,0.0010053007843471343,0.048028921361865165,0.11851473984090781,0.0811087815128445,0.00012038752988488936,0.000581185936312885,0.015958700516753528,0.10754719022258317,-0.0002610673415953681,4.1769595987035446e-05,0.0029261130464333096,0.020629695842373733,0.018706556403871734,0.002038691323786345,0.0021509085688749727,0.02294215615905868,0.054152193850475865,0.38168751477829016,-0.010334100897321678,0.00011675089254297051,0.014804845042077982,-0.022525677476249166,0.11864177262360993,0.00012411736400532293,0.0002940007691837818,0.011018783563283554,0.0013396410514809303,0.008699712295735499,-0.10768491661278869,4.337550188598647e-05,0.016123356502128275,-0.05882799403377006,0.338973805595208,0.14036831618759987,0.0002860254700716123,0.01045168673748886,0.06176062924280759,0.9210660930778485,0.05839399845265203,2.7826023549246247e-05,0.020505886688659467,-0.012319587468646103,0.13277929567609975,0.008220487529736184,3.099898784581376e-05,0.008704317321729554,-0.012848202783355803,0.029749611378173384,-0.0005884234469773013,0.00013911816525974684,0.010071870171106074,-0.047209887081929615,0.27427126770977805,0.008651501207032545,3.9759876238038145e-05,0.016001779407820424,-0.0006896476692925505,0.0020147462387638464,0.0010341927771988588,7.588995607261296e-05,0.0008307691095588376,0.008296102484636388,0.030081718853216168,0.013199196481780001,0.0001261014429196457,0.0020793088795411545,0.050215291224606856,0.04619476736737128,0.046488201074970044,0.0006213249059244746,0.01179150578874988,0.021207086013202602,0.07242265166643763,0.050769217921165094,0.00012325160543663431,0.0032875763903022497,-0.002877599467335586,0.010192643379413948,-0.0047499916894649195,0.001812018760376875,0.023807287337757922,0.017140335147152203,0.14510005141864254,-0.10884339685575216,3.037623461202518e-05,0.00016890070553416845,-0.005804968122912032,0.019615155104133898,-0.14671186441356554,0.0009675632450236077,0.016168708789530743,0.027715340985850375,0.2218034682202472,0.06552795649780566,8.32103860110833e-05,0.004340982731824781,-0.036638158712011364,0.04866198989924871,0.005716847284692596,0.00017770070944468825,0.0019432834668403507,0.021312256758412872,0.033161971719276526,-0.014344961105252931,0.0003688867098595217,0.0062016529929831265,-0.004220686249086753,0.017869606093493858,-0.006287744388308188,0.001830705268199309,0.0004852323626726284,0.018816967235503333,0.07919196015268991,0.018243034892834627,7.623579023286056e-05,0.0061709614060279985,0.0023558924134564996,0.0035611462830122025,-0.10645288588409038,0.0016445339050135588,0.01212325686724666,-0.0038350257419981445,0.013525286499427077,-0.014053262107589316,0.00011234088649264624,0.000876688311923057,0.042711099546864806,0.09805649358012215,0.04788768906555845,0.00017657319234642933,2.1238829660769044e-05,0.007941536714700333,0.036126802860020506,-0.002427445369347641,5.3652374070169684e-05,0.008533232304678407,0.003507090245924148,0.010425107350103609,-0.0005209204539344716,0.003188485627651696,0.03195904096717373,0.030995792041987946,0.13274947518446928,-0.09000737993056825,0.0001161476684925068,0.006844972740405662,0.003769938150391697,0.023023635963507427,0.0007846043352308144,0.00011874657709033605,0.008932865009107475,0.0031344147243407843,0.019494689806677488,-0.022437498732768683,7.604818060058521e-05,0.0016598699186614863,0.008262017011268736,0.03393770966433843,-0.013353905289855496,6.118584324946878e-05,0.011815795656929489,0.036377196525202625,0.054203023715987564,0.004854374463103467,0.00032721643299602317,0.0011185865880360762,0.04457007204946051,0.17933474404793262,0.18326233629969785,6.180068299319104e-05,0.0022723135396906704,-0.007249617768007147,0.06575982363859745,-0.060427490273032534,2.8443678091536425e-05,0.006397739231056173,-0.012311229008858485,0.04480300307135712,0.019729477179800278,9.60513005149801e-05,0.00192990121198596,0.021290094591422788,0.10190303421484632,-0.08548437734599691,0.0003293202575455208,0.013896126448708392,0.00016360244136909817,0.0008087777161718826,-0.08980521784910579,0.0001158596999134612,0.0011401460309267654,0.0061540131036429725 +2021-09-30,0.0298744041027574,0.1968149944266855,-0.0041486492172385986,0.00016051944628109243,0.00613656089288815,0.03236667719102799,0.1144340296059771,0.013630187352203728,6.786618737124202e-05,0.00876734423654505,-0.0006046464007257498,0.001867782349731375,-0.017169755818397116,0.00014975192350083618,0.01356899664987627,0.006709375068626355,0.0069405770101139,-0.011165606583866733,0.000326252876550594,0.006251572495431003,0.017931632026872514,0.03843162386368447,0.011734132605800482,0.00024413433075397224,0.013651935817144412,-0.0086571884380227,0.022688441267577856,0.005208861958363718,8.331418501883525e-05,0.016636854992910757,-0.0015361204290926733,0.006128294842683701,-0.009150594707777904,7.354877918080384e-05,0.009775474079924785,0.022196932722510408,0.2034422345770613,0.035304325402126184,3.741540605356101e-05,0.00473772002943774,-0.0059863058798675485,0.005286224953620917,-0.01780665575232124,0.0008732891215032715,0.004547526707697065,0.008053302931616855,0.01917850671406272,-0.04534166641212856,0.00014683214161562128,0.013560138250100063,-0.013879856664445706,0.00958125933389949,0.021526576131949925,0.0007080872007070386,0.0050620624262757395,0.009919611698277073,0.13107156744248652,-0.0428343942545346,2.255324140210558e-05,0.0020159866467278588,0.008037634116475687,0.02308227456624687,0.0032214305409705253,0.00010344289533627593,0.02231145352006916,0.0030543948857593,0.020230080965584252,-0.0339958847033109,4.2500044157315984e-05,0.005706617440610265,-0.025818519245760757,0.022404040323220277,0.0075235621606319705,0.002247646238127339,0.00477587717964887,-0.008015269278680627,0.046661910615582794,-0.10159550479230883,0.00014135387149005667,0.030898931648653434,-0.06490219001754116,0.3543696925511569,-0.02479527119055068,0.0002836031248285111,0.016486991698925417,-0.008483568459353144,0.04808862294845337,2.70259419154212e-05,4.969322514622303e-05,0.013827367102163455,9.279491290639423e-05,0.0005294111762752457,-0.08826952113050221,0.0002888802628559195,0.012383532475471012,-0.012902734573270763,0.17025282447112805,-0.06166195326913833,3.14497841490384e-05,0.0373098255762994,0.011558858990607422,0.10346259631411184,0.018062197162750062,3.7326159048368234e-05,0.004017520166715168,0.005757028114012052,0.017962324759544145,-0.007315676448209919,0.00010324251178208358,0.02094812323747245,0.02834323504718804,0.19827084653548152,0.01834556161929916,3.30204459011676e-05,0.006070984728648394,-0.01282966509198942,0.03940352995719366,0.002137174532699069,7.218676375793595e-05,0.0049692183782908475,0.01653548423623578,0.06453087929878033,0.01132151976477743,0.00011716500903809301,0.0028978935412414886,0.00951766295868807,0.009140035729842608,-0.029964651242071757,0.000595193239093998,0.014535746692930665,-0.028737412444855497,0.11275588890389818,-0.03693028755169319,0.00010727399070334205,0.0031491202848176287,0.020450154588276998,0.0685812080838431,-0.05756159393756337,0.001913862085261236,0.0006149921948216974,0.029192490020359268,0.23283689219298326,0.007929689940326244,3.22404831786576e-05,0.004993071774860559,-0.02885244496562367,0.08730996313837042,-0.09310180135888235,0.0010804137091313616,0.010573819341844058,-0.013502984259703543,0.0961703165420962,-0.00017111897318812215,9.350059167865611e-05,0.003948405897594658,-0.008779525350311136,0.01343562100580049,0.000687262588371237,0.00015422638490268807,0.01794894997229035,0.04754230238642501,0.08449863601891901,0.028327602287682458,0.00032294935774517604,0.021363317508755354,0.006260161121352745,0.02129254608834385,0.0030388359694628196,0.0022788107327979747,0.005790372821820974,-0.029631716470979192,0.12078250104094052,0.07445469408932162,7.871240127954487e-05,0.003970704319207551,0.07138285693083189,0.08928723100065478,0.09507073718209834,0.0019873838791073335,0.018978471752751594,0.028586619032002568,0.10277957568747513,0.020009954704012897,0.0001101975680142121,0.010419300777738758,-4.568406696643481e-06,1.2751715186678873e-05,-0.056879271051116474,0.00014523006492354643,0.009114610334814411,-0.011196061906587888,0.04414956430482928,9.455519895041288e-05,6.189460477784613e-05,0.0013340581766729566,-0.04772742867327835,0.15092033682258152,0.03410459972063206,0.002997356011705203,0.006563244017424816,0.021935504354918207,0.12100577223082457,0.028214036260175997,9.017416044368024e-05,0.0018769195994670054,-0.0032157068288717274,0.016424210819111818,-0.005962498819665192,0.00014198835292171123,0.013713821724579581,-0.033437116084740565,0.2060117149251764,-0.007931912046470247,7.676894888358665e-05,0.03949279730059888,-0.047093803164649534,0.20381375143489214,0.007274801797749555,5.807345658496261e-05,0.0012336202575132266,0.004458435010692701,0.008189052268470902,-0.0027380439695925463,0.0002654472261293891,0.01171330221744649,0.014527598444815437,0.05928788444511252,-0.006698832159625789,6.093155324710514e-05,0.007986525843746964,-0.024274923064149297,0.27067135670088377,0.031879065402497644,2.3139120505084037e-05,0.0002083706559762646,0.017802823729447637,0.06035502412067598,0.001760091668402655,0.00010310611628331239,0.004559831343590211,0.03135562318335613,0.11540966906258579,-0.04113354676015956,0.00042825378682462387,0.0036973183351535002,0.022012513349831973,0.10471756929906129,-0.023580073723490663,0.00012039872158229841,0.005687038949039766,0.00216491778857283 +2021-10-01,-0.02290485585599778,0.12805569756903895,0.05138081763018916,0.00018915387414383448,0.0008684720633523827,-0.01682118550904452,0.04555916488251447,-0.058924409843122236,8.859136071562045e-05,0.03299557317417008,0.0006953181055475494,0.0025948611730733447,-0.08876779804052605,0.00012395573218124082,0.005125885695542164,0.0071713495227083935,0.007115817163834335,-0.027381091301055486,0.0003401292376350577,0.01269379573669404,0.012851477205429873,0.032400271641107314,-0.16447446753986675,0.00020754017148841923,0.028699617373720936,0.010284781764445187,0.02706846955033344,-0.019194208333162748,8.296179098393138e-05,0.0035783766896704036,-0.01674854711600927,0.06046714240311123,-0.022660729314205985,8.127323553483612e-05,0.005039980331034727,0.006749304567441641,0.0691841210493228,0.004136320824252358,3.345424346091922e-05,0.010530418449763929,-0.018517065993694317,0.018400753832645396,-0.03164784332973131,0.0007760350658144587,0.0049600188138632685,-0.03174537716550657,0.07066542994381103,-0.09695317145738776,0.00015708523715128952,0.004985989558354352,0.008941060218841501,0.0063108085689068515,-0.045755112526595025,0.0006925137033966097,0.007789680275449259,0.006714456972407253,0.07728006440245576,-0.035482864383508075,2.589203641918167e-05,0.004207528536058763,0.004409861477567888,0.01173050978942845,-0.002484221655607436,0.0001116758069319344,0.017240182583117283,0.0028910993134267653,0.01610927783783313,-0.01840092630114658,5.051830342017513e-05,0.0018430050525836217,-0.002218144703417844,0.001620801695423515,-0.0007714341642879864,0.0026692113614059966,9.441216100004651e-06,0.05036116096199675,0.29080022474503153,0.021600708585195586,0.0001425125474109309,0.01210357425190368,0.011337419491574142,0.060566305687887206,-0.3608621026448523,0.0002898620529980757,0.0098416930350966,0.014824230497620654,0.08496301463163543,0.015005618284564764,4.9147700328672125e-05,0.01796403965198033,-0.043429894136661776,0.20586734450108315,-0.027456299199356056,0.0003476867301208706,0.00464599725456985,-0.04749509288181996,0.6189446352360983,0.03634957785707625,3.1843967322709136e-05,0.014586326506964165,0.01821991449764574,0.2077303118050863,0.03832533294908943,2.930408535702714e-05,0.008291471130797484,0.03429151562162828,0.09541072696422045,0.01308994161394238,0.00011577431803525448,0.025844601631425202,-0.04399675050386094,0.2861799460752164,0.010737644709430878,3.551188946995037e-05,0.04532070272166458,-0.0023693091107835017,0.006753336088620725,-0.08340641647167171,7.77822932461247e-05,0.011053895702423204,0.017091823772913777,0.059244509982284414,0.047601122017671305,0.00013191339271120077,0.006124117033863485,-0.029670903454319827,0.028589731951596913,0.024004136634993387,0.0005931933151977348,0.007326826254965248,-0.016705612020808606,0.05925466954018351,-0.05549208118961496,0.00011866586780049523,0.0013887283818487433,0.005077335805170128,0.018087554934330778,-0.06230471131304007,0.0018016698018289252,0.006068138079153988,-0.03203389999478679,0.2960747096599232,0.012579066867311086,2.7822150699610938e-05,0.013434680111881253,-0.03573207395934974,0.0984651016358193,-0.024489516813730322,0.0011864437707806525,0.01004900454196893,-0.014949318784126357,0.08913335135598262,0.011525592588452625,0.00011168807616426612,0.008918650531148284,0.028932635770483606,0.036326090678302815,0.06325071472158096,0.00018798133232740137,0.009752646731555258,-0.026731365776045384,0.044138394886071415,0.04950812274877303,0.0003476230187072158,0.01052688875345859,0.009713955874857669,0.03356871120506862,-0.017559040873829812,0.002242909754644889,0.008861481267602686,0.02826318549202477,0.10534934718517971,-0.09153996525497737,8.607551512384125e-05,0.0020690761413544147,0.010744227940738421,0.013235425094722439,-0.007766987381818347,0.0020179690946040213,0.015115094139183249,0.007908390714360293,0.022907085459986966,-0.12227838791811346,0.0001367836907806581,0.008733543566381884,0.017178325864669268,0.04158515785405524,-0.05122683416466581,0.0001674568272704895,0.040233633204832614,-0.016631069164658386,0.055508983727144266,0.0005829970058917142,7.312583168380188e-05,0.008568891049631915,-0.0012211394592382555,0.004594330135520526,-0.03093239495857701,0.002519191160950443,0.01959601928467953,0.012608877025390753,0.06729575621764806,-0.0015320026548071906,9.320287347800318e-05,0.00436925737196078,0.0020597490293501387,0.012232177763753828,0.00017720660310671895,0.0001221156449299769,0.006264156413120258,0.008331730993645264,0.04564399976576754,0.0001755157333761207,8.633765400970286e-05,0.021347446825446682,-0.01382922627443997,0.06655126530256497,-0.0037923662193351964,5.2226264107618795e-05,0.007889773254443296,-0.019497721932737144,0.03663269204191902,-0.058824688735927166,0.00025950422407045124,0.005733564105261071,0.011426425971358989,0.04180331539780837,-0.010163894291910986,6.796949753217574e-05,0.0035656928045359805,0.020441601413679726,0.22393830396550488,-0.07302651430681262,2.355145900004588e-05,0.013348372574133602,-0.0036665985315821156,0.010346541977027782,-0.0016070673459610803,0.00012387312693531424,0.004645539741294998,-0.005368058814427912,0.021633478454747473,-0.07278963555440254,0.0003911279763272899,0.0034807561328358866,-0.012519817423998051,0.04989143654894056,-0.04090113614062424,0.00014372879437128116,0.004608852743676047,-0.0021769150246241124 +2021-10-04,0.03929396788421013,0.2942384725184328,0.036542937435684285,0.00014122546469236047,0.007918331906460676,-0.040209008363369936,0.13415222836872115,0.004446828460551368,7.191773451464283e-05,0.010149908337634087,0.05243296474002292,0.17160286244892878,-0.001174427018655317,0.00014134390690013498,0.010745636670079172,-0.01466570018033372,0.014909795093120846,-0.00025649755917023725,0.00033197011093033003,0.01837166398229932,-0.008910790654129534,0.019768147050799968,-0.010190308401926427,0.00023585660885114035,0.00229932725313965,-0.02206798876731759,0.06552609677506513,-0.09312471089439703,7.353518598138499e-05,0.005120116959021178,0.04047137329682365,0.1400037968734823,0.08414813339516246,8.481994426493006e-05,0.008750649315604467,-0.030579457120143726,0.27402128442352935,0.020691949314312497,3.8268733356086666e-05,0.004722324831502644,0.012772274528893086,0.010098525649340108,-0.025128222435166055,0.00097533780566389,0.006890647795429375,-0.01961277031824075,0.04572038722864575,-0.04680972335896001,0.00014999988593808542,0.01514273389302063,-0.017708636917576386,0.01130075648291163,-0.005777201983284947,0.0007659527422581486,0.0023866107626934157,-0.018299977543803646,0.22740920981000146,0.013151754370054365,2.398089000606858e-05,0.002548182667090312,0.03459653282337642,0.1093293521161452,0.021713647601608474,9.400410966180407e-05,0.007730323200013619,0.0087641688478335,0.05101988487387569,-0.003438114695039901,4.835407502481634e-05,0.003088827462260836,-0.00821494789710608,0.00726200225489908,-0.005859750461705942,0.002206334756136172,0.0029336809409948126,0.017394606399010863,0.10862724670694499,-0.06767553355741923,0.00013177345771710734,0.0027611563186033523,0.03888599514470432,0.1978630265989054,0.10374673638218752,0.0003043244190178929,0.003366157961888901,0.00666232964469146,0.04080211730177515,-0.043603748420679794,4.5994338086621274e-05,0.0018242344616335915,-0.025407680301623173,0.13273732210819292,-0.004910640409051771,0.00031547051287364724,0.000995339879626626,-0.03258162586926845,0.42713071352863896,0.0006925794817428209,3.165499013317677e-05,0.0028459723952623446,0.002883577469229315,0.029382226284709434,-0.05202909259282442,3.2789034861720844e-05,0.008371560364578562,0.052288849719052774,0.1413277361059323,0.0216589135790802,0.00011918029106149437,0.01259671115935901,0.01237146975900452,0.08847861964931919,-0.049216165989538624,3.229797807308559e-05,0.007922489820487965,-0.0052919369620891945,0.016415724115017308,-0.010504572023755281,7.147135236886422e-05,0.008644009436509933,-0.003516749591690184,0.015553470656637015,-0.06611068868819568,0.00010338623670045026,0.004145378437914003,0.02717327018668444,0.030783915707330297,-0.03129088649684084,0.0005045376816166754,0.01843160513111458,0.018254312856347307,0.058544164210989846,0.018224774368208674,0.00013124050362918745,0.006951593081565073,0.029348721241961414,0.11053203301923209,-0.11190047528895483,0.0017041985830697594,0.03251186073519368,0.024270434406049236,0.22011886930166616,-0.005430410904943214,2.8353225481295213e-05,0.002553859861049428,0.03204225871595544,0.08763803549017399,0.0596834772921459,0.0011953683663264833,0.025800723791777537,0.0066764189847210165,0.04400850089424758,0.0011222042320845713,0.00010102588221618081,0.00048179839221708224,0.010192552291630295,0.014359444415686887,0.009579884706275951,0.00016752927060557723,0.01340998220445911,0.007414510204141925,0.012240546108577896,-0.01579237799382729,0.0003476847056380319,0.009018082070298734,-0.0003224548451235963,0.0013407457584015806,-0.05476763867447817,0.001864115494781695,0.0033774005151554335,-0.008205702611498692,0.03239778935107606,-0.0013746562564949908,8.126260990874175e-05,0.022889003033290268,-0.02346068109990708,0.030067679678385785,0.0031092712766360928,0.001939625535769863,0.004625798939446819,-0.003542261558949321,0.011751052272944195,-0.08638112274423879,0.00011943177984592449,0.0034462777013222,0.0012694915836328356,0.003218506719503697,6.315604702850221e-06,0.0001598953308207169,0.0002525582483170545,-0.04320459763713365,0.1546814861508429,0.03174294783717764,6.817192443165604e-05,0.0033915609249158957,-0.054871548136988496,0.17212463336202144,0.05780042908175233,0.003021497527833454,0.007494735439611517,-0.005275593511251894,0.02328414345598636,-0.022235953092601814,0.00011270719197916121,0.0068668712431235596,0.0076164050713234226,0.04728110193229226,0.0013128338605136757,0.00011682162103475956,0.005065038943974769,-0.01600122655721545,0.08369353362306316,0.011326099343320272,9.042948727904032e-05,0.014592747452884258,-0.008261954949588797,0.038322841993211405,-0.12686414707345925,5.418418044423671e-05,0.01734543534264802,-0.0018468306051132983,0.003457769777278415,0.0007577894469737762,0.0002604116342217721,0.0021713335294319,-0.011716108554023958,0.0494411658011838,0.015427750881051071,5.8926284757488935e-05,0.005733249583237239,-0.01644237729464498,0.1937786066957607,0.023958724340165258,2.18922332190302e-05,0.000991733741513686,0.0009146599227638408,0.0030193266302302882,-0.043743612687713596,0.00010589087019781412,0.005597285931010138,-0.03084299768563327,0.11500053662810068,0.06162827867868109,0.0004227510406006996,0.003286990746660906,-0.024440416590163622,0.14517943922276771,0.02184159032967925,9.642181133758534e-05,0.006962054798454279,-0.0005085382204639725 +2021-10-05,-0.012009374117563136,0.07583579573284999,0.012958421664374591,0.00016746833790447956,0.01451640419588941,0.013289628245332486,0.037306141184911344,-0.0640033279746519,8.547577153164707e-05,0.004586592197193699,-0.05349330969964822,0.165084679486412,0.0945745125467816,0.00014989595130651874,0.0007627685202098314,-0.0014073547856625808,0.0014371450057452681,-0.04094864236270967,0.000330499540922095,0.0014505471045358946,0.011852935829155236,0.025887708395503934,0.010600127024110248,0.0002395687117394788,0.0038740051929427102,-0.024134913123941785,0.06392755350675015,0.019748773761721218,8.243362443564843e-05,0.0027555598283379584,-0.055809894318172584,0.17904648470185316,0.09183016941578251,9.146085492383509e-05,0.0013078115329134524,-0.00761067762826124,0.07157903806861345,-0.0008383720461434146,3.646163030572672e-05,0.010584673551287267,0.004792925301281736,0.004252840414198078,-4.3497947750835325e-05,0.0008690932177485192,0.0011440601177092652,-0.007955315440001928,0.018996538964752598,-0.0374029178083344,0.00014643497195141825,0.0009540275586327627,-0.00984070879071627,0.007072078520480747,0.007904426512329551,0.0006801483745792619,0.003200322848615126,0.00683319971623583,0.08859256442172922,0.017494279508133224,2.2985271107257775e-05,0.0005413881412619349,0.014760354636865005,0.04277230172462795,-0.0126989458124052,0.00010251447884453579,0.023863421601596345,0.00673789556057284,0.03703575754820615,-0.0016857975630098188,5.121118920684412e-05,0.002736654250016217,0.030928770521734567,0.021240944530541227,-0.057252692570373916,0.0028399572593370776,0.00205034127923906,0.015836304878546353,0.12435988812854011,0.002156720457359832,0.00010479139920583234,0.004810965016438674,0.009629936955042953,0.05293387676490397,0.018382297817490303,0.00028170721741338294,0.003329742012941877,-0.02477585893150467,0.13217746915584375,-0.1648801378003353,5.279979587279498e-05,0.009976478290919829,-0.024935749470630493,0.14146164991430094,0.010079687900181173,0.0002905163066330211,0.004437707537656058,0.03211729953353385,0.41629264826365936,0.012954661275431248,3.2016253650598667e-05,0.008586584646534624,-0.022691513677626615,0.2836862234565339,-0.004822118374216338,2.6724336434187872e-05,0.0060696767135091055,0.036490463722496626,0.10529420570004416,-0.01697535534496495,0.00011163430307704655,0.005189026036131905,-0.06122338117151194,0.44092078635644766,0.026511812082804096,3.207370374403618e-05,0.0139887456816341,0.011200532026189232,0.03275030518682863,-0.0011177292478641576,7.582295102319117e-05,0.007918100639266196,-0.012120358089841604,0.040112314693181994,-0.014626366748375662,0.00013816127195888733,0.005124550664125521,0.06708612722888953,0.07656233954616526,0.07243093116177389,0.0005008331730890467,0.005126396908091408,0.017425214859884842,0.052969919014915316,-0.008845583303982569,0.00013846335228743698,0.0016126168542418742,0.0007573345636375655,0.0026336046138265103,-0.01565208199040735,0.0018456798809039895,0.004715136284054938,-0.017462074945532334,0.20547274587774425,0.00035110667320381903,2.185364170102152e-05,0.00176828482893569,0.01901021681216467,0.05368141451683326,0.026155938210459626,0.0011578022487566226,0.005808615440124723,-0.01260958943198719,0.08596743671131524,-0.009367710969397485,9.76770673354875e-05,0.01337122246544322,0.016653078778246583,0.0251129079215975,0.018590362462074756,0.000156510298057589,4.1938549701707375e-05,0.02871178515835411,0.04346964772981249,0.0019171706310173527,0.0003791211287332012,0.006576973697099475,-0.006888965051327587,0.030946620195122083,0.0012730437027790318,0.0017254051809736384,0.012938972473464927,0.018484515902338673,0.0654123742917288,0.024097523696478877,9.066476463081754e-05,0.004793948696170346,-0.007266264355058264,0.009373568221607068,0.002358062459502019,0.0019270076607705512,0.016354317543622966,-0.054452409814893604,0.18946599276140122,0.11137447362819276,0.0001138680467797793,0.0008418646080278786,-0.0007409941904983253,0.0017940071723432586,-0.006652604090767525,0.00016743683425493388,0.026643504549405193,0.014076020989944342,0.05552258350635643,-0.03798397291228602,6.187627555622884e-05,0.011460336810429112,0.03820347184910317,0.09753708458591777,-0.01357856203079611,0.0037123688520907605,0.016323579261543285,-0.05089250746303443,0.22787336649440423,0.1590956683787526,0.00011109662129950557,0.003111235968068152,0.02570165793884292,0.1427436936681507,0.01525936225691353,0.00013057649089833238,0.01284564730020065,0.009354957045149586,0.0546111678993303,-0.030606750462688632,8.102313293331942e-05,0.02108047206453047,-0.032361603428115504,0.1469852249991201,0.037886498251881166,5.533548807955627e-05,0.020653025931351404,0.04826467131856118,0.08110806322311802,0.07776591710175652,0.00029013138823902275,0.011892712652441538,-0.0008561607492462125,0.0036481692583856676,0.00023594678153369015,5.8357235482275976e-05,0.009451079380413077,0.0060198004288648296,0.05792304108832632,-0.011530465227500846,2.681402585611681e-05,0.0038852618456638455,0.012933174547672047,0.03869517236385683,0.0037102366946456145,0.0001168307912264324,0.0032113269086902077,-0.015846751784848158,0.061955950615032215,0.019179932233599904,0.0004031672082863908,0.003381580868570985,-0.006530530192657184,0.03958983996193802,-0.012429361140380457,9.447926183888776e-05,0.0047217060601415575,0.000287621002471608 +2021-10-06,0.02449730773855074,0.16510401487243315,0.01319449236054147,0.00015690880236293324,0.004921010692845426,-0.06673368675280293,0.22019959741981243,0.10155319389722826,7.271753094152051e-05,0.01410764749477792,-0.008867540566510727,0.030615447513259165,-7.269700997281625e-05,0.00013398610936098983,0.01980250649056417,0.013341228281680755,0.015595334295199815,-0.03376536792574368,0.00028871475751342105,0.0036377626041378,-0.009864136061719079,0.022074683749581374,-0.005959531231226685,0.00023380959842325783,0.024220711660570993,-0.001477044780087169,0.003625274789419555,-4.46822881128792e-05,8.896096209715627e-05,0.0016316474822074877,-0.03079142937747269,0.0898880925048755,-0.06993012005374642,0.00010051191341935656,0.0019693717163222785,0.011725954580143173,0.10847818409876685,0.012201977923110504,3.706844905677666e-05,0.0014456228543781344,0.013276611369563531,0.011460620739792385,-0.004727631360060286,0.0008933546218168958,0.02219064680623569,0.009356008286549481,0.022595205471654355,-0.005674425220012455,0.0001447892068921886,0.0046472643836033105,-0.017052216723963048,0.013162951500757828,0.02133443708479045,0.0006332160594212937,0.015009492370905545,0.01064103869157722,0.1254972333560263,0.015664283334187522,2.5268104251380673e-05,0.0006818564516513967,-0.01963294521803718,0.049076989271090096,0.008591184089752893,0.00011883888829598979,0.003716923260042756,0.01303008432331025,0.06481735041783461,0.008368908581819112,5.658714336943585e-05,0.0036487472924037535,-0.013900832995101952,0.010767100152512338,-0.009047653642700585,0.002518054035878962,0.022036794469194106,-0.033038075643121376,0.24097131956643586,-0.040602024176606806,0.00011282400056875941,0.009866700904707155,-0.044123874378267265,0.21980902708453753,0.037928529994262196,0.00031083960427731307,0.015157456962189068,0.01962873167441314,0.11603865130353873,0.03457102219224323,4.764864135939152e-05,0.010609789359392418,0.015482443410671636,0.09950137555051873,0.02613139437759104,0.0002564467645018648,0.007360159700969745,0.06476398733611498,0.8431416381088525,0.05030956964861344,3.187596000349869e-05,0.017335128753147997,0.01713549443929321,0.19381099238428964,0.03009893024393751,2.9539282630450845e-05,0.0019070382999289977,-0.014322463173674811,0.04647582646052369,0.016861485720366505,9.926893181478034e-05,0.02149523229226854,-0.008469810365256512,0.053739673547394944,-0.06402915117964031,3.640583856877474e-05,0.003451681465352952,-0.004191278886808361,0.013435821021724843,-0.012794063237050174,6.916075600889117e-05,0.0104077373182705,-0.002693975452667159,0.01044937020081555,-0.06266448538142823,0.00011788325363729416,0.009326024280622713,0.0033295848516005583,0.002854985263734518,0.0002881549226269111,0.0006665945789179713,0.04414965361139956,-0.038635879574062296,0.13565673586799407,0.08676354566463544,0.00011987688514559322,0.006095635547145864,-0.07442216568081901,0.267670209450227,0.1451752607032274,0.0017845200824964209,0.01942611847958113,-0.03291058064780137,0.3311851439943017,0.0018273505098944996,2.555329405466096e-05,0.017503442004140154,0.01828468264917253,0.06379524129918958,-0.04805158491735933,0.0009370665004680379,0.012682067723141307,-0.004954313865186279,0.03398375051082259,-0.0015451074781884823,9.708180737418648e-05,0.010101170618320436,0.011431988041042727,0.018439251979679397,-0.005511298331182002,0.00014632679104066083,0.018623027451445753,-0.00333439219738019,0.005024605175342296,0.0066754215467834275,0.0003809067365674799,0.013723577194467072,-0.0242557164194682,0.11194609656063566,0.004897972938676487,0.001679405197329413,0.009766467401611509,-0.003596480521284973,0.014345759848923638,0.001020944518982516,8.043490005451323e-05,0.0009534318335343522,-0.015776055883627117,0.022355096567258457,0.0015061247675972646,0.001754280668238563,0.00866957924403616,-0.012845139981742944,0.03510280241965218,0.010707869569926372,0.00014498166678657027,0.006083022912320275,0.03923066294877742,0.10450648239237513,0.045049660700153975,0.0001521748188185328,0.006621621608045388,-0.018489120327284655,0.07957292715503948,0.007013976452896851,5.671067802084174e-05,0.0229036691742024,0.016701630825848014,0.06610521616935831,-0.0021759474242808224,0.0023946453777348555,0.0180002006532227,-0.028903083465361846,0.1413714675198298,0.012970380900014759,0.00010170047503457758,0.007468542754912448,0.007575163996523569,0.04198745158369283,-0.003518918625085712,0.00013083782252910255,0.015299673751671317,-0.033081352950603396,0.239654479492625,0.038974128451302846,6.528996121425284e-05,0.0016619456832602927,-0.02394980990903377,0.12005882842564324,0.0014137293233112932,5.013665605200616e-05,0.008147685908069873,0.05335048065557813,0.09574360387908884,0.07600225494368708,0.0002716801822365883,0.02530071340890519,-0.011455980610886617,0.042982955090160674,0.020865456719458574,6.627509756810398e-05,0.0085066046776585,-0.02802036010358487,0.2941885418268441,-0.030080097983684217,2.457419183107193e-05,0.010576347987161915,-0.005792347304306602,0.018739611904910188,0.00027384491496094834,0.00010804457511889352,0.0004721160723358557,0.011639505068222183,0.048964326113045575,-0.004238119576225754,0.0003746991456873116,0.019394170791856638,-0.03016275410647733,0.1690211216725255,-0.13046095279144856,0.00010221198208354424,0.016989486603658177,-0.005709492412973672 +2021-10-07,0.001866417315396461,0.01502804313916549,-0.03598027063528719,0.00013133875820240138,0.0026863132623182974,0.032027914937006935,0.10526701157323475,0.03461988163637312,7.300404078593074e-05,0.01516576501106183,0.0373757413382826,0.14470635928492726,-0.011840420245477436,0.00011948115245454927,0.011025367030621383,0.016634038856825333,0.01679172669252106,0.007839790801300208,0.0003343260452246428,0.003929877012219329,0.011339113860396481,0.0272367097979154,-0.005203673043134159,0.00021783228394300872,0.002700693304525533,0.020737313079799025,0.05287336628286362,0.040584373099958944,8.563716128587174e-05,0.0127549756148037,-0.03294794539368111,0.11895152898546249,0.02053279205794062,8.127335050464092e-05,0.017373818640494254,0.0009167723047966217,0.007457027370865114,-0.023138932796269843,4.2159394257429954e-05,0.001221177799837722,-0.01087574835931997,0.00906056648340087,0.007342916025032961,0.0009256537942173335,0.0007700316259941714,0.038973707211781256,0.08447412949074838,0.05446879598144846,0.000161328048184072,0.0323966961655919,-0.008888977920932586,0.005869159790564508,0.0007428571218012866,0.000740287220350995,0.01248649914877297,0.0035964616556614015,0.0521076921796042,0.0016984817755935115,2.056820465146324e-05,0.0057774159492046465,0.0011884176300188554,0.003302298862235411,8.417829813908404e-05,0.00010690641073592567,0.001866669433793008,-0.02854816299629706,0.169842446783093,0.1342094727162712,4.731444479673911e-05,0.016192376085899216,-0.029100968012150456,0.02593903590979866,0.002477136816498416,0.0021881474189044603,0.01795002471873605,0.02575003798911857,0.1870269084634791,-0.0020395621737737198,0.00011329895045404239,0.007414079779910763,-0.04746312848967431,0.2968075999841389,0.0015665812507305531,0.0002476221988146725,0.003053116777745459,-0.03215633516540867,0.23924235965754934,0.03358003534031513,3.786076853309694e-05,0.00053087588716832,-0.05923359267675418,0.32920359346324657,0.08899993234151427,0.0002965448012984313,0.005547278335166549,-0.03492883880472513,0.627546782401649,0.019394512531698167,2.3097675307801408e-05,0.015133824102114734,-0.021679146360231154,0.263705919684304,-0.04035232783967282,2.7466543373241876e-05,0.005452914464299713,0.03282659379295347,0.08975320252645956,-0.12951274477360855,0.00011781446707879049,0.017746487911509644,-0.028245510044666706,0.17960140666797944,-0.07836923476628974,3.6327211608416404e-05,0.002411399408950881,0.027323437982326074,0.07247557658309722,0.07851765338551056,8.358359506850458e-05,0.02068651963968984,0.005040670390926584,0.02100857226744738,0.0025360172531886946,0.0001097085200473071,0.0009706826596515559,0.05911211035239465,0.060944221744292565,0.055226996515651536,0.0005543952366854058,0.0074821655852022086,-0.0027184490956770556,0.01130073308899883,0.0011611647966820176,0.00010125129735299043,0.0019533887714872585,-0.005276659750939389,0.021438950129180775,-0.09618480486387607,0.0015797004854476015,0.033270800184500106,-0.009809438194995176,0.10066336465516743,-0.006736644165851615,2.5058489463876134e-05,0.001874420258061543,0.008867428522321663,0.029297684321350822,-0.00114841120521765,0.0009895452785708175,0.011250177446003852,-0.00611532574392199,0.05011520066539562,0.0010056589871206014,8.125980298930905e-05,0.003038209167582918,0.018553696837441076,0.02347347257695899,-0.039375662739918715,0.00018655139462745007,0.012706414030616748,-0.033244102616574255,0.04783769883221651,0.06949709266244213,0.00039888549838647985,0.01683394691097975,-0.003201573566564806,0.012315753618841829,-0.0019119565873118448,0.00201489692774169,0.0013996335105320719,0.012535369636132705,0.04395165794977329,0.009885683810868885,9.150656498289173e-05,0.006863439131413622,0.01074576962026221,0.014393819861008286,-0.002563430600083363,0.0018558319790813783,0.0182139155958852,-0.018164653234408922,0.06562172334178437,-0.04898426606230379,0.00010967193764769584,0.005545053459773834,-0.01183558541866656,0.02737735670574117,-0.043541193133959974,0.0001752502336659914,0.012549380041920249,0.055290875843383526,0.23435485322821514,0.00017418007308862566,5.758288802976549e-05,0.036271676202117124,-0.005246629655083484,0.016319358434067965,-0.012469730229171258,0.00304716089548144,0.020231744548855037,0.019516318269176162,0.11124826581997324,0.022554093246156096,8.726602876001369e-05,0.008310800071800179,0.00408782338811405,0.022558905621138024,-0.0002057998295875767,0.0001314119564851211,0.002925232712934656,-0.019766386807340608,0.10794919867275175,-0.02713389479277138,8.660771202465748e-05,0.007671643955684895,-0.011527186621524412,0.044457869740874324,-0.0005027700793913446,6.516615096167996e-05,0.0013175446431355523,-0.01143401271631046,0.025012438009859646,-0.023384844871577746,0.0002228804827017451,0.020466709391568166,-0.011131208445568395,0.04265215790850195,0.011844781697278995,6.489566438831567e-05,0.009029753032299668,-0.01759376529858667,0.17911130183942967,-0.0006728118427804043,2.534352902103607e-05,0.006433915587378075,-0.015040492721962692,0.04723670860318575,0.012045631938079613,0.00011129903516276405,0.0025936331230103195,0.038928845766345935,0.16278703633245759,0.13923227040098013,0.00037694647076762987,0.0068068870980766165,-0.002271082504969802,0.010973291006706423,-0.14586420257850521,0.00011854078833383773,0.004491037853529901,-0.0012526274016279855 +2021-10-08,-0.009256582945502507,0.05897140084270694,0.00673530246006946,0.0001659953172054536,0.019092446211127673,-0.006114082565926913,0.021235070210541288,-0.0026422703118698715,6.90856939858838e-05,0.020584310155705107,-0.007714790557072959,0.028537415231810873,-0.0032474061163928433,0.00012505662684531582,0.01722181110794078,0.02316036713292357,0.023002405796747793,0.004011580365030865,0.00033981303568413756,0.007827959455129936,0.011678688206379758,0.02689430985290257,-0.13999366701069033,0.00022721208768149669,0.00043851698330752255,0.007837754967787231,0.020236050964914713,-0.0025335426129498803,8.456928470085393e-05,0.01212814119396822,0.008147859990467816,0.03099945123682353,-0.01169868241595904,7.71221994958039e-05,0.023056668501875023,0.008978115103836757,0.07577797410835077,0.007635966175876302,4.062943594001024e-05,0.007035995905279833,0.007887698189930974,0.007093694601513801,-0.19403988720884777,0.0008574772057555144,0.0019022449085841554,0.0036606240964667655,0.009851421043019606,-0.007274212480648079,0.00012993260320715957,0.0014759084049191227,-0.030546424427023308,0.02403304948350119,0.01997274105767041,0.000621263529083572,0.005243782092642252,-0.019246705873591053,0.23692360097044182,0.08461621015116164,2.4208666863968857e-05,0.0012044251571671264,0.020564921643406658,0.05937823637563535,-0.0029476205583171444,0.00010288470169481624,0.002175803184394515,-0.0015389091294095276,0.009921721207191116,0.0005232227295859901,4.366040649769594e-05,0.00113172091892063,-0.00305186241499647,0.002717194530983351,-0.008356427782654434,0.002190620721878648,0.025533875590926427,-0.009761995828682556,0.053080369277317,-0.06884542488313954,0.00015134106644280673,0.020719179527253898,0.030974911794779847,0.18889188778501836,0.04398313948372428,0.0002539247323151934,0.005864094342675142,-0.03972868432346464,0.25308924533878924,0.0450354682098982,4.4217221398556864e-05,0.0019245300627999007,-0.008932504081072792,0.045880670027570084,-0.0013653469334652098,0.0003208708606519922,0.0022712047153339034,0.01828916636378491,0.23870443464086416,-0.17133443785849348,3.179535324101594e-05,0.004045608232308,-0.01670426101942641,0.17851090611814882,-0.031324242242378175,3.1263976977848924e-05,0.004411854813768157,-0.016131297070674462,0.05461812893624201,-0.0494510774034242,9.513826489408297e-05,0.006275649049495734,0.022939491880103535,0.14985774496098625,0.014038136073204609,3.53587559739482e-05,0.012803582144071337,-0.00763490359139339,0.02509525453476177,-0.00027232155698629775,6.745114631012389e-05,0.0023766299272537997,-0.002229517660535403,0.008763757582109089,-0.07197721370437313,0.00011632395416244907,0.003547638299229305,0.020993462613434318,0.02168400577846117,-0.008639445703710901,0.0005533757493278323,0.01301066714509852,-0.0152447880420809,0.05033032705341466,0.0031688660986019285,0.0001274904479425309,0.010224946481750652,0.030151352677437165,0.12240048457108567,-0.07312795320041338,0.0015810399291704277,0.008284558424184605,0.0008317962743669371,0.007802440240113337,-0.02901274470830688,2.7413766864363806e-05,0.013579805230615024,0.01277175677296714,0.03943758539174773,-0.08268574636407043,0.001058794293658623,0.00382626648554219,0.028669973755125734,0.21489658698506564,0.061727740347268925,8.884304203245819e-05,0.008968070592832746,0.01883179444466438,0.027616383413970474,-0.0034198530371170447,0.0001609423312160311,0.006693009249231552,0.044420564247443305,0.05756783975331091,0.026464749041747386,0.0004429024185917082,0.024100699156336055,-0.04114360785149714,0.1622234228242078,0.032152917039609076,0.0019657991937326123,0.009401772569691418,0.015089227296416024,0.05759447101358864,-0.007555535998390448,8.40575208911297e-05,0.0015630038608598754,-0.011982334753777399,0.01816134110219766,0.006799138386929761,0.0016401014966270881,0.008501142864792251,-0.05135450448936984,0.16385234663898518,0.127573094974748,0.0001241772146112008,0.016507537570764123,0.022799940054311848,0.0570161458659017,0.011252746630406586,0.00016210493052407928,0.030756261732272683,-0.04240762028596892,0.1774415919581908,0.04879274150159836,5.8331400331677863e-05,0.0069945785183554345,0.0035619264986018204,0.013389215768320306,5.7381534069877087e-05,0.0025214355462988528,0.04023217256740847,0.047972675868176745,0.2546501060588077,0.1054530743179205,9.371101740573062e-05,0.001458265153808752,0.014004648255645456,0.07552205039879166,-0.22921486178620662,0.00013448046974500654,0.0073315498749635544,0.036580168002709745,0.18298540618775652,0.03586463779187134,9.455357200166481e-05,0.0069907929687372,0.008622260422045877,0.03746148032461899,-0.15564971474035594,5.78473669519194e-05,0.015458897701166216,0.037816147668076436,0.0856945936995499,0.021664084514178707,0.00021515589773837848,0.016424439608761842,0.005765729418320994,0.024057919420507137,-0.019647647263871477,5.9595101988897424e-05,0.014261139129405409,0.009678893010253365,0.10493641991835506,-0.011830149879260848,2.379746689073725e-05,0.01690763840174798,0.012517217281025988,0.0349948317610903,-0.013147677636931691,0.00012502960110507752,0.00281300308055341,0.01922710770881804,0.08047220183742108,0.023702674720588634,0.00037661364057885784,0.009603021753104244,0.021237564780275005,0.09137791046409968,0.012789705398053476,0.00013311754197743128,0.005469585367054662,0.005115245332893692 +2021-10-11,-0.041586328794704204,0.252092637063633,0.10017629271839348,0.00017445242288153813,0.00252067069722997,0.0528068624928086,0.16188656811221303,0.07112593230478503,7.826905223040404e-05,0.02563388519890129,-0.0056390026541033285,0.01780836392538424,0.00015464856892902635,0.0001464790387593262,0.022748684703347365,0.006169698702244611,0.006043718038494266,-0.034524788071103554,0.00034453045471584534,0.0066587497042073255,0.05798070322887201,0.11617705167197742,0.2790545644277878,0.0002611324840076818,0.011351828187545725,0.007734902871378819,0.01765706416680754,-0.019693905380533044,9.564958919176324e-05,0.001385293854020177,0.0372737918944434,0.14263859678851912,0.07505842929360049,7.667545707199852e-05,0.0039824455588760785,-0.013974568747263437,0.1146971405206656,-0.00011133563694129245,4.178153950920155e-05,0.01239947192803337,-0.027597833712531442,0.025762513109160484,0.08917097869487363,0.0008260979689055219,0.012030994427397393,-0.0019845475987446213,0.00480510382184786,-0.017514550119673435,0.00014441776860925405,0.004622575116168539,-0.0419160726135802,0.03332024979116561,0.08529713982273004,0.0006148889574311386,0.0014000534098529873,-0.015448763884000832,0.19053347896873507,0.0464120252409576,2.4162686970878353e-05,0.001415732118539703,0.004156928241511474,0.01106183614469994,-0.05558540599196513,0.00011163396349028126,0.0037646822663989048,-0.016361903966638516,0.10260516626937012,0.040857674553999454,4.488760449846165e-05,0.0025403140595755894,-0.025431390331734298,0.02113562706521786,0.004961243898723468,0.0023468100477300018,0.02958661370042995,0.07233928021029615,0.4269876842295187,0.0839760000161121,0.00013941546198723435,0.006930722590007551,0.01538714891178469,0.08747019038937999,0.018970217561709135,0.00027239950676773736,0.001343562699416636,0.0030765549978635253,0.013894038270466124,-0.0043966492837502836,6.237307399395739e-05,0.014729160143315717,-0.005658988439463604,0.0293434058238724,-0.09185582692827846,0.00031784478790125673,0.003675731593655556,-0.019117176428668257,0.2999448813309486,0.014628278885102127,2.644919901966725e-05,0.007159999391946191,-0.004354634317292365,0.043429516177621835,-0.015617624540052917,3.350027781877111e-05,0.0026049246011364885,0.03028418006621168,0.08320566433239018,0.01272460512465097,0.00011724266539865283,0.00901419457432676,-0.06366266071195031,0.4541660836997055,0.0436391920566145,3.237892776126149e-05,0.006297128844579248,0.005525171462753446,0.015429458183585496,0.003951098611118938,7.939121831737606e-05,0.011540251873955416,-0.0018469929993141243,0.007700447490001721,-0.05338819793230978,0.000109672534807113,0.005995697194843283,0.07099738111650815,0.0814323117007801,0.06380454320992322,0.0004983346975420671,0.018912527258542814,0.037284898849688254,0.162055986029295,0.13046790544755713,9.683980375014067e-05,0.00783680856865611,0.07566798692871894,0.2554962266022102,0.09815475980690304,0.001900845698561504,0.007132539111855584,0.006247872942906278,0.058591599236841825,-0.08752798962524741,2.7420731253111254e-05,0.01192564474677711,0.00311546471742455,0.008192067462993544,-0.01914745027102212,0.0012433705793851617,0.0026195445590949116,-0.03708223642174934,0.27456712260483723,0.05896680928532023,8.993795932157249e-05,0.001615380671894272,-0.01673473424121666,0.025431871290016353,-0.049378598235224516,0.00015530516136529992,0.0025261175052183355,0.009119294894527967,0.01075879936225925,-0.07143529964534169,0.00048652074730291215,0.001602800567746412,0.01969442390642525,0.06433876486220191,0.01483905401376864,0.0023725802088568424,0.027215077762904816,-0.0032071728718043066,0.012698036574341676,-0.1913155043941103,8.103565867326832e-05,0.0006110407672809499,0.056334893772617356,0.08645187704771001,0.03885573585422432,0.001619870306020313,0.011109172137050932,-0.02329413762282468,0.09236241649326925,0.004443043460153703,9.992344224734336e-05,0.016763469428517672,0.027828006565290844,0.06168269826381365,0.015639703197162628,0.0001828854308990132,0.004376435136151694,-0.05474314361889311,0.24372836527777536,0.06515686196479327,5.481981713524636e-05,0.024262308888670252,0.004148624748953632,0.015269224012411655,-0.0023715894653536114,0.002575166091716084,0.017911674788267946,-0.020692025095940893,0.11650173446282547,-0.0719707827807319,8.835094031407577e-05,0.003848269111149432,-0.03369527951984406,0.19828352337965482,0.05657255574588752,0.0001232375966905398,0.002079291888190939,0.006081404437468658,0.036545474050123,-0.0026870561374719433,7.870801970794688e-05,0.005150323659493109,-0.005079413563253648,0.029777341650067967,-0.1826990379585807,4.287212846309882e-05,0.0317951944564148,0.02486663048934468,0.04468078924522645,-0.05662829336719528,0.0002713472965709049,0.02532773279632587,-0.03574013914858126,0.16419510157611092,0.11600112111289587,5.412655896927232e-05,0.00023056197943999125,-0.03175083366247105,0.30182025787696637,0.04512337900637697,2.714176165457557e-05,0.007961533334410636,0.014233189672418347,0.043952447293862794,-0.04768782211248984,0.00011319523346988961,0.0036009470253884008,-0.002748725416753397,0.00962572854225749,0.0018067597960168026,0.0004501173147259824,0.003964932262543964,-0.01797610096235623,0.08782268506355922,0.005637642089152756,0.0001172358897065115,0.005627211125134736,0.0022523731807900975 +2021-10-12,-0.0036831089150544303,0.027612328415223496,-0.009075068099671174,0.00014105812786208515,0.002024682089329894,-0.04972022299185069,0.1462246664315107,0.03536029637817941,8.158737400328956e-05,0.00897033117550516,-0.025147749607122353,0.09992304805274659,-0.008475217136479937,0.000116420821292919,0.020048226755069735,0.006528712735693078,0.0073626848218972295,-0.024818104075979192,0.0002992672593856505,0.014029273133733824,-0.008003621291995416,0.01883029841378288,-0.07709505105636029,0.0002223960659823,0.0034894706209063825,0.01248419194324874,0.033027658796455264,0.00321136809893317,8.253333374246752e-05,0.0008145587478092979,0.015934054600696267,0.06468325910138806,-0.004110364167076135,7.228101829391182e-05,0.011526625568780707,0.013153411396794438,0.11567399475019322,0.010490334295679245,3.899431396889574e-05,0.005483103575454966,-0.008533520292007575,0.006927521683114563,0.00747939752685865,0.0009499376881752576,0.009630102957837153,0.009050125324197909,0.018539894016268536,-0.026391398765873687,0.00017069045359344853,0.011360138850795553,-0.005264027624492076,0.003873132009371961,-0.019032708267008015,0.0006643244222350713,0.0014485440849959438,8.66264098554092e-06,9.85716745664646e-05,-0.0006557605995737675,2.618912392746203e-05,0.006274344303889871,-0.04115582925757806,0.11229436759020095,0.05267743087836715,0.00010887406065092901,0.013452059164505085,0.011811667121555836,0.07177412536324734,-0.007903964573349473,4.632389926447275e-05,0.009136050380358366,0.023078113673507056,0.019410943262630254,0.02732079304118451,0.0023188712739195872,0.0038119741583489,4.560914945613049e-05,0.0002612750219856329,-0.029183431153492347,0.0001436501845171023,0.008854070159880047,0.006040584464098935,0.036495786684433866,-0.014262343013782878,0.0002562975553440109,0.01937418286036513,0.010292506468486054,0.061172265578806645,0.011705463321036735,4.7394455619606754e-05,0.020255444347938932,0.021869714041602945,0.13197165623620785,0.0422982192019228,0.00027311732161590797,0.02330172377367189,-0.09240946107127652,1.3032078317441171,0.15593977542576498,2.9426119037310874e-05,0.004306407764144446,0.00516267072431485,0.05523085646412989,0.00597498108841812,3.1230170681954584e-05,0.013059503850181724,0.036136368245744975,0.10067388892547553,-0.08886203879882423,0.00011562464538010564,0.016964750567751537,0.034997748236500335,0.2031572892312881,0.027067718643294655,3.9792394123321504e-05,0.012352791922289183,-0.020797566426241736,0.07369927435851888,0.022977083469474465,6.256431451133113e-05,0.002969783127155238,0.0014796682805876208,0.005821782774267478,0.0003477520160348692,0.00011621360217454813,0.0038915234118172886,0.02057133244487093,0.018383095271796452,5.495913271448135e-05,0.0006396160397982324,0.002399823536096507,0.036436742472502795,0.16392120785187214,0.0697905465883948,9.35600416987523e-05,0.006185573391607118,-0.08752824858722348,0.29918244431297003,0.1423484727676578,0.0018777220539650781,0.049589460843186786,-0.037833052833027306,0.3564964857577503,-0.02351577205647824,2.728967283536033e-05,0.0022299564753163453,-0.025594022607309235,0.07736145376963643,0.01419430551322313,0.0010816461196873578,0.0037306790667556962,-0.021995444069929558,0.14937003199429785,0.00816122918856668,9.806068070987969e-05,0.02171606786111596,0.029684340218669572,0.03650050902761934,0.05177245241168056,0.0001919437015382036,0.006875013405226724,0.029914621919532442,0.04407352537717511,-0.057962108345519944,0.0003895916512901819,0.020623874683007894,0.00021552620944768994,0.0009219985784203371,-0.11081638194837852,0.0018118414069133325,0.0022158196064347197,0.05767728110698293,0.17853987426976944,0.2796220072655575,0.00010364776113556639,0.016161542271229564,0.01678933364208809,0.023748772092199364,-0.00203431464290198,0.0017573954257436976,0.010402566735067847,-0.032829086548696894,0.12057545744354602,0.02894822613320442,0.00010787378498446227,0.00700353645752919,-0.0003831283924098056,0.0008429484866161541,-0.10039042902994007,0.00018424838005296547,0.0053619631442122576,0.03721932713517782,0.1453748160650484,0.023926967738726507,6.248751648208117e-05,0.007041813957086572,0.007980080108488425,0.023039426750683906,-0.008760786968208808,0.003282869657450046,0.009277766607513803,0.024428611721748237,0.11365828498387581,0.03047197616467778,0.00010691490609244557,0.0022309475242247457,-0.01886720428433454,0.1031315371957668,0.011569018203660245,0.00013267125737998847,0.0007385434658401534,-0.008010856958980949,0.04550205163366584,-0.011674035031015226,8.327155925990554e-05,0.0023280334299557045,0.04592564482107341,0.18283015468738836,0.09328611943719131,6.313276799172117e-05,0.012076216870316315,0.005147132014273707,0.011490965819616178,-0.01719341691191503,0.0002183927256195145,0.014412956886711051,-0.006104739878160701,0.028989245749733435,-0.05227765232415563,5.2365423891487847e-05,0.01306843751853132,-0.011551255984487412,0.11984110794505132,0.0030970474137772095,2.4868791329227e-05,0.02013255135468831,0.03036928924583275,0.09103103459208066,0.06215542087702799,0.00011661491870089192,0.009234642217482207,-0.0008239508168956868,0.003830199671584883,-0.00251750933527488,0.00033908442723946437,0.012598647231128413,0.03474904117465414,0.14081483877889084,0.029664010601458755,0.00014134036202746698,0.006255449050259368,0.0008660986819132926 +2021-10-13,-0.035833807667722754,0.24679861687067486,0.056672450939880194,0.0001535454037748662,0.003852224584397901,0.026495441959045945,0.0989864718916546,-0.027237908793452066,6.422525681097147e-05,0.03397179120634872,-0.02807579265108164,0.10820336871518323,0.016572320597661918,0.00012002962489755219,0.008472689000879084,0.013486811257874388,0.012915350216778488,0.0023522681281367497,0.00035242844116412656,0.017696916219955946,-0.0032511041952682207,0.007315269895161726,-0.015583086497915642,0.00023254034200420717,0.010166189045801566,-0.005549747100133145,0.016242065872005374,-0.010972210369976929,7.460684336376225e-05,0.007418504684740387,-0.034954981691387076,0.12319921748820122,0.014072132304757142,8.325129250848693e-05,0.01995061993390351,-0.00948672551026243,0.07665960365932438,-0.04039753386638842,4.243736204007343e-05,0.01067271151140484,-0.012380139413895758,0.008506880550394771,0.00618178304402095,0.001122276805479276,0.017951218077631025,-0.0039088125850229305,0.010720085526559727,-0.1388526030348544,0.0001274995007068907,0.0012489795015795252,-0.026219977900652263,0.01984388909269713,-0.006767957815871948,0.0006458473596833884,0.005633761809140901,0.023125476393096173,0.35062988238254694,0.08579053115240547,1.965461546921129e-05,0.0005522951823738879,0.04737718898880437,0.1083158745079719,0.046167865499136915,0.0001299356181256073,0.018589200488023816,-0.01232040928911524,0.07604240064958948,-0.027822453212228603,4.560696106571486e-05,0.0001733234309644046,-0.0024961315309916924,0.0023768176101062644,8.506163182905231e-05,0.00204830479810809,0.010711819585089419,-0.006945419858542748,0.049121109750582315,0.00451603880623836,0.00011635430123422805,0.029124098495730208,0.031134645889026268,0.16969958287819126,0.03690822768765238,0.0002841001007404592,0.00772799845854957,0.026874978126865054,0.16181153356351474,-0.030798671224823555,4.678424244370185e-05,0.0027790703778604927,0.00046619424638017236,0.0025447852245565274,-0.03720804877365783,0.0003019274382788947,0.010120295795275493,0.02865655376831693,0.3513135192031593,-0.007688326614255981,3.3850051184520255e-05,0.017472411734477288,-0.005096150970003126,0.050685399296469105,-0.0006712317458425683,3.359240689014277e-05,0.007515250348710124,0.023162637427991874,0.06937285295800105,-0.15760345341502127,0.00010755267332572007,0.008212424021630898,0.00423198753657985,0.03295365932743345,-0.0019555838779162214,2.9664231957505045e-05,0.02131053010392,-0.0025172993582754863,0.007388061180148036,-6.560289957888108e-06,7.554083207821674e-05,0.006499882140064215,-0.0039050178230818763,0.013468812111957624,-0.0033479475280729816,0.0001325691041185328,0.0011798906944522432,0.07754440574039122,0.07400528782848344,0.03608616980679442,0.0005989123676557955,0.0029200245109964884,-0.014666859606004994,0.05834886679635107,-0.0030825898904507858,0.00010580123032216656,0.01630974265297147,-0.009113261720875584,0.02932204476933589,0.0007041566937235661,0.00199479726918568,0.0010996066261265915,0.03642791007527985,0.328970371134871,0.013741145524076258,2.8474733381475627e-05,0.023326394918692164,0.06083355632688147,0.18082169673169035,0.1854211942411616,0.0010999271845444048,0.002579035519725257,0.009704666082955789,0.06305746677003851,-0.010853634672443773,0.00010248722176097992,0.022701937101536472,-0.04085686577417424,0.05255725367373751,0.02993236812203006,0.00018347536932571923,0.0019476971259199385,0.04589851490997199,0.06438227456123637,0.043360678023727534,0.0004092005716569378,0.010090254018455863,0.008586427099063121,0.03709266783833933,-0.0414089071505923,0.0017942161342339106,0.00700229151166336,-0.012402811014997558,0.048548729254119884,0.012226973119677362,8.196579014530839e-05,0.001891409330282439,-0.012094278021486405,0.015614359363678379,0.0066669248540777255,0.0019254532094782992,0.012618000962268821,-0.028478438691409615,0.09126194461889323,0.01282406053951867,0.00012363530192114298,0.003893592042630409,0.011462916480549855,0.030759491316219724,-0.04821639613310886,0.00015106934810979475,0.0005531043976993446,0.018400662244804772,0.07492218260687694,-0.09708111316041028,5.9942790696695066e-05,0.016036226224401463,-0.07482796330364885,0.2551337581233981,0.08146143752240663,0.002779803236835042,0.02591043994418471,-0.015523702609111635,0.07207555379566342,0.0011677531824528789,0.00010713907610429195,0.00859673625180093,0.004230171814385544,0.023729716976521032,-0.010185922488324669,0.00012927847879858932,0.007798901347175868,0.008586009573776476,0.045836576482739914,-0.03905744842915806,8.859881111932713e-05,0.004513368721790404,-0.0029212820895075852,0.01496105049948806,-6.214268872795503e-05,4.9074829801078204e-05,0.02249999962298747,0.019516322862502385,0.03317369581822557,0.0055449303910849275,0.00028683591581382727,0.0044874190926902065,-0.013322427900490824,0.058269365950974886,0.010218260830142517,5.685353354864142e-05,0.0003942730018705286,0.0027761926924450846,0.03283993638082051,-0.06384285512649689,2.1811151033585115e-05,0.0038204389802801598,0.0005323840845513785,0.001754898511485601,-0.028692862667846753,0.00010604300421032052,0.014204863297059828,0.02081632887544806,0.10797679793419573,0.007336212442064743,0.0003038796848300039,0.022135544485496983,-0.03801346787036231,0.1857740829980776,0.04009723421774967,0.00011719906871333327,0.03254968069223654,0.0009440864376479109 +2021-10-14,0.022700210864354902,0.18561917799853747,0.016462971282769218,0.0001293283182702895,0.026422477950221304,-0.002855860139490304,0.00996549255860918,-0.03483990052998596,6.876203043570844e-05,0.03188805727135093,-0.054402573456252754,0.17189748704120292,0.036899182549156216,0.0001464020374352623,0.005745067899964602,-0.010241256746064886,0.012260842753046695,0.017568187411194983,0.0002819037075445516,0.005606932831821353,-0.015582772689722501,0.03714975288475476,0.01291401397580342,0.0002194757686070693,0.008522524817888972,0.008905937407302717,0.026056144989987633,-0.0884865327152862,7.46304767757307e-05,0.010484145588289152,-0.013761439210709034,0.053298864040755636,-0.0032165148050371747,7.575926598564633e-05,0.014443979050903019,0.060451033608770355,0.5266403803725026,0.17428004706837383,3.9362999951859935e-05,0.01133252291687033,0.008157471288916928,0.006181761945524525,-0.07521975405243142,0.0010176256937258212,0.008109106596877975,-0.0001806752145408595,0.000431801197749452,-0.011172495417181844,0.00014631088013201572,0.01396178232862223,0.030227067584134862,0.02210552131968814,0.01670720602021736,0.000668374102399635,0.0009561690528740075,-0.005878867585559633,0.08475086272243383,-0.02788401309133963,2.0671516572787275e-05,0.0016684178160924527,0.0074129684674542305,0.020790683819138213,-0.0004461132929179384,0.00010591913291155173,0.021205039926398044,-0.004081144588928819,0.022377949243784175,-0.0033915770609827156,5.133617601200998e-05,0.0007478027387356773,-0.028943320753872844,0.026389445535285768,-0.04354430569752009,0.0021391491417876857,0.003855453969552912,0.049704508128592235,0.3802552181404841,0.010996514451638503,0.00010756542703554307,0.004421176150658426,0.024609273044074394,0.14237074812847908,-0.013119243885823393,0.000267661710878739,0.007407786378868479,0.06113302818236597,0.3294817771819494,0.15567865040507264,5.226433933809507e-05,0.017525391751106234,0.014599168273012032,0.07519418024712762,-0.03779198659877132,0.00031998579015843554,0.009508875071308067,-0.040683833846686175,0.5139518006991669,0.01913306462519178,3.2849571679853396e-05,0.04648450708276651,0.019772848015459397,0.20782110350462027,0.04594834554876788,3.1787859930968236e-05,0.0017397727119923588,-0.015477854148144852,0.0562745064567797,0.04388652646821295,8.859757007999846e-05,0.012702156752150258,0.033180866261021284,0.2291906594578177,0.030151742719680658,3.344130231349203e-05,0.000638725950768635,-0.010426852375653408,0.029233794574332634,0.005342864758983636,7.907613173725535e-05,0.016120917994755415,-0.00685938744808904,0.02713094990697066,-0.08207732764231354,0.00011560295366481888,0.002908747799137205,-0.013361470676179137,0.01257348905502452,0.015277990851669403,0.0006073989211355549,0.0006235869879871454,-0.013344759670485935,0.054284620290811776,-0.012835664114642834,0.00010347131334620506,0.018990895992897952,0.02774022950595886,0.08392243782725554,-0.023508805863289607,0.002121539555775446,0.00541387609015059,0.024558915760962363,0.18440193560688062,-0.03598721760882372,3.424726618752214e-05,0.01257752672111862,-0.04911289261589604,0.13820948693202414,0.05996901956908538,0.001161793463350468,0.00303735414336425,0.013542013916316865,0.09731038811993606,-0.0026186614683117847,9.267224719067937e-05,0.0020997126523812086,-0.024511688143079628,0.03728168048185354,0.004919472707892173,0.00015517549118990038,0.0016863826633821445,-0.04207274802324909,0.054593718526429066,0.0971509129361544,0.0004423460126344333,0.003700058271202623,-0.03348382360136316,0.1458941258611125,0.046894901937907234,0.0017788838006670099,0.008285703591800557,-0.005646271269136397,0.025376286576253182,-0.009625298011505926,7.138780682188078e-05,0.0038944345739518843,-0.03002722252748936,0.043338752485534794,0.015042678961083954,0.0017223283425264388,0.020778414219163554,0.013688267730883276,0.04189566126600438,-0.013593187713832576,0.00012944803967758077,0.01297987835684879,0.04277107605970917,0.11273156798647663,0.05428177424554904,0.00015380307026211515,0.0029216082655399494,-0.018264475154425266,0.09221735090209335,-0.011898863028011755,4.834020409638167e-05,0.027295377854551967,-0.014255315001277519,0.048476049287700405,-0.115554633578948,0.002787196949389275,0.01587227496371627,-0.01834981608553207,0.08270874194096363,0.00706477636620622,0.00011036233272487829,0.0009222058187990399,0.029038137044758904,0.15646168594404788,-0.01898597152739688,0.00013459270741163586,0.01350679126592437,0.0047454011313446945,0.030355358906651888,-0.002582234486090838,7.394115940545149e-05,0.019389572494638543,-0.0076574142288363106,0.0399984343330838,-0.014202504659219213,4.8115670690732704e-05,0.005343769210021457,0.031593195595931566,0.058639117015898023,0.015093790698261552,0.0002626851536777523,0.009450589253288358,-0.025879970810519588,0.13900752603919367,0.037787365755419994,4.629561352820131e-05,0.008794283233241742,-0.00943818069137131,0.10703315789776714,-0.038671999828351004,2.275103895198283e-05,0.00840408684121091,0.006243453089478978,0.018803155126560965,-0.030080423212065187,0.00011606548446426864,0.0021324964944918643,-0.012462584994822444,0.05152013240022876,0.016433876198921064,0.00038129326460298383,0.00906343869770911,-0.02755795969606791,0.10321242025318292,0.016641068063426846,0.00015292795976632484,0.008651564331365743,-0.0006676011575384054 +2021-10-15,0.03542996953909809,0.27650425510728854,0.04713103808350695,0.00013550506967222758,0.016964789481766496,-0.00949863763944214,0.02919947655989113,-0.00042028656603146803,7.805429053359123e-05,0.0066066983355096585,-0.019133951110778834,0.06522804621849136,-0.033214288645068674,0.00013569614008454632,0.027197311566488407,-0.010964745970418584,0.012013486221432536,-0.061218859814772694,0.0003080330926256775,0.0059471585870150825,-0.024980678965854056,0.050864855548178566,0.019889663131593426,0.00025697104758335137,0.001275304556328738,-0.00817050482327419,0.021597752284715287,-0.01845493588508626,8.260133659139435e-05,0.004167432725153913,-0.02586273222991706,0.09051856520456109,0.002443221183775328,8.383523714457902e-05,0.0027775304874465816,-0.03136113058352261,0.2859687194408142,-0.00028274459798877875,3.7607268837264476e-05,0.0012107938966082765,-0.00860932087368786,0.006287359661064632,0.004760924895916144,0.0010559549168821837,0.0010851295593703033,0.042511027127477036,0.11224772418846096,0.0204007603852655,0.00013242986617352233,0.008909975700194847,-0.005901446549503847,0.004621656516266416,-0.00012521700307412765,0.0006241445331111723,0.002464525033642784,0.007826421385135063,0.11219686403910502,0.010775735947735366,2.0787645321559603e-05,0.00523916972460766,-0.010504316961375713,0.027726653535384664,-0.12694638026420202,0.00011254375470873471,0.0010102862869990482,0.01188113801191618,0.05609632541563858,0.006888858924228249,5.961910405656753e-05,0.004628644924120346,-0.01798860873552966,0.017796931827196365,-0.02877210425620194,0.0019714029923618257,0.0056741295874013905,0.0033735710872776848,0.019998748363478078,-0.06143782782093434,0.00013881588233041775,0.019123679955948634,0.0049337168574692955,0.02843214107453701,-0.005278687244785475,0.0002687032309912283,0.000680244025056,-0.06584232834484528,0.33970449018178234,0.1033447274636457,5.459650583099576e-05,0.0011587269451644032,0.0009620139318792961,0.004542316812890387,0.003623810451919616,0.00034905249552818243,0.011192476608361857,0.028031608759286425,0.321743762088531,-0.03600125056611905,3.6154979419828266e-05,0.031045928024624744,0.0047936884967322456,0.05575068633783069,-0.002446611034978717,2.872772931969464e-05,0.0035590024361209535,-0.02922330910903277,0.10271900870352416,0.07856005865492813,9.164342844542335e-05,0.015603431869913434,-0.029775509098026183,0.23304730557040623,-0.01428553216967451,2.9512600956413797e-05,0.0015692802731732403,0.011125655326146405,0.03572744743462028,-0.01642598921948024,6.904003370194625e-05,0.0045143510720247575,-0.009913518621711982,0.037535453258906254,-0.07049139146381692,0.00012076324039435801,0.0019720986883856374,0.0070951810293043045,0.006595836465897254,-0.0005425664104940569,0.0006148499791905469,0.01726558132541324,0.0009088936740664658,0.003277939594264034,0.0016669331369714656,0.00011670733272958441,0.002934508985717078,-0.014007359913318614,0.05655865018023875,-0.021791627781666392,0.001589558172977953,0.030092360060045745,0.033870213017441704,0.2915232362492636,0.01471294760559324,2.987630929421199e-05,0.010059978439735006,-0.04515467726833772,0.13270984997745217,0.025377982803648176,0.0011124252914390456,0.02378328657508525,0.002710695630832112,0.019898404462811863,-0.004442830600426282,9.071688825321374e-05,0.025191054436078046,0.011984442357945406,0.019781074379302654,0.015538603217269135,0.00014299252701302885,0.005606369202218501,0.0016177365790790235,0.002522298865664635,-0.03195292331985857,0.0003681418367496952,0.008418754575720926,-0.024825865137694855,0.0931221888332398,0.02504736195304431,0.0020663389279717286,0.006359307462468131,0.01769671836262389,0.07225187346401876,0.010480539557827752,7.85839757522751e-05,0.014757545770751892,-0.0478883158561094,0.07671868775226369,-0.028551503277150267,0.0015516922463641317,0.03138398139883927,-0.011276036805752038,0.03831880056964018,-0.03833174110509827,0.00011658981539748124,0.006325836409883792,0.01919395656132932,0.04626719660201985,0.007278320636533306,0.00016817122896617794,0.005359796150131116,-0.022345888031973227,0.08976612090249406,-0.07372100546661987,6.075738661694688e-05,0.01575067993831709,-0.04557230392913371,0.12775822906835665,-0.023897702680384932,0.003380883141733932,0.0012439712653407682,0.012774697114538758,0.06499033641589352,-0.013182235270230798,9.777828093381686e-05,0.02067885895798999,-0.02446523021479742,0.14916895020506363,-0.02115312965288845,0.00011894101980364166,0.005238186657082855,-0.009493147212952897,0.05880446815523734,-0.03894615324029971,7.635695269445177e-05,0.016496964997347003,0.05013956095397005,0.21865615686791026,0.1020185846413619,5.7632334397145994e-05,0.0017777288101309145,-0.023531425863956172,0.04656743153592815,0.00827020301993275,0.00024637427140807006,0.015353644273829967,0.006440423216636018,0.027932323629652745,0.0008949435311688131,5.733525092998338e-05,0.005070389905595379,0.013126251228397496,0.12561822960941768,-0.007903144828863432,2.6959965318287894e-05,0.017862505425451376,-0.023661866468415067,0.0765770632238872,-0.0026064973623613997,0.00010800882880656773,0.001840353649471729,-0.013690425550706807,0.04714087818494491,0.017325859920406646,0.00045776991813831306,0.0004768011828178288,0.02147130673126574,0.09464609970342276,-0.01310615881180947,0.00012993541876277033,0.0006309864937733627,-0.005815677985075508 +2021-10-18,-0.018170106317154447,0.11259105598485526,-0.01496220444349868,0.0001706633082414787,0.0112315740019797,-0.039430187928415156,0.134558201635275,0.020049638525907576,7.031195918917382e-05,0.01048052659979637,-0.029748380337394607,0.10632740246351155,0.00825779674419944,0.0001294241512201813,0.024626930480266138,-0.001949874976471309,0.0021034524212677395,-0.06847661325521083,0.00031285415640329385,0.00024152033457503115,-0.0109331727783133,0.0244622402352779,0.008315606521767294,0.00023385559063032423,0.0038395695948597918,-0.004359675538717574,0.013542233954924593,-0.024124958600298056,7.029276005805252e-05,0.00558570961495605,0.016080868645426266,0.06507172394888118,0.02124699719336016,7.251152634680337e-05,0.004874427157487813,0.06405608061266531,0.5252511681551824,0.13238710033537707,4.1820762762875224e-05,0.017198516839238166,-0.023809776557556304,0.022502417334671874,-0.02162679787276733,0.0008159638744946955,0.0021567078491619607,-0.0057400805992304,0.013170630421072336,-0.041180865140757125,0.00015239591075236932,0.018357858983259263,0.01252820516582968,0.008205017977498898,0.022698937386676537,0.0007463347757732273,0.0008094472324220192,-0.007144034466542549,0.09003449420874086,-0.10310938149975082,2.36459845462035e-05,0.006662318839276438,0.02320061166198276,0.06622271117836727,-0.004815818473284772,0.00010407430412489751,0.010207587894262226,0.016752035117138204,0.08675218916643458,0.020428127097537198,5.435618275896985e-05,0.005210343937456229,-0.01157839524766563,0.008230689465076928,-0.014743909535032199,0.002743690546426046,0.014904397503769842,-0.03295322504939552,0.2712895498230239,-0.04946480493125245,9.995786401926144e-05,0.010231065836758401,0.05069798849136389,0.29301187376145016,0.08569950498457662,0.0002679253092788452,0.0010948559393645443,-0.02285705919193908,0.15008759163735239,-0.003832298248055933,4.2897948169356356e-05,0.029584196681421402,0.05147132960405914,0.290758154353997,0.11309848969864676,0.0002917563325099266,0.019150353653611677,0.022485698688888986,0.2874148693876344,0.005809490124837001,3.2465895427717516e-05,0.007777463343133376,0.0018519338851053207,0.017694183784581662,-0.049340261146610005,3.49684718192402e-05,0.008163605965207167,-0.00844229601178966,0.026239227785430506,0.015860541591347987,0.00010364116397861432,0.008122891061536333,0.031187899188951883,0.21509014880781568,-0.004523573747577694,3.349330295808524e-05,0.013546479360070612,0.005274143883920475,0.014692386884945936,-0.17755965249299516,7.958605910435499e-05,0.002782706524295856,0.010205389185823406,0.040638963531375215,0.028913568021358495,0.00011482475935060123,0.005458794088331752,-0.03405978447956187,0.03144907405687185,0.026618915590484717,0.0006190270024851255,0.0046808729480089925,0.021094842836751067,0.0701966064163131,0.031658049719545944,0.00012648708559641296,0.008877502987140115,-0.0561975180255535,0.20849910857861043,0.044628210184902845,0.0017299442495482301,0.004934453306670207,0.049621266619956056,0.4338880369898673,0.03648650772218774,2.9408465558777785e-05,0.03345682038914349,0.01683092232222809,0.0492067474722603,-0.009671842014910002,0.0011182902178646147,0.007266057995339717,-0.03514413583950169,0.28115833492677555,0.0572726913053107,8.323913327091204e-05,0.002647794663592903,-0.005607084387950176,0.009040887821682886,-0.00014591689387515787,0.0001463765133155277,0.008011693746937706,0.004114780357037359,0.005992159450316092,-0.06342125917945891,0.0003941551545572587,0.003122881732223272,-0.02976163765663773,0.12963647120116506,0.02818776987506535,0.0017794261369043361,0.0005942455713727397,-0.01714922675036421,0.06878459906327272,0.016261469531712744,7.999147461770587e-05,7.796408294475916e-05,0.0206889245312022,0.024411217064926244,-0.08148004382099318,0.002106811472998203,0.015563964237512802,-0.03041029001587584,0.08227430995036662,-0.030931770038163064,0.00014644425869486368,0.005399652794367547,0.023739872571690586,0.06038033854758893,0.004634156843001004,0.0001593834472559911,0.016797537785431704,-0.033927793161619105,0.14502436430573903,0.01780953449691408,5.7099008421030146e-05,0.005020121764583255,-0.024743397101969624,0.07819267804634246,-0.11708041144470872,0.0029992405238897695,0.0024751692442041406,-0.012535904193221724,0.06410123396895963,0.003015825542119162,9.728140742103358e-05,0.005821888991304287,-0.021113665616831277,0.09883629891798174,0.0032540581524138426,0.00015492016448999396,0.01098131607699969,-0.06019536110792514,0.3125464085052984,0.10014176584921147,9.109556002352829e-05,0.001067389452545281,0.034794168791803845,0.1609305223270057,0.038083682443309,5.4339475228737583e-05,0.005082141731481896,0.033527379968768964,0.055780001137696746,0.006415615771514664,0.00029305591507536495,0.009831359916891878,0.00013458048643325097,0.0005773406241791452,-0.03304245944836272,5.7964801394584736e-05,0.021182253272879203,-0.0024865447724423157,0.031520493571088895,-0.0030044946113849088,2.03532871404169e-05,0.018109210174591595,0.008494370783832635,0.02636247466671967,-0.05593467438480202,0.00011262997906548386,0.0006797208078444808,0.007985281856613296,0.03242622085355282,-0.00933315024500621,0.00038816992584928174,0.012856259404523687,-0.03758800222094197,0.17365557121955452,-0.04554319858544419,0.0001239744867277017,0.003905009503948443,-0.001683717511699165 +2021-10-19,0.0072869759989478335,0.05253700616007859,-0.03806026507088758,0.0001466792235279475,0.009441291183006573,0.017205927976308804,0.06089205915384067,0.008510667636351749,6.779973034747264e-05,0.0268580771945635,0.002889927937851791,0.010123658302440636,-0.007881642563659252,0.00013205253408614623,0.02065931946675807,-0.022242370286212756,0.0264829939274538,0.039623103900648896,0.00028345351173356326,0.015694935886206227,0.016402260200136323,0.03992204960137209,0.004772784556137196,0.00021497533753988676,0.007364747345983005,-0.0025785392504014846,0.007156225041440114,-0.0054549995797402665,7.867495389427712e-05,0.003299731666902812,-0.014409244074176394,0.055647368788534754,0.0005892144167119227,7.597774836481284e-05,0.0024915725804927655,-0.022613560429082184,0.20480668675644084,-0.001993286705022343,3.786373296179824e-05,0.01116661585402244,-0.010046645961529403,0.008500015029091484,0.007533851010982703,0.0009114780011197718,0.003940448976489625,0.007717330063452693,0.01818833099219097,-0.1944349038199821,0.0001483665891008692,0.005427650748175394,0.005631970831480415,0.0036938535403717807,0.007308377652450179,0.0007452553171660778,0.00912838792126936,0.020939921562720613,0.2706949933156153,0.09895770021014849,2.3052478025039066e-05,0.007392718307978645,-0.013709217088513187,0.04261905198569502,-0.0018643821077768503,9.555642787265573e-05,0.002377049567952115,0.011182588290595673,0.05748349666051439,0.0037667906066843446,5.475968940430724e-05,0.0015737816636606885,-0.007999165404899117,0.00668552740688259,-0.05571623727450929,0.0023336298762049582,0.010455171740033329,-0.05934080867067327,0.3862825818877682,0.10185320385473247,0.00012641553373628193,0.021363991065631308,0.0623209058899113,0.34035326865139276,0.09758523467533285,0.000283538517109607,0.013708388505648445,0.0016651033826276572,0.009924576761444462,-0.03194653828503122,4.725961332501384e-05,0.005336042160308427,-0.01638929864299719,0.07459927539144894,0.003983889071144105,0.00036208669545474025,0.004705260093253931,-0.016865229911779325,0.2424377309927265,-0.019914548705085505,2.8868371568762767e-05,0.006007620918969798,-0.017882146509334843,0.17602436927170612,0.02361735065330801,3.394130692428528e-05,0.007229644225998134,0.016991563425028763,0.04945685688854785,-0.0002739214896463208,0.00011066991703965247,0.002332759088926944,-0.022000106454256683,0.15800990703002493,-0.03862513116100275,3.216124413952245e-05,0.008723955503352391,0.0002209221501398401,0.0006437780145450002,-0.06514147975413655,7.608175158066502e-05,0.0038843801554681078,-0.0011881393896785043,0.004657522167583156,0.00040082927741873345,0.00011664363870460966,0.0015972506163132191,0.028906994770192034,0.02812855469622498,0.0013126080915692958,0.0005873961389180858,0.00737067226219048,0.012172965856865368,0.042852035282633656,0.004356475937955869,0.00011956689715611422,0.019284657576748857,-0.011302419922532435,0.04595952926637024,-0.007441760561183854,0.001578392619835917,0.0027571544492148315,-0.01540711046841631,0.14302915326955828,-0.11881004157664599,2.7699939729385162e-05,0.018669887289199175,0.011412101483533941,0.03642956434753949,-0.01923383725180991,0.001024195626872863,0.02554060093676224,-0.00296741835273608,0.022579622029910557,-0.08015888371611436,8.751605928224608e-05,0.0031542842384051427,-0.008150957247464402,0.012110535348592955,-0.009481940098472927,0.0001588512584966199,0.003567073777806508,0.00791434288336586,0.012458215230738538,-0.03299070222507644,0.0003646388566560111,0.00853530719660798,-0.07596387619777117,0.285630387672598,0.13928403489649585,0.002061356225131911,0.0038703419175571555,-0.009674013448452859,0.042419130428156177,0.00422433654877264,7.31703775188388e-05,0.004756801439368977,-0.0005698656152506458,0.0007698934076371338,-0.0042242936331713535,0.0018400051732337193,0.022271056800178074,0.017132881007122888,0.06215799892493643,0.027640740102693646,0.00010920673184872208,0.003377229185442688,0.02453294292875896,0.0623998394941719,-0.09171265005113785,0.00015937733187099798,0.007511356856325695,0.016488593802923824,0.08291437098844144,-0.09315422135892396,4.853641931523856e-05,0.004287861942347707,0.0271583938785405,0.09725386608528878,-0.0032903534392802586,0.002646764286277181,0.023421407084368007,-0.03564676763859114,0.20161365480844942,0.04742681098592676,8.795100034316504e-05,0.006713645893086647,-0.011035343941355663,0.06082614639974539,-0.02145672691511843,0.00013156984255246725,0.012504666270570385,-0.012950709857803104,0.0775014831982013,-0.026390180515947274,7.903732959774335e-05,0.014403590804462456,0.029979273282927658,0.15242247905586703,0.0072956310610496,4.943328538734081e-05,0.009866934466084661,0.016783757633306303,0.0267186672769556,0.001392243784118038,0.0003062695368039212,0.026369881682160343,-0.015521244132186337,0.06697233867232956,-0.0020568167198747956,5.762957821992219e-05,0.015778992047471442,-0.013360967847811999,0.13136495495445513,0.003949880468175243,2.6241562045645456e-05,0.0035483955977937322,0.03215035103066308,0.11809029833030597,0.055377862852462933,9.516570382028093e-05,0.0058682690691850775,-0.00378006966199963,0.01433484772378577,5.395772077754206e-05,0.00041565660920519294,0.0031648954415583954,0.009657682240637424,0.044613875483555256,-0.02161203807241751,0.00012398660182408184,0.0037009513350115195,-0.001129234329801463 +2021-10-20,-0.016513261077800226,0.12695485644619867,0.017633429832370488,0.00013755301447966888,0.004325547033027383,0.01952225265205325,0.05944853705047927,0.0018168888425060391,7.8795113222882e-05,0.0021024767935464614,-0.02380404766600499,0.09193734632352256,-0.013142728719906419,0.00011977220683056803,0.006177821242437853,0.007430498713264648,0.008027931674748837,-0.13340164098633955,0.00031237923142623386,0.001597655324998995,0.018165886479265737,0.04093335227189025,-0.052315260758598575,0.00023220793437867766,0.009700871903201189,-0.0076806955731743365,0.019726324574802334,0.007640351179655477,8.501608801611115e-05,0.006123261592101799,-0.04508810696990411,0.15916483104574888,0.022752987297173177,8.311984877206214e-05,0.014092633610963442,0.030169948539479904,0.2706888180555809,0.0282828531293895,3.822107238887462e-05,0.024894520474913757,0.009911308421386775,0.008390998712332336,0.005374245863953977,0.0009108820061372679,0.00374933504496529,-0.01744626094168861,0.04533773174040823,-0.026100702212068436,0.00013455643177924127,0.017770845936914737,-0.018049135784543834,0.012167826668459876,0.011306979368396376,0.0007250496644415521,0.007923050393807623,0.0010688489545328777,0.013350324283226389,-0.002527435543110898,2.385872938369484e-05,0.002362580349874864,-0.04716648749359803,0.12734057627487183,-0.012725613319504203,0.00011003168465136165,0.004507816382889045,0.009482277010779383,0.05108695307844442,0.0014029006619601092,5.224737257501732e-05,0.006283883904012132,-0.04011691253340654,0.03507708610509986,0.05182012602451954,0.002230627054578908,0.009893888893531726,-0.03463088929440948,0.21394123001733492,0.027189821581114104,0.0001332052259150707,0.014927116686174307,0.046619632249191426,0.260904075103746,0.03644417764904913,0.00027669175167766534,0.013724758776793104,0.05563995212753106,0.3323019181865273,0.06262179838418915,4.716445880479387e-05,0.006129132805668295,0.07116588186434739,0.3684344365946416,0.17924284272421048,0.0003183452887388576,0.05589139586485928,0.015310489996892608,0.23199074278253162,0.0025012000537994548,2.738726511783499e-05,0.010187036346036267,0.020270494703423163,0.19906621157317267,0.019603297467235766,3.4021112058113085e-05,0.003511332506657209,-0.02240221512082596,0.06073755100059711,0.008570123676474244,0.00011881094285894054,0.0027628397174662136,0.05492079237338395,0.3341323536371279,-0.038276076907089264,3.7967381017242345e-05,0.011156566950735634,-0.011803275897966956,0.03577197016668827,-0.011165493776321369,7.315383209413007e-05,0.0020113217078006375,0.006030176497815086,0.024039331583674464,-0.027451100282181846,0.0001146981020265382,0.011682805897302207,0.008932214423195703,0.008737276931125927,-0.08393120259886078,0.000584330560294129,0.016763039718354845,-0.022977685880690435,0.10164567881313583,0.01619744038469134,9.51488134079488e-05,0.004770743797061942,0.006385426389326359,0.018399649259660138,0.002315995882915239,0.002227406758191995,0.025721527581068472,0.042133854470686474,0.39052917357291644,0.04348786834410168,2.7743414071244823e-05,0.004097949151247657,0.06858946383738894,0.214439771582732,0.11980622889896185,0.0010457390886968892,0.03232767499622427,-0.0323657842657435,0.21511699342079954,0.033367172919047006,0.0001001929257981768,0.017371073974596467,-0.018713851984785222,0.02861790111706051,-0.06716121065338021,0.0001543372642230415,0.012257426419413929,0.005892406713123115,0.007505625595062734,-0.02903191044325115,0.00045061924214358576,0.02423894210066834,-0.01606007801989265,0.06459425718740013,-0.052388350627291205,0.0019270992551953282,0.008172629206804838,0.011171678510167215,0.042682018976524794,0.003354375553187913,8.397767473920441e-05,0.020927824678667314,0.05610327065360916,0.08631664111649073,0.07690917244249944,0.0016157376304481092,0.012906004414783087,0.04598479256204448,0.16015301652757521,0.13616328854654014,0.0001137614568528808,0.016818681173149903,-0.011718872582763344,0.03629721361331292,-0.029332585213346984,0.0001308798899172418,0.010523333187430014,-0.0016849915729629972,0.006002167260016424,-0.0048038100949959715,6.85178244018757e-05,0.005848607908549035,0.08380099933243444,0.2790510984794748,0.1419553997525377,0.0028463186546664574,0.006736614514979937,-0.008325922192030254,0.04494039160900556,-6.17536087354142e-05,9.215864190535258e-05,0.012220725490464733,0.015517909264890552,0.08547866677863425,0.006024049979090502,0.00013165466512991196,0.004833482593261173,0.013644200753251458,0.08969176838913526,0.0036292998642118547,7.195222241718727e-05,0.00661899135975721,-0.0070155894640135785,0.03166136383929731,0.0005028778921880118,5.569060598225843e-05,0.003272397173697655,0.006166104649539874,0.011270242455308213,-0.011691873682771895,0.0002667515957934165,0.03250288315825202,-0.0026382023059191976,0.011232948785648292,-0.004744217341031113,5.840213080642268e-05,0.009116189475488298,-0.021761959345521477,0.22976350636229237,0.012795604174775063,2.443701918793291e-05,0.011140030487412496,0.0036923359385129285,0.011292012334824325,-0.0036857580509279267,0.00011429805183539033,0.012664582911814814,-0.00791563452279512,0.03277184898493123,0.00284069790303743,0.0003807261962631262,0.010994988804570196,0.020531132682325922,0.0977294005576076,-0.07223670439256785,0.00012032599750415394,0.006869459059099721,0.005664921187914301 +2021-10-21,-0.014268284110554282,0.09595512633792831,0.010507481221975918,0.00015724981774873316,0.000609683177218512,0.051476457733687656,0.1552892496852227,0.04155983060203595,7.953857189658304e-05,0.0036339776605022215,-0.014724063303396344,0.046768414962787205,-0.15523912508447182,0.00014563716927857664,0.01551167764134995,0.01876003748709169,0.01925640420190547,0.025848400363778095,0.000328795878336549,0.002929147110869278,0.007398490275382554,0.01708996416502873,-0.022609500940235994,0.00022651644001334999,0.004119029276264224,-0.0008026596818753672,0.0019207626212034228,-0.002707532078284126,9.124403719073047e-05,0.011633616601406143,0.018532533277751242,0.06917056717845861,0.016028009612143086,7.861461774463759e-05,0.008475237449582515,0.019629650970350156,0.15314556557799786,-0.08514975391784874,4.395484632538536e-05,0.011829593221937725,0.0019159307190684224,0.0013785660394091497,-0.0014885105269608866,0.0010717586857365781,0.005163959496766983,0.03543372872424875,0.08358422690846372,0.07377686676201627,0.0001482362474472255,0.008137036456419819,-0.006965661005343432,0.004742519848232152,-0.17418345948443759,0.0007179224530424446,0.008492461407874472,-0.01395760825185693,0.22779489095123062,0.032032167474340005,1.8259539260719913e-05,0.012045750634046662,0.002047367044815543,0.006676194258184596,-0.11269656574265663,9.109987506584076e-05,0.01960164023141123,-0.015921309439328592,0.09924137893455462,-0.13210821177293003,4.515936343090824e-05,0.0021321882604458864,-0.028642027338966695,0.0259561806634633,0.0035840534062210956,0.0021522164137066295,0.0027492835558269955,-0.07077920824047287,0.5195353087717027,0.09385870097243933,0.00011210958357945973,0.026482889419155272,0.027993601716504155,0.1509282003617261,0.00985439473577433,0.000287208056121217,0.003028554023869346,-0.016269155587724855,0.1124845141195672,-0.0054195486504331845,4.074114513185923e-05,0.0038983412433636726,-0.02018739507265646,0.11647590046985129,0.008447125970036653,0.0002856478852455182,0.020324964004619975,0.03436142650198421,0.40561845427067106,-0.033738485634058325,3.515472545962833e-05,0.0026569166540702004,-0.0008950291683273983,0.01000562625882012,-0.007617892524543566,2.9886469957618605e-05,0.003808769089732929,-0.04929081147116256,0.13793979272632692,0.13120541223207316,0.0001151063160681287,0.017537152544854252,-0.06262942762991784,0.4368619493991026,0.054916810104636817,3.311514030271747e-05,0.023666200232980904,0.010506481099360206,0.030164179340621513,-0.04849426376283231,7.722237452057297e-05,0.0022974492318460805,0.00030072749914785774,0.0013057873095428689,-0.003272107940730714,0.0001053050733005783,0.0035073256845898192,0.02585866679815389,0.025868588541331977,-0.010465775500647232,0.0005713588495317427,0.01336175029593145,0.021639284000923156,0.09259801766475252,0.017377871776930637,9.836196732501942e-05,0.020736457960628105,0.018005430991092107,0.062418366422622974,-0.011427978461536313,0.0018514427940229514,0.00461903121375393,-0.014647146369431248,0.1304875269701469,0.010301399941845457,2.886464472461816e-05,0.00989955232280219,0.010345496441081615,0.02971448571069848,-0.04750398056420868,0.0011382938446418045,0.014055428847729456,0.04601596440982893,0.3523985150377842,0.10959347347215515,8.695610975393676e-05,0.003338671356330351,0.01729402320381763,0.02531437605860723,0.021348494914411313,0.00016124052224695908,0.01337490343302675,0.03841429908813055,0.05675498501383811,0.02045631939879481,0.00038850160192161994,0.0031731160396999756,-0.05435723265263507,0.23866754345201413,0.021081372617528942,0.0017652829095544547,0.005548672468414132,0.03962009027227846,0.1637261464704393,0.055116233077641755,7.764040478062527e-05,0.02356604759056036,-0.0511224197769229,0.0713566586574427,-0.05140819892856497,0.0017809596837990052,0.015981076740508103,0.011827408053149368,0.04153160912753253,0.01149072895740789,0.00011283058996960541,0.012068336458712265,0.01931891135318465,0.059742051546731754,-0.0015709170835173625,0.0001310879867297914,0.003257710050297449,0.016127240983361695,0.07251862532185369,0.0070051981854933505,5.427807510281502e-05,0.011617136693694182,-0.015495634891553289,0.049787564839966394,-0.06577566443507177,0.0029498949331037234,0.0027429935403132746,-0.007956057575927393,0.041282031503807944,-0.0011941763202063848,9.58688299810644e-05,0.009330361365530325,0.003784028523018035,0.019703770476150396,0.002853716754393299,0.00013927265214123814,0.02405434788068945,-0.047150731386149634,0.2741338271101199,0.03326673366835903,8.135317431052613e-05,0.009279113102915734,-0.001547321037468591,0.007335631548884316,-0.04851868304324753,5.301396847872303e-05,0.007735447653858148,-0.03667554563051151,0.07334287603359756,0.026781545795204083,0.00024380805033565598,0.006074047840408658,0.008492897467893959,0.03077662365351449,-0.03353458498734593,6.861977394524649e-05,0.01833883602442037,-0.05272485548806469,0.662577060651405,0.08977286929710108,2.053100872775649e-05,0.01561298315607905,0.005785069779672443,0.01756680520721345,-0.022480411345632077,0.00011511310825007223,0.0034532549019696155,0.014336945686173693,0.06387445538965933,-0.023525745044337576,0.00035379965137867893,0.0020699752926166106,0.026262437090847007,0.12517877808005404,0.030755740524276744,0.00012016448048388666,0.009885813737220986,-0.0004931318825940562 +2021-10-22,0.0182336329794399,0.13219744529234884,-0.007640638735506664,0.0001458601749510473,0.007455639233423293,0.029085917054498065,0.10248624245893753,0.012491948726997184,6.809695888487926e-05,0.014842225537510767,-0.013916925569693657,0.05029624544575384,-0.0002295104808020036,0.00012799851830913874,0.002766112131408512,-0.012274942375640653,0.015462226324173007,-0.14758618058905726,0.0002679262665953357,0.011955334849931522,-0.007016592742722462,0.013765036282171891,0.008106721885665387,0.0002667145337269137,0.0017299234053718873,-0.003506775371477058,0.01100951128645027,-0.0656592123492861,6.954832046424803e-05,0.0036984550928117043,0.04014445597151309,0.17930238170325286,-0.008420889408249616,6.569455476685818e-05,0.0018341728616567213,-0.021625922460586585,0.17031651644558085,0.007242102502350388,4.354281379210854e-05,0.004533627609645338,-0.013071665107174361,0.009899131773544626,-0.15229854724182396,0.0010183066829930352,0.0003752878496694885,-0.024839150520853562,0.058350117813683655,0.048865497825163424,0.0001488527588694508,0.003179213653112487,0.013082135832576364,0.011528404252713608,0.04002782122628855,0.0005546688993938702,0.013938146194216239,-0.009199733404365704,0.10497151907203219,0.010466042476201979,2.611719608188712e-05,0.005184204346202427,0.023746062957048675,0.06058944266700789,0.011829146805558776,0.00011642485215604662,0.010633056388324761,-0.013693655864339172,0.06027303287444056,-0.009409005740691263,6.395259661574918e-05,0.014348239982807626,0.005947003130679091,0.005329411485190025,0.0016192163470030638,0.0021764158807250984,0.010369461951879976,-0.0035361718267775434,0.019954130648007908,-0.019236637204933505,0.00014583194096172143,0.01735137908805699,0.004534350244580829,0.026367841196061212,-0.022491406521492258,0.0002662862370370318,0.0012224304031046203,-0.05919369382130988,0.3610518818917299,0.03783713205900675,4.618136706413714e-05,0.014718834322730056,0.02212534861262129,0.13327868806005003,0.008669695805920504,0.0002736000803931511,0.01623691501323835,-0.06695824090064795,0.9922183428939145,0.059009528935306414,2.800444791510038e-05,0.005470775634308141,-0.013285190933893526,0.16380067891824976,0.019077016903553838,2.7097786208713118e-05,0.0025350334041584575,0.04041176836309055,0.13143083679528197,0.02482342205993723,9.904517822617892e-05,0.009862801157988625,-0.061924252095637185,0.3755349947597736,0.0175110403249476,3.808927730116389e-05,0.02847640283566446,0.005509029508893084,0.014084244304204583,-0.005995425730991537,8.671993252161266e-05,0.005244448793602386,-0.006859835823634608,0.02193573476970007,0.027804352411766643,0.00014299147009256207,0.0020289397456248674,0.020648847211710238,0.023295219586702005,-0.026247301487766935,0.0005066459362728571,0.03734828147047768,-0.007247312591207397,0.027216550537155118,-0.0756286494610765,0.00011208046433667441,0.020052560210782406,-0.08353244084352571,0.3346835582137478,0.10564851613986027,0.001601916847528711,0.005156663886725474,0.009535272112814122,0.08861534276345645,-0.1327888841421305,2.766982196956984e-05,0.015468627027201613,0.0039752096455047264,0.00993994856384889,-0.0216460645790876,0.0013075164763410492,0.010637880706816918,0.008494277326216137,0.07184012687544071,-0.007403608962022396,7.873811047763806e-05,0.012159935205995922,0.03215393389973662,0.059624703659734955,0.06119927242834049,0.00012727797801770357,0.003990338686886774,-0.027670561534242268,0.03830985351392545,0.04962855221708663,0.00041458290950470834,0.02344317648780886,0.019590824484148377,0.07022022575008698,-0.037052798159915995,0.002162423904290673,0.011033612044048591,-0.015785670389712507,0.06756865899431322,0.025144910003615187,7.495629314339705e-05,0.005660010816065115,0.05466500881297299,0.07744536110521526,0.05848889002157928,0.0017546528460845683,0.01576909887014522,0.021756396563392382,0.07102899684265075,0.024602247334652654,0.00012135769572725337,0.027783002911224448,0.013117148943633347,0.029063593162925342,-0.06620728155117205,0.0001829576277229703,0.0042014618500315504,0.002255139653852315,0.008136001871135619,-0.0009042856623186563,6.765132808669076e-05,0.018636066325472624,0.005394592925956765,0.016271347162699144,-0.0019139333258305076,0.003142340372966451,0.02374093023880808,-0.03777436490429284,0.18908609887822236,0.045896290245482835,9.937522849135274e-05,0.001487981480768728,-0.010703283624236202,0.049728217777230875,-0.07466872768223118,0.0001560899435474485,0.02453497101635631,-0.00394197149656528,0.026080172301736874,-0.057179136973236414,7.149105764793413e-05,0.000494562865726845,0.007628095661080153,0.0297555939858535,-0.014386265837602899,6.443100439574064e-05,0.0034125549559463134,0.003120469186991564,0.005693644476026953,-0.05080765229973621,0.0002672138394668379,0.027875884418847127,-0.0016010619780248655,0.006739367740970274,-0.020616577299747894,5.907495032896489e-05,0.007166986596014648,-0.025905564516001615,0.2722371655997109,-0.0008549394169236861,2.455143785075349e-05,0.0010468172034438176,0.001593400409504475,0.003924204205757727,-0.0291244742244836,0.0001419326430105874,0.004117588831534561,-0.020553005309621394,0.0811122337301714,-0.010670252017977336,0.0003994081696496479,0.00546059308901243,-0.006362805130308201,0.030246613690182667,-0.00016398397590565802,0.00012048796212946987,0.009707133150149637,-0.0023191007177057205 +2021-10-25,-0.0006013758613655837,0.004337657795879451,0.00042268814153251103,0.00014661462333358837,0.007683422104774773,-0.017072189613608315,0.05630168152743434,0.00585561912011913,7.275760359898509e-05,0.017094121880027468,-0.002008616260460378,0.007065272495328358,-0.023918182067264166,0.0001315119635684078,0.014665910687041194,0.00792886508867626,0.00865590362746767,0.002597889603816802,0.00030914802200728974,0.004240963693486496,-0.011832877262842493,0.026801634276816602,0.001401060331588319,0.00023100791237181512,0.021741586330938038,-0.010006533085971268,0.02665539837116946,-0.0793017307286317,8.196816220628188e-05,0.0038790795196165647,-0.005781132997317384,0.02134198240256382,-0.01114991211104954,7.948186670048113e-05,0.004139078230475629,0.014215160296857437,0.12712838170329133,-0.004378314671946979,3.834492187241423e-05,0.02508221368331295,0.014029124726856013,0.011837020933797269,0.028510260148661398,0.0009139721183251144,0.006447544688447155,-0.001545327288749301,0.003883658831720468,0.0009370796764895188,0.00013913656869140185,0.0021532427153480604,0.011957292157996681,0.008657907042575182,0.03101564344914747,0.0006750629615144687,0.003733954333389922,-0.010167101501719948,0.13128760227048644,0.013475012422548248,2.3077897064571476e-05,0.009789585928651255,-0.006566704412025139,0.021095144813591066,0.0028702410515385104,9.247322301361892e-05,0.016581819322120703,-0.01792585950797564,0.10190678478885203,0.004580450263067266,4.951521932810085e-05,0.0009530032372134136,0.03031392829503648,0.029749456870346837,0.05417071983513471,0.001987403957310109,0.0076007517982526265,0.033467320675408585,0.2259722592324685,-0.002034034109912845,0.00012187592508071426,0.013856378697330656,0.002084638749749859,0.014023370593093372,0.0005774686530007575,0.00023019009226001385,0.01223029657449248,-0.04035026369873832,0.23568409204875201,0.03077925072301255,4.8225536002571076e-05,0.010356077916740135,0.04577823456927406,0.31003226623429364,0.050539760810527676,0.00024335425979217498,0.005115385783863996,0.0130456619071331,0.19516358213979917,-0.0008521218769807297,2.773943235008222e-05,0.03414004899834483,-0.007983722037621634,0.08356997480893494,-0.010947354053711595,3.191808639310271e-05,0.004597084124760141,-0.03517797356961002,0.08602292405339285,0.02353770206876381,0.00013172838678655172,0.014951454752164438,-0.0028284584226252827,0.020087943142029975,-0.008826955842851605,3.252420612465814e-05,0.009425834482155547,0.02106141579352029,0.05977170738557869,-0.03612675560662693,7.81212677976991e-05,0.007670969569121734,-0.0038972532461472274,0.014432479040918664,0.004151263769585328,0.00012347137586073714,0.003499358182202865,0.018617753873777867,0.02056221354588172,-0.02334365057606022,0.0005175269624742755,0.0034228357648836073,-0.025776864773156844,0.09563427928477146,0.030675602695691286,0.00011344948087893539,0.017012246517216327,0.02516759941464614,0.0854801005710937,0.012216239453590452,0.0018897134015530212,0.02839441997055426,0.025452629027071554,0.19886241408759245,0.011088732152694776,3.291259576389657e-05,0.012802779586448059,0.03492343957846373,0.11101611407977528,0.020966128487853605,0.0010284951750187154,0.03257818115974675,-0.013459506993013978,0.09738261100301876,-0.029430745534841245,9.203931570412618e-05,0.00431858696369912,-0.020496669981016097,0.03338180500678833,0.010601892629301436,0.00014491684782700197,0.0037868598229270313,0.011461517128753484,0.01304854640385843,-0.0016148863503100655,0.0005041779954431507,0.0165229343718738,0.007960313018020398,0.027913757950274513,-0.0038459038618759555,0.0022103557538793945,0.024990930303735674,0.005496681833635099,0.02043443339861637,-0.00015289178495086282,8.630349220946496e-05,0.001980363057255068,0.032052354923920744,0.049427106289617884,0.016375660810727694,0.0016120256561398668,0.004501440597445394,-0.02486470218554603,0.06886761591867512,-0.009576633680480909,0.00014304881011775904,0.014280502340050351,0.007976240534026945,0.01750094277795813,-0.038951524360246605,0.00018475541393849247,0.01471566178638314,-0.0204548913906693,0.09462235918992076,-0.027328979681137205,5.2761523927924176e-05,0.00396619047673314,0.03833614399278083,0.13125129979544262,0.018249479804672425,0.0027683619575866094,0.010279110500785615,0.03829652932779688,0.19532111340081051,0.03067266894355658,9.75328234595828e-05,0.0168348636780954,0.010217403576685985,0.06141588044891708,-0.18719571094874304,0.00012064814533045741,0.02494757770565362,-0.0028777318648893634,0.01631866885888859,-0.15723320257821474,8.340926509672348e-05,0.001733546446237346,0.028519253089790825,0.14561501454687106,0.010131677861177179,4.9224281336669756e-05,0.018935952866740092,0.027680522249075773,0.05421583309219713,0.006207299127572471,0.000248930171407317,0.010336886470283899,0.0011265897088451767,0.004857795162970935,0.0014219287908269417,5.766880571139207e-05,0.0026337347914734367,0.006620728123339777,0.08034114782364209,-0.20204286461889912,2.1261750008455496e-05,0.005455070457804438,0.022038200758349183,0.06474315234159102,0.030163168677644077,0.00011898473786842788,0.009471078178133316,0.000348813773337034,0.0016133570300495073,-0.0030075825930383692,0.0003407933489670161,0.008478275519245647,-0.029753066201078295,0.10417251891392816,0.03865900196246003,0.00016358759172730995,0.0034091262201381145,0.004435648497886579 +2021-10-26,0.040592716094048305,0.25941874866618303,0.05413256036374232,0.00016547536019081258,0.00620890961858408,-0.028884895593000177,0.10980175887154275,-0.04508541458297805,6.312073273200287e-05,0.002590922994427946,-0.016166218560910703,0.052060972860069735,0.0006026614591337392,0.00014364594508749594,0.00514632150138972,-0.010847460104574,0.013558774399323575,0.03203518689578419,0.0002700072857706,0.002867005395437024,-0.022153616091564986,0.05736233345193925,0.02774830074852254,0.00020207639610455083,0.009869702205556247,-0.0018720861818995562,0.005071001308843559,-0.026101744998920418,8.060813160746585e-05,0.010226869111058856,0.0037443546015295294,0.014954074599710853,0.0036917627033401794,7.346953368520712e-05,0.03374620124353198,-0.011798829753437922,0.09386797498685949,0.004551507304690625,4.3104250728165375e-05,0.005666351312381566,0.026451295310646303,0.027600231847987437,0.05270675540039592,0.0007390588136115908,0.0064397746121139555,0.027710555499157647,0.06831201262742216,0.002890903837337573,0.00014184369548486537,0.014371533763489552,0.015252122383535145,0.01025432631953373,0.03433712298256168,0.0007270219212372398,0.009162081515985904,0.0019657940864883567,0.024590838487954764,-0.0017307014881632766,2.3822507718468057e-05,0.005961112911085904,-0.005319226758547968,0.016366464138084114,0.002962625439970939,9.654831069422372e-05,0.0009309650824558,-0.014202379636358042,0.07237302637545721,-0.006209425933515979,5.52390501398495e-05,0.0014936873725513026,-0.013086460211543692,0.01091193482279167,-0.06994129587255753,0.0023390709666750486,0.002738495589907142,-0.02197157761439246,0.13955473684934697,-0.008449663671178834,0.0001295593519700408,0.002463415305153878,0.027361683817930815,0.14212253033936106,-0.012069158974195958,0.0002981179464083312,0.004695350433885726,-0.009584874459065926,0.05840336026686542,-0.0036498391052892953,4.622847316102169e-05,0.022900458859993363,-0.008376747150821125,0.05040954478534624,-0.0023707229173485947,0.00027387313832640225,0.005799641168263963,0.019789364140622323,0.261712034882216,0.007598472413323796,3.137894782039968e-05,0.01936239915023366,0.02091574287885814,0.2000986573036783,0.047487379254516494,3.492294250400199e-05,0.008061974156951087,0.0059981811089994674,0.015144828871696792,-0.0428736531405813,0.00012757863761701706,0.013504265285128322,0.005963371813705987,0.04364951308413842,-0.021920695520285232,3.1557664948161904e-05,0.016905470690415224,-0.052380162120759924,0.17110182975973012,0.37501707354140945,6.787183119027123e-05,0.002023865361348225,-0.015715434488865268,0.05035127858793952,0.09366022476221789,0.0001427133119577269,0.0005713255263489641,0.031876166347801965,0.025732563941281022,-0.06706137028768967,0.000708041291099641,0.00962714071893503,0.031582683878096963,0.1071729089883458,0.045450261454369825,0.00012403664864855187,0.012676474978899085,0.026640102032565737,0.10208522042189686,0.014157081940364635,0.0016749127466629714,0.021352065654979498,-0.00034509616937142637,0.0034877710495671587,-6.122423884022075e-05,2.54433542909616e-05,0.004316362118971655,0.08432421711335927,0.25382066074215365,0.14151620495323303,0.0010861670333656634,0.029645764069575687,0.03999298679402224,0.29642173952850415,0.09213364075610311,8.984614162694922e-05,4.739919154613209e-05,-0.021436366323015568,0.03462012562243945,0.0057297375430969705,0.0001461396008718161,0.007182849660738706,-0.05773946933002528,0.08577887539171354,0.14604319466686144,0.0003863637332273654,0.0024773716552223875,0.05829448478969424,0.2320121207171733,0.15725213413177624,0.0019474536750472247,0.006039162707340598,0.027220123811074946,0.08738333797393344,0.02267157769601456,9.994287451494677e-05,0.0034405939031350555,-0.026587698360968037,0.03547718384663016,0.019031817682344267,0.0018629825898289838,0.03895079610889809,0.025592204427154316,0.07021719268786612,0.030921770429956922,0.000144404348161401,0.0015857395332092973,-0.041311138508142435,0.10718130603869307,0.15013586570048063,0.0001562458515653724,0.004490598868282061,-0.023168452028782198,0.10082951241618691,-0.005307672283027126,5.6081971953211004e-05,0.008140253351222872,0.044575274323012413,0.12977603965889156,0.03606728172198681,0.003255498996007004,0.021468066788444415,0.011511377728732473,0.059213991657670384,0.004388813351614952,9.670379939548481e-05,0.009551107743296624,-0.006027524589484547,0.03398975113661494,-0.05081349194129076,0.00012860320450020307,0.00990341186547696,-0.006857047982622697,0.04451405092162251,0.00042820902147561055,7.285993323425821e-05,0.0009455522862808589,-0.026243879982246174,0.13849509084976752,0.01401495100289213,4.762566561121669e-05,0.009676911951094753,-0.0285930378572446,0.05177658500626583,-0.04859377681739142,0.00026925035884383227,0.03395954624860345,-0.009336905717448996,0.037003889773295336,-0.05048792836813984,6.274367763150834e-05,0.013787363278850419,0.003976938304258644,0.0519515161042773,-0.0438911775880166,1.975067365046912e-05,0.00022260562893269717,-0.007242648892652407,0.020169122296998892,-0.050077268558669216,0.00012552186902139558,0.0026040953744927153,0.025593781526265503,0.11349402206683097,0.03957070147097134,0.0003554589406482803,0.004381920266763297,0.004230636698931394,0.017590932580346764,-0.021453495965750385,0.00013774906645737167,0.009699138096606818,0.0032293618142270573 +2021-10-27,-0.010880152798629963,0.08409113289278085,0.004243486650617561,0.00013682686455708778,0.011930254112342702,-0.0393912307857548,0.1451258892189592,0.03412038075772916,6.512761635137912e-05,0.010617999006926811,-0.03188314599511484,0.10906135287953275,0.005479615315061049,0.0001352344975019044,0.014308187900301899,-0.017682861842029458,0.015130383514097496,0.050431292655474094,0.0003944304851032364,0.011210919757626937,-0.013380848830345748,0.0287050601439647,0.015729702039948806,0.00024390627604254828,0.015272179067971231,0.002372097861414279,0.006357819269087907,-0.014859548182159127,8.146501907494943e-05,0.0024761041004191338,-0.04806618934368879,0.1574319381390325,0.04910023709584043,8.958529044228896e-05,0.008719102445299075,0.006505075843162391,0.06417249015377782,-0.006610878158043882,3.476178641886772e-05,0.009323064474493202,0.015219935120611438,0.01418478072866489,0.024096587229467257,0.0008274370455657931,0.0024574726364094074,-0.0235791249786038,0.05948833342769683,0.031575348800156604,0.00013859825694678465,0.0007064902776028688,-0.011036452844477563,0.007070252341285827,-0.003982892642371686,0.0007629901932425269,0.007697653196977686,-0.007771194068602258,0.09900059921670151,-0.01522036734566565,2.3392289001787456e-05,0.003462110017186869,-0.0038720977077546,0.012013714500227585,-0.03129203671823059,9.574586754117259e-05,0.0008649943147676688,0.0016942676368439276,0.011670476475835032,9.281976067183758e-05,4.086535217598264e-05,0.017624627423738336,0.001624766536529259,0.0012742093298893837,-0.09030714356842559,0.0024869849531046406,0.004363794791313621,0.0983962203570438,0.612208363712111,0.12972807581318313,0.0001322608366927105,0.0413521510782773,-0.01987540851366743,0.12018745245444576,0.01586399708387597,0.0002560738116205991,0.0046922730382551545,0.010823074228774395,0.052702186602226364,0.005366813521025473,5.7847282071596715e-05,0.03527880625782698,-0.004736185085348125,0.02217885955244725,1.3031693235466139e-05,0.00035194618548523737,0.0009763734398361237,-0.00789093259857402,0.09316482418364362,-0.0302045409817239,3.514848386145407e-05,0.004382958642281699,0.0048251599258242964,0.052991521591821016,-0.006650212350538032,3.0421948818226802e-05,0.008187350817480905,0.01059488028934324,0.030501550149383175,-0.005447748964895299,0.00011189144904945284,2.575785524488116e-05,0.007271412682873033,0.0485822168417486,-0.017859470316021576,3.45727432818451e-05,0.011159866112522602,0.009141654997238638,0.029191344528545594,-0.007842738260498644,6.943015115716135e-05,0.013225900744418782,0.0032063842235225035,0.011518715146955388,-0.0241041779588568,0.00012727998636128087,0.0007145941938411332,0.03630388507102203,0.02985867062822178,-0.006500154385812152,0.000694957421201978,0.0010306808570581874,0.026005175119662716,0.08861913820279835,-0.006624635418167722,0.00012351459236960822,0.01450726111861409,0.0007314127328670463,0.0023045086755237878,-0.0003994585278635257,0.002037057761799572,0.046008981663987,0.024181817176767664,0.20977162167603694,-0.004670136030868157,2.9643152830591675e-05,0.005715491254959668,0.020786486493418445,0.05892739344911038,0.002319319434653414,0.0011532809701211048,0.016050841549944635,0.036587582177096886,0.2628861744538743,0.03005769557617492,9.268119132160293e-05,0.019165264415051,0.0662546114669769,0.0940815079080547,0.17432072844536953,0.00016621003014899186,0.0073188254425345396,-0.018241355030880705,0.02605578277796872,0.01403718943818381,0.00040184344183732555,0.0033073763008687985,-0.012416320244140243,0.044660213769330194,-0.02213106866912789,0.0021548768181706276,0.011674831285411066,-0.004522013251864214,0.015318531744949319,-0.03899527274394304,9.471201148634505e-05,0.012587114468770859,0.023436553415184264,0.029502418766250375,-0.026408820536153753,0.0019747554140630156,0.016381042855991942,0.009487921557406883,0.03445882894567277,0.00126047751344798,0.00010909041847485103,0.008882507348122333,-0.004123318788479524,0.009149092391302035,-0.1159795446676407,0.00018269609964177854,0.012329014362305733,0.0022439944476457738,0.010133316832063803,-0.005091244728278601,5.4048554237292205e-05,0.009424966066746374,-0.012930698786336101,0.04224707987887918,-0.007535527957712008,0.0029009707991481497,0.019076865348510184,-0.012868169172856964,0.0641803233811252,-0.00989155202224999,9.973680033346761e-05,0.01745698183320467,-0.02300422963452056,0.12732337033739677,-0.06103041540792475,0.00013102686571514195,0.0007192605685298371,0.013488351578738464,0.08639467769451654,-0.061794745484642734,7.384491372259687e-05,0.011779208890098977,0.052123584491240424,0.21865594532292001,0.09038102597146787,5.99129051098966e-05,0.00024646177542121694,0.058076601947147595,0.12582844433551357,-0.10218404617993485,0.00022503587825620295,0.006951296866826738,-0.023830446651715038,0.10073350175393585,0.024396685054348437,5.882644810874632e-05,0.003160817254171265,-0.00444889395559578,0.046000851988125584,0.0023263895831274676,2.495269533682196e-05,0.015673377441875056,0.01046349112800464,0.030380432536633962,-0.02428203100210066,0.00012039033479255096,0.007393484651817663,0.010483471984142623,0.046855535517712765,-0.01449637189174372,0.00035267299337991153,0.01125439312307859,0.0037439113896349913,0.016705642070701444,-0.030013373649432757,0.00012836132317133988,0.014790115048913205,0.0033910787390033833 +2021-10-28,0.02344239356018948,0.17659696460060018,-0.027542507495362963,0.00014038002071630048,0.016366538525741766,0.04248934039286563,0.1413652491522461,-0.0021255934550876493,7.211869388213913e-05,0.011578738997573376,0.0019387612258161982,0.006935719975316666,-0.03254944237816453,0.00012930936513773185,0.0014179372088080314,0.03651661740069282,0.03751651167399706,0.16367134047884807,0.0003285004336087642,0.006438143671907687,-0.03137373478925784,0.05917354561728005,0.06641127552140157,0.0002774191270380371,0.003360649516027758,-0.015632579782068546,0.041465506076221854,0.0031455853166253082,8.231716850646546e-05,0.0007699673313062074,-0.06567724845288178,0.2196858627336979,0.06844616132971601,8.772082245971339e-05,0.012793504210014206,0.0034891234974847238,0.031185681265142262,-0.026589156154345865,3.836716591994989e-05,0.0012564592962558026,-0.03979808467672328,0.03100680799817725,0.09653240982482539,0.0009898055812046374,0.0027054825670994836,0.0245303118508875,0.07286242346822161,0.025038351002662523,0.00011772300614497693,0.008292292676722896,0.010379764864668645,0.007760206604193256,0.010710412993834713,0.0006537904760891505,0.008593684274517918,-0.005361405185151159,0.0754705278531487,-0.01607977595556757,2.117015471465347e-05,0.0030914749279595936,-0.0012056851181865922,0.0031909530678760943,-0.08716915306065748,0.0001122443583447975,0.02243753511177028,0.012788083267476078,0.07105362876244668,-0.013459594874116652,5.066184609032207e-05,0.0029134037648102275,0.05571412703696869,0.04036966599665644,0.17319051662381027,0.002691740236498039,0.009724637315842664,-0.05491131137696065,0.3535774874352232,0.01305118575272474,0.0001277995480438413,0.01625254751984164,-0.0018119035671750007,0.009853689781299605,-0.02068297709011749,0.00028473734188959397,0.015137846107900019,0.07325373919241158,0.4042901884369675,0.12771472307240525,5.1038458865071226e-05,0.03248696485896511,-0.04497743121523005,0.255977951057776,-0.03217200751348715,0.0002895868901060798,0.018472223731053228,0.0633131873591029,0.8368002780618061,0.002964965734266246,3.139804395285335e-05,0.0030165045760914317,-0.0017927005553862718,0.02012583212843553,-0.019483062024222324,2.9760184288354504e-05,0.0016423266553031233,-0.021746239634640514,0.056441518527793035,0.012315072666893303,0.0001241104172227612,0.01317283235474662,0.022915070745651762,0.1971331555156944,-0.011211768373863238,2.6850594430019e-05,0.010573567660382083,0.006373551154155167,0.020256052853537657,0.0049827288875843485,6.975960881598122e-05,0.000912289985926713,0.01869426101318902,0.08552139049841807,0.09115058473419516,9.994984943464984e-05,0.00312784140793572,0.016458308928236704,0.019996106988423135,-0.018907563802435766,0.00047045200042026343,0.016841099752240643,-0.023504447965776193,0.08242976757298913,0.011645272438750652,0.00012001954871638372,0.008873481597770462,-0.0318094580195778,0.11726533685526107,0.010975992783300716,0.0017410281325508387,0.024047755274494854,-0.023569156141338376,0.23558585352992734,0.029646799776711273,2.572628167934527e-05,0.01799218455909468,-0.04423006187127298,0.10979149899030301,0.052111785077082376,0.0013171041012724426,0.010572644954944187,0.02601082012149812,0.20348282074058302,-0.0036667060866630006,8.512398365187872e-05,0.022676277708478174,0.017148469584057434,0.024514076888894787,-0.055167895544564256,0.00016510309319668056,0.008004631123504628,0.03327278322119043,0.04402114110282887,0.014853899007231419,0.00043384215462180005,0.007543241363606358,0.0009663661860116952,0.003369733704226534,0.0023585796310346746,0.0022227800211321496,0.002906057099451681,-0.03459761723512578,0.13683110362701073,0.07794829374252724,8.112444342045844e-05,0.0066903068294779985,0.024862630336045292,0.03182125430301995,0.006554175670901432,0.0019422582297736143,0.020618999532100588,0.010546224939143383,0.038213388199447626,0.008339022766752174,0.00010934464536706175,0.0024342401799383787,0.021494714803909274,0.05657299443465956,-0.055664912448193174,0.00015402204895996252,0.005477641622380158,-0.03178909732143113,0.1374181573521348,0.011758991761257324,5.6460926465573446e-05,0.006131260828882502,0.03935390215898816,0.11787920885455419,0.028115036160297223,0.0031642343957555374,0.01137498149463921,-0.023897470329295085,0.10944198439083008,-0.0254910627513055,0.00010861968593773677,0.024828207082621897,0.0028695945316564424,0.013906517323997796,-0.0007321196684022391,0.00014964525109592835,0.005517945566352399,-0.028820164426819145,0.1682743675348309,0.015631838771448,8.100786495789217e-05,0.02188983095428219,-0.05097614488098224,0.23875602720611938,0.08820718978085633,5.3661157886337176e-05,0.0033042269583619804,0.015646684028796216,0.029778973496961028,-0.018119772670218692,0.00025617808997983914,0.0029975497093151435,-0.02351767102119596,0.11554380101575491,-0.2127734281694452,5.0612994910956926e-05,0.0129279861203347,0.0229200996144762,0.2336633004772656,0.07930699555903853,2.5307968165848405e-05,0.002288647738726458,-0.010908501501404579,0.03921136754755064,-0.005978405321565415,9.724383351736932e-05,0.0008702350842560852,-0.016356578389798537,0.05386053159254869,0.004674419058947916,0.0004786849736350996,0.005090211683027158,-0.0047304557408871795,0.02295444855444343,-0.0005400966615289638,0.00011803421485433924,0.002096361064719817,0.0005744396690021181 +2021-10-29,0.0025481286541991603,0.017265991100410383,-0.0328551192447257,0.00015606891918838582,0.0029525349539516804,-0.022381962754406338,0.07516043597254345,-0.013929666322401871,7.145282511725431e-05,0.0101300617050531,0.03087297783908199,0.12558658606831888,0.06381902501018183,0.00011371885307013688,0.00701808760995737,-0.01742982987046126,0.018062952386932278,0.04061836207394298,0.0003256658854599082,0.007441128783699996,0.033286608186890526,0.06659132542425907,0.04754419772738976,0.0002615469483611113,0.0263490440900819,0.006133183022788181,0.016552577625214355,0.0034620823010152275,8.090344806547984e-05,0.002332862894088115,-0.05898383135345742,0.2731752615623151,0.05308080855700997,6.335508337507841e-05,0.03086758830828007,-0.008319315587412699,0.07786174128827222,-0.005351994385885737,3.664055992708666e-05,0.020471466069338282,0.003730379539303179,0.003197172071189296,0.0030448797999763754,0.0008997705958347891,0.0008353957395031905,-0.05640637575949701,0.12157189980750004,0.17050422695214776,0.00016223960455607827,0.011248806895771781,-0.010146138770597573,0.006524105760279599,-0.004265770490331635,0.0007601585130630048,0.019116285977857396,0.023891698361315213,0.2999041170466196,0.08279455288411243,2.3740364612770528e-05,0.0031638202749401404,0.006833997127057315,0.021525393019358127,-0.0006590741086329616,9.431369069013383e-05,0.00019242321251349893,0.012741099712084189,0.0713815531155456,0.023134481343187605,5.024383026259393e-05,0.013311111663431175,0.005191252736582288,0.004064399762106179,-0.01586106733143279,0.0024911434023206116,0.005168610752502285,0.020681023687015382,0.14356630917257412,0.0031668592375206873,0.00011854182366254682,0.04531873387685463,-0.021338572428624105,0.11937318408825279,-0.11820988917833747,0.0002768004648507868,0.019286733922453256,-0.025244374240132036,0.14561363690843637,0.009003909629147138,4.8834136938451356e-05,0.016384337860602158,0.10496072918682742,0.6723286654126086,0.2303271556997266,0.0002572953979644072,0.025097191320421895,0.00925776483825542,0.12714649500737338,-0.000553811666865525,3.0215652934845342e-05,0.0011535310688316073,-0.006595299587371669,0.06705146433609271,-0.010167999785534893,3.286305775898706e-05,0.0038254802135902354,-0.004771272559060111,0.014746844275720488,0.002894711827747504,0.00010422163643793132,0.02897328261306537,-0.05386032270221779,0.3884846883636768,0.014236320712402177,3.2024873352355825e-05,0.0015716303582738738,-0.0021438965947462555,0.006529800586836997,-0.01367717202917173,7.279160547456155e-05,0.0029995648916290073,0.0029207655489510123,0.010779271911592374,-0.07899805372328007,0.00012389559499250587,0.005626648565506514,0.01129152293546601,0.010419251001280614,-0.0012531730382320913,0.0006194290684960605,0.03707784489819666,0.013797357497008013,0.05596799316653091,-0.03552082822114591,0.00010376292162094837,0.0046594218449975845,0.06020762105276995,0.213912938772804,0.04978990392763592,0.001806481789889602,0.004048905691242412,0.00233711351402104,0.020879924420759262,-0.019991224422460874,2.8782802629546834e-05,0.0018525297362939745,0.07287331782861002,0.1947390367699111,0.04060594385426133,0.001223451605154044,0.007634938484907989,0.02522189618478388,0.20778215740905714,0.012398527362909128,8.083419650304445e-05,0.01862265135938066,-0.012326895760510412,0.017102654062212178,0.004525295873346542,0.0001701122537810934,0.007225671482033053,0.002446083673117872,0.003106534802842636,-0.05248376424144236,0.0004519589585632789,0.01160556595896147,0.018040396605107003,0.06263940217740681,0.014610339596332914,0.0022322807693102432,0.01048516684201599,-0.00015764490313020254,0.0005872199466442007,-0.058656537280575946,8.613298636798888e-05,0.012601127618166437,0.039984148383469684,0.05563518876262929,-0.06631853154123235,0.0017865512387413793,0.020828002362330036,0.01358600382708903,0.05377576066409076,-0.02707862845650323,0.00010009703350896631,0.0012910176134571856,-0.018120445455932173,0.04861708118193476,0.046207900964447234,0.0001510916153151121,0.006310231981770266,0.026516098429054967,0.10305886560204824,0.03644075512604451,6.279689778015622e-05,0.015013820328630008,0.04900398260535751,0.15350720986152222,-0.007582002117543136,0.003025663714174612,0.004121829520845585,0.0003828816881576025,0.0016937767773479552,-0.02581259924501263,0.00011244728983265182,0.018815862723951072,-0.02336953900083426,0.12459792317782756,0.04135909713861166,0.0001360191718377151,0.008772384116042597,0.036537612155274395,0.21877437426972624,0.056148368817526564,7.899369154974644e-05,0.015053083134236705,-0.004477803830736084,0.017286286738959038,-0.06777280166403539,6.510446070895926e-05,0.001936389059503906,0.0104637031638105,0.020908894957183368,-0.0022037535686252447,0.00024399657170334703,0.003831299907331617,0.003471636634377695,0.017798100472459766,-0.05231582587402558,4.850371287906874e-05,0.006458473290631677,0.06864888333027172,0.7038049945539717,0.31588672035854143,2.516589719913796e-05,0.035502349740160075,0.005773205351063563,0.015607099657942854,-0.020540099788109417,0.00012930156056533817,0.004216635203048525,-0.0036776441453788096,0.012792794389704975,-0.06639674641612435,0.00045313984839902554,0.008299671279600278,0.01012739780876244,0.047793288145925386,-0.023482447877291427,0.00012136759744632507,0.002592499605454366,0.007869443821369785 +2021-11-01,0.018726689560534936,0.11695582289292557,-0.016980477664362705,0.00016932681756417025,0.018341588284695606,0.042691195995745494,0.15841062892861746,0.034117431205145494,6.466429247665996e-05,0.008342220442996762,0.003197254412441261,0.010275065860511124,0.0021149988695616678,0.00014394274671111244,0.007123979902415485,-0.022318260625381375,0.022884520130989974,0.05112016777684497,0.0003291443398036499,0.00024191083829155696,0.044968259244168904,0.11322336014968272,0.09610995970093639,0.00020781065391602404,0.010741485336999246,-0.0069369488105665515,0.016237159298225452,-0.02491519790851276,9.328357424527806e-05,0.00207520214974884,-0.001514796748868047,0.005153564201541755,0.00227545461111026,8.624551678287992e-05,0.014217829191474898,-0.010293499010912945,0.08937689572360381,0.006997292513392702,3.9494477728776716e-05,0.002525221351496019,-0.002752564287931701,0.0023099751393243647,-0.024173482605616792,0.0009189141766789805,0.004448927178841565,-0.02984849172618568,0.06263135087517065,-0.004773082640607753,0.0001666450807561728,0.016647271774061938,0.0177467768879774,0.01260671546285843,0.02534438989802608,0.0006880846932092468,0.014035181936747205,-0.006454001616440185,0.084674270766161,-0.0028646465178875234,2.271435422243853e-05,0.002319602237811742,0.027809158519870952,0.0744245655615015,0.03150753641247246,0.00011099989739694389,0.004569350521367111,-0.024618298894270228,0.1392429658201751,0.0731164386031646,4.976758805522276e-05,0.00611072195264439,-0.04767684129739348,0.037494392346908156,0.07965677519229113,0.002480071077395131,0.006055956605676756,0.01700015009063933,0.12099153186938907,-0.028108729382864173,0.00011562450543020808,0.002896240783068102,-0.00223411329306846,0.010016001465637445,0.00612057841405312,0.0003453973849537246,0.010261557482492929,0.015708673792818637,0.0935109069371877,0.000562089734826822,4.731928873887347e-05,0.0024406078808164,-0.008859710746804562,0.05245183466624902,-0.03477477486801687,0.0002783848950276314,0.007931885625582412,0.0888410994931695,1.2744648842505744,0.06995663778549242,2.8927858354364117e-05,0.004788707687038159,0.00827212009897505,0.10314645280450609,-0.03571933216952239,2.679441274116432e-05,0.003932707637180148,0.04367157559951837,0.12795308654289095,0.018582548875970443,0.0001099438269853569,0.00986088654469884,0.06659569582129649,0.454209934908637,0.07047676962648454,3.3867403949251476e-05,0.022899221673094862,0.01426831290329433,0.03988042010049036,0.018189487289515145,7.932138389623364e-05,0.003993103453590678,0.009364344558405195,0.0359384207968116,-0.07457736081072407,0.00011914257748025813,0.0005512641415935273,-0.02768777231383476,0.030099131157683465,-0.005926113476845975,0.0005257867250227447,0.010654090972225505,0.026114154780026894,0.12785806095509594,0.004252509156825344,8.596741524422628e-05,0.0010682156854154227,-0.013682146919481032,0.05488317142627811,0.000319496201058211,0.0016000524720781507,0.004210502199180724,0.019475664279937317,0.17206894818495008,-0.046081384326616584,2.9105292682981485e-05,0.009496589058010551,0.0043518995305927705,0.014433154973210379,-0.041375052042003285,0.0009858000946384206,0.01368070791487596,-0.010263891619657222,0.07716572165475384,-0.006043748071206322,8.85754319043552e-05,0.024552838292890514,0.020042286986508742,0.033897036029839636,-0.013883930857126983,0.00013955035249369076,0.005980378725032098,-0.036334282507921714,0.05465943451184584,0.01958169838458707,0.00038155343534125363,0.023917729152690043,-0.01161145834942356,0.04714634571329995,-0.010055607269441276,0.0019089259130172904,0.010120914562118931,0.010015674198796022,0.039501838865935494,-0.028371001176834967,8.134919246830351e-05,0.012357550697730792,0.09547452752208241,0.09814728304662576,0.1687484395307363,0.0024181677665906444,0.007081397622669019,0.004932962318042994,0.0149509179030448,-0.0025540362961328474,0.00013072419548913964,0.011731130324234184,0.05108380956071818,0.1408501332875623,0.0949913035261072,0.00014702337601395072,0.0017556848249302627,-0.025351660212987116,0.10317087931140946,0.007451467359031287,5.997402528723596e-05,0.007103966214094282,0.039368317964206485,0.13827916168216645,0.018289374680521473,0.0026984115038778435,0.0033905429621928036,-0.025882787013921,0.14249242520761163,0.0012856752272279897,9.03565896999713e-05,0.007470529439568864,0.023843337273010138,0.11288429513613409,0.05162717036023583,0.00015317726149820934,0.00709273432903644,0.0020309710646068497,0.011099941654454068,-0.005830819358043995,8.654295873167765e-05,0.012582007412064252,0.06530716791412516,0.2915862367947949,0.10048568986221905,5.62912930324551e-05,0.023173061106162414,-0.062416408298994586,0.11347241503732755,0.14737752130566437,0.0002681870912368951,0.008143359603077042,0.017034503595205263,0.06987068287087622,0.03761528703544554,6.0624597793739193e-05,0.008641178583827385,0.03198002265021297,0.31492994210659886,0.027283739170841932,2.619968676867128e-05,0.0058331588300697835,-0.0011835838763801644,0.004019745968483143,-0.004806231977834507,0.00010292227954419891,0.009706603494485752,0.014094877052233694,0.05713448454729083,0.010515475906447158,0.00038885792036039585,0.020357588419640898,0.032067030779660784,0.1635545497319024,0.05716743934161337,0.00011229693809447631,0.005365049552938003,0.010244783253641471 +2021-11-02,-0.010067597098537634,0.061208956890136036,-0.05825523540723509,0.00017393918563758347,0.0011818917899703968,0.015169489178752596,0.054893435296855114,-0.03053896556168431,6.630725858659177e-05,0.008800321692218366,-0.018562326348589685,0.0613997076736687,-0.15616553715052386,0.00013985026861817763,0.00836766297223078,0.00403991139116172,0.0039909669169703845,-0.021575671359733633,0.00034163437944587864,0.006853742884297698,-0.04699014561868459,0.1088447958289233,0.10059863541523356,0.00022588994211025844,0.0013658576461809012,0.0029880332418378563,0.007098453830063656,-0.08605694355062916,9.191119285878169e-05,0.002162406725718701,-0.009898375937540081,0.03509286769901956,-0.06724845497586777,8.276275524459705e-05,0.0025343614504425025,0.008073181383045393,0.06512207975796064,-0.046382051950882845,4.2512345114148124e-05,0.0022366402170919918,-0.035149525242298564,0.027438049046430532,0.07173810642208697,0.0009878955337768744,0.003901335807327656,-0.002164145691174056,0.0060961810344542814,-0.016646917463081997,0.00012413393574759352,0.005148728365578854,0.01721365150786296,0.016326062602394574,0.01781930838908171,0.0005153661702973836,0.014756538748368764,0.002686068920479863,0.035287124337080686,-0.04808789939503453,2.268421075123162e-05,0.009154066734935257,0.025818182882376264,0.07777426211109106,-0.022962639182023098,9.861450775909738e-05,0.005571626590489239,-0.0008525964249324942,0.005401615580403503,-0.013288761838137302,4.44305462090418e-05,0.0077385717188699025,0.012934313458440894,0.00975574700680977,0.012821986363850109,0.0025858648628762073,0.0018465462712391517,-0.016318775114444146,0.10308736869954926,-9.071560228707723e-05,0.00013026693979181292,0.04485474419974064,-0.029261706557801668,0.21398651205308386,0.021272892489149396,0.0002117490559935089,0.011589559185368945,0.03311932470952114,0.18314022020844814,0.020358269628844388,5.093997142958671e-05,0.009852910782042678,0.04300810084650188,0.23307177641557292,0.0032641306298264268,0.0003041216839626302,0.014574796272520101,0.05889359685092716,0.7544331906072119,0.011653039884997576,3.239496565402183e-05,0.021910292774761347,-0.018969758067757563,0.2415535990997533,0.041107982928801974,2.6237955334544437e-05,0.003170503449607353,-0.04773287427341757,0.16602945547551,0.0037922322297705173,9.260942736023164e-05,0.026677609592416378,-0.003662249298834777,0.020339013328403516,-0.0046781768716567034,4.159205700904566e-05,0.00011415056151018485,0.00964144984782421,0.02634671433054029,0.0035954937027501297,8.113220255997722e-05,0.003400788741988091,-0.012255911125328811,0.048097659905351614,0.04759975144062097,0.00011651189112372063,0.0010805656890399173,0.03965356783555582,0.03036644876539071,0.007565476711421007,0.0007463865841375626,0.007970359318816315,0.02039326821106093,0.0852619482260378,0.0029870473629193517,0.00010067406113447464,0.019578792445282545,0.006048090655081684,0.022015749716325445,-0.013721957103974317,0.0017632097859215093,0.001632971454377091,0.009985468690929053,0.08915262607529731,-0.011992466010099683,2.880159302103266e-05,0.008548761187064147,0.006772567373057853,0.0206284250557417,-0.004473060705537521,0.001073392440084201,0.008937607741250152,0.019894958083455466,0.1451479491793052,0.010699651186886485,9.127624548814602e-05,0.015193434011877801,0.030295804813019106,0.04386733404131712,0.024329614359616013,0.00016299963752576288,0.012514738873139857,-0.03555306038646355,0.049038075865940965,0.03786760110010016,0.0004161476850748073,0.007043217427179813,0.0229119857967858,0.07923533441303461,0.027471524239119572,0.002241269996608528,0.009324895974956312,0.005963195458332592,0.023924895632717116,-0.010323299406437524,7.9968576094216e-05,0.012933267279968344,0.03583173875687765,0.060713237033036715,-0.010290834089999527,0.001467106651968422,0.013502078119235345,-0.025251120979767325,0.07141849233463941,0.012955966754938392,0.00014008318943522512,0.018965911452073703,0.028309390507725747,0.07620931878892513,0.007902503874258232,0.00015058538225018456,0.005277762435804154,0.020133352334028385,0.09492207661648706,-0.02302382958519907,5.1768167028737375e-05,0.0001767774528914838,-0.042976382623990825,0.13459697332726864,-0.023019390338874356,0.0030263044850887856,0.02156298627263881,0.0037916654328565046,0.01926183581721595,0.004350131251782775,9.79203378583261e-05,0.008009722572764071,-0.012859442408616535,0.075322648112434,0.0030804066306752433,0.00012381046141263113,0.01140851941957822,0.00024176746356014428,0.0012558935519566953,-0.003768236895910559,9.105288738276783e-05,0.004185050093590644,-0.0045237957270054955,0.0212868819371527,-0.002601590622231142,5.341193717280434e-05,0.0011552761493677777,0.01716176612054488,0.032868101545605315,-0.0036652476000286188,0.000254575586604802,0.010266661324639931,-0.00628190450021148,0.025442553311031863,-0.0031737807729896603,6.139669767454247e-05,0.0030472050842183475,0.010947857245808115,0.11659638855462386,-0.00016398447982070942,2.4225642970158855e-05,4.100262016385934e-05,-0.0015414978501436475,0.005805674008770471,0.003400751722493771,9.28109550211628e-05,0.005186006680159796,-0.011462853062671101,0.04018313299069769,-0.07872227222951605,0.0004496523853225923,0.022067136058848507,0.03370376228010783,0.1874729368811434,0.0275657182035921,0.00010297020942100788,0.004755992038255139,0.002224783245820644 +2021-11-03,-0.0008566824106064189,0.006300353010056199,-0.009090279285859528,0.00014379426002413014,0.004791832618984458,0.009545928105365791,0.03577070912807299,-0.0013296702274694908,6.40325999326391e-05,0.007379253429266691,-0.004218543811557383,0.014811428152159968,-0.08686876255205389,0.00013175370360446147,0.01905139608125765,0.0049891731016469204,0.004747971816146204,0.0004597867501303665,0.0003546404719349573,0.0007840701506021657,0.007242110227900237,0.016380526146590395,-0.0033631638234122257,0.00023133165008929163,0.016021345757370825,-0.00939877349220396,0.020407685122353105,-0.12658107873096777,0.0001005597484766964,0.002921339972366981,0.017307136865729836,0.07400113302718074,-0.025119999136673354,6.862410826740352e-05,0.013861935131310888,-0.021489522170110267,0.17647379408306346,0.022187758032498617,4.1758525039796134e-05,0.004502916577261309,-0.022400039219683546,0.01660268993632089,0.017810267811323683,0.001040435370643032,0.009937867341716703,0.06730931155919424,0.14104934182295084,0.15774726399947292,0.0001668652759688541,0.002281988693014001,-0.02342421155181396,0.01733024810540599,0.02705760749085923,0.0006606699589701828,0.005823136667124296,-0.0026987405729969284,0.03396056837396638,-0.007021716166667904,2.3681487470969575e-05,0.006368715137358851,0.06758899688597249,0.19257986917143582,0.17899204422768675,0.00010425962331062843,0.005632730521421708,-0.0039644440412998395,0.021403432028566278,-0.009639485350964785,5.213875932217046e-05,0.004358304565702318,0.004566102046064337,0.0039307368162098235,-0.04789578107969509,0.0022656593841654314,0.003592077412257812,-0.005936124111237827,0.03658600042223489,-0.0035348931168606886,0.00013351810050354668,0.0025952887747225143,-0.007448838847681997,0.04449481081739089,0.006793349002494692,0.00025923130488057924,0.007723813927383662,-0.02254043853672879,0.13780850891930105,-0.0017343195342397991,4.6073083986426806e-05,0.0014755225499276747,-0.024272825376769412,0.1367387530586689,-0.0007564821602027877,0.0002925603883178952,0.011325805027890136,0.07354685319631475,1.1709349884391775,0.042625807516919946,2.606522892499732e-05,0.010999830728191625,0.003345752664242429,0.0326512326226967,-0.059440418545851255,3.4235443674872374e-05,0.0027963558490558637,0.030569112333154735,0.09350793069129318,-0.011129615710032846,0.00010530697494997603,0.01585531703807298,0.02916794225107025,0.19068634139424634,-0.0366714355684599,3.533284281107591e-05,0.024886970097731866,-0.009549859121130379,0.026544594611178824,-0.00043365017870920916,7.976240678070588e-05,0.00749520039535923,-0.01985392244963375,0.07849543557898758,0.07921404685499481,0.00011565129843698169,0.0001249180836317427,-0.029262842601407754,0.031474702835035034,0.011824537188315882,0.0005314108707521962,0.00471901815644055,-0.012708630111811963,0.04127766398395603,0.004934602205181831,0.00012958944720917962,0.00040693838703836894,0.010986145505319978,0.03889561162289518,0.0029771973482088355,0.0018128585382320597,0.01734942762959727,-0.04024831817204271,0.38225182497771265,0.06247791494860938,2.7075741884776232e-05,0.008703119491479035,-0.07413343174083346,0.22818323578317326,0.12770309796225773,0.0010621886098689313,0.0374278804175158,-0.013005646135689273,0.08444475748823914,0.0005345798862120546,0.00010256162275802376,0.003034136390566747,0.015594650533938203,0.021145578854251203,-0.0008576813649764869,0.00017406099223447806,0.010255617765040952,0.002097257285356876,0.002770225149694143,-0.02256779185504526,0.0004345508039994272,0.01366092216266815,0.014655738941536168,0.0572440553221608,0.014150895719377173,0.0019843929198045626,0.0009895698943090917,-0.01928594730484796,0.07224659126343418,0.02195037898335497,8.564736086427384e-05,0.0006650926397476914,0.02231099796264185,0.03037050046819843,-0.0060514498533990515,0.0018261827651127693,0.011353907240958347,0.024473705791857765,0.0809060350241332,-0.05880293108983675,0.000119849121025362,0.0043750911059558,-0.024203529048454884,0.06495358911304619,0.057034062411852146,0.00015105528208907192,0.006560066155842546,-0.001995218486981693,0.009286942199120025,-0.010501045434650587,5.24362520846099e-05,0.004557402688299683,-0.006524167411325777,0.01968257288686095,-0.014767987872705543,0.0031416752173621023,0.006550131751034815,-0.05642398692863097,0.25671552938097425,0.019822898456823626,0.00010933323537447689,0.012049641035598382,0.01296315429446343,0.07658933660259179,-0.042336802011450646,0.0001227448181677707,0.0015721639806164592,0.00485364122455313,0.03143470319602435,-0.004804686057714476,7.303095927999075e-05,0.008345524868116039,0.013518602672957389,0.05944529802175099,-0.043215462787959215,5.715598190217091e-05,0.007791597747416765,-0.023816656521160728,0.052752177216428435,-0.008509855674643883,0.00022012521781050008,0.004567996850526397,0.02845441125669321,0.10861245205833789,0.16101827343670902,6.514549097125528e-05,0.0013285386434807437,-0.0006827928662175951,0.00822267294961396,-0.0024782039295812457,2.14243297232517e-05,0.045722672287128105,-0.0018568716508108745,0.0059296662544124626,-0.004157368404567471,0.00010946129962111984,0.0003871312507860104,-0.015621205317097174,0.0576012025609676,-0.0008165981412214846,0.00042747523629958333,0.0014392382597634985,0.01628181374383639,0.07103150631937426,0.007006660273976348,0.00013128755297475524,0.008650073187827123,-0.0005225959373714808 +2021-11-04,-0.0023842727072578306,0.014938532393626913,-0.02930044584674841,0.000168785283758429,0.011979649776992812,-0.00880185652171644,0.028331292490774276,-0.10536211819182585,7.454498363191765e-05,0.0018575026471979823,-0.06102750295770709,0.2257063573298682,0.1342203111642088,0.00012507744845758882,0.023578598359701195,0.012023336449075219,0.01475331346277885,-0.0028533275448867717,0.00027504470368633897,0.010551764795792878,0.0068382141937926326,0.015448219441639568,-0.0027164119288979327,0.0002316125256656832,0.008715930455432293,0.015214042834801,0.04097398533264079,0.07313634485232196,8.107429238528345e-05,0.004132529558537172,-0.006385670282185336,0.021558739689366627,-0.010985186283436057,8.691064578672456e-05,0.029051310494580488,-0.02059346255833056,0.17143176475204683,0.02055647947678828,4.11942587998291e-05,0.009389753538918728,0.013342357139221675,0.011971263575550244,0.00019658039641847196,0.0008594831267112515,0.009164013895851576,0.004485578433574958,0.01018926173841252,-0.0007186985076964558,0.00015393508754698665,0.009849453648154047,0.0050597655878858875,0.004031330788603309,-0.009797819366440952,0.000613488349831971,0.00910961237910832,-1.7559225728888424e-05,0.00023452579372122267,-0.0215980288036389,2.2311950452045745e-05,0.013952121039491795,0.05828388136343077,0.17318456563264883,0.06611075171643897,9.997474813526106e-05,0.013578169220087262,-0.030715243420749168,0.14972374614813794,0.056539134313384254,5.774642396057954e-05,0.01232565986350593,-0.011144210150410328,0.010800854326677366,-0.0014720754540823446,0.0020123992973482274,0.016020521729692185,0.06464920675195265,0.38472908548557744,0.039894164420689215,0.00013828029202786647,0.0067823425047907875,-0.013821100759251075,0.0744588928054089,-0.06596736498317886,0.00028743145345959956,0.017107889851705433,0.05471570582974524,0.3825145081457116,0.04433425377503103,4.0292577515337215e-05,0.009431429123650364,-0.046046039889180955,0.24133175337543164,0.04669942319339896,0.00031445943125360434,3.518194792941163e-05,0.03081045687563896,0.4728415429298192,-0.02910895011286286,2.7040377093456597e-05,0.022945742051018618,-0.005751090368797357,0.05954706578071395,-0.045253873118476985,3.226796184388934e-05,0.002170078094166005,0.0012103698656001026,0.0035606732093182605,-0.006485302167679227,0.00010949864411212586,0.027395812426752892,0.002886067288458969,0.024093427883929434,-0.0007397764351881056,2.7669431427731887e-05,0.033745996369901714,-0.01955464643717383,0.0782253819702695,0.03202519885259079,5.54216763495677e-05,0.00396201467923296,-0.0035474286457621612,0.011915997708679488,0.0008849759318025675,0.00013612310698769335,0.0002553739300528595,-0.005806692626774954,0.005322476717088891,0.010148952756930103,0.0006235777758304547,0.005706856489597121,-0.02166098346675768,0.06168896921854146,-0.055930450965240824,0.00014779395340093417,0.014669745439627797,0.02829056013648565,0.09568512889045629,-0.0588330185570068,0.0018976506991532176,0.007369923865846882,-0.016316687238135254,0.17159532169796265,-0.03698040472555031,2.4451682109503216e-05,0.009024223683823026,-0.02499365232410376,0.08184226297846221,0.014887289537123633,0.0009984432027021156,0.031806568028469206,0.022131519640065933,0.15807970058164741,0.009108100379731709,9.32310926223086e-05,0.0016652812345888406,0.01680676402299017,0.025544466042017582,0.0034682402508088178,0.0001552861274618689,0.006489372941911276,0.03007714250363494,0.040448719998915514,0.024887370558518272,0.0004268110988881555,0.009442155548371023,0.0280810489483648,0.11827871463805685,0.022789981349949553,0.0018401662933640076,0.016306590870148196,0.054538685104498705,0.2104668261740329,0.12723707381099308,8.314026062464543e-05,0.0013590756417766162,0.015089936546653592,0.020106571456624305,-0.016851083519949787,0.001865634583505379,0.013337557908063978,-0.04253144175604748,0.13600595698607085,0.05544491961738943,0.00012389911686405537,0.01843031542166974,-0.009618808710505532,0.029986195077428123,-0.020202152173367863,0.00013003501200115704,0.015534348756094477,0.008834949645041707,0.03627952612564639,-0.0012514842791604116,5.943693388913249e-05,0.008571252745626678,0.004339647551002068,0.010260059909945704,-0.0023826340284848774,0.004008875975905155,0.0022979710018501127,-0.00894670833513495,0.04553553620009622,-0.01862385074299424,9.773573767913492e-05,0.016074956732566745,0.015207444766538923,0.08355939835073406,0.017189264899675052,0.00013198413421353268,0.012368514018129701,-0.00870962197882583,0.04982828815730242,-0.036311151506105824,8.267458760980267e-05,0.008063789917109536,-0.013726194984181306,0.06583512107582645,-0.01679041192422546,5.240104165012869e-05,0.03899386771516442,0.04350960168263491,0.07791952196147015,-0.02181918872276325,0.00027225020915987614,0.004697886858627178,0.00377426470309034,0.016874575019304585,0.004330152607067571,5.561781041465439e-05,0.010368868563216085,-0.05083005383506312,0.47979537586227117,0.061939506768788066,2.7333534697968513e-05,0.010753851312662238,0.017782135437082673,0.05359166269799076,0.008192952075674057,0.00011598334956304412,0.0038364187819853223,-0.012055753801926673,0.050216008743583826,0.01041516530178709,0.00037842528794240413,0.007287317049550564,0.03243067782792153,0.16858037028842632,-0.012167306457950333,0.00011018457946044653,0.0011139087721559603,0.003681244605781861 +2021-11-05,-0.019076979287745186,0.14197969714190092,0.019730264237962626,0.00014209210453138325,0.0018775657586850168,0.01907666277597706,0.07823678372274163,-0.013698533835231494,5.850620663569458e-05,0.012999258023135144,-0.00469766834602816,0.0156420116738052,-0.12877057075407178,0.00013892709394115328,0.02942518895485948,0.03555805981922518,0.03273392262996418,0.08548917735220166,0.00036661300006198753,0.010634460807657745,0.005281211318102953,0.011463539856344324,-0.003616907160883854,0.00024105301751746908,0.010489075089720613,0.013860178745624884,0.03885163284397966,-0.0696974426632528,7.789441051487431e-05,0.001873249740060376,0.0313698695140765,0.13141936822084832,0.02659004203412724,7.003952504446647e-05,0.010998038280417476,0.022658740979391353,0.1940219226939829,0.014213798311680256,4.0048253874889915e-05,0.006225876164325273,0.0028496890766927566,0.002229388332361966,0.0024179084602259358,0.000985726745697357,0.0027142158106214943,0.00507659542801835,0.013402912965387873,-0.04009276645940273,0.00013244490107392284,0.012690830555713906,-0.01861373155631373,0.014496017535216331,0.015525030678156075,0.0006276378107475726,0.00017869118289654375,0.008561766305637738,0.12968511744799432,0.011910189739695806,1.967415186018414e-05,0.014739075953657284,-0.025683198848612608,0.05731112603359816,0.033949938602484554,0.0001331254873508468,0.004400757331401168,0.010488359585236437,0.046819643325400576,-0.0483024503434817,6.305815879236763e-05,0.0030882917604223145,-0.028008083231951586,0.021961284478861455,-0.002068241973037076,0.002487417143788399,0.005398606701793266,0.041757353599466224,0.27812225967590576,0.012405112003627105,0.00012355187076279922,0.0007309066419709477,0.03899028230373928,0.25602328587327794,-0.0900941391147845,0.00023582244860035335,0.020387270209126084,-0.02295191829684146,0.15526366432075783,-0.008300523499053277,4.163994178581052e-05,0.005280418601335753,-0.021686305517204383,0.1220395531123645,-0.056868407312197916,0.00029286789830970395,0.0327842296155673,0.04706640894193969,0.6787731718170006,-0.013550952572602344,2.877508574759601e-05,0.029522933417273987,-0.01886656708197787,0.190106685600304,-0.01699931880780125,3.3157150682891235e-05,0.006755738982549841,-0.02234767407770067,0.058745461883803175,-0.01801268074945402,0.00012254081429876167,0.002924344740639846,0.03733079127810684,0.27841482388686417,0.007858718226606557,3.0971854938512324e-05,0.02164357323763444,0.0066704534321337244,0.018719687420740334,-0.06520192171187722,7.900128333806111e-05,0.0036213549052098197,0.026943550241981876,0.11539244939406847,0.20802067942215796,0.00010676429187862255,0.0026359371849085265,0.00348489789818593,0.0033494061637611267,-0.04504399742919488,0.000594699816767997,0.011497320450623818,-0.010121840058115086,0.04484184063186704,0.008136271367400789,9.500840969129369e-05,0.0029786703909238173,0.00015061359092390602,0.0004282778387540328,-0.0004690745655036952,0.0022571360405851427,0.02770481547486143,-0.012485784409456361,0.1204680836277421,0.0035643822004248087,2.665176806964529e-05,0.0073273114362922605,-0.03185022409600779,0.09332435578618262,0.020560971670133224,0.0011158061773431417,0.00753844314271903,0.007705317877174635,0.055203900749225265,-0.005094757125993941,9.294936705762633e-05,0.017070948170729724,-0.006546285524016956,0.0097153485978494,-0.0011918996426787227,0.00015903105562356277,0.021275725462919375,-0.03495453269390171,0.052696413904319055,0.0031817783202988266,0.0003807381125507426,0.00815280622361349,-0.025695265630876634,0.09248121332052607,0.010427283884234114,0.0021535250799721507,0.004351146237936613,0.006982465799043785,0.024961396801126544,-0.001733890183597527,8.974914158676935e-05,0.026903276281456355,0.04262107837510109,0.055411630981389515,0.012375110665092174,0.0019120563724218996,0.01603347610437511,0.03311988960041513,0.1015606998696464,0.03778780949888109,0.00012920497369424744,0.0024115483435589733,-0.024494134537625268,0.07461745066394068,0.03200989994152906,0.0001330705855556319,0.008447314728393092,0.00243664800081063,0.010923851442319818,-0.12066976721268981,5.44416068557375e-05,0.00631156166135376,0.025567113777015267,0.0766511747222775,0.005040109638063626,0.003161410904989323,0.029670910710235587,0.06272848193464708,0.261989468360094,0.1434096831012955,0.00011910267470528299,0.014877044986743733,0.01589604465008939,0.08274745857035147,0.02221020000964514,0.00013931413868563725,0.003562070961345532,0.011501046378853947,0.06446317801048246,-0.002924677419092767,8.438676556319852e-05,0.01619942259400566,0.037638096891090426,0.1536204364388015,0.0068007183429228445,6.157806762060342e-05,0.0052304016006447076,-0.0015217872748868333,0.002758672203301799,-0.0082257915991322,0.0002689572424476747,0.015088785872570605,0.015118417696228804,0.06929058468831784,0.0345961081628465,5.425583976922025e-05,0.000493804475640556,-0.005001751249892526,0.04951838124219131,-0.007017708354420218,2.6060751535211312e-05,0.030726298248417255,0.0007568492055008039,0.0025459670180354188,-0.05445921260630711,0.00010391196336120618,0.002747467164462658,-0.008084812618605127,0.03013558225120462,-0.1484551284046833,0.0004228811654908723,0.0019218988144221833,0.018300801399173384,0.08133182431395278,0.004809310426192036,0.0001288787722606525,0.012905979235286448,0.00571726528703419 +2021-11-08,0.015629429796320378,0.08959703542326825,0.008798977781838758,0.00018447438789262105,0.010705495175091943,-0.0004055918472641658,0.001511738101086298,-0.002486644532267288,6.437588082828853e-05,0.023295952578430753,-0.012388716210953951,0.03936626410818989,-0.0031046090989820694,0.0001455791929077325,0.0032401079246177056,-0.01345849507375343,0.01246956433579894,-0.02029151934627988,0.00036426133582674586,0.01193733660004534,-0.014254772592149346,0.03326860367765546,0.0027424471362533696,0.00022419374532745958,0.00977802571551759,-0.014908515227913336,0.0441843216155301,0.04478459045914115,7.36737780920551e-05,0.0005426306636014637,0.027691339175587654,0.09102544289684895,0.02477823980380758,8.926290438489107e-05,0.007919133500780523,0.010151719572499015,0.08954619323238165,0.0005065235520312834,3.887685269121753e-05,0.011792167886247144,0.0010529745967751462,0.0007439040979482063,-0.010269676901495382,0.0010915552665799132,0.0027665669792562185,0.0322950669010942,0.07797996828058254,0.027938479842537833,0.0001448154908842401,0.023064469278630075,0.014587323226239748,0.009618718731420539,-0.040156635608824404,0.0007412807786511562,0.010392941923378734,-0.025766241181198142,0.3468697641997401,0.04772140916996825,2.2136421313418604e-05,0.003979703615028617,-0.005304597573499809,0.017642758848035275,-0.0009767282813645023,8.931758710619293e-05,0.004118243263575407,0.01012324218185795,0.04727437245522667,0.019352008842758096,6.027756118876817e-05,0.004925772595818478,0.0191636764804575,0.01744460422465618,0.02512009291814812,0.0021425979363282922,0.019666127911350976,0.03642685319263301,0.23715299823291439,0.009541169182554772,0.0001263994381766436,0.023654153393256015,0.04224157796411941,0.2373172258940007,0.020103443659501407,0.00027562531433125703,0.015434777112591992,-0.038656947900831316,0.2250190972685886,-0.0013895512011925354,4.839150620878412e-05,0.020853060191018007,0.004283903111001481,0.02474679893739522,-0.004872968669430548,0.0002853037089346506,0.015067221901896868,-0.008918785128060606,0.12825661054090012,0.006428373284737291,2.885733184853074e-05,0.013630614800589103,-0.003737297063272038,0.038788356387002676,-0.03988011003895158,3.2191258196498474e-05,0.004745028421604215,0.01072849523940495,0.028040428117132497,-0.002831610616541698,0.00012324716226681245,0.033425017227356614,0.1400791138139051,1.092629321858993,0.26191182247704886,2.961371623733142e-05,0.02579049458900466,0.010963489179848756,0.03319431774510497,0.009775711329063375,7.322551381598687e-05,0.010209581448389148,-0.017745031445819476,0.0698030901748577,0.05877366923351447,0.00011623869343334697,0.0002448884761446688,-0.045777528155691194,0.041533501937224264,0.10203934041056528,0.0006299837527903798,0.01404931400284668,-0.012960716908312757,0.055125163932239096,-0.00428943757640878,9.896124259467474e-05,0.0091112867399924,0.004227082336117113,0.019797030716433295,-0.013706674589293318,0.0013704393650199119,0.023489068590571316,0.011223342253425037,0.09974196484924185,-9.289945443173148e-05,2.8935199620107726e-05,0.01839351258462279,-0.01580482739059636,0.03958948260184431,0.004957501345022445,0.0013052124296267565,0.04856155639551312,0.02851799090216541,0.2120146489207371,-0.0002800991015349853,8.957332594699553e-05,0.016225953914853757,0.019241038141269456,0.02967981478064614,0.0004537918962413675,0.00015300749336430344,0.012266014100508402,0.03056754663844109,0.045288973718635446,-0.0277574991293418,0.00038741106262178557,0.034792801514250175,-0.012260177220639906,0.050697100896478275,-0.03192712322390588,0.0018744072876028409,0.010772997002105255,-0.002305499516407448,0.008833961124330486,-0.001034521043182152,8.373363059764639e-05,8.879113605432141e-05,-0.0061574086095281776,0.009904123874427151,-0.005551280376527363,0.0015454647464071517,0.013009824328104038,0.0295676709448293,0.10817579086361766,-0.060874015712173775,0.0001082936704929662,0.012489564861654728,-0.004479404991298917,0.013116830613182693,-0.003060402884597846,0.00013843687762994783,0.0016179732318660968,-0.024443909394758,0.11310498989059316,-0.04227098129874641,5.2747614682477534e-05,0.015771432539244186,0.0196367781009267,0.06794979866964732,0.002794791070505745,0.0027390509842166208,0.04348258576808557,0.0017354283287798786,0.008055728845044024,-0.08522664970908375,0.00010716239562284734,0.012611234222276816,-0.0017094936431232466,0.0080528471416231,-0.01990373967106384,0.00015394969014823572,0.004256548162152383,0.04804174025911397,0.2534915169324286,0.04803585684607475,8.964044406463015e-05,0.01619789982395812,0.06354542066186895,0.25778473085332054,0.07157247997479257,6.195472938347064e-05,0.022321758944636404,-0.00245818311854244,0.004647387317815119,-0.024309980576544488,0.00025789015156790253,0.0024093327400089024,-0.0030453270324618917,0.012281593270519945,-0.009194246059836642,6.165859193420342e-05,0.002730733439920492,0.010977301149982023,0.10413677972440809,0.001172842180417886,2.7197107669871585e-05,0.01064432292832849,0.00743262568646231,0.021453034900743705,-0.006135378424504403,0.00012110511520888505,0.0010920892995841581,-0.018714497765709236,0.07434212289674666,-0.019854115868045495,0.00039679956645064646,0.008818968539832377,-0.011082679141388024,0.05063812527248487,3.6197666033130377e-06,0.00012535421372743264,0.004271320126988337,0.0060740531651935405 +2021-11-09,0.015355313250266652,0.1183476123990975,-0.09556207179107519,0.00013720999981729263,0.0035756750231031287,-0.010598250981915993,0.043012612823178066,-0.060881509937501986,5.912197069119481e-05,0.014550509329312886,-0.02810099147821274,0.09277704792744264,0.002167929083473894,0.00014011295682770465,0.007036090921133586,-0.00995309883430845,0.010514775360781034,0.006034976985031367,0.0003194671255544631,0.009934656007333752,0.02511337325254976,0.062058353990666795,-0.11920190412971034,0.00021173983554251879,0.0008086508761145277,0.0076758695454655695,0.02175158600369874,-0.0003127369745664112,7.705190777887261e-05,0.0029267982978052583,-0.010360772842116965,0.040739691615039354,-0.050364209616497506,7.462155072681959e-05,0.006579027568415571,-0.031057480054485803,0.2391032771441937,0.03281344877915974,4.454298330138927e-05,0.014697880602671916,-0.011446773370460813,0.008236646802530357,-0.039446235847633807,0.0010717103571851723,0.006136003334099183,-0.02969362547494937,0.07534713482397429,0.03423953132798421,0.00013780290423290892,0.011733060980690565,-0.01918100802131239,0.013639031971058029,-0.1110048648969405,0.0006874042893868508,0.008549470331394294,0.002372828138555574,0.02666400254691155,-0.03431232806902149,2.6519402271417272e-05,0.013890627579526601,0.025311224808799052,0.06787385775272363,0.009724211109436913,0.00011078007761489869,0.010432965492461347,-0.008332995791813414,0.040438436431804024,-0.020084963352017458,5.800542668138317e-05,0.0008328877147362934,-0.06622073895843575,0.056632109649061395,0.12306572283811158,0.002280626966202443,0.0050323282023167154,-0.03619867889707473,0.2594711631436847,-0.03962692774648148,0.00011480365898254,0.004596001584488319,0.02106518138342832,0.13933916003669067,0.0018374771700955096,0.00023409937096623818,0.01349207523678264,0.0501496103256193,0.2630409502644119,0.03641838410471802,5.370381696348057e-05,0.0088910024733254,0.002417677833470399,0.013246368857248909,-0.0029482879898500448,0.00030080731412842514,0.017960670034620995,0.0846401422175483,1.1952852086198131,0.04316216353204056,2.938563435963374e-05,0.0058410952101989235,-0.01967605263850257,0.23902232811558655,0.057937843666013136,2.7503072435051125e-05,0.006585443563213065,-0.011830364048940362,0.03774576628078468,-0.02749727876306676,0.00010096076170652896,0.011877357064556742,-0.038749275843774605,0.25797393230194077,-0.03161128324415685,3.4696058638400485e-05,0.02303088548361585,-0.020903130706091018,0.057245043440981934,0.03192144722624062,8.095633320233847e-05,0.00687984058753885,0.012040127537624812,0.04396086132273831,0.030689229573682395,0.00012523147331382897,0.014045114086289123,-0.043196357363398004,0.03742979090302246,-0.023844079683872418,0.0006596374221929374,0.010964251674566298,-0.056852223576580346,0.17915594052370237,0.10772670571767645,0.00013356794711520093,0.007766773924932427,-0.0023017154468105926,0.007423669677731563,-0.10032297610266548,0.001989995835778056,0.010996797360333613,0.05266746196624566,0.6102914969784,0.07606687353844536,2.219153105778403e-05,0.011264976006927285,0.029087553362509917,0.08357945077339533,0.007852167751236426,0.0011378341125157542,0.007633480027958716,0.010185862111464088,0.08324462270589675,-0.08062463928809832,8.148304436135413e-05,0.009541623206976385,0.022051559582128427,0.031354883862520944,-0.009346403475868162,0.00016598907312524724,0.032017769887521794,0.002358446925572559,0.0036958816082100095,-0.002242360894447655,0.00036627895825214456,0.023248553709023772,-0.013302904429310494,0.051006593322584004,-0.015569025125215208,0.0020214848635430817,0.0020653185684478214,-0.0015147224901079768,0.005907876438116542,-0.0011776000093167852,8.226063176229661e-05,0.010317210534762089,0.026541653165909465,0.03558997843563629,-0.027656488040863986,0.0018538621459023993,0.0017725824140037113,-0.04330475440350891,0.14223638599036237,0.05112120603321393,0.00012062599463969349,0.00272035910789556,0.02970774669578703,0.07038143440511088,0.003618023239339105,0.00017110865385212124,0.00629453936881964,-0.0008832581686610095,0.0038374191822447556,-0.12400973689098076,5.617749186361374e-05,0.005515449660479385,0.024439266786260204,0.0891367877641634,0.004846558790760465,0.002598658739693642,0.005112364613016304,-0.04526781527159033,0.2851262403786417,0.04449242589340869,7.897559709449323e-05,0.02503419223855351,-0.006100112129144654,0.037575639654983166,-0.081414006685933,0.00011773137604592541,0.0020997154508151277,-0.03860507227078665,0.2532745240641873,0.051049079875246255,7.209440478338963e-05,0.01077406371173134,0.0060058925359419675,0.030848938686652883,-0.008193841155149349,4.8931071330228714e-05,0.007287560604576421,0.07193533338084472,0.13411242648475433,0.11060595328404817,0.00026151863122377884,0.005429952047006966,0.0010947703912084644,0.004255780186790457,-0.11584073382858555,6.396733103727232e-05,0.003412605435351562,-0.012028523537053826,0.1334200775928467,-0.026929219363436105,2.3260680655193318e-05,0.0087484548065739,-0.013641371820027315,0.04211614492205552,0.039031851717418985,0.00011321876146053585,0.012838791340326035,-0.00882084475363192,0.03680074251687968,0.0051486117327613455,0.00037781706339426826,0.0010880888364822544,0.00565376659128493,0.024228758592613506,-0.023044811418758315,0.00013365293751565056,0.01720833694290887,-0.0024572678351307328 +2021-11-10,0.014041912825211812,0.084604398270543,0.003548774275874453,0.00017551729432664724,0.011176524689502799,0.020094707584031177,0.0649140877877783,-0.08140203982848807,7.427681260344125e-05,0.002787370997201043,-0.022755694641509252,0.06440422169702477,-0.002179319011298371,0.00016344549906143935,0.003191458173910345,0.02863483297935859,0.030409638770733917,0.06269951264171214,0.000317798065565314,0.02049344974486541,0.010196410014622093,0.020904572499435666,0.005223443649521011,0.0002552135758419358,0.00826925863456243,0.02089139891160835,0.05232852821416711,0.08566798619206095,8.71717453742361e-05,0.0060063129941859235,-0.03204999355973761,0.13750480809037752,-0.003166535825481947,6.839115173764346e-05,0.0034077288769667606,-0.02385173599214152,0.24169688361285144,0.019404622772569966,3.3841340475342855e-05,0.00887338694586607,0.018187067054662154,0.015918394058915347,0.03926888718338536,0.0008810655149469232,0.0045845316086781645,-0.08371600730308144,0.1804968232350768,0.19472798994090035,0.00016218132002994234,0.0006237663297100904,0.0058645657547431885,0.004524608995618179,-0.0008257878269314783,0.0006335474739856483,0.0025629931248513224,-0.0039352051732567325,0.05498383752484826,0.0023576782998013268,2.132824507046316e-05,0.0003754019650670867,-0.05570810035742084,0.15703141297555284,0.04549158167574227,0.00010538598247578631,0.025210821218868047,-0.004429283283629243,0.020560465110423167,-0.024026423970016895,6.064043957832782e-05,0.0020778459813946336,-0.010964813304423907,0.010282247698029285,-0.030354935866101735,0.0020798698158252227,0.0006431180044343687,0.01934853279587023,0.11463158502269674,0.004239545017712144,0.0001388979539061932,0.047847137559095136,-0.052916009223429636,0.2962787004529971,0.1478883171104614,0.0002765635137750358,0.011266896117950035,-0.0045677258966885965,0.028505422102976227,4.9846215921502835e-05,4.513708559933835e-05,0.0017847927270746473,-0.022076821561955673,0.13460969672947823,0.01234936651719394,0.0002703005995971736,0.022140339490838313,-0.04213082644195757,0.5094157219199215,-0.10627608056499178,3.432083657731696e-05,0.018457123576754154,-0.007226191997813448,0.08164404283293372,-0.0029895626890710236,2.9571047144122968e-05,0.0031581916642463106,0.004081475100532088,0.012707233295065424,-0.049185235208927244,0.00010346391407370881,0.015793808527551047,0.0036117721169358213,0.02293236331079136,-0.00752901016091908,3.6380101250862906e-05,0.003345578730400362,-0.0025105594676479515,0.006529953314296187,-0.03398045572833967,8.523889654832152e-05,0.0010081358761648185,0.003500719584234659,0.014299639993381437,0.0021176238822146957,0.00011193884356802786,0.00861090398747733,-0.02526429250664042,0.027010072679191463,0.01976789722682082,0.0005346344619722823,0.02169902273828842,0.00745636137475486,0.02735013522344194,-0.059360227058524506,0.00011475020742328391,0.023444385785713215,-0.052604113212974896,0.19201126296628132,-0.09331762725324957,0.0017583777279645068,0.008211207514437224,-0.04059921040128042,0.36455955683859975,0.008796498610291397,2.863724894510487e-05,0.02001818457784125,-0.062413886129788834,0.1779738002203802,0.04629734111204412,0.0011465590328589923,0.008874922649015614,0.00847908415275632,0.06547213308349976,-0.04600736040448445,8.624185678911339e-05,0.007302602125400604,-0.00613860351855259,0.009189232932539268,-0.017096298814318515,0.00015766515057790312,0.011499875902064569,-0.0506109207486097,0.07925458107555279,0.03629779197693272,0.0003665420272178663,0.013109404206889278,-0.008898467127186229,0.032595810470166055,-0.0010662370642347606,0.0021159419929553547,0.023885252647773924,-0.005201666129393554,0.019959039759877516,-0.13611580332162218,8.361673402996159e-05,0.003893013726304376,0.008045210410445881,0.011668801667866642,0.0010813190335976744,0.0017139112931998314,0.021314636480040592,-0.03334499669418721,0.1239001443558972,0.0011980811605492884,0.00010662889357969166,0.00018916535718427482,0.04738220979691756,0.1189318652275434,0.06203970581864553,0.0001615018335895471,0.0076071212693527785,-0.024073679950840667,0.10559105916565151,-0.07931972329955343,5.564539905678751e-05,0.010196291273964835,-0.01583297535937303,0.05022173719454633,0.009812259411924682,0.0029880568963777687,0.017190960215231692,0.03989338230114593,0.18655607896426102,0.03836415999808077,0.00010637315106219318,0.010250966728620853,-0.02161702351394865,0.11213081129709015,0.009655718081058133,0.00013980790082508717,0.006848396812268972,-0.03898035291218009,0.2122908744779536,0.045207571787002965,8.684866347936594e-05,0.02180563570462347,-0.01777636838678688,0.08964932297096137,-0.001805849460892027,4.9836028154995644e-05,0.01276734361960242,-0.00044721764902094796,0.0009695046289492676,0.001690574905088984,0.0002249046534065493,0.026667226081888182,0.006117772757949826,0.028869027497705986,0.0061635015360146685,5.269574671396359e-05,0.004008736076574518,-0.01786205666754095,0.17101670954329026,0.005816824515223606,2.6947855021077568e-05,0.01765846265493205,0.02355935282177738,0.08563052888683478,-0.043526322857747816,9.617090309195015e-05,0.007055480486086433,0.027822860722786107,0.12458031853555043,0.11696322335185053,0.0003520305188087397,0.013044440184571567,0.016741709956995792,0.08895313644507095,-0.03479448341480794,0.00010779791079461383,0.004806126194491755,-0.0087101710844514 +2021-11-11,0.03589730430741883,0.2637754885968556,-0.05481936983891429,0.00014391762531358756,0.0113979117043425,-0.004108201276513237,0.01657290106829794,-0.014347125174642043,5.9479005979641516e-05,0.018033216819064654,-0.012679914141470627,0.03939788114746442,-0.008101822969397857,0.0001488814711755617,0.0011575616724244292,0.01682012338510543,0.024073578484161116,0.007081980483117539,0.00023580683085485437,0.01055306521140658,0.02539628613425832,0.0640761234821329,0.03333872380343187,0.0002073823321921041,0.005516492659179565,-0.01345667043163058,0.033191163683122485,0.034700338322349984,8.852417274161268e-05,0.0007955222299448039,-0.06112025964084566,0.18224023232257489,0.05318473842414561,9.840808605993776e-05,0.0011516234264215832,-0.05076707089502148,0.4711137433158143,0.08184136487516525,3.695344632775211e-05,0.0027476978923563974,-0.021363213229282044,0.01721645492229391,0.01962653055464984,0.0009569023741322952,0.008176369402336205,0.04855827231118239,0.12585599247230064,0.049125362456920424,0.00013491219675954496,0.0023454928002471283,0.01304861760855995,0.010227767545149279,-0.06608961440250243,0.0006236027383848584,0.009506270473016708,0.002674918329458236,0.03503138934435325,-0.0986461628993309,2.2754953604035454e-05,0.0005560705846747451,0.012167004378361884,0.037042348420042025,-0.04545978125300215,9.757446748913123e-05,0.027640994029807242,0.0015280469054051332,0.007010493550011646,-0.011493918796069095,6.135499286532038e-05,0.006811635854367585,-0.009265921339322365,0.0069976360433968935,-0.0012954916316178762,0.0025826183422111657,0.018742111283126552,0.03180867767244674,0.22718369205771052,0.009806074477970295,0.00011521806303714258,0.008428687676166481,0.021945654122430387,0.12230327746780265,-0.00811898330026712,0.0002778552881589392,0.011176186106126678,-0.0416834319164276,0.22699144545303596,0.01713956391500241,5.1726719222432444e-05,0.04976483611466838,-0.015551736953301675,0.08320338741857898,0.007714508200962961,0.0003080524743085226,0.009124706250939297,0.07317508441430032,0.8550764325224405,0.03681165296816859,3.5513095294239436e-05,0.01123714007379879,-0.030151792684520437,0.3277029461686677,0.11380624125392423,3.074075301125423e-05,0.007601674688562531,0.021935170873348904,0.06460469993214636,-0.002317863296219153,0.00010937036563952279,0.01422885045871089,-0.007014251607954966,0.056765954993317755,0.0022633039815216885,2.8542089783013237e-05,0.02399604871623732,-0.01474500261892944,0.05000197626419463,0.017045454225303472,6.537851723954206e-05,0.002163324598216659,0.006241935284578392,0.02345980306362813,0.004787012746697012,0.00012165879069656109,0.00027941356788914484,0.018916523584493944,0.015681165587802443,-0.14243870285954882,0.0006895067891284552,0.012372269282038814,-0.026697662909017084,0.09013615853169388,0.02128303023377388,0.00012466949755490854,0.0017449574953041958,-0.05930702019496166,0.2099827573677216,0.06833242684007579,0.0018127655715881865,0.018978754812990495,-0.028180497787777866,0.2694751371237148,0.011850550774386496,2.6891322062010904e-05,0.007800859110624942,-0.07279580029416177,0.23679708388867735,0.020755930057218715,0.0010050814203986119,0.019818416488440592,-0.018024994566175057,0.13734665110216684,0.03689790651237922,8.739422010813759e-05,0.004397030763146186,-0.01699369622181121,0.023526074500487867,-0.06996120165745365,0.00017048405588530172,0.002221861727047515,-0.00317702069195628,0.004447671161675968,-0.07144323571437837,0.0004100070146763241,0.002573125658280098,-0.04125615530906651,0.16303978683458512,0.023521314877941773,0.001961306626369398,0.012811489112380198,0.0031534969048653966,0.012899712092937105,-0.014025547556876563,7.843371071169119e-05,0.01534395296516875,-0.002235205370412585,0.0030354314212623114,-0.00875103978958078,0.0018305188212361882,0.013949069325497679,0.0021680782101856696,0.006534096911567473,-0.03157824060087861,0.00013146356635447554,0.017406802857676994,-0.015669776008112136,0.035053789856417,0.023487114098553294,0.00018121251413492237,0.005240915242788884,0.022541514028263522,0.10978703784241722,0.014713035530968161,5.011248509358049e-05,0.01659414232816476,-0.0846657828910372,0.23359912561799567,0.02954528583609319,0.0034352217252484733,0.004987175091875464,0.017107954392140468,0.07562202220634368,0.012829748381391995,0.00011253571326032501,0.008016799045274896,-0.017964438362315902,0.11222775044303838,0.020002609335696274,0.00011608448277196598,0.0007437886212921732,0.034615247663839235,0.17621927481186445,0.04895031263128919,9.291005823524906e-05,0.007967224102107326,0.06271639601543064,0.311449097085294,0.054675916988493105,5.061059143370882e-05,0.0033739857115986267,0.011471963174125105,0.02018146666891521,-0.0028890590997993856,0.00027714970029873217,0.004185610276650762,-0.030565746786102053,0.1168407444349258,0.08648257618353346,6.505116391820958e-05,0.0139390417627663,0.008237923113810901,0.08204160816044569,0.0029343286489376995,2.590686458310839e-05,0.02270688701874276,-0.0017262057848185866,0.005096442397832479,0.0031583866144755837,0.00011839528634443504,0.0011712169097718892,-0.031227314801316765,0.11663620467728422,0.027831497753702653,0.00042201630723562994,0.0075614864301133036,-0.009459375960646138,0.045004812836900346,-0.08495988873575432,0.00012038581654412441,0.012889823841971881,-0.004178708687631864 +2021-11-12,0.03386744868716948,0.19055048961709425,0.03271211166771878,0.00018795721283481213,0.012508825235861703,-0.02296286279156409,0.07710865903757427,0.023929001712738863,7.145512887175521e-05,0.004646822440064749,0.02866176179995607,0.09658877283640428,0.009662059745180853,0.00013726930615866968,0.003130057682561189,0.014367098571873885,0.017074783534638358,0.0013386765362460903,0.0002839760546449396,0.009572045776561587,-0.017783145950319403,0.04344844469155121,0.00348638598629609,0.0002141569289593609,0.004109252928378592,-0.012320207671253641,0.030980271825395304,0.001924707284734319,8.683194801700355e-05,0.005133701384259802,0.04556885632177295,0.19605878346513408,0.0758240323792435,6.819800659338246e-05,0.019142705878760238,0.021583146696099138,0.1798205100343955,-0.10113323530574546,4.115988492555503e-05,0.017916175487104755,-0.015515143092887006,0.011946330526358902,-0.001442081234943117,0.0010015348030653643,0.012851866190122033,0.01722666150728575,0.032943084370544294,0.004777800555916482,0.00018285159291289073,0.00754935751491758,0.001457034877014141,0.0010215900974915595,-0.0909707561425699,0.0006971361943363315,0.0013902895229018324,-0.0018650541742287953,0.022682396354079436,-0.004505441510654432,2.45033410970811e-05,0.005617470185087442,-0.025574790927132968,0.06923380885231034,0.02508722836743768,0.00010973493360925818,0.004867336139006126,0.005040769241471065,0.03044572192553172,0.005281837785576217,4.6604983488686076e-05,0.0036771036886013024,-0.017705047517928948,0.013782910781601983,-0.011302120998478467,0.0025054118334495623,0.011009964374971662,0.03370003388856431,0.20849116091111,-0.016135356754230064,0.0001330132171705814,0.016581728631045362,0.03195197922655129,0.16647932481573727,0.0072957440958265375,0.00029719786911259387,0.007802525336852099,-0.018164603321485454,0.10357774744061914,-0.05692837544479096,4.939925647039075e-05,0.004650688693018633,0.00336763836939724,0.02025126151821628,-0.001212999593201971,0.0002740691636167569,0.01039584235321583,-0.004728382138964295,0.06903113876089284,-0.045847329951332644,2.8424822520215604e-05,0.0062322668483592416,-0.008209842966154015,0.08202434730951967,-0.073110947255327,3.344057805266808e-05,0.0030654627143973222,0.024231507993286584,0.060260827149298805,0.02070052451190023,0.0001295293271503999,0.01362910823040693,0.04995520866703324,0.31011973609974436,0.01269271470335568,3.720863581816333e-05,0.02921241874040042,0.013424257334583646,0.03985570946379461,0.011047446613359822,7.46753224702854e-05,0.015184481024844078,0.002601037528662199,0.008933534319665369,-0.008113359427067113,0.00013312876519784732,0.0021522050896489358,0.013414966875858737,0.013859107583229896,-0.004947106665749183,0.0005532607994931222,0.013112224034485127,-0.008220672697379338,0.03438751553438286,-0.004002805248163555,0.00010062191230746129,0.019449298222768755,0.02916388079337805,0.10867008438725409,0.0019582944725577782,0.0017224811773064901,0.010384229516027976,0.047541547657965595,0.5022545362286325,0.04348022010214118,2.434062037365383e-05,0.025508669367546248,0.05190375450987926,0.1373478719300503,0.003903623252195244,0.0012355152464700288,0.01678082410223255,-0.03302023280028418,0.21546589018955914,0.07329948671757072,0.00010205334545412022,0.014138529713869861,-0.0018738304109976551,0.0028097413187150623,-0.043558755315270994,0.0001574016683279277,0.004633150282223809,0.0033533542273059833,0.00474130606542529,-0.03948408446065797,0.00040596197303884165,0.014742114304462038,0.016764254867575122,0.07240635626244178,-0.0014487252511051418,0.0017945596688335125,0.015882059802047904,-0.033753796020353784,0.11900642818512978,0.07479008359477263,9.100024704338598e-05,0.00998503395996272,-0.012304364600964582,0.01793031191875373,-0.026543001869334743,0.0017058802404493003,0.040152552036885655,-0.029550069777322753,0.09669398533875743,0.029050008208684083,0.00012108074563669085,0.020648538604890364,0.0267435229466008,0.07609885703998896,-0.032976181442381215,0.00014246259759264528,0.01172268347032443,-0.006315681495774909,0.02791307386281523,-0.011798244525389376,5.522382451803941e-05,0.004873256475674945,-0.010901355380940324,0.03175019019877961,-0.002144683808420962,0.00325425982290498,0.01711497513029157,-0.00735545043505692,0.044253430304080646,-0.0052073624648566,8.268046364753401e-05,0.017117035886833814,-0.029476627125036167,0.1548706330951393,-0.03752484531404226,0.0001380287320129691,0.013028952169734796,-0.013828740165535815,0.08395867690762397,-0.00016358965245829956,7.790507128523402e-05,0.010794819697625737,0.0620096827632966,0.3309880728036644,0.033516924258559185,4.7086299449781936e-05,0.012228581594669186,-0.004601463591988919,0.009140900654208743,-0.011435065269359976,0.0002454349436810885,0.025577135505170538,0.004116389308874887,0.01770561341972983,-0.06317292179887363,5.7812245701454775e-05,0.0021554397370955438,-0.00029752279891861983,0.0026101317224502822,-0.0021041433803050875,2.9409599579751668e-05,0.007817121728788148,0.007156144929928025,0.0192579168937482,0.0007311664498555439,0.00012989091731349976,0.004032593231454484,-0.004498857277291812,0.020784469323588073,-0.007821768993648906,0.00034118603450079767,0.006672460444177829,-0.017114765155359417,0.09218949231024534,-0.03558957403527991,0.00010633134733729228,0.00804361492391223,0.004263523556204508 +2021-11-15,-0.008394685988794195,0.05444844645141649,-0.03980787382967146,0.0001630442722834675,0.01275638659110796,0.01732345560006853,0.04953201609261647,0.0005307998763106936,8.391875816963365e-05,0.0042191263977141135,0.031597343627174236,0.09784802291208211,0.10042652847818147,0.00014938112398793366,0.010425859618030196,-0.010154782814125202,0.010118067841942989,-0.0015479585530629393,0.0003387200529879901,0.012375814389112373,-0.033519863434541115,0.08462490028774447,0.02310582041262862,0.00020725348542594707,0.005141986444844239,0.010689156235966973,0.030733025610298056,0.02526489736355158,7.594249248060942e-05,0.00212195595787959,-0.030109914996104513,0.12030306535855333,0.0035514064436048156,7.343831289402425e-05,0.00701080698733905,0.0163314806151198,0.12169051387045257,-0.021142982132044307,4.602220781892927e-05,0.0023491025930579305,-0.005761873586357515,0.0047727871694323905,-0.001170421871059751,0.0009309716239721708,0.021095046526605574,-0.011905709544218395,0.02507267096545691,-0.031242395529346854,0.00016604146944731158,0.010035752279243903,0.015170253616925687,0.011319581865646937,0.014942583323908364,0.0006550686489020842,0.006770480019248253,-0.0017573697067478997,0.018795561643105214,-0.01743158535981669,2.786317595809455e-05,0.0025890133420051024,0.00029804841037026905,0.0009239530185220692,-0.005248734654720942,9.58270147738672e-05,0.0003618349474250168,-0.008869962412472192,0.04763302294483425,-0.019259247042721497,5.241739738644065e-05,0.00792624518521537,-0.003235227957983393,0.0031547722581264136,-0.0027017941619355817,0.0020001374724795927,0.0031019446479696056,-0.054109648717634094,0.3208539200963012,0.04112556356299452,0.00013877763192968222,0.011495139258671393,-0.01143523725147036,0.06225307634848511,0.012932377151466416,0.0002844412599420639,0.013564497841049463,-0.027806164465166757,0.14743989326906354,-0.05532025036360682,5.3123543407996585e-05,0.03705182202613256,-0.02602273608380834,0.14435154918943224,0.01590622107588866,0.0002971107157466516,0.014547823155030028,-0.052591241673613245,0.7191011318528497,0.07981250296778271,3.034964975382032e-05,0.022430915122039468,-0.016138073534350334,0.1780752645445598,0.0035689586625436516,3.0278182400494066e-05,0.001940436034189858,-0.011626504165811118,0.030061664221477272,-0.023048134086825135,0.0001245830295968872,0.031015183797907214,0.026625046016901945,0.20306224610586812,-0.013666164336868928,3.0286811700628415e-05,0.0220014688840365,0.010565986610279987,0.02846490799092889,-0.0011472507047278896,8.229579669629499e-05,0.0024310427864692352,-0.005581911825049718,0.020100071423763938,-0.013044161650827193,0.00012697960355108275,0.007383133400051513,-0.019057454065617624,0.02183639737262129,0.015651383333236995,0.0004988379136656632,0.00037323187278969936,0.016513116803596718,0.06139584779613589,0.015371143603977561,0.0001132077245175935,0.007687963091771064,0.000989711660428172,0.0036241691714031677,-0.0010317701098743013,0.0017527476759072488,0.011942852998356257,0.028535279717998376,0.2616737374816897,-0.007844816341069151,2.8041690517995374e-05,0.010370493363493317,0.01691497376170071,0.04756542518477336,-0.025689856492866876,0.001162655940625087,0.004553337549508538,-0.02272711118516901,0.1924541211685524,0.032399753550826714,7.863984782543504e-05,0.03248154347391268,-0.010358890339992828,0.015482333429315237,0.01342038630101694,0.00015791457130560045,0.0017848410756334315,-0.011780667843697114,0.020319318734810115,0.0003932384364246474,0.0003327857199596615,0.00032868309093204377,0.007151986552544223,0.027328868482939167,-0.005122808722491303,0.0020284083035435555,0.007994160178871468,-0.00044769873893852,0.0016268109467671148,-0.014280075881416133,8.829561896894752e-05,0.005427730621332719,-0.022365517429053232,0.03243555686448053,-0.057380759731856926,0.001714094586998257,0.022367013901166962,0.01797804798124159,0.060418220312857915,0.004378923265150256,0.00011789371229428069,0.033414589065937715,0.006543435565759738,0.015673388101590684,-0.005739396869599116,0.00016924011768307493,0.010307816699615426,0.004339318671716432,0.016098520347845056,-0.01829081256065963,6.578842801891849e-05,0.01359503486328869,0.012303100875781896,0.04011952143736712,-0.04897394250080373,0.0029065439806923274,0.00263744134046986,0.023495665937026084,0.12226073137819353,0.014075241003409213,9.559635645853822e-05,0.02940283300280978,-0.04068241598075813,0.22843949581325765,0.07975470177924666,0.00012915057010886292,0.019062760148152242,0.027146218303504832,0.15799260967185233,0.0312239923557788,8.126831650278101e-05,0.023235740815619747,0.011908830420688169,0.06352664307270699,-0.023002428763071188,4.711515230279941e-05,0.0050795279440871725,0.005460932124898248,0.011225372007659882,-0.02365671972482141,0.00023718948400944367,0.031117011327370495,0.02439300335897866,0.10358987777188547,0.0702703637468602,5.855477693075932e-05,0.0014693932331494644,-0.02152026403690341,0.24960678128346572,0.004817077691625291,2.2244492448660015e-05,8.772475671422304e-05,-0.011102615876775353,0.03164877686152993,-0.08515881969800852,0.00012262452799526984,0.0013946974225868243,-0.05168731596575244,0.1980029203349104,0.20602360807281977,0.00041147206469157227,0.008435849931171559,0.07047517318218646,0.3498248907185496,0.2143068336455889,0.00011538709525941105,0.014050356183438176,-0.002109181263873688 +2021-11-16,0.008933676892076449,0.06804826372263431,-0.045749418199209683,0.00013883525955699463,0.00458092751189259,-0.001803489258957723,0.005139162462354856,-0.07043903909391276,8.420380942002091e-05,0.017047361258773614,-0.027943746808391363,0.09271196423541489,-0.003589801974073193,0.0001394267357416296,0.007698077414146673,0.02011507334785036,0.01872146162053724,0.020285187149362907,0.0003626183061441162,0.003953140070723484,0.010791790985389429,0.022889464912220367,-0.0003166580092238784,0.0002466923359610835,0.017985659802509386,-0.01860647409107895,0.05346773295183251,0.0630108755244818,7.598345760104433e-05,0.005854871023203557,-0.047751916033900076,0.187086000204517,0.0146775636768616,7.489267921147087e-05,0.021907034892385806,-0.025881903838160865,0.2325958432951148,-0.15703640691605086,3.8158639719850826e-05,0.006737500093152917,-0.026425415474866445,0.02248679727157857,0.008411576964566042,0.0009062311920763336,0.010976776709904202,0.002040784097486641,0.005454516928695217,-0.0003950970720781101,0.00013082858790035748,0.04176143149712487,0.005357665883060994,0.0036606155630126646,-0.012429247622359352,0.0007153949381789917,0.0019215030351291836,0.004113062001936965,0.05578339291083302,-0.0012780243132261627,2.1972684503260557e-05,0.000944539912731018,0.0023942905062364675,0.0075068723451794835,-0.0108773552824388,9.474773803628475e-05,0.01483083806426614,-0.011624004310192693,0.07272868415332125,-0.04554774552172486,4.498957085025654e-05,0.004194040356277396,-0.030724262116783297,0.025776795659864193,0.01732431469293395,0.0023247459796682155,0.008352303331992864,0.013331227405531351,0.07918350621273397,-0.013023083856880986,0.00013854393427751034,0.017339037729342817,0.028017597320484464,0.1726796627436469,-0.03777766077915584,0.00025124529020053655,0.0019118154719688595,-0.022267262543706177,0.14893010660547998,-0.00043098428834388965,4.211582237307134e-05,0.021852205506766885,-0.015956674579245534,0.08417660988591884,-0.034227164345970174,0.00031241923490870515,0.024095797952276822,0.025718115508033972,0.36975347918753315,0.0002729107726730978,2.886403913082864e-05,0.019608721075905004,0.00017475963949225337,0.0017529938416647646,-0.0033464918798265016,3.330753238360704e-05,0.0018983852469920699,0.02211729201055834,0.06080381808327563,0.015948863092190818,0.00011717200371877943,0.009833388052044086,0.039492308759218046,0.300564246280843,0.004549537806339954,3.0350621043887296e-05,0.03151425070352072,-0.004592368101850478,0.012889998530036,-0.001884098166050932,7.898801613127395e-05,0.00215778367958365,-0.0035077959840457964,0.016297613276082642,-0.01489959648711124,9.841446000749947e-05,0.01170882436009815,0.04954259326194263,0.050077118794088285,0.02024164559266573,0.0005654770235221419,0.027746882724227703,0.0179121045361362,0.05498773815661775,-0.006116307173748309,0.00013710925411984494,0.008972483860532775,0.002236424752499168,0.00904256814006013,-0.0587607498510143,0.001587382817347129,0.011275893220851933,0.00605576281995459,0.048245204312399266,-0.060939650013376236,3.227727798772763e-05,0.020174639714007896,-0.004356487613164484,0.012295504116088133,-0.0008503233280068926,0.0011584076416979428,0.014147284686909303,-0.05951932031079989,0.43943168424155016,0.09503051108037734,9.019703029189858e-05,0.015938069984696542,0.008834274428555321,0.013894816595186644,-0.007084326604434272,0.00015005948571259923,0.021262442051291533,0.018217999569964845,0.025165589384245495,0.01461188863549172,0.0004155253224281903,0.02068647113669059,0.0382769162066579,0.16957505563175385,0.02820702424892631,0.0017495457933415794,0.0019175229716963615,8.632803434991856e-05,0.00031359479986125584,-0.019073745132394165,8.832291017328692e-05,0.0018813777308727127,0.011042850603168458,0.014303424067988646,0.0008254044504084892,0.001919191774970265,0.004493162373886444,0.06830195143269141,0.2227158131773222,0.09415187558634946,0.00012150610370698007,0.0005190951106731044,0.013431018287873958,0.034594585982603794,-0.010039643409836152,0.00015738421748058763,0.008585710606846767,0.0270936054553692,0.1335670841447262,-0.012577526716820792,4.950867256166121e-05,6.48483404357995e-05,0.08813794069846546,0.3337642148494695,0.07823296924739577,0.002502886673957203,0.015076034701140306,-0.04211330350248372,0.1954961998897211,0.03771590951888054,0.0001071572503339886,0.023409828135869292,0.01290261654821549,0.06994069410431139,0.005811558291304788,0.00013378537400830505,0.011126869188817707,-0.007705827189557539,0.04486193854612478,-0.110083006881165,8.124374379710429e-05,0.018467598443502164,0.04492092251782301,0.2181708959530994,0.010702125640954236,5.174867642463106e-05,0.011540428106292381,-0.015910923206551665,0.03138548344903388,-0.0061495433822011765,0.0002471701100727721,0.01489625503376553,-0.0029129991434834585,0.01155019222133087,0.0007908365450550714,6.271414718022676e-05,0.01078403403388644,0.014434356805572932,0.13961317947282506,0.010327629756209931,2.6674869558638008e-05,0.0001365880097903571,0.012698675778759187,0.04703854868694883,0.00875044668425173,9.436555224768283e-05,0.008921947787716086,-0.012522355987512432,0.05771119877710429,-0.010949029302769411,0.0003420219046570382,0.002159973558806618,0.0022740281535367354,0.009368309448309688,-0.0981953076412617,0.0001390293222032692,0.011195001970415187,0.004384140585323435 +2021-11-17,-0.014155138694554259,0.10262576988479573,0.034596162370683664,0.00014586271223840475,0.015340874786422622,0.014127524454571702,0.05700996026159519,-0.002418725358026204,5.9460130225153974e-05,0.002550671334334754,-0.015858375687675105,0.05263329104695174,-0.006336772983811399,0.00013937836969371746,0.014181443914777032,0.014421815779101866,0.01407107389580194,-0.04373706561916711,0.0003459079601031471,0.008199434549410266,-0.023277517952973302,0.05193293209336933,0.011031440605272223,0.0002345263255876154,0.004007908122645689,-0.011008492758182222,0.02435365421402855,0.016138526380683586,9.869848024561e-05,0.0010448187217764592,0.004045561411716804,0.015607387199147517,0.005001102085753181,7.605686996939838e-05,0.02403746480317388,0.015406971027590572,0.1372889234219393,0.0001536500692344631,3.84840155047159e-05,0.007941869896487498,-0.015407940096976738,0.015204807554343046,0.006585950976117695,0.0007814630359969905,0.0003015852719229831,0.029642776268568725,0.059500872382976445,0.016455227093372993,0.00017420372178479708,0.008594063046368132,0.02734056017865214,0.021753300739831234,0.07683652555219501,0.0006143369012498372,0.004787246064762929,-0.00602034496151416,0.08998090422603124,-0.11230714888216702,1.9938561078717844e-05,0.0028082053466618375,-0.055040093702924876,0.17383038861117384,0.08211201216615119,9.405989755194289e-05,0.020220602277799583,-0.014593451925957722,0.07615172559295534,-0.021415037103568787,5.3943621728273704e-05,0.0011369390250469103,0.012765528412788187,0.009749819457075575,0.014508634852223059,0.002553672475177615,0.005002511502298244,0.012967471054009866,0.09751197462376611,-0.05204992957556185,0.00010943328696335544,0.003050422931390076,0.0341572649920053,0.19000332435129977,-0.06908246629676983,0.0002783749303366536,0.0017977088786158984,0.0030044099247421526,0.020163931500284588,0.0002395196432339102,4.1970576103602316e-05,0.025015145980511404,-0.035342671290033725,0.19963076145231015,0.017604467310813807,0.00029178214703470964,0.022292530839778293,-0.0018758742470365013,0.026493986763791694,-0.011657710307350145,2.9382357426701854e-05,0.010581045877169184,-0.0014316436313456071,0.01631002734452468,-0.02186973496993165,2.9326615524995123e-05,0.009380174486907243,0.056015002731077165,0.1523389011553897,0.09199301503061616,0.00011844488174034093,0.005246331204842739,-0.016157229352594882,0.1271138254217466,-0.003966667529446621,2.9360704841513148e-05,0.002815511194198681,-0.0066767063797916896,0.017410479657244255,0.0026609097340042033,8.502153156466167e-05,0.002705417492047971,0.008305590447619943,0.03433583110412115,0.011596246717292586,0.00011060418084305128,0.006406559685050426,-0.012508753869674058,0.01224105948873595,-0.008305407212255833,0.0005840776660560386,0.008608889399174483,0.014112109675773397,0.05294369433736901,0.002629031205267961,0.0001121924700448849,0.0019763161364568698,0.038287017158711203,0.11960719307025831,0.0314809012924241,0.002054534361407832,0.001286240717622407,0.013288923796532926,0.11042806098644493,-0.011567692779311198,3.094514769880746e-05,0.03125664658856771,0.021046108496984565,0.05616515324463659,0.002788320776318161,0.0012251129386075276,0.000772745539309973,-0.0009285677982250727,0.007659361342646102,-0.0007448748259190109,8.073218438056304e-05,0.009690227500757735,-0.047444469994734326,0.05684021178424589,0.12744363278565918,0.00019700411526041045,0.012256627206590757,0.01587563689521129,0.02193470091416913,0.008141876392648167,0.0004154352595790237,0.002018230606758517,-0.042479303388517235,0.18858059912477823,-0.10561724724943346,0.0017459456334615647,0.002493349727947202,-0.01882446307240575,0.053352267671901016,0.01652070209798609,0.00011320356004544132,5.082953354840604e-05,0.00800479367274006,0.012359570065056986,-0.005612145213643728,0.0016099929349264166,0.00702750440949628,-0.03656999709483562,0.1257512138706293,0.044564936835081136,0.00011522024022758657,0.010580993229352229,0.012339696363528016,0.03364042833549695,-0.012527294611121835,0.00014869738550463574,0.008503909850997422,0.012789538826194288,0.05373364579518365,-0.008307105118842428,5.809282569536779e-05,0.011416223773448718,0.007542535775059422,0.022260101769668347,-0.001841543295136843,0.0032115026978311954,0.0334673212319347,-0.01634623380875144,0.08561908299940542,-0.021906882523092468,9.497027709511548e-05,0.0007677087812191461,0.0366654417431481,0.19994916867477477,0.11609302325642598,0.00013298360543142614,0.004486158686006211,0.0006102403162274615,0.003646276771410097,-0.0060105493532113235,7.915893896730712e-05,0.009576411237599362,-0.05724116499540672,0.2773973313545936,0.10743736083359387,5.186251581813712e-05,0.002991466127528317,0.0001619909018762408,0.0002938580585302383,-0.003193736036207243,0.000268771003267968,0.008984010400635348,0.012787273324324068,0.05332646666782629,-0.011020037095430672,5.962790009551545e-05,0.0043051530396466245,0.022654199457017982,0.25128861294896987,0.015055102301382756,2.3259865346213785e-05,0.022123117154823273,-0.015344641950450624,0.047094979015043684,-0.08151095965480014,0.00011389144836865863,0.0024823303861072213,-0.017455576622780394,0.07557920737440256,0.00791958365324738,0.00036404899600081254,0.004588953301630751,0.02568401357169062,0.11682919024923563,0.011107969538431336,0.00012591669619601726,0.01591914621930591,0.00010030745306844978 +2021-11-18,0.0008324726259600458,0.005297920817498335,-0.03864983577835146,0.0001661694117513846,0.01097783654596434,-0.013037238475214182,0.042626624832157865,0.005017151203187047,7.338633339670586e-05,0.013600526014894301,-0.015107183047450885,0.04424331377089111,-0.00858116095691818,0.0001579548801187293,0.015682899283551217,0.0035957119044819174,0.0038021866873207332,-0.00029165432380386656,0.0003191679743691209,0.0008189873418015135,0.02589538591848695,0.05345427901005185,0.015641975946926238,0.00025347648952726154,0.02115881757050559,-0.01441041071790116,0.04213216568853538,0.022544386336434633,7.468086084714075e-05,0.011121338991856397,-0.04746868624633944,0.1631629331134983,0.0034914383614599114,8.536415851915047e-05,0.003453734547278845,0.047134709728885886,0.46552982174551666,0.07072640399873181,3.472097757904301e-05,0.0022471318928921832,0.017832734555602674,0.01613879875506567,0.022168321531046604,0.0008521018840177006,0.010343795275662428,-0.003137450041367549,0.006896690376521158,-0.006372535083656709,0.00015907355121640268,0.00766905820622517,-0.018721874054689395,0.014246502948601584,0.003305991624046352,0.0006423406476792321,0.008254223915937503,0.02414081466142975,0.29838547849929864,0.16745522452635367,2.4109989858087027e-05,0.00574251051120998,0.0799480997264191,0.2232964781548874,0.07369237033191192,0.00010635975052354971,0.009174119816819199,0.01911695703775354,0.10789975150012238,0.056470631928669406,4.987238504975223e-05,0.0004995108553790338,0.06990361546861891,0.060001680975823445,0.13403433717862032,0.0022722661217028195,0.015163293677624461,0.04357178749549879,0.3336806063669917,-0.007482620487307275,0.00010745497280597987,0.0055569576726014576,-0.05794045522193361,0.31400649435954364,0.07716973969352775,0.00028572714688367324,0.016028064275238226,-0.015079918741224599,0.07519891016155046,-0.06551822792669702,5.648698707683724e-05,0.023686727913532445,0.024022678174039032,0.13115143207732827,-0.08163888348145973,0.000301880592363211,0.029630746713474456,0.026745925535004926,0.3375357883370663,-0.00023691869319425273,3.2882742780446906e-05,0.0023364144086335838,0.004850458564218902,0.043924148718908596,-0.09066800786712848,3.689445969639327e-05,0.0059841231868690125,-0.03315867940675976,0.09311401017093765,0.018507847323486027,0.00011471096959789461,0.015831885627703903,0.02942797463599492,0.2172735494365269,-0.01813997528883973,3.128570096957547e-05,0.0016126679490234806,0.007096610955034325,0.018406089877220262,-0.00525810572809794,8.548045816472865e-05,0.005620307436268339,0.009652649754919689,0.04036848512801287,0.009612143175653218,0.00010933335912204759,0.008886244873188807,0.05616311956811092,0.04806925625185023,0.08126520040612151,0.0006678199386935332,0.003983669159427982,0.018567042985985438,0.06895277154126442,-0.006147325210994237,0.00011333838625115662,0.017989031679548507,-0.006907554261232718,0.024647066373377352,0.00035953140005259485,0.0017987808078763932,0.02290151552394623,0.01944626560977465,0.19727098756151143,-0.04156481451353154,2.5348670718322515e-05,0.0024487905063616455,-0.009740543180226309,0.030152244228362383,-0.05201957832344528,0.0010561723738827253,0.005943393458915651,0.0034301982450016815,0.02408576694433467,-0.04601176241662381,9.483843611827205e-05,0.006741067897169973,0.005733677638359575,0.009601353542211937,-0.02393565873347616,0.00014094387154440347,0.015793130093857095,0.0009891506310576274,0.0013313396685250601,-0.0023148995427390373,0.0004264591861731832,0.008730104279658585,0.028461097089716326,0.10172101167166805,0.015348594172045838,0.0021686591909975054,0.007904630853136991,0.013845836781182987,0.06679554341245908,0.003311147846398037,6.650619337041123e-05,0.00529329752696003,-0.004003237028927036,0.0056072061465053296,-0.02771562972445808,0.00177476957067733,0.0004952579869988421,-0.04487385876174611,0.14478320116487625,0.005997793457167302,0.00012279799575102364,0.023175374282615988,-0.023367115145225013,0.061457435694380266,0.02278532395413764,0.000154131370230765,0.014463494835545444,-0.012422917622342817,0.054221989340357386,0.009700990745284294,5.59193459501843e-05,0.0014519512128505952,-0.029622210528972615,0.0975526564735741,-0.059039171866065734,0.00287803732467785,0.004653424319229988,0.01499487690056778,0.08085731301589894,0.009401241792783404,9.224953174748082e-05,0.018334274666940098,-0.013430944023175306,0.06538988434609734,-0.014331310950456536,0.00014895557223154108,0.009340403651782224,0.020164193061779283,0.1079364413938187,0.00876934458251269,8.83611684486543e-05,0.005381723955822402,-0.013572552667052309,0.0690529081319572,0.0055760357208971155,4.940000092464434e-05,0.01337733339944788,-0.021704204619547085,0.04466035227212345,0.017282005882960673,0.000236946951115756,0.0015404208939226718,-0.0178735648893483,0.08296463868528166,0.037002281596560986,5.357134263874463e-05,0.017650940356033373,-0.007493355508354341,0.08847327454866724,-0.013969306818652523,2.1852217842042958e-05,0.022230684037277505,0.002156038878483336,0.0059169377619894045,-0.0002432195804401191,0.00012737041134193035,0.0006896878462857176,0.035559610023729565,0.12668229608362663,0.11948667018718227,0.0004424549255390145,0.0035847922170342142,-0.03861173426732131,0.187352016209458,0.10998024694502456,0.00011804096016467065,0.010048683727831579,0.004236489665117773 +2021-11-19,-0.013602592441405525,0.08424956941599689,-0.0022873055999409,0.00017074208480325365,0.007704487971201829,-0.03479917507278147,0.12941199371492218,-0.042875478600581676,6.452157312780298e-05,0.004379659858543604,0.023270759444067646,0.08487450129549357,0.05158665247288514,0.0001268324920755874,0.006234450596530024,-0.010067614355024805,0.008714596193838747,-0.0004370575540444579,0.0003898945454402767,0.001588754215728232,-0.05163943975254439,0.12595406890954497,0.0953910284681901,0.00021451965623997538,0.003929179145269151,0.01086738894943173,0.025375274824150685,0.0312268050092852,9.3510675931135e-05,0.001031887486906784,0.004013516666735332,0.014708621371408508,-0.013928754078033014,8.006504599407052e-05,0.01633221261716197,-0.03658365248121489,0.3352672476552975,0.026552043193301296,3.741920430145145e-05,0.0062837524447555615,-0.014768635162792778,0.013140791557917994,0.003717965747598999,0.0008666896737908052,0.014557190211870009,0.004469413404936574,0.010728832920327162,-0.02425966230667121,0.00014566658256892468,0.0006938101150003341,-0.006332313076851414,0.005188182556462157,-0.0014086246564292868,0.0005965838435608604,0.012393555900953175,-0.010955414335151584,0.15708620411473256,-0.013834290808521596,2.078325428710539e-05,0.0034015432938113693,-0.015419489139805643,0.04610629311536525,0.00975584364173469,9.934838607929988e-05,0.0036958577362371427,0.015590424807974885,0.08719390487461118,0.032126198176316026,5.033077756222849e-05,0.004035333106852495,-0.022403834271944024,0.01901650338878677,-0.007457612193021771,0.002297812876557256,0.007255127233044149,-0.010132899717873336,0.07289712052297652,-0.09484411216905357,0.00011438668619691708,0.011326536310077458,0.03502510699938409,0.21461392161398982,0.01179018613317679,0.0002527142969401959,0.03310958437145003,0.06784723517421158,0.4830317560578383,0.09965068464997702,3.956557001480533e-05,0.017590220101367095,-0.042574386923022005,0.21639683088086,0.025761833268228708,0.00032425323226200513,0.012548391250793538,0.0790763988582619,0.9400264159326075,0.038140145149806286,3.490897173364553e-05,0.014508445821894018,0.01826117568451987,0.18933537824918584,0.09645835250293003,3.222394236857089e-05,0.0031204270891577774,-0.02260249177428446,0.06168914418983963,-0.059311841629369706,0.0001180240002516971,0.0021004404820867367,-0.03398027401096519,0.23639495450108358,-0.04038120215713264,3.3203284739128916e-05,0.007047461936236588,0.0001433725845203018,0.0004289037795612625,-0.011353251768392487,7.411116207819784e-05,0.007570765928116526,-0.015478791426808,0.05559572820965506,0.044271439621847264,0.00012730463637528568,0.006287483305242449,-0.00909473363399164,0.008231842724416124,-0.005600617200353546,0.0006314929131034394,0.019619628464183473,0.01753640883400207,0.059918469227087136,-0.007352563745427104,0.00012318730700993782,0.013308321829048507,0.03462738397755773,0.09894985505027959,0.018443718240155317,0.0022460721099635127,0.002205665992559807,0.006380904319575198,0.047949691000510324,-0.014553122063381212,3.421989045814891e-05,0.00032949596173982316,-0.03602794619527736,0.12116308932873628,0.015533671584785424,0.0009721660199401023,0.020952443562436727,-0.02443595063232792,0.19559401145725075,-0.03739440825489129,8.319540275431031e-05,0.009219317723505625,0.010792388934229815,0.015391965826443752,-0.004473610965097845,0.00016548890554901117,0.025786065024931856,-0.021331791824408523,0.03256606869092353,-0.054998553415012405,0.0003759810150272688,0.017382784002718563,-0.007621555067177529,0.03275192382659455,-0.1042918555736619,0.0018036701491862656,0.0028684550589354514,0.03160585537823731,0.09714780009829485,-0.030985039379503875,0.00010438184007138694,0.018885163159231885,0.004985640319981291,0.006313587906293348,-0.11760346386340102,0.0019630072520019025,0.01924944208404481,0.019299566202632075,0.06630236625885812,0.005999652911718408,0.00011532794560440703,0.002734378719495658,0.014671004358155128,0.03999161171803902,-0.004477732542112773,0.00014871381506255372,0.005987739524539092,-0.013038934191887721,0.05105812208894108,-0.014850127622756453,6.232914664949094e-05,0.017545217403550143,0.06546878672248439,0.19614833579831942,0.041460513895269405,0.00316349915496127,0.02630266610236355,0.03926722644077436,0.22104571145209914,0.04524223918031385,8.836671368032752e-05,0.016857487746242992,-0.002064684845694568,0.013706414390901712,-0.0034654310601519413,0.00010924226515149148,0.0036246471959035134,-0.004423052340517691,0.02512964707771474,-0.09428406093875294,8.325002795462946e-05,0.0033886267340902856,-0.011565771017898524,0.06488679259333649,0.006914024976109665,4.479872743805181e-05,0.02270832083862414,0.005015736069842667,0.00880745428083698,-0.04440520264432742,0.0002776602256618372,0.0018082419091839125,0.0116030943891594,0.046112034202736414,0.006276991958686907,6.257111870754936e-05,1.8630197083258516e-05,-0.005572868215978446,0.06137730830800439,-0.10494589113910602,2.3426220139525826e-05,0.0033631295889443207,0.007728111989982621,0.02461212189349059,0.0033927718964929716,0.00010975727452522361,0.00583968509133311,0.0035426992873904242,0.01351481436026031,-0.018090280817743054,0.00041319225871518664,0.0036491508366903016,0.02953488509964436,0.14728602793546058,0.005237336645161125,0.00011485384307830798,0.0035567159824974534,0.0007705755510071973 +2021-11-22,0.03782253610215449,0.2621099788398232,0.06400597713626868,0.00015259969817591187,0.006711276461607079,0.05003421745264522,0.18990633512131136,0.06918042921756797,6.321762640270884e-05,0.006039053210413807,0.0036994862066854644,0.012305339716548465,0.0041385897174351875,0.00013907370000093458,0.0030605888176458164,0.0021341955698660968,0.0020255374618693787,-0.02047551990720354,0.0003556000313614879,0.0012198005780439869,-0.011227579956643334,0.028696834162115954,0.0015880798983872592,0.00020471512971234276,0.001583177205267439,-0.009787985850602268,0.025288743212514765,0.00993319089471108,8.451091934380614e-05,0.007296749905757236,-0.010801925407711318,0.036011966319944105,-0.06268851678592169,8.801246687116309e-05,0.00985332468757836,-0.014632107176978612,0.11834094214719212,-0.008381675571042937,4.2400449976013164e-05,0.006850345123498819,0.013031208069242795,0.012270126074848642,0.0174350338971176,0.0008189934731870786,0.002864696816123752,0.05692353663669696,0.12580716548446447,0.047770850772499214,0.00015821526524266636,0.01991453257954093,-0.03284299027481309,0.025427991418378627,0.11793803908605036,0.0006313279166178101,0.004899793942936255,0.01781518090790814,0.228663915424776,0.051193175252777466,2.3217496598745007e-05,0.0036216819624579275,0.048353752114485164,0.14850069491347753,0.029323089944681992,9.672811659638073e-05,0.016201887574323098,-0.014678885129711813,0.08307880021280856,0.00289144626298524,4.9735292246061393e-05,0.003774016673324615,0.009446741890955047,0.0072687336276959485,0.0017424689877196906,0.002534814998626954,0.024037120989130988,-0.044672941762162896,0.32588484627525394,0.05048663741973113,0.00011280607636858332,0.028133422820171002,-0.007341891333445353,0.03726770489110648,0.003043527023341822,0.00030505878512054516,0.002527230361150855,-0.015559248144608193,0.08937807805175987,-0.056878642325115435,4.903639690393083e-05,0.03225264751215781,-0.010522861891306462,0.061603515367150204,-0.012337725849903619,0.0002815238430087149,0.014074856223371977,-0.044538435806587916,0.5234105880524509,-0.044372751665136316,3.531203026633644e-05,0.03128654055274607,0.01870900698923552,0.1890675555066169,0.06547299712163905,3.3060958249506835e-05,0.0018478764112641868,-0.040935192638952914,0.12665854842562826,0.0062564149335385,0.0001041082359855691,0.030233595518106057,-0.02106253066713288,0.13033134174969585,-0.05760274324902232,3.7329662231589886e-05,0.021850021071459128,-0.006718224291804091,0.02114097678926022,-0.0012685465276892464,7.045419090239772e-05,0.008811835456709799,0.0011409337866804057,0.004593921786359405,-0.00801304806997726,0.00011356001465813423,0.0020838212630899973,-0.022987716510923007,0.021002528756788173,0.011886365579316762,0.0006256044165837857,0.004254141465152486,0.021122794562747352,0.06671261410973528,0.01602378956436812,0.00013326908795826433,0.005460665645154421,-0.03623710004552825,0.1132186653778129,-0.1305870280242843,0.0020542560684628647,0.004013367498419059,0.003368916081101464,0.02962084384227145,-0.000554266923347844,2.924657146307889e-05,0.007631046718831552,-0.04407092490025983,0.12535088688131166,0.021706635948394715,0.001149465719225571,0.013090529188932913,0.03275159623065165,0.2261785266890879,0.033916600130310635,9.64287958867126e-05,0.005098131461259954,-0.02762581126643539,0.050559343917520594,0.01061671787603758,0.00012896117963567575,0.020497089993949343,0.01424092481649766,0.025217312624401727,-0.002171416971406952,0.0003241479690875757,0.019918384646005,-0.001266926025509433,0.00415859442414994,-0.00908107780573942,0.0023613210130430952,0.02545623422981088,0.011356013419766286,0.04118150112214306,-0.012677860413868345,8.847368050232713e-05,0.009324749147437406,0.01889501077400359,0.0258425043400207,-0.04697985494625203,0.0018175641073473233,0.0192297117150779,-0.009297012622452501,0.026764070389695055,-0.01097878837721951,0.00013762815683698518,0.019032761947188087,0.02460784246990032,0.06960304232871874,0.012678554342165284,0.00014331963423161104,0.012602978605263061,0.039825276034283964,0.1425219057175098,0.12139365950674769,6.820105594665583e-05,0.0004462422602587554,0.0137103692108277,0.04204204880896453,-0.0008350916770303158,0.0030908884812837186,0.019027409437200566,-0.035047951641898535,0.18754875354650122,-0.004837957726118048,9.295848336006493e-05,0.021373222484836765,0.005019204431178765,0.02810808406651922,0.0010902926736421552,0.00012949840680277888,0.008028237644413986,-0.01981199014378882,0.12200640065526926,0.020393002083939894,7.680583003676547e-05,0.012079057328188689,-0.004531521551785217,0.022058177042165474,0.004516229301789305,5.1632342223682426e-05,0.02961095617671703,-0.019782368193515282,0.03436694696687765,0.016766279779566136,0.0002806510827915358,0.003397708217105381,0.015668486488250193,0.0642857303743669,0.02175669445454117,6.060756568766034e-05,0.009177113272288515,0.03364723489059647,0.3606897173557655,0.00043130182742939397,2.4068382453029757e-05,0.007977472856530395,-0.008908381529754945,0.030550410715401377,0.025741867695525406,0.00010192734693933325,0.00802818178222464,0.0025907696597550806,0.011295840350057446,-0.011434810974685817,0.00036152491085914045,0.0028590898128966675,0.07490184838044642,0.3417324858546071,0.14745131340133769,0.00012553882668029368,0.007103491087160026,0.0020488030749013417 +2021-11-23,0.008716974930252763,0.059715638820869305,-0.005629571880515311,0.00015437049553560623,0.017716715898210132,0.0446038990878441,0.15196930014391424,0.05115674359375737,7.042510249763358e-05,0.0025757636784491797,0.002145763004297816,0.006351522266292809,0.0028021029209089427,0.00015627918323950216,0.009866323578514927,0.02933490301379782,0.032022011282601966,0.04737327515671565,0.0003091746706340633,0.012334058241540838,-0.014819670635098404,0.03493390125542888,0.00197724094309025,0.00022196742075133942,0.023632336417565486,-0.003937771267739375,0.011399118847368418,-0.010175590915192526,7.5426845313311e-05,0.006203937474167649,0.02932882545643948,0.10416084497314336,0.04242238046023603,8.261901859792516e-05,0.004678118786938988,-0.037102677943879434,0.275044915425837,0.02671080061010148,4.6259427135088535e-05,0.01621587879771929,0.010535028569264243,0.008648956686946659,-0.0080577863473104,0.0009393269485832977,0.0023914942568562946,-0.03405544945098026,0.07341585588902554,0.025455174569359588,0.00016220290816906785,0.010461746513818777,-0.004824211160269197,0.002842350189306696,-0.009245213884088358,0.0008296082906667552,0.018445775073379467,-0.014300320644699103,0.17793411783648685,0.01902604312964132,2.3950210527948725e-05,0.004841501071493063,-0.05069712831588111,0.1379555027891446,0.058495343932987935,0.00010916800388415108,0.024341038824625884,-0.012105043736589865,0.08555877598513889,-0.0186321317563961,3.9825718379704274e-05,0.005700861721521754,0.0033269855694666637,0.0028953970074121153,-0.027249789430496243,0.002241123391547664,0.02277550853924434,-0.03670767885443236,0.19503248299869588,0.023400491996422083,0.00015488240418177023,0.00901521307132712,-0.049056283525828914,0.2594533732670129,0.07124940101604299,0.0002927814475288449,0.037285412911627396,-0.00842890410194663,0.04285862095033446,-0.03204601429841482,5.5397973220346975e-05,0.014082257097787515,0.01617696608513821,0.07446510061664453,-0.04351750537874865,0.00035803963176283946,0.001531498036044999,0.06299466178395945,0.8347256150658635,0.015049949012761792,3.1317727361546724e-05,0.020407195431584535,-0.004169651840321848,0.041699874902639725,-0.0031640285291615446,3.340771334275784e-05,0.007420217256964429,0.049162757209831286,0.1480931397162911,0.03125824579834881,0.00010693602749255703,0.00572792538121609,0.04310515410622544,0.34178678022605263,0.007207153005320497,2.9131732759676442e-05,0.01891684055369265,-0.029830016052197154,0.09422215412829468,0.016355065891674327,7.019041988628925e-05,0.011495385018103148,-0.002864770859757969,0.010923587246240476,-0.0013041631455404273,0.00011991491509795645,0.010264350270577222,0.09570232995374356,0.09903211201441109,0.20418654378659426,0.0005523597589285471,0.006538746398495961,-0.005191430932030071,0.018157346397690247,-0.03339180685865142,0.00012034296588172319,0.002929972008260654,0.07419604126377378,0.23570747270936634,0.11619185663150729,0.0020203497463647563,0.02340014564982317,0.040879019694696095,0.3506921259019144,0.03273758111828461,2.9974824782083385e-05,0.025809054600219282,0.0016457250660399233,0.004902949100375073,-0.01911600344929208,0.0010974156999066834,0.013806156539795387,0.023745388288449968,0.1630345664777577,0.003107001706439665,9.698961287390655e-05,0.005035230761117277,0.03184649008626172,0.04826974081508138,0.006533440787140781,0.00015571555341535825,0.007949984208450146,-0.007322969843661413,0.0089413540463459,-0.010115917863833488,0.0004700974200559278,0.005295482385736334,0.0010368073919159665,0.004160486187486353,-0.0008652892507962014,0.0019315428248951232,0.0007316137096505162,-0.030463847100893015,0.1021556758698026,0.05916177323227455,9.567811619547745e-05,4.79982926233143e-05,-0.03349183443464916,0.055222516325584045,0.06791434816653383,0.0015076479279624768,0.026843398001037293,-0.013610594491763562,0.0508599161161895,-0.010571654437785068,0.00010602724867465405,0.0056389500753531545,-0.027860043374915735,0.0657125662414867,0.0416120742357723,0.00017186749081283251,0.010147432258493525,0.02345101024660447,0.08556303751831448,0.0066618204188290285,6.68943268262764e-05,0.004125453018892852,0.06745393093182447,0.22693038395078555,0.03742946930653566,0.0028172972647956844,0.002779667955594848,-0.07475450303261844,0.38399085966508084,0.07992359514439322,9.684050434954222e-05,0.0013011118728415713,0.004559358366982867,0.028776746491859895,-0.007962975710658083,0.00011490073921076904,0.005118882416226302,-0.014580432430495479,0.09868429345456467,0.010459285444021027,6.988292385215386e-05,0.023362994746029347,-0.03348719691516602,0.1663245724456125,0.027510248279579104,5.06022438464896e-05,0.025632600584090066,0.09056293904257202,0.16470164662276235,0.1712040318659076,0.0002680908312069916,0.042892089819386324,0.016452028907944127,0.05320467824438023,0.021447462333756172,7.68925066160283e-05,0.011478031092007467,0.03686598403860664,0.433815489526013,0.04057554982820389,2.1925629019941017e-05,0.0016645000210549381,-0.02243583152370836,0.07637774359690268,0.021422797174785266,0.00010267963369188526,5.0237164127538776e-05,-0.02551059550312889,0.09434434579685672,0.02407802538212066,0.0004262188865508484,0.007780598729729187,-0.020837734802553885,0.10475083775135365,-0.021586199008496152,0.00011393700457716291,0.0027615673647466117,0.0035731584686610196 +2021-11-24,-0.004759524664006965,0.03035921222548575,-0.07306459638370032,0.00016579050999677053,0.006329666485595597,0.025505364084636856,0.07598758139073153,-0.027580412359285374,8.053773886204707e-05,0.010283681076180292,0.015216270705691407,0.04918735361004371,0.0168231551563238,0.00014310406594369407,0.02427383985363714,-0.019048237247043052,0.016071159656493014,0.02415010922175972,0.00040001422196624516,0.01922982928664326,-0.007908918865704048,0.018162391794868553,-0.011455859403164948,0.00022784623296240932,0.028384198652331757,-0.010589784700679967,0.032072522100397946,0.012304755888975435,7.209427144257308e-05,0.0013828923854328759,0.02655842405146744,0.11572354969025501,0.0275695125814201,6.733958094097233e-05,0.007893688096949429,0.022505968437550664,0.20119683983927664,0.03195452351930547,3.835969672223546e-05,0.011516934469027707,-0.00320760757101579,0.0024413528806370346,-0.0723977837147135,0.0010132006466628584,0.003912022536310896,0.014800291573355946,0.03775411106141603,-0.009134438184499018,0.00013707804712262644,0.006174999763691728,-0.02019526835751151,0.01592444555030171,0.01170145351730583,0.0006198829148642641,0.0006028610228493692,-0.002586265936653189,0.03586945644899958,0.0004348962644260834,2.148677190889438e-05,0.016089543227885254,-0.01915259506939612,0.048422782000402446,0.008247319327485122,0.0001174975815382845,0.00033904599785405183,-0.014262738880245913,0.0950646959718099,0.0001880543698871522,4.2232373123903754e-05,0.008643733193356332,0.004556327936541754,0.003894932313769956,-0.0014934470865082812,0.0022815922451632593,0.01048924416547888,0.01420742902118147,0.08984773358535961,-0.013345307040832094,0.00013012492024223811,0.04530044739934484,0.006096732785305835,0.040144192970444886,-0.01827828617320805,0.00023517040170091706,0.03295669550884308,0.047831096111324835,0.2736185662752205,0.03759347658240507,4.924087101197724e-05,0.01015890704895538,0.018602955172266858,0.11495960415042195,0.012276511432652112,0.00026670028961957467,0.025398535988355654,0.031436276612946526,0.5021585554137513,-0.0006966012529890373,2.5978882552144197e-05,0.014570873168642827,0.0011998680460396168,0.016201881430220874,-0.08404590078720067,2.474285141915746e-05,0.011126406452650875,0.0006563289390074989,0.00203009291427694,-0.00013533427203582489,0.00010414259476375639,0.006131419123875921,0.0359941372240347,0.28404772815315543,0.003836528005254692,2.9270680821763765e-05,0.016896715275830337,-0.014560841825444185,0.03871886014110774,-0.2382542423601364,8.337604745057859e-05,0.003388114993730905,-0.012746934172892176,0.05160378575709348,-0.014861579357290317,0.00011294649939015073,0.0046016214237017405,-0.07204763199260453,0.0618174809927591,0.09077943778735845,0.0006661683092571358,0.003966331067199669,-0.005281794260633724,0.018660184906745012,-0.04216313236480207,0.00011913834050928452,0.016535813185732343,0.08976300769890705,0.24067450669243898,0.13437798058833075,0.00239379238163469,0.009477971208360912,-0.048260478589017476,0.44607401150116005,0.09710217204033386,2.782062599835748e-05,0.014258474400607528,0.002323988341425445,0.007045024702395998,-0.11419323048725716,0.001078506320426508,0.01007476584968674,0.0033822913059520145,0.02605167673067774,-0.0484660543021856,8.645716131126156e-05,0.0022913176923394464,-0.008240434102436361,0.01281533451199829,-0.022668983924957326,0.00015176286973943846,0.006217525515471258,0.007011735723235591,0.010660061624991871,-0.10464811261912231,0.0003775458817631079,0.005335001810778754,0.03274028393218735,0.12152613854399237,-0.09203026953615302,0.0020881566905141813,0.0012132315737333308,-0.012490036918450994,0.05053869539230546,-0.03337566666135663,7.929212659043843e-05,0.0047324900770867265,0.02473351728074864,0.031019329675004,-0.04899389189302864,0.001982123286603463,0.0011881194397422349,-0.027466816387559108,0.0758584578455883,-0.0034963365791844626,0.00014345653977875956,0.0014053898088007436,-0.017621345410015993,0.051579427734071114,-0.06152388371235511,0.00013849143679408763,0.016347609831500024,0.06761430934508159,0.3380828564240911,0.18458216905411404,4.881231353918711e-05,0.005272269985506244,-0.00033731505613615885,0.0010183608721359787,-0.012587674786909185,0.003139439224380919,0.029307450834384515,0.011904285263295771,0.05376200543666031,0.00030794424012693726,0.00011014592529174661,0.0030530724621438544,-0.014669707508880542,0.07782286622221528,0.008033661556286056,0.00013670204684042763,0.007110476773026309,-0.008356848310598608,0.04555823173397066,0.001125884075703586,8.676096194951182e-05,0.012469122199392732,0.03106708944448121,0.12986227337762254,-0.014827211139963133,6.012636671206731e-05,0.009446076102808999,0.0007157936947083383,0.001313659748817909,-0.025914894982419483,0.0002656650166989685,0.019530920538898565,0.0319628337053166,0.14328900809636388,0.06323429985747284,5.5468545104107894e-05,0.003631536496487995,0.012661227285625238,0.14293898092368085,0.0010175494931323416,2.2853694047120217e-05,0.005189861304298253,0.0001682629378804121,0.0006159971424198394,-0.010364860130126441,9.548139038254708e-05,0.0004061091516734858,0.0190318259102985,0.09810842832905675,-0.022101134753118146,0.00030577509435524166,0.008330207215011085,-0.01026753083366876,0.04921914956353826,0.014853362303147934,0.00011948233637464846,0.0009952054974298298,0.004986825094997613 +2021-11-25,0.027943204536752086,0.1897640964271831,0.008845328459982076,0.00015572156033814662,0.0015850809806854042,-0.011134112184707433,0.03532383440574676,-0.07063988150085035,7.563072772821369e-05,0.015227770074299651,-0.018167179890758018,0.06284631309437873,-0.025212869319562535,0.0001337226321109772,0.009698058670890373,-0.013858432277720028,0.016228572778131174,-0.011321296201257727,0.00028820508076872855,0.002432607296144156,0.006555664752734799,0.014476579583334905,-0.0007195818155559487,0.00023694554434903654,0.00044978226884112837,0.016620099351446805,0.047902417746021005,0.05491044954575252,7.575702676498899e-05,0.00691860734312304,0.035050486926520234,0.12228580340133376,0.011043447996461205,8.410229937696011e-05,0.004751165067743127,-0.002304330209542058,0.02166855455496126,-0.005156366845838083,3.646812091789888e-05,0.021701696389218584,-0.024598476622059866,0.021291114603265507,-0.012502546206639374,0.0008909526033745853,0.008560381062632417,-0.03345790751019684,0.07277752192428324,0.010853196113727764,0.0001607545962143334,0.025615844051074522,-0.023645374456524582,0.018160933065431442,0.03489163682266385,0.0006364032612520187,0.01390581410026977,0.004295324187088724,0.05835048176150357,-0.00817865934707324,2.193685127473885e-05,0.0015910865808523827,0.02719605690570171,0.08826252669765768,0.0066783228564225175,9.15336168197355e-05,0.033889690397516804,-0.019819129004475137,0.100191353207559,0.032995915006577364,5.568216854326463e-05,0.012163686358590135,-0.011616760437402923,0.00910169994496113,0.0017268860004035671,0.0024893473038730706,0.00788655453373246,0.04521212085923045,0.3367289326624578,-0.113170343694095,0.00011049091088112057,0.0010305558373326768,-0.013568569541931074,0.07575958023181151,-0.005331450373973101,0.0002773350355025387,0.007047715080128867,0.03971633785628619,0.20516990229746127,0.02222273097973722,5.452761480606409e-05,0.019826723251687422,-0.03662882623260279,0.17641279294888046,0.020060453502524982,0.0003421997860572189,0.010907756567542469,0.035501521019351834,0.5412654948608413,-0.01730962830495129,2.7218666814793143e-05,0.03932671161211351,-0.01321524959813719,0.13388172284169952,-0.0011512152809717915,3.2978871219966485e-05,0.0008930915246904082,-0.005139842837595608,0.012991885855684041,-0.0003074551968165963,0.0001274384261043462,0.004105287176939264,0.04005726647800957,0.25531510406507435,0.005239386744951359,3.624075008933313e-05,0.0023843631724196727,0.017516958177634087,0.04768686231184078,0.03915557641639302,8.143991798034081e-05,0.0024747494547700958,0.013356509948429945,0.05189343891174109,0.026248834711084537,0.00011768717438929582,0.003985101820141629,0.012271878099973,0.01130727593384606,-0.018311583386137278,0.0006203383114408376,0.007387047100065547,-0.03540696380994003,0.13991932079943872,0.025850972534009156,0.00010651162433009679,5.512332135510921e-05,0.039494265257500924,0.14281084701494348,0.014258231904677064,0.0017749740923266154,0.01563362047557903,0.037673099887669384,0.3620821511795688,0.021899172809668875,2.675509119197559e-05,0.0032696130178733163,-0.02890998065206899,0.07211677179011362,-0.010416430294712956,0.0013106381128346074,0.009430236004036868,0.013879420347688213,0.10597913654328407,-0.04238772098610111,8.721207011967755e-05,0.010456945181043346,-0.0013558915005701057,0.00212296512931114,-0.17979756713739997,0.00015073963658422982,0.003862524615756166,0.025595822285579994,0.0509137554114433,0.021417406474130336,0.000288561155297328,0.013840856623694183,0.005807961162945045,0.02660514357926588,-0.009280350371403585,0.0016920314761754243,0.008901359374764998,0.01575378863289345,0.050005979217249405,0.014812018597464446,0.00010107725722545918,0.00553886892361723,0.0012354557151313184,0.0016047958041019023,0.0037036225306743943,0.0019137473149555384,0.01696464382664257,0.00207643345964631,0.006494078483346863,-0.0037177754757079613,0.00012668246988041472,0.008505604366584225,-0.005629374674930519,0.01618097171078583,0.0012561147352435262,0.000141031437468975,0.0055166814603947725,0.016881225399813158,0.0763736881863262,0.004451721834828386,5.394784858755244e-05,0.0037901662041740607,0.038619599228144834,0.12075635684477168,-0.0006666485645970919,0.003031208558256314,0.034324845299358316,0.007340229414816879,0.03092577835608373,0.002725620590343168,0.00011806728197820057,0.0025625667552331565,-0.006863629720887838,0.03871738156139662,-0.02540322189921881,0.000128560825396375,0.016303300298864124,0.02782088626242291,0.16571780065719582,0.024799561954190846,7.940548425146788e-05,0.003214385261492044,-0.02175018757153669,0.10561135894152855,-0.014431185055228554,5.176065585764825e-05,0.02154638678465593,-0.06503401490729341,0.11811945247056507,0.04592762957231809,0.0002684408066157396,0.024235907973856014,0.00393853051930288,0.013576449236279271,-0.07083539140419744,7.213771653340465e-05,6.944344621792815e-05,-0.00289115398437049,0.02848276706855669,-0.0013383981235138443,2.6189085305020046e-05,0.016601151580065154,-0.0033526709437408596,0.011968377989359015,-0.019036399431322036,9.791846537327202e-05,0.0001465471061903348,0.009022815954096087,0.03653607886779105,-0.0028513776481228982,0.0003892674889791775,0.015235986217612015,0.002187680191520665,0.010986563701804333,0.0009281346549185125,0.00011404959628780883,0.01563096213113011,0.0035311177621886796 +2021-11-26,-0.04999382810461094,0.3915203723609864,0.21843455964448977,0.0001350357035495518,0.00528093108035866,-0.008613116488193235,0.031165464068039495,-0.044744873565950354,6.631278218637207e-05,0.0007444587542435202,0.03960889761726841,0.15662275291323044,0.08561124183352664,0.0001169863272791575,0.012805497721193496,-0.010824020297369105,0.013160430379493281,-0.06326848984201569,0.0002775788436637396,0.007816068809165414,0.00984930513507953,0.02627853170722275,-0.028203115223338678,0.00019611114208052468,0.02844865700837428,-0.01218296458414569,0.0314354657563349,-0.013126434526605203,8.462132518557268e-05,0.0008018146919355045,0.0064790437765025,0.02333021855325753,-0.07355640667974565,8.148580537725115e-05,0.01925821592647966,-0.00947824532760444,0.08171182364465963,-0.002918191272338487,3.977788215085952e-05,0.00739314938914838,0.0007583915140715587,0.000784661876745573,-0.09344213550219017,0.0007453421792226732,0.00140670639125089,0.043823701168244626,0.10820876647879647,0.022541942063656676,0.00014161475114981168,0.006471772154568978,-0.026555615705900294,0.02112400868357916,0.03130647735872648,0.0006144752516684501,0.007696718721531319,-0.010604505483013704,0.1291650563206229,0.015792490785526272,2.446629302065153e-05,0.004355535431676271,-0.006329759355989586,0.017245170500737372,0.001687548329820255,0.00010903620932121744,0.004000094922119678,0.0251673784851635,0.1482570713131327,0.06924109987460976,4.7784206875140874e-05,0.004595930010014731,-9.013772947758841e-05,8.44888209204175e-05,-0.10276330916064634,0.002080799991504358,0.009941983317246243,-0.014102158422548694,0.10222994747577946,-0.07067571868413139,0.00011351664821575056,0.00264085981818463,0.03109622166407119,0.19290076488323885,0.024469854102829883,0.0002496214523362575,0.003278561901591569,0.022727583519010275,0.11843826787731546,-0.0845875901598907,5.405329475795145e-05,0.03215546989773427,0.02426568518260306,0.12660187101787088,-0.015939884517729732,0.00031589244716049506,0.007805400724096409,-0.06936285222902044,1.0962616124339346,0.10092149460617328,2.6256870831502938e-05,0.001259806359100005,-0.001392482549538776,0.01478649476984094,0.0004312491853850662,3.1463442369511756e-05,0.005573971129951033,0.016277890578419208,0.03892012650662791,-0.012851699638997374,0.00013472451764355578,0.00012967812578205539,-0.03297850018150668,0.23762598121404804,0.03399938744834551,3.2057478046531696e-05,0.014625223980853056,0.02466969292239316,0.06974981985855193,0.08539084230932774,7.841479936892068e-05,0.006415565520174805,-0.003385145568205448,0.010834129862308445,-0.05387168402287349,0.00014286699420958953,0.008807014002411157,-0.026058031285257036,0.023827390297771908,0.005632831335012599,0.0006250873121896267,0.01676518785564479,-0.005220158247578899,0.01784231889194512,-0.02361358474108068,0.00012314545299136874,0.0031638035967141514,0.04861185416074847,0.1543679291050896,-0.010256517036150822,0.002021176699702799,0.002786542234885203,-0.0375819458603551,0.41168842244322823,0.027741787561511456,2.347430829413109e-05,0.010215299656890303,0.027164130011952434,0.07086840285592269,0.003157801631189297,0.0012531827981522056,0.006536034404399324,-0.002702772144684694,0.020637425460702644,-0.026315146408285375,8.72126654581951e-05,0.004496298159650729,0.05648337208902192,0.0914023174624851,0.15496964530760318,0.0001458507932575835,0.004361478759086899,0.003357423215757675,0.004726954239175325,-0.052836665207463766,0.00040768863501855496,0.017222193234728112,0.0012104380705606663,0.005694839392779622,-3.159444026400941e-05,0.0016474469372333865,0.00562345321708908,0.0026141798560571808,0.008584801332356297,-0.07187643558245642,9.770022974128191e-05,0.010250570422878526,0.05624104539803922,0.08141123006726463,0.05321925961701215,0.001717300355380935,0.009962106330678617,-0.03395088363400906,0.1027861038967787,0.016208338237591213,0.00013086777363706948,0.011471197066786855,0.019728775012888774,0.052300637208972475,-0.0023197789421575735,0.00015291620665589082,0.01281477697169268,0.030488844753567043,0.13100634873196026,-0.044812818532805346,5.6801859245725075e-05,0.0041182084181055675,0.002584134418163945,0.010034320594183374,-0.008619965650636505,0.002440873014015455,0.04843634343635059,-0.023980597523304604,0.1115485034583368,6.640693279257914e-05,0.00010693917337958918,0.004330520631565595,0.030966839015047754,0.1990574103246258,0.07289075383792402,0.0001128182375928238,0.0024764774250695533,0.013916387497608302,0.07360030590227062,-0.03666339356697259,8.943254554719025e-05,0.004942559133827074,0.013580123303143834,0.06316537162574239,-0.06726837645952138,5.403461388911544e-05,0.0015285607000539143,-0.056448762417480446,0.09623409037909737,0.057778295148684676,0.00028599265092484185,0.0005817313007632891,0.021373752166995316,0.08045953232242421,-0.06766122139735598,6.605681674549335e-05,0.004484581713975807,-0.010010380828748507,0.12270089113239963,-0.000278738413508603,2.1049130876804777e-05,0.006453220608223155,-0.013451933408548654,0.034039655382121115,0.01191563142945888,0.0001381365224819115,0.002608461458138464,0.013041415597258603,0.04902439472070623,0.013271953839346495,0.0004193150647160053,0.00444203133755316,-0.04290084903414595,0.21651086606788753,0.08205233442894388,0.00011349010190306904,0.03982781540216465,0.0020814274915605243 +2021-11-29,-0.04636799695477772,0.34608846025267687,0.13169931336996613,0.00014168301841189848,0.004798202184437435,0.03987025718831015,0.12516557563606626,0.009101044662155354,7.643190122769616e-05,0.018434398479349415,-0.0006404604340856253,0.0026795183829306903,-0.04970334339348974,0.00011056884398241056,0.0010082420314198133,-0.006995976798855575,0.007657676588781091,-0.02671549103239894,0.0003083324233318506,0.005300411421486955,0.01578409408206093,0.033928042762256354,-0.034769412076736644,0.0002434213274117252,0.012694039489216793,-0.020047008249185344,0.05906886677884312,0.038830817285552426,7.410332067987768e-05,0.0020167863131344242,-0.027428585320880126,0.10761992084254446,-0.06260814707516402,7.478260605983172e-05,0.01360925686738618,0.005378531184472943,0.05487500479936102,0.004741447491320882,3.361148760381053e-05,0.011463756287908508,-0.03643363358922518,0.030600380101139107,0.07812298752635771,0.0009181644043046885,0.0023211599823604267,0.008582056078675931,0.018706340009754584,-0.06388270320417772,0.00016042217882771334,0.015230489080747424,-0.00787099115052733,0.0058724460344064715,-0.0018778425550498288,0.0006551409526671571,0.01364638400431881,-0.011431035775509664,0.13547735242198874,-0.09073887337858232,2.5144422909444923e-05,0.0005570752915631319,0.027212804609896755,0.07272410091710853,0.007303147081941,0.00011115934536070933,0.009592633391310204,-0.00999124499420079,0.049671827708737445,-0.026908846863855678,5.662018529070731e-05,0.00777972645331542,0.004816823518771685,0.004371229162579793,-0.0002684804217086015,0.0021492163323892388,0.00321923706504446,0.011473187648579084,0.06438396485205111,-0.00335761293629792,0.00014664203770539742,0.01811783760689507,0.022466677158903763,0.1533109272880869,-0.0035998334411528198,0.00022692062241795857,0.0040072757077341216,-0.01698595494052289,0.09325444259606928,-0.009053373814065999,5.130756371308499e-05,0.013694504280679384,0.014440969869470603,0.07505168005907382,-0.2869519179575812,0.00031711935594395864,0.00640182340552128,0.021951865884830796,0.26382330726479364,-0.0024101909690617727,3.452935863754864e-05,0.02822145151218146,0.020600608958145823,0.2235417894701027,0.09694076578412772,3.078952892341663e-05,0.004068402588600389,0.025513940670725484,0.07253010901179084,0.01066304879624636,0.00011331358160622843,0.002303609379706767,0.0285036905446255,0.21278031283944296,-0.06754468595862237,3.094297221761712e-05,0.027592326428801293,-0.0056263539540769274,0.016403858482996487,0.002572778771284231,7.604285580546985e-05,0.007286158744893047,0.0018098884873220715,0.005493107390607975,-0.0010007038997536459,0.00015065457461156543,0.014246169432032477,-0.04274394731970985,0.036024358202766574,0.02221004492927934,0.0006781939871111192,0.02082164199655671,-0.03367882348777564,0.11706456078336022,0.03716055660797189,0.00012109256561945112,0.0022489267343396473,0.0009965850518468841,0.004077611242558782,-0.03690668663054031,0.0015686560377618551,0.0029289341505429967,0.04436645373933339,0.35301512547999364,0.04256259542890313,3.2317934613456637e-05,0.023352316405251067,0.026188370433665595,0.07449022252460594,-0.09689009020809078,0.0011494245625013313,0.02084270962754066,0.018298013218017675,0.142475121660795,-0.013744488823715035,8.552449997449872e-05,0.0034626883880249986,0.008991991395401517,0.015163306145643034,-0.01422662581574214,0.0001399611059331091,0.020137221999389953,0.012149049767295781,0.016223185287550977,0.008633935290308838,0.00042984323547948965,0.008140773844327284,-0.01169354570211454,0.037025670310003665,-0.004273308705552365,0.002447899754767199,0.00497352955033057,-0.02006461106582427,0.07685353812142735,0.028455542998227078,8.376396953373523e-05,0.0015409813131808904,-0.023986031782076242,0.03605632293697306,0.024122656026138622,0.001653690234502858,0.007009914485856301,0.029531213491112235,0.12601016719015615,0.022196844644632344,9.285210246741544e-05,0.005285772732497461,0.030775343197621565,0.07985738979082625,0.0009696624269354275,0.00015622414987949727,0.007234958971688546,-0.019553465516204502,0.06885981296491116,0.01953827178881971,6.93061582808157e-05,0.008596468495534023,0.030528296645067888,0.08817083551584928,-0.016508035361841457,0.0032816758028239162,0.025910958651597163,0.00940803431457311,0.04809584439346019,0.003914073063248112,9.730427242852011e-05,0.020841588625363696,-0.01255487970481423,0.07431252014260713,-0.022223609061270296,0.00012252123070575295,0.01068716568030462,0.01702228874752019,0.0837324972916404,-0.043574410992934166,9.615516286337249e-05,0.0016878347669978004,-0.01017313635004812,0.04573191686791908,0.004243285449094201,5.590914553023217e-05,0.009180282528205477,-0.022460091492514943,0.03745597527903234,0.004973866107597489,0.0002923612468725304,0.025767125049032717,-0.03411248947867738,0.16558764699406503,0.17014748861265128,5.122711001283808e-05,0.0036413689047030103,-0.00045483243490416076,0.005181090394858112,-0.18373117974884526,2.2649652504777592e-05,0.01074511384851915,0.007407840856329558,0.026342773609752526,0.004451980783053953,9.829673864425834e-05,0.0041892101899130155,0.033027685361284885,0.12365019829660823,0.07893435221161471,0.00042102830373580197,0.007146089895644295,0.014548627614046714,0.07479013177917362,0.00042051288930264807,0.00011141650354726526,0.02741503144389248,0.00191994633031015 +2021-11-30,0.018728094495040846,0.12587637650119943,2.03980314245236e-06,0.00015733883970950115,0.018135068097087197,-0.010155001299710387,0.04281324039536732,-0.044024599498671775,5.691312210066402e-05,0.018372173759408535,-0.025815415697476224,0.06993204686564448,0.015857301766719265,0.00017076548160877656,0.0079975013116109,-2.5787751507727707e-05,2.9195847494547384e-05,-0.060246499422080574,0.00029809881288174694,0.014980746521591627,0.018593013328051855,0.04584756118134653,-0.07617753410051906,0.000212193127646925,4.29522232620889e-05,-0.020609216630810067,0.047463387201577396,0.04179167383171583,9.480898472658953e-05,0.002425160747244536,-0.03311528138613582,0.09920411426846668,0.023777371407961607,9.794643219144566e-05,0.011725008954812356,-0.013250588011014431,0.10166248564459783,0.0014646769119039812,4.4696451105452736e-05,0.016731312112568102,-0.009373698299949865,0.0075699907545226834,-0.0018826426022643334,0.0009549055309352574,0.008762202927175226,-0.01860805547325788,0.044605241867663015,-0.013240448393564018,0.0001458736936590635,0.005710845526457448,0.004678632378902559,0.003452180721702511,-0.0325123006159234,0.0006624448945772703,0.014628443585016788,-0.0027934431146995303,0.03676651627664857,-0.005047731944894868,2.2641757779074918e-05,0.008179738748153836,0.02187571917652084,0.05423720483909237,-0.0035823080735643033,0.00011981634788969525,0.019361733786077272,0.009567725487865669,0.05354580182462935,-0.03267111824501127,5.0297349323593296e-05,0.005292984973862962,0.019078502257591393,0.019186821855405264,-0.04764536955501212,0.0019393857806011374,0.01160404629594313,-0.07941435657254504,0.45786720193730773,0.1533452917358087,0.0001427287933281154,0.015284460122642644,0.019980316442294123,0.11840182433550621,0.005722898355980683,0.00026130769560561793,0.013288893519895158,0.046510941664106076,0.2674801708651339,0.036107676534839823,4.8980644614323395e-05,0.01219547023759068,0.020744523015114136,0.1021111622468888,0.03026388903726873,0.0003348243554196402,0.008157067314542285,0.04575831088778629,0.6487513036981561,-0.042283088462435274,2.9269949443687533e-05,0.053812983090183765,-0.011928664391574348,0.12092122493090683,-0.012192371301691164,3.2958769655051434e-05,0.009557948474003458,0.005808939225275071,0.014062950905598151,-0.04704844588926547,0.00013305865464334997,0.0071826479411492275,-0.03780242010262359,0.2576637733442687,0.009508858687151863,3.3888989381878215e-05,0.016841563293453564,0.003150303998624648,0.00871823866125955,-0.02748142979649394,8.011264914508382e-05,0.0021902656451531517,0.012983828786495833,0.04839924574987395,0.014889200100010038,0.00012266277397492557,0.009751722394613539,-0.0007306185631778969,0.0007393513886763112,-0.008924223487973108,0.0005648268985813859,0.009568527539707489,-0.02047515802958538,0.06968813533574532,-0.03482190821447205,0.0001236671713687806,0.005649033101279963,0.043464554751694015,0.14170308466904738,0.004711800103278915,0.001968679892140124,0.007695037573077749,-0.0035300400668733666,0.031623292450409304,-0.003433198472471324,2.870481456602295e-05,0.02627471530531686,-0.05369678177987992,0.17290279050626034,0.030437053964404104,0.0010153540959704323,0.009906860395117427,-0.006131228003620341,0.04966550181779385,-0.0034257609117349526,8.220879490969882e-05,0.005257914150627447,-0.019304741231009375,0.03045719584421545,0.01706958193564727,0.00014959581871088748,0.012763096654662881,0.029901337034718208,0.04791415253469253,-0.019913447987907885,0.00035820423065300206,0.0030075281604520143,0.011593562552484726,0.03921115602649123,-0.003585603734301327,0.0022916991535655187,0.010676783901937171,-0.01132821471964304,0.05504022637902349,0.0018339244137253984,6.603461211543756e-05,0.012065818279324384,0.014812256023675495,0.019662311897075038,-0.23783936264947655,0.0018726810721767528,0.0005625359521457554,-0.02922768719940335,0.0961630898905416,0.010435564604714785,0.00012042095796678054,0.0019155462044033115,-0.003524935867365408,0.009910006475004894,-0.08552387506357759,0.00014419083529632613,0.004083046752535822,0.013609652215601531,0.07274465818257736,-0.04873649905679829,4.566251677656633e-05,0.0008582277740946766,0.006229331959239298,0.02122403910465975,-0.013055052989736674,0.002781835824789372,0.006267802852870812,0.008540214302517248,0.04133787814363224,-0.006670119404658163,0.00010276877001697732,0.0011411870294052281,0.021550841869990973,0.14595615666398848,-0.0069855264613238955,0.00010707858060911932,0.00476562651185767,0.00212582851639821,0.011464398194520628,-4.244576125305709e-06,8.770526501082355e-05,0.0035467625519163227,0.0003430013253289369,0.0015826284864521151,-0.06504585780457914,5.447085779428466e-05,0.0035467829487213307,-0.06947243397261227,0.14401146320916888,0.015218559967737286,0.00023520407715175174,0.015028973877689278,0.01867233213695803,0.08624431401399237,0.0032547165871235125,5.3837200351106575e-05,0.004543127024064049,-0.0042911343974490505,0.04995038834875035,-0.055707653138943124,2.2164836555815996e-05,0.005744115183230258,0.005107417631031554,0.013392560283692064,0.0052865275134589525,0.00013330508801466003,0.0036737278722913545,-0.019540937291051243,0.0794402905262659,-0.0032747514135846225,0.0003877327971093217,0.0023766965827273986,-0.005561361970967365,0.024787249925827735,-0.00708287413038857,0.0001285063573103025,0.010920020312577008,-0.0022182977586862433 +2021-12-01,0.0016922485500193624,0.010311888065986692,-0.007045481031013558,0.0001735451752877634,0.01000810234017892,-0.018186150702399647,0.06605351107630894,0.02271867097841949,6.606256085297546e-05,0.0029378014128522813,-0.007357245200731255,0.023783800472155458,-0.007209298064005476,0.00014309721518764555,0.001268346646300564,0.017163217350861213,0.018681328891552492,0.01526293522035223,0.0003100693167017069,0.0012432973593713807,-0.003988550633450195,0.00959537997224595,-0.10492106805528187,0.0002174957148000419,0.008957286514361814,0.010095281386983714,0.027730016131779063,0.0186763792232644,7.949046658784086e-05,0.002542722186654579,-0.01699312268729195,0.05894065410569615,0.00336235234871322,8.459566270453372e-05,0.006991656960757353,-0.00956202413651745,0.09388281538281454,-0.0074137935218996625,3.4927085331830455e-05,0.0024457927950588595,0.0038347478018307735,0.0031178689351814125,-0.06281057043879422,0.0009484703059678136,0.0025080571689650505,-0.041186961376373475,0.10771306272755106,0.04096468584744497,0.00013370672889371766,0.012950034501588584,0.00854823155188215,0.005543659232081202,-0.026238008856273344,0.0007537097086681918,0.0051100861321735185,0.011304712674783576,0.14695014063363293,0.029965875573340416,2.292515665375982e-05,0.004515211053047434,-0.025324173138687796,0.07341040190661507,0.00865869480521262,0.00010247754440962956,0.025491706663043092,-0.004810031450815449,0.03104185878551797,-6.548848380576958e-06,4.361762511377413e-05,0.007276497995659393,0.017388077255865456,0.01205624009515198,0.0057936750798446,0.0028129540987588673,0.00803439579587089,-0.08259405185366635,0.6187672546209522,0.11227563857284571,0.0001098432962873573,0.02273156813527378,-0.027790381985434053,0.16148943924620038,-0.0024220323783418984,0.00026647631971929756,0.003913918594666536,-0.01654179028323009,0.11072412619011913,-0.008744723225811508,4.208246829688298e-05,0.03824047335796892,-0.0038445184359647247,0.02089301394618891,-0.1020235093172116,0.000303268749955684,0.009108695535874903,0.08190590295838766,1.0757766408795923,0.025743022016055564,3.159536114567784e-05,0.018419600094091357,0.029170382655135333,0.32143013027828027,0.10965157864180075,3.0320562290620608e-05,0.012989128472870516,0.03863994522377439,0.10190538392759899,-0.05882856391967062,0.00012214118477934868,0.011978488730523101,0.00243913880039806,0.017976700506912722,-0.002804643916624097,3.1341437203404445e-05,0.027833822155058356,-0.0038191266190999657,0.010972859468962256,-0.01664001794767736,7.716522419653486e-05,0.00144027025389128,0.009500104132723817,0.04023542017533222,-0.015560382880338284,0.00010796137828593893,0.006348714599250353,0.057792121324180386,0.04665499442586863,0.029492905605493617,0.0007080208637337819,0.018036508165725863,0.031152505157620854,0.1036765376003948,0.03492024107591487,0.000126473198119134,0.0006482416311577466,-0.01336153687190226,0.04306117745982076,0.012111894778866206,0.0019915430017814514,0.04289640257429866,-0.006863050842857662,0.06524392744560391,0.0021680401308698523,2.7049504589876035e-05,0.016769195061153278,0.03870426939917794,0.07721282227989931,0.042582342891966614,0.0016388557025451668,0.009718841592637648,0.017804885277809,0.12585044397352793,-0.00369088193381588,9.421283466328339e-05,0.0056551891180157896,0.02277152375945561,0.035428672619818295,-0.01661981953880159,0.00015169895793330256,0.0024574390349067095,0.029260703414805113,0.04009147093740874,-0.04054774519880386,0.00041892539263527624,0.005128429912447484,-0.026156254286659766,0.08668430245717176,0.012413225271968534,0.0023387587924112636,0.009047276943273331,0.013140423075977462,0.053281693094412504,0.008629628988519666,7.912645371619325e-05,0.01956974795703725,0.02246191145142535,0.032908186231393834,-0.02817695530374042,0.0016967581983867801,0.0033210514994148057,-0.012007345215001113,0.045258872805557716,-0.007873207905724001,0.00010511369430612601,0.0231075819764688,0.045429432810524535,0.11733190542336447,0.05334465483831589,0.00015695731732594216,0.003029116249796352,-0.007437588873612355,0.03104856840721609,0.005124179566271433,5.846615220598678e-05,0.002700201542231536,-0.05476348608450208,0.1987148043536491,0.023472972985639846,0.0026120345715820747,0.007205743683291137,0.024520257677980897,0.11144070775180424,0.0151519182618478,0.00010945150530852593,0.016080202055985825,0.025162005175032354,0.16761175665667147,0.03101276833378361,0.00010886832823218614,0.0035476646293635507,0.011932098692484306,0.06264966710962916,0.003843028354642281,9.008381455004133e-05,0.01055997251934631,0.017950589741119866,0.0820257734642647,-0.0014596632447848655,5.500165807636972e-05,0.017369041710463533,0.02509562191292103,0.039942572161820525,0.006233662089886667,0.00030633126780274154,0.005845262419599989,-0.011505004076775748,0.048777559541282454,0.012274061652055433,5.865176489735786e-05,0.0074071742373188025,0.007801697205649386,0.09547956902472458,-0.0037790993169497765,2.1081908603170306e-05,0.013425843617147335,0.0030496112292150218,0.008800689639481572,0.0012497426302209222,0.00012112582190524696,0.00626001645920973,0.008291506997481731,0.03284629681349698,0.004966049140569381,0.0003979009989495636,0.010022773464767966,-0.034920904423214535,0.1809554202830852,0.029301127430953207,0.00011053140300711545,0.02219432287221965,0.0037247393238993855 +2021-12-02,0.006093342571537435,0.03567271304245787,-0.00024787765456224276,0.00018063671999725794,0.009517242528267869,0.053986335963604554,0.19747863176156213,0.10607043112850251,6.559553372328293e-05,0.02870837151630939,0.03571968160170945,0.1262519439268927,0.06903056035979882,0.00013087801808364986,0.0031647503757576663,0.008392238122652043,0.00813162692114623,0.0010577131138089385,0.0003483118174846059,0.008881542129696707,0.05158672598429183,0.10344144331172146,0.14394701382656286,0.0002609403054445831,0.011377372591820764,0.011131059525525741,0.027920354634438798,0.018469222227717415,8.70487050383791e-05,0.008769797043030037,0.06342736984201203,0.21278451074777668,0.1004961703821285,8.74634384704065e-05,0.019078398204780803,0.006503006803640376,0.0547107413539808,-0.0038633657092972105,4.0760567614254436e-05,0.02882884596445694,0.014547912588720424,0.0129778587462344,0.008651061951670097,0.0008644550717805151,0.007139739415815402,-0.009267526413927711,0.020575682842014525,-0.08090093710135884,0.00015749670122882316,0.006563508287415854,0.017592332539306203,0.013420634786326508,0.006787915668574512,0.000640729508678904,0.0004505894945698043,0.001553911280702085,0.022986401069966328,0.0004397194561466307,2.0145498981329093e-05,0.0002673766470747867,0.04085831763439396,0.09859253519915166,-0.04562712469811098,0.00012310834247461507,0.010094153568231583,-0.003250739368105545,0.020593147957481163,-0.00012515612570389184,4.443459532618767e-05,0.004206218640861773,0.030741540678856375,0.025750014204533888,0.03649690827636207,0.0023284725847014147,0.025217780717715212,0.018588407650212885,0.11288815756387105,0.0038153065558742625,0.00013550206410930922,0.0035537592067376774,-0.013740239932098098,0.06216219263517764,0.004674731044385007,0.00034227582309722396,0.026721421737452674,-0.0398747086876648,0.2754772887402732,0.02458971351936326,4.0773001132881946e-05,0.018910746248009373,0.013986513180844578,0.07463326455756926,0.007859782278433475,0.00030886153659883525,0.004927571942113681,-0.05998335400096687,0.6859988497489174,0.04070277514032726,3.628587412455588e-05,0.022874663499655754,-0.027135913440971934,0.25042751178649725,0.061685017081421066,3.620296295376599e-05,0.012536135258876995,-0.0031623309449582237,0.009072478913422577,-0.017441788615704112,0.00011228044008670082,0.006393945576463211,0.031539212736685134,0.24156390553594145,0.0010430491159151118,3.015860034033924e-05,0.0019869215472040347,-0.008533799051429631,0.025841273079624298,-0.001889413208603878,7.321598153758437e-05,0.00919162980417064,0.014168971448639827,0.053052505819985274,-0.06211535994343116,0.00012211837569775584,0.0031422534891765034,0.02108516827457005,0.01901964087344128,-0.004642565871630751,0.0006336512856119914,0.0024643227221420212,-0.021982922936444257,0.07285703579271688,0.010806069085247765,0.00012699889687031314,0.007242740003410526,0.05169291928426349,0.1629373724218438,0.02476166132463577,0.002036242629174179,0.018933170953505413,-0.036236202695538726,0.3010063015188375,-0.008605157672035114,3.09563171954831e-05,0.007227752163725409,-0.006207019253227576,0.017223594114411673,-0.0760452056443199,0.0011782313653579282,0.01039654428241402,-0.015317037012764247,0.09891820199457267,0.00325752740008822,0.0001031155568273909,0.00846319569879569,0.043103478644845206,0.04641840436576296,0.0664772144591939,0.00021916313285638646,0.003087389034633333,-0.005302681003262771,0.007578580661924807,0.004774680314775871,0.00040161649185769366,0.006697148555207061,0.06141174158121291,0.2509368944127113,0.1563282201488567,0.0018968685501405875,0.004585475683606624,0.020042292314459628,0.07468327269452352,-0.002060800096575308,8.610223434053292e-05,0.009073619077927572,-0.0048925764376717565,0.006126892081348415,-0.003325823996058998,0.001985064307032461,0.008925954168326977,-0.008488542332007087,0.027278501151838733,-0.024650116992113624,0.0001232902267941834,0.0035758834975902886,-0.016231176506781585,0.042694475961147345,-0.018880243851344992,0.00015411279230110854,0.00281277849582863,-0.0515352035709283,0.19307762620320146,0.14747090198859486,6.51457322808511e-05,6.441508491244032e-05,0.037301402280472705,0.116127423109733,0.006615936474805152,0.0030444470673153725,0.027413384750133708,0.028613096119187283,0.14511652955205231,-0.049805529780480765,9.808182559259354e-05,0.007725989334398746,-0.011127398736479699,0.056691313881439984,-0.0024553978813530992,0.00014234358933087445,0.011390707974121969,0.043491744272214986,0.2441786735948352,0.07481129485921854,8.424570989478513e-05,0.019505975767799954,0.006897425281541198,0.03187436226537376,-0.0005365834360600466,5.4386723427431557e-05,0.01598334789794147,-0.04233401912108694,0.07973235045892134,0.01825253784760019,0.00025887155275769973,0.004891591266344161,-0.012243460560351985,0.05318957215506757,-0.02338966895515728,5.723900365567229e-05,0.01421941072851559,-0.002409405582726063,0.029661361525069534,0.00044558787753000607,2.0958013486341948e-05,0.0034470177664020227,0.0270359552446162,0.07674245022274837,0.12212622947013499,0.00012314450070327268,0.006137437256941287,-0.04694991194109041,0.17235911297898043,0.08448170407713008,0.0004293668417169212,0.004470584622480314,-0.009519199677714817,0.05145474059784882,0.002189376539016189,0.0001059611930960437,0.019552029288385876,0.006198930529352515 +2021-12-03,-0.030436345478788554,0.1937312776515412,0.04650280040433246,0.0001661419664130584,0.006323617419977633,-0.0013335948955309218,0.004457358871112789,-0.007012572522183972,7.178882575502792e-05,0.023272224623608593,-0.013119288038668877,0.04223748669819607,-0.13887415188424865,0.00014368432885676733,0.0037570433703764854,0.0013252177804720295,0.0013954788339850751,-0.0036486519766446134,0.00032050282126975475,0.004727931882853077,0.03399907041222295,0.09537010051648856,0.04447691354219461,0.00018653166845784562,0.030487825774147524,0.018055174950080688,0.045655427996211584,0.013240997066866806,8.634874351015292e-05,0.004787415825712893,-0.008027059662619853,0.026835299533945933,0.00033831989071587444,8.776874712147256e-05,0.0102065324920472,-0.014512807484279158,0.12227917494980435,-0.006223638889195707,4.0700294246687745e-05,0.0037784446854133725,-0.002922164363980259,0.0027360267467863094,-0.032297084989109055,0.0008236241800340191,0.0063939786571464265,0.005599863537113624,0.013752602971976285,0.00024103853986989044,0.00014238178223396702,0.004765590409706172,0.016595794037730396,0.012019023359917485,0.0271411329640555,0.0006749214258856168,0.0100576589220711,0.02327399928177853,0.30407160361019686,0.10668683515387851,2.280961429393652e-05,0.002115100232779793,0.019914372795519993,0.05290135028603886,-0.052866788691516946,0.00011182809154849245,0.008174736456358541,-0.00415988926648626,0.024499927543224276,-0.10785807902671378,4.7794595292312105e-05,0.004982314483783066,-0.01800017230609825,0.013734951659438844,0.0063131787333813435,0.0025560685672845074,0.004123196772593091,0.017897997546577487,0.12121127925528974,-0.05520044179733265,0.00012151041866056492,0.01363897161129594,-0.010681548177760448,0.063126470724287,-0.002567211817956147,0.0002620178786111029,0.004260574627166342,-0.02377378661790752,0.1451200435315495,-0.04980011996241343,4.6145772044255396e-05,0.0041444274609229535,0.01886869134163148,0.1018409434714708,-0.055304246748779824,0.0003053558001100377,0.013796887864183878,-0.010723559346680206,0.15890477228391986,0.005428305566360421,2.800478550090526e-05,0.008811824464783452,0.0036076762713269164,0.031677670449461036,0.004470057434381901,3.8050120160922834e-05,0.008249519329603187,-0.03314984080283357,0.11455712710150188,0.0542333466833403,9.321420269287245e-05,0.009691619053703814,0.013869884647910722,0.09974169154505258,-0.002341293784199592,3.212095847935193e-05,0.00148150203270094,-0.009420293115927745,0.024251804941689697,-0.03509261530322919,8.61187528815241e-05,0.005631252454533369,-0.010853351078646042,0.03565910987616958,0.029651477989903873,0.00013916882133536225,0.006226668827245211,-0.05596548373025438,0.04914208679532462,0.044749989563740725,0.0006509419020940795,0.036773120717254366,0.006634799760328585,0.023245375251770933,-0.006855232024002149,0.00012013713421411934,0.01669716263674603,-0.057657853697802235,0.21400757348572552,0.07763513762300189,0.0017292130472415868,0.003944174885088901,0.027333665357362355,0.24855400907509145,0.0013404142360602203,2.8278690573489935e-05,0.017811372212912527,-0.018796569878980884,0.05493261179904754,-0.00354689003158247,0.0011187154220933973,0.004091130111089342,0.043840812668187006,0.30942335813242267,0.06497601862225784,9.435200730560525e-05,0.002829518384856106,0.024486721703021786,0.036351163878340274,0.010424177104857482,0.00015898557107320557,0.026373942064747812,-0.022889917376438165,0.03342341252637626,-0.0036400324126424823,0.00039309484594987675,0.024981547630296464,-0.033658692275073274,0.12769717203559264,0.01474069408084845,0.0020429902789279733,0.0024529826479346988,-0.010958086899122442,0.04458914141560549,-0.1891393900547631,7.884896566266706e-05,0.01149315429216128,0.024415686727785914,0.03369911726171074,0.012557943067123836,0.001801057635950796,0.004232381627196726,0.03797967150377639,0.14497050664593952,0.014671812127666333,0.00010379766500836288,0.008854272473277932,-0.048723746882919604,0.14330608006900986,0.11851980640778033,0.00013782767743533166,0.006118294703323718,-0.03329587030638491,0.15209471258090818,0.04953656244192781,5.3430615822587e-05,0.01615755907150959,-0.020448588357768447,0.0671537313560859,0.015280922743422437,0.0028860991132637686,0.02589200372730873,-0.013453198825850231,0.07476694550988844,0.002681569148800429,8.950689524039723e-05,0.005095783219247644,-0.01717973951896011,0.08695990808818667,-0.00109786830102301,0.00014327099831438252,0.007356379455638539,0.002891128334188085,0.01687028725127416,-0.008142237487062718,8.105757210627616e-05,0.006540485089658895,-0.05828325946273778,0.2625514319770861,0.08669918664764655,5.5792630133679276e-05,0.004611720890750222,0.06743230453769856,0.12699217608031457,0.04316312133787955,0.0002588930733731629,0.027434457822772772,0.028927903156410844,0.10557143759292348,0.049849174612830616,6.813729607779958e-05,0.0153774966151889,-0.015131500388150724,0.17190382773342364,-0.1817790692691391,2.2710554166241346e-05,0.008989873121303973,-0.023608992163925847,0.07647103212077767,0.04245318104571591,0.00010791689983524038,0.001544534558833533,-0.014097064863418447,0.060402171265624555,0.0014468274161662385,0.00036787825564059943,4.739686979778057e-05,0.0046852828620036506,0.023999638051903395,-0.021486169086007468,0.00011181573410877432,0.018893417137658897,-0.004477209657268167 +2021-12-06,-0.000246825227607104,0.001650343842299264,-0.018599642755814653,0.00015816183425300707,0.0045828552047932555,0.05099519635055508,0.17530450475842344,0.06704362619495709,6.97986011160277e-05,0.008764181905350733,0.027397352625921367,0.10042228174750417,0.03876083280258823,0.00012620475526861912,0.00021381232355363405,0.005138638399848537,0.005397201935654339,-0.101568959867505,0.0003213270203173725,0.0021648902784156127,-0.0074119986239136485,0.016183013935155206,0.0039030311942158296,0.00023964793671552975,0.008195704377342735,-0.01794366725949107,0.041046617990816964,-0.0055681428770063554,9.545101865614816e-05,0.005735727609244179,0.00503794856836491,0.019366823871939616,-0.024443911995447258,7.63282282914581e-05,0.003982573402861119,-0.011161728188301271,0.09100290104377073,-0.032113637057267046,4.2060537621272506e-05,0.007298731178921465,-0.010726187407373472,0.008147661806640614,-0.003953337529438659,0.0010152130068943716,0.00017709526755288387,0.03259213697378542,0.07588598974181092,0.02170430314886708,0.00015018035288209133,0.00461598759320952,-0.019188271420088478,0.016953422465684674,0.0016034432407364188,0.0005532263112293373,0.003885606148142827,0.007337553483345451,0.10087725098062898,-0.0031089839406412217,2.167608426006984e-05,0.003560093567525336,-0.04528448308754096,0.15388929531243625,0.028018953684191526,8.741622374307991e-05,0.01740882313498959,0.0044346714732937794,0.026795643673812167,-0.01795943033555492,4.658639198631705e-05,0.008571701218594454,0.004198405266159228,0.004009144372434019,-0.02518676171275536,0.0020424697581241835,0.020752169832209462,0.02786271566166005,0.18661033023154153,-0.015808532301096946,0.00012286830563659466,0.01603573409842514,0.02374478214477274,0.1323751813050002,-0.021227711954458092,0.0002777600958255405,0.01796804277418335,0.024347978547621614,0.17539751758109526,0.0025842907395812924,3.91021307850684e-05,0.002053515526226596,0.07844698098931309,0.3916276490497627,0.27345786001217115,0.0003301335761870832,0.0025664801098086243,0.11160876506338065,1.5314182879986602,0.08061324753563034,3.0243684921533506e-05,0.029276229244750568,-0.010934891316582642,0.11309937147625827,-0.019450097649852588,3.2302489093082003e-05,0.0014695283434717598,0.04160602590167423,0.09421578377245073,0.01647586104683389,0.00014225099917872334,0.02130841536103066,0.046638947188348476,0.31788132608922764,0.007044903709443138,3.389035345386488e-05,0.00659288921248218,-0.02521746253153035,0.08253282394415193,0.06177031944406968,6.774107141922107e-05,0.0036532764135233688,0.016774044642911642,0.0625781292401982,-0.08328373355953259,0.0001225642506373723,0.000863397399010808,-0.041259330966612905,0.038609717916171106,0.01933719411290876,0.0006108029335201882,0.019638360212147366,-0.037287127377840394,0.14746994779543637,0.04857235433473118,0.00010642444864889317,0.013128391083510032,-0.03909151389198025,0.12928302026848457,0.03322640902491726,0.0019407079052806847,0.017582390522496275,0.013012339632276581,0.13737847920122057,-0.008314882083116462,2.435672434722097e-05,0.021019214504900158,0.019967543309046955,0.06188067831136155,0.001973478985904314,0.0010549717717887627,0.008820831281783953,-0.005412218008367334,0.03823954262276994,-7.54049797004761e-05,9.425149250444004e-05,0.005857126715824601,0.021291944172501548,0.027035662708526042,0.0036637644797665545,0.00018587615725252285,0.007065174592322198,-0.01379481456555014,0.02133239462848775,-0.06250108053252332,0.0003711762430409292,0.010346305843637155,-0.029022353591853827,0.11253616101636577,0.006156034798730216,0.0019988991086411943,0.003981369486284303,-0.015985426474896577,0.04915332713231598,0.010869290797014963,0.00010434260562540345,0.005846629763164081,-0.0491887968540274,0.06438259657308794,0.07831854165483551,0.00189921837656658,0.011240579909145627,0.011707666286315345,0.03402716440970848,-0.029430952133420868,0.00013632032470832904,0.016660888732879086,-0.04461064018172294,0.11456856849318156,0.056062646361533575,0.0001578459142712014,0.008837364151182654,0.014662014576396078,0.05169224569115289,0.004063850311097019,6.922806170701745e-05,0.002143767002919046,0.01289781728179903,0.038532802446953056,-0.0035408741710920857,0.003172514985767187,0.00948766284274039,0.0035316250391239784,0.01821856265789501,-0.09516107664425796,9.642753110841864e-05,0.005785446311876576,-0.0067987363009593136,0.03900543503627249,-0.020019610126931,0.00012640488419401425,0.013959346191260618,0.010242573342538449,0.06571610500635353,-0.000598566473822009,7.372010859051613e-05,0.007381776946539653,0.001146133548878717,0.004844574125630571,-0.020600194234204703,5.946028885770231e-05,0.0013122420271011806,0.020664196805447198,0.03655685352342303,0.007182060174175177,0.00027559993757382827,0.0014192950270364344,0.002866650120450317,0.01200564467807048,-0.008414823548168941,5.937499416494846e-05,0.003983507996326666,-0.015260279071496565,0.14861726137335077,0.02442620200129203,2.649259541539212e-05,0.0037316748720691226,0.008603822114479754,0.0315317787845769,0.010749056231557318,9.53788136368816e-05,0.004580977784498708,-0.0006903255331730666,0.002994677042908743,0.0003520888816016539,0.000363355647447393,0.017300136994750113,-0.040584185495591375,0.18218286137399872,0.03997186990510451,0.0001275913144171422,0.03875120932815401,0.0032371411761507396 +2021-12-07,0.0467054217499046,0.29820058726354653,0.07061572448394625,0.0001656324354045973,0.001689878878350866,-0.04025277653461212,0.13752921216422626,0.0750293728233728,7.022818001895621e-05,0.008349191709734883,-0.01901990635915888,0.06554759833647558,0.010174048446789121,0.00013422975427950336,0.006859453556859572,0.011260463624984911,0.011747954679226565,-0.029259017705753915,0.00032349074928619516,0.006146713542078312,-0.0031439913417781536,0.0068670355547635325,-0.010520780215677839,0.0002395575250916209,0.0030910527325363427,-0.003171880762814837,0.00891542583812456,-0.016981707359696025,7.768219723559917e-05,0.0003147745798089197,0.048276961452705686,0.16702994638598467,0.03767672677585048,8.480773048238601e-05,0.024285363974470498,-0.003740372012467467,0.03165197326978321,-0.012216471640992013,4.052402950642414e-05,0.010422156187776846,-0.012095549070780146,0.009692452408495662,-0.0011822777500265507,0.0009623580801879347,0.0016512671825395621,-0.029895046598984388,0.06785832116247499,-0.003119688307632571,0.00015404869026272922,0.0028965890121703656,-0.01252350785149493,0.010002609609950402,-0.018459172654430422,0.0006119797212991324,0.001935474049900947,-0.0049075412405989475,0.06436961599523858,-0.12052718029425097,2.2719869316731868e-05,0.005675054855997013,0.004652307209755281,0.01271388860402445,-0.00024407679962587834,0.00010870287262436135,0.007163366605930851,-0.00279692657986547,0.015539474968885353,-0.025444720949042498,5.066482457468247e-05,0.004623092124492894,-0.003972008982821963,0.0029740840485843354,-0.013134843130993099,0.002604833429975587,0.010055456351323086,-0.08103371935283331,0.6089370505965731,0.06629640552078066,0.00010950790773029792,0.0018774899274268705,0.0499776001719202,0.27135557365411833,0.01701282879205756,0.0002851969546589114,0.0006959623132773241,-0.012252691211478355,0.06886523366512909,-0.032020768130440226,5.011784853396428e-05,0.02573845345352219,-0.05449208834718293,0.2672000797219511,0.09249141797604538,0.0003361117353478233,0.0027103760064882765,-0.08061421050852477,1.0646017495939357,0.07553812875011766,3.142350759588602e-05,0.08574278982205381,-0.03178172989647797,0.3092339790914962,0.08164723249078512,3.433776567888614e-05,0.0032232897037696587,-0.005263057418591436,0.013572765875025119,0.004557514826617026,0.00012490864757720265,0.004335983450998867,-0.05935294268064156,0.46311748385732454,-0.18286931121863195,2.9603526892595493e-05,0.015812307071785235,-0.0003141015178059617,0.0008390449950838814,-0.025537708440023628,8.299695632119551e-05,0.007680212401184719,-0.005547331807549643,0.025096759351006248,-0.08343148112105331,0.00010106833072008641,0.0016821741473476402,-0.018671100454559723,0.01858088606784845,-0.021041994026143773,0.0005743532151870703,0.009933407375394995,0.029726676609568535,0.10082911384505415,0.0482058525323283,0.00012409275237107347,0.0011649299528520432,0.053412132348984745,0.19299686576826358,0.024711377825785825,0.001776269402960054,0.020737033955542543,-0.0018575874881093715,0.017303271666052757,0.0014896468366504237,2.7605984900129766e-05,0.0006045607520940412,-0.014255486623454675,0.042492048910390594,-0.0006144489914456128,0.0010968459701991317,0.010329791323449656,-0.028106060170187293,0.20972416175415418,-0.003792140889153388,8.924361370437313e-05,0.00046788985854432567,0.002062452813710738,0.0033368370125124894,-0.006671756562196867,0.00014587954948011068,0.01502329880379778,0.028911158238036572,0.0352803257778685,-0.005511635890170538,0.0004703669706107048,0.005598426481346695,-0.019526729519560408,0.07574044937034075,0.00736734524902686,0.0019982599043768287,0.010515031585896152,0.017527192264659132,0.07841898791435674,0.033741129720009304,7.171029154232852e-05,0.00014781261697703304,0.029103282321240587,0.04215525695714035,0.023999332570503618,0.0017161981251389586,0.0040224451877901276,-0.009234293553780932,0.02723337517603561,-0.03385944152046605,0.00013434399037831206,0.002980948595072425,-0.02400804009853624,0.04902850344311159,0.021915272405865653,0.00019850362720846092,0.013711285474093412,0.03663419568254964,0.1621292225997868,0.0032821540735887417,5.5149208726787634e-05,0.0039418118560517554,0.04235370051535208,0.14339606617222064,0.014525752058243751,0.0027994465633210956,0.008221048983260641,-0.017027346151787696,0.09100574020346078,0.0062093484991585105,9.307193631448755e-05,0.021205254534377122,0.0034344749714855433,0.021074928079471946,0.002528229496285754,0.00011818300787418247,0.004821234601629545,0.034715154494748934,0.20315450631026183,-0.0433578471168675,8.082418628254334e-05,0.016685653621256482,0.021987612759298038,0.07715111389531479,-0.07009952764813782,7.162807403814977e-05,0.0009559252117273904,-0.016162163718368264,0.03424732795241767,0.0031154960992155335,0.00023009236246387764,0.028527516661933008,0.009514645261933546,0.03462752476173843,-0.002400217514663538,6.832592632728836e-05,0.007709505215463844,0.0006095020063919054,0.006228380482661509,-0.009071266194593475,2.5248250473325006e-05,0.012775592111277014,-0.00012758110867503667,0.00042101719366295317,-0.00808853117075699,0.00010592427601086546,0.004065799720487254,0.02831552169487857,0.0929701963165353,0.03435163705773884,0.0004800746683049341,0.020285303122982667,0.002277715047992902,0.009864408070742556,-0.003339785175467715,0.00013225136316355652,0.0009412484473917519,-0.0026411097328356676 +2021-12-08,0.019385114617292247,0.14258924348155277,0.0038917511662065487,0.00014376997335773656,0.00812304418056472,0.014971044126181299,0.05132100643314262,-0.007875597746037787,6.999507004252242e-05,0.015034549742805346,-0.023155507118674847,0.0848170843894314,-0.012194083836789877,0.00012628976695565312,0.008480865594968828,-0.02941727636726172,0.03890323944685173,0.11036003237631137,0.0002552022803314335,0.0020954895662516257,-0.007925276599687768,0.019395633600373916,-0.018742006854705447,0.00021380026019510184,0.010636478026579776,0.03496411240632952,0.09307217041241717,0.15311994228486953,8.202559813474448e-05,0.004730536727769644,0.008019038824178648,0.02863910377944483,0.0008699300657562973,8.215854663808704e-05,0.019025171743404456,0.002146550288404686,0.018629854727567726,-0.024607172504639334,3.9512109209445256e-05,0.017643074386444187,-0.008337052926937582,0.007407669173455506,-0.0024854126182881453,0.0008679121470998723,0.0011380013967299415,-0.022431398633641728,0.04579387495727147,-0.0077178460523577835,0.00017128165309944585,0.013614462787699783,0.00362438749587859,0.0023818423610865516,-0.018829888853605252,0.0007437825185860848,0.007997443831621702,-0.031707761101331715,0.363752635717575,0.2038988003839013,2.59765946771142e-05,0.0007697965550135272,0.022312117068587104,0.06294368308284515,-0.0026680508776789377,0.00010530273865160843,0.007556164617180585,0.009382579015947719,0.05038345909293611,0.016118748877100835,5.2419885507722474e-05,0.0016270599875421025,0.020430594115167094,0.017833129676988833,-0.16702783000425975,0.002234479635162155,0.002365190014481204,0.056574860299442885,0.3861888469546845,0.039072241741161313,0.00012055240272191505,0.006850260454985462,0.020096548351126356,0.11667709154377315,-0.0008199204345711669,0.0002667129539965241,0.0139376898318317,0.003726401124833448,0.017425493499168644,-0.05977631882925693,6.023729646557772e-05,0.014741212693229892,0.013020760562053226,0.07076911435661712,0.005088478986395148,0.0003032350506676851,0.007682768078578719,0.048193594970178104,0.7415453680208561,-0.029794966842732508,2.697005475831347e-05,0.007089419432132158,0.014524301113859191,0.15819645244900699,0.004600453646895491,3.067469214967488e-05,0.0027750886944623936,-0.04632709421138466,0.1325186108329365,0.07672728657031984,0.00011261103287703925,0.009481935208394066,-0.016458685103085513,0.10389205653722991,-0.03445200151040607,3.659360273818486e-05,0.017180158911878598,0.004538833372011958,0.014784135652811503,-0.035860426576052276,6.806528744024586e-05,0.003795351053726182,-0.00889903549803562,0.03463755704424958,0.004856637478042151,0.00011747468272168226,0.000957429839934355,-0.03329789203001716,0.025599738072680147,-0.009904408646180828,0.0007434585842531412,0.010841767260081656,0.02907271073845747,0.09564386060823411,-0.08988907467144114,0.00012794238389978547,0.00448746560382015,-0.021804329271059315,0.07821403606778657,0.011617840265774233,0.001789275474627866,0.04777486353794849,-0.02604636612272722,0.25467718461612215,-0.0362107110250061,2.6299003690965312e-05,0.048439213069406926,-0.06636656550404496,0.21195856966888707,0.042492956911770095,0.0010236927627015541,0.017819766499276347,-0.027227134460296884,0.1997293146281569,0.018071691448736642,9.077907802362918e-05,0.023645794606299262,0.015919007009213487,0.022244163967727347,-0.007109598227727289,0.0001689060759793132,0.011356518400043404,0.018706413388950533,0.027664043453104963,0.015124573624141246,0.00038813140396207137,0.0023939302155082,-0.004097906960102096,0.014057358318377872,-0.00472866759536306,0.0022594811367621596,0.0030657103282815718,0.0203399621008454,0.069005350770409,0.03765325564766279,9.45709478743053e-05,0.01738367291323579,-0.0007680251804099124,0.00106392837997647,-0.021034650636992412,0.0017944867546307865,0.011384090757601918,0.01633834393151424,0.051921316455204314,-0.02831228172336629,0.0001246747124078629,0.02145282195171219,-0.016504970362948002,0.046624496791637535,-0.016870806102998872,0.00014350299571375767,0.024120390331528324,0.0002288092769328484,0.000913107068149055,-0.0005156952903485355,6.115977079303724e-05,0.00433240887792051,-0.05905714494710594,0.18421665015997113,0.0653838309893903,0.0030385166808102352,0.012398149875558522,0.014124805205918457,0.07285258505114756,-0.0502515274677608,9.644463444765011e-05,0.013969933024151898,-0.009138552045403073,0.04504174359801062,0.0018033620133032994,0.0001471373669277429,0.010320271961768544,-0.035051205977194924,0.20114381594413908,-0.01430714183001116,8.242234732304502e-05,0.011705703830376,-0.047986332614508624,0.18996389494750096,0.055830014578400304,6.348832791498926e-05,0.016623870841177935,-0.05577383838839679,0.09884205311551844,-0.047897007269981536,0.0002751174707082367,8.213884397168924e-05,-0.02276198858754771,0.08285620745286601,0.053981450319770155,6.831239732308602e-05,0.006649712139444767,-0.03850709435100801,0.4437699673182611,0.1256729526870376,2.238793962655525e-05,0.0073723373647010225,-0.004648448474333789,0.013440935063624255,-0.022538239200200694,0.0001208891998401094,0.0020209805613791475,0.020468673488885966,0.08085895455540171,0.018258447880952784,0.0003990152986329583,0.03955897840881894,0.0039016779134865474,0.021492279922177435,-0.0003440455510392925,0.00010397782361368386,0.005388935548314782,-0.0042701805576707405 +2021-12-09,0.0042228968877941085,0.029507130906806216,-0.003583197548861641,0.00015134569697633583,0.0003505999920432733,0.05971589613982616,0.20071134501355745,0.07310787925171534,7.138854974118616e-05,0.016514053797786393,0.018851327005012995,0.07239092725219352,-0.013113391077628964,0.00012046336540699179,5.602950877685634e-05,0.019157026714768943,0.023393506181140142,-0.041158605264000996,0.0002763762011910353,0.0011405745213669536,0.009046539754319792,0.021331716839749732,-0.0008595872920605553,0.00022189854683657333,0.027078285757862336,-0.004191864901942754,0.012973988099089733,-0.05251834743245144,7.054732031810162e-05,0.0039031439830319176,-0.023934995188513046,0.09327959078498059,-0.009002526567427917,7.528987351464186e-05,0.007852294063284207,0.014266768191308475,0.1186582717158783,-0.000662181107807508,4.123122146415491e-05,0.004502882098797581,0.010349979807913792,0.009982022982448803,-0.03544577834396921,0.0007995869983944184,0.011746169057847068,-0.01334200013689123,0.03295393720740733,-0.16324713327797533,0.0001415713969050489,0.002661985091430656,0.003895621852527506,0.003108673459558683,-0.0026674485989600016,0.0006125281412632745,0.004275480207212684,-0.01800979143292117,0.2664710642170715,0.04268630419264994,2.0141017945901542e-05,0.0065274569151103105,-0.001953969228393896,0.004986922160892995,-0.06492788563938609,0.0001163954941418693,0.005726475884996051,0.01475141585526758,0.07851941739359551,0.04047228342136794,5.288328881718415e-05,0.010158518249692059,-0.0379891481615462,0.028055895358851616,0.07459399902931547,0.0026409391510156467,0.009325654182261013,-0.021643135656639785,0.15752994639777512,-0.002713821957648306,0.000113060047634296,0.011620439895281902,-0.029580814768948676,0.16117329520376214,-0.05541532922510874,0.00028420078860798964,0.00785100887618005,-0.03701752344155962,0.22006197955825874,0.03388434017382531,4.7383081461013624e-05,0.006351330181725914,0.023032668841891406,0.12966106894976645,0.000529831815787166,0.00029276656230729043,0.017489503139581343,0.013610836628488757,0.16695503467332315,-0.026599854607507415,3.383105430792706e-05,0.0026053212744993367,0.002329652702085523,0.02739539721892613,-0.00029202506095375665,2.8411573699761016e-05,0.0005726427385817855,-0.0828099303019314,0.23346355149762035,0.19146192743309487,0.00011425786038174647,0.0013677632226887133,-0.05011458242800898,0.3555578651482828,0.07217339628516113,3.255713663578334e-05,0.013713328310137203,-0.005493675093464376,0.015495119562112619,0.0012823350262501723,7.860414017927357e-05,0.0013229241490130682,0.0059998627797395575,0.026203374347315938,0.004464849140984173,0.00010469662746651336,0.0028705217845210783,0.050466647600524925,0.04878244227636028,0.02871786051014211,0.0005913117083966629,0.011256970962520185,-0.032817768359181924,0.11694235785262913,0.04699445411850066,0.00011811993744029546,0.003415147301289032,0.00462480717386812,0.016347511664259896,-0.05365037753802792,0.0018157713060030314,0.023440833135992573,0.030974535325397443,0.30132500635588993,-0.0382478413676059,2.6433326527497202e-05,0.02059532716024473,-0.019296129720387106,0.06334102235258786,-0.05445115447705306,0.0009959932864255644,0.00215556196679211,0.010968727974063166,0.08560549881234793,0.0027436371100923807,8.532577608263365e-05,0.008703347581122838,0.028045507716688647,0.03589550215629205,0.01406618560904437,0.00018440328764817668,0.0036704379534951473,0.033731488322489095,0.044673973241905,-0.15195495201244924,0.00043339593931317796,0.005736585626695448,-0.051219245237951565,0.17934668342438476,0.07905898595878122,0.0022135542273880255,0.0029114137818753096,-0.022434834171785403,0.08907961059899389,0.0342994622844887,8.080438408296185e-05,0.006819477791568829,0.03815824243401989,0.0491142214238777,0.05009575174447363,0.001931338023781395,0.010533887224064101,-0.013367396630998353,0.047818525794645905,-0.024505796801505754,0.00011075585342477282,0.014093880939846714,0.03972542088713721,0.09775602709792251,-0.022700841374553065,0.00016473479515874282,0.004292590822440935,0.05053452244203161,0.1816014550007516,0.022560439281765685,6.791766822920986e-05,0.013153236128749454,0.03310746546089883,0.10467849898905733,0.0004656382741461112,0.00299768852901354,0.021941004964214694,-0.010332241007427478,0.0626698407596126,-0.04903733147379193,8.201183086943213e-05,0.03164077292927532,0.0015889577435766746,0.007912405927227622,-0.02243077861219473,0.00014563460177637969,0.005888039329253971,-0.022807368618691377,0.14596795181098038,-0.05958876502084014,7.390373138424965e-05,0.0007998504484326667,-0.0012829612596849665,0.006900260610340414,-0.006994883496542796,4.672996373035409e-05,0.036665700479085045,0.013060896745233848,0.02404641161096747,0.005839747926540385,0.00026482081229579625,0.01838087529591245,0.020913572871003972,0.08351768823805959,0.01941096708853172,6.226788938358387e-05,0.007005190485479869,0.007253879766362344,0.08294850967693074,-0.022350138014807508,2.256280296193549e-05,0.003664477055512699,0.00884052965499642,0.03028160053817085,-0.07346326435980287,0.00010204892254897909,0.0022205444857558657,-0.001581835040469611,0.0064946797435323465,-0.03551865235010164,0.0003839117656197802,0.003739531376109385,0.02587416522206785,0.0997551397833221,0.009264098411666847,0.00014856033208019434,0.0018989351753363824,0.0012639689327332076 +2021-12-10,-0.009879862828139832,0.07382513120926545,-0.03504704495286355,0.00014152503511048818,0.025423988774161466,0.0008974106874915572,0.0028641037693589674,-0.0030722414914207425,7.518185119313508e-05,0.016199785206065107,-0.02634770288906024,0.10842404678474594,0.028893937472341796,0.00011241243343159477,0.004508064507575819,-0.014327961588852788,0.015627105699097265,0.006974786030175888,0.00030943804972598785,0.006588321442948433,-0.023496728227382184,0.04689301621921899,-0.004056984516227213,0.00026217845385649943,0.0023609154090277413,-0.007937195030943188,0.02113449182695158,-0.009478251738947674,8.200153495353755e-05,0.002487728500225929,0.023165161375870415,0.09648281862964843,-0.0729028767477618,7.044906001757529e-05,0.011047366690541795,0.013829358538443927,0.1104429876248189,-0.1051034597536825,4.2940045904956166e-05,0.014946566206465643,0.005662258685592159,0.004596269461085383,-0.012732008307282886,0.0009500118259931255,0.006188125544545988,-0.021059712189138383,0.0542058270692646,-0.05854331696012106,0.00013585272145032125,0.009921860927209283,0.024120421531965995,0.016363605823416845,0.041391817049591384,0.0007204937903889603,0.0005022434346356741,-0.002607610764306483,0.030650024624464766,-0.0016502921917064951,2.5353313511150694e-05,0.00899176508738937,0.002823874974479261,0.00706739562832165,-0.0019436926380413892,0.00011869627749312409,0.0008740276086369492,-0.008498395759897895,0.04574474274279721,0.00765669281543534,5.2294688516337684e-05,0.005954713500010671,0.026210916018755307,0.022666756215406855,0.018154125485021183,0.0022553596055090836,0.0038296513967861477,-0.023411280288409296,0.13537371471662288,-0.014969009500298449,0.00014231246003041964,0.026505583307299383,-0.01505681361762127,0.09057052647530824,0.0012573656687438887,0.00025742718885024167,0.011617621294575201,0.025184691999928215,0.14485019412164613,-0.02721341310386279,4.89754593917658e-05,0.0175483630207817,0.009427818312821015,0.05685550580864314,-0.006776502488530899,0.00027329109729450166,0.006011358917548224,-0.02380646057328419,0.28088441099522843,-0.018789713974913913,3.517202928314033e-05,0.003584697670520126,0.0072896261578270964,0.07364354417492885,-0.07166322626584612,3.307137747357042e-05,0.006726754122930837,-0.041721450148623274,0.10217623005754199,0.023348791127052234,0.0001315322581832662,0.010927684775935814,-0.014935890774683243,0.10625342301990758,0.005168810680340352,3.246987188546185e-05,0.007518739200461812,0.016424825338660104,0.0426161319953643,0.024009461724632215,8.544843507668757e-05,0.008413545998060011,-0.003936192104495931,0.01657637904054288,0.0011718113810392499,0.00010857634366332505,0.0027067682927785818,0.02072410714905994,0.02135864370116683,0.0009198890074698714,0.0005545972597336226,0.015564158567732043,0.022530057897264956,0.08611816325601576,-0.008074390993846872,0.00011011679391919304,0.0009669583883186558,-0.07026280030424,0.23780068656863973,0.023925984037270417,0.0018964068921566634,0.0049396672271878545,-0.00624013675588671,0.0498598388751725,-0.03248526277275915,3.218291899695704e-05,0.002853261759958328,-0.027909165153944173,0.08298850072966232,-0.08803689586954451,0.0010995125649309822,0.010079401744154292,0.006883934924044001,0.047478938807874134,-0.005267736186380465,9.655202702291607e-05,0.004387039167545455,-0.001868459805251401,0.002780094368881204,-0.0217489222740004,0.00015862425955203783,0.005283901410332964,0.01145210408317667,0.017627423702514747,-0.008905844830181583,0.00037290684625154215,0.0030969468673745022,-0.017963080357266396,0.0683946873112223,-0.03833285973010076,0.0020356766047683133,0.015430450697758651,-0.06074655273975584,0.23627810220263473,0.21897229732380524,8.248757457485912e-05,0.01611530557743357,0.0047990552127349555,0.006976985312109891,-0.0021120036887267617,0.0017098780198688262,0.013330437137610503,0.011895845673877274,0.03783448248912474,0.006054987452157759,0.0001245728957615032,0.004002975510835486,0.00238456344914962,0.0060022726346808134,-0.008387301243196152,0.0001610473343656037,0.019953867070882564,0.004201703072327015,0.01671355019801814,-0.003994670400013937,6.135791213983587e-05,0.0035847725718306483,0.031031317435846396,0.10449638600753615,-0.13011599248365946,0.0028146020602135423,0.03145229245297312,0.042947191387753714,0.18765790688741177,0.05378329093174063,0.00011384356058821084,0.008163143326915697,0.013506328845854785,0.08066522928888144,-0.004464212927087553,0.00012142601188810357,0.0034997105636327547,0.01667725506873571,0.10879626266824861,-0.04159803922336617,7.250355357759589e-05,0.009744685085415912,0.021070326215223485,0.0913640606884145,-0.07974566225050632,5.796198641863888e-05,0.010446941271618448,-0.002869382195182623,0.005266807213024692,-0.0052738979527184315,0.0002656258710438331,0.008517398660207497,0.0021835329565759705,0.008133149107739965,-0.08857796436347237,6.675985621794022e-05,0.01636200238062604,-0.014049775479861687,0.169985956853391,0.012017586803014775,2.1324930544862436e-05,0.010826844136991174,-0.0058700285628852916,0.018234179907452946,0.004192964448346918,0.00011252860721630315,0.00660477398736856,0.00030413324218503667,0.0013568731729519973,-0.037576171363197894,0.0003533072965434968,0.012232436588373818,-0.004354002439409436,0.019013210808006664,-0.0020930561870782976,0.00013116108498777802,0.03675452663824354,-0.001839872332757488 +2021-12-13,-0.008849398922676326,0.06899343149672568,-0.040803242284640065,0.00013564150857141066,0.018394796088473716,-0.00756678786559525,0.02511199961307881,-0.021425535565479537,7.230041486302669e-05,0.014411877570745302,0.02365375429215992,0.09252305851935644,-0.011744551156779302,0.00011826256792894259,0.018015778230145038,-0.007572688937967148,0.008646061809348425,-0.011738682579098408,0.0002955967386594583,0.015237219871779378,-0.019051145482760247,0.035302264967967754,0.001959686836729696,0.0002823685316779287,0.005967675835719441,-0.00015655506830448388,0.000375804076771608,-0.010521777464989026,9.09604048694367e-05,0.0018741179918070926,-0.013737385150928325,0.050514224591380455,-0.04457953251314216,7.979583781928253e-05,0.004889327439274468,-0.03563956074626209,0.2585231538473882,0.033491166182088715,4.727499720123502e-05,0.006088765117158651,-0.0007029985738941395,0.0006382896615126466,-0.011609639550272494,0.000849339692291128,0.008040860094005823,-0.013827982708266873,0.02773594687288249,-0.007667355860728317,0.00017433224278968522,0.005809027750650042,-0.0046748069029809896,0.003756595842486194,-0.0006668361352576412,0.0006082660277749714,0.0005104020638038147,-0.018178539151509104,0.23568608933168847,0.03725011178975145,2.298517522834545e-05,0.002249282785302516,0.016930334235610724,0.052542896629270065,-0.014798207154040057,9.571997104208754e-05,0.0183838983951276,0.00229668123525698,0.011577696341238092,-0.004201707067351866,5.583935404110555e-05,0.000843588781495912,0.007469850767037556,0.007055864301909212,-0.021082873006383864,0.0020648317914189486,0.013227782315448959,0.0260036386020415,0.18800308293148574,-0.007878047627510203,0.00011382070161163257,0.05803584852386648,0.015157209381185794,0.09475116669341598,-0.019958541445305004,0.0002477096442844885,0.017480058868347977,-0.028657905726030823,0.19332505316716345,0.01359999344452526,4.1755844095043336e-05,0.018904951133094643,0.032083536086114244,0.1709057404194652,0.022630626853903654,0.00030939435479997835,0.000125131137413127,-0.013150888131916165,0.1634308202416921,0.0030127275587392343,3.339268604797862e-05,0.03977264264347564,-0.009709454785151202,0.11383275815249339,0.0027024426045919366,2.8497666114281276e-05,0.01370108083251608,-0.018197749450395075,0.053369103427017284,-0.010174732537230374,0.00010983747237060936,0.026187073129010197,-0.00043574054625050777,0.0032277550092769543,-0.043286955041660226,3.118313578336524e-05,0.003205998594770292,-0.014821637391153374,0.039832275324990805,-0.008481446358413492,8.249705613568786e-05,0.008154890890900962,0.008329827021841412,0.03229107035651077,0.013230965902857755,0.00011795113861932135,0.0009698294012864294,-0.01609028766959747,0.017061391367377013,0.001370761982347346,0.0005390448793274276,0.020201793588177756,-0.015357850307064155,0.05404820742013643,0.008079810321109743,0.0001196010919359413,0.007201411077868038,0.01398698461383993,0.04706563507444119,-0.003818277090951778,0.001907389329227597,0.0012716594511909666,-0.012137012255946435,0.10720894252747219,-0.047174214313711375,2.911139207862496e-05,0.007949242844747169,-0.011226100503553152,0.02958891580694331,-0.09554153315469553,0.00124042680821175,0.020397313148284104,-0.021564869814504062,0.1598236981042293,-0.024190331271996844,8.9852736549672e-05,0.016258679607924268,0.02037723362398982,0.026144244976808492,0.001954469572814361,0.00018395623257087089,0.0063469808963173896,0.012131772308683432,0.015869852140441655,-0.0008631628200379534,0.00043878854781434566,0.007443022539171619,-0.01471133761894121,0.0634245574674425,-0.007503123103369442,0.0017978152413702546,0.02363863782816014,-0.014570676258789366,0.05334735101287089,-0.03907888068234206,8.76308895039128e-05,0.007431089733964563,-0.009631086588025963,0.016563715566707608,-0.0035362315296938148,0.0014454221811824482,0.006173158897650326,-0.00609621943205867,0.01992120033594506,-0.02380932060997722,0.00012124424249931709,0.009846778291968452,-0.0026838152943030086,0.007337022249846179,-0.026187420332382565,0.00014828361443732145,0.012912120140899454,-0.021920381592962883,0.09885073597970861,0.02261384111882195,5.412303324843253e-05,0.01359519742859998,0.014953669413446218,0.04551839446727479,-0.012552637295480833,0.0031137152814865944,0.009311754527618643,-0.00037971050639329346,0.0018310632468508258,-0.0014967276479693737,0.0001031548944849246,0.030402464870042858,-0.018881892017081226,0.10843807988581074,-0.034604608896325155,0.00012627706380276098,0.004858310568331418,-0.0061826926096513685,0.03814528577036938,-0.01408007371219168,7.666294184546375e-05,0.01567843345941226,0.013083720441636379,0.07452374534520274,-0.106356511576362,4.412492475299402e-05,0.018448082074645294,0.0038664342945345788,0.007776739498067338,0.0019309653157422884,0.0002424055041986439,0.0021795262465346215,0.006121798109336605,0.025832297421429954,-0.00026876416121153745,5.8929173019587655e-05,0.009867019920277418,0.0009558352916242648,0.011337599731815452,7.797534221959747e-05,2.1751701096467583e-05,0.0031872812863241043,-0.0010179697112216064,0.002886675129647572,-0.011485435944804064,0.00012326673991000425,0.0009741211048399697,0.017620061730531426,0.07294170239619188,0.014272938294693945,0.000380767174552482,0.020997043295868132,0.014153926858496518,0.05764673843363519,-0.005805432041358499,0.00014062871306480445,0.012488438271139702,-0.00306320800813867 +2021-12-14,-0.04903433519413785,0.32634443566536325,0.09232456916232704,0.00015889515803553907,0.006398560954240353,-0.0336071666852901,0.11647594531020648,0.049233480910929,6.923188919239353e-05,0.011209418051971365,0.009774461065300215,0.02942411285413114,-0.042806766772661965,0.0001536691354505577,0.0001273321358356001,0.006257896934736264,0.006721328075531881,-0.010448635906795168,0.0003142253134932256,0.0008515390891176604,-0.05263250222893628,0.10669491550319513,0.06840436036884909,0.0002581119227510055,0.03525523814798077,0.007746899638508846,0.020389229927732122,-0.007438813145245775,8.296097474223345e-05,0.001498445078007067,0.009118252190340664,0.0316944750503174,-0.02409474621668038,8.441466315424695e-05,0.005949792381566992,0.03341733992878202,0.323921606738386,0.05121912279595246,3.537777967663113e-05,0.003495668295502831,0.010450952281965364,0.008348706968186424,0.02516870439525317,0.0009653425147856305,0.009962095261700889,-0.02577631458852963,0.0609316655515671,0.015593029101601886,0.0001479243468158094,0.0014598683869425548,0.013547418680992988,0.010097128750558232,-0.004593691034820993,0.0006558175236862587,0.010811455587203558,-0.0017359901453438207,0.023011779490189427,1.396206934314062e-06,2.248121821641313e-05,0.012670303303186444,-0.05142894713338417,0.13228200150636943,0.0655232542491872,0.00011549359869655257,0.026307377563446567,-0.02176545622090329,0.10842609058008575,0.05283246441866804,5.6506159883506714e-05,0.015322148238973876,0.028799148866164106,0.021895082649758542,0.020868380535079386,0.0025654055881486884,0.0006733726683378226,0.00329274820462822,0.019244046518085568,-0.03101221165086495,0.00014080375321386986,0.029099875768398446,0.04220767381417768,0.25063063253594614,0.03645662854371881,0.0002607747269586845,0.0021970454728480983,-0.03364670274325156,0.20362333045837858,0.009474228656544,4.65453103990073e-05,0.011091972232162768,0.030414983574095954,0.17340492187584938,-0.009047521442797243,0.000289076623573374,0.007534921958429205,0.10355160640473994,1.2850432468855673,0.029903912430586096,3.344023556635954e-05,0.0048311158103789015,0.012379415762074963,0.13943309861605324,-0.013209452274174627,2.966306198168808e-05,0.010315101207996938,0.00025481903217401393,0.000834657418838822,-0.0008221072340401623,9.83436583239632e-05,0.0032909482614732156,0.0014793769189223411,0.01077118003436985,-0.013368405808722826,3.172546014086341e-05,0.0013336996905400646,-0.012449014651273686,0.03581416308509208,-0.0134142615080913,7.706506578310434e-05,0.006031119992506374,-0.007554585675016498,0.031460068973002624,0.008360411349394288,0.00010979930116297391,0.004215349641285098,-0.001460075955796048,0.0011661553353562375,-0.004929885630840685,0.0007156399998527254,0.018609093182581905,-0.023218227345375108,0.0906829470521326,0.010529157305780865,0.00010776790563809516,0.02253308878768693,-0.036656311411416835,0.11121084333152,0.029295989474536932,0.0021155378602060295,0.015975700960150926,0.03703421077751345,0.3191319147122789,0.017000306254661254,2.9841115348737738e-05,0.014652622444742526,0.01380074426156336,0.04049693839011979,-0.004824584621272734,0.0011141703233516623,0.012619880625357037,0.017956979111856588,0.12600245162781565,-0.005301633076306057,9.490299655174045e-05,0.005141505781512451,0.036832284342191275,0.0628439128249498,0.013735337463699437,0.00013832823113287768,0.01921364386454221,-0.011476651318618627,0.016290655111321176,-0.0010457598776208116,0.00040437151174833576,0.00046727868956533713,0.003318448015900301,0.011423926293377224,-0.0021904655706263734,0.002251489715452709,0.013126301039187556,0.000854848403272514,0.003142506400991261,0.0005002843321557608,8.727770228162959e-05,0.013813367926509584,-0.012724671347946793,0.018077741128721778,-0.018438873399489214,0.0017497645074513837,0.015467032858162328,-0.008876178372827438,0.03403531732102453,-0.011773335591021863,0.0001033266272608578,0.011845568421762692,0.021427101786584343,0.05990333758154743,0.01622444726879506,0.00014500159802310395,0.011830110261348923,-0.017203541222663887,0.062270415194044304,0.018865563387339915,6.742951191033942e-05,0.012326936434789673,0.02210080906546987,0.06617373832486331,0.0002785061888704271,0.003165487193213118,0.0045902346291607455,-0.02105330224409149,0.13601591179122724,-0.006937236906998477,7.699651679882205e-05,0.001022042669093664,0.007354647741125003,0.04035217994628018,-0.13200234217038706,0.00013217692964348046,0.0058818822987635935,0.01178522184056934,0.07245322407683324,-0.028430813868611446,7.69358479746805e-05,0.0006725969468343271,-0.04629254231935243,0.19231068535470794,0.04472026114014478,6.0499949418052766e-05,0.014789327068688065,0.03593410201879961,0.06578240434643852,0.0258183951128274,0.00026633389939165734,0.007565220071057364,0.02153888415989689,0.10072447758970549,-0.007868603461586575,5.317439444895882e-05,0.005204439276276929,0.002827273550705055,0.031184640524278325,-0.03890829904778418,2.3391516236606458e-05,0.004838955239449428,0.01115798161970297,0.040956804941521006,0.005996454070978693,9.522884927291654e-05,0.005937828632285339,0.004156708016732721,0.01800874887284133,-0.13485201883298054,0.0003638261811718224,0.01673646775125448,0.01964724889940418,0.08819966151516574,-0.11722146149809061,0.00012758705838230067,0.012940232368075722,0.0029962595671550536 +2021-12-15,0.006260004111666164,0.04228434894111876,-0.001913276170931434,0.00015656026735995108,0.0014120261310523168,0.031226573151492087,0.10104893065784332,0.009432688513712654,7.414863001817384e-05,0.002588557936788316,-0.02633654360955831,0.09691322311479818,-0.004678151567908378,0.00012571090267606032,0.013018348535099386,-0.0010784871830164322,0.0009835461731805969,-0.043878911040716784,0.00037007358866892275,0.01206270204672327,-0.009524423960678461,0.01778551790711848,-0.005155397797281298,0.0002802011897739711,0.0005877119958288758,0.007507088579838799,0.016026474858635655,-0.024073365730887544,0.00010227753996376264,0.006628779319146253,0.016221821974892837,0.05969750635763211,-0.07157936378795633,7.973211705919121e-05,0.005899560924181006,0.0013812153026816281,0.014411741165383499,-0.028669170228766236,3.286574960859694e-05,0.0006419478592140186,-0.0003172308103638673,0.0002591815452077781,-0.06435278444215665,0.0009438784539499375,0.004718174994018494,0.012023602866998254,0.030024133001620074,0.0068581281342413826,0.00014003159463318613,0.03288697817020131,-0.002170424945716083,0.0013393647815880662,-0.0054463140468929295,0.0007920822032708641,0.015925649102481978,0.0032475559812073884,0.04682935011953363,-0.001269367693507137,2.0666232202048718e-05,0.0010818564806846338,-0.005214936782843151,0.014876859285161808,0.0010063066917965085,0.00010413310802020991,0.016519328919959202,-0.0072118650181560605,0.04358448752371474,-0.009284112857308785,4.657763830791348e-05,0.0034874515054362683,0.0009601124357546198,0.0008089003868365335,-0.06371827837954673,0.002314994824068126,0.00027398293017277396,0.06581883338169515,0.4490077639939194,0.06498876128080606,0.00012062808612975122,0.002368070879826549,-0.0035248613903013934,0.022444567775687672,-0.014076286049879864,0.00024318625748096954,0.008865371427835072,-0.010494279286064041,0.06224735468548554,-0.010359926358360319,4.748896166470318e-05,0.0012756996231635977,0.011406738125026744,0.07403241291723378,-0.014004425667726578,0.00025393722781362406,0.009477912734008363,0.037509040067794305,0.4940571713820876,0.0025801783443510666,3.1505688407263564e-05,0.039008031569106524,-0.005167656622464646,0.054423307428247955,0.0038468532970559965,3.172418150453325e-05,4.254086076507725e-05,0.00818611431048725,0.02019448788680126,-0.010516646575241451,0.00013057730962270898,0.007820779915885156,0.03374569147002702,0.2544774094191089,-0.009183399548941835,3.063102096966044e-05,0.02746239337393829,-0.01936544287129309,0.06722506447839814,0.03388719690699635,6.386656934607082e-05,0.011724822339414902,0.0016372718750133548,0.005975468716330057,-0.006430739212701656,0.00012528452193970356,0.002578721360308335,-0.032633555370419565,0.029257004179988083,-0.02241309674209912,0.0006375439071285975,0.03505484986451767,-0.008744785406572121,0.03486836586146768,-0.01532324637514367,0.00010556101838800932,0.017755422521629514,-0.03550242149981326,0.10919722570737318,0.02490050263642513,0.002086726569551379,0.0002179735718611485,0.017639284667095873,0.1453561847176516,0.0054055099475273614,3.120539247614573e-05,0.005542688358799046,-0.03035815410820693,0.11586811827646258,0.012741859488949495,0.0008566090868498923,0.012476536060442765,0.004519837559310614,0.028725250318471403,-0.1802682169941814,0.00010478150887552608,0.01435190678302667,-0.016879287797278344,0.021404510874013533,0.03136055583506385,0.00018612049392852854,0.013439907908182929,-0.03492516027780765,0.04241977487776072,0.13307583158798528,0.0004725785030398476,0.008560736275910275,-0.026128877498025713,0.11802379550591915,-0.048503674128405526,0.0017159377038542208,0.016290384021096123,-0.03127686375149578,0.14217132981545547,0.03766800485917648,7.058323235715532e-05,0.01226904018674817,0.03423721432227891,0.050901068655350226,0.03189237190659792,0.0016720478931692294,0.024721647784031714,0.011734823320695264,0.03750005568625803,-0.1864222194002194,0.00012398258274428658,0.004736349270662585,-0.05074547230427985,0.134461855246201,0.07566868877078414,0.00015298842580043162,0.012089589168435175,0.04271870752267621,0.15515216305912558,0.02410079065613884,6.720076155595944e-05,0.0012493186733417215,0.006805219701156655,0.020929863423468288,-0.10247849164052455,0.0030817245221834953,0.020315970341220957,-0.02253851023357679,0.11452049288618528,-0.03811813095220203,9.789997221396628e-05,0.00046272869206931535,0.002242631127243259,0.01230771255844676,-0.011108200263436212,0.00013214212462083603,0.0010016541602021365,-0.015403281587370836,0.08698607539447654,0.016042614630226472,8.375528419793716e-05,0.008352187620220367,-0.026940619115508116,0.1284612805028941,-0.07533462353595997,5.270875037802042e-05,0.004840822823584316,-0.03281646176922026,0.055455543952972974,0.00901154398635783,0.00028852016949740164,0.005229618340298806,0.01784847003627575,0.06446888857361063,0.003769501985501896,6.884385595250246e-05,0.0045459941179788335,0.009862324885133129,0.10242828606194737,-0.008765797611717547,2.4842236085687726e-05,0.0040477780598818635,0.0031767954907017414,0.010806252037138595,-0.027495107009260115,0.0001027597714452943,0.0041992662500446466,0.011365234839875978,0.04830278926114638,-0.011053168004014858,0.0003708806495862742,0.013308648837441043,0.034948281014429025,0.1725059400401059,0.03566321226570291,0.00011603621687131362,0.01662007940203485,-0.0007909060974279662 +2021-12-16,0.019878175433361806,0.12769500848907953,0.010790555868403665,0.00016462249583094936,0.01292776327725594,-0.022150121276556346,0.06869942784773922,0.023349497726529025,7.736303781944302e-05,0.010827505028785302,-0.0026946776903589878,0.008516110307692894,-0.014116645022886249,0.0001463735996234485,0.014291180806536968,0.008842404187025334,0.009348973929353837,-0.016366799714129035,0.0003192083698150165,0.0006119543710661655,0.02614300189353027,0.06316984067414297,0.012969190993146744,0.0002165426489344572,0.006489895615615583,-0.008669107262388924,0.022141553559191087,-0.005010846482641465,8.548954910082086e-05,0.0045152298817138755,-0.015834055212472803,0.059439044212980754,0.013165072444545166,7.816461495668267e-05,0.004057601811564538,-0.007900136156503503,0.08005740414173505,-0.013798769285100853,3.384010381996777e-05,0.010402011312144556,-0.02316001879568348,0.015617926981651022,0.03360883657031124,0.0011435635550337171,0.009118338737863886,-0.012950777199178627,0.029533949541801077,-0.035645147236790235,0.00015333319664582662,0.03473296644018493,0.006471621499555272,0.004400342409587006,-0.07528779507973045,0.0007188710515947633,0.006146523969915597,-0.0029344176073046162,0.03772376442270939,-0.0019979474949809,2.3180867533045925e-05,0.01787291238162163,-0.010820462477222329,0.03271116181829488,-0.06497406355325366,9.826546005538978e-05,0.016425704080027782,-0.00013807797274037643,0.000916267991702744,-0.024573639315470422,4.2419320259575995e-05,0.008511252761405321,-0.004548337389974469,0.0043344810093840025,0.0058901892076958775,0.0020466262528284398,0.01511960168960187,0.028041001241116026,0.2230066641501201,0.008821399663528202,0.00010347317684673943,0.00550134697320537,0.024696093138135082,0.13031469050802433,-0.014104449731539865,0.0002934560782665747,0.006595891052384255,-0.048126375854864845,0.2945852735230497,0.05797359077808048,4.601856607196523e-05,0.007507752610003571,-0.0030962428813122852,0.017041946934638123,-0.05070582406418718,0.00029943503972229015,0.009377770895106063,-0.0030631488079449786,0.03929998689924868,0.00042218913207895043,3.234490806240853e-05,0.012213487607320201,0.014876840641541137,0.15821141744329087,0.01901279467623351,3.141626839525753e-05,0.0018473291877998128,-0.042475025393815195,0.1278260078064338,-0.05448717565661647,0.00010703780080540068,0.004951463686598739,0.03624198463914517,0.22625819122153776,0.01826025236885936,3.69998562806238e-05,0.014548342240988001,0.022997129676428536,0.07416742102592065,0.08981139329203797,6.874448116878649e-05,0.003544639649191045,0.017747390404833446,0.0617683256534279,0.05542641121140731,0.00013137637348895469,0.0010081479602370553,-0.018000477839251898,0.019566130185590128,0.0018348629302242206,0.0005258412559387054,0.0017374753101996447,-0.0030010585151869574,0.010932675640963783,-0.013261028096305007,0.00011554043790801545,0.004927366262273716,-0.024423098475937415,0.08484578871849811,-9.167533797652687e-05,0.0018475221083902472,0.01678386425051078,0.07303971412355664,0.6330732623196726,0.13917070063163817,2.966793292049467e-05,0.006913441328895538,0.043304243624579866,0.10738995919033711,0.0567497213297735,0.0013183722399536875,0.00483491150023917,0.01657853660782793,0.11950779090467689,0.009772656432154468,9.237950212077205e-05,0.014270794435093987,0.007112630657060745,0.010064957011381492,-0.1485996759041281,0.0001667875845998161,0.021229645272383517,-0.05588890054122301,0.08595385526750086,0.21010155379855527,0.00037321932167167497,0.0038882556495455135,0.033883914860959596,0.14096025296795214,0.0030329218895610486,0.0018631475619615885,0.012164458033557637,0.002249042349879272,0.00896022524144996,-0.008229439323826377,8.053210974648406e-05,0.008400526463060068,0.02601689603826176,0.036832268476549045,0.013986905766413755,0.0017559178985760051,0.013973645408156645,0.005702698861634183,0.020112063315527205,-0.0492543680392251,0.00011234140411208974,0.00467550190957699,0.00931472375540459,0.023573172239129678,-0.0027126009697881954,0.0001601814889674822,0.0027371243328734862,0.009313410443234207,0.03852936278829531,-0.0005196043870464078,5.8997124020453085e-05,0.013550292621802481,-0.02288775360470606,0.06092218862434343,0.02684660615374011,0.003560784825406434,0.008825692547802124,-0.012389055964535411,0.04967633340878857,-0.0035072596693163593,0.00012405927882944175,0.009425214570911687,-0.014433078245056142,0.08097740840592059,-0.11006170596946913,0.00012925753721246725,0.0041906807541232955,-0.008852782988929874,0.0447368615218593,0.009694926792901824,9.359723168135031e-05,0.006428228048930365,0.03595045102850391,0.16388740006773933,-0.019859670538741984,5.5132307867520783e-05,8.451474294240025e-05,-0.04884997288465286,0.09185849849008118,0.023229867181653985,0.0002592832005145433,0.009246103412573424,0.007134911351072498,0.026385320715719852,-0.002985149402109467,6.724199344350654e-05,0.0040224947039788975,0.006863689198963753,0.06529083679091614,-0.040008401392507865,2.7122933574157788e-05,0.005084321599411088,-0.020506122039098584,0.06303496096843578,0.03121326222172109,0.0001137132347721314,0.001147699981093368,0.019329006032167848,0.07581907127899187,-0.01713570475348901,0.0004018454285911712,0.0004509114616821322,0.040400837046722315,0.18793292961569846,0.026638831407971537,0.00012312869463902243,0.013078886876467829,0.002890969968613221 +2021-12-17,-0.03620993870633436,0.2359240551165425,0.04160195127697438,0.00016230883077421798,0.0173364999472955,-0.0026916136040719845,0.009585520793413242,-0.008064185402208407,6.737635737160688e-05,0.0199229009759511,-0.016763108376400344,0.050789320808767746,0.003068266979508475,0.00015267901594270684,0.01498287390342233,0.002754010414906284,0.0032987309854202907,-0.0007081019135947539,0.0002817646687105885,0.004081648216588405,-0.0035151218769118127,0.009283093608825685,-0.029035720583002,0.00019812780586614422,0.014769944165374332,-0.008247426528987353,0.023420313062129806,-0.015931643550222575,7.68904670940541e-05,0.015954878932473514,0.0058455409222902795,0.021488126099257737,-0.09307872461722079,7.982078902859544e-05,0.014735375741765908,-0.021482835181808258,0.22357711026752053,-0.1347873224316034,3.295056550118371e-05,0.002514538748930418,-0.019319433538070925,0.01616073483906651,-0.027872780538455776,0.0009218878059327381,0.0071086603350769394,0.0007491374563197026,0.001833349751923113,0.0009883630666469312,0.00014288218214452298,0.009008333780725969,0.006999770966138801,0.006232985456821202,-0.013723106467308647,0.0005489238171709832,0.003142409585469426,-0.0026788265415549116,0.028501761074688506,-0.09673449091110049,2.800887642794008e-05,0.0022313075712408984,0.02560019879443881,0.06236918021032708,-0.133199522975329,0.00012193386497276297,0.001097120231000304,-0.002982474054139965,0.017577566300035166,-0.06609208310861463,4.7761696861519416e-05,0.005517682967337748,-0.016127470889869468,0.01611266404658614,-0.20919497267277687,0.0019521891163324662,0.00438780381171585,0.05996683027142004,0.4204284861315182,0.022047547377788468,0.00011737377354362213,0.01095383758644682,-0.0557903055382199,0.31498672365340913,-0.007501759791279909,0.00027426773667783264,0.011532295995630657,-0.034991224831357096,0.20055659168403198,0.021253386137665402,4.9145432374182374e-05,0.035246753702220454,-0.06507778932140075,0.3517603453272175,0.1413004888196159,0.00030491073869274183,0.0076472048096083685,-0.028188238251772305,0.3322188094888539,0.01655626634622529,3.521064228803388e-05,0.013549650801586818,-0.0058184857325664675,0.06144876209544636,0.0038377444661097005,3.16357798369001e-05,0.005299588411073889,-0.009452497638965364,0.028069449108067995,-0.013791765986322042,0.0001084764450274507,0.02759691341388485,-0.019049345931356626,0.1311452173908973,-0.005862040297762308,3.355212161527521e-05,0.006807668083884029,-0.012376310096657642,0.03454183342891592,-0.0029428711380267655,7.943706306627181e-05,0.0038944312866474795,0.005657875021921649,0.024599723854645223,-0.011126959708044065,0.00010516511804862505,0.0037237496030958096,-0.04244179484574771,0.0416563311581486,-0.036725160714976925,0.000582355640038508,0.012659921367700734,0.0276941201167155,0.10113009225652451,0.02197729435541012,0.00011526386473993593,0.012350399820977633,-0.02698454111785125,0.08659123728658571,0.01071606770116194,0.0020001394075527166,0.0018466838240968923,0.003994624707636761,0.034646703172127216,-0.003168059975176267,2.9648058835080045e-05,0.00375823256869988,0.0027079942230074055,0.009090582957777172,0.003766740933744996,0.0009739289353978041,0.0067356371801884285,-0.014332092129168895,0.1036114896818848,0.020300125913204486,9.211435524780325e-05,0.0018320354604414706,0.015859519082515146,0.02388264988806293,-0.0020888111467683005,0.00015673027226336683,0.008333774842954219,-0.01156321052754322,0.015909000136230186,0.008613861521284726,0.00041719535175375224,0.01233654390175971,-0.020082802163413533,0.08351951440362108,-0.029706850189183665,0.0018637458549967901,0.0137034398222848,0.015991917238773298,0.06318812178554833,0.004035372828827295,8.119989309337987e-05,0.017335909161802648,-0.033493392555315006,0.05165390775141151,0.05751726095157215,0.0016118816409856618,0.006280671278982428,0.007378357493300997,0.022887149138065836,-0.10409851578238057,0.00012772738786892158,0.003933399465682312,0.031572624046254355,0.08256801512542615,0.021605092427134102,0.00015500981920448648,0.007978508724888214,-0.00010241265447341834,0.0004123344880806205,-0.010195518059581504,6.06202728534238e-05,0.008432445197430057,-0.045007788419029776,0.13038789498050654,0.03142930635869594,0.003271662206509699,0.004342330012400761,0.00628360232858728,0.03317312425520168,-0.007208763160568566,9.422429295199656e-05,0.009879284464642174,-0.051988389111857825,0.2874959665699421,0.261652664373547,0.000131140063332059,0.0033699296275068106,-0.01647638062146955,0.09429869013548889,0.0044392224322515475,8.264276796040664e-05,0.009976694897676894,5.488889958856565e-05,0.000262339060881009,-0.0016786726379820441,5.258585741580233e-05,0.005939709855983181,0.003291664924133863,0.006151475993750482,-0.0004810903499805706,0.0002608949544825,0.0016733753790942989,-0.015480629790936588,0.06288256447989574,-0.009165095117099996,6.121710053354676e-05,0.008687374089825131,0.025377176396351456,0.25285915697706607,0.04863739017291083,2.5893806498691602e-05,0.0032550573853404076,-0.003153836535623203,0.009818809179908246,-0.0009962771125742388,0.00011227661856827538,0.0035986452111373534,-0.02061721334172181,0.09146332844731758,-0.02321303708736554,0.0003553128662796995,0.01661513107411009,0.06079261691922875,0.2812745149561346,0.032804443926810985,0.00012379190615070386,0.0007376657136998113,-0.007963444174903776 +2021-12-20,-0.015031202210779828,0.10095261675978984,0.0011068973254400526,0.00015745727116619164,0.009720140514709976,-0.03553049688703612,0.1204026956295179,0.001553215258758742,7.080690268857116e-05,0.01757891591361715,0.009696373839793748,0.032274076584825395,-0.02374295691425836,0.0001389801354053716,0.008418779440227177,-0.004852636705501009,0.0055129233025451455,-0.010289637053776397,0.0002970733438987227,0.003393367679516229,-0.002151737559492629,0.004877584332066314,-0.11117098092208388,0.00023082470333735442,0.022057696286306393,-0.004107853376481212,0.010559071979398107,-0.01584906551606322,8.494462885592215e-05,0.0034111309109716983,0.05087116357734765,0.19297320191883416,0.07144536173775817,7.735074903791378e-05,0.0022947774715470883,0.047221778192768384,0.4622001578679396,0.10369844010697991,3.503570508120456e-05,0.017426068787276566,0.009965872823215186,0.00677184406666389,0.010459370238259288,0.001134888455394189,0.0024297199378891217,0.0088927688193491,0.021598624523904795,0.0035919305087746553,0.00014397026170147667,0.006339646006491131,-8.92765748169398e-05,4.738778537034162e-05,-0.0009689936705565195,0.0009208639366924828,0.0015394368522567681,0.024027522440804874,0.40980887294301155,0.09404720368465386,1.7472313910583062e-05,0.0027750515520544965,-0.016928441756074036,0.04999682612111171,0.0015882999635925038,0.00010058323187929078,0.016769409124910973,-0.0018023575051821614,0.009843134883866504,-0.05796274650406333,5.154295592949401e-05,0.007195948738042793,-0.009997326011509527,0.008128616999613964,-0.03927221069971454,0.0023987786016344496,0.005661567042830836,-0.016076367454259333,0.11981566151311446,0.0017582827291147693,0.00011041458440065366,0.03557736756762168,-0.019360745451082677,0.11401718273151042,-0.019612515165028706,0.00026294202376083017,0.016377926770174737,-0.033194765945548266,0.21202078385949732,-0.10476005731428772,4.410137508263279e-05,0.008336639189408582,0.06884224630670116,0.3453479163043651,0.027320688594088222,0.0003285375395029801,0.017193210484387163,0.038727657996794736,0.46170898814949834,-0.02889274244856841,3.480832590760791e-05,0.0072946579769322915,0.014833317560385246,0.1397144201275243,-0.010854517348743634,3.547143603665094e-05,0.0025825330441533335,-0.018508984729776252,0.062300863773552075,-0.0024180229268451936,9.569985614173865e-05,0.005961131721189874,0.01768505716562833,0.1298574480875573,-0.0249962840064525,3.145806315955942e-05,0.03261592038374533,-0.0016463418642764119,0.004930071480533692,-0.0012530526391289429,7.403621160974858e-05,0.01392941144989017,-0.0005336499149101266,0.001854920521422631,-0.07774534258315012,0.00013154663226935126,0.0017012178536616482,0.004220416696945964,0.004096092619891444,0.0022807575157210084,0.0005889265392106179,0.008158532402590768,-0.006373200936595252,0.025454821547028127,-0.01949202192556955,0.00010538372939522281,0.009811633918497273,-0.0025778419704473917,0.008683055154064234,-0.011233624471353842,0.001905473465049628,0.0007330431199762768,0.0652270274180142,0.570398020242076,0.08088878967444287,2.9405716963642966e-05,0.020214119904043093,0.017680287835964512,0.05643300114974693,-0.005442955273306668,0.0010243006630637156,0.004521582415611741,-0.004617682219387492,0.03716241240270451,-0.04532014879866838,8.274576719414869e-05,0.013449777843619833,0.019422948500821973,0.02483351736364242,0.0019370745026801417,0.00018459600953671444,0.023260495317036604,-0.02079497807032109,0.031605602447966515,-0.0011071193809023454,0.00037765766836456486,0.014396388590971983,-0.004014746065989549,0.01738590243589182,-0.00015550136873746263,0.0017898275314845555,0.004315294829975771,0.04248608258715409,0.15956975426392567,0.04310057229517333,8.542529419991469e-05,0.01639997443868161,-0.011278912142824327,0.01623259506366869,0.010200963632480064,0.0017272549684406334,0.009641870286475515,-0.0008503471225372822,0.0025208004152584562,-0.03054183928731413,0.0001336514950605555,0.004024034773865521,0.02873432573540204,0.07404127884008972,0.018763671719429893,0.00015732128152767341,0.013621795091498815,-0.00226182458147499,0.010122692778058695,-0.01029286855037406,5.453518470805014e-05,0.005011954289406935,0.061226629297268,0.16432807894436094,-0.009097033959652539,0.003531397706835692,0.019842298661864516,0.032789266327804226,0.1793721591834299,-0.017123907184456364,9.093210275226087e-05,0.02337369966051763,-0.005476541634135455,0.03066339140777656,0.0006809502664882332,0.0001295230287570245,0.006335385995790373,-0.05133834633493686,0.2857678984474931,0.15574138960035186,8.49722529331621e-05,0.01878956020186986,0.022125937888513383,0.0992982349184096,0.022109695647861975,5.600251809874454e-05,0.022633671423786517,-0.028137572158573734,0.05574129648065213,0.0026372024541700153,0.00024611549111517916,0.027969056634539524,0.01002993344528863,0.04888037555492698,-0.0010900158056573747,5.1024398425197793e-05,0.0022631502985052225,0.005210652672193116,0.06845404050627733,-0.0040179231747085944,1.963922398212502e-05,0.009151138267594592,-0.0012354302640813569,0.0044659576008996464,-0.014162257077886261,9.669691193007632e-05,0.0011324314916520137,0.022433784545346995,0.09747351452209495,0.023870449038647344,0.0003627804625123076,0.004176483621610105,0.029490583182968415,0.12382665433369369,-5.190817667783068e-05,0.00013640836956223175,0.004803359608646633,0.006709902778700504 +2021-12-21,-0.02652281935429151,0.1726266739160365,-0.04185281454734286,0.00016247942310588804,0.0007185330947685083,0.044900196635392145,0.1346611699709917,-0.009735377337910444,8.000486304753124e-05,0.0007974357640065636,0.05505018800861397,0.18909930662653063,0.15198775099891274,0.00013466851607277304,0.0011849694951072628,0.027222615968821078,0.02407691137840207,0.08904324065308647,0.00038158995929022136,0.0008372714271122127,0.006971464137084877,0.014504394194221634,-0.005265917937072421,0.0002514908423848503,0.0072655568421392544,-0.010328168836740004,0.03216489853663766,0.0012204180694416517,7.01112778863215e-05,0.013276151076489908,-0.02004557389647304,0.06328406881151226,0.014852665102083705,9.294241556104753e-05,0.017994036334389424,0.05602616925484083,0.5553812585522121,0.16130009909920698,3.459380421009916e-05,0.016297946932777783,-0.023829565314501616,0.019617431981847813,0.010281925435495968,0.0009367393224028722,0.00033886351169076453,-0.03782494765641285,0.06914576652464723,-0.11788658171934867,0.0001912822302032646,0.003913855663884826,-0.016552904319885254,0.01345276115916606,-0.07984534851341349,0.000601432830342419,0.002759345888168692,0.0013596526022791261,0.021856877838539034,-0.05140057117127575,1.853798911092237e-05,0.0038898065744113934,0.0640107167631259,0.17968313847491638,0.05041265422751003,0.00010582698016013914,0.012237836167931513,0.0063872321069258385,0.03707214940148257,-0.013589829248605752,4.8498326174051095e-05,0.0015092006436566352,-0.04916265037525452,0.04178284280580289,0.20243457426104694,0.00229488155508042,0.008043455313351263,0.04771560609610532,0.2998739626747686,0.0011254124664504047,0.000130940439359243,0.023012192071468908,0.02648900946151552,0.14017651724532093,0.0170500602861122,0.0002926164147446523,0.013604584768150164,0.004772943423175827,0.028150468326657428,0.0014034263666356252,4.775970306498304e-05,0.00860506320110823,-0.07284733501907428,0.3968607157348715,0.13155877237646124,0.00030252576284055336,0.0015682104975220674,-0.009434935426365872,0.12035722149371891,-0.02562863239271596,3.253096977440618e-05,0.0023608865902891222,0.007012628777447556,0.06675972924811865,-0.03007135431912613,3.5095221839445145e-05,0.007595974539992428,0.010931881849784084,0.026889262521152174,-0.020816161854299055,0.00013096003843486966,0.034420737733432835,0.06429035235491118,0.4895980166745976,0.061595317643000885,3.033182434274258e-05,0.025551139153335074,-0.013655639619845917,0.04201383045043812,0.009770092822413054,7.206048002246625e-05,0.005606739985085551,0.003786096800527522,0.013318234430897621,-0.000172978032451135,0.00012998512434325062,0.007810904726804722,-0.013702291061040924,0.014202093252779418,-0.003074572969923712,0.0005514630137261662,0.01798735625575024,0.009978777554828865,0.034561541597636865,-0.020665805873262843,0.00012152629142577846,0.010694766239780254,-0.007377774833342959,0.027076280842432646,-0.018009411126096934,0.0017488620801583787,0.01711387318856787,0.01695978722543127,0.15528647154055958,-0.0002687538345765952,2.8084647207358745e-05,0.023100606774310452,-0.018927545142858406,0.05003696595188633,-0.03746096804946205,0.0012367291363988273,0.013702295146395756,0.016230336410007633,0.11394082665916415,-0.04772559859878004,9.485796400276833e-05,0.003870533049663019,0.022451870004692925,0.035350428804857524,-0.10017824815034146,0.00014990054750136487,0.009753166822344679,-0.01702388176170945,0.028341980615713833,0.007447235163958877,0.0003447722565899245,0.012308570942938846,-0.017194916588552007,0.0627741285210281,0.004477611677936177,0.0021230964413328614,0.013624359566761998,-0.016847589487732358,0.06897033267990041,-0.003011262637172979,7.837288273949228e-05,0.0008033278581840846,0.0005251089057885269,0.000657069759508784,-0.005840756475294885,0.001986621337471054,0.003555379530801191,0.009256221304218257,0.03335839273373771,0.003769247000523333,0.00010993719415460468,0.017294340758356244,-0.01555380994808751,0.04396226916623514,-0.013429037951495104,0.00014342242559916977,0.019171145708053637,0.04579422492929868,0.1738469532788226,0.011431133033653661,6.429209148811603e-05,0.009991105875516292,0.014715034266195548,0.048513669270593696,0.00015657830749087146,0.00287485015178912,0.007729146756946246,0.009663288211530669,0.044620240569685776,-0.03860769678402802,0.00010772923999280514,0.01981007848032599,0.009502980879453319,0.053244196337359405,0.006690872959441842,0.0001294339972855952,0.009562119065708037,-0.010205660705508738,0.05972796063510272,-0.013486584402005704,8.08187516995745e-05,0.016565643872307852,0.012026630190148697,0.05935228697903904,0.0073695123963312325,5.092768016905374e-05,0.022019015195137378,-0.03364054554018568,0.062030871232418655,0.006483778144995071,0.00026441405907845315,0.050444094646063704,-0.021169579231207887,0.09287258993299398,0.0509350993372018,5.668120116182777e-05,0.004503069790318782,-0.0069575657217713655,0.08232462390500918,-0.08910498138334641,2.1805138399685472e-05,0.00027160302581442187,0.02387225502141329,0.07653238561689879,0.09063391570552438,0.00010903279841334716,0.0035838406946647056,0.013015473401880117,0.059367758646102324,0.004933558959442091,0.0003455709977439669,0.006127979813910577,0.010698296175424789,0.049397263360244074,-0.13515899107014626,0.00012404621677594919,0.006427511939193545,0.002739415508604628 +2021-12-22,-0.022072251609874794,0.1525324028072029,0.000745453200343464,0.00015302807335184544,0.022390808143470445,0.03331678971122088,0.12531715785846748,-0.017349290585030323,6.379154747711188e-05,0.0167445475017184,-0.011514846290378801,0.037883103767999735,0.008330825537071712,0.0001406079239219714,0.0004148401157557115,0.012743730378579248,0.011473647216137002,-0.07786528637200898,0.0003748546809285008,0.012240007688899799,-0.024235210234281046,0.06578512863988256,0.01989177572979055,0.00019275996354789311,0.003522388792091346,-0.017567684862911225,0.0511939054276196,0.03148495217503889,7.492780501402755e-05,0.003932003514991409,0.0418527036896538,0.15015821254486406,0.022445194943687824,8.178323473863014e-05,0.013707312956057396,0.0443007311710569,0.4009402853964594,-0.000571675818599531,3.789045439410408e-05,0.0010150571590267733,-0.006843276256281914,0.0060717208370026695,-0.03315438193263071,0.0008691546609673715,0.0006846331497659564,0.016920558786113503,0.04416558234089359,-0.004249454468454738,0.00013396539419917324,0.003220944952153423,0.005072116028825602,0.0030829646769535346,0.003429241883037902,0.0008041646704963042,0.015225311143806491,-0.0010787451289990015,0.014515412975458476,-0.022504462194027894,2.214686410251956e-05,0.0002489570616758792,-0.01768025795319188,0.05016310720800797,-0.06908047994104471,0.0001047020548598725,0.004031675479996681,0.009120216983874024,0.04714421481227008,-0.0001387362079313638,5.445510281525163e-05,0.012855450223231563,-0.004123534233784379,0.0034236278586871126,0.0008937091013569288,0.0023491244515226307,0.010781168939522098,-0.08610458515806499,0.6387535629982359,0.07373515164797978,0.00011092898796068012,0.042828632945537036,-0.08604343582972308,0.512315504051446,0.14081633346841718,0.0002600689336439091,0.019786701956477862,-0.027717858882246024,0.1577282456812236,0.012190032100199522,4.9500679708124105e-05,0.0042640318580384265,0.021180150732610408,0.1276357417727474,0.0019141172483564167,0.0002734913199581417,0.015497422234928847,-0.03264327152002894,0.47263556462889916,-0.0026399472128599277,2.8661407284598116e-05,0.007747382768540496,0.022923359754985852,0.21858573181490154,0.04884841791853326,3.503790810901218e-05,0.0008072970977066158,0.022873282591364882,0.05929996901742677,-0.05467445309805026,0.00012425011086599868,0.016041488956891482,0.0621633399994681,0.45579422026770605,0.03467578760682016,3.150343450183443e-05,0.0025242264683066357,0.012122491246927151,0.04637827516842096,-0.05502784288295205,5.795016388989956e-05,0.003528236176746487,-0.023704027007955486,0.0899819248580049,0.1713287149871616,0.00012045239779025027,0.0033410770774882914,0.0007952050773471033,0.0007128749726154337,-0.18539594955918595,0.0006375897663985661,0.017698945425572158,0.0039918801145304664,0.014124261195444273,0.0033581499910042595,0.00011895912436666452,0.005623943190619481,-0.05201384449977199,0.18007504198577504,-0.032956977169707254,0.001853892745299535,0.02189602176282434,0.023826463490515624,0.2179212840021541,-0.017081252443864162,2.81152618032318e-05,0.0120221296136292,0.045864384616669196,0.12566794640224,0.07141036088048602,0.0011932249407564125,0.012453430759542233,0.04388640562245079,0.35044053217210097,0.08665612138479721,8.339525190365824e-05,0.004543933077688463,0.004547507539363212,0.006345025363685623,-0.01192690316671857,0.00016915523839379683,0.002554307095300807,0.0646913568707372,0.10198135668693106,0.15579262095705743,0.0003641073023039861,0.02118122897962649,0.04778307401081595,0.19682848688832988,0.09870126397490835,0.001881639723425336,0.010899462548299158,-0.014401644772303917,0.06378572798904443,-0.027409198244066763,7.244008452794625e-05,0.021198757544121552,0.04208780068447007,0.05746548397768932,-0.01121292120121084,0.0018206495377357868,0.013310764218324342,-0.019095526037090183,0.06940531839571573,0.012440104595118755,0.0001090071317193778,0.002965144272651432,0.011441112294167161,0.034374047936128936,-0.016673208439039806,0.00013492671472390848,0.003433585542706916,0.008681955819043782,0.04368893407559466,-0.005661843592519837,4.8502044705840556e-05,0.0007893594053135459,-0.026748541542834046,0.0913333297074297,-0.04822519479273086,0.002775804492444556,0.00024503156766979745,0.004785251157206377,0.027852347822123227,-0.26342488143695225,8.546405554121536e-05,0.009647440828414271,-0.009805552772687616,0.0513400620358205,-0.00013952812283199478,0.00013850851614447175,9.633666688954709e-05,0.0364734393711963,0.2222440685919463,0.04581145885696244,7.762386052444887e-05,0.006093035556793889,0.02047558121801889,0.10572271898077672,-0.020253650709886533,4.867604787099303e-05,0.01542999191594003,-0.042231704909393396,0.09398509736446219,-0.14752881834807433,0.00021908316825110222,0.011566534633144826,0.015707181279253458,0.07740868422703537,-0.0012649752264247552,5.0457176727814655e-05,0.004621092378581241,0.030359518772352757,0.3364284478737029,-0.046649477664164926,2.328270614061215e-05,0.0024377157897598543,-0.021065101714516164,0.06622723001383207,-0.008750347992814485,0.00011118237174691267,0.007588716571588626,-0.028867870128798257,0.11105753867499564,0.013144576570068466,0.0004097270809078323,0.003947342253495988,-0.009635120819483181,0.047019844716755195,-0.01613271020971685,0.00011736747739997524,0.01077512614558603,0.002801411302058243 +2021-12-23,0.001530389380195244,0.010104901117310711,0.0023751198741974867,0.000160160884742107,0.016655933149227094,-0.0008698966937000978,0.0024465019203600506,-0.006937548219503755,8.531642436818536e-05,0.009635501167390495,0.015142990621751293,0.052634410909081004,-8.126482052047655e-05,0.00013308805901543738,0.0017718956391044776,0.005581880283562931,0.0055190226324847306,-0.052867882459922036,0.00034133922576341005,0.002898092354207504,0.0008082773826452643,0.001999521597096974,-0.0038672947578078836,0.00021151058157979928,0.0031961269766976243,0.026079649651567005,0.07924287418996045,0.0743129293969419,7.186017548101879e-05,0.00402668234799978,-0.018897763467637642,0.0731306098278723,0.0106241961731043,7.582301841091542e-05,0.0035814567377058823,0.0028608723447277086,0.022800648316704846,-0.01322124671370144,4.302787497788181e-05,0.01076956863504044,-0.002279069709972941,0.00210222923702333,0.000812743300604109,0.0008360308895598507,0.003541806994478546,0.006260958951338293,0.017094474715394634,-0.013866918978287793,0.0001280698741125188,0.011637401678112936,0.011399462168574273,0.008731622845290764,-0.031803339329884744,0.0006381367430001528,0.005178323439097568,-0.011341454162783118,0.14511081987901495,0.013656411647602167,2.3291193069345726e-05,0.006719759839660688,-0.03511607690642887,0.09392980782152055,0.030052523472454896,0.00011105895829135457,0.0170583738843242,-0.028211174269976682,0.1774967217143205,0.1046554995021757,4.47396565467136e-05,0.005225996058633138,-0.01296517366784161,0.010734563320994334,0.008765718760057419,0.0023556834398459157,0.01754706146659939,-0.0031599206583943313,0.02182238145587178,-0.001863559872463384,0.00011915880603495727,0.03640379174836021,0.03960843362925154,0.2997928356829789,0.03262699087507959,0.00020458540577874575,0.013362918087232452,0.0071494163635800875,0.03708931469767373,-0.08157598620966149,5.429786295914406e-05,0.021073363272644623,0.012615168595860989,0.061926849618823575,-0.001655729599142313,0.0003357382942416617,0.012528950376399367,-0.0058372775121277596,0.10060763290594435,-0.0015671860020177576,2.407740294810787e-05,0.010367151952064982,0.007089268735135738,0.07312771344925363,0.002816465427795884,3.2389269602547845e-05,0.009888443882064626,0.04385157492863372,0.1488700261038669,0.06270682098589235,9.488568275941949e-05,0.004766409475010616,0.0014837374123031783,0.00989034297204014,-0.014667456209000156,3.465277921337874e-05,0.0014080104484367473,0.010648593492135377,0.03206681866137653,-0.0023627830185575073,7.362304145512473e-05,0.005677255178134595,-0.0018914306566742514,0.007009546074380227,-0.04315850744071152,0.00012338123832143853,0.0014068603685288017,0.03880613897051582,0.03785630551287935,-0.03899675509368734,0.0005859192519340595,0.01815848483781587,-0.014248673108296608,0.05794752453906166,0.004574937763482839,0.00010349647159153236,0.0005347690214881254,0.02657207501711212,0.08642686584823546,-0.11259064859425605,0.0019733125609259126,0.01698310710128579,0.0039915747230411195,0.039888519911588406,-0.08608306017489724,2.573229592501176e-05,0.0011497052804310204,0.028746624012532324,0.07331390000390063,0.024381071959101955,0.001281952092727898,0.029763957115937444,-0.018720880437688193,0.1331069468826133,0.03129303077055459,9.365936109323487e-05,0.006787992357014006,0.011095460497843993,0.016193968106455753,-0.037209667189125675,0.00016171020893977945,0.004857549679240643,-0.016727438362660448,0.025844644518838392,0.012860006207187242,0.0003715033968090699,0.00667861013760054,-0.026858866030098242,0.10986182370503772,-0.030642100709112285,0.0018949214422136307,0.01508748320813481,0.016230005149546204,0.06151406760499616,0.013916071310873695,8.46514852525548e-05,0.020806669752304777,-0.02158844055094169,0.0330823962531016,0.018034833680296167,0.0016221891960568825,0.014415908000144723,-0.004579049714683931,0.014336285734412745,-0.052623075632152704,0.00012654784296781216,0.0048896856215650715,-0.029339329567928514,0.0751567506316302,0.016527678956862735,0.00015824958010971402,0.012390424860099036,-0.012105198638528653,0.052017795937112046,-0.09930445939097264,5.6798111866110336e-05,0.009643873632918748,0.037905384142428736,0.1143257261169428,0.020470960494089124,0.0031424978686201447,0.01924141357527828,-0.01501344797019011,0.07117011095690363,0.018615788786099048,0.00010493572587825876,0.011792251520757607,-0.015091964001731214,0.09780290414436855,0.0007605087157207625,0.00011190636633400773,0.01245170477722696,0.04901390027863607,0.2814514941125811,0.0792193739109685,8.236911562094459e-05,0.001146521927391563,0.025260489050063555,0.12979012106358578,-0.01161486078395622,4.891561427842093e-05,0.005526721496960479,-0.07232619040953775,0.13710137877155232,0.04738400306952823,0.0002572072239898652,0.004109552063043222,-0.0018465395041140894,0.007743338673152388,-0.058203392544187806,5.929863883644595e-05,0.01846848006596294,0.018001093744415178,0.2038264462384176,0.01852961089946864,2.2786081506832938e-05,0.0026188526389560626,0.022534436619272357,0.07895393849489697,0.0694756374801365,9.976584156431862e-05,0.001923564757459832,0.03463114071322986,0.12036738251311939,0.04167071813954518,0.00045350904301851236,0.013667448968335848,-0.018251640880137473,0.09769570471720314,0.011189500772110878,0.00010700356348336395,0.01047310450816205,0.002590295595193749 +2021-12-24,-0.047996581393873125,0.3551469802289411,0.007760274659540924,0.00014291860320959403,0.029375411757001934,-0.03321521336434189,0.12792366973856412,0.03177963405955349,6.23012361282733e-05,0.028391591828559146,0.00013130097129321265,0.00038810330799935567,-0.018073661070205027,0.00015650124572460727,0.024645709009588616,0.012469469012819255,0.015299104932106051,-0.02417721068749145,0.0002750741586488273,0.0013451008832151487,0.021891685865192505,0.053557652085134716,0.01969894041663574,0.00021387274828537503,0.001494569918518515,-0.0056924526807439835,0.015289883287937223,-0.02888320304060245,8.129091251406162e-05,0.0032988442470538747,0.05730559581071947,0.25309326658412334,0.0528876905775265,6.643643137869978e-05,0.009759265135083437,0.00814996518684796,0.06645597826158328,-0.0019137916066926286,4.205525907443516e-05,0.012247981994329988,-0.01800288191037755,0.016312269764015667,-0.027877688981443258,0.0008510839967787828,0.002015381732778701,0.006289601247558646,0.0131570762558035,-0.029828630141406597,0.00016715739992618036,0.007550482247782542,0.0021430745157275445,0.0017751484753036242,-0.08209049801635779,0.0005901018095677545,0.0010563015223005122,0.0005329249093878852,0.0064135088780099,-0.005182423482169216,2.476242135274616e-05,0.011301369691241153,0.04075012734113612,0.10057048246657457,0.02465435355582191,0.00012036756487170831,0.013625340018730014,0.0020190696000458364,0.009493618350382585,-0.05679800963508497,5.986615136830508e-05,0.006934979363044629,0.0019997778898351725,0.0017192296723035044,-0.007567133997507554,0.0022686674337380193,0.006608071102337167,-0.05206525732352463,0.33295877381163325,0.0023804645032403184,0.00012867958850560184,0.03807263054176039,0.014246094425351932,0.08434192830942774,-0.0026722041234620852,0.0002615534930712548,0.017567601385153935,-0.008719435917082002,0.05160359891972859,-0.08322838583883442,4.759587936489796e-05,0.001117681540009349,-0.0401730509078548,0.26891248191086875,0.005606675419564497,0.0002462128195320869,0.0354811703887623,0.02017999156122054,0.23444055710220127,-0.005201467698638406,3.572057710939014e-05,0.0023386916442186207,0.017367578523870535,0.2072399067254094,-0.0032527764112112757,2.7999326961968287e-05,0.006660456751273164,0.03790418926043232,0.0978544540359908,0.03992737180359143,0.0001247755145476057,0.005325359018721758,0.02195073727315363,0.15923784631296398,-0.017856341721551452,3.184162275359353e-05,0.017851569267755732,0.0005122433562750322,0.0014850775353053827,-0.045830979706743956,7.647237672910311e-05,0.010878909204268119,-0.012541829269099804,0.04518488392871486,0.013508932969333391,0.00012691598043394617,0.003952880738994066,-0.0048452007385466345,0.00464925573203651,-0.009156553620742835,0.0005956674939523019,0.026398214552219926,-0.021889690862595318,0.0758695434576008,-0.03162691724891375,0.00012143899561160932,0.013664251238218848,-0.02742291813110976,0.08487384943896153,-0.02969107271523879,0.0020737621418597638,0.02219650424714254,0.018741926863779707,0.1801200232898855,-0.01728450604794862,2.6756816463936816e-05,0.021256511540579816,-0.045515278556757,0.12258613862791162,0.029088134815797605,0.0012139117340181143,0.00831773096306684,-0.0064028744658533145,0.04443357955856652,-0.002521034848279785,9.595979888737224e-05,0.023439355853605643,-0.002624485448151836,0.0037339490666615724,0.00332022138621378,0.00016589036617057335,0.008833127992125427,-0.0371130298771732,0.045391863210510114,0.028254998504749627,0.00046930190309688404,0.002265609400549576,0.00030688624313484004,0.0013361329286393575,-0.003583073191343956,0.0017802381130983278,0.005218317484587566,0.004973568012340281,0.018105573437050597,-0.01346026260580612,8.813454105037503e-05,0.014158547088179227,0.02827468689285655,0.03748993704425404,0.014805364716941126,0.001874823053103973,0.00649288048697,0.017143201385137814,0.06314524602463667,0.02261019948363712,0.0001075640890955706,0.0037433601133163436,-0.049012764410442236,0.12330948114898255,0.06422292952873768,0.00016112877448250918,0.01935159406032325,-0.021159875316498506,0.08101877651322786,0.016999844596667583,6.374429890105705e-05,0.011853845592268522,0.002931920578390088,0.011181626148788083,-0.021773508896192294,0.0024852225859634887,0.00662510817488468,-0.021618447543563922,0.12058438119854928,0.035822297105311214,8.918134439374203e-05,0.0065048708648809805,0.004556676479456775,0.026730823757852653,0.002813098169451251,0.00012362224807252066,0.008620026318136551,0.054597272069735504,0.37022448149418175,0.068696500212022,6.975165379324868e-05,0.012505576533837505,0.012664424719530956,0.05182805782908951,-0.01338694449254205,6.141407669429334e-05,0.0037004646737210387,0.01014456922636995,0.017704374340151197,-0.02429621604475726,0.00027937170640004224,0.03865154029879582,-0.017672945464765045,0.07163162502768372,0.03474072639318527,6.135055693422511e-05,0.00957402881808576,-0.031806876829461,0.29552734175767226,0.10316393548651152,2.7768642236689454e-05,0.014175939808025013,0.015219871730739574,0.05317652846033877,0.021079179466410244,0.00010004605657775845,0.0003936031370379757,0.00711635930117529,0.02811046696382806,-0.0006928424480765823,0.00039904123703573527,0.0057693307733017365,-0.0005633445889912541,0.0026011409777085006,0.0007503537503881109,0.00012404579085470858,0.0034927283761105256,-0.0016153661515987778 +2021-12-27,0.014521821054655692,0.09630009746294399,-0.04084940374048442,0.00015947071378094517,0.0027713574712490913,0.04429546597786725,0.15445905397164328,0.02812312420083941,6.881077207186564e-05,0.010271204299937707,0.000120014591310844,0.00033166660135108275,-0.06397989033400421,0.00016739000199937807,0.009215352747415409,-0.012191774005108232,0.01240802957938451,0.006114201307746283,0.0003316132995640143,0.0029612389827067794,0.007663745813842194,0.016675769992718113,-0.0014962361793724223,0.0002404656061424724,0.004382791895631335,-0.004879364974317802,0.01320675802616159,-0.012152872106577485,8.06703281187773e-05,0.0007967414953540747,-0.02733768395014218,0.10277520669886997,0.03200033028151134,7.804825806977696e-05,0.0063195192989280585,0.035390688255844086,0.3269628360237006,0.027167361020798957,3.7118398617142345e-05,0.024618005540076815,-0.028854535465384766,0.022943667838042348,0.06284712260120781,0.0009698309217905675,0.00664336749207326,-0.0032495281998876353,0.00798085307767527,-0.13658256940339353,0.0001423747192765468,0.013920668383246819,-0.04739910736390909,0.036323953127216,0.21984402217019,0.0006378248192320412,0.008115371875619793,-0.005161577183094441,0.06521994292388557,-0.009542219958973036,2.358439831039582e-05,0.00047194189598885746,0.02033904079671091,0.04876234827021093,0.004520727652324124,0.00012390729992717053,0.02512486462016628,-0.004498134731230263,0.02290246638711862,-0.1350630974492117,5.528559952332862e-05,0.0027206687596236525,-0.017186591544575483,0.014023337470737892,0.017080182068316976,0.002390349157434066,0.0034016602939188853,0.005214682251109626,0.03884901670413625,-0.00012847510130305323,0.00011045869990184409,0.04880808350095196,0.003448324427059169,0.017936682222454623,-0.01758530776452166,0.000297696848110681,0.006343054855300601,-0.01944450906503998,0.12338457592320279,-0.0460123538726418,4.439121846040243e-05,0.00448650113688082,0.07346457471059255,0.46594521394699184,0.06592551913115183,0.0002598543079501818,0.007679419942990917,-0.004419555597273124,0.049625830028837664,-0.05817407014256559,3.695736925458774e-05,0.006628095735784562,0.006007526397726279,0.06518554586247856,-0.0017865982562882232,3.079116282093488e-05,0.003073818775037891,-0.038117734650787,0.10062607103661106,0.017391892072440636,0.00012202233248373196,0.008030879236627004,-0.0008897885828511042,0.006370219797743935,-0.032496869406109415,3.2264488724773204e-05,0.019805772310413798,0.00010789849676134177,0.00033290753052625093,-0.10651736606327657,7.185701250907105e-05,0.0028452395179299154,-0.0026378000525133683,0.009103116943488638,-0.0013279110432929966,0.00013249526137394202,0.005084774779135625,-0.08604597979077765,0.0922425121489025,0.1354404956852218,0.0005331814402708217,0.0073342341943106685,0.01819077677940398,0.06992522103482472,0.023117397104203744,0.00010949729884774375,0.015030091015383034,0.003227612581306537,0.010683052561650865,-0.060561185999244226,0.0019391223375688296,0.006581244910987582,0.03135540988308101,0.2817633337320747,-0.06854162567207393,2.861608390403955e-05,0.0035072943289170258,-0.009504850079787915,0.025288922595162064,-0.02115680331211121,0.0012288141784943237,0.003723564249946641,-0.050151750661709675,0.34379823599968123,0.14538780428895112,9.71422362514992e-05,0.005867161102321701,-0.0047947466591427915,0.006621645390765029,-0.11844502271770631,0.00017090120790063957,0.010167109134221513,-0.014384294443082866,0.021455354909848543,0.005319626644996579,0.0003848192379736776,0.0227597304601483,-0.02230901354902291,0.08620622196222459,0.005035473177251272,0.0020058206409115176,0.011387421018456148,-0.0022656024872288903,0.008512176021269718,-0.0015480862313713296,8.539520540193201e-05,0.00016592638600070693,0.0033919568427926055,0.005208309373679305,-0.08697120729377687,0.0016189399357249123,0.00470288826263673,0.011927881855656736,0.03666723792585113,-0.09503741296884714,0.00012888464175659023,0.009502060862454975,0.02460767413576463,0.05804729250112979,0.006419428613619435,0.00017184977798539726,0.006795066294603821,-0.0033537470501978197,0.014153500642925875,-0.025768074119960016,5.7833617690482456e-05,0.000573684721522966,0.030977060976319665,0.12033236332960505,0.012879375547100497,0.002439921322007994,0.005700421787251525,-0.0442804094949744,0.23076605974486095,0.08734684679033969,9.54509520489583e-05,0.00214242173909908,0.014652203989253588,0.082853471097429,-0.06549365901182,0.00012824871816504826,0.004627380609578348,-0.015996485775055715,0.09461571898041465,0.013565132370150387,7.996685001093898e-05,0.009245654365869427,0.05221148056185738,0.25159419829202967,0.08392357113103109,5.215702137885105e-05,0.01633788182023105,0.006815968961981404,0.011110180016468909,-0.02300896718956279,0.00029911342267829985,0.056681188847697205,-0.019011387639965148,0.07768980518144167,0.00032011593074074906,6.085050133411448e-05,0.006659687710032522,0.009210496376150812,0.0911160770507425,0.000958727271322724,2.608070388691364e-05,0.0036108499787773423,-0.015050225636579963,0.04144469349348421,0.006433106593576067,0.00012693548403855978,0.0010953020655637342,-0.013721502182945548,0.05557409109879855,0.013496548402484649,0.000389186046689773,0.014668767768013926,-0.00987085399798446,0.056230475485935294,-0.07848753885618562,0.00010054367802593083,0.005196920910125922,-0.001405233597658294 +2021-12-28,0.017755487930013213,0.11427872079383637,-0.0423426752160404,0.00016430615210339717,0.024374622998163058,-0.010503696709044805,0.0389102034606502,-0.018389651098114267,6.477228199957247e-05,0.012253089558003262,-0.005458143687060012,0.01574145808252831,0.001940991858694334,0.00016039735843412185,0.003926426914160359,0.03861976537560314,0.03900373195456956,0.15267499761886802,0.0003341729743220784,0.010861617052726369,0.02403246447298503,0.052971598675559256,0.01443180630051112,0.00023738485139038475,0.0032963237782767697,-0.004432428151579324,0.010570825059888092,-0.04236870451178981,9.155447123742958e-05,0.005379569089536454,-0.012634732681826428,0.04933773219922703,-0.02070246967132783,7.514095833363814e-05,0.015753916374794397,-0.005740934387023129,0.052582454828780434,0.006947640081399637,3.744038797251046e-05,0.009507941980577377,-0.02042182908310146,0.01673280565733282,-0.09199036760283011,0.0009411755939548684,0.008119762306227669,-0.00703067493786976,0.01610271925733533,-0.018109894691506073,0.0001526721016235849,0.00974500987598074,-0.0027527624204395076,0.002152647325157477,-0.006470747925334639,0.000625057837720156,0.010265511747034684,0.022159352729024157,0.3450164071569119,0.06591538888068241,1.9139919712559306e-05,0.0008099780335053999,0.013457414322648313,0.034619210998377066,-0.012462875053485424,0.00011547700078709144,0.0021719428327514985,-0.006684464561125588,0.03825701399884608,-0.010390085866012009,4.9183267025559555e-05,0.0019300861404102456,0.008225690464552798,0.006486686449152629,0.0027427942881770775,0.0024732751257367023,0.028987547544689657,0.00726499564644079,0.04177989101583252,-0.0011695392039709125,0.00014309358465459804,0.017182362245230315,-0.07317253804611266,0.37151571983698767,0.10127147915482512,0.00030498547494759023,0.0117220254582619,0.03939236339694586,0.23877660754987473,0.10423448826245924,4.647091418026962e-05,0.02781730880440386,0.0305274357888476,0.17051013058553577,0.006026879471132407,0.0002950712842417687,0.024130516360067914,0.07380094745973381,1.0399605967844885,0.03660356880467331,2.9449320874492082e-05,0.03709162151041251,0.014084984412069429,0.15781445736966276,-0.018185074307488138,2.981887767247937e-05,0.011514216435155203,0.004593507111446939,0.011497765284870455,-0.018511373716886097,0.00012869264002077823,0.01254987551487064,-0.08854370523216153,0.6125387070418898,0.16804403726110292,3.339000855102224e-05,0.0017279964944111694,0.0042963814980357135,0.01252063447042118,0.0071019379897199475,7.607708840887977e-05,0.01119372818462486,-0.011582766584568121,0.05245054106737029,0.032783048093476035,0.00010097431776251624,0.0033285421469257705,0.0634152338047614,0.06459295649016479,0.07289372497002197,0.0005611564979692103,0.0390769455423503,0.04820777482726429,0.15778315639721355,0.06255181814001988,0.00012860044018983818,0.008688441421347934,0.049700792007263246,0.155759427804179,0.06779338414533721,0.0020479914588740506,0.01621902200827767,0.001887093101579526,0.017150176675871064,-0.02652000298202044,2.829481924908888e-05,0.028916760894592067,0.08071563571041286,0.25336557861057835,0.1419777124938379,0.0010415528906930636,0.001019842792712676,0.009022479417956008,0.06204968086217539,-0.011837317290741767,9.683045913216109e-05,0.012434898304645557,0.005773880571560495,0.01007530533047972,0.0030363719740702975,0.00013525551009965772,0.003961141352785317,0.024959797757778443,0.03766226482985491,0.014743642221750966,0.0003803982786150266,0.01276863386862103,0.013579516342477739,0.052171138687572026,0.013821314426958773,0.002017457188369202,0.00043090810524342923,-0.002999016494348241,0.011027149675754603,-0.014707494528201465,8.725814080337838e-05,0.007459243055972857,0.05542551845752308,0.09125940776694196,0.055460941694304246,0.001509764849935635,0.004746612866631166,-0.019512166962599546,0.06269024043234696,-0.0318969286837233,0.00012331661771789986,0.002441172152267998,-0.0014682951318884421,0.0032298841522446,-0.03092936537735026,0.00018428364318376022,0.02579957798949468,-0.011923826990691758,0.04852404546858423,-0.009721980911337837,5.997532223465618e-05,0.010417357819521637,-0.010863727731670795,0.031964268413911895,-0.006235934015119042,0.003221307336955798,0.002422312622767896,0.02063948748391279,0.09142242653661933,0.01744403873981759,0.00011230180465878311,0.010237736569026365,-0.02675976591711017,0.14999604499529712,0.03865942621984919,0.00012937884998657744,0.011447643454152485,-0.007118105083049558,0.04187205767679767,-0.0005467481165521361,8.040606160615712e-05,0.00013253065624384616,-0.02686724453751664,0.11812772565874713,0.02258114834257701,5.716348272036856e-05,0.003098673317987987,-0.0014429529014100657,0.0024683833432733965,0.0007307942186603145,0.00028501580440205994,0.0051337577135515036,-0.004531026422801686,0.019648402675000346,-0.10080157058089827,5.734343712204322e-05,0.0008185745745389256,0.02406166253925488,0.23565011687058424,0.049787264270531865,2.6344457367378397e-05,0.007793921878377862,0.023160415237355077,0.07345416005818466,0.04930544293731439,0.00011021454422770272,0.007405245649015223,-0.011328260419391618,0.04413719948902437,-0.041690526365282636,0.00040456324255075485,0.0053628428681159225,-0.02966676222193946,0.13866179782909366,0.04621157902384636,0.00012254204397244228,0.0010844044422382466,0.006623838594806787 +2021-12-29,-0.005525716118103071,0.04065689746240967,-0.023230555651560087,0.00014372784662065985,0.009053482721477902,-0.03180494902160674,0.08608536852581473,0.0266496600677707,8.864941772943642e-05,0.009707235767873617,-0.025859772687037767,0.10691297822754475,0.0001183349978792376,0.00011189005307475686,0.010425425112481469,-0.01893655191319721,0.019822206269502953,0.059790306538396315,0.0003224161353639995,0.004582445365261922,0.031002246081340782,0.07554193881535615,0.02609458086802817,0.00021473498414473983,0.02121199413252244,-0.0010100786367982578,0.0027444928508390683,-0.05544196894628753,8.03599803461217e-05,0.0007924447377545271,0.047947632925597006,0.18792871237294345,-0.004970925158671439,7.486242463872135e-05,0.027023004787779633,0.01283359273309883,0.09111871002371441,-0.01713188648701801,4.829912964622481e-05,0.009244945631137187,-0.031283375543305715,0.03120672389595993,0.0866964421899986,0.0007730546847126237,0.0020526983964704567,0.0019422807352981082,0.004308779633327745,-0.0025346253187981415,0.00015762300604704748,0.0044944106272734145,0.012009370264283253,0.009293036751933373,0.011040158265625898,0.0006316651814544596,0.001053819552206702,0.007393793771663438,0.09190577819768361,0.006776780561107565,2.3974375639119644e-05,0.0012281146791202427,-0.006831452850885742,0.02277966061373659,-0.007001079909491062,8.908751886178119e-05,0.00525372019073967,0.017899821556444033,0.1063960952701089,0.06192234460658808,4.7357070609849694e-05,0.005050391178672093,-0.003475757379011362,0.0029899541566228405,-0.02280826269072554,0.002267294301241302,0.005648533963999818,0.037259438522387806,0.24129579223259498,-0.05069731168706738,0.00012706872292447867,0.020175955629121806,0.03445938019868722,0.21866088019752453,0.015546545166854706,0.00024403077643199637,0.0010075810059019953,-0.059920748127108805,0.34150459057728944,-0.048534326441585514,4.9424426320437794e-05,0.0036890146512249863,0.011648764447950322,0.06542096567492144,-0.0016293502952524955,0.0002934605454466517,0.0315457524240417,0.03498397494857812,0.4143908813875764,-0.005460002229506153,3.50339571426025e-05,0.00944200076593464,0.002600349614420354,0.026981418677611464,-0.025667437701970296,3.2199466075420867e-05,0.00027141624086869523,-0.0074798543898010345,0.022500386672351956,-0.0031994766120356593,0.00010708432852449157,0.0027863253684211886,-0.048265292482235954,0.35740513597726176,0.015222453001915104,3.1193674013931566e-05,0.04056801236194632,0.003968384896481144,0.012054435574807966,0.0016927017374105857,7.29867944700529e-05,0.0028796494157290655,0.0031763826501724707,0.011098265757834323,-0.0335706478628881,0.00013086583802921972,0.004378870352679218,0.00877907026697852,0.009341839522872018,0.002913819922962417,0.0005371451811317555,0.02269418242825699,-0.007320638342840276,0.030021317022822715,-0.0172655867757556,0.00010263730041363643,0.013526150817025639,-0.03062168014392359,0.09491755603525223,-0.044898269785494195,0.00207062590546173,0.006043959855112449,-0.017689877225308164,0.17587064525592094,0.023082316776400234,2.5865069937413527e-05,0.021721143064695136,0.05826833161006232,0.1799435660131686,0.004571069951446866,0.001058686877805112,0.020612666718811127,-0.03948032113714582,0.3059321019292869,0.06484100848888369,8.593721382308779e-05,0.003738923074837321,-0.0062696872441052156,0.008867834784629608,-0.0657071941463548,0.00016686823415543243,0.007494355481594921,0.032535356120117424,0.04283267958835827,0.004848610219511085,0.0004359977359493911,0.008465043487386276,0.009380292891673225,0.03782954836026471,-0.00247972720969971,0.001921921228844476,0.01760715739793177,-0.05102345593928851,0.22471724248926672,0.10579950358014971,7.284904191975274e-05,0.02081479082244993,-0.07443536739088366,0.11496270920999342,0.20903288393699673,0.001609531713446354,0.0008716265824279537,-0.022860071235783177,0.07626578741554242,-0.034921104926177955,0.0001187582686132471,0.004863138483007698,-0.034995964280219116,0.07883495541856642,0.024800194410658245,0.0001799531753279346,0.02160863881391973,0.017713409096989756,0.08161318635253888,0.0040386148407658565,5.297314333461538e-05,0.014224964496176511,-0.0014096571202906556,0.004549530782833454,0.000986390978298104,0.002936736218752642,0.0005006658533844609,-0.011303015172195471,0.06608966576241823,0.0037068600152261834,8.50748761952622e-05,0.017571623276011687,-0.003471785370593787,0.014415646187314411,-0.056117683242446266,0.00017465440300784224,0.002983622814544591,-0.0551706277362425,0.37560598861289884,0.10218492162432025,6.947428984355442e-05,0.00398131640986515,0.010576189757619009,0.0458640483928329,0.0015931703277280288,5.795677913787492e-05,0.024893312473204077,-0.04399608582928681,0.07473455481060412,-0.04433151499618065,0.00028702649183613303,0.002947455662254288,-0.007489001098923719,0.032309307286691236,-0.023683294546140606,5.763822836571844e-05,0.010374108367401092,-0.020129365691065895,0.25721439691495895,0.03289910633753038,2.0191384628318057e-05,0.009748375901571193,0.01410687469946883,0.04752296179913729,0.013504002759091029,0.00010376150774884722,0.0019018967339000388,0.00413042237560121,0.017221133483662904,-0.0277852007395882,0.0003780599761623079,0.0035736511686910596,0.014875317963895468,0.0767453831022383,0.0002740334123125997,0.00011101605623691753,0.03663479566887144,-0.004491499571475606 diff --git a/financial_loss_functions/data/raw/sample/combined_predictors_validation.csv b/financial_loss_functions/data/raw/sample/combined_predictors_validation.csv new file mode 100644 index 00000000..7c5bde1f --- /dev/null +++ b/financial_loss_functions/data/raw/sample/combined_predictors_validation.csv @@ -0,0 +1,262 @@ +date,TICK001_RET,TICK001_ILLIQUIDITY,TICK001_VOL_CHANGE,TICK001_TURNOVER,TICK001_BA_SPREAD,TICK002_RET,TICK002_ILLIQUIDITY,TICK002_VOL_CHANGE,TICK002_TURNOVER,TICK002_BA_SPREAD,TICK003_RET,TICK003_ILLIQUIDITY,TICK003_VOL_CHANGE,TICK003_TURNOVER,TICK003_BA_SPREAD,TICK004_RET,TICK004_ILLIQUIDITY,TICK004_VOL_CHANGE,TICK004_TURNOVER,TICK004_BA_SPREAD,TICK005_RET,TICK005_ILLIQUIDITY,TICK005_VOL_CHANGE,TICK005_TURNOVER,TICK005_BA_SPREAD,TICK006_RET,TICK006_ILLIQUIDITY,TICK006_VOL_CHANGE,TICK006_TURNOVER,TICK006_BA_SPREAD,TICK007_RET,TICK007_ILLIQUIDITY,TICK007_VOL_CHANGE,TICK007_TURNOVER,TICK007_BA_SPREAD,TICK008_RET,TICK008_ILLIQUIDITY,TICK008_VOL_CHANGE,TICK008_TURNOVER,TICK008_BA_SPREAD,TICK009_RET,TICK009_ILLIQUIDITY,TICK009_VOL_CHANGE,TICK009_TURNOVER,TICK009_BA_SPREAD,TICK010_RET,TICK010_ILLIQUIDITY,TICK010_VOL_CHANGE,TICK010_TURNOVER,TICK010_BA_SPREAD,TICK011_RET,TICK011_ILLIQUIDITY,TICK011_VOL_CHANGE,TICK011_TURNOVER,TICK011_BA_SPREAD,TICK012_RET,TICK012_ILLIQUIDITY,TICK012_VOL_CHANGE,TICK012_TURNOVER,TICK012_BA_SPREAD,TICK013_RET,TICK013_ILLIQUIDITY,TICK013_VOL_CHANGE,TICK013_TURNOVER,TICK013_BA_SPREAD,TICK014_RET,TICK014_ILLIQUIDITY,TICK014_VOL_CHANGE,TICK014_TURNOVER,TICK014_BA_SPREAD,TICK015_RET,TICK015_ILLIQUIDITY,TICK015_VOL_CHANGE,TICK015_TURNOVER,TICK015_BA_SPREAD,TICK016_RET,TICK016_ILLIQUIDITY,TICK016_VOL_CHANGE,TICK016_TURNOVER,TICK016_BA_SPREAD,TICK017_RET,TICK017_ILLIQUIDITY,TICK017_VOL_CHANGE,TICK017_TURNOVER,TICK017_BA_SPREAD,TICK018_RET,TICK018_ILLIQUIDITY,TICK018_VOL_CHANGE,TICK018_TURNOVER,TICK018_BA_SPREAD,TICK019_RET,TICK019_ILLIQUIDITY,TICK019_VOL_CHANGE,TICK019_TURNOVER,TICK019_BA_SPREAD,TICK020_RET,TICK020_ILLIQUIDITY,TICK020_VOL_CHANGE,TICK020_TURNOVER,TICK020_BA_SPREAD,TICK021_RET,TICK021_ILLIQUIDITY,TICK021_VOL_CHANGE,TICK021_TURNOVER,TICK021_BA_SPREAD,TICK022_RET,TICK022_ILLIQUIDITY,TICK022_VOL_CHANGE,TICK022_TURNOVER,TICK022_BA_SPREAD,TICK023_RET,TICK023_ILLIQUIDITY,TICK023_VOL_CHANGE,TICK023_TURNOVER,TICK023_BA_SPREAD,TICK024_RET,TICK024_ILLIQUIDITY,TICK024_VOL_CHANGE,TICK024_TURNOVER,TICK024_BA_SPREAD,TICK025_RET,TICK025_ILLIQUIDITY,TICK025_VOL_CHANGE,TICK025_TURNOVER,TICK025_BA_SPREAD,TICK026_RET,TICK026_ILLIQUIDITY,TICK026_VOL_CHANGE,TICK026_TURNOVER,TICK026_BA_SPREAD,TICK027_RET,TICK027_ILLIQUIDITY,TICK027_VOL_CHANGE,TICK027_TURNOVER,TICK027_BA_SPREAD,TICK028_RET,TICK028_ILLIQUIDITY,TICK028_VOL_CHANGE,TICK028_TURNOVER,TICK028_BA_SPREAD,TICK029_RET,TICK029_ILLIQUIDITY,TICK029_VOL_CHANGE,TICK029_TURNOVER,TICK029_BA_SPREAD,TICK030_RET,TICK030_ILLIQUIDITY,TICK030_VOL_CHANGE,TICK030_TURNOVER,TICK030_BA_SPREAD,TICK031_RET,TICK031_ILLIQUIDITY,TICK031_VOL_CHANGE,TICK031_TURNOVER,TICK031_BA_SPREAD,TICK032_RET,TICK032_ILLIQUIDITY,TICK032_VOL_CHANGE,TICK032_TURNOVER,TICK032_BA_SPREAD,TICK033_RET,TICK033_ILLIQUIDITY,TICK033_VOL_CHANGE,TICK033_TURNOVER,TICK033_BA_SPREAD,TICK034_RET,TICK034_ILLIQUIDITY,TICK034_VOL_CHANGE,TICK034_TURNOVER,TICK034_BA_SPREAD,TICK035_RET,TICK035_ILLIQUIDITY,TICK035_VOL_CHANGE,TICK035_TURNOVER,TICK035_BA_SPREAD,TICK036_RET,TICK036_ILLIQUIDITY,TICK036_VOL_CHANGE,TICK036_TURNOVER,TICK036_BA_SPREAD,TICK037_RET,TICK037_ILLIQUIDITY,TICK037_VOL_CHANGE,TICK037_TURNOVER,TICK037_BA_SPREAD,TICK038_RET,TICK038_ILLIQUIDITY,TICK038_VOL_CHANGE,TICK038_TURNOVER,TICK038_BA_SPREAD,TICK039_RET,TICK039_ILLIQUIDITY,TICK039_VOL_CHANGE,TICK039_TURNOVER,TICK039_BA_SPREAD,TICK040_RET,TICK040_ILLIQUIDITY,TICK040_VOL_CHANGE,TICK040_TURNOVER,TICK040_BA_SPREAD,TICK041_RET,TICK041_ILLIQUIDITY,TICK041_VOL_CHANGE,TICK041_TURNOVER,TICK041_BA_SPREAD,TICK042_RET,TICK042_ILLIQUIDITY,TICK042_VOL_CHANGE,TICK042_TURNOVER,TICK042_BA_SPREAD,TICK043_RET,TICK043_ILLIQUIDITY,TICK043_VOL_CHANGE,TICK043_TURNOVER,TICK043_BA_SPREAD,TICK044_RET,TICK044_ILLIQUIDITY,TICK044_VOL_CHANGE,TICK044_TURNOVER,TICK044_BA_SPREAD,TICK045_RET,TICK045_ILLIQUIDITY,TICK045_VOL_CHANGE,TICK045_TURNOVER,TICK045_BA_SPREAD,TICK046_RET,TICK046_ILLIQUIDITY,TICK046_VOL_CHANGE,TICK046_TURNOVER,TICK046_BA_SPREAD,TICK047_RET,TICK047_ILLIQUIDITY,TICK047_VOL_CHANGE,TICK047_TURNOVER,TICK047_BA_SPREAD,TICK048_RET,TICK048_ILLIQUIDITY,TICK048_VOL_CHANGE,TICK048_TURNOVER,TICK048_BA_SPREAD,TICK049_RET,TICK049_ILLIQUIDITY,TICK049_VOL_CHANGE,TICK049_TURNOVER,TICK049_BA_SPREAD,TICK050_RET,TICK050_ILLIQUIDITY,TICK050_VOL_CHANGE,TICK050_TURNOVER,TICK050_BA_SPREAD,sprtrn +2021-12-30,-0.05717755438616871,0.39141395585095434,0.1016629802049887,0.00015448127785187184,0.010213768478176516,-0.05073310014224314,0.17972426527265778,0.054995939763982565,6.773220454607437e-05,0.016018541173539878,0.009288566408357148,0.03235139721417381,-0.00047179252159623307,0.0001328167512155058,0.00011535148867514926,0.0022483958521476543,0.0024979763741072203,-0.018023939828477255,0.00030377519284875866,0.0038932850291035583,0.016341062061891364,0.03619106317740934,0.0055287821341895365,0.00023625266176645647,0.027522989044546666,0.006381397398441461,0.018978378343573257,-0.00772695107779361,7.341814891810874e-05,4.9785361041685154e-05,0.04934830227113119,0.1655377732008231,0.015124828848092298,8.747117544024926e-05,0.0009288258716827212,0.005373808915327422,0.04395793191223548,-0.013948972380993484,4.192215332359309e-05,0.015265887305741969,0.010136127564293548,0.0075971443772804605,0.022875847059616167,0.0010288841437261478,0.008033700643279872,0.0031047493451097303,0.008745421225533208,-0.0870352538467124,0.00012413884441762744,0.015010751174592461,-0.01661841046024144,0.012101124907832725,0.02391795079606743,0.0006712558690977269,0.003676587813965172,0.0175905031268842,0.23659457276594278,0.02368162062746822,2.215625080744687e-05,0.006385052606010318,-0.01041585589025398,0.025354431946249773,-0.018335025237243292,0.00012203716651967005,0.017097114879739903,-0.023377107371885128,0.13070850916361074,0.09546228673565275,5.034411707650977e-05,0.0046380460116956495,-0.04437310586208199,0.03570512143300337,0.07509898945789044,0.0024238865343802853,0.014073383715473647,0.01005411772581937,0.06587586902037423,-0.09169937436165862,0.0001255942383535386,0.0014027207461415907,0.07104877842567395,0.42300347898469326,0.07197268975059584,0.00026008835507813596,0.0007025071647941422,0.01803199735563845,0.11817496456129364,0.04025871311187304,4.2981276581083774e-05,0.009109221216084906,-0.039067762725569555,0.21806548722350444,0.031708198135896495,0.00029526938041105636,0.010916188878008187,-0.009228411117483593,0.1520117480234981,-0.04470941706181187,2.5193007262972532e-05,0.019638264178101782,0.0024942899847726725,0.023429148839547626,-0.07520155359434497,3.556903973825348e-05,0.0011867627225690637,-0.0047073647509665245,0.01598321348209068,-0.048789868617053825,9.487166151919633e-05,0.021724384731322863,-0.01913755014033645,0.13539535736047145,0.006478954814088579,3.2649380465561385e-05,0.000991435175870576,0.012023090739830785,0.03278120740608765,0.03294493311423806,8.13146059067519e-05,0.0018014253519339548,-0.020346886005784003,0.0696325108517094,0.05982497846748912,0.0001336086242148881,0.009904844763716163,-0.04346667102940804,0.03203865791725568,-0.050577654824687644,0.0007754568313533105,0.02940800941743783,-0.020397410937527907,0.07563551665398535,-0.022765463796804036,0.00011351030137651073,0.013512323854470437,0.03484856849609052,0.11160194981971269,0.04004685766851003,0.0020041597474825205,0.003842306455694425,-0.014923407940897335,0.14104266840445406,0.012485777507119168,2.7208192419108548e-05,0.004888248852557753,0.005710635226221878,0.016158680659382217,-0.024067997736094412,0.0011554463674786004,0.0018247809486526398,-0.018566315086263812,0.15449805570536546,-0.007698718457310103,8.002548988235721e-05,0.01828626450580325,0.017822818643055738,0.021819340394425953,-0.008367148898531367,0.00019278807043754363,0.0041379011031666725,-0.04349584276993576,0.051212237416794204,0.021366626620128767,0.0004875036972085554,0.0012629311781758744,-0.01389691202503941,0.054608657820589976,-0.010840202389529515,0.001972455195036698,0.015176115414941616,-0.04256828445956333,0.161570822848078,0.041012594957169385,8.453052800325084e-05,0.01610256944548426,-0.0172085881769637,0.022499587723988444,0.0014648090565496884,0.0019012878505207274,0.007415032599309565,-0.016626702145057987,0.052111358550015405,0.014899735597052956,0.00012641242362834297,0.007263993907147568,0.013329728145309938,0.03779021391697989,-0.0629300983802187,0.00014298889764022206,0.005454707382290496,-0.04048289709391015,0.16114333504935022,0.059377719817006756,6.131590771966056e-05,0.013985624312960755,-0.07386419844778742,0.2556240891822973,0.05746138927550283,0.002738736623464187,0.027197522174743596,0.019161513202208776,0.09601264893161413,-0.012383022653654898,9.927546310359599e-05,0.007565032588536233,-0.003959875298164047,0.021616257467221425,-0.09026657254371583,0.00013285007058954737,0.006345260075032432,-0.03622229005425523,0.20163774938965273,0.030829981287366377,8.496748456554985e-05,0.01708751906570889,-0.026822132602717836,0.10143283570646093,0.01745741750676751,6.646027487039535e-05,0.00951029188564108,0.0036810759371794345,0.00797406414444948,-0.023387363576231276,0.0002250735421684827,0.006545725273932601,0.001815998881881454,0.007236336697486104,-0.015535768882422243,6.240382163240634e-05,0.004980056294237055,0.017414092212669666,0.14345563709673748,0.017964566593098287,3.131947740038356e-05,0.0005354838191009724,0.0056487095063390115,0.021108638925689628,0.0006888398749093677,9.354013114534364e-05,0.009928193653008028,0.029838508557527177,0.1080695272359514,0.042731288985357406,0.00043521297146160347,0.0030538697013046162,0.051138587764673914,0.18721516049621545,0.007233158411066222,0.00015645142093362492,0.008464199548318804,-0.00596784674354906 +2021-12-31,-0.02279197069369194,0.16692691255782807,-0.0011543542523545875,0.00014439165720204312,0.007019660128140584,-0.018572517421543564,0.06577746479134565,-0.04967418294799185,6.774919982324071e-05,0.00689012477562323,-0.00909914859742636,0.030323871598678852,-0.0588061645692678,0.00013880762164089708,0.008187577682929605,-0.004801368103995983,0.00522485394415118,0.003908968643013577,0.00031014065854366804,0.006145270564883064,-0.01719466909135236,0.043475265504755924,-0.09808542475398772,0.0002069423381505607,0.0013413316065724215,-0.006528287731655928,0.015027384814207859,-0.010342650929672556,9.485552226926818e-05,0.009047237007652175,0.025976533895892495,0.09499052919894183,-0.06672514413595419,8.023996855234931e-05,0.02594902789926172,0.04554972691719474,0.3886614047052877,0.056545820044793325,4.0189534515739176e-05,0.016612032781964294,0.006472767948160352,0.004634813515626848,-0.036119220278506704,0.0010769674054348193,0.0016518432462937164,-0.03229704828323661,0.06813777541148633,0.059083869450379786,0.00016574360041822072,0.007814416372082784,0.018698715718049323,0.013058148399930608,0.003884902741672563,0.0006999298855052847,0.0049810428932871905,0.0030697103222148835,0.0371433990476922,0.0007325048084809594,2.4628532773132207e-05,0.010222423886760016,0.015741976970637735,0.04174657064272864,-0.039738933743241465,0.00011201843613998899,0.005269336302361843,-0.0010730332521614666,0.005268422251592813,9.90971663209894e-05,5.7331647697302676e-05,0.0019604583938487965,0.0008946388632102774,0.0007160509317094699,-0.06700609234186682,0.002436838897900053,0.004219370827727325,-0.028202724993832536,0.21673481495885813,0.012973678676834048,0.00010708151352714954,0.006440133914941368,-0.008616511567230745,0.04497115638651289,-0.0022343620658467397,0.00029669187428820354,0.0482485950257278,-0.04229800861143092,0.27188427018067024,0.0045805392433357454,4.3822464209069e-05,0.018506467212750427,0.05090156527365193,0.30151622215783025,0.023840270370684716,0.0002782321181440194,0.024712849251123846,0.034261242945806805,0.4235730273758174,-0.051005582521156695,3.356642188428975e-05,0.019188847019412356,0.019825996588800018,0.20124123165694466,-0.09564530048217411,3.291544792634299e-05,0.0018100111972092078,-0.002462793548321203,0.00738376389136466,0.0002003920349217985,0.00010744172245150277,0.012516590893497615,-0.016552091760082373,0.09437462451929825,-0.01204892136797875,4.0512591471157175e-05,0.005551130366997999,-0.01615030365678187,0.04782334218742158,0.02524056515574994,7.487177870151508e-05,0.005402083979111917,-0.00044218617220613044,0.0016554405388732262,-0.052885907436200356,0.0001221350084917002,0.004350106029611725,-0.004942910163232177,0.006187697941517636,-0.018106318749918447,0.000456592920696777,0.022336725115484075,-0.0032308625640343706,0.011800978767787768,-0.02150619740871521,0.00011523554609903243,0.004644337380398791,-0.02771035099954935,0.09612285909018096,-0.07054032629008174,0.0018502675045603326,0.005003853751577012,0.010369231013009933,0.0998613446026747,-0.0834666706413325,2.6701234196724595e-05,0.008875698556284756,0.039834629755689584,0.12071861809044492,0.024151612123124472,0.0010788418857068992,0.010841701869544465,-0.0009735318788179281,0.0066289116477180445,-0.005619653634482718,9.779881439098843e-05,0.016378453244884225,-0.028119190259087577,0.043797400242927755,0.052597356336489,0.00015153043306934458,0.0031709210934476022,-0.019405109573167042,0.025536107309516522,0.006472882502621284,0.00043617956846958133,0.032652217230114196,0.005306350396046614,0.01999813303742893,-0.16688400668121708,0.002056633058803167,0.00872267770064197,0.018767000344235542,0.062449593724762116,-0.0025592281109357486,9.641744416644621e-05,0.019658067011008872,0.01028083138686751,0.014465948096420144,-7.860222459509905e-05,0.0017666825757370575,0.009690944726598167,-0.0056380470352203884,0.018908986652686404,-0.004621756533934043,0.00011813442610855052,0.010513587943251383,0.0574605753357276,0.13992043933538617,0.10991357844929263,0.00016647506231246345,0.026054210411067813,-0.011316646930314674,0.04549966815021347,-0.09025938770867112,6.070486006883296e-05,0.00416798760466641,-0.040915935388284454,0.13261482286280774,0.012901271589991584,0.002924276758216827,0.013214310624178634,-0.001738937624017927,0.008339809420766278,-0.04812831539821299,0.00010372141869977363,0.0010752637990692612,0.05171804629152791,0.23905889212261577,0.3009732404064474,0.0001568909860162926,0.012798689440847657,0.03110297058094668,0.17273745806919683,-0.024079570322722406,8.516556734657865e-05,0.020165428471915797,0.0170738214741794,0.07516917109790643,0.006364169122668549,5.708715102001308e-05,0.016154400734336233,-0.05527649711442418,0.10312006450404299,0.02021410838706118,0.00026135254405279935,0.0057837601659208905,-0.024343715009413677,0.1166563590261299,0.04810244500833012,5.189109240490908e-05,0.005012354717691054,0.019648969119101176,0.2387666355589964,0.024220722957483534,2.1232318275637493e-05,0.0014954603737296493,-0.0013808634467544804,0.0057430140277255235,-0.06590707976527296,8.404653644713487e-05,0.0027870088903913636,0.0048834649178928135,0.023240799434573398,-0.17027560547047435,0.0003312111741696135,0.011535160102885706,0.004369785672803035,0.023298391271246312,-0.012775177522669521,0.00010742515720891396,0.005737288565692859,0.0013531963150445947 +2022-01-03,0.028853256781141666,0.20927748438249782,0.03091660210039136,0.00014580046815249365,0.010276885740177984,-0.041873442466743495,0.14638452936324114,0.03634561240840743,6.863632342721659e-05,0.011480511708730151,-0.02725628493224761,0.08676025694506495,0.030444568597703885,0.00014532590481070463,0.013742130895764577,-0.005471564572747306,0.0061214496231951675,0.006840721449879549,0.00030166512528838124,0.0016670648534463156,-0.008195510230095645,0.019285262481984436,-0.06479493824293829,0.00022235567334582567,0.003958605101576944,0.016488700786056923,0.05954907095303379,-0.00788317487002751,6.045861397080861e-05,0.01307738814321117,-0.03454737680100654,0.15067622325373012,0.05193576443736492,6.72760068368182e-05,0.015180295039351662,0.034091308760829546,0.29238368474901105,-0.00782558470239509,3.998426835581969e-05,0.007589084973407189,-0.013320460417980193,0.013301315512306918,0.0012245952109347965,0.0007722704684502527,0.0025753883267782686,0.04415893921029804,0.11044824189326673,0.16351545189834477,0.0001398046805162055,0.0056421840456630495,-0.010281480289446428,0.006534296687361852,-0.019280953042200018,0.0007690970684231427,0.007102024903535271,0.015499347938638915,0.2201348610833933,-0.03873402688819753,2.0982024663590973e-05,0.005520982550199994,-0.017358769944956012,0.04380401669391472,-7.155091290124795e-05,0.00011772157111446421,0.011548310922179308,0.018463423509335764,0.1058184526829048,0.0711098798117239,4.9114829759654443e-05,0.007027922390538352,0.019598399762746462,0.014925314907651132,0.025390289451686456,0.002561061936770986,0.009300348837219183,-0.01759077770248209,0.12249078564111505,0.0028265108623616937,0.00011817720872759992,0.004228355161296693,-0.01727007829469716,0.11254644726359349,0.0034427588075376997,0.00023761330123560747,0.01929064683296719,-0.03127995468272711,0.1844642150906314,0.006859756657300218,4.7765567611055584e-05,0.002466133715054081,0.05306596791406523,0.263190669140185,0.022737994400135846,0.0003323015823539724,0.016080594970321514,-0.009621616559976202,0.12267656482771838,-0.0006345812357176296,3.2547427650049716e-05,0.0018737010081328635,0.0025287102273334624,0.026953390644489202,0.0006568447551319016,3.134493462691846e-05,0.005758024215875858,0.044351442039125506,0.1462593291798374,0.04620592288433623,9.768028624947982e-05,0.010963364666421513,-0.014677624954497199,0.10090241346150124,-0.0017399431152100187,3.360056717185529e-05,0.031569641884121334,0.013234990431982141,0.03953771730822546,0.023425760694160008,7.421461213638632e-05,0.0018390034526390851,0.014080322708360729,0.04951142821595455,0.035930075065617885,0.00013003364901113086,0.0062342863643820795,0.033526557407392854,0.03444915085630702,-0.009209135885445556,0.0005562704642821239,0.0022351274967971242,0.02157657621380083,0.07883804439112745,0.019515716070604983,0.00011519475298959118,0.01991621830682304,0.027498903982298536,0.09565574140638655,-0.01498161863135079,0.0018451153297549892,0.01976865831018481,-0.007394974584596006,0.06099129993812477,0.009045728627057364,3.117819659851589e-05,0.025472928630172864,-0.013078410479223306,0.03740938031663377,-0.004448819279669852,0.001142998655619457,0.012164531387856203,-0.016549373813733916,0.11641081723006398,-0.09768371523379246,9.467032563999702e-05,2.8807612753731487e-05,-0.01878961864592673,0.024433833842381205,0.045404041406893705,0.0001814979549002528,0.009245770609404784,-0.02009938514682788,0.025434467527185527,-0.0026291927323690827,0.00045359058971531117,0.009022988301605219,0.006521865490751653,0.025010044836470968,-0.021885869211978975,0.0020211926411698366,0.013071567919897813,-0.009016947899566837,0.0342254245411981,-0.0004525965390602089,8.452809603743639e-05,0.0026903508513344853,0.010100364561400964,0.013972009236962573,-0.010108891983814615,0.0017970302060287464,0.01642960926767056,-0.0319631069245294,0.12169893386472405,-0.06123947368022884,0.00010405866514021534,0.0033973692851085842,-0.07890107778515192,0.2153468596350324,0.08427819999309744,0.0001485267810452517,0.0012951378333502697,-0.03242200834096925,0.144123498408948,-0.0024304237905145567,5.49059035330083e-05,0.0035143750843524162,0.00981815309770522,0.024975896821547543,-0.007728672667475757,0.0037258620084550673,0.04235519154653796,-0.036705653538796346,0.18165722158316708,0.06054948151168735,0.00010051268264372673,0.006863001128310103,-0.021300569718288285,0.11436808982959952,0.008224865784347057,0.0001350663414612142,0.004624756837367558,0.014603944581404642,0.09284891124910252,0.006134849436759493,7.43947107266719e-05,0.01021836762613647,0.0010057518517477592,0.00489476477393837,-0.11438447047708375,5.164239912317483e-05,0.0015505484968650516,-0.01299044085333816,0.02495504672358259,-0.15231472476579974,0.0002538019161518189,0.00872795019272671,-0.00911510948240741,0.03298943601865824,-0.07945649558072525,6.870706141518573e-05,0.011494130518348761,-0.024628281765916065,0.31407049613198984,0.02847917597853824,2.0231974012448177e-05,0.008077562885398602,0.009990996688351843,0.031577772793190365,-0.08257191777478803,0.00011059520143331394,0.0037707109914544264,-0.007436086740581252,0.040640936268424126,-0.019275200589362888,0.00028840893678858896,0.0014046266380142506,-0.021399500914152925,0.10642535031790115,0.03506515253559116,0.00011516760947048922,0.01859036292779855,-0.0022830420474219014 +2022-01-04,-0.06406458155034782,0.49332693170496794,0.09784838821455899,0.0001373313700234192,0.00554953943444384,-0.01790564280361149,0.05974382728135861,-0.06127219769714045,7.191299930574144e-05,0.028560613969811785,0.029301769318816933,0.11611135222090296,0.005949730928095519,0.00011673910695393332,0.011559832255003986,-0.0077622796249392926,0.009134388925412348,0.00950561476080915,0.00028679900527459274,0.0008852856525966009,0.04726751209724269,0.12095449331154051,0.13052784992662536,0.00020447419628959225,0.00859915117559449,0.008720415516356552,0.023370664945349486,-0.03936653195127295,8.147283893388678e-05,0.006883916479533673,0.002534334482897692,0.008781129627295702,0.0009406610922135487,8.468439704644518e-05,0.015132118759566607,-0.0032998281604280297,0.029487596835597395,-0.013330508765681823,3.837519177692847e-05,0.005855338791120547,-0.023716139175402624,0.017789993249752646,0.03054527885891389,0.001028047055722375,0.004838426410214392,-0.01885590166750181,0.03687576219614584,-0.07393971941793603,0.0001788002762482003,0.01793559658702866,-0.005223868850510647,0.003745515526342201,-0.03249590449278177,0.0006817184088005607,0.0002736534505378453,-0.011418241635251767,0.1759376665079726,0.008695196158872634,1.9340299325347394e-05,0.001631018564694672,0.05829001410437517,0.16917340555922672,0.02473992256984899,0.00010235595301522127,0.0038289738232882833,0.0005656169181004758,0.0033013638428799974,-0.004662154061554358,4.822706349880432e-05,0.003210237473472248,0.02137225094318072,0.022644677355213874,0.03143406393164827,0.0018408020962831127,0.005946580765176502,0.008121408431102716,0.055197956637177865,-0.008917560908953303,0.00012107666745346533,0.02129406773191796,-0.010172774232841136,0.05891365762939648,-0.005135049547843617,0.0002673816823699262,0.008358622271881841,-0.018079249199227765,0.13263391519245943,-0.05597076827310378,3.839606845805349e-05,0.005029783444971318,0.007345470100168444,0.04088432805653337,-0.06184231315821184,0.0002961075891088135,0.0019170418975520522,-0.004572486823411604,0.06475959105917437,-0.12410063991386502,2.930074050818524e-05,0.014872564892633592,-0.02098259549099741,0.20539187108000312,0.06304341375741487,3.413168006188021e-05,0.013528399841755906,0.019497726702440387,0.049536569806034346,-0.036565917889813976,0.0001267887745201414,0.0017149817409640698,-0.028165382455321644,0.19293232372159413,-0.03421352129859718,3.372120099965455e-05,0.0007870232674162597,-0.01367221778149257,0.04036362207344992,-0.06514526197461859,7.509762780177815e-05,0.0029424415051860645,0.010349171836667464,0.04829380351309443,-0.04045761753302444,9.79857187829459e-05,0.0012178526780797676,-0.01157832716425614,0.011157337511915926,-0.02483586831817032,0.0005931449097105152,0.0011073533034748565,-0.009937976648565695,0.0302809384871125,-0.06593613407387036,0.00013813847270809632,0.00024019900769297643,-0.049022412628829413,0.18039818990042583,0.015176231318921315,0.001744141357477339,0.006545030682099217,0.005956481374611124,0.055729900683433496,0.0015337264508467371,2.7484238863705538e-05,0.001089755827431922,0.0350585907512702,0.08990537134675045,0.012779986071598888,0.001274911637371925,0.004671939697934939,0.013547149282620569,0.11353001932759149,0.018748187624211016,7.946261408972677e-05,0.011166242082109484,0.0007977382119745937,0.001036999330044956,-0.016974423968152234,0.00018156298153550285,0.004335257327256617,0.024989137134887124,0.03952265542612507,0.01892859547583285,0.0003629184590065079,0.0035695006760162766,0.011503742233888104,0.04288502818420108,-0.011145638658878246,0.002079140236528666,0.005041457005750299,-0.0257968336758982,0.10220224976088035,0.010279436545681345,8.098345814887768e-05,0.0072552715272583244,-0.02374116083862456,0.030237792258396647,-0.05130276175992761,0.001951771908755325,0.0011399094808891106,-0.010088325412966044,0.03602130438163834,-0.021139745839474307,0.0001109623597313703,0.00034141857112563964,0.04841013394735373,0.1234023387095055,0.018514159317959564,0.00015902788018638044,0.019014623688690488,-0.025949217773060713,0.09855029992335106,0.02320501330034888,6.426584843933318e-05,0.011523622046965665,-0.03841468373678467,0.12087240150579145,0.02704271870538844,0.003012230275195082,0.008923348243061742,-0.011318218733717904,0.058347480096554424,0.001028363298218166,9.649316440945694e-05,0.007846834228127316,0.009737436022644354,0.05880745501066492,0.01001633121210666,0.00012008064628806662,0.013997262811373961,0.007872549417585827,0.04600075761176443,-0.0012415057926793073,8.094669282552794e-05,0.008030476265831898,-0.02832217140380521,0.1272852965738777,0.03659550377490899,5.5923674964357165e-05,0.02215528893023081,-0.016996150568365214,0.031036521456305335,-0.043261895205989165,0.00026699733338734447,0.019673420360429773,0.0051840390660220885,0.02455477010004472,0.002807785872508627,5.249848481852668e-05,0.011620239859153642,0.02224955806792232,0.25941972734023033,0.006785722591653999,2.2128382822441077e-05,0.002806911375373067,-0.013538287096981606,0.044185588375385845,0.034690995261254506,0.00010710063400744874,0.011058256332496012,-0.006199274522646789,0.023795094874834978,0.009310925594748998,0.00041065905065040565,0.0008564477293846093,-0.012308375842893668,0.06318942827871438,-0.07652556493888045,0.00011156503838218355,0.015342721093134382,-0.003697882450549533 +2022-01-05,-0.007759434985632895,0.047045702968716574,-0.09792934037625028,0.00017442017596567378,0.004839753320057773,0.021489408229597832,0.07480723498674176,-0.015528104885502967,6.892731797401173e-05,0.02671991041400295,0.0023290784879189527,0.009244117155050509,-0.017615332749899598,0.00011655096878229369,0.02533812808608816,-0.013362877218671942,0.012233089849526896,0.012015410573722744,0.00036866479617797977,0.0029349298565538974,0.007849108366969693,0.01796698620008496,0.0012223069496209485,0.00022858243942533568,0.03087963633592614,-0.0025935885090459803,0.0068273934045079135,-0.0007103034888229231,8.294551059449113e-05,0.0037292342952419876,-5.063507156283225e-05,0.00021863535315139957,-0.04075488208796013,6.795491834642876e-05,0.03313829049248886,0.03619856156909762,0.25720674376614794,0.006743090488482702,4.826225127232e-05,0.007885721209597397,0.019624106882857935,0.013765042965608475,0.08783036416187627,0.0010994035017091173,0.016557214701884638,0.0023001894081664228,0.005889859894925829,-0.03452875460269491,0.00013655906090944542,0.0023691740375646436,0.0038549725799808276,0.002802120184654405,-0.015010060941195618,0.0006724482892502164,0.004569607996685538,0.0035625606051613453,0.049270116833928464,-0.00016201222555186585,2.1547726696120893e-05,0.0015544900006714511,0.00859444356712046,0.024233134898717052,0.000305282068496486,0.00010535598267919009,0.015477424254510427,-0.01281313353749009,0.07059672567272084,0.01998658080758868,5.108961289554422e-05,0.01845419868313791,-0.02177437524425935,0.019265134337761607,0.017295011837352922,0.00220443162995287,0.01150489682031526,-0.02482636788047754,0.18564975415444882,-0.0919592538141748,0.00011004515231272985,0.008502475653087314,0.02737534630755963,0.14899162166022475,-0.027255869517184592,0.0002845155494711508,0.05275234551139423,-0.011097206694245848,0.06719702695715034,0.0004315926239319671,4.6518378976392264e-05,0.009915124752465655,0.06062505883358549,0.3795798091625977,-0.02706976208980108,0.0002632302991962481,0.045464424717367016,0.002463255031003133,0.02684454660704363,-0.13709998106278298,3.807882478549771e-05,0.010412914426660326,0.006834788017186042,0.07232480424494389,-0.21413601081499437,3.1573264770506624e-05,0.002557321560942564,0.0013702937700412862,0.004979085182527869,0.0012414023581169497,8.86516621645542e-05,0.005119646535964913,-0.0013986062801055524,0.010542531549334279,-0.05160269681001474,3.064382268766509e-05,0.034592219486914606,0.00011984774841049527,0.00036873643756072055,4.6929372861107865e-05,7.205949364678664e-05,0.002012127456233886,-0.0005022106473495442,0.0017650166738491567,-0.004058192270398542,0.00013010251713698574,0.010945124448364759,-0.0019260405751126506,0.0019509265374409541,-0.003975424268153126,0.0005642870415548371,0.0026397571337779856,-0.02022967535504457,0.06810291118952852,-0.020557792412590124,0.00012502856461315168,0.006202320684408727,0.012351632927287477,0.04017074382869175,-0.0794186062786582,0.0019734843092990726,0.013587478073326508,0.02168792947706792,0.21095891975686193,-0.005049807874236736,2.6436404889519216e-05,0.012101105807810928,-0.04073394203753906,0.10977201118376596,0.03130860004160634,0.0012132103025249228,0.006100496304168377,0.020409233657002455,0.12958993230962226,0.0004674534802406328,0.0001048771985281853,0.004419015499857727,0.0429623132731221,0.0671906586100144,0.11447169761537165,0.00015091212891909625,0.014019021787127144,-0.023915943606064076,0.03429125198927338,-0.01746637847660201,0.000400320741825077,0.03460381273093277,0.009743410948762032,0.04430530803510379,-0.0015652256071668569,0.0017045337353899374,0.018038555231386137,-0.03684053166463401,0.14505514178293075,0.004081524917074003,8.148602477070042e-05,0.011597504815272002,-0.04418392073715539,0.060605319168304535,0.037658770214337285,0.0018123025445262193,0.012717718194410461,0.013464719637322643,0.03940554413404698,0.029634967199159114,0.00013538047158634652,0.0023568677204663163,-0.03663589671747263,0.08809424487072653,0.014764848741338415,0.0001685852851627146,0.018995377290263352,0.038728025068602664,0.14481647576359313,0.005781554681793858,6.527115555067685e-05,0.0030100491179108984,-0.02274289747543295,0.0774894946615714,-0.02959164783072837,0.0027817687423714456,0.00607761090374954,0.042580363557481835,0.2123389487674028,0.08920142057146105,9.975169245188447e-05,0.00892791377575145,-0.015580723542108495,0.08387842548721057,0.00626490590578025,0.00013470947281392053,0.011408673648842871,-0.005208979830871276,0.03105182870231771,-0.035425595386956076,7.934401862178364e-05,0.020151922204807268,0.014044357401203985,0.06637053741586052,-0.008350689237867994,5.3183134916963136e-05,0.005601315491480275,-0.006898278088354082,0.012033105110518553,0.003909294942131422,0.0002795068023226063,0.007844379517620445,-0.02697730028193369,0.12709337665570536,0.053893893095954805,5.278249844982188e-05,0.008663996814841882,0.01820222157275895,0.2111909753044563,0.013801648077929008,2.223721148006408e-05,0.013843994050645863,-0.000632840702302701,0.001955840872212761,0.00038502114798987696,0.00011310188700631374,0.003236727722502512,0.0007033346137355263,0.0029129833452567265,-0.0442118795509389,0.0003805852568421198,0.005398039775043109,-0.01071395582268783,0.05408532224165492,0.015188733891128368,0.00011345985538934743,0.0002743568756216478,0.0003826322829024732 +2022-01-06,-0.027044899677543793,0.16728809122547686,-0.03137838260002765,0.00017096489065507116,0.006743001470918417,-0.010776518160621886,0.03678788049936453,-0.00684565376101065,7.028849180124605e-05,0.019603081465423076,-0.007311818742308561,0.021391280359068638,-0.02720816501490147,0.000158119649002224,0.00020768537811172117,0.02121690374518958,0.020385618398448192,-0.06328727976610345,0.00035125779609825335,0.003874258451824127,0.004602379035911194,0.011242874239018513,-0.004228713504858976,0.00021419178117050146,0.0019777579211396256,-0.009412220133250167,0.02534797593866991,-0.1992579318809452,8.10766002891714e-05,0.007067039014029442,-0.027348103496522874,0.09405430934931287,0.035751901583453066,8.53175491418192e-05,0.013252510298035269,-0.00011413637936924566,0.0010098462331299288,0.002676370835909652,3.875854421349035e-05,0.00711479384818211,0.007206143820287332,0.00715794553367847,0.019844371300081147,0.0007763531558333431,0.012885303755274486,0.032780045574793165,0.06627833179185322,0.0673863718780548,0.0001729417584953488,0.019535424886770746,-0.015608411927199077,0.012290568851760893,0.0245016501265365,0.0006207419445215218,0.013071361372371198,-0.009842887194254298,0.12388820497723473,-0.13312295591642373,2.3676381914536724e-05,0.007257585321880015,-0.007807261522021398,0.01999398884480936,-0.004704206236440245,0.0001159979514848443,0.0201804770838149,-0.0032098077280495194,0.020040753857369174,-0.020600969147390343,4.508445069659332e-05,0.006684033472606689,-0.03664726394492324,0.02939494860650215,0.015515270583447885,0.002431598257366793,0.009563726569716425,0.046486515114530724,0.2820673389082061,-0.01660169063751095,0.0001356207984024826,0.036477110377204365,0.03688036742617825,0.18000811872813027,0.015418152144692708,0.0003172571203492608,0.027534583517818075,-0.005070158665148073,0.03169229700942275,-0.010916923286942975,4.506390150293198e-05,0.0020899045868023602,0.009137492300446672,0.04807225695235502,0.0003111415546190079,0.00031327036933213875,0.024085640605797664,-0.01671042091201989,0.22754098256109154,-0.012900080377910125,3.0476001863214038e-05,0.026712824338715982,0.0204820335139171,0.21891801193060362,0.028962966834778628,3.125887083855404e-05,0.007451157360583514,0.00404253155712876,0.011805155887839756,-0.04166454555304141,0.00011030734923052033,0.011326156600983458,-0.00885574677946383,0.056869484004780174,-0.002635590646142114,3.5969821130558684e-05,0.015936002676143885,-0.012345921552303088,0.032567920488156744,0.017242921149823644,8.404480353280365e-05,0.009217351335909917,0.010818023810971251,0.04669540152927571,0.014525724561317342,0.00010593083958106687,0.0032090901770292554,-0.005886191801160964,0.00552216512823514,-0.018755170732624202,0.0006092570758163238,0.019745075735557338,-0.007305428142274818,0.02604765514474454,-0.04978128193352109,0.00011804920017416974,0.00345852895352076,-0.06017165206321254,0.23823319075787674,0.05418642765465563,0.0016210964054423232,0.014478371710096643,0.014245507393261903,0.14752211876884652,-0.0652424176540102,2.4831501237707773e-05,0.023633889020123533,-0.05163652662383152,0.13147444523447605,-0.03323771175236886,0.0012840648099138863,0.01954701154094868,-0.004826006615705198,0.034656754816410444,-0.03130327352501203,9.273115354110875e-05,0.007960321240614842,-0.05626133786517538,0.09887010400914138,0.26185913954497886,0.00013430446478937771,0.015061441697350166,-0.02261782084046148,0.04168954467599953,-0.009044880779298613,0.0003114063911395217,0.010072402368500738,0.008465415788250018,0.03563981343342754,0.007159747626654203,0.0018410399516376006,0.008410359533830528,-0.017933134745132147,0.07316308401496928,-0.03492995142723551,7.864200514945521e-05,0.004569865091721469,-0.005963657872847644,0.008453806624167785,0.0009166797867179446,0.0017536285323075187,0.0016393552647247021,0.06043107595186632,0.19277752580521276,0.3552430350231256,0.00012419953253344577,0.0037168321409667597,0.029604718725475154,0.0763502049847614,0.012085711163831211,0.00015718500307646132,0.013857554179578726,-0.008778816724147931,0.038836583969492335,0.00327282892273177,5.517074958393399e-05,0.012814176438217667,-0.0030524314286566137,0.011528458355499534,-0.06662580281620403,0.0025095320084805297,0.016576185490699176,0.02614991638044219,0.16167173418690586,0.021608156741376894,8.045939790491904e-05,0.0012007995265798932,-0.00438639146730121,0.02409469778095516,-0.0017560210827436053,0.00013202211598453706,0.001926353881603277,0.01848221815778022,0.1219009299982146,-0.019589868342896607,7.17126501182822e-05,0.016832644380180287,0.01858184437152007,0.09622151834822801,-0.09134029747780607,4.853600287292296e-05,0.02375852109119775,-0.02517227883142686,0.04770353134406912,-0.045795887180715346,0.000257277257785946,0.004442357038402928,-0.017981977949494608,0.07828065565033557,-0.017359905978129177,5.7121207846389396e-05,0.001621881988282681,-0.02855593895097796,0.28883931987164924,-0.049640753614406216,2.5507706816210617e-05,0.005534279107816209,-0.017258829802636374,0.052434149491139156,0.04439382711401193,0.00011505515520717994,0.0032594253425885103,-0.010206473713687722,0.04169672215612366,-0.006320545261057142,0.0003858351382321725,0.0009538551764047055,-0.005133357248673149,0.01955466680669181,0.007200188681088194,0.00015035672759130373,0.0037730426919403886,-0.0034699325322727825 +2022-01-07,0.01893037489868643,0.12344699689414267,0.02745986547469741,0.00016216804064712528,0.003432639664137411,0.010289049894330384,0.04932896636474866,-0.10422241664107924,5.0047660895450695e-05,0.010439563861728719,0.03890655531995885,0.13717328695446862,0.06200395558940272,0.00013120501656379297,0.007358467949398144,-0.021001855362581482,0.022677348650942803,0.02828628220584337,0.0003125598878506935,0.005101216700258148,-0.020767514224048662,0.043705095503970524,0.021055783495440177,0.0002486281023895413,0.013338261744224894,0.015707952834558968,0.04019807927575449,0.060588649521793256,8.532199980747762e-05,0.001099119779288309,0.022103901136940378,0.08544037899676654,-0.022307386129949962,7.590941045695359e-05,0.0077875572017580275,-0.012985619832921416,0.11106189219298102,0.030912217925271615,4.0095555099494265e-05,0.0036438385831011073,-0.01094975764408516,0.009523155478223768,-0.02855618376343683,0.0008866830748311736,0.0010707602316576605,-0.009034002875737404,0.017938312713625174,-0.004762781816221809,0.00017610047207274474,0.007128457470815301,0.01603749946919451,0.012082021602315291,0.026056638820859363,0.0006488157821662028,0.007935718663303445,-0.004695598519421307,0.0597437295052593,-0.06119388847521703,2.3421861927204047e-05,0.005663781649597474,-0.012422531035293966,0.02860891673387286,0.007242913657945486,0.00012899109057086926,0.006626975014141855,0.022811615601889327,0.11281268720567286,0.05349168234431262,5.6919348270512874e-05,0.013161697239591295,0.02607125183093935,0.01791880895773587,-0.004365334499628358,0.0028377603608072868,0.01450447012943364,-0.014286686792062216,0.09422694071560765,-0.005613018544055098,0.00012476953040000037,0.022145959944160562,0.02107650645572689,0.12394845959841416,-0.010207146014415523,0.0002633090122741856,0.004043601254328212,0.0003772288479484005,0.0021252334343165886,-0.006776030746664386,4.99987576899316e-05,0.013398126069360092,0.014680992370741957,0.08673471819444423,-0.001402684630076083,0.0002789646982133649,0.021857186206567677,0.04690103156090442,0.566701936302619,0.028047728777832043,3.434455784513086e-05,0.013223568389595788,0.002260201330116197,0.02213522978047914,0.0001273656348184464,3.411495483071169e-05,0.011048587906771304,-0.033928733161102044,0.10632585362485936,-0.1577366038808251,0.00010279015522328978,0.021187011834384532,-0.027427669644905908,0.20489117508293125,-0.03181813907782529,3.092132053948236e-05,0.008748013097673467,-0.0006351841275130584,0.001973389283283329,-0.0030795903416503145,7.136154662542573e-05,0.004209800543633975,-0.0006184420316273027,0.002144583536942921,-0.00898270066905804,0.00013185743584628726,0.0015334194116422234,0.058986640839319426,0.06181924135477051,0.02135792124756675,0.0005453879710736841,0.016638348336760544,-0.0034632515905635448,0.012653335437169755,-0.06280017607787101,0.0001152033293233344,0.006162148472668662,-0.018284182871512164,0.05287141833793712,-0.007277055298169716,0.0022195951642425458,0.00846810220871878,0.03121294271023356,0.3253677112049119,0.0003382743638627812,2.4668483856258196e-05,0.0005553848624707703,0.07426887134451916,0.2197845376610461,0.06867138498098947,0.0011047931128855273,0.038284225030010624,-0.013154738034495338,0.09499944265679425,-0.0030974588543206654,9.221186159796127e-05,0.022453749353733687,-0.010969584574764542,0.015558802943773133,-0.01844915438920428,0.00016640232375122175,0.0015576262527603633,-0.012307341326330577,0.015170465735227078,-0.049459409436126374,0.00046566033388611733,0.02537409812130675,-0.03767840034605055,0.14769688229574246,-0.0590117716989508,0.0019772950062392834,0.01123324655391502,0.010197746251932779,0.04114882666806097,0.012617061421017296,7.951281253369688e-05,0.01739173212672117,0.012018893187855437,0.016571737552376554,-0.03505469870533672,0.0018029082277564736,0.04613464991838932,-0.02399437043225379,0.07248431937845347,0.02433709509989335,0.00013115393661470198,0.013505831744634022,-0.04177294922575952,0.10074959207147072,-8.48347927232547e-05,0.00016807852098661786,0.01845827571155504,-0.02583095885288976,0.10067636711607734,-0.08070354888767138,6.262199755631672e-05,0.006095307810679245,-0.013469021459302871,0.04736642009414685,-0.025770797527524224,0.002695153719046924,0.0024982132236360684,-0.034074529905537616,0.14885432783936786,0.04216474741630162,0.00011386991008353677,0.009238811446406382,0.04433859005774283,0.26651135908243884,0.1262991335279472,0.0001206498924449741,0.017289975188483214,-0.04990170936371415,0.34994784574055804,0.05375706906459847,6.744671417286778e-05,0.015181087206421745,0.005905435110449984,0.025519290692903814,-0.002158603106344314,5.8160843666946754e-05,0.008717828313073833,-0.0019338714206408264,0.0036011570566907517,-0.02353868494109156,0.00026182729972112575,0.01592628452215356,0.0020403280021913414,0.008465924689419698,-0.060611247475009365,5.9929404892729663e-05,0.017264862950365906,-0.006940177837383853,0.07673432040098192,0.007800690884048027,2.3335237932765168e-05,0.0013537260825126087,0.012507927337447544,0.03562591998605299,0.008170240190193223,0.00012272363942654127,0.0007225921131214033,-0.004663700146927373,0.021681118229576968,0.0037420659270627214,0.0003390602772898727,0.0012205388534782334,0.07339441181546144,0.35863521041132,0.14432254810606004,0.00011721464174092317,0.014437985716908552,0.002065899483239539 +2022-01-10,-0.015348513136655204,0.08671149988963875,-0.0005433652614924818,0.0001871872205345274,0.0037496769994999216,-0.0208018259123193,0.06967454458506032,0.0042778058656891575,7.163707507183584e-05,0.011691714010489546,-0.0547040173271439,0.21163182551553422,0.11362000287968435,0.00011957363927208246,0.009943057794433156,0.017604148456860542,0.017835299153064327,-0.0026697779067857376,0.00033312135966748717,0.0002930391246720335,-0.0020371668894102186,0.004605683201757519,-0.028735227343277468,0.00023143568265142665,0.008301725095986676,-0.002179646976525519,0.005799404116647967,-0.012823627396685515,8.206340383484541e-05,0.0015869205720599295,-0.024828126850905585,0.09072596672162907,0.0234117089199102,8.0297533697103e-05,0.009906676659271408,-0.0067998880185210974,0.06961377602439561,0.015726843189549554,3.349694372384655e-05,0.01274913071974075,0.01998040073766876,0.018054396383428768,0.05927204981992516,0.0008534262715921693,0.010700072254944471,0.007024591982449011,0.017443760958259787,-0.019480339361335388,0.00014081303639293751,0.01814954906548694,0.02212169046607535,0.017042877207148494,-0.00934324225753026,0.0006344534371998542,0.01026153602293268,0.0010706524657260056,0.014130179779326105,-0.003223694872953219,2.257998366982694e-05,0.003987840373857499,-0.038334708924878454,0.10588530196203923,0.05082332312061898,0.00010754928522579866,0.011364052893937193,0.014966682819576926,0.0774556576902381,0.03178854161940329,5.4391899705774625e-05,0.0032710907735455257,0.00972602716670732,0.007324807317306158,-0.03734348324445117,0.0025897762634438694,0.012907185437013849,0.04003305159382589,0.2889252265774002,0.006796115144418701,0.00011402113020365021,0.005287166401012399,-0.009022136931813616,0.058325796345659986,-0.0030391754490496758,0.0002395283754860665,0.00392431339968173,-0.0208918431312831,0.13643131426507224,-0.06999384705491085,4.313438888257351e-05,0.004985119579019588,0.0002473071463930988,0.0014860908868940727,0.002299695971612013,0.00027426987131131086,0.009092209330414883,0.04447847128589524,0.4894372806392159,-0.006427835135901274,3.7712301462840464e-05,0.02069160993272169,0.0010014378505078083,0.010051267540687298,0.006187000140895193,3.32877834922458e-05,0.00924132464531379,0.017719914032210096,0.05358069198401985,-0.056935761694397014,0.00010653101092174356,0.01615615391223523,-0.02418243656567328,0.16388669517056895,0.0064260900214907326,3.408385708971764e-05,0.027893726483914354,0.003263566656692889,0.008875251124720455,-0.04871047606054402,8.152470189530635e-05,0.006009850290147601,0.000719271881898023,0.0022590675046837132,-0.0025484896761317722,0.0001455836052334019,0.007689617424140438,0.08781180094285186,0.08187422394179265,0.1458926565047255,0.0006130293237607335,0.016157810833099417,-0.0029429049089424843,0.009814432638053266,-0.040038814215630734,0.00012621095122426792,0.0018833292144725651,-0.03139400980103217,0.10912624160556768,-0.0696405757982787,0.0018464466595551688,0.009000613650506252,0.006145774342450243,0.0662772041078389,-0.01727658048412952,2.384485170272409e-05,0.011060466058850612,0.019954775954168846,0.059006731763816545,-0.022957666349119075,0.0011056471861559144,0.01760366900160926,-0.03306782164704918,0.28167612147515536,0.03890876936831408,7.817739550014023e-05,0.01462039485907741,-0.03406228328984624,0.05091387937468111,0.06287311529352575,0.0001579002994249676,0.013147806161526714,0.010390929240709623,0.014537491569368947,-0.0013189378079254744,0.0004102691157258436,0.02220481967478849,-0.014535004464540258,0.06277491231277375,-0.005473673634848677,0.0017946484819568909,0.0005746688421455919,0.015138041050006774,0.061140321710503286,-0.08899239717073475,7.94387367686975e-05,0.008919797601902549,-0.07880153587350394,0.11484307308328662,0.14444581845776455,0.0017057173567264297,0.0033797154885757104,-0.005522784113818731,0.017938944151409137,-0.009953891127757065,0.00012197679718414152,0.014779075131239178,0.006222317080394672,0.01496727449249085,0.00105266678979658,0.00016852711685362448,0.010477506730163044,-0.04322768721055849,0.2000776966591872,0.060883124001829325,5.273236461148885e-05,0.009462333864877383,0.00929599651983154,0.02759535062993296,-0.02541631827932881,0.0031928468967886282,0.009640141949719783,-0.02764619463234573,0.13585663009166635,-0.06022374743760383,0.00010122670351552761,0.010182205966343632,0.0039137815655109,0.021549125538931898,-0.009830897461830712,0.0001317127193999317,0.018482557847077693,-0.05760410735760403,0.3015044168368681,0.06343661421646868,9.0366710018102e-05,0.03057430975888219,-0.054527005104838155,0.2507855551990103,0.12622749037545686,5.464576640781838e-05,0.03195258507753341,-0.007169975973939285,0.014270609358948735,-0.003847381546706286,0.00024496530379230943,0.007301474643514052,0.008676553228211741,0.03069922371826531,0.013819848766624803,7.028039885513463e-05,0.003322103122055842,-0.01614855429481099,0.18416180156482376,0.005520585499629277,2.2623790927583783e-05,0.009125385983156872,-0.00816834427596527,0.031464406642204956,0.005088699250231756,9.074515614398915e-05,0.002645361940845502,0.015574678462673422,0.06628648152629067,0.012699262912738882,0.0003703583094388929,0.006789015353773324,-0.02497603197392907,0.13255263656921296,0.03205144006250057,0.00010792122519439522,0.01621088594302655,-0.005771951330745129 +2022-01-11,0.009649556641842846,0.06766872069595722,0.017999713304103743,0.0001508016097854382,0.013405396743769081,0.0019179463908472027,0.006449383965003583,0.002474590856930275,7.135571413955173e-05,0.0021412023029756906,0.03692490890726742,0.13747206757306668,0.03188307720626259,0.0001242516522744986,0.005449258767616056,0.011693524580273517,0.011802696067924983,-0.004944131308001814,0.00033437366503889077,0.0024630865938963242,0.01765191709594353,0.04071639836671675,-0.012059120386401416,0.00022684034365232374,0.024873040819765775,-0.017682274152547525,0.045252501469803114,0.06581891947817659,8.531831474090356e-05,0.006943181034781879,-0.04119575478361135,0.15222855548487305,0.05017352436795278,7.940469706720473e-05,0.0015728313374284574,0.003478292676579435,0.03218024563701051,-0.09316705928882263,3.706597103635424e-05,0.012241299104367958,0.002027482712652998,0.0015266688000178687,0.0037792771780304434,0.0010241347827274845,0.003085788328994277,-0.06035069898490181,0.1454479556358061,0.19432807997176077,0.000145089695595116,0.002644593938635631,-0.01869512802843016,0.015710750137069577,0.03158773931634578,0.0005816421621933046,0.00034379363644135817,-0.010896696758664743,0.15313961573746238,-0.04988307739279081,2.1204600839384535e-05,0.0016933958161504936,0.02369173949367969,0.07558763807622185,0.007056102687766135,9.31101897198145e-05,0.003788930270253058,-0.007158870409208593,0.036010072285239995,0.003342919708078647,5.5960595326627574e-05,0.00510244527979737,-0.023656147030034793,0.017777922299993483,0.009462745320845057,0.0025952905155894723,0.02068817498298038,-0.026057653578234415,0.1785565963758372,0.010196498046410105,0.00012009129138851599,0.0023357350663679305,0.039863937596722666,0.24212653809889545,0.018817923683009705,0.0002549447268494,0.0219770814765461,-0.08540516966301034,0.5334842730066812,0.18381276533122387,4.5094491570290026e-05,0.00382925667878589,0.02594342638510313,0.1430340905886004,-0.003093457927379305,0.0002989334964192226,0.03743380695530884,-0.036456178116880254,0.48921577266731486,0.03608898699664163,3.092437408269466e-05,0.01016013974335936,-0.005949925231152656,0.06676524873756753,-0.02263132062686611,2.977438131591604e-05,0.0018380625924126147,-0.007176886052541187,0.02100094431885289,-0.013807542260824401,0.00011008293075681504,0.0010341741532219056,-0.025909983897134937,0.22323882120470884,0.01004077760782269,2.6809566926054113e-05,0.0068753221970578385,0.011045388245667332,0.03499928401999905,-0.008310633396601002,6.996795942620892e-05,0.014924368896425764,-0.009210229422196216,0.029813998199327313,-0.002120049468751338,0.0001412533716763173,0.0027233966877473295,0.03480383184316988,0.02956793787179144,0.01222356454397548,0.0006727931887012852,0.01182292827475239,0.02152389918941625,0.09029952897400191,0.022261302610115233,0.00010032784258752611,0.014069125965555753,0.01313203399735787,0.05097131700744367,-0.0011897675865059278,0.0016535804077621769,0.0366605022345145,-0.024449488120727333,0.21531578675705038,0.03764635760766146,2.9199545616235463e-05,0.0076713951965606325,-0.0240533999391477,0.06374403566763202,0.012660114179601568,0.0012336960856285605,0.03134161460680747,-0.0030814182737291355,0.026192354710932716,-0.014763448808924797,7.834328057883784e-05,0.0027156040073279116,0.03767795496324222,0.05263283011151489,0.04138532918817484,0.0001689569207664709,0.00439036349355322,-0.0367202950464704,0.04916786103482479,0.0060118286747903186,0.00042867559610681896,0.011055906551554712,0.017628857276440767,0.07435089637980985,0.01101277952177341,0.0018377578821309546,0.016433619000224258,-0.04197732034377955,0.15904457947288633,0.05264531414106733,8.468104521232963e-05,0.02309528334661586,-0.026865886610793168,0.03638917007357023,0.009044316702589152,0.0018352964243787545,0.017289255777143,0.0003192210498425886,0.0011056822121468426,-0.000968681304994057,0.0001143871488635716,0.026073406515126962,-0.00019034227497710904,0.00041270409042669105,0.00012439425416871827,0.00018696351245690626,0.0010747645707208811,0.006960488361434587,0.029721870355034558,-0.006033921222857774,5.715806278790162e-05,0.00024887202336560874,0.01149919543942523,0.03921787056947575,-0.003088746768056184,0.0027790829151545632,0.01224527373131512,0.01999872802373033,0.09193387390650028,0.02480535631411499,0.00010820999677368672,0.011743514648273919,0.019477201535630106,0.11362225315051462,0.005430155733758417,0.00012431511763620086,0.009367118517717914,-0.0015533296089842402,0.010490709011238952,0.00028644144412221607,7.003376564864186e-05,0.009606353003772574,0.038085446787631046,0.1812370596467668,0.03694121229088275,5.281526242054294e-05,0.011677333749741005,-0.007600429321840347,0.014645637686395038,-0.013363592811622766,0.0002530225525996866,0.00246750531856575,-0.01440721364405536,0.05576742822383019,0.0016510944099907203,6.424121633925583e-05,0.0012132790126416523,-0.020803238203178587,0.24280590269694655,0.03860698195121718,2.2105634600267476e-05,0.0158675250847658,0.004500656400948685,0.014578034310698186,-0.0002958345733821752,0.00010791600382026161,0.0054519701572335036,0.015371363899009295,0.05247178555111322,-0.00528047894243499,0.0004617581102386863,0.0006539744625073357,-0.02240898855327268,0.1201398787032769,0.028235528711231098,0.00010683335362428582,0.024558307185836157,-0.003820736550415201 +2022-01-12,0.01339107091081145,0.0680470514045032,-0.025479528374865695,0.0002081098242697449,0.002682566943336951,0.05538859156480627,0.1681786854328156,0.08182845900872664,7.902416125328412e-05,0.010400045344878976,-0.026530889529026307,0.08506643519681562,0.023428703185988706,0.0001442749000720966,0.004346503945984868,-0.006467943064589648,0.005370025322562108,0.009685635939518527,0.0004064973427246621,0.004575447731839941,0.0005538145414126696,0.001046419567747033,-0.18530190299611313,0.0002769212445829793,0.001696434531763885,0.014791860791068348,0.04226504063276105,0.03234961629339699,7.641669663345975e-05,0.0009503445033294694,-0.05171513418244033,0.19346958657588617,0.07477607590226214,7.843227412327076e-05,0.004145761324158599,-0.018668568825315365,0.171243702542588,0.02877126570233464,3.738479730993109e-05,0.003659005035500088,0.005113551561021746,0.004424006877341862,-0.014757896254580747,0.0008913569038572547,6.617407204510318e-05,-0.054539648168169926,0.13307967422804323,0.09157912987588367,0.0001433053781042873,0.0037833662066872813,-0.002906646158569414,0.0016498289531642176,-0.02081292617537867,0.0008611476155936895,0.004019634171902093,-0.016947080742358903,0.2270172373967335,0.07242567140956614,2.2246354507094592e-05,0.006997828402962023,-0.02458211456588004,0.06521605105941178,-0.06252639577537816,0.00011197363533505394,0.010968494656271461,0.019718604212954495,0.09454066483341073,-0.007321973525633421,5.8710980901205244e-05,0.014259112936842733,-0.02041147074298798,0.013262571100779138,-0.061533864244155405,0.0030017156272562143,0.0011977334814164923,0.02443468606538547,0.1612186831998221,0.006561815857548604,0.0001247221250259635,0.0039071125466237375,-0.04080377536902651,0.18040182428140158,0.005261117996744906,0.0003502415409717181,0.015910262750753724,-0.02859729401942658,0.1715823702097319,-0.0037322203877821827,4.6947582493429165e-05,0.010018947988299536,0.019698282728583677,0.09168274313025047,-0.00425752082052665,0.00035410134404508545,0.005878392330429334,0.06944188428396765,0.8430706963136189,-0.10152422128841118,3.418123371484113e-05,0.014152302801661382,-0.007019381266503952,0.08502161017149668,0.02816198715332535,2.7583617117498396e-05,0.008463347368723654,-0.022069706505699872,0.06013655527094196,0.024327262404161745,0.00011821722652607312,0.0018832031994862532,0.043504514505839864,0.32995251812942406,0.04167168146600464,3.0456167716184542e-05,0.019315515682658407,0.019593987466830567,0.048522865735084214,0.03653804501848019,8.952694522672931e-05,0.0023217994091940947,-0.0017654951167957965,0.00577291131261544,-0.009754327041243904,0.0001398363986692566,0.0028879122097725356,0.06135095519006263,0.07213066443293822,0.048886773434445065,0.00048615746349394806,0.003836868225653616,0.015245893441329865,0.05128802342687614,-0.02749743435803269,0.00012511890266965462,0.003466035671406001,0.003215016533866035,0.010055242524973855,-0.011056937868604901,0.0020521534661334224,0.03896468223935545,-0.010994867471376275,0.11481743965203807,0.004190206716104958,2.4624325085141904e-05,0.001161139978522525,0.024603788673014625,0.09110703376468035,0.0028436870734465463,0.0008829199919515344,0.006459966562128433,-0.014505679719706292,0.097418928346258,-0.021446234472015234,9.915631525331817e-05,0.01755964951138688,-0.008418325315843835,0.013435052690076898,-0.050449783339836164,0.00014788758493378977,0.009932677699983902,-0.031783803562245944,0.03838599482933786,0.011992321688188914,0.00047526625695751496,0.006413412176725662,-0.004112924164142161,0.01969294975615446,-0.00042720072499470086,0.0016187890952937955,0.020071074110426378,-0.01640784454982208,0.05861273791078892,-0.0007924342465074827,8.981521103169046e-05,0.00013013761115736626,-0.03397124992181779,0.04688704818990917,0.014555829959187753,0.0018010917044394682,0.015660086993106673,0.014184990143675379,0.04323531751007732,0.010524089453477917,0.0001299889459546635,0.0014794854273031423,0.0053930125758881575,0.01571023863159991,-0.010095307860274792,0.0001391582720086478,0.014177834028293073,-0.01237596418866163,0.05526156788212435,-0.004098909296546201,5.466001750943267e-05,0.01905540855225787,0.028623793859743066,0.09200613368511563,0.009843171781091467,0.0029486856245486905,0.031729929198791855,-0.002717248088483878,0.014180698521798778,-0.0133528686303507,9.531741119997195e-05,0.01889271680293301,0.04962787822030074,0.26299600281078356,0.10852721092244609,0.00013684765015025942,0.005647667723303339,-0.01593685976652893,0.09503090910393887,-0.004715235198450775,7.932070507795626e-05,0.021692566703482328,-0.0197485591492896,0.10941582812607076,-0.06344081686319444,4.5363092978807975e-05,0.014341809465122986,-0.006267512303752196,0.012058742041710277,-0.11359217409901595,0.00025340932048923477,0.0003727957842704784,-0.002663759533176772,0.010523433427620741,-0.08443624705137168,6.294365167104259e-05,0.011997816696486738,0.01608183057432884,0.18876653287373604,0.011235727120281714,2.1980712647522733e-05,0.006783767972850627,0.00458514309991836,0.01329522732265457,-0.009687860020007254,0.00012054968823347695,0.011214484059402566,0.022771555246075593,0.09528741207200511,0.031649179484250875,0.00037669090268679776,0.005388248367098212,-0.0397538219825717,0.19824697517138654,0.05453693209148681,0.00011485346845832361,0.0004202552530556719,-0.0003063654677412834 +2022-01-13,0.042830071468419925,0.3015032835253637,0.08419181238213516,0.0001502253888409634,0.0066437506370579805,-0.010001021629138969,0.029556137155139554,-0.03114302993921753,8.11908746296228e-05,0.01151155980412802,0.005645475373399666,0.02043562054723143,-0.024637266773334453,0.00012779383163325913,0.017003256701255586,0.009648247628860858,0.009279264421548772,0.002134068654559173,0.0003509156581033794,0.0010153398377558717,-0.012466645687748537,0.027054143282802715,0.007669747304418905,0.0002411091006822945,0.009490701416173173,-0.01027425802623667,0.03198311335621921,0.003922428970450009,7.014172960671024e-05,0.0002214330601882225,0.05444630365496036,0.19653091334964565,0.053204848028872036,8.128817693879108e-05,0.016274941081794506,-0.012316815360816219,0.10185097309321478,0.02055754582047131,4.146979255461581e-05,0.006860240048083646,-0.018150238282895394,0.015765479637467925,0.007177707452710407,0.0008878097898558699,0.007344055251194673,-0.00026060677272589475,0.0005293571971847372,-0.010085518217693526,0.00017214672398140074,0.017623270621175004,0.03298002223237773,0.023580589507432116,0.10787968776985925,0.0006836292624045474,0.0021273196174612092,0.012357976073199117,0.14087318269775928,0.023350987971586305,2.6142180736908294e-05,0.008901449224396549,-0.003980340451526214,0.011420111918356284,-0.0006109998042247862,0.00010353826855013067,0.005969439141964441,0.007966461579228012,0.04748073942815348,-0.002494981488558818,4.7229115319451584e-05,0.006234635939941396,0.0004631478920135843,0.0003958950625023691,-0.0005459288526292439,0.0022817212072029154,0.01596840951215405,-0.007974025274792858,0.04327245731338694,-0.06580620798072259,0.0001516415299462855,0.005739401431831614,0.04292613510967157,0.23368414830045622,0.025644544814795226,0.0002844466128249643,0.016327715048195177,0.025207428517382963,0.16179859985032485,0.06042097864053991,4.38848624265377e-05,0.022255557621365923,-0.015084261984634608,0.10245377586720883,0.010795706443956046,0.00024265145814984996,0.024033663201699525,0.021902059263038672,0.29171283255342,-0.013744746618332407,3.115728785791421e-05,0.01113656796061383,-0.010861930776593762,0.11213970233550566,0.031225060710315066,3.2361551955381503e-05,0.003364606890715178,-0.036174874459469285,0.10251471236754182,0.0507964220824107,0.0001136694061092544,0.0033304055853932415,0.020620394103875773,0.15268945719680685,-0.014268857876297449,3.119466214094643e-05,0.0022686380050436507,0.0031637278306427662,0.0072429754557128655,-0.07773495226359688,9.684104867988261e-05,0.007046337396393875,0.011197972968437454,0.04384419422162951,0.030837763767624152,0.0001167820023643479,0.002595532663153814,-0.052458398446575495,0.05327857136725647,0.026869119644868694,0.0005627791741970551,0.02052540598589756,0.0020587769391443482,0.007894274112964643,-0.008974568641319812,0.00010976985782618031,0.010081971142338757,0.008170902114315108,0.02985209163230482,-0.009816945964520412,0.0017567680177109745,0.01072603454912352,0.016876778405257264,0.17439593081934662,-0.000283761718238938,2.4884871130768992e-05,0.01015858947173187,0.015742576437588744,0.040722242806670236,-0.031061509617465156,0.001263907792309089,0.0033027065260584727,-0.010556895751161904,0.07457459880756238,-0.00448549577563985,9.426944506530528e-05,0.004291484712618401,-0.023349573629976986,0.03419727026248298,0.011670178812583828,0.00016115096120936212,1.3463954129439536e-05,0.006552388795526588,0.010222783561610353,-0.006826653638978772,0.0003679039129149972,0.025842714891866368,-0.020739118699701985,0.06765467678966552,-0.013837282195824347,0.002375980187215817,0.0060825893756502585,0.01607193256193749,0.06609417784484072,-8.61805560296684e-07,7.801808159651023e-05,0.0036774684432667837,0.047526332269155834,0.05688030827479051,0.02504079235096917,0.002077062430060878,0.0032975042545886173,-0.02377072828374125,0.07520653463539964,0.020533378592764627,0.00012522843309264583,0.0009228339078690669,0.029833566844183444,0.08394189490386947,-0.02828146407669208,0.00014407438925154918,0.0002133882306445151,0.03136363622621294,0.15205959156205048,-0.037707263115867765,5.034154191123387e-05,0.0059929959013236035,0.046755737671196874,0.14805229134468956,0.058331100152341483,0.0029932144839954853,0.005462551137558076,0.03622057768191534,0.18415253513187915,0.04100074286593811,9.78404049133896e-05,0.010763453994662822,-0.002814382537129196,0.014329969234994707,0.0007842027439979397,0.00014242907499305442,0.0003695848087861538,0.02781456451031514,0.16492309215033432,0.02303341128516712,7.976998209079019e-05,0.0002400325102481914,0.022416358255322094,0.11335351409648434,-0.02954134134844265,4.970241204073627e-05,0.005520591703189001,0.015529508356328475,0.02486159214613562,0.04603827265779875,0.0003045496910352907,0.006735571051372062,0.002898730600247314,0.012619710404247655,-0.06981356732509664,5.711798027622706e-05,0.00617687533674167,-0.011650557249623706,0.10440134600219877,0.009605494453844343,2.879200346318557e-05,0.002276621682913218,0.019355475409825577,0.05906034160064235,0.03643385110733715,0.00011455573942666354,0.0008932710336292617,-0.011825331466771574,0.043825329539842056,0.01757431680001287,0.0004253202920939139,0.002883260502576924,0.009037588615193295,0.04173036236373276,-0.022419970695329014,0.00012404298502512935,0.008354670120289173,0.006220779424396286 +2022-01-14,-0.004410009620842233,0.029581377972582333,-0.02494403692471379,0.0001576549895955173,0.0007623079429187965,0.011117044254463587,0.03815895680251799,-0.0032454076959457737,6.9904215742782e-05,0.015051755383218035,-0.017921089864905662,0.058322384255432215,0.01252589856655417,0.00014214328638076758,0.03390804592947772,-0.0025338547605389095,0.002446180046088855,0.00044631583490961136,0.0003495917335566861,0.009095905336739495,-0.006812381082042747,0.015937412965829588,-0.02356648418459679,0.0002236551384257344,0.016959469130112922,0.012603354208407145,0.03406462934340101,0.020706985162920622,8.078471813758117e-05,0.0007965645090684053,-0.016349327880321098,0.059773088655962564,0.0004129471570172144,8.025721052666107e-05,0.019099201359256676,-0.03430462206157975,0.3218149324909796,0.06864890533557448,3.655485466980898e-05,0.017299461257871747,-0.026262951655657105,0.02089929536621699,0.010176606253061434,0.0009690734093883211,0.013789750371591976,0.005706395438313994,0.013253484589770707,0.0014317872383500896,0.000150554476386574,0.0008692981290540555,0.01927502186398346,0.01376417489268122,0.025741875983365373,0.0006844930695881973,0.011146716084249006,-0.01956449964369696,0.20038415452742392,0.0752989872869012,2.909565633210436e-05,0.006243174355208347,0.08227938765547142,0.2575104377438627,0.16497402400228495,9.491770996416883e-05,0.003824276949674575,-0.033662281343692715,0.18509102208832562,0.15113608426530406,5.119411151452543e-05,0.017359028618363928,0.020483312933051317,0.014112672579205659,0.04664185997584608,0.0028308307645609114,0.020687399229138037,0.04543222097922286,0.28918284663817534,0.023128238799643746,0.00012928363288993184,0.004609877103882299,0.04789870183531841,0.23814054886079664,0.022397698695819472,0.000311457379219461,0.0231451817532194,0.015776997701766132,0.10422628219492078,0.0014848751472146518,4.263910416610762e-05,0.018569124227746526,-0.034631172329196644,0.22328310256467032,0.02730166926455841,0.00025562194956883647,0.0019355554861043081,-0.08212816628819722,1.0542860869949922,0.18127912070436755,3.232688678017742e-05,0.012673807769388394,-0.0017943766043146984,0.01950039341003461,-0.010588780725915748,3.074340271951195e-05,0.004942745343862168,0.053195346113670765,0.15189949977975087,0.026762231101856025,0.00011280803935111169,0.0025014415129644197,-0.016141786037627438,0.11658106496466988,-0.027854104860741132,3.198276037264724e-05,0.00887175878012086,-0.017021935160141746,0.04750518551012546,-0.027826281484616588,7.9441108544361e-05,0.00394738079864173,0.0072543598279578144,0.024807193925703748,-0.06234129333440674,0.00013371189611678392,0.012079311131185667,-0.012649793576618485,0.01275219890778306,-0.002981829837607999,0.0005669880710534527,0.005408691305862699,-0.037344396759853,0.15382132301629528,0.11032041373135162,0.00010218682725010713,0.006097733063353828,0.01941888901743122,0.06521258421170521,0.01213744101984753,0.0019112264354930932,0.00033317043738495446,0.03717003622015076,0.4314519527072968,-0.14141615470019542,2.2153519951612886e-05,0.0015023490872993828,-0.057440666995271186,0.17201200606302347,0.06366142102307057,0.0010917720784748895,0.03172586581526853,0.021362676668655187,0.13654432782021753,0.012810543722262268,0.00010418558790539865,0.032222624370559935,0.018615329908351744,0.029647079127739683,0.013221753634851091,0.00014819522523292335,0.005623070360399187,-0.03147200197324906,0.045599013563623246,-0.05148548837968674,0.0003961620185667351,0.0021294227575914633,-0.004021795112340094,0.015571715547188737,-0.0765672861121374,0.002001860551127924,0.008934563796000704,0.018263174982434852,0.06417648671632366,0.021957018951697,9.130419088955046e-05,0.0068969869668632,0.01288234341455684,0.016051749398984384,-0.013212368083844784,0.0019950312058728886,0.009627190290950946,-0.022303088364198025,0.08117227044839168,0.018101808246953555,0.00010886125779145225,0.00015636488847734485,0.053376861515278234,0.12630296069332206,0.052750348996208396,0.00017131677067072336,0.014580570168412842,0.029577176834370167,0.1271245235018378,0.03968317500052238,5.678600349495446e-05,0.003933588594493833,0.011274603125902461,0.0377109367300893,-0.00683924270597058,0.0028336878039134377,0.01578211748738932,0.010379032424366011,0.044994919191407017,-0.0027581768271897093,0.00011474505097540399,0.0021698874780280526,-0.0021680201464969575,0.012121381158243932,-0.009916857290695259,0.00012970956119118037,0.0014444433352515814,0.04374686256207353,0.2615900565610402,0.04692479479750859,7.909961664545579e-05,0.007989792976587619,-0.06279733869425816,0.3661864451643399,0.1277551289974984,4.310090305193288e-05,0.007454016863426692,-0.044532631066303875,0.0880063314484239,-0.01103272188067266,0.0002467140207207342,0.020770217843147386,0.0025607467884471383,0.010519881079481356,-0.01650502753547313,6.052993146439735e-05,0.008500788472766568,0.015934257031563648,0.1535193233558801,0.010106503347960304,2.6779351533690245e-05,0.0017358147058072055,0.013242149998029614,0.04165172469401089,-0.05687131452975462,0.00011113080962575832,0.0032080448173224694,-0.005206191082744151,0.022117786240647943,-0.01712372001335006,0.00037102777197878527,0.0012237267489479532,0.037140233472318145,0.18360974404057637,-0.005916971891680415,0.00011585657893224669,0.01221818161985913,0.0016829358980686871 +2022-01-17,0.009002991806677914,0.06446498714021484,-0.014210823852209387,0.00014768947220284828,0.01786146589078848,-0.045068576658709815,0.13992024768894587,0.04628136567922698,7.728652911268242e-05,0.000492325422791907,-0.027792723178973296,0.10218830879579514,0.018203766066830444,0.00012581345667809382,0.0007081305525690348,-0.01917241391855843,0.020044147388788125,0.04898971266786387,0.0003228174965916098,0.003672231073098295,0.02923994196740391,0.06989690945607313,0.040256489599743754,0.00021888515340089828,0.00883169512914193,-0.03592200738621616,0.10708938543548328,0.18958860913843784,7.324212082589322e-05,0.005980893604417877,-0.01568117564426697,0.04794455433019742,0.007165593116087034,9.596860646563382e-05,0.014020060825153906,-0.019557626369183616,0.16896789531012943,-0.004377932629915705,3.969269299373405e-05,0.0038366394865754104,-0.027183770162114682,0.019304552975353856,0.02258286921535057,0.0010859122362449614,0.0036415447282780343,0.031140838951421668,0.06981588368440698,0.04501873997808126,0.00015596888070868692,0.016896306221985357,-0.027558037556755954,0.01787294010922132,0.05293073327732734,0.0007536620474633304,0.0006261056417974503,0.020821816473594684,0.2637963395160915,0.058533263762252985,2.3521912968541283e-05,0.020397546432364317,-0.057961968896695776,0.16539595378439625,0.08199054755612299,0.00010410444819192814,0.00904357494166979,-0.001766564670269024,0.009820958875766879,-0.0005460446759603496,5.0633443786902146e-05,0.007863448173142485,-0.008355681044086764,0.006614146507119758,-0.004502714795115833,0.0024639450357062153,0.009450866620782065,0.07445257905200278,0.5348908313241103,0.034068698519381276,0.00011454251127908405,0.016791681446160237,-0.01382530944238113,0.07774345256929203,-0.048813036065295724,0.0002753716766580685,0.007666486435473581,0.016828500930504052,0.10752153778592889,0.014313636223084817,4.408703783634184e-05,0.012986706075519409,-0.004976711186407792,0.029836326359788477,-0.08261158800243572,0.00027490579607207993,0.05046102208204837,0.010219851234463085,0.14934596322483779,-0.02289447094320181,2.839757904216416e-05,0.008318326455717165,-0.018376763148165623,0.2017575825945219,0.07835632603959017,3.043132493483646e-05,0.004679299598838258,-0.013560896834367505,0.03962251030814454,0.0043988985127007465,0.0001102476093387403,0.011615294550160443,0.02877041328154108,0.2100106960482989,0.01670840968027234,3.164441433133274e-05,0.0027660712553387165,-0.010604044388322945,0.02922629935684157,-0.008891638968879978,8.044056104355575e-05,0.0006747259365730343,0.018782004298566097,0.073481906850115,0.0804403284967174,0.00011687190243525987,0.0007989555175221591,-0.029495607451761652,0.02435020512276345,-0.014787396565844116,0.000692357310351442,0.013593407428465374,-0.04719459370529986,0.17073676683899594,0.0789111704831567,0.00011634593324773222,0.008487206383631455,-0.007454978925236441,0.0281796910532608,-0.012023709494716855,0.0016979674764148358,0.01418409167682291,0.00566611964807033,0.056339549547383926,-0.0012269689962020262,2.586155091715868e-05,0.003059796478439359,0.010941452442508512,0.03331372010410477,-0.0006016446516495265,0.001073799294360539,0.006447856600649719,-0.013850125486772313,0.08977982472446223,-0.0004137684116361177,0.0001027307830120965,0.005069717844943979,0.02122590179236229,0.030045411549519445,0.008471674453215772,0.00016673753611119903,0.0014360079395808686,0.0760798771036715,0.11676707099751595,0.21137383803492843,0.0003739842647111519,0.00822102873797444,-0.03975913043984325,0.16259867636703257,0.069743614837802,0.0018952661792905547,0.006265556331355153,-0.00705220302535865,0.026283361155338105,-0.020279470249372294,8.608634603441006e-05,8.317781105664397e-05,-0.005621846233573614,0.008815295426175164,-0.014414420063279407,0.0015853285587269993,0.008305591521741434,0.03471755223211674,0.09936444633125781,0.07196446522284315,0.00013843124255248984,0.02372602614336062,-0.01648507581520285,0.048225553041103215,-0.011116491763873637,0.00013857156063826537,0.0073830205698869715,0.0061379092878337685,0.03175594059229346,0.003112136203284162,4.7174728557649105e-05,0.007951998720958283,0.014015835446641964,0.04729052149804407,-0.04491535832342959,0.0028090724777776847,0.002871941946462576,-0.06979309474042017,0.39399225732710835,0.17349091545631787,8.811814367036843e-05,0.012529604349077624,-0.03293147915347866,0.1782009422265929,-0.0720894082520264,0.00013401765865173577,0.027904552109709956,0.012148761595915667,0.0704639073430292,-0.001145531549301718,8.154812623356527e-05,0.0021440285049255,-0.03129274977140694,0.1644831448661798,0.031750310715774235,4.781561227820682e-05,0.0015123346587084462,0.03586381731109967,0.06260228575567409,0.10046723728009359,0.00027931593764002506,0.009126538011501846,-0.014594213160686762,0.05738402895908522,-0.002568048134846574,6.324177112024004e-05,0.008633550297423277,0.02039482520572086,0.24555299881033488,-0.01243744228099843,2.142920357904709e-05,0.017758691869638445,0.006879505309154197,0.02027883616512481,-0.006714853719292556,0.00011858319520830265,0.0012872038002842946,0.008653542971926054,0.034026059674584774,-0.04782657029864171,0.00040087619377544105,0.0038901684392401046,-0.005965052315700723,0.029165007278071173,-0.09223785378263653,0.00011714505585813243,0.0049710668415854,-0.003640770980721333 +2022-01-18,-0.034111904616088595,0.2261506525195133,0.02029178181312366,0.0001595124947503485,0.015740003971293822,0.0438401815602164,0.16487999655290458,0.029153520242450933,6.379915122452135e-05,0.012325454791242106,0.03813524220925368,0.1513703024754107,0.04813161707308019,0.00011654215241941663,0.013668441271511293,-0.018985887717750862,0.020809324679840757,0.03652784360608287,0.00030792204194120276,3.518749215140676e-05,0.01646758179958912,0.04178858512201892,0.002487875184164512,0.00020619110907484355,0.004732926555839969,-0.005143587923274555,0.014883669853106426,0.0007974470507426926,7.545758120524579e-05,0.007770757088912453,-0.03291729910124619,0.11864794453341859,-0.026833303934432375,8.140551535220535e-05,0.01905510658892399,0.005547848124523167,0.05117341932068141,-0.05407894515025239,3.7177376639269604e-05,0.010520639595479815,0.03530574743489445,0.0294853367380287,0.13008731436780738,0.0009233877414205439,0.0028123120562374123,0.02267890703212441,0.05440209970273228,0.017767844866355215,0.0001457700641994733,0.00030229852436843203,0.02044238065095165,0.019385530214378822,0.03009651969638299,0.0005154400319088359,0.004041365131942394,-0.009201089367451724,0.1097866560963548,-0.0641744613695537,2.49754016306164e-05,0.005761498636420762,-0.003029508323400009,0.008133998084179646,-0.007798839383315692,0.00011064177186027269,0.0025064110137366508,0.023519652958175565,0.11054532879143891,0.05419860764041339,5.988972678622603e-05,0.023354103755892627,-0.036270419469500936,0.03390595129790455,0.04492490599132847,0.00208640981436538,0.003449122188598183,0.008235274971684773,0.05832223287373484,-0.006660680948145412,0.00011619730882678481,0.012695105006839262,0.06375932603798096,0.38775760567604656,0.036403635701720304,0.00025461947868629257,0.008372571740792869,-0.01218546310687424,0.09018782150425221,-0.012819168797183153,3.805880067569624e-05,0.00811461050884901,0.02428147437749439,0.11258200906871502,-0.05592662888269073,0.00035546174338767385,0.0063728080604916,0.026288229674423014,0.34396538599106274,-0.010905153784921916,3.171588474523569e-05,0.017368972105102815,-0.02680377444793145,0.2967562233331863,0.11968191894721864,3.0177122678114543e-05,0.007275831683186495,0.024514510683831987,0.061219576549857116,-0.004962636300869023,0.00012898988737177015,0.005834304194435659,-0.01762715826627831,0.1093541673222547,-0.005065631226848712,3.723396978223127e-05,0.006261585530838387,-0.01248621608103556,0.03659681588743796,0.03298694703830733,7.564233515836449e-05,0.009678241146026315,0.00948894680920242,0.03142371297318651,0.01908986692924968,0.00013807311044663342,0.0040423730286693015,0.025092429368356955,0.023478713793303827,0.004780252581129577,0.0006108632099359624,0.033044562395983745,-0.0032919190570352107,0.012553881849873775,-0.0006713504846934059,0.00011037154454937951,0.010090832473307748,0.061364868408169494,0.2259593060474821,0.11278570481552473,0.0017430456030892857,0.03763426068758446,-0.01936884211502123,0.21415726258004342,-0.1445347269849113,2.3256965432550916e-05,0.002258931972177245,0.026090788122491528,0.08310908133331203,0.0032405766913230468,0.0010263842663177283,0.001366770492800279,-0.0390560504472792,0.3392510526915741,0.05327641344490128,7.666422722245877e-05,0.022042839383195366,-0.005859947439122751,0.008898345908026316,-0.01515774673980623,0.00015542820185998773,0.0011907774361137847,-0.024873232523206078,0.032857658066939105,0.0033009953972602197,0.0004345097617464625,0.03249096991053179,0.0207380911325009,0.07249268362954225,0.03299740172328519,0.0022173024785288385,0.00977338799842459,-0.02210835104866844,0.07926165811714551,-0.10698696672398843,8.949186709942308e-05,0.0022586712133613536,0.0358102978876353,0.05337021665133457,0.03157566024866492,0.0016679620289259864,0.014851852309676145,-0.12919232097034158,0.3731638345565652,0.5896271790506211,0.00013716812111885305,0.024460844287799644,0.04501023373338228,0.11289395973340277,0.02214270892046336,0.00016162217175454222,0.028542831826973494,-0.017780996115839567,0.08000718677160311,0.007889227101291281,5.424266418269014e-05,0.0010699464292099792,0.034432256388899726,0.12517639929376276,-0.06375927248846616,0.002607120392069526,0.013556533385732452,-0.037340297829864984,0.1685254787127767,-0.008003592336829433,0.00011021806413814864,0.014266390138472787,0.043839752469788766,0.21861046096270065,0.06716034525731378,0.00014543131723942083,0.009835814622416745,0.022842800662015897,0.13444441545226127,-0.04790261750210003,8.036284096566679e-05,0.019232834833250993,0.02482291249319142,0.10907658029015463,0.0033409889972309246,5.719638982676579e-05,0.020354642015238022,-0.06694284739857577,0.1305621872488553,0.08422922406643223,0.0002499862708822364,0.0030369020505327596,0.016018703939970465,0.06320476917607822,0.0377955935585377,6.302195931798902e-05,0.00379753065855409,0.018448137341975007,0.16908757289377266,0.015009370639916768,2.8149592895578225e-05,0.02622477316276003,0.005707091629493724,0.01775993938953287,-0.004762728369244012,0.00011232652683861894,0.0013888070061377842,-0.014043146746047628,0.05635207566413068,-0.00901724201146797,0.00039280995680846865,0.003946222880297343,-0.01468558915978121,0.08107913789899016,-0.02159176811210411,0.00010374186425534476,0.010972676439342053,0.0025943823797257236 +2022-01-19,0.02786895617640495,0.17639739918648786,0.026376644774231447,0.00016707640001666885,0.03803620221302467,-0.013709947169433004,0.04277259780880168,-0.05311435166212055,7.690962251253264e-05,0.004895916761294803,0.05411937871075633,0.15647943825484345,-0.003329217412751249,0.00015998995947230158,0.007966973971885468,0.011815322999716332,0.010798303775124998,-0.05280669192472129,0.00036928180858375855,0.004445853704922043,0.01320796756172821,0.029979712076831706,0.00297387353863609,0.00023051877782393206,0.01471740701752639,0.016784421231524415,0.04020391157224471,0.027651512481032734,9.115590371900012e-05,0.01026865980277262,0.0434780806501732,0.15634974398318377,0.02926608126624212,8.159490564974939e-05,0.009944905617987455,0.024728925563741767,0.23965787764973345,-0.0889567696090991,3.5384425824526775e-05,0.0022377931170606625,-0.014482728003071802,0.012600203253859011,-0.01667770290083482,0.0008863752282527894,0.005111567538526864,-0.04372511703542951,0.09862522856017945,0.015605673746022229,0.00015502610810417172,0.007374162268815656,-0.05876120231881427,0.034410801270481066,0.18651597013972668,0.0008346804588645574,0.0016392468659709564,0.007359559309163782,0.1046343179965531,0.007940267339311996,2.0960442699863204e-05,0.008250880597331759,-0.04393467545747488,0.1113622471526644,-0.03673598049588709,0.00011719807398850468,0.027116221733955413,-0.002428487844808643,0.01393950449405402,-0.0019855473572275174,4.903999488042098e-05,0.002815137991496306,-0.046293078511872816,0.04655256770423254,-0.011704888275130377,0.0019395250571035269,0.00932662743135803,0.07395803053025381,0.5104063362012736,0.05034957859502418,0.0001192398409989829,0.009030358183557808,0.036453007695242436,0.22785075341277133,0.006177112888878242,0.0002477371460738383,0.01097649520147668,0.01293278937293941,0.08550532347679662,0.00963598758966959,4.2604944731954065e-05,0.018546302990448446,-0.004449706085860197,0.027255523469262417,-0.1422822578189123,0.00026906896343193234,0.0023752351937406384,-0.026299205151853883,0.3427227897240634,0.01603938744519275,3.1844165317973905e-05,0.035793354680299934,0.0001322738964856705,0.0014050251897637558,-0.003375455360826502,3.145370039075299e-05,0.002575967900137501,0.009155949768388115,0.024184243527441033,-0.0005527916741655854,0.00012195332616276947,0.011271732700483714,-0.008703560547570759,0.06136754260486058,-0.10201426853118124,3.276050578818581e-05,0.011958204694519598,0.013674807767724721,0.03948787135063648,-0.005771623150910819,7.67776630876149e-05,0.004482310813647729,-0.01003917889378626,0.03657373345953438,0.016939240332857076,0.00012550975832178432,0.00032754718887650566,0.0436691577914192,0.045884242795358646,0.010541827575989636,0.0005439848545452245,0.0016852291009312014,-0.0018700111538193576,0.006297098263196788,-0.009233455930908796,0.0001249941638542085,0.02373465595107869,-0.04392913734016054,0.13191940875823316,0.03609443548022463,0.002137288521603963,0.02201419372033521,0.016283078189164694,0.1781839617311541,-0.0010089729203385765,2.349903850070448e-05,0.02030315784320217,0.060151723992878964,0.17097030399009863,0.021828020659040673,0.0011502670117787843,0.010099164304448491,-0.016800959876847953,0.13561319318248055,-0.02551272977734899,8.250073084075414e-05,0.017298894827362517,0.02383892527269993,0.03891162473349793,0.00291445836053634,0.00014459480623946414,0.00837755304700549,0.014343712255687502,0.01912730171424133,0.004628955430436883,0.00043043915457818984,0.009592487994791154,0.029063332890032056,0.1022543520051889,0.03673327180984802,0.0022029972579092477,0.0020347488348592753,0.0012462404369859733,0.005143638109975342,0.003169001205413913,7.773593091807952e-05,0.005719897091562851,-0.03281520158321607,0.03879979113601386,0.014810017576933045,0.002102436465529433,0.022230623593673907,-0.02235658081506672,0.07993412621051935,-0.003083307073678694,0.00011081261113549016,0.01773884564682286,-0.007674811420134403,0.02001632658501241,-0.0036568177950166213,0.00015543317233180945,0.018523253116531857,0.022231897756927403,0.08984724167722345,-0.07272126904149757,6.039287612568313e-05,0.0020343708717012535,-0.017939665947665436,0.054068358456208394,0.0033816064412888255,0.0031447724446592466,0.006342881826894205,-0.025824884460635165,0.11826726208390262,0.0027855378954602258,0.00010862115463114827,0.03439761909807316,0.0012925763602579863,0.0065830028923187555,-0.00014089208767878474,0.00014239441227403927,0.011335452280373482,-0.02965303911933819,0.19232587977602658,0.019419254822837455,7.292562863102444e-05,0.024789170249050595,-0.026524229781957433,0.11870778985972023,0.015836485113615427,5.615791268372315e-05,0.00010498536770406244,0.0893484332174983,0.17617688809345547,0.28792234098577485,0.0002472677066104621,0.0009565273495369389,-0.0024179651477977426,0.010264136871874226,-0.03679537251698605,5.857900327836039e-05,0.01095818436926375,-0.01928236515926867,0.21017699873432577,0.02326239960104863,2.367044389353606e-05,0.003934652006633274,0.01832514159129506,0.06544783167255383,-0.0246449784788906,9.787258090050659e-05,0.010490010621628859,-0.019335143269022897,0.07560936788640263,0.02798898523897364,0.00040308789676475203,0.0010061901737374772,0.016873188272123054,0.08204599320412036,0.0061201518244849385,0.00011779085432946249,0.013927108406208154,0.0026441099165540184 +2022-01-20,-0.01732680145656305,0.12059449832735634,-0.0039186959956469675,0.000151941877194299,0.0047142528319790745,0.03031002399102899,0.10811941557709108,-0.005848899722476512,6.726561499089088e-05,0.0027419994851907124,-0.007109241226788417,0.022776899377866002,-0.0030106784297112164,0.00014438625497485632,0.0011678922379568715,0.010900197127296065,0.01071684179133849,-0.004170014376980142,0.0003432696355959538,0.012734753951131265,0.010937456871842822,0.023915916601627507,-0.07752941967701155,0.0002392914027278502,0.004904858868961294,0.00021842620414980814,0.0005028589477129522,-0.03775722477310419,9.484300292377461e-05,0.007025344335019769,-0.04405145820050822,0.17431564953364878,0.0034627152388880702,7.415044569578925e-05,0.012679538104520664,0.021686278956308373,0.21102648801111124,-0.062141451371163524,3.524087500722216e-05,0.009156925480721527,0.0007884853097244077,0.0006733275109418628,0.0036482718948741733,0.0009030504922830374,0.007240600478340255,0.035639717679643995,0.0798667185349285,0.034718886731630365,0.00015603797316254893,0.0283980720003392,0.010906324777229533,0.008705842808153324,0.005357184195933661,0.0006123390600981982,0.003107025078721067,0.008061245884227984,0.09308143928542004,0.008215717831227357,2.5808446736993726e-05,0.005163917983847593,-0.01714391188575499,0.05066849584306162,-0.00039000461343059674,0.00010051316578824684,0.006613657240005303,0.019532306488221407,0.12865109323621093,0.02633368932134094,4.273678693100084e-05,0.006796515049747106,-0.020004317173808323,0.017343039815220694,0.0062016353706647554,0.002249683811710103,0.011474325624458522,-0.005781936077778983,0.03617362605608074,-0.1488540911167369,0.00013153258308215145,0.0026418967026448793,0.0004453919291588038,0.0026205841484820062,-0.1497115581450371,0.00026317974708576087,0.0216619725708603,-0.019882886486455822,0.11198776547880154,-0.005783224211475832,5.001149186499499e-05,0.009231675520729255,-0.028565110477620916,0.14116752104527155,0.040046052833160185,0.0003334939249924157,0.007723897332610754,0.09635967030765877,1.262973914595246,0.0946838808141101,3.166147592021832e-05,0.0061963121544155505,0.012642115752626559,0.13229124687517585,-0.0474361198026552,3.192790052863395e-05,0.003496849115281852,0.034646872399417404,0.10525923515858861,0.01885284359576431,0.00010602946801841913,0.0008187024680156813,-0.01042299803914861,0.06460471718034447,-0.13373810150527066,3.7266688437341726e-05,0.021007269503892458,-0.03180298413988314,0.10025359315502543,0.1647812081085982,7.033075959796274e-05,0.0005746736322298812,-0.02074998303228706,0.10087015554668921,-0.02597990999284125,9.40597133726778e-05,0.0036663500799444977,-0.006765569446665561,0.006444429611837448,0.0025698540274313527,0.0006000610438553608,0.015072705966684485,0.015284653407960265,0.05752238784700901,0.015833407199131556,0.00011184194168739695,0.0023047033873770557,-0.009706846333467778,0.033893366530071106,-0.05038043305539448,0.0018381570784603471,0.022575832311621885,0.04611357183246942,0.3996757338748243,0.09196420856099381,2.9669018338251975e-05,0.005939912865326769,-0.01429728651855012,0.03856833850484224,-0.006639602806060794,0.0012119758333533892,0.011727190683737763,-0.016105853425731228,0.13406495569955612,-0.15890396421575162,8.000076071031518e-05,0.018983189236288573,0.02431507327411557,0.033174731041152934,0.025090269835224988,0.0001729870363702015,0.016452560967021107,0.01948512094675384,0.026479378671400048,-0.10140680018098963,0.0004223759964372065,0.003989240907544942,-0.01818980914381889,0.07176775118302658,-0.12112025184333101,0.001964486937709973,0.0010746246962243717,-0.025318614160901642,0.09837238978195251,0.012094353059167402,8.257661552144774e-05,0.007603764722541918,-0.09643271811022366,0.13128936453729306,0.09132515206897236,0.0018258792524817689,0.002899224062779927,0.014755728542203101,0.046607764494431984,0.009077076420911203,0.00012543490946368202,0.012360801623599715,0.054080672592186914,0.127973514864843,0.046301925395843886,0.00017130986074483047,0.009469279058139605,0.0014543641678396745,0.005702886611320093,-0.006687133997915894,6.224326336585933e-05,0.004612073801781341,-0.06117446718525742,0.1894554693655487,0.07964199061979728,0.0030604205254985794,0.03212016518579672,0.023978935339261417,0.09593776865596619,0.023942252560662753,0.00012433140860054458,0.005152517088356653,-0.004995849751079963,0.027311024896381084,-0.004981320127043719,0.0001326576057861329,0.0009898683989110668,-0.02181490458500985,0.1219127797352831,-0.016740939024624483,8.463554259349012e-05,0.02113168518739178,-0.021939634662647034,0.10349709941952401,-0.0021184589158406352,5.327808517389231e-05,0.005409764963837042,-0.056492191769547964,0.10042137906376342,0.01980477165706536,0.0002742784191292555,0.00858453472637139,0.0053725631379796975,0.020636365808773822,-0.056784597367242104,6.473850799004573e-05,0.0023353736233191974,0.024624742119999272,0.24012173014119118,-0.01685404557326129,2.645888341337246e-05,0.002832258595545048,-0.0015685020652197264,0.0044580550202904645,-0.09567748545627378,0.00012298400597309295,0.007481788839732891,0.009270057702416186,0.03634943574484601,-0.0833933268621813,0.00040198767218763625,0.0031997470796505034,0.005318488854192046,0.028194547132158687,-0.0016204701737627225,0.00010804257498277417,0.006780247314042545,-0.0008643231792478051 +2022-01-21,-0.012699213895530009,0.07316049677626214,-0.00036694063345744184,0.00018356368873558024,0.007225901059785543,-0.003509110553010812,0.013307697165178196,-0.0002922676036186032,6.327099553876084e-05,0.002858042870406521,0.009298432607587136,0.03205301480389442,-0.004475160807427905,0.0001341955356405925,0.0011858708677207988,0.004521475247152608,0.0051554549048740276,-0.0009763127681409718,0.00029599271448380233,0.005861808975852192,-0.02864160556856979,0.07821099586175485,0.10528025832778666,0.00019161403492484454,0.015322431372982448,0.008724997387202256,0.02093835882274359,-0.07944080556279427,9.098491785454697e-05,0.011905809888471557,-0.038442138588669156,0.1364041113289687,0.0196631683613188,8.269322599173875e-05,0.005172162410084804,0.010186244807031923,0.08997686710091783,0.00044500920904205326,3.882235320511248e-05,0.019291674933960886,0.00753571861390892,0.005856326553100214,0.012090416547803297,0.0009923027038151993,2.571600057448063e-05,-0.03258521567912029,0.08178984024468541,0.02589749913846514,0.00013931026757679437,0.00039060311366906266,-0.014494790696606656,0.011598612074016242,-0.0018719034740732334,0.0006108439593808261,0.0035893258572102615,-0.012675412379657264,0.17352440435291516,0.005588039687305107,2.1768290505364663e-05,0.00037799439699320056,-0.00441610547467875,0.012995880215119087,-0.026853317427997188,0.0001009449914763489,0.02057963265186411,-0.019157984037841042,0.11046982035356902,-0.04161248426616835,4.881665051982978e-05,0.002997232261506784,-0.02042478133279987,0.016203054055217516,0.006006564078480901,0.002458575261591755,0.0229495780695237,0.007892438182209919,0.05029113335241627,-0.0036527353036806686,0.0001291432982341727,0.015429734955775204,-0.01195953706761452,0.06249855821774843,-0.0009332506941695322,0.00029631429425824824,0.03561365726383074,-0.016537123025346396,0.11545500487241034,-0.00926087596017829,4.034671209859472e-05,0.011414087786175142,-0.001416139574735294,0.0071205810124429555,0.0033106478320145205,0.0003277762144035328,0.013517241915674275,-0.03430437462025326,0.40508446918454544,0.027899862279253684,3.514262068091045e-05,0.0019892229499095158,-0.021079825681000062,0.23406144674703588,0.0615398191504104,3.0089767993961906e-05,0.0025282003501689047,-0.044749500997920987,0.14619395534962887,0.02670648797853321,9.860104922813441e-05,0.02138134927224214,0.04423245414160324,0.3402251801254537,0.08775826271004064,3.0030803988156817e-05,0.014093642104459956,-0.001471611507547366,0.004736627522996457,-0.021256217852626044,6.88812981514225e-05,0.00019687194134591565,0.006017012740598639,0.021173331921622948,0.007201152328701895,0.00012993923959494935,0.0003529582766921475,-0.009449419607693877,0.01053707698552035,-0.00850831771193323,0.0005125786853143264,0.0016561044814726142,0.03559338383496104,0.1196088633772788,0.06394674344211641,0.00012525409220340105,0.005564207776224522,0.00484856936328058,0.015780105204997653,-0.01881312852129943,0.0019720725742440686,0.006547729184403548,0.00924473051754958,0.08628488010113332,-0.0012136663664987755,2.7551278155633723e-05,0.013074326421363237,-0.06569040743387816,0.18707650509249854,0.07390424955206804,0.0011480319568443937,0.0219693904906218,-0.043548164546247166,0.38998412005826466,0.06302477342865323,7.436157425274957e-05,0.005469298874327359,0.02458851615404381,0.0397877253399741,0.019260522708165598,0.00014585744311677978,0.012649487010916439,-0.004294993178722231,0.006197357477567669,-0.003373747076289477,0.00039779548016778346,0.009135735374935814,0.007370273867926689,0.02745289039977239,-0.03397154709388855,0.002080874512465487,0.004373999946965865,0.001295429185427468,0.005047715576001588,-0.029096783309537244,8.233967945826415e-05,0.006220178065365236,0.013282062529196349,0.01636314402715252,0.0072116820315323285,0.0020177899715358057,0.010323016756795906,0.04652709914281507,0.13968253407878228,0.054045387283459104,0.00013197142536718908,0.01991901741932697,-0.015825734592350683,0.041495483881512446,-0.011925370065996957,0.00015460495933226678,0.012608908140574158,0.0036396159527563253,0.014791164736200799,0.0010776205394393145,6.0057480770740274e-05,0.028003505280241744,-0.0050653832441879786,0.01595206664526584,-0.04179977006685367,0.0030096321116664885,0.010040867710139463,0.054250140583515766,0.27456182111217126,0.09135091561637387,9.828817967661222e-05,0.016325042910914377,0.013883226074785732,0.0794710230617214,-0.01587889196322528,0.00012669001170810556,0.0018664641303020083,-0.02684175676573737,0.134666457086031,-0.04696084579213865,9.427579444002048e-05,0.019582390442068907,0.0004099464969031474,0.0019110010914848792,-0.021704173350185166,5.3915500283848536e-05,0.010328551307228581,-0.026201836984955613,0.04789253699128171,-0.06545283483519931,0.0002667431595627855,0.017817861605344393,0.004121795511511819,0.014508796915468703,0.014807829349389977,7.064304585564462e-05,0.005526117869563422,-0.002039961416712178,0.02241141129611807,-0.015308293852200441,2.3484646800663468e-05,0.005378131343690726,0.004750801226987688,0.015177653922785589,-0.053462682640363995,0.00010941356746670281,0.0006262314110502877,0.00853666767387629,0.031451340579255326,-0.12277699805513187,0.00042783586127466427,0.011465125014698499,0.0004461936288251908,0.0024049108056789876,-0.011481042336334592,0.00010626645354220248,0.017993351261007224,-0.0033508576086454 +2022-01-24,-0.00022398514930613856,0.0015048557544604295,-0.05547939083374051,0.0001574022496750174,0.003767659537807973,0.017662092121380743,0.06061181106945288,-0.013197510262544024,6.991903269482628e-05,0.00685811789912536,0.0010906676919678203,0.003830887699391346,-8.700799757865628e-06,0.0001317013516080963,0.01886565813020744,-0.0066553994336017485,0.00667456915088596,-0.011245116755855863,0.0003365260940782125,0.004031186488533374,0.006829857572759385,0.017651388034401937,-0.015927625579093187,0.00020245595578227528,0.002814962591183575,-0.012793249400522812,0.03127567858222128,0.018666187776481342,8.931427247561205e-05,0.0029432449438929623,-0.010340649206154464,0.042224428631173115,-0.07403348458127179,7.185779378446851e-05,0.017738649900797526,-0.036344611106965845,0.31228438529333374,0.09269138926529154,3.9910610519950325e-05,0.023572562088944,-0.0006825622030243564,0.0006472125351115104,-0.01019502758945985,0.0008132800182188102,0.008018812323197328,0.024388744260324374,0.048302807361921454,0.019395493848407257,0.00017655456590733566,0.002202001986854717,0.008235876523046528,0.006369676262283179,0.00451284845303258,0.0006319996315639358,0.004282385025775673,0.006084715165384066,0.09130375111455626,0.004031929876339941,1.9859779490624812e-05,0.006183636280433086,-0.04184697286890203,0.11905036883702726,-0.0027003028170696345,0.00010442015656061062,0.0009999142758972649,-0.01751335728943541,0.08826839194058642,0.03313056719991296,5.585036444142204e-05,0.011848989835027413,-0.027264143559300135,0.023728675029383715,0.008578191294111179,0.0022409973544712603,0.0005903902629294522,-0.0039953654824342625,0.025260392430494116,-0.08786056719409341,0.00013015729905429925,0.027419264904840084,0.028519184899530235,0.18258733085318135,0.005079925976736796,0.0002418659323843424,0.03494172788404713,-0.023971442888156568,0.15993090072963045,0.003643030337697057,4.222043938391423e-05,0.01092958301640744,-0.03633788428595607,0.17818151116994577,-0.008975981573324295,0.0003361118367622997,0.028001456312810796,0.023217366665974164,0.29935934579762785,0.000809864976276319,3.2184767066965944e-05,0.0065707668463204,0.03306635422857203,0.37731129004354524,0.10053203518743123,2.9279807858553466e-05,0.00504606741326828,0.036464595846173994,0.10184321408563506,-0.0032836443481833403,0.0001153352505547449,0.00888730321201335,0.010606146536291269,0.08389584156222614,-0.016155437699577294,2.9201796111446078e-05,0.011030282880374751,-0.001590237449674448,0.00441949004230381,-0.0006559646728261605,7.977507099346236e-05,0.000872339991266836,0.0072132405172780955,0.032172804747526346,-0.02647514595442476,0.00010251563019796679,0.0017012523671179204,0.00409845192601376,0.003378879535682963,-0.001881066906564564,0.0006933023912822618,0.018086334385495062,-0.006201708334290324,0.02155994390387051,-0.021156192665676282,0.00012107367364969175,0.0050729357936217835,0.020784003446894704,0.07103116360963427,-0.002875917134416956,0.0018780167060284548,0.006778079608727542,-0.02731944047203574,0.269598666572492,0.06916524052674809,2.6057710559123515e-05,0.0070626487620342486,-0.029522346679021302,0.09910479311511305,-0.018618307954486754,0.0009739294230090535,0.0007546219416114314,0.046656973035680074,0.3372932877805449,0.193363769623433,9.211587975167337e-05,0.01492874133094707,-0.027371078916378216,0.038260100843426945,0.02985398675394509,0.0001688461617965775,0.006834287662948534,-0.019212256886764475,0.026655642573721074,-0.023747698054738732,0.00041370726020991257,0.019140667550066333,-0.02166649609057984,0.08947725291029067,0.026518462044829258,0.0018768362451019502,0.010551272506071257,0.026561626177377458,0.10598928415466397,0.058394998822016396,8.040500285311848e-05,0.010906403076229844,0.03695593224555618,0.05091760203672676,0.01114843582283357,0.0018042362807185134,0.003263922590248114,-0.037777011528950806,0.1236007496404246,0.006283158253417402,0.00012109397359680341,0.014348096847881651,-0.023925421627441608,0.06562067217493299,-0.0358853415626883,0.00014780165643799842,0.013688252194405287,0.0010069983025564311,0.0046080502843875775,-0.012158355955670157,5.333661550758439e-05,0.0049193757524373,0.018608253800794946,0.05887924957734776,0.012050764437064538,0.0029954454326361806,0.0002624856490071036,0.014876813024359302,0.0770013436114842,-0.001473259716531996,9.610636958432498e-05,0.030630986853992116,-0.04289970146506188,0.2561723554459546,0.09611123542718643,0.00012144588187682136,0.0263163321041756,-0.0015813616438322933,0.009602012418103708,-0.0929162231191488,7.789644466623057e-05,0.006015503742886984,-0.021791699641376536,0.11168340513745044,-0.00022396629570572814,4.9039931225261734e-05,0.0017993183157098988,0.015232159610682833,0.02763126401039211,0.0048529248274365175,0.000268775775403806,0.04989269685499334,0.027809711492822124,0.11515036846814757,0.14488889371083163,6.005449609698831e-05,0.006073905106193488,-0.02799512405645033,0.285785361537555,-0.014732367847825447,2.527398376436868e-05,0.012159635974133835,0.01733102095980698,0.05434875594088232,0.009307077925425481,0.00011146627925708189,0.0151350498531784,0.027695917167448125,0.11158817882254614,0.09000662341441382,0.00039122403937446774,0.00505926645866473,0.05504094793750711,0.21912179875582555,0.09119343928894724,0.00014387062044863351,0.00504151910168775,-0.00028666809641972584 +2022-01-25,-0.03591491561934199,0.24054126440180024,0.018133929981260476,0.00015789626057640706,0.009554913662843126,0.019374583256037033,0.05673691598754612,-0.04920814442476374,8.193645512423353e-05,0.013903723753920285,0.050414325825840184,0.14517728484383208,0.07659702443069243,0.0001606395572845881,3.199712151881083e-05,-0.0031078023686096565,0.0029994834020099044,-0.014103620600962197,0.0003496832151416712,0.0068985233072954445,0.02622217145064643,0.06226053886135516,0.02649405635989281,0.00022037054706684075,0.009114082550319,0.005132611609208405,0.013725847986650977,0.0013925736367304596,8.164807632405432e-05,0.003485515267409766,-0.0007773091088061067,0.0025539143330093866,-0.009820808888293259,8.930531089692242e-05,0.002991367907264668,-0.020472513034063253,0.18120523669917873,-0.025527247887623908,3.87435156227785e-05,0.010357772899552689,-0.0029649545394119965,0.0024649913956055246,-0.04505451395470106,0.0009275715460179622,0.004652876723034875,-0.012084341940649047,0.029162866026618012,0.0025364200105744677,0.00014489543042562827,0.007787250173228255,0.004557506338710285,0.0030255886731602815,-0.10079340302999436,0.0007362778813596343,0.009910973881497405,0.002628471255771292,0.030966571923174792,-0.006528711382611088,2.529489558068931e-05,0.003602739792606449,0.013358882634348397,0.03156157850694435,-0.00657598700457852,0.0001257368153842257,0.003385085023506258,0.01445138366533341,0.07545298284648022,0.01366272816282715,5.391316601862675e-05,0.003405185245694352,0.033841590099279215,0.028346510556050437,0.086124040013441,0.0023284886662104415,0.013971158013598155,-0.038812144523209635,0.25984753196651694,0.06419157488213348,0.0001229139431747484,0.013775797326084197,-0.022689551978112156,0.11855428698455815,0.02239158253661271,0.0002963581598653172,0.014380511742312136,0.029341665808734253,0.18068099571769264,0.04619013631656494,4.574390615644815e-05,0.012012047757768474,-0.016736226743349417,0.1005595956650585,-0.09338242486850684,0.00027429686253060693,0.023691309233751005,-0.02635264470403527,0.38723648332778227,0.01687201437913673,2.8240876433178447e-05,0.015916700288144098,0.014065506446933045,0.1755242103374797,0.016497435633968577,2.6773186010337188e-05,0.006412930634711557,0.042138529479483045,0.11830816078658549,-0.009236687677115926,0.00011473275675089075,0.015780086127500977,-0.015481099801329204,0.09336347983348457,-0.0017417618657920879,3.83016211424678e-05,0.010874793859324515,0.014855106310598823,0.047093912121130205,0.03951609511890038,6.993400132450397e-05,0.0021870434600187623,0.0007749720740551343,0.0024565392888242616,-0.003010573727290445,0.00014424837660917592,0.002564038289906679,-0.026057179299033815,0.024113284991453904,-0.11422399809359375,0.0006176558849762969,0.003104569414288994,-0.012965751257444121,0.0500534472770173,-0.009412020625034392,0.00010903092613932986,0.006400901875375351,0.012254487143673876,0.042480131057571764,0.003709705627204064,0.0018515202543139713,0.01955588025840293,-0.04383494766732971,0.37312051634460885,0.08994806798529328,3.021019704460588e-05,0.002207248606088952,-0.02698978860289017,0.06865901020196154,0.011694930863240536,0.0012852073910513302,0.02016395924419292,-0.02043140332960262,0.1843356254782181,-0.06841095742956169,7.380989091516422e-05,0.0030033594515417863,-0.010611243809910942,0.015209655380146608,0.0031820471059955577,0.00016466159033077718,0.0014057302469816669,0.024846745353630097,0.03879130172442535,0.020335813628730787,0.00036765380866827027,0.025855270712631186,-0.018828449428156573,0.06736291001479186,-0.008587265191764268,0.0021664269887352065,0.00934931014745347,0.02266241198384994,0.09862970458717513,0.044735557278149075,7.372058425637256e-05,0.01585734089009255,-0.0426353312929198,0.05956722496406585,0.012098039500821955,0.001779260205412701,0.026782231610003173,-0.0013013522922426394,0.003457144741123157,-0.006412572945529913,0.00014913973094328955,0.01764136825233564,0.0445219853155011,0.1054608527241375,0.02093578724345435,0.00017113688373842384,0.0010444796535558963,-0.006437244923861593,0.026026896438827874,0.00036438071162151923,6.0365885337798464e-05,0.014307383684746126,-0.02850324522826516,0.09697745469360525,-0.019062410211767605,0.0027857464513882445,0.009779608395918482,-0.027994524878518993,0.12715064494035164,-0.027133823009837216,0.00010952042095922438,0.014396215723323943,-0.018895206983016437,0.11154465453005245,0.013534718000758162,0.00012284675110495988,0.005686493310402236,-0.04042575184182528,0.20177430837899027,0.02970083693318764,9.476346606501224e-05,0.005917192559846109,0.04325437519043927,0.2065285946577584,-0.027218127779218677,5.263774163296987e-05,0.009696659979104186,-0.0400931910705177,0.08110300837509749,0.010306764418061517,0.00024102553407831767,0.02678110374673081,0.00620863767364163,0.0187361207048487,-0.027171888778316233,8.240072182481392e-05,0.0041995545540598825,0.030879903547983915,0.3407480242160536,0.048823793387418164,2.338158103602538e-05,0.0039892943988385395,-0.02611801905156724,0.07491935770897154,0.10086975562939896,0.00012185831073495443,0.001099704065347707,-0.011947609242147677,0.05228281325344763,-0.006465314746914303,0.00036020524541107915,0.007199636167810764,0.011194838673063309,0.053578652656115354,-0.003871487910478657,0.00011967345991054846,0.0002858869973678842,-0.0037117939264880223 +2022-01-26,0.0055911824139666345,0.042134971054149956,-0.014606637433197721,0.00014032903718921673,0.017185237416595497,-0.012996336772661573,0.04299471627991787,0.0013388937499342068,7.252978595801965e-05,0.004333800872216104,-0.0628700914336214,0.1975689942863939,0.11433649552906239,0.00014720498161235667,0.031399636219728515,-0.005491655273859088,0.007106967590533378,-0.18240790796579479,0.0002607875107212126,0.0010221861074362149,-0.006167367773149282,0.015521132012874278,-0.009286069684792468,0.00020790944860947595,0.005492510001574186,0.00019865233499113816,0.00048283409611375516,-0.0028316427887884878,8.983436102375209e-05,0.004562823715003725,0.020887167833280394,0.0893112097470341,0.01236479225465085,6.862201075503152e-05,0.011573357677769893,-0.00471232458826257,0.044462327530803154,-0.0006836143105888184,3.634474433969063e-05,0.0029648102154562856,-0.0033463887288703396,0.0030505996139622215,-0.02397239857461656,0.0008459329946881251,0.014932941517509646,0.07580422895636711,0.16170437197317758,0.15435780402609736,0.00016392060906024214,0.019542738904773743,0.0026066239681812654,0.0015409233211590738,-1.2579969762140068e-05,0.0008268404497101099,0.012571170291643856,0.008135443555070655,0.10659110215366087,-0.06514770105594785,2.2744849777790762e-05,0.00323041335577845,0.04750109610063999,0.11696746177229023,0.05183306751133084,0.00012063952078083452,0.006206068599859501,0.010779439416843513,0.05992025253133503,0.00047815859637703246,5.0638911212050515e-05,0.007511577184064218,-0.03809870559039977,0.0266573021557899,0.022663525347016763,0.002787513623577536,0.009301465405490037,0.05695119386187716,0.4411820218183701,0.04729793621989815,0.00010622754231454426,0.00018504324547587766,0.05262378444390388,0.33189805414546136,-0.12674215701629268,0.00024551928059761863,0.006734875345944398,-0.09291398372104519,0.5183378351798535,0.09027128068414268,5.0492761857962585e-05,0.023209465584102806,-0.0568216450046736,0.308789551073342,0.08528933308906006,0.00030327597937327496,0.028886950829106937,-0.024443943194017628,0.3071165672354319,-0.04323925170747898,3.3029215014050135e-05,0.0014970743363959117,0.004488175451888753,0.04699392717682054,-0.017863883038798337,3.190875030635548e-05,0.004394725978095407,-0.026928201568974266,0.08281393414881888,0.033042069683861246,0.00010474340519608709,0.0020074350431791566,0.05190976016924954,0.39801032157434346,-0.09134399870089618,3.012638790393842e-05,0.0054992838737144365,-0.005213720033979071,0.014302950523885829,-0.0017970084224606074,8.081639106455344e-05,0.00185153216431241,0.01697247294979719,0.059770981144311036,0.0104914487841125,0.00012983845407953869,0.0009117887896449137,-0.05914592131813252,0.05748503216182126,0.022518260583600767,0.0005880924229123862,0.023961314911236337,-0.029179041259067874,0.11576626464865386,-0.10346426944897216,0.00010609013614584396,0.004520709593079443,-0.00339834640677528,0.012380451796171931,-0.06607554303012561,0.0017617745307068149,0.0056012504327402155,0.05217940941463137,0.5015338005124027,0.10812495291927933,2.67535333299481e-05,0.01183337445079809,-0.01645678801250061,0.05741987150039299,-0.07604879965868905,0.0009370313654107772,0.009339339542057321,-0.004634562183995777,0.03387912280801231,-0.01631836966188632,9.109660664329413e-05,0.00988531570575377,-0.002305214240341154,0.003416061821487867,-0.0015306886792997303,0.0001592688918563085,0.03088776653826692,0.019124112989040012,0.025751565781891212,-0.008291614104827528,0.0004262668640606784,0.014145416982110717,0.03960085105822434,0.15875289815050161,0.09879560072004076,0.0019334511249658442,0.006104230827510444,-0.024746321707725494,0.08353109381183443,0.010264680159779835,9.505016094500959e-05,0.007431825578732896,-0.0762868489847873,0.11637514874140938,-0.017494190734165662,0.001629545981197282,0.01956285382725895,0.015339861938293536,0.051699905821239574,0.007370329433411852,0.00011755679452017153,0.007081278996106039,-0.04710043231256974,0.12182568125772976,0.046211967623323406,0.0001567279383426541,0.012589468253379614,-0.030680620733694704,0.13222554116362203,0.029528091260454543,5.663210622717995e-05,0.014258450400448425,-0.06037415488692178,0.18279830603092315,0.0719428370373778,0.0031303792465786585,0.00517285796054186,0.04867380374235857,0.27047648954169146,0.04751599240818606,8.951716840307195e-05,0.026487441718177636,0.014678095067339744,0.08667874375588581,-0.028672449910989474,0.00012280551541912066,0.0052070682698072985,-0.03726989317972333,0.21678517450803628,0.022420566282187783,8.131623613891789e-05,0.008114954488350994,0.012484162232202615,0.05278987686974516,-0.005148572358864576,5.943689991233199e-05,0.013128111008780315,-0.03705892203649485,0.08658958990550485,0.00860034784066477,0.00020866830761710414,0.007319381513166667,-0.005209491736743071,0.017258228322061447,0.0005723796736993096,7.506085707881734e-05,0.008369561921593506,0.007509696222823086,0.10103313296486381,-0.026722268289152855,1.9177404763369865e-05,0.0007174050554751015,-3.663147080156048e-05,0.00013426142886781433,-0.05811768419039942,9.537006008080221e-05,0.005362559401523214,-0.010363314903365244,0.053588999381836165,-0.003099102895815799,0.0003048253056616517,0.014626560221691714,-0.013643214424921028,0.07054744573672976,-0.02468290818678225,0.00011076618719419263,0.01046156733593763,-0.005159924643358028 +2022-01-27,0.022704080504398292,0.1498271451138782,0.02775656608137555,0.00016025072301721667,0.008290547794295215,0.03150213031001,0.09136994647795946,0.0058740361888274615,8.272696272155821e-05,0.015580044986763526,0.010525949211228663,0.03129106420113344,-0.015494655792916638,0.00015561022871211512,0.005739140795782308,-0.03056822646828075,0.03517946877088455,0.07987890559387198,0.00029325729304345067,0.0032549694583891347,0.024014509890062315,0.053916940708734346,-0.02152279187218395,0.00023304847097829176,0.0024735218092095685,0.003635421232613093,0.009438757595140687,0.001480077020299749,8.409818954333022e-05,0.005153491227585025,-0.021608152829417904,0.0866601138945236,-0.056736707307045275,7.316245038030372e-05,0.005717657191773629,0.02284535122962987,0.20107900736971154,0.01609982237993626,3.896096644484976e-05,0.0058624424867955004,0.007883535637190638,0.007379892220534895,-0.06682536101569386,0.0008237886472302908,0.006251989591843014,-0.015931079502754707,0.04273693968692555,0.005831604902149585,0.00013034778974623014,0.0026946825264414424,0.010406523369179632,0.006470412949956778,-0.0020414651214231807,0.0007861366130237468,0.0045797838944911335,0.015064545923884815,0.17324389766076306,0.02838180254703646,2.591319058245409e-05,0.006049327095376674,0.010900784812096097,0.02901292098956145,0.0026686523560433026,0.00011161365985674691,0.018567238592003717,-0.0007187842275458229,0.004111701178474025,-0.022629516980615785,4.920835109356143e-05,0.0019006787520798308,-0.01816170181870478,0.01532259472091274,0.0002984736423171612,0.0023117837087813543,0.005883125240413865,0.00621525521697113,0.03903856811440738,-0.013212792231456012,0.00013101384563732262,0.004178106172662446,-0.019902615944692326,0.11523935665780367,0.024067718321057488,0.0002674345845973912,0.0027697244009159544,0.0001673747622885902,0.0011378435446056144,-0.04066881026470851,4.143509885081524e-05,0.005623763414284014,0.004567564616542129,0.023355443456296615,-0.002291057226565743,0.0003223171317174734,0.0018904903202145822,0.005428236288935963,0.07635074260140097,-0.01271424759284282,2.950364745195398e-05,0.004626222231278553,0.02374923783750088,0.23175951090535057,0.055874393224154016,3.423685158244193e-05,0.007344150566259854,0.021918558219541348,0.06699158812680196,0.004248885086032302,0.00010539365494346914,0.0012215720634443951,-0.006768742371749784,0.04608285196876462,-0.07214884344690825,3.392821502132456e-05,0.00911665775714854,-0.007686577267301526,0.02055726603195637,0.0008338733837559639,8.289818524319325e-05,0.006957088690813815,0.0026539854311665727,0.010290988322526527,-8.87221018523636e-05,0.0001179206989530753,0.009138028027900248,0.035538153114447225,0.03316733748763472,0.015240452502371726,0.0006124347228731356,0.001157078240631612,0.023424368248020095,0.0798340511924782,0.04606897691315463,0.00012349965027067607,0.007457204990492704,0.0029209555202018432,0.011304334156732349,-0.021792625146469326,0.0016584375849592833,0.003211161771225556,0.004585933418736747,0.048591641354748506,-0.021901177900632795,2.4268803832911917e-05,0.021568899610452275,0.0016342704650633014,0.004529349889006437,-0.0540181530542769,0.0011796667292584032,0.0008126622130954419,0.012584413973572739,0.08199550384968018,-0.026542960278173322,0.00010220416646292157,0.004322576341862699,-0.01635742208329913,0.022556913817221785,0.007644323268651707,0.00017115144347821734,0.0013887339648206466,0.0078092125140771206,0.010188393324903807,-0.03453528915867599,0.00043995215844194367,0.0019670911307374714,-0.0005165093926054171,0.002157337923972164,-0.006894601077535057,0.0018557111901759693,0.010067595494576786,-0.005962069534725656,0.024658715525316337,-0.08430396195745651,7.757413771645005e-05,0.007254634370763836,0.06637242125166594,0.09755683176212675,0.04440871034798184,0.001691247489368515,0.0008328761916864692,0.018461688684553328,0.06004535527735715,0.005877926856164912,0.00012181703957621355,0.015509158257087713,-0.0027212386638397036,0.007223326112452552,-0.024883565083646145,0.0001527178447902352,0.024485661744153956,0.02300792416765991,0.09478453381432815,0.011483187428575238,5.924529740547911e-05,0.004767483992244949,-0.06288078471484997,0.16738957672757482,0.06113614076455282,0.0035604722033285947,0.021588426628552558,-0.005747227764920449,0.025573834908860293,-0.0023025141584821418,0.00011179004273365351,0.017965786010665345,0.03634604050254333,0.18645778865646048,0.03123058197583641,0.0001413635234519409,0.008285231361874987,0.015699240177683444,0.09196811929647102,-0.046372086002921885,8.074023830767844e-05,0.00018964284970362177,0.03091945769223682,0.1300364151364948,0.029194185565986058,5.976050718539189e-05,0.023359404689378926,-0.026532782684727658,0.05503214203688419,-0.015078682951294288,0.00023506922564977528,0.030718610658545396,-0.020572413215076097,0.09419431943437521,0.044080476735524836,5.430938716402531e-05,0.0018009002143791223,0.034553535028219055,0.32603505926320414,0.02841675751553173,2.734383766693416e-05,0.008975940103166177,0.028486795301432704,0.08551921480463572,0.08624034796029639,0.00011643642286427431,0.0042773574467589275,-0.01840071468487411,0.0763533191459422,0.047969056555996564,0.00037986977655530115,0.007296441622220485,0.03220718772147085,0.15612229304241948,0.018711794294242474,0.00011815706081009868,0.015361502134215638,0.0060033792137571314 +2022-01-28,0.007077623541112077,0.049359409694085345,-0.08837310252042223,0.0001516366165572659,0.00927533606710382,-0.021829043034205926,0.0792513824973719,-0.06747522954292562,6.609039943277012e-05,0.01858640077660674,-0.022019691771249447,0.07782608911180984,0.011781599974906168,0.00013088299758435274,0.008108906002128175,0.001332489922063311,0.0013485577284710422,-0.0011202645484767431,0.0003334742059212967,0.001289591013794198,0.013480612153978961,0.029848946967973893,-0.003919779620290447,0.00023630797133106888,0.0013597274086508404,0.029398024448320938,0.06509447660765431,0.10772346678359919,9.860995194379578e-05,0.0009443482523247438,0.04909672053920163,0.21299372277442102,-0.0006879266076065391,6.763562924762694e-05,0.0132093958381359,-0.013248696579093645,0.11878854421938767,0.009725624973037793,3.8246985264723546e-05,0.008468668287172682,-0.018113107040475415,0.018261344074951693,0.012997215567598974,0.0007649005986871584,0.012805206490676947,-0.0016048442435251582,0.0035439477615056515,-0.00012347468419830832,0.00015834613360317935,0.02369289372926249,-0.008266111702591504,0.006354215670660458,-0.012147521831357776,0.0006358631786192895,0.003935209393299151,0.01032112407292793,0.12562359510159724,-0.03323658874378292,2.448378574444111e-05,0.0004718640287363347,0.027254467446015798,0.07281273571691364,0.013619800776489076,0.00011119400923205148,0.0031712436024563017,0.010998849528861425,0.058540076915412284,-0.055782132186256314,5.288783512727985e-05,0.013586930235388102,0.05153629489882973,0.03588893496547695,0.09103303564681128,0.0028007580615025804,0.0006010797719435857,-0.016159948723250363,0.11578876651209835,0.01564865347727438,0.00011484858761815187,0.01509226733270414,0.08919788888774603,0.5040356447332436,0.05429482678968768,0.0002740321747867165,0.004380073117963583,0.00014806271233209776,0.0009471028505481393,-0.020698643258906524,4.403616731313545e-05,0.023034331534498857,0.025550063171217788,0.13472559314453256,-0.032813424301094796,0.00031255660533761545,0.007178240132788218,-0.03144645878018449,0.40934738195300885,0.017038583662838436,3.187938688398989e-05,0.00011849546568204602,-0.004589972153981293,0.047578670516157016,0.0033017403333863247,3.223142134014815e-05,0.0021739616291057457,-0.02643073375380487,0.07208077207584467,0.0271933481817153,0.00011811703750663802,0.008103308747476315,-0.04046972008906998,0.2908945592402732,0.0451891535359636,3.2135641822871336e-05,0.007214828071334451,0.010820689021696613,0.027819773620851685,-0.0046741904720980915,8.623403476140845e-05,0.0018077243164484331,0.010603335331203742,0.033978189415624464,-0.11435054791375887,0.0001426891197427223,0.006443938246515293,-0.017633261124485617,0.017454618513078418,-0.03169090105576076,0.0005774279993688571,0.0157520877581169,-0.010639533701848393,0.03744227419365604,-0.01401475641141285,0.00011960418727435979,0.0014421042301570716,0.0055063590746120385,0.0180527355170525,-0.03862225261891578,0.00195767540145972,0.007496584923963988,-0.030417202680328364,0.263026241272565,0.036135238878124545,2.973735847190501e-05,0.016322259042534863,0.008125347898668742,0.02560048894065394,0.0006791218689364216,0.0010376836521769229,0.01856592067419634,0.02722473031487613,0.20913643005093985,0.05222647400616695,8.668811096223818e-05,0.02453448528443212,0.004992154948432246,0.008415788901302209,-0.012621484386768739,0.00014000340870583744,0.015591940741409734,-0.0048822254643560384,0.007434944126130954,-0.05166986709035168,0.0003769155336697763,0.009928369490731299,-0.006830999644350973,0.02691045367957869,-0.007249960676513823,0.00196749475985286,0.0010887706901135468,0.033882822889232035,0.13606621300307695,0.006095570450279483,7.989501054548998e-05,0.006360881452462547,-0.011750994289453398,0.017315353477074774,-0.000483976318594699,0.0016870208314524165,0.008598055236475544,-0.008332306679495855,0.021340673951683976,-0.0020753330468612175,0.00015469388700936357,0.012024803233740661,0.017516541547107363,0.04907840274762368,0.0013902421999964604,0.00014468327122379963,0.002406615661887339,0.02227925123022446,0.10493686647424219,-0.03429720199711979,5.1818689361556646e-05,0.0024923043688350583,0.02569077391981669,0.09073506008589258,-0.06313603342793016,0.0026836144033322734,0.009810976811589435,0.01357057458727071,0.07375276251386406,-0.004025848056242211,9.152937883073644e-05,0.021503606651730393,0.027480544155312935,0.14674925470161876,0.009568197831006403,0.00013580326401231688,0.015073825673304547,-0.019775096031793615,0.1182066023708524,-0.021868345340229918,7.912715761635804e-05,0.017733086737058285,-0.02153140258552932,0.10039585129237624,-0.006366536544303096,5.390188455734564e-05,0.023843681727640297,-0.005628106799776391,0.01099015427694916,-0.004777290458227545,0.0002496824028535838,0.027246418095785565,-0.01717695420364731,0.0643384385004072,0.023233299923537103,6.638806603631939e-05,0.0017014254623170947,0.0262985489482258,0.2660536093521111,0.017701354076217497,2.5503155380224508e-05,0.006566317302406045,-0.003052382329719276,0.00945408380648296,0.006307570839278484,0.00011285698595163725,0.0010512781239441571,-0.0013004948307840075,0.005739642848668028,-0.102816507850347,0.0003571508862219001,0.005594995832880863,0.0022401010634945807,0.010200693071091827,-0.06455815383018948,0.0001257794606040162,0.01777838657479157,0.0029288330143380087 +2022-01-31,-0.036517547034638775,0.2670415765256963,0.027380190112205507,0.00014461365341289205,0.004326726668479087,0.0224554041922683,0.06811901865679172,-0.0007697108089380198,7.909754796150173e-05,0.006894525904871676,-0.07002655523803199,0.23228804758644886,0.10660205516997909,0.00013945468331012244,0.01953492022034972,0.009469135792870256,0.012046168190732112,0.018200953382962484,0.0002652951303755428,0.008646293383379373,0.020364576373319877,0.046485476271456064,-0.02723918020426798,0.0002292217731188617,0.0029845568208765466,0.018858990679296864,0.05561545583840671,0.024518602695933662,7.404055824128248e-05,0.0011179291544166621,-0.021391334548672952,0.07560925604846158,-0.023807044303420493,8.301427325159697e-05,0.011546684593352601,-0.02899324934049199,0.279338521002181,-0.066312056241932,3.559300663703707e-05,0.0010851863665927782,-0.007862137586988562,0.006870524132539483,-0.005098249071917419,0.0008824610729271261,0.01562556588771051,0.004841690555295388,0.010292261035940609,-0.023212321137489004,0.0001644932658284099,0.011924755813231025,-0.01004275050193519,0.008806056232689164,-0.015670197052186887,0.0005574367247008891,0.011614262941882864,-0.009832653987689741,0.14794018841095405,0.018937220701928475,1.9806483592085813e-05,0.0012059835108634844,0.05252338797426806,0.15264449947283104,0.04810254356798317,0.00010221687766774927,0.025576972568980637,-0.008136215613200024,0.042339695191500396,0.011051373329293703,5.40924360399802e-05,0.0020358067638003856,-0.019622844119847823,0.015392926984375025,0.003528311678573179,0.0024863583214990155,0.0023511543545215318,-0.027622582539870686,0.17355086483552692,-0.0009418033932890471,0.00013097536142932345,0.007953224401660117,0.01112334483875664,0.05881926990521234,-0.01278372612043029,0.0002928356882018037,0.025641437739680754,0.0029762614422932272,0.01555656180256175,-0.014254166126505647,5.389126964063279e-05,0.0037158458597686675,0.0016768089551487443,0.006923309123965326,-0.0629894350625895,0.00039916887402075745,0.013175258193148565,-0.012978862125238737,0.1698267960245915,-0.01068139556594159,3.1714701925279716e-05,0.008174617689114481,0.001758374028835829,0.02132587677519456,-0.03681767239355489,2.7547746269472934e-05,0.00487996697960966,-0.009264052391557406,0.021104860318591826,0.004054575624714855,0.0001413973519358962,0.005067395857515976,-0.02582529459149761,0.20261132366018367,0.012023618104591216,2.9442450023360157e-05,0.006177999428666344,0.005870465134848215,0.018647438617360755,-0.024308172079158,6.979602815288128e-05,0.006006537723067614,0.0035716404728528763,0.013352864223552197,-0.0055319696158539575,0.00012230434842146862,0.0027286097091498386,-0.008596655225965278,0.009164621901575656,0.0017409290292978521,0.0005361551952074334,0.011359065813178464,-0.0043598945794335745,0.01656696985397061,0.00011500834013050798,0.00011076917354100115,0.01956899729033936,0.013645742597768233,0.046457683840572486,-0.013494059059963955,0.0018852059222213354,0.01399372887189095,-0.008836723400095685,0.07695869313432997,0.006252244892442713,2.952675852933525e-05,0.03145217420503566,0.06716239742238128,0.2105884207390498,0.049944035326129566,0.00104270864041882,0.02821434955627894,0.010886482200258703,0.0706397368128694,0.0115899148949577,0.00010262759167047929,0.025447901660634743,-0.02906179562992311,0.04207772987929483,0.0018995289393603813,0.00016301048116459788,0.037837758633189146,0.020592600168484465,0.03423605415599605,0.005305029827609296,0.00034524817878646397,0.012155379370877739,-0.04125281856320198,0.18336866363043353,0.08187089543165613,0.0017437284281472444,0.002833541130165524,0.02104517370687147,0.08518385748289417,0.005417636130565662,7.926575166250032e-05,0.0020424963538560434,0.050594498726441346,0.056073068370627976,0.04422175048956662,0.0022429839579543864,0.00048009420251209165,-0.028591967234949153,0.10277765853959737,0.009089956142435443,0.00011022024055522399,0.00886699841421686,0.02778419382225432,0.06634673795405407,-0.03847787755844533,0.0001697612643510649,0.010093948525791721,0.027728721026746783,0.11488297645096791,0.03055858802623339,5.890987272941215e-05,0.010467144909176317,0.04839727330156479,0.14641687491332855,0.035173357462474894,0.0031329092791374294,0.01674498685443953,0.06327317965892335,0.31614387744734324,0.08248564626578725,9.955783750362537e-05,0.008613462451595822,-0.042458609907568334,0.2128909399303527,0.00794001879837322,0.00014463365998872014,0.007751441860504133,-0.0015981342888500565,0.009063331066915488,-0.04327463770757202,8.340155040603948e-05,0.03802433460226152,0.0046931066873115,0.024879685566267715,-0.009981397817467328,4.7409233582463314e-05,0.009683433308262802,-0.010662505331855391,0.019591836992637342,-0.03819693688092293,0.0002653465813614455,0.01074289436995232,0.0005683533558661883,0.00272645714026801,-0.059134459727787685,5.1836316098724056e-05,0.0020637167352567944,0.059449602177191745,0.6982046152686345,0.14051684225162475,2.196835424109711e-05,0.005667414596739895,-0.013151014042507523,0.037238033495834495,0.03591872747098053,0.00012344726366650988,0.008878340183986684,-0.015259624175397547,0.054348234547506744,0.02428018738047771,0.00044257447980355447,0.011477253343421829,0.005211009593132914,0.02187900096139372,6.385467232578191e-05,0.00013641627338002897,0.01715172276478569,0.0015213956148844353 +2022-02-01,-0.0025767947170363746,0.0191629976636828,-0.03960951597475014,0.00014220110091090114,0.0199402105687741,-0.011203109913860079,0.04028252161026387,-0.06822182400568637,6.673174394304865e-05,0.0054965700172885466,-0.011214972280724128,0.0359166190323983,-0.010882031614130275,0.00014444415109696225,0.022409559036515852,0.0014446162598936675,0.0018089013637368101,-0.0002929074616077,0.00026952898069330396,0.004366753294386616,0.0014334428666302045,0.0030592627854025617,-0.016584579207881135,0.0002451666406894604,0.0028626180798549386,0.011505865332431052,0.028940944772498096,-0.012963527941221513,8.680671505988374e-05,0.010086326369242454,-0.032213768833370446,0.12388311325283063,-0.002933735430351638,7.629907663060393e-05,0.023399879284673675,0.034375379630200854,0.2959548187049157,0.0011400654568325592,3.9830953416527486e-05,0.0036863671587101096,-0.039733807114524546,0.029607045653626287,0.10875704714547164,0.0010349274173525893,0.00475215798547567,-0.0062797644958490564,0.014459591304199404,-0.04185222669521007,0.00015186203859860167,0.0018363466599105203,0.01636005356192996,0.012491391559725283,0.010823783215160707,0.0006401743325051729,0.017195422526852938,-0.0010579042281750406,0.013729726411760583,-0.04465652406613894,2.2961870276454013e-05,0.007898036449099657,0.019741469346867532,0.051462976878165076,-0.0029889725109930126,0.00011395558299706443,0.004604675719095257,-0.015123420785182012,0.08149644420429095,0.001753474382238678,5.22363945952585e-05,0.00424409285541446,-0.0006154189483446509,0.000468866928401297,-0.023985651366882313,0.002560025171473503,0.00017956785653783203,0.07362669298704534,0.5523285390722679,0.06041495668151179,0.00010969577933332453,0.0009624518370951136,-0.04744509068810978,0.27447481402901514,0.06212217915824456,0.00026766834490323416,0.013511871137317591,-0.00692375917565652,0.04078741537479767,-0.009290228242337883,4.781638327635769e-05,0.01795418527425027,0.013237210977749107,0.05994276925932449,-0.0816649526244035,0.0003639539988777239,0.005232474429131472,-0.025622791567684967,0.3164228432131031,0.009318069680405508,3.3603835222903314e-05,0.0009572981819275985,-0.021403229527839608,0.24502109089090157,0.04562304480708216,2.9184855598451907e-05,0.0021658512648596528,-0.028064962305250563,0.06964542366190705,-0.02390364337033485,0.0001298059603108004,0.02017964041911931,-0.06051449265060717,0.4860276024190744,0.10221520941390663,2.8760129568449383e-05,0.00888575284807969,0.020939476826579137,0.06804547484370621,0.04142154271642568,6.82250652736411e-05,0.008779918294808073,0.002593146473599389,0.01085093801938449,-0.028619480786033085,0.00010927186647913499,0.0013162679547905692,0.024813980512936467,0.0251112632162744,-0.006852046483805918,0.0005648113792624275,0.03756116439634123,0.014343598847802938,0.048638809594716774,-0.018247145743975887,0.00012412555473660384,0.003075910080053978,0.0007076045310065292,0.0025519026667256027,-0.027265362430266084,0.001779695384427598,0.02373724891226068,0.06162510736540606,0.626588950359189,0.10544540482408427,2.5290484664818682e-05,0.02931090138224026,-0.06886727160472218,0.24155290559699782,0.06767209076932655,0.0009321201174944618,0.015397750872109555,0.02917551498180528,0.1989453242185856,0.04293263441728338,9.76585872469326e-05,0.015058185914477155,0.020698968875903598,0.03199824576210477,0.006354961018422349,0.00015267499980729725,0.016981674360124776,0.0016760627210586276,0.0020737408340819217,-0.014013981556425284,0.00046391637367072526,0.005995483112243422,0.02860032678038348,0.10951295888531813,0.04546031385930289,0.0020242111992106486,0.006838345738676052,-0.02983853949922134,0.11121120128371066,0.03289019652858458,8.608339775104343e-05,0.005677412466339257,-0.008742813402445438,0.013106399488305918,-0.004946595267538936,0.0016582308855028092,0.013022110292397058,0.0028505404088376785,0.009182410567044738,-0.010995544787322876,0.00012299473785441293,0.0037408411459432835,-0.010470413152098667,0.030242051403609273,-0.13595342780911393,0.00014035017151260267,0.00887703265705392,-0.040071701875761555,0.17283536848723555,0.023968006788102885,5.658731566495538e-05,0.0016630281505044336,0.08892842193241313,0.249659393667873,0.16148730647138573,0.003376064476061656,0.02046052989667553,-0.008147383249594348,0.0382120970255593,-0.03032182888815942,0.00010606151948546003,0.010128821454271492,0.04559751787651233,0.2948536523220936,0.030659982378955272,0.00011214901794791617,0.009328926645741652,0.02475671623211545,0.14963975140132368,0.01795043397475521,7.825187624184503e-05,0.011266774244318595,0.028013056055530165,0.145251855820994,0.026912861598881278,4.84714705021129e-05,0.0023834942709118397,-0.035131415736713925,0.07075605426081477,0.011750990833033107,0.00024208140945051877,0.011773027264939062,-0.0025565700421519852,0.010613492484588235,-0.006956797621381792,5.989819767096738e-05,0.0006123746336710446,-0.008273115837704525,0.10344979796936492,-0.0331764567964727,2.0633397450266092e-05,0.012947968458020214,0.017811810208667154,0.05803835681665124,0.02291823380165119,0.00010727583787865542,0.0012852533769503504,0.0303187378872028,0.1151267562276974,0.11318639020772102,0.0004151096419658729,0.0020822975303000117,0.03230550126677454,0.16265032828893916,0.0017965185710299195,0.00011376098295658056,0.011537809139034483,0.0027871250748334677 +2022-02-02,0.01748151876943821,0.09208899252169846,-0.139438734572634,0.00020075114132566655,0.02246436064935794,0.010112264868329588,0.03330562884047539,-0.0211904863932395,7.28519741978999e-05,0.013414576570016915,0.05387864918394968,0.189788728963898,0.040578679303471844,0.00013132381359864386,0.025426669241308257,0.03146366025960533,0.03392466232824474,0.12330789597572817,0.0003130124174623086,0.004686902259789983,0.02180043621636031,0.05211920280998912,-0.11986212987727446,0.00021885939365589354,0.0029993415705447607,0.011686980686662449,0.035679132422568365,0.005289668948520807,7.152119804623636e-05,0.0031463918154924263,-0.03524571359715983,0.12130503975947629,0.01276019264124075,8.525450134804227e-05,0.01663789801462237,-0.017478238753276934,0.12660836018081156,0.011584382140395628,4.734061528354445e-05,0.0003845531623296119,-0.03219541292704518,0.03258476626370778,0.03026596127004765,0.000761945969568994,0.008794330144177466,-0.027219047364963025,0.05779732292004022,0.008920010707508764,0.0001646747772522133,0.02187821687734634,0.0003944453535440172,0.00030802955248909617,-0.0018939950267806357,0.0006259199843445918,0.011098835670351012,-0.009301322619391407,0.13450085372282283,-0.0082920037888409,2.0608313708378105e-05,0.005545888131811077,-0.07574843122264664,0.2356040012633744,0.04813286675796055,9.550849880933053e-05,0.008688132093913711,0.004685973564529631,0.026721943018565026,0.0011817935725363415,4.936209903234108e-05,0.0037674395645360026,0.03389549313310756,0.029381859241201413,0.03124901795552599,0.002250016253825031,0.0006500578909228955,-0.005439599971817022,0.03612186811468077,0.0065235228295929875,0.00012392212955350518,0.01390173777546786,0.047533383713826455,0.25339054706872877,0.004380064018952351,0.0002904802126722127,0.005289437111571295,0.03849153705903324,0.2155005063369933,0.05958111837997319,5.031273369393693e-05,0.0010463709850987086,0.005602343730640748,0.027301732908141432,-0.0007840609153192186,0.0003381943479058806,0.028461460952279742,-0.06247495526247394,0.8121600256949688,0.05615422865539196,3.192232944220542e-05,0.007743500294973966,0.0028669538844058717,0.033464136127714365,-0.04162335283869763,2.8623504031043482e-05,0.006799293315304468,0.015002758148673736,0.04616542416553114,-0.004531952563898107,0.00010468321061833671,0.022602777704238866,-0.027005606150191805,0.20539227285654255,-0.0014891083296941258,3.0371217705801718e-05,0.02672149131318402,-0.0040441240239162705,0.011038132808327881,-0.02368980818733366,8.122808846605649e-05,0.0004182469052381424,0.012829644131698202,0.04776684080061548,0.01143347012363441,0.00012281083574198703,0.002881968991667136,-0.03746234849378639,0.03239476017138845,0.027265307849966627,0.0006609913739150531,0.02476541170466,-0.026226645973180893,0.10316481621762523,0.028408624619991246,0.0001070032956837055,0.00012307007811774066,-0.0006366399083606647,0.0022618496141551796,-0.08172299459062238,0.0018065471785996274,0.015168356636136,0.04693620064360829,0.4643005152178735,0.04448421281280037,2.5995068215876027e-05,0.017993245297162952,-0.07672272514146634,0.25869724396026084,0.04734486873487826,0.0009696242936946039,0.013824432102675316,-0.027004237525795526,0.21131056271050316,0.011879498746039507,8.510133167869826e-05,0.006279697732638188,0.02769034013900822,0.046050581273606526,0.027487029815284326,0.0001419183523213052,0.005072595816021873,0.03235678311425192,0.04027124674802866,0.014316885439757527,0.0004611839414626028,0.02355185582699484,-0.03767486902481344,0.15331226735801098,0.04154288146943719,0.0019046938775863379,0.011958000134084537,0.011124437232804728,0.040691790279153615,-0.014365723200153635,8.771252692248285e-05,0.010075689331410079,0.008698707473741612,0.011378898960107684,0.001507948223204912,0.0019003416067254137,0.048156691573006435,-0.008331379548920558,0.025619572216235727,-0.0002938216767996249,0.00012884307539045198,0.0355962231867819,0.0022783761875753133,0.00556230723842523,-0.04360615339948604,0.0001660469241944198,0.00213284194358332,0.026253548028811285,0.11740213547367882,-0.005335762471003663,5.4579045063891096e-05,0.011146166082487554,0.03509562490666024,0.13050241137834723,-0.01096908636957092,0.002548898262484185,0.002911542983284611,-0.019724737182824095,0.09462224482491231,0.007071243885878194,0.00010369517501007375,0.0029439245511698907,-0.018359084943757972,0.1013661096050948,0.018405480664145282,0.00013134666098262235,0.012718613296105135,-0.003778568055056126,0.018952868958268077,-0.006704530428607485,9.429767555615114e-05,0.007355127356248353,0.013682416077836957,0.0582211857919146,-0.014495669342204838,5.906485490824381e-05,0.008935311075057363,0.0035839430942230894,0.006725262882309493,0.004872241790785217,0.00025982517852081937,0.014034122024860657,-0.006268927364695478,0.025482348446669394,-0.006050945392539836,6.117418100967399e-05,0.0011620827402204423,-0.01764696358114121,0.17870306596038643,0.014597802463172313,2.5478231022781474e-05,0.0032952302624108297,0.008989584979930984,0.030962580350776397,-0.03712869635884427,0.00010148724428617548,0.0025752728435132124,0.00346454628533766,0.01621662012615437,-0.004343929644748427,0.00033675495542227594,0.006042035007092742,-0.0361437141222979,0.15973890522822326,0.046263853294706433,0.00012959667848614668,0.00730330202761021,-0.002077448016737603 +2022-02-03,-0.04321473592010274,0.30530667898318326,0.08483645308384469,0.00014968633057401738,0.015273593851153143,-0.013271585091116946,0.04374893462741673,0.003069329490675299,7.278901474682222e-05,0.006455595654100765,-0.019924830042657434,0.0670668722568381,0.006476916486419468,0.0001374307058666707,0.003864788679238011,-0.017470918885523608,0.017455349016917514,0.0132704944486446,0.0003377964388406365,0.00023913960650220672,-0.035506206441928,0.08043185033463303,0.1620185326313153,0.0002309797922438925,0.004448215250997814,-0.012896892857369792,0.032421209142790536,0.023363509422921085,8.68565598129898e-05,0.0009423195040848705,-0.024738887775610244,0.10053366635293408,0.0014079389855292173,7.220354230877947e-05,0.022277368542501307,-0.026810885430160938,0.23626189473229342,-0.06509415823171223,3.891491523271339e-05,0.017620792424580107,-0.022530633884531477,0.01771278731645861,-0.025634407610343905,0.0009809148044628505,0.006989992269272893,0.061606263398807516,0.15635152386195114,0.0850223252165731,0.00013777951014383417,0.0022057883702485794,-0.009536703043999258,0.008234996603705172,0.004898961726227935,0.0005660557333459694,0.007990788254119828,-0.006327498919673333,0.07371897285594671,0.0029270716985693172,2.5578530690292043e-05,0.006184107936102135,0.0059442820258357775,0.015956636276254037,-0.0008631420944142817,0.00011066469681622608,0.0050489411982962105,-0.004133209381389679,0.022832202844166517,-0.017876416020164144,5.095671357852803e-05,0.005422774408496327,-0.0030774847671624513,0.002627547553769922,-0.006495071765313882,0.002284379740204886,0.0017284667656117842,-0.005839031707566433,0.03596017883324596,-0.021298822413611744,0.00013361988649947728,0.020405842154288034,-0.013537581098797156,0.07848773188001565,0.0159527103235785,0.0002670837861656575,0.009244364910254158,-0.002691587170300777,0.017926843709266484,0.0006175436448741523,4.229271573423359e-05,0.0004913538246956036,0.01561439058335869,0.07959168725061466,-0.13801386412028005,0.0003233286097338962,0.007170017153435481,-0.011930051102522397,0.1489122767419083,0.0010956995324759662,3.324620141060206e-05,0.013847555133288041,0.009703740364548588,0.11160174652547221,0.004832266160940338,2.9050250777459855e-05,0.0041122826597467625,-0.008848844950063866,0.024951255893297816,0.002536277782836163,0.0001142396676624122,0.007692857301990578,-0.016766988359457106,0.12268379758853966,0.002821972186744095,3.156895660434682e-05,0.016310144668716116,-0.007531769920347719,0.020464733027755675,0.007839610323452774,8.159590123935538e-05,0.00940041014284632,0.022696949589425232,0.07301177611892613,0.08669556801739628,0.00014214224658229866,0.0018227605583033923,0.06713137259345668,0.06452163386942192,0.05777261479882048,0.0005946969785368241,0.011684254181272585,-0.020357134181727077,0.0747892784973122,0.00024011214855797265,0.00011456799289027383,0.005990671728666078,-0.016667175224730796,0.05064508406363967,0.0037960191217353964,0.0021122430003840172,0.008828382899906895,-0.0032618642627997604,0.03203179082073078,-8.185629161366187e-05,2.6185861119136623e-05,0.0021497114757355737,-0.014804202110213648,0.03724902554116272,-0.013535464276491993,0.001299395503319859,0.028194534943632926,-0.01515854653279949,0.10422003563500068,-0.024731767680828867,9.685721719393722e-05,0.007262668519273136,-0.03395460767752891,0.04316802916119719,-0.02928032543814316,0.00018564441221805215,0.006678135507326946,0.04245430679869731,0.059343393823470085,0.02985034187628138,0.000410632470584387,0.010871936024492152,-0.02961042009094513,0.11698637788025179,0.01345208485860829,0.001961822067816199,0.010784863451129494,-0.008308677098007701,0.03537663779506918,-0.06029772518132677,7.535389341807115e-05,0.022931341218449565,-0.004265740880517991,0.006148462006655797,-0.01704556601105625,0.0017246666643087316,0.014121319393340045,-0.03666575158475117,0.11097533716138072,0.010469518759943895,0.00013090316739116224,0.007548361512678378,0.03932203915249492,0.09730207512134827,-0.024039495372899355,0.00016382278510860008,0.005272350768628243,-0.0034599501813136714,0.014648366081607201,-0.05814451274628275,5.764937265047699e-05,0.019900078784568904,0.009311138225588838,0.031528499482972094,-0.013041670331538585,0.002799094299007204,0.012850755534934203,0.03973085433339485,0.2031559473633717,-0.004309486530763654,9.728344327794469e-05,0.011809182871840353,-0.011169674962449902,0.05204482365342422,-0.00511079831750362,0.00015564091610315874,0.003391168186202609,-0.03340301965367803,0.18281069479104903,0.021420167255427183,8.642369463507796e-05,0.018381562715381904,-0.026679532127602112,0.10809453407901658,0.012035601699089677,6.203286936595622e-05,0.0040260248188019165,-0.0022257890395100837,0.0052178270579440935,0.001408657156208336,0.00020798102441689024,0.018685960120664504,0.014568533514042553,0.06101143995695225,-0.058843256492240245,5.937709391577592e-05,0.014834641027260724,0.0020019464660459073,0.0215125628679718,-0.007371641245336327,2.4009968639417326e-05,0.018379183212194436,-0.007696809949051347,0.02865088072061126,0.01671670601447072,9.390349377928466e-05,0.0018101946668638831,-0.03528703432102312,0.14369159942151502,0.12784272579409314,0.00038708982162288395,0.00475280784664904,-0.017344917180041938,0.08267923981313353,0.007604628071257678,0.00012015657806421514,0.010556729510406693,-0.005942470481892192 +2022-02-04,-0.02460699395153634,0.1958828460927528,-0.0050824018233755095,0.00013284607910429817,0.006679951457638802,0.0014801760015568056,0.0046670262000882605,-0.00961788093073908,7.609982292620714e-05,0.032181843627676475,0.022717254743619693,0.08029088477853479,0.009020004940282276,0.0001308840752480574,0.0010896196378133013,-0.011411530685023891,0.011348763303607666,-0.03873056750460514,0.00033936200768343083,0.009798384378453899,0.0009998345116269732,0.002492479768820656,0.0008953601110158281,0.00020989121124438218,0.004145707243496583,-0.00661489174618748,0.021134257175577036,-0.0062015204465737574,6.834118314845972e-05,0.01420094244934253,-0.03730855243320171,0.13040333318352623,0.0100724433264073,8.394784687051954e-05,0.0007916032619941444,0.0053765664744293866,0.05401882824645086,0.005797886547698339,3.413174361716767e-05,0.017988542569939644,0.014277723781042742,0.012645062965282589,0.018363346552376467,0.0008707285130378084,0.010699772698378903,-0.016494769019861445,0.03720361601113825,-0.014992880014014033,0.00015503257895014535,0.00015920956569349205,-0.00277824223214495,0.0019199417155223494,-0.01433251862731298,0.0007073045016394871,0.005234314475098932,0.006418344061172512,0.0841224804289905,-0.007940998694226141,2.273702889914336e-05,0.002677374916665378,-0.08048131856134934,0.2777106560077825,0.09561556464886013,8.609017220508095e-05,0.008608878716208114,0.00507863331963449,0.029540038516030667,-0.0017505655221682925,4.839467957827252e-05,0.012621722909007286,0.009107939285770634,0.007706159293821688,-0.025295569059992522,0.002305181456938445,0.02259019882908349,0.03997115468435286,0.21726726154622303,-0.0074185033021880245,0.00015139255259197798,0.010779313602249143,-0.06693211522538377,0.36176418321783854,0.10561944432396335,0.0002864951108814105,0.046973123424701065,-0.011424947688574175,0.07296308301120538,-4.0530159501239195e-05,4.4107454996195475e-05,0.018018600955582543,0.019439390789391317,0.09832372831256267,0.01604097608280105,0.00032584504393692003,0.014564310740303319,0.08344508555418056,1.0902073328291788,0.08531898463636041,3.1763027948169956e-05,0.0011416027580138496,-0.002586325646937985,0.029255261596636398,-0.04523077944928072,2.9536629112844535e-05,0.00596831707900617,-0.0005565858622676762,0.0015201951544322944,-0.0004977327727741136,0.00011793849530490372,0.02434913804965104,-0.04294322237797194,0.28862501098412047,0.036595527683635026,3.436790376462663e-05,0.009821075059030779,-0.010203570816413463,0.027860199092323946,-0.006870384101105946,8.119800326591243e-05,0.0007465610121618711,-0.00014299602017186594,0.000521800646241084,-0.004002130505135426,0.00012530486514390564,0.0053273887869808145,0.017843515995341737,0.016599227759774814,-0.002160283608612215,0.0006144239159601885,0.010091374055742983,-0.0114226536278039,0.04558500560398926,0.002473569454675824,0.00010547049986770382,0.008423545048318926,0.016625926106378714,0.052831606072048266,-0.14849501898261527,0.0020198132054952416,0.01673231296531962,-0.028160290144652333,0.2234807528903174,0.03481468276586384,3.240255038907882e-05,0.007240216057481872,-0.044925449001840166,0.13098406199530108,-0.00729942804148051,0.001121360468320721,0.009082744412408528,0.012344909703397916,0.0808051463919032,0.014765683412303316,0.00010173597217114422,0.010226679004930607,0.06168570762171565,0.0988648894362112,0.02212780796348472,0.00014726103629430056,0.02247693917087973,0.03449964180541151,0.04799461064781723,0.0015150144943077313,0.0004125969630277439,0.011035227489305372,-0.04541584156599002,0.17883695854146817,0.04544016253860652,0.0019683414227111076,0.019698604532105195,-0.015925969139023534,0.0638995106534183,-0.0035657786300998828,7.99647728508565e-05,0.0011990931867810108,-0.056740911924821474,0.0773483870630346,0.030972894572276418,0.0018235691704830005,0.0037444784495245156,0.06562316062494436,0.22975281468230158,0.01210437786309903,0.00011316505517334562,0.0236180765020738,0.033789843254429165,0.08720527866935168,0.005306491073762337,0.00015707381030833118,0.0003818257306788885,0.003842974383031085,0.013960919292475052,-0.004036373957625863,6.71842383538771e-05,0.006764426707859303,-0.0011739655993355997,0.003632631312828546,-0.0005355389713680702,0.0030630360397143146,0.03982234372533781,-0.020959719783506785,0.10349682666262168,0.001305468968768912,0.00010073931857154363,0.0036737150027898583,0.00018642749138812558,0.000974916920091346,-0.0022260428161139404,0.00013867658304887961,0.0032669290106613785,-0.03353236226558648,0.18152540838637116,-0.006872105060403543,8.737263343125218e-05,0.005642437489402466,0.015401386197895401,0.08046898072160243,-0.0033960703540104457,4.8103724747523866e-05,0.004743311620572742,0.014910810212228542,0.024973012725146952,0.009193816343807682,0.00029111172523793,0.007188448884020662,0.0104992834058885,0.04189678656237435,-0.037241900575523415,6.231510344317909e-05,0.0026082715855091786,0.006036060067572542,0.0603250551848207,-0.05348272038755986,2.58158905163721e-05,0.0140455403356885,0.0035272400575353073,0.009157451345601177,-0.06755875314227142,0.00013463853040319342,0.005612888060550947,-0.008912644470935965,0.038450019162964505,-0.0019527988990457607,0.00036537429721413206,0.003068700140362185,0.013283600563938323,0.060369419536064166,-0.0012584014180977289,0.00012602903296824743,0.007634280843773029,-0.00030881438976076655 +2022-02-07,0.020597733844759672,0.1519863498363441,0.0033389595499054127,0.000143318231690548,0.0063476954252442526,-0.030925807793885606,0.10159834346988747,0.049244084925689165,7.303734068540461e-05,0.0047091415906962775,0.034739521117900435,0.11129032925886567,-0.005468554847866796,0.00014439880681848876,0.0450675981015871,0.002598600972695326,0.0023279687316202923,-0.0437200675931784,0.0003767300907800192,0.003176807781638218,0.01757005602130605,0.03850724361771611,-0.0412840267798608,0.00023874181212464571,0.0022985374419992946,-0.021839853795808033,0.0663372785166631,0.035469777636651274,7.188508918563821e-05,0.008949544331134053,0.02382595759081132,0.0828763013757466,0.0029826737477397346,8.43548113662961e-05,0.014020841639279304,-0.0012121892451433176,0.009086121795723028,-0.002061890761727623,4.5749935587767786e-05,0.007154306240810098,-0.0049911786370589436,0.00460754125181,-0.0016217142270746312,0.0008353696027861557,0.008793523542825032,-0.017488919545875132,0.04814685962406911,0.004380760654431166,0.00012701555221842189,0.001986495884841391,-0.004274544481214789,0.003129887674909393,-0.014441656903079168,0.0006675525313483515,0.0011670189036764448,0.00782179302963662,0.11044019327254385,0.006907920551087379,2.110580646505887e-05,0.003294186702945491,-0.02310904050870054,0.07667920133141995,0.0035916603958222612,8.952727607235643e-05,0.00874247994465731,0.0023258735231368,0.011550422411777712,-0.04871876488487549,5.6682636958444916e-05,0.002942311926716808,-0.01638186733142773,0.014006577381065673,-0.032257554369197035,0.0022811526698875103,0.010199120063556019,0.06019825452088919,0.421010502985475,0.020419971725147913,0.000117663855886126,0.046094486442266096,0.06862705780673317,0.3864902924983876,0.04613645465014582,0.00027495715270975174,0.019330991350123193,0.01834422582564977,0.09917928975155942,0.014891482843840202,5.210019517523389e-05,0.0063094956370623794,0.020105446176345756,0.09852328685592303,0.009618271257734115,0.00033632692049359624,0.0044563644683738145,-0.022017573985227933,0.2318962588771787,-0.018232016311483395,3.9400882867481625e-05,0.009153249347590212,-0.001959607475419428,0.021990764338556783,-0.0009287233032538357,2.9772168760565142e-05,0.00041436253524227426,-0.0285721942951722,0.07656081206746057,-0.010254653147058411,0.00012021532067703609,0.0057915488721062445,-0.027900157955154922,0.1940469327357179,0.000504680412433477,3.321178790428654e-05,0.011082341406905767,0.008395153939088545,0.022667293736645194,0.010696995172350848,8.211195150153254e-05,0.006098290322871901,0.007166233872013909,0.0331880653942174,-0.004724204175985684,9.873193209009346e-05,0.00021282978696942397,-0.02440310501350466,0.02100308421239088,-0.024501456053316883,0.0006641062638309035,0.010962342174280118,-0.024545884446641512,0.09297070051433921,0.022221335303592098,0.0001111267443605579,1.2070242785501431e-05,0.031169078070252394,0.10437834375656638,0.015324710050903804,0.0019166055001519783,0.020703941722779062,0.04516983677266632,0.44451051463809216,0.023227050054215877,2.6130557649389606e-05,0.04109515356432929,-0.016643513040609355,0.04898142616597218,-0.09319692363225757,0.0011109252664586978,0.017954050111770623,-0.01269562157817915,0.06879973939869852,-0.0003135797586785483,0.00012288328673736297,0.017714452621051407,0.01010054979972467,0.013056370501084658,-0.005993675989601508,0.000182586193606265,0.020534569278831596,-0.0040847724110313075,0.006527503818133318,-0.008103111978791634,0.00035919033600353306,0.004972367355595746,-0.010500713082462976,0.04033139885357397,-0.03229785444891719,0.0020180217744981,0.016673042759695268,0.033589109588557556,0.1340368520880142,0.05688692292559172,8.040159087080585e-05,0.00755141210249775,-0.059519634309448614,0.08099462648711543,0.02275936329444706,0.0018267589300595048,0.030495909812871664,-0.01053598012902562,0.030400362881725516,-0.004944624770083294,0.0001373131757928292,0.024857064409875198,-0.02744054917215553,0.08734281695947121,-0.03583923924175283,0.00012735792664621756,0.008517705840274111,0.00400244146943646,0.01592306370732249,-0.03708455458505637,6.134967720095877e-05,0.006007646591957891,-0.027448679563059325,0.09446460862693436,0.012563537537730922,0.0027540408998830024,0.0008317175023682209,-0.03378127102993782,0.18659747641929375,-0.00043774163755027506,9.005561382182876e-05,0.013133718204910433,-0.008676230318106121,0.0522006709067205,-0.044242782436526344,0.00012053572150355908,0.011911575020563812,0.01608729705095846,0.10207714623819444,-0.032926621733043705,7.454238085355645e-05,0.0015120230612818992,0.03188864354253153,0.15201123351847626,0.0294383082426911,5.272392792107065e-05,0.032884012592126456,-0.004427591090301209,0.009307999998262326,-0.0006757237734332453,0.000231921240004959,0.01887977447000001,-0.01530055746550177,0.05966349769362493,0.04300789118219335,6.376948659292613e-05,0.0014011158504028186,0.025204888276722095,0.23976968288618508,0.006795030745302815,2.7122005100299305e-05,0.018951472509935254,-0.008091309234561805,0.026944225964627005,0.01524047664288639,0.0001049692397887212,0.002863007022809166,-0.009070719489427977,0.034372275843448014,0.004568186508830882,0.0004159694339100444,0.00719705851666285,0.03023863829828755,0.10996100344369804,-0.13058114595605086,0.00015750535788981208,0.022075843077010552,-0.0001528354358148684 +2022-02-08,0.006548541348238942,0.04529454558797449,-0.00492954995604849,0.00015289217221896095,0.004981873253864142,0.007173231609026008,0.026017905471611313,-0.02303300474739228,6.615353384542747e-05,0.009410268793767253,-0.0009632538817612227,0.0036651580556071876,-0.05759866382987201,0.00012157527609344279,0.0022538438356481828,0.004552444424718752,0.004738405927588079,-0.038083118943621555,0.0003242501951300087,0.01023905352571539,0.007413593565227719,0.016590607423332362,-0.005865367557473307,0.00023381063341630363,0.002437121169109128,-0.018067205905919224,0.05525849683460677,0.0326583968939643,7.139021124393846e-05,0.002225558866950593,-0.0319672745542169,0.11536374106871186,0.005567726071299365,8.130666264209592e-05,0.02513382443560565,-0.011901351211488054,0.09111426875033517,0.0023810540773151023,4.4792828972055125e-05,0.000897549584194738,0.011603401805007497,0.009305387538624022,-0.027548847355560485,0.0009616026537737736,0.017742491012270527,-0.0025862175898495685,0.006025227794662324,-0.0013391610055215222,0.00015009059412209467,0.001993503941277126,-0.005674580276626977,0.003953900312871569,-0.03282611362223451,0.0007015076104923052,0.005089735852118929,0.007545571841635715,0.12220665452392057,0.009416796748630054,1.8400096157774285e-05,0.0006434864951100224,-0.0481409267869312,0.16450076574797887,0.010188043941588511,8.693558097796214e-05,0.0031628777472713365,-0.004764751904657027,0.026587191024068778,-0.020664036646512694,5.044633908520504e-05,0.010510829169255217,-0.02120371386280583,0.016838743129731992,-0.0038813908730866496,0.002455982316890267,0.010047360234863151,-0.019858487832587455,0.11380237405221828,0.014332865829343639,0.00014359752706161752,0.029212630168947984,0.0991012732549119,0.5460659497265653,0.08393442109683155,0.00028102332606133547,0.03357686314093813,-0.05889552581572688,0.34036399978524495,0.053787812343409805,4.874158423741943e-05,0.023715116822994146,0.03688116571323852,0.16878191266148362,0.06265205725294411,0.0003601351759484723,0.011625236796980628,-0.0017267795647069894,0.023675006706268677,-0.025598750296588292,3.0267532749969892e-05,0.004131806849808272,-0.015352500131293906,0.12835338013354344,0.022027496049870417,3.996257908301508e-05,0.0002847046478495943,0.02503939642513612,0.06000738107551007,0.00956442695770284,0.0001344132056185439,0.01071337673429616,-0.04007695374704421,0.29042619658777935,0.020265499862621338,3.187508063352292e-05,0.0189396207171562,0.022098620719744236,0.07046571171968848,0.06453281577755643,6.95287957957712e-05,0.009245105811677475,0.005371006788221233,0.019934209570828268,-0.004057350401601212,0.000123198459437403,0.008086865897641427,0.04121349548885515,0.03652808298536647,-0.0922998348603525,0.000644893695102544,0.0018202358693315773,-0.031527673769905284,0.11171488373203214,0.03501815383769634,0.00011878644887178914,0.0095167555101717,-0.06068043185227442,0.22517627447643024,0.14639180176894484,0.0017295981342571333,0.010191433837866602,0.029367471285983885,0.28519390356150415,0.011848897713918824,2.647942257985705e-05,0.017451096160123324,-0.06371083203813378,0.18517277082011077,0.024583435757145368,0.0011248831760771163,0.005320433794696585,-0.022760837780630556,0.16705342799367923,-0.021280320841430365,9.07315844035082e-05,0.01057330950670792,0.016535966782054993,0.01908364348688719,-0.052949464560440314,0.00020450959225330067,0.0018555033029245334,0.042449442898816685,0.0598952577277782,0.0377478363058663,0.00040680236659291054,0.0027238331844890123,0.040574843025244896,0.1633468677772039,0.08545349179078475,0.0019252909895154141,0.014184307216503954,0.038164336607176386,0.12844018920992264,0.05830558763533522,9.533385423400779e-05,0.006246311876297303,-0.07379776922943071,0.1309889168924742,-0.0076200764961220115,0.001400508905679441,0.024175231405890077,-0.0036077091190988876,0.011797484665745248,7.597266231230489e-05,0.00012115968321291132,0.02558243610035332,-0.016673002266729013,0.041513414835412335,0.019745756270728332,0.00016281174310922447,0.011043249769677976,-0.009448105745712402,0.04490466480415342,-0.10899953312437108,5.135316456190617e-05,0.016983428321835733,0.02556063538730879,0.08086673415019857,0.006208509239572902,0.0029958481670381808,0.01628577296013478,0.038540087768080156,0.21027011763687803,0.004688758767938179,9.11749874868685e-05,0.0193753891635124,0.01597077234219715,0.0905647321390692,0.005112429067520296,0.0001278873524040181,0.0018099562793936152,0.012223408565444986,0.0710673386301635,-0.08337734960484275,8.135251336872327e-05,0.005501591781397759,0.020173700166619447,0.10594296819327992,-0.0737265006790922,4.7858691489885285e-05,0.007971145339824976,-0.03568484102739597,0.0672159416870665,0.01332693078272483,0.00025884565125939483,0.0001361776363097882,-0.010820010522990043,0.05418718406637777,0.0033811875040849863,4.9652998046940935e-05,0.0003878642108255919,-0.0008815100236835666,0.010774743620141728,-0.025583998926282277,2.110821919452806e-05,0.006583136179415541,-0.0061352347869846864,0.020391298930928482,-0.007055054653816301,0.00010517082009490118,0.0065566286598663795,-0.0009082967260096832,0.0034802172412326158,-0.024534065740659198,0.00041138586497789574,0.0023172402785939746,-0.01414387745757848,0.06548515279217626,-0.02032066413667207,0.00012370790033684086,0.011215481229304197,-0.0022409594591294513 +2022-02-09,0.009835294300773094,0.06407781325064955,0.00018689908038569563,0.00016231784243864747,0.004068069036729684,0.0013133978205641223,0.0040515401539360524,0.0001308766397151779,7.778335480911113e-05,0.004375948550278398,0.002961158027382775,0.009323645727575167,-0.02547863591066722,0.00014691732969710655,0.019891243335796064,-0.033289803094500754,0.03626232280175636,0.09709521952373414,0.00030982999717649466,0.003277984005329998,0.02689525127145734,0.06836872524408759,0.023974087521255776,0.00020583342278833136,0.0044452557115444,-0.01257238275326589,0.03298162646109631,-0.014809495298625465,8.323237080231502e-05,0.009584394290671509,-0.004321012907153838,0.015878399540821975,-0.0199205757471513,7.984885503154136e-05,0.008736030088818859,-1.4130105345020766e-05,0.00010629620070588705,-0.0031268929833224535,4.5585452710697344e-05,0.0015515698814568004,0.006257439419758833,0.004555781810420576,0.006857261560531042,0.0010592013462905297,0.004804675068373859,0.005811328643282779,0.014875484837190573,-0.07787680167396578,0.00013660487342243534,0.03281616612875516,0.007945434042471798,0.005409684266397806,-0.015228872936250613,0.0007179101054323092,0.004177447759416301,0.0040202114260431,0.04729710054922413,-0.02721113877383328,2.533011520117064e-05,0.01268327756923745,0.00896865711291753,0.020924296139176405,-0.009641230107461351,0.00012732907979639744,0.007444784205537637,0.024292300442688913,0.1468885140648226,0.05688898262239052,4.655245881878759e-05,0.004636360904433173,-0.039077307944166716,0.029108984636405023,0.026725768420383676,0.002618306916729142,0.003887433400285796,0.024386063848822793,0.14571351194498097,-0.032465990049791366,0.00013771904065630708,0.01712960518025079,0.019443663307590335,0.10729004595702166,-0.005601960462836565,0.0002806253452759788,0.0021724710523332923,-0.029180735906329018,0.1646880351161152,-0.12307028175526873,4.9910870911896855e-05,0.008148026058373725,-0.05077063412163379,0.29986985372270486,0.06924031390143695,0.0002790400797594663,0.010675738665465027,0.004518584099701542,0.06319657948971436,-0.014330057753907555,2.9671467633792235e-05,0.0021369927241374756,0.022958249275121162,0.2551201580778934,0.05908638168741458,3.0066003299020863e-05,0.010626928729198551,-0.00691623817184633,0.020167676984950127,-0.00011961243677318943,0.000110468083475444,0.010806361710304425,0.03613180825519226,0.22821178787241708,0.039053633782121656,3.657160324377972e-05,0.010023999137775609,-0.025931711196144645,0.07569128063757634,0.069399450030966,7.595610833668633e-05,0.0019445145606990242,-0.0019156941300238464,0.006992659541578295,-0.03948491627359317,0.00012526576075263304,0.004702196100146469,0.05869981604120126,0.05963356166227553,0.03833504123502854,0.0005626282736534147,0.0019392568138467906,0.002940596401289634,0.012371302539412677,-0.0378064949471112,0.00010004744515084522,0.0046357079182209,0.039516945251005346,0.1301861813986198,0.046817851688684575,0.0019482184480053033,0.001038757534842427,0.0041189324127246865,0.04148310552802048,-0.027836105614005898,2.553263281568338e-05,0.0222082349439187,0.05330490393336404,0.14273038142288788,0.06239059457803511,0.0012210178372837558,0.018946061070890908,-0.017534504316000843,0.12699454684453,0.006976989203439663,9.194625898710993e-05,0.010898731273860483,0.02602687849951385,0.023664237079600442,-0.02466328119568741,0.00025958223256786434,0.009034294887573536,0.020783741895747512,0.03217031056783541,-0.06538819139442015,0.0003708278991240145,0.010175563991332145,-0.009774168789831762,0.03891328991656271,-0.019301296311953944,0.0019468488100448868,0.011807242218407227,-0.03368799484153444,0.12089079563341475,-0.029634963058697485,8.940715930607414e-05,0.009258769288734524,0.09232673437897891,0.1385279214450706,0.11449684045354488,0.0016567895577591105,0.05745004683945611,-0.013375067363965118,0.0459439799589565,0.00022209669532788676,0.00011534091722114163,0.024853386544533985,-0.02079395990400043,0.05113145535608874,0.022031514132784265,0.0001648577711904122,0.01780805564761623,0.04719765487856358,0.17270832291327132,0.10775427261076842,6.669926962994259e-05,0.0031725854624888978,0.009258499981093665,0.03688017486896719,-0.00030111588938423934,0.002379390462071416,0.0001541955914989943,0.004051894770736477,0.02093288217753241,-0.00465303779529692,9.628745319423782e-05,0.037240530145643685,-0.005552348341528798,0.027390545540720658,-0.006068567431114025,0.00014700659114921295,0.0145895885017382,-0.01052648289580399,0.062169095895882084,0.0010654091088774607,8.008615369090132e-05,0.0006926390793957981,-0.025769818375473173,0.11116238196658859,-0.02032652506466338,5.826408202933717e-05,0.004635859751988181,0.07673561848286967,0.14873655832327043,0.14154838990928273,0.0002515409309907244,0.015069383908823961,-0.028702054875334143,0.12634350480823833,0.091819713145193,5.6490373491187755e-05,0.0015129673797277341,-0.005291187204159447,0.055522898596843034,-0.03622053826238114,2.458738163417177e-05,0.011091763899489803,0.0007233049296228573,0.0022186618183968106,0.001727231543475876,0.00011395654668899528,0.00014803201449349195,-0.021387649361158795,0.09371744363090884,0.0028160765376188824,0.0003597249763611575,0.006158355211579788,7.789598856521681e-05,0.0004207502412341447,-0.029829973108369965,0.00010603824117062704,0.004107459325418281,0.004112631876563152 +2022-02-10,0.04336912859706229,0.28232410460474827,0.07590696888701158,0.00016244985220320173,0.012202225667175074,-0.015523685975115574,0.04397897061466345,-0.10639233994061938,8.469549597622224e-05,0.000309782390908299,-0.05117362489043817,0.16539279980179095,0.04019474300406947,0.00014312871979699874,0.01717757998358348,0.010884807350345253,0.01301843975795429,0.01868622924341907,0.0002821822327286393,0.009898551688395624,-0.003636931695453561,0.008329126364506953,0.005741173878059537,0.00022847225388383392,0.001963076471014586,-0.0002729616817276352,0.000708776453761983,-0.023501132433735486,8.408899143685079e-05,0.00554751740962057,-0.03288161355565897,0.11955193706660035,-0.030753087912212856,8.070238300386098e-05,0.0023068820296204464,-0.022014851655313895,0.1919267264060756,0.0058560617053122965,3.93349789429983e-05,0.017747459136316337,0.004122806504634591,0.0029459094793201305,-0.0016519154238810586,0.001079240765485464,0.006529322391327934,-0.018553504019025686,0.04417459809123295,-0.07080467508868947,0.0001468639559119481,0.0008770734566141223,-0.014727387363372169,0.010074407068593194,0.01299670757221456,0.0007145466263139706,0.009025636509670197,0.005851317617149616,0.08005116364039969,-0.0745042924992168,2.1782554682349486e-05,0.0028120594118542603,-0.028747726094089907,0.08224852590181936,0.0022611948510727854,0.00010383085089845982,0.004281868126653027,-0.013962931127172538,0.06134308343328108,-0.014625524794870632,6.407266851936803e-05,0.00987940362596426,-0.005395230947884372,0.0035745401180901164,-0.0048300685063451835,0.002943830745166114,0.010841845457890718,0.024309238435761778,0.16690694563648462,-3.512086527204111e-05,0.00011985303926429661,0.02072807884565439,0.023744364940054958,0.13477719187226514,-0.04391425045285905,0.0002728050384220128,5.4256484602364236e-05,0.03228956595084956,0.18025751535338655,0.02356863427899825,5.045797097190526e-05,0.030942256444544364,0.0249503637158654,0.12086381544043442,0.009579601185903869,0.0003402259131997232,0.019132448347710124,0.06994289447020258,0.8714040265078108,0.0009036693392714015,3.33084382218196e-05,0.009680139454327415,-0.024585186391626594,0.314582684591017,0.05102373265566466,2.611081333318896e-05,0.002351807759098421,0.0029853888359537405,0.00927003880433286,-0.016376185332931833,0.00010373901214859924,0.02924869563863948,-0.062277534521508124,0.38214499219588527,0.005648908033520424,3.7643986974014125e-05,0.02047781617425133,0.007374438169131835,0.022020098468159683,-0.04079011107972481,7.424839399832199e-05,0.0061727752450869275,-0.007606169754451739,0.028703199053438846,0.030470961849086316,0.00012116698642655171,0.004739454632339845,-0.06303757828405852,0.056034161556971926,0.010620290340908152,0.0006430166284430903,0.009003672581305504,0.007706710782808639,0.02675675518237785,-0.016273518668151517,0.00012123321577345997,0.009299487138781619,0.0037951991467552455,0.01396103845765874,-5.000784710028282e-05,0.0017447613050344537,0.014804466579157573,-0.07669141723155619,0.7761727565692198,0.1671415981521419,2.540800485196687e-05,0.04210004294611994,0.05942063709463349,0.17262261162386833,0.04770973912752224,0.001125410313665865,0.0008829228818729188,-0.01597329008519235,0.09986675277508568,0.0013135834166483123,0.00010651213578694351,0.007593351229519977,0.0067272902001686155,0.011887288844504374,-0.009186236965047927,0.0001335680954091967,0.005330434327150145,-0.018191508392265545,0.029006306080361158,-0.0353933465991136,0.0003599815142751228,0.0070286369391596125,-0.009803931115204565,0.038424137982910986,6.533553202131358e-06,0.001977636454937162,0.014930556887062258,0.02044309450566558,0.07973752195513802,-0.0017737734442275289,8.225726624828226e-05,0.011454692519962352,0.004267737586372475,0.005811414065786469,-0.006836849830098959,0.001825547255241954,0.008439804854492977,0.024320915814560237,0.07172036369367697,0.00850544643765232,0.00013435489001778492,0.016097975974339873,-0.008556281971236297,0.019555553329066725,0.006931745276129535,0.00017736803531592592,0.00572563728043595,-0.019222701814982673,0.0696220067803747,0.015574917945912604,6.738788359376461e-05,0.013555392837935096,0.04433572762408673,0.15797615626914932,0.01537875218456964,0.0026599921535663444,0.0063199304354213046,0.010911416011916716,0.05253089449164696,-0.00043781352450667654,0.00010332535089800891,0.011269410490781286,0.02293884951418898,0.14396698527520083,-0.06391026111029043,0.00011554988198310954,0.01816600640056932,-0.012921803326140633,0.07810309172036803,-0.0023894394515979254,7.825346909388824e-05,0.0063570784566297795,0.01458778283861244,0.06022067494350481,-0.0064755957386611945,6.088230209974647e-05,0.011249510351757318,0.05551071276845965,0.11428798530910994,0.05729999106237531,0.00023681304435180486,0.003690185282141061,-0.012001879004192941,0.045029236392394284,0.014005342534008463,6.62779455312985e-05,0.005008742050559431,0.011267072864173257,0.11629521003983223,-0.0024597122065740168,2.499657814961025e-05,0.016331722564718473,-0.017515469324159528,0.0579796026593151,0.0658659198200972,0.00010559795516288741,0.0010174180891752327,0.01972915035702258,0.08602716504753326,-0.013488786910000734,0.0003614937076959824,0.008494038295438757,0.02764398165810685,0.14445326988956098,-0.07913034177363205,0.00010960869700360583,0.0017329198666391616,0.00028508114678319407 +2022-02-11,0.011146074280157089,0.07168011716054842,-0.07111623124957525,0.00016444088687523633,0.016580713138806245,-0.0015453843785722603,0.005518815555158508,-0.005945282946598761,6.718946217698707e-05,0.0020571734200761855,-0.02169659458073596,0.07382197700308958,0.007521769339574569,0.00013595748013607022,0.00036051948767268664,0.004632717296171534,0.005052429352129704,-0.010173138496378438,0.00030945920515052335,0.00459708109257044,-0.013150957878967535,0.029766661790089254,0.0021491785788914797,0.0002311665683894497,0.014263287782972632,-0.017427759598664022,0.03669636427050848,0.01900304349961136,0.00010369677792862456,0.00851058782313212,-0.0374970610400361,0.15139449516690917,-0.10726160085711287,7.267365465914304e-05,0.022598614121690664,-0.01217340800134845,0.11429513204454633,-0.00010842942055086882,3.652439734374151e-05,0.007042397406894882,-0.016475804401714877,0.013292577182440436,-0.0028826997949189283,0.0009558334467155635,0.0018775108472320664,0.02690563304995492,0.055424780850272075,0.013946596119157042,0.00016974661267614717,0.0018519472324204536,0.026548652751665378,0.019573558676448787,-0.027042422901036978,0.0006629748492934092,0.016439843433111598,-0.004876478249155493,0.06617733407861588,-0.0130288571817225,2.195936679948358e-05,0.0016159559768808434,0.009854091553032004,0.03176943628461537,0.003991791400974781,9.214210339706375e-05,0.005381307968046672,0.0016270089378511287,0.009636921199564651,-0.006945030963321562,4.7524050558713175e-05,0.003267215753060704,0.00890630084316379,0.008094933335921737,0.007805248975628012,0.002145888028613059,0.0016330359300008063,-0.006664578841799847,0.044083724410651504,-0.0012886967361968637,0.00012440749316526854,0.02349308571707775,0.01719470656575722,0.08599360063832644,-0.006750523995456488,0.000309625604195952,0.015227490513662487,0.005497275358023374,0.030207618022716046,-0.020384320638773143,5.126157743774363e-05,0.000972940802787766,-0.0068474192874704316,0.03633994317537033,-0.004951280120576864,0.0003105485354023985,0.0059457367991271005,0.01822802759570798,0.2521889059706197,-0.001979953517733583,2.9994659144347683e-05,0.00564786584619925,0.025638569079222486,0.2436319028639611,0.04881003566859728,3.5159390258157096e-05,0.0048179471956875,-0.015421190417325256,0.043068694132087866,-0.037332160838238704,0.00011533973564245756,0.0008889964333340693,-0.048257939711232385,0.3327274889466541,0.0045345843836804844,3.3502133906742234e-05,0.01602344885844764,-0.001678995796152464,0.004526921495859176,-0.002618299109187297,8.222881427795641e-05,0.006139659884793799,0.01189491521997605,0.058952185167965646,0.0023152382956081333,9.22592753162288e-05,0.008192434189303195,-0.11641481133819075,0.11031847291329969,0.16702559881757112,0.0006031642026707244,0.0037593419240107865,0.010967115842076573,0.038303958915349524,0.0144731600623474,0.00012051324398305899,0.009485944650469357,-0.001315499238611275,0.004682281382981192,0.0007225419665008607,0.0018032347438672177,0.001487150748026165,0.005522651873937454,0.04917594570208538,-0.0021806125281860446,2.8878666978094564e-05,0.0320404999674483,-0.00133475075660592,0.0038071266659556536,-0.007079705811283277,0.0011462361975290776,0.017008643346731193,-0.020251658602448985,0.15175695392230296,0.00853417392929779,8.88664108172667e-05,0.01685042887206262,-0.009830045653859925,0.014022302810475774,-0.02804063656450759,0.0001654556414650551,0.006354767889669233,-0.02326961977680465,0.03165273418229932,0.043199699917333516,0.00042197038319249567,0.008499296852736678,-0.005088825319182361,0.019139422083201112,-0.0070145998371995135,0.0020608152737659137,0.02268902873287693,0.05071318298133636,0.16053054929802055,0.09229930355801307,0.00010135695346797695,0.012547665949560109,0.010289976017846526,0.016188420968171205,-0.025633157002898282,0.0015801090664515197,0.029208647053280225,0.014418795848820106,0.05271849670892086,0.0003712962894120994,0.00010836324747547927,0.0015407059864796658,0.001265612004481947,0.002936133935816584,-0.014220588367618973,0.00017473709003615505,0.024434720854124802,-0.03890849258381657,0.1638073291171204,0.055343324942007784,5.797289672689963e-05,0.0030218917816520604,-0.0478273556665695,0.14673216050240023,0.01590613223640573,0.003089364242344429,0.021549563268507273,0.025486595388951025,0.12133319400744959,-0.011592418914105552,0.0001044895273913267,0.009129953314457399,0.0166207061088985,0.09328341261137671,0.007423611599987819,0.00012921288671291004,0.021671121028738857,-0.01807634479205583,0.13701530014615396,-0.040788190794556506,6.24008131267561e-05,0.006536286533088605,-0.0008460600586638027,0.0037297207512350912,-0.015529026450657768,5.7012786953145046e-05,0.01628269799684317,-0.095482498326118,0.15777285003126837,0.09969606789390703,0.00029506717398517716,0.001163324068819978,0.021146363022327724,0.07685276041207055,0.06582836640052059,6.842118447585676e-05,0.006718278029948004,0.00592180448404984,0.057176951239442754,-0.024767657915051207,2.672171671279923e-05,0.023166008391078963,0.011749243626441643,0.037453325456911275,-0.02690689265883848,0.00010965501263541166,0.0015940826560523465,0.01359557008318589,0.05219291333437278,0.0178485692308164,0.0004105951873426192,0.005205120086298649,-0.01549138240946457,0.08163022684263178,0.027646501085177418,0.00010869535051975892,0.015365117331224984,-0.004760252858040123 +2022-02-14,0.015532281134772992,0.1139994983164582,0.011739641119125366,0.00014408503836571361,0.0009614143822848002,0.0039013546941582353,0.01578969183346052,-0.004802148309542224,5.928602173012872e-05,0.004001270415950243,0.026143267937904953,0.08333014028629887,0.008030609990555736,0.00014512925486493707,0.03195045311447598,-0.037139070951621035,0.03631313243369112,0.1145768140997766,0.00034517169744824187,0.004401693211806709,-0.03975663767597433,0.08716369234170626,0.14364115999160038,0.0002386556942921897,0.000685594607870094,-0.00041706452934733667,0.001132328348423173,-0.020063377087068006,8.042250844192002e-05,0.008756804821024955,0.035152850129303984,0.1442849011798315,0.07507478513723038,7.148740154846505e-05,0.021358797584036252,-0.0008809779109138383,0.008362475405240922,-0.05119452417917659,3.6126740565912e-05,0.008839699115572903,0.0009555062310387199,0.0007986737402760238,-0.030739133260125052,0.0009225903436351644,0.004559389240420171,0.004686973613766604,0.009314933176380893,-2.563019677570653e-05,0.00017594407699831355,0.0027150420684868472,0.004160074316320862,0.002586483457090495,-0.02915245699378355,0.0007861686875095452,0.005267268346329795,0.016760702063392238,0.21111223178359062,-0.07571292765903642,2.3659284065644232e-05,0.0017331735857170141,0.025352106838551654,0.055951520846161784,-0.10465028384724462,0.00013460252239073516,0.007036416926600501,-0.0015975271356175151,0.009619550523019877,-0.14381950919040798,4.6747165447960695e-05,0.006091034824744027,0.0465732419096885,0.039478347572638704,0.07402099956886864,0.0023009144736449187,0.009145830402765863,-0.014734580350851675,0.10303262544354726,0.00149163838973499,0.00011768337440083837,0.006043101356280964,0.02282393960682005,0.12086306065065222,-0.011053209840852373,0.0002924187751066152,0.03779296298058517,-0.052296958554476386,0.32530515969568774,0.042490184692054685,4.5284172545861695e-05,0.022905639614330404,-0.014977233510286934,0.07346008005253661,-0.03298234713848804,0.0003360214573910849,0.002105733217984339,-0.035048820240034355,0.4288687137919191,-0.07322796381349216,3.391401983878451e-05,0.0032635606128876885,-0.009987159202783447,0.1037421289101469,0.008346491375610693,3.216388687740195e-05,0.01053839482039736,-0.048033502405028836,0.14894311604815935,-0.01624568263990147,0.00010388350042810635,0.019398840647033903,0.002198081936329506,0.01615076021186308,0.005750940587508103,3.143715845536651e-05,0.022388565664868014,0.0008456932824672253,0.002334064738691047,-0.030894473319587164,8.032992575037185e-05,0.009723531404250843,0.016257160482831542,0.06725795078665943,0.02927661656498699,0.00011052223466510736,0.0024862584483548726,-0.006937454359502448,0.007295522405573134,-0.0008010262510200248,0.000543524724766277,0.024423019203416944,0.020593512797045264,0.06826005893423377,-0.014941961387436892,0.00012698422832314461,0.004267463598994596,0.035850993087981606,0.10749610377718138,0.027682750241722336,0.002140561162933087,0.027013165202591005,0.02341210226929356,0.19082113737847645,-0.01333792364643497,3.154976492679837e-05,0.001105540559711648,0.06369270107994013,0.18197142421615767,0.030514500619485352,0.00114434701858852,0.01786566383769571,-0.0068475619823954465,0.046608714937525685,-0.03596584136049055,9.783505337316456e-05,0.009415525737968713,-0.005269605511830907,0.008429605564613196,-4.007182569130262e-05,0.0001475421939895235,0.0016781007318616946,0.009310686713189771,0.011222281765541119,-0.06597221576220202,0.00047621652201685987,0.002982768836281367,0.0031396150253235554,0.011884981345028463,0.0029847286952867885,0.002047520391315938,0.017847287742735696,0.019525894829790814,0.06907516393960181,0.0013962481810319341,9.069417443194419e-05,0.010130076104415386,-0.048220961607638904,0.07092565254778757,0.012184984736099766,0.0016900895571512295,0.03550533718893316,-0.000691284585949338,0.0022378469911354063,-0.00561926464444635,0.0001223890378544073,0.007399718957324614,-0.026970902612380016,0.07652144844831404,-0.042893335047052124,0.00014288040577043544,0.0011747268316371826,-0.03303940484337913,0.12484299904802539,0.015545328894697376,6.459247824159519e-05,0.006820394697495482,-0.003916480311043601,0.012243639270747874,-0.0007266412541568386,0.003031820463059708,0.013636407652533811,0.06772463286580538,0.3113881417518162,0.07728067764220425,0.00010818951161461733,0.028749991616492266,0.013580790609113642,0.06876573769019184,0.0034980687317311032,0.00014322331823621613,0.015451738376265997,0.024486910242810245,0.14014947726748103,-0.07381105606203417,8.264017074087768e-05,0.002447813972227649,0.021087817008633075,0.09028729857934009,-0.1386690718246014,5.8701927295282673e-05,0.007495725907490833,-0.04814085187051065,0.08637173547084541,0.0031150688798228074,0.0002717512303993553,0.01639266346733077,0.00248830892482875,0.009316698807644746,-6.575910142218687e-05,6.641353810364475e-05,0.011279323171255452,-0.007869038100422481,0.10043173082088898,0.014788032013857482,2.0215383575991443e-05,0.010132284505009826,0.02296627008328826,0.0693463040339966,0.041966159666793866,0.00011576468997296355,0.001614398532489532,0.0162446785398932,0.05651692032550188,0.02758987065661747,0.00045306509437017785,0.00883061138701568,-0.013488218324100805,0.059908738999522065,-0.029220955438272272,0.00012895441172097358,0.004346185056353092,0.0023268214046030275 +2022-02-15,0.0630895034226226,0.4195983180228762,0.15658569588160406,0.000159004697290853,0.006005146915971621,-0.017719396779643393,0.0567830689572199,-0.09929005653912346,7.487564879585453e-05,0.005916072527796995,0.0011993598523881372,0.004147278408020482,-0.01608445141365399,0.00013377763714244635,0.00564686389772125,-0.0018071738651811878,0.0017590164982610472,-0.02000315586044984,0.00034673515849872975,0.010239244127931861,-0.006460935504388075,0.014112691813896227,-0.030948864022694613,0.00023954290957001087,0.00914494740916242,-0.002064706157531326,0.005141758894912801,-0.13702506564691644,8.767853501477221e-05,0.003603488017615844,0.05095809440884606,0.1778914492511228,0.10294049033162014,8.405198242273833e-05,0.003608528405526734,-0.04837642484779161,0.374677183100002,0.10542656016711979,4.427668907051914e-05,0.009653272203913868,0.004026741296256092,0.003213899178678981,-0.03934711698169675,0.0009661982946497362,0.00875833468499377,0.0010068712985468037,0.002706626007713286,-0.020078318670501385,0.00013007912203742342,0.007891356262657929,-0.03140155711470223,0.02415808938480121,0.015638816297623603,0.0006353498891345395,0.007476428641311188,0.008576111263202613,0.12386085860178413,-0.08529678465118505,2.0633794930154065e-05,0.00286584178477182,-0.030714585256624818,0.09346732856208272,-0.034238473548166865,9.761933911445142e-05,0.007650888406464468,0.0036471130274710445,0.02265333540068943,-0.0008811423349444512,4.5318850538072456e-05,0.007668449671987665,-0.013247176643912166,0.010164396123425633,0.0012854675075765775,0.002541936622069903,0.0015874916106721714,-0.023481986925966883,0.16718469725168406,-0.05319886318584831,0.00011558205894706456,0.009807127138925604,-0.010570499982096002,0.05838434373915355,-0.0027129383893854313,0.00028035438857659643,0.021161073536267026,0.08633051715730393,0.5760689390176055,0.18370316133771022,4.221344921473466e-05,0.0017129658770371776,-0.06114138190503439,0.33011257420842527,0.12346724125788061,0.00030525303495229015,0.004010047691262616,-0.06697194113421563,1.0019501263865005,0.061645450226084315,2.7738119428419222e-05,0.0043749537254542115,-0.02276949373876623,0.21985449890617909,0.014417545057201322,3.460188246146928e-05,0.015464340447073436,-0.02601762363324162,0.07342238494718085,0.015080877911739262,0.00011414631492427287,0.010983708597300778,-0.0619841672726939,0.4348445568522322,0.005262918163549784,3.292601024261598e-05,0.005749830680355401,0.01972361890609973,0.05446460997629782,0.03561136820620501,8.028780539209417e-05,0.008697614330621035,0.0010686895910066603,0.0038861365730858315,-0.04233337062003981,0.0001257425072598177,0.003502541345927604,0.0012475897753330477,0.001120076331795966,-0.008430876525709641,0.0006366485406464802,0.005177882357958016,0.022660865834023654,0.07349575556852352,-0.07733609866981628,0.0001297777527524947,0.003371332412292039,0.04211824728589837,0.16040449480348612,0.03808329345646418,0.0016852833534374532,0.02381953690788282,-0.005679360594082409,0.0576678445573157,0.002316224938547198,2.5324910541976067e-05,0.011058149270543943,0.08704642625660629,0.2565575220140587,0.08794386434946166,0.001109270499017888,0.04211280465909201,-0.03747859399537892,0.2771157946211014,0.039892615161508986,9.006325804000799e-05,0.014229402730389312,0.022895430965142707,0.02953789522342027,0.0024487239414747604,0.00018294252264493637,0.008641253209373447,0.022029203858006562,0.03166104019155855,-0.1751046707883915,0.000399371929613841,0.0010111445117780202,0.00487913041622291,0.01830947174067607,-0.04135831770980734,0.0020654607834206746,0.03675853090209766,-0.03755279110378245,0.16967107083426788,0.06302588257854501,7.101086305292561e-05,0.00527493429082066,-0.0578218661988687,0.075571269747608,0.021966453726771914,0.0019020090407208395,0.016972730760644292,0.013889657843850023,0.04609737216419034,-0.01931503739876576,0.0001193799562504895,0.010631450543087069,0.0344907489873747,0.10037997322434704,0.018012684535469278,0.0001392887131347288,0.0026267112007594268,-0.015898693539265547,0.07616636197488412,0.007535007023270607,5.09462415879195e-05,0.029152826773875973,-0.03004716155332509,0.09686302436361689,0.01191165592932311,0.002940109362531194,0.0011266480663187526,0.020845295363134356,0.11979178660207823,-0.11999026977318268,8.656086381485713e-05,0.012515575917224978,0.011138614681389878,0.05776658770236575,-0.05180785092988907,0.00013983479520403557,0.0014169106750992538,-0.030930319877528846,0.17083408608622877,0.002705638581939156,8.563643538855593e-05,0.014164777520785859,-0.07011005203559356,0.3107525044546605,0.1740081180984949,5.670391526593789e-05,0.022463264320790023,-0.0015764698161500458,0.00315423220270375,-0.0242892852666664,0.00024368084542427505,0.02186491185875484,-0.012375195706566778,0.048419560192710764,-0.006521506965834913,6.355439829147753e-05,0.009719671621063134,0.013104395581052983,0.1433233722577456,-0.00692191491204468,2.3590180394112316e-05,0.010754177028650565,0.01608672217388485,0.04533303285932582,0.01989062889096768,0.0001240399980791963,0.004450049901098949,0.014541799208323412,0.0596340644943291,0.01252779528429512,0.00038437196495625417,0.011367100410709277,0.02571093823785583,0.12534417069817552,0.014069538428347737,0.00011748585445818307,0.0032581776840247007,-0.0034684968684319346 +2022-02-16,-0.004661656782977525,0.03501457380022201,-0.04418821156869182,0.00014079201827543628,0.007152521215447105,-0.003669841880735333,0.012778663548952445,-0.12400561218576217,6.890844401884571e-05,0.01074070487575866,0.010237643551314103,0.03649790474325591,-0.02564571237805725,0.00012975654572379143,0.011235352119659937,-0.014012669057329981,0.014321512725890106,-0.011798651250256424,0.00033021730471089725,0.009969659155889224,0.012789603974585707,0.03099616524045994,-0.005351472169930058,0.00021589714622297413,0.001502711790952384,-0.016125533910635294,0.04269057782687595,0.030976158447193716,8.247623161642664e-05,0.0004975410220435553,0.04032736051872909,0.15423176423286472,0.03662478356301999,7.672127763910871e-05,0.009092887081458435,0.022660863997930075,0.16754066814660043,0.03552820760085475,4.63825728913913e-05,0.0056787274047012115,0.037318181432230285,0.02417858218039328,0.014191467166425026,0.0011902396892232417,0.004613595225645681,0.015934760495852157,0.03326782666387583,-0.006228756962811083,0.00016748773006042633,0.020867397884116994,0.005044254659199274,0.003938751971680541,-0.035052305164076404,0.0006259832729514068,0.015636706582433824,0.00031993833839296434,0.004923022248823118,-0.05147403589407612,1.9366773611190665e-05,0.002092337549529017,0.008270506863619955,0.022097441549324037,0.0045357222081860125,0.00011118371227536602,0.005378365853538489,0.00023405572995816381,0.0013806225613722707,-0.08229142405610772,4.772062575084255e-05,0.0037129915574790136,0.028664597753210848,0.024145492257266518,0.005587327735698405,0.0023154358887676613,0.004896246759362568,0.040478385652102204,0.3098419207456159,0.019453209447464852,0.00010750659708202182,0.010610885700961487,0.00025313888537414225,0.0015018446206244986,-0.026537033361344057,0.00026100095239634874,0.009817189517337338,-0.009702599418144758,0.06225526542583601,-0.0005486876896777188,4.390085397415595e-05,0.04187071866960232,-0.05013313756760376,0.2854223319662197,0.03153321268187985,0.00028948345212690963,0.00611717324894978,-0.03640363235886073,0.474520782793431,0.0016300974822084384,3.183608920064008e-05,0.04068543981688327,-0.0018413816708177533,0.019509432262940718,-0.05962544216072532,3.153413289871926e-05,0.002765079545975053,-0.006689830404815973,0.020282973727978444,-0.02682629669451325,0.00010624444586061546,0.007670677792096227,0.005360138100678236,0.03659377328234469,0.011437829223966888,3.383460901115056e-05,0.015695442811645956,0.014240883661400245,0.04039343641986834,-0.0030761112896208185,7.816341381088888e-05,0.005879892964972318,-0.0036742957377760735,0.01202270313277664,0.009449312692459412,0.00013973994920595553,0.0031004367632522433,0.00983058068494362,0.008614015480149494,-0.008162466695531365,0.0006523025638860136,0.028717708838146866,-0.004267717356611945,0.01461885130347592,0.00031384082602590134,0.00012287638034194818,0.008135404239826043,-0.020096551767911322,0.07307610290999905,-0.08430665060175774,0.0017650838533282795,0.012105662569134668,-0.020301565644054203,0.2423710936487007,0.0009182753970243845,2.1539266241099386e-05,0.010892729772003944,-0.004781507418709499,0.014572332283993985,-0.007382609083205569,0.0010727710327788386,0.0019071580833657324,-0.03030277593071409,0.2134189513314297,-0.020948535749095634,9.455294847936266e-05,0.0038781050623019576,0.007286788203911359,0.010613285600490623,-0.006974959081390238,0.00016204352490900082,0.0005456385361151642,-0.03510266949148172,0.0572245010812409,0.04604508742746992,0.0003520967723111423,0.0031890097412091,-0.030173420136327133,0.13753081728207198,-0.0014497892469016679,0.0017004930343680147,0.012817708134813328,0.00791744512174887,0.036406105073198365,-0.024641579449530212,6.97752199293252e-05,0.004852354912515052,-0.040772380421485635,0.04995933995102568,-0.01684875300985928,0.002028740819362923,0.012056964839243641,-0.03423608040523242,0.11304632962989536,-0.3078232680073621,0.00011998960063745133,0.014372260801349832,-0.0016504495113743517,0.004757922552168111,-0.05196719369254666,0.00014061940341035536,0.005680484529227012,-0.02822038456684247,0.12054587155995833,0.01917982305011041,5.7137931154707876e-05,0.01730322743881414,0.0941425265954109,0.2729839184575963,0.10868351709349601,0.0032686381422854416,0.004784679773097248,0.027713031338215757,0.12572795511580745,-0.05719101591637676,0.0001096459895726468,0.00934710344285992,0.02926013622525238,0.16580537380238883,-0.039659093964776265,0.00012797894509984206,0.00444640879772766,0.015511136247698896,0.08073949671642904,-0.022341244001919884,9.086701747134112e-05,0.003204065460089216,0.046138924951807374,0.17948840565266977,0.044875352989053235,6.4606835015329e-05,0.025226027877775774,0.026251505119312155,0.04398581794152432,-0.026040239213637007,0.00029098521989645603,0.00491483547999755,-0.003642531697176168,0.012979391761586637,-0.0379762491769315,6.97852075465957e-05,0.006132540890869895,0.0031603425377056495,0.03758120649399936,-0.004999854904424115,2.1696751942886636e-05,0.00988808826364636,0.019624508765225007,0.060416369304096086,0.03095751012544822,0.00011354111008668963,0.011045777094655955,-0.04630391124389718,0.183178596904656,0.13908993665899413,0.00039844732890776784,0.0002504610917522911,0.05139048717864597,0.23895908531817922,0.06757019955171542,0.00012317738601688954,0.008353784137201987,0.0029980246000940953 +2022-02-17,-0.01819261878431684,0.13318881108897357,-0.00822370320123331,0.00014444884078326417,0.007328697338151659,-0.028933572360681555,0.09875313335401013,0.05218873596545335,7.030103202589478e-05,0.0035876955643220996,0.0033355239435146444,0.01053209714491546,-0.06411991812939831,0.00014650296382258626,0.00641097572196702,-0.007745810701902751,0.0076960213684266685,-0.020679109314323704,0.0003396788219139204,0.005469020953449272,0.018739789147844545,0.03914985853763227,0.0090177742666024,0.00025045648154635696,0.006508007678698124,0.022029166397856494,0.0553202366117398,0.027372394188695658,8.694823574952679e-05,0.017508916774893375,-0.046952540356436215,0.1653980987518987,-0.022845820379081633,8.329490492346534e-05,0.004620458442427066,-0.03263067254513899,0.310587187943339,-0.013539056909210742,3.6028078711876224e-05,0.010508118930182133,-0.006245204001694345,0.0053375385148274525,-0.010522988843636871,0.0009022988297483445,0.0095436946070674,-0.023096718578699497,0.04748403612096536,-0.04478386887921657,0.00017008442355016925,0.02235236386016348,-0.015764368419934446,0.011818789458221334,-0.27504082471112096,0.0006519704889211039,0.0009496120888127153,0.014066313359356016,0.18240242967094672,0.03646369214398193,2.298118709845571e-05,0.0009785540882783512,-0.08424014488017258,0.25656060149449056,0.07964044484646515,9.753942203109264e-05,0.009288635739183555,0.013759485181998979,0.07032477550301199,0.02842544951005181,5.5075144939575265e-05,0.0016615601715559965,0.022382423761956566,0.02159435456440406,-0.04325447468195104,0.0020215750016417096,0.019238984976038855,0.009925705915876734,0.07253182984996533,-0.09195763131655577,0.00011261205330609462,0.0009227953755243424,-0.006478399885879927,0.028581335644994134,-0.000717847308633945,0.0003509889658189003,0.01118371201631413,-0.03040063069121284,0.18968625279512055,0.004671356891968177,4.514479573488035e-05,0.01216713447712142,-0.015831627785867494,0.08998007636998634,0.0014507192656680221,0.00028997864803951027,0.03131798154539505,0.005504060311054011,0.06956970850845129,-0.004693851550212209,3.283168948289044e-05,0.0298798510547686,-0.0014617195889087416,0.013443453056109009,0.0005076989608267564,3.63274523001341e-05,0.00126175259009793,-0.004958091520525518,0.013118769840781,-0.006824660243094105,0.00012174305120473678,0.012086085436980913,-0.04462250547810456,0.36155802597389924,0.015091084880601503,2.8508103118708422e-05,0.009321272484068673,0.01588371938809159,0.045730903146078784,0.00688221590815608,7.700515685510685e-05,0.004150358816707118,0.011784038340861794,0.04942513967025445,-0.041294642781508066,0.00010901715326248733,0.0009373269191997875,0.0549406796996724,0.06214017432359293,0.015482969337271562,0.0005053556459777693,0.016032989898612952,0.004959779694530386,0.01690874732075852,0.002600403554923009,0.00012346303852719807,0.002452303601586809,0.043765277760694055,0.13955522117082927,-0.039379018365184565,0.0020128099676217986,0.010867075058923285,-0.03363339565474673,0.3110791449519351,0.024127672126835448,2.7802382563389732e-05,0.00029209033659209063,0.018031119616774772,0.04900027017387323,-0.036406157213816896,0.001203082721650368,0.04122664140053319,0.004705278255823798,0.041298442673554404,0.0029523845920432596,7.587125703209336e-05,0.010964840184571096,-0.03736250706997775,0.04587743085450355,0.0666280479561275,0.00019221280087188284,0.005816917335804558,0.05985837505921841,0.08999027182433077,0.11947278608234692,0.0003817976696413819,0.013584439197750755,0.06992019790119211,0.30642398208184246,0.1638179376084077,0.0017686025136796012,0.002397473343478329,-0.005348552468280714,0.019936430713173026,0.00341492250207528,8.607543440881257e-05,0.010249753195867123,0.006789519953731029,0.010435359132442288,0.0012814083668843733,0.0016173680546795154,0.04569042374635205,0.008302598699165118,0.02466434167716047,-0.018282441364806883,0.0001333707383644232,0.02359624109930049,0.0330947232796638,0.08141455464576783,0.02529274953881536,0.00016478477322397577,0.0002527269664598233,0.022395527505631715,0.1002101426237312,0.00033526935643092543,5.454607949570523e-05,0.010850006011042308,0.03561073611219442,0.11199850433632791,0.006643851482572112,0.003013608180172377,0.003210542984500661,-0.049014620235698136,0.23813700981387956,0.06174570038400004,0.0001023857030310885,0.018454022802526174,0.0005323175678736866,0.00320807971365786,0.0002528348301753694,0.0001203334678481004,0.004558676862487234,-0.004427728448658549,0.02749997340987268,-0.020611433238468854,7.615482118044756e-05,0.008480357338320905,-0.05776100573011661,0.3294465117875418,0.08059289969267248,4.4065350396444464e-05,0.012663661881636415,-0.035389311948934896,0.07108069377853536,-0.12625703047248776,0.00024274475510089604,0.0111102305165842,0.01580184698823709,0.06591911142717174,0.03910353087194193,5.9608869237756144e-05,0.00016219739435242614,0.001297624208574053,0.014475732928328716,-0.04261589127233529,2.3128084356478843e-05,0.002262219349047151,-0.008457096708521404,0.027856699545059514,-0.009225582705027827,0.00010612082103545914,0.000572141460222603,0.002258748840892577,0.010243318327699518,-0.017578024510671086,0.00034758037248069305,0.0022590558287241694,-0.028648654703132753,0.14069350424020063,0.056097246822970674,0.00011662777283525066,0.0005451292784014663,-0.0022364938439428743 +2022-02-18,0.010201897580225133,0.07694817494873613,-0.011227033815659782,0.00014020684586576576,0.015621897719679796,0.06762961328410824,0.21549515602679817,0.24633297582220676,7.530259076991505e-05,0.004449913475516529,0.0640160668118771,0.20126108682600952,0.0924164848936947,0.00014713851825701933,0.018722523631994583,-0.02335529945189613,0.021573126585443827,0.008306300006258647,0.00036537615775545447,0.004578222191091892,-0.03390989372665839,0.07256723445058015,0.07813764823208354,0.00024450268272901786,0.021244501318926114,-0.01885531773541431,0.050003344994674515,0.03940043004570203,8.233444026961387e-05,0.007403160434738985,-0.04253339011120927,0.13425590844248664,-0.002397622419869094,9.295793060130088e-05,0.005580747983362897,-0.022321613199136822,0.2493208703235824,-0.03913512354868521,3.070192160488339e-05,0.011994392940076112,0.012198891951016033,0.009038870182723284,0.018304992970491867,0.0010407610299827952,0.005716289165110097,-0.015783626298785453,0.036129980873868206,-0.02369257560796729,0.00015275693804245606,0.007850141534907783,-0.00017914743683728385,0.00012435889271354044,-0.021900997236804647,0.0007041385322310828,0.0033793449072621194,-0.005600775102245056,0.08126725464323473,0.02077595943596372,2.053786688692492e-05,0.003429000484380819,-0.04793427160657636,0.12468761402326259,0.021413525214390335,0.00011420203839359266,0.013001497156080026,0.003716666128510789,0.023973541407558665,-0.06154817869130871,4.363984251942223e-05,0.0034495788101729066,-0.01803030501214924,0.014113796999747559,-0.0024992579695088868,0.0024916221299996345,0.0073505611897308485,0.0032013725624159056,0.027300307466011996,-0.004603801454587958,9.649855008068334e-05,0.015634934216128618,0.0005974423233252468,0.002877868087229292,-5.660197643525121e-05,0.000321464732352477,0.013535045342047764,-0.053364262506820505,0.4000808484076855,0.03373907622864028,3.7571947373316416e-05,0.01254357947466317,-0.02623296449181327,0.14104863898086528,-0.002573476353664087,0.00030652456090134064,0.016892808138512,-0.046144356765959973,0.682571244826203,-0.13209011217983313,2.8054390592958716e-05,0.0028403655063299724,0.0027774734597307165,0.028722350438909288,-0.011904292240215107,3.230811723372057e-05,0.015346641345668138,0.04164110995073399,0.1034215534463964,0.02170612124990168,0.00012969821414146688,0.016444955805029065,0.016931616717076166,0.11940039071234129,0.02454369366848603,3.2755562128656286e-05,0.025384171188522653,0.006220658527760134,0.018716505985833735,-0.15771449096343199,7.368667616956514e-05,0.001657260326436121,-0.008706349825882628,0.03613172066365099,-0.144614220887925,0.00011017829944742263,0.001476734246958449,0.011006911825243743,0.011739466906081833,0.0020811330812179583,0.0005359110019224468,0.005397161455354396,0.01527984531132003,0.06341014554124029,-1.0623035459316074e-05,0.00010142528031636731,0.010500777480226582,0.006640520320022056,0.0204023228559013,-0.013298308287235838,0.0020890155315318047,0.027372598002728843,0.005321592901660754,0.06484993663039158,-0.03847960667621256,2.110154660940484e-05,0.017728431783498748,-0.048179293654238384,0.14989116407152656,0.019131037794372068,0.0010508861442905938,0.0016227497770434465,-0.014701951764946396,0.09974573827471642,-0.0011000060761192413,9.815361236758907e-05,0.0008668963937725833,0.02180128784839884,0.030461271423857583,-0.003961595482599485,0.0001689193917489818,0.0004258895569250959,-0.02807104217922749,0.038054304716892966,0.058286288641724054,0.00042340760971708855,0.008089759630247887,0.02303005279978688,0.07963676444849617,0.013834693473623245,0.002241463483400001,0.004168014530353364,-0.03534256763692587,0.1202888680592745,0.025465842799523703,9.42677258449114e-05,0.005717282947476801,-0.04659763607789098,0.06852979743255733,-0.06059507811761989,0.0016902915835063587,0.030582721129919634,0.033740666945048445,0.11425404767162048,0.03034831719231973,0.00011700329833271993,0.006571637264259278,0.001195502956645748,0.002856655884325759,-0.08543042833061044,0.00016964970259513256,0.0034233506495887547,-0.0407383303566114,0.16575326229769297,0.057310498661848765,5.998671309254098e-05,0.0010004629050480072,-0.01103789061477147,0.03331217912552588,-0.05321808475456709,0.0031405166536494825,0.003595468602064418,0.039215047425912385,0.1922520381779316,0.012485248537212565,0.00010146642583291168,0.02167484765757956,0.01762873067606476,0.08833545038216656,0.0025677885269808575,0.00014472608016270454,0.01827171226146681,-0.029737884174161424,0.17911022775768856,0.01473922987678033,7.853050281938027e-05,0.007248036483206272,0.019336452966897625,0.09152769113324347,-0.008571056285459273,5.3097209674916965e-05,0.031138017933209212,-0.0715220292904472,0.11056162098563617,0.02548218391092618,0.00031540227735525926,0.041936964537397516,0.01572608399635904,0.061938978777737956,0.02854326249245845,6.313510778724445e-05,0.0001541909689492569,-0.007189266608427608,0.0838365568243628,-0.003459210700927895,2.2124957308131604e-05,0.0038375091596764776,0.014043853461836288,0.047619949744809056,0.011380458652773349,0.00010308757440957918,0.0012627177138589529,-0.005392850990239816,0.023133617612799782,-0.007429484258528821,0.000367453881044301,0.009028468420778136,0.04426231003585828,0.21090198968837867,0.0500514805455634,0.00012020573682569352,0.008137813660417308,-0.003798370317673198 +2022-02-21,0.010461236359115644,0.08106919431446415,-0.007477119392867383,0.00013646263142399285,0.002644655514984176,0.030557390582801075,0.1077437874794439,0.03819117310785981,6.805100663950702e-05,0.0030526018547987685,-0.013277785277714144,0.04657154312703179,0.002607633663409653,0.00013188706916320012,0.012264120841173851,0.007594358526697436,0.007910107159659613,0.006767680976320895,0.000324023557184287,0.006398337559419208,0.028837788354602788,0.06991336490675247,-0.01776219979178904,0.00021582389069159372,0.02401831805572742,0.01617270180244969,0.038979050260646325,0.02330457910378729,9.059371424246439e-05,0.0012951030285221522,0.06292108849959131,0.2427796650537836,0.08760521742561293,7.60455445843724e-05,0.021746196070134706,0.023731746247310382,0.2063898554922598,0.039568079350129064,3.943119722622734e-05,0.0037697908295900653,-0.002445429156265536,0.002153599626064269,-0.00879950473553311,0.0008756587775708792,0.0006389895024984313,-0.00016249969877740397,0.000335457875072501,-0.04083739417826252,0.00016938558758955083,0.017703821523053564,-0.0023362497500235622,0.001598524824352414,-0.027729335980711336,0.0007143716992937051,0.006680033758541018,0.002004542009465664,0.02670447923613547,-0.09259580142371635,2.2369374401315644e-05,0.0035120048294621812,0.041028465974826726,0.11571386515995441,0.038755478911082705,0.00010532971685305189,0.011851343147219992,-0.008895618586667953,0.04820540705465193,-0.062342111455531646,5.1944816623654816e-05,0.000850742115134789,0.0005410992270349214,0.0004969558686384865,-0.014597592213072335,0.00212364569937622,0.02776703463437921,-0.027593658712696038,0.18005093344268294,0.032504289926132156,0.00012611478941060343,0.0013826574146014478,-0.042976758905038284,0.26676532718150775,0.035377924809477816,0.00024946665883345985,0.01700703896563046,0.04266535279091369,0.24336449763540646,0.03823457583701382,4.9383182436960454e-05,0.012429148467584828,0.03159353129782783,0.1630106596422709,0.041610507997351824,0.0003194250515367113,0.020522387408717473,0.05324299558964925,0.6777827978840101,0.05482022123858614,3.259884185184794e-05,0.013365631090737703,-0.008231925386216534,0.07859821228469656,-0.036713098848763503,3.4992137020996627e-05,0.005061983883330193,0.04286871275269491,0.13605104185157216,0.00951458804364247,0.00010149889794707845,0.007367651915897888,-0.02370091509396259,0.16542744381908878,-0.08500205776088827,3.30940509721727e-05,0.00782904924445332,0.004014876743320949,0.011469052306024737,-0.005178817688466879,7.761078316423699e-05,0.011266172499466626,0.004915624432353893,0.020535164779940426,8.288223486048547e-05,0.00010945335989157163,0.0053146387676204195,-0.007470384306659109,0.007878520161449043,-0.00032637246882610593,0.0005419682622202878,0.03268373248016807,0.0029837648480007598,0.010257207733398676,-0.09786539751806148,0.00012243947285338217,0.002290034253778634,-0.04040682290741057,0.15066385217317632,0.09407679562625222,0.0017213326705518242,0.038912588090884166,-0.03964604941872847,0.3807004888644643,0.028742467833887134,2.6779266593240467e-05,0.006346159347947575,-0.02161035445645925,0.05621141903825415,-0.03649038856851835,0.0012569228197589328,0.041694625481789115,-0.004373037358967904,0.034291781007254,-0.06777319863345416,8.492172145470218e-05,0.002801481069568578,-0.019186616424052224,0.027479299253744673,5.132726488005791e-05,0.00016479275940525282,0.0031491032106533796,-0.004708794643535551,0.00556370421716901,0.0004369124885724987,0.0004857911861049613,0.011031196691765537,0.014682425025794582,0.05858200386901984,0.005486339937800878,0.0019426023502601916,0.012721758372039017,-0.0003296884531619123,0.001456712451346513,0.000430328467439967,7.261398562706562e-05,0.0032648163879324013,0.005289914984656576,0.007121373337820724,-0.003768713360537553,0.0018465544995054717,0.004430372994865457,0.015010500512944105,0.05273062795442997,-0.0653529896185175,0.00011278420092827845,0.009418727201789304,-0.040663754602973626,0.10950049501420715,0.052731719797089564,0.000150539950691137,0.022602429297515842,-0.05873185717196607,0.24592747826675485,0.09851518709339792,5.828819441344596e-05,0.012286161153465966,-0.012835994496747065,0.040619153466072644,0.003423946733536838,0.0029951371370940923,0.0005493585657635313,0.04548611700206639,0.23167597845800117,-0.014448532913927017,9.766488183675536e-05,0.024417697054542938,-0.03367960464429481,0.18246719052522642,0.06032329938959782,0.00013385758456822976,0.03145914643449185,0.022020519936575594,0.13487241975524714,0.03035509739725058,7.722414675988218e-05,0.00021054061581499888,-0.041633932276341254,0.22695691549877367,0.0501036604455182,4.610535877181315e-05,0.023304718188910344,-0.017808868191164836,0.03305171887716828,-0.002347706324829323,0.0002627070111681558,0.0011154362054483446,-0.00010213435703489137,0.0004007833578200933,-0.0027676106847998594,6.336895649269194e-05,0.0018558458758837681,-0.04925274470570754,0.5974589215726842,0.17821128019195537,2.1269323277955453e-05,0.02279870204415455,-0.010190248022427174,0.02779623566222428,0.021118221585843623,0.0001281467906357895,0.011343563822697437,-0.02542549178528549,0.08984075228025368,0.023668991194837036,0.0004460915050080528,0.0010161266554060792,0.03513886795763339,0.20135256896603426,0.01935620470005284,9.995450829717166e-05,0.0012172154190038442,0.0003939025081378493 +2022-02-22,-0.011910659677858029,0.07368507926854079,0.008447214737768135,0.00017093966346928252,0.011808150507858035,0.007909052574790281,0.027368793738505585,-0.009215384744353754,6.933928075548388e-05,0.014604868868963186,0.046727338042912854,0.16530709552007727,0.03966246141683307,0.00013076055345126515,0.006527815221289177,0.03133358744182907,0.02868061790980405,0.11372873472811709,0.000368713868812197,0.010969483479168415,-0.023557245330135444,0.05954994573563802,0.04062671893523675,0.00020698596908628447,0.0019834018255757598,-0.03219246478135242,0.09622228974481206,0.08659214411806729,7.305085136180466e-05,0.003795918118048855,-0.008190917247713434,0.032059453350190247,-0.0004017169637860995,7.496633522908439e-05,0.0028070563417844285,0.01349883176689484,0.12827849355801546,-0.01859227909128213,3.608618308510809e-05,0.009089588109980304,-0.012338981721335294,0.011128497767975821,0.0069527830587892995,0.0008550422293780228,0.004670064507530511,0.026251697531320645,0.06470533563585788,0.0029776098067944563,0.00014186628096543363,0.01756330031051645,0.011996442813758813,0.009092051921483983,0.013412555032880628,0.0006449335043948179,0.005103254856390451,0.011294117525772468,0.16280519116232034,0.02080382307375691,2.067315893580411e-05,0.001034603792190443,-0.02825490807543897,0.08573925593173463,-0.010181107039272561,9.789606295098945e-05,0.028817156187801493,-0.013820345853393926,0.08067670999820278,-0.02842647958309335,4.8220593386590626e-05,0.005210088087779201,0.0008285120489387384,0.0006885558924400527,-0.029159541157095247,0.002346835246053385,0.006677666632654863,0.04051268180351074,0.2302441047605829,0.021823024369441817,0.00014479533883508458,0.028693870076379215,0.035375497361853386,0.1870535475520733,0.0036693167694264246,0.000292849736277095,0.04503201801174226,-0.03626955443642826,0.19877483673960775,0.009103961971861113,5.1397473461150686e-05,0.02409547788430526,0.02339659990519699,0.13263866154010914,-0.0044022004590718615,0.00029071632844500047,0.008829411158824931,-0.012948246697257231,0.2084857742403025,-0.014640069083881577,2.5772987890709733e-05,0.03141441798748777,0.023546395119461307,0.22563271839564678,-0.05165186307905059,3.486615533804999e-05,0.005876386937024655,0.018899527395879766,0.05937815398830963,-0.035043255249083784,0.0001025290677230127,0.011930908937629,-0.017895195739410653,0.13852768883171795,-0.024593369322946115,2.9839548020857362e-05,0.009869233752908838,0.009994336538868458,0.027532456130319953,-0.000942080620749306,8.047970869442164e-05,0.006558856743283987,0.004848798385328315,0.017496985829676542,-0.0009853562302213031,0.0001267125065311757,0.0010782602302704767,0.03213834010090143,0.025368160994322226,0.01377221018329186,0.0007241191259187502,0.008752229529002226,0.0197200051407209,0.06356380863636132,0.03710315520027203,0.00013058194148552688,0.006655104468756284,-0.02673504058483829,0.0942696235920238,0.027570721209384346,0.0018202383050489159,0.009394658849248602,0.014513974177820872,0.13585237006956144,-0.00901887534179944,2.7472698619091272e-05,0.022726215760478286,0.04700134729570247,0.12424014157279882,0.017959902103106034,0.0012368574216508822,0.015138276488144505,-0.017409307909490926,0.10992656857452092,-0.15817256071126204,0.0001054640581005853,0.004436164325496431,-0.010924128004929206,0.015453699118505217,-0.02916814633325033,0.00016683982066217266,0.021858431278387633,-0.009038836900058179,0.016527108695153957,-0.01843567938612681,0.0003139204298293069,0.027697938510081063,0.010843041086277415,0.039341786156706846,-0.007618968365480882,0.0021362268586488297,0.003408639164130146,-0.022484270927332788,0.07282756946148222,0.0034739255716101187,9.905430702720478e-05,0.005812571647529354,0.002370406295567124,0.003142455437694929,-0.025719009169235453,0.0018751277281756934,0.02011009166300933,-0.002344859049149208,0.008516271845056001,-0.06532910599108482,0.00010908957823849914,0.01811355073570998,-0.0329923554389167,0.09154191239468897,0.017315522639998002,0.0001461011779727059,0.0029004223543834936,0.010497941403589593,0.05042837716102247,0.0073901946671477686,5.080928424907358e-05,0.0023228753712669927,-0.00916638422747692,0.02451987376515641,0.0012808043022733487,0.0035432180981399635,0.0006203005198740395,-0.031526323680170255,0.15352927211040396,0.04561106090278192,0.00010214631644756689,0.008650569024939391,0.008170385532199438,0.05222934518376439,-0.09503151388390209,0.00011344588652983363,0.013280666358841337,-0.005508121275999275,0.029478308682053953,-0.0014415073157900476,8.837911132803658e-05,0.0011797846248817146,-0.03042104657324784,0.14012058400296437,0.01125475228077592,5.4565684444769473e-05,0.006922290031017325,-0.011567357891461055,0.021037902194581588,-0.013551785571993408,0.0002680779755070523,0.0016839993010511886,-0.008695371243807055,0.03479105666183934,-0.10067826529313706,6.214910593964145e-05,0.009257907815427159,0.0024516392703134615,0.027280108175668765,-0.05378673045729213,2.3186850752916094e-05,0.003993522263671502,0.008760829743620873,0.028422318465414136,-0.02054708369261456,0.00010774439916354993,0.010816606617537113,-0.00579532786393404,0.023071362574414143,-0.0683851759810541,0.0003959430619447367,0.013054695159270036,-0.00021149063054475432,0.0008615898492464252,-0.07129371546737283,0.00014059256498169133,0.007375775054472067,0.001544400100681823 +2022-02-23,-0.02362545886602916,0.15175254956986428,-0.031178698637913223,0.00016463828744924758,0.002364820686149784,0.033813182457449464,0.11505070511729976,0.031600716917098995,7.051918587897945e-05,0.020721048321781788,0.0033457110931416753,0.011360550965360216,-0.04476724636401372,0.0001362342315725691,0.011968608723602382,0.004927462110562529,0.005560853453944033,0.005431441594417259,0.0002990540577699,0.01648979641828361,-0.002760717789230661,0.006642033247522241,-0.03010379020300549,0.00021747970780939692,0.015759508496741393,-0.0018954898875465694,0.00651355843483328,-0.0049261788919584375,6.35403931942032e-05,0.001903582702524007,-0.043877717469001626,0.16706652884396225,0.028310106716263758,7.706273765067817e-05,0.0008052726688618004,0.0020511406685933685,0.019111635011126837,-0.007473470609164874,3.6804101292710183e-05,0.005766702994048887,0.014547792293162097,0.010117149999205433,0.026019865373665588,0.0011088778013303548,0.011627094161507655,-0.006317648914903888,0.015726602306330387,-0.00515377728055613,0.00014046964002079133,0.012539489786885731,0.011799703934274893,0.008924341247556892,0.020018543941940442,0.0006462778930036903,0.0026096226699396283,-0.014022691680934838,0.21237093545356187,0.11738206045120447,1.967700946962981e-05,0.009283678523353732,-0.01675272999354516,0.0539195273351118,-0.006490842795811566,9.229763019301393e-05,0.01590439798351499,-0.010449969232901419,0.062412655278598475,-0.017240086874771434,4.713073043741864e-05,0.004122236878622873,-0.03362905049282539,0.023996574420276764,0.0017636656414792104,0.0027333064645956445,0.010001349030541293,0.012433748218654577,0.08015357529058449,-0.058623214094630866,0.00012765307399683205,0.013814325149303041,0.0042856845600391874,0.021249007360921012,-0.016091114471976222,0.00031231280246790455,0.012032535103779132,-0.017349682613750313,0.10269110050468272,-0.01866766851857172,4.7590435863833094e-05,0.018247239826596796,0.04765929443876084,0.29988569426863776,0.05882703853769166,0.0002619260342169718,0.016352966044764883,0.054020924514481886,0.712583549539331,0.05199881273530946,3.145983579904306e-05,0.005713194265568199,0.010596940852596265,0.11558883238517398,-0.008716654687969953,3.062995386195397e-05,0.00220993477157541,0.05491449279992495,0.1725338344200451,0.04562253716251525,0.00010252634097858508,0.0108817088840325,0.026474992867281562,0.19604835354198433,0.055431580130248854,3.1193566219075754e-05,0.026497690455035208,0.03756346255986153,0.0990450585774448,0.15268203120678292,8.4083385060768e-05,0.001901109205697624,0.0017632780862215992,0.006361308874449399,-0.0031508080734897444,0.00012674269060399947,0.0008146929103921899,0.05335071775027189,0.05549759260373834,0.024070312601051996,0.0005494670870500573,0.05647270298773865,-0.017996091147582462,0.05832732119249177,0.01073996447845369,0.00012986501267068642,0.015537992626218222,0.03063080388848353,0.09020726564686575,0.021141320275962123,0.002179395504526618,0.0007146144978080733,-0.03978336105988398,0.4301744834511074,-0.006767494613981436,2.37814877758728e-05,0.027539234118709295,0.022289973977406143,0.05881582179322158,-0.0037905868229191693,0.0012390438081261255,0.036454917607847775,0.02012482761685269,0.16874233923138912,0.042070134039068625,7.942070665615754e-05,0.006304138062992117,0.008140019425799542,0.013983812581777685,-0.006805982041998178,0.00013738687111364983,0.009822891467197913,-0.010033914415357257,0.015287058419590846,0.004839646243298343,0.0003767475015763681,0.015931971183140485,0.03321367196829444,0.13308028822458953,0.018954492325332372,0.0019344321453718125,0.010830690898818947,0.006406476198119197,0.025503370816664754,-0.014868925298973263,8.059572416092745e-05,0.00031246236911585106,-0.024854017489708235,0.03498395835383415,-0.008939740500957312,0.0017660575190136863,0.018757763807599116,-0.0025896036961623207,0.007239751443021869,0.0005857813021166304,0.00014171821925923716,0.002396865381524532,-0.018163201085706435,0.04990003659074144,-0.061836694065084886,0.00014755431118732273,0.025440574886648186,0.008921113805932586,0.0305392544399937,0.0069882887228317515,7.12975447331472e-05,0.013036068140202998,0.04878642789227195,0.14574208087725496,0.005263491320446989,0.0031727226753013246,0.0011215644818591565,-0.004814928948616199,0.028624927095435362,-0.029292148830365784,8.367313947182841e-05,0.010199608556738439,0.03632049703748159,0.22332848827606108,0.00878965497447381,0.00011794198731432038,0.007657906560196305,-0.01809835690979098,0.09254410122760189,-0.05360135269509624,9.249944037257594e-05,0.00633838432323985,0.0411297856920821,0.1750729844621598,-0.004053237058098424,5.9045214724089144e-05,0.026283849696805025,0.03883576964380063,0.06917886385053408,0.030585295433860415,0.0002737082483408222,0.005911197852501774,0.012105832517505678,0.055616683002101104,0.019459780021930446,5.412575324170148e-05,0.003115424639807466,0.011568646527794905,0.11701419559102252,-0.031511092900886745,2.5507934066269174e-05,0.0003794820418692546,0.0011026698739965647,0.0031161774231361055,-0.10757620703228161,0.00012368934712691542,0.008906979085338638,-0.01937042476624205,0.06076135804648163,0.010690297360819865,0.0005025041389193355,0.010718327593162609,-0.002695356556202289,0.012847926525219865,0.0040180246907850535,0.00012015863215212769,0.012240571533721576,0.007985451621375523 +2022-02-24,0.05380208682593334,0.33577229035117,0.09167251230353858,0.0001694497185587326,0.01042895088454077,-0.05698956466362583,0.16573713924447459,0.13187148407083424,8.250609409364851e-05,0.006565846681595239,0.049344221294843685,0.1738497703132458,-0.04483385252903839,0.00013129838463317396,0.005799557781800661,-0.03784460597647039,0.04000803882250627,0.08036383346705907,0.0003192453507416702,0.004808363390105243,-0.013671584983167652,0.03571592381086087,0.009389746418205336,0.00020028791743574977,0.00507086650720462,-0.01703494172276053,0.04395593202316611,0.01855760438600867,8.46193916784528e-05,0.007244562382564277,0.034378909348499395,0.1262297091345896,0.016983717655146925,7.991353983776156e-05,0.009765336972356273,-0.04059405549045743,0.3609062309557995,0.062023306955415414,3.8571513058710046e-05,0.004398266008118925,0.032030844878049136,0.026578866229867,0.0888478830572588,0.0009293444922884586,0.006063144787649359,-0.008349270706998126,0.020774960449129472,-0.22113575471344665,0.00014053038079605846,0.0005161853180369197,0.0041173957795330104,0.002647212525758193,0.0017159436380684697,0.0007602530378155483,0.012145012953266738,0.027203175443177754,0.42377649850557136,0.15923681104459347,1.9129583905174015e-05,0.003443733913072987,-0.02618610161645893,0.07916417161950903,-0.04924566498519878,9.826372310983784e-05,0.04109503794259481,-0.011024447017347182,0.07224231781464964,-0.0045454661907735035,4.295630937688925e-05,0.004292182656954792,-0.006245689540622926,0.004932813694248728,-0.052732988952411027,0.0024694978485421083,0.006801277316723903,-0.0336096488042272,0.2208605112500557,-0.010472700505845449,0.00012522700938198057,0.005066878503353124,0.026280516172344472,0.14045538861461607,-0.019547229438357912,0.00028973683861105036,0.00978564902300199,0.0073749188887015735,0.04717116684048043,-0.12272611064293547,4.403941942126413e-05,0.01223220413525411,-0.004779742778258528,0.024304471361157157,-0.08135074107151072,0.00032411949519168973,0.02137885282909588,-0.014834998749280062,0.17439635118044208,-0.004352324919734753,3.5300458899126175e-05,0.0018066120846077839,0.002347804197609971,0.024190237818874315,-0.0013311181908233541,3.242675168086562e-05,0.0033919070408885478,-0.013514434182870376,0.03963134426853197,-0.018192076027935856,0.0001098453861194317,0.005791998580359993,0.0015243849269807109,0.011510174491709206,-0.11927519393122936,3.059180585562558e-05,0.007583224136955375,0.0017158243182743018,0.004427482552566767,-0.013982818019031467,8.591981685651902e-05,0.006615971365556258,0.011961829502896025,0.04313031446996791,-0.03561768432234314,0.00012681294222821124,0.00579548356182947,-0.06132695694547451,0.070928073067932,0.0032641772963415572,0.0004942069123580342,0.006671567341250756,0.002718740147626798,0.009522436982191981,-0.061143003262037865,0.00012017264007152058,0.002340002431450549,0.0018235829752710235,0.005387122379043092,-0.0019960349753954565,0.0021726404564579517,0.012951956613426678,-0.016888080281973143,0.15494841759232703,-0.05413792062695497,2.8026917475173548e-05,0.03141147493049967,-0.00039177181681536053,0.001257778220285544,-0.00392774497568103,0.0010183577906380996,0.007581992156469671,-0.024572047006149695,0.16263173737171802,0.021783505694161796,0.00010061475619262696,0.004044975628463647,0.044649322085268596,0.07094409833296174,0.0672460043950827,0.00014854019244044036,0.005248879646847188,0.008902707681807488,0.013307265227545757,-0.0046644354616169345,0.0003840052965246113,0.006919128522353142,0.023641640459270055,0.10092716079180412,-0.02669339451339414,0.0018155988262550061,0.0035012124699667457,0.010551327427324507,0.03916468412147243,-0.02317962547663648,8.643762838029665e-05,0.007314110032761783,0.02358943014049212,0.030393951950020284,-0.04048725021956416,0.0019293342267360056,0.014784353631888935,-0.025141210253895263,0.09725344272212376,0.025340214746649985,0.00010242293872113983,0.004151415473547161,0.00030214652835536856,0.0008739647327176528,-0.07834736369860493,0.0001401470875271504,0.03414526464536853,-0.013888839569447397,0.05234307541149146,-0.017305934602390247,6.476205937018923e-05,0.0028746061672278965,0.006243941490530669,0.02128988159672524,-0.07014222196186923,0.0027797365442525724,0.016418102206490644,0.016547069465633793,0.1063274905257463,-0.030628924502620433,7.741339191510744e-05,0.014850577475194977,0.013971720042957018,0.08840790120967727,-0.00040664284826306474,0.00011460922576947747,0.00518537364109142,-0.027423438107025203,0.16296625298333037,-0.030527209257433893,7.959264191825186e-05,0.0021968757520110104,0.06405269604189036,0.2571406664274082,0.08319552905012936,6.260572426570595e-05,0.0009373773834628505,0.000510453140302242,0.0011683216799927888,-0.010073853250587878,0.0002130212055927889,0.0015491638763450977,0.015515881662803899,0.06917036491022999,0.039339504236753586,5.577900561208099e-05,0.002306140112650594,-0.00928101035633779,0.10457498665858879,0.010956278230000106,2.289806189194805e-05,0.0040953577453483,-0.00791182755706065,0.028838824285109425,0.01774218779988495,9.589770782207131e-05,0.0158477324071384,-0.006112802488937236,0.021696867553270657,-0.0014992063666258706,0.0004440903095105699,0.00010548988724332726,0.027331569373494118,0.12365783344428928,-0.0054160744095335545,0.00012659446926038177,0.01082128957382169,0.0009103194359024875 +2022-02-25,0.007863186397617806,0.053895560913940446,-0.009636736713679461,0.00015428800323663338,0.0017397575506469859,-0.07365624008400683,0.24737667096157384,0.12944981753268628,7.144327120239894e-05,0.015627353138200663,-0.03669291678752284,0.10502959123157235,0.0358809127454446,0.00016160982695977025,0.0001775069962512599,0.0052904071729131304,0.005825479869164647,-0.039504357862675775,0.00030649630909830876,0.01895139315148334,0.010361475880075533,0.02288327477453097,-0.025216860092330994,0.00023691972353259377,0.018114958335575273,-0.009243238956283695,0.02978668147948735,-0.0014069154633536923,6.775616220437118e-05,0.005610113554481388,0.0020558129384853144,0.007126460241899964,-0.003808678102501623,8.464466365974856e-05,0.00822134863388397,-0.01440837376444353,0.1200606248867224,-0.04637875208189044,4.1154087911202704e-05,0.0004045128831338639,0.004155461667832985,0.003372484366548324,-0.0035837324048942657,0.0009501980219329232,0.006711201764566269,-0.05805250858274324,0.12781304453167003,0.1640982437374669,0.00015882091647575615,0.003704354364924624,0.03326132113838599,0.027769063671434585,0.1413250041054016,0.0005854672647384183,0.009979441829426347,-0.006483656745659298,0.0848528425707623,-0.007209309713783466,2.2770701398566384e-05,0.0002110105544058439,-0.05569171095371203,0.1734165396530399,0.015954389170283197,9.54005947524203e-05,0.022313001058684542,0.008507765660572427,0.04706009879835226,0.021680537859947124,5.0889068669331235e-05,0.00376559460841899,-0.020501501707508026,0.016314223696392655,0.0037833495402535954,0.0024509939166440604,0.0007579608387287674,-0.013344037516868214,0.09364064059378896,0.01100382509533827,0.00011726677619945637,0.01787977241790163,0.018515594463732188,0.10404258694687836,-0.015472188368847136,0.00027557178537797675,0.01700835810096579,-0.07315768785361067,0.4335184975390708,0.08876886744782027,4.7534977676752845e-05,0.05176503258901445,0.020795082993957967,0.11432522263249634,0.009501874926139808,0.0002997819012780418,0.006167443415289707,-0.032570138439941304,0.4696912580546695,0.00964345896643131,2.8776459436867243e-05,0.03089671143989316,-0.0030031313209974344,0.028085089420156233,-0.06364152623374672,3.5725656776885164e-05,0.007097809637612697,0.019002571772825612,0.04924062186416672,-0.004202811898784195,0.00012431158628067009,0.00992028805975356,-0.06445101609859832,0.3999917962731601,0.042482934867587425,3.72195450721636e-05,0.004284960979724124,0.004264326611470343,0.011716403348151015,-0.026291659271083054,8.069256646586812e-05,0.0003909421676481545,0.004478599473001111,0.017907300952358603,-0.002576826193834796,0.00011435645600808084,0.008692727716767485,0.045282578604677846,0.049301322200388055,0.008464010779913324,0.0005249865105077078,0.018918301977448884,0.03777649874891158,0.12398102756955988,0.07203870348918846,0.00012824855518371708,0.014935494264969467,-0.06395955788613131,0.23062690418179024,0.1404233174017992,0.001779978097872041,0.022445220645759198,-0.026876377963011212,0.2553759897331529,0.010410671884367846,2.7062808999841313e-05,0.013010013237588514,0.013235967402116388,0.03429303697094011,0.0010283376694500922,0.0012618885827756616,0.003001318456396858,-0.014866464633265155,0.1030549743512808,-0.024666786541665882,9.60648227393724e-05,0.0061808364120512485,0.05779668092421367,0.07919117913214978,0.0743629350923099,0.00017225485675937576,0.004929269823844485,-0.00652548921170232,0.010281236584118773,0.007667931714124665,0.0003643104567332166,0.0053122418709118,-0.013123971149820276,0.06384429028886204,0.0056579011048313475,0.0015932852828476475,0.0004501012702163112,-0.024105235362009907,0.08994973706312552,0.023450950427799717,8.598087262807581e-05,0.012372244661891333,0.026115158682756264,0.03538647384109827,-0.06061477729502416,0.001834562754902677,0.007832244110999347,-0.028136567858839456,0.09111353571570786,0.01923759927222251,0.0001223500797904865,0.01588193127405896,0.01168020697868407,0.032079942235846745,0.006117237645608259,0.00014759693439344218,0.004776341661586845,-0.003382597736874284,0.012694092827028923,-0.0259458710810131,6.503731584383127e-05,0.030993845620814496,-0.020363932065932486,0.0638620942713527,-0.075288679380475,0.003022292830927591,0.004805251750572328,0.035310744695230274,0.17624344193564753,0.004813504552847629,9.96631206753443e-05,0.014088983644605629,-0.041996452728324106,0.21412668571855825,0.06862257463866146,0.00014223372965073067,0.008398438786101765,0.014135683172720603,0.09235809409883469,-0.003967451152795714,7.239199398658319e-05,0.01527653611459227,-0.016254831047835032,0.07694414178792448,-0.00912211063520591,5.3095081856591627e-05,3.2523256518051605e-05,0.0024629216609934495,0.005505191709752678,-0.0036027605643001027,0.0002181260551687154,0.01532119755727195,-0.007622352464047994,0.03310080098901712,-0.043599776871983666,5.726178734242583e-05,0.0006885868684887268,-0.026216242417937286,0.2777126984940144,-0.00674264021574571,2.4356001452031568e-05,0.004468868102421393,0.0037440567830235817,0.012649037114016182,-0.10030299327454197,0.00010346511013763156,0.0005639823247911056,-0.020014027958505605,0.09272342202127071,0.003101585755838652,0.0003402303264490269,0.007525055252855304,0.022575870728491026,0.09252352847180338,-0.01421613844728068,0.00013975395879819874,0.008039916663336867,-0.0073083865943689335 +2022-02-28,-0.016672966659383812,0.1061544787527032,0.015431151966584669,0.00016609675334325336,0.0023630243764031144,-0.011464905215409335,0.04370088093653231,-0.006992392273437995,6.294928527252667e-05,0.004998229741391729,0.00485322921399228,0.01567656682742894,-0.013989215892853225,0.0001432112216686157,0.036352610026031816,-0.003182027983268922,0.0030848747343190566,-0.0015188610302376447,0.0003481242824066892,0.003213207189875761,0.002484836436284845,0.004977675894483404,-0.01011100088066057,0.0002611974685096496,0.01127895599459993,0.026111250487242867,0.0616118184974964,-0.019178013367852655,9.253592774629204e-05,0.01252284413528895,0.018048110938051646,0.06671547164462925,-0.04536394505137666,7.937706678576004e-05,0.0025466510154145785,-0.005156802609082605,0.04840425541024442,-0.0002459514899595983,3.653386154079135e-05,0.004688969209509691,-0.01201025766391971,0.00943804710629624,-0.012110034632684636,0.000981329762641443,0.008093240241846412,-0.01879366091494187,0.0448740875010173,0.010783998479101022,0.00014644604344093572,0.006600506368708764,-0.012216317700689597,0.006799351613503221,0.010124017816450965,0.0008782075703079688,0.004766261718259505,-0.004850071801551156,0.05745931887309684,-0.00011626734787890119,2.515419851068176e-05,0.007494630719455553,-0.03315246685533361,0.11134452914076769,-0.02888848136475227,8.845003403367106e-05,0.021101792806378823,-0.0014581185786480923,0.0095308333824375,-0.03465062778547916,4.306493386473536e-05,0.0019727246902818455,-0.005743978738371058,0.004193115487848573,-0.11968790953537463,0.0026717694042897784,0.003351052979696542,0.029667350165386012,0.1618875389822958,-0.0018265594046811423,0.0001508055915174845,0.014033504143979698,-0.08128181180306603,0.48529449027153937,0.030351950937674767,0.0002593559685956668,0.009559369804824563,0.024307531475667724,0.17244265868771286,0.015301877105366662,3.970608817453896e-05,0.005484611334566352,-0.04977578602136589,0.3330678622429625,0.052804172272074505,0.0002463044195592262,0.016316490625357293,-0.037986812504716944,0.506293622369066,0.005460043734828244,3.1135842928974165e-05,0.03448202964870624,0.03774308290650606,0.377403879591232,0.16026690376456265,3.3412788361230225e-05,0.0007646353539531936,0.009767600580839598,0.03219368565903611,-0.023427383621996672,9.773271162378249e-05,0.0001964971161019717,0.002832188186371354,0.022427282630537036,0.011347467338858388,2.9170093884500753e-05,0.017977889275689177,-0.009868475312057043,0.02536457812026946,0.032861735654917366,8.625808218102189e-05,0.013730370567351075,0.000798525857555279,0.0032539770014378437,-0.004985254275708473,0.00011220781366951133,0.008336579838891278,-0.011015301750862572,0.0098125103123784,-0.0027595926442710813,0.0006416405964195532,0.004613108969669109,-0.01752455657451079,0.052753067997893394,0.014704824652191075,0.0001398251598779541,0.0019067634880525213,0.0548212507744949,0.1897350874125954,0.06542331641670117,0.0018544727792194602,0.01153993053442824,-0.031806268111876486,0.3565023663500728,0.0016230155078125557,2.294206436723095e-05,0.012890759586089472,0.031163698240022988,0.08336935898422478,0.00777064648407117,0.0012221198494617228,0.026404124916829096,0.017596698098110083,0.12094237583638973,-0.04287569751318772,9.688986046715337e-05,0.0018600652790395052,-0.013787404579565635,0.01928415363653924,0.01640482960592085,0.00016874360506799767,0.01821497117761733,0.021580218027212484,0.030665769269738317,0.0010722998026756114,0.0004039297848243208,0.01835788264445437,0.0007379759912833314,0.0035138820829284587,-0.0016779164260357124,0.0016278162914535085,0.020574643574357575,0.011211870490855,0.05269094901602564,-0.03505410013223881,6.827039604320108e-05,0.020076435971281937,-0.013495348052627488,0.02051714840149614,0.00015373682158563356,0.001635099861700574,0.019109352930980282,-0.05698849368916836,0.17670957252740468,0.11696551155043212,0.00012777419047831787,0.0037911075485691755,-0.0019711484250256317,0.00505497382953228,-0.014014576997629037,0.00015807412697154332,0.0053107490217191855,-0.03394516767446452,0.1309376564198587,-0.006664409370638726,6.327429570667496e-05,0.01758298299877601,0.003764043796514463,0.01195161830421702,-0.0004782045521090731,0.0029850115178970222,0.03161490162849187,-0.050186547137467015,0.23473528139594296,0.08904442919290753,0.00010635294429199902,0.0057834993137101,-0.0034147594269963613,0.017860735440113795,-0.021570735231859494,0.00013865053811481116,0.008585144919356177,-0.034212477826752706,0.20104123417529754,0.0367018956231591,8.049114141279071e-05,0.001960664794860035,0.005342009032256306,0.02353133155899387,-0.011128660772035056,5.705655024001519e-05,0.012444752786005252,-0.03686421028560478,0.06746251472207787,0.012993216865247528,0.0002664230544300422,0.003037950345417424,-0.03394242764838236,0.13253807335721823,0.10744642150672158,6.368198962275331e-05,0.002379176789318614,0.002128620107603177,0.02232207088825397,-0.035580680925887134,2.4603390674826766e-05,0.0011112814594453802,-0.009390422056341304,0.029327960764132598,0.01866469569475801,0.0001119211619224564,0.004174664181494842,-0.0019220887995080168,0.008392969471054891,-0.00036415892758234823,0.00036098219009704545,0.010721857471702675,0.05434557129561698,0.27793079687064803,0.07527196538592425,0.00011199516705947351,0.014678377934243857,-0.005846528120708814 +2022-03-01,0.02151018000630519,0.17652151326396218,-0.05177445684326774,0.00012886440914515996,0.007314527562286694,-0.03968146363053549,0.15065346554665465,0.011290361737283977,6.320029169072479e-05,0.0054645603219252974,-0.012192201942328201,0.040589395921350926,-0.12229650308102753,0.00013895262768199492,0.006883870738118672,-0.019172523234415255,0.022268863740977342,0.0027209807186569326,0.00029056886108893773,0.012455749595756821,0.01671588422009749,0.03269810293694693,-0.008172775694527408,0.0002674881641182426,0.0023180830898633575,-0.004832377491897455,0.013733138150625318,-0.05303418838643586,7.683123314725661e-05,0.008700195785442311,-0.07136734733664303,0.2136935364867426,0.07515471393827752,9.799367013215549e-05,0.016620426681209027,-0.003431549206293515,0.029387775801730107,-0.022496238077240067,4.004258695117355e-05,0.007145182342149121,0.007670483006814474,0.0069610286999949485,0.0005851994768066459,0.000849755676509381,0.008836389372283038,-0.04534823611416201,0.11518831970790976,0.0653495601912017,0.00013766192634652306,0.018938657694243403,0.02387135719273414,0.018020442044951374,0.04217205142329648,0.0006474944190120441,0.008524834782070145,0.000812787788649873,0.009744000578658254,-0.03753300564055023,2.4857798226421365e-05,0.008720692990062673,-1.4076092094271752e-05,3.683330635628394e-05,-0.08569722718859386,0.0001135252409223703,0.020000888298775974,0.004801043297983579,0.027191800019270046,-0.005095127196388262,4.970035414935543e-05,0.007279243625788239,-0.004107368709538464,0.003524685285920649,-0.01613040658996591,0.002272826672277862,0.005742852171850474,-0.06822412064725225,0.4056658177604582,0.11351600261975636,0.00013839539506599704,0.010060024383670634,0.016887508518234305,0.09043752540815236,0.0012704578650267304,0.0002891512955673378,0.0006379398270700031,-0.03490301345784711,0.24990195267081194,0.011468190328845534,3.934180043885023e-05,0.005345045019646777,0.0757618989139292,0.48328940030993833,0.13173809435349174,0.00025836304162558997,0.0001451616016267909,0.02052774204444294,0.29556504957930946,0.008874315335849724,2.8821616505801543e-05,0.03053595161823491,-0.0030275824074894753,0.02874517063883246,0.001598401214467271,3.518947527989269e-05,0.005396250686993672,0.011934581687440524,0.03291136440681677,-0.001183888748356851,0.00011681108825055566,0.00909089054320205,-0.009726025474795123,0.06559018083225933,0.0038149854776759018,3.4252237807290085e-05,0.01787574560181244,-0.025551075554857878,0.06944406533754688,0.11618062141218478,8.157393856059147e-05,0.003595576206879788,-0.004758112317426394,0.017179011393667423,0.03592911711147904,0.00012664414531941015,0.0040747764931459655,0.04004126225525541,0.0412016027298924,0.012039894436321273,0.0005554810026806362,0.009613578652136894,-0.018907977154959992,0.07220732035363274,0.023892821736818406,0.00011021732072678621,0.01264476790492747,0.03918669175500963,0.1306540981319751,0.024224994640243313,0.001925017752593062,0.02325015646359841,-0.03663157002006817,0.37479872184873303,0.021121778544859273,2.513272775919508e-05,0.019125595224883635,0.04171690489081182,0.1412473136049907,-0.028060319779566013,0.000965613107484869,0.01342009427890907,0.014239855555972085,0.09766269587847932,0.010916320708703235,9.709626380066823e-05,0.0043594512576340455,0.01698678744385766,0.027158963352660968,-0.04725074349235098,0.00014761940472140045,0.025832455705146758,-0.012606621010114553,0.020196442934187053,0.009281736386484666,0.0003582842555799905,0.01230371188824102,0.02941616509649896,0.09309296405364169,-0.035609691892697595,0.00244917341772806,0.003521396636713783,-0.014543408799678742,0.04984502354025643,-0.008963291760550942,9.361270115686382e-05,0.017610570044964597,0.01671191808264121,0.024562895594604922,-0.04615026708604433,0.0016913127691450772,0.024830222863975404,0.012364730820712422,0.040360239661270586,-0.015563709089259872,0.00012137995336918647,0.03388789813743675,0.012389445498308168,0.0362493855676615,-0.02962255681754372,0.00013855161614905,0.006776479216165959,-0.011562962684153464,0.04684431575518556,-0.04851895889563923,6.024571312168827e-05,0.01622642354218225,-0.030661581440088143,0.08668030446130276,0.008103433097345356,0.003352680594025702,0.0018835316978833185,-0.0038000942029292367,0.02118117445148393,-0.05927269006505159,8.92452059924529e-05,0.01756717766816667,0.02708657396587295,0.13108098595450984,-0.08051238830280379,0.0001498563539866964,0.007480150794822836,-0.01094981482802225,0.05870679821450804,-0.0004040739944686606,8.822000507203461e-05,0.000320743657386193,0.020910669092451088,0.1100580557285441,0.006553688681403959,4.775221134200459e-05,0.010878465782633535,-0.09434197731323138,0.1608924854921287,0.10339430039107321,0.00028588976500139567,0.002833602753187054,0.008315970315986802,0.03216344263755426,0.01020765021532597,6.42931610260971e-05,0.010332909405920413,-0.01661055819654247,0.16240298604744174,-0.23181450442909476,2.638891306476237e-05,0.0033975434361676986,-0.002374773438974289,0.007658546243286229,-0.037700380781819705,0.00010838889988820928,0.0004992328359774525,0.01750383801331936,0.0708259389725599,0.027952233752313673,0.0003895551189750716,0.012282956782821864,-0.049554855901460394,0.19949449530081173,0.12014332248426304,0.00014227450949183011,0.004888200103759355,-0.0031535425241207655 +2022-03-02,-0.0022370800063992082,0.014120818531386478,-0.00023529501626099432,0.00016753603323963097,0.0073134456530918055,-0.00677732005491072,0.022514713145567498,-0.0005585629006982486,7.222742033132381e-05,0.0010233249422001817,0.0035216392549240754,0.012888937500113166,-0.009417043574166877,0.0001263935619247086,0.0026737219833827307,0.00649057225577129,0.007034243072247755,0.005992117386030544,0.000311410659169614,0.030927360403252984,0.045130413696271916,0.1134772948932212,0.11274755976337138,0.00020809330721840438,0.011830622457538813,-0.01569977841690904,0.04685845903973745,-0.020688786876177163,7.315638894059149e-05,0.0030032206334195295,-0.010482279081809705,0.03704592448965864,-0.010015900649132499,8.302428349033484e-05,0.0007201002786774767,0.027086933285089352,0.23813589351772213,-0.032015667653317585,3.900619542701695e-05,0.009872247867285546,0.0044534487369030365,0.0038620143413889444,-0.12545771461427327,0.0008892571423049513,0.009646147840076363,-0.038437090966339724,0.09716670015803477,0.0377368568899577,0.0001383231733776954,0.012289206960058455,0.024350178124213948,0.018205877994841392,0.03001396835267369,0.0006537547731186614,0.005780640314203984,0.009438640580607597,0.12446947535782393,0.005899664740032145,2.2597967467660235e-05,0.00433918071845422,-0.012245762433455981,0.030843294190991147,-0.034226330157126464,0.00011794407032439703,0.014669978261800477,-0.01841307419783665,0.09799733670565292,0.027210500381666246,5.2890034291879324e-05,0.004687999539179326,-0.0014221921288216086,0.0011648058741678053,-6.440490024701252e-05,0.002381374457646498,0.011915255493141236,-0.0012440244865077347,0.009318226852220661,-0.10619256938420937,0.00010986206488083295,0.026121831214251354,0.030352051482013382,0.18656508527155088,-0.03684130623350769,0.0002519218930633678,0.014189665039127265,0.03322522287412964,0.1678035194197866,0.025526078599315327,5.577348646779532e-05,0.048268867771802906,0.056939156703137116,0.30071436895352477,0.05231496887900652,0.00031206399058105773,0.007008702216175554,0.051131655596662016,0.6315055571379038,0.03335691023476351,3.360028101842128e-05,0.011039526037690926,-0.00021479869618827604,0.0017713720779639459,-0.04985910902685582,4.051385368698322e-05,0.012377983563038044,-0.02584080911551704,0.06210169158340621,-0.0049003056826607445,0.00013403722677568755,0.0012725515040770683,-0.013126735942243483,0.07813958036766266,-0.04245299116214304,3.880413890493378e-05,0.012255626282057841,0.01860355663527358,0.06302607611819078,-0.00776860432179675,6.544147710711877e-05,0.0009398386200238857,-0.0009213173515272437,0.003060995698366245,0.009646153644450903,0.00013762430119546666,0.0023547875990366247,-0.029089326129371058,0.030520904258941727,0.008549593222143293,0.0005447682967751892,0.0023294787607080142,-0.004735191023080254,0.015515733941997128,-0.01521626509641742,0.00012845505186954233,0.003263150524626419,0.027493741058000055,0.08589937436986629,0.009005171084333855,0.0020542959597715745,0.013839966315315947,0.03986975960053807,0.37480810344455184,-0.053695780497927136,2.735374792729876e-05,0.012667199084299615,-0.008017603507032657,0.024530589949726372,-0.06250688035263831,0.0010685819948190896,0.009025955580810282,0.0076449063596407615,0.06533484998386302,-0.09357908925610899,7.792071253238235e-05,0.005782460214469059,0.015580451935546679,0.022139674747476874,-0.0028910436957670037,0.00016609409812390398,0.011341065655971875,0.011704445542687774,0.01685684082729719,-0.00031553066416635045,0.0003985461087326026,0.004603876806665697,0.015796551732054867,0.05308714033352606,-0.01449198933272221,0.0023063398531750095,0.003986544669379803,-0.00903999378474156,0.041241171248657234,-0.03166166904432148,7.032787765813812e-05,0.025184079307124622,0.013444547024620727,0.01862309263118905,0.009625775089953418,0.0017946161134095077,0.0015157022040353382,-0.008103916573422564,0.026212401884692316,0.0006352235652364026,0.00012249099998318906,0.00855784253932837,-0.0008803566031251645,0.002277022715812152,-0.003753069443009335,0.00015672982147470077,0.011995257981257702,-0.010356566925781897,0.045309359536820984,-0.03377420039511242,5.57881317295905e-05,0.010426599368242945,-0.038485885704842286,0.13631415588121767,-0.08716840228714826,0.002675953639956056,0.006420984192599875,-0.027609445398441516,0.13775985596769225,0.021783049711031847,9.969550407235861e-05,0.009028889212665262,-0.0035429736815208927,0.021135158093069997,-0.08467900961868217,0.00012156910234105042,0.0005188084970899455,0.007368234393302023,0.04569160380807421,-0.04795304234013422,7.627386068792674e-05,0.0018765701125296277,0.022008090068044318,0.11370810543274516,-0.005367513472720695,4.864501325988442e-05,0.017961954374128997,0.03152850952658008,0.05462488742880963,0.0161849270343028,0.00028141178411831994,0.0007871860078191551,0.014878097692351861,0.07711069565337618,0.0265915572756642,4.797855465590135e-05,0.012090842588022566,0.0018336678473082786,0.01959930267321401,-0.0008046741512391615,2.413855872646358e-05,0.010171800041799222,0.011017832546703906,0.028342967549265012,-0.031181401086708013,0.00013588133733295697,0.001761632479919807,0.0060720874318575075,0.021288477449629032,-0.0777298027926072,0.0004495949095823578,0.00288932928873327,0.006244162201863419,0.029843318032566193,-0.01657196935912509,0.0001198391899866506,0.048097797222161405,0.005921803267033638 +2022-03-03,-0.005566925777318348,0.037634398971283504,0.0007863503490880648,0.00015642891399949042,0.004796141406537347,0.005965924343413125,0.022500039355923485,-0.0032025762439312645,6.362165911835529e-05,0.011306455899695695,0.03543815293117464,0.10973412239255262,-0.03867881034113691,0.00014939174074633457,0.014660760699918422,0.015772894895634146,0.019935926261461366,-0.06272812463988746,0.00026701941927271264,0.00013951931882690786,0.009888709321399762,0.020611011200116176,-0.016832589146326283,0.0002510372010026808,0.02945915388482009,0.007139897960370949,0.014662713082598818,-0.016048926778464718,0.0001063223111724191,0.00463069140173993,0.030129041393268514,0.10271562731075912,0.008038780352831194,8.606739263210687e-05,0.03544470989646659,0.04734353180751648,0.5175673488050234,0.1535882569386996,3.136840212997393e-05,0.0018079054835248736,0.03758888423174948,0.03326799587149109,-0.014100523162530666,0.0008713197982661988,0.021419782899416154,0.010598275175882623,0.025057800118255664,-0.004950776452241859,0.00014789521981580235,0.006920302894405778,0.0061193737927884625,0.004319948428997994,0.0005966785874620166,0.0006923931747764529,0.01702287561623593,0.010583751122661475,0.12133776138061649,-0.03351386243945871,2.5993599912910987e-05,0.00021891701139348046,0.03476465558773798,0.10479830524688023,0.0014388825538346295,9.85450262640208e-05,0.016312340705641734,-0.004512618528266626,0.031149348195457862,-0.004826926048077769,4.077946061697547e-05,0.002656405510945391,-0.014757094839569895,0.01273197857103202,-0.06870690418938938,0.002260621959299827,0.019815873374902825,0.03256355227260144,0.17424187093134882,0.01931890455359247,0.0001537911544135041,0.021855522493390317,-0.03016618579540839,0.17589761937406537,-0.0013327323613787421,0.0002655636761035139,0.002569036553806834,0.005872483666846575,0.04310987831109856,-0.029295068479473378,3.83712525960073e-05,0.04022629136539821,-0.02616146390497468,0.13313216441582465,0.015786486881865677,0.0003238663723379207,0.028488419853697173,0.018397582723817137,0.22461243254041988,-0.050731504666919454,3.3990472708252876e-05,0.019449536300193644,-0.00444107272894442,0.049008162463005565,0.0040017677446993576,3.0276186746351563e-05,0.0003425104392556079,0.0023314675077562787,0.00724115496487879,-0.005974854628368314,0.00010371564711964561,0.004413039709179466,-0.01825295831733893,0.12905116368558772,-0.001731116322445461,3.2671096701661286e-05,0.004271551348970522,-0.003016348395539723,0.008067622994747538,-0.0016971333737813435,8.289212806824609e-05,0.006654868563069939,-0.0034256990571594126,0.012783244976422331,-0.009967505926735606,0.00012253402289265228,0.005268465950987264,-0.030825437262343047,0.03521683630268548,-0.005627398902030839,0.0005003045684440545,0.007712743461077129,0.012448556556378741,0.04184990790900082,-0.0359409729907873,0.00012520177880187623,0.0028863418658019364,-0.009428069228433594,0.03371552260861077,0.004266589961439747,0.0017947833898958431,0.004511945836892441,-0.0033815102194534523,0.028869289048373055,-0.0732744868745747,3.0120127833270736e-05,0.009571821101868215,-0.012286780439064494,0.029423096782813518,-0.09241273890022751,0.0013652776699183233,0.0057614748584422625,-0.0022121982881059222,0.01540662821259056,-0.024809607611008446,9.56185365959442e-05,0.011014439638893663,-0.02177110325376743,0.037895120945594295,0.021346628155630248,0.00013559464122751345,0.009858473619879505,-0.00197619920261638,0.0034229910378727442,-0.022625203880219488,0.000331381966993843,0.005930946517909302,0.02001531365045614,0.07087907864489068,-0.052705994067322466,0.0021887425343437242,0.02628259960054011,0.02923524237767352,0.13582072223357697,0.029297693688879824,6.906070915789001e-05,0.013848160128856361,-0.0583992050259062,0.07508048000053742,0.027836481701572727,0.001933557477406813,0.009637997433357451,0.007056465236235859,0.022917956198186117,0.0011159994637633742,0.00012199087820405873,0.0043446132505219805,-0.02620818002231647,0.065301600372351,0.026581328719814893,0.00016269470339265384,0.004377129563040742,-0.023109743690780768,0.08670761716523004,-0.048797075243203376,6.505067424797352e-05,0.008116735156857647,-0.01695848401170868,0.054268739307276215,-0.014618722149162216,0.0029617974266404152,0.016409158165935578,-0.06971948094949271,0.30135463453419425,0.1043527015875325,0.00011508450154386677,0.022657883252179496,0.013372740663575047,0.0742876634967622,-0.02984883564088954,0.00013054628208179422,0.017931398132985072,0.011352786751454803,0.06059861016245192,0.02118878992372275,8.861117905332877e-05,0.004527474654091063,0.040724985308011684,0.186784772180738,0.025930915491151285,5.479827205519191e-05,0.013106363701645814,-0.0006171981255733221,0.0011079829443179463,-0.0011842684336069724,0.0002715944665237035,0.0074078228599681675,0.010267931515613577,0.03759676773208561,0.006951826312394901,6.791204836705537e-05,0.002788950169574718,-0.035242308218622176,0.4018862230327411,0.07999832708974904,2.262520443438933e-05,0.014657083914871437,-0.011794571803539088,0.03561435693717789,0.024686038866664897,0.00011576200393898013,0.006165786189276493,-0.03385087458701924,0.12970751000434325,0.05132799846283333,0.00041137011912014256,0.014044218688355235,0.10932943803386556,0.42259620356905686,0.19963065805267502,0.00014817786075066268,0.011766006660738041,0.0016591995927885538 +2022-03-04,0.013317227065293412,0.08606777007623612,-0.09727705529912598,0.00016362883474870663,0.01693673583134631,0.026560799480393756,0.10460350161753999,0.02583750755978314,6.092639010576915e-05,0.014464591742643978,0.010575645659670323,0.037482890580571554,-0.02355630194177097,0.00013051818342548578,0.0002795030486931972,-0.011541902954852846,0.011413642843413332,-0.008534169191276477,0.00034128798264284227,0.0091231714423981,-0.013863233496171624,0.030997371957585094,-0.05950967773571487,0.0002340116267443811,0.002079636806735918,-0.004958315434890401,0.013364104228831634,-0.004754051077097998,8.101044870684021e-05,0.0017778213381401007,-0.02048597629093161,0.07579132063151398,-0.0027018042633176814,7.930983501480438e-05,0.021504673473224673,0.01458049949833246,0.1198645194594051,-0.008742068192420446,4.171385893581607e-05,0.0026121263730693864,0.012369096561970898,0.009931049345139855,-0.07892208403999446,0.0009604784535627686,0.007136860900135912,0.09253720465031372,0.2382084002476684,0.1663048536491383,0.00013583797232106834,0.0031955130395592566,0.008215646274843376,0.00570648192792053,-0.014146812547345048,0.0007037163548510974,0.0053553050849010925,0.01853415437900822,0.25850475136780915,0.016406688194532164,2.1366187518880745e-05,0.004495915778383003,-0.019764920686750065,0.0685477581150829,-0.013072076100872621,8.565502737731197e-05,0.0009799994589731746,0.005948675541630109,0.03056330098304188,0.009307021868368882,5.478754518930199e-05,0.007934191804908628,-0.02578566102415094,0.02020289547947986,0.02762935629272261,0.0024893595293113313,0.009285672359761245,0.009748229207973306,0.055149829681485955,-0.0026808528764585443,0.00014545667785638658,0.0077099975942119476,0.0006167758821648262,0.0036482837540260404,-0.005591472381163969,0.00026178635473312755,0.027922990306493554,0.035496071102624184,0.1957125827686289,0.02808829654753279,5.1088422567911675e-05,0.022939105468469306,0.05076851210202273,0.24672801130053182,0.03448131506305045,0.00033912732539982,0.02267173318059813,-0.047083551506631544,0.590608769905505,0.03221022764578385,3.308259390904052e-05,0.011382807617119024,0.018150234935520253,0.1969477254159756,0.020499120997006477,3.07902340752043e-05,0.005077706924417488,-0.0115477464246109,0.03496617642361535,0.00250181224079691,0.00010638290612267976,0.014385488831872292,-0.034456219093630266,0.2100510817505512,0.006388914348670191,3.789091334494859e-05,0.016498330049523176,0.00975369648784446,0.03139098468510996,-0.0129826390035143,6.888769930091356e-05,0.0006333237936800031,-0.0018342412787089601,0.0067262858044748524,-0.1555841185688339,0.00012468945926928768,0.0007163773708346204,0.028545767325377128,0.0251908183769363,-0.0398316815494245,0.000647701654239966,0.015284626362959072,-0.045302864637416326,0.1803169387226132,0.11779091424528348,0.00010574872699940491,0.013354110378669445,0.034570051033435516,0.12197040074699673,0.002850154367488081,0.001819134224609435,0.007091297502996943,-0.0378617256139476,0.3761102616323622,0.019535813081274327,2.5886147198094624e-05,0.009961131804403637,0.005803226492840602,0.017268556991063343,-0.009512675670407545,0.001098714212574575,0.01577707548760044,0.003316931856327636,0.023580581832271245,0.007876494811814764,9.367154336124526e-05,0.008957207644576384,0.02506107118047455,0.034183621829275146,-0.057555495373489134,0.0001730322045501337,0.01512786471330499,0.0008159817458975343,0.0011244657718625568,-0.05709560533420372,0.0004165221648147656,0.013958241710949757,0.013152720595596997,0.04501384726614599,-0.049032924411801695,0.0022647475712936926,0.02503244490088008,-0.04513160755590208,0.17479623620428028,0.07528340818210062,8.283981045236221e-05,0.011826005398927596,0.025348818776287696,0.036257082262971765,0.021006059704075052,0.001737969162923445,0.004308683996107956,-0.003473485831516236,0.011775142235075106,-0.04588820669822973,0.00011687332680363377,0.0027613574818868974,-0.020220587559642497,0.05643420010420175,-0.07552272564479261,0.00014524853920360882,0.0033841498658620578,0.05089043265783147,0.2098666749291841,0.1513907050482689,5.918430968619399e-05,0.000755040993150431,-0.003458637604974722,0.012381919769153031,-0.0010884883112088864,0.002647494895901223,0.00048579286788582373,0.01615467517799693,0.07069977160585528,-0.021303017319355022,0.0001136634384902975,0.03260587507742315,0.019827914221522445,0.13031489906910487,-0.008555566542430856,0.0001103427348635396,0.010337248882415679,0.009105633366657434,0.05391839458807087,-0.03257978155214771,7.987702949675845e-05,0.0015105429859472402,-0.029281868927249915,0.1205992444817964,0.0033151964498867627,6.102413049971085e-05,0.008797540531132698,-0.04422029748449323,0.07641407190936844,0.012765826660557589,0.000282148477574925,0.054519535990800894,0.012190664562648515,0.0505438841832468,-0.006453235936029498,5.99753987231207e-05,0.011320238771468809,-0.021728697672657463,0.25019187885451516,0.023832486107171542,2.2407415855863966e-05,0.0036970155307800056,0.01814276550192073,0.054287912228225745,0.033376954736217726,0.0001168178776450871,0.007977696186891791,0.021077085287993284,0.08725355512851941,-0.010615365632051857,0.0003807635722003762,0.007592668095471461,0.05416249563067129,0.2352002610352763,0.006262997058587356,0.00013189631544470754,0.009205329226936657,0.0047047691629619305 +2022-03-07,-0.029636785785136562,0.196330905252026,0.01608327437637067,0.0001596353305771858,0.01796359407074033,-0.03275750788370041,0.10355354673125436,0.017174124004570766,7.590255630249831e-05,0.028467424206533212,0.035379396206014,0.12591091877338614,0.015893383675650536,0.0001299823032751319,0.0024919268315874874,-0.0287473438515026,0.026632417811106385,0.038930885890459836,0.0003642964880753912,0.0027518744058411043,0.011429465106490117,0.03274993454889242,0.004427444958353005,0.00018260524261379173,0.009233920936733532,0.0023067868267354205,0.006337772888933382,0.0077173367843401414,7.947261986828746e-05,0.008787949367715044,0.03924443165922829,0.13073646960921995,0.009160846569775468,8.807875070149625e-05,0.018825188597558995,-0.01271518561165542,0.11547708564977519,0.0007294589018167675,3.775943644396989e-05,0.0033361777069887515,-0.01629616870679537,0.013039057828578431,0.04967155984719347,0.0009637937091480498,0.003414206118262001,0.005838646106312928,0.012913551827737542,-0.002077394763913481,0.00015809871095713102,0.021982136503098954,0.01670818034267224,0.01306779999930271,0.0110995430312119,0.0006249582902290364,0.014036634964880123,-0.00019323933609977136,0.002353787756327748,0.007873431564109634,2.4465327104608828e-05,0.005092955282297701,-0.00021521382365529375,0.0005844603603919816,-0.08371962226546656,0.00010938710784877777,0.03000598599835974,0.013239426547775044,0.08884996312960028,0.0379314941211514,4.194437629470259e-05,0.001719399094928278,-0.042907429363202784,0.04154522659585208,0.0630412217827892,0.0020143472349184862,0.013716078252605821,0.028774161357620526,0.2106432144670773,-0.017008576228093198,0.00011241061112036399,0.004648161709429614,-0.01172353100652644,0.06252665309486455,-0.0836156306147415,0.00029033639883258673,0.04235270629019514,0.003184700858384366,0.016598548355000162,0.00046718173814841376,5.4045494262865894e-05,0.007668859667980195,-0.03633800114495814,0.2078758442100574,0.021088842003073892,0.0002881003698181341,0.011097045640179593,0.0039350963967599555,0.04832534270164271,-0.10306367525557507,3.379174850758675e-05,0.005254157901427347,0.0024440558069668402,0.02998835293134335,-0.0022692307203472694,2.7229534310383474e-05,0.0177694583857922,-0.0301716006327192,0.09121004374541493,0.0365146232102295,0.00010655613080986637,0.015518196869830199,0.00852441736701831,0.05910390451099055,0.00444549031950499,3.331508373630883e-05,0.02256823598732228,0.004757897294264982,0.011977407443531207,-0.02710812999215845,8.80703296186745e-05,0.0057562318130464935,0.008176856914829585,0.03403550363444535,0.013291328827708233,0.00010985069587562579,0.0014513608891620893,0.041892016265053275,0.03699047532049186,0.01589231713727577,0.0006473168512441371,0.042643664502023414,-0.030540417196019277,0.10680436511742913,0.045291586895498274,0.00012035717118055313,0.0059253550574176455,-0.055064313135394914,0.1338392065145376,0.075039519990659,0.00264062084805968,0.0035034186983309516,0.020913152081525378,0.2030488882996466,0.01577743311414535,2.648506693858804e-05,0.02925769473950858,-0.03257154565672832,0.08119896003583991,-0.01993677383072729,0.001311472447250023,0.004965122178075088,-0.01700119059643862,0.1253111306250634,-0.03427194637524324,9.03473317502324e-05,0.003797271239861435,-0.03271970401661438,0.04268574417152979,-0.04602832685723827,0.00018091388315029204,0.0166633766988662,0.014755003289513112,0.02056484754235704,-0.038098560235248394,0.00041182976329472517,0.002264235458938945,-0.020654753335809115,0.08156660020710117,-0.08568211060410535,0.0019627183972158956,0.0073451589602223305,0.003920418578974522,0.01791554877856324,-0.007796694598107152,7.020898479914295e-05,0.007690340624620441,0.02440551341524671,0.0316764864048315,-0.014504291510504308,0.0019152617570121194,0.022221753177311475,-0.0006998472705965967,0.0021282598019362344,-0.1877350639042875,0.00013028507503781922,0.00701507550972607,-0.007314268503952718,0.01883848992684473,-0.08888958805393334,0.00015739291829293644,0.01268702511274261,0.020099764429428967,0.07916013079334284,0.022070244662054712,6.197241056758278e-05,0.029088881717608362,-0.057549262706978195,0.20637071471675794,0.06882980057869091,0.002643076624156489,0.025931450419515622,-0.007796108263339506,0.04082183938108001,-0.00868948640261953,9.500049377499278e-05,0.021240737620264648,0.022834624109305868,0.13281404709501482,0.011716589017347791,0.00012468397535047633,0.004511360624944007,0.00967437292820956,0.05902934910432398,-0.04612425185861134,7.75181730811576e-05,0.01617027882267248,-0.0016383669095247568,0.007766104773679188,-0.001982936681232805,5.302190379214687e-05,0.03706941805740395,0.013018596219108097,0.026922471217955667,-0.0011941343545991464,0.00023576461821634304,0.030035592058230486,-0.019229748563594308,0.07806706447585002,0.024242407695788188,6.125198006684525e-05,0.01494674727506862,0.03922083997136498,0.4961867959942643,0.13532197327653706,2.0394026197525782e-05,0.008368625614909857,-0.012047409196066755,0.034538332662081984,0.03388899410970093,0.00012192738457366092,0.0001403123052065738,0.008600607122626645,0.030337027437257896,0.009845591846238023,0.00044687293886777515,0.0017880660719220018,0.010855336426180426,0.06494437515482504,0.0005770427319908212,9.573561705616484e-05,0.003538414609881288,-0.002982801804680346 +2022-03-08,0.008460501475176975,0.064257694044083,-0.006945286945198353,0.00013923792836739948,0.006775986052099954,0.01155504967437377,0.036349591136511754,-0.008893525548325966,7.627510482480248e-05,0.0025940383878709523,-0.020342519664683166,0.06277909295313425,0.002743934224329794,0.00014989491920216566,0.026472835139792913,-0.035238632611971896,0.03376197076821448,0.051062462109772874,0.0003522565802842875,0.00265517234419004,0.04760020854552495,0.11096214497493823,0.09455974092148121,0.0002244562921364458,0.0057107672952912926,-0.012972901920449713,0.032386006912290356,-0.024322229675170903,8.746342304514342e-05,0.010923907299620087,-0.04202913357752277,0.15813474737898162,0.015476426052936185,7.798534239671381e-05,0.0122213300318643,0.028820625160208318,0.2839085474641364,0.045112838508349386,3.481156466013797e-05,0.015076152632509467,0.021478383508278426,0.0189306250025929,0.010624932438532816,0.0008749463559219486,0.0024977266673676026,0.009682188670170074,0.020315712399605584,-0.002186741708590586,0.0001666492530762489,0.023029045797189698,-0.005155534583136909,0.003650976113550272,0.001655111291771901,0.0006902224343501157,0.0053519380821544175,0.004526624524096642,0.06286069387923483,-0.0018683033064067123,2.1459425485923556e-05,0.004920390509090788,-0.01736173976706506,0.04813965871485975,-0.0014382143802217546,0.0001071374420449145,0.0343163130857833,-0.01982367960015737,0.09104041141329508,0.0765418259806217,6.12931408484918e-05,0.004115615570085569,0.022268027920124656,0.02062459289359882,0.038646087232827225,0.002105810781615347,0.0038652975921116507,-0.080888084746869,0.4927649918196319,0.08793702414528579,0.000135081792225038,0.00636430585558008,0.014884665160771854,0.07291495289398192,-0.06761527064210404,0.0003161045169852774,0.02846474065412179,0.031525143315780275,0.18925645432183139,0.011915586065366295,4.692100721180484e-05,0.007835348477038921,-0.02125606100040624,0.12310577231356867,0.0022459865415363064,0.0002845713525931596,0.0010321849307702241,-0.006389709280420485,0.09047019888218542,-0.006473288386837264,2.9309322881580952e-05,0.03094474364076871,-0.011599792180679159,0.135438003618404,0.01674124899810659,2.861484343862564e-05,0.0033188251506554548,0.014351877971243515,0.035218617204720935,-0.02656806792228588,0.00013126809681874042,0.013041726614836834,-0.02508183343708075,0.167337320228878,-0.001486602591547268,3.462253362540564e-05,0.004729829704911122,0.02201194041525304,0.07818822808837401,0.0289368298011613,6.24157710096763e-05,0.012134202997718575,-0.0060051734815182,0.025688611026024554,0.02564350172850271,0.00010688912722425412,0.007509863645854288,0.053240073467355195,0.05017240400237437,0.0170644904923158,0.0006065258244073478,0.0025837776840408203,0.03696504829131235,0.12678235559425616,0.04312613029647507,0.00012272088268841923,0.007579379464933153,-0.051633942420434675,0.1589599865944892,0.039610978664065294,0.0020848107768260777,0.02258471080542962,-0.02208967974305082,0.22921682386962544,-0.07759392507309804,2.478135929087948e-05,0.006551959988251662,-0.013081613261260583,0.03420955284910594,-0.003119341421362253,0.0012502163606506046,0.001765419461678579,-0.028876735240544578,0.23301732450267126,0.03628691782067681,8.252499807060083e-05,0.004887548880443239,0.047114913849790184,0.06272488785630928,0.06633482574291996,0.00017728169447485935,0.01786734144126054,-0.015476161218667107,0.01989708034962347,0.013324266053391284,0.00044645511734081643,0.02154034469209619,-0.009848476029665579,0.04252919384261876,-0.0012206385716844494,0.0017948667933700589,0.0030682532059057295,-0.02535432151316852,0.09494573353211397,-0.022031268725438386,8.567752443808242e-05,0.0017977795110466156,-0.0394392450959189,0.04868807839963367,-0.025771460384907487,0.0020136461264894196,0.006164360177990358,0.04095996393960813,0.16938663130687376,0.09549415107501512,9.580683008255839e-05,0.024376100308129752,0.002772401179473023,0.007210018690103454,-0.021704362386568487,0.00015587628995835938,0.007448851884094049,0.01472269252639181,0.07032643934843141,0.011810253334582731,5.109548640302625e-05,0.0076966682315638465,-0.009240414640646299,0.02908862420517316,-0.01183545145356956,0.0030108307052953884,0.026092495447988553,0.020179698650913923,0.10533407757152248,-0.023965689961053756,9.529856273731184e-05,0.011669823680664186,-0.007504579469386762,0.043906689111933496,-0.0025354710813728846,0.00012395283264259014,0.005279067004396062,0.0022943993807685416,0.01340415015912489,-0.02483755814869539,8.096147861332691e-05,0.010382757199675395,-0.005719027390722976,0.024494891366706906,-0.015610091353938338,5.868053351485041e-05,0.018858055876432956,-0.014886343040104446,0.026759684363159748,-0.0006700772701467502,0.0002712291919983626,0.025831990947494398,0.0031032469374694563,0.011721300018143749,-0.020072449268699947,6.583471033648539e-05,0.0028161301068845407,0.031387140719279866,0.3550503726659218,0.02432896929909434,2.2808307902322375e-05,0.006408066202044696,0.0018977495277433306,0.00704423005517416,-0.016527763395540032,9.41703805758486e-05,0.0015945454318461792,0.015820257220409847,0.06412825345984728,0.022503612988797942,0.0003888589501115831,0.00026308913838957344,-0.006265758725668345,0.03129352613321867,0.007389372336312676,0.00011468086543022945,0.014704278034125192,-0.0013524177363987008 +2022-03-09,0.04460760184124881,0.3565575908026871,0.055794008169674884,0.00013230180610358875,0.008456464204759106,0.00045480074018782276,0.001589513536218888,-0.002794117968936191,6.865425499106523e-05,0.018596705761711886,-0.024840505503166185,0.07967163652323045,0.027299430253714174,0.00014422943291014128,0.014427009071294693,-0.011492356594680382,0.01111929902971807,-0.009769460513073706,0.00034881852369316157,0.004459419239430117,0.016188745157377702,0.03816034217243698,0.0061369844926188084,0.00022197225730270277,0.000232883886111404,-0.01226658760339638,0.03041676595553388,-0.013989709008656263,8.805569891450689e-05,0.0002539194187904752,-0.0036760930289904815,0.01445196011119046,-0.013974857065442735,7.463621280794261e-05,0.0006341091990164735,-0.014025717079774857,0.13093054672357576,0.0019033911640098358,3.673522527037497e-05,0.00824612353428858,0.012936848741704511,0.008766923054978516,0.0014252773162907611,0.0011379576300575478,0.0036265230726872863,-0.020652381837554103,0.044303386704623755,0.008975288796105005,0.00016300281551505317,0.011154367709832502,-0.008441471946474488,0.006788871523360818,0.006417214247349517,0.0006077779638634397,0.002447914916625499,-0.017858091799982854,0.2538595295593263,0.12168784441316328,2.0963527844874498e-05,0.010066537012653696,0.03027463490855903,0.09422761343804989,0.018229075488239793,9.54446876000759e-05,0.0026770455404462982,0.020151334462416372,0.11314953047366194,0.07963918270297199,5.0131750951936856e-05,0.0020009395767289534,0.0003118918650944468,0.0002634701467601857,-0.010896336259663051,0.0023088494035515884,4.157207035801946e-05,-0.05036464265122972,0.338011756601763,0.04444270373165784,0.00012261569345432867,0.004578714609346432,-0.004763606204454102,0.028059362045273584,-0.20628409781931575,0.00026288529364129295,0.001917697630404112,0.01189124028018568,0.07173963378463671,-0.0459365856078176,4.6690546299424136e-05,0.007649489189988905,0.0003761429338544886,0.0019335275841645058,-0.021705847935213386,0.0003206190647299825,0.011207012851581565,-0.08508614417274354,1.1376281273591267,0.1091390357276488,3.103764441503623e-05,0.02001220361021997,0.008451305263016375,0.0953689605857403,-0.027134255521131804,2.9607275748919097e-05,0.0015739014958199935,-0.04767628761571143,0.1337073605608542,0.06370968158872833,0.00011486028013205917,0.03056503490500827,0.06879301564832728,0.5531976186963381,0.16974298865960571,2.872476087191923e-05,0.021033760356172722,-0.004448271372092444,0.015881199197707363,-0.01853433686995957,6.209910817827914e-05,0.0008077119876804266,0.00893631048694245,0.03223169038266739,0.017720970750552553,0.00012677212281814184,0.0019180586547951697,-0.05334451295270823,0.056446736480979906,0.023002362209160923,0.0005401650462165215,0.0014097444158849678,0.03256901557766045,0.12660123183491054,-0.015212244321722137,0.00010828111260512371,0.007649007663684766,-0.004782460047988942,0.015425986093677924,-0.06786447792328965,0.0019898374021280764,0.0163705640521756,0.042141800724533926,0.38663677151993237,0.0355374451326031,2.80280012827596e-05,0.019958032570896102,0.02819286834872398,0.08842001196122512,-0.10212354472364746,0.001042461353900291,0.002713218735177438,0.01627620556436881,0.13498258084680148,0.04114047764568328,8.029732581108575e-05,0.002825856581853553,-0.03203352700217132,0.04155186553344434,0.05171122006668209,0.0001819531665417152,0.004491232375136932,-0.011839564935707222,0.016755591490270498,-0.07548798958898999,0.0004055831408840018,0.006395635900628345,0.028847562504589804,0.10890428653562242,-0.028296488001437463,0.0020531207394318624,0.01123984755950072,-0.01727168884993634,0.07365360156043121,-0.05962621093446313,7.52369510954874e-05,0.0006931404545124285,0.00857972626521844,0.0128808115096557,-0.07473521107954965,0.0016557981716935446,0.006982427825813355,-0.03078411041828477,0.09405002052604261,0.04112663226807264,0.00012968320941713276,0.01213130845831218,-0.025898440214082094,0.06501233492548918,0.01820094181505389,0.00016148724320938133,0.0038990163602498507,-0.006424440686207352,0.028297994435263304,-2.176238953947452e-05,5.541069431100352e-05,0.008317574849605975,0.0030636663052811706,0.008776803872428008,-0.014286022222584628,0.0033084389449915905,0.008677932080006738,-0.01658284032893342,0.06774761049930607,-0.01435091436020134,0.00012176024345912259,0.012030934245778465,-0.019336345520679876,0.09960824551557551,0.041901907167342343,0.0001407796534196953,0.01294760035045748,-0.015269950258764566,0.08761485749283875,-0.011183312965256764,8.243441535948345e-05,0.005659432629816329,-0.04871292889848356,0.20857096090244306,0.03933389262451935,5.8699958679523416e-05,0.012207368484710369,-0.018397437692979714,0.03648094654182635,-0.006309165473014072,0.0002458785462756179,0.007914123007726084,-0.00267606101805719,0.012640129934615689,-0.011397520074610932,5.264520841295221e-05,0.0009576775321484418,-0.001874299812100675,0.016084719014557977,-0.00016022390540618059,3.006469958007271e-05,0.023669103105977682,-0.001723023118758319,0.004857022892467863,-0.009303703399554443,0.00012400235088819644,0.0021054350315750942,0.01467705790226931,0.07694270690654996,0.01887390852513492,0.0003006765215841513,0.013445035353630092,-0.029775607378241323,0.15548296742140846,0.02330722209144328,0.00010968559730027865,0.03815326230982713,-0.004532384044426085 +2022-03-10,0.011091051496871888,0.08195182161194577,8.789655855958056e-05,0.0001431201208398031,0.005522711993433735,0.01005323584507512,0.03288573186446938,0.004434349575663462,7.335148088851622e-05,0.022803676864911495,-0.00011437390383375064,0.0004897955258465524,0.000721564905971536,0.00010802128410253421,0.006074656667961418,-0.002491591835099345,0.002404265853785282,-0.042908711104076236,0.0003497536591905883,0.0065340447778469085,0.023241056751736204,0.04643023494329589,-0.007040300932556384,0.000261910411088485,0.0064774116544351595,-0.011154349342237415,0.026777931534322556,-0.002404830380534542,9.09523563422731e-05,0.008781682098444186,0.05230044399556522,0.1760956917457278,0.04754376191354739,8.71458078184638e-05,0.039557806941483836,-0.062338147678731796,0.5303046325050503,0.13368278396376126,4.031132627441113e-05,0.003983202305871861,0.01567440885301092,0.013045588377082603,0.007081811556654595,0.0009265573087106331,0.010364475280107414,-0.02864057241689355,0.05061912257976548,0.014190791743235134,0.00019784677119515987,0.00858417134759544,-0.007542258528071975,0.005865986623440529,0.011900310913485234,0.0006284702217379186,0.001057590827548866,-0.012257689811620575,0.14944452646743978,0.05053049573034892,2.444282527054385e-05,0.00211648943251762,-0.046017949823498334,0.13036212637856542,0.01553551024452255,0.00010486410832097684,0.006880486098434125,0.018489280119173685,0.11099755507007575,-0.04332812929039888,4.688872330070713e-05,0.0031354588859328026,0.024471119520897998,0.01952600883989368,-0.025960336707360972,0.0024443496492355266,0.000996533772883262,0.034907270771682,0.2799859753807495,0.014118040964601697,0.00010259630611083546,0.0008421927980932891,-0.06208752869347172,0.3621776925547566,0.10989984224885108,0.00026545499889243435,0.025483934347956653,-0.005840903387443318,0.034397300777996034,-0.01344598138482375,4.783178791583422e-05,0.021015856899656682,-0.027675911368718657,0.16377061382757963,-0.028558788902779134,0.0002785176754061143,0.00033232679080190267,0.0022001691999998523,0.032711036911600835,-0.0006066435201417118,2.7912067126939935e-05,0.009255295350601676,0.0106636752686084,0.10824562207151676,-0.035443933366197375,3.291381925477263e-05,0.011989732552673531,0.03467663823042455,0.09026697515490792,0.036816844231165664,0.00012374591006331862,0.013263663851083319,0.0658775515868991,0.4058632073077556,0.07602371107439244,3.749299576617904e-05,0.0016003076760939166,-0.020334088015147064,0.0498618932129312,-0.03716236274798432,9.041350739645893e-05,0.01565643641505936,0.010516524555729177,0.04190015300387411,0.020658570170799105,0.00011476388113583232,0.0016092420332341738,0.014521488499215942,0.014833180407674154,-0.03470984620042437,0.0005595674166262538,0.005965766572978048,0.014145686889048114,0.05723111824018174,0.004679369527775505,0.00010403460396485266,0.019583485114537683,-0.003753684520036698,0.013567242648265133,-0.024596328533245084,0.001775764426797816,0.020047534421824442,-0.01470546249794526,0.13943641564726628,-0.006717344735164342,2.7119687007532893e-05,0.009261189825977843,0.01485659794756609,0.041092394001585264,-0.03166404834107073,0.001182031898816643,0.02702117652416711,0.011603461703506441,0.09345095940047166,0.021856511387148007,8.268551812265735e-05,0.0017686464836761371,-0.003105617678308147,0.004975053216187126,-0.013142181702265011,0.00014733151201978934,0.00010008598855139805,0.028952910852701786,0.0446369718699559,0.022046014208711703,0.00037230718892053167,0.013217567530798701,0.005091471905964426,0.01991690467936151,-0.01777725617356305,0.0019813985827739403,0.007250281107147585,0.010385383681075,0.04386733134829553,-0.027322607260457415,7.59576817053643e-05,0.0013712090063571372,-0.012719306950597779,0.015753709936994438,-0.19885160854801107,0.0020070481665241213,0.011195954764988586,-0.025556808012429894,0.07120807032762697,0.018620153321997665,0.00014219798097556724,0.03383257148781652,0.00942420734474743,0.026007029189721274,0.00011028976998874926,0.0001468975198990235,0.007905181403441942,-0.0023964740845535772,0.009500304591981666,-0.10117665533134185,6.156716165454054e-05,0.003837268696937418,0.04425272477715547,0.14998574555578853,0.03919495217350566,0.002796456630842474,0.009383914744306526,0.020108933896757577,0.10033947260408696,0.005612545663847785,9.96914248378487e-05,0.00855798136360714,-0.001193108243401854,0.005426253013580802,-0.00538928599992808,0.00015945589910461243,0.022565871675404803,-0.005890665816872441,0.03473233419472324,-0.0024706116491184137,8.021934527199541e-05,0.00039607625354275453,0.0008655638179838933,0.003978879888068106,-0.011598058944492982,5.467460569664398e-05,0.016362749373049122,0.017415113342036857,0.04563792348408833,-0.09247959263238718,0.00018605006388789532,0.0393075091523199,0.007929282202923021,0.03485686421754467,-0.09325983516251612,5.656658177971046e-05,0.0013775056595085183,0.02045034454724237,0.21773799422153736,0.029990830050396548,2.4232470735534494e-05,0.014337940729116984,0.007150544029636639,0.0218096217023177,0.0033042694418103785,0.00011460403723806909,0.007157616956327241,0.00361490717418004,0.013134125403207679,-0.025992793383959746,0.00043383437653946385,0.0024624412453032605,-0.02401329222260828,0.11259147560666291,0.024340778204491712,0.00012215689660486083,0.03155800973184024,0.003917929747919177 +2022-03-11,-0.008424047347638037,0.05478334213894009,-0.03832218591359739,0.0001626143470190538,0.01114017039644281,-0.014936414956133662,0.04937776774699038,-0.0003178510494130834,7.258141730167691e-05,0.00574483259914228,-0.0017282387389322108,0.005853561068176644,-0.09903447777693994,0.00013657801191981425,0.01328367307958607,-0.008851669094094076,0.008661600298079733,-0.024810370672954104,0.00034490134480119345,0.001835067034062963,-0.03864771686413511,0.09507779029023652,0.07882104863373779,0.00021268777864603164,0.017377823042371572,0.011598243365125197,0.035652250476832764,0.02979166681501607,7.103166717759902e-05,0.0005844061447780149,-0.0367453338831403,0.1362235484801892,0.004214315432256423,7.914798523913984e-05,0.01374654895672331,-0.029700495115027307,0.2566504478613312,0.010139035077621145,3.9684441919200996e-05,0.001324215967394253,0.007283904529240505,0.005983894871360335,-0.001114048826941121,0.0009386962361034192,0.008515108806229757,0.05750083326904926,0.13049459481889988,0.08058265713657668,0.00015407901783747558,0.010427530496140381,0.005344050005229383,0.0045961719224492,-0.035195598814174396,0.0005683274151170446,0.005365717656963196,-0.0005222839402310061,0.006612269581916948,0.0005436100984946101,2.3538506832579663e-05,0.004434211159602452,0.015568828678159423,0.057765582850146525,0.014037476196848649,8.006409846564967e-05,0.022472122426799294,0.012947778207921076,0.06985728147836441,-0.006745864166358156,5.217294943151689e-05,0.002864547061231701,-0.004005988690745627,0.0028066651078798074,-0.0004359953472953312,0.002783826059080124,0.01041984498789522,0.01576867749414011,0.11380159652764313,-0.007914574455355464,0.00011402472247181869,0.026905816239923754,-0.034784397002892486,0.17159414326163355,0.007238794513041758,0.00031389922998869196,0.009509487368209012,0.007956720982322377,0.05912340788332757,-0.01705437405457685,3.790841496901403e-05,0.0059567393408475645,0.01923997634134078,0.11347858686142102,-0.004378406807971614,0.0002794328255156712,0.010010680604955052,0.035728764356935394,0.5182320629759416,-0.05964339883032748,2.861040126224066e-05,0.04301671949414019,-0.007871065102450123,0.08468949041917176,-0.07143120057150043,3.105172232350313e-05,0.015940302585827282,0.0018647411214490043,0.0056242145441211516,-9.107052450146138e-05,0.00010680200964679028,0.014901233525589256,-0.002305900676422706,0.016642857148771954,-0.05194238591604232,3.2004060837168054e-05,0.021856880618362225,0.02037169108067763,0.0489716357349183,0.02617831669257556,9.222737625653854e-05,0.011818192957860515,0.016826557907265772,0.06434083234059443,0.02601162807782143,0.00011957962997764914,0.0011753717674718347,0.03144974425539393,0.032175379065589906,-0.04164152626837909,0.0005586875679372955,0.03662082019813912,0.017668839741536674,0.06059343417739893,0.007915122938237006,0.0001227350131794526,0.004647930546665055,0.003319704151617978,0.01109168116668826,-2.8410673704117688e-05,0.0019209726389233235,0.013023187215781312,-0.011791533335756083,0.10497951212766535,-0.1325230382127607,2.888337429758382e-05,0.014457583364437483,0.04607666239297925,0.13533612127027783,-0.02367963176756799,0.0011131112121494971,0.0003097514487579135,-0.0016752703462286401,0.01359411122385923,-0.006034014362564671,8.206533100003067e-05,0.0016727993940354304,0.020892664283426562,0.02531115224512848,0.00915930833500404,0.00019481719946659652,0.0009178663013100666,-0.0042942011097382585,0.0066344017780234285,-0.017015576307046452,0.0003715219904951853,0.013484130664770062,0.008402544939606812,0.0354902761186205,-0.020980577759621484,0.0018350664991404096,0.006063163140342604,0.0054710449660322355,0.019672069746904768,-0.02162053933580302,8.92299396212379e-05,0.014142585198710185,-0.061232619787545815,0.09121535194705377,0.06849225341638547,0.0016687531342859502,0.019413458692439624,0.033107554061013185,0.10971013961419707,0.022832493629375745,0.0001195628794460428,0.0036766790262642837,-0.05190836703635249,0.123386701039519,0.12576130766057186,0.0001705412296890402,0.0020812594384298742,0.018312237510594305,0.07806390280600063,0.024854764364357986,5.725390031334017e-05,0.0045950835011615825,0.09705759764201027,0.33363025227055704,0.13022396356472044,0.0027572882594823676,0.03623555317657772,-0.026650586637493014,0.13393428895208492,0.016849992803943045,9.898185020784464e-05,0.012262112121582952,-0.04346838385766843,0.19671363063966443,0.12010250500724631,0.000160250658922641,0.0084622442219331,0.022990330505617333,0.1148490841456003,0.0478971414661449,9.468177195754205e-05,0.02164722009570263,-0.0033277368728778798,0.015827712047950318,-0.004385620901901675,5.28418766851073e-05,0.02273338603684264,-0.05083268652580883,0.12099353761339991,-0.06394062425953338,0.00020483788461421871,0.010928497407008889,-0.013969199642785078,0.058723141068852264,0.007527181382838189,5.915297918497692e-05,0.0012475194853613938,-0.020006982523231017,0.23866879242459735,0.007620938422689744,2.1628043903122207e-05,0.01133667353116798,-0.0076299782561448605,0.023700817238981646,-0.054292870855862534,0.00011253016184053951,0.0036268026743397474,0.002419226123680939,0.00950680478250274,-0.02921648714760082,0.0004011158824036766,0.001878925071484845,0.0084851704785484,0.038012618703802535,-0.002996618816040653,0.0001278511323843204,0.0045841937789258685,0.00011944493961901673 +2022-03-14,-0.011456364908287303,0.0735763635064198,0.013119537620984242,0.0001646626510128814,0.013749913632433029,0.039893529903945665,0.1265303838577363,0.045040439570925246,7.565160856141622e-05,0.007819449810006965,-0.006066887985975361,0.0199746532684351,-0.02473829564408647,0.00014050246114958442,0.006028130114832475,-0.011802807699963868,0.011648305542347913,-0.012063843800992296,0.0003419719097470578,0.005532379818639121,0.009621246786513153,0.02050727445639948,-0.009400067616375393,0.0002454828648851553,0.00873404382613998,-0.0031090159387747573,0.007927651585992927,-0.021018567822071347,8.562984015730197e-05,0.008884052756136388,0.008556159504068477,0.03077436800213595,-0.022579517678018097,8.157922674310102e-05,0.041122741279319266,-0.05635832170716293,0.4587297609690115,0.07482854819725296,4.213080424400072e-05,0.025609288739127968,0.016921498421572752,0.012279343235393305,-0.05521556914134472,0.0010626945794485526,0.010634348780194714,-0.02189725230160066,0.04370462322343715,-0.009028669727276473,0.00017519597656013308,0.00885072105606557,-0.0078019958367558165,0.005635392213843005,-0.04007468802864582,0.000676715189725703,0.006728042008749347,0.004859625209593614,0.06032456851343899,-0.01112424940839341,2.4006637880421383e-05,0.008428269592136684,0.013223158365164283,0.03720729034513422,0.003756048783479008,0.00010557429592838904,0.008033052744638974,0.016190702699394887,0.09756976598456464,0.041185452251052565,4.6710256606679046e-05,0.012650175440568479,-0.0007095313600635367,0.0006575661654872493,-0.006113553545906685,0.0021045299419790242,0.009108723184937058,-0.010192242503718706,0.06220979683034916,0.0007810648706692649,0.00013482271640577261,0.004895158369350263,0.022920793869663742,0.13573451791352842,0.007425628379953562,0.0002614854827965563,0.005322658084723761,-0.10614708869132175,0.6774598680967874,0.1698433968105286,4.4135237706666596e-05,0.020422959339543897,0.03608065185013237,0.19226265055385922,0.020685458546543575,0.00030929026972713254,0.02744816675011368,0.06521831730670108,0.8800882101245998,0.070186129671783,3.0752017813717386e-05,0.016910736281540665,0.00927714408604969,0.10319471727935856,-0.06185708349973164,3.003575445846016e-05,0.0025801333521908616,-0.031575086799293606,0.08198920490120983,0.023546088466963624,0.00012405396053947175,0.01769115945906242,0.03194810352498684,0.2253893919418565,-0.007200341862035661,3.2741908253689486e-05,0.008295545987510287,0.004460411729133006,0.011526998569102985,-0.006835915670999142,8.578988629615001e-05,0.011558802759044376,0.007107148069890662,0.025024815446470096,-0.024077444942435272,0.00012985930549821547,0.0068080565324155325,-0.05492179730981413,0.05432203328761036,-0.15704815816705867,0.0005778888100564825,0.003929764635733472,-0.004127659769935257,0.015012086717757802,0.00243984229580375,0.00011573076853846582,0.0055654046705561795,-0.08824224934419088,0.30583079948629355,0.1448694850649773,0.0018518871775253332,0.017928525017851596,-0.04119887302406225,0.4118062309240889,0.026734738534929182,2.572613936791104e-05,0.008581552633260242,-0.014529968973930375,0.04981789087714846,0.012784013054645528,0.0009535656971638915,0.004108169194296774,0.021522127129867518,0.15268031737025972,0.0386245588582816,9.38702083118221e-05,0.01192175779732143,0.02442406934137021,0.036219411446809575,0.003792842676355289,0.00015915563572533594,0.03364465300754708,-0.009061421976707973,0.012268362521825258,-0.02679624300326786,0.0004239490520435194,0.0019715871019374796,0.05476857683905889,0.22188887048868125,0.07865371390629794,0.001913137910345506,0.011951248003816549,-0.020511505366843007,0.0727813088059037,-0.1436976944570912,9.042073736039023e-05,0.010829376111384403,-0.012933322799241427,0.022479102138281883,-0.012734593282157047,0.0014302381175477438,0.0011045768243859186,0.025008503939527835,0.07670511549657981,0.018269882938777855,0.00012917528262547525,0.004145362406886771,-0.019283092132356558,0.056816408232440704,0.0030130184606394082,0.0001375825254139163,0.0023415331181675762,-0.004311291871259396,0.021629757512858092,-0.03622720854618178,4.8648527511298985e-05,0.025189507442362945,-0.022090401422737698,0.06049806991729054,-0.028851170742488427,0.003460829040254844,0.013917232080316625,-0.03474277511235374,0.1427081567298253,0.012930834431739589,0.00012110338410755823,0.0038603588243399825,0.005099950425723147,0.03312106243570358,-0.008575362950935358,0.00011166639084504895,0.013331334009595148,0.01181313085777306,0.08051593573912233,-0.0038445428569096264,6.939558943841542e-05,0.010938851848327866,0.027932973276231225,0.11683619946521219,0.01551779715055347,6.008791564628959e-05,0.008843093917471132,0.014584991449747205,0.024451366025519096,-0.09270754295056491,0.0002908254749707572,0.012375586469632379,0.012643107095369208,0.049115467683006175,-0.033875702265889665,6.40103068038583e-05,0.005991146816508442,-0.00708468087959335,0.08836119948462721,-0.0040102126422145905,2.068664089857348e-05,0.009478004964163454,0.004100678268224414,0.014189517422444523,-0.014995247151858732,0.00010101759753144553,0.001057664784849367,-0.017571763415929878,0.07960113890017784,-0.0003487921467854523,0.00034795576532457617,0.0037915572312707847,0.008729463636907171,0.04133818985545414,-0.015444269669172644,0.0001209505647948065,0.00516432945419852,-0.001872671644483982 +2022-03-15,-0.009214665627612773,0.07270266471631517,0.0048298698128583445,0.00013403426448894187,0.01554680760636272,-0.0029422960491997953,0.009329911309318291,-0.000912699813947602,7.56692413593406e-05,0.0015320581264637294,-0.028842869201997145,0.09948359132571959,0.03451480401381403,0.00013411711731851675,0.00489921830363331,0.01027088310796088,0.010071246719735076,-0.04473508585391349,0.00034418537118499,0.0005704719536965205,-0.006340321277070874,0.014450810816658225,-0.07983302063530982,0.000229570892085833,0.0023639206983151247,-0.014892326634048858,0.041257213201100186,0.01265367366833606,7.881509502544233e-05,0.002637957635777271,0.018545058158594956,0.06196515717061136,-0.013540634652545973,8.781536266703156e-05,0.029039371533844907,-0.009139192494195088,0.07595099304733482,-0.0013486410440770307,4.1264157521491554e-05,0.011804934399966481,0.007210885119966043,0.0065323535400941685,-0.007255286999773973,0.0008512628524071866,0.0020081641901934164,-0.055041195970428516,0.127780847232612,0.05321186145591704,0.00015062046534084481,0.010923877030702312,-0.012171536979893925,0.009074719695423806,0.024281035805913218,0.0006555964027767613,0.0069047478775407616,1.8805332867178957e-05,0.0002885088295500503,-0.037221253261572294,1.9424269977012157e-05,0.0020724037824024406,-0.02629869175575968,0.07520232469652074,-0.031313511211831666,0.00010388525656545676,0.01615538124476636,-0.005329952621610585,0.037422862043965985,0.006240318319625716,4.0091118084287336e-05,0.011202207106955011,-0.006859344129660592,0.005851092652596146,-0.14287625260819126,0.002286486223616311,0.004113020444535346,0.010875555472068187,0.0672225163049176,0.0006195112869543977,0.0001331339417488638,0.004542301939805687,0.01654343718378912,0.12313473944110949,-0.007968016663287234,0.00020804313183823335,0.016560943443251378,-0.02250487097095899,0.11696757192868405,-0.024822399326872836,5.4196595816923056e-05,0.009360408407539746,-0.04486164017851265,0.23714902622510545,0.02942727324525266,0.00031177451294907966,0.005737131371414032,0.033090963135592774,0.38907466609477565,0.005165330220982681,3.529447170280092e-05,0.004788512326880672,0.03194839016745887,0.34216900400782724,0.0862048696347928,3.119536152161347e-05,0.013859059858159483,-0.008884013560382542,0.025543607561494774,-0.0701237613333607,0.00011203397245308005,0.0183540932516549,-0.009730728327433474,0.07060924984347833,-0.0002826281079709269,3.183289422554684e-05,0.007237661274472982,0.00198602729835581,0.005009157763470251,-0.0013240671934566484,8.790182379681162e-05,0.011380278211151389,0.004371290603363743,0.01590746450136093,-0.07855568455687709,0.0001256485011211731,0.0023047183155178383,-0.05707419665764119,0.059470411733942234,0.06735734367962808,0.0005485477315680866,0.013710340277087996,-0.0029713160661703113,0.011449392160976004,-0.011598596302802997,0.00010923263982129623,0.007583328224711085,0.003640650582916147,0.012999438095036878,-0.022431056744716144,0.001797519429303693,0.002250300033493519,0.04210056877702282,0.4308706290098346,0.056493757422230666,2.5125994926813107e-05,0.0004667983895316741,0.05555805103108339,0.16896679090264893,-0.01772646637487689,0.0010750209213510572,0.002256327876175088,0.020127660870219014,0.15130048011867953,0.04111815365253198,8.858876422408744e-05,0.0006794456878944854,-0.004827004903265603,0.006308735044717757,-0.000348993350357753,0.0001805846526003729,0.017218682824058328,0.009935109245541725,0.01352620284132665,0.0005854400322577332,0.00042160006081258435,0.0019416911960564304,0.016643670479940822,0.07181526880830845,-0.005070432184203226,0.001796315674704753,0.011401868524018059,-0.030260363408065278,0.11516609247259803,-0.019103744611184238,8.430238822405817e-05,0.007690430048789932,-0.022068746182368322,0.028801720752506442,-0.03225510912405338,0.001904743131665893,0.005684041390053189,-0.013515234951725793,0.04593488830380039,0.005431006019036069,0.00011657273121623023,0.003966894880671413,-0.02945109754274139,0.06618094093123776,0.004971860480804985,0.00018039683874050247,0.030714817824577828,0.03733935146409905,0.15996617573679187,0.03871564794554576,5.6970828231736834e-05,0.0011740790634577423,0.050542783206845195,0.13933356641621783,0.03148732627561118,0.0034381233798984907,0.003920602204278484,0.005175244138117902,0.026429433728498996,-0.09829422078736304,9.740551675224106e-05,0.017360535229904456,-0.006119589603986031,0.03588444663172282,-0.002217580396073376,0.00012367355054690817,0.004582502178840866,0.01862356466742576,0.12418011567059258,-0.019519181638527387,7.093481656228297e-05,0.0029019681629563272,-0.005513484666068666,0.02350098185314824,-0.008238050530118708,5.896408435344324e-05,0.007062687977810938,-0.07591811253711801,0.12669567160065726,0.052892681520178265,0.00029215479479092403,0.006931276229363377,-0.0025718367061511,0.012336939705688521,0.0017834910900969099,5.183824907803529e-05,0.00662987451829205,0.004767869261892066,0.04936675608018812,0.002530693783510806,2.4918450509096687e-05,0.025444988334249987,-0.0200776176100926,0.08241225499290393,0.004300732379462103,8.515876323037258e-05,0.008211866911013908,-0.006100318405976021,0.028438981035910128,-0.02808885894491597,0.00033811656082652055,0.006377339522905519,0.0034838848874832453,0.019667657225466255,-0.012828921174772261,0.00010145722094247557,0.006511737748953418,-0.0024605626645893782 +2022-03-16,-0.005591973973457369,0.04244587743871306,-0.15838036913231282,0.00013932088021244768,0.019005709492064128,0.05116107425201406,0.22364681453656493,0.053907702740714256,5.488927124684727e-05,0.019453589415179575,0.034738913759915405,0.1139767448881642,0.02601839552328761,0.00014099288247642868,0.0017111971480370598,0.008417147811160076,0.009431942669548821,0.016685075785823834,0.00030118383421047983,0.005610778135180338,-0.01638446907425532,0.0426926608485654,0.016003897032121822,0.00020080610945933663,0.006490472550481998,0.0024661052324657182,0.007274711778304684,0.004787139943739329,7.401888744943257e-05,0.0016478376020086793,0.0028208132831874446,0.010254166023806324,-0.04354498048808185,8.07167840957673e-05,0.003827540012177675,-0.004257279738276259,0.041552819230881645,-0.04805465280083129,3.513421929348008e-05,0.002716775018140125,-0.004677713164084805,0.004090140495254876,0.018538617575257238,0.0008819422493874565,0.0005867685973530812,0.007262745640400474,0.017658466975238322,0.0024139086408100532,0.00014381683378113916,0.021769159977301496,-0.017585485987959316,0.015755806611183323,-0.08402258619812365,0.0005455544361087849,0.0023455048388217863,0.006853262958574679,0.08174124777842227,-0.003892030612426461,2.49849751854484e-05,0.006536963928797662,-0.0030287435720186273,0.007467558857897329,-0.0044079114914259065,0.00012048552905020308,0.024437854255158438,-0.010820012331526706,0.053174353250693765,0.022192271892183917,5.727793571497483e-05,0.0051910447432449896,-0.009145811263708906,0.007556020980933559,-0.003941086898136185,0.0023607611648228683,0.007158254052364655,0.023556595927460632,0.11772303493136198,0.0015930569224299757,0.00016466571733133125,0.018669147384228948,0.08667976361153164,0.4041992703100426,0.19045989082239184,0.0003320705985910186,0.006535000889258269,0.03698352293494988,0.21899715364727976,-0.09485175573833718,4.756973850414243e-05,0.002709867857186358,0.0038245529730241493,0.019669376072351648,-0.062345205704223604,0.00032046226954594663,0.0027135271013685206,-0.06246965883235592,0.9015349728092402,-0.0078708774623029,2.875522609085574e-05,0.003673300876395049,0.02352355115919163,0.2618462920364947,-0.0596393850549465,3.001498737563238e-05,0.0009693946555227814,-0.0006723361957539489,0.0016111602805497765,-0.02787950715605447,0.000134422046026298,0.016962076848472812,-0.01699538713833527,0.12842254985277227,-0.06941679684652317,3.0569064568824135e-05,0.019045536510728635,-0.03187232860462738,0.10508615427496025,0.12935101861153225,6.724278273763838e-05,0.0012732159048411287,0.009157192558408555,0.03708097178903705,0.014796915525872947,0.00011291713098782779,0.0014207294336930053,0.011004638200741724,0.011751533892895988,0.00016672391972755358,0.00053525011926828,0.0165605486562867,-0.005299853645755759,0.022658570159825805,-0.017389541013194978,9.84503773550207e-05,0.0060568578060619625,-0.08268154176377157,0.301987360716398,0.053046209596196985,0.0017572719408176182,0.033505934943936125,-0.027397643409506466,0.2663163384926516,0.007840469759963144,2.645438032553205e-05,0.009137853973068419,-0.01811674974852175,0.047988194262606594,-0.13227299780944274,0.001234289819308782,0.01791428644111982,-0.0006054536396102766,0.0045413835787229085,-0.0961819540787019,8.878065651832836e-05,0.004560679150416175,0.018215262128795515,0.032443445108482974,-0.004529902814431301,0.00013251158440923144,0.0008373133452729646,-0.0023591676086837333,0.003640450943604001,-0.025328939310086573,0.0003719696682532413,0.006757122671260775,0.0062118910342726825,0.022636208583747708,-0.0010916350331233282,0.0021270146589669656,0.021360044867641797,-0.0030209742087604326,0.013554737504748606,-0.052299952002162614,7.150662431020324e-05,0.00225685623042964,0.004825571116853482,0.005639638955455173,-0.06012825491459328,0.0021270348740519843,0.007906634258204865,-0.010158533634911657,0.032323990221156285,-0.008345372652223204,0.00012451512035004743,0.010342590033311274,0.051171361913970155,0.10925264582950754,0.08025362903255219,0.00018986957949336994,0.038471150759375204,-0.027329832780651955,0.1456803271990822,0.014864114571651746,4.5787822571917604e-05,0.012387759918229706,-0.020771325069334497,0.06821262119394715,-0.008584125151363158,0.002886140851345728,0.0026467948320173166,-0.013441492932311854,0.07069845101195842,-0.013361693232254414,9.457539854984849e-05,0.016667739324475465,0.004813371142741697,0.024515446331741467,-0.0038269267245330213,0.00014238699673446592,0.007688227474016252,-0.020754917434359407,0.1492946000143538,-0.03722766487552267,6.57545196029776e-05,0.008755153964791464,0.04090606376191063,0.17515260505530178,-0.07133337764307938,5.8697348676866856e-05,0.016736668509618517,0.014550539096618893,0.028906483463500925,0.013091545678822654,0.0002454218447721765,0.04776500798389688,-0.0022539006451193977,0.010171331040106507,-0.024266879271376857,5.510250650271581e-05,0.010003435515591005,0.01817403145834895,0.17682726582486977,0.010614272418953711,2.6517545895495847e-05,0.021050335154345026,0.002632844604588635,0.008559170811473374,-0.049195917258300886,0.00010752327850942022,0.011440263472013152,0.005392290838911829,0.020958476985536073,-0.02026741814247748,0.00040554734181856767,0.010930177740220225,0.06992014136308733,0.3188308067042256,0.0525796512649617,0.0001256069920786815,0.008766519289499734,0.0017210128288398518 +2022-03-17,-0.00846098445240888,0.06258819023396553,0.0036110873441900526,0.00014296018022952981,0.005381077693632613,-0.022733904898215827,0.07844655519933737,0.010387759704738238,6.953615747791133e-05,0.0024924655805476465,-0.011282969717197886,0.04507977030295881,0.010641607948388185,0.00011578143622539227,0.0011094186399607134,0.0037731250020477426,0.004039761906877765,0.0012702623516178632,0.0003152196482451935,0.0037892823011658793,-0.00035194765682525686,0.0008386665942279693,-0.001976487807542106,0.00021957682744659293,0.022471113498579293,0.0012849496757363398,0.003440337369716083,-0.01511703788936126,8.155147606255527e-05,0.006833454862982534,-0.008054449129472535,0.03013558419392227,-0.032424295263827854,7.842347516861353e-05,0.0076745683537610115,-0.03785035226537866,0.44152994814754354,0.00033978120024841837,2.9397362920936586e-05,0.01686395075932524,0.0019695639705611403,0.0015887451947617518,-0.0917958201208934,0.000956006021376109,0.004776812081950081,-0.01147536477781451,0.026813493970871245,-0.009066007055000663,0.00014964939902237367,0.032580398326936565,-0.016687927855382294,0.013086033804579638,0.044874527132935486,0.0006233310112545736,0.005717195174099349,-0.00010832093313737891,0.0013382475584741017,0.0004006316559417837,2.412118959692306e-05,0.000643743548254229,0.012644435155050584,0.034715642112961936,0.005172489536622711,0.00010819950374429663,0.03430543400623279,0.0007348866384686006,0.00419004092805472,-2.722339903675687e-05,4.937008834855402e-05,0.0032813856137769567,0.005450627782799641,0.005182582469023907,-0.07815831859464074,0.0020512721161248565,0.006859565348680978,-0.01873282999070935,0.12115113607137029,-0.029370705190585635,0.00012724127389952475,0.007964630904457305,0.0014873584193851757,0.007550001668583002,3.905747922207861e-05,0.00030505406775961543,0.009332022614634032,-0.04781136954909911,0.291042993601679,0.02581095451873074,4.627378147975245e-05,0.014516216613359494,-0.03127694552761629,0.16800700574451685,-0.02967391726492031,0.00030682005919144007,0.017203062049887006,-0.033821408647320174,0.43386521460682276,-0.002428243300777771,3.234946416049848e-05,0.012371761241241112,0.018125095385876568,0.1961661399721414,0.00549307986277315,3.087009481986708e-05,0.0042507183007357945,0.029973239547506983,0.07810463007026867,0.01914943967612209,0.00012361741584076855,0.0043434252772114445,0.0005741110754469764,0.003707117966253509,-0.001274541048595917,3.577271438237987e-05,0.005368774927874494,0.00886201851344982,0.023173649808883832,-0.007941811522104103,8.478433057350422e-05,0.0023113811636581473,0.007275841466445686,0.02586285071030481,-0.024861414590887976,0.00012863389801224707,4.634122151598837e-06,0.007471389971325704,0.007220022418883855,-0.00021546758159928385,0.0005914777612702126,0.01681617088447407,-0.01880964344786394,0.06790580736350031,0.021006167887453714,0.00011658955781923364,0.0059757546056917864,0.016660133565320385,0.06157249163541882,0.007341290119728779,0.0017366444995445356,0.007838637080056977,-0.015088278758052838,0.14386328051503885,-0.0021128970444853163,2.6969440394836144e-05,0.001857438748444286,-0.02167193467313176,0.06419592776288202,0.021011232934948904,0.0011037265078729433,0.005878195233689994,0.01547121155894829,0.1004001621820755,-0.06317512569030215,0.00010261611153157484,0.004868263474252009,0.004867557083716014,0.006682216517919529,2.6991987769217087e-05,0.00017192375816946838,0.0035318316388932534,-0.012567135547050655,0.02325290815301576,-0.06896956664497599,0.0003102151023497649,0.003362539718370488,0.034991886150281266,0.11708309608272514,-0.08604184372478532,0.0023164530145177937,0.0026255610941370846,0.03335118664092082,0.1374133400471666,0.09717977964991818,7.787046449483701e-05,0.009382119346771623,-0.045116711858822926,0.07327644861183458,0.009431594398177237,0.0015305595073099735,0.0190395025434316,-0.0019538133713494043,0.007009063784016712,-0.04094569086399918,0.00011044323059916284,0.00843674415336117,0.014291838644245054,0.0357076594513237,0.017817328672925237,0.00016225089318124282,0.003901267616380569,0.010059331874864446,0.03502631877530579,-0.016687475742574828,7.009524622980247e-05,0.00909950990403878,0.05059563914135585,0.14962675071804235,-0.09146745975100112,0.0032049547297367214,0.01972326091303248,-0.03370403928404151,0.20373578090422226,-0.011200706617098983,8.229154473656204e-05,0.01388941396356265,0.0213293546652373,0.12788234232934556,-0.019251673738493506,0.00012095613967213232,0.0014685739440333792,0.017313832670577733,0.10585255105487995,0.005066557489387328,7.736429738738563e-05,0.009965831803601161,0.012342409236330853,0.05611008731568835,-0.039452590616764927,5.528488271034073e-05,0.016164007716773537,-0.030069003868844126,0.06532255212704005,-0.029976755679085212,0.00022443226421139226,0.015458887775828404,-0.01469187261854391,0.07388364610859266,0.032748197416540795,4.94473715213191e-05,0.00902824350232229,-0.0341131936853181,0.3692822530738931,0.047888008837169524,2.383390635575477e-05,0.0016803833458644286,-0.014021478049180462,0.04877904165244805,-0.0541058998167088,0.00010047765653707441,0.003300960001480076,0.01375457467522718,0.05406587429878535,-0.14068355075647307,0.0004010069559575468,0.002527626546475639,0.011394287983869883,0.05190814313980213,-0.02116139043829493,0.0001257255355435398,0.009216950897654513,-0.003038795308150854 +2022-03-18,0.021519009602244808,0.15346226757777773,-0.0033737664612540244,0.00014828842489123456,0.0025794808076757512,0.021443842299389046,0.0685907280945229,-0.00950532759715759,7.501493172848039e-05,0.011068179086559674,0.04144187406016766,0.18338067612826603,0.036424011670001845,0.00010454012653797515,0.005980592976844112,0.014656545622076463,0.015273595459939011,0.02962792246079675,0.00032386066022870285,0.001677621101387992,0.002839684466484297,0.005493920109878422,-0.010419070828078254,0.0002704490861417342,0.004197977661227217,0.008373082100186686,0.02699920815932179,-0.06437125897655112,6.771440429406945e-05,0.009725779939837965,-0.028001198155736078,0.10889064295918004,-0.026010890896815696,7.54528950733582e-05,0.006365418609721885,-0.02030892535675227,0.17418963387126485,-0.013493934930038701,3.998188370218364e-05,0.0071217027690283,-0.00230981399775171,0.002222016687960445,-0.012185811565537462,0.0008016309551773147,0.002415115358966174,0.01698236698053531,0.03949417681292112,0.004442000365446575,0.00015035817362702824,0.010901098974614856,-0.010747307277278158,0.007895491154571041,-0.018151524506101354,0.0006653418982662828,0.0011903396751975015,-0.0022313850519413716,0.030711549847279727,-0.02808206579629913,2.1651878198498426e-05,0.008123832455341599,-0.022124648616732696,0.06174218954858221,-0.14006576521593422,0.00010644993317178106,0.008579781507199272,0.003564743020593322,0.01948294907946253,-0.027668507735864257,5.15033348096168e-05,0.0035766879674005245,-0.007600529907800639,0.006942695798069849,-0.07347048319757864,0.002135200725164765,0.004020557811797787,-0.026765121420394267,0.2112495133269547,0.008022727339125157,0.00010426189366617986,0.016752586344163864,-0.06116671959888673,0.31682458679883013,0.06468833049051792,0.00029895412103773337,0.005419739981003773,-0.02385128792458547,0.1418950000860353,-0.003786684319870513,4.734844258337072e-05,0.004886474142227464,0.008770695886534965,0.05266331304304789,-0.007394117428348361,0.00027448125011309796,0.010176290938550693,0.037996589095884305,0.5489609963363759,0.020684410761266755,2.87232352128662e-05,0.002205645465224826,0.0035317160148076233,0.04300620892716297,-0.009063708025051518,2.743698105298843e-05,0.0052637699968035075,0.03777306583482059,0.09080432968239885,0.029681715198471795,0.00013399803649425404,0.020318412912445943,-0.03578290021869049,0.26017372187390425,-0.01612146924037897,3.176906869653713e-05,0.007994583695117817,-0.02635363579156864,0.08351252002027167,0.06112004501145572,6.996266321926085e-05,0.0016344209293256778,0.009494428259236317,0.03292477496813633,-0.017000686654508435,0.00013185439109848377,0.0019114035158997477,0.01066711809476228,0.008902814617327256,-0.04022199757233623,0.0006848498017104906,0.02463830242212877,-0.024192633371905657,0.09267403773880303,0.03128081208344361,0.00010987808144696089,0.0061681602757020365,-0.08239573652165005,0.2836541500698226,0.02991725937055108,0.0018643814486500128,0.00039985767097540956,-0.03153139135482765,0.2865881173329276,-0.0028600492949833168,2.8292228088657634e-05,2.18340037793658e-05,-0.04963524471231006,0.16032581730477188,0.08063826662016343,0.0010121805195900863,0.008581090367096167,0.006426675560095269,0.04684456532334779,0.0014759918833668756,9.135930890270323e-05,0.015119040713192857,0.03631339609668153,0.048985489545743076,-0.043897766882511784,0.00017496242945937412,0.020440197716680274,0.003113630086946084,0.004307521314657777,-0.2893023602317624,0.0004149000564111139,0.0037215489389497065,0.026513187364118767,0.11050262194927124,-0.16971532294606811,0.0018596863321563165,0.005027736512765246,-0.01725468127693048,0.0684461377316229,0.005988856511503874,8.088134508316071e-05,0.0006380725680184178,0.02363220990929,0.0333409147782541,0.024109670804787636,0.001761992339395435,0.005048141048962995,-0.01842487856456719,0.06006058376143346,0.006437432782353862,0.00012154332743554867,0.005606029045269239,0.004538605053563715,0.010944775969930955,-0.06296415144058395,0.00016810316569836596,0.005848512659473572,-0.0012262029206234573,0.004933261345023707,-0.02301349797773238,6.066555120538317e-05,0.012357898824133653,-0.005844538740399558,0.018307242411751103,-0.017709392314717055,0.00302583587342014,0.01135586285456639,-0.008373294663733714,0.04191267038234227,-0.044747636185220346,9.937831148523335e-05,0.013624588735280602,-0.02229428533573765,0.14631673485206592,0.02808315701538575,0.0001104995065332511,0.00727637844224905,-0.028802727341444352,0.1291486201883377,0.05546175630117769,0.00010548544549815143,0.020027700160370913,0.028000059934726557,0.1521976751792727,-0.08415088526995444,4.6237925109118364e-05,0.008380406904338084,-0.07900175597475483,0.14381102492865136,0.06330795513881006,0.0002678390877217757,0.008073393213594569,-0.007545757462000103,0.03149901310388158,-0.022854988015549086,5.956899466244518e-05,0.0061615148221956465,0.01198681227093483,0.10730116466739355,0.011764263577463789,2.882242736013649e-05,0.01227347609028251,0.02136984451536207,0.06144328962874773,0.10167038384769174,0.0001215726455154073,0.005394468677606407,0.022448780663314155,0.10370577938222898,0.0575326670865108,0.00034120687081317654,0.010093303653345393,0.07245617307372833,0.3608641374720011,0.01472085829512727,0.00011500148911281539,0.016040782575773713,-0.003564112735205565 +2022-03-21,-0.03986071911757587,0.3143113149755941,0.09534395806315547,0.0001341132533248142,0.008805051564081824,-0.0016790951295232864,0.005893269562307008,-0.09650999483595907,6.836432371973494e-05,0.00710636442930334,-0.00021345378947167085,0.0007845713358482801,-0.10276828089230848,0.00012585446753105608,0.005181670618193681,-0.011326911908312576,0.01229281362801505,-0.026023805902241015,0.00031097686561621144,0.0066648983505954865,-0.015026108415769013,0.034475142378808915,-0.053735404121902974,0.00022805427717482933,0.01936319199902589,-0.006766547779211976,0.01659927796259309,-0.030927049279327424,8.9007108995718e-05,0.001532130330768696,0.006169605355923104,0.02045084007782749,-0.03482621638107725,8.851891611316476e-05,0.016444734296132343,-0.03390022327981001,0.27630383434623434,0.014047497848597419,4.2074044441654306e-05,0.005253448936616391,0.005513346501064566,0.004686096170544495,-0.002650012524315107,0.0009072957513731262,0.004295317797812591,0.04394591967786407,0.10520770080217441,0.04080880266133954,0.0001460605441606894,0.0007955300468144261,-0.010353867423287217,0.006960066086511474,0.0175894433948133,0.0007271325641728048,0.00013858731683141345,0.02933069948579137,0.3657945711366977,0.1394255328628237,2.3895050571147958e-05,0.0033883677572976983,-0.022797668866380433,0.05275226138191997,-0.04548957219801503,0.00012838089454038815,0.0037914745569280414,-0.00856205999693702,0.04793708418048882,0.009690804322328227,5.0276897577634205e-05,0.011275658096071013,0.022952564190128467,0.02327913700605731,0.06770509974983059,0.001923035523649607,0.03221543823127261,-0.051646948173162927,0.37529020932747603,0.0428526003471367,0.00011324773827870418,0.0003457809970802109,0.05298502048133225,0.28650096289350957,0.04753716065169129,0.0002863750991462566,0.006943739117801799,-0.05606362947665369,0.36035538296043923,0.003927710487138491,4.382391292616323e-05,0.026323297483845893,0.00951189443818927,0.05355557447295406,-0.019529278704965587,0.00029271780991063314,0.03164008770304936,-0.04454559487797765,0.6646971732039852,-0.001966683445930431,2.781065147356594e-05,0.006599245469269899,0.002789129053910043,0.025549459757460917,-1.6225374657749027e-05,3.647275734970323e-05,0.01132759436876505,-0.0050091561196214185,0.012743302085233341,-0.0377714999103165,0.00012662088508856524,0.002642324908487546,-0.03337922926456389,0.2531664435930306,0.011748335486756837,3.0455276009030846e-05,0.03368916690845287,0.013494388499351133,0.03502470536020285,0.009938905573415343,8.541931826232923e-05,0.005086741242236722,-0.012488907718658581,0.04138964967800891,0.06221625574780038,0.00013796893173268951,0.0026337106292073286,-0.01523737360219354,0.016468650281618435,0.004573024873908114,0.0005288441081176118,0.0035000329253884284,0.006056934616605388,0.02511972447634448,-0.00986230074903774,0.00010149018007304853,0.013814857299835458,0.04386307018659651,0.170294418928902,0.0372719681615379,0.0016531710310472947,0.03185212045498419,-0.03330646127751173,0.29521787759367485,0.004982348630700557,2.901135638872808e-05,0.004765171403033602,-0.08294276429001755,0.21603172564734763,0.11526048181252548,0.0012552558102911088,0.013510186166330191,0.006795566942680889,0.04819309844131761,-0.025301558056240136,9.390019395485674e-05,0.007530099612256739,-0.004034005241616943,0.005815411092201776,0.0003720521549223454,0.00016371988238338714,0.01642177116393327,0.02947712271388358,0.04660340411119547,0.011044383168012772,0.0003630541142214204,0.0027154904660998923,0.005257750852106035,0.019504380363210963,0.002269477059126762,0.0020893836210094836,0.00437177565842001,0.015092272559501414,0.06156509700261179,-0.023894083311489584,7.865212161741326e-05,0.005404700553738718,0.010761450631447617,0.015408502060801738,-0.03996481180279883,0.0017361513753432942,0.01131643087563703,0.02273808446477721,0.06768428679851457,-0.029753085468457004,0.0001331012257223535,0.004314382811576137,0.02085176491388101,0.05842435268196131,0.03336312892975614,0.00014468026207922698,0.002374147795870369,-0.04713472566300962,0.19891506373545242,0.019675630273211703,5.783453331531214e-05,0.00022424757712232943,0.02363407345957209,0.0722443139415279,0.004263900881670089,0.0031006515834117064,0.005275537180836937,-0.04071332227866468,0.21164386558197143,-0.03291127423325574,9.569107391855058e-05,0.0071336852203849575,0.0183095728674501,0.10819984373802038,0.0011962057630639173,0.0001227191571618065,0.004397022863325233,-0.028122921333185957,0.14995583170898466,-0.006102376389706768,8.870452422136122e-05,0.012308458203901756,0.04250368893978881,0.17351334501591895,0.030921999022399047,6.156602823900144e-05,0.0066077681870139356,-0.025683589549941353,0.044607189580639,-0.048441950853449336,0.0002807244586250483,0.007727661923348157,-0.013411142628400798,0.06525105007789851,-0.015542235052428216,5.1108443178412194e-05,0.0021073039704323435,0.02035652761236954,0.21614723800865307,0.026789079219501074,2.4298826146483624e-05,0.003989256013836904,-0.013266834628890991,0.03557865555012187,-0.013204143687784524,0.00013034271030691299,0.002592536856565764,-0.007950670595506963,0.030846308981587488,0.003079188598014637,0.0004062828843074903,0.0006561208695746155,0.02039659114192995,0.08483000094982145,-0.010726108490913539,0.0001377145776379254,0.015351112988367643,-0.00478173197168457 +2022-03-22,0.020260812743779704,0.16072282463577628,0.013521067667503653,0.0001333109705541727,0.004099690585168222,-0.009403318349677111,0.031561961091123365,-0.025663627743473284,7.148710105084985e-05,0.004220009367557051,0.018522157511005125,0.0600341349243631,-0.00804921843498,0.0001427218677873668,0.012516365371882115,-0.019058672343451905,0.023392513693400997,0.007108065187542516,0.00027496891986113827,0.004171259580847879,0.004785348771639292,0.009856039893491736,-0.03433285547110071,0.000254043984468586,0.010832861834444768,-0.0009679263973154877,0.002680838534698675,-0.05935005600517365,7.883488101066786e-05,0.00694170106521453,-0.0033600308486880703,0.012815815148368744,-0.0957914632439335,7.692843284449903e-05,0.0001593682255797387,-0.0030393121199114954,0.026924866737758034,-0.0330280158611037,3.870974887893165e-05,0.026508288122382068,0.0010325675733830904,0.0006981254964117851,-0.007565056880429645,0.0011405905518416662,0.006599048711641309,0.010687774073273745,0.02816182491898112,0.0027968996929444356,0.0001327053271557581,0.036617389599388026,0.002147838218595264,0.0017885595342130055,-0.0019580470533728488,0.0005869789452015271,0.002418814698984504,-0.0025816702953604252,0.03058629220880767,0.005325548067210969,2.515340212802095e-05,0.008190573036728594,-0.03946315832549636,0.12031244315498844,-0.07070193039810303,9.743889085278824e-05,0.01528434660768518,0.007338194370670776,0.043910801003429374,-0.004159526686903357,4.7041338430792145e-05,0.0031478696232780383,0.033219867410565165,0.026637898974526123,0.11516985816839892,0.0024323210582262843,0.0033331690254323944,0.056600348599525424,0.38999269799289127,0.06205510149534075,0.00011943035910752394,0.011949353146197769,0.03818574850307944,0.2160731913690205,-0.010508446886449599,0.0002736583180468008,0.025254440478686444,-0.06483600356668479,0.4395829264152901,-0.0007038475076626237,4.1546685030630736e-05,0.019394819247345936,-0.020097842489373983,0.10831649115447277,-0.00038350773795294615,0.00030580294451838824,0.022105812011358042,0.024602071515528182,0.28387076203781675,-0.031542867483533056,3.596509768834066e-05,0.0537601274002945,0.017609958561601878,0.18965547364576416,-0.027174204869557583,3.102234774097618e-05,0.005568263953326125,-0.0021053941304237916,0.006519480819989363,-0.05335766543047704,0.00010402629996512167,0.004428304069072319,0.07694943159213183,0.5802901570748031,0.13216212429072857,3.0630394349391923e-05,0.0007142585082267104,-0.004598449401977516,0.013950848964964775,0.0028726049669861283,7.307825315215413e-05,0.0023687147661759387,-0.009218506796834312,0.03621729618056504,0.07975349857250291,0.00011638396562619546,0.0010417176625212036,-0.018718405267726397,0.017685412632850787,0.005788981865505147,0.0006049635521799029,0.001585513237917305,-0.022740637850062893,0.07942206903289462,0.022791192664668312,0.00012051676190586968,0.0031462214729216,0.01659888553639097,0.06964688107357313,-0.0017139087658761781,0.0015296653606621086,0.0006563971161466305,0.013887221598855559,0.12492400443622292,-0.004308101787749192,2.8585886420936555e-05,0.002845540228361019,0.021259531271375642,0.06253286157803503,-0.004773757618325359,0.0011115183883041552,0.017343656852722305,-0.013085705363644763,0.08983307200600446,0.019794720093716415,9.70033045508242e-05,0.002679467738919967,0.00313340917290302,0.0053613186626832255,-0.029020509043004135,0.0001379402076529637,0.004652697351995966,-0.012875130878500063,0.020014835635708016,0.02158600055268159,0.00036923557552732646,0.008632311589202737,-0.04030947872009279,0.16727661700460034,0.210089402733925,0.0018677652297654803,0.005456608496201514,-0.00566515592285603,0.021775822769165214,-0.0013598028789778116,8.346947169422485e-05,0.00768783970453365,0.007862110234394518,0.012783224146531656,0.001900504652473655,0.0015288888607521503,0.01212462622792236,-0.020731951730158783,0.08188386603312726,-0.004524931816811985,0.00010031315421136362,0.004462421007467337,0.009920272304983591,0.022468705497447616,-0.04309074280332696,0.00017898058268706177,0.0021985070845284304,-0.003761875749128343,0.015871144861803948,-0.12546327618092135,5.785089957296246e-05,0.005821265846878683,0.03835301914995244,0.13183486291840396,0.014546420142502906,0.0027573210941984313,0.03168340723308191,0.00764674714143359,0.038373697703600135,-0.0870343053641803,9.912510266352412e-05,0.0061825436406426106,-0.02863602053309332,0.12997117889360915,-0.016075751029265603,0.0001597814622665701,0.009417029967469294,-0.026556097133842053,0.14755917075244537,-0.00833041140482269,8.512296475477008e-05,0.005356439183096023,-0.07391106695500001,0.29582472539621707,0.10708222103245138,6.279461419319417e-05,0.00579597823670169,-0.04726765296167576,0.09740003243639876,0.015906107823281886,0.0002366106730139612,0.007944085539399853,-0.019875342123601824,0.07799839936845765,0.045471753374326684,6.336410405898197e-05,0.012850545444158777,0.043668939144378194,0.48669676852111443,-0.0201440618129968,2.3149705177064228e-05,0.017258458235983716,-0.00047863568004603314,0.001417757978702709,-0.016680063584802216,0.00011800813167846181,0.00781708182481397,-0.052026692540063556,0.22157318310724128,0.1790223641682036,0.0003701152601464025,0.00451670805209615,-0.03952402974180649,0.17502649284624439,0.051635324153778334,0.00012933891781686401,0.005160789145426596,-0.001575788705172259 +2022-03-23,-0.008504537019982649,0.06353372216885943,-0.0038107180656695426,0.00014155752484864163,0.011833523611678881,0.0182595739406307,0.05706150934707708,0.008625726028839936,7.67817331907022e-05,0.0019091273285434562,0.01584838071541361,0.0729470083270312,-0.061373285951962744,0.00010050197919546396,0.0024797327023761227,-0.008963311364368976,0.010643011399623453,-0.11836504144784674,0.00028423124150503794,0.006972069488710151,-0.0040363575420617566,0.008359089482591614,-0.040790266035220624,0.00025265530831114876,0.009630239460527499,0.006193750258039247,0.017478160420667042,-0.13245703126605277,7.737572095193064e-05,0.008815860957492016,-0.04583648408513082,0.1698214498184696,0.0457234960845795,7.91969776839332e-05,0.022548408936754687,-0.0202939789959546,0.16491635777609537,-0.016874418210187706,4.219899288903243e-05,0.009439146889092621,-0.0057075610013967385,0.003945501048737357,-0.030637179794757902,0.0011155606465325328,0.006905513060441323,0.006745495534240201,0.017591814987848946,-0.013242922000778128,0.00013408033814823992,0.042801408084739145,-0.013104309383370583,0.00989273751074537,0.01075059626606241,0.0006474735180849582,0.006783261411734853,0.012702576774425354,0.1807530663059673,0.0043261990681468555,2.0942520270097542e-05,0.0011129764974260909,0.06535481278899756,0.21374560450957955,0.2105044988141002,9.083044045966322e-05,0.01118380018110278,0.018077828763938257,0.11131932671993928,0.010808122069863105,4.5712767603806234e-05,0.004105000324997862,0.031175105024932915,0.02863671281045309,0.07771501459278153,0.002123282271970977,0.010813377635738992,0.002960312710875524,0.020098396460236156,-0.03387997534747773,0.00012120716374785303,0.0026000240169576404,-0.027071782621015433,0.1831737283866807,-0.0035195177766017822,0.00022885578803743498,0.0003461297452751232,-0.017215161316505828,0.09394546352474756,-0.00803067777998257,5.161741355091198e-05,0.005597911446925185,-0.005126744401744547,0.02453724461054925,-0.006181691823303051,0.00034435205645273157,0.0016180093070839114,-0.018594174997985147,0.21969247875887213,0.0023249434538390353,3.5123028514536695e-05,0.008078203382452472,-0.02382729160337099,0.265751925613394,0.1057608402429207,2.9955734231232915e-05,0.004089493251350846,0.05263776811253579,0.12657171531512773,0.08135005341132549,0.00013396259650720523,0.007974610557765991,-0.0023262242085724254,0.017918709963221858,-0.006248695090772201,2.998728914135957e-05,0.020590924533090436,0.007914754304308321,0.023218234101348906,-0.002575353341432379,7.557630139470205e-05,0.0010398826715128247,-0.007244564472689152,0.028164408847765554,0.04303283198268943,0.00011761432954757685,0.0008153174419413334,0.06753652951341099,0.05806770609418498,0.05466557251229363,0.0006647825809087765,0.029877526447618968,-0.0108121094719524,0.03807865681163043,-0.020018709285701385,0.00011951291043441665,0.005988651145207462,0.01810101429040481,0.0675291910418759,0.004404052138560154,0.0017204043768562086,0.02093697039007654,0.060285696436680865,0.5878966867101562,0.12742568565338,2.636910958508231e-05,0.006611554685314604,0.00219106534865814,0.005551473055163071,-0.04252039418559225,0.001290382201581913,0.02546809355646726,0.03405318178484982,0.2280915487046382,0.05238126135185477,9.942008864151303e-05,0.012090288266287273,0.013000791975968396,0.018098196908618826,-0.017451419303711156,0.0001695430089531614,0.015282188781022266,-0.0064205559524037545,0.008133987544454328,-0.0059172978786530975,0.000453078074104862,0.0018167943513338245,0.019601775717935293,0.06553964898321492,0.0030320683792433465,0.002318150595118126,0.0070611216653197195,-0.009525441579072275,0.04533208380240389,-0.017969945367016876,6.741705935568577e-05,0.0020335765447825876,0.0721772481637784,0.07751598532303093,0.16683208449440465,0.0023146548487200276,0.006077010961501943,0.007095555863753726,0.024424493467242982,0.006218935765329358,0.00011510041628799308,0.004310593364677866,-0.06486904718997602,0.183089768443924,0.12456737981983833,0.00014362624940659032,0.0014053168977038106,-0.011234501858520598,0.054546061305705655,-0.002104391526809826,5.026947495212379e-05,0.006249815379587017,-0.029853264855324215,0.08542992440992869,0.018704699764396288,0.003312072767679862,0.011001565241355577,-0.014590293556767315,0.08734097621004146,-0.013956421347917337,8.309723227933377e-05,0.0017575101725832115,0.04075020181090376,0.20085858953872499,0.07457167769453724,0.00014712962890896938,0.0297164642516256,-0.027226250038075606,0.1690293603959126,0.034973499029852195,7.618586086888841e-05,0.00590888671708805,0.028764643069292665,0.1192987526461912,-0.02243594905306121,6.0599701012440174e-05,0.017202128395691973,-0.04659859735202209,0.09127687244040862,0.01197495866093824,0.0002489095087300873,0.002159733297523087,0.013809125683138102,0.049286016603050084,0.02584835960393111,6.967176925697814e-05,0.002522932496474646,0.008488414366776857,0.08692492507111538,0.002134288279696401,2.519495182099858e-05,0.022431195002333634,-0.004625433669181191,0.014815236946086134,-0.019550391406437318,0.00010913217736717654,0.0006947019530865365,0.035200868756916644,0.14243342889409502,0.08626625510778771,0.0003895555744968301,0.000280912840193531,0.031773636264978526,0.12361528883913767,-0.0006121480778526256,0.00014721990311394292,0.0021802206106708946,0.0057287706283464315 +2022-03-24,0.00902392066249933,0.0615617677340003,-0.030783059609026314,0.0001550139454885482,0.011507714268045992,-0.008580139291535251,0.028670475873306015,-0.036179079888438846,7.180752588787234e-05,0.03241265111116659,-0.02488295507363281,0.09026122353002448,0.036843342935937294,0.00012752576682435819,2.3374475499568156e-05,-0.010180083181049678,0.010440561989787685,-0.014103136070823773,0.00032907531571045096,0.0002608142373221609,0.01731229106410739,0.040827478610947744,0.0064568611977970005,0.0002218705998022413,0.00828701121086067,-0.014334207777343407,0.03909826015010847,0.029370688271840913,8.005030725785915e-05,0.003585878540306453,0.03493980317681054,0.12514750445501943,-0.00585600156521404,8.191965517301956e-05,0.006179635840051805,0.023964174653052853,0.22995851048396954,0.035284760043264425,3.573646608409554e-05,0.023381332807394194,-0.0034329191252026087,0.0026048422487881737,0.00899938117268247,0.0010163117146771122,0.002469117589298904,0.01875158108580684,0.039589950621356576,0.007546780582125531,0.00016562077728731205,0.011783143033075724,0.00878379358358012,0.007182786242742417,-0.006775584247127989,0.0005977416767792888,0.00218961702804537,-0.015072796430110943,0.2143399503173122,0.0062355949482177115,2.095624646025226e-05,0.0006502542425401769,-0.014877293337916727,0.03824078608863233,-0.00086054452829162,0.00011557080885779585,0.007340032816355473,0.011346215446844792,0.05808775335567554,-0.014282775967908971,5.498297875987721e-05,0.006062308145473139,0.03703138086459979,0.02776041375287054,0.017865599032677322,0.0026017582754868517,0.009940340575281165,0.05920926435566178,0.4034692513245695,0.06643723314858238,0.00012076228740605713,0.0020148569717418022,0.031032451499049266,0.17802785102926072,0.013329565900543154,0.0002699208095005625,0.01620697008245908,0.010259978669942191,0.0675232949259415,0.007688694587802274,4.280098734366319e-05,0.017339152965284495,0.003340297766153037,0.016938320283243862,-0.04258973675992749,0.0003250136866710272,0.02610576310893191,-0.0018541135689916488,0.026548952721248974,-0.048356366242157084,2.8981387210519625e-05,0.049865535505563365,-0.0010262805705342512,0.011058152125518899,0.004844335884538052,3.100739315253341e-05,0.003495995597762969,-0.0441755991011783,0.10630335378902912,-0.02229760594958643,0.00013386228605128837,0.0003083344591361002,0.019989706522000703,0.12053384396455964,-0.005606128897092276,3.830802721138379e-05,0.006306368088702493,0.0003828027610061172,0.0010047402859389603,-0.1211599398588921,8.446924799244274e-05,0.0040404239028290125,0.016306885822557397,0.0684450125305126,0.06948417387346321,0.00010893760389378522,0.004383341091987035,-0.013272850208688316,0.012604968506255936,-0.037200984336686664,0.0006018634768473387,0.021693908971879866,0.001655496154007776,0.006694703871906306,-0.011088692454836601,0.00010408372190912841,0.02655839591748993,0.0018086793053890835,0.006165975744050607,-0.017305941805064902,0.001882690504577923,0.0037579714627185134,0.021587310965434512,0.18240988626857702,-0.007414736285875792,3.0432131389396795e-05,0.00031608074043719576,0.01843744312256213,0.05963677896792903,-0.0033666836615346466,0.0010107826636320935,0.002130267197930571,-0.021994405685871018,0.14514424678127408,0.03282799770120129,0.00010091089280768635,0.0015049999098334613,-0.013406305902005854,0.023659292430912127,0.022528838192200255,0.00013373736399511154,0.0020651538645733037,0.007947736209920831,0.011521545640076509,-0.012114102519055423,0.0003959465958412959,0.009213189605541655,0.02126685205445827,0.07446976903377467,-0.020240631556671385,0.0022134695103677563,0.013623507030055033,0.0022357921901344996,0.00829348231130555,-0.0048179990791116616,8.649378103012556e-05,0.00929750338597271,-0.0034018414318532637,0.005400064840519716,-0.013261124195549897,0.001566001895663943,0.0050873418413549835,-0.010119731067242902,0.03506135149865934,0.0010226570054252765,0.00011435531513991266,0.0040224737333020245,-0.001994877148293245,0.005271290272845023,-0.005289434436904103,0.00015341209455922784,0.015249139551264198,-0.012259029051710479,0.04081534422228053,-0.0014878653964036626,7.330718379230231e-05,0.008490214623293028,-0.03717407284143379,0.11183173737311546,-0.007701346698878419,0.003150599005371597,0.007581811650951318,-0.006630852331663196,0.03276222706454478,-0.0007034096065782091,0.00010067844776524642,0.015865639655245563,0.02544573451378037,0.1307819584440544,-0.02849899500308231,0.00014110030077084542,0.009097829771439019,0.014920207775607736,0.0857774569561156,0.01461174345413345,8.227168710015994e-05,0.004440570865406053,0.03221781299350841,0.14408245372966333,-0.011464828312619744,5.6199487524943554e-05,0.012157484050687254,-0.014609460362096111,0.02793111810374869,-0.06739097364562162,0.00025502059068739197,0.004290010004747604,0.012297324428011406,0.05350729083140418,0.0006515492181521809,5.714944855818839e-05,0.006034017890027432,0.03028725328533608,0.3120886052217653,0.03314444121478226,2.5038785670696707e-05,0.017343456120320785,0.007258139251899234,0.0196780017678312,0.015408121072058946,0.00012892978707826333,0.005549575450544022,0.018753189572526696,0.06201923519438047,-0.005906777048649765,0.0004766248794510604,0.0063157593456251195,-0.025430744226395515,0.12111556347639384,0.022608313786019185,0.00012026268947244968,0.006162508825700878,0.003440097898341845 +2022-03-25,-0.02581678484753374,0.1999109054968785,-0.10994431073247178,0.00013656903888897303,0.005897804772312265,-0.07666110232283947,0.22209667300491698,0.06555516248986314,8.282158421448992e-05,0.02848705277334605,0.010233560943529403,0.04135192664447042,-0.08820088999102582,0.00011447963497839732,0.005298924893459088,-0.03593757045916452,0.03444860589384785,-0.012271565169400258,0.00035208288867528834,0.011150363851274499,0.005738589962082671,0.014712066775654759,-0.023637402301986875,0.0002040935496940626,0.007742950717467772,0.012857575168582552,0.03517536888096586,0.002341750238921467,7.981180839643944e-05,0.009337816116987405,-0.02907557299781131,0.10418592647662463,-0.016742034412318106,8.188589107706738e-05,0.020463873313884898,0.004007304876254722,0.03601355697701776,-0.024472288470473037,3.8157945342863554e-05,0.0006061368093411032,-0.00038793224303424877,0.00028607048671798685,-0.09516520043678904,0.0010457493643866353,0.00115373191859664,0.07549639297727992,0.16423316863524576,0.09694514266129932,0.0001607412040054888,0.015083727699025063,0.034265704166902215,0.023345169320845124,0.11955848634321714,0.0007174423203034054,0.0042943306951524485,0.0020488750076056166,0.02787903867568057,-0.1091000378658275,2.1900824245639813e-05,0.003567948250847916,-0.03934333491506747,0.0997986979201939,0.018798688883826558,0.00011711090380669945,0.0063397650047712,0.00024152156732479196,0.0012636280658259432,-0.033661925967722245,5.3802006599396984e-05,0.004631377868759199,-0.0278774096337119,0.022658402320556718,0.04439030422557799,0.0023996400706950225,0.009809692005317387,-0.05187552896898302,0.33129724835650515,0.023634621179498473,0.00012885367728949303,0.0018007261407792354,0.011969794845837338,0.06882727708253868,-0.007525552345125811,0.0002692987579457789,0.030130423274917047,-0.013741730924443585,0.06589474088980249,-0.005968741278024735,5.874239398983342e-05,0.015762600051032746,-0.021588748104221425,0.115319145830923,0.009928271834281353,0.00030854097643075103,0.005808623193985415,-0.043646666747944825,0.5976162695631473,0.02201809395806678,3.0308113272524673e-05,0.005818570795022036,-0.009151721680622438,0.10501856570428669,0.025114669700548008,2.911510968079385e-05,0.0010057951698289069,-0.04037262813892073,0.13118569037344885,0.047543245014963494,9.913415572781613e-05,0.014422355469038611,0.0277683059376066,0.19202044727825487,0.013591688110406692,3.3403677697744424e-05,0.020961921365535666,-0.0049345119361598805,0.014386803790733928,0.0015645959926603673,7.60426539103149e-05,0.016199950722079755,-0.022548024236559473,0.07953939297262784,0.17573075831102705,0.00012962083546483688,0.0027965641925803524,0.007738877706090866,0.007361530000208853,-0.0670303533512421,0.0006008768314485269,0.001562434834276945,-0.02781247484660158,0.11265710681008435,0.02993068470008407,0.00010391232230943442,0.011078420387640366,0.03049149513164445,0.11934904270412662,0.01747513173192811,0.001639754966807189,0.011875401467323769,-0.05263161907422473,0.4814761895954507,0.05069364864189906,2.8109564074502962e-05,0.008234805933335237,-0.0026937700528649727,0.006619302873030897,0.0002851858556839398,0.0013305142709730707,0.027755632244272157,-0.025676885574497023,0.18337532000488962,0.0051983546084690335,9.324533299608086e-05,0.006296465084659087,0.014336497511476235,0.02626320518696459,-0.050636876182167265,0.00012883703548521798,0.016442983567262932,0.013924094031352932,0.01896264014551403,0.012405117908934296,0.0004214752314048642,2.30556423905107e-06,0.024540935208606902,0.09958775789329069,0.0012724553378596897,0.0019100093585422764,0.013103908813312883,-0.008334721597610598,0.0334446131893825,-0.015589084366951732,7.995677904390774e-05,0.0029065013462163895,-0.02752631729760968,0.03609312516985353,0.0005195578917720006,0.0018958362185124602,0.008636311623405188,-0.014280501863507091,0.0362873894935845,-0.014665318173664756,0.0001559207016514355,0.021168495349138117,0.013378920980996006,0.029115862211543168,0.011777137584690069,0.00018627381503316125,0.00021644551774781397,-0.06346097633117079,0.27636937621756563,0.15423671759983287,5.604421055834982e-05,0.008334876545098149,-0.03951266188736684,0.1091644057080181,0.026692460593231594,0.0034306253413694896,0.003697536207343311,-0.0025093230735423076,0.011715245501353307,-0.02601650086882815,0.00010654811155598428,0.01772781889893172,0.019932756864847377,0.11533242254163818,0.008492238958051498,0.00012533626231385904,0.009176399064401354,0.023426573619251254,0.13968970150269103,0.005819596039971624,7.932189529198749e-05,0.012748207170676188,0.053246180966178704,0.24034403430337123,-0.025906922620303006,5.568042121375696e-05,0.0070597532645960475,-0.02707296797519712,0.05213544724807634,-0.012003599759457565,0.00025318161165528203,0.011208431153076277,0.01037437358752976,0.039292267294067276,-0.018769459926762006,6.5655206143729e-05,0.003311649697871791,-0.0014157617624337424,0.014866504289275233,-0.00605970460667691,2.4570421314622235e-05,0.002045455637292315,-0.004215503944656576,0.014618340043082202,-0.00772378240563304,0.00010079997040703249,0.006825392964744126,0.024040282533705503,0.10717804258018178,0.02284817734354584,0.0003535588537062857,0.03157400628988877,-0.03575189179616319,0.15692792944736156,0.03645375327726582,0.00013048800118761,0.0370939372061029,-0.007117402067021994 +2022-03-28,0.031070951681170245,0.21629456577419318,0.057038827202683606,0.00015191320669090272,0.013114907542377267,-0.08821262670359663,0.2654859024125748,0.052254838322474934,7.972597081307672e-05,0.009209930731486208,0.05624487043545789,0.1921252630939491,0.04829035159678937,0.00013542400393212384,0.0038970539900423135,-0.00937322902323256,0.009827516917323047,-0.018416813124172145,0.00032189429881758974,0.009562476066044247,0.009354238410399533,0.02366799299871671,-0.000495643089272417,0.00020679725738233413,0.00029780343272718267,0.00038070821670174954,0.0009138133445713769,-0.012441392994555479,9.096650186066828e-05,0.0012625311568582446,-0.045009041432572505,0.1499123222043268,0.03866226914136926,8.8095208416425e-05,0.030439426567226823,0.03809238575944239,0.36258056750141154,0.06466850854690163,3.602734545399481e-05,0.006423246987253045,-0.03079328926182497,0.024328329110681148,0.19829254065147295,0.0009760871288516054,0.0031414512547227997,0.06367068850230151,0.12602309159133215,-0.010653701718790277,0.0001766653194403051,0.03725981063310365,0.021866680998640566,0.01712525535875818,-0.05668902589454074,0.0006241229771543965,0.001004202865303709,-0.007510085349973367,0.12398028640050038,0.0037886654939628694,1.8051571954939953e-05,0.0036505241710030134,-0.056815649891736354,0.143775774816374,0.0030338693704782685,0.00011739059393039326,0.0030749922939269153,-0.03232824338788917,0.17880446311079237,0.19623864637304264,5.089388105495712e-05,0.0018023625733990143,0.028804391218476454,0.02488712149349082,0.014344511236552226,0.0022573921240534715,0.0008710859364144958,0.005170547794790286,0.02936820946597428,-0.0007298737952583655,0.00014488092018330947,0.002316028461458717,-0.03018950013055206,0.17174118006472758,0.009073654625583356,0.00027220099688174827,0.0159444774212791,-0.04762902886568104,0.2941468830018325,-0.040148984934345815,4.561087794580621e-05,0.011296038549150395,-0.052936561751700494,0.2694977182353839,0.04422974426149636,0.0003237333529058485,0.021436859608342556,0.014515808095724572,0.18893601306542615,-0.006329787590242534,3.188281819367716e-05,0.003973959680814421,-0.007756481401448965,0.07289813212110412,0.011629071185354238,3.5549219012677305e-05,0.005125067490687068,0.04021621931794386,0.11496871080409984,0.04059216606819409,0.00011267935050402628,0.009031605093066577,-0.03372899499516472,0.2558699199489988,-0.06160489545926713,3.0449246062901838e-05,0.03431044159477238,-0.011652792216794942,0.03218748083370305,0.008972887996927342,8.026392567078037e-05,0.004558091483079642,0.012598603196535572,0.0440206487723471,0.0275483768204314,0.00013086230161576918,0.005138619867037414,-0.03825796857539034,0.03998380121569028,-0.005924977453275542,0.0005469068813634714,0.00685597359014911,0.02992278173712389,0.12141212537169413,-0.028882895562362138,0.00010373514352083884,0.009694049257913777,0.04271571913767346,0.17287413603959412,-0.015808849089729102,0.0015859039262672576,0.010793710042438263,0.028256198118481065,0.22658746162493237,0.015842867762369737,3.206712672359945e-05,0.02618865458028357,-0.007815191806193543,0.0216643670005902,-0.0020555135433372763,0.0011794102746489144,0.0014148180254600915,0.01209012399560838,0.08441795707564613,-0.020198533997030876,9.537214716548055e-05,0.0021448642711580476,-0.003222694186006341,0.0047463735075794905,-0.11689612164500564,0.00016025167241226168,0.0021771304256874265,0.004361292002541124,0.0050734735197324144,-0.010069945910069022,0.000493416514261895,0.0004697902757943189,-0.002011818205874416,0.007933992513889413,-0.025266351283206916,0.001965383423376385,0.004787274053180719,0.004676897938099377,0.01914209551458819,-0.018331622980528473,7.838966059438616e-05,0.006709152804298561,-0.04773109503033054,0.06643260809647183,0.021385965188990115,0.0017860651102107874,0.010319177043890345,0.02445372107043718,0.07469315127832042,0.006830663391595789,0.00012971201565753883,0.005739201557918554,0.03438911104032865,0.08715650662574961,0.045006108429311346,0.0001599489932297145,0.02184507864024848,0.021708186316587642,0.09183872809303247,0.024914342436859426,5.7691469990391556e-05,0.012708656978292682,-0.056088871502730786,0.18482704937771288,0.04264791845190774,0.0028762672065233874,0.0006012288722813012,-0.0014489377782208057,0.006605475554431912,-0.08763076197907385,0.0001091154421937873,0.005843881609138695,-0.021618598935551715,0.11566263005616437,-0.06717318436422808,0.0001355486715221397,0.00683246239658547,-0.011415702098185999,0.06408850456712883,-0.012179303591591964,8.425024797217052e-05,0.011543710372935717,-0.07618452576088187,0.4113782725259508,0.14678897744685201,4.654497626953932e-05,0.008420716760557546,-0.014022792797893232,0.02563593395521546,-0.013353918943538094,0.00026669493448462086,0.010860691573336112,-0.01127785132514348,0.04618251959691777,0.007475810316222572,6.072438396989018e-05,0.011474310662904955,0.012634931181547704,0.1374128578475142,-0.040177325780909295,2.372339250311727e-05,0.005560679024251608,-0.0012132051301841373,0.003626287108062421,-0.005545915520853542,0.00011694482724145092,0.006948710026243499,0.007046834617346849,0.026021762891800037,-0.0331926785851846,0.00042685987685212897,0.008260231126242964,0.04679254068692581,0.22200433357087965,0.014793061617268743,0.00012072215255374405,0.026582029012418903,-0.003043117089529584 +2022-03-29,0.0291482345602703,0.1804270552948765,0.024583482492641744,0.00017084299583967113,0.0025248868351877875,0.03670347054923669,0.12511558434731992,0.0370674488580916,7.038923568831813e-05,0.0036272706110553566,0.006826747966734305,0.0187131933934367,-0.00012115141992891097,0.00016875753311539467,0.008866927631109052,0.019743921062472334,0.0157151671151505,0.07987631404733296,0.00042401601357384494,0.005326517703714043,0.024062278026610154,0.0469268934617269,0.01873254816361223,0.00026829507944953733,0.002988562794796139,-0.015649055199045667,0.04697629609173449,-0.14012296930300464,7.273711826973815e-05,0.0030967297137652876,-0.019062907875154966,0.07075926878000745,-0.011999110706293092,7.904887034259073e-05,0.004731963658721609,-0.010823977852239415,0.08763747314216805,0.0005724014272987709,4.235411996737745e-05,0.017532363363715466,0.01719743053852573,0.014903473251601868,-0.012512478235880099,0.000889858305236131,0.0010332942375397079,-0.008317679241491424,0.020455969620696592,-0.007369038378736863,0.00014218179239474779,0.02091158550510154,-0.01802062516543261,0.012533415639333752,0.01979590903016459,0.0007027886990468908,0.0032532807230524602,0.02429561936236486,0.31075969864586367,0.08536656459760705,2.3298398685510627e-05,0.0030188919640218555,-0.025702039709657638,0.07408576930585667,-0.008846282104074284,0.00010305850381240622,0.01569596670509401,-0.02048592028822606,0.10185848302181515,0.05702406698166025,5.6613511463008625e-05,0.001662546389512314,0.0019408181519816603,0.0017730909053581662,-0.0037858802584689656,0.0021348964534362845,0.0038896186071745434,-0.04607155360958839,0.2921979073778277,0.009481286987636136,0.00012975014864654173,0.010412036194721232,0.011949347291085816,0.06333401265113868,-0.10669727230533917,0.0002921564043574201,0.00215285739520738,-0.04507310439010285,0.2604354921478332,-0.0064763379621663566,4.875040829453514e-05,0.014999463907037608,0.02463070983966138,0.11758509375149234,-0.032222913827781176,0.00034523233508965915,0.0011897788437115631,-0.016189466860754956,0.23705196298535947,-0.016411594740859226,2.834126444688246e-05,0.018077764920404003,0.006556247567357813,0.07944413375708945,-0.1268141431861418,2.7572441218710713e-05,0.004774365967161395,-0.005880229596588752,0.018040019663359,-0.0026784895122751794,0.0001049977597259383,0.0025158553685157973,-0.05355424048930519,0.4071887089655301,0.06372919957772981,3.038019196536952e-05,0.017897458097290764,-0.030707982488935057,0.09551688292014954,0.07752100491592928,7.127685442358279e-05,0.0044808793809612895,-0.0003471827922186861,0.001311577173722144,0.0010056233111522676,0.00012103554707503101,0.007047173590735233,0.03725049113102312,0.033118770090834325,0.022318380886819818,0.0006428851056780461,0.02026941338896884,-0.014454378874729416,0.05099676663952522,-0.0038191366224836227,0.00011930064781373916,0.012213453781714885,-0.058414648944356495,0.22304820903213085,-0.008782544072243948,0.0016809012700203288,0.00820599688313952,-0.0023310627802460198,0.02052299160475605,-0.017824622608722213,2.9207574821523158e-05,0.015480163000616415,0.010668241198597148,0.02881903220469048,-0.020399460972024386,0.0012102767867593833,0.012944642081547605,0.014350435052819934,0.10013074922458896,-0.007164539529211764,9.54384208932471e-05,0.016425522873564292,-0.028002733666592713,0.040460356739708554,0.040530766457979116,0.00016334886022166496,0.011303233565437679,0.00020871500034645062,0.00028468942118069505,-0.05049282469800545,0.0004208101895273684,0.003232660493740385,-0.009985554081993649,0.04022388487988368,0.021319370089841284,0.0019241481000231591,0.0047998518120613495,-0.032394657412162575,0.11854123474872827,0.031235340411566632,8.767874305707119e-05,0.0028415169749910762,0.032779182719382044,0.04809300498399494,0.03162397971580758,0.0016943120481903297,0.012954090248449582,0.014386459445148598,0.048120609843948184,-0.14743756700400504,0.00011845102949811648,0.013834598477720925,-0.03318066248646916,0.08042192258654564,0.027628034652481214,0.00016725186829264413,0.0006546457556097884,0.004646366753300027,0.02004873099292438,-0.031214343069211708,5.656405338719095e-05,0.023765206797151342,0.10756040531094214,0.32820955540598495,0.16512064768209683,0.003106127418132051,0.022387299619687436,-0.019775332735005674,0.09714805816680708,-0.0632285891033099,0.00010125821005898831,0.009740895900221312,-0.007991448253293463,0.04286633075215511,0.004163602502447763,0.00013519790609078927,0.014592792646715931,0.00641739155679269,0.04360616161417408,-0.06756202656336731,6.960803551610769e-05,0.015612079328102137,0.03722857723838202,0.16114690275640478,0.018153885864190495,5.8063320873730563e-05,0.010760597077652787,0.025340026500455234,0.046208638793223164,0.047399141329381264,0.00026737037395462037,0.016813223314058604,-0.015072101520237259,0.05771543869278503,-0.12047592105604701,6.493759279899796e-05,0.007649072868100701,0.02936028486311678,0.3629152679324613,0.026892128419846843,2.0873069104909273e-05,0.000452766772079087,-0.013427646022563805,0.04193019216622931,0.01761465382376725,0.00011193914764984232,0.0006068227187892053,0.007733332495808118,0.03576734082381415,-0.002317949081424519,0.00034080660339574356,0.0009381933069602607,-0.009638331473442995,0.04827118314244555,-0.01773232478451138,0.0001143630450546595,0.03210391989863189,-0.0011337689340116981 +2022-03-30,0.02252162816368838,0.176521305103171,0.002154116351281991,0.00013492400937044468,0.0093966101437385,0.03548857493540015,0.12193958077597694,0.0001037662855992122,6.983198534298509e-05,0.010374287493084248,0.025974361114668325,0.08849958381192417,-0.0020248197958075455,0.00013576907222782338,0.004960774354517824,0.014380720046735447,0.01654572082020617,0.024303334167172896,0.00029333426448525793,0.009260760230302912,0.013717737237378968,0.030466514422250682,-0.0031051294278017245,0.00023559034123223226,0.0028743914917795915,-0.015755343382911336,0.044038377008178364,0.04270923340384734,7.811659553183524e-05,0.0029130350321926353,-0.028523574878485614,0.09162000542040505,-0.0942919826866245,9.134893681274379e-05,0.00030659060262910594,0.05090790916089256,0.4840716856579516,0.08754489210176065,3.6064024912403465e-05,0.028567668954684138,0.0056252683359246936,0.003961385205116629,-0.0008519634073593983,0.0010950676648795812,0.00429333428822933,0.026803323077312848,0.06653612878622017,-0.047111290214907335,0.00014086172371495634,0.008610174280453558,-0.004868356903609776,0.00369637780144317,-0.05391243321552442,0.0006437695250313613,0.010363951660413866,-0.00610907311769465,0.07373119127841327,0.013717158404416537,2.469146518709644e-05,0.004814149019723284,0.008775452241477131,0.02653413330423736,0.0062741430546499844,9.824617209306119e-05,0.011239839596925715,-0.0016077603074763505,0.008920041633710109,-0.0016760650160957263,5.0736001727310505e-05,0.011316260943756403,0.0022676209162976377,0.0018494959114251168,-0.0027267702077200862,0.0023913329676827915,0.020983940791848947,0.06838881353139936,0.5472162440395582,0.011798193671356618,0.00010284381919502183,0.015147026339850102,-0.019786146232380657,0.0955396138731405,0.00569051259854662,0.00032069040392836037,0.010693570152413108,-0.03777530095429294,0.1914957850247649,0.002166064259787622,5.5566068476079316e-05,0.011223175327437851,0.02439791161338422,0.1507876551026491,-0.11666591768177806,0.0002666697007388768,0.008207222701896553,0.07082270164019891,0.8916177967237413,0.07306366067545463,3.296279218202915e-05,0.005469601317215774,0.009194462418363088,0.09565613613368353,-0.0042717763112862725,3.2114060171355316e-05,0.006242002502727374,0.01895523147095249,0.05183353008339945,0.006863082387160597,0.00011779885274371311,0.002328991186970892,0.06107664218187284,0.3857650634763186,0.060812110020460095,3.657165678116635e-05,0.010111763227594576,-0.002960805007363029,0.009247333315896491,-0.05200663050038962,7.09856685667933e-05,0.008672492487094736,0.0014652462620880122,0.004775074127649812,-0.011558475212348653,0.00014030692280944844,0.0012867831860433293,0.0008840708837537023,0.0007660418123656377,-0.028036185088657847,0.0006596448466058963,0.013556278444116242,0.000961100800516723,0.003266783918238103,-0.01168014461883281,0.00012383247099918216,0.003642825853298768,-0.07085941786768037,0.23628434811997012,0.016133782214036472,0.0019247831170585753,0.0059058618549175275,-0.02657978882492267,0.3020043169512764,-0.013514380152622737,2.263187681032629e-05,0.015166406551598179,0.04290000218866871,0.1174130335720533,0.0024568557351611615,0.0011945718465451464,0.02369422526503017,0.037629453021671554,0.26314866787156094,0.0881032629693015,9.522530511973557e-05,0.01058247934493225,-0.004034748100516521,0.004702153431819136,-0.005186082570134231,0.0002025186464055479,0.012138506114964833,0.00542514590773612,0.007107620864160747,-0.030817295945056923,0.0004381179865924889,0.001840208728505913,-0.0002800527892216872,0.0009299523128326259,-0.012008428858199773,0.0023341543155718856,0.007115812897437287,-0.025241911596552445,0.09247725322398642,0.018311574858340247,8.757450475996199e-05,0.006287992515573286,-0.028212012575147247,0.04353566746162048,0.0007654853398799808,0.0016108906225870824,0.02097424793961487,0.01814535675389552,0.0488274234537506,0.00989198802912854,0.000147237264410425,0.003428545853848254,-0.007428062497137378,0.019629330826995865,-0.010409961216203361,0.00015340179117735004,0.0021985771556717213,0.013484899029543664,0.052126084435976335,0.004778275956594045,6.314028251958215e-05,0.0021205149738971955,0.000687421426584705,0.00210362524607854,-0.012886456126063055,0.0030972249454501778,0.022546855646243525,-0.032949116403330744,0.16088222075059674,0.016200123224564746,0.00010187703358600388,0.020266089302602923,0.012516734437926572,0.062295320159521064,-0.027284794633389193,0.00014571236271906048,0.007161306349627991,0.021537137937858924,0.11095580369992379,0.02695778159259855,9.180929759519338e-05,0.008888756341062143,-0.04121330969959103,0.17951190078120455,0.034470766902898096,5.7702103045932665e-05,0.003760258310006674,0.07340570687389682,0.16367478776283365,0.05039877347755642,0.00021866407271521306,0.04386149035084953,0.006010357964002114,0.023017923959641313,-0.006182335601873121,6.493047250365726e-05,0.009215850113126686,-0.0043809010792657055,0.047449656534125764,-0.020187938632420993,2.38210916080841e-05,0.017248724230506673,0.00302863172542708,0.008787889933482954,0.004125364401837337,0.00012046775666887817,0.005240497031041488,-0.015017371689702456,0.056832915737149846,0.012266415686113178,0.0004165066726014283,0.007010723580037092,0.019265214950928766,0.08389960801741458,-0.0581987984329122,0.0001315181596798476,0.008951206827283219,0.006664989562885108 +2022-03-31,-0.03479992901222621,0.24445895647963065,0.07043228956280619,0.00015054245302352555,0.0031287865926717517,0.05442160471066685,0.2437891919716178,0.0556950301179996,5.3563311892479144e-05,0.004324703770908817,0.019843816280025375,0.06687418579022722,0.004167121621217317,0.00013726628962116118,0.006791822840374802,0.009517281487606574,0.009553216237820126,0.007514957482185069,0.00033622589829122905,0.000988976876276517,4.369219019236534e-05,0.00011717443649141324,-0.10082911386958428,0.00019510514145036775,0.005981414918807341,-0.001281032587719811,0.003521839358329371,-0.04065732770970996,7.94213701254543e-05,0.0011266423551769102,-0.008315394001685584,0.03142303884065825,-0.0004361074153407126,7.764696853840307e-05,0.008725261372899869,3.698327354242335e-05,0.0002612964142546802,-0.02431715827465281,4.853673004300549e-05,0.00334451934763885,-0.010786418214422801,0.009843910133376885,0.02914921934481342,0.0008449955098700584,0.00033042158948961577,0.0500076277445182,0.13264938806482915,-0.027659386810343304,0.0001318235152726989,0.009185492298844376,-0.021639605313918245,0.01879659872349316,-0.028127675043181984,0.0005627226855133713,0.005222209607964485,0.00020161550495749567,0.0025176720106844055,-0.007194703488511041,2.3864237661850734e-05,0.010891291972601141,-0.008061410207984588,0.02570693881275054,-0.000563691233886784,9.31561850615574e-05,0.023660184247725407,0.008029921877726042,0.039544541236130736,-0.03797584062452283,5.7159259894273684e-05,0.008332213603089044,-0.01753734501790485,0.01524679794221794,0.02095019087218923,0.002243407532795696,0.018975698077495485,0.10588341026478669,0.6737303315802354,0.1476848171067165,0.00012932840705604044,0.0015170227965080076,-0.05109753243152866,0.2890997886687354,0.030623217558839125,0.00027369091763611254,0.01496827353727409,-0.014809295395859913,0.08464897570096974,-0.043184945198762335,4.928033423012065e-05,0.02747620701253498,0.02293343472108731,0.12412205959478217,-0.08179642926487511,0.00030451377109949883,0.02240000156883534,-0.01738120076641408,0.2701439800871393,-0.036139229396041195,2.6700212214969137e-05,0.024981606837659875,-0.010326448082889099,0.09233676710921138,0.027776705409878207,3.7364399767770364e-05,0.0012192279575273502,0.03971972808538301,0.1107347783950455,0.024081778960221047,0.00011554335707309067,0.01159957871282001,0.008230963977149642,0.05612506552959082,-0.004959927664460104,3.387553915094215e-05,0.006434788638847043,0.004080441968741521,0.012173963053408158,-0.03893641845836511,7.431091497245622e-05,0.007818185537801267,0.0032525060236202686,0.011969891767725269,-0.002558926805937756,0.00012424430230483784,0.0007020199694090493,0.021092723020383536,0.017776996190802478,-0.01019265173907325,0.0006781875795552302,0.011294474576536663,0.009068801053994558,0.041366625678246026,0.006773368338391487,9.227536831002828e-05,0.01402505313840291,0.035780832381248226,0.12041866257649515,0.009164607550970616,0.001907110313329609,0.004557500975412744,0.010020030282599643,0.10867225652532911,-0.04055533747782419,2.3710054065140313e-05,0.009237955847893678,0.025748386065072865,0.07614361173908334,0.014287412416491027,0.0011055739802903724,0.0014173974116736424,-0.04912442892288031,0.480458858319779,0.1884991108120088,6.808743175147691e-05,0.00579453992087725,0.005860780514984736,0.008203030810517532,-0.007526324556755438,0.00016862676210552174,0.015830250144255868,-0.013821225300771074,0.01716129169967921,0.023777886553281564,0.0004622750848603374,0.0015390252486204659,-0.02056879395508351,0.08452219781571096,0.04997300381319681,0.0018862028098046214,0.007159495378100251,0.008535847638530113,0.03854388437115468,0.013633563649674165,7.105285695556572e-05,0.00892325960609471,-0.014589218805592058,0.01878174094316662,-0.007953819934875176,0.001930960471908895,0.004013088675134954,-0.06489578027477345,0.18876273026283918,0.23046393086722686,0.00013621227442786122,0.006487087224748932,0.012987290497439503,0.03298635450974522,0.010735973575231528,0.0001596043077493213,0.005070471069189135,-0.016978886674012088,0.0686386693846549,0.00601700174162775,6.0374601730513746e-05,0.01539514230243106,-0.0244554608790182,0.08292905459904709,-0.011691020660352925,0.0027950346445136972,0.012497940395018385,0.010528256803024626,0.04132635623517585,0.01634159833509834,0.00012672722507802757,0.009835187689629878,-0.01662915872444628,0.08841375212944395,0.017148017228292105,0.0001363990172849425,0.005613002369885333,0.030863684503368165,0.21267261842221535,0.059820831015087075,6.864120381158516e-05,0.012042823405565528,0.02154522180676697,0.09574614862085712,-0.00028229958694562244,5.655578708670134e-05,0.0027915434083082245,0.03996314394313795,0.06617789566730915,0.014958797311598493,0.0002944259520723474,0.013178842108887931,0.008009024633958304,0.02940202764246484,-0.029458471706752906,6.773555970755363e-05,0.006344977852219674,0.0032452243020275368,0.03310592856009699,-0.0006266768316120816,2.529124632765637e-05,0.0033661895942555466,0.0030696138903868707,0.010980195350014498,-0.02935761980479231,9.771981794674003e-05,0.002425894092118362,0.011082772252427065,0.04162361919403322,0.0029828631236005544,0.0004196976524181112,0.0014604511004746123,0.020151046001355068,0.10745670885994536,-0.000717807491083409,0.0001074078084650914,0.010105301811225013,0.004406927090120789 +2022-04-01,0.01949912669563745,0.12110785488761609,0.012493704727424093,0.00017026658800829827,0.028623625997665807,-0.0004648757787165634,0.001617975087838625,-7.835225310629855e-05,6.894068828923244e-05,0.013056470345442031,0.008460659027068758,0.025937097635241595,-0.03225868491560413,0.00015089679672118374,0.002566351846951761,0.0025738849837008285,0.002373958948857852,-0.03652772631456137,0.00036591801195716113,0.004255087526111176,-0.05067193363849053,0.10511850964392974,0.20535471000883807,0.00025222379430716083,0.011206973899765015,-0.007748089202251891,0.0231877339551896,-0.025847330618544828,7.295970057701231e-05,0.004926801054236326,-0.039662548509954466,0.14087717177033854,-0.012032395990803158,8.260947217094723e-05,0.005903540906911649,-0.012574421491806908,0.11478246766086442,-0.07715874594049946,3.7567394111890036e-05,0.015325060598483922,0.009786536854816794,0.00737314440255581,-0.1427448522330051,0.001023578330027912,0.0006361235630613644,0.019689841411555043,0.041893192792488404,-0.0005941545520464386,0.0001643465698742639,0.02790947108299483,0.003663415161696622,0.002702435772119477,-0.004327978853239749,0.0006626056209454839,0.005277035424129854,-0.009294884983948093,0.1171287007087201,0.008617189389349276,2.364849372201359e-05,0.00035813941358253556,0.011473273600467716,0.03530838289344575,-0.04236033422131736,9.652961199858257e-05,0.02640486374726976,-0.018995860353220824,0.09025555154586085,0.045652617092695955,5.924433950875913e-05,0.006283555253372904,-0.009268438180832993,0.0074429239962268655,-0.008225746343046264,0.002428767517517521,0.001592493159044099,0.04877822026270426,0.38564089953665853,0.012746344831444902,0.00010408663559728355,0.00857388522150574,-0.004990628283825925,0.028605979904570387,-0.01433501786983527,0.000270151029119466,0.018475652973725203,-0.03742149085157874,0.2575056078776125,-0.003976258233014864,4.0935052351605676e-05,0.017785133393764734,-0.03135874442193765,0.20031333267460544,0.008104970933932051,0.00025800945210700094,0.005303846639580398,0.09389787900705081,1.3110605774463628,0.12300897041473363,2.9720988863190588e-05,0.008531833032622093,-0.022609684939512813,0.25682604146813115,0.0822752988839228,2.9412853631829386e-05,0.0024242829510330135,-0.05292583432362497,0.14276376282185396,0.07708901608545451,0.00011941873947003712,0.008100330430238892,0.0006097061186612407,0.004958007862151063,-0.009145499051453527,2.8405714540653415e-05,0.007817637228432631,0.006061233859628256,0.019610846868551673,0.0066074948753979,6.852390028667767e-05,0.006597352549003025,-0.020522810818821572,0.08465549089906514,0.11390286048618523,0.00011084862362212794,0.00018302907184662666,0.053850145206499084,0.048856046320928444,0.02308774241307255,0.0006300051815094327,0.033444219264550996,0.025829087618995987,0.0991004538909938,0.028818901040577324,0.00010970323410794905,0.009697711023965092,-0.022758580165161593,0.08540522162058213,0.0011208943468270234,0.0017103300059524834,0.008683484734993682,-0.021649367754885285,0.1735963242601551,0.007720160657246992,3.206910856872845e-05,0.01680778324105304,0.05757927761842868,0.19000279816409124,0.06373577171171986,0.000990780578620421,0.03790200926170313,0.01402157393348722,0.11133125284581641,0.006324190242580943,8.386974318507462e-05,0.002747289454513451,-0.0029375733930251417,0.004121367959257263,-0.03256465376535436,0.00016822584628876805,0.002221561450444369,0.0047893402629589485,0.006443660166261965,-0.00019933062896911426,0.00042662566554621165,0.004015297320602193,-0.007442740559683563,0.02654611938791459,0.005027187942711728,0.002173112342566187,0.0006297957647969574,0.007777443853418595,0.02967652779541454,-0.06808381940361126,8.408415586434728e-05,0.0038386466154818693,-0.017517453435642902,0.02474898272860819,-0.057771572516754646,0.0017595062383003086,0.013228955766647267,0.03216932657439389,0.11060299152318295,0.0400631616739145,0.0001152367847486101,0.006617780113080604,-0.007611734542359189,0.018215526091962392,-0.014402752732703118,0.0001693956646435533,0.0055819299313398015,0.005948857972571285,0.024668287704580558,-0.01675622177585549,5.885840926583029e-05,0.017177188560597353,0.01898095251126165,0.056057305654388975,-0.003659837948175282,0.0032092521485107394,0.04156084436673856,0.012120624387704915,0.05730785321708258,-0.1648994649162849,0.00010520864413408198,0.006463061138510116,0.005274333306099449,0.0300548078429872,-0.007139712602389713,0.00012726658770683487,0.012120437157207226,-0.031025406588563932,0.16174528249849054,0.05658698151276812,9.072658364087705e-05,0.0092022817837965,0.04940278238464324,0.2009418990006514,0.012045336985462436,6.179143796411111e-05,0.0176638586894089,-0.0026840335692733253,0.005317688115200263,-0.0008823527568857015,0.0002460902883598277,0.03331689900327148,0.013782077325035802,0.05691434694586596,0.016461227572533287,6.021536193827229e-05,0.005227926716727158,0.002358665168370456,0.022637969123935727,-0.0954722146333592,2.6881909573351115e-05,0.0012077316161983207,-0.0050651475382321055,0.013547182773080644,-0.02111565558474734,0.00013069292396143917,0.0011901999725116438,-0.018926900931740265,0.06815309648845791,-0.05635232217545611,0.0004377456986638434,0.006081205247738395,-0.040221725306736913,0.19356265288033037,-0.1217168592072736,0.00011901752806742757,0.020631330969134307,0.0007459019013213438 +2022-04-04,0.009670431075900628,0.06938614661710739,-0.003156813637377158,0.00014738715927060432,0.00035041713866799376,-0.037205514549649106,0.14349413075728468,0.01421378631833557,6.221336669833581e-05,0.0142966225198598,0.0049070620914505,0.016325283878848462,9.42689539513334e-06,0.00013904584507365214,0.01115477541326031,0.025813710143398914,0.024351680959894546,0.08613016133480879,0.00035775798860239883,0.007827127377585777,0.012712904348780283,0.03427495609209145,-0.009082497482884989,0.00019407323474415544,0.006218391405620453,0.010969557781483914,0.029045218854374028,0.058751446814713365,8.246339425377783e-05,0.0038311261242153748,0.014177511590600168,0.05322837384090468,0.011216239477612003,7.815318250714084e-05,0.007623022558365425,0.05718694246067615,0.4583724888235605,0.10538337562159533,4.278356284840537e-05,0.00945988601527597,-0.009018026105691135,0.00787605525578245,0.0048204018860063666,0.0008829731967408445,0.00989038231518879,-0.0013911965111180426,0.0035966124395242238,-0.11341789821967292,0.00013525605748193235,0.022252455171798382,0.004663486905914869,0.0038457460014452594,-0.0077781313825249845,0.0005927267434654351,0.0042193860618795955,-0.010015692341024176,0.11952654483042162,-0.03538934415255087,2.497119922156452e-05,0.0015747113427710816,0.02322676173771098,0.07603289870524875,0.024963930134273726,9.074822826526188e-05,0.020635621987030887,0.0008786555265221476,0.004342286799182311,-0.0030709306910943796,5.6958947928530774e-05,0.005067526880402693,-0.053400397016213276,0.0403230321648499,0.1128906896132198,0.0025829397520422816,0.0049219922136315795,-0.04333099848462507,0.3055510163176079,0.02554829673455337,0.00011669898314772892,0.002471373360972781,0.025024291060474595,0.12088602064740574,0.011502014290780788,0.00032054863587723675,0.012005847171024852,0.03322734575443489,0.2112277737605449,-0.004684383582776213,4.431039125541261e-05,0.019706790515764346,-0.0072923093651868,0.039534615436376014,-0.10464645892435266,0.0003040005528802317,0.00991481092507173,0.02074558505201861,0.28470437656309583,-0.02450874710344483,3.0238606601987358e-05,0.02596941750019056,0.016783928686077865,0.2180755423518703,-0.004568811649376958,2.5713925032000643e-05,5.616271392361685e-05,0.03622373611810985,0.10949214973794087,0.026435148868945664,0.00010656952120553675,0.015421619578732462,0.015757131003466512,0.14885570065481718,-0.028869324415904816,2.4451418028585048e-05,0.011176305262037485,0.011847550675980133,0.03216569232121526,0.005560136040705447,8.166069163076212e-05,0.00359883269414968,-0.005517042873265885,0.02076382760239197,0.007799489467418336,0.00012149196046238594,0.010849578368728168,-0.0005338086027084752,0.0005345133824782183,-0.008976668263993834,0.000570824423678364,0.014987983234821289,0.02400031269968013,0.0891990101390645,-0.07628302359691283,0.00011325121612592232,0.010788736996349359,-0.009922123163274042,0.03681445050093813,-0.029337408392709794,0.0017298381299745446,0.01877454022677595,0.04868690848218443,0.4285094282433446,0.03479374714102158,2.9216891786421563e-05,0.022650130742091795,0.01991259408491523,0.06474667700229242,0.004877702923343564,0.0010054989619540263,0.02595316447408062,0.002016697991024348,0.013059993514740903,-6.618638672608339e-06,0.00010283087886927766,0.009585487318650431,-0.02372766887473125,0.03756680610775695,0.01223590005662844,0.00014907203701209127,0.016019238615540828,-0.008664846848932551,0.011042575105743654,0.015088239263312665,0.00045039591510123397,0.004168050220000982,0.01778484742410381,0.061333665148689036,0.003938513822322574,0.0022475096600905876,0.008547849729964972,-0.013458661355003239,0.05042496503598882,-0.1083195864119299,8.563407881099602e-05,0.0020920120175991126,-0.025884759694932476,0.034865159186610775,-0.01734346380621349,0.0018455664083085743,0.01278729848520478,0.022210775369655846,0.07152819974528452,0.016425839570070166,0.00012302757443743759,0.001992028615397289,-0.0028672780145071247,0.006897754307021967,-0.008576763763286213,0.00016850875104971672,0.019717390718530882,-0.021410082385977,0.0867428663424827,-0.09301104192099047,6.024187693457061e-05,0.0025578993331684414,-0.019654828500820096,0.0683932543854928,0.006710249461725268,0.002723792672546711,0.03220803287690658,-0.005153919073294898,0.025052084860102377,-0.04289408121742118,0.00010233737938928535,0.0024007286307790128,-0.03928787372624634,0.19150475955792431,0.05889604361561859,0.0001487783498548488,0.019797824913529896,-0.012270743875979961,0.0708193204120951,0.0019505119778665046,8.19535621448331e-05,0.003928689655243305,-0.04216700024109805,0.2382253855115929,0.016854117002060694,4.448689172546762e-05,0.020893105303745392,-0.04566367689282132,0.09256616409560246,0.0015577325145854515,0.00024051823346637162,0.0031047127398998726,0.006768462355644829,0.026346469269821055,-0.020288671451065443,6.388250986888426e-05,0.008893402522912607,0.046013099710231826,0.43763751602967865,0.01371401310676887,2.712677916939536e-05,0.005024728174363562,0.019476204843875054,0.05915518092979331,0.012580530004514357,0.00011508547410884927,0.004588185381082516,-0.01967343214330042,0.07018792081368008,0.015332957286463306,0.0004418203599859538,0.012517255894607539,0.03475065654624372,0.15494306318893258,-0.03135784414712147,0.00012845844854587204,0.017668417716571218,0.0019197359205368099 +2022-04-05,-0.03689686555701052,0.2688842735526905,0.023752183494471755,0.00014511444849571667,0.00026548329518618166,-0.012049616924852125,0.03970273862590186,-0.016607570763900893,7.282211735009863e-05,0.004196508122468905,0.015542035054554421,0.052943101411516647,-0.03461451780076695,0.00013579873047976705,0.014729820322435893,-0.01845193084579092,0.01813647624579721,-0.0351862905793054,0.0003433655840855049,0.0010698871847309183,-0.022034014359322018,0.053963723865369725,0.028039581070818345,0.00021364340404896292,0.01783605043885818,-0.003968591323581081,0.011478317260878829,-0.0074860227079821436,7.549268882039703e-05,0.009276015917285167,0.04389614596963686,0.1312455110019047,0.013574902881966553,9.813677646281361e-05,0.008887824824172575,-0.043451658742995725,0.396128328994101,0.03226400800847679,3.761569345782761e-05,0.033850860944089435,-0.009018549803797727,0.007829226756244154,-0.03473248946785015,0.000888306056107319,0.009421954217362511,-0.013364035424141621,0.03169845035522963,0.014365040554308775,0.0001474217197630212,0.009345394634411629,0.003299036159586654,0.0021607426522573564,-0.04368166460736881,0.0007462913177778268,0.0008517743603835954,-0.0003408975483163373,0.004552079831041173,1.725813651282868e-05,2.2317050567918396e-05,0.0030382759609195306,-0.004691869223013512,0.013806979156753664,-0.0011600124202857766,0.00010094812739171007,0.007142618050359708,0.008936648090281253,0.04723486879484698,-0.01044434399337858,5.3256639813392344e-05,0.002682076147232585,0.013264526258383091,0.012128970881006134,-0.08646734231337494,0.0021329995457548693,0.0023215124466630273,-0.04477406101071825,0.24837869512475888,0.015600188784535616,0.00014834204211490527,0.0435233039599274,-0.00045029418378875706,0.002737419747984494,-0.0026477288742096546,0.0002547200746883272,0.0196428414137707,-0.029276228018909507,0.20830636416845133,-0.008907996608451938,3.9588909435447896e-05,0.010459222881203193,-0.051549374479091414,0.29360031773114365,0.042477559979251005,0.0002893701210500959,0.010340676474376198,-0.0071173103350732035,0.0901247177004331,0.0013221080724969134,3.277194494567702e-05,0.05066354675501364,0.005321087084025463,0.05666632757931008,0.0004323473768077731,3.1373069224793716e-05,0.013501657039322414,0.021019621919810064,0.06916825259898918,-0.01772184726006265,9.789056872917968e-05,0.01200016192188333,0.01590160264322669,0.10980781306194834,0.001023405531793893,3.3450301054257797e-05,0.005808093867456837,0.00602729631538027,0.016941491121687524,0.001856481502309762,7.887662010901395e-05,0.0015995576208165572,0.0054885801684898435,0.021370592983146374,-0.005777060150139721,0.00011743350807931274,0.003706637146415435,0.09132813551276335,0.08851211399363904,0.10788366425769129,0.0005897628869693472,0.030507649060771906,0.02066702356755786,0.05393920652972101,-0.04789531368954582,0.000161272155388809,0.001405529742765288,0.021524252321213008,0.07402000800999305,-0.006976422193305642,0.0018663716176676392,0.024398508744702507,0.01732172358363214,0.16080857420321615,-0.003372671646051556,2.7699000486826115e-05,0.0005468525329316838,-0.020583457712452725,0.05427719979286889,-0.015587941519984367,0.00123985862453332,0.0016101975979598885,0.028934873785209793,0.20788001128437755,0.011063987610907095,9.269034610483913e-05,0.006730124204595096,0.026959487895907575,0.03884030998970652,-0.040790264086106816,0.00016382279727760436,0.004090245821281081,0.011146090431952057,0.01708295207081258,-0.012452316313780529,0.000374510116580464,0.005905680395738492,-0.009535187326843704,0.03869610811038697,-0.027248087260148414,0.001909907274974567,0.004259584125733895,0.00835809445441376,0.03204493927269647,0.009071780842382637,8.3683183285604e-05,0.0014292568736415244,0.007311479671292083,0.010057178694959559,-0.021763297286687716,0.001807200349632283,0.0257772582291252,0.04111176588789973,0.11601013776598473,0.052738342545955975,0.00014040618058241416,0.008225075045960628,0.009063921555337555,0.023923000468968718,0.004638810762083049,0.0001535892662186085,0.016075969678227046,-0.026731740807007773,0.11604221929223792,-0.005151710891713205,5.622444025830227e-05,0.013098705231715019,-0.08795206966946768,0.280554433511897,0.05430914169816781,0.0029713033012953205,0.00823958709334348,-0.02063811291394284,0.10297434257878557,0.009607792182992705,9.969687072891776e-05,0.000674130581104161,-0.012844038831735986,0.06944098582491093,-0.02707756720130326,0.00013413635990526974,0.0042183464886460485,-0.020627313663770273,0.11569164828737058,0.012051706367576817,8.43314102039331e-05,0.005434785968164249,0.0052184726166308705,0.022991407708629424,-0.0004452755128357811,5.7046005688992675e-05,0.02588424325881297,0.031575009570168594,0.06399331151423059,0.02289306749501869,0.0002405682452554158,0.02018458865350507,0.0181485533432948,0.08545599676382286,-0.0014119529175985678,5.2809717464823475e-05,0.0033969090531350073,-0.014872614468956819,0.1433496517867726,-0.00890050961877305,2.6768372264899864e-05,0.0028671208303219353,-0.00631848199356671,0.01973312874203504,-0.021258120786085376,0.00011192465578416632,0.00517317698517911,-0.020547763180557312,0.08396266884490124,0.02942314698541685,0.0003857503137450765,0.005249243213496601,0.04955049741183589,0.23059231195850985,0.038718777976668305,0.00012307645845068788,0.003366626166126197,-5.51499122187146e-05 +2022-04-06,-0.00027146665016359564,0.0016628316142033894,-0.001958641953447142,0.0001726453139520805,0.011464348630121624,0.0003693627618554943,0.0012253752934242208,-0.0025021610949040765,7.232601146248023e-05,0.020774865990564762,0.021907247272205912,0.06657460674010969,-0.02975126591150758,0.00015222164295277882,0.016886420758168128,-0.01676990266602278,0.015812854974445324,-0.08021041780581371,0.0003579217666397058,0.0014561576080225698,-0.00190986040486338,0.004271704659492887,-0.12342721461057538,0.00023393660282107406,0.00865228498756369,0.004491989053572569,0.013906899302275032,-0.01427201724945412,7.052695264371544e-05,0.00277311863480311,0.0032813995330045146,0.01252705697932097,-0.03498672484250805,7.685991756586575e-05,0.007460878105626241,-0.01314952075028459,0.0998628547446911,-0.03231310945441547,4.515486646697979e-05,0.020763253569560002,0.006082123835826572,0.0047834911639802625,-0.06502520863475941,0.0009805168672050199,0.005394160600492634,0.0031857623979373237,0.007300804611051968,0.0015333603269136382,0.00015258243543647584,0.0066800583808543056,-0.017819578091711842,0.01088339673681389,0.026250229858692107,0.0008003082879623222,0.006751189403883249,0.004915905080407233,0.07604882725452353,0.0006737141364431903,1.926343611045147e-05,0.004446717464327286,-0.003938795871496494,0.009396280523117605,-0.0031889685587008854,0.00012452556986565012,0.002737898422401611,-0.0012261665413590113,0.007469885237300869,-0.05078410056991394,4.62058910745004e-05,0.0021563636012390665,-0.005093652657614109,0.004508291585453263,-0.014100450634590986,0.0022036382481349587,0.010657988326955517,-0.003654600162692586,0.02960082229360669,-0.0730964151947302,0.00010159871177193403,0.02213782327725361,-0.021904429469401424,0.12338681809076116,0.004505022903096507,0.00027489789420722977,0.004965405157600589,-0.02146561790646613,0.1313414921506344,-0.05851733043891331,4.603651127156838e-05,0.016676560916960667,0.06611099714408308,0.3134595056041445,0.1625602582848843,0.0003475994421497309,0.02393297509267757,-0.026710061773886042,0.3121786276906101,0.00957263046634095,3.55060169892476e-05,0.012071812478861986,-0.0016562594299266472,0.017746863378049677,-0.02417586715496941,3.1180887122008275e-05,0.01346648760857874,-0.04088848087102141,0.1303483286837304,0.041151084035291635,0.0001010457994506194,0.021258045253657973,0.03883725937840201,0.23721411739880535,-0.007608279892315965,3.7818162172624657e-05,0.026782447939150487,0.02968180919930586,0.09859955239118708,0.04321631767503171,6.674101512225393e-05,0.0027759874579906174,0.009333116127127346,0.03384985621296617,-0.00047891470992409416,0.00012607194032208965,0.0009771382269732692,0.05370612055105082,0.05680767925932925,0.0006657136088560831,0.0005403713264683166,0.05601773898384664,-0.018953444456257976,0.06986473967979968,-0.044592334651851855,0.00011418685480038183,0.00830723058200437,0.05299514714593155,0.17984042201206535,0.026445751790389223,0.0018913328425366868,0.0037709201161584592,-0.03287076287823528,0.24936177233473347,0.013511640952628287,3.3897065514903355e-05,0.04944534540678644,0.08243603466569605,0.24218983686863224,0.10339205253856637,0.001112839284365146,0.022668630142359165,-0.026113681458391907,0.172641392148317,-0.009305878446083375,0.00010072767646631931,0.006985072690157491,-0.025804535940790914,0.04259364270750673,-0.07157558919844029,0.00014298703347513815,0.0007062558842445793,0.025498913579184188,0.0403101961153764,0.03583085740109708,0.00036308698336764246,0.0033183959415501265,-0.010846597729730904,0.038375939062970675,0.0020462613067640445,0.002190709840120959,0.023054426022009397,0.021314414630954553,0.07458170676586096,0.017870685355864793,9.169200354925441e-05,0.00023390580816090318,0.013735167584100778,0.017751319232070448,-0.014515008487016628,0.0019234483121765818,0.0011399310083667054,-0.0004336547646345271,0.0012700700657703001,-0.04971733089061932,0.0001352796523905422,0.013405635813321371,0.024312620805659844,0.06737791978816716,0.02275877979281988,0.0001462764979375172,0.001244191554574879,-0.04922016648624713,0.1811375356221281,0.0574926923803427,6.632061556420417e-05,0.00533891212888089,-0.021361963639104562,0.05626356085111401,0.0048805489598606365,0.0035985870669138576,0.03363358958486094,-9.919214969942024e-05,0.00047070342237543313,-0.06355739975274735,0.00010482636279535215,0.007056729281170242,0.00637026929498147,0.04074736548386505,0.0037261135818855945,0.00011337545464786767,0.014853459963126708,0.020006744768339923,0.12671978018530983,0.026698651795494882,7.467594369753109e-05,0.0045811673388684564,0.02676593531837231,0.1095948181692056,0.006021369524824857,6.13818252651153e-05,0.027587768008127362,-0.09428564412914711,0.1762671466675238,0.09946602003111596,0.000260797600947563,0.01260331833517458,0.01976819606125735,0.08007417352099518,0.06201367265564374,6.138877268191123e-05,0.007901045611744442,-0.02425366958533636,0.2541275771709598,0.030294757267354484,2.462390609433258e-05,0.0025881937765078996,-0.0273744904182996,0.09837121504145889,0.14385855500635292,9.727180444186887e-05,0.0036974954133080686,-0.00434850346122731,0.017281862018416253,-0.01271002564143498,0.0003966224178242713,0.014106500683792631,0.03527664137686898,0.15865360468228376,0.008149111849111533,0.00012735297132855333,0.01956339452921005,0.0012078496215353581 +2022-04-07,0.00873634984774085,0.061985480844627454,-0.08826576568977398,0.0001490481625411447,0.018526897126568218,-0.0289763978022033,0.09104977251378024,0.014456282397811333,7.636178236712525e-05,0.024331692726012873,-0.04044147894522511,0.12861681520216686,0.06603532469212575,0.00014545427247533797,0.02152695278217856,0.020086970142930552,0.020963750076855883,0.04118492213893289,0.0003233801192141539,0.0005090455308567833,0.00923538819985048,0.016185454848584777,-0.012952957780348315,0.0002985575230397424,0.002781920602722536,-0.0120285300167035,0.03070175619414072,-0.0013197259506445985,8.554528500012094e-05,0.008423753528086022,-0.046090987809698086,0.17437261378595914,0.04818968952025088,7.755817720025063e-05,0.002059150159453088,-0.039569394305066556,0.3016536977918489,0.021189074859077384,4.4983098147669184e-05,0.0013041098284149108,0.024145705169344927,0.016352678858468694,0.07120042147795219,0.0011386644767793388,0.010951033986904554,-0.03117725535111264,0.08619837516516612,0.017704164803628606,0.00012647383478557006,0.002769059626047276,-0.010916661435508164,0.007502839647777108,0.003565180973881903,0.0007111947385269026,0.005157447094378912,0.01324387762680388,0.17283306665182624,-0.03650356522224259,2.283553089205655e-05,0.002814322254538963,0.05063716864044624,0.1505843022669011,0.05454430688688359,9.989430993332808e-05,0.00884304802196348,-0.008509997205668798,0.04483165719866241,-0.03933306304768233,5.3432616703900064e-05,0.016100101379002744,-0.012676997857617556,0.009454007800926907,0.011582317890912325,0.002615311558428164,0.0029584133254512107,0.005514276595853526,0.029963715281830956,-0.03777675869447548,0.00015144153137823077,0.02938072796116876,0.020841615532175922,0.11670005534846868,0.007503176102761629,0.0002765467443198804,0.0020149564581591235,0.013590266262634078,0.09036884914760739,0.0027269159871756397,4.236138686824358e-05,0.025315392568779942,-0.041988453131977736,0.202978215402217,0.035875298703349996,0.00034093159713686984,0.0035931583287606202,-0.0067533563175291795,0.09945938415945073,-0.10026609398963776,2.817760844113072e-05,0.01997640752968587,-0.012575612627970606,0.13397654202872117,0.027495657195764463,3.136043628029183e-05,0.003961956093605117,-0.014390080550550747,0.038009311070844425,-0.04949508804963135,0.00012195398129652406,0.013674055648064263,0.033368001381177397,0.25267586552563465,-0.054448088079572285,3.050414164339356e-05,0.01982528820847096,-0.007581780890102166,0.01902898040220823,0.0029666931747856975,8.8335056840364e-05,0.0067792971809357205,0.009453059788875114,0.02790426130614796,0.0014701912367198647,0.00015489966202368065,0.0026669713429631533,-0.0009641654101361523,0.0009147384460631477,-0.06011483577570648,0.0006024627164007356,0.0020621978636325327,-0.013496623719445797,0.05271399980927147,-0.060136591149141466,0.00010776684746530392,0.0035618511453955567,0.024665376408102943,0.0878865870968046,0.011586299201158699,0.0018012928382142997,0.011214046436169646,0.003240374665984043,0.03765990157979303,-0.04601099876689838,2.212576231461044e-05,0.009203318464508444,0.04852509636162216,0.13105081174956448,0.01947096422674692,0.0012105924495096675,0.010833115632964201,0.016298982600503588,0.12187749811669148,2.7378884652982865e-05,8.905588192976954e-05,0.0027401486441919753,-0.0066946199756179195,0.009170067585759388,-0.07784793477077753,0.00017230535653974156,0.006281392948925103,-0.02242046020062953,0.03131143622747185,0.05667880589160336,0.00041100343134152083,0.0019830811669565704,0.04589342040448828,0.19955987517691548,0.053289235890857975,0.0017824918142170067,0.007459604439815354,-0.03738830834364164,0.15024444378238733,0.07711628830400756,7.98413305540775e-05,0.006423817972851263,-0.01664033300753753,0.028027650768011336,-0.0043392951048667186,0.0014758849615526053,0.006415612777700611,-0.043345665350972166,0.14075627036585245,0.034219193604618565,0.00012200958767386543,0.013168511368100157,-0.01450800336379602,0.041133931999844185,-0.013619139216897775,0.00014297753255218984,0.01522273057108138,-0.010929652058015254,0.03840437651695048,-4.2498557032291893e-05,6.946076190372336e-05,0.005328139779396242,0.026665360898294577,0.08895044528038348,0.005454773119063139,0.0028413020025812702,0.023492121882556317,-0.01981960332617944,0.1153027389866231,0.0041785635586384035,8.55058650245958e-05,0.003145402009048273,0.00995610274388448,0.05568828733440452,-0.007703239716221973,0.00012965411125885683,0.007777460661232324,-0.005714938356552516,0.03054997849175301,-0.009093660023937232,8.848086102886552e-05,0.016904501594644343,0.06889365505545056,0.3349462890545597,0.006599513656390245,5.1695346500158595e-05,0.035358202805609515,0.0023032211231308873,0.004680772312195988,0.004757866493706983,0.00023990953709661074,0.028904514596694297,0.007922920401258441,0.031435265905499596,0.0038200977427772353,6.267329533332591e-05,0.009064643441692537,0.0011359238125185265,0.011451754421438549,-0.0024835859003993427,2.5592249621191615e-05,0.0017327094491050772,0.002762404841472648,0.00796488414502657,0.0046857472819511236,0.00012123187663970658,0.0018842544187794416,0.03446882401883186,0.12915233495312062,0.05832018745062467,0.00042068030045896813,0.005512015230298415,-0.029358238329776933,0.15634873495136267,-0.0007060415577080538,0.00010754925741797297,0.0037135928549566514,-0.0003477523882728997 +2022-04-08,0.013173651318963827,0.08117089321061213,0.0027924587441365595,0.00017162969204722356,0.014263970021635167,0.04754184745842506,0.13927543631906936,0.03952514431591403,8.190530900800471e-05,0.0165339559546373,0.006699737738254603,0.021701385691449086,-0.0030886707895440707,0.00014281293396680686,0.024254533148826644,0.0007388564017278883,0.0006566021333252284,0.00012064232623989715,0.0003797743310590256,0.009741056888566604,0.032681452313894396,0.0679192738846414,0.03722778363914839,0.0002517712207795593,0.01335148152648386,-0.00018504764002639053,0.0004264721504272207,-0.022596119881013572,9.474135997086199e-05,0.0004499886113126261,-0.029176506629744744,0.10631930643771134,-0.1015747385258309,8.052134339532663e-05,0.00022089451602893694,-0.04368368936639513,0.3917116638590507,-0.0389979827372999,3.824295311947342e-05,0.007922542936133268,0.004461143437795021,0.0032098421845702468,-0.03237237364953047,0.0010717840593006981,0.00024325214806113432,0.0252920136786202,0.05533524953665876,-0.03364313300681197,0.00015982452473275584,0.0019482297128127605,0.016795688642299633,0.0131174747640042,0.04858251516583061,0.0006258524201954436,0.021467737625431877,-0.006366284898593071,0.07389243631743642,-0.026192958756389537,2.567490665602228e-05,0.0055029975343312745,0.02391513452156372,0.06648870228550144,-0.02794699015996693,0.00010685036484307832,0.007899773350842285,-0.01978740683543085,0.11425886169507085,-0.0033833530342510503,4.8748449648329084e-05,0.007653758899446619,0.03207367803308806,0.023654691325745318,0.019626770428119417,0.002644566258905126,0.004725104420373757,0.020284824025086936,0.12724806720186335,-0.008042955928250188,0.0001311813686710583,0.027971625756208863,-0.006444884812480238,0.039176684930236384,-0.07179002142954377,0.0002547391572873806,0.00918178427808155,-0.07476535471719002,0.4585769261693036,0.045827295260796534,4.59249989662628e-05,0.00044069542767592837,0.03969968732584382,0.1755252917661226,0.03269497160360494,0.00037276419464144287,0.010717423158273003,-0.01670687384823121,0.22478239084975377,0.007111452024275667,3.084346336632961e-05,0.020429506283912092,0.006002465195691556,0.06721912240937104,-0.0062084960240240145,2.9834483348847498e-05,0.005192049606430254,0.001226516707621909,0.003786660839661548,-0.025400271677932844,0.0001043373533286524,0.02661756840894834,-9.326895298184108e-05,0.0006145770377171755,-0.06953754342260648,3.505525638598437e-05,0.0020928641987686897,0.026535286258643584,0.06645760115686623,0.02880576706632787,8.852307641049903e-05,0.013712501925520659,0.0014769372778389903,0.004852774069147854,-0.014910473984301668,0.00013916197238184532,0.006570893575972314,-0.022479641199982255,0.021000010360209962,0.016847188611976687,0.0006118506525067319,0.0005143307466196315,-0.024609420791484423,0.08082145818211048,0.022101276247613193,0.0001281624259915657,0.004908552601213789,0.045447472041520685,0.13902869664811174,0.02951653520933037,0.0020980916455168143,0.012467566777920838,-0.07615846411539777,0.7799197594076741,0.120725372940789,2.5110216021952346e-05,0.004135909593793046,0.0075182097756779755,0.021273794415178727,-0.00012137952804424447,0.0011554223155509765,0.03836192022756677,-0.014596054155535951,0.10556215892084624,0.015869731195660416,9.207735718146192e-05,0.011542362323718204,-0.0249643472701558,0.03291085518046816,0.05545125964501641,0.00017903025657534213,0.01670301755651709,0.01158765599188331,0.018768615831263786,-0.08177669991969437,0.00035437841588497877,0.0030201747282429946,-0.009576403787558335,0.034608435433760056,0.015650727877139885,0.002144721100785244,0.005749879881999839,0.0057119347908776465,0.021577517861869847,-0.00831571791506616,8.49321516205241e-05,0.008475657753228576,0.07485251028649173,0.1254847967365148,0.16554379968292043,0.001482833707906793,0.008257548662830887,0.06712515023393557,0.2045151329529277,0.10611320167401292,0.0001300396698947712,0.017315542161900295,0.01997471923213853,0.05205585650668205,0.010914441578653487,0.000155550518477407,0.0007546462080862477,-0.03612824253530365,0.14851014314682787,0.026105693321480963,5.9375139648753214e-05,0.003096049648309592,-0.023372745143735153,0.07769982578311456,-0.010789669766758,0.002851069055628775,0.0002768417429652465,0.00316479866018365,0.012899728434655405,-0.06807475742668696,0.00012204109317326028,0.010338876209733058,-0.038220333794732664,0.2099767898099049,0.06502357902597902,0.00013200305069397251,0.025154778175105044,-0.05348438487413604,0.33063401192705555,0.1324507483234499,7.651175736090047e-05,0.0001465827408523456,-0.014790991488104761,0.08072088563483067,0.00866349714025012,4.605308880700892e-05,0.0018325135427912063,0.026600209131849253,0.05517534611197535,0.009393773288887184,0.0002350549378892471,0.015489919900202695,-0.001242253786139403,0.0045051518407006235,-0.005307659004652014,6.856701953650065e-05,0.003599322134621212,-0.008031212271801038,0.08523252858386876,0.0003326487751638762,2.431123478324048e-05,0.019526429274521515,0.006233690289195601,0.02027417096279823,-0.0029812652971113423,0.0001074758977354521,0.004674605832907309,0.03231876786895773,0.11759768614581922,0.05118371796708065,0.00043319555281942765,0.006376106261941453,0.015052548149365476,0.06737752842330522,-0.027016913578651346,0.00012795779427444786,0.03856643166180641,0.0014570651664433188 +2022-04-11,0.004397914558059781,0.028992043500817126,-0.002896758249417792,0.00016041853430007454,0.01056081814284605,0.06456872092285337,0.2180811614704735,0.05927615989663746,7.104189842478013e-05,0.010376133907858085,-0.006014382046009984,0.02033212064342224,0.004866588435520139,0.000136837628347763,0.014987356615560476,-0.011589269379774704,0.010697676268506508,0.00496394154642538,0.0003656238039860912,0.01322512772481604,0.04509429796546796,0.10670916297119408,0.020008317707553618,0.0002211147372378387,0.003269269480503121,0.01901601401770839,0.05091210225995688,0.07193144389069332,8.15539871473205e-05,0.00248275166852706,0.006957379694932938,0.026338649893401657,-0.014799015577635062,7.750720055591878e-05,0.00880236016411565,-0.049119349346541843,0.4148668918693211,0.028983906867395826,4.0601533984091156e-05,0.008764058537139558,-0.013598408049268401,0.01091086887065999,0.031045721106476718,0.0009611109367590588,0.008525902346792302,0.039043084949807016,0.08345225994604526,-0.031238356872201233,0.0001635942028592039,0.01261857690863677,0.00714703388365258,0.00522382986257289,0.0037578868306050875,0.0006687459664261696,0.004166542782478582,-0.006566692719507921,0.08373198235259198,0.01320220200458556,2.3371043871399268e-05,0.004415514060091069,0.012565313741599927,0.03350135924389315,-0.002748836110810952,0.00011141969026414861,0.010974040741784125,0.009737781861354003,0.049899715055034446,-0.012140929584440345,5.493179545574762e-05,0.0005396642421287127,7.789659346502302e-05,7.271005948516431e-05,-0.0018347819058904765,0.0020895219532976834,0.013838160079943122,0.018531803856456676,0.1185793348471971,0.0008022913469777589,0.00012860587032327198,0.02200907114956657,-0.031063666725517296,0.1804765490592455,-0.005396986146852943,0.00026652636234991093,0.012538011483350306,0.047573425365862114,0.24847327235885167,0.08230160095392688,5.3931897299821037e-05,0.004313564113175108,-0.02449828014345352,0.13659169336070082,-0.0015649058901566746,0.00029559570190172165,0.0016136452754380033,0.0008389045267552908,0.010510889257963433,-0.014974081211242003,3.3120989937082836e-05,0.00726203905499209,-0.010539679868249614,0.10801941306375161,0.007397099742886194,3.259922802422201e-05,0.004834085394903886,0.018288348651185983,0.060402041198895896,0.006731977657908265,9.753166384984422e-05,0.01427103623817758,0.0004914786613877285,0.0028813520910295465,-0.0010453653662872578,3.940040736435315e-05,0.002695870098916607,0.002830228865167201,0.0082600060445743,-0.03606102202868744,7.596588000083717e-05,0.0038121865431140715,0.014760013181146206,0.05023841129132074,-0.012156633862235347,0.0001343381749340192,0.0015222558145291606,-0.03561089635512567,0.032795530769394426,0.01961988352126616,0.0006206457741840718,0.023070360512206477,0.011083955115333442,0.04618951993261614,-0.017070828525551023,0.00010100370831509972,0.002981606994082896,0.014186742192215338,0.05007326286363006,0.0028290280237371975,0.0018184273701820017,0.022236605412626474,-0.01636611113207633,0.14909608845279262,0.0014693128231813577,2.822678669053931e-05,0.02282465458958887,0.0219108781709775,0.06370798000823112,-0.019524951028584304,0.0011244424137883688,0.019290048053488794,-0.02292482951233821,0.18287137920023283,0.0330640207634336,8.348068759607598e-05,0.009970308579108259,-0.030479942712801054,0.04380617465117978,0.036044328797623024,0.00016421930219038782,0.0019220737880314238,0.008059590267707377,0.010766121153052017,-0.00027216019737109014,0.0004296923431301918,0.004815709942124088,-0.01782305086218267,0.06647638100410971,0.030669059040811526,0.002078093190841208,0.00847436858533602,-0.01112097400809955,0.048966298963084263,-0.0046019191187073785,7.286784339764002e-05,0.0015539352036762371,0.020407115333588882,0.026682412110666697,-0.06505856504831649,0.0019012259053630834,0.0073325352285538055,-0.01630846921507725,0.05061534311010656,-0.012001590116105158,0.0001276577099857,0.005302113012110759,-0.034988066715439574,0.08629775145989536,-0.0479454823677943,0.00016435421333667097,0.018675015750673703,-0.012329224137781715,0.06555576003803329,-0.034552006128384855,4.59027617798644e-05,0.004849636017538298,-0.037465689045665565,0.11123907847907656,-0.0958361089046294,0.0031922316544697312,0.010504261427124057,-0.047537049399128686,0.2268126810630654,0.09779796298513256,0.00010425705673294208,0.01409589679239421,-0.04394768924790893,0.19218016816737374,0.001783151720617339,0.0001658396071470936,0.0035302101516927254,0.03184439242958066,0.169233325975794,0.023108653615672187,8.900118235730345e-05,0.006988340396593019,-0.013263225693196877,0.06726487798415924,0.005632967470961671,4.9557363793715625e-05,0.02677061881658785,-0.009001829887055692,0.016124854510058375,-0.017394938326920507,0.0002721851272768041,0.03343400987083272,7.247180713250992e-05,0.00031138902625104785,-0.03970318210129638,5.787355536662953e-05,0.0022750966062115535,0.04603652018401716,0.46210112104212114,0.04264819592840281,2.5703765596027073e-05,0.004175420112559968,-0.022105443751170187,0.06263742300624868,0.06276284242806883,0.00012335998846894276,0.0012768242636430952,0.023403090758582008,0.09429052689772106,0.021091282629113237,0.0003912308788048139,0.00030762264530363823,-0.010771238241147599,0.04900537115088233,0.011371308188112678,0.00012589072802677968,0.019663792154952862,0.00012824753564423042 +2022-04-12,0.007038184987382853,0.050120108400900164,-0.0061007123075906885,0.0001485030111070722,0.015114573704797624,0.013821253832942542,0.0370651124727052,-0.018610716996505787,8.947313349545806e-05,0.010700828933616723,-0.012128541850683464,0.041860316812126985,0.009612042312935982,0.00013403039105740815,0.008384603642989777,0.009989049514888272,0.011415533839528855,-0.001316911663775902,0.00029532199694115146,0.007289018901877585,-0.022260557887660997,0.05005373998047121,0.03478768582764392,0.00023270048228763286,0.008801367833582313,-0.0019800540014743,0.005382290015717958,-0.0006478920070548306,8.032609958861276e-05,0.006816888208010965,-0.06273799831394321,0.22409625196398217,0.08116797214530068,8.214590535004529e-05,0.03387722574690104,0.014625711876023689,0.11178304919485833,-0.04228713235737244,4.4868306311755716e-05,0.0004507066402371163,-0.0063444369189518115,0.0052329432461286525,-0.04369373831723902,0.0009349574481250001,0.007192713997732606,-0.010564748015356154,0.024299592833705287,-0.01677157758595751,0.0001520274576130856,0.0017595890110323384,-0.014689816501641292,0.010453165033090201,0.012884972501427592,0.0006868990599713248,0.002453077722452741,0.01596963589241349,0.21911906744121742,0.03848222854330909,2.171889035535274e-05,0.006436064557233159,-0.010885668023416182,0.03178220909618761,-0.005365080128601871,0.0001017471007381168,0.0027685378146361994,-0.008945196707682445,0.04191339315588768,-0.04659988051135776,6.00757072709487e-05,0.001966564412742371,-0.022467922545145767,0.02070917693909084,0.028859599202296377,0.0021160359991512835,0.008881798355167524,0.0007876693404412887,0.005964576696251325,-0.0031910082504387587,0.00010867169012962321,0.008470439811669107,0.009556712335234762,0.05545410598825697,-0.007332629041251948,0.000266859726981392,0.025335898983121795,0.02390236164526548,0.1208817167201462,-0.09197500639650429,5.569819867336244e-05,0.006251032055413965,0.009656393593580396,0.051053956859235236,-0.034946223480498174,0.00031172552112310073,0.031691861575721667,-0.008969432187665152,0.12006036817710307,-0.0628466216972103,3.100241398374213e-05,0.015942033344338646,-0.006185864249853907,0.05979834562210929,0.001895604043042986,3.4561527231551125e-05,0.001343876965391324,-0.02862149320679754,0.08862582512396515,-0.004806013029400425,0.0001040290785639525,0.010402155011338218,0.052284782432950275,0.4173644281627206,0.03333952109314918,2.89369164096079e-05,0.00854926419649137,0.0096282636351626,0.02945413001927906,0.006860313536716837,7.247348675469277e-05,0.004398075976520327,-0.0001058197153039183,0.00046292822906063004,-0.006345694601632113,0.00010452050991132826,0.007429844489257066,-0.021621515355481912,0.018238788789775907,-0.049167575486561255,0.0006775879838165756,0.04563469131219837,-0.014083580995473466,0.060251735610026995,0.009376497334842061,9.838514797304876e-05,0.00894168913073822,-0.029762334739977074,0.09272575338607662,-0.0817941089026936,0.00206008813594039,0.019650426250506052,0.03518751140325054,0.3378379935245353,0.004468980677415385,2.6783187344316e-05,0.01855082225756112,0.019539646261300555,0.05610713936977099,-0.009083675435067082,0.0011385964888300838,0.01713302125155059,0.03120767613797002,0.22629993065299184,0.021581856544465455,9.183382058348918e-05,0.009454867844376514,0.008610326554009796,0.013936131889437143,-0.04025211042877874,0.0001458219029009267,0.01916211201739483,-0.005590305787905198,0.007415554921920374,-0.009927877863362114,0.00043270889445878467,0.003461844750455401,-0.02336860536908742,0.09655766391171626,-0.07910472350081285,0.0018758425627524201,0.009526189492242432,-0.011141512883726008,0.04376179587244411,-0.015348705622046283,8.168445225930458e-05,0.00606510272625658,-0.00633986189092604,0.010357769691789306,-0.0031352429589396346,0.0015215658026761798,0.01185227576184375,-0.05092363213444445,0.15119970873137994,0.05876061372850308,0.0001334395147987598,0.009705125469643427,-0.06277785975110257,0.1316715264806716,0.11650792819026598,0.00019327470147678387,0.0440186552606221,-0.04567837850931698,0.160094772435584,0.0408065543465608,6.963818649912953e-05,0.011608603087874661,-0.017498492213754973,0.050804032398562536,-0.0017687427664525926,0.0032645287841990525,5.162502628504399e-05,-0.011149977138914165,0.05881937262119342,-0.04300490990702819,9.42961930664597e-05,0.002431837867242482,-0.010104382646532958,0.05571289705829905,-0.0015168643898325542,0.00013152697336281347,0.003961646203589074,0.026960516312116316,0.1501660547415104,0.027207611179935316,8.491905114191171e-05,0.023481548092075796,-0.006018088022715771,0.023568510374407114,-0.0019326444783984889,6.417617017891965e-05,0.0034927123369189635,0.041280567394897896,0.08940316843129091,0.02971812297748582,0.00022512417881832773,0.024225585533534055,0.014922698310435923,0.06758357029623598,0.009314648980848775,5.490610092195759e-05,0.0047880679615129465,-0.0059872520086178575,0.06776108434627041,-0.001760137700670964,2.2797040808645612e-05,0.004367392368972541,-0.011061536215317412,0.035023660520420524,0.0007582784119754162,0.00011039842444969116,0.0004118440455112433,0.01743486608331328,0.06463958886892608,-0.015258887186453584,0.00042515569545541925,0.00941580581676376,-0.013210984200390512,0.06397889668125031,0.012767960171072566,0.00011826880883859181,0.013910391696039652,-0.0036789418208293284 +2022-04-13,0.03442961710544393,0.22581940980735507,0.04811117216677563,0.0001612343268630295,0.001153435712175764,-0.00027284630120204023,0.0008980033029657403,-0.0003555017741341103,7.290388349541896e-05,0.010792710833668619,0.03760702134519636,0.11439346940205708,-0.03086626884354553,0.000152077480661687,0.01460772322230401,-0.007483711718410743,0.007605220618976595,-0.006651020453943898,0.0003321032219093272,0.0039050872440182047,-0.03187909750363257,0.06556826884355499,0.058680494616020866,0.000254395879636616,0.008435660779668872,-0.007787370517852046,0.02121295505127012,-0.0378029740717308,8.015606831163437e-05,0.006043871914263124,-0.03935459008407962,0.12828584811749727,-0.01251386895293859,9.001326162921221e-05,0.017619473637070282,-0.031589150224345684,0.26601570651405615,0.014943514771571945,4.072201672754652e-05,0.011892253087268065,0.014197334447352147,0.010898110281142133,0.028823346317285337,0.001004616718893879,0.006890987986107105,-0.012051739929848072,0.02874616285363554,-0.11339967638090029,0.00014659925255072677,0.005833965132420316,-0.02186876384469268,0.0143731077504138,0.028954523676436573,0.0007437002229283227,0.0008229566490313561,0.019669361309154542,0.2404184240880931,0.05318275042077294,2.438065120254447e-05,0.000961034175564537,0.021942199503482702,0.06411295950264652,-5.640724859828057e-05,0.00010166825571704502,0.011389740946448876,0.021177551428862552,0.11768082031043502,0.08524137479022054,5.0656114679264414e-05,0.0025496141126745103,-0.0005869573556718006,0.0005415863607113426,-0.003233377186200383,0.0021137898273637435,0.009539206437249903,-0.0087288266262612,0.05729279628343605,0.002634659993540455,0.0001253741368136805,0.001588016117285793,-0.006786351940576827,0.035262820453021815,-0.0028483176468617885,0.00029800775411083463,0.0017074230739354413,0.02295917229591546,0.16420582784777885,0.03310634141443877,3.9384797471884536e-05,0.009956616936935158,-0.008059520549659624,0.043918252404066105,-0.040587679778064926,0.0003024481720769549,0.008780573561018586,0.06289947791796381,0.851810935746234,0.04846050887280624,3.064319611252369e-05,0.028722875899505656,0.013833997675096004,0.1541596037587683,-0.09597433088779518,2.9981877270347654e-05,0.016684092229360414,0.02175051644229638,0.05664453296669132,0.004964726505044536,0.00012368992570988102,0.011935762690352323,-0.05912499928684944,0.45618809819464134,0.08767012926470084,2.9937778724703974e-05,0.008118513383273376,0.014560778966155194,0.037294990138415994,0.01832791797613583,8.655885340354619e-05,0.0019199871802307782,0.004194891498913156,0.013934444360174611,-0.00022924981343148767,0.00013765109549914077,0.001129216268366859,-0.05180416484035527,0.04964932393438293,-0.01171731102792411,0.0005963852569355803,0.010353969488154067,-0.028973129620816915,0.09956550320783963,0.047004903370997206,0.0001224820722304642,0.002500984936304269,0.03285561926874563,0.1019186320456559,0.013491606381284231,0.0020690702965099703,0.008339805762776797,0.0446154117945591,0.37871901234150884,0.004624957986106482,3.0293537673250838e-05,0.005447473517857443,-0.037403929734650516,0.09722599986633601,-0.0009947312546317055,0.0012577840529736962,0.009741946498549345,0.009548295932920151,0.06550498516355134,-0.01171517519173226,9.706824136905543e-05,0.007292196250786264,0.002511793723294385,0.00376436932583745,0.0006726169695421436,0.00015748425171667593,0.007413287541168356,0.006420467883695134,0.011296925836889637,-0.006192790959392467,0.00032621979768072067,0.00037098898418592486,-0.004850580498915664,0.01849444435846876,-0.007478021807940947,0.002032837995894595,0.002920486688291477,0.04527362271792795,0.13371737587368399,0.11343377598604516,0.00010862949799946346,0.0054530315819569936,-0.00753519390167031,0.009515435144927002,-0.010894388529409101,0.0019685342286897183,0.0003012487132480156,-0.02036104626783785,0.07059856851303176,0.005546766954713292,0.00011426684388775557,0.017934316965942488,-0.03426811084843923,0.08055587995465435,0.00808989093319563,0.00017244606672542053,0.008133615279484748,-0.06020236804953161,0.2482448606471058,-0.0369943983548817,5.918984917929577e-05,0.01367881579004622,0.007709009449128236,0.024469396044947512,-0.040216700966240776,0.0029860246306706644,0.028602130342576762,0.0035759431888749377,0.017854450314558252,-0.004510518126585276,9.962875360014885e-05,0.00937267782555296,-0.013262928135024008,0.07507919391695361,0.0036497379213096585,0.00012810928272476,0.009189608406624387,0.028372504277919732,0.1952306272634496,0.01928669907243389,6.873824176519207e-05,0.020244847046652407,0.0015960398625727338,0.007026376855776154,-0.002269115068071793,5.7089953560470224e-05,0.000623541202426105,0.037006939168702915,0.0651461327312723,-0.029673703552388707,0.0002769643811841011,0.00813825851974739,-0.00487977572573325,0.01665634196117909,0.004553556490810694,7.285084771113232e-05,0.0030374483710696562,0.0021625305830605167,0.025873432640328264,0.0014475254303632098,2.156450496663127e-05,0.008471725276185347,-0.011200917244568495,0.03546797414848078,-0.03548162781252619,0.00011038909422741472,0.00996768645234581,-0.0006412772527785982,0.0025030809359559945,-0.004806978593309611,0.00040383031094933593,0.01589983103269442,0.011310634510057435,0.04922103795652103,-0.0011781363763977073,0.00013161579069010323,0.04155100300352129,0.0006710027247184711 +2022-04-14,0.02869414970697435,0.19122214452637804,0.02496033815791845,0.0001586871496284117,0.013375523865442157,-0.037272713367838044,0.1431357394261142,-0.01750856858760925,6.248178818524106e-05,0.015279739847550919,-0.02219711776309173,0.07653736257462458,0.01830285454257325,0.00013415914998393495,0.024167404544116977,-0.014524012302831926,0.01779283422127073,0.007211047428246551,0.0002754922157611969,0.0035407380778478027,0.008130579865230433,0.015903801451540585,-0.01365262473279388,0.00026749664985763015,0.0008177454362674524,-0.012246340081974633,0.034691110770616096,0.028114541234310637,7.707878315101203e-05,0.003460765037238687,-0.052563501337976624,0.19091889793922345,0.028929515219164214,8.078397574958344e-05,0.01155067547260139,-0.0060740359427568225,0.05781628481816246,-0.0003010945509615971,3.602680848042432e-05,0.007331931995418404,0.0065891968894138085,0.004771200256026324,0.003889619770725414,0.0010650000454033443,0.001452563168943574,-0.02885507193305858,0.06845170987009289,0.05850923903143234,0.00014740076814426324,0.000760153762906798,-0.0009599946692566152,0.0007166043725875068,-0.0213672233819031,0.0006548076218522984,0.003935318861045211,-0.0004364437136975842,0.005551265540069234,-0.0009505451951106963,2.342928471616893e-05,0.002750009791367102,0.011527889417423796,0.028546691994110175,0.004104021448811457,0.00011996237366525191,0.030000210310380672,0.0019414015548200553,0.011958002895526577,-0.009653066523312187,4.5700245931480834e-05,0.004285990949655673,0.041188230320004786,0.03408832962393163,0.057867297336320456,0.002356624478689489,0.023178270916255416,-0.031758647881231,0.22093581369362986,0.01224110795338759,0.00011828998894345244,0.022489867517997992,0.06761291254785282,0.3908320631668677,-0.062278977854868314,0.0002678845649487744,0.016986436534440395,-0.030144295451560197,0.21595741579999053,-0.05801946089603021,3.931859330888399e-05,0.005088309448495969,-0.012131810001711213,0.057634754331686446,-0.00015042683556612088,0.00034691890047394653,0.0035036228875514343,0.029625846995548842,0.3629372787658192,-0.05922203926581844,3.3874229703746415e-05,0.015708932111123133,0.00940327937867775,0.09676041750185597,-0.06654704181179151,3.2468581469791236e-05,0.012792476633771352,0.0026394824747153025,0.008207862090989882,-0.000501946620016524,0.00010358848650720152,0.01322072498218927,0.004042039871601411,0.029323105157383976,-0.010088008568164676,3.184072965994518e-05,0.00652659706117791,-0.0507201135291669,0.1609873123115466,0.13842012144687768,6.98499258464318e-05,0.0027332786537939686,0.0068375163555818175,0.024226605829494693,-0.0067969303072370245,0.0001290489277696312,0.0023459017840496373,0.03557749789434579,0.036872000111542895,0.014304285546514887,0.0005515111112690929,0.0023575294412532533,-0.03449828813076669,0.12104423379282198,0.05825450961832311,0.00011996082627956611,0.00027038548275775125,-0.07511985214304708,0.3041184719319184,-0.016452486968092542,0.0015853716927045625,0.022413566855982434,-0.015431195935970045,0.11774749316359807,-0.00916990408176282,3.370001632035615e-05,0.021697405105335688,0.002384045075271282,0.007552794259113408,-0.010854454412953388,0.0010319961512628658,0.0030675612895843503,0.018799172643091142,0.1631188485079189,0.010946792444557282,7.674679224609128e-05,0.0016444719757495758,-0.03692600503987792,0.04939504894195491,0.051813360128061876,0.0001764388794042063,0.004770329477365073,0.02137949440327483,0.03377019775075591,0.047249301711491436,0.0003633856227219895,0.016075386489890157,-0.02341265312969475,0.10253772606762979,0.032052835028622204,0.0017697718787358968,0.0004205712892333224,-0.004542158097779704,0.015347350227416385,0.0005048047101461045,9.495530062665756e-05,0.017960386924550903,-0.01569481880324657,0.02299776638470347,0.0061954271616571225,0.0016964764681427441,0.0005408371808317948,0.009586520834719312,0.03402520124749705,0.00031210628039935796,0.00011162882525456112,0.0015489487540709976,0.0001892102479454856,0.0004603385288097287,-0.08739850980189386,0.000166620220740691,0.01621085725897938,-0.04173962656908421,0.14976134151756829,0.01854173494480502,6.802409343446188e-05,0.005226175023368246,0.07725474079266871,0.2184269628550668,0.08790661191871299,0.003352254253851595,0.04002137733985731,0.03072881586896871,0.15755783849460067,0.1412230268934013,9.701667397697481e-05,0.005923611446303791,-0.002444190677719328,0.013860661229525662,-0.0037483307435740034,0.0001278827358489242,0.0076337774163479505,0.008584797501315659,0.04954843290232506,-0.010251175862989903,8.194997602256683e-05,0.011526591082368726,-0.04119575522107595,0.1980135275721395,0.017058813046829546,5.2288357899525064e-05,0.014078046796387392,0.004868744792277237,0.0074334890937004985,-0.004520180436339081,0.00031934027576344175,0.03089477797623019,-0.010053438961882342,0.045607833510345246,0.020866552306451857,5.4813758087301286e-05,0.0008435141536035932,0.041275446712486716,0.49267413481191863,0.04825547662010254,2.161540141228806e-05,0.014002292718101121,-0.006799344349275421,0.021625008175341576,-0.004609620185396315,0.00010990557445481354,0.0031973551762336664,-0.015340012689582546,0.07217719125346701,0.020801698385086987,0.0003350068691567125,0.008463388939963706,0.005344507672978557,0.030650898808767944,-0.07963720106471524,9.987028439295618e-05,0.009260548342910199,-0.002514973988071994 +2022-04-15,-0.06612779255788799,0.41087471716410073,0.20333002336598552,0.00017020064099218282,0.018567336480078977,0.044598784221127626,0.15892367255247197,0.023163777921130356,6.733563404300235e-05,0.030842942454800088,-0.041697179599288064,0.1229132119473027,0.09316045974615357,0.0001569297623343214,0.0017664401940810422,-0.0150149318598096,0.013532972388618773,0.011590101985655252,0.0003744536137686297,0.009867581856755892,0.0061005950116834635,0.01410123678210095,0.0006419391275417952,0.00022636681610269292,0.0016469149429436758,-0.00012443417826164653,0.0002978018744481604,-0.0017739995593261694,9.123447913500923e-05,0.0005167701741910417,0.003586024170390137,0.012976944816643996,0.01071048200840288,8.108314954398913e-05,0.017461155894189024,0.021161004586008676,0.18242299031136766,-0.0041040936523433266,3.9779134101386015e-05,0.00144459807990932,0.016086242694178722,0.015922018433278288,0.04106488715656866,0.0007791144890117655,0.006240287229612411,0.013405412049837459,0.027556890579545308,-0.019498064407995827,0.00017010294878499682,0.00357404881094735,-0.0018198601067097434,0.0012798010481216216,-0.022368088033794867,0.000695056167960449,0.0022379811129363985,0.006151683232648676,0.08309950402379716,0.00046872935069402946,2.206065089357975e-05,0.00948600785863705,0.01031386532088985,0.028508679004685587,-0.001576695734389088,0.00010747201705645745,0.010651255081296832,0.004457575190666868,0.02288506075793436,0.003960046532981569,5.4828760267547665e-05,0.0018764437003491487,-0.003311647167949297,0.0032257417496750185,0.0022759920290145778,0.0020023382196544914,0.0019320815521983398,0.02642327535066169,0.1907750348996669,-0.0003627072600241683,0.00011397699865749647,0.022817680984012805,0.03344425335431543,0.19278590893495878,0.024213617858826822,0.00026862996115986144,0.012796986137740388,-0.034400071995623116,0.20482155477820832,-0.013079496389687752,4.730909594905233e-05,0.006195422589995387,0.01294000546679314,0.07031731637584375,-0.013319776210838,0.00030329062041776225,0.004633346547030161,0.04007597719505154,0.6415365754749532,-0.010786244906100074,2.5923457865625174e-05,0.022054144230534492,0.007736798023336282,0.08738442471478096,-0.04530909300855393,2.9580733373836656e-05,0.005064980689998626,-0.023270286439067738,0.06309186123735366,-0.0013880080148138327,0.00011880949378807267,0.019860079577921012,-0.04461283326228062,0.30079011979256376,0.04714506653632794,3.426009908159206e-05,0.009187375226497364,0.025115992242152895,0.06213959330081274,0.03806647595617612,8.961058572792552e-05,0.005319872039067667,-0.005041865913672149,0.016704840443077844,-0.0014486811849119454,0.0001380058687753893,0.006005252884536985,0.025694555697323457,0.025187120935541596,0.005307135825800628,0.0005830934277279349,0.009463774764289333,0.025895475639584654,0.10412456593602891,0.04580649769867035,0.00010467830880292152,0.0002915604313113334,0.0487471496186164,0.15400930533632676,0.025841156497554522,0.0020315215757053602,0.03980723861442844,0.002534102103702215,0.021795056884377148,-0.003396779608974501,2.989842409584675e-05,8.040303001528035e-05,0.004154289133977064,0.012344729463625302,-0.015885908934789274,0.0011002374228080106,0.016983188826628918,-0.027810587643080652,0.2404367250821665,0.0339638454056411,7.702558492422332e-05,0.017742823468556303,-0.027689910397901994,0.0423167803537009,0.027839663635234782,0.00015443805356802872,0.010682266834221965,0.011091771871468738,0.016393611806659627,-0.031215224199356715,0.00038835615761427706,0.004680482295437925,0.009059262805273458,0.03228985424028667,-0.060037652970872504,0.0021745886408367767,0.015086176837457855,0.019910605248323714,0.06446612297132462,-0.04771156874019408,9.909306924175463e-05,0.006622462702919803,-0.0323706858385869,0.04958665439481076,-0.02424205977584143,0.0016227973327705828,0.007869398782651808,-0.005704909674379759,0.018509536368423268,0.0006779401913687179,0.00012211507163844578,0.0015868392422896168,0.054300795374639416,0.14774926200292096,0.09786227647693076,0.00014898455455276136,0.0011837813152259444,0.00970629643310434,0.03927397745884027,-0.0008256893868858695,6.032017449096482e-05,0.0012357059491734281,0.0201766246802446,0.05676436357128058,-0.02851603930135066,0.003368920793227328,0.024701315022441238,-0.018960616623493902,0.08583698604206029,-0.035723881385226995,0.0001098799789939516,0.013452587533571864,-0.02457931320928651,0.14936288337272619,-0.017482134917967344,0.00011934049621251526,0.0052712705858261825,-0.03930567130636074,0.20912933441286796,0.0377042232635543,8.889737999517602e-05,0.004282610582989304,0.0568391666432404,0.2249191279125713,0.037427391518316803,6.351388901106599e-05,0.02311434176213236,0.02848051514197053,0.05060305663360492,0.008366652308991772,0.0002744103473958398,0.0029640312365324796,-0.007189142259697067,0.028373780329397184,-0.031662272407215836,6.300488908523657e-05,0.00518554819564821,-0.015092911231968317,0.1528090758940207,-0.06519979232340085,2.5483269894724255e-05,0.01142103176696372,0.0029596633330766418,0.009991059061844595,-0.013302213893384394,0.00010354753156496692,0.007511499398947819,-0.005135781285920537,0.018578568959061192,-0.0005946358049538949,0.0004357347862366198,0.009073451385842772,0.03227214446163389,0.1375917114070183,0.013717911335881561,0.0001343406200165375,0.011852686199334111,0.003802342596091213 +2022-04-18,-0.007062478554379736,0.051337327472797824,-0.01069580559737755,0.00014548240425699664,0.011482066132849194,0.0022388669018798615,0.007828373910034176,-0.006263755712284382,6.862261153165279e-05,0.03972346049411492,0.02286316767370765,0.08464043970729254,-0.038579101838907434,0.00012495559160445114,0.018787818510529495,0.00592470561381748,0.006079793290237948,-0.02276279313577754,0.00032888632695883806,0.002450380562443173,-0.02910093079520501,0.0670704864331564,0.0480559232067687,0.00022702474490026125,0.0009634286906152493,0.020361258703125718,0.05426558897552909,0.0964517292392254,8.192696011558318e-05,0.0027586625020274338,0.06877513606164691,0.25938525958774117,0.18484724399924415,7.779935943217164e-05,0.006230611130113384,0.010982028639188051,0.10274570560853623,0.00031258510673148215,3.665367353715799e-05,0.008864640378494595,0.00640406415021109,0.005383380920098116,0.0025962172435574425,0.0009173717229848211,4.2801044115766025e-05,0.00014754079873109644,0.00034702149980642784,0.0058917187353651436,0.0001486680462766304,0.01792694666630182,-0.021908434642855926,0.018983115394999327,0.03506447194943803,0.0005641157416007191,0.0032998922175573697,0.020576088798276538,0.2687969293071392,0.043461739467650674,2.2811892263144394e-05,0.0033319234166405975,0.023289189311021346,0.05858198426560057,-0.00018682335052812716,0.00011809767050418111,0.0011395688307083772,0.010524731625794863,0.05800790810953146,0.015236868693613537,5.107232683417956e-05,0.011100329545243705,0.019334110185726946,0.016331561031343148,0.0026927121575650564,0.0023089762387314347,0.013877969420925854,-0.09223058849202137,0.6184460262677868,0.10070421130892061,0.00012272280811107973,0.0414138676137093,0.030438949423391187,0.1630183456360715,-0.08404195488234906,0.00028913549463910603,0.03356684579967324,-0.02566737198950982,0.1571725883523207,0.000479789866655976,4.600081810143751e-05,0.0031908398434726676,-0.017398622560313385,0.10374068573459129,0.0015875476567093945,0.0002764092419085686,0.027640062985371763,0.047550526214588634,0.6458824065726181,0.011712389189838534,3.0551469470288436e-05,0.009703559062607699,0.015849879800721986,0.13498397754488378,0.042172633182707614,3.923064611458221e-05,0.0141355878702414,-0.0147252896210765,0.0417602582814123,-0.029940838683316998,0.00011358563887856074,0.016978407755645172,-0.06361883492684015,0.43062756792403517,0.05135764110565888,3.4125282752287434e-05,0.019153833086293093,0.008029143625211912,0.02333364052178399,-0.051525586820722794,7.62893836332255e-05,0.0037672462475457297,0.005261585511985228,0.02382370945576165,-0.01287729866381651,0.00010098476162223373,0.007000569743689428,0.003796648197741676,0.003544014645674637,0.00036685568547271247,0.0006123227708973004,0.0015705694660931224,-0.05221735521096757,0.18214614498305615,0.1027337666269225,0.00012066488301583387,0.017895698789025426,-0.018635819871119882,0.05828032023724782,-0.09798893576924413,0.0020523231749942474,0.017144960812373752,0.006006721495749164,0.06835552569014106,-0.01939822068506579,2.2596754320631157e-05,0.035274623126576934,0.039402765122229844,0.10633508123797016,-0.05457920650310184,0.0012114943761482428,0.0028902661182748385,0.022584221765719177,0.16129898252038125,0.017450153777550072,9.323933021442147e-05,0.0071261719638645625,0.012782836361694232,0.019914767524195544,-0.09773137527828926,0.0001514946773961953,0.0069272818881991995,-0.038515324952774904,0.05235537375903319,0.2337782359158207,0.00042225637577613203,0.004525916224092456,-0.03476520328757686,0.15240941315223058,0.01543786139407236,0.0017680043269536752,0.010070085231958103,-0.0004082106213697131,0.0014840598289173634,-0.017254072756281127,8.825173686189078e-05,0.004916963196925883,0.04479114478641397,0.05661357090640558,0.03413047903759236,0.0019667483990132577,0.030266396518455484,-0.032156980128013046,0.12210934541055923,0.016796691654144515,0.00010433797187418859,0.024937557701415727,0.003878962220324941,0.009302970346133995,-0.000261821668664427,0.0001690263017135571,0.02540932850557237,-0.012580913341022381,0.052078806441708356,-0.01160280213144169,5.8961031609856504e-05,0.004023221539659995,-0.017428631345536492,0.05012183856986661,0.002237003265608874,0.0032957506639649057,0.0500381923957146,0.04879492196798942,0.2348089836629009,0.21089233816182362,0.00010337142180978439,0.0021551258753603085,0.02238943549818784,0.12120205609306284,0.024415902185068335,0.0001339657997134671,0.005317756528401409,-0.013998333870344219,0.07777129936831119,-0.01933894521522549,8.513451990060221e-05,7.038047983037908e-05,0.030385617862260652,0.16642030186122642,0.0014688717857525289,4.5889059957025083e-05,0.021983398160772112,-0.017675749102325753,0.03007221894846353,-0.07959105964227864,0.0002865772743236836,0.005917293656088497,-0.02521213253527058,0.10430627376146996,0.10470946443941657,6.010540480068746e-05,0.010828824093032135,-0.012733975947694353,0.13295138980366822,0.027860924040103766,2.4711688968029662e-05,0.00031128876724497855,0.010164276357073019,0.03445231152828426,-0.0794908506562359,0.00010312573658450095,0.0037633346150244586,-0.014927466272701171,0.06388942286631394,-0.004092734499996218,0.0003682859105906122,0.0007328036957946092,-0.03860679690692359,0.20122560448621843,-0.0583103556217771,0.00010988852050825042,0.008757723357934604,-0.000734060353466993 +2022-04-19,-0.003522948733675029,0.024142294131630607,-0.05878150381574994,0.00015431721273192328,0.008169571372778683,-0.00829173984738066,0.026326008282301788,0.0011635288596023577,7.557378620463449e-05,0.002185692767653893,-0.0424524212597129,0.12263051150954202,0.09047319818897825,0.00016014048145372267,0.010604019102544422,0.003882896896153444,0.0035607352491386253,-0.0023144795815667825,0.0003680306860150178,0.014252506932094379,-0.00021267433085637213,0.0005210672607133942,-0.012351937437571863,0.00021355958122777106,0.009036370747489239,-0.019415753420239188,0.06494950423045341,0.06231248377959063,6.527173354961815e-05,0.007837942250231078,-0.040252943861352954,0.15606111245015564,0.0062610274548795825,7.568203555823291e-05,0.00501018937775231,0.009808130989358718,0.08387158547021688,-0.020693799372293358,4.0102368092595836e-05,0.009267372147911316,0.012859392059430466,0.011857974799549958,0.018035465370111425,0.0008362857583116176,0.0008168680507167183,-0.03960034943120295,0.09382873938559108,0.048171023936834166,0.00014757915624472742,0.004943094366798779,-0.005025734894961487,0.0035936076093530493,-0.005919106304546181,0.0006835861895367823,0.000988094287668832,0.032309119573957254,0.44090151620141316,0.024753533885060918,2.1837671099806956e-05,0.00451860647817314,0.010682052949498026,0.023692197494980676,-0.01660134097445784,0.00013393695463738507,0.015702957584135743,-0.005147796308114929,0.02431155943603053,-0.005539513845563206,5.960330683348854e-05,0.0024213996165362538,-0.017571584827606773,0.014952467744397128,0.0054074070921113,0.0022920338739548215,0.0007141504175476525,0.0039725976337901025,0.02078201405209737,-0.032558982283143564,0.00015730374174977705,0.04137845587991637,-0.06245217381576555,0.3681643595593017,0.0503203491023543,0.0002626721614010893,0.005557053785013004,-0.018046140205240487,0.12400880427986782,-0.03330684584685212,4.099140113086731e-05,0.027839554082747832,-0.0510056481206097,0.327611826412152,0.05069651488913738,0.000256593415107695,0.0034989834337141087,-0.016198541885377712,0.21403862400761026,-0.041956915005060734,3.1406099633105874e-05,0.022222326493140338,-0.014567325786680713,0.1378023556961721,0.03241161518625204,3.5318715488325565e-05,0.0016497804854608978,0.013730092183151894,0.03851182723219869,0.0048296635415182015,0.00011484235355115265,0.012808135401670978,-0.028267205603187927,0.20043080522513598,-0.005588054357489854,3.257697710520157e-05,0.019751583334290175,-0.010544756067625631,0.026772644657107113,0.0017150962696745212,8.732179330613732e-05,0.0026164293786182097,-0.0016984360304048295,0.006970000875326854,-0.037950798787763224,0.00011142046261077476,0.0031847394765387943,0.030843855099365842,0.027533685369406303,-0.00305735147051962,0.0006402946457650119,0.023064199542386345,0.04497162520746012,0.17068607072423087,0.10322776747912389,0.00011089871420690416,0.013781988356730888,0.03169822957691675,0.10102340566010908,-0.012277992751710574,0.002013873448165284,0.004880864582892693,0.03099302219590256,0.24452335185288773,-0.009228492859211096,3.2593108489763855e-05,0.0006630739371978559,-0.007189981642902936,0.02685373835102601,-0.21143529991127863,0.000875375320329596,0.0084438564712442,-0.0005160142663908832,0.0034021413705852123,-0.000654358800408961,0.00010100316805339417,0.008434871468709224,-0.005810934876007529,0.009540470272507985,-0.0005618941340226226,0.00014375455410274771,0.01027057284975174,-0.05845724400182706,0.07775692868003564,0.22866839904529268,0.0004315222088964635,0.005884426839272467,-0.046505667821149635,0.16461832023640385,0.08924434305659819,0.0021896669358890146,0.002849877051416152,-0.013441445844302954,0.05228629729740139,-0.00999213326989194,8.24799652050357e-05,0.011139933036118894,0.03838436279550464,0.04860193517766775,0.028009623481334962,0.0019632606651911735,0.008105093356909196,0.01609594101716327,0.044036997196651016,-0.006623518152179464,0.0001448153875613704,0.0017232177985956269,0.053373687835243065,0.14770463232914788,0.06892545154578042,0.00014648510659609514,0.010629901786229615,0.013674231520150185,0.05907636604029582,0.00819041055508649,5.6494098265497076e-05,0.012373743436618585,0.0012172971430897159,0.004333315731523558,-0.009874717312087253,0.0026625288801364905,0.015670543862460966,0.03522076937863526,0.18848813190548558,0.010813239129177117,9.29512852457876e-05,0.007167851780616038,0.004165935656611684,0.021987008361897393,-0.021106295699599802,0.00013740647572836267,0.003063152709955203,-0.013581401367062294,0.07916104383529542,-0.01991987639646761,8.114873804340206e-05,0.014652895587442068,-0.05325058975707415,0.24544003922397875,0.026139088261748145,5.452885836301741e-05,0.011766856006899765,0.0030530795081657736,0.005954265400546629,-0.009751717670711351,0.0002499996034367929,0.0006964306897595967,-0.00782818496339426,0.03784935833974841,-0.019091578316007517,5.143004841357769e-05,0.006653787804557599,-0.02233399992006364,0.2813187568121063,0.0409811403634469,2.0483261344931546e-05,0.003278700191060126,-0.0031091274491588856,0.010981209528178243,-0.02176053632740993,9.896857367386295e-05,0.0014853113842783403,-0.001999118261090719,0.009381810507829417,-0.004065191460746634,0.000335876640230989,0.00513430414202304,-0.039971915387546714,0.18420167102426793,0.03932693984667337,0.0001242891419320382,0.03207230777806654,-0.0050197116897005385 +2022-04-20,-0.0402983192400497,0.2790103379627907,0.049966501820663735,0.00015274015315595198,0.0205455575829291,0.013904623274483035,0.05149355417077751,0.0008620650044169574,6.479132847627005e-05,0.0067658322832743955,-0.057411459882798214,0.18258398043435375,0.11115604045111133,0.00014545649696201464,0.003752612350963609,0.027010707493165528,0.028657980404383172,0.04982839909542629,0.0003180960196282506,0.0260987050933387,0.014755649188432203,0.031131569064877913,0.008147524820751765,0.00024800194313071645,0.023717377292052658,-0.0005712359774748437,0.0013631701633131025,0.00016849451168806542,9.149813043401974e-05,0.00045959901475035544,0.025909745840099665,0.09458731540824863,0.03048275595271993,8.037483763148189e-05,0.046236774055589784,0.028806565447656543,0.27056847899598946,0.02423732485330406,3.651008932473788e-05,0.010430096671259853,0.03410769620941095,0.028935633868217552,0.14497931009346365,0.0009090006049699778,0.00043448559086426504,0.08132910044322299,0.20598078217570615,0.12673598876486375,0.00013806422269275467,0.013194738838615284,-0.00806973551160746,0.006442510844834794,0.0007430011002586388,0.0006122495869048917,0.01270131000889562,0.005590481393806166,0.06949925059617408,-0.007061971143899526,2.3971315843441415e-05,0.005368111717544583,-0.04879462339219895,0.14990053013442362,0.02575957112217615,9.669852274736799e-05,0.03822037726166823,0.0057753541146299625,0.031633160990461394,-0.0030597363159649673,5.139227518999114e-05,0.0028425385664454534,0.01178016247994151,0.010616685709211723,-0.03469434143026213,0.0021641397010818053,0.00738490690225286,0.008936733973460311,0.05469161664760854,-0.031831162353196565,0.00013446528506733823,0.02530306566213163,0.027879595257547237,0.17143416580168658,-0.016386290985753862,0.0002518241159609818,0.008863158160168867,0.039059114745136174,0.240040214071543,0.009129946661860601,4.583522278307013e-05,0.0020888793899807054,-0.005175714924003085,0.024725097411782346,-0.004714694654305859,0.0003450000386494627,0.0011805035580557605,-0.04836749188286295,0.6444798931188067,0.05782308407964694,3.114400254485442e-05,0.012573501432896343,0.014238313169761376,0.12355909233478074,-0.01750204587568874,3.8500426513519714e-05,0.009879955086156965,-0.01697489963951175,0.04637534838616003,0.0071427588856636205,0.00011790786782168334,0.02474165394841691,-0.04313025885031801,0.23346598699691148,-0.06611171469341748,4.267276876004378e-05,0.004044673291916882,-0.006856062885230271,0.01845247228585388,0.0023670083772702917,8.237541450821921e-05,0.018537085945954077,-0.0015226773081469319,0.005430888760707049,-0.02420391173303865,0.00012819927345702372,0.0008062664455624204,-0.0017175257925588188,0.0017203225671843943,-0.013092240389252576,0.0005706488450649454,0.0244884504670336,0.019781351560990732,0.08033538318944342,0.00253729585829759,0.00010364183674516145,0.01603156213170146,-0.011679351679698918,0.046192983721595186,0.0029402049741610687,0.0016227884019265908,0.020349547575431094,-0.02733154480911942,0.25616147386883215,0.016747341291698824,2.7436743370293096e-05,0.007080499970449898,0.01526902512740866,0.0431205072199138,-0.0007205289901897527,0.0011577071588419765,0.01296727871865528,0.00984972009787541,0.07750926182794352,-0.007774716263670599,8.462446413210168e-05,0.008532735189330107,0.028460208598098027,0.03858776825176164,0.08474516241672969,0.00017407395776029638,0.0035093435996986526,-0.023179804046768806,0.04095419383416127,0.02114518605203004,0.00032487425204717334,0.012118791141170107,-0.016147296199788014,0.05397715459142644,-0.05407238467519399,0.002318676530159319,0.007146856115487955,-0.02174248290081104,0.07892921298380612,0.025093227220228363,8.838157471166001e-05,0.002266086104218387,0.03190659590224286,0.04288013613255889,0.016942646602815806,0.0018497009021204186,0.010996653252481699,0.03366464089093054,0.10612794621008372,0.017063231915763588,0.00012567828993725568,0.0052374084670012465,-0.02295047898017461,0.055897902722960156,0.0069883360675973396,0.00016643958195178973,0.021259642369055608,-0.020296211162086786,0.09168540855631162,-0.007102441728393965,5.402921692323375e-05,0.001670053896055358,-0.029055927110260227,0.08505263659112393,-0.020517425541766266,0.003237911798142146,0.0017757445082428357,-0.005726486749229076,0.026168720821953293,-0.004815325408967851,0.00010885448734937373,0.01181638946336629,0.02276802929818624,0.11755305035581123,0.0058820751757256325,0.00014045988968222126,0.0017786934448858131,-0.01795208624620681,0.09626628605153204,-0.013522440787187047,8.820422891335085e-05,0.0064894296366755444,-0.03542186241020234,0.20706591785288012,-0.060179875263473896,4.2994228957837554e-05,0.017177494291084953,-0.016731965128798574,0.028905450956213545,-0.03343210234414856,0.0002822257238853828,0.009333337562030806,0.011882437518080073,0.04711685554369251,-0.0596082398349055,6.27109841107442e-05,0.008513627716363346,0.00752061975023006,0.08398129803826714,-0.06740866455312526,2.3104806378550587e-05,0.009205614349364555,0.00951250097536549,0.027034160393555832,0.03156029415162897,0.0001229959447484513,0.001120628856446622,0.011925486260506825,0.04538527922753222,-0.16447643927109082,0.0004141799349550465,0.007479320716878505,-0.048133536617601724,0.2489659316422587,0.01924730182460437,0.00011073365784706544,0.002824773987213835,-0.0013476822792910527 +2022-04-21,0.0024732931156916664,0.0158619506212852,-0.0022594718700071595,0.0001648942755533015,0.013394784435874793,-0.01683638340786937,0.05843120419818693,7.457992835038808e-05,6.913763143148768e-05,0.022931246245496646,0.026180405953451384,0.09616207683318168,0.01223703946278482,0.0001259417566584721,0.027645257557914228,-0.00486599119422843,0.006148204115382674,-0.004973585521375334,0.00026711046149788774,0.0009750558879279547,-0.02979008842052766,0.060623995809613515,0.04448744030606384,0.00025711357479665575,0.007664161708988439,-0.024440437034527043,0.059770772883672274,0.07544519719957149,8.928260140410013e-05,0.0004493403720524046,-0.018049901154518554,0.06648241367142167,-0.020911982747497587,7.966322883586683e-05,0.02029966946671061,0.0382026527445822,0.31951333898015966,0.024207805340403777,4.100182064880785e-05,0.012919161132199009,-0.023458984859635195,0.022081205613295116,0.07093173573699661,0.0008192778620462773,0.008362491641850498,-0.048893011385697176,0.15295767603935156,0.07713462177840939,0.0001117731258831611,0.0016999812026337988,-0.009843366529175869,0.0071798407927029335,-0.006135070060523715,0.0006701209583356791,0.009198307065199399,0.009597812579719651,0.13883122031267184,-0.006305885452178953,2.0601930292369297e-05,0.0023768709863774135,0.0019345296728263386,0.0055333066693646245,-0.12265416608687568,0.0001038584155722289,0.013655914853171169,-0.008828787721473153,0.04896303597933934,-0.044801988451312724,5.0756837473462106e-05,0.0037734886774176174,0.004815175952216595,0.004044509338311306,-0.03799786933050877,0.0023220378332073233,0.005803956735247394,-0.008492031849492534,0.057477471506336336,0.0013739497109900081,0.00012158109970634271,0.003167641462991192,0.033536655860159754,0.14442020619245197,0.004351548477769578,0.00035958372375810755,0.006933629418365448,-0.0718029030936963,0.4324427748363238,0.07767758780978944,4.677074786413454e-05,0.008556426937329916,0.03535313158837583,0.185356701853447,0.04065696893278829,0.0003143448893659622,0.02557356798528536,0.016406429194565426,0.235861619231975,-0.011285656722459403,2.8866027705036122e-05,0.011459351195016976,0.01415765476453123,0.13618287049098662,-0.06321537085185688,3.473365952365813e-05,0.010765000019596231,-0.009271408747671229,0.03050137408476275,-0.08017794680991937,9.791496641416924e-05,0.01669807906179023,0.02205472346896693,0.14229049843645428,0.010510952572709571,3.580289065920326e-05,0.005626807725815964,0.01250221402095189,0.027731540298427157,0.005978703841436122,9.995173084512474e-05,0.009908019492426767,0.005128663272468915,0.022987034605823787,-0.016391374728240562,0.00010201636195651837,0.0008319829406817459,-0.013878706363815751,0.013931591624245076,-0.052809050956234664,0.0005694083260189371,0.007061582810898056,-0.0181203017047599,0.058516295657253393,0.0072946402226271275,0.00013033906702834892,0.0018671067771071676,-0.05640223745619142,0.20147575274583082,0.05308111370989587,0.0017967709621332906,0.021336694129893675,0.036325226552901525,0.3621971487220868,-0.04832397593388777,2.5789653058051694e-05,0.011251447059862706,0.0614126448080926,0.1930993175260432,0.05443377100766249,0.001039796454196628,0.009103305936967742,-0.01947646578298917,0.15660766800359538,-0.025599654783857638,8.281762517583568e-05,0.008194949281953684,0.008520999923793198,0.011889468853133908,-0.010015448928343494,0.0001691505811391689,0.010239474500634407,0.041212923651560866,0.05587256110754671,0.1029295049752628,0.0004233882090545681,0.00161860226327792,0.006300560385390324,0.027564331162989224,-0.02570064822072284,0.0017716668555855623,0.007403407417452901,0.008719792328282122,0.030243000469734663,0.0056135471318532,9.2506369297785e-05,0.01927821430379051,-0.018444898009362068,0.027109062820856556,-0.10060170270675892,0.0016913712570594485,0.016261978224936885,-0.015499979243024136,0.05460158528265222,0.005314390301704644,0.00011247134819129986,0.010248949248033783,-0.03323290074518253,0.08817271660596958,-0.07423283989051227,0.00015278981496172442,0.02752110388433724,-0.021229713320207056,0.08839357942569558,-0.0014120192747889206,5.861885538746694e-05,0.009121891488359795,0.04186021482978184,0.12654790910848218,0.024636699758508237,0.0031351948485672815,0.003453044640327493,0.00956811042780848,0.05945848520211431,-0.00022471964494886833,8.004844668615594e-05,0.004051480542838405,-0.0019555797396717117,0.011019515517867241,-0.09809001574388941,0.00012869859708661808,0.03557440156567247,0.033852912067429984,0.20163802479480686,0.016456083767105684,7.940946998613018e-05,0.02371487472180974,0.01568942958151774,0.08368260159894465,-0.007119772871962866,4.712152918647064e-05,0.0011758341062296873,0.0343324018042569,0.056410551432455616,-0.026990176065366685,0.0002967380480330646,0.013994190810016545,-0.015312181996977295,0.06928635671441644,0.02851034962091177,5.4954559729130025e-05,0.0016533064286618948,0.0002978113441733505,0.0028274156150958187,0.001068169866647579,2.717583331508769e-05,0.002398093169280064,-0.0013031879288766144,0.0038632526241021542,-0.0007824865228556323,0.00011791333009336981,0.011072106415482489,-0.011652109832799221,0.058666693275367374,-0.05378034088989746,0.0003130696231510402,0.004291662214894177,0.006626497362175992,0.027385353767787873,-0.023968601424503022,0.00013859177910147182,0.011870718170388256,0.0008653979728126461 +2022-04-22,0.02922057873154454,0.22277864084237206,0.02529417703404658,0.00013870810772052472,0.001819923757108205,0.004272208115102323,0.01462518581307117,-0.0009595937298560775,7.009088356179125e-05,0.021757088285893327,0.004088993524284735,0.012956159388953031,-0.019677753033291504,0.00014599478576025768,0.018049658239421975,-0.005166971981068367,0.004165402515583179,-0.007062105745171168,0.00041864604028165025,0.0027401855504885575,-0.024048709625298408,0.06582910610673381,0.010737141981054838,0.00019114880749957904,0.002905131715357786,-0.005742625229925118,0.014547477822812287,-0.020322958450194703,8.619250657962809e-05,0.0021188485757665278,-0.04213798942066619,0.13812798692232028,-0.033340462613901195,8.951214874428273e-05,0.03771956582945327,-0.029752792223287538,0.30888739518979585,0.010278612255202381,3.303133735602362e-05,0.00837425733127997,0.04084993903819484,0.0406173351691086,0.1311564613984983,0.0007755767343053892,0.0013402444139416305,-0.03950044458318048,0.08370483286111885,0.042027701071268846,0.0001650111673022877,0.029199034559748295,-0.007092194430083136,0.0057636521827832835,-0.01376050447536403,0.0006014606602138618,0.008980326181751713,0.0021639972530963668,0.027679607308245844,-0.061856859665430405,2.329804984629774e-05,0.005501083568812833,-0.035767326237550204,0.102421714219321,0.03701163991989852,0.00010373981604228491,0.020327229197176565,-0.0108586894061704,0.05922802876346611,-0.018665796354457947,5.160739656269683e-05,0.004697285526600239,-0.00012113567859108499,0.00010176459777418007,-0.06581201763293379,0.002321658448406596,0.002801056742988076,0.03171975757529113,0.20231721406416514,-0.02957305328222102,0.00012901765119303435,0.02190599937385901,-0.0577990031343733,0.32626899002932136,0.062291183665990325,0.00027431703721678954,0.035942321634699584,0.040381618226768466,0.25092561588919005,0.047669655778060954,4.533145677462797e-05,0.01000532327657369,0.0005945445898518888,0.003159732814143067,-0.0007892879774274473,0.00031011364713195267,0.014058178417685925,0.0013839607896222743,0.016828887710930756,-0.0010685757342820319,3.4127038663121655e-05,0.021577197198430754,0.018215248484246698,0.21780516055988014,0.048583196076347805,2.794143095081826e-05,0.007419813682301079,-0.009877367805506906,0.027296887807027923,-0.052248571011390715,0.00011656035112598649,0.004927205346749615,-0.07360397850936314,0.533254625111378,0.0765648172632435,3.18829894171931e-05,0.015720154373038878,-0.004989957755023684,0.013396409613719533,0.0028794069592402117,8.258208298591887e-05,0.0036714973746858376,0.00702569425219168,0.023042842760871318,-0.05034767250335457,0.00013941252250227658,0.0008019808215512313,0.02775097923958817,0.025119239128855705,-0.0024111596905714294,0.0006314622512649948,0.002304127726570979,-0.006540098861887351,0.025672983968027974,0.0004076170717894643,0.00010722448592808393,0.00453981782965357,0.018481503831289374,0.06651483511310062,0.004104602861286325,0.001783355652014986,0.009998225216193304,0.009797778622811011,0.10963748452450535,-0.008376444306970886,2.2980038665296815e-05,0.03736771898209735,0.008184406393156358,0.022520337950270055,0.0034567841391669003,0.001188183596100546,0.021641212539037898,0.008989544351610243,0.07376919562577253,-0.02141344665111935,8.114995338766426e-05,0.011693892420833536,-0.02050776148191653,0.029502000685433277,0.010412583788044867,0.0001640635766840892,0.002692820602171227,0.03314745691099426,0.042789975163737295,0.04946652292952916,0.00044464364963240987,0.015255564131465987,0.030807783702543175,0.10807381323559515,0.03268439396474461,0.002209481260264291,0.0021811676152160052,-0.004719686460204473,0.01763745343445566,-0.0010802598661496,8.585540448884876e-05,0.000202281167632317,-0.011811144704541263,0.01640701045994098,0.0033424918583057103,0.0017895330647408293,0.008685061435267701,0.022795433716408627,0.07637010166111112,0.008180150504448145,0.00011826072237659421,0.005340163433715568,-0.008875980149804839,0.024446111959934593,0.00148698692254921,0.00014718613526047166,0.0039006527123152616,0.012296717879064358,0.0459344572078189,0.03499566668137293,6.533780575392601e-05,0.004724569978637809,0.00667827791137192,0.020960491475141868,-0.012587900744146409,0.003019820188834803,0.020543203737834522,0.008004614523064708,0.04005217182192712,0.00318156637840958,9.94156880567287e-05,0.007287931471523205,-0.01038556660467167,0.06226310676695839,-0.05659643115420907,0.00012096512892304366,0.002115985167810126,0.02844410517961764,0.18225812785130366,0.020387565718444363,7.381660544677468e-05,0.000782138316847546,-0.014556068808290586,0.06834652690005662,-0.00896122065724257,5.352726388631133e-05,0.009753873525835387,-0.0255948174817521,0.05047013192111721,0.010199709045126841,0.0002472560865033673,0.028093992548694068,0.021924317893663964,0.0994356646999561,0.04579749245915014,5.4827480006821477e-05,0.00014703489412107014,0.00643133021705334,0.06904522910469024,-0.03586710444639813,2.4032470588158755e-05,0.007010969433686927,-0.01995707188305015,0.07322776125407918,0.03770721049835761,9.526426678952785e-05,0.0048247714086457096,-0.0051316973721001365,0.019201959498474832,-0.01742456664064765,0.0004212534383734019,0.0010479779617430375,-0.005282618462872408,0.02605934985806371,-0.015742963722711636,0.00011610674884900943,0.02485710889323916,-0.0011184375048226302 +2022-04-25,-0.024880399679034933,0.15465087114293696,-0.0016329520911396121,0.00017013417746978776,0.009619137599640873,-0.041522742131126916,0.14628600072664857,-0.06843394250113813,6.81073191476072e-05,0.003628104588677329,0.013343463217279658,0.047476137549961966,0.0017557077647042051,0.00013001408019888843,0.0214402285878135,0.02565025453846518,0.02656799992383648,-0.07995894230723702,0.0003258372067729319,0.0054135238715331355,-0.015507908032855122,0.0363845029354754,0.005461110461412925,0.00022301524043684184,0.013554946288458266,0.003914217999691658,0.013871238518142651,-0.03683934149349135,6.161358938988295e-05,0.000876910023448835,0.04972719326838353,0.2017474961343131,0.08033142399044346,7.232286949822379e-05,0.02228148691359135,0.011453665158445316,0.11123915925202121,0.002823837176658284,3.5308998486408736e-05,0.008000279140943926,0.01569313539605491,0.014862351868941156,0.00712326844300772,0.0008142672528934557,0.024691983536509938,0.026518068545786398,0.06272315631200476,-0.07829280405923067,0.0001478345251820259,0.022482909910604407,0.00503138756158426,0.003537114387498508,-0.17115530850009109,0.0006952852644504283,0.0009805535093093515,-0.017162620133180803,0.2080006571615932,0.07982481281433122,2.4589045610203973e-05,0.007093463652509087,0.0205841584077471,0.06091262414406079,-0.0402216607230941,0.00010038685389263142,0.016295449893833726,-0.012309787875089006,0.06573355458066119,0.010137450132674334,5.2713914742260774e-05,0.007095035533450098,-0.011949474085971626,0.010495897805758353,-0.03416894413024279,0.0022205071239001736,0.0063089575681330575,0.038339829982593804,0.2649807043979706,-0.022217718124661813,0.0001190660757697048,0.01349282708697887,-0.029675879494099514,0.16288008544320892,0.012563258021078279,0.00028212647477422346,0.020093176270518556,-0.011903000758192152,0.06319516723529481,3.6498344310115604e-05,5.3055883362056835e-05,0.009763867297093451,-0.029689271177889002,0.13789901863319817,0.008046882017203636,0.0003548339521663323,0.016124188377074855,-0.004910801308073861,0.06338608223987666,-0.04868990172826119,3.215057054587342e-05,0.02148080708465962,0.006671648645137972,0.07549809066576746,-0.019243290721142416,2.95242522457459e-05,0.00370713788933785,-0.04541061839401998,0.1341876749635799,0.013932300521563695,0.00010901030226321302,0.004160399875214361,0.045964418549473876,0.3280636999175291,0.02376498744047697,3.2363536160589974e-05,0.001588626983048322,-0.0098321917506894,0.023493042126896305,0.006041110247281629,9.278728442846249e-05,0.0007556525470608002,0.0016616200565625293,0.005967874160242943,-0.19361313449386336,0.00012730945658204852,0.004664182116547764,-0.016386041894038157,0.01708705121933685,0.013209915919275091,0.000548128647875545,0.007410171293386511,0.001469557482236265,0.005290246707975144,-0.02667143412621075,0.00011692211475366542,0.014959648821885232,0.01822093008091373,0.053951184743092004,-0.00810732812921703,0.002167647854702755,0.0011052273652934369,0.008691370825842894,0.08079246525946511,-0.07010151515998939,2.7663021548013525e-05,0.004281493086525753,0.026151826674081613,0.08951812489826419,-0.013265106382389287,0.0009551296397468437,0.009974888091101697,0.025108043693094922,0.18451288142616884,-0.016207799051650127,9.061744814523695e-05,0.009120142583588509,0.031050347814271614,0.043930119789183784,0.06199074444509859,0.00016682051904207446,0.007940386945615278,0.007943557763227648,0.01232768313092429,-0.005390615327001911,0.00036986012231616367,0.002532741395030444,0.007942364567621468,0.03267456413395566,-0.0381739831736161,0.001884041028839255,0.02742505056336378,0.037422694397954565,0.11564436568526322,0.09481545993898303,0.00010382476221630922,0.0027454785152358184,-0.05746752992867799,0.08262762947055295,0.0633733968920448,0.00172891813267984,0.017225742047011366,0.028775243864345313,0.11120574759918464,0.008745297239949166,0.00010251981535446503,0.0018319087640450533,0.0030963693284560465,0.007385141925369574,-0.005920210677244698,0.00016996296043174052,0.002352559265645161,0.02188666605869189,0.09626401337921649,-0.03875620642334879,5.5491897139071536e-05,0.0035240969638955706,-0.011170039885083291,0.03361385841453694,-0.01726057885067428,0.00314959284635624,0.010016416726678651,-0.04695628802778661,0.2548323010525817,0.09483125687689625,9.165999998208681e-05,0.015125506509444532,0.005178977750354662,0.03270237839368226,-0.038050656730778794,0.00011484854306899534,0.0033415494778061363,0.014388290764255443,0.08147626078668194,-0.011385135675859283,8.352698681429377e-05,0.012536602917838983,-0.03495045063440019,0.1315263512775353,-0.027017432088360254,6.678630281154589e-05,0.026603914068088735,-0.011010520504581674,0.01978330316050507,-0.014235924549352448,0.0002713553808784051,0.03696399742397915,0.009583284700196286,0.036205032922062425,-0.0018392654361379227,6.582029425496519e-05,0.004618104794825859,0.005776283548614619,0.058623408217170166,-0.0018980151972653825,2.542194212944538e-05,0.005642111788919768,-0.009515768986765689,0.025772971503540312,0.00639752192343954,0.0001290590194504826,0.00791002011118022,-0.02509585882538288,0.12929958298730918,0.008731314233795173,0.00030593763795319764,0.0009059409384984441,0.030852420824645205,0.17514101164635928,-0.015239040547199807,0.00010089582330883681,0.0017097302688576692,0.0015589267299412775 +2022-04-26,0.00808459808392516,0.05309673338454298,-0.02896348452887779,0.00016101903331750808,0.0067774551513999515,0.03136326960489117,0.09741752921002735,-0.1556653315290863,7.724933464907568e-05,0.022065530301015664,-0.013628743152891054,0.045286480015025464,-0.08897427365334001,0.00013921449163839327,0.0034316018346795293,0.017640895457073105,0.020460649713760253,0.003201786773992612,0.0002909839682868194,0.014652899215273907,-0.0049813624929158674,0.012681703663853182,-0.006218500337699212,0.00020552673259586202,0.010020474674523654,-0.022525442900970877,0.06061858731705549,0.06071522978252395,8.113612599410449e-05,0.004813329099040189,0.06870076848317073,0.21895453110048207,0.0865518393409702,9.206562658796647e-05,0.005077305804629501,-0.006488275350318304,0.06097681745420391,-0.036746483545514914,3.648909844176996e-05,0.00409198198019444,0.044576086407280516,0.03910424875894709,-0.002312037275122994,0.0008790686177210066,0.0014761029557929907,0.018681742848332156,0.04821642336077335,-0.06984991863866034,0.00013548283769973272,0.023371372953195184,0.0018419390310040363,0.0012658940396999758,-0.11984064527467801,0.0007112172048150472,0.007508220886901057,0.0047236869062417235,0.06097912496646482,-0.02233327477389374,2.3084618700280473e-05,0.001903299271775069,-0.050380185619027525,0.14813314595273333,-0.026695873479764834,0.00010103190803852208,0.008953084202244332,-0.006781853809400844,0.045532886089675664,-0.13609325019851462,4.192615768040771e-05,0.0009257835973591243,-0.006985310237219938,0.005004222450101905,-0.04944077379177864,0.0027225261807238763,0.01590550969280876,0.008041990272413167,0.04961328722277932,0.00012246242999798383,0.00013338827254317527,0.02524443199764196,-0.02654394019790413,0.15307603861945007,-0.004008892552531319,0.0002685136742529557,0.00958847895295244,0.03258177255664393,0.1759365710639633,0.011568767223506957,5.216503945359878e-05,0.010037510363945948,0.08761150597368492,0.4677019949599264,0.11435116202710308,0.0003087299273046475,0.008674398429869383,0.09452952614645375,1.7517244357594741,0.12415078886019633,2.2394012893931907e-05,0.008639122946670916,0.0024231092018352223,0.02379506869743148,-0.020166790658319667,3.40226183098285e-05,0.002790020251877959,-0.01464781183970017,0.04312116464173311,-0.0617796833638535,0.00010942209520090994,0.02110261533309439,-0.014455038851999587,0.10508477192909578,-0.011454527867270012,3.1773997233303587e-05,0.015349461015780377,-0.002792392076572529,0.008501034908868381,-0.0108045138249424,7.282524925651497e-05,0.009476062367372359,0.00028379221170478716,0.001067059780229993,-0.047484906228180614,0.00012160748800818743,0.0008669781960025859,0.041392114765983576,0.03812274082226438,-0.028591717940299625,0.0006205961261890532,0.023712496594214417,-0.0002656511147369414,0.0008426771849861595,-0.039646594871362406,0.00013268945671974407,0.0073701479287294775,-0.029623087031399948,0.08928476814097994,-0.014455503272635674,0.0021294728828016784,0.0063307328224665145,0.010070081514501658,0.11058277157601626,-0.016516633602933643,2.3416808844201764e-05,0.0028294195386875543,0.026136397157682404,0.06993694562291226,-0.02473266382618035,0.001221828719997056,0.0061833239639881,-0.00992801547167612,0.07700289943383004,0.005744565667739531,8.585804796642442e-05,0.013160504236773207,-0.0006477920171438921,0.001097298631879793,0.001076151788798958,0.00013933369051846655,0.006489457701890703,-0.03060680236939921,0.04847448569950624,0.04245626838104374,0.00036241708510134743,0.01725893327528795,-0.0008937770327533099,0.0034220046624431713,0.000532132180106939,0.002024412147846785,0.005526155330772169,-0.00357776669752147,0.013105432274766354,-0.0010482902679719438,8.758929630238786e-05,0.009944249328842665,-0.047998832933053584,0.07705202692980372,0.0005748034136427772,0.0015485448988710904,0.014003955515299,-0.03130373297848316,0.10585850617062464,0.014932675655404097,0.00011716189994167805,0.012618736136760096,0.024414956349436252,0.06540958267013168,-0.018212029498322322,0.000151312549906477,0.013966410035908766,0.016622782374016296,0.06971902641669521,-0.01372413599618964,5.8192408223644234e-05,0.00786791221211274,0.009154360446603999,0.026503883496939322,-0.04231122130217717,0.0032736824680249417,0.028006784880943318,0.01800387760460369,0.08504440764049469,0.017675153088750496,0.00010530787809521163,0.004769102721980551,0.02122609552064964,0.12668829501378515,0.03614891783193103,0.00012150507204852716,0.011132488807425896,-0.010081394234637798,0.06725518859068744,-0.0012253568243620536,7.08995538215393e-05,0.0036976457765890754,-0.012883648628114497,0.050244941916859305,-0.09267818566855542,6.444569599487683e-05,0.007912985697832078,0.013308409044072815,0.025654669161839123,-0.006546311762892781,0.00025292346120219287,0.03380145731716976,0.024993095283514972,0.10057360049509985,0.04187189584825231,6.179458540567021e-05,0.002569260240961754,-0.030711687532323582,0.31702018353340866,0.0624131675117098,2.4994707161994847e-05,0.011866496979988553,-0.010036128346147937,0.028849667405285113,0.005207436275377446,0.00012160021993175471,0.008293219126264142,0.019366517184556932,0.07528652616459364,0.026780575070684657,0.0004054732778030522,0.0016474086719285757,-0.04303528192003712,0.2452901093399119,-0.002875931914167785,0.00010048851110392424,0.018406317524451345,0.004715188930835573 +2022-04-27,-0.020924875013162838,0.16425476302234313,-0.01815665366388708,0.0001347198170889151,0.022020995536510886,-0.002968297393434212,0.009378001071785602,-0.019916705626624707,7.59464816537396e-05,0.006511969089549384,-0.0413917521763925,0.14488128185423046,0.05034835483991898,0.00013215960618457762,0.00019084763037052798,0.0028081789983007152,0.0026279993202311044,-0.02817793016678393,0.0003606346027684578,0.01114240785390469,0.017105918738618196,0.037994677441111034,-0.014713456193952463,0.00023557077732709177,0.002757200166287206,-0.006235906979035489,0.015342741647111025,-0.02165261229088336,8.874489826951033e-05,0.006977504044267074,0.01302744151557404,0.048730089858112266,0.0029684231352892954,7.844256299096862e-05,0.03039675126065742,-0.0035065461671004413,0.030933124291022934,-0.0020109251747336358,3.887356665822594e-05,0.010376584725901195,-0.017145750437556413,0.013420436188164468,0.04329666543301856,0.0009852232528780942,0.0023345931416934936,-0.01937042389002775,0.03708944077681673,0.008780380838006314,0.0001826210038889886,0.006598908431745869,0.021964764043095573,0.01646935027720913,0.10945014655948684,0.000651890172683705,0.008711971627842492,0.017000895903498542,0.2192194429778874,-0.037150573865133985,2.3110829187896626e-05,0.0008722891427305809,-0.000828945297425813,0.002028852765428025,-0.031266875931853635,0.00012137419953509845,0.00682635786564916,0.02657387676642824,0.15871468469595582,0.08041965004316835,4.713023707293598e-05,0.004268222725112938,-0.04568774819387781,0.040333010384280055,0.11006124368286115,0.0022093376214493156,0.006514936517956736,0.08991413781063039,0.6731405339355865,0.04815311421071435,0.00010991939998737254,0.010323006474428135,0.039391683857706423,0.2570279354287766,0.03260255479886571,0.00023731896735691317,0.009462781321184126,0.008778998233343856,0.0535028521930989,-0.01977651700407842,4.6219898040031396e-05,0.015002138559360069,0.0003350838971455314,0.0021056523347930053,-0.009981490122437478,0.00026227306950961295,0.00018625922203299337,0.02448067494299701,0.30602508663810013,-0.01481470833400335,3.319682805735033e-05,0.034003613837877394,0.009787693903422764,0.10617035067081074,0.00565338296657249,3.080057585236463e-05,0.003084934434744891,-0.0064591004895879125,0.01926330939578716,5.4061788486277283e-05,0.00010800998282406812,0.008091731667969209,0.03111951809249553,0.19232639268136498,-0.024520944513705678,3.737544336390298e-05,0.0005390783226883226,-0.013392420511506948,0.04275518151255321,-0.06273815850204921,6.944607502054137e-05,0.0015627881311036226,0.005479146914475552,0.02283822280083336,0.002764495034412799,0.00010969813286404039,0.0014268767675455968,0.006834224977232519,0.0060256642153396775,-0.013619194233135467,0.000648275943750728,0.0573867989452005,-0.007870888080968886,0.026501070284393368,-0.005309078741361075,0.00012501045394506993,0.022352589267823967,0.030462780087451492,0.11122061138265285,-0.03963589236891984,0.0017579375055995273,0.021667418517239787,0.0010935672800392634,0.011035840128437701,-0.0005443215390988235,2.5481342325977073e-05,0.012458802565515981,-0.0030768933887439227,0.010459419775523756,0.015480466411346578,0.0009617808491501248,0.015977892794566476,-0.0037836368294393245,0.024820856976666517,-0.004208354669178183,0.00010151221760532784,0.00763761058701336,0.033405388769789685,0.05044746792469138,0.04711465475542369,0.00015628688809748062,0.013254796936387207,0.020031976870754496,0.030446007446663512,0.01731268047409536,0.00037765685715124124,0.00433119301644945,-0.05685271605034184,0.20741824320946636,0.13265290965125212,0.0021244895874741516,0.03098887148532382,-0.020700945606047343,0.08612753276829775,-0.035152896337836435,7.711494410494097e-05,0.017613941525142313,0.07686649270709041,0.10650224042208688,0.10793361495048079,0.0017941366310513839,0.02556539714843147,0.0418199117234335,0.11934459081862538,0.031221651868792444,0.0001388341828496972,0.013608265681599663,0.009692457272609019,0.022204144812352607,-0.02568627777264723,0.00017695393317565688,0.012834806030732093,0.01451157460774675,0.04957569271132073,0.018827145395743265,7.144299833007262e-05,0.003554683644945164,0.021314760136349257,0.07041123752827855,-0.18398868965619813,0.002869171645259998,0.013534887587773561,-0.023021052232548717,0.13553004949329317,0.004911716697175692,8.449483145775943e-05,0.012945601100568754,-0.015333722325743288,0.08623821097350297,0.0058721315213988165,0.000128946227401937,0.006495101766076053,-0.013431901445563103,0.07468867400176178,0.006832177993496212,8.506118842381484e-05,0.0052172731917874285,-0.010517536833428934,0.042050118697265604,-0.02718539927413005,6.286287082032481e-05,0.007593070015029762,0.02817166582938078,0.06087939439826654,0.0021736251619428144,0.00022561688491441097,0.007033402868187188,0.010982338833146517,0.04248724970442939,-0.04519834573205186,6.427625949607179e-05,0.004383046501675614,0.0040302122772147226,0.044675123644462696,-0.039823277878286156,2.3275201205867912e-05,0.011490467015437357,0.0027178971368915896,0.007598073180987822,-0.008911339995885186,0.0001250369894579207,0.01020031230253314,-0.012092992157372588,0.04968895533917429,0.005111989942265937,0.00038362056082367097,0.0013109892750896648,-0.03228075140258121,0.12593804182284965,0.02401263660230633,0.0001468109655621039,0.009022569208488318,0.004617096382804535 +2022-04-28,-0.015274336130965856,0.09314293654435887,-0.018648999173304304,0.0001734199279860598,0.025690240274496193,0.0334296115019585,0.10021276935321481,-0.0030725279452365225,8.004215858069947e-05,0.015645043077136527,-0.03553784098865547,0.12006816195929414,-5.358256976604715e-05,0.0001369179480732727,0.0051469349227750705,-0.027287973267468783,0.02336228986454475,0.08312867867614904,0.0003942064529499251,0.0007900768558947702,-0.007765218417848697,0.01981742213739352,-0.013621855323244012,0.0002050238042792139,0.007354836243268392,0.0043122894204058,0.011169426637518461,-0.015905226301095227,8.429925971009868e-05,0.0019361703054099942,0.011455581031283893,0.041603352004605916,-0.005425178280021513,8.079391507452001e-05,0.013642727570770563,-0.03592186572804737,0.36275548013737463,-0.05236660588281724,3.39581105350406e-05,0.023181188028433462,0.0062158041630939595,0.005596648088327749,-0.00011621032327900933,0.0008564738545712013,0.0060269314802587895,-0.021157894108913985,0.04787950074875502,-0.0025330965645585096,0.00015452000458881463,0.036745208671624674,0.003710827059290223,0.0029642343477092876,0.00916558533735539,0.0006119029370451738,0.012256698327228763,-0.008452143126746173,0.11095809527013828,0.009314943044314693,2.270024994926495e-05,0.004286831670700789,0.002036394953303264,0.005678107817602155,-0.0013158360875974177,0.00010653919602632332,0.00067141321245743,-0.01220930206391819,0.060190491873748135,0.02327873784087633,5.709850856792509e-05,0.0006599889793877568,-0.03912518487351071,0.03302094564389179,0.056456204086198045,0.0023109463806553457,0.006378187523844189,-0.026901989347899297,0.16348613073681625,-0.026852082937791028,0.00013541151241255878,0.01621152200420557,0.04446257300097268,0.26286026320474737,0.031666339912678546,0.0002619255621877057,0.0012803768893186332,0.01756917744321004,0.09310447505483918,-0.009518264919556532,5.315471932833214e-05,0.0075022822531918484,-0.026849729231039954,0.16487272076494097,0.0018162383322676801,0.00026839715808086646,0.007624265900209684,-0.04003110318190071,0.539899752354087,-0.00487656670091653,3.076909067239467e-05,0.02936807006425331,0.01736165280747567,0.1704812338306357,0.027872920402726178,3.40248482013584e-05,0.006174672106424955,0.00043185345369832685,0.001262343114404011,-0.021346683774846,0.0001102000362817072,0.022881747714109325,-0.024944976226404778,0.203336289948652,-0.05695842485317335,2.8337437499251667e-05,0.001256617128967822,-0.01869583523406121,0.055448401609870024,0.0328890316987388,7.475379114805056e-05,0.00977413352004727,0.0026540349379150794,0.010836700428293778,-0.00022436291565105916,0.00011198456399475223,0.003665411737121916,0.08018759901374758,0.0771497887799938,0.09199637075253905,0.0005940842379476005,0.007195740669674622,-0.004304086969403234,0.017020973424745067,-7.523926762640623e-05,0.00010643455620421974,0.00653789033104198,0.010492295951076437,0.037219759162714576,-0.09817577706899439,0.0018093231839137742,0.025369075648353355,0.034233992964806816,0.3688022538243027,0.0002871351689317535,2.3869657415104205e-05,0.021753394720834318,0.004633692454333418,0.014696924459197677,-0.008887489804911544,0.0010307943119795358,0.0062120663414183715,0.02352624542636191,0.1847152216333943,-0.039294409633227015,8.48155692310853e-05,0.004548726107753048,-0.005832770246346795,0.009524549383618942,0.00046744905665687395,0.00014453592900148416,0.00022171309369036721,-0.022671456187377436,0.03769381305376315,0.019033981842212822,0.0003452337592056026,0.0017058377599513171,0.02956600374912729,0.1393597234392801,0.05581029376208601,0.0016443932787827485,0.010206506798010004,0.016832985739778317,0.07147836685055826,-0.025917431632289694,7.555738256201184e-05,0.017178100704610663,0.0066495539612015375,0.00888051538839463,-0.01594445369436378,0.0018613649651702453,0.031997274313857335,0.010040340206255683,0.03905338585586993,-0.003961640666970736,0.00010186049276362296,0.021809121801202827,0.011594719952397229,0.030911998982571996,0.002718800185666413,0.00015205249445194937,0.012504464422784184,-0.008265663911606188,0.03736181200614553,-0.028808563157925654,5.399626706793387e-05,0.01014658340790424,-0.050964149185350596,0.15835184266824423,0.04767849596327881,0.00305042052781112,0.008828356165690594,0.013318408983012887,0.06979849172523776,-0.0313402466148123,9.491762868664482e-05,0.007062344676402401,-0.0045443028983530856,0.02672474370446428,-0.02233900093117277,0.00012331460235673943,0.003274841565927989,-0.011332615034216143,0.07388187862388818,-0.012810533414054604,7.25505827194997e-05,0.008705572642561011,0.002345420668969406,0.011525390786539486,-0.03377775644824858,5.1146095261780365e-05,0.023127862609055014,0.002412202815263398,0.004343383711118669,-0.09323347963248063,0.0002707790222807748,0.028331961272051624,0.016982074144493105,0.0805188613766735,0.020189051702425954,5.2445409853617276e-05,0.004401573785566253,0.028861461553879218,0.3200110219228444,0.03738691362058825,2.326937233849914e-05,0.00721185368700658,-0.003435263563396529,0.011057326722878557,-0.008690508652084641,0.00010859726435611044,0.011627253980104238,0.0021116092207637215,0.009306831572543545,-0.015521138739406371,0.00035763471318968245,0.0005665353197308329,-0.06776739109803355,0.3375901217511465,0.08827744856620857,0.0001149748448798183,0.018649153446456252,-0.0024424752110774007 +2022-04-29,0.03451723785755146,0.18996446799967856,0.011594646810981312,0.00019215436016592878,0.01964885937995863,-0.005755314131311122,0.02004012264954726,-0.06493583558587977,6.890951357537137e-05,0.00738783402775023,-0.008611285116740829,0.026130436801542062,-0.023226271287184602,0.00015244686712237435,0.016555479858354656,-0.01407112250905534,0.015068874221124079,0.014761862063624467,0.00031514889785662803,0.009049856780222318,0.0015402034046453161,0.003963156656808675,0.0007304533559371356,0.00020334552144230344,0.0015580316931542587,0.0020259849731082856,0.005339874351015881,0.003964065353721169,8.284225682090878e-05,0.007088480019930214,0.0018929174914687308,0.007761379650655392,-5.70576466629968e-05,7.156202344421519e-05,0.004457637995870119,-0.012657156421475255,0.12003016148477694,0.0001245019947959873,3.6161328011290074e-05,0.014423524977648618,0.0023999115741316587,0.0021720798097952685,-0.023146962230000907,0.0008520483664340172,0.0012551930393446182,0.013154186183690185,0.031752028588282605,-0.05632915136942124,0.0001448619723606651,0.00886786479005728,0.01418937701399703,0.009814537184584325,-0.013082776324027441,0.0007066719637367192,0.0007153319663117676,-0.021647769127672425,0.271286816936154,0.10135846439448604,2.377974794912931e-05,0.0021257583233972033,-0.03679606071274542,0.08078621493800255,0.05727043020515092,0.00013530539203246571,0.014878732227257763,0.0076591495688095295,0.04502085738567478,-0.0010536157129779383,4.7888210373850616e-05,0.000308862119735663,-0.03775787927880695,0.033987717125055966,0.03918079301504997,0.0021667488320404613,0.004363932978889511,-0.017869958458484367,0.1378427237730226,-0.13581308898412994,0.00010668216103490162,0.04029865751682398,-0.026224197257813657,0.16459299314847936,-0.039627704188653,0.00024671700930342986,0.0159417227511507,0.028404218005530234,0.15604452622279077,0.016727027457115462,5.127377039616144e-05,0.0028590639414307123,0.06808078938628102,0.34720669070401405,0.07566669366224617,0.0003231642452835788,0.015666501653879922,0.011938354512983475,0.14519078036162048,-0.014236312315858202,3.412209305800406e-05,0.007221040761666903,0.0018763260146696312,0.020096635251971952,-0.03479228198684955,3.11936833140279e-05,0.0021775304375362555,0.019574717403694812,0.05377615698961024,-0.0589045453658332,0.00011725422318303644,0.00868544594461046,-0.0285196203677239,0.20454851372558233,0.007037618014490151,3.220622243445211e-05,0.003067674392687768,-0.0008394839363122249,0.002407079671560268,-0.0001834862339580128,7.732132852084253e-05,0.020487772289320673,-0.007696641246092888,0.03286895853251838,0.04462848719647605,0.0001070690368428135,0.0074800336489189555,0.013043552150322692,0.011764464623060421,-0.0007774585068105075,0.000633722712152444,0.015285741394422347,0.026574871174859342,0.08499305992434049,0.029221273575791355,0.00013160540074414148,0.02581206638888891,-0.017988226168552574,0.07179246623517951,-0.008625696749798543,0.0016081577257734073,0.002606649569214522,-0.02577751041748237,0.24944684030366251,0.024255293112721055,2.6573279723190077e-05,0.01079376636597875,-0.004748664128674883,0.013713326715236888,0.015376058100168477,0.001132139387489043,0.005409050384817821,-0.034469592089844146,0.28662958828967156,-0.06918624013582444,8.008307993149832e-05,0.004278902980279637,-0.005383132271597135,0.00909334625646793,-0.003727070854375573,0.00013971939905169117,0.011758614098335719,-0.03251986308803457,0.04487847724234038,0.03182889598377237,0.0004159245062468192,0.004400587552151024,-0.023948091157182907,0.11508046048671756,0.004199093620129567,0.001612945349679725,0.011311825069500141,-0.0015762931911006376,0.0057620722680096405,-0.002506515685399066,8.777051954316898e-05,0.007159558542707875,0.01017982296274298,0.014403868227022491,-0.004683487432098183,0.0017568645407965747,0.00824979939719065,-0.0035539932564550617,0.013223511913022732,-0.10196920924209762,0.00010648436002376887,0.006277269917489875,0.05971799070502787,0.13672628089017527,0.09628214509663297,0.00017705718790408793,0.0044270671850446105,0.02640424297856675,0.1114429582012934,0.0640072828923473,5.7827579442384896e-05,0.013441145229010316,-0.03262379726099152,0.10415257714952396,0.00766088191150351,0.002968810975491835,0.01356851795488032,0.009586139598333996,0.03890588477566734,-0.0008239735204370582,0.00012256572079148758,0.015730295142098727,-0.016740963159100734,0.09410315023753921,0.00015339218929417305,0.0001290140660363059,0.008238818838564648,-0.006984940748975114,0.035697661213433235,-0.04027033273912595,9.254898531962202e-05,0.034654979537615184,0.01072741038197549,0.051025380589259595,-0.007917727806275627,5.283917610345479e-05,0.01148961462113319,-0.047814517682310195,0.08366022564605684,0.020949219076177746,0.0002786571184026811,0.027356476380649673,0.029779319461942646,0.10908368543841476,0.07660808665723103,6.788429971941353e-05,0.006755531479522387,-0.01682758754836279,0.19688415998257927,0.019290061337269584,2.205171480723689e-05,0.001744827939531159,-0.007964853170621615,0.027267298731634883,-0.007141157757660737,0.00010210443877313505,0.007430577328321824,-0.005356289963122201,0.02315136329373499,-0.008896042075484152,0.0003646829677927271,0.009852390137328783,-0.026928380570009756,0.11676956967175735,-0.007933061998769335,0.00013208465090109334,0.006535179976384718,-0.002197238874499737 +2022-05-02,-0.012277670964170491,0.07643084551514634,-0.011965616012040686,0.00016987673691740832,0.013394185301613718,-0.003884249046001753,0.01160211218197453,0.0010627923674866285,8.03305117997176e-05,0.010450039714231169,-0.03809067077108883,0.12057699778208313,0.018922315583326615,0.0001461340292063576,0.006845946614638823,-0.018344787587046985,0.019443883757678145,0.030730327467063674,0.00031841793952856236,0.010932887075582046,0.054937320515284334,0.11071432441810225,0.03886780171881231,0.0002596339206482058,0.011219589325321681,0.005007137642013157,0.012316926119914643,0.005407238849190992,8.876340086343696e-05,0.0009610355180762337,-0.004812062488905704,0.016768284461400634,-0.02272301717270959,8.420395311482622e-05,0.014580333625646398,-0.010063473996894817,0.0808240814879159,-0.0007195675104518633,4.2697826228724816e-05,0.014537750755105579,0.014787364750437657,0.011797459542031947,0.0032905937007831633,0.0009666006335156366,0.002643377915294909,0.010941016847853957,0.02336676833748244,-0.007682240531975215,0.00016372723224594544,0.015184519525636606,-0.02255222359288612,0.0141380377851772,0.06180474334577323,0.0007796947122234915,0.002611400230301141,0.007651093576955833,0.1048478302929472,-0.02178026089141694,2.174637412707572e-05,0.0020164847465627776,-0.0024409885565723267,0.0071591925734665,-0.0034461825693140706,0.0001012867734710597,0.003680300626978714,-0.0033485753855297886,0.018494315950643728,-0.057544468143532125,5.096636101310339e-05,0.002646436389752214,-0.03698478938180485,0.028448219140037468,0.0365564709108118,0.002535660105087531,0.0042290495136420815,-0.01602070487005532,0.10914153527182359,-0.03806212250557824,0.00012079352892682918,0.010410848973900379,-0.04124408731999942,0.2192698363737104,0.03692211269151297,0.0002912668352737185,0.0018492549896330995,-0.00859893986177309,0.05113753315162722,-0.023501073128067474,4.7365932700594206e-05,0.0124581989516281,-0.05476161907162848,0.2762318333638406,0.03250575727130166,0.00032673026236902897,0.021953391825858093,0.019248159138986427,0.22365461209610815,-0.1212501218601708,3.5714253218915675e-05,0.008150481144386245,0.014272144091879437,0.13833176856095392,-0.13488480403905792,3.447061258164079e-05,0.007988267143977228,-0.0254839409219013,0.06716511329358446,-0.08443320115120698,0.00012222093274423217,0.010900100762955006,-0.014407501884986816,0.12187412068588271,0.00044482731079300354,2.7306721805210602e-05,0.02877253591096736,-0.03953968564528797,0.11357756445322373,0.11444667912690082,7.71823580785502e-05,0.012856469102331146,0.010920053185550532,0.04272349827362819,-0.2343496389125187,0.00011687094156653166,0.0029695395985953354,-0.032433830524815854,0.034724937817358574,0.004657628194066904,0.0005338660794882737,0.025049411038506227,0.023917188872863527,0.09081385331471771,-0.004119629153467927,0.0001108521290385623,0.0007392846745158841,0.017227182834313216,0.0595096151678448,-0.012429168769347198,0.001858002507832719,0.008295745051081344,-0.030408370432484018,0.2946353133312798,0.013641510278213894,2.6539366058870354e-05,0.0008397999938795273,-0.042170000537211365,0.13476218120694172,0.04619627553279486,0.0010230735213675574,0.022025816413218772,0.02524452275608055,0.2095093764419581,0.022512743075828595,8.023970878083538e-05,0.003291108811050464,0.014287838057423532,0.021561038532925608,0.015518255785221773,0.00015640197384582266,0.011564657207422675,0.0007626294930263754,0.001136876623868377,-0.0014455418562782489,0.0003850385150169581,0.00962617150348808,-0.014113915017439057,0.061347724057750116,0.002101301093119346,0.0017831972423370938,0.03813883826167789,0.0015816588277543077,0.006232660715178879,-0.002814384085651241,8.1419736777967e-05,0.0012774134666449712,-0.008852396261497489,0.010618749930927079,-0.005694704704899402,0.002072357344141045,0.034849685495290245,-0.02072849286006463,0.0681040346894435,-0.005329045484033911,0.00012058989616376079,0.036093660065403044,-0.054032382212134945,0.14694516586624634,0.07391257264701044,0.00014905933798286337,0.006456819198172974,-0.006115435137504447,0.03036481895656605,-0.011133372817916473,4.91553274140022e-05,0.006985018614841682,-0.029680057617509352,0.09411045899719958,-0.002745615443602816,0.0029891307072977312,0.014366574583967905,-0.018235917566134803,0.08935690702098036,0.0051221971257334855,0.0001015173010991358,0.004919692178177677,-0.039676986673112924,0.19403137571341217,0.05668481544811608,0.00014829533966738664,0.020542449483457435,-0.0011343474055576469,0.006906391854090326,-0.035171083582394014,7.768614393568127e-05,0.0042254470031273025,0.04214599726092515,0.18291345488676836,-0.015341875644556687,5.791060161115424e-05,0.014237358156499121,-0.03583287522270749,0.06205026819660722,0.025697438314675684,0.00028155768671669673,0.0016156196335750878,-0.017794965697361,0.08227309981151366,0.05770013455146364,5.378407086695104e-05,0.0004943955160446874,-0.01664960495926963,0.20722558780060085,0.01650659357411552,2.0729643762849856e-05,0.0010752355629079402,-0.007349090784912806,0.025544697667828378,0.001634974390182065,0.00010056383108508585,0.006768638709418876,0.014410712048375556,0.0655491503917887,-0.011340628003388998,0.00034653439305110096,0.0036123682691177068,-0.03442175693253502,0.1911781664295306,-0.00761296525630967,0.00010312561167043,0.014665965653452828,-0.009634321696667707 +2022-05-03,0.010999192894359444,0.06562199471653812,0.0012532544373635335,0.0001772547878448628,0.011799585572837935,-0.034891267472994515,0.13471299392051667,-0.005439944794090117,6.214665878533298e-05,0.007070213158208763,0.008460754775692754,0.03156804059162989,0.0037811819869944885,0.00012398201372354438,0.004653850867013521,0.0008949354968687743,0.0009170938966610166,-0.06862674341424432,0.00032934099061586474,0.006333392860116741,-0.023115843278274446,0.05299459365059029,0.01518025692973124,0.00022823169058039361,0.025345403887889497,-0.013835632030865762,0.03670737672178915,-0.012494319083674914,8.229858988102906e-05,0.007624798662590823,0.01074112329243276,0.043583754751666905,-0.0015654570754194852,7.23127561666173e-05,0.020457197609466418,0.03394704826285995,0.26941690996217266,-0.07355108892302013,4.320915582072995e-05,0.015305909458600839,0.007709201478838884,0.0062178147010524204,-0.023859351184405478,0.0009561288161447538,0.010101060061977049,-0.019081857481298592,0.04349120947490101,0.007656168516981351,0.00015341967162079873,0.000352332296181067,0.0029166458087524125,0.0017630279799778108,-0.003692598372134087,0.0008086281314789349,0.002236997231331163,-0.020471297497578766,0.2741872783284407,0.05599350557638225,2.224953087683494e-05,0.005445358442734522,0.02491698737409957,0.060358603384493795,0.0029308594413012773,0.0001226330099152435,0.022066348893454126,-0.015250083833687603,0.0859286442576238,0.040016564145678536,4.9956970013223933e-05,0.0019278851807552687,-0.007027485285213831,0.006671319241527428,-0.08993313440422379,0.002054523882967292,0.01953271592833165,0.04393396546863233,0.2603054769468662,0.0006149369630073261,0.00013888943338290414,0.0014289704705383692,-0.07665038404607472,0.4127660319662235,0.09158373604248765,0.00028755347261733623,0.009688090507429152,-0.03718277859484423,0.2897099132665819,-0.0015476160962288766,3.615259204378599e-05,0.03328308863321923,-0.029439786299986608,0.12755567522497388,0.011732750462960163,0.0003803835038578354,0.009800163796743842,-0.027201088012165024,0.3583186745198745,0.023272932921943518,3.1502648250127396e-05,0.014154030182496578,-0.04487610869000868,0.3873666782469575,0.45495145170548673,3.870567457091553e-05,0.0012058122710097408,0.025936527572355744,0.06755052128215523,-0.04109804812856192,0.00012368182433350597,0.013463815785146683,-0.01601987334203003,0.10881070124404336,-0.008024986534795742,3.400790235650468e-05,0.00893033895934161,0.006644410742299157,0.019261767521145275,-0.006774259233619096,7.647821045343168e-05,0.00969368969650847,-0.006638420741682766,0.023207220946746092,0.015901468294787214,0.00013079472618640034,0.00014158209897853014,0.008486597846708493,0.008383659057033118,-0.002088426973497605,0.0005785961984711294,0.01835606860331524,0.02122637700170177,0.08541012717606182,-0.005533480879563186,0.00010460501690788935,0.011997474884729914,0.002242276740924706,0.006408575605051876,-0.005067170109592101,0.0022456748460157523,0.02857526291916007,-0.012830566781349377,0.13486365235168268,-0.053736449967937264,2.4464318364454538e-05,0.006518446174584488,-0.005459030152504783,0.015997281390685576,0.007361314887122364,0.0011156823915474691,0.010545383644342599,-0.023643875102291635,0.1733337196887435,0.03804253410243549,9.083667792460307e-05,0.007253575291245061,0.032630314356780044,0.04683648607819649,0.0314699536232589,0.00016443048564719203,0.007057744835260727,0.0013916494753623667,0.0019376586400998508,-0.001333138939265997,0.000412246051641192,0.022291127814539704,-0.053155470318941245,0.17918621999770465,0.04910942492256326,0.002299289723853275,0.025322036601239665,0.006098989043325666,0.018119656212657508,-0.013174976607577391,0.00010799366249908488,0.005215721058914213,0.010161339335581578,0.015555226033283062,-0.017924282136665713,0.0016238721005588325,0.015964996865785792,-0.0011491937304632925,0.0032223187654625636,-0.01052324787100524,0.00014129955172132336,0.00838469699210846,0.01593708618096684,0.04745843593221638,0.004878341347301276,0.0001361306367601557,0.01390577328311029,-0.02075201503808635,0.0786556666420802,-0.00045784668074186157,6.43938189563108e-05,0.019155231230337542,0.032600635242326044,0.11541057928799421,0.027301722268914468,0.002677309010806411,0.02945622281771343,0.001187649952204847,0.006044116890557879,-0.00018899754326737433,9.774536473191739e-05,0.009683123272890384,0.061388850928977036,0.28445119594312346,0.19135590552756612,0.00015651015614330678,0.002744033587465491,0.03384405624459466,0.176638671663918,0.043819035804017255,9.062443599136849e-05,0.008501382622264173,-0.016210548691012155,0.08933371310281783,-0.03559305479178382,4.560681294724834e-05,0.009742319872626554,0.04363412695838277,0.0890511862279602,-0.0028332411304398952,0.00023889990444329976,0.010245392772122297,0.013517537303180838,0.05651158883844167,0.007346360066407221,5.948047592904563e-05,0.002293942939308264,0.03545124242984802,0.4395553166342488,-0.04221827907906713,2.0808904074444686e-05,0.005117325213403165,0.010438079425751558,0.03573237672387195,-0.07309719796604901,0.00010210985456954158,0.006463456566120166,0.01691817381980591,0.06718997039709175,-0.01753077339050809,0.0003968962575352633,0.015053828526424902,0.06719340936663071,0.32969296279920174,0.08264232801436334,0.00011673169620472502,0.016080446804166044,0.0017222445606497575 +2022-05-04,-0.043057884653062165,0.29376958392752767,0.017257042592024107,0.00015500026681482398,0.0017041699964843889,0.02193164900939653,0.08488347532950194,0.002296045128814023,6.199528504653903e-05,0.019948342448081767,-0.014219099644294343,0.05275012065800419,-0.021370536297971216,0.00012469408272544442,0.0051972730032956264,-0.008716450771765243,0.010222304386249102,-0.024733886272491724,0.0002877787549817226,0.004996557561129462,-0.015723203024524367,0.035667517005294615,-0.009499946102347095,0.0002306566167661706,0.0181921959216042,0.004306382833206267,0.010271747165301468,0.010236629201872221,9.154087397746766e-05,0.009378894004289599,0.02144400776833265,0.07614682547012282,-0.026211117046620606,8.263119026028885e-05,0.008175273098546158,-0.02746244501169533,0.30715623915715595,-0.031249155721207317,3.066044638208259e-05,0.0021827118068917187,0.005793013675298989,0.004055673836859776,-0.02632938521590451,0.0011015046102896518,0.010224917758818524,0.028025916523589708,0.06400063922878135,0.01889871299799941,0.0001531219315391771,0.012861729561327494,-0.006133079766069329,0.0043183356274194605,-0.005657532212337022,0.0006942031468863406,0.019224662594049504,-0.01826428801031737,0.2642198814918587,0.056420954334535735,2.0599659553659708e-05,0.014310124669076175,-0.017769597781517148,0.04197002551538576,0.01149463533201742,0.00012577357403756293,0.0077053377288988905,0.009985106598318808,0.058897410882863675,0.003685865106848077,4.7721965261192475e-05,0.0014603024535987858,-0.012348218594388404,0.010311295877338388,-0.017488487648723114,0.0023356837145873176,0.0015097718044930226,0.014214128620132617,0.07846231849639176,-0.04209562593138827,0.00014907719469575437,0.013902299043738915,-0.058546030833495716,0.3101438651698773,0.044705384155011824,0.00029230920654041485,0.020074067511335517,-0.03564854771679958,0.24746944725796752,0.007046155705004177,4.057711908770657e-05,0.027389139836650537,0.03241326760623114,0.17418511021216435,-0.025592311100432984,0.00030668927904478084,0.010747037729757256,0.032031665081871295,0.45892831756473146,0.0073864706971857085,2.8964423582932255e-05,0.034436591939184844,-0.023301775748693253,0.279499143839618,0.07261898372847894,2.7854171520350814e-05,0.009757938620557653,-0.010608025224395499,0.021441409469364386,-0.04462476043667756,0.00015936904452185538,0.0070319374514709486,-0.013517385435506062,0.08996165340952263,-0.01054054811285085,3.470784464130501e-05,0.006522240607063276,-0.015903475675509395,0.044607469632774,0.009115735257005056,7.904271382632896e-05,0.021057391298000733,0.011813012166503324,0.04676830064268993,0.0486707908315911,0.00011549353040111155,0.0009274086861090804,0.013606492169226268,0.014337020364110347,-0.13286209639527527,0.0005424538992568663,0.012869202992103099,0.01904357135713076,0.07007493176485276,-0.002907205242718503,0.00011438569706599779,0.0026837706887234435,-0.015648913053324123,0.06487206190428606,0.0037876573886866482,0.0015482662626354424,0.0011357467338238988,0.0612630936558317,0.5868878817494981,0.0930512078316219,2.684268636913568e-05,0.0028200031775123986,-0.029754519726859673,0.09668654653333203,0.018623066454413233,0.001006139423112035,0.0002082280861293301,0.027992421808536436,0.2075737809729724,-0.0026839618387822462,8.980357396907555e-05,0.0027426514912328405,-0.0048676767678753246,0.0070532951343804115,-0.03655743151508986,0.00016288273812557465,0.015541464312999326,0.009894402099214644,0.011394692896683172,-0.0011486363442938456,0.0004984147022854823,0.024427226751684593,0.0032305139413324685,0.013384334307783899,0.006179491305253479,0.0018707906257067848,0.006023791273699564,-0.04112021740804744,0.15434539067352554,0.10724790254886377,8.547755836547782e-05,0.0192653733662971,-0.03651448782243026,0.05116966715124198,0.03371808697630018,0.0017739027750895457,0.014568452602089652,0.017815802771438405,0.05649550363709267,-0.036264396824285935,0.000124941739513076,0.003165094632618593,-0.018502701309392626,0.050320894498161635,0.006299614588040303,0.00014905521031284878,0.031057510411040868,-0.006884815385001891,0.027236631311569767,-0.007921966604550926,6.169540680691148e-05,0.00491638473689736,0.030416191835964525,0.09312519349882316,-0.12619581049385897,0.0030956774842937065,0.006418615483751657,0.0025301385089054494,0.013320286906876313,-0.01588041381589701,9.448683202961647e-05,0.016176423733490167,0.022469014467175204,0.12052300500558451,0.023141964219992563,0.00013519942882411263,0.0030575114392208972,-0.010146292967155586,0.06191096112662863,-0.014138383248715356,7.751549963029438e-05,0.011960449108635602,0.04689619506054866,0.21709786411262152,0.05027654204929813,5.4291201336282484e-05,0.027554958634093782,-0.0036101876001325655,0.006160027823906892,-0.01957501799776846,0.00028574358585283313,0.013108351761984906,0.008505158498398033,0.03601041236142615,-0.01725914936960541,5.8731175411636826e-05,0.006763895246721774,-0.01134928376337131,0.10817662054632504,-0.005184933101241265,2.706863339719027e-05,0.020896216740422847,0.0013377657891412247,0.003991627056645396,0.007820012194656398,0.00011714913663112772,0.006794162458855774,-0.014942899016128604,0.06317804568119857,-0.019514988191103533,0.00037281780476310127,0.00363832807033875,-0.014723856363692183,0.07091548252363492,-0.06568536941943706,0.0001189192895095071,0.010463345572969723,-0.0027243961181114924 +2022-05-05,0.043434521507910086,0.3529027588377307,0.0704535357455004,0.00013015671288439762,0.016072352141829876,-0.025196079803663184,0.09583029255932163,0.02510288096428575,6.308711796472793e-05,0.0022633114859019624,0.004864542153054117,0.01578508251046403,-0.028916996498347385,0.000142558238104512,0.006461277892740798,0.0285307328899149,0.032082523386364095,0.06006589229956742,0.00030013197399460446,0.01593482055860898,0.01671881671262297,0.036106704606294004,0.012230355855496164,0.00024227882345807672,0.017387701509280228,-0.008462211313358474,0.02240078751356832,-0.006316565670074212,8.248354528503994e-05,0.00676463056697508,0.052887095058149786,0.18964361316603576,0.04988526104264792,8.182788896870827e-05,0.018563139563429414,-0.05667973437343673,0.5217903720895828,0.08210156464564301,3.72503501469407e-05,0.011951330840663273,0.012997779832479583,0.009825614742947224,-0.0003091607174481864,0.0010201269738655018,0.003795211475768982,0.01631659494462771,0.04100382803566081,0.006550205184066187,0.00013914481103292483,0.01292552621190219,0.012792451585224922,0.009113849043156317,0.003190533947325292,0.0006860824486641545,0.0012568849511387504,-0.0190128163932607,0.25822684611068336,0.05022710484613481,2.194157772925845e-05,0.0005762664164080014,0.00950369458779992,0.02698654849309284,0.0020942465750128404,0.00010461553157809002,0.01185874742861864,-0.006968025595464448,0.038995958900107985,0.006322773244035327,5.0298143041629856e-05,0.008940017539188567,-0.02566186594479269,0.023814420513081698,0.015764235348782143,0.0021017022366406346,0.0014454545689253303,-0.07452473255234729,0.6177428046294418,0.1146466466994986,9.927612984831147e-05,0.029868861647095853,-0.025338498587756764,0.15695821030738558,0.0017260511993391608,0.0002499798892855243,0.031067804158246788,0.028756742972540297,0.1803708895283194,0.013530209685192305,4.490908479426115e-05,0.028435552919664556,-0.02996185418180447,0.13411904750242393,-0.05585435711477183,0.00036818410292710225,0.003920866320645657,-0.04424520024445888,0.5360703628279997,0.030923846758103182,3.4251105914193934e-05,0.00368028606817677,0.015739755056586334,0.1943286658013132,0.016516277542642527,2.706093572006841e-05,0.006728677520832584,-0.002095740459176263,0.005911308815613531,-0.07631043268151633,0.00011420276145313666,0.005931434407256786,-0.031205674077718615,0.2521095753310598,-0.039212291671968186,2.8591477819996207e-05,0.030909665971365734,0.030289926105926276,0.08115783985554027,0.0024559781110899464,8.274563955992974e-05,0.00030792101476749046,0.006798737303931567,0.023743162919522158,-0.015979494775611308,0.00013092973349617938,0.006141202061806307,-0.0029585850139638337,0.002704571321762185,-0.05617365465279136,0.0006252607624373745,0.01093708165489445,-0.01823713206554332,0.07302384818432715,-0.0010427670685819715,0.00010511818089112335,5.790505955444365e-05,0.009503954779677184,0.038513840189425816,-0.05323255561231431,0.0015838232425865195,0.008686885891364779,0.04402919355947909,0.390267968161672,0.005658685417759486,2.901082096553742e-05,0.03994042740642665,0.010249279772086745,0.031201925807172355,-0.15462594389686382,0.0010739479122054403,0.0018499727902750104,0.03489225090301316,0.26603825869210856,0.007980627817711524,8.733946622569668e-05,0.009662629528165044,0.019582007470991373,0.030680521711357392,-0.015009357917051535,0.00015063984420155403,0.006469077757469757,0.002207415449476202,0.003247534508593867,-0.028707319052205624,0.0003901523408864394,0.009010402428199107,0.06493578159269689,0.23292614392982228,0.1709836933475642,0.002160807986473918,0.007393808282250726,0.03966010185153154,0.1481246072697821,0.058963868522511405,8.590471151163814e-05,0.000344451895188285,0.02198917937254554,0.03183240593852874,0.004599472030514568,0.0017171836681083132,0.036448581289680634,-0.006563105890841803,0.02377169481303869,0.0012859791824353295,0.0001093868967503425,0.004575086810901342,0.03176080757360477,0.08524247830805509,0.009045947603421358,0.00015104134522331495,0.014263351500401759,-0.02507438656082101,0.11566583317335855,-0.0525370881952005,5.291016932773529e-05,0.005963016017371193,0.019038851252684036,0.05370331594435372,-0.0047270989850922,0.0033601425055320095,0.012453103010386284,-0.02547290754139313,0.12273938738933496,0.025552068303692672,0.00010323694363681608,0.0031638471966041397,-0.003337516769449337,0.016063395083456188,-0.003077817105898208,0.0001506769774722853,0.0017292982964890614,0.02233058477643985,0.12658972885636108,0.0038153409620265127,8.343539479961604e-05,0.015943694120753815,-0.03364020858809224,0.189524282682527,0.011834503176517647,4.4610923454915524e-05,0.005905264955293485,0.005050773054112442,0.008531851361020616,-0.23477279443420654,0.0002886316607167169,0.006865331137077102,0.009917400792846712,0.035138323481171733,-0.022686731292697028,7.018288294887624e-05,0.01867527146717606,0.0032525113506547093,0.033343628362182055,-0.035882746898240454,2.5167336130253647e-05,0.01840746579524055,0.02223126042091781,0.05888629303014096,0.01733785666858577,0.0001319650221161476,0.000169503886869181,-0.017105896608712697,0.06931159635843043,0.029099575279147322,0.00038901640148964335,0.004726303535637825,0.03364780955532648,0.1608457187013002,-0.0031993894807956945,0.00011981717828517217,0.00733114507421809,0.004464905811520941 +2022-05-06,0.01425267454742393,0.11793623849463479,0.004094994819725836,0.00012780142025993493,0.007659391542505952,-0.01397548759008898,0.047035093481417566,-0.02204190432894993,7.129441075959553e-05,0.013640447579194824,0.003983653132035201,0.01283339640535544,-0.023705812318428568,0.00014359427043409304,0.019142994915599305,-0.027471885012796435,0.02412463151038021,0.030580967667668338,0.0003843223381104824,0.0014347801879668418,0.024273228847170498,0.04967016260836135,0.020174867672596936,0.0002556994188404284,0.02376504176438569,0.010387482214971563,0.02771695471796857,0.01850785801410678,8.182980584148874e-05,0.0017480439939276443,-0.0167394916940745,0.06374495112413614,-0.03057897791755455,7.705242811004681e-05,0.038021815604378215,-0.00016775916882771346,0.0012820561625253148,-0.029738641162608298,4.48722482461861e-05,0.0029726677107194954,-0.0021534362690400293,0.001980476706294746,-0.007419224803236001,0.0008385077311774586,0.0009254553917232506,0.03753248568888982,0.08278020098425748,0.0048295376608791666,0.00015854141776087602,0.0001334289361826775,0.004682523478161893,0.003912282025017069,-0.006661706231242187,0.0005850246528705086,0.010575656985464085,-0.023426026122073465,0.37843213938761905,0.04451803329439417,1.8447325025029096e-05,0.0013672294735073288,0.01653397198612884,0.04452527230698956,-0.08643857315458901,0.00011031171870116617,0.0061106612554107514,-0.006219902758959156,0.037937641900069416,-0.004975433141168922,4.615035866269067e-05,0.0074587968942579266,0.028781184531708793,0.028956514274303298,0.05934466748680874,0.0019385872647075602,0.016896689957800436,-0.012666688124401311,0.09439933781830459,0.0028097871328749235,0.00011041961727658236,0.005260412592925706,-0.022597333036591366,0.15492596218481117,-0.008898604015764198,0.00022586098410880777,0.017617582657031165,0.04875295311822884,0.2795755225032901,0.04236713234070162,4.912049539680932e-05,0.035444614667025164,0.02320404083214202,0.14013091481156895,-0.020620020407815683,0.00027290812853407773,0.03342773570973305,-0.031222252587247996,0.3572561548066877,0.02449507704774877,3.6267259898378714e-05,0.005637697694344107,0.006226061370929561,0.06722238397332134,-0.0229462056955934,3.09443379966073e-05,0.015429660814175331,-0.044796841006064174,0.11264518081463103,0.0999124364668916,0.0001281024774003719,0.001124824927700973,-0.0037950994052774827,0.03118982612465019,-0.04318556678948466,2.810622886204221e-05,0.012328899491040574,0.008119518914626563,0.02678431220709502,0.0040457449816562845,6.720896099027729e-05,0.008234857545804735,0.00630653099574345,0.02762383490172811,-0.020307541508493235,0.00010438910172244201,0.0035397856977569244,0.03016107556084992,0.03725817623497325,0.01630143889832261,0.0004627013785452186,0.012776239205262607,-0.01702077441511872,0.06919131028211056,0.004112229384512649,0.00010354133732019969,0.015076544573322996,-0.011738717114289561,0.0435143236409807,-0.00868426146777664,0.0017314405088536995,0.002034939715211529,-0.018759782364826883,0.1776420398251283,0.013807761191812887,2.7155902429833646e-05,0.028257662358670554,0.04061745571292397,0.10975061873511285,-0.022196045552714788,0.0012099767019229139,0.005518108358684738,-0.018590987359661686,0.14683187192310543,0.017944206600437974,8.431556669175691e-05,0.023771635844576502,0.000815140609036395,0.0011765237332906047,-0.003443822690426147,0.00016352238903654791,0.007802907688267816,0.005560537353895357,0.007130340516900406,-0.014188008169840142,0.00044762095124157333,0.007252950423019563,-0.0036265683018996517,0.014313092680464441,-0.07468576304167464,0.0019638699234499663,0.005701193228633553,0.02046203226387967,0.07631115338864602,-0.05951128499264887,8.603023671274964e-05,0.004652223942667509,-0.0040056523905298526,0.005633180681536395,-0.006944869969828654,0.0017676520009434272,0.034572361441091444,0.0025694316219495874,0.008407381335778815,-0.058298742948136924,0.00012108556007128657,0.0256847351787719,0.009832765422682074,0.025823635458730433,-0.0032282604010442535,0.00015435427855324416,0.001130374942375514,0.006062746004958956,0.027796030721715995,0.011033202581931086,5.3235399327671984e-05,0.00225815061082596,-0.05105716163746169,0.17930578499468355,0.04782386875175225,0.0026988604203430065,0.003358508484060932,-0.039012196593577124,0.21650817836361558,0.042254141874678616,8.963273920078463e-05,0.0006543721241704045,0.002021676825074797,0.011223928351137146,-0.005710849257325133,0.00013062539942241706,0.005594389525802258,0.03512340924648995,0.18843937437786937,0.04052463535022006,8.816043187604038e-05,0.0008784877210178385,-0.010561586750966514,0.04431055012507378,-0.1182397812378448,5.990587605044113e-05,0.0338243801246596,0.023448201138012832,0.04164376719686866,0.011837565529660601,0.0002745294341580361,0.019334869398793197,0.016569840153969603,0.06956222859445126,0.015332800057235994,5.923238331148482e-05,0.0027728944447827607,0.00520541792205065,0.05584239639534337,0.0004956809032682963,2.4050429765387952e-05,0.007483054827526541,0.010959795988249636,0.03141334350711792,0.031321160598630333,0.00012195434308591554,0.0006949627134919291,0.021609417213581117,0.08807588357881606,-0.05821574994434628,0.00038673547967063907,0.001623221021136813,-0.0030159203794247686,0.012981667290487124,-0.008517542884563316,0.00013306418968308807,0.022237995697353848,0.0009139376695888208 +2022-05-09,-0.003936440688496544,0.026405075276577435,-0.005551584647813479,0.00015765323478088706,0.0038236936579763197,7.035268671511104e-05,0.00021014408519814357,-0.0612988774752644,8.032931126059332e-05,0.015950587956917353,0.010811134064819861,0.03855906965618618,0.0056530400662862315,0.00012970057773481383,0.0043632552618876885,-0.020236832000799978,0.021520108887111422,0.029605328850714718,0.0003173700338759004,0.0035804159650666004,0.010301786979923344,0.02422266841834997,-0.038666246537849225,0.00022252989007957218,0.009596151764890365,-0.033001158317307044,0.08120384203547715,0.14188202794395413,8.873589738756679e-05,0.0012208907920203244,0.00396686462694757,0.01797641494554406,-0.01680365620636686,6.474916183971528e-05,0.011358102607055207,-0.029872268640024263,0.24951058850135613,-0.02772708366444362,4.10561139589675e-05,0.017422284933591374,-0.009150080535431626,0.008121396957209582,0.024887968238818732,0.000868838315204114,0.0042749589064842225,-0.000933173237571339,0.002008569382896661,-0.012218649883496009,0.00016245658632403102,0.014167216614534994,0.027486845399493535,0.01765610041751204,0.0754641220423375,0.0007609471027414838,0.0035984272965214454,0.013240869998562946,0.17454612649880769,0.011153707489907315,2.260627964173725e-05,0.006856716608775401,-0.03423083191340896,0.08825273373435642,0.015596559699786782,0.00011522330410298364,0.009441949801225596,0.013803131720442308,0.08814723359840722,-0.033762921688539,4.407890158946728e-05,0.010095146002984178,-0.0067751757160857615,0.006139718448889378,-0.06859214883847886,0.0021522617119928145,0.0004606953747276314,-0.023158777964002578,0.15299888698190148,0.001625845182366351,0.00012456025114952472,0.009990935386364957,0.0001322638057002206,0.0009318137338696109,0.001087711750121417,0.0002197961796327881,0.009696414058757987,-0.029510646610352007,0.20309810213446883,-0.08710431350992212,4.0929252804714575e-05,0.00284352089833471,0.02724418318625514,0.15821396129251367,-0.015191926731416618,0.0002838022242615306,0.0006942384497124895,-0.011276605931551375,0.1447131240543506,-0.0041686753309220686,3.23370736753302e-05,0.05779300914445357,0.007495955069933488,0.07918910810911048,0.000955645098114947,3.1625924674893644e-05,0.00035712142789006644,-0.029260185053162784,0.0881073658536298,0.02297534295479684,0.00010697630839892436,0.008122480729712426,0.009173090325240208,0.06410362281849848,0.0075891195042038185,3.305411027362365e-05,0.006979336916692934,0.013018103326157306,0.03833827986914806,-0.036768456278109936,7.528222964269051e-05,0.004103697404655181,0.012900939420562332,0.05912286464020624,0.05949936198142129,9.977332901567401e-05,0.001963964989416454,0.046083293957314427,0.04099456483008311,0.01623126528382728,0.0006425290902434956,0.0015949950384021392,-0.003488587715281093,0.013951061805857007,-0.023361640628538096,0.00010525152412517188,0.01722050316485879,-0.022770367506751515,0.07774457289897505,-0.041752526059931294,0.0018798324088956091,0.04021231393826431,-0.006261449876719465,0.045848289311057985,-0.17078001320687203,3.511833907550447e-05,0.019200596393842445,0.06834687911367661,0.19376930952575752,0.13027942707982051,0.0011532008835747271,0.023127215520460313,0.013014764345272985,0.09885401459766609,-0.012421334483155405,8.767335798066067e-05,0.006007201864033339,-0.0035383893158027853,0.005719833481755224,-0.03907703541999869,0.00014600496202722867,0.005216975463577001,-0.009472527030784722,0.013519375878626136,-0.005262164673259229,0.000402173197636763,0.011703677757607993,-0.02040540877628867,0.08322260195720808,0.0040631013246205,0.001900440821797739,0.004747651369770508,-0.00025694935695344057,0.0009362479527084367,0.0002278523432742078,8.805358136247284e-05,0.004972744845701382,0.04328319488643997,0.07170959239063558,-0.07080864317107187,0.0015004421232954158,0.006043175063929322,0.001022296673869106,0.00342764623511956,-0.15509449815775178,0.00011816721278903784,0.0019045075432047856,-0.007726492455695626,0.016727914604782932,-0.0065087318277186855,0.00018724100272150818,0.019434826129908506,0.0570389502839577,0.21811042658692786,0.13408954784738905,6.38276745935162e-05,0.030752590456593187,0.058009573060346806,0.2001820406595255,0.06152335481737044,0.0027465822872720044,0.01820338915693786,-0.07892334167992925,0.39079176044281116,0.18948295812535682,0.0001004617265420334,0.0024329907565497715,-0.01494025589633075,0.07483775978747995,-0.04750505880873651,0.0001447764895054208,0.003908363641372354,0.029567844375756287,0.15277423679823357,-0.1171994204850047,9.154154534500369e-05,0.004205538896606462,-0.050574643988582704,0.23038871568588215,0.05463477921895498,5.517203784588145e-05,0.01288612650965074,0.02922664297713099,0.05250747220817875,0.004239462665448467,0.0002713858608807841,0.017150171239833475,0.037778969727665125,0.14871470142345006,0.1051194720471333,6.316995717328259e-05,0.0029507549677688445,0.04521783671514517,0.45793439986903334,0.08932355517546384,2.5476384681947468e-05,0.017820521664198712,0.030183656325836222,0.08603660869797111,0.17650880070369213,0.00012263022592107353,0.0025251086164591076,0.02457720461231718,0.09867757662024966,-0.04049511553800051,0.000392592483782923,0.007260837866374592,0.009479428795419641,0.046151704006127656,-0.005290347697160354,0.00011764303609071664,0.015392528024975117,0.0036712420093754417 +2022-05-10,0.01362472885333006,0.09947156509425872,0.005685048765290997,0.00014484899983667064,0.01720014832578663,0.003533106167811093,0.012640448616361752,-0.15166958454753265,6.706635862979882e-05,0.0038883704159560087,0.014132248297994376,0.04018517153477759,0.019420221931636047,0.00016268317406477646,0.00968449916334355,0.004567651619608296,0.005212281890342704,-0.003945803558328288,0.00029575557066199105,0.006804791534971085,0.04428134211728746,0.10388734876450725,-0.0031637221581624787,0.00022302619990249682,0.00016904569954050847,-0.004009581289994168,0.011225711105475286,-0.07845528397788078,7.798873951424632e-05,0.0036371988626090826,-0.0029076112464025104,0.008635024682389919,0.0002472444773525753,9.880128929863507e-05,0.017794894021500918,-0.0033379450197759657,0.027821110446747916,-0.06933338808933483,4.114369890997355e-05,0.033701662114929365,0.007426865303427615,0.005720971484262349,-0.04106660239683758,0.001001107122011929,0.016237200356951313,0.02292956552970966,0.057591140267286164,-0.024043095653865174,0.00013922012995136609,0.049496833019697345,-0.015790635530896376,0.014591831243182385,0.018003575825820354,0.0005289494494936851,0.008603643460949318,0.0022289431128059167,0.027706327906262734,-0.005434799968242584,2.397412713916666e-05,0.0012817813859176271,0.001504151085431416,0.0044784676517847805,-0.01004996903309325,9.977300615202795e-05,0.009864146604303905,-0.003808535298547975,0.020545817443960643,-0.012877545381296727,5.217907530901489e-05,0.00807229387042211,0.021240232196744962,0.019182238461188522,0.037581475024337396,0.002159647878960343,0.009262883382360093,0.06581765760383043,0.4050107977526308,0.06250833296700231,0.00013372971774994666,0.004331242837662993,0.021878683022772415,0.11801736818804054,0.004196501814102931,0.00028706714009123533,0.010667624396933832,0.034044383322457794,0.18348942586205863,-0.022584885896422335,5.226312642469407e-05,0.010201958865116009,0.06555744034081772,0.3943741536654584,0.05987934183703426,0.0002739683229482668,0.030376999881436478,-0.01566934364092796,0.2088768366998984,0.008549904478583696,3.113083392275651e-05,0.0192916998015231,-0.0050931018307192235,0.0564161628578756,-0.01275100416082072,3.016202699095813e-05,0.003525712848710694,0.02573728915092484,0.08008565086636973,0.02618260214695733,0.00010352156957338891,0.009794005368066619,0.01723633339405041,0.11655343507371478,0.016106695255030754,3.41595534164642e-05,0.004385596813306863,-0.022472826030967556,0.06805715731242423,0.02392038912273541,7.320845930063041e-05,0.005781161850265807,0.004612522897963737,0.015692064455390953,-0.08452253702083011,0.0001344024072753471,0.003408844689753031,0.00823640026543728,0.008481141721463687,-0.05438552670526172,0.0005550839689325641,0.0012583720351800921,-0.002776425142465903,0.007911137957706552,-0.006180511904661385,0.0001477178641862573,0.002103427222745269,-0.04978974201082101,0.16914626386554074,0.04513776990967061,0.0018892813662278907,0.00905085867801083,-0.016471226239117447,0.1615576925515523,0.0001760246531800196,2.6216848596476492e-05,0.001442241077905821,-0.014637424983575297,0.037066919647196835,0.01320823200899519,0.001291069006457161,0.014008857115970639,-0.004210855338159652,0.026155268676311252,-0.03629509527840676,0.00010721036617293153,0.011805429486268705,-0.000516025018626802,0.0007656020498133695,-0.06929351307952673,0.0001590790749660432,0.008112997668604478,0.002363275612309645,0.0037464664628158104,-0.00371134999200969,0.00036207324795511876,0.01456046353903556,-0.003954394987644381,0.01366453425662974,-0.0018628884657970253,0.0022430324386836687,0.013052016741460013,0.017291663298221283,0.06996053390975625,-0.001634578135275281,7.930015307258934e-05,0.004097852848327789,-0.012447943475602422,0.015363735400389864,-0.0029966943797126735,0.0020140858596018694,0.015271684282690145,0.005644047644027351,0.019697783391762213,-0.009794560368181934,0.00011352443530386029,0.01136806545041596,0.012343627578960995,0.0344755109034175,-0.026065047905988372,0.00014514179017528675,0.012129040228589507,-0.00347672162348781,0.013711934923318387,-0.0019333799725735747,6.188495796606775e-05,0.000865018461050943,0.015066710982182584,0.041515423710616554,-0.03215425774805997,0.0034397512780960197,0.008579426073616283,-0.012685028539841645,0.06953139113544163,-0.04678207324516337,9.075093345579151e-05,0.029812021162647927,-0.019587887442187694,0.08910671902714036,-0.06994371647709532,0.00015941821103356843,0.005098242265201251,0.030516573892858327,0.1856133736598521,-0.0031062560923771896,7.776339412658144e-05,0.01168869150471351,0.03325690237195878,0.17994101523196895,0.03493742187978152,4.6451423128465906e-05,0.014909490719862584,-0.057844829652575896,0.12916500565631903,0.1285925448304519,0.00021834792707560747,0.01896220802627096,0.006695869408733138,0.03110345112392911,-0.004166711085328016,5.353191397478e-05,0.004750022664115548,-0.006887464302942864,0.07409852392376176,-0.08697580451553719,2.3981762058948114e-05,0.01947827759418467,0.004063596394786695,0.01321935025086632,-0.07303239551865905,0.00010745074262614933,0.0022630443341638447,0.00439728163593253,0.01923073062974883,-0.05309998943923819,0.0003604262956989977,0.006561628666428199,0.015054308410015541,0.06736583066773427,0.012021119839176083,0.00012799497965185287,0.011905679534355706,0.0043476234775067036 +2022-05-11,-0.032368959704814106,0.24406755764027366,0.02737774701266057,0.00014025077529122954,0.008851794606736515,-0.0491189213324209,0.17354274151209353,0.08653344867906276,6.791299659443393e-05,0.02229264831302141,-0.010724849506874374,0.03296295147867384,-0.00028373087336229594,0.00015050894796996199,0.0064133955928810035,0.009451161640692747,0.01037713356049943,-0.0010836764732471465,0.0003073800244000402,0.0008191873305913595,0.00792923158465082,0.01859467098452669,-0.02012127014394547,0.00022312096326488728,0.015836774333262138,0.0015632052865972145,0.00469324325315914,0.005526382392007315,7.272599812859614e-05,0.0015077479856534543,0.032526032064928254,0.13322202095643224,-0.06893558838205759,7.163824261375142e-05,0.01901507163271108,0.015670720351975535,0.12858034232320284,0.0015988602040960698,4.179390944680731e-05,0.018640272325130304,-0.009183973853058724,0.008329453691406679,0.008462837643325472,0.0008502740155822213,0.005407467476293869,-0.005884588830394237,0.016817859808197166,-0.002411141558305775,0.0001223509319011561,0.007735935296506119,-0.011983329102300289,0.007792136736116137,-0.008168538159877706,0.0007517012630813085,0.0024381886147903506,0.025214294760923985,0.3355747617879797,0.03276195887214666,2.2391352366834458e-05,0.01830281292582587,-0.006623589943014282,0.0157939640226687,-0.0017962685644849958,0.00012458143572018695,0.013764234478824173,0.0025545268235405904,0.01197366301862323,-0.01533399103122084,6.005445834416585e-05,0.002630933812266571,-0.035874845686216364,0.028814616529437877,0.026721389484095758,0.002428287867249233,0.004914733731431165,-0.031273256595835415,0.2198201797910791,0.013995165690637,0.00011707324529678615,0.020209987401918348,0.008725339832964847,0.05096507555471237,-0.0003748199104360948,0.00026510499482607276,0.0065818768918097705,0.028980500499575915,0.15059158757384747,0.005605225758329209,5.420834218883307e-05,0.000764816564876507,0.03371947793908612,0.1778077193102467,0.013309367458041291,0.0003125482258979251,0.0009556075622408548,0.005333651542548203,0.06434073994036146,-0.004392403215755679,3.4400821927129963e-05,0.014382983491059587,-0.02320692399949603,0.23462109370025463,0.06192208538629864,3.30470147365297e-05,0.003966037427208182,-0.026447641618224316,0.07891566202952353,-0.004709803032151135,0.00010795592997006708,0.008461439573521912,0.046628940822007636,0.3775688906836065,-0.014956867810580178,2.852671233521783e-05,0.01926233041281966,0.014780531161373931,0.04194214896047379,0.010038693176999892,7.812980589416988e-05,0.007816845172476765,0.024911435469026924,0.10185685932595252,0.28809220380161904,0.00011182967641387937,0.0058247831903777934,0.034077292916351545,0.03551593469080426,-0.01956538180380839,0.0005484251970988119,0.028876038218179367,-0.013784414127881898,0.04709460304559813,-0.0003401283654290203,0.0001231978647252336,0.007382630844331826,0.013131525256921576,0.049035328610692396,-0.007625389480480806,0.0017187996554085382,0.014084141007097218,0.009980799980036655,0.09462844713940681,-0.02610620211531607,2.7122257455721227e-05,0.01873644972056626,0.007737411179193772,0.02326756663801186,-0.0037276542981027365,0.0010872163628218154,0.009653861385675045,0.00598105999782352,0.05472681089320088,-0.040537856743402136,7.277859396862313e-05,0.009163287312561696,-0.009128651830707546,0.015160915035633209,0.009012644159984273,0.00014211064666238825,0.007760696206277554,0.01324381447004248,0.019452281501188204,0.009614580481506632,0.00039079271232633013,0.010819487590762504,0.0302235890394467,0.1201059190100366,0.03274850526032347,0.0019504371747546276,0.00594402295489835,-0.013988004421873739,0.05693799240762699,0.005233053008191824,7.882137037464526e-05,0.007540454740902454,0.00046361050587972823,0.0005732143947572385,-0.0013210304052214783,0.002010543031646458,0.0031448860738985847,-0.018827925595318065,0.0692097985319762,-0.11229449506664103,0.00010778316315681757,0.0033779663719563273,0.010149596923739679,0.02394582226460086,-0.10738625836177457,0.0001718222558779944,0.010537400126477347,-0.015329706855393874,0.06435818876334073,-0.05698228082168536,5.8135841331978164e-05,0.004696976221934678,-0.03370943252832586,0.12357056825556814,0.020984873330734417,0.002585559019528234,0.032256831475450845,0.012807083723657473,0.06541064239875705,0.007021539564761212,9.739628794789264e-05,0.04623712263350749,-0.00351584166158519,0.01867957881104052,-0.004332321413778656,0.00013649697066121425,0.002436120902356511,0.014193975753296005,0.0812845754155365,-0.01721632595472495,8.259326150137132e-05,0.018908010764012162,0.04816421141382736,0.21609651757425352,0.059391437647839114,5.601754616097846e-05,0.021604936971634063,0.004068321211953219,0.007940399477308423,-0.043333228299820316,0.0002498056616223877,0.0246770731604976,-0.016160074004840774,0.06528468183664378,0.03872631816844843,6.15526038068214e-05,0.0025396455495461947,-0.0025435327753912398,0.026681279247732132,-0.0026611845199659375,2.4595857910461643e-05,0.010754904690501171,0.012179707309957417,0.0395094323430273,-0.0049002541522595545,0.00010775688451712034,0.002011564014197862,0.017991104907362276,0.07567485446853424,0.002224616075119832,0.00037474358955663726,0.0018709646836993698,0.005848897282840703,0.025766830827354613,0.0028031234159113846,0.0001300124026893751,0.01765119945734354,0.0021867694210427283 +2022-05-12,0.027686339948430196,0.19171335662058658,-0.013562262087437235,0.00015272135193368516,0.002189511061534584,-0.006610209961848678,0.022753693110172953,-0.000376992873837477,6.970659750912112e-05,0.02569530486560887,0.004833100839598184,0.017153739617053604,-0.0740533150931433,0.00013033595772422548,0.0015720475638664778,-0.04539112687443266,0.042789686963265516,0.14780782009802784,0.0003580137540974093,0.01659396896093301,-0.04797092424783731,0.09708204469381904,0.05762951592455013,0.0002585454764405787,0.0014739272328938475,0.01950224911672188,0.052447408833869405,0.08415589473143915,8.119090882742547e-05,0.0019864118508723157,0.0763523125916354,0.2738665129192734,0.04003890590127551,8.180373229978773e-05,0.02195153929128069,-0.0023935848842322523,0.022870774298988327,-0.032422917452581426,3.588943158035171e-05,0.012932993946117658,-0.002473694789605873,0.002120877124845404,0.007796672768153786,0.0008994466176517219,0.003392136413649247,0.01546257862864668,0.033249256241198254,-0.0008089049461568098,0.00016261547517764475,0.002463852590080535,0.006186433413441931,0.004519752614408832,-0.051358185737069594,0.0006690368460401644,0.008528949034292261,0.009374524661413874,0.11302502300331403,-0.024015624830716956,2.4717095821958035e-05,0.017759546972830394,-0.00030597897505513065,0.0009345013532280343,-0.029425516348508308,9.726636564680269e-05,0.008179265814658618,-0.0007404056510634971,0.0037838691690147415,-0.08999322920244568,5.508019020337072e-05,0.0018102590874475946,0.009874804424716206,0.009108083285478361,0.010992506129576082,0.0021145817629038373,0.008682819071110862,-0.000527516833981743,0.003497168396224165,-0.0009639280717320985,0.0001241286082461682,0.013569257716064655,-0.023593170795491485,0.15052095589947168,0.004383959322318598,0.00024271553592810472,0.007107495925386231,-0.05633826542328477,0.3234751034285547,0.05388762285372625,4.905955076983459e-05,0.002965193631814886,-0.01442938913441836,0.06891185425624315,0.00355422793483561,0.00034509670864800516,0.01857416763876078,-0.028941700642203614,0.41798451364243916,-0.041859934343873424,2.8733867642585393e-05,0.023648847084687678,0.018444995387602574,0.20041213581645925,0.010893552299852644,3.0749371512854185e-05,0.01139860382088042,-0.028514342797711326,0.08821327089106633,-0.033840938454784336,0.00010412432437306071,0.009951570566613712,0.004358056984010838,0.03136376826626853,-0.04309079866684742,3.209645325221656e-05,0.01831188417912153,-0.025654936369839856,0.0750144322633408,0.007837788657303241,7.582344237061656e-05,0.002423442817426105,0.0005198690632273616,0.0020210849786870527,0.00696995286593752,0.00011761372236252493,0.005775725619990704,0.0058078673339675545,0.004941855510430291,-0.13984969525620006,0.0006717415397963236,0.0003414814139022968,0.010958043462892246,0.04765413789761653,-0.03176142829214301,9.678730794610488e-05,0.0010179648439162842,-0.024414782356916957,0.07876168108027176,-0.026292019831100924,0.001989560063577313,0.009796746802422318,-0.010295268481773739,0.08576142206533782,-0.046393467198529374,3.08693793846598e-05,0.0008219629227060347,-0.016906442163791655,0.04526249710189569,-0.0453534648057495,0.0012211949027587522,0.007656971949326509,-0.031786007784792056,0.2546257676221616,0.0686152846870193,8.313028652370018e-05,0.007936323197084622,-0.011817630606995807,0.021597199049555253,0.014147950378789203,0.0001291452288181342,0.009215456783012988,0.026604358431198703,0.035795261326576,0.029236528114875975,0.00042661013297896243,0.005192149028560956,0.02259406539182004,0.08767005326587247,0.02113587420012799,0.001997530651252594,0.011554968265871657,0.017419135373447397,0.07145356350674474,-0.08822525152191252,7.821554433165818e-05,0.00108014108047363,0.04215083393442776,0.05664216220327859,0.032517266647267534,0.0018498799266894392,0.017769498069393607,0.006576432960391508,0.02168904069523473,-0.029344757744748984,0.00012013404219642098,0.018466221676824653,0.00783927397203697,0.02171348598791545,-0.0497170339632559,0.00014635469737270756,0.00663736463111527,0.027653376431138604,0.10494462566891402,-0.10926594460041894,6.431346191567786e-05,0.013317495454594118,-0.02319774615273764,0.08896314326940691,0.014167436244483972,0.002471460823342323,0.0035455149070036662,-0.02180983403791152,0.09785956643781794,0.007200054345929672,0.00011086377031358528,0.04304856944055044,-0.03493160852005176,0.21903451330469784,0.05190601090717213,0.00011565564012738891,0.0015354464292758275,0.003929317104957016,0.025100589236383683,-0.025311625138486123,7.404263414830321e-05,0.0003333063122235978,-0.02957440821945533,0.14628518575677646,0.01585197636101094,5.081162808075631e-05,0.021103935667534553,-0.04025783313252819,0.07707895470676115,0.008379467790592982,0.0002546501715342377,0.010396868240129413,-0.008512845417971905,0.03622710652991298,0.007540830007280453,5.8432635515433375e-05,0.011444536431717028,0.01091674863411459,0.112376655565316,0.004051309395116519,2.5063890990075197e-05,0.010623368712454024,-0.012547152040827514,0.037745918804609695,0.006382983012604293,0.00011619411268227855,0.0031792270773841943,-0.015607298598498366,0.06363983624262229,0.026691184964468876,0.00038656867330677546,0.0003278897958471274,-0.021425475449460607,0.0875972415022729,-0.003261220927123391,0.00014009151563750696,0.0072427989353729405,-0.004173259816382726 +2022-05-13,-0.007214130614236739,0.04667789275820633,-0.031875216700317524,0.00016344037238542652,0.0014963960395663043,0.022953767278464897,0.07301825773492926,-0.020858703225618707,7.542807679252644e-05,0.0024304756640467435,0.006366846357341086,0.02281686853788092,0.003597610465315345,0.00012908195491580395,0.012250176664811182,-0.030364740886140225,0.038827727797293744,0.03844532200895778,0.0002639340727910519,0.008894802227580666,0.002556028251658473,0.0058030309118678155,-0.0023053792462786778,0.0002304668882601198,0.008112862414102293,0.0013899184950279945,0.0035249594249183052,-0.0072066876751750025,8.609579714983e-05,0.0023713427833883024,0.03362493703821064,0.13332713137592792,-0.08105362927118731,7.400018405834224e-05,0.01888033904377762,-0.010265354045101914,0.08722980885956082,0.0019540982516829198,4.035595472564965e-05,0.0016374212619141514,-0.024977804566724708,0.024599238791609655,0.08671058657251722,0.0007830281612437427,0.011091047369093509,0.010377700141148026,0.023044537397586405,-0.027750415653608314,0.00015746897834046188,0.009608567993872382,-0.001944288544392604,0.0018163929556677583,0.0002729508449815598,0.0005232090731675411,0.004331174815429747,0.025271232342911676,0.29232416578315135,0.04916204327228784,2.5762291566992773e-05,0.0029361845824505683,-0.051529119496858955,0.15286797612656866,0.07613766355335211,0.000100135309284741,0.005353510634922067,-0.0016067062101819537,0.00819399634015237,-0.0011441105520666808,5.5195354244854624e-05,0.0032485332834611036,0.0234987420238268,0.02450836113656689,-0.06255582405903543,0.0018700504149785457,0.011873524066875814,-0.061002849461542726,0.4018463477155595,0.0362951472679425,0.00012492294207455858,0.047447877952648,-0.0033709499111326266,0.017914581995036618,-0.08916500098350626,0.0002913760504283571,0.01709533834852799,0.02773542547853673,0.15853765779540457,-0.00024730663813193166,4.9279166188044026e-05,0.015535479236989896,-0.023242199929905207,0.1273836488410624,0.008326750763640641,0.00030071172037287686,0.009798610796712907,0.016537310163329794,0.21704615205633832,-0.010908909052766792,3.161862736567465e-05,0.028231990995222465,0.011573880753607501,0.1317570677472491,0.002780612706025263,2.9348559611941047e-05,0.013249803389825909,0.0017707089866387958,0.0044950947816310175,-0.0013287901153942556,0.00012689107997848975,0.014570207468480053,0.024139667140281144,0.15824908410470473,0.022499192668985753,3.5235663051929175e-05,0.031173476719787797,-0.004887856837765008,0.012385950625301264,-0.14577449123000993,8.749163149461034e-05,0.00022415765613452562,-0.01971723911469492,0.08225497071197821,0.22241275092119697,0.00010960555027548747,0.0025455204871631344,-0.022718848512158895,0.0222362844697021,0.03934340326796728,0.0005839822617052819,0.018265403997485708,0.013178376412244279,0.044490552149223886,-0.058513664474857105,0.000124675213779871,0.00018433442970141613,0.017931227002356998,0.06052597053503856,-0.1258322873256242,0.0019014609954806675,0.003621451878057601,-0.015769359320229118,0.16143307215481864,0.0005322844540785783,2.5119080209301147e-05,0.010347634114429152,-0.0378119219606563,0.10413693271203794,0.06671243874493935,0.0011871216925087172,0.004322088426093892,-0.023711734632586037,0.19239488797925755,0.015451723226144427,8.207208011655667e-05,0.004563329474464972,0.05410321273229175,0.07647884509520438,0.04805937795744332,0.00016696564525368535,0.018307923431523303,0.006151471731998522,0.007896632351016961,-0.01790163535304432,0.0004471374314368734,0.013066271668064622,-0.011084033119747268,0.05061929157043273,-0.00867789209006344,0.0016971963658918919,7.202332032864517e-05,0.0011494184637646687,0.004457042857607095,-0.003471055622638587,8.274118365898284e-05,0.0014800591149152433,-0.028287809527931508,0.04557276954279231,0.013638443496404262,0.0015430183420620178,0.021594603438098277,0.002537250848059658,0.008711806872068607,-0.002925477185977532,0.00011539080514160771,0.008237356489644042,-0.049343612912534036,0.14020804879223422,0.0941109119590023,0.0001426653071480995,0.00017046475188378277,-0.01175515023885692,0.04514589231890213,-0.08667618309994386,6.35512164241672e-05,0.00957042631452332,-0.038017577013074115,0.10773084711092007,-0.09746534692654618,0.0033447404123924662,0.0058429897416569666,0.006891846149823522,0.03175438844773459,-0.0335180990536336,0.00010796236547534832,0.009910329617193387,-0.008539647138696267,0.05214063233908456,0.0022769380528616795,0.00011877482971489443,0.004218903696174128,-0.017634828406230058,0.08854030361348567,0.026342956648332944,9.420607939960393e-05,0.006099362929751977,-0.012288944805668193,0.05278704843858684,-0.029974535463314966,5.851060775937753e-05,0.002574726680782046,0.02156347311014897,0.04497626119151325,0.014876726335371585,0.00023375707015074244,0.005037509479441472,0.006532139956598177,0.024806624537877825,-0.02121586366953922,6.547902194451835e-05,0.014396094416156777,-0.0006460551515193375,0.007606876423922523,-0.09521859907111982,2.191263063516082e-05,0.0005846612811614603,-0.002171076138662038,0.0074395730989857654,-0.010067966376015754,0.00010200841589819761,0.008311176905531282,0.015424646558354101,0.06054132915958237,-0.0010787185881695163,0.0004015977221100618,0.00029127619184842217,0.03273230226060505,0.18333271599672507,0.03209228076742134,0.00010226060941627028,0.015017747135598825,-0.0022251753199337004 +2022-05-16,-0.004436131337520467,0.03529869293249568,-0.13982907037306286,0.00013290225662767466,0.001505361621988148,-0.01086116931410383,0.0383773239973511,-0.09606068562441875,6.790666808809518e-05,0.016556666725968196,-0.07217591752088479,0.24617879198073975,0.11290544391286632,0.00013562472847610047,0.001597008327702893,-0.004398725763914412,0.004500159096677511,-0.007457312210123822,0.00032988827150374274,0.003822847485829126,-0.013724406452969498,0.03186148206822307,0.00554578625553414,0.00022538518730721315,0.010872883609998213,0.0028457605286770415,0.006979347066779463,0.003530937423703624,8.902875411383529e-05,0.018836053080738085,0.02533371210219121,0.08409043578384905,-0.0026207553384030523,8.839792746738657e-05,0.005506373277217626,-0.0037413411251565275,0.03098320810732475,-0.025865091801997062,4.14094572401332e-05,0.009081661335106617,0.0006302975880491771,0.0005961767500729938,-0.004738724285329784,0.000815296159582653,0.0016175803030715108,0.02398132631017338,0.052126894503527824,0.00811399644392526,0.00016086932242557344,0.01672541311144635,-0.01599264121011708,0.011327446655749324,0.033192831263370026,0.0006901007933977153,0.013974884536914221,-0.007144147821820667,0.09459787016710354,0.006026102187480448,2.2505665669901327e-05,0.006074633147110466,-0.04518854863018788,0.13391042329651434,0.03578733610038544,0.00010024553727861098,0.01794453146370516,-0.017654208324069602,0.08749298926450873,0.05507098043403817,5.679849268860397e-05,0.009841773191336367,0.00934182341059738,0.009659100107541186,0.013144778913207644,0.0018863312472991985,0.01704585235559442,0.0062223875455080044,0.04140998787025786,-0.0096572584248547,0.00012365283018737433,0.0015491716853994343,-0.029439731720870936,0.1515259838249285,-0.031153052894720437,0.0003008534301952463,0.0018120514810461821,-0.024823315019614836,0.1386588734759599,-0.011324913410539206,5.042815362765563e-05,0.01254531509157343,-0.033357134737643464,0.19743102151670208,0.02084753881396144,0.00027845829141973755,0.022323688942942854,0.013923242168640795,0.19294919068115107,-0.027713983856698862,2.9945229573579512e-05,0.001676756912650065,0.01921369885282801,0.1965044720537021,0.019887758815892994,3.266782722756064e-05,0.0016853489349457243,0.01886272376695385,0.044898188925317,0.03647736793603708,0.00013533132613474777,0.012052349553774523,0.05467904235742502,0.3649549368068969,0.052947658816900015,3.460780324899568e-05,0.0021112194286090646,-0.025061115871876594,0.06939413359193651,-0.034270372205128394,8.006727148585995e-05,0.008805405353962226,-0.0027494854888117917,0.01024587881512722,-0.009921687341259457,0.00012270176578281622,0.000670085971877295,-0.06575461297211818,0.06637577119392603,0.1948437937281172,0.0005662291288282329,0.007981087747763415,-0.026242821894880346,0.08755500274203279,0.010617504175690065,0.00012615822676545463,0.0114683837873996,0.002200308939843532,0.006648481923369942,-0.09448710421510056,0.0021241263464247487,0.001597619283748554,-0.006944113392330619,0.060804661947960414,0.004710660204140669,2.93671716000145e-05,0.016843596860531898,0.004030037706802068,0.009560162201289055,2.2275340121458154e-05,0.0013782091174758806,0.017298740434801698,-0.014827462266090023,0.1198076098869594,-0.029441273120908662,8.2415342247903e-05,0.015002385566183165,-0.004264100649951705,0.0062432236256617785,-0.067612274511107,0.00016119959351417934,0.030926701626905136,-0.009397916872458032,0.013433762280377582,-0.004866851115640627,0.0004015483578215431,0.0042566931160533585,0.026913776699757565,0.09729332953771722,0.020585025126014702,0.0021440846126168514,0.010093592614828705,-0.027450996244581197,0.11637475945863679,0.03516089857267359,7.568149186363562e-05,0.011105450424476472,0.0015609236770023807,0.0020091816445681706,-0.027833722210790897,0.0019312551647979155,0.011940083315694494,-0.008825920844294175,0.031150664093808123,0.0038055450443698984,0.000112255791126352,0.002375506109900614,0.024203664695006014,0.0627141557150908,-0.05714926839031822,0.0001564501284031618,0.01480446234838202,-0.02588761490044118,0.11044774068693869,0.03971147136116493,5.720699402803813e-05,0.011612081711072171,0.03086318605702022,0.09082740939595609,0.0149137622235654,0.003220637813099216,0.015546822247613995,0.0392687452493288,0.1969301545371371,0.051121221644325913,9.919170914153974e-05,0.005428861783313022,-0.005524518164805963,0.03654941791772481,-0.02536120678076541,0.00010961619568372967,0.02147801709249445,-0.0013039353442588152,0.0071183075121331475,-0.10450277153351907,8.664190856830121e-05,0.006276764764943903,0.04069594696518048,0.1948975778356234,-0.036448845744927974,5.247979280771581e-05,0.019577299108651056,0.07185376279425078,0.127270753001142,0.1225936795091964,0.00027526455765903397,0.0026689986992719755,-0.0048279633697843665,0.018239621917764865,-0.005101436872900654,6.582070209815105e-05,0.006724276398613413,0.023749020645800967,0.2602405412824673,0.014241159829697387,2.354518119319724e-05,0.004330314324565937,-0.013863228040304027,0.03753599627770108,0.04036135261023671,0.0001290997449610511,0.00782938684613697,-0.0011311815867425968,0.004243482202656838,-0.0036110155497308784,0.0004201824538067948,0.002553258552751188,-0.005749519226207513,0.02693853732102492,-0.034205213751549876,0.0001222444962957353,0.009121439906363153,-0.002421937384877589 +2022-05-17,-0.011098452501470141,0.07987644084388773,0.0026669297956303842,0.00014693670827572018,0.0029118691531931995,-0.0064351918603828065,0.02286560016817055,-0.001973586873295045,6.752886045689921e-05,0.009018874980594258,0.01846606478927212,0.06364307126920002,-0.00910986247054777,0.00013422098756848868,0.001956662711395385,0.02417553851248446,0.019833695476041326,0.041441144307820046,0.00041137734625805976,0.018501558385921577,0.03391916256216824,0.07355274209457278,0.00880263753815174,0.0002412926124321043,0.009189982586688196,0.005531183747522155,0.013557951054585097,-0.0669340608485449,8.907806288499726e-05,0.00026496997866371874,0.028825450038572377,0.11036184689302056,-0.058893332772842255,7.663849928730759e-05,0.03390709401474653,0.02010368481135082,0.17266783937325095,0.015609160752918641,3.992664575469366e-05,0.018520848478303507,-0.016211639634847105,0.011863591708913433,0.03373328116646042,0.0010537935502333861,0.006938365978668325,0.01486370128772739,0.03498499058775163,0.0015263159811381496,0.00014856177983765614,0.0016624871750961653,0.006739576490178564,0.005014855321036709,-0.057787571408473036,0.0006568989335426226,0.004472445576265358,0.004914236398478502,0.07177382746255793,-0.029881488543149957,2.040387843563028e-05,0.0001777704448960827,0.03949651885928671,0.10874969151203875,0.04837577672191246,0.00010789015665616402,0.007859851917532976,0.010855727875260106,0.05856613327864824,0.0017170773118444429,5.217641250722278e-05,0.006581537027620939,-0.01103425339405773,0.009201074292374547,-0.036084860749425025,0.0023389847391443817,0.014133544325210464,0.07316378024442106,0.4843013616559524,-0.04883145349877943,0.0001243175819582303,0.016476504949267213,-0.015678512756138095,0.08855806089581039,-0.03865563591794519,0.00027414794647520564,0.005427590478826716,0.04803609828212437,0.277495932833777,0.025259240616708,4.8760938796817805e-05,0.00959097576200305,-0.03527246793265046,0.17832118081245144,0.015753244107522237,0.00032600159390618077,0.015586317285359752,-0.12675176892984197,1.586867397342641,0.24240952790844733,3.314695378199133e-05,0.003741880703044621,-0.02822444232877942,0.27399216702523504,0.0662709992720493,3.4416676644831315e-05,0.002497522519773352,-0.003991193500472324,0.01064585166684112,-0.0013430359413439175,0.0001207661242880641,0.01514078461237777,-0.0293570332699092,0.21435817057577555,-0.06100381008319632,3.163475673538694e-05,0.018251228285629938,-0.0036721296742515085,0.00957680038225457,-0.016224788162128516,8.501096698987251e-05,0.014850924771854509,0.016170731682147253,0.05220011512945112,0.0488279123274465,0.00014164681243055327,0.00018796767003652869,0.060634351464926205,0.056732054213836244,0.06198368680607756,0.0006108939005194321,0.02873247750735124,0.019940192632649314,0.0812542566457752,-0.15077383847499093,0.00010329260660719769,0.012383598825304846,0.004806572399620235,0.01662938721823019,-0.006469318656973259,0.0018551473783667235,0.006185089467119865,0.00681219951877641,0.07073642698414603,0.0001574588005203067,2.4764321610162223e-05,0.004964712472348138,-0.07060475215303169,0.15461806141418974,0.12183474041668814,0.0014929490225497099,0.0007958590443245201,-0.022067150991679926,0.15854609659448685,-0.003630721823656163,9.268647288162882e-05,0.00736594050429512,-0.006101279287790795,0.010018358214351887,0.010357809041109228,0.000143737383672616,0.007534263156555378,0.008007067547519234,0.011440934612536533,-0.05350009921297752,0.00040171301495862017,0.020008347101791883,0.03780559294273281,0.15701678304551403,0.010518465187791844,0.0018662091729640584,0.047610270415311906,-0.01301306958617251,0.051184132128585864,0.011166446416247236,8.157081071812072e-05,0.008619096793169478,0.01407625410498671,0.022547606605962955,-0.03471771061723814,0.001551900385366033,0.0033791006969719163,-0.010823270644434647,0.03554012628520261,-0.0669686419522864,0.00012065785165166181,0.013266631595839348,-0.05944598421734509,0.13368727596518032,0.10897052903814562,0.00018025728429405192,0.02888083009715806,0.020209948396625193,0.07667388185707842,0.007538355628773472,6.433268510774372e-05,0.011490754518813534,-0.058125485600557525,0.1997272844953299,0.06562710067030203,0.0027583365536547185,0.0014341929987730063,0.0041925911494816665,0.020725267634976997,-0.07902974718246047,0.00010062894890773551,0.012513979491085766,-0.017156060952634895,0.10057101387823404,-0.017584677942790273,0.0001237102078507805,0.013855536473376999,0.02860928133974789,0.14870138658662552,0.0009043622172036797,9.099984007665837e-05,0.013945885558543092,0.0009426136018500181,0.0036690517150790064,-0.026052851157027986,6.45694763055481e-05,0.025080329983342198,0.027454326731937144,0.05379315506493887,0.005741753966037497,0.00024883597895474803,0.0039683371900791995,0.012858195295975205,0.051981073835100505,-0.09513230258807621,6.151048432597188e-05,0.00042303279019079913,-0.05358363030980268,0.6077072473500382,0.1812847011079161,2.274935059097856e-05,0.007258983938709518,0.006883661068690195,0.021697810431829077,-0.008097892458946954,0.00011089514491465139,0.009959129901286523,0.023963095820942106,0.10092732501691512,0.020638403682766766,0.0003742502787071314,0.0062658516354490695,0.0007309484430059493,0.0036241769700700362,-0.02036072476982521,0.00011551786270204019,0.005177913702889457,0.00028037893809198605 +2022-05-18,-0.013160160353834199,0.07786640075950792,0.005429027130270284,0.00017873008601440718,0.0026185396941810777,0.004719711397456737,0.01818864381323071,0.003244141984250715,6.2262370486705e-05,0.0009736795468195897,0.0038302182834227443,0.01126247445271518,-0.031887576751560336,0.00015732107693052153,0.005113483923100426,0.033556240778622286,0.028742574007504216,0.06968378293862665,0.00039401748990128385,0.01751034607050375,0.023702442357179117,0.04450337039341797,0.016890008681989744,0.0002786749735202506,0.01599541714729462,0.018120195109979993,0.04908498359367571,0.02449938999304325,8.060481012882664e-05,0.008440403923480637,0.04027708476368153,0.16005817458676458,-0.07456311835764269,7.383631681484808e-05,0.011316867473870005,-0.027447325414202823,0.2478457685115271,0.014081801533229136,3.7976692426578176e-05,0.0022450720078994206,-0.0008904690188897487,0.0007268439572440771,-0.002833729056130796,0.0009447619993417874,0.005529116413908583,-0.051960352804980715,0.11158932714668394,0.03459380662998576,0.00016282133778363017,0.003936239802926419,-0.00825392737941987,0.006323822141796997,0.006757410436169685,0.0006379774889512601,0.002059529460123614,-0.014694528376656016,0.17417538483521822,-0.076362159722612,2.5141527636830832e-05,0.0028123305375114312,0.02454841946701006,0.06690179233215006,0.02478059161530132,0.00010900259082609856,0.018229044141093734,0.0025295717907597853,0.01389744147236502,0.0004896838694994699,5.123585336640766e-05,0.008670307896141132,-0.00716064725238178,0.005791543453139638,-0.004034915162845375,0.002411464836338731,0.018464544607340462,-0.0322235638233974,0.21184055070280722,0.019426331760108217,0.00012517470637484295,0.010284610338236822,-0.00882703408011242,0.05253925532188054,-0.04856328088575447,0.0002601591604122574,0.018909098097914974,0.004480399599718808,0.026744097479934472,-0.009949509541841468,4.7189976296718746e-05,0.009149952131119212,0.01254815937223618,0.06842657584687437,-0.04422344893696368,0.00030223309986523805,0.018085239058116164,0.053585077106518206,0.7251253839081232,0.0468421657064335,3.0666271959715755e-05,0.01396021618444545,0.0161390437534163,0.1659545507299342,-0.008248583447302614,3.249154344533394e-05,0.008261703551654042,-0.05415673983838211,0.15421956536942577,0.07810142967618587,0.00011311906154970046,0.02247413106481408,0.024164173985237777,0.18140374931778272,-0.00039397669377043583,3.076933223505003e-05,0.005846836352069551,0.004828824268297853,0.014360583531476389,0.007099813376524045,7.454983654124533e-05,0.002885788656583738,0.023861285157575893,0.09866653166026089,0.09471185522605742,0.00011057897612066582,0.0015293764026444538,0.059991441138523935,0.056840958537437716,0.04313238746533366,0.0006032585184834092,0.013363785994047476,0.0012050480798314763,0.00462034400179483,-0.13877124440235078,0.0001097781916585573,0.004538795322985789,0.03676215950872436,0.13188245635274176,0.015639610792332143,0.0017890940128850359,0.0025474604905536213,0.04090739147463088,0.40915317810249374,0.024314086450305153,2.570976181967847e-05,0.011812878177097254,0.026348654302486316,0.07290046424968065,0.010601586550011768,0.00118167872150631,0.0018655652130597164,-0.019701491101776776,0.15598262879367283,0.017067388494856457,8.411016885025688e-05,0.003977308581668577,0.04083205806588063,0.06573628300513036,0.05845598975265299,0.00014660254609429984,0.018799465660320903,0.028446922827676517,0.03830012359857023,-0.14168418472110908,0.0004263232646266173,0.003869065477245247,0.027273839566094093,0.10801265103011284,-0.04569605258322214,0.001957140469262007,0.01935793033717776,-0.009354938741317917,0.03725152050854973,-0.005779165123121261,8.057258813466319e-05,0.015818037629526806,-0.0074145968636958395,0.011648454663905848,-0.028821431409590297,0.0015823276648976629,0.0015003652622869344,-0.02409366919521656,0.0765316022110244,0.03647837411436659,0.00012473208276346927,0.000832593498767609,0.014071913554328895,0.04165786131000996,-0.06689540818329426,0.0001369356617397567,0.012058072881039836,0.015051181411944017,0.056545123124873975,0.0017269573877603786,6.49664837016965e-05,0.009087881877976246,0.015414292572306393,0.0560708682027397,0.007436455956396515,0.002605579778433425,0.0038254811948502943,0.007437217919051092,0.038170442535605316,-0.050794071977509486,9.692233818806394e-05,0.001307199222013969,-0.04271715487056058,0.218914184931252,0.07274229752846621,0.0001415106742757789,0.0096961922609174,0.0033998685019553413,0.02208762830050481,-0.02990481675286522,7.280508839724722e-05,0.0016858546155707984,0.019723381202341187,0.08742357797838386,-0.05614275682812051,5.670223618410546e-05,0.04006922492239533,0.008028824009612839,0.015047629895725957,0.0005009159094634454,0.00026014365122863027,0.0019670889003060017,-0.03716694082096684,0.13592566092600786,0.1759861257116713,6.799386656755522e-05,0.005276236016036581,-0.03124687263244664,0.41600100889486197,0.02392885374319874,1.9379539753270482e-05,0.020375052920807643,-0.006783028977470401,0.022053127875457858,0.007017544725406059,0.0001075133616313507,0.0027093720915653185,-0.022251870521056833,0.10083760505617088,0.060065048480614086,0.00034783395326477227,0.009215704735591357,0.007873302784661461,0.04201638756707899,-0.023993278186006307,0.00010732725921066134,0.0009252425861672635,0.0043616557646117 +2022-05-19,0.01638439986540281,0.12554270723190106,-0.05654244217684028,0.0001380147912136738,0.0021333507401450997,-0.0035892168007337823,0.012802191689794512,-0.017119033630625564,6.727069163741112e-05,0.0035912653347762464,0.01603521711851699,0.04844869414627575,-0.0786929688604077,0.00015310521134941524,0.012776968120259436,-0.007060835698732735,0.00699717137550222,-0.04346697680211942,0.0003405661276688465,0.00556001356221039,-0.038553012654601745,0.08629038527437684,0.05525586952079416,0.00023377264201284096,0.02674635551796362,-0.0053333977750908155,0.014596573233215466,0.0013089793250594193,7.97810604567019e-05,0.004221268168149832,0.07680988714586078,0.2667668005834297,0.087576520797839,8.448414281376644e-05,0.004806277699076137,0.017279283347106673,0.1507302082885891,-0.02820136949754828,3.931190064236541e-05,0.005872041304867227,-0.018903818790246812,0.016709003020025044,-0.03523252350893215,0.0008724565242567987,0.0027338276127553554,-0.016935021412878542,0.042746440175545644,-0.16092969798328632,0.0001385312276676581,0.01350901508804479,0.008073570160762078,0.006075985046869196,-0.0018813321226864698,0.0006494912215763893,0.005827641561677347,-0.002750904377289424,0.03327285791023791,-0.004748850745124066,2.463815473594186e-05,0.0026454246927641208,0.007266479054248096,0.021807944661730035,-0.0479494197404056,9.898293505726856e-05,0.015088796457362344,0.010277680168329043,0.06167730408462523,0.017196303764092372,4.690633863935779e-05,0.0048078164714114545,0.007901454115432782,0.006580254019380634,-0.00734400809647015,0.002342002400604318,0.0003053861846412495,0.036278057331804246,0.20279837804990605,0.013979317747412687,0.000147208081687976,0.013363985583238152,0.02769085731119707,0.15900278752919678,-0.00034770444405723803,0.00026967450828257095,0.0012511566475504612,0.08241929676653224,0.5026086128504362,0.08756429850602816,4.619127330170247e-05,0.030753751525657232,-0.056193262067019016,0.2835754218266205,0.05611332803224653,0.00032658968559539167,0.03280172435970562,0.020410532839055574,0.27526298881568395,-0.020122808918235074,3.0770655832165334e-05,0.013857393651769134,0.014934029855387155,0.1296932327276017,0.0012014159548674982,3.8471702765449016e-05,0.0005103671926918931,-0.03854138532162854,0.10873842075986728,0.032960871808229035,0.00011417395760926991,0.003499133661465352,-0.02697629804666209,0.24206621204185344,-0.026237634237426956,2.5741897289727803e-05,0.0004139620306465217,-0.004154125979408423,0.011029722920305147,-0.00029760984777969486,8.350114729511764e-05,0.005013841294915656,0.023285283892086527,0.10430753934593169,0.06188837928652718,0.00010207383512825039,0.00043820909780167144,-0.03186899850209205,0.03113359501954414,0.036951295535748996,0.0005850792624944774,0.00037254439551722167,0.010537772373426194,0.04796022887123344,-0.02495177493963961,9.248122532584981e-05,0.013898282501548608,-0.001182812890164622,0.0037271735555370095,-0.003323569658278291,0.002036833866294901,0.0026985802609226497,-0.01222791920208015,0.11106331004968598,-0.027972397069480764,2.831158234697785e-05,0.006028650302580223,-0.016823200035948765,0.052273127982190276,0.00513392216956484,0.0010522074925465332,0.003789114198723192,0.00010179265950742167,0.0008631697483555378,-0.008024409795220485,7.85318617351766e-05,0.00021222768529906007,0.007541062265209768,0.015103359946690912,-0.024065294425986056,0.00011784314928844154,0.015052128071566483,0.026044603554836416,0.04626336474340082,-0.021483506154474034,0.0003231353335644494,0.0008791739486789206,-0.01890987520969188,0.069407217693837,0.0033205832327348993,0.0021117104481463015,0.017815586413658716,-0.02260142275027434,0.08053394220507755,0.0023554448215193716,9.00424265722039e-05,0.004399666845016784,0.04533799569087976,0.06621953511757986,0.024583207369421264,0.0017019758018109476,0.0003427028461633791,0.027819189345676985,0.08967127109725928,-0.023072825977256014,0.00012291564968140887,0.00047116703666199254,0.015347174206767646,0.03862710077938739,-0.008161975797116834,0.00016106333457432256,0.008977386075547102,-0.0032996272539081235,0.01378329986619637,-0.026667344895232807,5.84286164259342e-05,0.010537323705101569,0.022401262698199677,0.05995486875161782,-0.0018980011516501602,0.0035413275689184964,0.01845095375902499,-0.024937194247000367,0.13680753415010213,0.01142455096042359,9.067303314871437e-05,0.01925525153742512,0.03594940405224351,0.1888683540512628,0.03973755360219731,0.00013803629187685322,0.0001239004064451522,0.023025480141129026,0.14560765343293677,-0.041833622025329135,7.479510753133546e-05,0.006170093112148798,0.024522899884967846,0.11624374244316676,-0.023245680613962115,5.30212102343551e-05,0.010266790465224846,-0.011358141112934657,0.019538255656785738,-0.004473464761723097,0.0002834332953054698,0.012677956227263833,0.004715248629714182,0.02111693479941991,-0.002117071978338482,5.552493955159559e-05,0.010071936645901211,0.007865629892167809,0.08281468234177618,0.00024186609174801476,2.450515492161929e-05,0.019417802263613407,0.007308975307923726,0.026137436069316695,-0.005583777621013481,9.774678360455452e-05,0.0015421417355887832,-0.0004045806186463815,0.001446513889084851,-0.009299997858618111,0.0004408698881148831,0.018619369784879602,-0.032865101464932954,0.1743941981005966,-0.027971346058903706,0.00010793809304527734,0.000497472476088164,0.004520223466338792 +2022-05-20,0.006219843597836667,0.03923448767351995,0.0013432527786522896,0.00016764787856155856,0.010149856792465179,-0.02965286691105929,0.08879433836548069,0.024440508486008514,8.012940897286689e-05,0.006821074300371189,-0.038516283778330974,0.1279634229821343,-0.0004741545712716437,0.00013923734500415104,0.004721252451096243,-0.0027587577777547978,0.0025380576346349694,-0.00016690688204628148,0.0003668427555326213,0.03149340715460563,0.03310283225582535,0.07668267612018936,-0.0026242496910090308,0.00022587369939231213,0.004922857820293284,-0.01998246981608694,0.05703860068806237,-0.026677690403454656,7.649394212176603e-05,0.012291814759588059,-0.053770026833906075,0.22508296612715725,0.09677069728206937,7.009507080814373e-05,0.002990762002943935,-0.0238793143730076,0.23233996528869036,-0.08382560918506965,3.52449214867216e-05,0.012693574212383787,-0.0006570529149208386,0.00057266301603249,-0.04976358114124739,0.0008848017984793743,0.000724392253816051,0.002757062216755566,0.006642185814875509,-0.09982455095864058,0.0001451434467799301,0.01566310892495362,-0.029049313200704842,0.021320190185171336,0.11137406466272305,0.0006659922153431931,0.0026026118175540183,0.017760530805610394,0.2244870104489354,0.0253980480246712,2.3576944130814174e-05,0.002106303397021692,0.029232881503191737,0.08326025010264539,0.04015182679298182,0.00010430015477416588,0.022491511317657135,0.0011330838773283554,0.005766947928438178,-0.012256735526731444,5.530671301683841e-05,0.005190723299364711,0.0010888224744628118,0.0009629136226434278,-0.0045256498915348066,0.0022054271583379407,0.010668467695168672,-0.007885261435151638,0.052954309464202036,-0.00021700535668402388,0.0001225369018113086,0.018435153010154467,0.033204268043902495,0.16585581035970554,-0.0006973273321343069,0.00031000696576557785,0.018311468041729832,-0.0044725901501380455,0.02451073507726325,-0.11003026953867835,5.140007149455606e-05,0.0228279575643956,0.00517605996294225,0.028114649028356836,-0.016511467385642943,0.0003034264527720422,0.003794815687309186,-0.006340322016488489,0.07940307757148134,-0.003960315079375323,3.313631510576303e-05,0.0017958527620900355,0.00943447854698235,0.10250095733314538,-0.006215919128056066,3.0751881235663845e-05,0.012336977923115342,0.03726095189658725,0.10207653772072951,0.10117531162860867,0.00011758468777248925,0.018383434228906575,-0.026094006374293467,0.19733743764533818,0.002342254370400113,3.054384136597716e-05,0.005691199606228169,-0.011473579628946776,0.03510117219593069,-0.02655884771364406,7.246940514810335e-05,0.003016018880027504,0.016636904272162086,0.0715698848361776,0.021813994558879803,0.00010628960544730226,0.0002376264182891931,-0.05913623338258883,0.05126696525066466,0.08122247929236431,0.0006593129565681846,0.012083738393235366,0.02346970465298397,0.08980045990393391,0.0024471017056092,0.00011000567053453981,0.0032193181868782803,-0.021775191867871947,0.06372458190483053,-0.11292480884637296,0.0021931794622438014,0.0023721481530757293,0.006449067661205664,0.06516341508184582,-0.04079402608310245,2.5449267811734184e-05,0.0013966373435911638,-0.015825145911392544,0.04898406646016825,-0.08189652324687877,0.0010562437620325145,0.008584464143829011,-0.012966480885229927,0.10572644024640414,-0.009567477453831125,8.16703012266033e-05,0.0042034872635537315,0.003181019933029579,0.004720905837387393,0.0014394534745124244,0.00015903270232590802,0.00544374473549674,-0.01985487298487178,0.025256620681381178,-0.04844870857206146,0.00045122773414373214,0.009359958046367864,0.017953227187386903,0.07391415017703876,0.005193948007873261,0.0018826313215725725,0.007344461708364038,0.034477979178238305,0.12689120819515246,0.06223293781557719,8.717674331327132e-05,0.0038418537901314617,-0.03412908711369061,0.04845480170400782,0.02054744231353484,0.0017509149185138016,0.017743779157379392,0.025996519209272317,0.08411442103805003,0.01729818068864053,0.00012245056087580893,0.0006641395660089135,-0.011130749991119933,0.027393271201356376,-0.030179460185693424,0.00016471794182138004,0.004060490015513386,-0.005624900756191346,0.024616298631618405,-0.030122562708219558,5.577069254111472e-05,0.007674905499158538,-0.011987359463060565,0.0401805494345906,-0.040432585455063744,0.0028276504105554214,0.024721165025748396,0.009876101823801687,0.06092711733362608,0.00037631242006891163,8.063349770174436e-05,0.0019010340113067262,0.00371340598367398,0.02040620883578645,0.0023977055662794382,0.00013196868536677044,0.0028668031008089153,-0.020452767743860078,0.11990334582581014,0.023062010172059843,8.068066764411291e-05,0.0022227769367897847,0.021716983840166112,0.0925697527965258,0.005547614555724056,5.896275929518541e-05,0.007772699475805027,-0.020990820216852887,0.03716307091566241,-0.011109616795762592,0.00027538939310894526,0.010789911065855442,-0.009254818779831126,0.035326557321965595,-0.018170455062881074,6.514498356503787e-05,0.024216879039441752,-0.00513445173655064,0.060046133053750304,0.001340996915350123,2.206176819428853e-05,8.975421434932556e-05,0.008147641877653496,0.02422644196137528,0.007975881614978746,0.00011755774870420268,0.0009580279180035599,0.0012111715494611847,0.00469283536950373,-0.017091548062577972,0.00040681626918913296,0.0038841574297410206,0.013659097370299354,0.06285264952270019,0.005027751603815307,0.00012447158134503504,0.007943512674127212,-0.0029203679956844135 +2022-05-23,0.015390042760264712,0.11116118969583429,-0.029842744627071066,0.0001464108372894391,0.010567725494830657,-0.001007089886182304,0.003361820100303473,-0.0037938691944859474,7.187937490177212e-05,0.003495968659997287,-0.009895847946364476,0.030830209063573782,-0.0062526139547316555,0.00014848197935486685,0.00550665369851519,-0.014512373019975005,0.013364231000651735,0.006781750555611577,0.0003664901571696234,0.0006344040981406253,0.023086879178351637,0.042865909213589966,-0.017603187468318425,0.00028180647178379726,0.03761907522448924,-0.02272874116036649,0.059638653819778426,0.06064273641322067,8.321359613776127e-05,0.0010923377723337537,0.019006730375949434,0.07301596967944135,-0.08824803612107,7.637995743380832e-05,0.006438401721675346,0.014276889801357297,0.11655940940317948,0.00014949689280867518,4.2003442309869094e-05,0.00848639590229732,0.015063895914514505,0.010532373240980128,-0.11710052925149679,0.0011029500680678956,0.005348410000168191,0.013389640822241498,0.035155801279437085,-0.08764762702101825,0.00013317840603179056,0.010065382659321402,-0.004768989071451284,0.003501143768206399,-0.0034071359058527,0.0006657953241562309,0.00440237698212987,8.627165824302382e-05,0.0012019268872705475,-0.0009527342402836271,2.1390103435547593e-05,0.01350801773760137,-0.04256278866613074,0.1339935008352899,0.014912122259272825,9.436205244181755e-05,0.009319524851195473,0.013450628260096903,0.07204815992600622,0.013095288480705833,5.2551061725544386e-05,0.00036255612941669377,0.0260806132354074,0.021415932199092377,0.05672514315900929,0.0023752197080864103,0.0006586324852511298,-0.0006515356808307583,0.003774683206276653,-0.010098951735395663,0.000142039718630055,0.014761074642207134,-0.029585343397975965,0.1494645811611746,-0.04123661150976874,0.00030651134722026456,0.014769321566972901,-0.024601462537771474,0.13532059020865456,0.0031010525365549064,5.121038006350297e-05,0.002948413796795327,-0.060996796874164184,0.33146680161834297,0.05444797997302644,0.0003032870027727195,0.015384241751894751,-0.032174106226091806,0.3713939379039231,0.011192793670471612,3.59502497609035e-05,0.021067508226218272,0.0025101813134793976,0.028841739251580175,-0.01873670797556556,2.9078055095514002e-05,0.0026117942791124902,0.017766344929268724,0.042273249686265946,0.027225191409006578,0.0001353802184696483,0.020931919513985535,0.0028624316799386257,0.019403582300143503,-0.1391981345072636,3.407576298775052e-05,0.039024269344111434,0.01022486526656615,0.032702792097254296,0.02410320324389235,6.931865746549528e-05,0.005515995831483942,0.0017627836303751164,0.0067153302334345645,0.004464790342028586,0.00012002735341690309,0.0006967750103000133,-0.00903579221022471,0.010911465561989426,-0.0005833214028147056,0.0004733242008033835,0.019564355158598497,0.017296985983779246,0.07689845123741007,0.007002166677390378,9.467577078358382e-05,0.003007463867425894,0.005376120052792129,0.0214808123755068,-0.017703639490915916,0.0016063398416642798,0.005309260097468037,0.029414155673543205,0.28836892848099077,0.02560894474340458,2.622950641708926e-05,0.006515910169432823,-0.05786085739358814,0.15409271052913637,0.07326737935472037,0.0012276485070540433,0.005977935220959757,0.0007026824133097894,0.005160187375841188,-0.0070541867263477324,9.068161695448531e-05,0.01350164010293658,0.015225559927739822,0.022318992191469773,-0.05268606907229251,0.00016100674828802133,0.00920552132707813,0.027405586239638253,0.038317735805561234,-0.02243556066304878,0.00041052836700494836,0.009497754780647771,-0.005235654047048181,0.021249757232340558,-0.018581939469935773,0.001909709508948606,0.0015271167663921462,0.028068866068999547,0.10636911863193785,0.03208660799136761,8.466417444893264e-05,0.02988763376106103,-0.03308780217490555,0.04116689458921241,0.022202047370198978,0.0019980069977848145,0.02894189874386455,-0.01657481869025138,0.04674599625572322,-0.004413240514921085,0.00014048190989586284,0.010101343849753404,0.0288751299288102,0.07391360363909688,0.016220692751429126,0.00015836527033480594,0.0016740711833766076,-0.027888944062655477,0.10666931449424714,0.050451222311860944,6.381260765833772e-05,0.00034966826973893955,0.02296937729595034,0.06148900833595938,0.013508518623493806,0.0035405423250845234,0.008542117328204783,0.01079979936623568,0.05116088479825296,0.0033298480411910556,0.00010500699040728813,0.011184012024180928,-0.022988281440372346,0.10564272272194351,0.012867871873539674,0.00015780752339639446,0.0005232059433488468,0.001287156980429764,0.006896073305175949,-0.027811965958610466,8.828325671036527e-05,0.008706885830763877,-0.022471072405430073,0.11424620411906956,0.009796319178693587,4.943441676500726e-05,0.02123428510573855,-0.01320384715655981,0.02738968996409966,-0.012584997871340249,0.000235040534571674,0.007827697475035967,-0.018680061731147637,0.0819938003743933,0.026209843727041892,5.665153304003864e-05,0.00427323709402779,0.004513222311687993,0.060451247820874,-0.0009917627171357852,1.9262504005489056e-05,0.014610577207907736,0.010290279825550874,0.03603069521519238,-0.06772282922254942,9.983056001668442e-05,0.0048122974641127995,0.011446464910057866,0.05551746393477858,0.0023428819267403327,0.00032498980183702823,0.004530511728466174,0.032218368704272624,0.14907317486406577,0.030553116723235418,0.000123787229300779,0.013485984461285034,-0.0010042492366789525 +2022-05-24,8.767424108467356e-05,0.0005712553279097631,-0.03430372437919823,0.00016230366828241932,0.008633446512342132,0.02868318418629522,0.10404325631686039,-0.01801093329888677,6.6149101889537e-05,0.013311855099589695,-0.03275977460848197,0.10059214424193762,0.0005981763867548071,0.00015065170246047425,0.01672859445708934,0.011423044947688985,0.012139697197390801,-0.035423772859228084,0.000317571768671048,0.013335300068262137,-0.00771602111346162,0.015232494113845628,-0.009968745403741663,0.0002650453325288686,0.025912541206078575,0.009672618871503448,0.030663492175842737,0.014714250906523724,6.887620367671637e-05,0.0018255463405613204,-0.08230208804155376,0.28313650620056346,0.21575984994773975,8.529132084696653e-05,0.03299711473226627,-0.03667275342857681,0.3675069244360633,0.023960282773728962,3.421973221262176e-05,0.003160489519668486,-0.010518738771949447,0.009323355466146972,-0.00955416175850057,0.0008700339780124817,0.012601317842825732,0.023336613825072093,0.04915069313281626,-0.006707415765491148,0.00016602369652714117,0.0005069512765891815,0.0030047975345679425,0.0025511345850013673,-0.0021049736476827126,0.0005757132198681575,0.005199223324080881,-0.0022417804378881295,0.028537263258981323,-0.026776396196518476,2.3410114770833385e-05,0.006836511394005074,-0.007143719168539001,0.017906099427875327,-0.022632473864298407,0.000118515299826127,0.028072944664869415,0.0016082123372805298,0.009487382460138114,-0.035804501206139816,4.771542532089067e-05,0.006909036037088814,-0.023010700093627986,0.02346054947416001,0.01017029476713074,0.0019129984807607309,0.03585652636556663,0.024189081218531035,0.15976434391137898,-0.011181894527378618,0.00012459241967728563,0.05303470613985799,0.000987152977068036,0.005670519307739264,-0.00540835584434634,0.0002695689444072111,0.017702953474720024,0.015307675274535595,0.10583707244710241,-0.007235363211711186,4.0741065086365505e-05,0.024239249662074247,0.008214728256729116,0.03610740308258074,-0.010234417600584968,0.00037495897626833256,0.009844638262962214,0.028188947501822922,0.3504641635718293,0.012481719832803656,3.337839700844073e-05,0.03416037350177181,-0.007877576264619485,0.08057348460032498,0.006082951395729728,3.266496365107793e-05,0.01392601938557578,-0.044894533732896834,0.11546534988283852,-0.001336818265694225,0.00012524619630431533,0.00014644894243763117,-0.11033899441536091,0.7762143776034369,0.26918119042222544,3.2835203706375397e-05,0.0020359217184823977,-4.3118638168480825e-05,0.00010943111770808357,0.00016262040873755193,8.735777885031074e-05,0.005144890465140873,-0.0008454966538746986,0.003642177429310097,0.005916964879955374,0.00010614496302119692,0.00017814249623740756,-0.0031645918062619674,0.00339112397473246,-0.008117355510933358,0.0005333958020842355,0.030967623974797784,0.012499879398744139,0.04526776251119096,0.0049339846130898105,0.00011622586930996729,0.006240676924568766,0.021487142272721953,0.06621369033754607,0.007375682874283977,0.0020828118538889096,0.00817368131060808,-0.024215534838940796,0.276493617386468,0.030617871207533714,2.2521180452692055e-05,0.01063911536392915,-0.03611520240126102,0.1104033916970107,-0.0038405356999204224,0.0010694953664991832,0.004399807123593327,0.004902268038055245,0.03600374188424874,-0.04291674936933086,9.067238866898293e-05,0.007588267533768495,0.003845219211575227,0.005599227736472334,-0.0333488060780566,0.00016208333269935378,0.010092164654340045,0.00025045917522277116,0.0003837325081081314,-0.001544225056901614,0.0003746383807194123,0.0011847454542316819,0.002438737680018883,0.010121278369466706,-0.0008342075630326898,0.0018675836363481059,0.0176151537162324,-0.021265483155457985,0.07470109386551069,-0.037898986902951605,9.133530081680292e-05,0.002764558471833528,0.06491205269480775,0.08264283658297912,0.003681744416678297,0.0019525282200573845,0.017399292690819065,-0.012930118396488412,0.03634194651181552,-0.04383429108237535,0.00014096469409768527,0.012338532782140657,0.015911042478676585,0.04177397603233707,0.004088992034744048,0.00015440209831312084,0.004325530908319801,0.00360017855677135,0.014935579692857552,-0.021826797166182434,5.883230749026914e-05,0.0010339281032649738,0.09172567374634272,0.3061880769669857,0.1725119924469978,0.002839361525811302,0.005342072705259838,0.008116259580422908,0.03477107301444228,-0.053080749625510217,0.0001161123477082169,0.007484961214626875,0.009402634779534376,0.05048882834893583,0.00405013281289112,0.00013505636582766034,0.004551678375938657,-0.01861977755540851,0.10955560668326898,0.040244506383860436,8.0387510413516e-05,0.0016283089603137003,-0.007894179751447022,0.030899074420497146,-0.03893882634949207,6.421092638865083e-05,0.0030793642972519585,-0.03998613650104631,0.07260145776721313,0.03750372389279249,0.0002685304238140218,0.018116826569012794,0.026179249561465185,0.10141060907762506,0.03290648833248904,6.41930747070797e-05,0.0020506884087437174,0.048056998508927626,0.5928876195272261,0.0990918395438835,2.0912961909540294e-05,0.009950451527018093,0.01369970697146291,0.03766965402693269,-0.008635851432687983,0.00012712431067920526,0.006187064697733255,0.006893286266904731,0.029642165190431675,-0.08265000132179506,0.0003665594009780157,0.011123459996656596,-0.004534239669057981,0.022007990289702274,-0.02731266199333011,0.00011800376999071682,0.009468764493506102,-0.0006013511767692102 +2022-05-25,0.012180383205696177,0.07510457516377482,0.003959299527853562,0.00017150672023186854,0.0005850092661594814,-0.030248172409217053,0.09004698797730626,-0.02819970524580893,8.06010085038273e-05,0.0003884035117654521,0.021356655653305735,0.07078928644103927,0.040500342119854385,0.00013956062804270847,0.015029947116119461,0.027218583211356794,0.02604129134202114,0.02925552912196528,0.0003527531133145828,0.00216060391308044,-0.0017198528214245885,0.0034448090237690727,-0.0023356089727947543,0.0002612305142586201,0.009636027766228333,0.003346701089598091,0.0089832385433619,-0.05498532440405189,8.134497550548618e-05,0.010398724976389637,0.030210261882824403,0.09578006513767767,-0.04424456593228053,9.254846440465972e-05,0.01582795146593703,0.012862278861594956,0.12115848263561951,0.022760149604026496,3.640514036844723e-05,0.010714282549669149,-0.01629111152065813,0.012896627260072235,-0.2279740945705587,0.0009741354660232114,0.001996951314876263,0.01567363912705237,0.037235803913360094,-0.003891416558886993,0.00014718752244889476,0.029160905408031002,0.0032187088565702494,0.002264722151130027,0.0009198513659968479,0.0006946901248486554,0.0017961173322498555,0.000306292623859624,0.004177293021283957,-0.002924910707287499,2.1850651338237732e-05,0.008501560397896757,-0.010174710000319146,0.026729479465117497,-0.06756902313721115,0.00011307916069200809,0.00018524099238735755,0.0175887984614073,0.09996043942011423,0.03737131656529383,4.9530171799918125e-05,0.0037726136543067387,0.022943142476563008,0.023782324207124148,0.0414797928457819,0.0018815751964770052,0.0013762342953632695,-0.04865982466645589,0.34318240535766875,0.03442219557186987,0.00011668032593837383,0.022694018405250642,0.025999129694521325,0.14402202162774594,0.022155152111188254,0.00027953625310035723,0.00033830303489776575,0.02370968428434444,0.14304700919774477,-0.0072671982043865605,4.6688287538801536e-05,0.021594629652615226,-0.01726015531956791,0.10321973858132467,-0.11730431263618261,0.0002755933615383646,0.03149455566766769,-0.024379455806143143,0.2977268208752309,-0.12974138769317042,3.3981009634186934e-05,0.01603691595880177,0.00934940659444516,0.11716704574682392,0.00445742345826563,2.6660008065337737e-05,0.00319658899913383,-0.007716178708585693,0.018184671703879978,-0.0013108718850694389,0.0001366845943813714,0.024490930636146546,-0.010536497378290204,0.06846492709463903,-0.001052025298646284,3.554843529250484e-05,0.028327165808491983,-0.0020669738154319027,0.006035606021023293,0.00031573385241089237,7.592616671129934e-05,0.009759522895028131,0.021728433858328584,0.09074086354084814,0.03544590984700378,0.0001094899133440844,0.004355035398813766,-0.04087829878699112,0.0436854895640797,0.017988728202820492,0.0005348489752325631,0.0026354820302757526,0.020339052003828986,0.06432960529041025,0.018509061866911404,0.0001330778663368386,0.015578223014593946,0.02591807281615182,0.10191603630313883,-0.01224883059315487,0.0016322224822261295,0.0004184651097638274,0.0057431710000546655,0.04552042672994743,-0.001641872751886052,3.244349389547534e-05,0.011059849309092566,0.023713671489414032,0.06744186517720613,-0.0037088602951719216,0.0011495834327038023,0.0058882614171878195,-0.0014821505737639018,0.010796532082053174,-0.002010502172896552,9.141841559455024e-05,0.005876776707858376,-0.0009277792028483549,0.0013149646239827006,0.0003818503303286356,0.00016652366094693124,0.004632856398694247,-0.009614071485970392,0.013559047962783505,-0.07534699523690686,0.00040698843067645506,0.008939186290988636,-0.0182949162071754,0.07373705979020849,0.011522967679345535,0.0019230693646588002,0.012751064356095897,-0.02065489232958978,0.07990629090652954,0.022218521350493847,8.293394679627841e-05,0.012708054120924475,0.001469332230756571,0.0018519143328286451,-0.06758444627230194,0.001972315120199537,0.0249205637526644,-0.012555802716103442,0.03782494997014294,-0.06243480165009582,0.0001315170798583032,0.019615061094766725,-0.000710891099564755,0.002342219024162942,-0.011900438064118939,0.00012303706108064414,0.01511363511647754,-0.017603119117713086,0.07886498489261926,0.0036355460006680038,5.447777082270793e-05,0.007953165372837846,-0.06578802792172317,0.21461963314326354,0.06684572776264044,0.0029053300619789374,0.039664878686639184,-0.0006210778474858152,0.003372335481093901,-0.020513936940897506,9.161273273828003e-05,0.0003477803359641663,-0.0036452902171131953,0.02139412136660299,-0.02808753837306048,0.0001235658438220356,0.004407328716122948,-0.020379243296079368,0.12056630983243002,0.028529592508500175,7.994858547045269e-05,0.0036670199574108915,0.026408931669680873,0.11022407416418838,0.004352721772935558,6.021736784065999e-05,0.014586331913750502,0.0007566759966839057,0.001341538931364042,-0.0040540811837996,0.0002750021385720224,0.007431193805183719,-0.006141096067746873,0.029201792419597025,-0.02198815347002741,5.229386696426184e-05,0.01009989263383353,-0.005059606111858928,0.049597626612320596,-0.042106459833214045,2.63200735905895e-05,0.01888463635021392,-0.00482229877982785,0.014337493534975394,-0.022494375636177497,0.00011756819330199065,0.007813959752302342,-0.008406847548739887,0.02875635888092538,-0.011578143642365266,0.00046081567957495463,0.0059568821304876885,-0.05485713423679756,0.3022978934187372,0.027370722171184983,0.00010393690761344862,0.0002958704927117828,-0.0033123200021196297 +2022-05-26,-0.009411782812101884,0.06013678533989966,-0.02162164776762959,0.00016550772605544552,0.001338983030678324,-0.01075005920218437,0.038395599839538795,0.0012946921744785625,6.717998859456193e-05,0.006248971212341411,-0.04200215175321743,0.13450875509681398,0.0015893487230506796,0.00014445021446062134,0.00814008100345301,0.022410907060693007,0.019667200553521804,0.03390759653306718,0.0003845782726060789,0.011919725588897655,0.0341230470124958,0.08089515604755297,0.02303057520513435,0.0002207105330690576,0.0032001834106619963,-0.003532371919046818,0.007146786233205294,-0.0030142757220677297,0.00010792010800530382,0.008667629784473696,0.017460187444706392,0.07086109932806656,4.165850825585713e-07,7.229876376404698e-05,0.0044877020937893475,-0.0024424136362642046,0.019805959399738247,0.0005247703298420852,4.228846741206284e-05,0.012255150359140115,0.013044289448716852,0.009923317029739021,-0.001371853041810828,0.0010136974344076973,0.00397346883564094,-0.019103732664693965,0.04413772882202857,-0.0007309067699288557,0.0001513457174068666,0.0029769540301590744,0.012363252929538984,0.009406994991614247,-0.04340651422333381,0.0006424009871820982,0.0009527681559112254,0.0022918979134020283,0.03260559216616355,-0.03409908421414688,2.094719938725258e-05,0.011323504862472406,-0.02465156363075917,0.07187505901965777,0.013305030042823695,0.00010188665281597233,0.002858533256849061,-0.012232478042922948,0.07539678172750215,-0.09383178966107913,4.566920531727768e-05,0.0021205295107704298,0.0068419648958902065,0.006708887876787181,-0.06557668668952438,0.0019890847166712,0.018577418703982038,-0.029656253678780498,0.2001649551684038,-0.11109085631668457,0.00012192151543256446,0.043942480143086965,-0.004608595723045784,0.016422025570295793,-0.056280264188792804,0.00043456037231541115,0.019841611334943516,0.016894781489034772,0.09665140923020239,0.0014666584596719292,4.923856012816215e-05,0.01411726526677455,0.020109095994751476,0.10383960382344676,0.01041329155791332,0.0003191657879609409,0.020683648533869215,-0.016458010856398246,0.19641991344344858,-0.017711779877478254,3.4771390663307486e-05,0.007927823466168394,-0.004904436284471216,0.04227340718893255,-0.0018561590666240962,3.876176578195758e-05,0.0015885532760294215,0.05008090448577612,0.14579586398964417,0.11029433654745432,0.00011064956624128676,0.01045824100882541,-0.02939197105261557,0.17061631196828125,-0.02005748416881378,3.9792436992655957e-05,0.002060716002218931,0.004726568909122456,0.013769553038040857,-1.592029299079654e-05,7.610330768941106e-05,0.0025328605538167803,0.00732032705366955,0.03455219129345649,-0.0006237585246561103,9.687316405404814e-05,0.008129288131439358,-0.01300020562147893,0.010680849554165173,0.004808260810239495,0.0006956967668868149,0.01662702212851074,-0.008237769777569333,0.02777725549088472,0.001000678468771166,0.00012482636566207882,0.014254703235182228,-0.014889218495208035,0.044255882004766045,-0.03685318692986899,0.0021593352641889464,0.002951250222636927,0.02168691438730118,0.18898234095829977,0.012655397395438155,2.950928833741965e-05,0.006462509605589356,0.010747057510174372,0.035072688618251635,0.007384740215030455,0.0010018248110721442,0.0005876630469656173,-0.028572403095127638,0.2327841450687127,0.03606288166532193,8.173706037547198e-05,0.0062032020744168985,0.022282618126030954,0.030845238294978986,-0.033908737626785056,0.00017049964302791345,0.006777139800439028,-0.011759700565386081,0.018048328610612712,-0.00739544407659637,0.00037399275374649043,0.004459464613536199,-0.03727792844839406,0.1440073146031672,-0.05550895259895098,0.002006400187222464,0.006370854910901429,-0.012176599769941147,0.04735334205505403,-0.014490693593782815,8.250224497700196e-05,0.007507635689316578,0.0146073574925257,0.023170898650242244,-0.12943027805047205,0.0015671334199799376,0.012106964437887342,-0.014904615089317216,0.04201157207206452,-0.15086688265403475,0.00014056198068740182,0.010811483316379248,0.03391571063760561,0.08583539560867248,0.025745588846292557,0.0001601750559160715,0.008208765513257213,0.020428215120952834,0.10008834827339888,0.011550050513337585,4.981507922265279e-05,0.01649867726567767,0.0046033963067319715,0.015778882102198896,-0.007188205868538186,0.0027651595277691783,0.04107160729856406,0.02845387262331777,0.14803597018705336,0.029618820400823764,9.561250561531587e-05,0.006551477085113994,0.021847707108440917,0.12484622228071653,0.02504726524909633,0.00012690865570387695,0.002651197476934915,0.008636364501311167,0.05161640936550337,-0.022895502379821984,7.913923945398327e-05,0.003537171889537743,-0.044179995627221275,0.21749676613455465,0.06460419488576259,5.105288151283002e-05,0.009106342596855055,0.0038573676940984944,0.00891432247644968,-0.01924315851161969,0.00021097553278071778,0.00043633101569080226,-0.00788777437358563,0.03474269893084227,0.005576954416948803,5.645537575149895e-05,0.000716729690244006,0.01700889698912254,0.18131037878010847,0.007752859424555755,2.4203867745931878e-05,0.015227297878652204,0.019056225612404387,0.0497158151839754,0.042252879961029506,0.00013398348983856766,0.0003272360897455563,0.016673538712099947,0.05568274210204527,-0.009782663209226234,0.0004719925449861042,0.006593673272220708,0.006441829847458185,0.030684891655614496,-0.01919304864322857,0.00012024207193159769,0.0005376185278137692,0.0008051091232949661 +2022-05-27,0.0519461704867206,0.32638561295574386,0.10762282859946191,0.0001683096874867895,0.005884258234718094,-0.039769840687598305,0.1162361094808323,-0.034270642982266564,8.209624861698677e-05,0.0014144433208045256,-0.027959356351572918,0.08783881178990781,-0.013891830235026477,0.00014724410666080726,0.002083933614852483,-0.0002597935902753083,0.0003093664502269381,-0.03319230315082164,0.00028341515794870324,0.000624496371968878,-0.047859010639894554,0.11458930075773066,0.09181187576504209,0.00021853319711426442,0.008536627352591553,-0.008262620213187188,0.02583652955638843,0.002211795645322215,6.982812062757223e-05,0.010084396767035755,-0.01750687682765257,0.06860098021139278,0.018691967256315216,7.488040940215127e-05,0.007939665307586337,0.0022703893419487053,0.01914612455857989,-0.0364931438874282,4.0664746931133523e-05,0.014507908830149645,0.015296038710788374,0.01098773446805555,0.038099762291340496,0.0010735335092483314,0.0035379852466227105,0.02592416689119162,0.05870125200934825,-0.022002546039385666,0.00015442561188514485,0.004379002025424783,-0.003924373570579287,0.0024529258070093755,-0.0012765561049653401,0.0007820063652033033,0.0028130776651643665,0.0023071241568815327,0.029424277299939253,-0.004699147969079648,2.3366192548029055e-05,0.004544451735225112,-0.036367566639315424,0.10440321798030959,0.028990369952023216,0.0001034788029677722,0.008726239912510732,-0.010727667639000342,0.05605419699196989,-0.008821772387196362,5.387149064156623e-05,0.0006520788517832591,0.004517821062103693,0.003898691250968725,-0.06307061159497701,0.0022601286203949196,0.030640051382078246,-0.03505268297563582,0.27362284689004723,0.0068715212634437774,0.00010541951542990873,0.010964170348379671,-0.01255991800560396,0.05708694903761703,-0.08626726633042026,0.00034068907178151235,0.009759808555342957,-0.015737382251498445,0.10980765940293177,0.009860571493132193,4.037019202846417e-05,0.0025796907252749555,-0.08544528645899961,0.4280715676991246,0.09935625231788518,0.0003289716964336794,0.020504472514994043,-0.011234653481398392,0.15352817122996334,-0.01686291948031161,3.036699627407338e-05,0.00014535259210601576,0.011473542728647453,0.10198935790783714,-0.012418781034391193,3.758585108880977e-05,0.005005760884884261,-3.741851537551024e-05,0.00010768000327531056,-0.000159805717579763,0.00011193715072406064,0.015934609130615097,-0.05644789332914951,0.39537930876212224,0.04083235311731536,3.2978141469506284e-05,0.024590247688971993,-0.01673081207486186,0.05256662726589849,-0.005062097776323342,7.056417857220951e-05,0.0117783490807623,-0.0019362955373286926,0.007203447922669752,0.011640568689583417,0.00012290790592676628,0.010946120123920969,0.05012765566582926,0.04213916325711665,-0.06325057324664107,0.0006799344531340963,0.0011166138194014285,0.01972634965942338,0.06911819718939438,0.005263849772777461,0.00012012691778802727,0.00033881748930657284,0.09573439624349364,0.39150918743960494,0.4261317091493511,0.001569441814969524,0.00409392248985685,0.01949498645578951,0.17558949284551298,-0.0261752515289365,2.8550032608896258e-05,0.019984291739442855,-0.00956808000590804,0.028480649916924474,-0.003372778861748259,0.0010983637025192882,0.0008875806681190128,-0.003049030063464333,0.024184814145305343,-0.0488255787232745,8.395461908186253e-05,0.0006125307750662991,-0.04124723751970727,0.07148171523650926,0.16107710458122182,0.00013619002160494695,0.01940798526538463,-0.026028830191838888,0.04016549850017495,0.0155143205055258,0.00037196784832829244,0.010637761628470556,-0.013624839762111783,0.058338736651663385,-0.017763653668315556,0.0018101923468863985,0.017590316066249716,-0.007186314606276006,0.03656468092600909,-0.014035404646691934,6.305721830876167e-05,0.0062558302399969845,-0.049914038445051066,0.06465079944113646,0.09137217182673718,0.0019192254830377117,0.0012008849443709917,-0.022365220106571895,0.055680769321900504,0.02205793411290004,0.00015914169742564053,0.0023718873935160804,-0.04250848981672383,0.10346221883136873,0.055115968383838865,0.00016655369207516977,0.02525520133852141,0.018236408693232734,0.09000979031438437,0.012649241756414877,4.944968069156963e-05,0.01906096347614045,-0.083262905167849,0.2835484917093775,0.05796053402721326,0.0027831862905078318,0.01570740599829157,-0.05288895518148991,0.2514938767725084,0.07388380216637425,0.00010461119008529035,0.023013804417087943,-0.015534264933979388,0.08369337946874568,0.00526234620625895,0.00013460475051739994,4.771745260498048e-06,0.022504687817930278,0.12331619287866745,-0.005735857711572858,8.631804255091508e-05,0.005137846258491506,-0.002076524486445308,0.008779238829139856,0.0009652114365084893,5.9446677662544514e-05,0.012006972458253837,0.0396545537561492,0.07368769618342574,0.03811051373589961,0.00026237803932725246,0.0008772008103223317,0.011315123740491314,0.04815711117368198,-0.00972901760080035,5.842695550425692e-05,0.009584221335795881,0.03613160817754064,0.36839713136496444,0.01730468026278554,2.530476670086256e-05,0.02807735322924387,0.011121408572468664,0.039223325104884334,-0.006238005626115583,9.911156934006218e-05,0.004286060241439575,0.021013718059520216,0.0904815919740524,0.03025086991650237,0.0003660754785698336,0.014308722929960077,0.0058053307617450195,0.029853658876092842,-0.12272434710799938,0.00011137845747983277,0.004338280209116268,-0.006550127882103352 +2022-05-30,-0.03603181468446274,0.2782024671433744,0.027998467718248744,0.00013696567497425825,0.023445404949786093,0.027164951018267453,0.07952545289847207,0.0720221846333474,8.196214238332095e-05,0.010179702282380394,0.01515884284771371,0.04813424051877753,0.02183637252457289,0.00014568308562103524,0.030926332678051876,-0.014541764130885043,0.014405679626498693,0.0006687286622185657,0.00034068357840959023,0.006909727163633081,0.011047520554593508,0.029926180925498178,0.000354409104071543,0.0001931573743815267,0.0021222288728258,0.0027388475699351455,0.007253723661429411,0.0008633369118877004,8.244296368353963e-05,0.006221750912717785,-0.08513104263816225,0.30294011687240363,0.15353624114133124,8.24557638048172e-05,0.0020118072039454313,0.022752968143560703,0.20732451262432017,0.03777496128756541,3.763448870182952e-05,0.00530592255199431,0.006925177342886513,0.006258576429084236,0.008113026585207628,0.0008532968176536618,0.0002313644055215821,-0.021999192685559252,0.05327553972874016,0.04498356219006936,0.00014439121531896546,0.01981952210972381,0.008023545779630077,0.005393183605937107,-0.02099845518937502,0.0007271859637053575,0.010784638990603487,0.016544103881120178,0.24106839476102634,-0.022724515250923165,2.045152803313233e-05,0.004978351792203647,0.04259389198389229,0.12817360205962758,0.04757084372215712,9.87187786478942e-05,0.02187519217353933,0.023020603208418634,0.10862781301431662,0.10497695437012207,5.965371314948425e-05,0.007216190892490431,-0.004652245239344851,0.0036465642935379883,-0.07690277537003862,0.0024882940300006667,0.0043932364115540365,0.0657425979911741,0.48172996652447864,0.07502378705492817,0.00011230402124787599,0.007066180630426244,0.03657386814368574,0.20442261406428472,0.06282727808997025,0.00027704491874191214,0.025000922933300432,0.024166558129349078,0.13631844488165934,-0.003375591034596896,4.993684891709158e-05,0.016913229542173922,0.030043561787648807,0.14554735499713897,-0.06491972468132054,0.0003401996862355869,0.027856896812942414,-0.014579564015784809,0.18928327039716608,-0.007336406154391727,3.196410417323936e-05,0.015550882445900246,-0.0052117626199786014,0.0479313946799046,0.0028757933434908197,3.632839991205568e-05,0.00349941088256892,-0.020012246144176973,0.05496991628650868,-0.014827434632022301,0.00011727177974394036,0.013478123825309059,0.02588171411866485,0.22259292443503176,0.01589312021485908,2.68580239407725e-05,0.012838315285986647,0.01279056675806868,0.04085307697822166,0.023843999319228853,6.941325315158145e-05,0.0037559590430974914,0.01101049046897204,0.03909545950789912,-0.040954420512609696,0.00012877422324989476,0.0003284431597499445,0.004561338810791824,0.004335317583622988,-0.002113670749897904,0.0006013772246560786,0.031027184545033552,-0.021179575095891728,0.07529774020411305,0.029873581645825497,0.00011839171440928956,0.0009671021852825244,-0.04101088340243806,0.1308701194829134,0.04210704979158295,0.0020113043836948803,0.01195010872826611,0.04534939032659881,0.4503118849531122,0.027499973321041326,2.5896450335564057e-05,0.013182035834061821,0.004933745052817163,0.014631337543435177,0.003508336706802489,0.0011024627999947603,0.0006025300641932003,-0.022195664386095878,0.1636577777607217,-0.03585078059129747,9.031442948039038e-05,0.0013037584279882756,-0.005552586520234626,0.008644463822175995,0.0002333823938414387,0.00015160120721398356,0.006493252732400823,0.01855989761355797,0.026984073596325774,-0.09268460038783514,0.00039479530311229533,0.008702053271186573,-0.03642502194384971,0.12327902315760837,0.02440082411618002,0.0022901344446990307,0.008171970575964563,-0.04887307275262318,0.17080632607434312,0.11316416239217043,9.180282883997007e-05,0.0015592573944139113,0.013689474849188922,0.02322044907221346,0.001786726503783341,0.0014655254526093988,0.009902535210407149,0.02404704792209429,0.08053528180617085,0.08081500775971384,0.00011830187356828691,0.005425771819168762,-0.0019286196633162428,0.004440134128877974,-0.09420523402271486,0.00017608034351095843,0.021185860447609964,-0.015231866644879723,0.06098340516657355,-0.02402519136661153,6.096146330635122e-05,0.019220846173812096,-0.0988516012119342,0.35336722085404915,0.09808160820448078,0.0026514015481148997,0.008184503997542465,-0.0049958812384595245,0.025225496079358013,-0.008810261220435975,9.851740432366953e-05,0.02233117095207885,-0.016164189867868498,0.08026664276043297,-0.0005596389597690854,0.00014604262451111457,0.022934031862549123,-0.016155365665726618,0.08684926474750039,0.023683742318772225,8.798311725443941e-05,0.021386056972649028,0.03654058460863922,0.16101873670983868,0.02595009768380823,5.703565996594237e-05,0.020495928355387775,0.0631093678213439,0.14154455645329,0.022845090343425488,0.0002173852394718387,0.02207683194188867,0.00028861053889312263,0.0013241314989823909,-0.06110836287383417,5.419952054677908e-05,0.0067497190836436245,0.0015663933229043917,0.01679745600737345,-0.018481900722849165,2.405961072292725e-05,0.005447317822796905,-0.015837931157146788,0.050573700118201545,0.04879611340487802,0.00010946686646265904,0.002317502945891477,-0.014402186115743917,0.06275298510471108,0.03040935778118614,0.0003617612121238641,0.01266712561481638,0.030795658040545962,0.16745630697769448,-0.0037190017870292686,0.00010533186535362338,0.00047091527085589167,0.0016035931792015554 +2022-05-31,0.02950273451526971,0.1816178017703147,0.021034314015563396,0.00017178705729329626,0.012556201599287133,-0.002621009686527878,0.008779932423751713,0.0005504210473341874,7.162885010611823e-05,0.012084834918445227,-0.01913864571945524,0.06897611733733677,-0.032472588156453965,0.0001283540756238371,0.010993666989468909,0.00039645701530801415,0.00040128942332732576,-0.016563156462725468,0.0003334312112643284,0.026968507259605354,0.026841289686521524,0.05495759691258316,-0.060680807271592224,0.0002555485476748284,0.00626699353912949,0.0031532782453875235,0.008168786075694328,-0.003201595462486383,8.428523684199278e-05,0.009042169122841804,-0.0005488790548741665,0.0024705043487185476,-0.0014347242348314243,6.51899864853131e-05,0.03376255031627554,-0.019524652764754468,0.20115963077282403,0.009145274157200468,3.328442843722261e-05,0.0025337919455303065,-0.008288341110825229,0.007912762079389138,-0.03400091171934535,0.0008077636309350183,0.0042153895108189236,0.03550069169011479,0.07731791236690855,0.0426874382922254,0.00016055305804753468,0.01939006662594712,-0.0009031862910994434,0.0006003017816606475,-0.07187993894000072,0.0007354142875042477,9.333011066175925e-05,-0.008067415302941165,0.09888719493678053,0.002827251049231525,2.4311801785233812e-05,0.001975457835785179,-0.020112971790808135,0.062156426851158,0.007734408968092206,9.612608213016032e-05,0.0005523901796238881,0.010451387105440683,0.06443854251749302,0.010572855951018999,4.5655178294919446e-05,0.0005824393156754834,0.025353611246944907,0.02376438931460059,-0.05800410229569375,0.002080827797850019,0.00524441935719022,0.04103379357383476,0.29009350255257826,0.0214790822375139,0.0001164007491521723,0.002788153220717569,0.02356196204499409,0.11466203052320559,-0.0037350998915822798,0.000318199912336075,0.0013980947373932017,-0.04311581382881335,0.2638836878835258,0.045018256377398404,4.6024067620196374e-05,0.010570014840037811,0.00040820678831057886,0.0024522415345297945,-0.03701934857212023,0.00027434925554553857,0.03381729582727576,-0.00963188301191832,0.12904634139072707,-0.016094242744586394,3.0973888738758595e-05,0.013268636150033326,-0.0023255138983651427,0.03077334968134705,-0.015344691835102559,2.5247935768415484e-05,0.0033607403468249547,-0.03992813372740564,0.12314551171626435,0.02114626395844741,0.00010444392385607099,0.023715060556590603,-0.028019545503981422,0.20639264418528636,0.006832133016600425,3.1358786443057744e-05,0.014887930325158451,0.012951831604750937,0.03198403383662405,-0.11319700932141394,8.977911816218588e-05,0.0015780781637891005,-0.011496553448348004,0.04807584345333558,0.06642367991393207,0.00010934258727517093,0.008363805235155708,-0.02605462706810945,0.02524390694347911,-0.007536462726458023,0.0005899345776859063,0.0002836526242467564,-0.009263577381781355,0.02880826036943149,-0.019622412893724985,0.00013534671180039695,0.015048128120667824,-0.011293541591938348,0.03643062063429846,-0.001982406421745345,0.0019896778277128046,0.004240614955326145,0.016151105682160948,0.18199505051307457,-0.05284746611107725,2.2820485357493262e-05,0.004102971812905876,-0.029887081775865038,0.08918706156123235,-0.01653446321224577,0.0010956022769350315,0.02457992602056429,0.017155752037221923,0.11933198763144946,-0.03005586961877763,9.573671671396813e-05,0.013925293838081573,-0.004133865529276712,0.005902745375746861,0.001107041950327997,0.00016529041952930698,0.0001343357559518612,0.016541111793990163,0.02316248413807749,0.012918759950425782,0.00040990524530458926,0.0033174711981426488,-0.025002762503305104,0.08927937617701046,0.012888511036694406,0.002170636940736223,0.02283736428328116,-0.005688191754849773,0.023344428059831585,-0.0009935610127155864,7.81774248488273e-05,0.003958683146221843,0.0010211766543311625,0.001522700707858795,-0.003798440984846342,0.001667107171662116,0.016844350454308547,0.0006672709859342087,0.0018743279305867863,-0.03281286269191281,0.00014104987349260702,0.0027609794404846056,-0.03779449713235391,0.11510730480843678,-0.04649083256702408,0.00013310245387064703,0.043587097082525346,0.010280548322694384,0.04084062237612571,0.004515718774153936,6.143811069283314e-05,0.010654751783979878,-0.029158902101091157,0.09391971394765208,-0.00024857557233319214,0.0029426083605895324,0.03259670355698398,0.004366470146466014,0.022987340406170686,-0.0006528105848963424,9.448923629851298e-05,0.017165360191203086,0.025597960218165138,0.11684026216374825,-0.022486011174094794,0.0001588816061233652,0.005660495425859974,0.03045350793798368,0.17791016502168666,0.027463141235956157,8.096275211284526e-05,0.015440155492403232,0.04660385151505343,0.2245657196377712,0.008833476217087438,5.2158578110240016e-05,0.009332211773053708,-0.010818645364474364,0.02060732942000197,-0.03226122850304707,0.0002559649883673842,0.019269185079352102,0.009699780769408448,0.04050328265395262,-0.029683626869658693,5.9550590430392956e-05,0.006515576950809422,-0.025648862624709886,0.2924687141856876,0.019555203212834243,2.26266355240169e-05,0.019063068913947673,0.012879270000493458,0.052256871747515136,-0.018604279621969345,8.615030203171253e-05,0.007103096397289694,0.02208020030411923,0.08196873633620998,0.02150127601070836,0.000424602688678673,0.0010610331695919588,0.016392013919757257,0.08741777985274247,-0.050380089642647896,0.00010740001391959055,0.023126272658381675,0.0006690284001330676 +2022-06-01,0.031980842262064844,0.2396534354051963,0.030055566292369884,0.00014112138247777433,0.006719778895072236,-0.02445728527102181,0.09570718212217191,-0.024707415770690324,6.131606079943133e-05,0.008597129572484066,-0.027951571770485666,0.09972483249898963,0.0068405432395397545,0.00012965824028756274,0.021028925790734412,0.024612062621587803,0.02556394769031635,0.0342500037551312,0.00032492860611108113,0.012290562837011965,-0.0019701877670409056,0.004408530376553954,-0.025068682900154318,0.00023383609666113696,0.029960857803288655,0.007027921082012421,0.017973630402635565,-0.013614912597774274,8.537639423534382e-05,0.0070475353028659595,0.00700713449814766,0.02254974148232661,0.00010625298810535855,9.117772283194726e-05,0.009851184853844827,-0.000617857959189932,0.005388630174136151,-0.07677876297828368,3.931958101822636e-05,0.005756669197263116,-0.011097692321347148,0.010286037270210952,-0.0027590868243554433,0.0008320115841620728,0.011082832052285817,0.03735183089438355,0.07482828800075386,0.003535853563508866,0.0001745452248418317,0.010153201119511488,0.012954743111549377,0.007877911917285927,0.02614529853996315,0.0008037889714481864,0.00831876644849221,-0.0019048942824791354,0.024483621447036544,-0.05392646686286315,2.3185582518305804e-05,0.0035903738717614946,0.014696932501285382,0.046112446936767235,-0.016096261918346226,9.468028771117947e-05,0.0006068119545076542,0.024048249414949083,0.11929247125646812,0.022802086908070947,5.674560757437067e-05,0.0007543440707737777,-0.021673206167206537,0.020086563726730657,0.03519488950740633,0.0021044590912527236,0.008650971766091463,0.03845085546851759,0.2492544636295811,-0.006168185316865247,0.00012694487432798296,0.008057448853510521,-0.0010783351529759894,0.0058260201199157625,-0.16218005346570863,0.00028660912611666323,0.0022268494377357217,-0.08083813761487475,0.39900972862584894,0.10039312112473057,5.706814693060338e-05,0.02805751402796316,-0.014754583954735397,0.07638209100695045,-0.00866903532701641,0.0003183627387236509,0.0022333093095107783,-0.06510809282840568,0.8621036087995304,0.048079918859076205,3.134048710944311e-05,0.014648953479596799,-0.010853334863902811,0.11888251796668153,-0.17705847829677895,3.0501901678848477e-05,0.0017175781484482758,-0.012009471324885109,0.031140872855639226,-0.035682854314638225,0.00012422696182869827,0.020297092119857744,0.019535436051864825,0.12192704967927437,0.012034734682927399,3.700968771425811e-05,0.0038809428667725574,-0.005856042605155915,0.01533906696493503,-0.0038300591767061166,8.464136657003216e-05,0.01081598828442578,-0.007821067232115434,0.032087015159654605,0.005775541283700696,0.00011145134023463764,0.002561796293937425,0.018301831924572146,0.018254754921805658,0.004075519215220146,0.0005730521118147653,0.014971809444729806,-0.03731766087641151,0.12312286694773523,0.10401984240891632,0.00012757386206931447,0.011930633689145397,-0.001690184838842451,0.005845958417738846,0.00012793076538714703,0.0018556567875706023,0.009877217863301847,0.0020829699805132197,0.018725608166472885,-0.01817342287200226,2.8604165013241213e-05,0.004694509811732893,-0.06790103331269486,0.17458277200617645,0.08126380729755626,0.0012715875533597593,0.013038773812722872,-0.0442206669943891,0.3311066659837012,0.07932002041624664,8.893710895356407e-05,0.004792460291406925,0.004114222636049969,0.0071472889395607095,-0.04861248866692793,0.00013586007066310345,0.01480107818198637,-0.010575640254429607,0.01567493044586023,0.02254886676945953,0.00038726206831264236,0.007099430216716747,-0.004854798864282258,0.01929179014151314,-0.09041777663974923,0.0019505139192367593,0.009089836521198325,0.028903577505992706,0.11449690852522021,0.04126449097546843,8.099313511074161e-05,0.017677469551062197,0.027742278912996646,0.036422507408377325,0.014790872912326097,0.0018934310083067805,0.02700602706962796,0.030882228914855422,0.10336554127921971,0.09875522561191066,0.00011837197430203115,0.00958799724929155,-0.014875263268596589,0.03191156279920347,-0.0035545233346656498,0.00018896308193488035,0.0030914998010774823,-0.0082526104459957,0.03899625448946675,-0.020562221580127125,5.16514329321307e-05,0.011919658671869214,-0.023937615760734835,0.06759190905270565,-0.015661282964920857,0.003356635912378643,0.004667586732014929,-0.03746670773352196,0.18706740169232114,0.029198898406522594,9.962950880883697e-05,0.004629441369951745,0.003328746959957789,0.016396143536686756,-0.18865461453165322,0.00014723120129453342,0.004738237080462332,0.003793891636305048,0.019550414531733108,-0.041357432248838956,9.178625503097045e-05,0.008199761443772524,-0.032992018300186686,0.13662223063748433,0.02473513711062904,6.0692483314207796e-05,0.01994069163391618,0.0342763296876346,0.05646755215580424,-0.01396356516259937,0.00029595436100704936,0.004891819997457666,0.025538561010205896,0.11651245540224248,0.03650210461593778,5.450526357047453e-05,0.0067176809987818,0.030308933875555628,0.34833058135458334,-0.011935808013912717,2.244968962364398e-05,0.005026595056992213,0.013782428590089957,0.04428766145006468,0.007126418366972005,0.00010878072950760687,0.0004771647151739028,0.0011121288103588792,0.005173870636271909,-0.013614289552966664,0.0003388187974737491,0.014007417038305693,-0.014314630324188941,0.06791518055672226,-0.14042807155336426,0.00012072162513096873,0.0024850193034297854,-0.0032101034233263303 +2022-06-02,-0.019449996751224156,0.1304095954336149,-0.0718235116511131,0.000157723559416419,0.015899414817877905,0.002698699933847645,0.0072306601792646264,-0.042255355421010915,8.955445053458268e-05,0.00988244654615094,0.026134773949913294,0.0896843728616566,0.043493653215912205,0.00013480288191969575,0.005720904368402247,-0.006814189775033276,0.007140670502601042,-0.0016970563571753116,0.0003220646709257294,0.007151949522522797,0.015983272623167618,0.04315264664623226,-0.013811039359043235,0.00019380101282427792,0.006634500428394363,-0.015758852490079696,0.04669923776138688,0.027489243663657934,7.368202248540379e-05,0.005595664283721757,-0.0021003933333835537,0.008555989046190086,-0.0002415857272863677,7.203113639983547e-05,0.022221624068660486,0.007180816709449068,0.06639391283759524,-0.016880304180533875,3.708892041035025e-05,0.019738458374758506,-0.005996718120245924,0.004626460309790042,-0.011603939322979156,0.000999561639968848,0.0038130613389436656,0.00016898598969054945,0.0003622959901413513,-0.013439106188162122,0.00016309815890281037,0.007943769281928801,-0.026250127048580225,0.017864796623513132,0.09813999017050479,0.000718220325605206,0.001215867150869799,0.0017452928488636932,0.023331499210482786,-0.05386517655085885,2.229197013346393e-05,0.006788491885657191,0.010881040156852255,0.0336149408328716,0.002178676153746932,9.615881434687121e-05,0.0018439110117106385,0.007647933165314421,0.037320440992612954,-0.004495616370608189,5.7684500380978445e-05,0.0012351878173604944,-0.028038986214010842,0.02231013026452196,0.045821394263625345,0.002451224979003331,0.003974899299531408,0.03932627819499466,0.2191513545311925,0.017918711612189296,0.00014766949700661762,0.02402008369469033,-0.03295849113759211,0.15953845298548908,-0.09592567020230623,0.00031989700689229146,0.013302457037025118,0.009939674217800643,0.05546805959383234,-0.025002407520981533,5.0476604497400076e-05,0.014276062100446517,0.016633775117487308,0.09394929342229413,-0.0175581631942267,0.0002917992121306716,0.006348874496028173,0.017345671232227945,0.23834282087845954,-0.019326648164207524,3.0200856985093335e-05,0.01152196861612383,0.0009310994118834735,0.009814077647167822,-0.08221663261118523,3.1697738021738305e-05,0.008296669159841619,0.022146365216964992,0.0666749975115276,0.029924693937040434,0.000106994685193859,0.0027025778622730206,0.029156714731953012,0.1808345141463439,0.020503581870571524,3.724342733270847e-05,0.02636728220258909,0.004466285372760756,0.01416123591536219,-0.023368991927827557,6.992342506960221e-05,0.007769582526936096,-0.013141256200684792,0.0493375136886433,0.057842028859389126,0.00012178904305242027,0.005788528115692877,-0.011312424595717106,0.009829811236445968,0.0009182277645657191,0.0006577882033893711,0.03094454974506538,0.02757915357620703,0.12215150179131606,0.029313904121096763,9.503161973963238e-05,0.005587357863474687,0.028851699575501703,0.09215809948401328,0.011200460241798231,0.0020093568236097545,0.030463258521065434,0.01311540312145683,0.11814457142515128,-0.1287070860653863,2.8546315926853764e-05,0.010705212863610817,0.02957226744127573,0.0822935953657093,0.020072885181647182,0.001174870118304967,0.007237197882429624,-0.03355177454280324,0.3060866427023048,-0.04289860256276449,7.299561302866485e-05,0.008177645169799302,0.01877258736195034,0.03023007294648315,0.008109448529119804,0.00014656501784221922,0.005456971474267616,-0.007810905844483843,0.009751624584023417,0.010403434979480998,0.00045975699223383033,0.003294001359224485,-0.012466753753196638,0.05397259940708691,0.0067528956079571465,0.0017903188632641036,0.029932847551338237,0.002998889414459233,0.010880640620992024,-0.06537134659857127,8.842933427321786e-05,0.01671497501314964,-0.03469402180144581,0.04391977795380362,-0.003914233441016404,0.001963684459209281,0.0027469985409900284,-0.019972275810423205,0.057956347534860626,0.00026360255445469997,0.00013653455631972665,0.007977017392408737,-0.010501415998070888,0.024226990262520322,-0.007060126376217698,0.0001757149746111566,0.018875388376193895,-0.043106336562458186,0.1814822674335603,0.09795236590027949,5.7972341757848475e-05,0.01315267952766451,0.044810685554858266,0.1538201614383739,0.014889192478337808,0.0027611270034655078,0.020564624137067083,0.030453065182205395,0.15055039933338024,0.04160023369995617,0.00010062124137512086,0.013077906321275484,0.016188144600585614,0.08421396536294053,-0.019031924144897062,0.00013940352066978034,0.018956812761331234,-0.04367085397248223,0.2584807468625109,0.14149519354084522,7.99120337203281e-05,0.014863784534434332,0.039915370006924106,0.17417949953095407,-0.013049071459565364,5.759576034891857e-05,0.02719622780875188,0.044850091738101144,0.0857825602260437,0.02942127190152945,0.00025491402239007755,0.01220272874239002,-0.0043054998849526805,0.01767812045381336,0.0018474645611674236,6.0562231518998296e-05,0.0034340438800233696,0.017454389409207995,0.19598053606429755,-0.004805906144395587,2.297857036397952e-05,0.002356240880210199,-0.012114542358608586,0.03713420205399906,0.05072585961255234,0.00011403597528112309,0.0017378045704518768,-0.005940457913088173,0.02417074169370186,-0.02926164152412126,0.00038739848416931283,0.0043299101596776975,0.023181295717142978,0.11180977953323779,0.0019218283708231818,0.00011874893190623691,0.013580786778755285,0.003294482775892384 +2022-06-03,0.051935554948922956,0.3482659835228476,0.03223540107790681,0.00015770312641365117,0.0039836937592034345,-0.034640091610430856,0.11225739186730362,0.02429002854872303,7.404139807623905e-05,0.012795822030264631,0.027342944069688513,0.09783625817614322,0.03678224149169764,0.00012928336403438578,0.015457956383915936,-0.03177645583724691,0.03258400346446081,0.005069931205137866,0.00032913106110094205,0.0063834963253915,0.0027061358059877793,0.005411082714212042,-0.003011822220424035,0.00026167557509543894,0.012864923307988045,-0.025163901163047155,0.06429700631806062,0.0694229101825516,8.545430727912157e-05,0.0005509584387550228,-0.01988292329172065,0.07656648145537905,-0.01868950890648433,7.619586475543628e-05,0.03633940369884547,-0.007124675793001479,0.05895044191781051,-0.17616306993045788,4.144543059097968e-05,0.0022378352519343567,-0.00133841643894149,0.0009102640196274077,-0.050056300580148406,0.001133884117880048,0.003230659300264803,-0.017531511881592618,0.0492516154259424,0.02776049245709256,0.00012446887867970634,0.003430522495159438,-0.0446623486501277,0.03319902481338699,0.19318771851194688,0.0006575678763476791,0.013057517513039983,-0.01025342009970563,0.13611559792138347,-0.045140582620035175,2.2448309719152556e-05,0.003230705256900725,0.03386749378546149,0.08665778202887271,0.038679729870620023,0.00011609847854368384,0.009366306845064435,-0.0040174513806557205,0.02485252301073201,-0.01071796037590379,4.5503202514653946e-05,0.007893965102519118,0.0003340308136139178,0.0002951847377474429,-0.04832247830699934,0.0022070674459867675,0.009676834061760085,0.031504225345967245,0.21441191381465718,-0.07599873696275784,0.0001209127224378738,0.008141259457720896,-0.05675702991070197,0.34221212092938114,0.11532934002557459,0.0002568221662284354,0.0006305850900537758,0.07442309002570144,0.44239533527656727,0.06606257868087433,4.7386879952888194e-05,0.016184176873655337,0.014171089914714767,0.07689880646631513,-0.004760683743057142,0.0003037179513712395,0.016458518366384428,-0.03196611001199695,0.4305926003912228,-0.011038227480120025,3.080728729943964e-05,0.012136682394803573,0.0018017421859646762,0.01876249233031954,-0.026516682651921166,3.2083654329040296e-05,0.010660765261411166,0.05780234999400444,0.18636232050712528,0.11486751930639366,9.991027207995999e-05,9.506008324324075e-05,0.03258193173755175,0.2693020281102016,0.008135626280235068,2.7946638773285805e-05,0.0034286493780503417,0.002667215609791024,0.008340481330226737,-0.12300924499428278,7.089969908492069e-05,0.012825225692809587,0.0027586248632158043,0.010006879148530136,0.0010422111417694936,0.00012604992361596766,0.0037776602867013167,-0.033343338215551875,0.036214873789477416,0.021510946706499594,0.0005262567302814431,0.05192889123563848,-0.00402010705990727,0.014931388442059405,-0.02595096519105542,0.00011332440153083944,0.0025405281513305113,0.02311020400503181,0.07326476043224925,0.009227099709898597,0.002024546797997762,0.016475424079539787,-0.005481739870939695,0.062083325809887034,-0.07813781293040606,2.270521632461858e-05,0.002299680039555249,0.030537817404461758,0.08214386654084421,0.021267226129492663,0.0012154416722830667,0.00418308565593398,-0.020775048633035496,0.12800617204371967,-0.14795411318005666,0.00010807787122124561,0.0022604049052451147,0.011792400298913165,0.015530149817241106,-0.011164107840445435,0.0001792140085842574,0.003289764577564661,0.022689034132088667,0.039123147507045555,0.03184132106595594,0.0003328787984632895,0.0016236693291038673,-0.02976520767932216,0.12126529476759978,-0.13923828348207107,0.0019024915279194118,0.007330728692620518,-0.03059468789473561,0.11497189269868266,-0.04588281675387349,8.537775221265588e-05,0.01208468317374644,0.049348190253892185,0.07034974461713737,0.04484173106465,0.001743756730985418,0.00614643985590404,0.041386594449326124,0.12172450215067442,0.1386919855568967,0.00013470934389822216,0.001548902947356626,0.024991187387070114,0.06847151339545406,-0.014272464537412802,0.00014795762110573856,0.0011663249053994321,0.028562876069693197,0.129755661024037,0.008180722902319975,5.372662329040543e-05,0.016405785981281673,0.0335077960008467,0.10091484364831763,0.010842288080428076,0.003147087869890291,0.004863918921842081,-0.010914156935081546,0.05486572018436825,-0.010463223759202129,9.895316296752019e-05,0.0035713632351257944,0.027989472608921963,0.13900330887066048,0.06404727324666194,0.00014602605793662674,0.0023677050264152557,0.027330090977283665,0.13908946408021286,0.00984056366595581,9.293847507785132e-05,0.004276940816411845,0.0525793139440503,0.23368375978205239,0.01271665349624773,5.655015225509101e-05,0.0020461500785960247,-0.002444537068981364,0.004265738037257508,0.002403875113811606,0.00027940349856058253,0.02671630793839475,-0.0131500196322878,0.062392306897058256,0.014628954199176886,5.2409465858843024e-05,0.0033135015860357615,0.023043195639391778,0.18593590441673802,0.01147562534151285,3.19750131631253e-05,0.0006688504246667745,0.013740631191802754,0.04097102986066669,-0.03448475257138306,0.00011723000051473944,0.0017995170671672293,-0.005208946180710865,0.021714188555970782,-0.04467481555883882,0.0003781239939355207,0.0035052495569451625,-0.05234361964276346,0.2782017866121271,0.09740442729389316,0.00010776447879068278,0.011224461485355752,0.004244750430144488 +2022-06-06,0.02335329461840062,0.15308806137272232,0.009628693156070536,0.00016132193359718266,0.0011528942314831742,-0.029738732810949492,0.10347699187368183,0.023344156929693542,6.895871982384707e-05,0.00943800507393295,0.02069262175566708,0.07993849819052688,0.020169024776467117,0.00011974482093526565,0.0015549938954627605,-0.006099539214055173,0.0062022916870143096,-0.03477870272964573,0.0003319041611410894,0.003979725093059985,-0.018917139920800474,0.04412011188146311,0.008380436895324894,0.00022434512838956445,0.022929331906142235,-0.012959594508725053,0.03677978330840515,-0.010617487995271754,7.6935890824368e-05,0.010707541623076269,-0.02865317301505586,0.10289786779594495,0.009121569972669236,8.170642369683785e-05,0.04599815359220714,0.01700157416073533,0.15542184215920926,0.03056117077084461,3.7512473054935856e-05,0.002088187760542701,-0.02984130555564489,0.022942636721976366,0.12233199521685031,0.0010030423678792336,0.00965942866737165,-0.018863875937280367,0.04411871696452079,-0.020377639139522126,0.00014950989754089987,0.007960051118538307,0.02193790613257676,0.020755877551435986,0.050894880554822344,0.0005166285853101212,0.0018334252247540223,-0.004780525019586435,0.07035834047707404,-0.10978514473297568,2.024803102431177e-05,0.006447622837742466,0.023835559414658626,0.06051943632304539,0.009917065072473726,0.00011699882835394186,0.028390696916721983,0.02407097745252988,0.1630035034139707,0.05031411287331343,4.156794987164285e-05,0.00580506006786588,-0.016918841160119553,0.01408230602344161,-0.030049165066298494,0.00234325637885014,0.008758688645091958,-0.0628898322267432,0.4582691943832154,0.06624475975710352,0.00011293066348377852,0.019561397875177338,0.007088306324597474,0.03695005651758126,-0.013197640832480848,0.00029705413520254295,0.019169203150928,0.018764624834549878,0.10769326718982497,-0.023793525854407905,4.9080874154967776e-05,0.00471433351193482,-0.04353335770002016,0.24501013317091586,0.011590292994509824,0.0002928363104568907,0.004610405508706835,-0.005343277203769602,0.07282064832998257,-0.005729108323889044,3.0449726461975448e-05,0.009761362824342283,0.019213268084439517,0.18860758330830152,0.04074489370416747,3.4034846894504056e-05,0.008386374600501024,0.03629236932611899,0.0822665152161058,-0.0019786195376403433,0.00014210683811573396,0.008875743868508474,0.09024948719387761,0.689271774689543,0.12901557858143894,3.024451497722703e-05,0.011106410687726517,0.016098710641741332,0.045788611420168095,0.033096984685275825,7.794908172625511e-05,0.0019738479154556426,0.010478694374185051,0.039835096215510915,0.003510725090627881,0.00012027902496699084,0.007622674566529236,-0.0568364218715695,0.05010772123615462,0.035098191424852127,0.0006483322688829675,0.009161031977588763,-0.012339095155091137,0.05063357803528316,-0.011833484942565576,0.00010257244419971693,0.002131055109891432,0.06799616517759773,0.22125169156633964,0.08857652881776776,0.001972499924038227,0.015645855756695692,0.03561949062550536,0.3858035753874621,0.01691229420433292,2.374125385442412e-05,0.005129854025290481,-0.008678531148998057,0.024297016041515677,-0.04410496281565235,0.0011677894728130177,0.0011388884262248783,-0.02667138227779857,0.19608404223213177,0.015112997896910821,9.057929082825175e-05,0.012119935028749378,-0.0036834800978633774,0.005986546575982518,0.003500676892993474,0.00014522030623261804,0.017134815282678902,-0.015129360941342868,0.024303673898499314,0.032484999659268425,0.00035731608629829055,0.010160337369590848,-0.03544469460419771,0.1325495804540525,0.04600896290572277,0.0020726368841577575,0.010918360289628018,-0.03421482785822459,0.1528191116257658,0.009305342085809956,7.183350522793267e-05,0.012116337692640436,0.04397006654297497,0.06450054542256554,0.031371303406234556,0.0016946145368831275,0.004584642922572337,0.006613524267269757,0.020664386402871417,0.002195824594659368,0.0001268021081172207,0.01816683883007023,0.001152715531012046,0.0026997187029066828,-0.004698492973551289,0.0001730868225852364,0.00895547663793999,-0.012255563284578377,0.0584416748094337,0.006964228029713878,5.1182859857215674e-05,0.01277309279797036,-0.047800646751785525,0.15707981520285583,-0.002813227887672986,0.002884240355068237,0.015546480961527755,0.016521826215726895,0.10021912445303426,-0.023058024722570358,8.200645078386705e-05,0.009751340908737657,0.05033825077014095,0.31691215631037767,0.14699310205308705,0.00011519138655730712,0.0030185372234744477,-0.04174279796368798,0.2357074224108615,0.0563035474805373,8.37639205065948e-05,0.003437220709230403,-0.00838562771294371,0.032964061811752064,-0.0018784420618489135,6.393552750307975e-05,0.028026089848696763,-0.06966386215990285,0.12881889206033023,0.11398679340910974,0.0002636679742547117,0.021322255323710314,0.004518851792343954,0.01775545495633307,-0.01901770322773075,6.328644034282201e-05,0.003553875512483218,-0.002297276042479317,0.0224052487755399,0.0031063181443593438,2.645420401578744e-05,0.00477251957035458,0.0032373604841337846,0.01222405677663693,-0.005802708313401732,9.257307021561006e-05,0.002336630612774491,-0.0002849266605286776,0.0011327474266276726,-0.031216918297520567,0.0003964861075251866,0.005131683226579076,-0.018575735593186232,0.09762812660464425,0.014001350299972536,0.00010897901067656278,0.00372363199136042,-0.0020351705347115942 +2022-06-07,0.022789164355059358,0.15161994270266343,0.004494213439635821,0.00015894931339989856,0.02499076055832406,-0.042031785920255305,0.12867934365610983,0.048758438082464044,7.837535716668193e-05,0.00692657231730318,0.024425047803288785,0.07611035056537323,0.019950564737486298,0.00014845297474953037,0.006265486169541781,-0.004670806000989686,0.0043829979755628775,-0.020790932811016405,0.00035965691583717566,0.008312427391172033,-0.019526230994664318,0.04498274782047465,0.017357946003070633,0.00022712775787999976,0.011973577748635915,-0.01923693647962057,0.05969521230285214,-0.08575976071192305,7.036280588918288e-05,0.0030388966754420163,-0.0017397732699697237,0.006380128940727336,0.0005364945848916664,8.001161811170886e-05,0.0022377680948449477,0.007810703218644818,0.08078055789128392,-0.0630365793954166,3.315750949293191e-05,0.008671257216257037,-0.017144002481135644,0.015199778301612553,0.020014958672392412,0.0008698007022881412,0.0025292581824745857,-0.02990569980250644,0.06962630949941616,0.0527652987682416,0.0001501905057082101,0.025266506502804945,-0.009518819827042354,0.006806939578844194,-0.0805748364038015,0.0006835268344786465,0.006363876320304026,0.009754851295218558,0.1427100709097262,-0.012009443530676232,2.0369896427911665e-05,0.0015351615035668073,-0.009739935167470863,0.03145447747829484,-0.029404164048106828,9.198661314140899e-05,0.0036086229141717953,-0.024185632317615974,0.13235488107788154,0.12366466326649683,5.143743483943268e-05,0.003282453562429391,0.006798263936696023,0.00570516688423618,-0.000996006063457064,0.002324088392202056,0.010812287346808601,-0.023041121833703337,0.13904848456096286,-8.921860714391258e-05,0.0001363607772748971,0.0071418918562661735,0.022379030796073243,0.11340534730986807,0.022299481878214563,0.0003055737000366466,0.002975183065947078,-0.029108604911652573,0.1726533528077639,-0.0004367170433837882,4.749056440663005e-05,0.02051904369353566,0.005044790872025049,0.028647039623994418,-0.019931741706331205,0.00029023529579173156,0.007159050701280382,-0.018898161469006976,0.26947445736729503,0.0009212947676887235,2.9102626157967795e-05,5.211363895210857e-05,0.003103794191574385,0.02931908277382068,-0.003487340036909129,3.536911926980346e-05,0.01089277260930945,0.01273472871533576,0.03164128706342624,-0.014802217793888305,0.0001296457584288159,0.0014592141460815738,-0.023965069266347144,0.17145113873691487,0.008577245496748787,3.228722281006438e-05,0.010759738665551832,0.03820517664457331,0.11560283018329708,0.17738049350701515,7.327083279128225e-05,0.009141185552335675,0.005116498180776873,0.019391828779435547,-0.008203813686285736,0.00012064314545299283,0.00655344202966508,0.023092931315950187,0.018879049040782688,-0.030903665261401002,0.0006991566787537675,0.012131581160784324,0.0028680198593169317,0.009399823304335883,-0.0022741034699035193,0.00012842467442459674,0.0197514730550259,0.036629971422801715,0.13762127732623672,-0.00473376865851815,0.0017083237162030796,0.019103647838368605,-0.0019811454019883334,0.01863748330700867,-0.006470742194277152,2.733450908960287e-05,0.0019453705931201228,0.043247217117552125,0.143966249432892,-0.06953334920756839,0.0009821294766134553,0.013693303199025118,0.0003290468578862934,0.0025719307278392126,-0.0465668391918434,8.519696501463678e-05,0.004352514159933303,-0.0016638146260834024,0.002496457860044929,-0.0017259015411532756,0.00015729904444785402,0.0010642981442723085,0.04070491796775452,0.0675472446041631,0.08683896503146685,0.0003458941044003655,0.002839272870798509,0.005033737465301499,0.01622555571361709,-0.007213011112037489,0.0024045915816088563,0.01612663719329273,0.039350227095025364,0.1648041428887775,0.09635482319944993,7.660718226302151e-05,0.018341763849841493,0.003956049647268924,0.00539502109533584,-0.031366935606648605,0.001822828364339936,0.0295862085878344,-0.0013192598199616148,0.003993768454062823,0.00019293658330080292,0.00013087704772810977,0.009335312853983306,-0.0023365516525423393,0.005620109421595055,-0.001137365215641818,0.0001685353436794607,0.0016063425752200222,-0.040287454600906214,0.1580240237456002,-0.09587270159123885,6.222438861816421e-05,0.0013617663952054351,0.026477350045602085,0.09367890469416135,-0.03479811829812519,0.002678864646306132,0.007213759382570506,0.002662841993354867,0.011760509056551403,-0.21407078597038742,0.00011263149461682939,0.004653197396502481,-0.009336932271297994,0.05183323904481778,-0.005887950192251317,0.00013063412608553396,0.0015954046422147756,0.022496373642263284,0.12419496310097504,-0.015585674149095428,8.567561538738728e-05,0.0024923457293367832,0.03509752820427856,0.14333481182727614,-0.07873404413854987,6.154209070404318e-05,0.026312249332132043,-0.00042133860375603854,0.0006904934731389748,-0.011911280083897108,0.00029750965753652816,0.01513893712213006,0.01823078530187067,0.07441844746468121,-0.09879095087255034,6.091708972342293e-05,0.008524159270230085,0.000506819476445906,0.005490507221518915,-0.06646872478242351,2.3816180564936477e-05,0.0042212761735391045,0.019063919050875525,0.06239586281075513,-0.07961595522920159,0.00010679854973765954,0.0023336436335390717,0.000335972254967003,0.0014824842750956117,-0.05621203796939249,0.00035722454334872865,0.0008219322969691672,0.003484798855228106,0.01701641820733198,-0.003302726646336012,0.00011729550269189386,0.00027159208149595926,0.00354260815593283 +2022-06-08,0.0009405870057958051,0.007042177162563942,0.0005438611974594008,0.0001412467982186415,0.001627170132708935,-0.0306977621713618,0.09639648452463138,0.005819171849870564,7.64110289178936e-05,0.003906980867562112,-0.007414394537841341,0.023877887350451595,-0.01098750154907949,0.00014364052959785372,0.028893129315437513,-0.031880000679420345,0.031899497258439505,0.05195638932475043,0.0003372891257755164,0.011567001056554414,0.01754359721185305,0.046021019206429585,-0.05413353622973042,0.00019946200829382396,0.01448469388303879,-0.01997995860560082,0.048871540824570465,0.04230941284764866,8.926583920775012e-05,0.0076036590999547645,-0.02563022185435359,0.1040312120169886,0.011181543911096051,7.229005619879596e-05,0.0005794172685492131,-0.013796734446602205,0.13754893415088906,0.01571603053137113,3.4396772208579606e-05,0.011810624541967208,0.02107087350862974,0.01553028378655532,0.07901740333217763,0.0010462800269506242,0.001083460108613841,-0.02515063102548037,0.05252413503393117,0.011917474988389624,0.00016743716541505727,0.037504864741085775,-0.029109431931723346,0.01793488790042983,0.04619646609791758,0.0007933401281863036,6.856501775029606e-05,-0.009302218677635293,0.10341016139327666,0.030831025723435077,2.680687061681405e-05,0.003926389537816871,-0.04060267498727966,0.10662614392578801,0.04439297963098146,0.00011312067322460561,0.029156565135327005,0.010095727137757216,0.0565713440384251,-0.002864646129814663,5.0234597346561884e-05,0.007597530362795867,0.04553926257171397,0.04371883825194698,0.10911154700713153,0.0020316100541425703,0.012606440321241218,-0.008319989275087468,0.053607607940743436,-0.0556198714779512,0.0001277169226132412,0.017102904231165367,-0.037619378024777245,0.2115624383362156,0.027625617159643484,0.00027534758963301766,0.014930400920765224,-0.013550486970590178,0.09505574579141311,-0.0076044089460564,4.015480168253894e-05,0.002497555905847301,0.023251259581140597,0.10729750912999104,-0.09233080161101778,0.0003571442415015997,0.0029633813998896624,-0.00015841151232563077,0.002684617882907545,0.0021355678600349414,2.4486938617986475e-05,0.0018113310228617314,-0.03873890935917926,0.34581608656618945,0.20500946257516922,3.7426904315280866e-05,0.010321732519675659,-0.002769696584842035,0.007437168734625607,-0.016608247511077718,0.00011996299958729319,0.010100477883507361,-0.0454332827285056,0.2904759676689368,0.02310042382318139,3.612902872127843e-05,0.004829992624173765,0.020830576690580617,0.0653465138091825,-0.016912262449795153,7.067344351822997e-05,0.0023893704782642984,-0.012808142351960528,0.050885436422541314,0.04732695371331105,0.00011509096665569897,0.009445747398748308,-0.04801686911955297,0.0453127639035205,0.02673270607293682,0.0006056878294280554,0.010688373412547405,0.0012373695294567574,0.004308391066446531,-0.0018898965946148366,0.00012088441400897354,0.007574324329917082,0.00073827905818699,0.0027736799325246897,-0.08251359122422802,0.0017083756780317133,0.01106416457735923,-0.004606501236833228,0.04176489803946173,-0.0291474528553453,2.8362333663274097e-05,0.0038649905026567222,-0.04199608819616074,0.11485929785737417,0.023274436292414664,0.0011954019276058192,0.05022208414890908,0.0082027845820124,0.06798234382961423,0.03670138350766739,8.035091302382807e-05,0.002107543137542631,-0.0006212119351068919,0.0008935952179529002,6.936088601557865e-05,0.00016407572855259352,0.003312701348517023,0.02259816001790698,0.03072749564440612,0.016969959939313415,0.0004221335087339868,0.0016455685549314706,0.015885670388313376,0.058749144382220966,0.016726644179370868,0.0020958217464899123,0.0022935735785942603,0.01879602155836989,0.07649922595198778,0.002872105530000803,7.883140446726921e-05,0.000554444923935458,0.00769626276765722,0.01218194566850265,-0.008863875064062396,0.001570508967951277,0.008498345503477438,0.03939739703302426,0.11375429698449134,0.08967979163448844,0.00013721947546528322,0.009872918127569862,0.005009310613469106,0.013487179939123089,-0.0057842159374914305,0.00015056262792408114,0.004096700252066024,-0.045011805157160294,0.1960503801630554,0.08621882332829535,5.603671480547437e-05,0.00666181639822694,0.02065574316676574,0.07746815593119556,0.003485882031364459,0.00252717702603111,0.007498452920726281,-0.016052256265890602,0.10080942249827095,0.005184531297594389,7.920918199305972e-05,0.013573342215146385,0.04085858105002807,0.2577224547065262,0.05024916120605958,0.00011497192567445657,0.019715011046392342,-0.012645307228612646,0.0880762125966213,-0.03328660839567282,6.790776749277524e-05,0.009447453705796645,0.01679341632885888,0.08424970937481968,-0.011937614921795167,5.009772890033189e-05,0.014933323516092317,0.023309759111871407,0.04190446305372951,-0.06654294294447728,0.00027121074979256465,0.013596975973184681,0.004297735986059415,0.015877598701812653,-0.0028552883355255085,6.730840318919519e-05,0.005778075165522584,0.0014415912847018605,0.01601990638731294,-0.005567460708736663,2.3217393366700468e-05,0.008053743994575147,0.011131572881921039,0.03549021037721451,0.009246493973387827,0.00010963694483903438,0.0020454918301707143,-0.010582255865880446,0.04501000945186603,0.026179651228456592,0.0003705929257434202,0.006443377156473175,0.01094449012102997,0.05730421694335265,-0.004535109821328443,0.00010939078710810978,0.023942148553888737,-0.003311516307723006 +2022-06-09,-0.00474092278003079,0.03733779342543868,-0.06450249293363233,0.00013427674869114325,0.015829137532978304,0.039150204823897854,0.11567934228798259,0.046883683112403866,8.12061188484047e-05,0.010155297089348984,-0.006619025042007311,0.025230537121747405,-0.0010445859354834266,0.00012135697222409345,0.002622926558943253,0.004345509739218431,0.004642224030923232,-0.005110951295199822,0.0003159239047164015,0.011249138889131562,-0.015301880797868577,0.03284725416356405,0.008503990777379589,0.00024374937781924532,0.003046562705072097,0.02266248486198847,0.057049008485188346,0.08904011957370798,8.673735331904354e-05,0.010349526433823548,0.02568585906763183,0.07970656007563734,-0.004739764513562738,9.455617244627766e-05,0.001413071784869057,0.02992073449502969,0.27108319976801604,0.05625012300201027,3.785020723231272e-05,0.009905200072565588,0.0032218738046421473,0.0028026223789216595,0.005173865893665863,0.000886520386121027,0.003197442878680571,-0.004557809848132166,0.01138579193164825,-0.0006690800088413573,0.0001399764083460052,0.005041518101571671,-0.0024794223669168387,0.0016608402586387433,-0.00435274182349836,0.0007297044745486352,0.00034628469472973997,0.033806126462292474,0.45371382618803663,0.08773359506932994,2.220425403051355e-05,0.0035173333758389755,0.02893351723502441,0.09206180417277537,0.027217529657816136,9.336256762535303e-05,0.010813243201924923,-0.033630437077182385,0.189326519057959,0.1791809016392993,5.000148237786596e-05,0.0005623047364548433,0.0015927352228034522,0.001128228571251389,-0.09478813976233176,0.002753400984836558,0.00831637691889268,0.005236543257360875,0.03060202419945121,-0.016713300408193334,0.00014081426380676933,0.003206945448428967,0.0359897993639735,0.2107516092563675,0.049810324869593414,0.0002644336733416962,0.01913975571852922,-0.002336388817055875,0.014107614912716615,-0.009936114174256399,4.665008918617565e-05,0.00022466814679168788,-0.050359691632308974,0.24521822156434864,-0.015678072824588583,0.00033846762279239926,0.02800938845166087,-0.006427660561531642,0.08490128020880351,-0.004779944929937402,3.1417304867712754e-05,0.018538350538351275,0.03694401963898682,0.3599493334594739,0.05344808616682638,3.429134201220332e-05,0.0012084923033549347,-0.030689955123389966,0.07967539715192955,0.005769877936696853,0.00012407799649477642,0.0030421668937651363,0.08221149378812034,0.6298042168564023,0.05710404952388565,3.015222404029048e-05,0.006370552083481305,-0.01782742913514441,0.055785028171765644,0.019681041674487396,7.085140133250272e-05,0.004831203522913937,0.003960814326881294,0.014219056063089732,-0.06316519629592328,0.00012736858184248732,0.002851750515388233,0.012118367344609937,0.011338122420582939,-0.023840561971764804,0.0006109118265645435,0.009424587544675202,-0.04264779592887737,0.1704708116550936,0.128186129184833,0.00010530101843130566,0.002941185880108483,0.04496110728675884,0.14359120658016952,0.02554890624934437,0.0020096865603093468,0.023103554579273863,-0.021890548291363,0.20764668441453782,0.057696742221974115,2.7109020988378798e-05,0.0034212371393382607,0.029983280030854417,0.0952952004488975,0.02918088519591248,0.0010286778364329838,0.0030549944984430205,0.0193109817653881,0.11302568359220833,0.06040073813355397,0.00011377657460742908,0.017676360365033346,-0.05311051524485891,0.07542017566067398,0.18393366973306016,0.00016620280970829995,0.016477226524657922,0.012139611509470441,0.018419614945479303,-0.0008663133692116563,0.00037829286952763947,0.0031474880123209116,-0.0038858260723585794,0.017486290687612267,-0.051900104180973516,0.0017224078864645628,0.002724860843683793,0.00848142480715039,0.02762635551615156,0.0024081957259796502,9.849985478656895e-05,0.015802146862470126,-0.06887452665247017,0.09697479180148916,0.13043420221351457,0.0017655375677288383,0.002101173910745785,-0.0061087565238278465,0.01886040018807142,-0.02089873348035658,0.000128326972595286,0.003857127654648378,0.002583062086821049,0.006115634663822398,-0.004945977083027421,0.00017121968256521655,0.008117628758070497,0.023903246402946922,0.10766373347564101,0.03480826376898149,5.4187782323104405e-05,0.000187068844500433,0.055396585738080734,0.19009302688571064,0.03602176629908637,0.0027620712062802677,0.04621899395525428,-0.010022424171837878,0.05729496531666296,-0.0031539602860830196,8.701555388489221e-05,0.0159915669880826,-0.006554741436781265,0.03238481697333895,0.0018842756232554296,0.00014678271022199697,0.00850657018540511,-0.00048240366915617216,0.0026487555846744977,-0.010929579721345008,8.614248892369533e-05,0.013484840438478047,0.025477131581862995,0.13221917084440382,-0.034068780546408786,4.8428776325103247e-05,0.009793161439938733,0.0015838891496117726,0.003031111531936814,0.0003622417880060885,0.0002547723311885712,0.0035773416654053375,-0.02201326792410903,0.10058390098561648,0.023583542949593365,5.442148901977028e-05,0.006743910476356443,-0.022676080966734506,0.22207950028673187,0.031398430211891655,2.6344551715524565e-05,0.013584440512227415,0.03590253202367696,0.08500401495595668,0.16413641637631993,0.00014763679333212597,0.0041693826700060594,-0.013096396738397702,0.055604690269180225,-0.005397823994393205,0.0003712516289856708,0.010824974338787763,-0.01054939626719165,0.04696834272977318,0.0016960258356334469,0.00012864537154151764,0.021300440809466453,0.0034850551905454942 +2022-06-10,-0.004559823724913269,0.028755717093188585,-0.011062953345624486,0.00016769126294197302,0.002182581083113666,-0.02108373047048036,0.07588709986824649,0.00646010194122086,6.666379391975853e-05,0.003107921942844675,-0.019689991141652142,0.06724700103815343,0.003415326927899076,0.00013544712902418797,0.0014571531681916257,0.009178916868915138,0.010476809506255631,-0.10602429914797219,0.000295685648131463,0.00028975557491264813,-0.03696611250826016,0.07927611313958206,-0.036679571529989165,0.00024398279630367313,0.016514514188678178,-0.03237501398826505,0.09593822232990735,0.030840290082897286,7.36826161766185e-05,0.0006912509256054692,-0.002597091673517659,0.012384710070434228,-0.07908085356927619,6.153061997025069e-05,0.02972917706784926,0.013322709424196902,0.11440765553352684,0.012176440875008744,3.993338123082416e-05,0.016679988078092872,0.020662214359515426,0.018637208909571334,0.07520659778775217,0.0008549501169819267,0.020003575900574794,-0.015072978825974262,0.0395498330872243,-0.0008331353568701774,0.00013326506654046,0.012344525431098178,-0.008656453813634989,0.00667133598541554,-0.00988625189442749,0.0006342369808011008,0.0011096611273414127,0.02018115349356161,0.3076247591363793,0.041136414959926974,1.9550032707903925e-05,0.004174394202688481,0.03955624559371155,0.10319625480130018,0.04280688032314175,0.000113868124189205,0.002016265186088077,0.019343702181334976,0.09517520858189456,0.02587562789922096,5.72107417023276e-05,0.005315724435233117,0.004522623332174235,0.0041872778107539185,-0.0027980640403234484,0.00210659774898472,0.002433707992753798,-0.03937215050383869,0.23445141433596994,0.02648314698792179,0.00013819374536595998,0.004315455810013614,-0.011834724867757197,0.06491954212461487,-0.012821786578519552,0.00028228704646392016,0.027100904729929036,-0.03364305028359354,0.2383515271217793,-0.035153984672506744,3.9759268163927096e-05,0.028742000642508952,0.006533111534730878,0.04047644004809119,0.009940264482341563,0.0002660140475655213,0.030667003867554606,-0.016053094359080776,0.18212634730772112,-0.005277313701005014,3.657768471706848e-05,0.015243081170995407,-0.007058393188693138,0.07517822019029992,-0.011994783748789876,3.1368627455965313e-05,0.0008537094447845653,-0.00674741125250244,0.01768996189844158,-0.01820977940632837,0.00012286637334802777,0.0039249154054831654,-0.011012362933784017,0.0727534009126542,0.0010860815048792346,3.496387770471914e-05,0.05474198167035706,0.013223983309470173,0.03917749351113123,-0.06436378696310176,7.483470092879429e-05,0.004907753669762349,-0.005153897890333997,0.01884090558464612,0.010301654968755769,0.0001250784907920284,0.006375185304265863,0.07507066715435227,0.07122348257292871,0.11190932907429191,0.0006024522511891223,0.004731123661820859,0.005302199922079332,0.016854254489061974,-0.005173896648096777,0.00013241359016027642,0.0024152062419832915,-0.0015609943463023672,0.006013977479655628,-0.03160223917075482,0.0016659375119736056,0.008298336376838118,-0.01286908211948273,0.1581996651581342,0.005810890768510679,2.0918195016370218e-05,0.008933130170306764,-0.024406136681544913,0.07577216271978997,0.003418868141227197,0.0010530782078096543,0.007531753335988096,-0.00042512613366878666,0.0030390007911281695,-0.024765119838308182,9.315638630429399e-05,0.0030110698302236666,0.0024802586385727896,0.003498852520755931,-0.00994113007271379,0.0001673080048110854,0.005833652981269322,-0.010418385264524432,0.016419030031643776,-0.01035222867623488,0.00036421416293506113,0.015688023264102787,-0.005218997978928934,0.021094791203559386,-0.0384603198694287,0.0019176186231753397,0.012759053405259528,0.03835021811491763,0.1488047617100504,0.052617231956233204,8.268778910880714e-05,0.012120288508401685,0.03808751847670943,0.05295207256897522,-0.005937400732653372,0.00178803866745188,0.015161596118263355,-0.01257249738684598,0.03692901061186886,0.011304438772189826,0.0001348869448629884,0.016664472379338716,-0.03681983267603461,0.10258946653235938,0.034901791524565205,0.00014549210092085617,0.01599712510189213,0.006488705642726203,0.02264603411789364,-0.04211398960602446,6.99326266914614e-05,0.006898681420044007,0.06195573363256797,0.18546897586172972,0.03970197295906242,0.003166126684275152,0.01477950377300829,0.008912919722995644,0.04322493638339441,-0.021196043762221336,0.00010257138101417204,0.040847141163867375,0.0034066462188904125,0.019436799283073812,-0.06173983817221786,0.00012710512697618437,0.007026033338326673,-0.01459091310426283,0.08019142713644761,0.0077026833266512496,8.606037363343032e-05,0.008022037335726474,0.06070221222807072,0.2513370954348578,0.014464818970022176,6.070092676218825e-05,0.019590303793362032,-0.0018536022969913304,0.003278249909426462,-0.04647601089699007,0.00027567913356312353,0.03400820479251627,0.005466619874920932,0.023446197401218356,-0.0042962778547807135,5.7977680244781115e-05,0.0007101918447446113,0.04009844953070996,0.44436840775819186,0.053607272435227143,2.328175369629545e-05,0.0019454442804570195,0.015344214277482891,0.05773234143996635,-0.04051194901084374,9.29040074275196e-05,0.006987063737480244,-0.00927935954421838,0.04309985160405072,-0.024762513135634663,0.00033936746046960703,0.006965817453707336,0.03187405649648272,0.16410964064094521,0.02329826231356089,0.00011124360122698968,0.0067112735587160225,0.0029370290962018653 +2022-06-13,0.00933858485076595,0.06307716215336599,-0.010858404130242177,0.00015656529726708365,0.0063638463563465255,0.01347388706733889,0.043965992320680665,-0.023218427585206945,7.353372215965558e-05,0.009996548678175173,0.00435445511084985,0.01478773876332736,-0.0015105975580030524,0.00013621635427115656,0.011198705531115594,0.033064581075185596,0.03637820181142891,-0.0022829791349467093,0.0003067535892482905,0.01791484726750123,0.0031751671160494058,0.00719417212247119,9.010616579397101e-05,0.0002309316912627437,0.001576345462212786,0.006882677899880322,0.01955143768891355,0.011450466709223669,7.686444350840264e-05,0.0012463600905031798,-0.055021118899947014,0.22689220251547051,0.021829480933617793,7.115406269508609e-05,0.02297577164798664,-0.02003465938409487,0.19539576686203586,0.023637716035707704,3.5161340752759774e-05,0.015277852991703289,0.017047670075471356,0.014626565652199492,-0.017503992233095858,0.0008988090852001043,0.010859760494257152,-0.0442206447149864,0.0961824161949791,0.068038612052378,0.0001607649144358081,0.008285135664613334,0.006667218918570683,0.004854849152657439,0.011789479916407511,0.0006712639642835041,0.007668429116613317,0.002691609728312459,0.03246041220643974,-0.08054228599310956,2.471046102893888e-05,0.0007705668886887954,0.07956258507152403,0.22218244824976627,0.0667924274592447,0.00010637759689338157,0.006353322748345821,-0.013831200251340998,0.07889702796760069,0.025604440438276383,4.934703277490307e-05,0.004907843042527699,0.03789421256782154,0.02656420436116444,0.05552755638314508,0.0027822685516296027,0.01357579055111285,-0.053670384741451166,0.33292312822193104,-0.013098154115341105,0.00013266087260674288,0.038108713245002125,-0.06246281203574262,0.40134802309332873,0.11679769864761076,0.00024099533492527597,0.008539102158436571,-0.036513648554449836,0.226217602596033,0.013846475613723824,4.5466318676867346e-05,0.004955203062642365,0.038191664740552606,0.21171113457793353,0.05489902398146193,0.0002973114925628199,0.009029792937707705,0.006143199081275104,0.07728119666728417,-0.008952604266851847,3.2987619961412666e-05,0.022619163928623474,-0.02236505391799483,0.2358910743056789,0.042467691706688335,3.1676715956067753e-05,0.017272780010573786,-0.04920038562077303,0.14138288397294246,0.05631783610440917,0.00011209711260592512,0.012474130504980438,-0.007653213716746841,0.07052460560124048,-0.0069163187526673385,2.5066606947434735e-05,0.03777495865170168,0.04154105676368702,0.13885002372842836,0.15375774159110076,6.632984223963883e-05,0.023551147224516622,-0.010734699930192493,0.04480462371442972,-0.05405065371796038,0.00010955082949489993,0.012235319742096297,0.030737547930118982,0.03087869767428013,0.01279103344380356,0.0005689653319704852,0.006138346231309736,0.028345307735428454,0.09865051604728553,0.036958094181395985,0.00012093940398994554,0.002278682559990467,-0.04230919031005815,0.17901704375222127,0.07896238960086432,0.0015169089292514485,0.01577023533350526,0.01714519862991069,0.15778780781287188,-0.02719249493450701,2.7941600161216452e-05,0.006185475578412113,-0.01581952778855269,0.048983655749535296,-0.01621090465995749,0.0010558776354986728,0.008894812321211872,-0.034260160166403965,0.22450596853685212,0.032653203807301315,0.0001016218603042185,0.006991530441125094,-0.01702865081816614,0.028199590942711704,-0.1261508081336156,0.00014252229853040178,0.001919522752804938,-0.04097522120160279,0.06250457847053179,0.1332036537811392,0.00037628195339352224,0.005353174586048002,-0.028716986868040993,0.12175378414072732,0.02486619532593563,0.0018281285986004126,0.004761099311492762,0.00255582178195703,0.010611873772831711,0.000457880098407155,7.727319370793702e-05,0.012814730236518183,0.005138043553205387,0.006208667826786354,-0.021421387951560063,0.002057200153466253,0.018733928139851974,-0.050234598016731274,0.16975752972460856,0.13468521553306453,0.00011724380946008983,0.00543722968406808,-0.05223431527628849,0.13410557409573115,0.009139341889080372,0.0001578953907912835,0.000273304529717433,-0.03900411583545459,0.16710040265735115,0.050568594969393976,5.697008483562887e-05,0.009895349730630547,0.029834487409314367,0.09881457855937255,-0.005896466954853683,0.0028616440723388988,0.012593990602147588,-0.03541017432846349,0.18537816369306512,0.06224089211492875,9.501891340627708e-05,0.008080747909054574,0.037715145811145434,0.23529611452763577,0.038546798546815135,0.00011624166441335658,0.005482345123972202,0.05744433271856502,0.3614100626334296,0.14120789826458463,7.517884468485774e-05,0.005141817975909085,-0.02330169681182182,0.10671296815984889,0.021476141544376888,5.488045992874989e-05,0.018609505633055634,-0.03344432200199709,0.05387267335836814,0.03169953775730521,0.0003026796777272876,0.0031030681339189272,-0.005474817224071717,0.023346982819774615,-0.0012970152047199481,5.83113689197905e-05,0.0032705201019910535,0.004333281504358819,0.049706210785850295,-0.0013176730314717804,2.2492489761146512e-05,0.011081147325258727,-0.002170907061159756,0.006308399561937576,-4.876457329233677e-07,0.00012029040937269345,0.00605385312907677,-0.003127024126045131,0.01184114168002219,-0.029084250832623136,0.0004162609062402402,0.003961354232736399,-0.0025743149678086738,0.012657211870910874,-0.04166486171634111,0.00011649181931329701,0.005789479554951413,-0.0062235457328926914 +2022-06-14,0.03275179125993128,0.20090004109459114,0.019417046949957013,0.00017240172849272966,0.002536742256282174,-0.02405682521081292,0.09124206460386115,0.009107978575533469,6.326357579119542e-05,0.011595721158395278,-0.016147829449476566,0.05286605802500297,-0.1596521144456398,0.00014129748443094214,0.011435601171750987,-0.023254318104453366,0.023775058529937117,0.0416853183493359,0.00033010330353352556,0.01717723959373032,-0.012313175564522421,0.028951033884624732,-0.0016277463223431194,0.0002225377877763599,0.01819121799779713,0.0131555948248271,0.03750632709014006,0.02873747413071256,7.658658281961154e-05,0.007094551466757312,0.005537483969647671,0.021753505047908992,-0.012639413883228444,7.469182900496916e-05,0.020236837219576066,-0.020272836272475347,0.18986342956063898,0.02901019450292774,3.6616076437744294e-05,0.0007028046322706228,-0.005671159774624119,0.004988766899249639,0.0018095658835456346,0.0008766443893324553,0.0015476533492770504,-0.012968309771713381,0.030724080845634525,-0.02816901273790673,0.00014759320481647678,0.0005844084745771784,0.008793538928240573,0.006809799274678217,0.0027162548827550804,0.000631180739515253,0.004277886252618756,0.007468781674972153,0.10938781505577726,-0.014223633380942192,2.034715091190761e-05,0.004482505694242334,0.03169474691033903,0.0940279946921717,-0.05233751803893619,0.00010013390474506143,0.011139888432770298,-0.004385683870261479,0.01896189304947531,-0.03558751556871354,6.51054656154651e-05,0.010199871747827242,0.008982201145711835,0.007207988279955043,-0.00023689882615047386,0.0024304779036372565,0.001635214567988082,-0.04077918554829245,0.2582720399828983,0.02489278605263518,0.00012993114409600456,0.009639879633729014,0.01800603683153408,0.1050816011269743,-0.006814982830917009,0.0002653381425289028,0.022100058155893134,0.01057602659718431,0.06256263635322386,-0.009926331278565466,4.7617703772852896e-05,0.0034354153882786703,0.005481294598848994,0.0299447240173893,-0.007575287498112965,0.00030168216565137034,0.020564754331328046,0.035491547065841005,0.4775348866554683,0.029221035593317728,3.08425343448254e-05,0.005882193889480303,0.016766110615551538,0.1637114780762129,-0.007066400514941047,3.421644666625911e-05,0.0020196419327035736,0.02404435798696407,0.0574488525607432,0.005711449774935468,0.0001348200805719186,0.00011940058597969465,0.033580239115836304,0.23893060112950762,-0.02288905605143469,3.2464176036480646e-05,0.004488373121208044,-0.014802838692791462,0.04656936252770323,-0.04678463499925723,7.047289230001644e-05,0.005953479217659506,-0.010963023348642622,0.04355958364388438,0.029307736823658795,0.0001150787708794779,0.0016605178308057172,0.00672362599123452,0.007629516465433738,-0.0594593502094644,0.0005037117644129944,0.0031974208023716035,0.005095415946482651,0.014321522187374269,-0.04769830928741121,0.00014975332394336462,0.007562935673825145,0.06477951488844794,0.2357802716154026,0.05406568564631332,0.0017633941773313006,0.009952187782758342,-0.0382651360305487,0.36294452407044775,0.1154721683217656,2.711097949220076e-05,0.0007939884706584487,-0.03962538999239968,0.09683032269880879,0.014520397625339345,0.001337930148625428,0.053537912919258634,-0.0251709823327122,0.1988236239078425,0.014414608256782405,8.430587160696478e-05,0.012153286944372468,-0.0037629409241391834,0.006043701815972184,-0.00022978956076617697,0.0001469500565422523,0.0031665561966462133,0.02429780021606841,0.038667145567214005,0.013549609844963003,0.0003606855612770603,0.010601387816225804,-0.02472837039967575,0.10082571786557025,-0.048115728475643854,0.0019009667280904686,0.00859790167930986,0.030582181034042907,0.11088096710096136,0.01137463022154191,8.84915536398444e-05,0.009836243213103377,0.021287874420802287,0.0266174388124736,0.004943779960124935,0.001988122896785568,0.010231344166190978,-0.024049419063741227,0.07547154881257581,0.020049669996278333,0.0001262517375837765,0.0015797533454062222,-7.244817396757028e-05,0.00025233712274153324,-0.02948047657093486,0.00011638758934815786,2.9876356779941606e-05,-0.024567691834829278,0.12580260601130713,-0.0021881973572882743,4.7663797774608636e-05,0.004157018051339929,-0.026464804742021786,0.06729990693991525,-0.0017795253644396678,0.003727110668308693,0.0021607421669604626,-0.0037700600231581846,0.022907604920572328,-0.08434271455955811,8.186705182892156e-05,0.00897799194949531,0.012155206536340567,0.07290724469641247,-0.005499983973104502,0.00012090727725117484,0.007970583668957957,0.04270347701439107,0.2528832115471912,0.05928473644076978,7.987151793585647e-05,0.022643311972516945,-0.006205776459373512,0.02861712384966435,-0.01028466688069165,5.450264004156509e-05,0.0037779560450312104,-0.063688015768681,0.133231818092899,-0.010945975666387123,0.00023306612639096774,0.01771787540895395,0.004942605234391449,0.02335921991498415,0.00020502801981894757,5.261528961976975e-05,0.0009833273800531586,0.0009353369906418317,0.010514216649401942,-0.014094470695245085,2.295210246294519e-05,0.003300316230232503,-0.003300473992672776,0.009415951675460926,-0.05417945919873257,0.00012252396949431318,0.004394983967586746,0.02746188861938865,0.1153788887824664,0.10264907197767245,0.000375173383834768,0.011078240855459123,-0.05110678442765463,0.2535238206196722,0.09789333515367253,0.00011546000752981107,0.031289794242866945,-0.0006396997085542902 +2022-06-15,0.004491804333737031,0.031047406410568475,-0.020680488581599637,0.00015299670829124363,0.011157667468933662,0.021925216988548477,0.06909720277033313,0.043371292858640706,7.613668442155154e-05,0.006008836082687452,-0.0133528347831686,0.04960498138336728,-0.020137566924895305,0.0001245217997262588,0.0051406153489720365,0.013139903539733372,0.014798466886964307,-0.023495843801114493,0.0002996700279279841,0.003466329317930749,-0.029033473291539883,0.050345784992801804,-0.014409631054246884,0.0003017405303737143,0.0034815392183696146,0.014309874867642462,0.04537537614588843,0.025831515226889975,6.885925785764024e-05,0.0009074617295434524,0.013101618444314784,0.05310459171950955,-0.013448101067484737,7.23906920351684e-05,0.028420415157586785,-0.005236505759102285,0.041996308280268985,-0.03001143063412977,4.275915212229119e-05,0.005132535219567564,-0.005412805822419605,0.004819354771301175,-0.024738400088014985,0.000866120537348713,0.000252042867940693,0.003026681269480043,0.007617576616630549,-0.013924950805842377,0.00013893502531523162,0.008494015236563119,-0.006910485864944804,0.004909775511824488,-0.009601748850002876,0.000687972859651087,0.007022512165802339,0.0098041469878479,0.12234910271585588,0.007575933846929863,2.387986209889134e-05,0.0020936457791756284,-0.020417619317004112,0.05499124699709968,-0.0021542138320565112,0.00011029671352252473,0.0012924221784034998,-0.013037186275213974,0.08371381586748754,0.018919563236381224,4.383777977419248e-05,0.005104010833328099,0.025283935811906084,0.020852749764244255,0.009944105177785873,0.002364853925632305,0.019882866294547098,-0.029332330138521427,0.17462543006338083,-0.0818546792927368,0.0001382264592495153,0.006105066086482904,-0.0031042232593824362,0.018401757569748437,-0.005472086132424999,0.000261217263637337,0.005504060582220335,0.012480935623223905,0.08477144498040197,-0.03547618988407628,4.147233739721783e-05,0.027815521758212575,-0.014813682312677184,0.06974408292039544,-0.015289501878973268,0.00035005998204112816,0.0035588041370099672,0.012762844385921472,0.1931739809833166,-0.29328054640125517,2.7417577221269502e-05,0.031215005122527086,0.01360145232929991,0.16098317225425365,-0.06616077296585536,2.8228416175626785e-05,0.007188375688556594,0.0052780492065430205,0.013034890294494417,0.0012301243969845158,0.00013043339851579806,0.013522511686120795,-0.001384486433784685,0.010929394343831214,-0.008741217413740085,2.9260718402436353e-05,0.005379386238403954,0.0216965153018474,0.05652189615785005,0.016773709901848642,8.510413197624306e-05,0.01452410835359259,0.012066057533921816,0.04362324293018487,-0.014917222644376818,0.00012647248145878544,0.00128639294975466,0.05169319820196415,0.049081757775556574,-0.016092474683961747,0.000601989416288789,0.029606620659000354,-0.009411508667321154,0.03732613468736051,-0.011745881403540052,0.00010612855149594464,0.008247166272412378,0.0004230275884696137,0.0015834033324609758,0.002237394932007777,0.001714732232841848,0.005108467623662791,-0.011561450782493527,0.12485244296190555,0.016270508687928568,2.381208836295413e-05,0.0072765767138002575,0.03421690152516442,0.09750929187023746,-0.043380846650153515,0.0011472708184185735,0.0010040868022120038,-0.002792814632526815,0.021793371554131653,-0.0038272796854906944,8.533817112390323e-05,0.0009595582633043067,0.02053984516662481,0.028216512941853164,0.023132846010687665,0.00017180634947403794,0.0111414426550413,0.023987541586865273,0.03517550151778862,0.018646442718152925,0.00039142571751158795,0.014939843647748495,0.009752148020606444,0.039896993182224665,-0.11052032103392014,0.0018945691407889955,0.004249070324310388,0.03498655817783986,0.1498082255106637,0.0330810407169783,7.493003427132143e-05,0.00013330938909692858,0.03122857843528115,0.036583895396353025,0.011586473266646698,0.0021219710778747677,0.006780115333355238,0.022412127038989517,0.07618811859321609,0.01793547505738048,0.00011654988863644934,0.00732927271245191,-0.03306715335085806,0.07698868961083413,-0.08085155478072549,0.00017411262283376718,0.0006863403417393533,-0.02158705149618093,0.08579838455450547,-0.02535979884476791,6.140845086871916e-05,0.02153966160953231,-0.04837775823175922,0.15588362610096243,-0.010189943243693742,0.0029414623786926117,0.04367172148073022,0.009824174129102976,0.044891434550375475,0.00632611850264325,0.00010886120526020635,0.002725855146820219,-0.015401100806819275,0.06919521513354862,-0.0036105124863298438,0.00016141224725060665,0.013963818815359132,0.006267267565018422,0.03479930667612257,-0.02199883963084974,8.51836693219833e-05,0.024767374938813206,-0.0009771601241415236,0.004893330864741597,0.00139716151034068,5.018900075769535e-05,0.020405317017073876,-0.047585338554776514,0.09813855400823225,0.02388695528598521,0.0002364083995469802,0.010619552009500396,-0.002131093745949159,0.00839087569371074,-0.0174457170445541,6.315527683324804e-05,0.0016172567308534091,0.03325177688672592,0.3769207817908961,-0.12579987086949182,2.276124743783082e-05,0.0003428813687707562,-0.003788724881084471,0.012243228248784599,0.02110022791458682,0.00010816981539591974,0.002675606011897671,-0.023057763167258875,0.09653850673061776,0.0035853168254286493,0.00037648230449598987,0.010815087768549524,-0.018167462400918953,0.0996350750025874,0.00726506991510149,0.00010443686195767646,0.007403098806494946,0.0027682097185408026 +2022-06-16,-0.02082340976478012,0.1649070141257991,0.02105016957605446,0.0001335362883935544,0.00602846988059222,-0.029525120978751717,0.09968809385339639,0.007654694119605565,7.10655171036639e-05,0.003092656598985587,0.017091873259148165,0.06524652809175051,0.01930888907333027,0.0001211795851444004,0.012968897303126318,0.017309032927218103,0.016525483296935994,-0.053209813896387806,0.000353497617322948,0.007217899734053201,0.0019406610543119443,0.004935616987455316,-0.02818538182138651,0.00020573397272476395,0.008267729951574699,0.004121682830472634,0.010274651365480194,-0.044345539250578575,8.758993709159846e-05,0.016011478777314257,0.05144260693735703,0.16784963920156595,0.01851832970572853,8.992747765295645e-05,0.007340364829551008,0.010605173227358308,0.08239725364963708,-0.0448842197376904,4.413708474597487e-05,0.008205870015909804,0.016207542564468314,0.01190530093063186,0.03406193718610562,0.0010498362871600706,0.0006556107148134134,-0.008960038109515381,0.021745371573003793,-0.09673132374684852,0.00014408040154820746,0.020611907571247087,0.016332720674237973,0.012590874085168353,0.03456699838507614,0.0006340551175947288,0.0002614392052886238,0.00728189805917159,0.08307194970872742,-0.0643665022391508,2.6122394312234375e-05,0.0024891085484047577,-0.016232215846024238,0.03994477288504784,0.004475326210092334,0.00012071712693288416,0.02844947365903299,0.007375953655462868,0.044299817052944404,0.0023215091723348606,4.6868177382152125e-05,0.013070732419812357,-0.0068377189253363505,0.006726538948750949,-0.0005428538745940446,0.001982634028564363,0.010888493876784968,-0.014168523609523724,0.0849573137064229,-0.011218556283759678,0.00013723849098896853,0.0030198164226629513,-0.0049650776767413635,0.025574612704263668,-0.001230311966095999,0.0003006250829799791,0.02321427966588531,-0.03452038543529247,0.20884731676743284,0.02040056582989642,4.6559434008669606e-05,0.001987491794242885,-0.0432742498950022,0.2621546596305183,0.016220540812736203,0.0002720562920971958,0.009158684573475316,0.04267383540513393,0.6170865468143044,-0.04229133450595932,2.8697616700859037e-05,0.0067718926813709664,-0.003366232648631797,0.03595960826936267,-0.01583160411638187,3.127597698460219e-05,0.0059843800460596345,-0.003039054749589921,0.007944333480859975,-0.06643570231929545,0.00012322641493161166,0.012209336917560015,-0.008145027674208147,0.05873333526411566,-0.008368723873055747,3.203319641754129e-05,0.012452229946608613,0.010275690941242465,0.03326295660339382,0.0012213667753543918,6.849006316792177e-05,0.007718988315694835,0.00429921287812531,0.015572004675626415,-0.07936259523664543,0.0001262388472614051,0.005195007602101842,0.04469350542769139,0.04589862869229195,-0.026940076906697714,0.0005565706105117356,0.019018187960061793,-0.004450857232569654,0.01674048614938567,0.002214235546837648,0.00011190812185749443,0.01305663797377935,-0.037183056166787985,0.11878045155129041,0.03969762402123124,0.0020091820308473754,0.004952128591879572,-0.011282238982003161,0.10536484747444697,-0.05626127299755627,2.7534788647169587e-05,0.011734146475590365,0.03374945919535475,0.09536296684046132,0.012437796302874587,0.0011570665373470809,0.026798480510544013,0.012616953959797585,0.10661337615783872,0.03254633138337442,7.88076659228086e-05,0.011201661516314751,0.005813749893536642,0.008485816889964911,-0.10363227771447052,0.0001616992757389277,0.007339119421166612,0.03939859678754449,0.06292618844095997,0.03134912755741187,0.0003593794516269126,0.0006374993547282656,-0.03232001017655521,0.1368315206276787,-0.08202441069348394,0.0018307779648804774,0.003729520367304509,0.009080464624690143,0.028000202938471257,-0.004069328145478898,0.00010404884466151578,0.004125064603338795,0.020821512201215864,0.027686934522656075,-0.000805303421757745,0.001869453150336325,0.03195631307190282,-0.006710814274691555,0.025057594883102937,-0.022540472917227238,0.00010610891472656514,0.010156756594728845,0.018187998212770673,0.050016475467662226,0.007317906038763564,0.00014741178127494552,0.0023320048151432263,-0.058237332556138464,0.2271499613880974,0.07526798127945167,6.257527004318039e-05,0.0013172753163161683,-0.03160640702682503,0.09968610037901432,0.006318088632166937,0.0030050975846633715,0.00469020964360124,0.0007562276169747172,0.0039016674905151373,-0.005298695944373641,9.641461007125046e-05,0.010060030445909966,-0.004954256218917879,0.0314034395963971,-0.11248032632321348,0.00011440948454607322,0.010487165279066912,0.022766331294571507,0.128774252555567,0.013599616144290429,8.362049081570943e-05,0.005952939641974798,0.0016425899680882969,0.008952525716830277,0.0012272895887642627,4.611380765651215e-05,0.010011511095915028,0.022298237632061346,0.041818977327787096,0.011615996095796992,0.00025997197016798247,0.009384339292556245,0.016368602486467005,0.07286736584455131,-0.13856688017461505,5.585896799343187e-05,0.005068203458060042,0.001737107067255803,0.016803887042799472,-0.08914582086981712,2.6671541645666154e-05,0.0008693251507857658,-0.018186111141862717,0.06135180237320629,0.071495851731456,0.00010361472522237209,0.004094019896740501,-0.02207169760462547,0.08262834000662457,-0.0010108036706174032,0.00042105097796314977,0.015588883989404025,-0.034896299014772904,0.17806047473231237,0.025780279431632695,0.00011224929929362569,0.0027568833210081054,0.0006126239319630388 +2022-06-17,0.01939038363264276,0.12114059230414559,0.002222867519817877,0.0001692712856177891,0.009437621480131875,0.0011704841494189328,0.003833686198172931,0.0035672371151108887,7.325874966861285e-05,0.01845529603562131,0.03432297951136545,0.10863709743473064,0.04876605434690892,0.00014615175405761357,0.01873228591778254,0.009419138814290769,0.009468788703366827,-0.0003411741010000417,0.0003357257311414384,0.003405229653069752,0.0188925625164864,0.045788102002835285,-0.0435572152397675,0.0002158917261229231,0.01271167335759154,0.01907875487964748,0.04738211488626492,0.05709893260139478,8.79189163863599e-05,0.007494431791683688,0.029470880611679247,0.12822598555605358,-0.0925720600582023,6.743834791235271e-05,0.015935205839747245,-0.05259422453266906,0.4441176330908214,0.17004344901159443,4.061052968069585e-05,0.021677596434575175,0.012650999780638203,0.011056256527861866,-0.02778184468099068,0.0008823919312061688,0.012684088978273172,-0.02438189630792876,0.06639125702878598,0.012654701263544113,0.00012841580389584133,0.004801861552011852,-0.020608313412836136,0.013072613012662455,0.012324729082651413,0.0007705563500806446,0.013313268534215963,0.0017152917284473268,0.023173916397024017,-0.00963813745033142,2.2057756945198805e-05,0.005574484548530894,-0.06675240925649621,0.22674421660920785,0.11354534920629863,8.74544200780959e-05,0.024742865636865334,-0.0027960921730139786,0.016801977952929748,-0.0037047421418153303,4.6843883435925704e-05,0.0026220800254295367,-0.0016698169119814593,0.0013676403567601761,0.00321847475308694,0.002381331847896843,0.02468707464319035,0.016645754004354963,0.09936898935220367,-0.023203359425273826,0.0001378493451071113,0.00933723081316068,0.030642785019916123,0.16328724832885652,0.005124299819021451,0.00029059236249846874,0.004007565539521224,-0.04985340160593487,0.25790500053060483,-0.10145893786142406,5.444976249402417e-05,0.013404184118343236,-0.034746135190543474,0.20097195924880362,-0.03393881753313081,0.00028494290400630075,0.023402417504223744,0.04934055833435602,0.7849217440971783,0.08483785874158142,2.60860264748175e-05,0.002557025433175734,-0.0160931571443684,0.1436023575611509,0.010035882075586658,3.744220279863547e-05,0.015037418708366838,-0.03929254901278502,0.1285683296258687,0.0015312170899800443,9.844620016091695e-05,0.003051087873402294,0.0346715646645832,0.2833390701236663,0.00867754735776418,2.8265674460692524e-05,0.04670295887592156,0.0034876245010058435,0.01021904121913267,-0.01032283156983029,7.566533363486008e-05,0.004948463527813055,0.011141535667274846,0.047232544429897,-0.07780757092706468,0.00010785798654150243,0.0028162833316827786,0.0653858992364984,0.06882716566799962,0.0501344666364187,0.0005429999339435256,0.01953353036795862,0.0018036356956549022,0.007618099149174745,-0.005950602979945779,9.965250271057483e-05,0.014003181107763664,0.0740310550490528,0.2465598472030584,0.0628583847839972,0.0019271288862163466,0.013637976568689524,0.01911383231096694,0.1907441235250655,-0.001910520554068344,2.5767886555645878e-05,0.00479338399873167,-0.008994525356027877,0.02275957539454753,-0.0025776969642489285,0.0012920679821275193,0.0006748169355872346,-0.008676508547728019,0.05766941979419084,-0.006732632229116563,0.00010019015769442132,0.008806329499773419,-0.00908309523079263,0.013388411299470623,-0.0009828526307940355,0.00016012170583271773,0.003962175367362911,-0.015773452842369,0.021455616112723876,-0.001211274138582384,0.00042197788922518787,0.011400124653245216,-0.004938040348700417,0.017902785679906445,0.002614040595842823,0.0021378851113328626,0.006920060928255003,0.01601949117546934,0.06588670799066408,-0.02091931808656027,7.80083836375768e-05,0.011595325812268138,0.03218396431691336,0.04924838299635518,-0.016746290390564834,0.001624518847150316,0.019009908637490764,-0.00896973553115858,0.028271639547182793,-0.029642850441851828,0.0001257027212848527,0.0024482845278823127,0.038788879457293285,0.10908034227387864,0.05972509625816925,0.00014415214790113005,0.005774732527707081,0.022290814528835988,0.0848614344238186,0.04213086734512883,6.411054885580578e-05,0.014662380800286926,0.027431363901020217,0.09533824696785015,0.0027272967778623897,0.0027270826311854776,0.04497625147610345,-0.03554735001691777,0.17444016377193577,0.03157195190359565,0.0001013681021298288,0.004472770774013285,-0.016290969927507715,0.09197336916237218,-0.010715390910679622,0.0001284534078619651,0.021002100855597727,0.004494960048347333,0.029023345354364252,-0.013706603351414702,7.325327825433812e-05,0.012578680354242377,-0.03138616414826722,0.132804429412902,0.043426604493573516,5.9398171559874294e-05,0.025816549731847264,-0.06867097945820302,0.12396453123357336,0.07904248035479487,0.00027008794059368466,0.0064311384773671175,-0.02055833698175938,0.08525699028828176,0.06655112061871567,5.996148211748077e-05,0.0025322451429899873,0.014058618136228274,0.15411624129219081,0.0007568194567928096,2.353561285468729e-05,0.003875807937328149,-0.0031532304014650777,0.008978002526417084,0.012514030313508034,0.00012276793371531194,0.0024288183337421113,-0.023936948012600857,0.1137277168849678,0.06605240597087311,0.00033176489245374287,0.011859816762174725,0.025507690237932187,0.14122381501688808,0.0024755738029543363,0.00010345107095933493,0.010031678218999333,0.001166262852421996 +2022-06-20,0.021631118658499794,0.1544634536547596,0.004781033757421799,0.0001480948044326599,0.005546908783045737,0.001563025274221538,0.0053428993100612405,-0.011464619944308843,7.019392664297563e-05,0.0062072810462846,0.011148916184084997,0.04333275434867467,-0.05024117879069478,0.00011901824996670205,0.007485255624291424,-0.017510428549996262,0.01639057901409522,0.024715232016849085,0.0003605540146885978,0.0005560730952995944,0.0006830957668763531,0.001435002170284646,-0.05788349895538354,0.0002490730898837897,0.0004579172637451548,0.025727457535690442,0.07155604822823,0.046464971708263185,7.85049898470381e-05,0.007261313169141245,-0.028713763901548114,0.0905758349499053,-0.031952239892498235,9.30181363720487e-05,0.030487486265613803,-0.01903574070062944,0.17003369520434997,-0.010692717303327322,3.8391351568149856e-05,0.003974238814123384,0.016564239755734782,0.016113508574038267,0.025659404435138276,0.0007927316176229403,0.0008621492824709387,-0.06589881082121202,0.15319684720506244,0.1633207411512042,0.00015041447644937466,0.005962324228175365,-0.04028096591293929,0.029154461129382272,0.05532073871796493,0.0006753349341150388,0.0018668650431819737,0.03354359723284646,0.3949681399851012,0.13277279230035746,2.5308730391150348e-05,0.0028303897259910216,-0.025990046659862653,0.06531879764426061,-0.0022211478584212856,0.00011820066371667303,0.002164826207911192,0.017718502239785244,0.0994205051590131,0.022392100478622546,5.0166391222471384e-05,0.023255085309996214,-0.01646618713226793,0.014068809590808725,0.02853728273956612,0.0022827516606894974,0.00248735041455997,-0.005871637341120324,0.035124471417774326,-5.134590430796251e-05,0.00013756296697807444,0.003553386607502842,0.05475441527249584,0.2879808513187631,0.05312476347626771,0.0002944175986482056,0.012706709537195628,-0.010132071485792033,0.06422617529955083,-0.00013417508646655976,4.44372465343954e-05,0.02692342159830592,-0.012750269457905358,0.07419061440526051,-0.004832350079933654,0.00028324170682831023,0.0029602834968378046,-0.017212958542143393,0.21918692485929522,0.006058111289653011,3.2589005710827e-05,0.015455143696054656,0.005002150440369071,0.04915590956174119,-0.006141144840686841,3.399873211690746e-05,0.008603310966034438,0.009155326278769835,0.029810362259797097,-0.03487222996260698,9.893030055729362e-05,0.01470620747319338,-0.04871615233946304,0.34043466232972636,0.019993360606380173,3.305457544037428e-05,0.009692226683002693,0.004339212595622749,0.012265368494931253,-0.03398277130917649,7.843460437869661e-05,0.010553446878723487,0.023162744870441294,0.08913362162393726,0.054460211885153945,0.00011882205697012643,0.004769057317130783,-0.02071171151576389,0.020376963357855025,-0.05580263250330668,0.0005809678305925734,0.015065032668159516,0.012374300054869045,0.04798250770536049,-0.026006773150704793,0.00010854847090598183,0.005264057695451962,0.02277427071433365,0.06915408656410309,-0.023450986204466912,0.0021137119572048313,0.005741619506558805,0.026455211283771426,0.3061944966131269,0.025388936631057922,2.2217544004259646e-05,0.00016883027474504054,-0.009732476177102805,0.02995188572479679,-0.0020723613693603054,0.0010623569147492837,0.03807571203475239,-0.015110734982396649,0.0942782940008587,0.0014275029090087747,0.00010673319668812284,0.0028733410527331934,-0.0015107852812891107,0.0021914787244086686,-0.0017714004890724473,0.00016270873650784068,0.0009098091790306793,-0.03586883887458276,0.05283494492033744,0.04734895397525135,0.00038967269305284496,0.003428114319266332,-0.017389729074802227,0.0857122328271532,-0.08428032992610773,0.0015725351013738276,0.0037581034259026205,0.0011408549257607148,0.004283397904367382,-0.03263710097023226,8.545399528872456e-05,0.014510238579694622,0.01757747621863436,0.02655460141137027,-0.03764527282420156,0.0016454849855054405,0.012005123366818022,0.026571680356106,0.0802494027761261,0.0013981138421513637,0.00013118773894094563,0.009440469899409859,0.01167546046450471,0.029631909844118,0.005590519885673133,0.00015972568157486818,0.014202193130864736,0.0025995322245825577,0.01198859483396321,0.005489499822610231,5.292256042286163e-05,0.00011262532148402721,0.03398593806951739,0.14082453967625272,0.01101253490273098,0.0022873834754191936,0.004903655599822679,0.011868023415863956,0.057501847851288555,0.003050624472375347,0.00010266848748596136,0.006180522299389801,-0.00022865432525401918,0.0013092716712854524,0.0021915405581665755,0.00012665152813573388,0.0011384329272122562,-0.0031684890398662006,0.019627421765528414,-0.019207927738773396,7.635503015052862e-05,0.016091794712148666,-0.0055832590708019035,0.025488040993569095,3.88312633075523e-05,5.505524734449018e-05,0.013230202145827688,0.05843897509379665,0.09126982765865911,0.06395676316915588,0.0003121797685201433,0.021975850354026737,-0.02172266722346116,0.09313273394280888,0.049860157320251744,5.799962331975481e-05,0.00551572654335131,-0.012298972352691099,0.1139762197285439,0.01732690468673895,2.7841066147944e-05,0.002573652780542768,-0.01909093487945701,0.05415560468983548,0.08088272690194616,0.00012322327617767307,0.00492837389718629,-0.013996293167694096,0.04919615811019211,0.015563139180198441,0.0004484456472621292,0.004160486905913291,-0.014564067886381047,0.07394738404126631,-0.005845971208530364,0.00011280586383410538,0.011390763784044381,-0.0013900656775852954 +2022-06-21,0.01545748898082355,0.102789249300439,2.8081713256097008e-05,0.0001590295518887193,0.0028819542585057202,0.06711304842065405,0.23182612350113957,0.20622183072318254,6.946325325202811e-05,0.015726305955299575,0.05229497438650991,0.17845508288395728,0.11571273659287813,0.00013555896264465115,0.007044597365934753,-0.018535886657125116,0.020735629142595538,0.009810774153067471,0.0003016921462280563,0.008256129010234231,-0.02579514410561627,0.06437610375218392,-0.008027677255533456,0.00020965780876817754,0.008448658931450187,-0.004190637470586075,0.011305922333237763,-0.042644128092643924,8.093210457384124e-05,0.014506797164462031,0.04532225430314826,0.17177212077639756,0.03998281119848299,7.741920027126662e-05,0.018343017474498655,-0.013738529576710994,0.1269153505977626,-0.0128540251254003,3.712143135414142e-05,0.0016481226149707162,-0.0005577743770445213,0.00043661434075922855,-0.01992375776089314,0.000985156779372511,0.0024716614588236683,0.0322316317603838,0.07856627277253687,0.040339298575667266,0.00014345246939803235,0.002804309467301255,0.0028441528727390086,0.00203046881784646,0.004434056403621748,0.000684669481179818,0.007587349124352057,-0.008035078623051936,0.0987081087830406,0.024881084278586586,2.4258284719731404e-05,0.010155399683979018,-0.0407243554716954,0.12417876998218375,-0.0029642391889761204,9.742219351765222e-05,0.02257455433307063,-0.00900506542981916,0.043024351690107085,-6.499209957281981e-05,5.891614958168725e-05,0.006845544399679845,0.010665713094826876,0.009247419186310626,-0.026943626561186713,0.002249532774434044,0.010271413058874796,0.04740487919963668,0.3132611906892713,0.050527779516202125,0.00012452844288019367,0.009122277059073428,0.021397634332066696,0.10671025674706404,-0.013756572854199577,0.000310504449963829,0.018774274182830474,-0.017621572945631495,0.11633714155700885,-0.004022468987440832,4.2666521683906626e-05,0.02494763289754466,0.024659078847570487,0.162133755272629,-0.04199492997380064,0.0002506629895226975,0.004349847154190498,0.06490466426711385,0.9321078781994369,0.10828742047925155,2.889614849140229e-05,0.004891073200756744,-0.004413713195739053,0.04167790245790115,0.0012091929172334346,3.538180334578076e-05,0.00023479618553136025,-0.006956094358938056,0.018713492530172206,-0.009662079750396551,0.00011973837838098942,0.02579988586848989,-0.044764386562184885,0.29668296080050716,0.020362276814415985,3.485237747052809e-05,0.027121695707444375,-0.004975845909111322,0.013044076491631671,0.014657093777752822,8.457285041943054e-05,0.005330366097673193,0.0025840838187181623,0.010307702251214752,8.844914508286032e-05,0.00011462868945240146,0.0007663904715132011,-0.033124881410983825,0.029709046123665386,0.022122759194364308,0.0006372959895578646,0.014941187597073493,0.0049238215455333035,0.01934264647898935,-0.019515442810213824,0.00010714512579227626,0.009552386932206147,0.02487072043957186,0.07565950215945581,-0.0017743763978782545,0.002109813472339316,0.0060823304534963415,0.044730756100813916,0.4170371783051054,0.05036494199857685,2.7581231982942254e-05,0.009940237322147341,0.04557640796370571,0.11529870131660228,-0.016213147455019318,0.0012923702380670536,0.010712165762244359,-0.01965160194002969,0.17946288483056713,-0.002195744490046789,7.292038570029061e-05,0.0034611023116940744,0.010507548005371379,0.018799780802590135,-0.010572312203992774,0.00013191493976701118,0.01288384186228372,0.01610686687580333,0.023774853492686,-0.019042217304197476,0.0003888634578308776,0.0027045232605999786,-0.026546693728985517,0.09801413494732263,0.0041006630584299614,0.0020992882223422257,0.007180859012630507,-0.005453966851982146,0.018857665516509237,-0.021974997193277047,9.279294028180263e-05,5.124375434672579e-05,-0.032085251193946236,0.040404665737392646,-0.00194104546144446,0.0019740180400647047,0.010194165016601526,0.010150142019250291,0.03364681476159182,-0.007257734644226733,0.0001195209945121854,0.0009583304885745722,-0.0039737490817748486,0.010480208114046933,-0.03897479362809391,0.00015370603151007044,0.016766003800016967,-0.005670331575239054,0.023178917689584282,-0.011494356492975037,5.970754669684172e-05,0.0007483654156090419,-0.01416540653405386,0.041498950442134,-0.003868744047143176,0.003235265956232698,0.000784304693830361,-0.0122569734670946,0.057365201643857784,-0.008257470319157119,0.00010628581135620351,0.0018575532765302458,-0.011110008179641834,0.05818449957295061,-0.03255527266455018,0.00013847387950889972,0.00019469644123234608,-0.004842015774496207,0.02936144399177626,0.002487690632658476,7.800051827780353e-05,0.01661391830001877,0.028680901427654514,0.11353601986264333,-0.015457083308308212,6.349017532033032e-05,0.01372493779941973,0.014728554377208292,0.02937594919398571,0.0025645903227438436,0.00024445425899984264,0.01694097429674856,-0.0005504425060669461,0.0019942835652811473,-0.04423647598994119,6.863401875416774e-05,0.0010129695256670562,-0.002830254478382549,0.03285599474228459,0.008118199878989239,2.2225019535430007e-05,0.01644066123741844,-0.01143111427441969,0.039872549301504204,0.02465555923984499,0.00010021287624604879,0.002731959365426781,0.01643423827720623,0.0724583560578983,0.01743397657069492,0.00035751072424971094,0.006039460700934806,0.009654960384814228,0.0476229680790614,-0.03927359099798969,0.00011611968072341963,0.012924645587047857,0.0051253206535235634 +2022-06-22,0.017561906097152517,0.12892947865183815,-0.004492724902794695,0.0001440475937750422,0.0007662222839376132,0.018205114385470678,0.06688909409079653,-0.017640621264612577,6.530532941132478e-05,0.009630211643567324,-0.021382756647952302,0.07365285164361042,-0.025784764221570906,0.00013429855246055523,0.010299824682732123,0.00196661508643606,0.00224270660433606,-0.007983573300165414,0.0002959475580066567,0.0025083653378730423,0.01193482093845882,0.030005875060975375,0.012305323374868789,0.00020811691676671349,0.00915916221812153,0.00656374834744824,0.01745721981948958,-0.005271284822860678,8.209629941437483e-05,0.004556576871293001,-0.04423561336417718,0.18682673482801257,-0.0857098688933433,6.947409289396625e-05,0.017854066669985517,-0.0341685480643331,0.28105707737243324,-0.009800452825042957,4.1689876942678406e-05,0.0022673273509892095,0.0021125899167119097,0.001929113760362668,-0.01839705475877927,0.0008445048544474096,0.006180169820857331,-0.0006499109260836517,0.0014570255173957044,-0.030381159043954734,0.00015597269162324272,0.007085544437807121,-0.004157174341277086,0.0033082587223403318,-0.004558682736182729,0.0006142188352816966,0.008152360357510276,-0.004065023870289493,0.045916535641509194,0.004751080812030914,2.6382550375441164e-05,0.003125379107891436,0.019126391505387502,0.04671504263190807,0.006210563355930684,0.00012162625361325468,0.007488456538032512,-0.015836749778107836,0.09751782502152057,0.026594162465127243,4.571343610100827e-05,0.0028134596797058475,0.011289095533740204,0.01089883621866678,-0.04803071068390623,0.002020235482207947,0.009572256122811493,0.024212645087233427,0.1722945180992135,2.275671195689127e-05,0.00011564394119277021,0.0034041567001056048,-0.014445165255895476,0.09061734785034915,0.007054875007793928,0.0002468421947873121,0.031045531637403475,0.01897205074370345,0.10196763109343934,0.003940924617425088,5.240984842149487e-05,0.009149666895459015,0.018838803447053236,0.12372276441920867,0.010382559258829395,0.00025095191104067944,0.03379059682527487,-0.015127404543137893,0.1793637225386406,-0.015627740074302076,3.499935522541363e-05,0.029895394131927683,0.0019173202172235535,0.019545189076568475,-0.005804239513922126,3.2774530926100754e-05,0.011030782308120138,0.012398096320642834,0.030848031896495202,-0.05144800740893623,0.00012946438141250987,0.007416924672369571,-0.00045716693964039084,0.0031346131401285234,-0.1452682670836756,3.3688621679824285e-05,0.014583358754431426,-0.022054551400543354,0.0729543979078997,0.07514781592433029,6.702304165263428e-05,0.003167201112517004,0.01393446939423306,0.06439605840274108,0.026344178249493484,9.894178610984084e-05,0.009168875845862727,-0.05205199248552863,0.04808601266432997,0.05012907813637872,0.0006187199980024528,0.026541288589723024,-0.027781711998753733,0.0985210142318996,0.036690751726969686,0.00011869054932717185,0.003079292069557747,-0.056529372406048405,0.17912256776032592,0.08814631806123738,0.002025550299542338,0.0004775005372792357,-0.02064269273820114,0.17579464498770286,-0.010226871087049423,3.0195547040735947e-05,0.0032424403326273554,0.004403453869686144,0.013453303652772915,-0.03239631405770507,0.0010701281196595807,0.005297632437167164,0.01630686227117638,0.1283349447948022,0.03578392551368082,8.461573247368048e-05,3.723806019463572e-05,-0.015638654331087038,0.027363910026382693,0.010237963418898474,0.0001348859182626969,0.00944835860082438,0.049890655083593805,0.0798290229455859,0.09272703874895505,0.0003587255469328753,0.007188199849724549,-0.014639532448929139,0.052078366167886025,-0.03295527391506466,0.0021788141995727987,0.010651470022450624,-0.010120588148518272,0.04489468081706672,-0.016497928411011397,7.23271302894765e-05,0.016778838561685182,-0.0014127384655786474,0.0018012126411852715,-0.07347329714446506,0.001949727762437559,0.008847664764791825,-0.03597235998192845,0.11359094654511571,0.04968915641072831,0.0001254703902644362,0.021377562149527397,0.0307262395887323,0.08525155154335297,0.03159346739550288,0.00014610581360954603,0.014449952460597531,-0.01108511471710435,0.047151704760518595,-0.006505624491959695,5.737949447750006e-05,0.008315805672424294,-0.043429472710275516,0.14378883985932783,-0.08020145889416073,0.0028627105252727963,0.000681392482169812,0.026801625557199886,0.13231484570571284,0.04243958963904687,0.0001007611536912526,0.0020193240246339137,-0.04156146621789175,0.20505704633401992,0.12705920595325462,0.00014698633028183247,0.003848140528944058,0.026991265946705884,0.17436942181481827,-0.0012248887412483916,7.321526280229366e-05,0.014960757813935497,0.03933019865603,0.18622223066873822,0.01231948114091933,5.3081356205803943e-05,0.028228001241282302,-0.0164193578734219,0.035227065823217205,-0.020201842504622883,0.0002272527210140321,0.028793471713437598,-0.006710927339307973,0.02670692875694601,-0.08219425711915401,6.248459577334066e-05,0.000818709431951869,0.02942561099470702,0.30132000756428695,-0.07109118049682057,2.5195837871787927e-05,0.008588131393078747,-0.006721637743646355,0.019381163424105157,-0.0019234416227774495,0.00012122835828142517,0.002578440284316188,0.009396268263623565,0.03583604729115502,0.005333847651235445,0.0004132979748705177,0.008309223615477217,0.02220597353010559,0.11336464449359715,0.02568557341248304,0.00011219254075932169,0.017441399627986364,-0.0022477190115309043 +2022-06-23,-0.005985001629109744,0.03493935852157811,0.014632898206687069,0.00018114899531332073,0.009934506691902798,-0.017043626092784873,0.05305045966316942,-0.01407648226403673,7.708739560560763e-05,0.012462088843902657,-0.054759812922558895,0.18483348251710982,0.10136429256085161,0.00013704983404256001,0.0010064252567028502,0.0018427823240557571,0.0017262193672791875,-0.05392700335295088,0.00036028477442883914,0.0010779499640770206,0.025421502776660228,0.05119059208592132,0.041313724592027146,0.00025984169440845735,0.011316454788280595,0.01844592229701513,0.04842738288014822,0.03270822496195202,8.316797268741012e-05,0.008283345921506832,0.0008067140196162148,0.0036687885243163122,-0.02681827842917113,6.451887420178507e-05,0.044911726275905076,-0.024290829890200292,0.21765481818873914,0.003709283395457604,3.827125303150513e-05,0.021163118619377544,-0.004697953830199484,0.004276134406840753,-0.038104637034105354,0.0008472316738862395,0.004453249578925866,0.009347709779190246,0.0225614173137578,-0.009299568310097428,0.0001448774282134363,0.007484771943362695,-0.032409389163273586,0.024753875046864552,0.04641260081452717,0.000639958791508828,0.007215911591677195,0.0014424212067929616,0.017991018197497453,-0.0014735966914759466,2.389236525666644e-05,0.006693530486688435,0.03103445500656769,0.08014223482528031,0.014109549193210925,0.00011503598411277583,0.007870376636212892,-0.006541359212889612,0.03942953777319952,-0.02246072471974817,4.669905917085375e-05,0.004059474825173485,0.016898083872893585,0.0131208300267358,-0.012593456313352326,0.0025118813676348567,0.012829609546510913,-0.011969700865992288,0.07833417252013478,-0.03509916962006236,0.00012574309471741508,0.02737891807849783,-0.062064469759223445,0.29617464458287746,0.07725504395781618,0.00032449156002696257,0.020792257419301952,-0.02900867922131477,0.17028204792238857,-0.013977832877270016,4.798660741022271e-05,0.013067565234352811,-0.012600457125183104,0.06642546024381246,-0.0022535925524970915,0.00031263567653727696,0.01993574454917006,-0.05054693461403013,0.8456925903883263,0.05070307712618048,2.4803474923553554e-05,0.007877782901464413,0.0022744633798684136,0.021628158892817276,-0.008214423889662249,3.5135092919218e-05,0.006441805298016813,-0.0009696904627567893,0.0030688150691438507,-0.0021500401652813,0.00010178532365638638,0.01710564743592732,-0.0731265626339321,0.45807943813396446,0.07793632900907814,3.687455073006904e-05,0.012845049593476883,0.015345327754156557,0.0485453412201587,0.0011262691445798922,7.008192025098687e-05,6.387614409035514e-05,-0.0026527328219117636,0.008695859365625584,-0.07637981263168714,0.00013948567198241845,0.002083634032856732,0.033189351704022055,0.030846726599832903,-0.01803906240436064,0.0006149860242962509,0.008825867062314353,-0.001696576439087445,0.006680529052290873,-0.03682469875098561,0.00010689283206176769,0.006597144637917843,0.055813201946144815,0.21434850739572953,0.022314730948915847,0.0016712277922586035,0.020033714187074107,0.02395611168307476,0.1990898063808734,0.014249681731538207,3.094207967883045e-05,0.010331413454086004,-0.007718173138420576,0.022792443738112796,-0.011457151933345917,0.0011071205065250563,0.0065055317830065695,-0.02549207578712235,0.16021239391849307,0.009441824936204006,0.00010595823963733247,0.01028598618515451,-0.016841613077877408,0.024760686551953317,0.013305858505508717,0.0001605337643031114,0.0010414460180800298,0.009067545611444683,0.01474592367384701,-0.008083920848228674,0.00035295690376111323,0.002763959399619622,0.035920898761959405,0.15804231230871596,0.23996139690465165,0.001761668384451929,0.011002452525949136,-0.0043541493858168644,0.02085548230640136,-0.02150841672387188,6.698436700112034e-05,0.0069909934936026145,-0.01675281396934627,0.024115464527498822,0.013488786071962059,0.0017269084943735372,0.02325573358923889,0.013780092074148192,0.033882317446129157,0.0013722758122153734,0.000161136916519595,0.012456396583162924,-0.04597845490332081,0.13030719700849439,0.06269585758170304,0.00014303632585552632,0.01238326482016144,-0.01618228127258106,0.06637238088452503,-0.0007554898416402208,5.9506755786061355e-05,5.649298441890707e-05,0.009373986139639657,0.030613241315028513,-0.03831257008520171,0.002902238173040606,0.0001719050140151092,0.03868456702938207,0.21184985740850973,0.08133188755905844,9.083435467632172e-05,0.007021604764917431,-0.018474051189247536,0.1090400435149791,0.021452220363561873,0.00012286746865270188,0.0016446787716985864,-0.005197523891726926,0.02481009523344906,-0.02171538039062901,9.90870187190263e-05,0.004768133724237998,-0.016313802473838828,0.07886357249014793,0.013974547817813708,5.1990757839172054e-05,0.015402153444377628,-0.006863897467752837,0.011659239147738537,0.000613808803417084,0.00028703177132729157,0.014534299028598695,0.03327385511521171,0.1503561354096298,0.14530674163762153,5.5029598294403296e-05,0.005588234947516868,0.022355368676081063,0.22420917412129712,-0.002363286574689603,2.5725258235612427e-05,0.013757574878608462,-0.0062453894563094655,0.019079872135919596,0.0027134605987709014,0.0001144176517621397,0.004671635189030149,0.003782428393202435,0.01493238058151355,-0.0019259563277863256,0.0003992727174635776,0.0014623019067161842,0.016789067144338317,0.0810627548866529,-0.0850771772695415,0.00011862521238314056,0.0003719582836686035,-0.003730727497975775 +2022-06-24,-0.021229876033884286,0.15946961840232018,0.028573302854607154,0.0001407849033887588,0.017219757205659547,0.019779028918571185,0.05740676082402749,0.01696379882659998,8.267085886519132e-05,0.03319996086008588,0.020473244695003237,0.06655425263094979,-0.047241957403882456,0.00014230103888863348,0.005810620997244945,-0.009617842437982147,0.009963091409249007,-0.040923256009158866,0.00032580023968952014,0.012223057984626001,0.054129521087649214,0.11488972903747909,0.08739168629318685,0.0002465192011970344,0.008714883771593324,-0.0122198642914327,0.03761778851855045,0.01245265662320753,7.092835082843542e-05,0.005541813696610331,0.023926709838063175,0.09011310758913568,0.007845345053971779,7.79085051131761e-05,0.038895740879991,0.003238169774459936,0.025640423935664628,0.004333102941270658,4.330848859308861e-05,0.0016122764137007104,-0.001240989380777229,0.0009602781701195355,-0.01420621807275704,0.0009965883262041697,0.009321592694128,0.005466480876008494,0.012880318823848947,0.0008813625130758662,0.00014840314554968826,0.0068003046276773945,0.010814659421229469,0.00889260528135481,-0.0039351349457954635,0.0005944402247503504,0.006432611600213051,0.008300348406224012,0.11568802370263215,0.00037053532494127274,2.1381132730756667e-05,0.0001438341286176272,0.07295544433309334,0.22983076948349696,0.06895257665893163,9.429758569602138e-05,0.016990840339264058,0.021067764509765934,0.12362253074339524,0.02371081536469537,4.797142766535231e-05,0.00432444308700857,0.010039884014599815,0.007760430361558786,0.0014547489661155477,0.0025232824211646678,0.01086035576098267,0.017545247219210712,0.1198814479431558,-0.008859677336002812,0.00012043691429887837,0.030701046497700946,0.022806963918810493,0.11675497188488373,0.013423452499454017,0.0003024825487798085,0.015940261839211583,0.00793897994991588,0.04778716343462903,-0.009057677532548459,4.679661165881331e-05,0.005503578580288599,-0.02610517514522844,0.15221838624290454,-0.007685638256878564,0.0002826482529083773,0.011118405796108063,0.009314107556787255,0.13035698284192565,-0.002341983803010543,2.96508521991066e-05,0.0031858578622772707,-0.026015664929677038,0.2593688515665958,0.06211875453314911,3.3511882176615745e-05,0.005292273394094458,0.028264183770039232,0.0717285530017892,-0.05511068333266147,0.00012693083417122917,0.026035165755038232,-0.06522586843886966,0.4513605733123882,0.042002171664732336,3.3380176275823245e-05,0.03762475182444637,-0.02551045835081185,0.07459841643231879,0.08329704098801276,7.581690219745592e-05,0.007177373686377579,-0.0003413510329538982,0.0013555941513009307,-0.007958862083228038,0.00011513838423298047,0.003268402847244452,0.041121153075940935,0.037094195310035695,0.011998145713206608,0.0006336287744320271,0.016874307863141123,0.017795795645350866,0.067822811676359,0.02797932497760886,0.00011044031305501817,0.003571373633462656,-0.05464792234253832,0.17210070553869264,0.05418559826890044,0.002038028153594759,0.011287506163795811,0.008327811741635199,0.07176933296757981,-0.010341329402511795,2.9838307438074125e-05,0.014184433306665318,-0.06602520562114605,0.20216519150696832,0.09878779816694681,0.001067762466424268,0.03891957914809258,0.025087973536855,0.20108488049807635,0.059798375836441736,8.308293092261196e-05,0.0214023857566131,0.031894566943607976,0.046735300931491586,0.04232808236720861,0.00016107088784540437,0.01713696369730406,0.015178816873733547,0.023040152572992294,-0.00996716047940167,0.0003781433649866625,0.00502713136101364,0.005157086043741076,0.01983459444962554,-0.019899488925111793,0.0020152614326324654,0.02641856310330502,-0.00576893972718932,0.025172586880018444,-0.007082791707730909,7.352897696502734e-05,0.011546343604266297,0.03062871189958119,0.045570512625876865,0.013435487026273596,0.0016707905513566438,0.016719429816434303,0.02123860535470124,0.06745402897981122,0.005035183097267968,0.00012474815659816994,0.014968004552541584,0.004911092829835165,0.01303979237719871,-0.050837244346822075,0.00015267496983569441,0.04956825186821749,-0.019541849536992253,0.08699758136101508,-0.03506902233804109,5.4824213650295984e-05,0.009002209887393692,0.019359169361916524,0.07218656963713112,0.005990037176550544,0.0025418409548576353,0.0016517495529545484,-0.019823138482593712,0.09290715126421194,-0.030421424462680917,0.00010613627509014987,0.0011386820988431284,-0.025736880108217317,0.12310047602065534,0.020580202687724345,0.00015162016032293745,0.020123550268896985,-0.0012515535060230495,0.006391317408983878,0.0018850579435431352,9.262063062602261e-05,0.008770293235046,0.0035532158673965445,0.01673459433124945,-0.0830032618987059,5.336466639277381e-05,0.027733803194363447,-0.014949490846233149,0.029273584973000186,0.0026450239791640474,0.00024898884140813523,0.04220196844016976,0.017358063112359105,0.07725187599069244,0.015746449275054118,5.5873593561428495e-05,0.007983611167914545,-0.0018965105897185213,0.01703520464921777,0.005152310825214633,2.8723621963673976e-05,0.010195267621165738,0.025021373439418102,0.08499383161972816,0.026715170751090703,0.00010290410531161991,0.02252205049654232,-0.02643669254437859,0.09165417398056631,0.023239505187057675,0.00045465591277094335,0.01169187491697006,0.012879477894354749,0.05600779101582959,0.005325660901807885,0.00013171086740482982,0.013967050548175932,0.0027341572840009114 +2022-06-27,-0.01982146052975968,0.141075568866529,-0.047568090894616784,0.00014858344576010055,0.009280847268698761,0.061649066508657036,0.21956211513854082,0.07194717424108436,6.737202879403724e-05,0.007957299542576499,-0.023337351772074504,0.06631183611755645,-0.00936727305821943,0.0001628012457271198,0.003816943859324876,0.02303925921604768,0.024673116175937995,0.05101112159402307,0.0003151464096258225,0.0072082430124537486,0.03533356380473404,0.07590873626410241,-0.053806815688446946,0.0002435529836846644,0.008661230930221593,-0.0033683446485451678,0.008629945852913837,-0.0049960674427506,8.522268072642174e-05,0.004935869927404137,0.04636913391337516,0.1833484064586693,0.051917323172231855,7.420645752085539e-05,0.003427622184615999,-0.011635007615986445,0.09164520576991385,-0.0020644485154554105,4.3536702854199e-05,0.005038001031175945,-0.012054895196842351,0.010758502593805097,-0.0026381070398498094,0.0008640848620516721,0.012470386671492271,0.014249703144030968,0.03526468074179344,-0.02351432431169049,0.00014129531012299282,0.019358927332640708,-0.029022854062331464,0.018451234223605433,0.03155468302171121,0.0007688454603018895,0.010795378256867987,0.024676373624943085,0.40176954536751613,0.053764422297687485,1.8303203700524622e-05,0.004857811093075949,0.09968165004949793,0.29754001341793285,0.09159368321898903,9.95224085652362e-05,0.015249758043851834,0.013279059892991205,0.07378718200917386,-0.0024133656837907764,5.065802143720667e-05,0.00016385070753067727,-0.0037022310010096844,0.0037234843058630684,0.0057329623856801635,0.0019392641009202708,0.015301033794734352,-0.003905457833123691,0.028116756564386846,-0.024128548453751716,0.00011430331874505141,0.012550168247869751,0.0022722367156395107,0.014623975160451863,-0.0027346718466360227,0.00024060041065442856,0.009014786211989999,0.01081246422881442,0.06149142431331617,0.008771607456619333,4.95303146637062e-05,0.02932133648394394,-0.019275354660133658,0.1019601948107211,-0.1724460848047242,0.0003115720763820234,0.004040536410576765,0.022978782263535176,0.2759200651089809,0.01071192001019001,3.456001779357064e-05,0.010851345585303178,-0.006813940268134418,0.05933265710786976,-0.01293602285847172,3.83695082603338e-05,0.0005295229586169325,-0.06291886897109636,0.18871749954160932,0.12504354295786832,0.00010739683660789414,0.007023031990210548,0.06397216659745361,0.44096532719321574,0.011907618055339304,3.351035225859238e-05,0.025652272365162945,-0.002947496316687321,0.0077684536777478785,-0.03227793656420929,8.411938190764037e-05,0.0019083878366834414,0.004439469088999886,0.018419330098067687,-5.375549849969138e-05,0.00011020614243654267,0.00223069394704688,-0.08722552999368774,0.08079789923683542,0.0963481201696906,0.0006170482275763104,0.009014385997569409,0.0035761302265124267,0.013874005010267882,-0.032006230965941795,0.00010849194310268609,0.011456391014116928,0.06730746430008462,0.18407539122452077,-0.05034531340391315,0.002346857239426567,0.00013968938995441785,-0.0014776781116200284,0.014244743052861502,-0.005665797693925631,2.667518350733955e-05,0.013124187082812521,0.04296664343569187,0.13356186269189152,0.042106815802509925,0.001051768671052872,0.0380661436900076,-0.00740671975683088,0.05896960812361694,-0.0019401981481192404,8.364178920507284e-05,0.010573213897998633,0.0026164079130098156,0.00420882168681063,-0.10753150543670276,0.00014672033624840643,0.00039589359371245726,-0.014276386610788401,0.02005894461339395,-0.026041546205144057,0.0004085207635276183,0.0024169656818470065,0.057425841156153616,0.22614273202197935,0.28033677145814595,0.001968226486952178,0.007409751854133787,-0.003393523366077798,0.01187087878763073,-0.003083581726799063,9.17187957321005e-05,0.012750612916322915,0.027458534410586776,0.038441752620795404,-0.08034618025965004,0.00177562546739643,0.01722273297607759,0.007043341224965763,0.020003797088222947,-0.02589597717490915,0.0001395026073772489,0.017713871723443627,-0.03654190544336105,0.0960467194747774,-0.014614269463326536,0.0001542300607603418,0.024235573444892775,0.026462063861484808,0.12284400630979037,0.02265145286381502,5.257553087136136e-05,0.003417359273373916,-0.02937265187745123,0.10313748320495107,-0.07380659171634409,0.0026992597989614147,0.00032926490742227513,-0.0218862672184162,0.10116988003918155,-0.0990968258102817,0.00010761208179660315,0.0036730944429438635,-0.04180745156426264,0.18717701276651794,0.06613184749820294,0.00016198021376597608,0.013584956676318077,0.01696477818036442,0.09047557810102148,-0.006095195642432423,8.86881340080262e-05,0.010595413103857075,0.04449824751653766,0.21536123972201254,0.02238877847527955,5.193053056771394e-05,0.0002078692100102239,0.02248674022518811,0.03466716849692448,-0.018495717994093514,0.0003162550910998286,0.005461601443448993,0.019501204052824635,0.08559753109016471,0.022758845656423887,5.6651910985783476e-05,0.005467381254598553,-0.009381809868594708,0.09720159401296875,-0.03612685825682089,2.490259042569244e-05,0.0009294460144434714,-0.004077017490324344,0.013653104686709536,-0.00360820861316894,0.00010438067929924465,0.01470157477174399,-0.008682921847193712,0.03404305882175287,-0.06301987316735623,0.00040203631881303677,0.0029678576178859776,0.010058262021248827,0.04722404110088344,0.0028060749347003917,0.00012199206779038093,0.0006968819838697826,0.00645459754676011 +2022-06-28,-0.03759630412330248,0.25594136764879877,0.006696083268166123,0.0001553428439009187,0.006603654728898619,-0.04691579528621749,0.14953202864504372,0.03344302990878374,7.528273420689374e-05,0.001982444905175315,-0.008655593245372314,0.033863077425322644,-0.003089339095587916,0.0001182408710046328,0.009793794596023208,-0.0068183266089221215,0.00667260853215053,-0.011491136063289841,0.00034486570685583143,0.011114775344646163,-0.024311276277564846,0.053832105825665666,0.02947728576650731,0.0002363002396056092,0.006797872988172951,-0.00883250031781834,0.02672635431479329,0.0056995285236433576,7.215902890153217e-05,0.015160854401267958,0.060071206905413836,0.2162506885619251,-0.08722822368336715,8.150771416547512e-05,0.005267947213456744,-0.009768515886911267,0.08139643351483365,-0.05648393522129007,4.115492603353313e-05,0.0005888493975381168,-0.0016056370199506067,0.0013944333023235432,-0.005380608543634315,0.0008879620664945894,0.0003829106495372265,0.007124739775458767,0.017281742771508818,-0.0019178579939703403,0.00014415952960421933,0.014736725387416333,-0.0016456167804963695,0.0012689702303445185,-0.01452224255729718,0.0006338720927916915,0.007094409085991229,0.0005521063648513672,0.0079004941794864,-0.0121350561810432,2.082530093216103e-05,0.0027828124004812506,0.00819160508899521,0.021986601209418984,-0.012069020067452786,0.00011067816387806036,0.0250602077848413,0.0147676737624402,0.08002180397721487,-0.024468151970516126,5.194760986779712e-05,0.0036982029910612156,0.012964964482167404,0.01166777513719148,-0.0032398392259870997,0.002167236234573496,0.00862544358047054,-0.02276972654331352,0.1273615433610396,-0.08006642196526449,0.00014711996384552854,0.013319791639359804,-0.027796915511628297,0.14426033002601937,-0.018445652536144122,0.0002983718984424902,0.026451140096320165,0.023893292499831915,0.14101608726130985,-0.00040404893810278843,4.7727457048338025e-05,0.012522055080638923,0.03663834571264985,0.23297118185199628,0.018267809033878035,0.00025919132442581784,0.004119511949590418,0.07855256394987856,1.1877585670022477,0.12718584385164028,2.7444948783280033e-05,0.02263559951698042,-0.005303100994348082,0.058091209718337894,5.551630133207978e-05,3.0500094618044986e-05,0.0037650058372476476,0.0068252737001207485,0.01852163604168451,-0.006134513214645344,0.00011870348830629139,0.011357682208980587,-0.060974347745836044,0.45317979844368433,0.03682013345422,3.107914033212945e-05,0.03326082361075451,0.0005897848430492264,0.001607155684239669,-0.002102652028658763,8.136039361869983e-05,0.017962454062537526,0.002047070969830073,0.007874064233659899,-0.023170805567481995,0.00011887281350363476,0.0020413777615531426,0.041822492733454286,0.036889241867675594,0.019577456164808178,0.0006480160251024254,1.256034310627473e-05,-0.03308214751408268,0.1248831840003745,0.04139766472099203,0.00011150022404033537,0.014392728979303595,-0.024946081194607107,0.08512410215668922,-0.020984857052906227,0.0018809140996572885,0.009525629807592898,0.022288112433676417,0.22322482873169602,-0.06882240410159804,2.567514983724492e-05,0.0076950461752863485,-0.037048194538824436,0.1093476897231847,0.023119158107143108,0.0011077167082661548,0.009488378282684957,0.005148238220056585,0.03738069990241539,-0.0008549280965540364,9.171425634651504e-05,0.009974216834547191,0.007605946864938367,0.00963717944455011,0.004156245162683278,0.00018627249330836456,0.008112962641648735,-0.022362536615877605,0.03300035705661289,0.02894679437790365,0.0003889612521726012,0.007674594444392658,-0.004017004293003692,0.017972227081532347,-0.03626387860035214,0.0017324102303923027,0.0007253984286450959,-0.004731339917767214,0.018783157346453958,-0.13443544867339402,8.081759536641727e-05,0.022161401246090645,-0.0012554117039799495,0.0017171819681573853,0.003387888460651963,0.0018173854451673719,0.0034423223680294136,0.027717536524467987,0.08567912812325806,0.006917501191886432,0.0001281727276210769,0.006267841824443054,0.03202892618156141,0.08165067043845259,0.05257600466575521,0.00015901679630194894,0.004474290132260529,0.010801820373609602,0.043332543754980794,0.01734460916698343,6.084104877857305e-05,0.0023153004146997907,-0.024833413447114615,0.07773518855387887,-0.14211202440902487,0.0030278671811973814,0.00010300420887260597,-0.010044755067067007,0.06381721634229057,0.002599449331775099,7.829644891028332e-05,0.004582470228281841,-0.05036380873501568,0.2629869471253385,0.08307573506809232,0.00013888174247880464,0.004308191051993156,-0.0008795445904962811,0.004255844941264163,-0.017740861017131335,9.775089990854142e-05,0.011536641007234857,-0.026850461112350853,0.1339821523706209,0.030885642935517845,5.036770851254454e-05,0.02982178731011682,0.023735211437015617,0.04105117438875381,-0.06369473770774654,0.0002819011924899855,0.013974959013932723,0.002881485203361468,0.01278105657379353,-0.0008131041747705632,5.60614094799086e-05,0.001497575729945572,-0.00918930978851332,0.11088311829933858,0.017027528295269684,2.138202077923348e-05,0.0213005529377826,-0.020975756179485106,0.06756436848890518,0.02318115529877783,0.00010851977105636792,0.00038673554649915705,-0.03391120878276429,0.12708221836527345,0.08157024736111182,0.0004206166443556528,0.008487144901691892,-0.02239839027720563,0.1013248784275084,-0.024288652983688645,0.00012661131292475165,0.0013496743612881738,-0.003510859899290982 +2022-06-29,0.0057806503474868735,0.04436815271403547,-0.02603897078954675,0.00013778182659873007,0.01416548470660322,-0.024234912306463716,0.07818565117698606,0.01055277284870676,7.437464770252977e-05,0.02922607596573455,-0.052750393494317975,0.16110935902296727,0.08705461108913139,0.00015146145981366995,0.012958448450019783,-0.033157346991287875,0.03256969444440173,0.0748799782048784,0.00034358480289113527,0.0019352460441601467,0.02110574651155989,0.05100241268444344,-0.011693482589129084,0.00021652486129885673,0.013259715929002783,0.006757494073013322,0.016982372086284805,0.0035633874842292226,8.688285052350815e-05,0.01070689621054096,0.04050962533758688,0.15620261963826318,0.028805706278679236,7.609563906607996e-05,0.006716044158101429,-0.032766899009464855,0.2989736782319347,0.03315282108054604,3.758382719020333e-05,0.002893609492944313,-0.0030634610597920363,0.0025320026028358617,-0.008974898093071778,0.0009330244038541469,0.017639088885862738,0.0031853810272487256,0.008433089428770807,-0.06727207276703899,0.00013207985076415512,0.01696024216668026,0.013535599472329782,0.009758262213746757,0.027669365348583004,0.000677999493187716,0.005252023022044762,0.007503651428123788,0.10430783745598178,-0.028941781246499838,2.1437715304730336e-05,0.007513352588410593,-0.01861183701281324,0.04767801858036362,-0.0013504967319616981,0.0001159637043423314,0.003897343880713728,-0.007592071768236197,0.04347317878016908,0.000563813715321659,4.915873809310786e-05,0.0023298010449872212,0.03528355254570707,0.030774481618252397,0.03430783254031009,0.0022361685350480824,0.00021801896525145098,0.0023832682000367324,0.01565780138566724,-0.04660779047286395,0.00012525476201382166,0.005401733350762154,-0.018368190114044735,0.09734896021524476,-0.013861120527464582,0.00029217515325238207,0.0018929081021495998,-0.006204961454160117,0.04020620915598893,-0.027318598609509255,4.347172926786457e-05,0.03135873160669888,-0.04827825983979993,0.29301037862456103,0.06407952163876698,0.0002715535043454108,0.007256218623688548,0.03460133806164042,0.5238209778562498,0.011199750473418242,2.7411969374811547e-05,0.024790508219287553,1.807278510653575e-05,0.0002042209790322982,0.0003399826473253482,2.9566944077276046e-05,0.004639237876394333,0.024215823299417013,0.06975685392141087,-0.027648141588155657,0.00011182402220211473,0.03692723006036899,-0.020200351260564953,0.13577539050879414,-0.003962753497151441,3.4366099005301884e-05,0.002359885221028827,-0.00487385863317283,0.012050491276716325,0.0024479261184837927,8.966966719595662e-05,0.014959286001345124,0.005165477671638874,0.020703186685922317,-0.038962565752763724,0.00011408325027983083,0.0069444900354456935,0.015872891196481644,0.0137282383537629,-0.010151838153537877,0.0006608711445270936,0.022632331769898918,-0.0063710364840862685,0.022180861656681265,-0.0017748323164156336,0.00012089760237011042,0.0011152531122975394,-0.04759540153859378,0.15078131868587824,0.04372822382433652,0.0020259868986108325,0.018683024847306454,-0.039395184740757136,0.4160496602099521,0.0927250698170319,2.434894591693482e-05,0.019374592688918064,0.014932749437176911,0.0394239857716691,-0.009423635783327803,0.0012383702731777317,0.03553872299576275,-0.005428990702291355,0.0353710276882263,-0.04024935555282947,0.00010221086481513652,0.010896812771127928,0.018216324984590523,0.02715942378348813,0.026160635375824966,0.00015830170781761256,0.016192923015352374,0.011907254539250435,0.01874250389887273,-0.0031775431450901705,0.00036465984371736337,0.002117625894652972,0.008654444265072803,0.029799034169620393,-0.007124088381262386,0.002251061386468404,0.013321316582024128,-0.002247760126758533,0.00857911941809133,-0.004150112155437023,8.406159386781844e-05,0.02095003419021764,0.06012076177306645,0.0933241664810073,0.06604031479921056,0.0016014284764913342,0.010198354327067047,-0.01904234381489398,0.061561661921666136,0.020809143091246124,0.00012255360847159499,0.00555652927942874,-0.004891803159263145,0.013559675502614518,-0.039703215622171675,0.00014624467198972866,0.0021643845155275374,-0.018883721102640697,0.07865565119575357,-0.014595292796497737,5.8596485906028e-05,0.004164696036991331,0.02311398106170125,0.080061790811535,-0.01301610034006675,0.002736323945340096,0.026953321137544693,0.010712900740971481,0.054619474717536025,0.007189930143036865,9.75663667214463e-05,0.01375103303184158,0.01946624731603105,0.1123612285708617,-0.00961931700797162,0.0001256395990977122,0.016140248287025986,-0.024350460054377653,0.15035744959904093,0.008926000620438765,7.660037910463937e-05,0.02608995526209556,0.008215571132812915,0.033802439363727926,-0.03707838087572317,6.108535649070152e-05,0.0055501986861861315,0.03291907219710181,0.06526164309820646,0.023662766489831955,0.00024593422831329693,0.019061510408339827,0.009408959425271177,0.037188253121995266,-0.0004002499609724656,6.291441942236499e-05,0.011891116314514331,-0.006077087095487406,0.06178592185793821,-0.06819447940408074,2.5376820937967737e-05,0.0044632218254103875,-0.0030887766373112672,0.010183812969352654,-0.011771136087858913,0.00010601932957587498,0.004308712652036851,-0.0032322314814223867,0.016600247862435483,-0.08126866121153112,0.0003069134026905348,0.005343092463993247,-0.005625521655150779,0.027648737475980803,-0.016080553622154953,0.00011653578122271221,0.031199613401657746,-0.000666724158348285 +2022-06-30,-0.0016417888617904458,0.010930116587002128,-0.035229012123348204,0.00015884702830753944,0.023441427093021786,-0.006785734677283089,0.02284022051447923,-0.010287264324817741,7.128646985089081e-05,0.018099501840170968,-0.027091535239071658,0.1161180593113302,-0.0014665293818671777,0.00010792723532148085,0.013512812950150162,-0.003701023544089563,0.004403715557366206,-0.05403814723514588,0.0002836419384270794,0.022415799763922207,0.006444156131423649,0.014902858704981911,0.0006622475670290981,0.00022625294586636183,0.0014476218937005936,-0.027083153734512255,0.08104958982859256,0.05225607899223172,7.296173511153146e-05,0.018346891596796446,-0.004441588264640131,0.014879567076897722,0.00277298182847246,8.758663806080382e-05,0.0005175577385723807,-0.0050940966632192506,0.04612224965271814,-0.003329980532878026,3.787523306414774e-05,0.005907502873428006,-0.008173517821034242,0.006981169084294221,-0.008642333869696895,0.0009028708750901341,0.00808398533815069,0.021628357158080393,0.0461270259890239,-0.0535815226254139,0.00016395700044162347,0.004323151581352695,0.004729062972113894,0.004044612268368366,-0.01779501778367568,0.0005715083243239291,0.015343918647084972,0.005191941383781813,0.062151516414852705,-0.010764514173050008,2.4894352844623774e-05,0.006194431242448212,-0.012431219328135191,0.03338018660330833,0.008020584000218451,0.00011063078821236752,0.011130123746430055,-0.017654973021353014,0.11060015826457198,-0.02350193533271767,4.493379795373393e-05,0.01191876739820949,0.0028290411014671333,0.0023176606971916955,-0.055793049097104405,0.0023807422190467477,0.006752321522299433,0.01621886045876682,0.11822604901874167,-0.03759103781447996,0.00011289098669116864,0.007758470296864712,0.05432692907800998,0.29245188049566195,0.07711572647643793,0.00028765304133443215,0.005269531771089939,-0.027062959794982293,0.18215609471655758,-0.12957564067213156,4.184971854685581e-05,0.003488849253588817,0.0005770077827801868,0.003261977871168846,-0.0011844694779847616,0.0002915328296571758,0.004439667695715579,0.051483927769376645,0.7252723682122976,-0.07681112091873628,2.9457831373189326e-05,0.009040263566019006,0.001609484347571727,0.02010770485224398,-0.007063221774021743,2.6742743857509947e-05,0.003392422945546145,0.005834741754388978,0.01723155663362484,-0.005021695719569203,0.0001090736591821754,0.0006090386553607417,0.03031894837549315,0.22386997866662575,0.006237084297112519,3.128316258235314e-05,0.009700158931768763,0.0032757227259671766,0.010141133077910064,-0.008748848917090941,7.161401686629476e-05,0.011264673184174474,-0.012681223065295904,0.04245343871146467,0.031089333676552772,0.00013658306800833913,0.001653647169916356,-0.02525301221898395,0.022263746886717218,0.00883858330099889,0.0006483216047600811,0.059266557318795064,-0.015818712380077694,0.07286186748785962,-0.0726896620201279,9.138119656416663e-05,0.005534923870530846,0.05921844299516831,0.2097509799608226,0.025248025857913536,0.001812058276485634,0.02573456895303005,-0.015408722745690225,0.18017508021940584,0.01407065280178344,2.1991462488879533e-05,0.003222409584993262,-0.043039522445026464,0.10146280684849356,-0.054508160545373184,0.0013868575056472114,0.009100426237309073,0.020279766496446583,0.14482660805958322,-0.042858708817089516,9.324815208921317e-05,0.008213151964291199,0.0025238008519694595,0.003698554595748292,-0.000717047937676278,0.00016105285760669976,0.0035197212581890387,-0.01887388776583292,0.028136786272751218,0.013131266730845203,0.00038502664966799975,0.016527668129652492,-0.056845228375997044,0.18524428644267685,0.11352748227538828,0.002378480170353368,0.012609012320633405,0.026929062333454816,0.09028948671344772,-0.005179043132334721,9.569173257380681e-05,0.0011216720671464154,0.04106078169500875,0.06728620418342926,0.014879295114383585,0.0015169748325575742,0.02783565065552625,0.010175277615833507,0.03509861659509989,-0.030805229070260214,0.00011486092367229008,0.0046261381170353555,-0.023177204687913136,0.061018265168784926,0.009528556077617741,0.0001539790289279019,0.014153229319988539,0.007986111694920734,0.03419566370862566,0.013885204783020327,5.70004478084951e-05,0.0008702064334469861,-0.01416804696107685,0.04360411824551854,-0.009370343358040458,0.003079644149069545,0.026928929641381234,-0.013204222048674932,0.07587467016982366,-0.06302117934833369,8.656783844556413e-05,0.014835463694280097,-0.042099920743228145,0.2313153571731598,0.049901888158829386,0.0001319889566410148,0.017100460589628334,0.055576224586484715,0.3593352913688587,0.09860446061274367,7.31539644597179e-05,0.016814267496190676,-0.007891661673632417,0.031724163443586056,-0.04829606299416283,6.252096524648832e-05,0.006424090965756101,-0.017743057461562402,0.037242640262479386,-0.02253004986531426,0.00023228298106553518,0.02247368394461437,0.008147350273732637,0.03679795975208013,-0.05406351266241413,5.505630027068412e-05,0.0040570814642605126,0.020956362341791362,0.2560809515421084,-0.030232020254850233,2.1113970454904505e-05,0.00048673781248952217,0.0031511961653152803,0.009478816289257378,-0.01793084991869287,0.00011620646700591719,0.0049750372188106596,0.010483691835361002,0.042523610825497576,0.026765832777648567,0.00038860830934695905,0.010682064020769124,0.0699145805207266,0.34415120563556345,0.19707961486345102,0.00011635639490671275,0.012713716652755782,0.0017278755907674523 +2022-07-01,-0.009901495439593325,0.05799067706770986,-0.02023801231672809,0.000180563180661196,0.004933555717300329,-0.011977708810458102,0.04700326888755863,0.0010060348863705645,6.1144333439856e-05,0.011635012996151913,-0.0448643082914688,0.13011800344328203,0.03136531230076205,0.00015950003769006843,0.0026702124346026637,0.008724957921132367,0.007972403165848142,0.010414232094214432,0.00036935326674162195,0.0003039745408063583,-0.027887739641204272,0.06338370972149462,0.025690137418703997,0.00023021490258606954,0.00933489941143405,0.02075304872704714,0.06358421874365892,0.021620236221190164,7.126549500998612e-05,0.010583587364046918,0.018372180096119413,0.06869276362772553,0.0014339809871166962,7.847648816609587e-05,0.0029868380335591996,-0.035745848893261344,0.3657606029868219,0.02624832716337244,3.35140802278352e-05,0.009440982874761573,0.013206914376690516,0.011442620765983855,0.014262485492456727,0.0008900627877053689,0.008431016950208155,0.027582445067928,0.06549429246172837,0.05664189886912179,0.00014726216923232805,0.0075442274877030886,0.003756493490404819,0.003112540590867701,-0.015507488609094199,0.0005899184443936667,0.006698069042847128,-0.00041867762045162893,0.00490209945635129,0.004087911322043248,2.5451912318121203e-05,0.0010850029047134925,-0.022142699734662482,0.059971111553510294,0.01450625791230985,0.00010968304789990107,0.01580365372953072,0.0182354612471823,0.1014040440534291,0.027281090137652793,5.062013463083986e-05,0.004983360167850868,-0.032356541340681944,0.02703349767302905,0.0243778654256865,0.002334440589010388,0.004310631155394976,0.03905951484630413,0.22420378223580759,-0.0006613317243259352,0.00014336264920008338,0.008748445099501657,0.03468670244977305,0.21352398069181985,0.006084845413001438,0.0002515501551072706,0.006924632920749016,-0.013761304885101674,0.06899385655191816,-0.0051709280686788065,5.618367606823215e-05,0.012387209224552597,-0.017195366457070156,0.10809506349535694,-0.013107203115253152,0.00026217566735671185,0.00809037811147251,0.05051908456554692,0.7522187228652542,0.030111797560069545,2.787029493788027e-05,0.011753084602469491,-0.022157190984688963,0.2332931913855735,0.03748400424275939,3.173177352710992e-05,0.0017269769466293802,-0.0006021004838384201,0.0017380001906598397,-0.01288805092633256,0.00011159427428585434,0.021234835330247233,0.0371054793163471,0.26843015832661143,0.005903543233358191,3.1930014413214906e-05,0.026899863053756308,0.029213276975958217,0.09146937379668883,0.044578254249929616,7.080793886088703e-05,0.021584436102352254,0.01206806282157184,0.041202277269931045,-0.0354184601585169,0.00013392601223181106,0.012709734555804732,0.038023981558420496,0.03931738047777671,0.010630704168209914,0.0005527752336273589,0.016900751240530407,-0.0009812342850973885,0.0034032458251434935,-0.07650490608189287,0.00012135715957959819,0.005622093953299148,-0.07447953705334208,0.3300573151034504,0.08850918227107116,0.0014483275126619367,0.0026870766070232607,-0.03210860889027098,0.29709520042870613,0.04054856599826797,2.779124798842926e-05,0.007006728837366384,0.015269083360648993,0.053882119615610014,-0.013996562617120635,0.000926487499873569,0.027557648582936724,-0.015660503755573554,0.11603957085271077,-0.05262590420535613,8.987217604880511e-05,0.0013988206446183269,0.010742574578455436,0.017898838628719414,-0.018830953690347544,0.00014165402235241284,0.007016995620214533,-0.03067990773329435,0.042108491525158866,0.04134028842203637,0.00041820409326358125,0.0068555119819010985,-0.018669680663925922,0.06786870837693348,0.0036876135696340203,0.0021321494694861044,0.010090204169942314,-0.04036655179572802,0.18087079225565306,0.11823512118690141,7.160503841459588e-05,0.00588523679613656,0.014234979482090007,0.01710262072454326,-0.0626390001463868,0.002069051842655902,0.02067955797303746,-0.010323078477447444,0.03573428400776875,-0.014567130880926439,0.00011445642602704051,0.013839433752176241,-0.02477722572993514,0.06434669352952392,0.014041302214278451,0.00015609421861315054,0.021656971672446505,-0.043141470227479516,0.17482659524369956,8.628627502090242e-05,6.0228405639261384e-05,0.0015680397793091318,-0.057918208373243324,0.18506212848312842,0.03758812835507812,0.002966303772692887,0.026153305168941113,-0.023506477024493364,0.09478539794801033,-0.04260451369717509,0.00012336349877241124,0.010549607924323122,0.006590677471525377,0.03594726026745788,-0.008894475767234409,0.00013296123714535193,0.003094450252362842,-0.0399171255229403,0.23795278580540677,-0.012163084577383729,7.934456158753359e-05,0.014616450788327124,-0.032652833536775866,0.1481377081355447,0.02688326877814815,5.539909215993225e-05,0.019489313401884863,-0.039974330150407356,0.0882070641187277,-0.030163747431071523,0.00022095672377920849,0.007147843158377812,0.005071499857924519,0.02316044256554415,-0.0047487530720435244,5.445075922019076e-05,0.005967198841727057,-0.01087589120420524,0.10872975402073892,0.01455279071373092,2.580760687092569e-05,0.009196769821647254,-0.0014875509310360601,0.0035884998073279074,-0.0186072793423023,0.00014489983181994946,0.009316090757259558,0.010935640358505513,0.046100644890035146,0.031232698206422792,0.0003739083720170057,0.0032338333596562026,-0.02801505428472103,0.14667414852400137,0.004557207323983237,0.00010939807714431017,0.00577786589477002,-0.007395672073239529 +2022-07-04,-0.06817949446343514,0.4927379903055879,0.12846172728462962,0.00014632694743728507,0.007412614744144539,-0.009547798754662266,0.036634140996284786,-0.02322290199650886,6.253566471956e-05,0.017478706989769607,-0.01338929467718722,0.05475741133337852,-0.029503871314102374,0.00011311286319504108,0.0060385479882967205,0.006284816054233514,0.006871896403184721,-0.06190177536476819,0.00030866246755580193,0.009949932907796829,0.007108830122726819,0.014729146780166897,0.0020318120912218513,0.0002525331048891083,0.002664038725340159,0.007802066993960209,0.021049016207159366,-0.047851829691612315,8.093280870077707e-05,0.0023137980219129425,0.007056876525727145,0.027138423128882448,-0.018029183613724,7.62988099748304e-05,0.0014798079156078383,0.034630500392559195,0.3022259735395813,0.1163780339506713,3.929394167630673e-05,0.008092458017691841,-0.02444970860749121,0.025651324981414834,0.08782716869496297,0.000735036103551993,0.0018093910936110113,0.03883144236798719,0.11202913417863529,0.07805000569300478,0.00012120329575012845,0.01466335291292521,-0.007890285650336943,0.005926470200183931,-0.10910033198018135,0.0006507601931990424,0.0013410065127397006,0.015450029020492799,0.22790929327072837,-0.03775762326043231,2.0201799409136274e-05,0.00028977904036556017,0.07571240388672586,0.22728036777088137,0.04979055298308342,9.895919407927613e-05,0.027035107659812565,-0.01841214358913402,0.08785384605459104,0.027477118804805,5.899366704225894e-05,0.0045641475541807405,-0.024068757883000173,0.02054579740188766,0.06364228623448187,0.0022848287216713833,0.013204978037315202,0.08571120146156615,0.5560622770239736,0.17394468095741306,0.00012684292750895308,0.010517178714281596,0.04116965886051506,0.23118026385414275,-0.04122545923191415,0.00027576220638151483,0.008162303451999479,-0.010010329684874513,0.05728523405375294,-0.2426971770138069,4.922283746349555e-05,0.002824322624363851,0.020210485954710714,0.11286244251781917,0.009513183539463428,0.00029513051707485293,0.010357854285453699,-0.022238020095810006,0.308297646618171,-0.017173547294796983,2.9933406262513115e-05,0.012862868288302331,-0.007581006698544691,0.07263085736647572,0.00046268718247422256,3.4872848146260995e-05,0.010358799599261451,0.038132229923224036,0.10236027435181452,-0.05986457788021151,0.000120000627645449,0.018143741469583072,0.015615154796412591,0.09824855065523272,-0.009257694898548864,3.6712378097652224e-05,0.014345537167632256,0.0035945044337093663,0.011170143268958911,-0.0004107751253723981,7.134403408633423e-05,0.004256499586587146,-0.0051472585666780465,0.01976718928964467,0.016252985480553865,0.00011906377817475651,0.0023161109119598363,0.01293128401199095,0.011478519272045289,-0.019612225174312218,0.0006439191542386107,0.005695210198247345,0.004677174118829493,0.017205745399565996,0.005991184725718929,0.00011441844856558629,0.002537137985363243,0.02006484010433247,0.07344385449656853,-0.0007877445248732148,0.0017534743460260742,0.013180520039516376,0.03946513482772897,0.36407676833329045,0.06419887036327518,2.7874226106365142e-05,0.00034847487167990673,-0.015061173132279457,0.03837639111143872,-0.018867356443251285,0.0012831160548790821,0.0149977872602736,-0.008369389846740438,0.05061632398393331,-0.020807335112223713,0.00011011052662827117,0.0020028071402981755,-0.007561093660452309,0.011137107240136692,-0.008066616180754778,0.00016023508036278454,0.01667309382176197,0.03942775032431922,0.052633739655340024,0.03146856238089072,0.0004299734935378158,0.00022083197715172293,-0.02371860387154167,0.10433187522383361,-0.008703036412783013,0.001762067129784952,0.00770753580525582,-0.011797092146883402,0.042655185313752605,-0.04808546619848231,8.873470483913005e-05,0.01052288974346797,0.0006835371269463935,0.0010538021254401602,-0.030519643036688922,0.0016124276255852518,0.01304959175888697,-0.02385391211820235,0.09367333365654336,-0.04682599320267713,0.00010089268392402375,0.021604175605062715,-0.010336469962232453,0.023120713271583895,-0.032346188499898364,0.0001812305444340287,0.025792505433396087,-0.014179303529492525,0.06293858077229644,-0.06364118511288323,5.4985968478464725e-05,0.0037636925339478394,0.0397409467868129,0.12165801656048429,0.008543049917801707,0.0030961039664067777,0.01745416539588249,0.012875191264605014,0.06702255084623,0.014277105034829742,9.555937644534397e-05,0.020515124793838112,-0.023077551293817163,0.13768513786577996,-0.024680168828316612,0.00012155237406371709,0.012420747990402518,-0.02237481669179431,0.1227823908921576,0.009231155584866058,8.619302022382302e-05,0.019624925841114513,0.024720804690093336,0.11133093452467946,-0.058355378171825435,5.580770249154753e-05,0.010140861699819991,-0.01183404331171998,0.01998992161442909,-0.0007065837830551206,0.0002886366380487914,0.023071959858825562,-0.0022021163949158783,0.010427820318798858,-0.028541809142368636,5.2512308031990866e-05,0.0035154027624372313,-0.017130586460771886,0.18329906082741604,0.010915564262111118,2.4112557531970036e-05,0.0032436649010442104,0.007274235873640188,0.022451210956291497,-0.014704866472885636,0.00011325478847007859,0.009349267426524489,0.003032550472021192,0.013621673021854455,0.0073879491782116525,0.00035091792889706757,0.00017895409639572804,-0.0012276955132617643,0.005274289772333241,-0.08291642964565205,0.00013332097411067705,0.0017558967623952702,0.004001640677382036 +2022-07-05,-0.028604381922261,0.18920538973348183,0.0018071529038068699,0.000159876874089337,0.014120172433792568,-0.037539681305654084,0.13672983756862744,0.012080154139045104,6.58776062404091e-05,0.010748019938981515,-0.012217687607828449,0.031925834827729045,-0.023145409019707477,0.00017702881349771925,0.02331619110872857,0.006148290160099932,0.00544356978684488,0.002106919787146456,0.0003811872945070993,0.003233015141135851,0.04695524575864896,0.10146576421258477,0.07026067542780245,0.00024213767027492415,0.007632678664838663,0.008607453885484926,0.023274081289491513,-0.014601326025139257,8.075118377712358e-05,0.008499791682234787,-0.02268594869039752,0.07586667134499764,-0.009952679445082676,8.773962439638962e-05,0.013264771801628761,0.04138285549103907,0.3622775016123572,0.08801477174149214,3.9172176702821466e-05,0.0023911515040210734,0.005445794858887067,0.004598879998173217,-0.12230674440355933,0.0009131749444052635,0.005434269646572486,-0.02263376251926468,0.06271463826263851,0.004739711863179954,0.00012619720014348415,0.0052267427951113235,0.0032046582155756866,0.002421774197642235,-0.059757939672457475,0.0006468035997220809,0.011576613952591429,0.005704990508364917,0.06673858994935655,-0.027474883432283433,2.5474207906855828e-05,0.0034084946499536965,-0.08911578454603,0.2501142901465193,0.10970981948765156,0.00010584422493904379,0.04333335901352755,-0.0002969959257255278,0.0014924757723549756,-0.05867519681386981,5.601508767151277e-05,0.0017345584793711493,0.00558405738180818,0.004508285495402533,-0.036179223519904796,0.0024158025440871424,0.017013533837689408,0.049523927195024804,0.29422113904590463,-0.029516938028135677,0.00013851388543092483,0.03832473562897712,0.038444503628352125,0.20175524344334975,0.022978902898134597,0.00029506497414008353,0.002197721160006486,0.0650096142143826,0.3334453140360077,0.23070313488624597,5.4917900542417536e-05,0.018647976821281685,-0.007766442762128349,0.043433391425726636,-0.04627321458135785,0.0002947034441962387,0.004493784302833807,0.021731297786569632,0.3625621651882781,-0.00838298366738069,2.4873300261297963e-05,0.011583713073975637,-0.002556829387685128,0.023683456753197652,-0.04549432474270595,3.606935428854874e-05,0.006322750667042748,-0.032714037061668325,0.0803244236271545,-0.016798931942092657,0.00013119258192277234,0.005558728764636792,-0.019973991002616646,0.11795781166574323,-0.10063819413157067,3.911384577435751e-05,0.03414036785724853,0.0044088726127287856,0.013723516453323608,-0.007692632017586646,7.122615914456517e-05,0.0032962251058595285,0.001356054204643571,0.004741394214954474,-0.01843720723716821,0.00013077344956007836,0.007476427874092084,0.02268310633360841,0.02285876617808885,-0.056259569974001465,0.0005671857417815368,0.024467912188075893,-0.004659078908842338,0.01815479714635744,-0.007827853735975426,0.00010801763749371036,0.0011165949375346092,-0.025946364218040727,0.07714351713072509,-0.02827738687297262,0.00215871967343031,0.05364048001740687,0.026716870537563567,0.26119270217557244,-0.020971965598986286,2.630308829796024e-05,0.011396700466632749,-0.02716244976936071,0.07810974926149039,0.012661628282190703,0.001136933235677332,0.002336201192889699,0.004814140445998537,0.03722566506983638,-0.04132705461732438,8.611958607450768e-05,0.011759167517781138,0.010030727958433102,0.016954871372851812,0.008518777220504448,0.00013963147928550257,0.0010185505080008476,-0.012501491703340905,0.01916196963055506,-0.0033037908692602593,0.00037447739177632147,0.003359825284799295,-0.01887899986005133,0.06755112708771042,-0.02570633823424793,0.002166190888733896,0.01512697790691968,0.019247424540329836,0.06268831770302576,-0.08190093415199674,9.850910668280482e-05,0.0055319729757941465,-0.04204720989365778,0.06305791224914552,0.05198336225038849,0.0016575811022951348,0.004220483223986019,-0.013374788762290748,0.04549112591227735,0.0043636655926770065,0.00011648668395442845,0.011109448379846277,0.02394575274930621,0.07401341009090474,0.031025787543559037,0.0001311530684159795,0.005238567983715704,-0.0029169758225796416,0.011323840119199843,0.0040396145329001775,6.287138470825606e-05,0.004697880682716549,0.015753698145906308,0.06037488834188531,-0.04348932566003415,0.0024731145763049337,0.013808249244757346,-0.016539267858436717,0.07985495691151803,-0.01623524215117232,0.00010302792942771027,0.009655827025344003,-0.01675210431965884,0.09116973705294716,-0.11487318777171233,0.00013325375345942255,0.01149313572662414,-0.03539109703915472,0.21179414348046546,-0.018460187100193735,7.903669596854214e-05,0.015405313832644622,-0.033713905684027046,0.15771165663868253,0.04740655906709431,5.372700959444419e-05,0.0029861775999404944,0.02654056909476421,0.04086999049223227,-0.05884648460438692,0.00031661762609375057,0.013425558399176658,-0.0050228860041821415,0.024082238578754148,0.0079348657415521,5.186457735255772e-05,0.005580398190084457,-0.057300617320758744,0.6089710075889393,0.2687107246856957,2.4276941366222864e-05,0.02022128978756904,-2.235929269451303e-05,6.99639198864309e-05,-0.0007158704289784091,0.00011171021607634176,0.002937599756529171,0.004373100130584832,0.01998543834044875,0.006796138159777602,0.00034490835463463833,0.016061223829730655,-0.016532432832622197,0.07929937088885163,-0.00261625554889512,0.0001194094838283655,0.02411896519002845,-0.00275704423840599 +2022-07-06,0.02625720552691287,0.23785743727742797,0.008599912288816028,0.00011673964064727858,0.0017295861544231997,0.040493459114926855,0.16894127742160972,-7.013905628787412e-07,5.751215359043402e-05,0.005185721161350384,0.002062370366904586,0.0071492186936206355,-0.03215506286838396,0.00013344591447027332,0.0010692005160664797,0.026609208957867676,0.031908583839955755,0.056143602126285094,0.0002814441917565223,0.01520211174743688,0.029338380538471806,0.07258753195732649,0.0033468975179544143,0.00021148125521285719,0.010181595756954216,-0.03375659931435336,0.08987883975565232,0.07023065883074073,8.200644227118421e-05,0.0028906305693721167,-0.0037730753841106394,0.013594028852232652,0.0011464787394838305,8.143988469921081e-05,0.0008605344473233645,-0.011261011790396274,0.11219895741898807,-0.010184053218853137,3.4418124903365816e-05,0.002795400903033495,-0.016092686679725597,0.011366861664526795,-0.006204383099182688,0.0010917740506725226,0.001530757795003483,0.007370209120911213,0.01571014485575832,-0.022248988173052233,0.00016404443705938162,0.020910252653117738,0.00907490624665704,0.006487005370705684,0.018501453068517304,0.0006837892167722068,0.007604433859064336,0.012417375883758835,0.17735811437148108,0.002672460214293235,2.0864191219518242e-05,0.005997951674667199,0.05239474558844592,0.1486366355440212,0.017355397139885678,0.00010471596697165055,0.008478453486819304,-0.009085178737096081,0.052371062464472797,-0.04489602704023917,4.883193226362661e-05,0.003538624059896265,-0.021032372686485806,0.014790083886595183,0.05106794794211324,0.0027735794063268883,0.0016835028486904622,-0.03861778914127769,0.26294863971879234,0.021665061610617726,0.00012085610296504115,0.003915236296544268,0.00977581529737883,0.054595227821366256,-0.0052204210756015695,0.00027727233310827004,0.0013849912357399455,-0.021754739048554406,0.13368955413676137,-0.009522447048925442,4.5837123878440846e-05,0.0001771122048239036,-0.04104151862815664,0.23153444729029118,0.03761459775635201,0.00029214241563156,0.021645427945680865,-0.02387419859078976,0.2823128718473796,0.008182140179269508,3.5093634890799314e-05,0.019472820512804443,-0.0022305799515891047,0.023326332132135866,-0.004547912000234168,3.1948689493193944e-05,0.024392136698442368,-0.034342224391208216,0.10298116259991566,0.021670575717181687,0.00010742203785251145,0.019883876510078554,-0.03330671342425701,0.24125658615289372,0.005665277000790328,3.188929941993172e-05,0.023876343625247848,0.015196406700334569,0.04831421621686395,-0.07849934715329379,6.973380320502887e-05,0.007258113134002512,0.0036244141296223236,0.013850352745266426,-0.0020341795510318405,0.00011965354666837844,0.0012468752877311323,-0.03428015757194477,0.03637380226344265,0.026002001560909163,0.0005386785338071425,0.04337843035133805,-0.009958442873371389,0.03698538821683981,0.0010435134402020587,0.00011333061977672414,0.0062805799966461785,0.060432008314817764,0.21299340000812023,0.023119393051525574,0.0018210423913837487,0.013816040946534035,-0.031714172979016,0.26288271035394156,0.039809855144446994,3.1022269200502956e-05,0.005078851891034781,-0.06802842746560794,0.2020474112346105,0.031099971966086184,0.001100799975998225,0.011062458599787554,0.014912971811550196,0.12461658905944535,0.026738715969741044,7.969186313166994e-05,0.006320167700067576,-0.0283588876851996,0.04668810952768726,0.061209176673925295,0.00014336009821070534,0.0003529938191809737,-0.007170308581863904,0.009471270400822651,-0.04308932002729738,0.0004345437666090789,0.02820829410785225,0.02196709758980881,0.08738018527401896,0.02685424993659935,0.0019485432925497518,0.02634334467251892,0.026238094437530172,0.08819101958973426,-0.043686757653570135,9.545491553885028e-05,0.0037726864403580342,-0.005080483476015381,0.007289634603171657,0.004682096682049999,0.0017325128935715725,0.03143111837518846,-0.018306455090722554,0.07286022223547259,0.012753778319650036,9.954737202418838e-05,0.008056746633169822,0.025592729226037357,0.0799221065704936,0.03156198820574623,0.00012981056957592644,0.005204174932912293,-0.08420153033190855,0.3408674725391071,0.16976940325802106,6.029042555704205e-05,0.007981892163582355,-0.049539541162622026,0.153374293434978,0.03999943812867335,0.003061381565664676,0.01534201415479229,0.04590258151966491,0.19478886304381884,0.15083841894449457,0.00011722319617983508,0.014970007270989943,8.721116130400385e-05,0.000572676199027945,0.003771180088711496,0.00011043931905241633,0.0015900870413922063,-0.026046018404245544,0.14519260007206738,0.016614610395256475,8.484877161716103e-05,0.026773494662307877,0.00424312221173726,0.020177648496573674,-0.031830544608834166,5.285211646909707e-05,0.010828710831578417,0.032039682215737525,0.05884418346331269,0.028837963318518234,0.0002654691462486866,0.014023068078796594,0.02938414960845504,0.1304029465619786,0.05660714979441434,5.60325126275385e-05,0.010223151701053632,-0.01601465578481686,0.17428804684671328,0.014606907152383988,2.370725608282889e-05,0.016841087415154957,0.03211166890721181,0.09728099172332479,0.07540046169020537,0.00011538353824832776,0.007926187558008608,0.0025010318443026737,0.012122805269686412,0.002779087459690115,0.00032519515253544344,0.02146788992845666,-0.016855059176874854,0.0803023444253383,0.009560242750991897,0.0001202192053477322,0.01913778486084878,-0.0031971709291466668 +2022-07-07,-0.01510554553449561,0.10434913617224474,0.004761750642844032,0.00015308552927865458,0.007852189804654984,-0.04095055083088864,0.11982980472506276,0.018278067752212027,8.199840842350236e-05,0.0030904632692892193,0.03594941365152693,0.10534543179882469,0.06499410444244404,0.00015786043971041644,0.002234856023487357,-0.019415599157782557,0.01973906714609438,-0.0518076994307799,0.00033196479510188344,0.01896065546619026,-0.024508485634497038,0.05106898862792876,0.02384686561173414,0.0002511059435797144,0.012783538423657821,-0.014775829823901682,0.04346376351342382,-0.015389426616641643,7.422860373319963e-05,0.010726818131165758,0.057170285857025355,0.19502510432072315,0.021030559164924034,8.601411001224402e-05,0.00990177852138443,-0.02668190850892995,0.18286441458001565,0.012879432797620709,5.003642874307825e-05,0.019439724105713447,-0.014829607860376012,0.011557610041217432,-0.02103668641850432,0.0009894786244716409,0.013452917895382206,-0.044095002252268735,0.1047194717476949,0.046355643813466754,0.00014723932328137142,0.0032570147785889593,-0.010831691430712855,0.006489117848824592,-0.05473599806215993,0.0008158963237444867,0.004839604541506554,-0.0029400796463016398,0.04224588518590944,-0.034187696322324386,2.0739461252807883e-05,0.01505634601760984,-0.029910104628318484,0.09787339995301221,-0.009293403473853084,9.078295079495472e-05,0.0010535434693113525,0.0006103547825991139,0.003337286598819375,-0.014398676377002326,5.1481437583590934e-05,0.00596505600730344,-0.012313599869247205,0.010748962558037044,-0.09173391975739624,0.002234299866342838,0.00961345876325101,-0.061826991261030174,0.38230871736663685,0.07495927246484257,0.00013308098893144568,0.008119373446570191,-0.03695535709892487,0.23644211912792337,-0.0011969968025485852,0.00024202531389201946,0.02248724840809383,0.0616810634403977,0.32681099996374857,0.153130658246763,5.3163815597095935e-05,0.011237388117382337,0.04874251136524437,0.3030168554194412,0.06906097457699636,0.0002651111063619766,0.00478871350721275,0.004962330382240523,0.061036837686942576,-0.00299907194591404,3.373835330965745e-05,0.022014890727495882,0.016156701541256917,0.14788766570035702,-0.0946083874575311,3.650080625343596e-05,0.0036266277156643562,0.00012145380670082404,0.0003563031117948943,0.0008328920095214569,0.00010980301667130291,0.0033501317386481428,-0.011426266110301217,0.07692554089802443,-0.02102418824870106,3.431042927121203e-05,0.04276821827333178,0.007892679837738184,0.021995964083220895,-0.023765504028090093,7.955342219664145e-05,0.009310984395862705,0.015075296552136592,0.06829224463402542,-0.022016344566776057,0.00010093529863755808,0.0047675239694589125,-0.03360060202223915,0.034504355892710586,-0.019858698285633303,0.0005566070405455902,0.005400896068926646,0.027380193650292747,0.09700993493420237,0.08026838996214589,0.0001187972291499116,0.007650021706796363,-0.0180421739376845,0.05614206622307807,0.005902433982522664,0.0020626220108602004,0.03221711060075461,-0.039787173386975724,0.3352603997232909,0.053007736570337756,3.051708331273002e-05,0.023208333063420482,-0.013834794085773884,0.040592513901409014,-0.02397298939739396,0.001114289456652194,0.030811467702196726,0.007172287000837043,0.05370710191837101,-0.0017710303275023376,8.893067419627565e-05,0.005989926541174352,-0.00399746460496836,0.005500939083701428,0.00038648542294869885,0.00017151147331730923,0.005165559945035031,-0.05494688436290863,0.07122908188299068,0.09290632017419127,0.00044278167528665586,0.015055582837552978,0.004609917884412561,0.019442375628416598,-0.01436308197005493,0.0018377828784140844,0.02228938012416972,-0.0035450435366079715,0.011721257248638976,-0.004023521750673597,9.70370859183067e-05,0.008993164404073169,-0.04178831664060472,0.05457479787583657,0.06434177691875156,0.0019034432481039283,0.02122102312101834,0.0095219159732344,0.029341723943892877,-0.08131228572268809,0.0001285744734408152,0.018761174042236,0.02164261403330539,0.050144854304609944,0.01848502031379097,0.00017496199284600865,0.011481078261522745,0.024508802192678713,0.09750190877602426,0.0110844238176478,6.135117628292346e-05,0.01497758625545338,-0.03931087746051138,0.14963759432354926,0.01732669901501289,0.0024899468580955038,0.0019023358774303202,-0.025595047312668644,0.11158420633015943,0.017494022607383312,0.00011410213708323627,0.007260889000055171,0.023036695146304638,0.10312129301190619,-0.06290429837077248,0.00016200656344420809,0.0023070256596850747,-0.015870327363699158,0.09925880230588655,0.003526269804022965,7.562502886355172e-05,0.017721205812698336,-0.00295696871044166,0.014234860069117842,-0.005429043253239883,5.220846464313117e-05,0.008108145381325853,-0.03591958899422608,0.06277682975457985,0.004608068345637121,0.00027897248614736314,0.04275960950297948,0.008328268804498952,0.03679482485482705,0.0026269508189589335,5.6283665065737545e-05,0.006668070121168639,0.019760348246453896,0.2157607476766271,0.018993814114778435,2.362944064541867e-05,0.01172444226025665,0.018131775032191693,0.05659237486195973,0.019276615187016382,0.000111993126071745,0.007445186953785994,0.012499347457929907,0.052167206853552014,0.024298864534604652,0.0003776745560972874,0.002339475547536867,0.0015997677191954207,0.008552206516683524,-0.004692731900233395,0.00010713972950569175,0.005400851497937142,-0.00577585990064327 +2022-07-08,0.00864500928682303,0.06137937869647204,0.006613569608682874,0.00014894624537404496,0.0013084285435919836,-0.0057287084032702764,0.018601273133609996,-0.03682397484559514,7.389661986024177e-05,0.022441526108898685,0.01936147224635772,0.057918672700094674,0.019730722751970457,0.00015463826975594457,0.005136246723466716,-0.007223336196257497,0.00772252886937857,0.00495179348585795,0.00031567932881074905,0.005056309506473174,0.0005263101468310551,0.0014036812463668138,-0.012461872989786233,0.00019618735750552704,0.007333303577291208,0.021525407762638515,0.05674760717342038,-0.0036690790717567954,8.28229267449574e-05,0.0016055283958052832,0.020489881002348793,0.06733110101556387,-0.0026284277908924696,8.929221065684933e-05,0.01122361242429266,0.020274767751097607,0.16648864223766707,-0.028563794076511505,4.1760903972616813e-05,0.010689091941634,-0.013363456282569389,0.01151622321579269,0.02775878084515235,0.0008948567322652062,0.007223863770994497,-0.012908320883898754,0.030584066319211182,0.003042556353892101,0.00014758302659511295,0.025839796673691646,-0.019225905402376536,0.017231644585381713,0.022317858775261892,0.0005453614440400051,0.0018833042138987157,-0.00590638768683731,0.08966926952296458,-0.10045607148913242,1.962913254553684e-05,0.009748126280446434,-0.012437144403694384,0.03386892445814885,0.00010248348399312385,0.00010908632454266151,0.032208416783097694,-0.02275459418300969,0.1192062536051685,-0.06603877315727802,5.373185988219621e-05,0.004837414416597448,-0.012982751207022343,0.009924176935494456,0.018487919353366463,0.0025514978612080443,0.011952803123328342,0.05032441468960948,0.3098011379451237,0.043160583466656036,0.0001336742732190148,0.011905468836532443,0.004201242881758764,0.02441704355587182,-0.020225890737582956,0.00026643602373050817,0.01107729381613452,-0.0018542439252152204,0.012031043543951448,4.687454609367096e-05,4.341347222198448e-05,0.0066122590297716,0.005556288345759207,0.026778408292625667,-0.05826778082665671,0.00034196906739166567,0.003972528934064053,0.0033798275041930274,0.047559144358036494,-0.007645391515262704,2.94910838881107e-05,0.0015632211993658457,0.01135487963435579,0.11567265292482139,-0.17396061876215851,3.279695680433415e-05,0.004027250857943388,0.021705917816177814,0.05817964784062834,-0.00127284503198771,0.00012017934203845367,0.0078110644254814786,0.010658111094132163,0.0805568923330991,-0.11518848518350609,3.0561165651062014e-05,0.006700689002038043,0.002126877103285603,0.007338779316705043,-0.04652204537572368,6.425337579718093e-05,0.008299915487470954,0.009360066093118036,0.03578866074884369,0.010392725826065567,0.00011958647486536314,0.010035057551688672,-9.464902060213155e-05,9.981305166243109e-05,0.001205933076576371,0.0005420063216778529,0.02443270300641416,-0.011584436400250035,0.03878103772259706,-0.13706709916769014,0.0001257307460917105,0.008720444791603218,0.009577367894672995,0.02829636679576735,-0.017605225519245603,0.0021723743611213758,0.005809061139495105,0.01834516604810135,0.16228660555407703,-0.0011786161139823287,2.9068402551188472e-05,0.008425340524894569,-0.06217716515754845,0.15876063429919438,0.026316060251854703,0.0012804403804668476,0.022391677711252916,-0.002278123624191724,0.017695829343477652,-0.043387532148719266,8.572983929095987e-05,0.010809968354397462,-0.02048071344061646,0.031152709635602915,-0.19171076494350933,0.00015516531242036098,0.000320128652786827,0.0036203428100817633,0.005094581179779361,-0.004839270693714502,0.0004078919390758801,0.006369702912480943,-0.039028534044597864,0.13444285097159428,0.03833586056904641,0.0022500639766539934,0.014370659507692785,-0.015425520963430644,0.05925217451003716,0.028769047715113103,8.352681423543133e-05,0.00020986336754805516,-0.047365035146280564,0.05932917399148002,-0.07000837440538568,0.0019845715160906967,0.03867367882353282,0.006862392000312759,0.02132066120974565,0.005684179832947858,0.0001275236955974864,0.0010013554234292444,-0.0026808000622867718,0.006188905125475204,-0.0010315619318597216,0.00017559452715676957,0.015733308181387243,-0.012815181938459328,0.053037683900982256,-0.04042735603021761,5.8973126212387214e-05,0.01708749263116618,0.013639090484007447,0.041594493318974815,-0.06031597651323424,0.003107904248849292,0.012239470469562665,-0.010022695864632865,0.05470827135624674,1.9015122724956e-07,9.113225786648947e-05,0.013196938995303399,-0.0032357378788721953,0.016860998632697112,0.0015879969789433736,0.0001391716653799877,0.010786443900180376,0.019579699532056065,0.1240368402746199,0.00968896526176013,7.466275777396277e-05,0.00024371691254365592,-0.03746951607198052,0.1783066882326773,0.03087287769723152,5.2815068240683525e-05,0.006043521947597898,0.04386478327926588,0.08869352925604419,0.048895753087753735,0.00024113122117146892,0.00731049923111461,-0.023626798851792984,0.09083678990494547,0.009461682170956382,6.4678133970538e-05,0.003155201432381991,0.04569451262628498,0.4533284114880046,0.059221438921121576,2.6006529252454902e-05,0.03044219707790849,-0.002994600460806056,0.009001638277492471,-0.1333104319662826,0.00011628569541326502,0.0011135196863949815,-0.01857197053344593,0.08552974492420169,0.012373309589714542,0.0003422699567876066,0.0038063979772724405,0.06615723099229907,0.24879558359960055,0.13815460346482988,0.0001523022953583137,0.00989528105993553,-0.00011285603873471725 +2022-07-11,-0.0319256947266298,0.23842348185552104,0.032678376835482165,0.00014160478030450965,0.015156871778975938,0.030174511111771864,0.10195218445297372,0.012317492419858057,7.101567730473305e-05,0.0064378496946159046,-0.048399374882718324,0.16856241833987642,0.04741762552269595,0.00013282389253328508,0.03010730780826556,0.02751011217239891,0.03517515329005427,0.050909414673178804,0.0002639515513134458,0.009558354781246399,0.012175400276172045,0.028348439364791547,-0.06520724257315452,0.00022472524628182024,0.010568856656316312,-0.0024000369527224143,0.006267930494029584,-0.1002212113197556,8.36065872819152e-05,0.0036980383626539198,0.06550057749326252,0.24863754005444538,0.05530972640354161,7.729800474855484e-05,0.030871840634540668,0.014046345861362707,0.13263241124074496,0.0015070388637606039,3.631719577326974e-05,0.011055994131977442,0.007727745823834451,0.006119509819755074,-0.062241758962395005,0.0009738251349131735,0.00781837510234322,-0.0050163107852114015,0.011864841423392327,-0.004637057366191187,0.0001478374229922179,0.012872839033301784,0.013904318372785582,0.00923606184726122,0.031056033760612077,0.000735846501261063,0.0050183309579081604,-0.0035399713681016696,0.04524430341080121,-0.02404769832325646,2.3316246212417945e-05,0.009697689200896793,-0.0829918343585079,0.24245220764356226,0.06184193149587816,0.00010168578807066196,0.02095314296949955,0.01076095399198804,0.054241424693081706,-0.03685031666869934,5.5844641184228225e-05,0.0002441066661743337,0.0093793234608283,0.00667097588689704,0.0031231409213381012,0.002742237813663152,0.0003947336381464929,-0.004710609588012586,0.030591698591523886,-0.027646006895021034,0.0001267142997153836,0.007431986577313058,0.023999930942147803,0.12983829182682913,0.0014388287286942892,0.00028623018467845124,0.004370828263039446,-0.017281052465491754,0.12135970475571203,-0.02017710455420342,4.0110366796963104e-05,0.002606540503167049,0.003723846054808045,0.022782215160663904,-0.0015732110110906418,0.00026939068655882465,0.0003329692241378257,0.014175501569116468,0.22717619296671562,-0.02463798573075532,2.589439975616554e-05,0.006269308361065791,0.04086994848475378,0.48198019711529927,0.2703691732101918,2.8330654279776738e-05,0.00794426197414043,0.008371182242304565,0.02251640506641795,0.0035240177876745696,0.00011975964489100964,0.014444357922296768,-0.052718640102485316,0.3941126658734857,0.033216563217329936,3.0898413632407075e-05,0.016193698454695378,-0.004775036119467177,0.012289027960554956,0.0005862903386558944,8.614627656030757e-05,0.00931857009988424,-0.002917180840648536,0.011814371221237893,-0.009657242087433545,0.00011290192203558408,0.006286316022546266,-0.00821799775079,0.007269240288450843,-0.0634732820761287,0.0006461785754141349,0.010295814024469453,-0.0008157847862673676,0.0030904540517700868,-0.004058019261368458,0.00011110646237857814,0.005807286297777926,-0.06904176524139155,0.24935992890955944,0.0549166938613576,0.001777069430060886,0.027430784306986367,-0.025485755284430697,0.25633329405365135,0.0156117331037825,2.5566700587126204e-05,0.01998665300981905,0.005563677414055524,0.015070512644688455,0.002091135421107678,0.0012069942062346145,0.011869688563671018,-0.012549622098460025,0.09816537521002151,0.007345986618446366,8.513300448424185e-05,0.0015597040697037624,0.025092023291208434,0.04072789020126181,0.06588170243646935,0.00014540828594395845,0.004656640684694006,-0.02304968271940189,0.03782136240141577,0.011744731366391597,0.000349809577980814,0.03569411273759164,-0.03165427405265702,0.12724690791958862,0.018413292658079422,0.0019281262236831747,0.01833334091004829,-0.046319118346470366,0.1677123555422534,0.0718215516997815,8.861058341890323e-05,0.006416390329099244,-0.020614968611526712,0.03282140150139634,-0.009446166724752753,0.0015613589168353777,0.023791721815863042,0.000890367075184477,0.00275617306493396,-0.004375929090521128,0.0001279907677511879,0.01335459623400719,-0.008958505367439872,0.020395935579907605,-0.037587948201761125,0.00017805423293339404,0.006187695396052407,0.019658832626362872,0.08601448788827382,0.022286739196955046,5.5782765633025724e-05,0.000312550676055606,-0.06954139066553094,0.24524685509211142,-0.023774169836290448,0.0026875588466852194,0.023048929427635374,-0.034209458316382065,0.1753386714107535,0.03631302771433688,9.705302063531404e-05,0.008569867419173378,-0.041549750344823985,0.21827150607927348,0.03326055566856564,0.00013804864808373895,0.010028128128507088,-0.0480887437433883,0.271192260142426,0.07110892143277096,8.387158300029218e-05,0.007838569351006616,0.002514661670879752,0.01203735346633375,-0.13946201280614418,5.250442947737068e-05,0.0018253513054725732,-0.06685396436980559,0.13552339562910126,0.07072569666065638,0.00024051506542814718,0.02746841107923172,-0.023537364889939225,0.09920261640702324,0.0725006886766821,5.899960300880005e-05,0.008741195136946902,-0.029741866233835866,0.38956448221230067,-0.01624203400442537,1.9697909937225416e-05,0.012002942063199124,0.0028245416848459285,0.009995835546123603,-0.03312634878203029,9.877291038499427e-05,0.0008101345497217446,-0.01163171156380035,0.04341608219912824,0.0027738174978329754,0.0004222998861817411,0.009935207629617075,0.07754218751598006,0.38037259160367165,0.12083698824306066,0.00011676175901384379,0.01266436645342728,-0.00841112479246535 +2022-07-12,0.03362097446833493,0.2076372507282457,0.04886003483038389,0.00017123463442071985,0.03197900261605935,-0.0008295605126866064,0.003478755497909727,-0.0040193771023846634,5.7218265978014014e-05,0.020956972844777932,0.0173310473484571,0.05989809901362353,0.012145975094903234,0.00013384710242774265,0.01712128587186817,-0.03445668545799811,0.03385697669415563,0.00806729639232648,0.0003434734561490675,0.004426496137306461,-0.04197037260215941,0.10608928410152339,0.08926434039083915,0.00020699939603778698,0.029085564979609943,-0.024586640016253172,0.05886773486111313,0.06789177954887593,9.119448964917072e-05,0.004902025769159251,-0.03456804989182525,0.12693336022577112,-0.054657750232295466,7.990776032416241e-05,0.0017824903200182414,0.04450414679719837,0.31461126714604476,0.11058135161486915,4.850927926081681e-05,0.005503381295877664,-0.03894518705427747,0.030359269216650175,0.16011209526048487,0.000989252752591612,0.004077404473549866,0.02100718438368144,0.04731098189728523,-0.04730123229474139,0.00015526292807599535,0.003990730233984663,0.03226190006360715,0.02248455937353789,0.10434023209302001,0.0007013421148938792,0.009712404663808509,0.004153875333327581,0.05822672496884606,-0.0016668482649092086,2.125954102881359e-05,0.0030244969510338816,0.03417607792198383,0.08387234158655327,-0.04616503429400233,0.00012104712837732729,0.008076170815383213,0.017566525659247666,0.08297670892916566,0.02458743117330594,5.959248380718096e-05,0.0033214181172093477,0.03811540662391446,0.027727919845131847,0.0011326600523944264,0.0026810581891604014,0.01877619374041843,-0.02722580306243238,0.1902471687420374,-0.040939132267585054,0.0001177645573970497,0.00843662148321105,-0.003776455330970482,0.021558029920562757,-0.10953987212685692,0.00027125859856198754,0.0046177791239767054,-0.026634318779123832,0.15238647820732318,-0.016542656894126328,4.923297925057667e-05,0.0027189774069163244,-0.045656542872641606,0.2519394732104783,-0.010103864535441598,0.00029867138371392964,0.00047858190250341017,0.06547020984197692,0.954115930761096,0.0451579138763661,2.8475595618351248e-05,0.004242129133940382,-0.014013837632192045,0.1344482837917125,-0.03269202854093397,3.4824390773994405e-05,0.009508234183024688,0.034696371759240646,0.10822245969902003,-0.04198907724650709,0.00010327362415096416,0.008378964449662681,0.022260397615953473,0.19952426461857684,0.017334171925047517,2.5770899346949027e-05,0.015564492989897354,0.0018254760567443966,0.005386469744655121,-0.16604798296521797,7.513621239360923e-05,0.00021664366437719332,-0.019830817618694763,0.08168925790500534,0.09395134657708833,0.00011100032879717554,0.0028515107443792855,-0.007700162699367861,0.007234790437177599,-0.008905985433348132,0.0006083443895637232,0.017924279990031385,-0.03729879068685407,0.1194170031095238,0.027093881422579506,0.0001314663460348541,0.011037569147366632,0.006802049407224397,0.024764213091191103,-0.019302002138802798,0.0017629273865617647,0.07376116917204682,0.020320701654185674,0.15875762755112807,0.004067524594034892,3.2914426675145136e-05,0.008467896017101954,0.012235162661463708,0.03786631991149554,0.00928045036672015,0.0010563988446962269,0.011801697471994315,-0.015665705631687156,0.11597630899998485,-0.08066058480597803,8.995106752568007e-05,0.0043705474307757525,-0.05163323197848484,0.07858757245142568,0.21472178585548038,0.00015506751350533287,0.007140283357474765,0.02590877650633506,0.03584167966352721,-0.029227188090196806,0.0004149181802931102,0.008548524933207981,0.001566370479319945,0.006685985343284686,-0.010390494519447497,0.001815847659253864,0.003264350660744129,-0.04083515931910274,0.15157009960251516,0.08975085960352104,8.643926964859561e-05,0.0003383300425901755,-0.05523495551865654,0.06710822566806222,0.0924610242138894,0.002046046238669333,0.019784162789819988,0.023094683172848185,0.07590689886350654,-0.11038906790753472,0.0001205443324570708,0.008185918836616336,-0.00484311926523999,0.012085608108887789,-0.09721000471987393,0.00016244899634177074,0.0013844746491392665,-0.03652252297356765,0.14959798953678574,-0.004054129333642817,5.958664576488205e-05,0.004877554860769816,0.016903560198100808,0.05501330518104331,-0.01971725166341513,0.0029122489981688515,0.00616403910277378,0.01014517037796014,0.05226635250316598,-0.037238549454098005,9.655565682480676e-05,0.002377516743001179,0.006626589645699453,0.035618860409515785,-0.09999995460079505,0.00013491829412419818,0.007607125600835929,0.004012406251977447,0.02236725501391576,-0.09947770923026862,8.484786287732293e-05,0.0015311740327351897,0.016576666796623427,0.06924008224214052,-0.0038779848831309227,6.0170972088017166e-05,0.022324409593052347,0.02509571556999694,0.04684106202192687,0.002835462040606119,0.00026121748536548137,0.0006898662479939547,-0.001365987529345481,0.005551884845761508,-0.0043863272751080195,6.118157611373808e-05,0.011305882465442327,-0.010380909351320246,0.12196298026905764,0.004913446030898559,2.1960319581901974e-05,0.00206510534161202,0.004763081592609957,0.018162659929743356,0.003987760816421338,9.166795317045745e-05,0.006809627671150948,-0.002022525392746271,0.007648897416252395,0.0003230954727453826,0.000416795592144658,0.006323607038052365,-0.011199358654492063,0.04707902504145914,0.004317851650943768,0.0001362503066778682,0.024960001288897114,-0.0003197772639562022 +2022-07-13,-0.0030451805183984953,0.02164927693646971,-0.051798198274412524,0.00014874974527407574,0.01000109032615255,-0.028179868034955365,0.11392099280992124,0.005420352977306893,5.93534161690628e-05,0.009091650924443322,0.00270471509070776,0.009804905145243991,-0.0011671908658534044,0.00012760724487693466,0.004535861614826494,-0.0006954490219396359,0.0008846696116951335,-0.037593035616912025,0.0002653090395558815,0.004859750815148269,-0.04113034834604828,0.10104529135934841,0.05973785349893665,0.00021298257797734392,0.00989998024491194,0.0033239668235525302,0.008778599574135725,-0.011602549957582085,8.267575710072878e-05,0.017240576771089935,-0.012243035748028052,0.04147679203198879,0.016396394859080135,8.661115171771253e-05,0.014250119518430183,0.050829802221004965,0.46371139910672377,0.09842983301478925,3.7589734854557876e-05,0.03813716923584652,0.0025594050067528013,0.002310961552353501,0.0040932967635090136,0.0008540653088222439,0.0011812864733255436,-0.002819143124487068,0.005720120952737695,-0.006379093055258307,0.0001723351233414416,0.009602664528409152,0.026099237943358194,0.02033776260002857,0.05137161586372125,0.0006272620477234618,0.002439739333210464,0.013963615363181022,0.16188516863834684,0.015671463313915484,2.5704763047708576e-05,0.006105027248208561,0.025736326527537254,0.06447581388794284,-0.0034059255959659903,0.00011857708310237006,0.0002737744767601488,0.013301060607960227,0.07130754169911298,0.01970386224075914,5.250644635359059e-05,0.012169980874396028,-0.036143239631232095,0.02868142407279832,0.09451269594279137,0.00245781584019811,0.004085931534003847,0.06344155774617656,0.3999843784461833,0.018058452485196132,0.0001305217583326699,0.0007909126797595788,0.00996567835801493,0.04627835767572266,-0.002371879081504923,0.00033345494315700547,0.011204277324150356,-0.04078343202121217,0.2227126818454688,0.03405768232043082,5.1582190170827025e-05,0.02120098411277802,-0.01180816004733743,0.06512105616320897,-0.005541917674102524,0.00029884610707038,0.00175805697339128,0.053990106259873064,0.6685130465051522,0.018635669820165977,3.351463749164323e-05,0.00012675383608912183,0.014370909285695163,0.1600250549300789,-0.008646247723460431,3.0003918153850987e-05,0.016864329971255417,0.046273172934802834,0.16640769098522187,0.05360581977123295,8.957331376259982e-05,0.0078323581802941,0.0003985937304207184,0.0026390492588857146,-0.029840491685167257,3.4887941288634765e-05,0.00718332534655262,0.008471744865374206,0.02364408472014433,-0.04055348894891106,7.943789796042063e-05,0.015787759398611902,0.00801341129298349,0.028960506219517894,-0.047701205552380395,0.00012652020310615925,0.01142054928968724,0.05069836867234013,0.043884321590543326,0.03427431253967508,0.0006603286758472474,0.008825475235777168,0.01977207948118309,0.06176867240879201,0.0476711935629286,0.0001347317930400042,0.0015849750361765468,0.056878991807511374,0.20458093070320824,-0.009684953345174933,0.0017844562902375723,0.020353820091459168,0.05404197025991415,0.4408023923934077,0.038283388426446525,3.1526040308043174e-05,0.0033188772811041534,0.008228177277953231,0.022189631038473483,-0.015558058576391249,0.0012123411008270115,0.005852451670239452,0.029644010125202482,0.20994236604627037,0.04476753147415594,9.402914969166697e-05,0.009023300943090652,-0.020607620594020097,0.027383238067297477,0.025025255950016322,0.00017761859652566718,0.006941891117390779,-0.004516535061357564,0.007192559622004509,-0.01784057529118413,0.0003604340644026258,0.006797505935911727,-0.0026138088230193376,0.010230786449779155,-0.009896305229894906,0.00198022774519197,0.019019600338671304,-0.00011269688849703012,0.00041552550461365867,-0.05329536382373778,8.70171009694358e-05,0.026664070349235684,9.030124517436424e-05,0.00014393039360950934,-0.009765667460475271,0.001559618641973413,0.028139536657529374,0.009307110035405094,0.02976268702749371,-0.043660489843476216,0.00012389641712166828,0.013249602617642157,0.03566743964588133,0.08609933177091027,0.04972625595429015,0.0001679316403902837,0.010771206748197412,0.01838647094881207,0.07544808158694911,0.02197549349675374,5.9479060969313424e-05,0.007308500933868131,0.016544302493695533,0.05113490390326546,0.01133341213870962,0.003066543120156019,0.002945768006449269,-0.02349329715596074,0.13596260612964078,0.020020021158367242,8.595379615244106e-05,0.009122314048257831,-0.027594719679334,0.17508775912449318,-0.02950802361854572,0.00011429598813648796,0.002710687068093738,-0.019253055140179713,0.1025218639518099,-0.06598191296697804,8.882431354981377e-05,0.010690787942894516,-0.015134411376650697,0.06408959616950277,0.0073606063411396985,5.935063834890332e-05,0.003613339313285011,0.007125087445107159,0.012978515158360461,-0.06368837794110653,0.0002676668476018633,0.00346347279925151,-0.01991603074826174,0.07508059515248454,0.042918303731912515,6.596133813465447e-05,0.00019874068928130172,-0.0072007736346974965,0.09140111207964827,0.002369507280911725,2.032632962842224e-05,0.00311798012646858,0.029012227361216975,0.08666435279862997,0.1105674137559455,0.00011701715598655697,0.009774461095081543,0.02834323694647173,0.10078134072873941,0.005214074100570199,0.00044329954622562915,0.009758706503966754,-0.013797374895601547,0.0696710878697836,-0.06305004615451487,0.00011342679716284461,0.0009363714189307852,0.008111172846628094 +2022-07-14,0.0070105933889744974,0.049104839790970994,0.002245004806578776,0.0001509791807428654,0.010959933027618024,-0.038820263357147236,0.13080226484036556,0.02122443714530309,7.121209131196813e-05,0.0017589935990767918,-0.0034722862291799027,0.010700029787709578,-0.0018740908195366858,0.00015011625996023015,0.009667618102572908,0.021932808061527195,0.02369853253198675,0.024752582885045737,0.0003123493741011752,0.020394074370784818,0.003960677388532525,0.007365954862056405,-0.03398544755726714,0.00028134434357202683,0.015914296100648904,0.00988725886578054,0.028243050566956883,-0.008639168256614243,7.643830376741613e-05,0.006460607351994474,0.013135603480729422,0.061864662663018634,-4.0063057634902516e-06,6.230131825773023e-05,0.0042945525969200135,-0.04816151170421049,0.3847912252907245,0.057170240268785553,4.2921368921847015e-05,0.01519805183897862,0.0004511627742527959,0.0003302313627000796,0.0009533575771256609,0.0010535611034811795,0.0006480672317442369,0.01911758364719579,0.043237657397612574,0.013621896290799839,0.00015460827315486974,0.02586029767069755,-0.04504373581693886,0.0344586466134654,0.11811929076439903,0.0006389406874226401,0.010783823447520722,0.02569374566675715,0.3719628704522682,0.0842821486806411,2.0584988076893638e-05,0.00917329276017592,-0.035067718957400844,0.09695203074307002,0.0075416994944080456,0.00010744881865842456,0.009743057722379588,-0.014945459616564852,0.09254383089873339,0.006902159757551349,4.545939173164888e-05,8.788475893311701e-05,0.024538388150102664,0.01947999212900715,-0.002199931131401456,0.0024568589689358314,0.028939374238806808,-0.007185353955952002,0.04440794726599426,-0.022619042591490807,0.0001331495110104245,0.01404658850462054,0.020539390968933487,0.10677093393539694,-0.00035535559285354443,0.0002978809650617086,0.0208044115761363,-0.00998039083586906,0.05387830838009851,-0.008589816295845848,5.217885598899887e-05,0.00269521732144059,-0.02473429715670836,0.1336747279400664,0.007378411120063003,0.00030495592285697393,0.023870707605328136,0.0010935707482442037,0.013489926772147671,0.006891071209164958,3.3640893640210066e-05,0.023065173903146757,0.006109291749444709,0.0670188158833706,-0.017984902803409034,3.0456207604430017e-05,0.0029686200940314167,-0.012665161062373857,0.04062257807989741,0.007467466968018953,0.00010043058461812221,0.020429220650220143,-0.025428891035746103,0.18641639386371206,0.0017629342940232858,3.150907793676128e-05,0.01584850451353125,0.00840072312516137,0.027979817383947038,-0.05341509260754987,6.656549684373007e-05,0.01079840562367395,0.0149415759624849,0.046475498520544826,0.014350327846945654,0.00014700122226240703,0.00143635682657754,0.01536185879441777,0.01329116061678553,-0.032604115088705164,0.0006606271588893103,0.01316424535975273,-0.00797911468076778,0.029113241826544664,-0.0014266825198096602,0.00011535864556458168,0.00056366723341201,0.07990729083129015,0.3081954296733558,0.059166663865931744,0.0016640998719935213,0.009969340168214642,-0.025393056010021176,0.2726319846190568,0.017902228360664754,2.395081856642917e-05,0.0016665721296309358,-0.021841531237963903,0.06433093362370404,-0.03468255664245636,0.0011100294408345334,0.00831850041009404,-0.029003316831627723,0.2309480097956283,0.0790809931532836,8.362942023614916e-05,0.0014417216066459383,-0.009469357261680595,0.011214161473585428,-0.03005772632783847,0.000199296229824872,0.001468684761484801,0.002587240807260587,0.003989121545710659,-0.020425133279362854,0.0003722746784478083,0.028268026958304337,0.027433516544968645,0.11293096782127596,0.03213524342227902,0.001882863220005771,0.028657755574074344,0.028458039971527304,0.11995796455160712,-0.024912609633988878,7.61143017089484e-05,0.011936513500462558,-0.032662311087346727,0.04066819109212123,-0.0006585783828862709,0.001996499690072158,0.005736996312079378,-0.008564237291541685,0.02789129943125513,-0.02507565105530068,0.00012165668555669822,0.010521621326495804,0.03021417970011192,0.07740529058619552,-0.025174160830440308,0.00015823426664566905,0.00973896592252112,-0.018958646517453617,0.08086604588938856,-0.0016570859192855305,5.722094770153578e-05,0.012976768488464649,0.032227565159295105,0.08960611137432087,-0.0005845003142087439,0.0034088502437789963,0.006772889808051657,0.006591682956290389,0.03158964675334338,-0.0037040219372073426,0.00010379874721992437,0.0034699705063340157,-0.0071394022822350795,0.036179760854596496,0.003759398304189967,0.00014310570457963648,0.0036901747841981305,0.054491438651268174,0.3128045198501356,0.12362815084827658,8.2395587181716e-05,0.009554321133799578,0.030795895416328732,0.1483060728399587,0.044210208381735235,5.218927888140551e-05,0.02112042594616236,0.026654871022813005,0.048932837526655594,-0.033175545628979626,0.0002655862452121278,0.01957005680080454,0.023744573076682787,0.10197449246595677,0.04102456478723166,5.790114991001483e-05,0.004763913789011444,0.0020982950463426706,0.024060702177483118,-0.0542511904262932,2.2500363968073814e-05,0.0007665828802340627,-0.001138902726336518,0.0033136014857374253,-0.002170590404484047,0.00012014212821818735,0.010791297047100277,-0.007519017411654273,0.03345095084841541,-0.0335454992053671,0.0003543077028664769,0.0025591609837981623,0.012580753700681263,0.0606517534779885,-0.014809896427189113,0.00011880510293906771,0.01873362586768391,0.0021062107152102555 +2022-07-15,0.05417125123077978,0.3870899674448283,0.11508020744515982,0.00014799380468693809,0.010421524828477594,-0.006586966766086214,0.018220625493457845,-0.017396557405799772,8.674265625861466e-05,0.0025883916188344912,-0.0012580650606013764,0.004375811525619737,-0.012935561734466148,0.00013299695499997856,0.022876475494616258,0.021669852339548948,0.020363769042920223,0.0128449391073369,0.0003591415440733361,0.0054775066821401526,0.004278672540248093,0.011176601839431222,-0.00019727688187814313,0.0002003074224470543,0.028261987948821364,0.007769013778687779,0.0239151158017107,0.003178367716471929,7.09316632140554e-05,0.009536212522894185,0.023553737994668363,0.08770846713223363,-0.029479050183721944,7.879672619029317e-05,0.0045817516825860955,0.02749641692205219,0.23662274338407324,0.021360174470090594,3.9849073972410165e-05,0.007566727481344704,-0.016921844149910915,0.01381811869253714,-0.029949296078419212,0.000944372993013364,0.003272055654692452,-0.009126128180140126,0.020926580156706138,0.0001307981773929891,0.0001524930986771949,0.0115619342763089,0.02189865338733105,0.014341819663535671,0.014005442447738712,0.0007463413616714919,0.0019675044515466166,0.00266849259722034,0.032786838934009584,0.0032667970965462863,2.4254327897785088e-05,0.010486119868471387,0.035869366957447,0.09045245611342076,0.010124797781265822,0.00011780246711738459,0.00814468338970009,0.0053085963951884614,0.034069321515409215,-0.0030292076141114834,4.386095074893755e-05,0.008230334212867875,0.023487326438064924,0.019068352245358904,0.02586695190408938,0.0024023893309005023,0.019412331030243278,-0.004183213788734054,0.030957574749307666,-0.007439460332849213,0.00011119755493749107,0.019162959486567863,0.03528919927883304,0.18416036827610946,0.010280491806303908,0.00029672481064488466,0.00645091867240123,-0.006014365895524858,0.03456767599268966,-0.024338433179996344,4.900953918776719e-05,0.004558490564088428,-0.004369074594549811,0.027205115654503904,-0.04165797978967871,0.00026468278188612754,0.0009373170394242336,-0.013409747898777434,0.19043723357845765,0.011373100577334427,2.9221262830175288e-05,0.003630558617679208,-0.0032760801645434472,0.030177727415262014,-6.121753078022174e-05,3.627017891877105e-05,0.008763999948689937,0.01795629269991044,0.053850380325531265,0.006916499807102453,0.00010741146919498665,0.008944005886004462,0.02282478452469252,0.13531916434751956,0.01973716104025612,3.896186661552256e-05,0.01764276108395297,-0.014339758599104278,0.045127995531820446,0.03450474276400504,7.0448731709902e-05,0.0006483101705620673,-0.007959790711375744,0.032932010226539674,0.035755059358561665,0.00011051774191549213,0.006589797094913831,-0.02330163476325521,0.02274601573009571,-0.019125494646050747,0.0005855400654804177,0.003527514845738708,-0.017195518941279863,0.05230695496699187,0.01702067519762129,0.0001383699734152379,0.005245871462718728,0.05774430912138457,0.1994796400720388,0.003363040655476372,0.0018579318867859905,0.011431988966517025,0.01849160408959671,0.16857509155614964,-2.0983305044200568e-05,2.820742080964661e-05,0.018177816655832423,-0.03238619524571969,0.10055771139884381,-0.035942532627932976,0.0010529695658797829,0.00972873342284716,-0.0006648466105746673,0.005327409669084029,-0.01835136237225838,8.310573746062242e-05,0.006687275011521126,0.0388235076323419,0.06235800107632784,0.10444308440884657,0.00014694268515165848,0.008792993045533989,-0.043573389900054334,0.05702522627828182,-0.006822523865981322,0.00043858951468084923,0.007588393574169908,-0.040965017417745345,0.1844139699787054,0.017915266010428435,0.0017217483195535413,0.002409836558650517,-0.020792851482233296,0.08942631651366922,0.006574937048206864,7.460004328919734e-05,0.006168689788232273,-0.029316427025398484,0.0401184760907585,0.0014775641892114757,0.0018165351377081016,0.037877204386314686,0.005112033914163064,0.0157965530490707,-0.004027657185584784,0.00012821753774419972,0.018512301150325306,0.047168914694235724,0.12070916602323728,0.06214839134584176,0.00015840759864713,0.024301812212640626,0.028566704363882176,0.12429558470891522,-0.037831767641808456,5.609425231557913e-05,0.011089265058240236,0.026144490316459226,0.07506772646145331,0.0047804842035350185,0.003300995823703416,0.0017186573130563774,0.04113352844166664,0.20827566909693582,0.08846769423352141,9.824218145001606e-05,0.007080330073666976,-0.01382508811859741,0.07658835959099118,-0.005941793485568194,0.00013090792072955205,0.02114547995122549,0.012878781765957276,0.06480830293067737,-0.01283285615756508,9.399242047114395e-05,0.004388490171589807,0.060573434056385045,0.29505287398825314,0.13549896841213724,5.159762848813549e-05,0.009696460686018364,-0.010013061586167457,0.020265601211525673,-0.005629511406552371,0.00024089999395610892,0.013936287648878493,-0.015845611036958016,0.06144348673909422,0.006667955347411905,6.412797323938186e-05,0.015548598857406188,-0.007111736486775969,0.07788449839257346,0.0007639924655927409,2.355894913296106e-05,0.00421420645436511,-0.018649269816756193,0.06037041843904567,0.002105195439480526,0.00010798081743836346,0.0062906449619148696,-0.021295866188503428,0.10406205433768712,-0.002800415524617437,0.0003225751329434667,0.0010413389466856042,0.040381324643120727,0.2096262790262548,-0.025866180830895945,0.0001103333060586545,0.000622531351249831,0.006051465930219586 +2022-07-18,0.03542180208954405,0.29524236665295983,0.029425752654971278,0.00012687573120441595,0.024659380160623738,-0.02177270350513785,0.07865189517988032,0.009079373813244982,6.642226689217242e-05,0.010133468978792462,0.005439749996304357,0.019683914224752783,-0.04257351776049869,0.00012783938749720417,0.013540523865955539,0.011897798103728145,0.013165763530393476,0.003835060956033395,0.00030499196697286735,0.010603146994443844,-0.044624929288931886,0.10921564373741167,0.06556973806324821,0.00021379151425128745,0.015812788825314866,-0.002012716151002114,0.006310232291181383,-0.030093854424905635,6.964403493626048e-05,0.0031061214042053843,-0.0038099849249907023,0.014363196549558348,0.0011688324863935382,7.783268435431391e-05,0.021104772651488704,-0.005307647367484113,0.04825498624062301,-0.06543969386793744,3.771885316427574e-05,0.02248045728185148,0.002790514958428662,0.0023896380539161956,-0.034986977737673466,0.0009005275750902237,0.0038256716571049244,-0.015580218963934757,0.039007163733246294,-0.01477653330109152,0.00013966612053603034,0.0019295352077755078,-0.01065419261406396,0.00785338063357215,-0.013793317259803565,0.0006631140886781437,0.027679841845054027,0.022897054929450312,0.34171441318595597,0.04463985028578432,1.9968209206321235e-05,0.007099989034684557,0.029663674497632766,0.07855193461626313,-0.04025080411027353,0.00011218094632517823,0.03679879343212761,-0.0026193975904489743,0.013581064453785523,-0.00013510164026383402,5.4291198837747204e-05,0.014804063185167301,0.006272757768803069,0.004489156275360842,0.00017517001462773047,0.002725315368858045,0.008870712764262243,-0.024687650689698745,0.12716984615667926,0.021540612823735716,0.000159752522978346,0.038788751684416874,0.03444527803448668,0.18954619540108952,0.004305718382591975,0.00028139919772856794,0.013478528303452872,-0.0032988031620614843,0.02117529008929016,-0.06591804530632743,4.3882159288278406e-05,0.005640298484036063,-0.061005541331123674,0.3218785170271473,0.07327709646183156,0.0003123662478546433,0.015006353545121184,0.0489171098572691,0.6233918963611225,-0.0005217441425158216,3.256340935218021e-05,0.016283945955560267,0.0062782149702158875,0.0578082449526147,-0.02704228980305246,3.6285081822209634e-05,0.005327359769757067,0.019473225372817343,0.055573111168018566,-0.05728311705700604,0.00011287452488168651,0.0007445509103818249,0.051292014530850666,0.38672828419948135,0.029071372275322645,3.06362917333309e-05,0.037035158186475785,-0.020937360446347007,0.0646419003748879,0.07487034780031807,7.181004459554386e-05,0.0024290114841134056,0.00579158647983535,0.021651365705702818,-0.013056302698333503,0.00012230968441827238,0.012381385574003792,0.004237294123440544,0.003813884349941897,-0.07713415717605299,0.0006350335237356549,0.018625933124952584,-0.02890110996528801,0.12191865329182996,0.04823877858419695,9.977698456876854e-05,0.0042760914636416816,0.07044752894120196,0.2859906995259598,-0.004184435999498685,0.0015810042188103021,0.00930640882630752,-0.0065658414032796495,0.057891969619288434,-0.0038226869734632276,2.9164481381485296e-05,0.019403455854943782,0.0234901591620982,0.07733324939505597,0.02997853466557312,0.0009930954003934934,0.011754756741074072,-0.011036052280736511,0.10520554366429198,0.003383017930085345,6.985552604442338e-05,0.003344347044559901,0.011712950070898946,0.021358160981578396,0.004900836184931992,0.00012943383608198376,0.00913397146114187,0.004116854906103713,0.005650871498410537,-0.0015099784139304838,0.0004181711270949192,0.019856337096505507,0.018531941583626695,0.07028774244770555,0.019754494284182435,0.00204358011977176,0.0016398092612567978,0.005202380311082845,0.022247921532514897,-0.019040525442844746,7.50244851273719e-05,0.007348541894343861,0.05136788648473006,0.06041448882846771,0.04220063222936153,0.0021136242534613952,0.010655984353003798,-0.00777113042694995,0.02395691846632246,-0.001960261243480537,0.00012851957469792866,0.0011387926623996358,0.0058494514989137925,0.015241005875516835,-0.04073678482265533,0.0001555829099014288,0.011862615509240153,0.03448838601326068,0.13957389783611246,0.027269859276473553,6.0309064062477594e-05,0.016520778776621677,-0.043353513121058784,0.14028561204255205,0.009322293245341272,0.0029290664385948155,0.06076141088545184,-0.0293866054038494,0.1486384554234637,-0.01538538956647945,9.834647729841165e-05,0.01136008228770095,0.011754431433716055,0.06759560952625437,0.03966146913330656,0.00012610837306055407,0.006258191733475416,0.016956767962437693,0.09280537018596713,0.010546681360866575,8.642087687889319e-05,0.00013082420218151982,-0.011647148515814231,0.054947605983915175,-0.03129149381171502,5.327435898492799e-05,0.01587202050287287,0.06237650890003954,0.12056734087443886,-0.041471929125718725,0.00025224396004405465,0.012600466424802177,-0.010310404583610166,0.04140948736235948,-0.02758488234076702,6.191419480102122e-05,0.012540958439532054,0.0033595844078122446,0.03260972209319644,-0.012079820666477845,2.6580903867505845e-05,0.012461453908919026,0.0042152741551406666,0.014498341951355069,-0.0012823822541810515,0.00010162871905106794,0.008462340991266231,-0.012983319215382533,0.05479492745115774,-0.03391144173219307,0.0003734851594764868,0.004413481923296767,-0.017788842838646356,0.07079115650575851,0.014543052640731045,0.00014392640801813277,0.007973318234757283,0.0042491697481852235 +2022-07-19,-0.006810592335506722,0.05248173716530409,-0.015702508336911516,0.0001372344882977723,0.016381437629512392,0.0059536626715772515,0.01839607004615143,0.0013580767592138048,7.765504869242685e-05,0.013232182659157262,-0.02098107449959377,0.06629162206707712,-0.005333923435246304,0.00014640849778762796,0.004911913460961988,0.012344552191533457,0.014180263502835324,-0.016027511645440348,0.00029380480581547386,0.00648725371812114,0.00964793306729418,0.020672736914991562,0.0019004515461103473,0.00024419348696341634,0.028579347081567914,0.016434334662886477,0.04280847853163592,-0.03809984371424182,8.382413366782423e-05,0.006122636801112465,0.025405595869746722,0.09020829555055669,-0.042557031739705334,8.26366615134409e-05,0.016724289193903508,0.013018513067464156,0.11689092225241193,-0.0034394095342759772,3.819259896721643e-05,0.011728680455964988,-0.021080098457613817,0.014923967558199752,-0.04199851314659529,0.001089263936804615,0.0010902942641472864,-0.021807857262921313,0.060168492059465034,-0.1823790108107962,0.00012673768061644393,0.01660487293531025,0.03138071488703587,0.023739749504714164,-0.02732771999177981,0.0006461168382941094,0.014733538212908763,0.00807490743516186,0.09628451345487359,-0.14333656635899772,2.4992166289302953e-05,0.004325001671426266,-0.01691704874825904,0.04774723283973567,-0.005047183100027266,0.00010525129092750393,0.008331733543807965,-0.000385385802441342,0.002452859803744917,-0.04003201828714295,4.4226727278870746e-05,0.0024074326822224983,-0.005180726522359315,0.0045641292857276266,-0.0175599050880593,0.0022138882851049954,6.037931986748791e-05,-0.0788453888601709,0.4396338040308682,0.12472564440998427,0.00014758333793309753,0.01572569785843808,-0.012821686069817198,0.07505049096697944,-0.04039719715235423,0.00026454516807021544,0.009439266434968131,0.07241662111181524,0.41782375089836404,0.1653765504842249,4.8820934671562346e-05,0.02106119383017172,0.0024935176852610365,0.014500457136510964,0.0026390382890428407,0.0002834115637707912,0.0015669144312605594,0.0101696468704204,0.15808096212954922,-0.02487452063082812,2.669663560009942e-05,0.022023053165234223,0.01810497071172276,0.18219916611708376,0.03518758302732895,3.3199622894223274e-05,0.0006739053837224369,0.017502603349695858,0.04549279001616296,0.004524830397081978,0.00012393182188735852,0.0022854515725026043,0.005863704928437147,0.041123859755050694,-0.022894210599532054,3.293598183278371e-05,0.03678869998073682,0.008089055831675225,0.024745434800403695,0.0064066922129371534,7.24736486335152e-05,0.0034831653033146823,0.005910259591496367,0.02244000987777102,-0.10518064209279362,0.00012042928511080746,0.001214974670380631,0.07026040082957788,0.0779582540037221,0.08679724673555372,0.0005151385848892777,0.02415696250541371,-0.00409582436223168,0.016728335197027114,-0.027409839743362217,0.00010305631560208548,0.009516632572079884,0.008124943180232807,0.03582431862572887,-0.0014790725197595174,0.0014556654302016955,0.00855721561405818,0.0480099918921035,0.49953707256614904,0.04152026283430932,2.471417419878842e-05,0.002856167182342209,0.07784574871662263,0.24869503486996597,0.16154836806548759,0.0010233850185873254,0.013043887077116408,-0.016898325138342447,0.13580250537014102,0.004524681607229237,8.286316610023831e-05,0.004815650190759517,-0.011570914060857168,0.01725115952299257,0.006664642958025361,0.00015830504777042913,0.017147214904164442,0.023283236734172614,0.03157500001853543,-0.014488203920360855,0.00042325676497504924,0.006522896824739374,0.018452191360851595,0.06755058852178093,0.011614876793743342,0.0021172354350900684,0.0007993835500727489,0.0027426415560906077,0.010221348720655127,0.001319021915244699,8.608970451172486e-05,0.0030564614976317126,0.05080462729515157,0.06279771845953434,0.05410037910226705,0.002011113568497083,0.011526041872499095,-0.034220367185866046,0.11977540671053773,0.03930307477669619,0.0001131965126917535,0.014545852549592944,0.006352279631793075,0.01711012937053357,-0.001782791475325381,0.0001505000660768138,0.002966335385431642,-0.011181443517357432,0.04521224576652049,-0.0011388998316018437,6.036090181201293e-05,0.01719158299047584,0.039862247513835256,0.11845762395470488,0.010854888780923532,0.0031894575197336543,0.018976719539944037,0.03796275658881834,0.24393119349937673,0.055025268287039,7.741604318943733e-05,0.012776876362318324,0.026568554178849787,0.15422728573151726,0.07335410144975682,0.00012493021585442926,0.00024135264717449565,-0.025102281770047922,0.13020833379743874,0.0165195190170272,9.118494014970146e-05,0.005683511815866884,0.010145794776884372,0.048019462777129485,-0.0016985865991628426,5.310264717706003e-05,0.0258422188179275,0.03646715223301195,0.07811446796386873,-0.041332382143000085,0.00022761441612773612,0.004478320866299106,0.004593654161906821,0.017567976550387207,-0.04807887677495456,6.502059338215646e-05,0.009696067628909767,-0.02308807843402828,0.2039106081070233,0.01661540005749196,2.921320825969678e-05,0.0004319129775166928,0.0008858318023305363,0.0029797327830208345,-0.052647267487308747,0.00010391611774283989,0.003505568115982559,-0.014775422736989978,0.06334421272453508,0.001907154554779357,0.00036767232661077975,0.004724902338984716,-0.007783815311487344,0.04463275944680156,-0.0072634992318082675,9.988737048769067e-05,0.011362128150454733,0.006927038610335406 +2022-07-20,-0.01345133319973708,0.08407896191568798,-0.007131481878433744,0.00016918605876228135,0.0001461015838090309,-0.04034092471521698,0.14257482500275587,-0.10073420401599135,6.789120679178257e-05,0.007278033380963007,-0.005963481353029942,0.021748447673377344,-0.12494727411376413,0.00012684367205006996,0.0029500387924377572,-0.01811417350752748,0.01754768254237283,-0.0012926446604317626,0.0003483907460175789,0.0034723358720615527,0.026684160794086847,0.0630660560779809,-0.008193240890150891,0.00022138880120981409,0.014304475933106233,-0.009925441618483334,0.02466641750498842,0.007839270949508629,8.785985878272858e-05,0.011356173432436978,0.025165357604019143,0.10049786742678056,-0.02223538347354035,7.347441133957806e-05,0.026982266271315457,0.018451783771025253,0.13874954952897434,0.003888601701211521,4.560425751363679e-05,0.0032218030361150273,-0.0010750026583335888,0.0010972850553295646,-0.0010129590492550993,0.0007555006816968239,0.0036827120851214727,0.019614726913413996,0.0442320047816254,-0.035558918662630175,0.00015506276668606663,0.007393730866529655,-0.01763246956109548,0.014344533649362298,0.018107705282916,0.000600829250415641,0.00852572827832402,-0.007436694286841098,0.09716868448011433,-0.004358472281576641,2.2807432326428855e-05,0.0005284763515814113,-0.06597943775454299,0.21406497758492182,0.030132335575743897,9.156173816354563e-05,0.005869210548606899,0.02134853695409999,0.10835657786103217,0.0474491274224186,5.5459334685264636e-05,0.00024955481457785767,0.018220536849502714,0.016031852071429667,0.010248582380337127,0.0022166669420782374,0.012392746495716573,-0.035704081834325344,0.23090220642837328,-0.006297656812949865,0.00012724534222718296,0.001610588246977603,-0.04723105059490552,0.22325884170236673,0.07590243268563655,0.00032758738609996516,0.016079128556505493,0.043890347754701076,0.2536270752439007,0.03132351204320134,4.874548146330017e-05,0.005196995465568945,0.024765493233606137,0.12734284572824486,0.00021307743294387681,0.0003205230292056072,0.026737384386081642,0.05330304390288042,0.7172976591320406,-0.01960581188356915,3.083776028179562e-05,0.005187492164383427,-0.002857270956881873,0.03230181053989616,-0.001802095591705435,2.9553319591730335e-05,0.007322970662790055,-0.01385159127876075,0.04522655366863934,0.00832619593021981,9.865723257955613e-05,0.04058195842539486,0.003817950968652532,0.024841706409439487,-0.02380249964469043,3.550105816235929e-05,0.000510891589012718,-0.011668779657702954,0.03579982689087598,0.01621147280414923,7.226398295448549e-05,0.0005508100876679023,0.013202921832708365,0.04161503043976991,0.03326838285140924,0.00014506693357790157,0.0005463990336245117,-0.02347224222513406,0.024665479718699132,-0.00998608677694778,0.000543926944768574,0.008932593099018699,0.027506321803715487,0.09155948439900881,0.08278169150373378,0.0001264489391986667,0.005338668033646882,-0.002554710402015132,0.00840912877831455,-0.0010508923534780282,0.0019498888130644605,0.05418607066310262,-0.04597274314226754,0.3975941513379961,0.012591162075763796,2.9733266703141537e-05,0.031246494062203457,-0.011957396075722722,0.033730199197163656,-0.05078202019624807,0.001159014792295543,0.0008937841463549077,-0.015966702055283534,0.10802452541056906,-0.010559784889834672,9.842796304525267e-05,0.0038789957916211364,0.021419934538310086,0.0345183654781093,0.019476167846956178,0.0001464580686624165,0.0007411664915467121,0.02822531733223251,0.03588271548816771,0.020530536582630553,0.00045149967861126463,0.007013943158534271,-0.023290700832111568,0.09652625621835782,-0.00434494846134467,0.0018701973433416425,0.0017187306451136083,0.0029881476548127735,0.01454234346682809,0.0035715199253838724,6.592619737117225e-05,0.0007161400772735391,-0.03254747064022787,0.042333836836633165,0.0005583188848228971,0.0019112029368858136,0.0008272486092149062,-0.004896597116085845,0.013586348664309108,-0.00978175532198469,0.00014279324178180706,0.0070508005752952674,-0.019000978517153176,0.04752584037860555,0.018696210430035387,0.00016207145759715913,0.0052237060877450715,0.02023556113344502,0.07171826167886992,0.02046979301459606,6.886513805140374e-05,0.010320446375750195,-0.038157977944185045,0.12428651804963883,0.019169164218397077,0.0029099088770137196,0.016335977274496837,0.05173037236075013,0.24229891627120229,0.08575799807870814,0.00010620249105447128,0.008309946385500453,0.014977367856685709,0.09051405146507574,0.03359237690398568,0.00011999973205874538,0.0011452539781076063,-0.018537349552392862,0.10303007951879357,0.007216438179122215,8.510053748953847e-05,0.004830343307479997,0.012845182401954376,0.050494220101750066,-0.018351505974029386,6.393607943103761e-05,0.00013626049414599466,0.07428794794669125,0.16092714312246517,0.10280723443262182,0.0002250704372222994,0.003890420745725154,0.022515321222038674,0.07601472654138909,0.03388354749694652,7.365373683361481e-05,0.003176211728036217,0.020425847819320598,0.24834956787153653,0.026242589226356906,2.122012650891475e-05,0.018087074495015974,0.007429893966588235,0.023611713677298925,-0.02402668837409614,0.00010999275303772387,0.007963701599462941,0.00650430516681531,0.027086410519792395,-0.030881594672303225,0.0003785100574940027,0.01336104566904316,0.010129950403599363,0.05177383148982628,1.0729219644735758e-05,0.00011206469389294567,0.006466704349697557,0.001208990274193219 +2022-07-21,-0.007250275593011669,0.061609867881110975,-0.014964809778989006,0.00012444883100207101,0.002245674904417664,0.023466811550743448,0.07861586125048706,0.008848642895180284,7.162331794314241e-05,0.023221995275744704,0.034305292078991176,0.11819882554907117,0.06998489779916366,0.00013425954297419335,0.008111232015588318,0.024477811600374978,0.02633718197642883,0.03699223645691883,0.0003136686679372674,0.013856841522182285,-0.005128607983470845,0.011386070822130955,0.000520042094890133,0.000235680361448577,0.006552267719169497,0.007892331606756583,0.023209807329345994,0.0020777482108941033,7.424727671276595e-05,0.004220683679538014,-0.04429583321709463,0.1463356637801987,0.00019753952043220508,8.881831885546843e-05,0.034798762758011595,0.0174558184197393,0.13882645794289075,-0.03319963227106773,4.3118792168687495e-05,0.019319548870132694,-0.021725628411919374,0.02028245688906284,0.018661875477156135,0.0008260314300704694,0.0011390614727940173,-0.010049969810412916,0.022480758767260432,0.00975404590725551,0.0001563204073767172,0.0011441550597578562,-0.019181514496188518,0.015276512846605743,0.018668430645381213,0.0006137380130632273,0.003017331980222683,0.0019965035690802137,0.025631833774452325,-0.024140111674135097,2.3212034231863472e-05,0.007857022794980802,-0.006888724616897607,0.019711515153695194,-0.0010263761787704547,0.0001038173295268654,0.029754027459508607,-0.006074185418365171,0.03550589987616999,-0.029572751490780223,4.815588173050021e-05,0.010521797401594531,0.0012122351931104012,0.0010974085870197174,-0.003888791897217325,0.002154475235801486,0.009607445214819571,-0.024578566476176643,0.14810591963644168,0.0004268237257042817,0.00013656400350355586,0.0076027935817172924,0.05575473069950455,0.3240135042187688,0.047657999970815726,0.0002664568216936239,0.005707761671447197,-0.0006889717998310133,0.004161689576848966,-0.0049267539690870665,4.663293171161857e-05,0.032954728514570965,-0.01894323261476645,0.09383490216833985,-0.019858967139646844,0.00033271815121350035,0.020273768397714925,-0.0916370137872559,1.3906576708781513,0.2134080912662367,2.734518864525442e-05,0.011065557173633967,0.01596070461739309,0.18680937072970907,0.024429660762779182,2.854533287495651e-05,0.0006684339269969343,-0.012953839358498193,0.037578896546882054,0.010170966524150206,0.00011103943399148708,0.013129615047728135,-0.015284363560957338,0.08337071065035835,0.0014507825465218938,4.234734939190069e-05,0.021822203238767567,0.001768453700398524,0.005144555928863987,-0.07374076452996754,7.621196922360278e-05,0.0008103585564329099,-0.004422917894749272,0.017691626991109217,-0.023494766196114653,0.00011431144083096336,0.0005606249094640924,-0.04658181112875975,0.05194197586674899,-0.009820501595419782,0.0005125939374864093,0.004294470704328013,0.014661052119365742,0.045237819060382135,-0.015609705342499447,0.00013641102980068494,0.0033835641821103493,-0.01853556066098555,0.06684669375392771,-0.03476918665034625,0.0017796924984840078,0.02092784657743145,-0.03926397346320932,0.325819915961794,0.028310901566242205,3.0988375900993216e-05,0.02623994938248144,0.022331079400570726,0.0687761261156267,0.0152901204621672,0.0010615568948194513,0.0005199156439826323,-0.029318590638403346,0.22144548936517328,0.02816617070233011,8.816615360380773e-05,0.0006629902256977407,-0.02674957756785909,0.03378071753024047,0.0238709244627707,0.00018689317592139587,0.016577445528420887,0.04447433514424192,0.06876707463722359,-0.01854980782142535,0.00037122124973696855,0.002488094737440289,-0.010186109442034828,0.03833430628178222,-0.002522602414344642,0.0020595439815873783,0.015189559460886425,0.019415738800040928,0.0759331070158654,0.029022998897473687,8.203763285727864e-05,0.005011619986229876,0.0010818197567076366,0.0014891804376431239,0.00021483343671390668,0.0018058629077575298,0.011075337572719232,0.024477492643051837,0.07461812303136929,-0.05013174837953317,0.00012996866103243072,0.0005779704227911327,0.024903680030839852,0.05351936500155498,-0.010767552603944077,0.0001886309499708107,0.0005870324930942227,-0.034713334031653255,0.1587933998422254,0.025069362483687074,5.3355329359561976e-05,0.004928124479100902,-0.0957742855197164,0.2836296971984695,0.1211617974815898,0.0032004811779409595,0.03712830875388014,0.04873133394188271,0.25088416819883114,0.04717260560863437,9.662190903088677e-05,0.01946610710902321,-0.05147271870537043,0.2940219978178249,0.029262134898002577,0.0001269574140308704,0.01862332030028263,-0.01881415989262428,0.10324488911937899,-0.0250034460610133,8.61916048387791e-05,0.00021994432015397155,-0.023578456485195312,0.08846250762010639,-0.026440147951575583,6.69890039497795e-05,0.008689517928860307,-0.05720372483618787,0.11456298484127089,0.07201429969342166,0.00024344977791889458,3.965190430451357e-05,0.001743018575391363,0.006501765632251984,-0.009415789996636085,6.666303479645152e-05,0.007415615130280324,0.028944945535527615,0.3794166392413985,-0.0014376005761863246,1.968283488577875e-05,0.006607328734408646,0.02456379557504653,0.08797451251358591,0.0406251494610015,9.75994948757863e-05,0.0012374107797487707,0.015052672199669572,0.05863066356081181,0.019341554678827637,0.0004046846817625455,0.002713524014434603,-0.02439681138478811,0.11849317594366292,0.023069622445294254,0.0001179265313886777,0.017397903736919476,-0.006238381296363813 +2022-07-22,0.012103898040402272,0.08992235652495456,0.008799967983981808,0.00014234563724688131,0.009569775442552879,0.0033695977520750327,0.01005263957722769,0.0001111003925327532,8.042822320745195e-05,0.020031630190867452,-0.021335311249603264,0.07037395434774833,-0.07309748894961894,0.0001402439814026242,0.002179160568022212,-0.02091997609254318,0.02286193514264606,0.037586723230721035,0.0003088275611903309,0.020538126253251174,0.0016497575543452372,0.0032245249164586506,-0.015297268188943936,0.00026770233596570516,0.012415516171869742,0.002081636630227084,0.0054591294475485694,-0.03742108235981098,8.325843990835549e-05,0.018430571343860756,0.023906755004441,0.09486876627668694,-0.0033137697022883003,7.394132578589574e-05,0.0019418827209147487,0.0237368806070132,0.20860553988535274,-0.01524891061736426,3.902082274527532e-05,0.009748482021339067,0.03474641960471077,0.0270476216380618,0.24430764695402146,0.0009906625918763867,0.006690589309880027,-0.06687832862150797,0.14167338926523418,0.2544547767457422,0.00016506652693916185,0.01271399048707364,-0.0005682600539972953,0.0004701126394451485,-0.05856359843357446,0.0005908395500438389,0.00824604866368273,0.009788961489004773,0.13413291055373294,-0.005800304432360431,2.174823719314057e-05,0.001953795723525149,0.03374640878123166,0.09825966831193376,0.001524252435713613,0.00010202422560675334,0.012965137753915437,0.008517209377525063,0.05296480814541967,-0.003123195242556779,4.526596032561002e-05,0.002141859886715217,-0.004053002517486725,0.0026914514396699576,-0.010435262649124479,0.002937063238993686,0.014168168634785976,-0.06354568125763645,0.4177422943330408,0.052502818368407374,0.00012517848760538363,0.01437222143781887,0.012016531695805022,0.06679814803958,-0.12802277810105353,0.0002785626891339109,0.0005011966418595997,-0.017823548781483883,0.11183189401256316,-0.014592838757502181,4.48941191447854e-05,0.006628842077431327,0.007062344064030866,0.03810874674148332,0.007718419034788448,0.0003054295220494071,0.013556603539883309,0.002112893845881988,0.02718212331109061,-0.06607994386919029,3.22570413644899e-05,0.0189341483510406,0.005551268013797153,0.0555092354369419,0.0014311449314837236,3.341247593527965e-05,0.0047220016350329585,-0.002658244179220412,0.006475729832179524,0.0007739174753459911,0.00013222966745069252,0.0006380233904569861,-0.06416209718811484,0.48991775622693146,-0.019910959428656956,3.0251558033440612e-05,0.009741091495388095,-0.003414463915814356,0.010500467832713063,-0.03206687387510113,7.209269501439558e-05,0.008054540313271193,0.00996765560492019,0.03216561670587505,0.009290819981042343,0.00014169343776979264,0.002930671323719149,-0.00576096606800366,0.006081213108181019,-0.016487660973015985,0.0005414777999290149,0.03603438256989552,-0.004748828739921392,0.019414145208267106,2.4149773016741223e-05,0.00010295661207387846,0.001083793298234755,-0.043550480851309484,0.16016347901509911,0.0036988884226445682,0.0017452137876998476,0.015448016417654935,0.005703541071062277,0.057294900644251565,-0.014945018986662173,2.5598280748959143e-05,0.014253617778681041,-0.013713011530505475,0.03818496145630739,0.0004078327550507972,0.0011741180223578697,0.01696273294260012,0.01623674378553874,0.12408084642412942,-0.01030920215100497,8.714045704890038e-05,0.004676559321973514,-0.004101450230458175,0.006426226438237855,-0.012846452449609701,0.00015063531767069285,0.0046722106425732095,0.014448861959123835,0.02173536694697196,0.00501316302876195,0.0003815667994211765,0.0029957775639353154,0.024550609524299726,0.0892205634033937,-0.024710020349863696,0.0021327878535811143,0.012301284313744915,0.010272813690730055,0.036924968680654084,0.009345534037789389,8.926056809174252e-05,0.005431367877486092,-0.028694753976848397,0.04694860274338766,0.009662908166180656,0.001519347185796815,0.0029892304442396406,-0.028509435920265204,0.1026566592916883,0.05148915938321752,0.00011003162679499737,0.0026285178565044103,-0.008074194441259916,0.024970909541286213,-0.09864926715906015,0.00013107661533808454,0.007855741766800529,0.017050412298073487,0.06243754706237198,0.010457077900590729,6.665043332307834e-05,0.021148147747732913,-0.013504682354273828,0.039270168531559554,-0.006218271375900618,0.0032594150490541777,0.0011126856622616149,0.05049541303237742,0.2673709392153807,0.027460407877786964,9.394600094812935e-05,0.01114458041115395,0.004439388919989668,0.02509371077669253,0.008439708897906335,0.00012829776476286307,0.010515179556735284,-0.018784808910075897,0.09834699675793288,0.005207833757503202,9.034297294761784e-05,0.021293761897656655,0.010691296901475042,0.056213183448361785,-0.00797675950459563,4.780128860852883e-05,0.0009614162810691726,0.01444498807873871,0.0307956305258733,-0.0029919590517319596,0.00022869542743093543,0.03262250346192378,0.0037814035774530685,0.017009946252848338,-0.08420347986087126,5.5279545702168576e-05,0.004161487153201128,-0.02220875264419779,0.2740830136401681,-0.013483197888670808,2.0906114837803837e-05,0.014886269827665095,0.016086961299931906,0.053718858276671444,-0.00228263934142061,0.00010467819078129676,0.0012382327861373418,0.018159172746548952,0.08167808847268783,0.041533723442589945,0.0003504438683736588,0.0009512869486162218,-0.02910619603894754,0.1396922623317968,0.02819718596916289,0.00011933968722010654,0.009206567012217049,-0.0018349644586708222 +2022-07-25,-0.002146244334510866,0.015370944461921372,-0.010316263963917336,0.0001476607915901752,0.013947794082418549,0.005510083260355206,0.01921488329602138,-0.01634326408508735,6.880673286762301e-05,0.010525563719018345,-0.030943010347877928,0.11000880356245805,-0.012337662545846785,0.00013011648591134618,0.0075064336215313245,-0.019867637437990113,0.01835415063659409,0.021766250652020164,0.00036532533447433674,0.014715334907215789,0.014118810291954078,0.029819347725989608,-0.08491451095289779,0.000247740914141951,0.03035552223493545,-0.0017642792858628656,0.004829898281269467,-0.01375227484414716,7.97583370603289e-05,0.0027746931796170243,0.034093130626190286,0.13157207713245722,0.007584116396132308,7.603140337567302e-05,0.01631751177660762,-0.013329813488930838,0.14205441304498348,0.011291707985923952,3.2178660166704386e-05,0.020083540286249528,0.014408737947874825,0.011179807161187875,0.03843415735644118,0.0009938856427167242,0.0035899399625372,0.018089139623632126,0.036043009111011645,0.012977002576064121,0.0001754925787546138,0.01186321448426335,-0.0066386014696918315,0.004451374371492742,-0.004529170409906611,0.000728965265257275,0.0016733112496738539,0.010715787730065178,0.147666820643112,0.0031463060568013516,2.1625390930427838e-05,0.0052006644273551806,-0.02931793649420985,0.083481230832792,-0.0419292035529446,0.00010432672973508923,0.03221886044407443,-0.023224187120171234,0.12149668274005611,0.024853426908336144,5.3806893599004315e-05,0.0005620545341057251,-0.043843883297008474,0.03187353448036384,0.1067217650423735,0.002682883164797839,0.005109950243022611,0.0031996993029058114,0.022368092314340886,-0.005435821055890288,0.00011771514123676079,0.008037438296349887,-0.010173923199445843,0.05743511905597621,0.009759803710444088,0.00027429580216849946,0.0011882662067391884,-0.05247939513247421,0.3523399545382563,0.07115492241052737,4.19554016273435e-05,0.010321794829024565,-0.03440722620679414,0.19753036970937846,0.01137425929095445,0.0002870797726044618,0.01250756013747887,0.05175846074114151,0.7215418994181972,0.01668672294652287,2.976802544159323e-05,0.009640473979517042,0.0023959757346555225,0.02448080011766377,-0.09902160362838594,3.269930457645441e-05,0.0063550451665359865,0.028452643064443676,0.08546264927034215,0.00031728453127120366,0.0001072430162255748,0.007468999553911744,-0.03431216760731047,0.25203261598618887,-0.052134722032664026,3.1447330395277074e-05,0.014434625675291803,-0.006967164868620852,0.018941830731184172,-0.11504263069831754,8.154766283454456e-05,0.00016984936602310432,-0.002133525036393217,0.009815546629545566,0.004221350347172438,9.938751880172934e-05,0.0005169415204618292,-0.022372933280391628,0.023315403128419544,-0.023448900483181698,0.0005484733874791539,0.00016964715921526877,-0.013107355500348167,0.044254621172273446,-0.030485992766065298,0.0001246644026065165,0.013735892690983577,0.02252142715373111,0.07063052963772368,-0.03769371267855173,0.002046551225200524,0.004337798232208635,0.043152308546021804,0.416000005454112,0.046837997096857216,2.6674291529217686e-05,0.0021031701350008227,-0.0032782502389126188,0.008604451411712103,-0.06505390567358185,0.0012456332280236118,0.03504150992580146,-0.014345213863217776,0.10490895740529403,-0.06241923116890667,9.105841771611974e-05,0.006094986768049458,0.0011113652586251012,0.0015405680532773786,-0.056828329371559363,0.0001702634053312466,0.022080945527186674,0.012162098039445892,0.01493651120565513,-0.0031995309299544692,0.0004673725964708725,0.012317804363513778,-0.06406782118352629,0.2849369038682031,0.10491358076604725,0.0017427760979847153,0.01774201089067266,0.05863393922286162,0.1831759846926671,0.17456564631247215,0.00010270010983934101,0.00667128718492929,0.07184758198911913,0.09276827043696816,0.08295152033899733,0.0019252622204895627,0.021852545019578534,0.009330409938787965,0.02877473481561386,-0.03142001623739256,0.00012847109679032563,0.007403024888106431,-0.06301966047795649,0.1643638933715777,0.19622365925557883,0.0001554282707095098,0.019081082292278822,-0.012631984817800541,0.042525322923188405,-0.004723470295238587,7.249998218835006e-05,0.002260191279824027,-0.03432943964728459,0.12065551820728034,-0.008493215087797252,0.002696730724999475,0.031526773159310226,0.023697200367675215,0.10991458902483198,-0.007959006521399036,0.0001072462884003488,0.008125631235797064,0.02715369234750114,0.16138423274779506,0.04341987215392963,0.00012201931305302945,0.012930550485923467,0.004043633493332373,0.02039833615024171,0.002600704309554298,9.376175754171909e-05,0.00865977124984131,0.02762897181022295,0.1451340921845871,0.023811246885590914,4.784567406553274e-05,0.001630895964260864,0.008419663110428105,0.015463870279236906,-0.010094194525336326,0.00026546416925145365,0.03265056483247551,-0.005696298571344594,0.024888179139660394,-0.018835244329353205,5.691332995335398e-05,0.018494488903364987,-0.027602418283161286,0.35194744439584463,0.025151500224824944,2.023487855935913e-05,0.004957567260458475,0.0011984337869495982,0.004184903205498445,-0.048161241536452536,0.0001001008099464095,0.0018779778623129885,0.011387786484635773,0.0420193185341554,-0.0469077654043519,0.0004271872497999808,0.0018205343440151822,0.003125546510380393,0.013598186677704375,-0.0014762572667165327,0.00013164875700502978,0.0024299873888878037,-0.0012734105963778913 +2022-07-26,-0.008864950336516113,0.05124052154790719,-0.008506979346334724,0.00018295713434888779,0.0034214243804288353,0.04156304748209226,0.15001454187153535,-0.07465428765035191,6.647901100190978e-05,0.010433399333200576,-0.0024077455851844467,0.008431848676394165,-0.006912163322421046,0.00013209457925882501,0.002035995777754428,0.007094825479526519,0.008367510650854382,-0.02908504151404889,0.00028616288099611137,0.0016703613284412163,0.010892297674628727,0.02573974740216538,-0.04305540194306936,0.00022141803553517482,0.0009512648642524804,-0.005291831124155993,0.01325001719134733,0.001522835580080755,8.720397351870994e-05,0.004609641755196989,0.009342151948370004,0.036801359794780615,-0.026607952951621338,7.448570213323757e-05,0.006560374858581786,-0.022654708663173973,0.1907759224644098,0.015321852599373416,4.072241578834378e-05,0.007875600926196871,0.0038896596523709504,0.002738267617139288,0.0026257068646780737,0.001095419576696965,0.0045450264686262105,-0.025335054918460127,0.06727529246740463,0.012416133156890994,0.00013168252392999305,0.010838939727678486,-0.005781419395835996,0.004580598886322843,-0.05270938953131837,0.0006169309668541745,0.012130964885355948,-0.005174731436167048,0.0650947684999921,-0.0548663931675582,2.368997038544864e-05,6.008687250255956e-05,0.03502345192007453,0.10091345801700347,-0.10116988741196697,0.00010310052990421927,0.007984770754624093,0.000565417280632665,0.003449137633941166,-0.023130171964514477,4.614454532500325e-05,0.011031738591240636,0.010928961043029851,0.009838841912318683,0.005893436809687838,0.002166495882395883,0.005332624993259392,0.010466646236711522,0.062458483686198156,0.0027478525990587053,0.00013790125444310052,0.005522648720495109,-0.06666824627725709,0.4285140263087221,0.15514020674722792,0.00024091410124568548,0.01029708893927222,0.005232050173144615,0.030739783191143868,-0.0017033990642010826,4.794375616659287e-05,0.013072146621442758,0.051740057750555166,0.2389860761011793,0.09824989968489542,0.0003568133688934573,0.01215486884122222,-0.04724527345155805,0.647412241741629,0.06795424413419425,3.0283613246926165e-05,0.015531805604250503,0.035028208028429916,0.3801735950035499,0.10773893707852591,3.0783477554059895e-05,0.002013109229093973,-0.044642129513233486,0.11280958181282086,-0.07932393869940366,0.00012747401640133394,0.007919916518759836,-0.001622833074632387,0.011184912130356156,-0.10052230210089823,3.351456986317318e-05,0.010307833866515601,0.00836483540611815,0.022438563236394257,0.006207664974108408,8.264940605866126e-05,0.006280510767862496,-0.009000847261653858,0.03672687907332854,0.036235078145398655,0.00011205931481558311,0.004010933611689349,0.0113913325678133,0.011572736642360571,-0.15498294409192606,0.0005626185180634506,0.0004670995737498006,0.027949501081726703,0.08853739052936882,0.07634644538858851,0.00013287196297516395,0.004239720950371286,0.020761791935497115,0.06961534504569149,-0.03752337685773351,0.0019141634929994997,0.043323580600742984,-0.007500601697640294,0.06624473911689907,0.0011424883571308363,2.9115677819572915e-05,0.02666516897478074,-0.02239703525410827,0.06729771706732929,-0.050703801449614797,0.0010880816130194385,0.011044591309755245,0.012212014912927742,0.09539283400384527,0.023938480429066725,8.525055556003093e-05,0.0032824655663112393,0.010802044697001849,0.0155641133331803,0.00770520797353213,0.00016380493122054805,0.007716307661175576,0.02417731839079514,0.03652282338145284,0.014103189252435117,0.00037996859278198,0.004472480313526926,0.01036775310767753,0.03741614479661657,-0.11505101280417435,0.002147711537479372,0.020206649902782425,-0.03437106941862808,0.13277404716621455,0.04396648997989949,8.305584898937436e-05,0.008972133355844174,0.019494056279642336,0.0273082599901304,-0.006597167651053794,0.0017745383050003212,0.012252461340574268,0.019333925576619795,0.05496506967762858,0.029301791595884103,0.00013936358067607606,0.013152914518260369,-0.025036649969255913,0.06228792053018186,-0.026148963717914996,0.0001629418944838406,0.017552457898555505,-0.010738029492935794,0.0394835289464772,-0.02733750250956521,6.637775434591754e-05,0.000965655628806003,-0.012239965625705031,0.03626827558538801,-0.0043120751117723035,0.0031986840814535893,0.006664449674678587,-0.029041935313272232,0.12655747503409737,0.012533158340173982,0.0001141506326759762,0.014432984550546282,0.023580293451581965,0.11611016898365857,-0.010579297523819245,0.00014727862901771336,0.03432433767385841,-0.01292768792847666,0.08220515010333954,-0.017076721386569925,7.438245904976613e-05,0.0017258012515958,-0.00457558680777266,0.020201871858048056,-0.0666572863214196,5.692494006823055e-05,0.0025131765593876003,-0.0596982870251076,0.10199476267787948,0.07482185144678907,0.00028537333591078433,0.00019599435260849027,0.01316211271106378,0.04958212804188319,-0.02135499472720488,6.601077305242603e-05,0.0010212165011599138,-0.006481701843984283,0.06836209202133557,-0.0007268830878977032,2.446273387081919e-05,0.008933978736690489,0.018290467410510484,0.055552224517105946,0.011458060140657034,0.00011508860185815237,0.002348339612007844,0.0024080938895082006,0.010864502053125325,-0.006978198337927079,0.0003493747868502573,0.0036628224736570507,-0.012698537978828367,0.06445567206324496,0.005861722711088055,0.00011284033768228387,0.0063655789791542735,-0.0015730129084803586 +2022-07-27,0.03428065417535622,0.21843932893868254,-0.004463566169627959,0.0001659605445535648,0.0017765497209206226,-0.012574363552740643,0.03675827244074363,-0.05606186783349862,8.208077472442506e-05,0.012031328020877441,-0.03391031522396541,0.096968990439942,0.025750297749008222,0.0001617693190171675,0.006750645123715716,-0.008446054340337374,0.009280569901618761,0.001766296715401373,0.00030714756831512024,0.0015935981497286126,-0.04047678901151536,0.09250039331079384,0.04020372730645939,0.00022896033188449366,0.010619190013936781,-0.004783960430568647,0.011802629238511312,-0.005498736459747122,8.850250311262147e-05,0.007869332596553402,-0.05869328362900049,0.1913098354933452,0.07161699048508165,9.002040531061028e-05,0.0100290125098372,0.028167468894481365,0.27699233944087853,0.008822486326034443,3.487214642644535e-05,0.025619172536291267,-0.016665542848476635,0.017333208624651514,0.011814735752486087,0.000741455834363992,0.010521260615308755,0.00580971699710832,0.014607682204400427,-0.0009178590214242807,0.00013907067158085149,0.005852281192674381,0.016576925067855526,0.013683325386214206,0.016041603048814603,0.0005921567417197836,0.008755277429793672,-0.003694493543542493,0.04076104207793608,0.0187143223871278,2.701048751624441e-05,0.004407057513043582,-0.027566639590159425,0.06952097721045228,0.0041977374030934345,0.00011779286854560111,0.021078951158303393,0.011811645931970217,0.06204702799203767,-0.01084867992934814,5.3585989467678564e-05,0.015638769975675215,0.033519386165540614,0.03204592453024664,0.04470913267020425,0.0020400754229428805,0.002475730568757958,0.03542165937158609,0.25221289628699595,0.013044091478902932,0.00011557229056293303,0.026413607734761337,0.026103350906356015,0.13977536345675518,-0.022488935534871347,0.0002891837354601904,0.015706692823591537,0.03030812117748701,0.17745051177017754,0.007203699839913591,4.8110815091584897e-05,0.027888046809845926,-0.03384585775175602,0.17608217783265157,-0.03134281516277812,0.0003167939880969751,0.004956152873996734,-0.05773679332494411,0.771391085815847,0.011391569255084116,3.1060488024161485e-05,0.0032064065635396648,-0.011551119711981217,0.11505063356177403,0.01936051861478648,3.354414905814121e-05,0.004091863998405227,0.015358341730898135,0.039916868472053134,0.003848525600238274,0.0001239397510384872,0.005591305084651337,-0.054040216879727695,0.39073021476709835,-0.017723776228305937,3.194717519061097e-05,0.0055622313498527465,0.0015654368751879086,0.0038141375227817662,-0.0002844649454080404,9.099480405535144e-05,0.0042515209905274924,-0.006387417076922723,0.02245525861535778,0.01844484744635634,0.00013006361165852312,0.003818016474885111,-0.0013355046602196508,0.0013476694618275724,-0.04415750810470586,0.0005664186985983845,0.00536481866908711,-0.018095678169482182,0.07140926920497068,-0.048513922620929906,0.00010666115550100465,0.004035832459687465,0.011045050227455151,0.042559687483329785,-0.012794424242175561,0.0016656679893765549,0.008026120656965995,-0.022776396498980476,0.18003675198807678,-0.002954864640801924,3.253164620528377e-05,0.0046883565819362556,0.01839081485378443,0.05485031410199821,-0.003922759070251516,0.0010962083935305389,0.014330523571200987,-0.010145038437695727,0.061439585693039714,-0.003116452308079413,0.00010995907090446494,0.010534264260662203,-0.024123230512233737,0.03421317162573166,0.02233220046627518,0.00016641310239654078,0.004685054599815438,-0.019600742548519817,0.025657451496645972,-0.004279966773772708,0.00043849325927856127,0.006807065136404701,0.01958788039375855,0.08363115421274389,0.02702808422332914,0.0018153889767496217,0.011777608540484095,-0.0005210207243390828,0.0024466974957818737,-0.0005272774842277782,6.832271111347298e-05,0.019640581525434832,0.030903510782104335,0.04208587856326597,0.016638450656148634,0.0018253603563772906,0.034150491296936786,0.012809539434826333,0.04635598508993828,-0.052058166934292285,0.00010948225577146256,0.011568772440993066,-0.012211658758576575,0.0310403770671545,-0.026016165877257424,0.0001594806686099084,0.004419350543124166,0.0099020272965582,0.033186516496533945,-0.0008748468795324324,7.282430962570286e-05,0.00783337337027476,-0.0069396258559757526,0.02086528473271369,-0.0020985679094407007,0.0031523163813215495,0.003123298969843905,-0.023945987593923853,0.14356357114783613,0.016966670178223054,8.297152472850639e-05,0.03121085801004819,-0.0027961912255804835,0.0137514557977297,-0.08347763769734035,0.00014746161153527044,0.007828838179825116,-0.0005166138687999226,0.002958990046722137,0.000164446414264368,8.257931105418871e-05,0.008328708251900116,0.015552029100726998,0.08668774417054634,-0.02580546680934148,4.508963850195744e-05,0.014165760340605472,0.026258096748568494,0.050594384438994264,0.0015420803178783683,0.000253040665927014,0.044335030232399666,-0.0438333345100572,0.1862235306142725,0.20265495229219763,5.853078239384324e-05,0.00851696493474318,-0.007128522502437042,0.06869229686920024,-0.0005842580044691966,2.6774586485178068e-05,0.0016605963424512165,-0.02771998667050427,0.08607636767971573,0.0536068256617406,0.00011256880341597325,0.002889936018335611,0.01651270418873164,0.0755572610617348,-0.11773562559985906,0.00034448472188136175,0.007165047679537598,0.009169115084029133,0.040728935594532986,-0.016432414820247477,0.00012894252167396073,0.016479662889554773,-0.0031969198673301364 +2022-07-28,-0.0023544115670832734,0.017129384636059918,-0.0005202791288680892,0.00014535407282703706,0.009979161491043977,-0.020873342726714657,0.06999524762746964,-0.004319955776960421,7.1554009826211e-05,0.003300077295423449,-0.05136476414605062,0.1747831817395151,-0.004718500843936037,0.000135944881923817,0.00871279474131967,0.003898443311805591,0.0037516489463452307,-0.08239025922104402,0.00035070090486224016,0.001795471974381374,-0.021868228820563967,0.046762728838703964,-0.006815259649849346,0.0002446873600561837,0.0358385418812944,0.0006074975145915626,0.002050072869438875,-0.006230547812045641,6.4702631943344e-05,0.009711715899848261,-0.00890765733643909,0.04044836125104138,-0.02150075949360344,6.461783845091251e-05,0.02312339970133314,-0.020727252271026578,0.17050501364419915,-0.024765380896814973,4.168724492452577e-05,0.014396795398276787,-0.0050395366603738145,0.003838674090242016,-0.00046744345787771784,0.001012404703372516,0.00995125069648167,-0.030880067653145656,0.0682993193257083,0.027286380530390772,0.00015809704552142807,0.009803973941042092,0.021643218557096902,0.015579963917891564,0.01727675001226448,0.0006790156057746934,0.0006027717873856033,-0.003443999161817881,0.050568739033889726,0.021050458708352888,2.029568445747486e-05,0.010777604983203052,-0.002746188320010814,0.006849527000729878,-0.002066510749207593,0.00011910247092948379,0.002567022444374991,-0.002343664701718109,0.012672966160994953,-0.006170224325013384,5.205698630210075e-05,0.008303648081323913,-0.03386600611870606,0.029278118120977203,-0.009436983215063458,0.002256024421011726,0.0011102578772172534,-0.029262898906379765,0.1850425230855269,0.00980329401290047,0.00013013613771766495,0.008987707297835944,0.018217601550564132,0.09248959214005346,-0.018308985617923264,0.0003050047245903735,0.004433292690249822,0.04123703292993531,0.28639216341337353,0.03035333833561741,4.0558999689294636e-05,0.01255513148395293,-0.007501773002168341,0.0439770390098565,-0.04608253358806335,0.0002811413599213787,0.005899867195666887,-0.05606149893633206,0.8945306616747184,0.046648884971622354,2.6007565763806372e-05,0.02189522810255031,0.011265968571590165,0.1166076651006064,0.0006206604533554707,3.2279228420688614e-05,0.002536417601790014,-0.025567983110764424,0.06357506141319011,0.02197279811238421,0.00012954851473464429,0.0001368969976305904,-0.02538479295802802,0.16588658312571686,0.0043557844864959856,3.5347177428776565e-05,0.010978887536434992,0.0186260764615993,0.052883433898120315,0.04536431157577055,7.808706797052221e-05,0.0012589541937748703,0.0009171619638963762,0.004343669250523477,-0.003457945624675418,9.654679975895232e-05,0.003144245295482355,0.017231444974714513,0.01782932746945936,0.0012732359153812525,0.0005524109736205318,0.023530505678976646,0.0027876307984991845,0.011411633360500443,0.001185806633640693,0.00010281901835427567,0.0004111688818524519,0.03224813601164584,0.10710455273933114,-0.03638528368621596,0.0019324837896026682,0.008573817221646057,-0.0509855460423286,0.44997571646976364,0.022697712532646675,2.913668863736025e-05,0.02393634564258401,-0.06637864031926839,0.22358580970795425,0.06441186809481647,0.0009706337434334458,0.01932946012379622,-0.017678678195774906,0.143130693326219,0.017497317246109954,8.225127876499515e-05,0.012142918514360527,-0.01854973293930195,0.02804856875009687,-0.014048853392806312,0.0001560890159179261,0.015484901832629773,0.011361243639283923,0.014876826184173804,-0.0004181649256841752,0.0004383484731923282,0.008966633712045114,0.00013592048186577784,0.0004936116458786444,-0.007287281201858926,0.002134272404627468,0.011538368562538101,-0.01666254485302565,0.057038075848157475,0.008552888644574486,9.372745733242579e-05,0.00307599095975926,0.013659714378810786,0.0216990835726446,-0.05959841054689933,0.0015648669479628023,0.01072883697710474,0.038942038454340265,0.16072199560107348,0.09987780273642026,9.599738472200941e-05,0.006644929065886655,0.00013120075284535034,0.00035838823854688235,-0.001197309942150324,0.0001484030936542037,0.0022205580676919684,-0.022495729897173796,0.10693159813051369,0.0032559397033524065,5.1346158410731926e-05,0.006376316574016279,-0.03117385608328301,0.08667394738577087,-0.016871610391331324,0.003408945107088468,0.0219279276919009,-0.03763657640515302,0.18592118160272816,0.04381969474705904,0.00010069822399634617,0.03176366286499152,-0.03946613098325516,0.19122120194433787,0.028580482910257752,0.00014967500924501658,0.0027208832433616775,-0.0004933354310252215,0.0025026176846392636,-0.008621857126245068,9.323876166859109e-05,0.0021889274836450682,-0.0020640009131862114,0.01007658336173535,-0.0006345065002428196,5.148064480834892e-05,0.012380546251036795,0.036922591507359284,0.06800519190980932,0.003659513953147908,0.0002647155777610311,0.01247038869506818,0.017081154184939634,0.07702635862335493,0.017209006257519838,5.514323257374979e-05,0.015943964457840198,-0.019913142709653726,0.2509109268677342,0.009821004450323622,2.0476301560740814e-05,0.0012750154886730569,0.016916322650283082,0.061807030297969114,0.004743087454441182,9.567028052482076e-05,0.005497293074263918,-0.04171386604768967,0.18217396033407116,0.235395564897616,0.00036092927855299253,0.0029771792980515513,-0.05940006254635358,0.3519124380247656,0.09137504425758891,9.667720393932285e-05,0.02132699735955357,-0.009097825994569918 +2022-07-29,0.05356450825099119,0.32350767044649337,0.08696307627039107,0.00017509716875450905,0.0010207717115451136,-0.015742960975405517,0.04755006175309261,0.003405309962403421,7.944121178204047e-05,0.0015477679121974027,-0.010741548549886014,0.037123577105724004,-0.012968495017198144,0.00013384873883105794,0.002389879971698542,0.007851554686212014,0.009320060664725923,-0.0006954513035581853,0.00028431827595667096,0.01070433077261354,-0.009456017387945954,0.02001064881195821,-0.002886248771032992,0.0002472548756674584,0.010082752971699804,-0.004054214193855699,0.009837530176602247,-0.08337610952764306,8.998442627895794e-05,0.0015590044953559588,0.013858018220640632,0.0427228186461086,-0.0018595845133700269,9.51767970570359e-05,0.014987183641624543,0.044187155036526496,0.4119962135272891,0.035543989181838404,3.677912818832254e-05,0.0259989109781205,-0.004332417559898323,0.00407285164357257,-0.0006753816731197103,0.0008203071616495644,0.00116647359521239,0.0008580301327426324,0.002028670059452276,-0.024633405707375686,0.00014789483481776126,0.024994946168694132,-0.015998148366598967,0.012715954398864176,0.019122872624540523,0.0006149575198775351,0.0022634195868532336,-0.0017959623159178372,0.024565392555154594,0.012567603884276647,2.1786943173155212e-05,0.0021809313344323235,-0.023566257925285442,0.06968542386671592,0.0036081381424610355,0.00010046151389614246,0.015919652722664702,0.007672605772286508,0.05110172713673366,-0.035854716983149994,4.226385657339027e-05,0.001975358346484187,-0.021534311470731843,0.01812239679819899,0.013838310560979514,0.0023175991754771125,0.009016456852295447,-0.07257239193720505,0.5087024557770454,0.05263370026693512,0.0001173977330955708,0.005794874309018617,-0.009628414031670331,0.057065547215136174,-0.038848553293026264,0.000261269673687039,0.02921360708239804,-0.023111020620366848,0.11408970981965384,-0.004520130749572982,5.706024151283018e-05,0.005182926901098707,-0.02695968450007761,0.16383507961514077,0.00944632674989603,0.000271203141823882,0.03636485210581716,0.0058024049199263536,0.07720651415532707,-0.028645164667535507,3.118776975019549e-05,0.033832621872653304,0.017157884280722853,0.1899198883024521,0.01138576058060498,3.0183875255672554e-05,0.0050698258731017454,0.017147475301252813,0.051905993761859406,0.006897403899365613,0.00010641563272210827,0.006405903347076561,-0.043906700607243665,0.3025022657375585,-0.00577510067543199,3.352698863805339e-05,0.02419150195551366,0.01199901205581477,0.03554514505122489,0.01561655670763932,7.484151688256606e-05,0.0017643380856289552,0.006811630316737653,0.026823735705856645,-0.051746242605376726,0.00011611288182181554,0.0054584161911246185,-0.012268247392311745,0.0131853954385115,-0.01491697348669794,0.0005318203204145807,0.0009523892750716283,-0.0033368884496310313,0.01208671656682669,-0.014600701139307783,0.00011620354032050578,0.001980137144302225,-0.04375748150004686,0.13285677896772002,0.006399627157182981,0.0021139162317896777,0.0028417187670565737,0.013675833407939018,0.1349341841564146,0.002233730106039727,2.6062376210577914e-05,0.01641038437775936,-0.08828429167509978,0.2277107621199417,0.09765223106419357,0.001267567658684608,0.002569773020267857,0.001668785508799772,0.01150988089128054,-0.05769068661947763,9.655067929451616e-05,0.005049338678469666,0.035963764313331266,0.04513458968281595,0.08274745110876955,0.00018806199137083194,0.005976583686508789,0.007492511499547857,0.010093761032069487,-0.013694920738834082,0.0004260674071814638,0.007601835090595631,0.001522201466368964,0.006001683903016101,-0.08313718427536691,0.0019658453921729386,0.01289372054990841,0.016181628359561686,0.057342921901196026,-0.017722961847719022,9.05383914646593e-05,0.0010210824880419196,0.0016814044583184752,0.002665016204206938,-0.03626424944018259,0.001568373632785534,0.014044025484252005,-0.016218055714504274,0.058834034618350524,0.012647954816745782,0.00010921598145055027,0.011636836856009676,0.05927181110468792,0.1616753428785673,0.08978117051851474,0.00014861573138926783,0.0026437869777173103,-0.007408557331921082,0.030106691268206937,-0.006092146905033162,6.005989132293938e-05,0.0044843864438493235,-0.04668712542064933,0.16712845475906074,0.016886010103809794,0.0026476757326694264,0.008570717276256605,0.007849664247874788,0.037201125269456035,-0.006287878381208109,0.00010496284051761585,0.002558567576020885,0.015332459062810324,0.08429222584623686,-0.043956454219231465,0.00013191223421510665,0.012254488800436622,0.00784766852856995,0.045118979973422235,-0.1351043328172002,8.22678366172273e-05,0.006214818581914913,0.06666783849925836,0.2736878485181332,0.15417671954534604,6.122210445572291e-05,0.012357247165621714,0.03310926800057492,0.060226546492317526,0.00110312496477554,0.00026803469438321196,0.056369001016281436,0.0060521830458706224,0.026374385677026598,-0.002542334954272857,5.7061617446371715e-05,0.018765070517869895,-0.005105797742085913,0.06207782067098704,-0.03508519712799811,2.1220637684620894e-05,0.012661281403741634,-0.0021337183030874273,0.005594160448446323,0.007402394754044373,0.00013332485768250465,0.00660410968318252,-0.020063460829941288,0.08106413346319752,0.026055971627591178,0.00039012616149021847,0.00804651206252438,0.00460719588789798,0.024707752961766177,-0.10296547567569526,0.0001068009764786742,0.020169725294007904,-0.002062671126579107 +2022-08-01,0.0023935894054077046,0.01773665087403981,-0.005172418972829191,0.00014271335643325622,0.0016935754625102514,-0.0055072387777162736,0.01986776384939002,-0.001122740766808026,6.651130114659632e-05,0.021385794666717424,0.04210630816330462,0.1428621801285849,0.0376111689148149,0.00013634119487577055,0.015752114511299778,0.03162174505733492,0.02778713499220414,0.059810931590481044,0.0003840695869438927,0.004423504599059886,-0.02078866263757688,0.0467794848167921,-0.011029483805980747,0.00023252459102030996,0.011498147313696175,0.01066061655155793,0.027966233271836883,-0.044331981465010654,8.323291149873187e-05,0.003369072929357614,-0.027663149556708583,0.08799863512392762,0.02574287623766086,9.223920341239795e-05,0.005060576055600927,-0.018177522000994945,0.16772122247806515,-0.03918754793825064,3.7165953076306665e-05,0.0016601119254399765,0.0038115578891414893,0.0030338450500817077,-0.024380101836272778,0.000968844126613524,0.0009000068672280642,-0.07919571590209398,0.16209757747069342,0.13948227298093913,0.00017083901194787877,0.00873754335732814,0.02861273318789993,0.017956280214191243,0.04491985934900051,0.0007788742198459062,0.01475870636670764,0.004230722974290307,0.05946375524118267,-0.007557140220456653,2.1202401100128546e-05,0.0008383049977705116,0.005216256877651351,0.016770037402749762,-0.0023346309886205807,9.240085226334679e-05,0.027693874525032414,-0.01098914995261619,0.052526263328537735,-0.030971942707379695,5.889106541659557e-05,0.001259779468943422,-0.011519363907836698,0.009517433402187718,-0.03519081230888075,0.002360650123936889,0.008211632767922515,-0.012607328672442646,0.08996782971765765,-0.025231716167005192,0.00011531556696561625,0.026375578195465446,0.014231700882796038,0.08203664864850131,-0.01773411869020314,0.000268631618635392,0.0011609576804704532,-0.0505797989252185,0.35008239257940965,0.05048864018278281,4.069750508189732e-05,0.007174914497898743,-0.031073508625775823,0.16222518973110497,0.012802320332456792,0.00031568853558739936,0.008735435301283297,-0.02621211723859193,0.3116056031751341,-0.022047299734106258,3.490816938488784e-05,0.011496469197339616,0.00782803582128971,0.09142438006025089,-0.09653639630945163,2.8607011416612927e-05,0.00806377807531075,-0.010395058721811703,0.029508934746012887,0.007125872353322665,0.00011347394947373933,0.013900568044897081,0.002891666452203256,0.017864439768720947,-0.05610771364014397,3.738963033733157e-05,0.012133834036014729,-0.01301459153748173,0.03740002519919067,-0.09929368004996406,7.715001766288689e-05,0.0015524589665373667,0.0033057327051464135,0.014543194004382698,-0.02948170711789485,0.00010393373451360873,0.006935425513741289,-0.01886139163804103,0.016498499039734115,-0.03402615084855436,0.0006534387095731799,0.04063530176400146,0.03154433120524512,0.12565055303108552,0.08163634175749358,0.00010566786403442752,0.015140800662297872,-0.006329493725414036,0.019571063588087297,-0.09212917336009542,0.002075743661167715,0.0004172148159319465,-0.04075686016628107,0.39725112692085585,0.013181723234725608,2.638261116666743e-05,0.01300214624495259,-0.008114055756927068,0.02144402255555105,-0.013598576646339669,0.0012370948590227136,0.009294470719760558,0.031938137813375206,0.21182622983156024,0.1185789473693817,0.00010040503624357724,0.009311345816309225,0.018453353579737496,0.030371993293671542,0.012716786214560771,0.0001433994198099172,0.006508364115763154,0.0256910624195091,0.036230993975190584,-0.025128946040787647,0.00040701060878181534,0.03125320475702513,-0.04040811445225438,0.14561091883357724,0.03929988103769038,0.002150923598612268,0.005863511205987929,-0.004063870665570231,0.017245962729971847,-0.05743656370277437,7.560365733991617e-05,0.00269878525294691,0.05376140516700506,0.07618359845360627,0.056916718102458075,0.001754229140050999,0.0036101712210547107,0.07510188078111518,0.2025219729118188,0.31754616753472825,0.00014692466196859294,0.019831938786081364,-0.0208139824737065,0.051812432203414714,-0.006970294727208492,0.00016284768195418833,0.014805547776719075,0.005572962015291238,0.02305908595852212,-0.04040204970715503,5.898721876213591e-05,0.00682067617981078,-0.016916372722661163,0.0651592739301315,-0.0311216121230456,0.002460645595247812,0.008307039858397716,-0.04783529204981927,0.24391755976763532,0.04547344480653862,9.755419149977357e-05,0.0018435586914728342,-0.033317590151568516,0.18299816520885137,0.0335870783902871,0.00013203456243456258,0.01660361510883775,-0.013995557263500314,0.08584739394148352,-0.04503056362677843,7.711019091467274e-05,0.0026679572771544967,0.010788889336654547,0.04827321603405733,-0.051599647843478404,5.617174301104353e-05,0.009035819315057945,0.03027755497383001,0.07097182659994367,-0.03260214762187377,0.00020800042033979673,0.01871816933740191,-0.005498198720177036,0.019333887376777974,-0.001312615625894694,7.071566403710924e-05,0.007306755542590414,0.021471277465942323,0.2385248550790581,0.036367680818420255,2.3224989644233014e-05,0.017685615860714914,0.01503610586261751,0.049194289846374376,0.0008359705261688709,0.00010683895799157933,0.012009265349298803,0.013026980812238655,0.044549881884501596,0.004756753371933418,0.00046091961181609996,0.0016010737199052124,0.00453708786191753,0.023612842642715334,-0.019956103491532363,0.00011005270271962578,0.009365616245426723,-0.0015862277340003613 +2022-08-02,0.04165073160571324,0.2590954323674747,-0.13540510423507296,0.00017000021138945446,0.001877303698795885,-0.0025808631007791668,0.007553165227602038,9.575873763915497e-05,8.198728592206936e-05,0.006987498063080537,-0.0017268215991621866,0.005501425845621906,-0.002886415578360905,0.00014520093510607122,0.01684761994069959,0.00790373182683738,0.008476372782777129,0.0007423719384781357,0.0003146951170328308,0.020106776486832564,0.0359459139913271,0.07818413652101217,0.054301095286979455,0.0002405629046840568,0.010766795618838912,-0.007543811215322927,0.021402856359021987,-0.0037389124907516295,7.696013389313465e-05,0.0005843531869173843,0.02915775587065529,0.11372288442952219,0.014178116228161142,7.523086999248102e-05,0.01156011997330532,-0.009068088780908234,0.08390998442822181,-0.010602306581270536,3.705960084779844e-05,0.020625485179847067,0.0064911846826999405,0.005422893541993666,-0.024599101662905788,0.0009230764547360009,0.015003409310963996,-0.00048541053783798696,0.0011702449475738117,-0.07381340000319436,0.00014504217774073867,0.0038278133473338073,-0.020948416411509567,0.01528259666056162,0.02427887572556402,0.0006700055575879275,0.0030675614319635876,0.02319401226353495,0.3566674545662182,0.059934712338729504,1.9379170759811834e-05,0.0052542482974716085,0.026641825863328528,0.08267479213745067,-0.07549046421201329,9.5728644961293e-05,0.03157390478226665,-0.006480958825507606,0.03135954523516229,-0.04580514466001294,5.8174321213933675e-05,0.0008382917803807058,-0.006923953894064031,0.006844507402417834,-0.02180001391746653,0.001973035695062252,0.01188128368915024,-0.04845120317337113,0.3133304864546801,-0.10564784847134057,0.0001272488953866983,0.015098323064319024,0.05118162753841855,0.3109311814919529,0.020574515373529303,0.0002548930809995144,0.005648652387486728,-0.0035677830393229014,0.022889064649214336,-0.0020586178126633815,4.3906755580312804e-05,0.004348198049121935,0.04879757962077725,0.2735227992241583,0.06808705430199725,0.0002940299407779423,0.007056042786299256,0.01655714226504185,0.21825281605811253,-0.004098561061965542,3.148152454922984e-05,0.02434085651082256,-0.0026616854391045375,0.028084116223660943,-0.017043844496507168,3.1664867580799276e-05,0.003618788259720196,0.01869094872595727,0.05546027877976306,-0.038711415592429015,0.00010856055467453798,0.002283253187861496,0.02438579291215955,0.17517377909794268,0.01587360579180616,3.215586214874035e-05,0.02392552112023303,-0.006304486438544436,0.01754891784591012,0.011294037243216171,7.964834503852648e-05,0.00282371857133864,-0.0026493998668860887,0.011643574188678679,-0.009364862396827768,0.00010404226328826039,0.00029445154679964467,-0.0014577146804392992,0.0014277682992831935,-0.007105475413204705,0.0005835665011039788,0.0022894604126323303,-0.0034475206661470467,0.0159237575767619,-0.001190426871527636,9.11270539213741e-05,0.0058165381457135935,0.03841731898100736,0.11811474869468325,0.010298677992702527,0.002087575051647251,0.004562841356480869,0.06486597662096989,0.5851955728324759,0.057869686768628366,2.8503495631479236e-05,0.0006078402181031374,0.03663363255499382,0.10838094169928922,0.04184559197940119,0.0011050917446024943,0.007303026610350489,0.0029906598957511483,0.02316936808064105,0.00029146871141415097,8.595645203971916e-05,0.007406677451695676,-0.026127990195831872,0.03999821433384127,0.023698165964804542,0.00015417387477150053,0.01217980963641169,0.01182355847938566,0.01452103849370497,-0.046859238528413734,0.0004673631221207723,0.015261411521827526,-0.044986839056342716,0.21286838610547773,0.041394570167400196,0.001638040565634193,0.013215832042227134,-0.011552955311161682,0.043290217132781895,-0.00022886943643714153,8.56236426112004e-05,0.0007948198159609607,-0.05931087860147405,0.08464596474529207,0.05459882078473029,0.00174182809037049,0.01501978729716112,0.05006260441891344,0.18115270119399096,0.04435915772324258,0.0001094925730041638,0.014817836968605448,0.0035843596725127626,0.009497879891009845,-0.007830034404651635,0.00015298374400346684,0.0038290753560577635,-0.009642994277512435,0.041027617950451886,-0.0023212866295655547,5.736533463718335e-05,0.005139367600122665,0.0022744152520379466,0.007350238137402371,-0.04936646344918414,0.0029328267388759755,0.017293176806084467,0.015316491890027498,0.07390732368315124,0.0012238882720174075,0.00010308901737176549,0.006916931696895115,0.015961010182870515,0.11399074436088362,0.0020020312844626705,0.0001015433692680487,0.008839710127035187,0.022094837131432295,0.10016520279659148,0.027019669201639528,0.00010433322422738773,0.01967745508163149,-0.0008229361717582923,0.004468869901401968,-0.009008306133188945,4.6282396143605436e-05,0.004814577519534734,-0.02711836229932407,0.05943877062506763,0.015410549375223084,0.000222445197702194,0.0031922240077771075,-0.0012062363168093323,0.004960528583792031,-7.282616428629512e-05,6.046705529410417e-05,0.00026371126187684976,-0.03772785068983129,0.3439826518270224,0.04009975782058229,2.829806956724741e-05,0.0017068234216321317,0.014190453411516918,0.04777174418318621,0.005951719423059951,0.00010383269795936435,0.012336876679974008,-0.005111069331909616,0.017649289080808112,6.665128080504845e-05,0.0004564703009865994,0.0014275714314737876,0.015949007483870247,0.0693484598224848,0.00551187191910644,0.00013172513054929212,0.02392341120381768,0.0047398790179501975 +2022-08-03,0.008569203073002914,0.06754877756418541,-0.05967429478416561,0.0001341558220591932,0.011202508051449598,-0.023895361915607115,0.0783222639422074,-0.02747019672312009,7.320469015491923e-05,0.016483674835272952,0.00467417691934522,0.017281036855730764,-0.00013649053264033493,0.00012512167644157575,0.018059694302161856,-0.010660509378660381,0.010250805669534992,0.013591276469089262,0.00035098439870265324,0.012491967143369125,0.01565585331699614,0.03404893880999442,-0.0792250805481077,0.00024058632318700872,0.01363859431265915,0.022641751479930614,0.0640589123554194,0.06661657664439852,7.717509956118446e-05,0.010981309576596385,0.023147088387792385,0.07699448497273607,-0.015443798344387749,8.821178432206869e-05,0.0012419509840083118,-0.0045452969108589055,0.03563100520002034,-0.03553294815276343,4.374544086261678e-05,0.0007977447267361164,0.003520333028304963,0.002683839412476511,-0.0034107607679364784,0.001011514262196082,0.01373951642045834,-0.023833944817923492,0.046137468586541386,0.000921047401289058,0.00018063589423106393,0.017979769184627865,-0.010138012131050861,0.007275754503807925,0.006864412447908453,0.0006810815692515026,2.491802087096562e-05,-0.004474317113421747,0.06889077489252857,0.022418913505758316,1.9354790765318875e-05,0.007528098073714903,0.05273312803975634,0.13116253400539052,-0.06570724267430111,0.00011943311873504154,0.01214884822945182,-0.0021399788006539644,0.010715134327747507,0.0006861217800075617,5.621777714727859e-05,0.0018728934422038118,-0.01750054860315428,0.015970686726748902,0.008179619921243718,0.00213722893257672,0.01429552854534034,-0.0009160440823830641,0.0054161879168377535,-0.06451703241297475,0.00013917933507663751,0.00495385318176257,-0.045306985358658056,0.2118942365975074,0.03993426292151015,0.00033109624364356167,0.005867397730859991,0.012723193006445926,0.07442699736853875,-0.07588962721964243,4.81533573988231e-05,0.008445182623772028,0.045370692792375274,0.27468129213878406,0.0651002167856619,0.0002722282156640098,0.02211347559243441,0.039175728543891813,0.4689570599350305,0.014102710672373491,3.46668382902545e-05,0.004072023292570061,0.004821195982172276,0.05245420126956801,-0.014367138401835648,3.070833125177309e-05,0.011905260823403518,0.030491584962483904,0.07633577635550255,-0.028295727377471096,0.00012866920827888002,0.019150122709498712,0.02568536265024806,0.16517631955143192,0.03292379036615384,3.591950085691363e-05,0.013253831456966831,-0.003551485841292465,0.011072458762768349,0.0007623710318796146,7.111208272344136e-05,0.0003254424170657374,-0.0022213584231894627,0.007164979162643006,0.005518028475686177,0.00014175954247878133,0.006204757361852333,-0.04553536733273179,0.04156752032948663,0.033012613426110275,0.0006261383261169143,0.014378951783504524,0.04805331159870207,0.16233945430868016,0.1423596812834402,0.00012459059210268033,0.01829914032239429,-0.05282174314184085,0.18008761789292219,0.041047182219306165,0.0018825566341649233,0.014822555138087555,0.004358619438827299,0.04035071478568049,-0.015034257299094406,2.7776653058645203e-05,0.018834870184017548,0.02432269401900832,0.07338165367622915,0.014321558138578628,0.00108366601019157,0.011509028455206464,0.011327012752070074,0.07671310942979792,0.01155764971883434,9.832669602218008e-05,0.007991382460668158,0.0039908368498532965,0.005333540430968838,-0.005717095559482733,0.00017660124801164516,0.0009241166739067581,-0.0219262220074643,0.030310858833431584,0.016318989773576903,0.0004152116008254782,0.005882318786906732,-0.005233891376945671,0.019359429374698988,-0.004109614875801747,0.002095475049443515,0.0205217562748186,0.01054851512898637,0.03280373720194602,-0.010995740034787902,0.00010317117495545252,0.01994779038276016,-0.03273611594264769,0.04843196568687619,-0.009946446037803697,0.0016802435853418775,0.010055525983538932,0.0028149653709278917,0.008574505877589966,-0.015681409261219945,0.00013007085372219394,0.005370713670062913,0.009496197459856623,0.021676761943289453,-0.010747571187205448,0.0001775888539225595,0.011352706161534715,-0.04320276795133169,0.18792964835810808,0.04718598073835991,5.610869868619357e-05,0.012942739859733918,-0.030821912761114685,0.10466643715677318,-0.017592879119580736,0.0027910666263633566,0.03454509771542848,0.028217854751724235,0.14773416894151226,0.0036467967512023524,9.501312687190792e-05,0.004948462189549722,0.025185535704902937,0.13641429315462614,0.0230643906847382,0.00013389122044765774,0.024610330829527002,-0.0035640271435410905,0.023860403538127718,-0.045358393364223294,7.064995951218277e-05,0.026382518922052435,-0.02955249167802968,0.11108606444978361,-0.011893587881023805,6.686239328013412e-05,0.01886740168519723,-0.02520804443237375,0.03889679854895763,0.014722167520816362,0.00031597643299784985,0.009279949527641395,-0.01195542082049637,0.04709367260167248,0.007683426071676675,6.312722274680747e-05,0.009797819623699262,-0.021697680184803496,0.23814497244941923,-0.10912423017442167,2.3507322831279206e-05,0.0035146311321392937,-0.015061530845761539,0.045463419957757635,0.05013706391879283,0.00011580197809744907,0.0012581306628013447,-0.00726701646003762,0.02970123847657455,-3.450919205978198e-05,0.0003856644037469216,0.0006658003997643703,-0.0470803266706541,0.2467493085841664,0.05143678759025266,0.00010928368206593816,0.0007732595420432649,-0.001176024885061498 +2022-08-04,0.02259969987433459,0.1396861818074659,-0.004444346526452771,0.00017109440553624984,0.021237839516224846,-0.058252552605679075,0.18788299536347064,0.009147601605251453,7.439401739417832e-05,0.007878606914600685,-0.0633710722093052,0.2024425722092434,0.12328836930319835,0.00014480595194369108,0.00526807361259523,0.012186630122285458,0.011720726639973688,-0.03363657001432486,0.0003509109733090898,0.014573660851596261,-0.02685497838538753,0.06111675941908226,-0.03135958652480185,0.00022991232897279866,0.009731913800796771,-0.008184785784232547,0.02194992159544358,-0.15498863104212185,8.141812260169897e-05,0.0041718499781493844,0.004193004062164409,0.01525588950310866,-0.003281193105424703,8.064502926564978e-05,0.0014679898598241791,-0.03662454509597615,0.379373055899951,0.051213214073208724,3.3105821625939874e-05,0.006379702578424734,0.00552909622080816,0.004698505979079966,-0.006771493608302537,0.0009074843635589998,0.0105889858212782,-0.034726443904634335,0.08165624611997171,0.0013939740173364809,0.0001487074710918005,0.004965078673448215,0.04403064805430968,0.03159081507640499,0.09033793881983712,0.0006812689638559773,0.008642779768643494,-0.019072968914942597,0.27130888139449205,0.10592030859298202,2.0949664851739562e-05,0.006269411057686758,0.0068879338119537045,0.017627046601700808,-0.05020939408862208,0.00011608081547589375,0.007491464361382079,-0.007479331030773391,0.03737021861289004,-0.004467605940923721,5.6337676950256674e-05,0.003844185229313897,0.03041260052327021,0.022826189408216842,0.03148478025026143,0.002598622014737036,0.008218275104028212,0.033786795041865714,0.2159970689097068,0.0335040993566073,0.00012872154602496248,0.011815455916268466,0.0409324079411508,0.219358580617113,0.030370450613737297,0.00028894880211345636,0.009133212218391806,-0.015256079988179962,0.0880616571068276,-0.005117035106763446,4.8799689587919913e-05,0.010313351121937861,-0.016893899954780116,0.09083837144196819,-0.026919456868467643,0.0003065119322324661,0.005496984859432021,-0.024945817783395944,0.3451308672715659,0.0008097315326706415,2.9994675939399784e-05,0.039039611908692526,-0.01814466592983441,0.19711151047552775,0.07816861772667474,3.075521020711135e-05,0.004758348565544026,-0.07468853275979062,0.2121314540843803,0.19290970514014508,0.00011341529188203185,0.021149179359207227,0.05520899338720335,0.3877983027757801,0.08038953764991584,3.288488298833744e-05,0.015593577338175265,-0.009504563023436623,0.02536546285642069,-0.03484664367189975,8.307431052937317e-05,0.00377315813478741,-0.012278061544801497,0.04253359030790862,0.05753208283588848,0.00013199161964674576,0.00012635775892188943,0.031538186679201524,0.032722425772023424,0.010283174203198495,0.0005508924110194352,0.002200419764953274,0.0052484446827928905,0.01936246977138544,-0.0073450600267723955,0.00011409218055412369,0.015614623626925912,-0.02653737766362756,0.09449107506322005,-0.02134603785959207,0.0018025461375234765,0.020450877598058484,0.002242213433200168,0.02093840391185669,-0.018396979686972487,2.753693326688195e-05,0.023157444377102737,0.02158708565284152,0.06378084837069335,-0.04870424996060648,0.00110656006519254,0.027880656169694016,0.021983233704770365,0.1787930159363155,0.023873308535072076,8.187789520117212e-05,0.007330045496996896,-0.0223500923973733,0.03313148577033273,-0.011848808657997872,0.00015921493249938253,0.004764593957967293,-0.004281101245482802,0.006816417102874902,-0.0021135584617770417,0.0003604983282692729,0.008782480639137492,0.029081012114764278,0.10484723336022128,0.015839974408355762,0.002149823883665799,0.006002726936913016,0.014178046579992644,0.0632051200869982,-0.021599545673350706,7.197049810555775e-05,0.036714500766317555,-0.03681392809434619,0.052649464730133044,0.01649161693331832,0.001738182572688066,0.0046965945380407995,-0.006546553978883524,0.021441231050052936,-0.018878746243544228,0.00012097038779562252,0.013764586476816613,0.0567776575875074,0.13754003263900896,0.0709730971900032,0.00016734345235229869,0.009751815680753595,-0.01205646642468183,0.05112240527461255,-0.21511390441064515,5.7560252074676865e-05,0.01498453311539364,0.04317628889650263,0.15861560052074214,0.047192704562374496,0.002579986711725739,0.02440748968417949,-0.02566852430244874,0.14261508029480763,-0.0216281714828659,8.953153315296455e-05,0.01960705011510223,-0.025462163955392757,0.1397573786199661,0.022638960554933155,0.00013212388903720274,0.004755823367340489,-0.038986178694522346,0.2554775052219004,0.03698852780159068,7.217830868265402e-05,0.00916920883469668,-0.02750083098890133,0.13099111479288,0.041621497187027776,5.2765659881410216e-05,0.004398961789981198,-0.01848721511110553,0.03590075716333606,0.0005830984143005005,0.00025107142094666046,0.019388905002253765,0.0005160188291391005,0.002423129376685092,-0.07958576162864177,5.295455491145111e-05,0.002589933142536243,0.026299390416052375,0.28843894791911334,0.03967570200740368,2.3524644269493926e-05,0.006846306808507835,0.02245976007077757,0.06657673368550907,-0.04427727412374607,0.00011792111924370912,0.0002714970268526195,-0.0234080488460559,0.10255306565277703,0.036261338836180906,0.00035978623070266196,0.002912313938733495,-0.02601185884652572,0.12405325286784859,0.009326095541935909,0.0001200977933930197,0.025215423138823023,-0.0038245799475503293 +2022-08-05,-0.016495180422766702,0.11821075753431573,0.0032647302869372244,0.0001475661183876285,0.008698274025036744,-0.016122305113414608,0.05360010603791411,-0.03974244917671797,7.21725439416793e-05,0.007203062930639981,0.012323867523515383,0.040049897792988357,-0.04612902938299172,0.00014234519561574815,0.0016229639728884613,-0.014422193519692246,0.015367576533429036,-0.014428346910506274,0.0003167333471794068,0.008868452256778726,-0.005031948169400431,0.012054562625240444,-0.014736845239562979,0.00021841500651029785,0.030797498118768554,0.013343262494713144,0.037752349930422376,-0.023325138099899494,7.717289275645548e-05,0.0035882546297502545,0.000465064622790801,0.001453082450852237,-0.06519715391850231,9.391022945511401e-05,0.006619428370034822,-0.03655602915504104,0.2947844963509732,0.022587711911655213,4.2525848792153e-05,0.030987755428293788,-0.003231803321442844,0.0024244907012855796,-0.014691039310151834,0.0010279433629155066,0.010313884459817652,0.02165292752039604,0.04350992331905029,0.006407352469607123,0.00017401640432731084,0.004361961088560443,0.00667785330192495,0.00462032963941477,-0.008132398968287583,0.0007064611288974715,0.005139118618084729,-0.01984409924983606,0.27293507668659867,0.09053717029132985,2.166680259960038e-05,0.010071229962977183,-0.05006775808673675,0.15801628832923126,0.028622275015717527,9.412550660200162e-05,0.01573452803659578,0.01138528570896376,0.06743813366948619,0.021378839061703056,4.7522601731003244e-05,0.004775354828457399,0.047965233047052046,0.03823855656742853,0.0890761099453426,0.0024465158929494594,0.01020833369434027,-0.020480536492683273,0.13354580877732736,-0.03810588544701753,0.00012620110980057143,0.018702569817762568,-0.033241050684263675,0.16306144523274427,-0.006834485019109351,0.0003156688202953061,0.0004797410242696411,0.012415592270163818,0.08085002011500829,-0.08567683336836622,4.325619013676565e-05,0.009360076381700402,0.10735673778210589,0.659798193821633,0.20186263435017812,0.0002681667887035622,0.02026276187258653,0.021658737393247834,0.2807739084946003,0.004825162506141291,3.201154381396152e-05,0.022566586669080794,-0.011112332314141831,0.11770152019021157,0.02903729568674435,3.154313520523281e-05,0.0019663011042864134,-0.022101035084588203,0.06275719491270962,0.019457735411225436,0.0001134414701995534,0.015941290148126223,-0.04769885149738287,0.3156176816351472,0.038158038070832435,3.4909125763362934e-05,0.011064507799543346,0.01776110730063601,0.04800732643224062,0.06344933310895988,8.20238027300592e-05,0.003423697944813159,-0.01827402559838451,0.06881353976323122,0.03601750817267059,0.0001214252275607913,0.0011150546052819787,0.10337163600431162,0.11063591894564903,0.24806499210247687,0.0005340486278755315,0.024423116928271878,-0.026668229654379854,0.10380124628113455,0.005420150516420906,0.00010813782434115367,0.0008604769162503384,0.03425356605761635,0.10635411933935793,0.0007966898792490539,0.0020671436156237907,0.034592720600726864,-0.008661766135238325,0.09191654527145147,-0.03215114553769066,2.423231781158767e-05,0.008893921748020981,0.0655280639927249,0.18743499407389516,0.07656995128090797,0.0011430044731407232,0.026106920502923722,0.025481477358168,0.20532104784146732,0.050483735789106414,8.264503635654437e-05,0.007367715607305053,0.05660297934700693,0.09204412181053474,0.14737077371105078,0.00014514050139699815,0.008093915644053927,-0.03938341930229534,0.052643127045829505,-0.06763263318474855,0.00042941346091995776,0.0008270212959208584,-0.00816348231454937,0.03111661937573829,-0.0046940231677244275,0.0020334494931544536,0.012859834534907534,0.006261603637876702,0.019611313393751433,0.002009538986044346,0.00010243992778999568,0.010642905334365139,0.061661062067763964,0.08253176577477148,0.043031655880561286,0.0018572358392368443,0.01671613041887917,0.027034988768045852,0.06971323387042733,0.012801160839557098,0.00015364803153281858,0.009117631107131862,-0.012013555604051342,0.03509898009210447,0.0017166709177870937,0.00013875142178379845,0.024023517337442703,-0.008161584659498334,0.03515528905845568,-0.03780583182741998,5.6662762200603455e-05,0.005768117735742132,0.01182652471388502,0.03529006494700275,-0.002380037272340819,0.0031763089914839276,0.018853261306486777,-0.021993859084950045,0.09193091778290957,-0.004269119971525618,0.00011900916635620453,0.0012372559679022887,-0.0028383096373665157,0.016760458799017157,-0.027239937417583827,0.00012281026074625247,0.003290723006268438,0.025676776772013535,0.1567778019629311,0.03252479254332811,7.746484083452487e-05,0.002652984205967089,0.011925942937428442,0.052564887004258244,-0.001130657993826225,5.7022254848292626e-05,0.004707651393885615,0.02957814291570185,0.06582330866703281,-0.022043258718185986,0.00021908900772561006,0.011110343935513913,-0.0006211728987471609,0.002656138132957296,-0.011433920297195433,5.815354827212399e-05,0.0029258245743455005,-0.013634352339683565,0.11665354735433428,-0.02216421027937727,3.0155591281896453e-05,0.0007523308957062703,-0.006905980622215258,0.021811319519077575,-0.0005824109675856548,0.00011067572614528029,0.0010208067958189723,0.01670398570825463,0.0661681700258511,0.011972611409201611,0.00039792292187091765,0.007882924336104553,0.05877520887736925,0.284912507361514,0.07470158325182603,0.00011815564150847446,0.0011760979809036435,0.007382276763903032 +2022-08-08,-0.01948707256794044,0.14861948232462013,0.03744913461605368,0.000138661994296644,0.011643098950288411,0.010408116618333324,0.036879052156074704,0.015621346623807918,6.771781329902855e-05,0.00874811545638809,0.0021627394589337507,0.008622814451523986,-0.02190777368633043,0.00011602521117843843,0.004782973147607648,0.016361984521445053,0.018013557684988114,0.004862604095114831,0.0003065521307760157,0.005337784108547047,0.027742651745798572,0.05808013488731028,0.04665274430530482,0.0002499298486486527,0.0034742365258143004,0.013962043874029774,0.04125218696229538,-0.04725693914476017,7.390073551334009e-05,0.001408016636025566,0.006053037958573293,0.02028845670701952,-0.006664713748150168,8.754155163165874e-05,0.030522334873695295,0.021638834866295965,0.18153240229837259,0.0014057723459639782,4.087693573519356e-05,0.004762230917146073,0.005531761518859486,0.004987812891089357,-0.0067901450592355245,0.0008552598451219957,0.014275790868503243,-0.0028435804097813673,0.008553708236255989,0.002026390472156242,0.00011624464818310977,0.00046567804834754534,-0.011046669439089505,0.007537194839175902,-0.014351185105610943,0.0007163841599122313,0.002015752382238631,0.010358643590350068,0.11885999205066138,-0.003667976033700445,2.5971078390993857e-05,0.0011482450871017473,0.02054480190938365,0.06699729722717296,0.007805680272639646,9.109524602707935e-05,0.02016964164831441,0.01393502694798629,0.06834091373390576,-0.07147689961149199,5.739695461928761e-05,0.0011191863233547847,0.005131743293287319,0.004664101886874921,-0.009501739371659152,0.002145951325163398,0.003327044279417685,-0.0026777371030827016,0.02102780643038981,-0.07207303322531358,0.00010479150400212231,0.017399387067563856,-0.04223309721028621,0.2462724765571532,0.04880395969885534,0.0002655493766101442,0.022306625011993608,-0.0078114294121060576,0.05148562435895047,0.0006983370694410406,4.273714289042332e-05,0.03051139689835999,0.03418911320748947,0.18383439535803142,0.01866711146550161,0.00030651227582446667,0.009667799133866655,0.004176142284594305,0.053503515124518536,9.056289243546633e-06,3.239091397169172e-05,0.008491532256701908,0.013537310600438363,0.1420765560251658,0.002994094572042937,3.183403441319768e-05,0.006517436507451417,0.00010892937896823105,0.000395156781986322,-0.011343801806736113,8.879701021894759e-05,0.013083311441407596,0.03445876120870138,0.2358790736803214,0.028085165851940243,3.3744470904125624e-05,0.002062312592655512,-0.007064564664058163,0.024261159678260317,0.008017115918330242,6.455817292167406e-05,0.0015367100356661377,-0.011284351969441504,0.038065706774139625,1.5413469244541504e-05,0.000135547440549979,0.005587180055175185,-0.00891925306010661,0.007757923626006197,0.002860929654010326,0.0006571409747522509,0.003429375962278249,0.020496951153195803,0.07002770765411341,0.012383412652156103,0.00012319848441826384,0.022186161044674364,-0.03483679793909929,0.09933681292516286,0.026552217275150652,0.0022508532553538294,0.005158236736444006,-0.02529400790080922,0.23104242836740918,0.0065307517504820155,2.8151925504907e-05,0.007903349220515048,0.05007220300692294,0.1392759769224428,-0.02783601860232786,0.0011754164263869493,0.03142585800584545,-0.007805722534218155,0.055123346484287426,0.003063188003800955,9.429815108079441e-05,0.0070195170654328365,0.02457044307778637,0.039550398272557914,0.004829574681522896,0.00014662482718094674,0.0007407685067214182,-0.002692855252021539,0.0037225217514592073,0.0020049755688655558,0.00041522135302319945,0.02113012945526991,0.00676474179985926,0.020403331428665638,-0.030092612896988592,0.0025698068463015614,0.002213160013261853,0.008005751791764638,0.029803476905761545,-0.007211293623897241,8.618378419079096e-05,0.0070700722558074535,0.05969847484150377,0.07183545713830261,0.014109220597428716,0.002065863240760799,0.010410628616424703,-0.006400263880916912,0.018277198746536445,0.009117437022444186,0.00013874082808798766,0.010760138923174185,-0.0433966903966016,0.12339758029345795,0.06154929311605046,0.00014256415430217865,0.013434489975216495,0.038151251046669214,0.16154033110461263,0.08121615896130321,5.7642358233330886e-05,0.011728076687949047,0.03644445280488165,0.10218819305521133,0.03012125856442202,0.0033802496154346218,0.02497159024256469,-0.07787251375222824,0.40040276685737164,0.13133710220435926,9.67448142115475e-05,0.01927509784572198,-0.013986767982682642,0.08087884557561674,0.004190979556584441,0.00012541318905271933,0.008524150846439062,0.03668320674543093,0.19040402119551017,0.045139511786969705,9.112548988907286e-05,0.028554218866603413,-0.001514531175021294,0.00781605403237495,-0.06872413335583684,4.8701020215954785e-05,0.005010182426072668,0.037743898550899595,0.06895242208612715,-0.006384652907737096,0.00026688651094325757,0.02667173495965338,0.006920725001386424,0.025349092932852924,-0.03316211337336381,6.788964613306746e-05,0.008220539003573389,-0.027754450548014516,0.29648102478170557,-0.12260660555922138,2.415277393241337e-05,0.010662537605987985,-0.033201385737494676,0.10520268865643635,0.14725493261837658,0.00011031595670884384,0.00638348664028083,0.012642753038281659,0.05333107615584003,-0.004673838981207747,0.0003736709001246098,0.01771797091415557,0.01299209468248029,0.06390925251946557,-0.08608755374501377,0.00011643598857719706,0.013500718721019099,0.0038961490414131336 +2022-08-09,0.01094112564252735,0.07694035800096466,-0.07603275260645077,0.0001503814910079415,0.000532063678002856,0.003966296056732318,0.013363287532501477,-0.06068533500521803,7.121678133587747e-05,0.004165131752908627,-0.020186127686839323,0.056246306083238676,-0.05447611722644327,0.000166018396413674,0.021562804624547266,0.0013920267677261279,0.0014671475718989492,-0.0454306425836083,0.0003202149791264532,0.004286883464052815,-0.015558589913968622,0.0340743736387824,-0.008028026053754155,0.00023891318886336328,0.00320102096734836,0.00252409717725674,0.007288694723954457,-0.003931112583935655,7.561414575822404e-05,0.009062196937862537,-0.00021970013789770877,0.00065034716584795,-0.12112918781180894,9.912311299406372e-05,0.007109460688275173,-0.040875456236880596,0.3574401582377259,0.053485782580161255,3.9215511491394266e-05,0.003202289828217444,-0.011238786023669468,0.009404591604794225,-0.0019913213477009274,0.000921561341605802,0.006155942425012626,-0.006324020193502548,0.014243994683485889,-0.0004399720783000508,0.0001552470410770419,0.004283954807707919,0.004852126513760075,0.0035439724844730834,-0.005049179005781649,0.0006692157183310735,0.005887198845226349,-0.005959752858659151,0.07136673839771683,0.006383308883808341,2.4886005396203316e-05,0.0006434965922642912,-0.009427002860466225,0.028164579360268147,-0.13119178284021057,9.943090843989366e-05,0.0014073640820370951,0.008102790419685977,0.041364689651073254,-0.007471641560028931,5.513998631657125e-05,0.003003697654702763,-0.016233006453430857,0.012489566825042627,0.01218939807793073,0.002534980120154629,0.002551273045286636,-0.07943040358625116,0.5317975535016579,0.07469445739503744,0.00012291150654535554,0.01816390145562171,-0.009336688130615214,0.04941418625433307,-0.006561171522442268,0.00029258323439413557,0.006451055579881787,0.0015066454259405468,0.009133039194492012,-0.005491459232789691,4.64682901025216e-05,0.009528067943388764,0.03150045209372985,0.16626862716067,0.014362341740445608,0.0003122434115217612,0.025292216731814313,-0.07900327556457104,0.9845897878196367,0.0831990692979147,3.3298142099064014e-05,0.006548690488715784,-0.0066909703642263505,0.07413767934954912,-0.1357496322358786,3.0153090259089642e-05,0.009180792780721385,-0.014340365740519988,0.04780857640299111,0.00569983910946834,9.662225562001e-05,0.005309154378840207,0.009786323828259367,0.06900204640461126,-0.044126673030590716,3.276045973123025e-05,0.0027832726138757305,-9.495218675946912e-05,0.0002282008560761655,-0.0037541602458685277,9.224972581850266e-05,0.004956700721496522,-0.013703835331298937,0.049990228874811436,0.037213425064803254,0.00012534459224255724,0.009094905949332141,0.05360617393394698,0.045972769276264806,0.04051588067840433,0.0006664839682775541,0.012711045003638115,0.03013963991641388,0.11189339168761964,0.038723575763574394,0.00011337560829683218,0.014511308631333689,-0.0023054044437637988,0.008092864344775857,-0.08640693147133191,0.0018283698030703804,0.004343682713140638,-0.005928485650626859,0.05256194564561885,-0.012979404939369592,2.900377554365746e-05,0.011222943331403792,-0.008097752528059362,0.023714075183330404,0.0024598876840903187,0.0011164250633833037,0.024804315765816338,-0.0002586259060680116,0.0020031876526033113,-0.009501098591632043,8.597576203404264e-05,0.009194479836970066,0.022027910527621968,0.03448516255422325,-0.004699397905576539,0.00015076009852705476,0.016854888641665695,-0.01452886782538223,0.020431098269748878,-0.018461486012282133,0.0004081727185519462,0.016202933609552196,-0.035562635228421714,0.1464955524674981,0.007815530423742514,0.0018815676448668541,0.012202492292556565,-0.027591823824984197,0.11676397488793216,-0.06466271297790306,7.581618161158626e-05,0.005712430823065762,0.04210489368188425,0.05111333830131031,0.009012615916683408,0.002047743332136069,0.004783725396361512,-0.04652995785949094,0.1450192435977902,0.10471872334999302,0.0001271226858694498,0.001246095234101752,0.04606423541254605,0.1287460036730103,0.03953601230358233,0.0001450408999674207,0.021710261600618806,0.014175324714257984,0.0677749105020769,-0.009402900457400377,5.104791263352698e-05,0.004611629977480818,0.04367175895707079,0.15303971169507893,-0.02198351294142288,0.002704671989393108,0.028566654624983055,-0.0015627329499055946,0.008385657669976617,-0.020790182418800658,9.270180936952057e-05,0.025249161435820393,-0.015237961435211859,0.07445150169122697,-0.05560310405021189,0.00014842743848189106,0.012168523433956356,-0.016845145693824382,0.11527197756036876,-0.08432450749302385,6.91193629073654e-05,0.005948110133698169,-0.03164248334483338,0.15719942905209225,0.057519943576582355,5.059026924113809e-05,0.009484131664997788,0.009284414215845083,0.016771195786886333,-0.10445038593411957,0.0002699105579933669,0.025362018437524596,-0.008704569566654233,0.033841111914645276,-0.04404054427179527,6.396126614079425e-05,0.006566196296057782,0.020507505952187862,0.20251405438342554,0.013540382534259984,2.6126964989126797e-05,0.0068510293933517616,0.008912345871109641,0.029163428545806665,0.002433802336598032,0.00010682242115889098,0.012704015109964124,0.023504433058728607,0.1099646275355292,0.03562679796105497,0.0003369184108401451,0.0148968386559063,0.001998831548474117,0.010490019950256155,-0.16583613624809998,0.00010913691601084085,0.005938834698875598,-0.0029531305330168693 +2022-08-10,0.023192588688529775,0.15522658085926622,-0.017647126657978626,0.00015800459551081658,0.006173490825386931,0.03460387700123384,0.12184320402336568,0.0851398682123301,6.814499679292118e-05,0.0010900829015315255,0.004717601875653207,0.013590751797543179,-0.018379463112149188,0.00016057392038997683,0.015427875852325324,0.007318347552381601,0.007151906570391952,-0.12574251757373608,0.0003453496772395799,0.01207764242502836,0.020947351407517443,0.058161430861144586,-0.03339215602438125,0.00018844811965278556,0.013817604855478833,0.001245938231424177,0.0037194146729064197,-0.17443095024708624,7.314230661177168e-05,0.0004106120277442898,-0.0410332587453542,0.17682397917019513,0.019519507160961968,6.809021483721942e-05,0.004528698953465499,0.05982156569950989,0.5431283686879681,0.04159952961754921,3.777060163300613e-05,0.007763394387934787,-0.01851844529192677,0.015077017454902796,-0.12563579729386076,0.0009471829501164898,0.001920755987817263,-0.019647983095018202,0.04635175842590087,-0.0345944745878542,0.00014822233403670375,0.008570769984583186,0.012476157131671408,0.010116567398862467,-0.03802088805063028,0.000602798294475585,0.00929878291874731,0.0038023141504975795,0.054564604981814,-9.23946626219205e-05,2.0766330888235713e-05,0.00015183288687461646,-0.01011921498296504,0.023812641532734703,-0.024028675067120073,0.000126238052557856,0.000562546539872146,-0.03352157903747374,0.22756136078870923,0.16137130427048935,4.146558187808835e-05,0.003289356435416086,0.003663984250932571,0.0028161854408659285,-0.05345881004113667,0.002537554169048191,0.006742533102467797,-0.014994078000178913,0.11330366033110072,-0.0013025128684894108,0.0001089000134328082,0.012216538900947387,0.04967580213565711,0.325003903357173,0.043773648664604224,0.0002366816256249272,0.007116010042148232,0.004283431341769936,0.02577313146724305,-0.016503342443850606,4.6815059209580244e-05,0.021629366053812677,-0.00037060470123509177,0.0021878304078528942,-0.03639550257481715,0.0002791798550871166,0.02695018235600407,-0.03744617473939385,0.45254608434223176,-0.04348916304314784,3.4337990751674366e-05,0.01484873471127771,-0.01419837328736279,0.1399710765432529,0.001021999737661718,3.3890813703474456e-05,0.002949319344187921,-0.0465558990109893,0.11918999165853927,0.022281407859517374,0.00012582231858841115,0.012162466581697479,0.014653902210863271,0.11047734889767694,-0.006991811210247296,3.06388472267512e-05,0.0032549412743634095,0.005861524276588501,0.01652318160012357,0.007413619887566798,7.864919363220745e-05,0.010237355598817319,0.017420961970180372,0.060543785273282746,-0.0023243344956096943,0.00013156826819259103,0.008884980885890844,0.04531149986515273,0.04259065660241837,0.02014114549162891,0.0006080925238028206,0.02362734134168428,0.004043424288891057,0.013326699224156179,-0.08497916435981172,0.00012770641944751936,0.00038502812981066107,-0.05379769572370537,0.19430665250159077,0.06333910771493242,0.0017770317162001856,0.020312904852771332,0.015011993946646637,0.14864110983727996,-0.004308153162722646,2.597057926681053e-05,0.0320779009773837,-0.015438005266652871,0.04514663671464659,0.004379169135181478,0.0011179877689004168,0.049185430164962386,-0.005843008378062754,0.03791230250972075,-0.0147907313461601,0.00010263181073615349,0.01571047860203668,-0.01719446504034419,0.02545789090557855,-0.09277323356411014,0.00015940855817085338,0.011044612419805647,0.0175609168973285,0.026252364594443207,-0.01479031089895157,0.00038395707486138465,0.008885609799196009,-0.0059361641664430285,0.022222402585230627,-0.0018948722941361951,0.002070452317027542,0.009976727475235802,-0.006072188079400603,0.022482164521943085,-0.09421597529648236,8.665576562169998e-05,0.014596936077525031,-0.02818579052247504,0.0427773884810168,-0.03831175473680974,0.0016379217273241576,0.009338641100579088,-0.030340317773190174,0.1022414154152561,0.02929000282120122,0.00011757346256423643,0.023286004178186777,-0.0037041346306154878,0.009329971831021916,-0.000533940527403645,0.00016094104123662572,0.033684140498825135,0.02563315820693768,0.1100007461696028,-0.029041991414794827,5.687486933174583e-05,5.609561693606098e-05,-0.02390208568759158,0.06904939453674099,-0.003430819530046441,0.0032809074684813718,0.05025878294072414,0.019506162326249778,0.10888452342671066,0.0051301765821401635,8.91140640422413e-05,0.0018988307192177754,-0.00457687930302268,0.028928160923442636,-0.004397780503063855,0.00011473856644550207,0.00959646249867434,-0.000106984740235759,0.0006547182872579556,-0.0008853912888901808,7.728871088624601e-05,0.01087559958827843,-0.011979911098487384,0.05819766105379967,0.0062468425838591276,5.173631108040769e-05,0.004010104415416665,0.026082255920585475,0.0438196933634298,0.0005348780586275459,0.0002902052145674835,0.03486697162784149,-0.0028008187237107286,0.01322518830630562,0.0002707435824043804,5.266201985844787e-05,0.01832486700192794,-0.024292136201244697,0.2169405167201213,0.021003717063142198,2.889058412193041e-05,0.004600960385015184,-0.015298248352996712,0.05433799103487683,0.030023734871450825,9.841178151507622e-05,0.00527468099736866,-0.0007960879074145584,0.003109337611797843,-0.0003369550369194317,0.00040357208417983833,0.008243055625187267,0.0010991352134236063,0.004879768694991539,-0.001517761425478086,0.0001290100908785417,0.017155593585478458,-0.000828119374258217 +2022-08-11,0.0012240114675661135,0.008849809213131525,-0.005034563432433377,0.000146264241198997,0.009021862703996233,0.056385136920518004,0.1725628022629125,0.13141292641634164,7.840215160180197e-05,0.0069165470776322725,0.0044249679637852765,0.015982424363849498,0.001562495480051436,0.00012807509228380328,0.0008874945291930765,-0.03116294478602895,0.0360943032108853,0.12226477061095503,0.0002913853307218084,0.006247140595015826,0.03390375761829847,0.0830316328606957,-0.01757869169583571,0.0002136495725335469,0.011763515946905789,-0.010312107921720541,0.024247733662739974,0.054004443558548554,9.285879340913014e-05,0.004091793194447369,-0.013789335959509137,0.04986494113830294,0.0016737422532314475,8.11405406674826e-05,0.006685726542118036,-0.0022584513517966563,0.018675374129370113,-0.06486434882364961,4.147057372298057e-05,0.0037062970354218286,0.031283256137825226,0.021957212429897,0.13719051900433082,0.0010987010349576575,0.0014312748248792792,0.02527077515219211,0.07367233047874791,0.0463474527928393,0.0001199433133869365,0.01143367261707894,0.006119671392831015,0.004552312857875836,-0.030055527688215154,0.0006570831938889026,0.008969163314209277,-0.007905852775159634,0.09674256281455369,-0.0027469094172958407,2.4353081592808395e-05,0.0010838361696852846,0.003582496454672162,0.009674561196998138,-0.017286693344287146,0.0001100032537059658,0.017652608538908966,-0.004541417034414705,0.02754446530779068,-0.027034700903797042,4.641077885068895e-05,0.01426024600290416,-0.027293552833178688,0.018520193838250487,-0.024842031711057852,0.0028743358835293716,0.004506779626209241,0.062385460362929454,0.4070401839255222,-0.0030186151456729196,0.0001261241365709033,0.016850598545783368,-0.02767206647426185,0.1643913141773448,0.01778710866222593,0.00026065793892725297,0.024501029981748045,-0.006365770907269205,0.033100873251596476,-0.045949414147707354,5.41717056251746e-05,0.00892494144975403,0.037131727785152994,0.19467051668090216,0.012207373421249338,0.000314363260014116,0.006159804460636988,0.02135897159473783,0.3257637134782819,-0.038106869148225246,2.7208704401075617e-05,0.0071402241054523054,0.006722352355549956,0.07294558623970265,-0.015238733144630385,3.078959403100106e-05,0.014961251395250544,0.0029138931740708748,0.007537441074230684,-0.07545964564924883,0.00012452955952519182,0.005497895649227406,0.05758513901139344,0.37051587863045543,0.0738760176704458,3.590012585212278e-05,0.02642393556605114,-0.01682068248452566,0.05346280492150716,0.035162601607175374,6.975402216369385e-05,0.0004378354544530578,0.0052100590740430715,0.019387053316559807,-0.009621189707920284,0.00012287950083897885,0.007053666132980981,0.014498280369635725,0.014109033354102372,-0.03025258223342265,0.0005873470545476006,0.0015003760029646744,0.017299271705221643,0.060299981666478826,-0.003843728986430467,0.00012075264399060017,0.01763906704182606,-0.02957878106168392,0.08587311282899213,-0.022687345523124923,0.0022107632749359314,0.021701558237661393,0.028903659237326126,0.2557665334427646,-0.049763229933329114,2.905971204013007e-05,0.017476939066202277,-0.05972909427873005,0.16088078079228385,0.05628009683150494,0.0012138164913597289,0.018040841959569634,-0.0008328054911995312,0.005515046193219341,-0.07307920307224078,0.00010055879694588801,0.0196741877587452,-0.002978498293789007,0.004399188223965578,-0.023211902334295875,0.00015979757992717487,0.015374797984462327,0.07170362056392554,0.10351467748171807,0.1976947194812671,0.0003975969696750484,0.004855947030586812,-0.03619804418728284,0.125930276365206,0.029562273650778483,0.0022279492327701485,0.002909823031118227,-0.05233992295833766,0.21549346010350964,0.1658223720763364,7.792725078589361e-05,0.011703521572282077,0.04633047619009802,0.06185028069647205,0.01894393654591865,0.0018620969159763158,0.015798114426735635,0.029606866798051978,0.08643668821392232,0.0177314802798002,0.00013570953661584087,0.04019884117938385,-0.001617092249759292,0.0039095911943021104,-0.022000313210719033,0.00016767326606297568,0.001920443371497173,-0.03794830961336181,0.14429498360505316,0.0510199936751522,6.418818965105872e-05,0.012781552545602027,-0.08715572691389777,0.2793166870856513,0.09597922393433772,0.0029574479167149394,0.04177278105439922,0.01734515459017574,0.09533091805031968,-0.007187072791460282,9.050758362288099e-05,0.013421389026730226,-0.0404278231267756,0.2220208641131971,0.03567693800809479,0.00013205272048804546,0.0022616060918595883,0.014362593653194393,0.0844726297091743,-0.009582865294152573,8.042027575650016e-05,0.014581828605011957,0.003912311085581716,0.019425501942217396,-0.0147050916726014,5.061841307795764e-05,0.007045968073589197,-0.023327354851446092,0.042598903492317826,0.024526587378192362,0.00026699090626787177,0.014424403643365693,0.007442265519459533,0.029069797585492742,-0.034163315508861376,6.366159692280914e-05,0.009319372439195128,-0.008714104916384864,0.10872695030119302,0.00035067267933948615,2.0678396729857317e-05,0.008159262769974803,0.010329053692616549,0.03620076599443664,-0.0556222502051033,9.973595244476823e-05,0.0017337968511428883,-0.02059815170504148,0.09178552735625573,-0.034488572591243,0.0003537382441635969,0.006653522046004735,0.02874980202495806,0.15679684926947596,0.02770235491145723,0.000105019349245287,0.010207695287827485,0.0018985784407672464 +2022-08-12,-0.0295096272211798,0.1921177971867444,0.07579823249633576,0.00016243615800235698,0.003793771919047885,0.021919454973073838,0.07535351460259304,-0.024845715891734878,6.979700132663205e-05,0.008905684214636717,-0.03181541209586829,0.11867204836864265,0.021662347039102612,0.00012401845558273348,0.00017677149781992595,-0.03945643061132499,0.0467019416237864,0.10371703538310335,0.0002851351211815041,0.00682807836878505,0.029832579030298286,0.07058237468674737,0.03692612008004,0.00022115273076304723,0.0017574588237296094,-0.007272494324851362,0.019456284311791854,0.008844628335304881,8.161504546909206e-05,0.005273334086802507,0.002217946478475974,0.009713816752144066,-0.00514035246575213,6.699632963780301e-05,0.0014152204073128068,-0.024470791411426225,0.2219954812307053,-0.051917830471282234,3.780093091471247e-05,0.01135699441614519,0.006789790567211304,0.005185197913467912,0.005308874972347513,0.0010098010724453235,0.014144577275057347,-0.011613299215979379,0.027503072662672816,-0.032751015588433005,0.00014765096370722945,0.0049457141823779655,0.022400001382707275,0.016311813270635172,-0.11434516270441562,0.0006712281507896241,0.0035425603039926446,-0.0012041840216717155,0.01724411343357256,-0.10020974036057953,2.0810129300942944e-05,0.00746309267354213,0.018195960385736582,0.05246773736280116,-0.023416678251573817,0.00010302287957099616,0.00024275570585033965,0.010648366250669934,0.06325809327184036,-0.011850240493249889,4.73836706908068e-05,0.004864601641950598,-0.00533812864670802,0.0046230910720199475,-0.025876453672870905,0.0022520579397190136,0.0015913462891258843,0.021767351889529506,0.14292183893531904,0.024867476031027957,0.00012533117473557262,0.020858380897933296,-0.004627339901549781,0.021127039489975116,-0.00563668209981669,0.000339157159752583,0.04669588399809157,-0.04805327481888369,0.3210921362247129,0.06462489441423575,4.215550308511334e-05,0.017953733310811168,0.0034036500644718318,0.01991871497230443,-0.015988207894345144,0.00028162447390898563,0.027224182528818235,0.024656592069474927,0.35347587303559674,0.012938173469681114,2.894699629377524e-05,0.016478861602380393,-0.005643876169553662,0.057371431248082534,0.01205057550730222,3.286726006109714e-05,0.008613099058761899,-0.03827537560168933,0.10642934361077326,0.03330940167569972,0.00011584594411315227,0.011470305274534237,-0.06731563164319808,0.5234671783270133,0.06966603862898987,2.9704267345123736e-05,0.015417350364481082,0.0005363886104211622,0.0017152207192240234,-0.019587659692839897,6.933250883868311e-05,0.00296694340506735,0.009125542634239061,0.03636107506874936,-0.037544591216391685,0.00011475472558240417,0.005153816820578102,-0.05241645854369663,0.04304868279216286,0.05794485258381473,0.0006959585409885938,0.01819583041911484,0.04192113330155085,0.17179025922015964,0.060731143393326616,0.00010271183518710718,0.00034205099697860123,0.09854546174802102,0.3432581459160199,0.04882249809360413,0.0018426164801900419,0.02839058930765779,-9.618858347724422e-05,0.0008128972771119923,-0.014985054810074007,3.042776514967463e-05,0.02212736918832473,0.001105768820210387,0.0030417444060576435,-0.00679348097809468,0.0011885375073229848,0.01632026422043961,0.024094012680948133,0.19448449186004987,-0.018788445497826003,8.249921217876276e-05,0.005707927255374075,0.01734061403761383,0.02538583381181366,-0.001483929188792682,0.00016121981765065382,0.004519213113297756,0.017547296209990584,0.026464264295813153,0.002554594242312578,0.0003805873034819133,0.014447904786079501,0.030867619624186163,0.10375829540259195,0.008339596985208688,0.0023058478791673667,0.006303619263529412,0.0041579712443268945,0.012037461705980898,-0.03696057259221895,0.00011082479417179218,0.007668622218595805,-0.02813582584303629,0.03723348980997578,-0.005458935574830134,0.0018784650334910389,0.008739717609919762,0.0004785955199905283,0.0018686367786495933,-0.004764144554232472,0.00010147516661515588,0.014644009028429513,-0.0054235621420448575,0.013681765554661754,-0.016762010009925696,0.00016069518073359801,0.008388956197086624,-0.028653433813213374,0.1090693860389939,0.01873058200069833,6.411914633282857e-05,0.010170179423260301,0.05258262209896057,0.17533308336123088,0.03321560916866355,0.002842473513974815,0.0027146517162053418,-0.04116307933782358,0.1641374914721958,0.03356531393413226,0.0001247500231948058,0.010547285330238782,-0.01002698745935615,0.0572064087766446,0.0011174347726327404,0.00012711200557466727,0.01655247518047476,0.0060196949853868675,0.03263953226130493,-0.15829073812744632,8.723268870243604e-05,0.012462967580973176,-0.008806288514499707,0.04396656158852473,-0.01880503083997981,5.034053211545922e-05,0.01153708166971578,0.01160695533777178,0.020540628142657124,-0.0050231370104961435,0.00027550785593272577,0.007999357286411572,-0.03227351740003449,0.1453725576366621,0.038261848433853746,5.5204978498334607e-05,0.018816616258907414,-0.007981422023348212,0.08816170709755061,-0.004412109522333297,2.335778031930121e-05,0.015442999194362466,-0.0027043964432164414,0.007894405066563588,0.001117700137538285,0.00011974569641438986,0.006922150857597173,-0.013665469963930758,0.05198111529513759,0.00847051980172227,0.00041438778913574904,0.013129243834999665,0.05350969317392357,0.26702009817417516,0.08574106708332892,0.00011477843674710198,0.007703700290569446,-0.0005646442257597229 +2022-08-15,-0.031220810622669005,0.22773251784128112,-0.032414158063352926,0.00014497920404811453,0.014737073261488386,0.03987582390995372,0.15601173044161415,0.05085304058193168,6.132858465476925e-05,0.01627014065323494,0.009191711310828719,0.029954132443075886,0.010213947798140085,0.00014195046991603993,0.019233393018191495,-0.026236696708677103,0.023736207790430786,0.008621683274354329,0.0003730488246906778,0.008647756086695827,0.004588914475460108,0.010557841813179128,6.613266766767249e-05,0.00022742205802530084,0.00364474407222327,0.003297592900813538,0.007082094790882223,-0.009601630855879882,0.00010166747649077933,0.014562337594653998,0.04509218119148079,0.17506151164635975,0.051299406966168595,7.557887522168966e-05,0.010808663017879618,0.00995772241050198,0.09041680103495794,-0.020912680421636808,3.77667394677595e-05,0.006611332277704248,0.03056833078390364,0.024858787622280304,0.0576405942500332,0.0009482799472414354,0.007874469407639858,0.04172943274721707,0.11167554594621541,0.09607496288067198,0.00013066109192790175,0.012990277679169774,-0.014640308058427648,0.012625959661874079,0.0008866145294456676,0.0005667743348332664,0.0033661114231752593,-0.003322780123719473,0.04431477514167621,0.0024995146873975685,2.2344767666378478e-05,0.0034479080441181045,-0.013157472173322768,0.03752167102627089,-0.030600452537349734,0.00010416967918176148,0.02001255708988661,-0.0025185996682832354,0.01196449052583107,-0.003916766792078425,5.925523843722781e-05,0.008214066551465397,0.012958354632957364,0.011748322990112522,-0.01925929828869675,0.002151280080296898,0.012078825200425658,-0.03022102326849034,0.19947941255883472,9.722013604514303e-05,0.00012467035392910384,0.0006777588916967107,-0.05293846653091024,0.2842637535353966,0.0266398863009422,0.00028837532867506796,0.009506132647657022,0.0378824691235808,0.225709161861121,0.03497206524922881,4.727701476160833e-05,0.015101051639459231,-0.031759898374320514,0.172868754339101,0.022435822007354386,0.0003027954946908089,0.006267677037574226,-0.0548197051058055,0.6923031674161416,0.029658235791002067,3.2860230664005976e-05,0.0279816062319979,0.008447447235583527,0.09674404111988105,-0.003416350964618563,2.9173126311257643e-05,0.012123096037615036,0.0351953671362934,0.0756707991896188,0.03519673980463752,0.0001498234988222468,0.004386375506795257,-0.005985482386549751,0.03932141472154838,-0.010853111697620571,3.51610955666503e-05,0.005611765744503881,0.024508703713708134,0.06954214575459483,0.09334585702340942,7.813572335226929e-05,0.0030748871553779086,0.003995550473453051,0.016434232569578117,-0.010946604697797914,0.00011116697503120249,0.005069415100699111,-0.04860824322360806,0.041995438872937454,0.03179111361558155,0.0006615815153191611,0.02488861500142333,0.013101460137601745,0.04346552980097313,-0.03144883312174277,0.00012687052332316343,0.005957102863866116,-0.03326612313190474,0.11830046551735734,-0.027840787924784477,0.0018048242257844554,0.019555543114691737,-0.00448276753571399,0.038743285827843844,-0.009566584527026549,2.9753082249279498e-05,0.03656578327354963,0.05796370168700067,0.1414187907772053,0.025950367826069305,0.0013400477164795372,0.02903264063266245,0.020915107379517413,0.16946855279804163,0.03386480944849114,8.218576861612057e-05,0.008054021857885618,-0.008932643690360812,0.010249274416595294,-0.04765902226313689,0.00020569904531831304,0.011475062103197195,-0.01413465976312794,0.021467525504573023,-0.08101742827901415,0.00037792644761301436,0.005670722534764897,-0.025699226024785745,0.10442884984077205,-0.02665914519513154,0.001907435628240376,0.014686906681618614,-0.01867209409568065,0.07124049100531726,-0.003958460652168592,8.409235085617512e-05,0.007113242011841776,0.01750445230715372,0.02760812752783069,-0.02507408279008032,0.0015761181352964059,0.02010867938052537,-0.0041884282652517625,0.014602962936355235,0.00252285134638891,0.00011363866819484148,0.008101383780419346,-0.04816786957862128,0.11524506599056338,0.001889408186694978,0.00016943201408749876,0.005900324493033929,-0.014345603004542825,0.0558322694237101,-0.03860335796932227,6.271153802170094e-05,0.01318742195452916,0.07609863038690229,0.2760209102446804,0.0842746975712125,0.002613081255942984,0.0015021556438563322,0.005217300139158186,0.026950642360056367,-0.030993556862625088,9.62980008351478e-05,0.02693220345940642,-0.022795487834150658,0.11517951237507987,0.010781778157013628,0.00014352727504420777,0.008342196944586678,-0.019084720306613647,0.10272844325959656,0.0057830928476529835,8.787064037688434e-05,0.013284080311365866,0.002149961034934223,0.011842352746643648,-0.1398416209110328,4.5628899112483506e-05,0.004293670482523552,-0.03658167616406528,0.07800424098141545,0.03406624365126793,0.00022865188162325995,0.0005074362033301628,0.009939528835067336,0.03869639010146116,-0.005323305404019356,6.387188322768633e-05,0.005773689337378502,0.020046670727618756,0.2126310281669887,0.0422283262758829,2.432466698394204e-05,0.007741667329344552,0.003785302156612615,0.01375895380731067,-0.042099274268714286,9.616656510765361e-05,0.0007830048166805052,-0.0012425174494820276,0.006025287866145732,-0.030982647610879935,0.0003250518683963124,0.0011495302156567559,-0.013112348822907394,0.05962425818921504,-0.04268872439968183,0.00012595902818122667,0.011872424509375874,-0.0011431039106511972 +2022-08-16,-0.03277013082308173,0.21193247724833858,0.013940566689416598,0.00016351863175560137,0.0021099933065099373,0.022133844497113777,0.0881959011197082,-0.006194177817631122,6.021698113044501e-05,0.015171021059673807,0.03469422763960774,0.13339704219454127,0.06030238836769006,0.00012031180103203712,0.019001679927317067,0.03105121356288982,0.03507140898273558,0.05959121585181318,0.0002988086880035042,0.02973875747856906,0.030682795805401366,0.061339245474646524,-0.07315043866754944,0.0002617304625313069,0.003937703371031043,-0.0005026375689730399,0.0013029979499195345,-0.002486839082374497,8.422828416007883e-05,0.007374636528531941,0.02195123685550269,0.06461298383672087,0.011024452318027332,9.968482568438485e-05,0.002977150739284299,-0.05849555822837239,0.5045919557867773,0.10487915783697306,3.975403187682593e-05,0.007842623407264819,-0.005026054162555687,0.003913129275478472,0.0047660643058992655,0.0009904846635035113,0.005584689417821276,0.03456596590644481,0.08609490381677913,0.05381182117440461,0.00014038901872234877,0.02539196735023267,-0.010991010634256008,0.009937494941602683,0.0006544172017816713,0.0005406112334290142,0.014238167167181646,-0.007657365948380058,0.09800551457960073,-0.10132248669359159,2.3283683051103723e-05,0.0022075215095125767,0.018897222413889105,0.06423249662370842,-0.016105358558240548,8.739653402785392e-05,0.00789073353747812,-0.0032923446579912917,0.019969374991232847,0.0005364678484292083,4.6409045769082896e-05,0.007503163056121858,0.01555635946752661,0.013382411415156283,0.010752486922854979,0.002267235146427079,0.0066822149400035565,-0.043462376297744486,0.2861038244279776,0.010064775392624653,0.00012500918166311178,0.03192695557551611,0.019037000846920695,0.11003839301879606,-0.01666708632931189,0.00026789371309398946,0.024637297523821045,-0.02431713375758345,0.14823103678361602,0.01523041081637741,4.6209811123875115e-05,0.010320155179193746,-0.001184669312201799,0.007510016782274401,-0.07654157213237572,0.00025998185522186604,0.03154613796825265,-0.004582570059315929,0.058561596878561786,-0.044598536807839456,3.247330068116267e-05,0.029964794464690598,0.02821656081203429,0.3114019844075786,0.08326240440087944,3.0273623937184423e-05,0.008761511308814083,-0.01359821496915957,0.039617841020300554,-0.018729203633740147,0.00011056402828750661,0.006226598150331738,-0.0181548079023519,0.11957479136027521,-0.052752748441697306,3.507069741103044e-05,0.00655964188687928,0.0011043258843147423,0.0034793291068519142,-0.08382140074988606,7.036863452183335e-05,1.3613847448604773e-05,-0.00513131132731847,0.02011282010034764,-0.0038158005525100076,0.0001166551701729589,0.006252007916593102,-0.043043237764220595,0.04247466708332173,0.030061538878650325,0.0005792292834338318,0.019508060161592445,-0.03218129554575869,0.10657035586257851,0.01387624942506095,0.00012710221437785353,0.016979732730241143,0.019372414902076678,0.07006999634549722,-0.07441316703584845,0.0017744789084926983,0.0024346275112903837,0.004111491063252874,0.03347232141192001,3.361333467843097e-05,3.1586078675772994e-05,0.012535782498718858,0.039254879266221246,0.10332956352738758,0.011230381252210936,0.0012420535511124123,0.024637890519049004,0.008411709851595443,0.0730714026755927,-0.012019504651124857,7.665888233972457e-05,0.008586772957738083,-0.008227232210899342,0.011366689387407602,0.0013804365850114244,0.00017083039661994431,0.005223933669474652,0.019431006908394877,0.029876047964407567,0.0025510505633742995,0.0003733155428481195,0.006318405147127917,-0.01033753680853001,0.038391012426799834,-0.023109217130084223,0.0020870739857176517,0.013912611808810264,-0.03211679311045727,0.1118472858232199,0.04298470112345826,9.212915648711664e-05,0.009039270553046048,0.009695105221014723,0.01313501932543146,-0.024119270761892343,0.0018348433936346618,0.024917379548175796,0.0205481477486647,0.06479253215175483,0.0012033212034762296,0.00012565036757314672,0.0002172347100510945,0.029328245026150286,0.06467423921929497,0.023063171893324633,0.0001838294650533517,0.008287209724190975,-0.01566601108680097,0.06963376795248108,-0.0714623356348724,5.491012832655384e-05,0.0033224798615277573,0.023408542798015734,0.0641291672688703,-0.005328058437989032,0.003459687215530718,0.00588041630841377,-0.005769589592910514,0.03114486890444514,-0.01514866967224646,9.215077354840489e-05,0.014313460701761024,-0.01832695470079646,0.1093095507034215,-0.005320423649486494,0.00012158863461919285,0.0051645252355050275,0.04063237398491687,0.21624887073548052,0.096801376729075,8.887242848164776e-05,0.004577475664170953,0.03233296197522202,0.15592965798173195,0.03755587599995346,5.211517015977506e-05,0.013709708474394108,-0.06571151378102819,0.13227326198028086,0.03554501646545252,0.00024221375490220186,0.021014790011313605,-0.03246246081193132,0.13754444669717591,0.09031813849589301,5.8688465401490374e-05,0.0035923929035288744,0.01236616508751563,0.13508243979471155,0.013636168680148985,2.361932213701118e-05,0.002910803332966979,-0.020444642315362988,0.0631797509223944,0.051225845590223376,0.00011311249238259203,0.01692720763255872,0.023414988517073344,0.10781651894673465,0.033782674651161235,0.00034232342156410714,0.0024233521135375467,-0.018912296452800938,0.09647355374822947,0.0011524234713777956,0.00011228139149136347,0.015257765576020673,-0.0002992174654635921 +2022-08-17,-0.040657943055409325,0.2676712415209902,0.07347520351857112,0.00016063133689330552,0.0006982909717816264,0.049308839014131266,0.19741052113378416,0.06117859511239264,5.9932860821658375e-05,0.004099710292640578,-0.007307177266620553,0.0212551467555711,-0.007021451848245231,0.0001590313478401308,0.008040632095573617,-0.02000422046756109,0.020263023594568948,0.007275592947780614,0.0003331848444449187,0.0005681050826294659,-0.01253634618444954,0.020522293418772326,0.014485634961705459,0.00031962655659065463,0.008902386859169083,0.01711601107150058,0.04341412240595989,0.005864117865249976,8.608317410297036e-05,0.0025459793967832966,0.046803011705724214,0.16462739043349173,0.04461244102283869,8.341834346531118e-05,0.03360475494444397,-0.007945428597975084,0.05807851589548659,-0.006378046737734593,4.691378071803187e-05,0.008664067630575988,0.04091106058335571,0.030461626656026607,0.07590596572582985,0.001035696321977495,0.021396642855426074,0.039996926709159386,0.09173458400775182,0.049974313894588514,0.00015245982351977798,0.0033551950801070864,-0.015071450045404285,0.0124638646425851,-0.04253361339976517,0.000591053335772837,0.01011311522549682,0.015385504492371657,0.1647055807737127,0.04456722713550374,2.7837242710929427e-05,0.0007306088928092172,0.013217693546722416,0.03832522515933209,-0.0016840052863323254,0.00010245236813752429,0.017656657191270905,0.011867116754425066,0.06930053808245044,0.022308635357218224,4.8202595842420675e-05,0.006198930320819343,0.013217627337964138,0.010211526295267628,0.007502804440899547,0.0025245606905956986,0.0042439134720920904,-0.0008815978447204356,0.0055019614423323015,-0.06169463051550025,0.0001318575752003359,0.02173965544833721,-0.03047741967896988,0.2049034038103227,0.011496699695824595,0.00023032297124127906,0.004904276205494801,-0.08438625204160842,0.48746073124038175,0.020810486173126048,4.876329219099615e-05,0.017642008354704013,-0.014554239466510884,0.0782894313775445,0.009295042733691635,0.0003063890111326208,0.009734623968536986,-0.08453996065403346,1.1236996495638023,0.06198264113158961,3.122065622337603e-05,0.002902315777492943,-0.00036143498868151935,0.003598110113746724,-0.021668586915188057,3.356119770236158e-05,0.00875631850236551,-0.013161841652291995,0.034690249833741804,-0.019471360391481875,0.00012221710432370073,0.007648587868222142,-0.036919580455022805,0.20741063856195566,0.01236652848088799,4.111668612967041e-05,0.021269334596057815,-0.00469817801276466,0.014944422958672115,-0.00513744412974772,6.969918499651246e-05,0.008727863691384924,-0.0028976324669056294,0.013069306311631857,-0.011329834285728873,0.00010137698194386107,0.002207974413127658,-0.052813060492180174,0.05611396337244551,-0.03890885661489193,0.0005379550049846164,0.03440466697415586,-0.019951093043660273,0.07453864511229691,0.03330340284151314,0.00011266037921732903,0.0049172644810077,0.01526925696291565,0.049183674127814415,0.0036292538574842193,0.0019925815748616338,0.009320691033390012,-0.022313908849217037,0.23315969639014428,-0.05954512637801442,2.46095894615753e-05,0.016332922972816827,0.04455502185572528,0.14648582524347822,-0.05163354546780716,0.0009944256749237171,0.018635033603954812,0.004627124169126784,0.030382460136534842,-0.03589996942947701,0.00010141772411677698,0.01206587681958483,-0.02402671012992041,0.030792930713183213,0.023582774967521657,0.00018415718609670053,0.006055363826588371,-0.03709232168619744,0.05938768258581695,0.07519240892432096,0.00035850197514930175,0.0049013150550078835,-0.0018381948880773055,0.007029543916833548,-0.02504464939175494,0.0020268179724539214,0.009981195210579052,-0.006041854564831216,0.025010551936738266,-0.0007707514281264162,7.750636362716217e-05,0.005938188421929089,-0.0063865830005692065,0.010728848708696144,-0.023478773545646967,0.001479764592107844,0.01097785900270326,-0.011260951966304524,0.04318177535237955,-0.039525072350167584,0.00010332148720909567,0.004111494202252198,0.019999798665255395,0.055706003759752036,0.00937707089691188,0.0001455405445972246,0.004564510551022109,-0.008972321696980695,0.043198283891974235,-0.0008455784902704311,5.069349887358508e-05,0.0026902568123875247,-0.00927232486140233,0.027936188806743478,-0.026836423445975643,0.003145861074846893,0.0009279010880094069,-0.026384896807681524,0.12090759866419427,-0.019464705702704834,0.00010855313614355706,0.0010862899197321336,0.003031504063529512,0.01807963423133556,-0.04442632445793014,0.00012159880279169642,0.0017179462176063524,-0.0055725384329622365,0.0338259325861088,-0.0329711812435539,7.792054691799548e-05,0.0006190577399381284,0.05010700544915212,0.2263509710114206,0.09598785008256483,5.563697147658762e-05,0.02228025303205193,-0.06430838228173771,0.10959179670240875,0.04901314705523569,0.000286100707523533,0.018864523024861544,-0.019786913803593844,0.0823671132728191,0.02031955666669716,5.9736337535681485e-05,0.0029834440251592996,0.015509742505203998,0.17801129404381136,0.0009222822534645459,2.247958636995972e-05,0.013423583719627794,-0.004034314705543179,0.01512087843861364,0.002902364738876461,9.326135388225106e-05,0.0017376084189943783,-0.021004469939403567,0.08964149854902367,0.017851921797286334,0.0003693436095319497,0.007556663038285683,0.019108964325648885,0.10189248006247516,0.010839502423934246,0.00010741546492651726,0.011133282737176748,-0.005765139432846863 +2022-08-18,0.002827791630292116,0.019577400686101233,-0.007708890467174233,0.0001527492051859209,0.00464328105822487,0.05337026735794905,0.1690115367974801,-0.006672476223029149,7.576934871630517e-05,0.004614826508886577,-0.026159713029612224,0.09139915557340599,0.012857382515682582,0.00013240000351738635,0.012340586411569638,0.013171454468280469,0.014105082724821626,-0.0017038770204445529,0.00031515627134165593,0.007377598487867654,0.06077953334767672,0.17525594654045878,0.12146696251149534,0.0001814606118394566,0.01683969799670616,-0.00637620331538399,0.019075306105684666,-0.02013389020740046,7.298563328756012e-05,0.00019901482471996156,-0.04483830947956064,0.14977976043134175,0.05158740753161473,8.783871095005142e-05,0.002136909391108849,-0.004899924290571361,0.04948559055241134,-0.014203152022678302,3.395542939034001e-05,0.023929085983644436,0.0010353399294527916,0.0008277525111566394,-0.001708374001129676,0.0009645555476907021,0.007544396159145482,0.02730862249338999,0.06537287854543301,0.010464193550189717,0.00014607102331441686,0.009668376354050486,-0.01404386264624563,0.012503917900798947,-0.009233436678879358,0.0005489904857789262,0.0005715534913289192,0.016266424921628633,0.20933927453430823,0.04673186559892312,2.3156034484668633e-05,0.002310823614653756,0.018920925453479686,0.04706891525839393,-0.13864148203705728,0.00011941509342616849,2.8815790566853912e-05,0.012539157420670681,0.07851384237082651,-0.045934247130319183,4.4955614797394294e-05,0.00612681847543878,-0.011577559944438633,0.01112319698307434,-0.010867433292669261,0.0020300670515438247,0.004479734751390055,0.01986069410193369,0.12315616789099006,0.01175919159496268,0.00013270594017055875,0.013306193005925719,-0.016089588086897914,0.0883661624453795,-0.03210396404772961,0.0002819467954032532,0.006057727901198622,-0.008194608348428565,0.05053669884073047,-0.0639222940226034,4.567539252604545e-05,0.0033317479801519678,-0.03953491671694374,0.1928660057217374,0.03267340284363305,0.0003378406853455691,0.015762366531104927,-0.0002897624376199835,0.0029566824407672543,-0.059406240563118655,4.066938786144355e-05,0.010175892623428223,-0.0048167838984748655,0.05788846360040926,0.004147918097117219,2.7800131375312818e-05,0.00688702430175072,0.03109094487197924,0.08314637978495895,0.04590590165285055,0.00012045181039510913,0.022099184708974394,-0.007600140491909913,0.04890129212726431,-0.0030668518081826903,3.5899934967281286e-05,0.020762872520238944,0.01247706474559832,0.037706847400892675,-0.006100307725119134,7.336173395781269e-05,0.0018699508881778824,-0.018823584602718036,0.07125025780125338,0.019659654684992582,0.00012079931896031325,0.003031429258955386,-0.03780603455291613,0.03155464891750872,0.011107573139178782,0.0006848151125329749,0.020652506147241706,-0.0005037580413709401,0.0015627966213562525,-0.017922202517326097,0.0001356767828732163,7.20848385448163e-05,-0.02260836453230501,0.077708407144841,0.006588204739373672,0.0018673267333396378,0.010913961000614586,0.05118384003667634,0.45236956233813574,0.02675622250886598,2.909522265155118e-05,0.007379823884164505,0.0016814568278880457,0.004955160284217605,-0.003859238362015025,0.0011094284118629827,0.041780849916884376,-0.011736526822672184,0.08900241799387694,-0.014146406454190276,8.781393392238578e-05,0.006905761640991318,-0.008345325391478555,0.011965012993806364,-0.01653896984870708,0.00016461730466428657,0.004276771427037302,-0.00816825467771264,0.012393623751584038,-0.009523613270890281,0.0003782987239343817,0.01353102717076908,-0.007963367865411766,0.03621307130332669,-0.008199292402748108,0.0017044401647045068,0.014080042968728775,-0.023492886835242432,0.09474137849060715,0.016197675662233214,7.955858634783179e-05,0.017524487953707837,0.02119193778278685,0.034476021171973716,-0.02866114489694827,0.0015280259271934,0.0006069047869248212,-0.07623163128766312,0.24709694445074387,0.18656627881617302,0.00012223170643571016,0.0105662933516737,-0.016553075194536863,0.04221023027371382,-0.00202526266487401,0.00015897225788989993,0.03618692771588037,0.007055428876044699,0.03389312707466572,-0.029490030249889745,5.080725169237458e-05,0.018463429439568586,-0.04318255891766109,0.10994247329299897,0.004361593130443826,0.0037227247741727543,0.021102610731232204,-0.026106691682015345,0.14720852495259798,-0.059092136493989686,8.821845547160242e-05,0.002269633791223435,0.005431208069873445,0.02414314173448003,-0.01599436706443201,0.00016314112071026012,0.0015809307158591826,0.027336672255579477,0.14965564022213249,0.02147317833802096,8.639751583884174e-05,0.0068307008716451826,0.024086336898624775,0.13624383478458285,0.011903394192371939,4.443255554797971e-05,0.007229043438196185,-0.013477258133760942,0.02513033003307488,-0.09963278995935466,0.0002614765514510691,0.012681457864895255,0.015115689492759241,0.0539621789384676,-0.03001826190092081,6.965509039918623e-05,0.0027627852747050675,-0.0064489317821634015,0.06707846258067751,-0.03335020913380192,2.4804813625403838e-05,0.0018627004410744059,-0.00573422068173002,0.019070867530218513,0.0008403096863677103,0.00010510246888652632,0.009581125767916433,0.02509374713719884,0.10167987617180817,0.042165117694964276,0.00038900795246966355,0.014334232995741724,-0.026464895207885426,0.12388195191555133,0.015120747721896555,0.0001223584410495714,0.017032399091196408,-0.0018713472277209293 +2022-08-19,0.026354579971359027,0.18953388268703747,0.020389445018961113,0.00014704688314753765,0.02066099912877984,0.02744684256810838,0.10374249521395949,0.003453179581397241,6.348136088741915e-05,0.0006853044929096309,-0.0058228715465325955,0.016506977155487282,-0.06268818587211775,0.00016317997560046934,0.004899057151666943,-0.011072871011936387,0.011805286808126193,-0.03900486721024961,0.0003165567324834934,0.009090214881617157,0.006062129767633424,0.013259745596138465,-0.005218943865478025,0.00023921466990755986,0.004595619967836138,-0.005507975499461248,0.01514513405005244,0.0028318186898634795,7.940824868430303e-05,0.008576651698498335,-0.01143467211760006,0.04003737780062587,-0.05478464654113466,8.380075762997837e-05,0.0008306252708056064,-0.03009645795355781,0.24851711080883923,0.001733695908612011,4.152959588139517e-05,0.011727790727414438,0.01927628452511905,0.01772688986555826,-0.049789129256605245,0.000838562753003363,0.00042948797257316435,-0.016372769199836282,0.03736010534077825,0.0025341472144410604,0.00015324133757460236,0.010511993887073317,0.0010283942587226377,0.0007908925272387303,-0.03364802372261106,0.0006355745952245778,0.0011344451365265119,0.008237683777678551,0.1262487004697416,0.011400008497275212,1.944468846904073e-05,5.3311283675957404e-05,0.02853085806547662,0.0835783375328781,0.01739808259077236,0.00010140798256285135,0.006718295751497001,0.007459439569220518,0.043088269506706266,0.002826390154840493,4.873140869107713e-05,0.003989988361255183,0.0029250269155748853,0.0024780673389563097,0.0005374383654487935,0.0023021824326015274,0.006856995837714314,-0.02968115506477518,0.1883067651140017,0.0027690878480007126,0.00012970806568968617,0.007271828829338687,0.03280843214711201,0.19136865725345448,-0.043298807135466896,0.0002654745535130716,0.015202372864056492,0.008273208499961389,0.04465886766972187,0.0060417090617917195,5.218278072968076e-05,0.010652976808142086,0.031580722248125664,0.19912079537744048,-0.0001724347723654449,0.0002613919731784208,0.01370292425770215,0.02443395374685217,0.3208400292571129,-0.062032243667104095,3.1603518136542754e-05,0.005574638041524037,-0.013535736891248458,0.1251110896812894,0.015661676273523318,3.61466293895916e-05,0.0021662986673952095,-0.0349993813354686,0.08954156494344631,0.02144286113821685,0.0001259094836894092,0.01152144466386167,0.015188828589165019,0.12825734389278437,0.00975071510529852,2.7354854888863248e-05,0.025493062726985323,0.012098775742478663,0.033408348499799845,0.0222237023497564,8.029043333600318e-05,0.004082154122232478,-0.00598171900912667,0.019677878322666986,0.0023032976444786733,0.00013899408951630255,0.016886536808777365,-0.04896359564220647,0.060304293069301906,0.0030152034400333996,0.00046408831466149026,0.00938711402336424,-0.0052906428266434585,0.018945234866190902,0.002617863597474555,0.00011754237417970359,0.01675722808552757,0.01953184259471898,0.06996624449887015,0.004160920220967984,0.001791735204830086,0.01944882006897968,-0.017592373446366383,0.1393190981595404,-0.0364964457305833,3.247102337487199e-05,0.0024309164015477716,-0.014546195412809583,0.04367874892864653,-0.00011513204142100831,0.0010888059782747253,0.012209131860924408,0.0007573361041265416,0.005095917915266701,-0.11678687465464455,9.896733613314264e-05,0.0009448927284858275,0.005294449357343773,0.008064569085551887,-0.03627821316907265,0.00015494765863613167,0.017449768550751508,0.007158783620159,0.010779269749830653,-0.05948253538869845,0.00038120080519592556,0.013187670500727002,-0.007637137667524895,0.03161150706986069,-0.00013838909238703364,0.00187256007384059,0.0043006529601865885,-0.0037981772245087742,0.017080464027627206,-0.025726613737255457,7.134539234445017e-05,0.015159094683989866,0.020266653575383247,0.026065620727717728,-0.0005229976531953011,0.0019328189019468553,0.024941866352701476,-0.004276945376273419,0.016346282361096087,-0.008579455814160884,0.00010366466381423771,0.006550014038313239,-0.003036742128416617,0.008255322827573578,-0.016424309130783722,0.00014911942807143094,0.027339275416118934,0.04013793681593846,0.20221501005613174,0.06663203666483096,4.8445738504094894e-05,0.0048171322313500815,0.03536630981639387,0.10644327941856836,-0.0917717992034046,0.0031491225281100313,0.011901910110707728,0.019486765454571092,0.09075769872718366,-0.05821111750019622,0.00010680629580664472,0.021869173778024838,0.02979901976516149,0.1607956355987816,-0.041410139038751057,0.0001343966693089003,0.0019378474942442188,0.008453672477439165,0.044865791641253844,-0.024533017001190646,8.912073948928247e-05,0.004352657983025406,-0.026826925616922494,0.11256763006576427,0.007723045054288585,5.989695949673898e-05,0.003539126488629177,-0.06991737530843768,0.1376813481704802,0.02775441702280276,0.00024759359213331243,0.023850615765458112,-0.0019222314269385164,0.00936215057146182,-0.0027276956485020325,5.105572264742587e-05,0.010333793756840615,-0.007079718878342596,0.0691739550474557,-0.07366649371314397,2.640612599634973e-05,0.019451825977081765,-0.005965588519708939,0.015415055654340691,-0.05251804840306803,0.0001352748813942477,0.004740448121534917,0.02623439566422981,0.1047783050866578,0.02990833509379547,0.0003946641390185634,0.0016470708159883937,0.02662801508402481,0.11963990698712244,0.005829197644164163,0.0001274777893483376,0.014024428925389647,0.0020050850269578476 +2022-08-22,-1.9379734329939922e-05,0.00013134944926623379,-0.003403789820589845,0.00015602929525572646,0.007848848020738833,0.02039366091036442,0.06666804741298762,0.0012162228365884663,7.339863525560306e-05,0.013687189870651713,0.02459904275152993,0.08906070144940817,0.03365973625690351,0.00012777011933757436,0.010202264088179069,-0.003982833925973971,0.0036226922913789703,-0.022339221347302315,0.0003710467288074956,0.011138638428716222,0.028142412776403516,0.06301869493952954,0.015770456467225,0.0002336628642254089,0.010247628442589252,-0.02373551167124299,0.06339369749800071,0.16011192021532933,8.175216355410017e-05,0.009220308832069462,0.06596210191034557,0.232430524571639,0.10140570013167396,8.327050126632296e-05,0.01720939570785253,-0.015028280374008888,0.13234506775080318,-0.027324799530831986,3.894037618570877e-05,0.010127451339437486,0.00023561934327492382,0.0001836557032829973,-0.07606393411516459,0.00098935307569901,0.002619104184320602,0.0019045945404519348,0.0044334020963207365,-0.09981363351569603,0.00015021984141924878,0.004137634250184685,-0.018067439448241036,0.014298598538757777,0.031090250744123797,0.0006176287353574812,0.0038680394836458835,0.025060597399987426,0.3075418645241867,0.096489943805274,2.4283426409023553e-05,0.0007381273669285681,-0.07093847669015844,0.20470854858241938,0.1634329563861495,0.00010294302291251099,0.021197539744568193,-0.01986408651933033,0.09864154215183857,0.04877618108305036,5.66853148396772e-05,0.005427670847355341,-0.008731371925427505,0.0073715234714994814,0.0023477948230412305,0.00231019270370889,0.018507866725784222,-0.0074200009261513175,0.0441950154032647,-0.05130958138874978,0.00013816014414220592,0.029033929084949776,-0.02423191262797212,0.12450085242814464,0.0018904074197040551,0.0003013863655837158,0.004904228473625829,0.028011522006124154,0.15708724709202856,0.030159702278865788,5.022925467759925e-05,0.01009768317117617,0.005126277355460465,0.025855850286317913,9.828408182532016e-05,0.0003267608994881692,0.03439849606102968,-0.0616638826782864,0.7939898407336351,0.03176994610158707,3.22289496803556e-05,0.025364953780592895,-0.010003258620329376,0.0991901296733684,0.017564909828739185,3.3694168864502256e-05,0.0019959862953050495,-0.03410283014513992,0.0892169094751674,0.01736918076528931,0.0001231306020076598,0.0019869224006943634,-0.0008394699856527339,0.006469863882352911,-0.062105025521828464,2.9971080857710326e-05,0.0033878556835531047,-0.03460318105704087,0.10395257985138905,0.23158004442772498,7.38003014056328e-05,0.001802370512317887,-0.007333233301460978,0.03058342760419605,-0.04196017908965477,0.00010963720127262294,0.0021596273097558676,-0.010967069259043869,0.010674133685095084,0.00037092091764437233,0.0005872641770581553,0.0078033104281461435,-0.016956528962416194,0.05867711894117578,0.019839260994294502,0.00012163377436133767,0.005517519781506492,-0.09226129639896855,0.318497203597734,0.1026071899696364,0.0018592299376780582,0.027894496556423502,-0.021065039119275333,0.17109727550312842,0.013498557939158003,3.165930459463041e-05,0.009041717549071798,0.014170898792215704,0.045358908183931575,-0.002805158724310484,0.0010214240370273785,0.018043064852084054,-0.00036647608698352386,0.002381856946999051,-0.011962248122459657,0.000102460297005189,0.006256906049931021,-0.010614839279374727,0.015796809791795305,0.005898134403190032,0.00015859497406875,0.02506856828622766,0.013356335815094253,0.020434455014700734,-0.0009185157687705678,0.00037517006980528864,0.006754875799815343,0.001104057601946294,0.0046107443864309375,-0.03992892027578297,0.001855970322295976,0.006606415873526518,0.012433407903255873,0.0596987164806736,0.0032939233313118927,6.682139812653971e-05,0.00948142355321556,0.00526221377224945,0.008038230242255454,-0.03054785668257646,0.0016273659955180937,0.019891534457132244,-0.010741988490724944,0.03402245435649468,-0.018167764876214007,0.00012509359657110735,0.0003299635238091104,-0.014005378074605392,0.0377775745460124,0.0026760462067259377,0.0001502869054255597,0.007260461852206431,-0.0159749305786013,0.08003833521427182,-0.016291822698121024,4.871411957031472e-05,0.009684496813925395,-0.05656641478097478,0.14577618847489746,0.04335259055912228,0.003677817042075045,0.0075769934378906705,-0.023501752264131343,0.0954832873155602,-0.09594484601096791,0.00012243721773734308,0.003015663942352574,-0.03482340793896785,0.20197956085424382,0.04269450664639387,0.00012503299412076245,0.002325220630185914,-0.014477518590829866,0.08308369675047872,-0.010627380617540297,8.24189387461253e-05,0.004667647851309356,-0.026304889465491137,0.10809678747692063,0.03411933533901185,6.116050866553022e-05,0.015614291979003929,-0.03825900128391398,0.06358690434157777,0.007656730751677416,0.0002933562468552375,0.027892589093207614,0.010313646925685182,0.045462371154910655,0.01351641319416613,5.641239685641842e-05,0.014216717318941575,0.004419760070393434,0.05185566558212957,-0.013157581884595261,2.1990432275736468e-05,0.01495252225155553,0.031977663287855784,0.09767286578560039,0.07569293066518562,0.00011444103039335646,0.004399059634046755,0.004618966017576701,0.017723047219476783,-0.018288581224348947,0.00041080369708051885,0.004356385107307322,0.03547605191296988,0.14854923411486615,0.00477256117729917,0.0001367844286469155,0.008147745810555343,-0.008055737826360185 +2022-08-23,-0.05207415150624071,0.33914604436586737,0.1027414701701933,0.00016237607159021592,0.021010397568557774,-0.005873335201033662,0.019516796458461015,0.006954729219193452,7.220824357823747e-05,0.015410903458019293,-0.03673243282020164,0.12384745550576612,0.011033372445037682,0.00013720180004782643,0.011948382385959107,-0.0005371238521380122,0.0005685040656206101,-0.02294202728636214,0.0003188663716648681,0.014478658737246863,-0.008631134911414604,0.01981694208311552,0.008080898588180594,0.00022789197764157477,0.010467735798522733,0.009376147828892036,0.0268846403438293,0.016992643820270166,7.614948225356459e-05,0.004149626039698458,-0.023753986783366095,0.09225369584597687,-0.005818838320891829,7.555141313446217e-05,0.004923200109264834,0.036221659596827945,0.32146590267406655,0.055449600042202105,3.86395486261339e-05,0.004975563160594511,0.002494780771820028,0.0020765649972043208,-0.009160828266802456,0.0009264706069702398,0.00041704511465118265,-0.005185194807509606,0.009688938389591792,-0.011760073505783229,0.00018713316785426196,0.003120246384709329,0.005313349717804938,0.0038578824157144906,-0.0036900853061167505,0.0006731994820149327,0.007418109530679258,-0.01519080426336867,0.17923633180913062,0.028050114493751773,2.52567525910061e-05,0.003788711844820601,-0.012486812922004252,0.03402595586320031,-0.021437088839401187,0.00010901651854879563,0.005728387978248557,-0.01502703458408487,0.09541214934270516,-0.045818974468315676,4.4333439367761145e-05,0.005451512071559356,0.020954203874033368,0.015549940144214831,-0.0759583161836368,0.002628242392325506,0.009923572051650165,-0.07483920425187732,0.6252951964595912,0.07391602994355438,9.849091597359426e-05,0.016694491488655747,0.015631599122549373,0.10109123754909888,0.008489079390232171,0.00023944078499527017,0.028884946015305567,0.0023862196774006145,0.012559451524212204,-0.053609290072486555,5.35181022130496e-05,0.03820818235726186,-0.0025585864178476426,0.014691843679968805,-0.029663048069369896,0.00028701896811082474,0.03858575980358676,-0.03940655896939931,0.5979593182350978,-0.06753949687676708,2.734809668339732e-05,0.004537894963395016,-0.004564808134062675,0.04774620597505487,0.004689527359939922,3.194224011516518e-05,0.0013130255922398455,-0.0024456503343140024,0.007769099227852184,-0.039133623297571606,0.00010140198381492863,0.0032889545009471026,-0.06589345986245485,0.4625421709385373,0.056567981980733345,3.290662585020445e-05,0.018402035546888976,-0.0019065604031328848,0.006019867010291714,-0.007013902033591751,7.021680337878974e-05,0.0011211876923228237,-0.018511220743927918,0.07173217077824175,0.06243898715277487,0.00011799665108729448,0.006519196055373238,0.058407896980494735,0.05891725839629327,0.05246530867218285,0.0005666365717588357,0.012290764041361592,0.02497795886148578,0.09224193828532883,0.0004550393014375928,0.00011397629485973813,0.007102491665654421,0.07267570774246303,0.2555944403537731,0.06866832364887032,0.0018249755129608604,0.03539276923848594,0.017560820423422406,0.20390858429145722,-0.04823140329575894,2.214580582619916e-05,0.006640950306819957,0.028186567031654,0.08142084882959114,0.007069893008278062,0.0011318212107500796,0.010205921140917982,0.010172864433068828,0.07051622456065952,-0.04636944427080474,9.606824303988974e-05,0.004385326582451681,0.019297166531801843,0.02508915492311349,0.016020189099260337,0.00018153187684005442,0.011767993508728567,0.027709576556359927,0.03343536936109601,0.02020103981598467,0.0004756940045139139,0.008041371279345821,-0.009494685573753759,0.038627167709365605,-0.14233999688655555,0.0019051889904195926,0.017953407428607054,0.010994244338052224,0.04175542544674792,-0.19976176593684228,8.447784797137023e-05,0.0005387488371771249,0.012290245862235922,0.018506751154291942,-0.0715286813478155,0.0016508498602616113,0.0008462156180933724,-0.016109605623832773,0.053348988974217894,0.007367203895602193,0.00011963954473124368,0.006842673952354037,0.024915736252991566,0.07403586156766646,-0.0866915159241133,0.00013642437296856728,0.011927042310565385,-0.0042755301419678485,0.01751663773467788,-0.0030867476671713055,5.957350454658635e-05,0.008542910747381114,-0.015895153951393542,0.0420491681718417,-0.011859513015794167,0.0035828232817477633,0.02260417733718996,0.007190615283725827,0.03717011959172005,-0.029680317887635,9.623048304509574e-05,0.011883003361403346,-0.014959693143781982,0.08173955271742851,-0.05378074947196487,0.00013272453509564132,0.011541210078650792,0.011860015855089267,0.06535520075016638,0.00456103001007402,8.583290577980197e-05,0.0009143055941445357,-0.0011632314707778284,0.005627778323046218,-0.021814301520314893,5.194892391734067e-05,0.0048225990588370606,0.01293540834648979,0.02475088675486983,0.0032132530175849913,0.0002548113531293489,0.00040214478242161285,0.0005227245199694273,0.002247770948349527,0.001240688605439229,5.7827603494360016e-05,0.003930923847635151,-0.01783679260428749,0.202360526082066,-0.026204243554394543,2.274166450315902e-05,0.0031843447516042515,0.002880917970522374,0.008703470066530111,0.0005381946872194299,0.00011570374529538215,0.00267694450277818,-0.0007636189730249283,0.0029651805728026625,-0.007757069295361872,0.00040593223065364507,0.016541485962000883,-0.030483112103336783,0.14650286223953113,0.03066193770841024,0.00011917495307498961,0.02124106895544546,-0.002240798573917921 +2022-08-24,-0.004127809075359458,0.02311205552600483,-0.0019058941052433338,0.00018887201482092165,0.005432596281982037,-0.0011509039907869768,0.003902154457420263,-0.025738188150053073,7.076934347238588e-05,0.021262328359202606,0.016462853629850494,0.04835432145214452,0.018177686013535865,0.00015749509332718938,0.018068814790627018,0.029251835053554404,0.03181340564880821,0.058801481949722394,0.00031032074484420633,0.0076258976030739245,0.012364047197445638,0.02640652494541936,0.0005256378830484447,0.000244989332263186,0.005910925780634606,0.008080676685320578,0.02277394203375687,0.003044132314697704,7.747404999708783e-05,0.005446655218289248,-0.024389698278408332,0.09650378722947889,0.014580426461098661,7.415696131260246e-05,0.018832272185930424,0.004329502544532084,0.04378645002569696,-0.005161980952614364,3.390758642681505e-05,0.011731698268125956,-0.0022969609225851075,0.0019750004398355245,0.005023990479971894,0.0008968735095715955,0.012747259136434177,0.023705816635820515,0.05462058533154356,0.0021857325844829873,0.00015176109705786393,0.01289072192845038,0.011219063812420134,0.007655719211702068,0.0020077619970921994,0.0007163000475903996,0.006106360477647803,-0.0019558436370332778,0.023657891337623266,-0.004169067825749813,2.463660657130957e-05,0.00021468637745587662,-0.004749578598801955,0.014966659278308089,-0.03593943593400678,9.427167964351981e-05,0.016878526098447418,0.004772214603776113,0.025069311550357264,0.004323034201125024,5.358452387590712e-05,0.004984226786800139,0.009815912705500864,0.008778674019515247,-0.0010921190634348057,0.002180844686572662,2.794646819903536e-05,0.03165561138995945,0.2296426237893572,0.025162288935579428,0.00011343584573051423,0.000942165301013395,0.0116458977061144,0.05958228025620754,-0.08413448755337018,0.0003026663107159531,0.010475991318816285,-0.0020439033524798076,0.01211118287923058,-0.0023417704380912317,4.753732612859559e-05,0.005999283166196484,0.055136402691701676,0.27360400550898684,0.00546364402572665,0.0003321259304097697,0.010518789458217073,-0.05267600122458878,0.6354306928284792,0.005617841083306383,3.440129899721794e-05,0.008269738344500996,-0.019927874860924365,0.19876538305472505,-0.10850942398711365,3.349669404098567e-05,0.005908426741447639,0.011952739045666221,0.03766237574725118,-0.023621518545214375,0.00010223097009226618,0.0007224240208386918,-0.009381569769252907,0.0684586904430191,-0.0003274901079991258,3.1654780150124385e-05,0.0072270031664996535,0.005819752640029342,0.014469360010369317,-0.004396158975768075,8.917283743566635e-05,0.0020482197994490066,0.006848216086185058,0.032488435842145245,0.022729968535221284,9.638229169188115e-05,0.00996162381542375,-0.04316524906309953,0.04455289340180885,0.018046657161418934,0.0005537757051956284,0.03445958138035542,-0.007280460240330132,0.031978909520652646,-0.015529808879608052,9.582552190966724e-05,0.0011560498401490607,-0.024169358581362453,0.08670742768637162,-0.0011913642581264966,0.0017890727354941936,0.007725684158390175,-0.011704871899733795,0.11470772805629009,0.0022818446220099066,2.6239537888575488e-05,0.021465709170294438,-0.004776297228252913,0.012834882115718722,-0.010412803064341409,0.0012166642039142612,0.025599622600337397,-0.008037693608945476,0.0735476459757645,0.01805286140914742,7.277602208710674e-05,0.002801834958086483,0.025823806543467134,0.03428824905227634,0.023642990329930433,0.00017775439096302898,0.019481635688250128,0.03296375719025634,0.04471717730310305,0.01656682245820178,0.00042312261558144373,0.024739086915292422,0.028080788790435178,0.09453496122692205,0.050303147596504325,0.002302327991938876,0.002975850026924564,0.014615273636025017,0.0591805921981852,-0.026273129703677144,7.923517375621945e-05,0.005506078334348803,0.002018522898938434,0.0029340718515351483,-0.00039834588025352007,0.0017101733224740955,0.02556894363365577,0.013689936080346085,0.04525600468120361,-0.0037073750690077806,0.00011985088525882524,0.002496371530175191,0.015887766264304083,0.04127378617641708,-0.018710269274010215,0.00015604465888256346,0.03201281629474786,0.024130147277411525,0.09075209951197709,0.03789041299112541,6.489589355022269e-05,0.012393659662584025,-0.060108471636708946,0.1853942145970217,0.04509372546333859,0.0030729646610241097,0.01697045253892555,0.009411771110526782,0.043021996611107706,0.005310264276664204,0.0001088231682752231,0.012384972254949713,0.004604412169525171,0.025971368998063023,-0.04696565984038319,0.00012857014532875852,0.008591839382807184,0.0286162214960304,0.15421255489065727,0.017207536540974292,8.776902119308629e-05,0.004866313649729265,-0.012045256123547673,0.05576947671700549,0.005748727413620691,5.428337785553767e-05,0.0021342665046692796,0.06546818443845512,0.1134092574606686,0.03904825346307,0.0002814564362355077,0.02828753658459518,0.01395268844391415,0.0648377535531857,0.002472481647764001,5.351115355829203e-05,0.00618484888089569,-0.010048266147088319,0.10528784287229777,0.0021046489470937435,2.462318267873672e-05,0.006252618368992255,-0.010738051721400316,0.029067966012171976,-0.02172436476652836,0.0001291278179738535,0.013209101133287387,0.01348734054991336,0.05482115992144711,0.01121761573316495,0.0003877984546336228,0.0009352249115109916,-0.028238342625209387,0.13879735513646493,0.0180569462881036,0.00011652787020946416,0.013994248983899482,0.004795878404871746 +2022-08-25,-0.003480043931459288,0.021799572956096247,-0.04016380909514205,0.00016881977779381128,0.0028375427961198243,-0.009694190993009543,0.03125553788025405,-0.003303683795558023,7.442093487256148e-05,0.006996390208721124,-0.020572214139248785,0.070840834605797,-0.019323018747621185,0.00013433666785072758,0.005371567480612828,0.010563850799157979,0.011389276733108706,0.001948850867004229,0.00031303577231896375,0.005202360411163269,0.013437637351691038,0.029850240682809566,-0.0925351292775238,0.00023554443689043718,0.0201319503539324,0.014160935876247534,0.03652999357916468,0.02399271510192985,8.464262043771121e-05,0.006939655100919953,-0.008745807341343576,0.03405740091694939,-0.09114826445519118,7.534913301354062e-05,0.018252588334393843,0.009464868343303881,0.09793851586938845,-0.025344410386901182,3.314054706408185e-05,0.02096588925229317,-0.008756185440359837,0.00786141757682041,-0.030235447216159887,0.0008589321757429309,0.008540643219996293,0.00015526538170518433,0.0003630354219618341,-0.001179473920140427,0.00014955037961678612,0.010214482394893084,-0.02081009625771573,0.014809442833564498,0.021167314150850672,0.0006868465603180129,0.0017044717241429907,-0.0036116612024671545,0.05273737793494793,-0.00011244097119419844,2.04085081931408e-05,0.003634943863064747,-0.007854920816062792,0.02139607146168893,-0.022782368138204213,0.00010905832155892423,0.013725250491638046,-0.027611912695914516,0.16599548384509943,0.08081576931195397,4.6823302025291924e-05,0.0030094159215386684,0.0397827800239582,0.034216387907685136,0.02446882633841299,0.002267691332548256,0.000485756318948501,-0.03312968877474301,0.2080414096734615,-0.03585083066085308,0.00013104476488818523,0.03093349377716795,0.008967518246797777,0.05247586888593636,-0.015952829709369468,0.0002646189017651122,0.0183144735504114,0.0004977232537967125,0.002990018301442377,-0.034069539493646585,4.6889439461809904e-05,0.00893124340581467,0.005099310775504172,0.02326130979033762,-0.034980681120623545,0.00036129680656506695,0.014531196747522155,0.007744665495042235,0.10172008242580244,-0.014609650739593546,3.159556983877198e-05,0.006022601339972296,0.015114744479336637,0.17908147138992292,0.01957227157369542,2.819888034437114e-05,0.0017291745891923,-0.0208877177524672,0.05977030657432015,-0.013617232808715001,0.00011257145068505086,0.0030416601482800695,-0.044751964522655306,0.3024745251232117,-0.014890649563396684,3.417556296046832e-05,0.015401814989404428,0.012862306404944632,0.035543440940041304,0.019189107065717772,8.022999480886055e-05,0.0009408534949380222,-0.0020777828612166577,0.007886035677128823,-0.002008954066567245,0.00012047308113848635,0.009395979888758683,-0.016646395158720784,0.017393008614777862,0.0015037667862204018,0.0005470424760655016,0.020753426633107554,0.04278173172177681,0.1429702832123058,0.03546961002959745,0.00012595012173293626,0.008396899847702049,-0.04484103799973036,0.1479312683830703,0.01598395925090636,0.0019455161979660505,0.029403399443747764,0.04646090074876058,0.4238895842258626,0.051162066435805204,2.8184937450508418e-05,0.011965375232941578,0.024787427232440037,0.07412032142904476,0.0028862732927172675,0.001093365656026221,0.006957449486482037,0.019730398503056735,0.12930566367459392,-0.006106231510244695,0.00010161175502846023,0.00047663904873026185,0.005515137075803979,0.007812821608767642,-0.0368142109360208,0.0001666072090297174,0.0042013864877716595,-0.018708123645530445,0.022786905250615507,-0.0016509855646298624,0.00047124721746378477,0.014250974121226239,0.027520590114438057,0.12238113368037198,0.023711455237887643,0.0017429848461063121,0.0033673170133602416,0.016494930209259063,0.06092924246365416,0.031985171306146164,8.685904983266632e-05,0.007213230891827665,-0.016132626499549066,0.021553523279814683,0.0027926108857901297,0.0018606470472612262,0.0031004418465927575,-0.02950820147636086,0.0928608164196158,0.01803691436032668,0.0001259001591149177,0.020628554691200996,-0.0006532262921856348,0.0015660624306421725,-0.007681825309207619,0.00016908884657871684,0.024302165485528108,0.006054804647488264,0.02859880124353677,-0.004166533753600654,5.167330398283032e-05,0.0007886779926726795,0.0068966681780070335,0.023319887019378097,0.0017289366674898077,0.0028030506609560113,0.01168486985098175,-0.032146422551264334,0.12817458707193682,0.009229768002449623,0.00012475882985483235,0.002118286873299598,-0.016899666801996192,0.10420303126286629,0.0016135078637774915,0.0001176138790241976,0.004296624938364335,0.041919818377894005,0.24746363558941298,0.07079106824334408,8.012290777020716e-05,0.002722123780733673,-0.0009709948731260899,0.003827464252133126,-0.007282812571148265,6.376071647792227e-05,0.01549723487428636,0.008007593136738288,0.01368019614215307,-0.012547909730100075,0.0002853902083614565,0.012252809447639552,0.02063943200806116,0.07432110396879958,-0.12087506744919155,6.905576889909146e-05,0.0073843624105437876,0.03434059430928408,0.4941194160670942,0.10351161288703586,1.793110992160487e-05,0.0002617285088827834,-0.015044969350481347,0.055287566536046086,-0.04919874903172157,9.512020921805661e-05,0.00960399198559915,0.007233081508535037,0.03086194702965557,-0.0142704624036341,0.0003694264686444466,0.0035214900877426954,-0.009671851508411365,0.048681407107493475,0.0008676832921921602,0.00011379371957059067,0.001845522605166691,0.0005906437627271852 +2022-08-26,0.04884806246281649,0.30487541710461036,0.08128501035656764,0.00016943827396959137,0.011869220126266393,0.017940786078943654,0.059486926911811545,-0.02530233959675614,7.236531560148264e-05,0.0007798887938420308,0.006545304468127644,0.021236237796999534,-0.07653671453401677,0.00014257700189814913,0.013673175409951157,0.007044703936440125,0.00777477720672726,0.0018905809909633082,0.0003058036392843013,0.004173818285150333,-0.022446165158828198,0.05247702368800498,0.0016712201384258087,0.00022380548760655704,0.007978262277388747,0.014969331839629266,0.0385396990257983,0.03029966385457852,8.480878414269668e-05,0.009714504955289052,0.0641865763683998,0.3108749295130826,0.09761940135686165,6.058266404685828e-05,0.00738663633245998,-0.01871075024111076,0.1570053171958814,-0.001621836411220022,4.086725385495493e-05,0.016259926580361177,0.01644153961763061,0.012878517346932794,0.0023590365884891113,0.0009845128809323682,0.004348648149059132,-0.0062999709111763065,0.01428298265808964,-0.027443332399108924,0.0001542344970858957,0.007046173330680137,-0.010580379619249913,0.0074210329471616375,-0.028325721198508336,0.0006968852119357648,0.01844245936015797,0.009071447566155523,0.11844314227153173,0.008047266987881607,2.2823879378593332e-05,0.0059321033338091776,-0.02774491537528797,0.08487608325634434,0.025198771402959123,9.710668135117131e-05,0.0014024192024990887,0.021092150269983945,0.09621291737581358,0.0695909395797288,6.170911123708834e-05,0.0012487690766456007,0.0076827753401243854,0.00617986489728169,-0.07511853023846675,0.002424722963778732,0.011743266883118874,0.02471420778890532,0.16209188007517422,0.02355599854494712,0.00012546931932489518,0.02612051994217325,-0.03656958257699631,0.22685036076321968,0.017373432662604067,0.0002496253925160745,0.01642235623927716,-0.029057414073297257,0.18140952751831776,-0.05786900313488312,4.511882966683839e-05,0.010489141560454765,0.03899473658419551,0.2096776278504273,0.006411201821574083,0.00030650721622832195,0.01071123134028977,0.031139378674279253,0.4101924942638983,0.0073971887065225304,3.150304000747083e-05,0.008704305637532479,-0.003085525214619567,0.03126682635026066,-0.019199977666076194,3.29706118941317e-05,0.00664268532309158,-0.05192572260211784,0.13734387328458164,0.04631339197340797,0.0001217856206684186,0.002854794057262874,-0.03416806593321155,0.27128451789301516,0.007773052889182787,2.9092950170651952e-05,0.0012954004346859146,0.017649031430515157,0.055837747614990496,-0.004382768486152413,7.007617160113942e-05,0.00572699712634572,0.012783655062540195,0.03644155356847944,0.057715680644330226,0.00016040088341621596,0.00485744022941056,-0.010805506042613221,0.010532831949091883,-0.006948441703447634,0.0005863750957021976,0.0006744862469325137,-0.0061572653050171,0.02248313695682458,0.007928192084415017,0.00011527017964534306,0.021582877892875364,-0.03534357466205107,0.1191876509529988,-0.010653709974518474,0.0019032611658978261,0.01400346894036321,0.014224258026185883,0.16600960597203007,-0.08789551681144321,2.203325182997278e-05,0.00212780790887852,-0.018251376854943036,0.05207931633070037,-0.07614271831997985,0.0011457810306680642,0.001164875378837123,0.013401933237981337,0.09988136836648887,-0.0803790375613139,8.935289126237606e-05,0.000216749467922721,-0.0022310316285551815,0.0030403465769533802,-0.02543310487746674,0.00017319207706297446,0.026575816102720744,-0.026422562327684015,0.04044779074671414,0.033065899568146775,0.0003749592219549225,0.01006527210945035,-0.04675625695313814,0.18447589956557955,0.07484237602163821,0.0019644927982609786,0.006503092472821591,-0.000517220220933926,0.0019774722688405103,-0.01098729239460877,8.391806553180564e-05,0.009214307656227213,0.03061692954316862,0.04201498751851205,0.01063576461082012,0.0018114843556313782,0.00428925507283097,-0.006843622775823202,0.02243517555673244,-0.03545027964192954,0.0001208572275107418,0.0038265857970949087,-0.0005721898803604468,0.0013904784763992966,0.00021055174347372102,0.0001668154525890129,0.0011944108514594111,-0.01806068690788571,0.08940154750749241,-0.007482735896633092,4.9306383881789304e-05,0.018424673906753446,0.09007625275401476,0.2921665374754705,0.09685442438180371,0.002922118980116483,0.010762328986257444,0.0578642164031222,0.2607805898950468,0.11380916262204364,0.00011037618612040562,0.004391317224236778,-0.041177435193606816,0.20076049944335597,0.006329746421323518,0.00014874480590711133,0.0003303784981575368,0.034467665685736046,0.2215099557960543,0.03151427293286627,7.359822158127584e-05,0.0007538525536239512,-0.0002802984568614445,0.001179386285183943,-0.000296582206795886,5.973268386223068e-05,0.021265952207659467,-0.02159269463441578,0.04129632855824533,-0.026116360685379494,0.000254932259110539,0.003426548815810608,-0.004216011414729205,0.019638975186992196,-0.03772710656348622,5.338230625430563e-05,0.00805535306606469,0.007823674019894174,0.06767263586441224,-0.014657920115484172,2.9828330035043663e-05,0.009569709546359072,-0.004430628930211638,0.014128384656258187,-0.032091521122998096,0.00010961798966555707,0.004028934045337295,0.022748891049138777,0.09776948246238197,-0.11057585773826928,0.0003667624670640459,0.0046192503037990615,0.06119413952049799,0.28789737629739237,-0.013552134920419465,0.00012174297809020452,0.007438629349627251,0.0037582138241730612 +2022-08-29,-0.033465156417040134,0.16909168388740714,-0.06128040346523192,0.00020929420041451257,0.0019063160653351489,-0.020715770040298717,0.09150361464018578,0.008727748657128326,5.432170062760319e-05,0.002843521184346172,-0.01722162061909701,0.05147365075638765,0.0057877999904095865,0.00015476981045076533,0.021984956648997012,0.02312855415690339,0.02595436685303491,0.02751093732618243,0.0003007501840827854,0.006041365551714874,-0.023167832294724643,0.052088946175626996,0.0313276748691323,0.00023272208645507716,0.004562349084318365,0.011462159311869148,0.03524793380083471,0.0033611692871334522,7.100346059587048e-05,0.010479296985586563,-0.02147849064674408,0.0798231073832149,0.015777452542986677,7.895233597440781e-05,0.009475567400348741,-0.0314548853823247,0.3100281696804981,-0.06356840546172768,3.4792494330788666e-05,0.00586501746893497,-0.0004779412936117981,0.0003768965004453676,-0.00736476891568532,0.0009779062828299387,0.004438776964440144,0.04645442227108535,0.11013547789280366,0.06139126242939322,0.00014748970573873598,0.007741706325830509,-0.008516126585482798,0.005675330514078178,-0.013960000237642206,0.0007334580979883972,0.006058858590621311,-0.014532275171615353,0.19246189578233572,0.03593773589678578,2.250150894695402e-05,0.0057771828637922466,-0.020856947096371002,0.06174284331060112,-0.0037637638235040217,0.00010034948596496892,0.011829136454952364,0.0014056339700450158,0.007652376366126905,-0.008901916866768113,5.170561889498581e-05,0.009912679154943255,-0.02087414893831984,0.01881396029240139,-0.002106813195396445,0.002163971453277107,0.012125802624860826,0.013633276572477555,0.0975177161915533,-0.05594049496245032,0.00011504528680387815,0.01177474968452315,0.006777669466282848,0.03720916308635724,0.0019248295292216624,0.00028205819043018043,0.008449932079074221,-0.016559573842138808,0.11528588832294964,-0.004629517092233371,4.0460753070899424e-05,0.022982655903101598,-0.033455238524859106,0.17187596724115314,0.010687117387616168,0.0003208010513091703,0.00776659824710614,0.06632085229333333,0.7271002733846882,0.09502403795533498,3.785175514366561e-05,0.02547384522371687,0.009149976486435814,0.11387162253567097,-0.035935657357802735,2.684640751156673e-05,0.0012349355305769907,-0.0028721219906913957,0.006747936385262266,-0.02170100572840747,0.00013710543098988953,0.01729258769032239,-0.03567879948961042,0.29887112671584654,-0.010356247882017885,2.757519855077603e-05,0.011343924895529876,-0.0038118589411238585,0.010831089870979421,-0.01391284276715761,7.802648519137723e-05,0.010085605845135057,0.012323907590464664,0.0463685239223241,0.03001075832610315,0.00012152727442616138,7.228355559203269e-05,-0.021626424991020996,0.018731990951081162,0.0024193350604067637,0.0006598973059314368,0.001830035451127825,0.013854265773981859,0.05783422303836428,-0.004274429296001381,0.00010082880457823823,0.0051925006694843335,-0.05425038407380568,0.17965235662316953,0.009924136360985646,0.001938157532356502,0.014031132067321974,-0.028118852472124964,0.2533165427577919,0.032739780660938106,2.854409225165566e-05,0.007799751127532976,0.0032265231402178033,0.009335828022258888,-0.1933285089857503,0.0011299343491702142,0.0210707551969095,-0.01776288299786467,0.14201447540455886,0.09144452247919516,8.32926125844011e-05,0.0019009345832317877,0.03216530903165187,0.04558841499955765,-0.012098804091814776,0.00016652468525794843,0.007379446572560803,0.00745570480073556,0.011486437616988174,-1.1641423591343033e-05,0.00037256946647453305,0.014461422998769222,-0.009913796297461155,0.0406862320936165,-0.0036830258660435176,0.0018886125010047796,0.012421984946086357,0.0014928112127493409,0.00598049715313969,-0.027358786662445407,8.008625228443021e-05,0.0038414291138592523,0.01704274143195814,0.02179909656654249,0.00040034866599285843,0.0019434713894447783,0.027545943832783717,-0.004028621402614789,0.012115825324875044,-0.004795219093896995,0.0001317405550018408,0.005687153724564871,-0.021047225984357328,0.05557113713908606,-0.08666151120899913,0.00015353449203084978,0.002662153948213149,-0.02491851581532113,0.11526990874901331,0.02192681011576049,5.2761866071494616e-05,0.0021026691194294166,-0.03732208927307681,0.12649469452131362,-0.009282456088283994,0.002796479852273356,0.03555517963797483,-0.01815315081344121,0.09869764254866975,-0.0031128959307988764,9.149256579381993e-05,0.0015968344373794227,-0.010042357359483051,0.050225298274728276,-0.038338009256214785,0.0001450019796751091,0.005093524839736192,-0.014594075373346988,0.08635222714453383,0.026652682459969466,7.993771695584524e-05,0.004175366413551082,0.024021245720825223,0.10871445595750806,-0.15829376822005026,5.553357391931646e-05,0.008346713231247834,-0.08832754759407066,0.16976593812929022,0.07586026643273422,0.00025367344614146714,0.03128562502781315,-0.05366420575844872,0.22146562869810343,0.2800827828385256,6.025495249236386e-05,0.011143965518497605,-0.021016126508019133,0.22323252703363253,0.0233742218894687,2.42899423439172e-05,0.009031603818493448,0.030556352113762272,0.10991943105820075,0.10119371345441268,9.717084931564981e-05,0.004698756704352876,-0.014888103209630512,0.06333160593188801,-0.01968580840655883,0.0003705500199108277,0.005689915601317965,0.012219296175474416,0.06355590076800227,0.0009246368272849946,0.00011011896205203656,0.002811186138269615,-0.008510972271969003 +2022-08-30,-0.008759160202309848,0.05724221726841897,-0.0004795569306976693,0.00016182015234398285,0.0019215714305133365,-0.005466312845602558,0.01901973450625999,-3.8949045786603014e-05,6.89605250755453e-05,0.02410652844893149,-0.01730077588068237,0.06097880858087051,-0.086682444350359,0.0001312453272011615,0.01584376117151109,-0.010919190294374517,0.012045960142295281,-0.05173863017700788,0.0003059263387407857,0.016684091592830998,-0.004792286865364755,0.01022119295563828,-0.030613425092781227,0.00024532340972469567,0.008566982495165387,0.012067073874061508,0.031556126537467026,0.004101166008664687,8.349587540921757e-05,0.0020888200075920337,0.017665509657640376,0.06357283785890055,-0.023162148248481017,8.153506620805958e-05,0.0224890737817655,-0.005748280534775356,0.04507998370517097,-0.0023460384782931884,4.3727315805078414e-05,0.009957592318941081,0.013878983323471936,0.012674791486621697,0.006316389877656097,0.000844426039382699,0.0014618421705789569,-0.008635686076736359,0.023924803232639336,-0.21279956364987543,0.00012621482174802312,0.015063622606324453,-0.0034899640443760644,0.002641283098627035,-0.07690517189700048,0.0006458480587279272,0.00012672054207122545,0.008568782713499565,0.09490801236127967,0.007439591555882674,2.690537450006149e-05,0.008049088328120717,0.016972046427595693,0.04963783188994831,0.008741905826600031,0.00010157163541127059,0.016744996728854235,-0.009594615265646965,0.05328352996610073,-0.0030636381408782696,5.0686977464910155e-05,0.014540307055466063,-0.02944395430653301,0.027024188658523716,0.05337811794071048,0.002125036742700651,0.0027607666943011352,0.01804634655511962,0.11337668443389316,0.013075300331241619,0.00013098381894136745,0.018582818338125764,-0.006190658740262327,0.028867228233242417,-0.007969832321669253,0.0003320779277237201,0.024961838420303042,0.025507889481875497,0.14738354169524598,-0.027586296729130065,4.87513328865126e-05,0.02729506036069336,-0.025009520020272655,0.1307323766429099,-0.009370088318408002,0.0003152891370442372,0.010124588634230002,-0.059374043893991424,0.8004245023701029,0.03031197535456893,3.078268412072929e-05,0.001755912191342903,0.00723762293297663,0.06930176770044363,-0.0017146863524048306,3.4892601463812394e-05,5.749904693378143e-06,-0.0037529987329215897,0.009895598786009987,0.0018696954047030482,0.0001221684587518073,0.0019394053618698383,0.0667992060984101,0.5144666989067956,0.09344154826384293,2.9992067762828785e-05,0.0006366824179992064,0.0006874119885775641,0.001968252633246828,-0.026422918095089388,7.743078161188524e-05,0.006083440380257459,0.020071231227109784,0.06963417617021415,0.0943637905743746,0.0001317953743153862,0.004829086125234736,-0.013366694334045807,0.014003477938654784,-0.001282488782210296,0.0005455865641884176,0.021733628867636957,0.03330139539766291,0.11681601028973222,0.003957304234153944,0.00011999028129333321,0.008538892707318821,-0.0076606741094690945,0.023717208133702875,-0.00010393281360028435,0.002073111197576138,0.04395021023530514,0.03003632605897645,0.33221527563131015,-0.048504524505898934,2.324927462664674e-05,0.02378021284273516,-0.01877162162213768,0.05288386628591125,0.015381578438636552,0.0011605126075612316,0.008129247147267173,-0.009062710025858154,0.06996896102477186,-0.06386998876964062,8.625381291994962e-05,0.0016441563890614709,0.008650381210673857,0.012058462909846208,-0.009869602302187037,0.00016931236693145846,0.0004722863371879934,-0.043795123049893116,0.07466962567879044,0.05140495766909151,0.0003366554817873187,0.004925741433610251,0.014920970590956985,0.05317698442270509,-0.02824059991692098,0.0021748219618632656,0.010015222146506532,0.010783828934377846,0.0387089499118146,0.01619296301861418,8.938239149033457e-05,0.020217885610187718,-0.02045439633594782,0.03006591987795075,-0.030537372354332102,0.001691178165296765,0.012218087809577468,-0.020297936231126124,0.0731550784108951,-0.15579599703743652,0.00010993182558209535,0.003333259833198314,-0.05008483830904199,0.11021082510658257,0.07511646602010735,0.0001842223840841928,0.010938051055940024,-0.006665468040442991,0.03279745747670269,-0.004206971705227995,4.960259502670307e-05,0.01381164534125918,0.03757942030580107,0.12762760356676264,0.008852762916907854,0.0027907666196356137,0.023014781098814097,-0.023200613671911514,0.12190722292387336,-0.03754892694762424,9.466961372291193e-05,0.010656354855085114,-0.019750652005335285,0.11457684068451658,-0.028693670969498777,0.0001250101794252353,0.011578457731395516,0.02613617311762799,0.13149044185376066,-0.011567238841141463,9.4014861821955e-05,0.018686045386488277,-0.014112405665309313,0.068694723935413,0.00029806588253951307,5.163272713780947e-05,0.010195552365991942,0.08750340262017396,0.1518730658432933,0.11734207634849123,0.0002809141237503607,0.00435946591022289,0.009369036211758492,0.03429434997388932,0.013465634626744643,6.793392663591839e-05,0.005561156140786704,-0.02912993607937082,0.3148156221887916,0.004068098300480524,2.3873414679138568e-05,0.006927100300993089,0.008023930112522006,0.027782842060323165,-0.01477686462032536,0.00010095304708375123,0.002593372246397529,-0.015017915025623451,0.061609446588933824,0.02125505741179455,0.00038422914629908974,0.004824604166488704,0.025952557235685476,0.11575167102811956,0.009499115337133174,0.00012841763992839912,0.008870247179521302,0.0010433389949199106 +2022-08-31,0.039809800815899604,0.260978045629819,-0.005566731971007779,0.00016131420569445357,0.01679609045180911,-0.06782116589173905,0.21895676006294967,0.16072320140828572,7.432200544201068e-05,0.0230983883047293,0.04430125775669265,0.16756264591884698,0.11217769141366217,0.00012230270186880038,0.0008781148803604929,0.0190998443103318,0.01697296889007356,0.02042611506508981,0.0003797868018401138,0.0069550421607417635,0.027131882723709855,0.0584209549885597,-0.017990071644548238,0.00024300155432738585,0.008862648265454688,0.00889618149553909,0.022645969525971036,-0.020134818956516563,8.577474899661603e-05,0.0027372268579240466,0.01239590348249917,0.0486107756892451,-0.012505209446556424,7.482306425346122e-05,0.003539575669203822,-0.05839378070937167,0.5611397022899272,0.07521251418661899,3.568569930186095e-05,0.006913876782447678,0.01513382736715319,0.014030401257162517,0.008383021051615635,0.000831808723386958,0.0005297287695054038,-0.01687694785747176,0.03723987205175175,0.020939269940973785,0.00015847020321033234,0.003781362760161288,-0.0025460639912759453,0.002420541665781057,-0.03674013004442198,0.000514139665043843,0.023822876070191165,-0.016717078010038525,0.207782265460366,-0.041438645773052785,2.3975886908513763e-05,0.0009631754139312269,0.015025217291720844,0.04394096299156339,-0.015882137313293024,0.0001015786013706041,0.00961977596667455,-0.007336106183581266,0.04281624119348468,0.0011706246971700217,4.823018067405828e-05,0.010068173774095987,0.0036196562226427234,0.0025439231100059974,-0.0061207419408013,0.0027751490737342446,0.0018244934754860262,-0.009934068672954738,0.060571767091898626,-0.03313553880424834,0.0001349612282203832,0.014850506846610908,-0.009491810897128054,0.049381900248844555,-0.08420435322022601,0.0002976387770039542,0.0017792636851225176,-0.022200233724237534,0.12738206012270098,0.009247971656928342,4.9091944477675696e-05,0.02381147831511409,2.823137434122225e-05,0.0001390668521441156,-0.023146629766264804,0.00033457632295115654,0.009307575135498253,-0.0009536068731481429,0.01130594119812568,-0.0094532965182748,3.50020016939172e-05,0.0052046399824976185,0.008264464126338052,0.09512067938599052,0.013189751377125974,2.902829075415652e-05,0.007680500681774794,-0.011427920363782885,0.033626304794962626,-0.029284940548855217,0.00010947395693581053,0.01903752420393724,-0.017934917077896306,0.10135913086042071,-0.010412263651500601,4.0872280602270536e-05,0.0017844205640765538,-0.00978042307267128,0.02841089567870463,0.009073435570248048,7.632206254983003e-05,0.0004085593779888589,0.012475123321748773,0.050154786557544746,0.03288775379559899,0.00011373157581118285,0.005985530548282313,0.02499061371570297,0.02065521615854211,0.01264866867780172,0.0006915486513705321,0.06036371338295316,0.01589236791588601,0.05599552375096706,-0.004794608929977479,0.00011945966940769598,0.011252851569011678,0.018264400806950177,0.07104626972321117,-0.01901097003452885,0.0016499976416250832,0.021889201574396645,-0.0006517114541238025,0.006340355365249055,-0.1415546673351865,2.6431630184874903e-05,0.013902482560823345,0.0042147935756883395,0.01360480222825239,-0.014089430141049337,0.0010128738208494258,0.005232588021420518,0.011091847248422389,0.09275403375484194,0.004926729281105791,7.963366753994804e-05,0.011604543031666477,-0.009442457634200051,0.014307975108280392,-0.043434656371655576,0.0001557586790151393,0.0035003356191568176,0.007243765266757217,0.010178462839550352,-0.0029555697760369633,0.000408494380989726,0.006555380916255186,-0.015188446332642751,0.061755504180088815,-0.07110670170595212,0.001906285833466172,0.025454943109952447,0.016245854668357096,0.060069791208360604,0.02098157695049798,8.677144140613774e-05,0.022810458227430778,-0.0379452810830909,0.051322617220813,-0.05582661561579392,0.0018379181676171535,0.001802302259423926,0.0038247029230230045,0.014502891977340353,-0.11320995726292558,0.00010448624744370291,0.0032162314827010275,0.027414578872864633,0.07625372442282753,0.023873111098571195,0.00014574071452472479,0.01738807279521194,0.03057539669220825,0.13236745236969666,0.05251066561231494,5.637737038733458e-05,0.01815459068185452,0.017406554326290544,0.0583295711420863,0.0016899636876449588,0.002828408179160436,0.03156912116681549,-0.030271513092490644,0.15696329462996395,-0.0012159240132563656,9.593489269131549e-05,0.010073184571681588,0.02231909200940214,0.10909099224305698,0.024515726485926464,0.00014837079202837964,0.014495430929499604,-0.025327027233691693,0.12146119722044096,0.047354255486697666,9.862689449224381e-05,0.0061771222638147185,0.01273580404033825,0.05521722154656693,0.011162999383045975,5.796945445696789e-05,0.00014445085950599834,0.00010927852054706583,0.0002576009630621207,-0.0030042165787292872,0.00020683151756736826,0.03538300061056483,-0.014518113757460625,0.06456511732959432,0.007999761307236316,5.591478075256482e-05,0.009726516385069706,0.012989003347481194,0.1495784973330481,-0.05898440987843356,2.2404638874901988e-05,0.0067942331715310665,-0.027776738915179577,0.08000836314600317,0.04165305468732297,0.00012135420675822127,0.0011710438435113635,-0.026029870246561077,0.10489271801573438,0.0631788646202621,0.00039116017794156257,0.003481106761696528,-0.013741515035088393,0.07505220025397161,0.008440286953558113,0.00010486799982858201,0.009210469225371182,-0.0005395765498600493 +2022-09-01,0.010715772308563493,0.0687242898748343,0.0020067007901558233,0.00016489208136399796,0.005587744284003485,0.04968891117010471,0.14206202605220652,0.013376264295449327,8.39251261247033e-05,0.004647803461467963,-0.04211916130779631,0.16247824957695453,0.04943063005915888,0.00011991725748727195,0.00114341836806417,0.016152871878985585,0.01578739469193429,0.00694505621085343,0.00034530839590109203,0.004811123341730821,-0.04444478387735288,0.09834646742673665,0.1186992097631638,0.00023646115477997018,0.002976003333636963,0.011105643140826668,0.0316944733511986,-0.05861960235774847,7.650801144966677e-05,9.454223299387569e-05,-0.06151289037392636,0.22972250979311698,0.09606533228743601,7.856921914062597e-05,0.004980604966475092,-0.026073247607400565,0.21421640201614303,0.00448667068060397,4.1738902259797575e-05,0.005371368970401147,0.023867139786664146,0.0163957643736642,0.02921916742825039,0.0011225701633622545,0.0002493341245509027,-0.010703522422308228,0.022244991839638625,-0.026263766931373105,0.00016825049817534177,0.009441470777214148,0.015924792186737268,0.013888770076152688,0.018949898909660135,0.0005604467351137332,0.0025318382182468583,0.009532464219496904,0.10614072712914707,0.014972994234767304,2.6763685308881675e-05,0.006747348390589704,0.0012212631207214717,0.003404279864571905,-0.10349414831881516,0.00010657001438978584,0.026679128947561578,0.015426196012588784,0.08314536611176766,0.03272664085922589,5.222550086888893e-05,0.017845435916748878,-0.05648599515403211,0.04527825947099863,0.16578476252357802,0.0024331788518139282,0.002004532260698996,0.06396791326878827,0.4528005819181339,0.08960374280079184,0.00011625384214172722,0.04938257664806288,0.026255888204024556,0.14235637968930975,-0.01692297650642143,0.0002855998740931679,0.018149036243469606,0.00019539994027723,0.0011088187950129096,-0.011277257696437145,4.963920344494863e-05,0.020843077266823593,0.0030817788869377137,0.017092467110252488,-0.024432365578751378,0.0002971553338171083,0.017585599370413017,0.04026418478010838,0.4780510248724921,0.0015713840890942375,3.495222988565697e-05,0.004329189876109687,-0.002010398303178668,0.01947425572117565,-0.004710026508598756,3.449077472947701e-05,0.006715263707983773,0.00021093223818168942,0.0006085866717850162,-0.05788963716952817,0.0001116460287409216,0.0020118508683797227,-0.0187936926051615,0.11809050326454984,-0.014569515208936784,3.676118663644557e-05,0.01105203418084764,0.01844430391295095,0.053323450140371896,0.03680978930720254,7.668694032065532e-05,0.00654576265404149,0.003772515472419638,0.01360302366601104,0.003032897405804129,0.00012680727548509073,0.0030345776365096728,-0.024128688966202558,0.024009624606086733,-0.016364924180977434,0.0005744125456122988,0.0022428722607073137,0.008947961866494158,0.03243439723060173,-0.07681445907839399,0.00011611927145912023,0.009326466444753751,-0.024591007537921185,0.0984961385684182,-0.01990478696446458,0.0016024197639436218,0.0032680794301634883,0.0434389794448218,0.43232934252439414,0.07416128169719415,2.5837298117441367e-05,0.028330635159476564,0.009381329815799835,0.02339479232104255,-0.004660456603355839,0.0013110416235170754,0.032230182777003825,-0.025887080773941976,0.1999670428089563,0.1242590799525411,8.620854155531985e-05,0.0054554361715064125,-0.016986328914610844,0.029201513317646415,0.02839918434168726,0.0001372902060978735,0.012716209477524665,-0.04641708075758036,0.07007912865938182,0.05207093621015784,0.00038018330696919087,0.0272710038543998,0.03846362199329703,0.15247737509864867,0.08746998853214659,0.001955217663943384,0.018661003394476402,-0.004223762031719982,0.015814834963018214,-0.011946450785408257,8.568901451381639e-05,0.006322229274996503,0.028361415936919616,0.04428389621182393,-0.03316967172443648,0.0015920594343181885,0.00015969712556432585,-0.02785417035735528,0.07727830662339079,0.009026445292752674,0.00014280672744603057,0.010530749614417575,0.041649622130734205,0.1126141099514512,0.04738187742700833,0.00014992657952417885,0.013616583874778928,0.023736436665650715,0.10008594481465533,-0.052485470382075156,5.788370941046049e-05,0.004654198829321662,-0.030669762232475185,0.09894045138427228,-0.0001233311124144464,0.002938018862624349,0.008097982138268464,0.0012253733385184371,0.006386410905189254,-0.03870267170083051,9.544477085758165e-05,0.020847301596488284,0.04784548946381762,0.25663106190992285,0.12514333912321415,0.0001352049416895821,0.006405335657200395,0.015791689557880406,0.09194575842789962,-0.0036665455708924173,8.12354512105593e-05,0.009624761407589924,0.06017486470296329,0.26278185728858916,0.12878989379709235,5.755289040957481e-05,0.0033346365784115107,-0.02146682783668585,0.042671103839497244,-0.0014042816588448203,0.00024528070725482617,0.002298651599872061,0.011511141130759774,0.04169042622006021,0.011900925250563542,6.8658833298967e-05,0.008188247268120681,-0.002151182758917217,0.024470707153818657,-0.0286531293340961,2.2680993503608327e-05,0.00555054267769785,-0.026745309058948404,0.08143713465161767,0.035786450160947746,0.00011479794151900975,0.004945891632441345,0.01205764937526005,0.04847363078319794,0.0013923822075638415,0.0003920893726805001,0.004095223773504064,-0.06987859931675341,0.2992188725491644,0.07162207947983863,0.00013376022941720552,0.0019331273404809598,0.0015924517152330086 +2022-09-02,0.013341324742995224,0.10154991432076077,-0.01405378918307591,0.00013893318059199936,0.0025875924918780033,-0.006312526656853111,0.017964552476013567,-0.10616423815194032,8.431354483278344e-05,0.008417060425832314,0.013716195997795989,0.04313800342518997,-0.1208677931768482,0.0001470858336254768,0.022437251339230472,0.015951692920211168,0.017328411861234464,0.0060417653476474795,0.0003106818447483741,0.011939990437316611,-0.00865161673907491,0.020680748059762263,-0.03426815905070628,0.00021889145124053818,0.008112553634089767,-0.026277868203218896,0.07576070246206337,0.15065567296163246,7.573434558773775e-05,0.002247561707698903,-0.0005897276270997731,0.00206258037408133,-4.36708778894336e-05,8.389391234056154e-05,0.02702145324017007,-0.029770955412392747,0.2737767973409661,-0.008323962400019426,3.729020303647249e-05,0.009549267813667599,0.0068781423989916456,0.0052381512901573226,-0.0004674787907939034,0.0010125999736258224,0.008519423150146463,0.03017267676952183,0.06107047527122207,-0.05915898153129727,0.0001727604898868563,0.006011656855962195,0.01720874344232206,0.011993201979730642,-0.18655744614568057,0.0007013557637893223,0.006763776795482578,0.014409428928638812,0.20449673422750442,-0.027579517125899195,2.0998253862878565e-05,0.010064434195005823,-0.032188006340459215,0.09131521162251521,0.027241899411571777,0.0001047133336845478,0.008781598806619306,-0.016868660936507525,0.1076158482588543,0.024511684395737615,4.412311792970193e-05,0.00886544893907043,-0.010027410483536794,0.007525918478729227,-0.032830620636128224,0.002598676723960893,0.006838393636105125,-0.025156071030693544,0.17608047120868173,-0.017050756577049665,0.00011756653764595425,0.037259634498184896,-0.04520923416056584,0.2667870404556589,-0.020258545731842145,0.000262404121936366,0.004473360951087261,-0.01931408679492549,0.12054506750808933,0.0029618612410923714,4.513211542916391e-05,0.0033932726515598314,0.009455572906810466,0.04796929828911805,-0.014766583112147546,0.0003248712575325167,0.00593692770077634,0.0122670265911723,0.16577688686317013,0.005196743258692603,3.070757761560885e-05,0.003731143932378641,0.013766101122348776,0.1593663166136987,-0.022940693035645297,2.8859986890831547e-05,0.0011493871262463194,0.025429991795796792,0.06606094043022262,-0.0948610980903822,0.00012400072487728431,0.0009681037357990491,-0.0007130158626690784,0.005282615208159654,-0.07086208821309502,3.1177593519637846e-05,0.040718303990422935,-0.031905853881312896,0.09413934907822803,0.12362539964697593,7.51409295241743e-05,0.00952488767180908,-0.0006125946878227054,0.0024959726039250583,-0.02430166268821619,0.00011222303452210012,0.0008084183999392759,-0.02767416528497154,0.030439111623776268,-0.0129528560502624,0.0005196585995535475,0.0031239659284514297,0.020362258520815586,0.07620856899828742,0.008248924921554828,0.00011246260767397294,0.010942431346297323,-0.01413054717572685,0.052747813693397226,-0.0034420903629302072,0.001719387204451252,6.6037507040388535e-06,-0.02141441985912083,0.21217884090960962,0.028505151574312573,2.5952932430310993e-05,0.0036139526249271293,0.00013794628084236877,0.0003827711088083109,-0.0007132155104344149,0.0011782626620714955,0.0038785171427649237,0.007554473817509602,0.06629411129943713,-0.04129210320440799,7.588482038305728e-05,0.00036828747861552516,0.03461987247205145,0.05375587153112459,0.004559126949364626,0.00015200047414236576,0.007514108347264154,0.004898178135282079,0.006049351126549895,0.0009188384964727604,0.00046476101968287057,0.0018368981283807258,-0.014101076667743373,0.05568311766251559,-0.04186191969775198,0.0019628136605413502,0.009526754533270957,0.028405528183266436,0.10348403200320373,0.048302093811555175,8.806835774993616e-05,0.010960624739864816,0.04321229793001825,0.05099033190228585,-0.037374661008526426,0.0021066709891535192,0.015212459362080879,-0.04123325659850934,0.14554169793472507,0.038071514024612986,0.00011224738598914314,0.009858818239452418,-0.010873621415445857,0.03230497902018669,-0.0903244116378718,0.0001364473548625198,0.006139517301773421,-0.013183010768216463,0.059487472524311226,0.001441652584026473,5.408826050640531e-05,0.0035545340518854983,0.020515922754764084,0.060562790764427624,-0.013939121161361489,0.003210725917161521,0.01658609011756486,-0.01869428525138648,0.10564491331829189,-0.00525023788406209,8.802394828345909e-05,0.010977024841017249,0.024927507342224806,0.13105099125541314,0.035393247273265295,0.00013794289205552732,0.008651141453860301,0.020360615032419607,0.10968702282602971,-0.1086913043802586,8.779794329438474e-05,0.010102846615790733,-0.02209690244333276,0.11547148079519672,-0.012310872815364035,4.809545725082926e-05,0.025267640626427453,-0.028147961383939813,0.05175453849937795,0.003588473916706602,0.00026517214417976523,0.015008710765694693,-0.001482021070604846,0.0059658318957117205,-0.0007709910906972104,6.177286474733848e-05,0.014833419624378778,-0.021924967047483278,0.21028688423097772,-0.03148226653316781,2.690035730378604e-05,0.01939856646363817,-0.004109624535741517,0.013613001725866871,-0.054904644399878036,0.00010552544945064551,0.00033599722872690535,-0.0030680286383571193,0.011040519985863487,-0.05275529696348381,0.00043802394457448547,0.0024505788256506808,-0.011840559819193441,0.04685861403050476,-0.015264268361003377,0.00014472867735215231,0.00578912470532346,-0.0021506330555555817 +2022-09-05,0.0029459186623923203,0.02119146225448691,-0.003693089371964008,0.00014700984193871357,0.007262647354397649,0.013167173454389915,0.05083332673800297,-0.024818427057261772,6.215192017259407e-05,0.010774207575338972,0.050438422236733164,0.16174899195316966,0.11060743229703385,0.00014425042942655113,0.0038136662541004653,-0.0024830041690897396,0.0023621363980367736,-0.015630982181838955,0.00035476464566576893,0.0018419973075894896,0.032117069156005526,0.054630132044606594,0.016418752406896935,0.0003076106935826299,0.0215224426155914,-0.015631524318548327,0.04023768603711078,0.03173505961077037,8.482328210177987e-05,0.0011249075175482554,-0.01770110557336427,0.05972221337417196,0.007558414996557409,8.696697271309286e-05,0.021492859425242535,-0.04844554206801494,0.4476514974350176,0.020752967092759752,3.711183192012967e-05,0.003022380754108979,-0.026172851393442016,0.021536153807207054,0.10331968957892755,0.0009371900772123171,0.011002872374779928,0.005659705362398804,0.01249151827287772,-0.008377333973373828,0.0001584311161042301,0.011887028447981222,-0.01365991916863506,0.00981203515363844,0.01074222886830268,0.0006804769083478783,0.0012556484246248486,-0.01299042309471554,0.17549645720584933,-0.04052237462319809,2.205858915284171e-05,0.0008354419159744249,0.02787658442739573,0.07994536988414473,-0.04961185772812533,0.00010358509829481881,0.005743023497265869,-0.025553614263897507,0.13935997515528623,0.04149216160802831,5.1615019155243485e-05,0.011647572382901893,-0.014335142369114066,0.011298469657710601,-0.11085409335358731,0.002474601999022669,0.00471729201561731,0.06456055454211303,0.4989847515457594,0.07363488305732503,0.00010647118449406504,0.04425465978795552,-0.023281620379787246,0.11299393171868874,-0.013175021656041777,0.00031905555829697847,0.025542007919387523,-0.026387191005937467,0.17785307730586097,-0.002599664823933047,4.1791959344469804e-05,0.01216408254603603,0.03178935224654079,0.18495515640493163,-0.22511572400568539,0.0002832709522401446,0.008354117146303797,-0.05395294956119299,0.8255942652711619,0.007914276987401565,2.711931751253678e-05,0.015676279403016854,0.015207177036721904,0.15900807474876152,0.0067236284028856005,3.1952962648021906e-05,0.008940984284142493,-0.0011721023691101287,0.003426949684684428,-0.004495908585139959,0.00011017436891216691,0.01876735088647298,-0.024298542680238254,0.1672024153364809,-0.024541580584508404,3.356835478503149e-05,0.005419801899061651,-0.020900085890200846,0.05795267875368635,0.012556563533196412,7.995616176489182e-05,0.011779151034696872,-0.005073129575507848,0.019021291001483573,-0.057229612943122066,0.0001219507739413098,0.0043320737989123725,0.01217015246991446,0.012714113878898895,-0.18535360262532335,0.0005471236443418746,0.017806150575621384,0.02262418659880307,0.08260564347942931,-0.06291039904511789,0.00011527875156612877,0.013219493138597986,0.056059135426175924,0.1921497976507713,0.03015836805611643,0.0018725164376793032,0.007239455410992361,0.009336672953454164,0.09002533429032887,-0.006010820625723829,2.6669176101410552e-05,0.006789693565591448,-0.026799117537866454,0.08268238131920207,-0.06181245120300684,0.0010596898805544633,0.008840811507040603,-0.01975099520963963,0.14272904770104086,-0.013724960487928607,9.215146814896562e-05,0.004842073283560871,0.02789265840373677,0.041754425109468286,-0.12857768435639771,0.00015766408904845558,0.028320412896811874,-0.0023101692489527906,0.0035931501239350387,-0.04631910029617311,0.0003690390721939066,0.00795993447860977,-0.047674190822754065,0.20506857347190763,0.08436431012302499,0.001801916081805415,0.010550239973517938,0.011111480903675064,0.04972049473627732,0.006891240918179024,7.170127414914217e-05,0.009278145481928375,0.003048499418224983,0.004783048842667628,-0.07470660040318625,0.0015843768661228485,0.012793322797885538,-0.016550944562905404,0.055195857468668924,-0.062496566196371714,0.0001188043482133471,0.022442656324848563,0.02069004309879111,0.04826500292207505,0.010639478156968321,0.00017377585525411206,0.004124627224847411,-0.003699996023253776,0.013656455764335924,-0.002860906376811199,6.612675023117883e-05,0.005820427502033269,0.0175485091225624,0.06625381734028937,0.0013733651484047176,0.002510425731447672,0.03563866974240402,0.013179351552850686,0.06910460127339206,0.010445092635936116,9.486972637045287e-05,0.0010098053034267986,0.002652267873444127,0.013163904771974926,0.0030537138131130994,0.00014611454070053334,0.005175138006506328,0.008921073092579716,0.05554956093550386,-0.011642539930407165,7.596003667979105e-05,0.013864546690876865,0.030952247460238926,0.14467546741138299,0.02821750355363821,5.377057610972918e-05,0.009674044445936364,-0.053074724025853975,0.09733170408360585,0.002210619832923848,0.00026586600615596145,0.024090775587473696,0.012460779924403148,0.05509807092321056,0.016637042963907403,5.623713765615453e-05,0.005251692864651371,-0.0012807865392091857,0.01249347931898775,-0.008586472201703131,2.6449936749165667e-05,0.01413876759457221,0.04731941295714658,0.1443974009769081,0.2015846031354603,0.00011454837597425119,0.003242701498973628,0.013574371678558279,0.054413941602887345,-0.006495617523028988,0.00039322174045809617,0.0070473499196940315,-0.015716342411951627,0.089455301261039,-0.06269009043208465,0.0001006276187258067,0.006940715162937315,0.0010667348684936886 +2022-09-06,0.007935003674064111,0.057436974361715736,-0.0054786559347505,0.0001460972905593622,0.007867882095678683,0.04204452332674117,0.14667392409811641,0.019931618099709034,6.878077238175776e-05,0.017900544833754074,0.019615402326099006,0.05881042191280916,0.014541599813060904,0.00015429083509652753,0.01890593117650742,-0.007463386654249211,0.009179672304074083,-0.009011408551055729,0.000274395269441228,0.0037213867933722005,-0.029838289535800207,0.06490686336008195,0.038143915481765836,0.00024053654791832444,0.02424122894304728,-0.017975523019422,0.06255092374747176,0.027222689652668743,6.274722843795911e-05,0.005156370013072186,0.021503044899703873,0.08934744895911398,0.008384490608843416,7.061673922883453e-05,0.004665291492690914,0.015396675539965338,0.1464540511968464,-0.01089015498461929,3.605157002271441e-05,0.01810688476271503,-0.005803764619661866,0.004533820908195222,0.013183569508074523,0.0009871660622656354,0.0010335135323226658,0.013169951986793788,0.031990527176700354,-0.005766819875239022,0.00014395431295260685,0.009147398506311208,0.012236466225876687,0.008361754622488577,0.015691295402450286,0.0007152913203290796,0.005428667121576736,-0.0038273356320307843,0.053391929500652156,-0.011136589403178774,2.136208910291801e-05,0.0062956855979747345,0.025551142396265977,0.07108344882902745,0.010381382903352518,0.00010678072602549991,0.015390591209445944,-0.013380956432202688,0.07814212323751439,-0.020916048162614876,4.82018567278395e-05,0.02404155449404674,-0.01961234013873495,0.01681825057111166,0.010095142348585929,0.0022744247391896497,0.004557516303507075,0.009957533226694501,0.06599865799542229,0.0018570674158561345,0.00012415630160793838,0.05687731072281757,-0.00011770489222831336,0.0006357455679170524,-0.04150491387792777,0.0002866945285943564,0.005121886483094579,-0.01097562624618429,0.07143138578774845,0.00010124519307318455,4.328138900727353e-05,0.014555595259381387,0.11461948870562537,0.5555796564769252,0.3277140982363327,0.00034001567542262423,0.02156139789385073,-0.006655271815206014,0.09401974335186063,-0.0038427361109700637,2.9374938604960146e-05,0.0033967027487941262,0.004771430048637749,0.04969877411582101,-0.022789520260734775,3.207632416974248e-05,0.00013705221609722315,0.009379106291077018,0.024756975110148523,0.010793623448167793,0.00012203562603921439,0.015276543762140594,0.03796104724407576,0.29361241669461297,0.006503922141434539,2.986456156502961e-05,0.023116755857828297,0.02398769630922832,0.06982235723781326,0.053483243061631124,7.6167801000398e-05,0.00903884919720603,0.013248547599378381,0.06007035745065344,-0.001963784990634901,0.0001008455293037773,0.004996153125822289,0.020490752823433565,0.02086282975073803,0.020443486832095032,0.0005613842988709787,0.01579768183073923,0.008661647099241915,0.033135352599934415,-0.0063334437981691655,0.00011002589197063455,0.004300248468790648,-0.015501558664472937,0.052419924531165965,-0.008257780027244331,0.0018980084934291047,0.013993778929852629,0.025250229739016545,0.2902232438008092,-0.025692300623835058,2.2372542270771095e-05,0.000960430243351274,-0.04748040815588308,0.11171053633570041,0.010474684394441018,0.0013896056667655416,0.020159093271574956,0.003078370392986982,0.02175438020815244,-0.00961236798253557,9.423230232383529e-05,0.0060511678971994914,0.01699711184046436,0.029332723955280037,-0.018124949491550288,0.00013676284391404104,0.02211273653854401,0.008928706750010406,0.013248478542235672,0.0016918453488828265,0.00038683562827863136,0.009154936190524775,-0.021014839930983926,0.09577377648482589,0.0010036348019617535,0.0017007082363611284,0.01571612210698957,-0.027068421004425417,0.10736121864958659,0.030770311084159688,8.089205351630997e-05,0.004787949694814962,0.005804605574187513,0.008624307028468569,-0.09321441119228621,0.0016731146316369826,0.0006072861691552274,0.03349904284784955,0.10138825998173105,0.08894408787481442,0.0001309063654459057,0.006090882959066634,0.024266843770351914,0.06981537602941798,-0.05342080173345154,0.0001409037620767196,0.012918101065008054,0.021441301710828548,0.09094711834881428,-0.048732173793754975,5.7540831050278156e-05,0.00794112703996643,0.005090668222993239,0.017756122573615817,-0.012432138511899685,0.0027173446003792186,0.027630730111211116,0.02114123527497161,0.10874323448824401,-0.14801623601357214,9.670939879632437e-05,0.010819199722224004,0.013927837871685608,0.0751232821497551,0.013436682817495153,0.0001344528254208036,0.0028509300508844653,0.018190782722504177,0.1040971930548907,-0.037070848346117034,8.265346526471907e-05,0.01637223071745497,0.012065234678339903,0.04880128805964436,0.0010890038845504978,6.213722923308989e-05,0.008840718068543753,-0.019326229150492435,0.042247172471844265,-0.033380108961697276,0.00022303800459276072,0.004243473276135437,-0.009489491259575385,0.03903620918496153,-0.003856163308751342,6.044907636162683e-05,0.005429524390152618,0.013592714428765435,0.13449052897649974,-0.03569345837208935,2.6076288455713944e-05,0.004533874445320089,-0.02258664861908749,0.0650111356221956,-0.035357797096088925,0.00012144314559907363,0.010977489648143378,0.004699236211806986,0.01715529636676113,-0.007962494922609436,0.00043177453149854,0.006408151607075981,0.004714590557168205,0.022780878787690025,-0.0030684948033856156,0.00011853464537441424,0.02071378417697109,0.00711153282923973 +2022-09-07,0.018305792148260794,0.11806598083398152,0.008702680003719704,0.00016396468968858126,0.006040486863679023,0.008692768117555112,0.03424748612028484,-0.0025606287545011613,6.0903173492110004e-05,0.013033997226675758,-0.03982056845614642,0.13645001477051286,0.04181193704146983,0.00013499916209915605,0.0046166660995374965,-0.01509382515717353,0.013804308255352813,0.01615499567373689,0.00036902222455300465,0.010848850751343085,0.030752883442498553,0.06425436679800119,0.00103661526532338,0.00025042689359915565,0.003783723421471927,0.0183652887784417,0.04939826122637451,0.04543164451806575,8.117697040558763e-05,0.004448767605257586,0.05529908755933394,0.22069709592577602,0.05623793759910953,7.352096558197476e-05,0.015579045927239635,-0.0031225166727637138,0.025948979412032034,-0.02211601341724098,4.1265118727626335e-05,0.001737717416986062,-0.0007574540630111723,0.0006587993430556222,-0.02275974893177122,0.0008866412422506746,0.003803608507645076,0.006997433452318687,0.016116846294002386,-0.012717931201656093,0.0001518170678038077,0.0053448347696702725,0.02403130756639187,0.013248311456597479,0.08062709466268302,0.0008866275677610172,0.005150421319426498,0.014832790897683398,0.17780793272385811,0.023988632665454063,2.4859622594546058e-05,0.004968020557294819,0.036026770698925285,0.1110963550169051,0.04957399924243847,9.633332776322673e-05,0.00735363916530289,0.0034900615748376155,0.020469768664876903,-0.009862096521292172,4.799345030388105e-05,0.004856864951697139,0.0031255107299000885,0.0028143588613217317,-0.006014610334581569,0.0021660301269302196,0.0009449618321905999,0.004909241632936193,0.03236380232788697,-0.1036791781831979,0.0001248265525762587,0.005345633557908068,0.05523998236375788,0.37635020353923254,0.11748563057539049,0.00022728438933445694,0.01558735525340053,-0.010425851901419463,0.06116401764180136,-0.004076754678128468,4.8014952393420054e-05,0.010449482766510905,-0.051013779329318554,0.3075648754442537,0.05951177775263489,0.0002733616392074055,0.02211928923275611,0.04063587168077584,0.48217434954447874,-0.02437273334646472,3.497322711777555e-05,0.003588830136165231,-0.015848108498141167,0.1655935254753679,0.04094607136538272,3.197538575061023e-05,0.005488356534171786,0.009473219418753974,0.03271957692345973,0.010786007971964254,9.326370685718812e-05,0.014145921323035986,0.023539978586141406,0.15148151022249706,0.014020607414028469,3.5895401324770184e-05,6.411138433574546e-05,-0.0005637041589039836,0.001603266177759591,7.479875608543729e-05,7.795123324243897e-05,0.0001582608754706694,-0.009753183923650339,0.03338133308139343,-0.02158876651001775,0.00013359534736697188,0.002130788588425107,0.009618915988874488,0.009757615564552497,-0.07816589160469048,0.0005634533813286024,0.006765187046216516,0.010127095870368908,0.036621150874708706,-0.026984837119587633,0.0001163962374668649,0.0011989337111275064,0.02398078770495297,0.08798022236524115,0.011449338146615301,0.0017494340043720323,0.008442031980429353,-0.029259524044861613,0.26064553483472475,0.0482266358591795,2.8866834562477456e-05,0.019782699332652164,0.06589979737082242,0.20052747509051094,0.11310495367603961,0.0010744382566321162,0.006892056600200237,0.06791241194715848,0.4334928217593968,0.47070039561830584,0.00010432607965014008,0.011603213879953939,0.005821117143223459,0.007796303201283933,-0.023995301059606722,0.0001762231681181225,0.007859763779082457,0.009980744424742324,0.011706494741425795,-0.006423733045940314,0.0004893729659168384,0.008537942578061742,-0.007115336146615949,0.02622938982289797,-0.03512916509674686,0.0021026044323128683,0.005645838466931573,-0.02916984727809608,0.12265936063999985,0.00481648672644984,7.629987546988254e-05,0.015190180642165782,0.07103046368902947,0.11299340355862321,0.11201195045187173,0.0015626753121469302,0.009944223443123817,0.02115720200039209,0.07390905185423688,-0.013631602936735536,0.00011341660371535166,0.01792476781683169,0.01038486157010884,0.025139435017725222,-0.07039735729216876,0.00016745787457888163,0.0021930498355513576,0.03403766996825253,0.1802936267069507,0.04899460554749081,4.6077973765794e-05,0.00143966540425834,0.006748883251135516,0.02210766221887941,-0.020432949956054575,0.002893391177558041,0.01800620673466081,0.013068891335195227,0.06939645575619725,0.011133113563761652,9.367895275325753e-05,0.0006473756082579764,-0.022545704329319703,0.12975534602614272,0.009500384294282686,0.00012600835193658398,0.010485998557740189,-0.05011626940692399,0.2580734351996486,0.16214256322419265,9.185105123950745e-05,0.009456619469981428,0.03674881822472198,0.1663169159471778,-0.01999893564284594,5.553341093688773e-05,0.004470497462901971,0.008274414128197148,0.01724150517425354,-0.0006474479743272768,0.00023398686056504372,0.06508212681485812,0.03211448397793227,0.1315648694394602,0.07863651534552678,6.069814026147503e-05,0.005966117790658863,0.012013828114630505,0.13933554484587857,-0.025419731499582553,2.224594091357319e-05,0.005389628411961106,0.008557864665030536,0.030868397925845795,-0.00045851105850064,9.690814682745307e-05,0.009569687128403203,0.008937198192123942,0.036816007749726425,-0.036620356395756594,0.00038264202583316296,0.0182339632046458,-0.04793452622433889,0.2152537014862522,0.05931138275655409,0.00012754681169133876,0.015549169480186172,0.010078302258395991 +2022-09-08,-0.01846143084409002,0.12926812009630584,-0.015481268705820747,0.0001510290562682965,0.007924672279248458,0.041657179904861695,0.12054166809625247,0.00853456895787868,8.292074500300155e-05,0.024135957420020334,-0.038361164409831505,0.14756808159625892,0.042741486341344545,0.00012025317571198808,0.011321087693468944,-0.01398869043561138,0.012897022115630248,0.008267181813228861,0.0003660626937675057,0.022387717121308978,-0.027295333200463172,0.0647548264395842,0.03586167401286154,0.00022055353796809535,0.01805319049074514,-0.011086623721536506,0.025329197717128805,0.01770457346798522,9.557066625699372e-05,0.009444833955461052,-0.011064290110752746,0.0378255213801416,-0.03521269546312121,8.582790007013933e-05,0.024974344387074736,-0.014740634813824994,0.11913119851813278,-0.17142534925085584,4.2431588489916365e-05,0.009429788741409642,-0.00011399409560202846,9.626157014591163e-05,-0.05625214463878356,0.0009132174525046206,0.00016684180669475162,-0.06039684769013881,0.11945212960971101,0.19626633007909175,0.00017680000034674947,0.012989136251040935,0.02117614852088883,0.015175728982738288,0.03565677649227259,0.0006820587275168332,0.00883075450298562,0.017248843229914757,0.203470403880519,0.03885287308109938,2.5262801944457658e-05,0.002326074457622425,-0.02501997534840678,0.08742746814731328,0.020737849334344034,8.501391445738757e-05,0.0076750408051597455,0.020597829482907674,0.0923172602371031,-0.04134877248147403,6.280588935230802e-05,0.0008385300948125323,-0.025267979795951103,0.022659554596582938,0.02213688957355903,0.0021749141788250334,0.002131927618918129,-0.00884122001405782,0.06450563262179577,-0.0035400658825953026,0.00011278897946247648,0.004886333270075291,-0.064962774259389,0.33665482444738204,0.01624380223533787,0.00029880506353178923,0.016477882161553308,-0.009366441328495456,0.050310067337894004,-0.007168236237749708,5.244217246303458e-05,0.01856743225000926,-0.01932033857458085,0.10976043064358178,0.010874882845161847,0.0002901053500124089,0.005767956513497353,0.001349812964518577,0.018605740408726607,-0.011185333472167706,3.010626423864937e-05,0.01740042222207264,0.019330972052613117,0.19150474635089942,0.007575752537449872,3.3725302969033975e-05,0.005588813408115165,0.0058394684278432005,0.018571271504303665,-0.06660262315466267,0.00010128716866855031,0.0024005640482148115,0.014627219437176682,0.11382995356448763,-2.415725307350468e-05,2.968230300188239e-05,0.0208525968359543,-0.006438104915873548,0.01787312126251041,0.0011803024187560683,7.986105260705912e-05,0.005184965608032816,0.00013861999731128063,0.0005051063328192436,-0.05337745328866344,0.00012548495756353474,0.0006344259702702746,-0.022967044651731994,0.024708009083727785,-0.0844103388512191,0.000531303802087361,0.02337785542713122,0.02174578300873522,0.08399616975812486,0.008030426101602395,0.00010896865152010905,0.0032257579917883443,-0.07333328599172045,0.2531621016450819,0.026770138692788388,0.0018591808101172554,0.008991839422097478,0.04776331538992212,0.4361321298080977,0.061689030721955,2.8161681199566746e-05,0.006732146702341306,0.02466590763965292,0.07569514475529204,-0.0011242307386246926,0.001065369714666424,0.0024953288085792094,-0.010736199337123024,0.0927947739428193,0.007786231962865044,7.704646039101326e-05,0.0019244170178421265,-0.003441358502913414,0.005310782819030041,-0.03481035959326091,0.00015293847740611066,0.006193159300620326,0.012454078011975414,0.01825816356353676,-0.004314299576345977,0.00039152401197460656,0.015170887741262625,-0.008443461950521574,0.03529303454975,0.0002526904736679606,0.0018543080790946584,0.004457239125470828,-0.01426859953966822,0.058839366852164406,0.006318434819357141,7.780432313589585e-05,0.0011420182683817854,-0.06672060546092415,0.1161082383144853,0.13901921035428622,0.0014284799032539066,0.012303337583227828,-0.037398348549546254,0.14068034458257322,0.013689419231412585,0.00010532586584356254,0.01977733828414616,0.022640179118612436,0.07706340968867781,0.015773461318681962,0.00011909458461470058,0.016303463141158457,0.05329274127095823,0.1945090336983594,0.09708791207537285,6.687167611146252e-05,0.018611992889938547,-0.0528514597958194,0.16001201659928294,0.02741006745346111,0.003130562990558207,0.03476149391523814,-0.009245192496385779,0.042435542920294965,-0.02105321397963613,0.00010837441493636668,0.012611079378157915,0.030251935243173482,0.1621856595761114,0.05159717188236148,0.0001352700015921791,0.008014369194637477,-0.0025276026694988373,0.01611665524327842,0.002113902602243627,7.417927565605292e-05,0.00019772655448439244,0.005657251177416673,0.024045268479546456,-0.016728247274405042,5.913208953263911e-05,0.013887225339705385,0.019705141206170874,0.04241296876203973,-0.006533430005174172,0.00022652194019971326,0.008303353109845785,-0.027930758525471774,0.13433380234535994,0.04030229500932783,5.170253036112312e-05,0.007996240245283441,-0.01737221101294896,0.18803461450621353,-0.025058241135751988,2.3836834287913568e-05,0.005526729616056966,0.012479112244653017,0.04661373897506741,-0.003735803036035223,9.357906803365344e-05,0.009040765606701605,0.0014247813507510011,0.0046776318625656,-0.0008100587038753353,0.0004801203938919183,0.011379747237190641,0.010545738726826322,0.0516805013475537,0.0028306236622569485,0.0001168751241785977,0.034569394023143275,-0.005555727107643813 +2022-09-09,0.020632830286672378,0.1400288780062005,0.019879910419416592,0.00015582164356502308,0.0007045150971229785,-0.03573897991924528,0.10879513304397155,0.020051335680519672,7.88212306785915e-05,0.005256880189559887,-0.02274175459146132,0.09593282280920432,0.009542868437329165,0.00010966144127528699,0.0016878336335056283,-0.01592635541968538,0.01336453758396061,-0.04549611629318156,0.00040218912476360636,0.008987879150806732,-0.022146574917488147,0.04900085433841473,-0.004252081758803248,0.00023648341596268222,0.02574335730942949,-0.008790048242877099,0.03065872847172634,-0.003854797456427748,6.2601373127491e-05,0.0020545039442007814,-0.01106563894378206,0.038455478392253585,-0.0019690177744215533,8.443220523001035e-05,0.004924020972974728,0.015914420138887785,0.1425871626178908,0.03243606679069086,3.8274454238335856e-05,0.014001649585478932,0.022225944796798274,0.018408200986840373,-0.03620494967643376,0.0009310943054354817,0.0055910133831940925,-0.02920689914964993,0.07062726559312367,0.0339262151789944,0.0001446022148499709,0.0028212938911352146,0.003832585093723068,0.0028344608148622775,-0.002555100951585975,0.0006609151495976657,0.012641792208404369,-0.016533848091262165,0.21020087926447836,0.03917274030302722,2.3440248106001397e-05,0.005089915031271619,0.11707466527657084,0.3299813089478662,0.3980886150715844,0.0001053961196206243,0.04219209300875186,0.015560135539284524,0.07446562797904,0.03160829603333954,5.881923037895523e-05,0.011101336989841476,-0.038415110850120116,0.03504031762876725,0.0333806821775442,0.0021382428527744897,0.011105494648515988,0.004462104232042392,0.030849901947639893,-0.07176738628580068,0.0001190249562926919,0.006741818074186337,0.007380041792987399,0.04029509795111069,-0.0060486127205691504,0.00028360562303932817,0.022348780230739013,0.005022943269697625,0.035297726324913584,0.007595843916328089,4.0084133290015375e-05,0.0035384153293779716,0.012735760958118583,0.07360106914713137,-0.01746008433529299,0.0002851855939143401,0.005541944896202293,0.027546286598182496,0.41376258890631035,0.005655140702458089,2.7627530838994704e-05,0.04574960629451175,-0.0066927269738858595,0.07814649125315976,0.010356035113192908,2.8613786640042766e-05,0.003181260636419508,-0.011310485724922211,0.030463088319299236,-0.0010613932399783522,0.0001195996977642773,0.0029463907789256385,-0.0029572573246134004,0.021540278123217422,-0.0929751187878022,3.171247849452424e-05,0.01812132592706172,0.015194593146476958,0.044321424449048526,-0.00895369695428689,7.600685248355615e-05,0.006838720924192414,0.00144187076844453,0.005138124029606529,-0.003995902647050273,0.0001283129085133303,0.0019676660781967796,-0.053052771568839224,0.04807562662810578,0.006436288734971672,0.0006307520706081003,0.03667265043288732,-0.0030608258358806777,0.012024240464752742,0.005984553347953228,0.00010714378262955772,0.00102694758253012,0.01847230249243165,0.06824779306619995,0.000380350770607571,0.0017372070945585072,0.013955216542977131,0.0018360623737244267,0.01644581361420619,-0.015979441479043954,2.8708748589579753e-05,0.005718820920287552,-0.006250324304547577,0.017856801619085705,-0.11317037295005204,0.0011443797062570258,0.016258611021978755,0.02165336517117132,0.19346203378405097,0.01591614830220939,7.453414849646347e-05,0.01785834586973306,-0.01572020551723633,0.021749723216794945,0.031375180139164245,0.00017058854743013443,0.0006688852714250191,0.024827757410076843,0.037952667646442034,-0.16008316217371935,0.00037549062626038434,0.010228430151405576,-0.04205149675881743,0.1609577548491624,0.016943963125209863,0.0020249760639588594,0.02166707769116887,-0.008045038926713275,0.0336681110702365,-0.15809682596847494,7.666546408967144e-05,0.0021132669024677836,0.0065090156484843295,0.008910611562334341,-0.04298310227806265,0.0018158710107079384,0.002303485329319368,0.022891617135385865,0.07419338144516341,-0.01790249555485008,0.00012224394173312468,0.0029279559939842173,-0.007325303186987816,0.019411056324437962,0.0035442840013258556,0.0001529807587999842,0.017292901834708455,0.015962397915856897,0.06262723178916065,-0.06563078978632203,6.220837288977324e-05,0.009724558964070443,-0.006660722357652722,0.02137154714650991,-0.09618409965467378,0.0029539519453129558,0.04068294526899309,-0.05100425351798231,0.24587829702444167,0.06293829955164539,0.00010318742381550336,0.0030345282689285533,0.01041891568705345,0.05726302181917553,-0.055534238030361345,0.00013194989398335172,0.014755405749751368,-0.00576818398012615,0.033480958415499494,0.0061998904699264714,8.148729871892435e-05,0.006232765812807753,0.01931825508006396,0.08831693377308832,0.003360324711067212,5.497576843502358e-05,0.0017873241198008542,0.0011674750147180684,0.0019482888162819499,0.0026636502757857805,0.0002921619479462957,0.018889832743628533,0.00013002977975619997,0.0005318549046286434,-0.005427323992021678,6.079446406460046e-05,0.014763821326565774,-0.04438658684232716,0.4257623442265272,0.15610382048059812,2.6897739783760435e-05,0.0029074297137412727,0.022339714393350835,0.0637430346458314,0.024956186398443714,0.00012250500876943206,0.009360812975774223,0.025401152809582172,0.10465854331105069,-0.008455114026374192,0.00038256630146913046,0.014471970385487327,0.038664087231880646,0.19599865472931702,0.015468169721295763,0.00011298647705338224,0.005130455055116589,0.001460845673209231 +2022-09-12,-0.03151605769969665,0.1945208250703203,0.0038044370058892343,0.0001713374771437185,0.03698555522812644,0.06911765915232373,0.22481137614740881,0.07729498389787175,7.377025143853534e-05,0.008844948472686938,0.0040649924448287805,0.010173496337385589,-0.023453231323751468,0.00018483606499747218,0.016065278247992375,0.006723872479393212,0.006377473063185218,-0.11830490463478013,0.00035582683006511875,0.003958546032574153,-0.0033962017488950256,0.0075203232047199595,-0.024305752557993957,0.00023629511732797286,0.006742793123080507,0.00024032416628388218,0.0005954768346688502,-0.007789124299539787,8.81209789242367e-05,0.0024907651115096594,0.08010257689538645,0.25812018802807274,0.10130753063779843,9.105721641229212e-05,0.009734709357298177,-0.039075904586908475,0.31975659115124333,0.020963108041628133,4.190715222524426e-05,0.003391530623561823,0.019109796772270513,0.014403246516601197,0.014660001960799057,0.0010231527155398607,0.0009577707938942246,-0.007285677363552621,0.019411703093864936,-0.00450731079131549,0.0001312405922335971,0.009019020106532067,-0.000642206596653236,0.00045443768681176694,-0.06261956130827986,0.0006907561813983803,0.0066093380259368995,0.00508429133076014,0.06658055171164293,-0.0003100925753903059,2.275651887377814e-05,0.0006248894848901237,0.007264863876077492,0.02191488380071608,-0.002947308769683865,9.84780287863747e-05,0.009268636698809483,-0.006090088269611945,0.02898144742126829,-0.012901657428221079,5.915144167815561e-05,0.006457958614976031,0.01154237617092583,0.010523389923043563,0.013690322003507352,0.0021392548930552085,0.02749308671203781,0.0004896244922273004,0.0032296412272832236,-0.010366438682263822,0.00012475586208638011,0.03175601987814076,-0.006165481489930371,0.0349054553422588,-7.360845913473273e-05,0.0002735154872608507,0.024017649330438352,-0.07025467417525094,0.3585920681270241,0.07435059656142587,5.51868366876651e-05,0.01687075791930013,0.06187076086172716,0.3228704113109781,0.056236392000035024,0.00031582319106891103,0.029527103388427033,0.038014460373371375,0.4968072713212839,0.014476555870691387,3.175346458511666e-05,0.011944467381077925,0.015503155011223768,0.1957857490698037,0.01611423064527065,2.6455789201718035e-05,0.006052606605547184,0.005585123664821279,0.012767689105623438,-0.05314055052291761,0.00014091046576304353,0.003856789503221527,0.02396250563098487,0.18113677442959045,-0.057639158252981264,3.05575108192723e-05,0.010692952186086548,-0.02515999274799839,0.06784744000958458,0.0613857939998013,8.221563741386962e-05,0.002355274847993692,0.0007300427431465322,0.0029170538894793983,-0.01651495569565546,0.00011443330247083688,0.0016247485918954772,-0.053716549459512,0.048758965693875944,0.0024063729271794985,0.0006296934623908207,0.0033923550859081796,-0.016972618826890978,0.06541567159252572,-0.0384040310540127,0.00010920765018475529,0.008589897385802753,-0.0035701730352594154,0.01431439182612267,-0.13852798082318826,0.0016007943371230905,0.012922517661336442,0.010220115725261431,0.0853241625299308,-0.0011919643809445186,3.0801082106983497e-05,0.000778297968371317,0.03459071129187591,0.09710131958436292,0.017452382853062196,0.001164677352070205,0.007008787613625293,-0.016608322027343813,0.14578695337896788,0.0026058222671208535,7.586347637610507e-05,0.03251760474599187,0.008355444016784222,0.011379391642381088,-0.0132194078673717,0.0001732989276077289,0.0006094214026983681,0.04127976432134066,0.05354833775934579,0.06282104780763985,0.00044248151135362724,0.018935238604289743,-0.03330700778023695,0.12679328964463313,-0.03764430227810396,0.0020360558649376442,0.01242594214584673,0.006518040471681545,0.023757296138472953,0.0029004777183326827,8.802588738973641e-05,0.003964720815473962,-0.03249663171483164,0.04091783131866105,0.00903839409674228,0.0019742535731831694,0.0030740874406709187,-0.024417395817481192,0.08728346060931842,0.004467521082837908,0.00011083665821102664,0.0016542917573863904,-0.026768149269651945,0.08266159257311745,0.03213017467819743,0.00013127286184744542,0.012173761899102535,-0.02335600268568752,0.08382195658389366,-0.015315816196965754,6.800716134945263e-05,0.001057635576063211,-0.01633730659800176,0.05719507347705223,-0.032294537158527876,0.0027073218921967054,0.020577230587010407,-0.05755779458669982,0.2695725378367427,0.05092669423827219,0.00010621089497941209,0.0007626559729014675,-0.004067171568054353,0.021634838205629107,-0.003503224103625037,0.00013633257123627174,0.01679839747943977,0.015376238818652415,0.08522219990401027,0.0027579577018681653,8.533870999532085e-05,0.0029380895658004925,0.026886913790891632,0.13527606371187545,-0.0037078247903822793,4.9953669018688174e-05,0.017324775980860543,0.026311831300472825,0.04810023300361154,0.012963960486473858,0.00026670630946313206,0.021550174435684157,0.017464186271169,0.07716460456760599,-0.03265401536286384,5.6278769822008784e-05,0.011289911614958487,-0.03590315316941569,0.39226196987204737,0.07170154433649112,2.361498490873283e-05,0.02383882946344464,-0.0023186216937154083,0.007593678588592458,-0.00016444015705076122,0.00010673003413234927,0.01523049160344556,0.03585701001028198,0.1269649954513493,0.052149962694965704,0.00044516195592333204,0.0008367655354422597,-0.004376558447013344,0.02202456070191724,-0.06984310544885927,0.00011381441587922952,0.027189718703291114,0.0008183123622082701 +2022-09-13,0.007898503559667203,0.04985634398307803,-0.025851473772229037,0.00016753709241681822,0.0046289941284541666,0.03136393258794776,0.10391355550799207,-0.008325600422834216,7.242171973502301e-05,0.0012931249466351313,0.00607018700970052,0.019199177141779468,-0.0020162599963720394,0.0001462569996027424,0.003867364052665566,-0.003776528932891347,0.003793711025715307,-0.07343367870891164,0.0003359668487236886,0.003531908828060382,0.04585317170893615,0.12517986217754742,0.06421364635219635,0.00019166053004039666,0.006439250232856095,-0.017695589011208657,0.0450843159587354,0.03988402779556146,8.570107668746502e-05,0.0022867864818715625,-0.022753044962366926,0.07362345251185698,-0.008022310051376763,9.068035272480315e-05,0.0012966417606723886,-0.03193417008439176,0.27688171648386944,-0.014277286345813014,3.95512277945683e-05,0.009287000177486075,-0.002805250562019584,0.0026818538322212508,-0.050246103673047854,0.0008066429466625004,0.005728048167083886,0.009182532291576465,0.01740893415201004,-0.050149779210591425,0.00018443874909020245,0.002409274385533539,-0.02393475824837341,0.019749229241145368,0.043430902276681393,0.0005923839081195868,0.013182993579616352,0.008403338064159598,0.10654648362394875,2.064415048186811e-05,2.350366041349576e-05,0.011816289969744286,-0.024239986715270515,0.0652288662468782,0.009910502783419197,0.00011039352097769123,0.010645169818990984,0.0033297003459182963,0.016841978600056953,0.002441895257923073,5.565111349979521e-05,0.0035890035926890774,-0.009145701426589423,0.008380243659802625,-0.015318414875992163,0.0021285474970103744,0.0035102803730649775,0.06776233579763535,0.4056294214765028,0.07163178420378452,0.00013747097965248432,0.018163358325447437,0.02763748563057378,0.13654103664391734,-0.038234695327057075,0.0003134321674539751,0.011830285393034792,-0.01895645123695992,0.14045577402068313,-0.07845224840154702,3.801704848131516e-05,0.011268082003117205,-0.007117377159769151,0.03574130027680809,-0.02241088304896764,0.0003281983849422209,0.009038474729163623,-0.055009965392177604,0.8120172879407335,0.00026022863149228136,2.811294399833102e-05,0.0072830397156820065,0.0078096427631631,0.0880829513351298,-0.0010159621779833239,2.9622453037944722e-05,0.001389617440119554,0.029420940657003146,0.0885637104279757,-0.0226685632016963,0.00010700978871657093,0.002081469516590758,-0.005912269035524931,0.04242068819067029,3.2177050490971633e-06,3.2193548911999514e-05,0.010116243691620893,0.003619816214745677,0.009196293535929516,-0.05096143910378115,8.726720736902674e-05,0.011851965584316504,-0.016882401885841634,0.061610444723621656,0.06356053261305228,0.00012529348419132224,0.00026141948060688105,-0.0343245354465049,0.03366309482305793,-0.017719494565648645,0.000582808918653941,0.010648090861071994,0.03960495975755944,0.13269508450598536,0.06986658196839222,0.00012562635239146157,0.0038406151921996264,-0.001431015295832834,0.0056197452177893445,-0.00844888660085088,0.0016343566111585966,0.006712893983615272,-0.0689718227235618,0.582711375794803,0.1813264370899336,3.0436898919345405e-05,0.015700721965734552,0.0017438546253106299,0.004577150904749667,-0.074112760498696,0.001245622132793654,0.0010779308678776766,-0.006951646466791309,0.054551699426736135,-0.014695402493764094,8.486039251157359e-05,0.0040384201822288536,-0.027262471457610883,0.03952184412778996,0.06603113149611546,0.00016280712575009304,0.0013739789221811336,0.01773441709296394,0.024822368373091045,0.00015470344565558173,0.0004100885236895517,0.011456631887368398,-0.017358923912133787,0.058249410576412086,-0.009540668550436823,0.002309838445687706,0.009846726071547619,0.038334340283389334,0.15443224770451455,0.09500176383430961,7.964167246262248e-05,0.0038372142672172707,-0.032718276206865925,0.038723503286616535,0.03333708301945804,0.0021003562598561824,0.004786464246567559,0.002222436553647734,0.0059977208857152015,0.004503971262755829,0.0001468111892804494,0.010627801593103276,-0.006307067512765867,0.015905412141657995,-0.10339868846225597,0.00016074701939393626,0.004218410871854223,-0.011794032355647638,0.05141364098298254,-0.004454028397328504,5.59883771354518e-05,0.006074426841883874,-0.028601744249062633,0.09387962422289882,-0.08651813834915828,0.0028876146357655953,0.014137984480411798,0.05658371207318494,0.27929830905983394,0.12757990772231884,0.00010077752759848122,0.02294240074315182,-0.009726534121511385,0.05618697699403634,-0.019541081894811668,0.00012554032034632346,0.014450573371110177,-0.013255192014523692,0.08033991973953451,-0.012603194373517953,7.80374965069128e-05,0.0038688479876619795,-0.052974047511934096,0.20362989028054268,0.15362198237222668,6.53836294089347e-05,0.021103269852449247,-0.0032803091718925197,0.006846399518263344,-0.005994707504204663,0.0002336048922736369,0.0020058315253825305,0.014090714353952233,0.058094432217106896,0.006308528609535069,6.031327002179434e-05,0.013700205106377022,0.010196536978045888,0.1214688886495738,-0.02371361081032478,2.165802875532988e-05,0.0034205486919289827,-0.010430501471724692,0.036239869948026755,0.006906643985582953,0.0001006068433518904,0.005160605743403503,0.0075257507892757,0.0289398832612804,-0.006059468042002785,0.00040990293579793954,0.0005691717454575649,0.009905587236681347,0.054758160941256295,0.0006097509464418788,0.00010361035678083576,0.0027409982779426157,-0.0029890993875925365 +2022-09-14,0.004432191409396065,0.030995862932249655,-0.03792677110575606,0.00015121725836228148,0.01539137440314076,0.006068093737108181,0.01780521964295157,-0.00037472736122889916,8.177404333838001e-05,0.018645640988630693,-0.03806985382829604,0.12520017601733668,-0.012193936623431772,0.00014066092672358014,0.011663652095980848,0.007862724335430619,0.007252033819057841,-0.08463209125004202,0.00036591573501082713,0.01591418101941566,-0.015406694725569527,0.037321906616777895,-0.014484642037093142,0.00021599486564573213,0.0019820477104425614,0.0056036906045497685,0.017407423781851287,0.004131890140110527,7.028884163646048e-05,0.007574707858734627,-0.04286508852586144,0.12410494805163026,0.03232261967585983,0.00010134550312472974,0.040536452977799904,0.026514696678952072,0.26303750110416374,-0.0116924476353265,3.456747104562623e-05,0.01154421854120862,0.0412425363999546,0.03790862895343291,0.11163229060164866,0.0008389809030219378,0.0184304006704345,-0.026862155929584696,0.0703262399244118,-0.0077695365709710106,0.0001335627505479891,0.025165690747358492,-0.006835416962785626,0.004643135701895456,-0.007661983478018422,0.0007195781928576448,0.0001044276871658709,0.0004610250308008313,0.006998428558476331,-0.016122967005984614,1.963119610149955e-05,0.0017237324730229545,0.07684875474770071,0.22869647157009465,0.08598138897968458,9.982249217790368e-05,0.04118563812543045,0.004178828937409806,0.02209269206340211,0.002631167372162104,5.324364419063875e-05,0.0005861485687148319,0.007780275708115566,0.006098984870903176,-0.013997968430907462,0.0024880574480892707,0.01903433205677632,-0.047023329852084295,0.320665590720035,0.006897123772195183,0.00012067383843295933,0.010783215575809033,-0.025529025160677378,0.15375029250238323,-0.0007122008926586758,0.0002571144663660347,0.008115403759707877,0.014564222727668196,0.0727078415706814,0.021317705108545217,5.642440857996882e-05,0.014689040706321236,-0.0006392705267086006,0.003285701533679233,-0.00017524584001882106,0.00032065895942987943,0.020703891458139296,-0.03194291461040848,0.4649125773815949,0.008746253616553498,2.8512380388245304e-05,0.01482606249369044,-0.01150845328381058,0.10866686755812935,-0.08147162311053227,3.5383559519123216e-05,0.0012499139497236609,-0.019637090019524274,0.05256216613617307,0.008895245455119513,0.0001203446067756625,0.013781889581575212,0.031604185091162605,0.21508077803126843,0.03263329921250564,3.394183937287061e-05,0.0192576960300287,0.011021187562188981,0.032825139663750044,0.011956759742447047,7.44387708125506e-05,0.006315519640791565,0.0001661022616623262,0.0005491295043423794,-0.004919581333368816,0.00013830865653586313,0.004464472278333582,0.017982341170249768,0.019423324000109016,0.015576672280284212,0.0005291736856286748,0.028737644790018013,-0.00010981403301297177,0.0004208132541360111,-0.09947016833135322,0.00010983846137262705,0.0025842664380048746,-0.06279678059247625,0.20361374115155656,0.029872778434843917,0.0019794724896345425,0.01129151362352189,-0.03217019255380208,0.3004234162000482,0.031684120018852825,2.753607750350017e-05,0.015074272352961974,0.048329545294024105,0.12446666731721448,0.022853132321827424,0.0012694947749770655,0.0015133899199967422,0.023498341192628967,0.18877778736879697,0.025197004067600073,8.289187380508138e-05,0.0064350141601128555,0.041652344633422204,0.06047246759883975,0.09028005740803467,0.00016256503762556584,0.00806852634487688,-0.03549671732889716,0.04851966526955654,0.041370768329079544,0.0004199274936881484,0.023334883530997715,-0.025582045292184132,0.09186235325185357,0.012236561370477362,0.0021584800453289398,0.006880111457600581,-0.04909963034388663,0.2126698212801616,0.09422136258248086,7.407347630196629e-05,0.007734194179375089,-0.012616046299862368,0.015850757419713722,0.0047020701522246435,0.001978565565205957,0.010574069917862305,-0.02878532841779179,0.09068761508012621,-0.026805725834347437,0.00012575904895749374,0.019430626574793063,0.0012906461302002864,0.0028767107975721518,-0.033653856919741446,0.00018187430896457948,0.0022146819264663928,0.01958562072535257,0.07619040027571641,-0.014060291029282855,6.274093839286378e-05,0.011563217515073656,-0.09422021165729914,0.30076785115477805,0.11410378504544194,0.0029691403053344373,0.04142605897658419,0.028595043505689775,0.1446290239312601,0.030463211838608242,9.835034259513406e-05,0.018152671366241577,0.037206142706212024,0.18451099167632745,0.041563064393914266,0.00014623562610206113,0.010098848602811721,0.020015443534477442,0.10456736645112229,-0.04439316769308687,9.053525865945713e-05,0.0009596605223241837,-0.037330254226267554,0.14705308457747124,0.04079019425757586,6.380198692973292e-05,0.01027231217130447,-0.027585324965793818,0.05441206676986555,-0.03618331540777299,0.00024717940144410836,0.030897746026859144,-0.005079390607177642,0.018263885751747002,-0.06502161989560794,6.915646815844657e-05,0.004777565030820866,0.04599703417212022,0.47809401669161916,0.13386030984716604,2.482263073768087e-05,0.005223892811429856,0.0008127208738356444,0.0024959230370637437,-0.028350724808490945,0.00011382015934338661,0.000498954311716161,0.010478482143746002,0.04534166833285563,-0.023710202463514855,0.00036427456877575375,0.006719251387969343,-0.04022048079833077,0.19516279456925748,0.030016338347728894,0.00011803804982220797,0.005487095907838398,-0.0035159257413607103 +2022-09-15,-0.013985848227266538,0.10290775372820683,-0.06127635732194855,0.00014372333839716056,0.01822561576048583,0.04110210061544032,0.12266253466734425,-0.01228856477182512,8.040121468489324e-05,0.015958863593963785,-0.026311890085186453,0.08531303571549596,0.012818260671357778,0.00014267039213604866,0.0019814359549175102,0.00885919219810928,0.00989766994552548,-0.061590423606931205,0.00030208489678720915,0.0015283606343991897,-0.04204493312945962,0.10204005861513737,0.052861004045206945,0.00021559601983462664,0.011139072800224522,-0.030415336381166128,0.07767701146850822,0.06084199076558678,8.549620850237369e-05,0.006936470055420529,0.04378534391526563,0.1661901984665966,-0.004083360045966309,7.730600206285226e-05,0.01098458242707692,0.054162759061333755,0.4527385851900532,0.16050693823090612,4.102531123094945e-05,0.02126497101779477,-0.006293491536204837,0.005904253101984568,-0.09483625553370753,0.0008219993472470156,0.002114855547871848,-0.027717739847363802,0.0766975545243484,-0.038725748384958146,0.00012636831185227314,0.0054077622220218766,-0.02549446870473397,0.018998454630987944,0.047162262094167746,0.0006559217740529547,0.003629532613719359,0.0177783918933511,0.2448975774425696,0.009776169741895836,2.1633698637998274e-05,0.0035104844266275028,0.02426894875559653,0.08262780682160537,0.0037945862504948987,8.725207761549481e-05,0.020903373941976423,0.002524932557933944,0.012006605150075803,-0.01776140850174315,5.9195865140933094e-05,0.00370669129319481,0.0039003715219055974,0.003639003781167376,-0.014571003837595345,0.002090482048731005,0.0011056514805028769,-0.007432485177924765,0.053388406150112214,0.0020663584001424746,0.00011456163518762283,0.014857196169583016,-0.007133099937023345,0.04206620960242844,-0.02122837628499959,0.0002625748700003846,0.03199836315677162,0.043524540627411616,0.2896881471289611,-0.11166609305075861,4.2321828807231196e-05,0.015282852024909895,-0.01296940668018649,0.07414099934449013,-0.0012170657924436205,0.000288302547860469,0.007287142823515961,-0.027389298812401916,0.4017300358812591,-0.08187751187162845,2.8292859429835135e-05,0.012364810607938254,0.006558314591409404,0.07160350379028768,0.004618848125560041,3.060128615582607e-05,0.0028612628882229564,-0.039640954910220134,0.09755619416971255,0.06319855213340676,0.00013089167159549973,0.008695134514636344,0.009640031630618757,0.06766114669571942,-0.024824248953805254,3.2910272720535806e-05,0.01266031988626411,0.0011999142566789737,0.003672780001493696,-0.0017089417016901138,7.243236750974807e-05,0.01214438046424577,-0.0020570467797437317,0.00848999856261616,-0.0008378714297283798,0.00011078606757695692,0.003184700537696777,0.022127462917498543,0.02275904876178491,-0.006130638847895355,0.0005557162247508116,0.0039994764376139035,-0.018124172365130295,0.06635088760069946,-0.007681196268255303,0.00011497342153660467,0.001804733369456776,0.011521303831929326,0.04669310040887208,-0.0028557480251982003,0.0015836824079444713,0.013242108600160316,-0.027947726550844966,0.2512908431844448,0.007459967482336494,2.859907700056845e-05,0.023004963176408086,-0.02142444052191507,0.061079952493916595,-0.023051294424559637,0.0011467851716954749,0.011777191906434182,-0.037868089595995455,0.30845660687113885,0.08801497424244846,8.175323791886767e-05,0.004263507653111016,0.030140821218636434,0.040446515516892934,-0.02563991842523178,0.00017588117337504942,0.006851041663920073,0.0459793457653442,0.06183670967611634,0.016340556355645915,0.00042679598820636314,0.0017718455078374697,0.04411337995967262,0.1740924914912811,0.11929909760145077,0.0019639961636777306,0.003003365683945889,-0.009606619497987,0.033447332165255104,0.0032862403158337144,9.215087781622501e-05,0.01922883486083708,-0.015189542897540704,0.022070690553876754,0.00582705981337481,0.00171082652425986,0.00036358318897632504,0.016490413815209996,0.046308665471502926,0.03146423500476468,0.00014108645618361618,0.0090872177831199,-0.031197704907851617,0.08657286845336465,0.035788162691887664,0.00014608351648712738,0.003726151394666438,0.033059418613023826,0.15620667987904635,0.017070751147459883,5.1654663304251074e-05,0.0024769038332945834,-0.04131179412780941,0.14973457862894907,0.013445826221159841,0.002614989862095777,0.028902338096872933,-0.04296439275162565,0.1979653328395712,0.025366126565114423,0.00010795931100582209,0.0454441780949972,-0.02348225539610693,0.12953790711569843,0.028551355114295778,0.00013146305351814086,0.01911954855142367,0.02455091295157271,0.14902711071279567,0.005533497816879984,7.792038031907525e-05,0.016042865914940287,0.02535450781080623,0.10357969718839347,-0.0497341700926904,6.152164539867063e-05,0.005353386366638984,0.03493431826726737,0.06927570800002313,-0.018814036523335294,0.00024586725561962587,0.0018071369297698327,-0.015496158619733094,0.062094808334258914,-0.011115616807162958,6.205590851492242e-05,0.01841688579922633,-0.01810891497077723,0.18888474664616337,-0.00765744369555118,2.4735849338341072e-05,0.0037781947717541366,0.009930046484964707,0.023207777129790826,0.002632288941485185,0.00014956387234528728,0.011011429080652165,0.004432566738496864,0.01964483486162454,-0.07759818401600806,0.000355659875194543,0.005825299897550412,-0.00013781516279152295,0.0006495121532165842,-0.011884727177773278,0.00012152944560266884,0.01209808051867669,-0.00022156306843765087 +2022-09-16,-0.00023411997653810502,0.0014381225194936339,0.00012143402160126252,0.00017215877703744044,0.003081772288457545,-0.0336326083416,0.10090725893195318,0.003632476786169089,7.997397220356304e-05,0.023111277982889106,-0.024505927971274204,0.09427530236869083,-0.001954851261742745,0.00012024594040873283,0.023524113041704386,-0.018444665040832572,0.02013741768799696,0.046453151252098444,0.0003091255135140532,0.008676059696097154,-0.0339769299034777,0.08135641507528388,-0.090165154175055,0.00021851945219690254,0.0049535712119851225,-0.016746105597284313,0.040759339728353605,0.01984951754382616,8.97084649166259e-05,0.018729301524757,-0.0017030860145860098,0.005360957942495398,-0.038234028356747114,9.321462090614495e-05,0.018447671454174048,0.016228175695417946,0.14518043109731923,0.01852464006366083,3.833189005398149e-05,0.003213476851622779,-0.004905454453874385,0.0037386282594241895,0.010831116854367459,0.0010118397811450601,0.0028159099086519992,-0.008216043086516394,0.018817560914717233,-0.0405834953011109,0.00015267265705097335,0.012616982726296397,0.019977767390925546,0.012367914083148548,0.029415819017785817,0.0007895412970496932,0.0014264143075564729,-0.00598132702978018,0.0817332506185178,-0.015980652646820612,2.1808287606076357e-05,0.0015598280401926503,0.006707770541057018,0.019117692279326165,-0.001921298436395778,0.00010423024746216978,0.01546438851298889,-0.026160821524167096,0.13941710951983188,0.04002020442741177,5.281984492795415e-05,0.002582292049998342,0.012486091492598444,0.009206437552800435,0.016151334628348724,0.0026451961005375274,0.00322628895142769,-0.036627390546990955,0.20727110575188804,0.023429113779366684,0.00014541838687682864,0.008358503819518736,-0.03207181291317668,0.1826528896117897,0.020334465904822335,0.00027189748754326027,0.016123150220447472,-0.04591843633059864,0.2380104692468374,0.06631759136036704,5.434404809660688e-05,0.0036616622128190744,0.01677955092516075,0.07859198479943329,-0.04225540345201351,0.0003518753824185552,0.007511243315336096,-0.003616843412107674,0.0434748805572192,-0.00031205919978952314,3.4524034391063494e-05,0.027683960955103507,-0.005655953019606152,0.06329002025562924,0.002061658088787884,2.9857419345111196e-05,0.003171876392024723,0.017855629668873926,0.048360977775002555,-0.03988967331918042,0.00011893313118023838,0.019357517315671417,-0.023400566469888067,0.1484378593140916,0.010879276650296333,3.64144759462809e-05,0.003913490552879184,-0.050430541767214086,0.1675689987247358,0.18202674213676265,6.672327294849365e-05,0.00521071827325748,0.012446212989779163,0.044164460582654635,-0.052531965802830184,0.00012885844729199853,0.006759593840350499,0.0072073216130264925,0.00693552672703801,-0.010786676561440636,0.0005939775268550789,0.01851550340467708,0.010047111464889876,0.04304135525149025,-0.007169909444756446,9.825197565133681e-05,0.008800872061999417,0.0077953572426812095,0.024085829327241383,0.0036974010391365372,0.002077273078840707,0.005838789585631922,0.03873452769017053,0.3254326975550479,-0.02647921118547856,3.060689501888119e-05,0.015347061430076933,-0.036585377477614915,0.10255503869158623,0.05655293816892526,0.001166330968751573,0.0005731530495637193,-0.051024955503142226,0.34309952344299466,0.11535209114296556,9.903487621029082e-05,0.0020709288435391297,0.03197011256173886,0.04947143869192756,0.015293268756411987,0.00015252288493441976,0.010558453820355796,0.014181405032047543,0.017364789682083697,-0.0022739789331565536,0.0004687633477537048,0.01582710708325446,0.0011162914987431184,0.0041735044577333345,0.002637782212691239,0.002073132580021784,0.03604376169185391,0.03814838453740397,0.14260822299052694,0.04212471971915928,8.582660897978067e-05,0.02113736430242963,-0.11727352734722422,0.16179161059028097,0.29258223607777584,0.0018018605691019769,0.024212363960407383,-0.013594845645322956,0.045216347238543855,-0.18580605043261567,0.00011912278605253264,0.006820179097482666,-0.012060298934989996,0.03357656673756986,-0.0063025730805486,0.0001456069691670845,0.016907716793720027,-0.06350965877621916,0.2750891787948925,0.2163327889945909,5.6348219482349304e-05,0.003438747337294908,-0.022831589113105875,0.07050911260141948,-0.01280170001943591,0.003069085230115814,0.04148739908025866,-0.006428577781763924,0.034310512339268504,-0.011380335847578938,9.32026521059327e-05,0.005296931453899117,0.03149178506164215,0.15396419264651534,0.03487481298993954,0.0001483331891208183,0.007031515863896085,0.017238677894608388,0.10344173483700135,-0.014337695914794947,7.882370748359867e-05,0.034983866676727676,-0.04941090834289848,0.22414223552769844,0.06931858169820439,5.54046905472672e-05,0.014229192029748334,-0.04491825061733772,0.07988088422185474,0.020880885961286365,0.00027416332876232033,0.006697036358370198,0.008567660562353382,0.030238510461587105,-0.010081530419647702,7.045571617185587e-05,0.016407743287866247,0.01762109497375562,0.19857558569989145,0.022832168924346464,2.2894877556755726e-05,0.01315728704225615,0.0006977084095753365,0.002354090147811588,-0.003849529868815066,0.00010360001836953056,0.003940097088847722,-0.026701904602757946,0.11177800912544894,0.08172317450457788,0.00037654236043930183,0.0037015856954649394,0.018968580716970027,0.09213539060198857,-0.0030483764058813604,0.00011791801277965147,0.006871883990133202,-0.00965340159418444 +2022-09-19,-0.014130569929275073,0.08999363246273885,-0.01958733534432083,0.00016604831799038155,0.020199939880618814,-0.008275906109742789,0.026634055597165418,-0.0029559769771621983,7.455706091888891e-05,0.027344391535199006,-0.005916205077031821,0.021356426843331593,-5.870399051579727e-06,0.00012814799981685033,0.008133009957104824,-0.018974153442291884,0.020040696489780685,0.03353925637223689,0.00031953427796902275,0.004023352143621482,0.02290604429073682,0.05748344433057446,0.02176805549602835,0.00020849953265249886,0.009712995809148002,0.0029968182316544205,0.009069109926832068,0.0024226707004489662,7.215102014012249e-05,0.002568788746303401,0.008933336538114631,0.03610201207768484,-0.00466412603729815,7.26059384477116e-05,0.0005769691485180569,0.011177418809032948,0.12602745814690325,-0.00521852787494976,3.041409942618654e-05,0.014002841580529325,-0.019012794444850233,0.0159408707748543,0.04074991801607007,0.0009197688525319563,0.0066278140037160085,0.03724944956737447,0.08455271695382169,0.06540746669513857,0.0001540473311170718,0.005230094354296583,-0.004257205262351981,0.003659869137051822,0.0015278094168965698,0.0005685692809175161,0.014853789945480195,-0.004399260251520451,0.05823753403087226,0.0001364319238335855,2.2511242527789452e-05,0.006804678402493944,0.010599929969207797,0.026871183021918217,-0.0070513186598467744,0.00011718371091589724,0.03773302449834624,-0.004485092621877972,0.02321848537696972,-0.01297768483291239,5.4375009853556705e-05,0.0015552204580699166,0.004839013538191343,0.0038034240859049924,0.0018203885658093818,0.0024814473059582903,0.0074418794355783175,-0.02222330159216336,0.13607043816993802,-0.0075224376880693635,0.00013439926838141808,0.011455387521341063,-0.014717432872161575,0.07902152097464189,-0.04263888547477728,0.00028839977086144206,0.002165365956824674,-0.04233350152220106,0.2655449464940966,0.032808331802637994,4.490628277192284e-05,0.0048614042358051356,-0.0009226321054792703,0.004450338437854858,-0.006098278672541972,0.0003416821814202051,0.024578827553681987,-0.0024032706017622575,0.028098346923234707,-0.014640916490287089,3.5493770338256726e-05,0.024315818040940084,-0.006214611895436578,0.05447179061451097,-0.031287992210029696,3.811747018642014e-05,0.00699964344444268,-0.01952623141177544,0.05538335243954465,-0.03720200912753532,0.00011356956100787698,0.015192816167790998,-0.00243182534234616,0.01881916301851339,-0.00900033761505147,2.9848633382709012e-05,0.04313719796164897,-0.005537647765464766,0.014980364185091072,-0.01538548431704131,8.195592168270522e-05,0.024509245407605632,0.012023006072365049,0.046085144608429635,0.01078348484598762,0.00011928908503119846,0.007147752730072124,-0.011335621965278195,0.012469286688725899,-0.0460421390660468,0.0005196121592563181,0.020483639136830108,-0.03437352081749006,0.12322630824179737,0.1210721809150913,0.00011741040602384069,0.00397185116679322,0.023195052081803284,0.079069203214491,0.0034883243271192415,0.001882812896136213,0.002383248508421409,-0.05546877114027341,0.5758930419301215,0.06883626440688526,2.4767884203192264e-05,0.020324447191852266,-0.04029866454092433,0.13189290815623006,0.04773383932761388,0.00099894247513363,0.00436705352367281,-0.015652200184498883,0.11374513427288377,0.007680221481809886,9.163644007492346e-05,0.0019329161782756247,-0.015329742629936756,0.02395472464550412,0.038144990540643284,0.00015103898788687835,0.010582298772275081,-0.0028788761199404693,0.004762889127194943,0.0018929420611677606,0.00034694163369152257,0.03370513739588919,0.04405914330201802,0.19239932051170222,0.08756575023210006,0.00177493664390866,0.007651987057990002,-0.043527342285133726,0.18219056276105364,0.10425998439918348,7.665255645608059e-05,0.010809772736458226,0.005953142508325013,0.008097084044789283,-0.008329508131019589,0.0018276575450126844,0.003271421979532823,0.0075106134603652,0.022937382118848475,0.012521707339209152,0.00012973214479167848,0.003787732204360509,-0.0015820440445992049,0.00449373340995434,-0.0003696760040119136,0.00014271566382453074,0.0005590011798903197,0.0007815167135607475,0.0031556153507219494,-0.04123664462016751,6.044607912091617e-05,0.022272677958824875,-0.01883252393843161,0.07028003467070157,-0.03302421587048781,0.0025397713454390946,0.01620931716545235,-0.0016152699092565868,0.008804633840618878,-0.01439683393756636,9.125872015822384e-05,0.012908101820259223,0.0035053765748895246,0.017981588175657592,-0.030189478524109074,0.00014137330712932843,0.0005814061447211678,0.012646351620119121,0.06858156903510429,0.001097137301227666,8.72180825525329e-05,0.004168318415984699,0.0019263586132243942,0.008085933176209403,-0.022693488623859257,5.9876221468950574e-05,0.00024882725487727995,-0.007059379029908103,0.014789112356443009,-0.06015588810869873,0.00023273075917796293,0.007599601961672406,0.00396898008215449,0.014700330037533271,4.874269754258619e-05,6.713766150668017e-05,0.0013844827624735212,-0.020153876692842007,0.2355497125518187,0.012857422060999006,2.2075335056834604e-05,0.0136871260837572,-0.006685369688112861,0.022228935596136024,0.0008102646689282105,0.00010512735189460732,0.0164150976960602,0.011166864996519777,0.046489742210515494,-0.0400911236843949,0.000378618733685729,0.0020384993863495605,0.01118007311454857,0.06056416010050878,-0.016208052313486473,0.00010573061074410405,0.003678277154567188,-0.005434206920137814 +2022-09-20,-0.024535996331089712,0.19825507596255074,0.025532628108496252,0.00013087779409632814,0.0073379759158069945,0.04165449141527608,0.145306061003086,0.023412484568666566,6.878419086970865e-05,0.01685390656985198,0.05790604726456321,0.1621722624782919,0.09660103287026357,0.0001651750889513341,0.0005883016741975728,-0.003782246263398074,0.0034614679789101007,-0.0002637142525653612,0.00036877149197816214,0.004770245237507322,-0.03282664348802405,0.07369737145335177,-0.010893783191083993,0.00023306242051840205,0.005471332894829708,-0.017666279374172582,0.0510110056007317,-0.023310727571942913,7.561848095032691e-05,0.0035872408064837246,0.07098319934835635,0.20594210949338096,0.010935495536334846,0.0001011347180787804,0.011925338508758383,-0.01384257231631679,0.12496086910627482,-0.000574124516058851,3.798755819848562e-05,0.022764950208535015,-0.026997261540968213,0.0245584496044358,0.09132998561029355,0.000847741715846749,0.009209995440194109,-0.059286088982897014,0.13391217521811402,0.12369807314689019,0.00015480843608024146,0.010933714224324296,-0.001196074642266674,0.0008757738705227424,-0.03507639403443506,0.0006675605408472138,0.0026440004303940287,-0.007326067886136074,0.10337609383395377,-0.0842324681024475,2.1119012644175883e-05,0.004148303616087153,0.04150493412661263,0.11328308677698047,-0.08994174793278202,0.00010883928809979213,0.016107499151237006,0.00996848734981336,0.04778751044419304,-0.012442989958258203,5.871873278601027e-05,0.00291995802051471,0.013744521603047623,0.010891038046561472,0.016554997846935527,0.002461406400610439,0.0005578213224546845,0.0007855112290654756,0.005870154969920712,-0.0015399962360994118,0.00011011714397977688,0.00702848788695065,0.023092855036863424,0.13734718884410627,0.01496106474882034,0.00026035509820253615,0.002337447475692587,0.0028902540596650508,0.015050921329927322,-0.04810701770470642,5.4092105965175575e-05,0.009796428159191793,0.025871541509238132,0.13654423774430352,0.004275947579390491,0.0003122739352550898,0.015420180544540515,0.03603104422606098,0.5473632888690217,-0.029950431738009774,2.7316900051786282e-05,0.00852699661065125,0.02086648596835487,0.24343695199989876,0.03468298000680435,2.8638121348299484e-05,0.0007633184816635075,0.015108562176059218,0.03721633459572044,-0.03327776787329389,0.00013077125581784007,0.003827589109721116,0.029539262749165383,0.26542449328095075,0.02774939168751839,2.5706978303586582e-05,0.017305348440218915,-0.014588722612187074,0.042969639771856354,-0.05838020448523258,7.52719099885788e-05,0.009133003987138729,-0.008194970976598749,0.026849218127226567,0.004028766110868729,0.000139561096270718,0.006815216328848634,-0.027359856179155564,0.03003960548077842,0.010790422903832777,0.0005205891913076621,0.020188585438106418,0.011860578834200998,0.040074499904240314,-0.04089870843427428,0.00012457295949162514,0.007246413036956887,0.053086798931522,0.19986203055952953,-0.05519309544984974,0.001704807777312723,0.0127292291192397,-0.024979989820249474,0.22422157580023638,0.0039003076426727635,2.864818100240401e-05,0.004691317280727109,-0.011379839444729903,0.027984862952909424,-0.0002382515216883215,0.001329487382753828,0.007453353851190063,-0.02807165132042071,0.2174380399096385,0.025029081957225256,8.597220777680766e-05,0.01094194189018161,0.01725927111583375,0.02670887873640673,-0.02143426552385738,0.00015251486717310708,0.009264571703656764,-0.03907542085514536,0.06335682734015446,0.06075751630372877,0.00035400888048234605,0.018559721009178926,0.024163677292479716,0.09471905003381235,0.023682680961860082,0.0019773157901503326,0.026160264147267884,0.02432945784804564,0.11297412920118954,0.01790367571002965,6.909455104035518e-05,0.01013198478035434,-0.01285463222753451,0.016712114565129384,-0.0013674828642211288,0.0019120772910301918,0.0029730138400883887,0.032443626831243834,0.10950981604518185,0.08007057118220481,0.00011737953495302952,0.008537909092735522,-0.027676124148372245,0.06565411745515101,0.027557308620265366,0.00017088489598292606,0.009268312600793163,0.020112163394971266,0.08482990928996671,-0.00629371624918298,5.7866033093724455e-05,0.014272450181540523,-0.04029989470986418,0.1334604643842688,-0.018360799614556896,0.0028619980779077403,0.005645304678052166,0.053204190415029155,0.23737857276516042,0.06926882114371342,0.00011149230533418552,0.00731802255982783,-0.014591932490966377,0.0796261793775986,-0.045780877848097735,0.00013289777752877683,0.011601516245305647,0.018698005068399377,0.12027204137989343,-0.023271420787810287,7.353249288240419e-05,0.007999715389912284,0.029907218886159218,0.10678908343887988,-0.004733534023188723,7.038766609160493e-05,0.021902509434232918,0.02655268660663444,0.051123990668802875,-0.006622933238628059,0.00025322881157919207,0.03356755958747635,0.010248820170392723,0.052893849136487876,-8.562486479859931e-05,4.818180621646171e-05,0.013449094305852265,-0.038257564483962614,0.3998435710208753,0.04806627113162308,2.4686441222404218e-05,0.009289951797120981,0.0019284590015370784,0.0068079258638005565,-0.06402253064861355,9.901581285677877e-05,0.007680173012296247,0.009010928278450443,0.043998931946201504,0.0018859012928680039,0.00032281623614760854,0.017260799058869087,0.05325063239811307,0.2414381378523436,0.041804037240632475,0.00012632540315299338,0.014046272450956064,0.006713096208757849 +2022-09-21,-0.007900548874391755,0.05609435219895493,-0.1221711413981821,0.00014894458235408252,0.001766078772432683,-0.053756880618165734,0.16771555856200396,0.07641863564925466,7.690794966430787e-05,0.0019446088301821095,-0.02809293671004199,0.08769402463023457,-0.01271040275941508,0.00014819185802196448,0.03525289661593763,-0.013423050126625855,0.015345527507562877,0.02530339299974807,0.00029521420187978613,0.0001603825633886666,0.029145845390361795,0.05715053580599745,0.04059902273842802,0.0002668419604342923,0.006567910644442731,0.018780430543088804,0.050393689419618935,0.031993639455718516,8.137221333895203e-05,0.0031521196694612504,-0.04477537256122404,0.15770808340249773,0.028284116036703732,8.330577509163473e-05,0.032872734126750826,-0.013296432829381118,0.13673167794172084,-0.05753670145422036,3.33476024178283e-05,0.0056852581444940984,-0.020512569109793932,0.017407004846614848,0.0442291848405322,0.0009087424039049779,0.005087742916300582,-0.07312303743259724,0.15836992921033416,0.13906028947443655,0.00016145198425940587,0.013537552829970897,-0.010363178486043373,0.008083125413559,0.009140257810230062,0.0006266687224233818,0.0003228805920806122,0.0035140282239564773,0.05057351255439105,-0.04553180681796384,2.07064151178498e-05,0.011654786567870518,0.008301707383617163,0.026947237841980737,-0.01170097254482265,9.151751176134981e-05,0.016735413663109433,0.02404969731004842,0.1220618875658397,0.051579579974104846,5.546146682153021e-05,0.0027657124205051125,0.040594141255544614,0.033595704416278335,0.06643519801731593,0.002356690654452287,0.003331440401537474,0.058516612276121684,0.3575742812252848,-0.06853198961833037,0.00013466818560004752,0.014480047457494429,0.014977456090504512,0.09258491550882365,-0.0008263954670029757,0.0002504990322407549,0.027578916771045948,0.030372395681519747,0.22961045183434695,0.0579712311817791,3.726047198519431e-05,0.001570500485002644,0.038773770221194166,0.22338727529397998,0.010185572298843863,0.00028606610894544817,0.012797240726107526,-0.02992789893470763,0.3886364412184423,-0.011388071350328046,3.195677458432618e-05,0.02849532639700645,-0.016181073307785537,0.1549748943017558,0.05503738566452377,3.4884113086051794e-05,0.0030491220977960053,-0.04265288587280411,0.13650625615863476,0.09064951673966239,0.00010065112203424121,0.0015011833431138272,0.004821935100318905,0.03320101625267092,-0.11300467889901118,3.354766979174684e-05,0.0034591381890464014,0.027384028240320907,0.08909381389942853,0.06371106206100587,6.814392831003735e-05,0.004147305974233775,0.01154980566953662,0.04754596440094656,-0.09366488556346449,0.00011107328384904239,0.001297142519844572,-0.03618288476107312,0.03597563438027605,-0.1377668700694353,0.0005748708527965248,0.003127290630037493,-0.005132677535797091,0.017965712760978286,-0.004741652246239596,0.00012025012527866503,0.01067168440500449,-0.056033259168992135,0.19543649923972026,-0.06632430369409766,0.0018401760916505962,0.020293852668054016,0.00335291920690238,0.034866949916122825,-0.007294179101078452,2.47281328922831e-05,0.009270559203300416,-0.06914100926151462,0.21837168423774053,0.10076752650259123,0.001035167577006941,0.006972857730927292,0.019014101792572236,0.13498923660961795,0.011688285709357855,9.379988728343489e-05,0.020131003607400562,0.03261847902097091,0.04275465286828931,0.025537369630800055,0.00018006350844667354,0.01592899816292767,-0.06719684286307843,0.09801579097971963,0.11526474352981964,0.0003935108702599281,0.01511890113835673,0.01961190346139844,0.0840287956150358,0.013605299653625788,0.0018090140883783553,0.028360628615363044,0.005870468342409628,0.022258455978575148,-0.0030853465483278372,8.46190384134138e-05,0.015475182130812792,0.05070329292764065,0.06789135425996903,0.044614219398503935,0.001856516808109105,0.03596982951732869,-0.005669729775114478,0.01966370449858223,-0.005779903796764581,0.00011423864884973422,0.0018254970515514488,0.01690310086634122,0.04808656006353386,-0.016084824240459913,0.00014249612315526055,0.0017812741911351882,-0.0032566116595185587,0.013308891180330962,-0.0006680043887638765,5.9722506224073146e-05,0.013105891999145202,-0.029126283202612624,0.09423176409949571,0.0041563305917836964,0.002929582983416239,0.0063796762263222005,-0.00046978514733471974,0.002501415860605721,-0.0017180871218147001,9.342303104019188e-05,0.0010681307729473767,0.001993981269739178,0.011837347897164426,-0.014536423298133514,0.00012215955647812933,0.005426436182526601,0.029809848228707535,0.14753719046188293,0.02044975765599573,9.556678031080149e-05,0.00017926998841509675,-0.008994649295041561,0.03522415133209709,0.0044603754726271995,6.417872593357553e-05,0.013923245262005206,-0.026186229967237514,0.05580479189000907,0.0057804143923147555,0.00022878675510357597,0.0027759481315056387,-0.013106763823333482,0.04984244262812505,0.0137775472977525,6.538987873935927e-05,0.0021227398622985882,0.005409986584660048,0.06267817550694331,-0.0018406126059795913,2.226953390630175e-05,0.0049508901106044,0.022486565865966566,0.06706681487067442,0.03364703252893297,0.00011719913828133557,0.003388101697825583,-0.015738360734622144,0.061160093281882065,0.038448831139744136,0.0004056199687163637,0.00018542814383809255,0.03996151135864538,0.20886343588463793,0.014404249960759676,0.00010958504315344856,0.006124588712058607,-0.0020785842651721252 +2022-09-22,-0.025283975523667648,0.1711271376498594,0.035205356686379426,0.00015624749341520457,0.012405085198958594,0.01618908590994655,0.050261700669472185,0.0009430608254421489,7.728508250464662e-05,0.020570146302140782,-0.029382996026785846,0.10573608397811177,0.001294871495063589,0.00012854940149442323,0.018718684071314967,-0.015280630291502579,0.017655635830500074,-0.07500545616686238,0.0002920961025490014,5.7286299079915056e-05,0.0018929732100552862,0.004213156375261779,-0.00809400040736295,0.00023509027357465132,0.0007130980345389326,0.0008086989327672625,0.001973020615942313,-0.00935553319120304,8.949566235915827e-05,0.002770471234363378,-0.006315896144088991,0.022052474739942738,-0.012281743354864786,8.403641207119763e-05,0.03783101510076961,0.005374997080182467,0.052777588234612836,0.0009448473461282542,3.492426755372275e-05,0.0035461241195360853,0.017011213451403714,0.015040342174948743,0.01632757903087942,0.0008722126153623286,0.004966946684026027,0.04859972144208386,0.11679272023657493,0.05353321291773688,0.00014550566182724078,0.014444812600378899,-0.0240499692666029,0.019600248250893633,0.040530600044453906,0.0005997597432770798,0.010133388754299283,-0.0026465683842257694,0.04105026719072348,0.000926463155594012,1.921276723813321e-05,0.008417182272941479,-0.05541673169880885,0.1661322648321026,0.0801326697796992,9.909185558552782e-05,0.004730052358740235,0.004830453868920638,0.02544748696798628,6.361692485928965e-05,5.343242153011466e-05,0.0021120825951462473,0.007710837878652877,0.006268575035504541,-0.0022443576888552742,0.0023991406865605494,0.004694180467749667,0.01884311630913066,0.1303214846431393,-0.009637442924991337,0.0001189840692525844,0.004632667266800174,-0.009419414386103341,0.05379696370073349,-0.00803995903093276,0.00027112799987514494,0.018664687739982467,-0.03090037884856206,0.17477838308424914,0.012720713192553038,4.9800882958253805e-05,0.010105978834544654,-0.012060374967629113,0.0748356620435301,-0.026773828665344137,0.00026560669203522295,0.022606204210714572,0.05928992591533411,0.747163859627683,0.007016819832450433,3.293026927999273e-05,0.008529762773708389,0.0028253067843355233,0.03286929132017354,-0.09214720906865952,2.8718184470253057e-05,0.0012498970256007076,-0.019468294113791904,0.06804425538327036,-0.0049019141085004225,9.216354868282916e-05,0.00842400325567271,-0.03236690289210408,0.1927605959049809,0.031009918290823908,3.878602389772478e-05,0.027654668816271974,0.01652335230088232,0.05056222639318997,0.017494555165126286,7.245182945454605e-05,0.0005517650929836018,-0.00686488233691455,0.027705710971628838,0.02520406503289703,0.00011329543055204557,0.0025367783319779997,-0.005760891807534931,0.006484471976944859,-0.03725085432473966,0.0005077976218833133,0.013197532434407416,-0.040133907163921415,0.15831918887683266,0.1287289551527631,0.00010669987107137106,0.002168356803952764,0.0046893133649886405,0.017747070564727522,-0.0007156518222259282,0.001695905912036743,0.05205876138766218,0.015206745408663602,0.16049592495820258,0.003067974184211024,2.4364329281973903e-05,0.0008005639621052356,-0.004316645163325276,0.012278380766242302,-1.2052162754232648e-05,0.001149414106512793,0.025502371598540404,-0.012749135265017031,0.1100996477381009,0.002558591366044101,7.711172930056543e-05,0.024156326179313875,-0.01632581158290165,0.0256673253686067,0.02577197530242996,0.0001501203437966137,0.0014432097163336113,0.007712135363441827,0.009819809016856505,-0.03211995855322762,0.00045079128992930027,0.011876865888364717,-0.023493379763139147,0.08216338016454901,-0.017156275722426017,0.002216243845126862,0.013640970993432889,-0.01501861740724475,0.06089969552427582,0.0019695561769758046,7.91234477438034e-05,0.009200547256554987,0.028272701803349495,0.039649338469903934,0.01471167889683136,0.0017725910767151267,0.04949696549861681,0.027516390467552807,0.10093030745628728,0.03315542738890393,0.00010801545612538764,0.00549296654998296,0.00504772051137831,0.012710242274935758,-0.011973578447149016,0.00016099109249350163,0.003574725734564227,0.034937032845997716,0.15182710316110246,0.018233806452000338,5.616304388959809e-05,0.016858789228388155,-0.028189038300726423,0.08175736165632567,-0.03339573763861274,0.003267920249914523,0.023131093141579597,-0.02942780001704177,0.14615746906997543,0.012762967500676153,0.00010015608793164204,0.01258921172960273,-0.016907324914676152,0.08919184723731133,0.01780977818393862,0.0001374708204194948,0.013006566086847885,-0.0042389398107417105,0.02544321970324695,-0.00829066991854783,7.880139044349436e-05,0.0020994583598879213,-0.01240345208840327,0.06552903752021336,0.00035190015353892635,4.757252238584829e-05,0.0024853338635873355,0.015715572805707817,0.02686421709906486,-0.0743170211068839,0.00028522357596925897,0.0031881501907278053,-0.0038575120311901204,0.014120360720818624,-0.012596253939479635,6.793223037461939e-05,0.013509922679306539,-0.011358901443593031,0.12741146491924413,0.0006770428026265391,2.3001656194998284e-05,0.00255227714913311,0.022431944891031792,0.07286106048703798,0.015983410295900995,0.00010761688219944515,0.0036833743080704326,0.020650743906737278,0.08696919145575975,0.017294500854055594,0.00037428139491439715,0.013334070736559903,0.020383248126825623,0.09103185267418065,-0.01653724012908609,0.00012824835570300242,0.02168935747089042,-0.0024901719025695484 +2022-09-23,0.007769455186773726,0.049457048093085126,0.0026301918910762476,0.00016613034180571344,0.019445528014920124,0.015374185694963526,0.05278694201962084,-0.004198706316983974,6.988374094359835e-05,0.019593302858539954,-0.033986174167737575,0.12809928687204014,0.01450960077186626,0.00012273057563288116,0.013719897233373714,0.030167620543815672,0.03091922673345801,0.10498055920192648,0.0003292913245854447,0.01354718818216976,-0.0005945506921606739,0.0015087628301582675,-0.010926307042967123,0.00020618909151005942,0.013935374554753062,0.01638422143136315,0.04652974908536951,0.007902183968927456,7.688503882874166e-05,0.00844993959925858,-0.03946564215309141,0.13176171270164955,0.029456592396880827,8.78860200073712e-05,0.0002503490128415429,0.03258479420789017,0.2900100384546733,0.04406000824078446,3.853013814337431e-05,0.0052152367000298915,0.012357678038856214,0.011839173473879527,-0.004078840855766941,0.0008049340119980395,0.002381842383837208,-0.042014106978661266,0.10082109350725199,0.025656930898901965,0.00014571545603791106,0.008164299168630585,0.01259638521942675,0.008670319391862382,-0.0201842689128398,0.0007101256435409591,0.006152814474938893,0.01102334966788044,0.13956657866245548,0.014149878660238547,2.353720776084534e-05,0.0057275634140473075,-0.00040811703655696855,0.0012078347281773445,-0.003738564039793512,0.0001003756220833026,0.008248677673382466,0.013932134346925678,0.07085619317506368,-0.06468317743916556,5.5347964833854884e-05,5.883649073960216e-05,0.013204699828088338,0.011674999593633013,-0.07528184642891363,0.002205944753638526,0.0004539504734734623,-0.037020163970634984,0.21927205262892768,0.00728251324254091,0.0001389335598616465,0.0024632090680326056,0.03257205460064051,0.19172259200723402,0.03878279865891886,0.00026307531205216003,0.028155502614174082,-0.06716098042964504,0.3635443458735326,0.09358616163751995,5.203799905406644e-05,0.006590448266678188,0.030234279029129004,0.1528094126244199,0.007572668358018191,0.0003260891268616017,0.008649746664320248,0.056820698317460235,0.8075108508196442,0.04653202998514539,2.9200375165110432e-05,0.0005328782020566939,0.01521763364919898,0.17755284032898486,0.00046622198724506533,2.863526519816951e-05,0.003718376728526707,0.007363178767640719,0.02398056691983131,-0.004281131283906206,9.890737014313274e-05,0.006217012716119341,0.0770309364721766,0.5973658794494521,0.09318665135343566,2.978633989291773e-05,0.013081973792336145,-0.004165747237417736,0.011557427058142082,-0.012610196623846558,7.991147301157183e-05,0.008343219071263092,-0.004777399264239833,0.016581325590045104,0.009164492396189884,0.00013174097909197263,0.0026459072046796026,0.0032100046637914357,0.002894840766563475,0.007767237871670147,0.0006338062899155667,0.008992474141603861,0.0010204648679467828,0.0036643730083383685,-0.07541079526369351,0.00011721532369909008,0.000321663238270774,-0.02704946756801546,0.0790381545903613,-0.01912862836918302,0.0021965500532799254,0.01958468626371259,0.02535409986427019,0.2531435264326518,-0.03508504829251401,2.575511931104277e-05,0.0063457478066679986,-0.027612331560591424,0.07230633667523606,-0.009614295310435152,0.0012485271488175843,0.006414429797708856,-0.03297098706148767,0.26751273149481153,0.008672712448895139,8.207542425866687e-05,0.028033154421796186,-0.005952211438205406,0.007662314481873863,0.011515478804440574,0.00018334275954466606,0.0049094634343337055,0.010565799559484225,0.014708242720049329,-0.001624517037459567,0.0004123305309427558,0.01283976918095058,0.00931819453865075,0.03876195990338779,-0.025826129740689194,0.001863272551580765,0.021648753217884037,0.03406101449896559,0.13921572565463297,0.036934429457752466,7.849819201572939e-05,0.003470328804923563,-0.06165378726238278,0.07450533344062406,0.04342897796428521,0.002057072454080811,0.007422977137390164,-0.019258595855265775,0.058625122977864354,-0.019175299287822266,0.00013015381105628971,0.01604198062520525,-0.030928983392261553,0.08981658453382534,0.0403733656256721,0.0001395948786107388,0.0039171037021917855,-0.03137011381876791,0.11770413139690174,0.044710654184787556,6.504865373068179e-05,0.0008561556725606985,0.07916072687931645,0.26121261244651767,0.12516981285942377,0.0028723257303422947,0.004064468372333163,-0.020419054300626377,0.11240977256506048,-0.011949486833112285,9.035914765867526e-05,0.00907639745856942,-0.035365755728037004,0.18990424916509177,0.04561860568865735,0.00013505449552135595,0.0037893015304975297,-0.005350602051727123,0.027069000226530734,-0.053109260392693654,9.34930084231368e-05,0.01303248098350998,0.010648775393751038,0.04467553403735362,0.00028620395270097894,5.990696378594727e-05,0.009134006802881964,0.011273330391289076,0.02311420877427149,0.0018259490002030803,0.00023779493372805654,0.008989451759192723,-0.00046489068689196977,0.001903846599268682,-0.03387562603223511,6.072021063116168e-05,0.008975173566018454,0.0023709701470093435,0.02719627595054519,-0.06904299620748638,2.249302842647477e-05,0.0014758152052867322,0.00935467349195329,0.02932017396837651,-0.022499480461725084,0.00011152469791690027,0.0012603990795132752,0.0204746379820783,0.08423137033739618,0.021891934995121633,0.00038315132906364214,0.002966050326215275,0.00623131636334539,0.03012520009440636,-0.005043391780586168,0.00011847361945699604,0.002504577437786372,0.0008737358447743049 +2022-09-26,-0.026351871635249026,0.1655571839832684,-0.10771651991249132,0.0001683255412004368,0.0009346624485225805,0.05678101729584336,0.19811292824588217,0.042849637769012426,6.877029360731105e-05,0.009650987755156203,0.01814241575524979,0.0636877558901673,0.012091882472437076,0.00013177601599032385,0.00611894584044082,-0.026800024082025295,0.02617782235288087,0.06368954536913,0.0003455170828737949,0.009483327067807749,0.007438081260294691,0.018593565134782657,-0.004884311577658773,0.00020931291284907513,0.022605051437195635,0.005279093123349356,0.014262370973165572,-0.024536029290565222,8.081916038489121e-05,0.007584607976444988,0.010585208674516284,0.04468112353828354,-0.05922161717133974,6.951286588233584e-05,0.015741881984490808,0.010107943218821247,0.08841291763505896,0.004420950092008817,3.920538161623565e-05,0.016726712240089935,-0.015440269587992514,0.011298011070426028,0.011372182840770767,0.0010538957897985404,0.010625958338989374,-0.010797167487111022,0.027037369160087175,-1.74790357759574e-05,0.00013963918128437761,0.015415087407471157,0.008962222485507538,0.0067769969311855804,-0.0036376916378851364,0.0006464021470007789,0.01833429759943987,-0.0035920403538408892,0.05446872271703079,-0.006928456776183426,1.9652454758073688e-05,0.005500001615574188,0.029166615025780423,0.0836612845608389,-0.02259494256954624,0.00010356488771297477,0.02332138247580098,0.011181319675349811,0.06089570869223064,-0.03535559301207636,5.168543710284684e-05,0.0018480635675188946,0.0023924082840904547,0.0022060669314544483,-0.00536185288583421,0.002115142274745949,0.0008169588530257885,-0.011283160545300614,0.07718799571175103,-0.00019622743048681388,0.00012029099338393197,0.019905539914847375,0.08803842466215002,0.4178759104485929,0.1868556829477177,0.00032623695801714363,0.021105869349206923,0.0034786346188733198,0.020226830758658297,0.0011635726254832376,4.8444215792871506e-05,0.028884433383765125,-0.02379912939215237,0.133080352812654,0.0035507864315358277,0.0002947365082289111,0.020545117146941187,0.03612074453085434,0.5191402753223057,0.004412972457058515,2.8873684169325753e-05,0.014234763086706945,0.0025788459548520817,0.024851268513451145,-0.00942181118208135,3.467037570629637e-05,0.0008528477514457688,-0.010552826837370525,0.03561539135332572,-0.1295187047650151,9.544514602686128e-05,0.0027647045395888586,-0.01675397197661353,0.11075906897429001,-0.02818592732647744,3.4940640701051635e-05,0.022139360454921854,-0.02687494887003942,0.07205288381727862,0.010288039305215985,8.269393558436285e-05,0.018980325081830843,0.0012472668529921757,0.004853636427618586,-0.02787985550389685,0.00011750077605477747,0.003148330167687784,0.00417512005334841,0.003971961210487247,0.00910443935437828,0.0006008132899865674,0.011536161056478004,-0.019485870699530197,0.0758802012322738,0.027615812148415575,0.00010808796778534646,0.01067763302763223,0.07047371020492253,0.25203513293117624,0.09053865218122831,0.001794672576442919,0.016451109036703083,0.012588913911417742,0.11830298303623875,-0.0011461299329533943,2.7363696403728262e-05,0.0053945668088089364,-0.014456086174388776,0.04470804142031025,-0.0018433552446041732,0.00105714936581837,0.006552666474184166,-0.007028047120853645,0.05827441166731505,-0.013725326495831351,8.031236412546382e-05,0.007398637253190655,0.0009477341969261449,0.0013678994587865059,-0.0032230766331197607,0.00016352259106536184,0.004254340395026355,0.010685344819595736,0.018617448517718606,-0.013524574582323921,0.00032943693883970965,0.0075908500292771065,0.048528397805171306,0.18068491069741496,0.024523229534719925,0.002081730037840713,0.019109362832458954,-0.004466300992707154,0.01882159564131554,0.0009751605341701093,7.613457349710991e-05,0.0028986602074230618,-0.003314934506578362,0.0047984865663489255,-0.01800641915394522,0.0017173066866559888,0.016139082418200768,0.00023338970936227598,0.0007141366220067892,0.00017272011825041541,0.00012948409769405103,0.004243903726807981,0.003790369256389897,0.00893632019136291,0.0016542088517589688,0.000171942475711261,0.00015682430637125114,-0.03796822606522073,0.17036281810918236,0.039099260309345595,5.439505450346946e-05,0.0009428122090607362,-0.026283252444635658,0.07572768282090984,-0.14791920321739563,0.003289595479677876,0.020529845590451408,0.015033394367713499,0.08255133718385274,-0.08193665350422775,9.05885918039909e-05,0.0029691193311816464,-0.007201985869730357,0.038440238997255405,-0.07706833929113761,0.00013587106206612925,0.012450098780136969,-0.014155876554051825,0.07575058593347796,-0.026463724899841938,8.83892541006962e-05,0.003089163001029962,0.024224181677390225,0.1247868791688542,0.009762620585962025,4.8789636942033706e-05,0.0054452052080137285,-0.017361294142125297,0.03353114244673328,-0.0022732914316581122,0.000252442887210432,0.04763377334976626,-0.01643603554083052,0.05095780662106238,0.016113133173173564,8.020486667113375e-05,0.0007616430745998131,-0.018653861668761127,0.21053416132152739,-0.004134837486393647,2.286006509327635e-05,0.008608172511833009,0.0037774742183200017,0.014400573944980542,-0.00579315025533497,9.16918366235159e-05,0.0011401152588052577,0.0006855575087581147,0.0030784690447933443,-0.028213380673689958,0.0003510242110363459,0.006435322671534391,-0.020600944781767532,0.1040079304329716,-0.07049995170893113,0.00011344685982217987,0.02623413253673248,0.0025682762251639023 +2022-09-27,0.01678532630352555,0.11226947129541512,-0.04196716103708704,0.0001581083093291583,0.002177156559457765,-0.0455707487432005,0.1370635877590545,0.03711054375245709,7.977642953352996e-05,0.02734987091840053,-0.0018075041687677707,0.006219318628348837,-0.0022082580639650367,0.00013444161007186226,0.012504156709610244,0.03594330314065767,0.04046808677563333,0.07437899453647644,0.000299759647517445,0.0023002278213478996,-0.019328576459353434,0.0452590210683257,-0.004406212222937443,0.00022345623947637124,0.008582183832032237,-2.6304390498355285e-05,7.563253224826605e-05,-0.020824496403964686,7.593925667367852e-05,0.0015111329300023255,-0.017703604799965616,0.07266072201515844,-0.0028895283908121593,7.149107908813948e-05,0.009405559838783242,0.02272956329335449,0.2145078658711735,0.0015285433255091613,3.633678372542003e-05,0.015354888740025366,0.0013821569135230125,0.0011644657026933154,-0.0004616587370949645,0.000915325234159062,0.02340906666695514,-0.041192163647161294,0.09608022421505723,-0.05297504634570584,0.0001499141002931559,0.004262413622793864,0.016412458442871633,0.010524951296693511,0.015151308215099373,0.0007622157224384942,0.011532457183878837,-0.0014145023244077713,0.016921170573443747,-0.05055538732013207,2.491128047707097e-05,0.003937751467823284,-0.0013678525742115805,0.004084923857786781,-0.017607945819723046,9.947326298207081e-05,0.01345025889879221,-0.005350927223234001,0.028008302989293646,0.004790426652702849,5.377792816553342e-05,0.003654047564758493,-0.045977142197279816,0.04073996460402511,0.07244997804484517,0.0022011229325786994,0.013929707696341491,0.04484543829009037,0.3521943745280679,0.030420531133023922,0.0001047823093360459,0.003387872636739283,-0.028251763017532384,0.19428002078133438,0.017571697680705906,0.00022517783814040958,0.003957601246721596,-0.03433746904554621,0.1940253305969863,0.012739076645947277,4.9850647634281075e-05,0.01819795094628326,0.00695930044060014,0.03428192952064573,-0.034371487762604874,0.0003345701072730629,0.0017539670290053393,0.06822221553708599,0.767536621310603,0.0037473658246234675,3.688560781889985e-05,0.018784549971324276,-0.010849973514643382,0.10684185992094984,0.0351923647448667,3.392883497830464e-05,0.009686587095495712,0.011297128996222015,0.03498892200961447,0.012939300496166635,0.0001040064519656732,0.002953220901345483,0.0019615583633547694,0.014380589810260648,-0.050198799738543395,3.150771524677028e-05,0.008698089445631623,0.00014942240457440143,0.000410150924698276,0.0010133168779098468,8.076987453813546e-05,0.005437201468104511,0.0066389999714589025,0.024190170456106715,-0.023816117246127137,0.0001254909288249453,0.0019204152058729543,-0.017553795949964153,0.014824609436670097,-0.003383608796412293,0.0006768046699065391,0.013103925733782168,0.004171398613128755,0.014863103986994426,-0.006147227533413637,0.00011812945089479751,0.003945424688448176,-0.0077136930787113705,0.029595656750326577,-0.0468984467908718,0.0016728366992670286,0.0017129611685064395,-0.014604809683334882,0.13074691023393684,-0.01338062413873857,2.872411539260272e-05,0.007239878040167199,0.018259841262290244,0.04762463540296059,0.012189697022286174,0.0012535354018938395,0.00013622022327736843,0.01642965391284275,0.1249368327516361,0.012812152667821888,8.757165681064715e-05,0.009949271923812304,0.037688752795689,0.05637655868787923,0.016176921149701762,0.0001577824116661695,0.014689124327432218,0.01394630386224789,0.019821215558190504,0.004237923391704062,0.0004038617777303385,0.016603645723422884,0.01997617222723521,0.08104788630843324,0.009455068561265217,0.0019103850979030443,0.029344301861619022,0.017300990323543874,0.06336810098593891,0.010637135166884889,8.759728408075716e-05,0.008239528416252431,0.08901087511081984,0.11591279932930548,0.10833656035768288,0.0019089250116617628,0.024904971464339228,-0.008594746614292865,0.029662024897690174,0.0012088674489300485,0.00011480169993999808,0.0018983498412978943,-0.04097585077400837,0.09337632928953474,0.04942089985719357,0.00017789000945401924,0.011872970796746497,0.041618589791918396,0.17828294129385358,0.013668600193820012,5.697593948544023e-05,0.00034866236797131945,0.0018427116778542436,0.005270555838733179,-0.00725849121067427,0.0033137445559760915,0.008552152307616679,0.030800741038031723,0.16285612492690396,0.026646304246796752,9.408007160728145e-05,0.024692446932151526,-0.04177476434423084,0.2209262894886229,0.08324217147627784,0.00013712839551602995,0.014505818035876262,-0.0011298461882342933,0.007241063453073507,-0.021100695711507307,7.380158181418024e-05,0.011390814420618773,-0.03938404325872773,0.19435407318827902,0.04389323096294225,5.093004358822273e-05,0.015185268337989085,0.02134532543820536,0.04228645337199522,-0.13738946582712636,0.0002461109364578053,0.0009882416490921597,0.038678916906536534,0.17460271335551927,-0.11246240167254695,5.50855502354947e-05,0.007646817822163435,0.0035905627809439153,0.04000253202917175,-0.004257451785087055,2.315828149626094e-05,0.009259382588158968,-0.0007000735139811307,0.0025660128199712115,-0.050884861570548445,9.536604893257019e-05,0.01119665218074461,0.012226723524746958,0.04605233258872941,-0.030970625057893532,0.0004184912965769043,0.0011106196064008928,-0.02437076329583488,0.12298941648809135,0.013377349333812972,0.00011349407418783652,0.021162587853454914,0.002784086684670443 +2022-09-28,-0.027079146253331157,0.17574369803611772,0.04278421539332662,0.00016294528233920592,0.014876591223161685,0.04641973326441514,0.13239942457582385,0.018708624875629815,8.412538592667073e-05,0.0037776987277584606,-0.027003596435643,0.07334877210242763,0.007821336800689695,0.0001703044380009853,0.01309932149939762,0.005348279941168349,0.0052487819934779875,-0.005351664290436061,0.0003438930925060653,0.006964537187311936,0.003552290932081527,0.009228214913928424,0.001898087622341908,0.00020141351067469885,0.005019664057388961,-0.014150724457242171,0.03797664355838362,-0.01487574107420612,8.135960583695106e-05,0.010158173744911693,-0.03744853785143021,0.13644989495310478,0.02071596466523839,8.052885335060982e-05,0.014274743607005126,-0.021784182599456702,0.17940193311656052,0.009549064825573028,4.164019597266846e-05,0.01688621187564191,0.013468999081253633,0.009832847356709114,-0.0007315442395148293,0.001056332915326311,0.008538951319492713,-0.007946024548915053,0.017798146575336116,0.000154960377114943,0.00015611225958569663,0.012343556158509315,-0.029952738404481444,0.02313786031167666,0.09436541388807383,0.0006327580762209494,0.003344491359383163,0.003601456714447327,0.046093819489328794,-0.010051268580873563,2.3284037609375598e-05,0.003182604140487275,-0.03158001975282393,0.10600699654696938,0.03634857474140033,8.849707266143215e-05,0.014455775976413992,-0.01786326286002162,0.09260611731748514,0.02899420874995907,5.42978872436521e-05,0.010628926227692325,-0.00354489984366554,0.003425554141933298,-0.027225295345063256,0.002018348265605348,0.00907060651225634,-0.02257878567194306,0.15686921700538203,0.014068158199434837,0.00011844451665411488,0.023353411455536602,0.019299435785472354,0.0989335354373055,0.006180210669615731,0.0003020711963095604,0.004494774342212311,0.049747943370770764,0.2685564574318842,0.06720525331354198,5.217956903762819e-05,0.014906528885943451,-0.02132193007833861,0.10426512997774312,-0.004982790107077863,0.00033703440245122144,0.03617388340172847,-0.006548413362309917,0.09851160075014177,-0.07320094090939268,2.7585378109702678e-05,0.01993068719368507,0.009536349688871319,0.10884263316157237,0.004541351517354362,2.9272838524283568e-05,0.0005108669280040057,0.020953131117842902,0.060347433605220435,0.03326025675746181,0.00011184404894717408,0.005760741450573211,-0.0016260126120120066,0.01232492731433237,-0.11083022578158003,3.047417233457064e-05,0.020333553959340687,-0.017500436390421214,0.05101403735484751,0.00990989050936168,7.605654007765574e-05,0.008198080299762944,-0.01161507151714962,0.04121126647421769,-0.05768774101961031,0.00012887079945006713,0.0026522712767226442,-0.009791786658204607,0.010703256649733699,-0.0005784698545203208,0.000522903519096073,9.758126180596429e-05,-0.006728459326360803,0.026944294294033482,-0.05296100865130169,0.00010510777123655873,0.00320114217871807,0.04692614917437728,0.12315547926835911,0.03658640121107089,0.0024455714341071982,0.020936741639605398,-0.03044008690397563,0.31129731313337194,-0.005470779011357954,2.5145062014333942e-05,0.0186209075617199,0.019033911596263275,0.05872388850831703,0.00865143416066789,0.0010597038500813612,0.010362359213264127,-0.02130969733127891,0.1416954898063825,0.008723195779900005,0.00010014906470866553,0.0017905100370404175,-0.04565217571752853,0.06600388910418548,0.14317010100374752,0.0001632440423683374,0.0034148095425015944,0.02379812427943404,0.029436382820406986,-0.04530991299519264,0.00046404724611458665,1e-06,0.0037858906510529794,0.014721898759120467,-0.00602269283570158,0.00199321698958184,0.03313857097506291,-0.0029483091415687763,0.008790419353458964,-0.003188550492082415,0.00010761028844992559,0.01498616924358828,-0.03086278743394447,0.039200087710277796,0.004928589459301936,0.001957155356256962,0.009230814063600897,0.01151104113601541,0.03950971278030465,-0.004615693918984802,0.00011543214604633243,0.004072532854038343,0.0028483685805238018,0.00737248549695983,-0.09821504125207561,0.0001566183469243434,0.019435010561374085,0.030056567630007844,0.13837656842787444,0.009202998149567296,5.301402182777814e-05,0.016748637922501256,-0.006216246343538073,0.018783600704269186,-0.04931315038828321,0.003136659866417865,0.00624133636214607,0.023549819294119013,0.12571897772789403,0.004385458900885467,9.318098752526916e-05,0.002165354801967285,0.005138009940153793,0.026661031035071125,-0.0195069896977221,0.00013975867805229993,0.03476498064200048,-0.014397904803241055,0.08725109799032221,-0.009390768208177845,7.80507526830889e-05,0.005505505998244939,0.02383943105342918,0.12064211954901652,0.0022638971579224294,4.9664300459104466e-05,0.00037705988533043907,-0.055551011481347556,0.08190028750377218,-0.14943981927089037,0.00033070132791743076,0.007274819361783558,0.005032269335459375,0.01914737893061676,-0.004019303647057509,6.535351050711702e-05,0.03024848344796625,0.03293214930751679,0.3140150456104951,0.04254428289181664,2.705832469938129e-05,0.0014735175816258848,-0.004689305826518079,0.017029457845019993,0.0026762573556787096,9.625353760958229e-05,0.0014408039210594943,0.0098955850564419,0.038760824827194125,-0.042995428800921345,0.00040241710904239,0.007527488166729302,-0.029463829447521253,0.1394550182100603,1.4512867048324315e-05,0.00012101155486765184,0.007623497193033277,-0.002581539000951717 +2022-09-29,-0.0128275729015751,0.08770428971811114,-0.12378996820859446,0.00015467147947685782,0.007364042131617802,-0.016080287197075226,0.058384121209682144,-0.0949427764845541,6.608601734111065e-05,0.0564124731038229,-0.011281743140311568,0.038328081071032624,-0.07304372636220165,0.0001361621297255589,0.030393532852146916,0.017651330682013834,0.016155072384845707,-0.004646077019083369,0.00036875371065670084,0.0029815326133941127,-0.02888638113790073,0.06318309519826311,-0.016167840845459847,0.00023921588331097583,0.007945643402922895,0.013473305411814226,0.03264539481441386,0.01593545628634764,9.011539048704245e-05,0.0010410300850041208,0.02323267651277415,0.08272691256557425,0.006682673723660952,8.240285980537868e-05,0.008000820746924644,0.014629705510981545,0.12846813366993945,-0.08797117912343266,3.90515956292637e-05,0.025566164258478886,-0.035108969169388965,0.033683809142146096,0.08106894973121591,0.0008037882756090208,0.004111154758862358,-0.0033278000404059886,0.007186822576265651,0.001622782817219761,0.00016191317373271872,0.011315999721305522,0.023061942975082916,0.017570205495325536,0.04044678611222378,0.0006415690593887934,0.013985875603019827,-0.00874347184462751,0.1057838951529341,-0.053557290195129406,2.4631289622322342e-05,0.0011396571269153488,-0.000999608803205372,0.0028539981117320047,0.0026623833949001702,0.0001040464887225718,0.015822878813859884,0.01443975912190297,0.08996771900313473,0.014051830219455415,4.51788380520811e-05,0.010514413811534321,0.03217429551761672,0.0260475723603042,0.059268123111534524,0.0024091551295174164,0.02280640325346109,0.0053565592049521155,0.03838230063620569,-0.004843603346996114,0.00011484365726447478,0.022761653285329784,0.0021871384289266116,0.01502848577151662,-0.0025434279431167245,0.0002253560795837656,0.001714748551486359,-0.008847155963161853,0.05199799136257651,-0.002344013697702464,4.792676016520259e-05,0.036358603415075026,-0.05261037451558641,0.2980443869628993,0.07326705669872845,0.0002909224615968049,0.03332827324934411,-0.0582504197757714,0.7272767362588508,0.07847022125948128,3.323759524614279e-05,0.012318571984494634,-0.005847175692602524,0.0754847601808451,0.00873127837237561,2.588025629779051e-05,0.01324834325696708,-0.0058915799392912005,0.01768860639854052,-0.005653576386677593,0.00010729041182444196,0.013779573835171303,0.079481645028104,0.6024951058337287,0.15779949235215304,3.047233258975445e-05,0.015506300075238936,0.007793088125745777,0.02102268919255519,0.007018270851060862,8.21861620402369e-05,0.00020866687194670466,0.005816043996981403,0.021797064209400828,-0.03986509928636564,0.00012200518148008833,0.0073269192242965565,0.005995787803626888,0.0061981754364314485,-0.04271251984042652,0.0005529144641770249,0.0012304846509962005,-0.01876446681481251,0.061861991391656386,0.009507561202609704,0.0001276727877846587,0.001202926456157269,-0.029432560680236614,0.10160949899337061,0.010914682904775048,0.001859143500902678,0.03367995331867119,0.04772377307784475,0.39083343220258465,0.06062604217562221,3.1399682793999836e-05,0.028772540181542947,-0.05635157993483259,0.15706449853291596,0.05754956074794813,0.0011730035720189506,0.010211327635805685,-0.015500639232110104,0.11333118757227204,-0.007499167193762476,9.108058513500783e-05,0.012419928467283963,0.02864944528981173,0.03824231397278872,0.00793557896040344,0.0001768143224235623,0.005435539659710835,-0.0004997584056740316,0.0005467406092334018,-0.00032514958908078545,0.0005246657190310481,0.003087280286213421,0.022763095256377954,0.077600795852126,0.006710711179590688,0.0022736074395574473,0.006011057039854547,-0.008653954979499839,0.03346086468554749,-0.007393815690237002,8.297893227313737e-05,0.007472723644955723,-0.04610174831351902,0.07578140520667423,0.006646193337505711,0.0015122790407115171,0.004845157580817576,-0.037717292969350835,0.113389427668247,0.053274027688398014,0.00013179046443935412,0.01550676120542746,0.01820144353396271,0.044832513202786625,-0.022530479356388647,0.0001645785090908841,0.00035845794515113635,0.00794043198328043,0.050274437193273146,-0.014845289729364625,3.854879771309199e-05,0.009188281030610259,-0.01073944593903746,0.03494818549232356,-0.021738714820874694,0.002912562824830361,0.02827126919961904,-0.02742844710389572,0.14093581159596963,-0.004079562015951617,9.681004680973984e-05,0.012206726589617502,0.010106940764984721,0.057038954572721,-0.014648623647113446,0.0001285017220691933,0.017809298729544433,0.020921314075796456,0.12514607959796956,-0.039669290895268536,7.90715785237879e-05,0.014935658245189958,-0.05506785522377295,0.2542545292151769,0.08452265180344996,5.4434828476353785e-05,0.001093442401612293,-0.003309574130683504,0.006702963246760817,-0.0012112172671174951,0.000240732468519663,0.00809997583557077,-0.00821917377840014,0.0327784493626101,-0.016635480229179204,6.235253775657388e-05,0.006739516435072258,-0.0033791097340965634,0.031356314492161357,-0.013429221826499855,2.780408254998049e-05,0.0012381226430080512,-0.01199553272937872,0.03824565046599105,-0.05991413798507425,0.000109634301241573,0.007066620966404817,-0.004347880237229064,0.01700513340828408,-0.11080277920875418,0.0004030189808207535,0.00639666547826384,-0.020274498528911795,0.1179626230927184,0.004940343577429876,9.84413352700618e-05,0.006935236621488185,-0.0032227207628078704 +2022-09-30,-0.01417836803606422,0.10436455424651908,-0.013979375819170883,0.0001436679208663052,0.005592531015137667,-0.012839852606658148,0.044407205401095655,-0.016382623359737027,6.93772564588789e-05,0.001073945486334501,-0.0239172861420769,0.0898127506623248,-0.026376214679948752,0.0001231887664132163,0.006756733531478966,0.015571209976124425,0.014492631767809449,-0.0016344384609406125,0.00036261265758026693,0.01038128499274672,0.03306804920129482,0.0651289986547657,-0.005967869996200301,0.0002656635345102516,0.023289593092043773,0.006474565720620298,0.01723518821921392,-0.013366717479002392,8.20240771489237e-05,0.0033235845948860745,0.0002385782505155396,0.0007140829491127871,-0.06922894799268328,9.803294325096305e-05,0.008297905302841574,-0.015967942875496865,0.14462666092217968,-0.014912509396784613,3.7861622868224347e-05,0.01067524600063872,0.029988864683653506,0.02366699265163767,0.021659269001642955,0.0009771511225385287,0.010457298868465819,0.045140269477135446,0.11676579611064689,0.07357397842492863,0.0001351793609703758,0.006580519699604251,-0.0018726398379501443,0.0011214770062971551,-0.016790623045193968,0.0008161843118419508,0.014073742283530095,0.013386333923766565,0.19347434325297835,0.018494434201348726,2.061868969276364e-05,0.002564208709258718,0.02802817088958798,0.06839766964765588,0.002282995638008805,0.00012173192488027616,0.017226194847072593,0.023876429572002505,0.1415345215104386,0.03462134808189746,4.748635350268611e-05,0.005736899163381094,0.011466920828754801,0.010739358923589392,-0.13190885772736652,0.0020825307810907138,0.007983390970433353,0.015979433674658525,0.11208007885186291,-0.07018084637648955,0.00011732351432500795,0.0009860623216686633,0.03947447026655699,0.22289617029473305,0.016668310974876525,0.00027423440255677095,0.0005576294896443448,-0.04508264719121019,0.28255285905999833,0.021695142008016737,4.4943890023475174e-05,0.007380454328618371,0.029093761643947183,0.1574919462031653,0.0077683054643123165,0.00030445866175541383,0.003564254063159615,-0.05032413615314207,0.6382958960845113,0.027804481893662945,3.271783122693979e-05,0.005767103339112924,-0.0035331782233991678,0.03764069339735321,0.002948396167419295,3.136098096842802e-05,0.0011712413987176764,-0.006026902950655374,0.021822960396167313,0.0017669176233046035,8.896174426815906e-05,0.01827137508854737,-0.0045508404646733835,0.0303214448443477,-0.017475689310274975,3.4668423660320266e-05,0.012326084930681753,0.00490464243384239,0.014074960902624221,-0.026902962076636186,7.725694601610957e-05,0.009145270735222727,-0.0023737819527485317,0.010789586301168446,-0.0030379331701041444,0.00010059690660427302,0.0027830057862576387,0.0027956916567991375,0.0024968110111391636,-0.0020002113158253333,0.0006399988017034264,0.013377373780319635,0.009575728438591415,0.03105856442921428,0.0007673458485690425,0.0001297706417043504,0.011275572364806755,-0.010518007174747053,0.03362959724456474,-0.008447878397810488,0.002007386371305465,0.008657651210259965,0.02355171841212782,0.2158934465250366,-0.031519038834767275,2.80520972624943e-05,0.013897145062347762,0.03428549770840696,0.09661594378375424,0.028736641905951498,0.0011602001772934314,0.010337857938823218,0.012213283579854746,0.086971800123175,-0.0025649646722043272,9.351464407323217e-05,0.01592491059228676,0.033076270545149104,0.04300180293556783,-0.0047037642532000885,0.00018154122315111034,0.03000094866061041,-0.03127794124190607,0.041878301907827514,-0.041113094313638444,0.0004286995323765839,0.00018199504417928567,-0.0400241605655275,0.16700629845122147,0.0028205380477788547,0.0018575466225816406,0.0013740552768121438,-0.023536335624032106,0.09443217110350922,0.01954377374410987,7.996671285113752e-05,0.004797563388710269,-0.009595206296376498,0.013190553618967843,-0.012374334743299511,0.0018082916822280643,0.040654045605664525,-0.030619732006203083,0.10400013537736844,0.005925264532285649,0.0001166496707138378,0.005710040851949048,-0.024618973705635684,0.06742244490513717,-0.08359595598047352,0.00014802184854262177,0.005508530115839014,-0.019078596033925393,0.08157154000056131,0.009126367590642195,5.708495670211082e-05,0.015280337301995484,0.0550505374224832,0.165618838106027,0.09258797102002735,0.00315043038512281,0.008784341159943518,-0.02055334308942531,0.09834090718261637,0.00962491552563523,0.00010396540081726889,0.01906714374569384,0.012038007038898273,0.06374085289690423,-0.09569371431583623,0.00013696118565824285,0.0018165689770397123,0.044766161714589206,0.256382014809585,0.0954035541908152,8.258686903179669e-05,0.00877089740331561,0.027683425087318202,0.1268965739782535,-0.06634939193306397,5.482988303789505e-05,0.036646530903912164,-0.020399707306451426,0.03390304766398995,-0.0010591121957321656,0.00029336924968387387,0.004616185796683651,-0.027478464938189662,0.09510281732975602,0.07105073468597393,7.184779773440558e-05,0.0007452804306361386,-0.0012611062720700136,0.013311635427127955,0.00021680773491505886,2.4442833883271693e-05,0.01635268783836021,-0.015815455301692878,0.038386484314530386,-0.05087338100105202,0.00014401652422700744,0.014485403231330778,0.009902065503544494,0.04421881629052362,-0.0020606602937620773,0.0003529771995883048,0.012476802300736441,0.0032908873746087274,0.018433901493497194,-0.1353031585624073,0.00010225099742713597,0.011662614415857489,0.0023092055765166664 +2022-10-03,0.03099023227700847,0.2188936534138163,0.08237916849317288,0.00014971945771560823,0.00412612798623951,-0.03517038536174411,0.11439087931126056,0.03518706070514127,7.377279795478269e-05,0.012658214870511855,0.008131787287928037,0.027270656856097687,-0.006947883752707253,0.00013793917226321572,0.0010572037532070601,0.0111364069704916,0.011281375863946208,-0.011821739192321058,0.00033315848678467855,0.011944154678611738,-0.024845935480902703,0.059346719627940796,0.015499349390584855,0.0002190566324403324,0.006125047442500081,0.03004882232652145,0.08378304486580594,0.05929445110929265,7.831015004004918e-05,0.0008703797914044137,-0.039954953537101885,0.1619406353291127,0.03354404221384297,7.239434554683608e-05,0.004829521722206071,0.0033058726023160647,0.02857506925739125,-0.03399131671108542,3.967321867487666e-05,0.012606358393154023,0.017678204656920972,0.016949964894941896,0.016307066598441982,0.0008042927258369375,0.016232652775318577,0.020445760834880304,0.054762973299737346,-0.014498827852074193,0.0001305503808233624,0.012733584703902675,0.013715296870825278,0.01150016691041663,-0.008647454685915315,0.0005829421079490064,0.00913582809319172,0.009425871696368278,0.10342156759433202,-0.024758344055877426,2.7160214600444376e-05,0.004761906916976348,0.04129906303811281,0.12415723577566275,-0.02514468652376471,9.881416423443404e-05,0.02852229351204868,-0.005905400359443801,0.03023784958302256,-0.03200024052128081,5.4974370134270394e-05,0.007451003916494908,-0.011912053209214605,0.00945886211283108,0.0023617071998544934,0.002456239451905032,0.0010845040403755092,-0.008405612518930941,0.06939438340890343,-0.016418321517640628,9.967750358153074e-05,0.002750981682472055,-0.01951152012598031,0.12180993890351527,-0.0373024182868466,0.0002480370815891549,0.001872845950923709,-0.035534154470433135,0.24257180532139233,0.010207662635345689,4.1263553124990507e-05,0.012422837409244858,-0.032450500867105735,0.17638617409357296,0.027761378962432935,0.00030321010556712215,0.008305851794868063,0.00828591949574529,0.08649288372588872,-0.000976947172927773,3.9754890697420475e-05,0.02750569808690719,-0.027937381478424245,0.2984337323431089,0.12296311154795851,3.127659717488336e-05,0.00298746888225879,-0.009391504667928149,0.027374707437494494,-0.04460710755757617,0.00011051174793537513,0.002209060793665382,0.032890927666237635,0.20130337135601148,0.009393658564505693,3.7741351706959255e-05,0.011031936019143028,-0.005640983838134237,0.01602416750587606,-0.05322384990877863,7.804709838513468e-05,0.014552877873638265,-0.005937799746258537,0.021267170644975665,0.011589844647443236,0.00012766281797105242,0.0022743287842081072,-0.014030526385672617,0.012532963310213132,-0.015489346172466886,0.0006398759066684587,0.00779764574970814,-0.030716941140857268,0.11521244198740727,0.024931346746734345,0.00011221853449548958,0.009577876628213326,-0.06618881342260623,0.22363637945165704,0.06769002970533522,0.0018995963110521516,0.0028988788842374403,-0.002070995127375602,0.01991731327785153,-0.0092838325828219,2.6738098446252324e-05,0.0016394107982197498,-0.024158414592391615,0.08317693858809778,0.005710909224135518,0.0009495913900204252,0.008405321010766438,-0.02079142606714543,0.1481302505661482,0.0019420611723269254,9.346869174723699e-05,0.009518795511117818,0.029559274574634958,0.03960152860132876,-0.00917708072640254,0.00017616807472634218,0.004847439401780172,-0.032879558965895166,0.05177547797526893,0.04190881224939399,0.0003645069223313799,0.013482684262073124,-0.021742129723598718,0.08197184321129501,0.006966451682411179,0.0020558324795286877,0.004195537404013127,-0.018173786017154865,0.07004174134552117,-0.02789153116470379,8.324896559000228e-05,0.012259110764639751,-0.04203489028302964,0.06819565051649154,-0.017436354301677174,0.0015322528348748134,0.002928384621344657,-0.048586380293099904,0.16262640637867623,0.02490756546234608,0.00011836941910195829,0.01052478249545333,-0.007650527119410822,0.019619522887090877,-0.0019714505804507973,0.0001580750373790805,0.004464877482107867,-0.028078924039280355,0.11174227979553421,0.021087619022856746,6.133054999062384e-05,0.0065991458240356096,0.057955219200322275,0.16399913604139882,0.06673847722525095,0.003349415691286297,0.0018107998969788786,0.008286596391143415,0.04203629057813894,-0.005928500838941855,9.80601090231958e-05,0.006428972761948553,0.002561597711674842,0.015480340469136206,-0.0342743885250973,0.0001200027511944306,0.004552823531996519,0.008386012438707634,0.05133898297874071,-0.011360708444016362,7.726039779561759e-05,0.0037521171162209995,0.019637101049183682,0.09266631098960794,-0.004612967498168313,5.3260212584463205e-05,0.0013802312021748582,0.0316441513193727,0.05799915515267596,0.029030624768218414,0.0002660119698742768,0.010005272374043103,-0.012047353805235883,0.053502226372018465,0.012937371780566082,5.599305793471433e-05,0.0029602215536484043,0.013526603061125013,0.1576180699115534,-0.002873244539363836,2.214185621276626e-05,0.030789676875145434,-0.016896257775170752,0.04639126814504744,0.035831642229563296,0.00012731021357237208,0.013088360061534514,-0.01989451276097282,0.08561962510561148,0.08259668023916857,0.00036625870563506996,0.007214119397525426,-0.031929664834228336,0.13796751266872181,0.030996082291297862,0.00013255292665559107,0.01800308145718807,-0.0063485099693784625 +2022-10-04,0.007943028660032249,0.05455356331352709,0.007589764493361873,0.00015397477939007033,0.006265782169012688,-0.0313049491763316,0.10044663179034315,0.02836729055075671,7.478046325169986e-05,0.018005583950880907,0.07852780550571875,0.2549810515685727,0.12287741706936825,0.0001424665008733697,0.006658864656182687,0.02957033760387406,0.0313149107727442,0.07373100537256223,0.00031869332008103816,0.00703249808146642,0.010888674888589231,0.02436681357057222,-0.03793718617932585,0.00023381591178115585,0.01929415074304998,0.012028119212260751,0.03246569895500934,-0.005368545942904165,8.089463249982473e-05,0.010281040147686464,-0.03800353818183627,0.12008707912278685,0.020809047940853635,9.285763224654289e-05,0.023011828211671387,0.014603474402320118,0.11238474562556836,-0.10342352261568137,4.4560231796116745e-05,0.016077520404529574,0.013538200753238427,0.0087991927847688,-0.03850559697974578,0.0011864867797404075,0.004221932644452874,-0.035153432422160985,0.07608405908723406,0.006584201181151674,0.00016156078276346837,0.023219080438139507,-0.04520196196219751,0.035811370292106445,0.14681236911265774,0.0006169652514421998,0.0038946131952478234,0.009035228465392961,0.09566907392160055,-0.04974172432059048,2.8144293948470992e-05,0.002374503550304334,-0.0355776583720738,0.11345868229641433,0.041294608707114024,9.315167382243368e-05,0.007349526417457216,0.015223633070284475,0.08273855920303888,-0.08168341998185374,5.179313176473204e-05,0.007841682256731203,0.008730824142370893,0.006913256494632045,-0.008514381174312554,0.002463176559120324,0.01131973105237339,-0.03532644160580539,0.23460144765798036,-0.06177331140767618,0.00012391426742610416,0.0010101725111523931,0.03658200418298528,0.2393699384396869,0.0038171865351251397,0.00023664978753041752,0.02514384506781503,0.00012271105965980665,0.0006691831661510529,0.0010576412734150992,5.1653488193125785e-05,0.005363483141367437,-0.023452485066309446,0.10998742667949869,0.0017105489803791838,0.0003514249844967085,0.010316598523045027,-0.01466886077906498,0.17373390311337053,-0.04640123324821984,3.5038220499749914e-05,0.0484736711288773,0.015447583467368657,0.1338056926836671,0.0010354569462038476,3.857160129767845e-05,0.01543744602422832,-0.009559198958416268,0.027346792105596644,0.003125623479402377,0.00011259986440593958,0.017759471700006975,0.03369728970188082,0.2095310778626871,-0.029144276956012377,3.714829628072935e-05,0.003811226614178799,0.005584024731504403,0.017526537816062327,-0.020186395151640186,7.06364038942934e-05,0.0028626281182499115,-0.01112157137393141,0.045459968861639145,0.03194644122816811,0.00011186278176687046,0.004721093765002318,-0.00019762016567068525,0.00022354631637793,-0.018057705271651653,0.0005052883701497852,0.001330461608261523,-0.01782804253882616,0.07001591805676605,-0.030090502635407166,0.00010717484967576619,0.005594166310049694,0.030813945674169695,0.1028181194869808,-0.03504058282537044,0.001923520551319437,0.013192314150197414,-0.01952758468599399,0.19038510750654758,0.004469670141958751,2.6375320861702432e-05,0.007235501830661814,-0.07278300201881668,0.2085582420468539,0.07309612086523691,0.0011409690841985187,0.006331011750876864,0.036392596527516655,0.2958824278614562,0.05244125665796122,8.190671575192877e-05,0.002854482727252995,-0.015265980361518374,0.015110164776668527,0.010125286735369887,0.00023845195381573542,0.00244974643763414,-0.0019905476245407217,0.0027924760716109883,-7.363995202871383e-05,0.00040915421178624735,0.009464443608567512,0.03863495237551155,0.15355731824762067,-0.020926025785876094,0.0019501149130506368,0.024675897582896143,0.015783445122235493,0.06570371498595629,0.00642757863372422,7.70729973805407e-05,0.014175609522500807,0.04073764567685897,0.05330758665536236,0.026893419762835397,0.0018996959495652416,0.01741259376875143,-0.009583326523782406,0.0253941106956279,-0.004881343488270041,0.0001495200087635733,0.0016608942743636078,0.01198465143174329,0.03046096537209153,-0.023258317413800682,0.00015949318121162285,0.0045965056185277645,0.004593245974838338,0.021085199353819188,-0.0018321009855012985,5.316868468880557e-05,0.020838338167040515,-0.0015515718531908067,0.00515880128515301,-0.011240998590809405,0.0028506319677943205,0.00035855919766750036,0.02442779139378287,0.12490395511389842,0.010580839255933254,9.728560469347529e-05,0.0052512038166136615,-0.012249408099624465,0.0726566029181677,0.006489641547223299,0.0001222646192528082,0.009719036489300706,-0.004628559708261543,0.030277600355308774,0.005981240413030025,7.230579689928028e-05,0.00828398445483976,-0.022256614024917964,0.10164112783566706,-0.010579817160790417,5.5034751998062794e-05,0.02737702095550598,0.007694766136341549,0.013642969772116388,-0.08508473252567705,0.00027498936757956147,0.0042202993648935315,-0.01565009299068926,0.07858507839323922,0.005054152709249459,4.952120542415756e-05,0.0001700414669624106,0.024878731431803525,0.24088734538800893,0.03422007891240072,2.664682879935083e-05,0.014781933187848657,-0.014448527039857655,0.04899931181408073,-0.18665204040990546,0.0001030724404802308,0.006090957968014259,-0.006047219833506179,0.02271514188306455,0.011111695915323554,0.00041963168586511135,0.005085479189045425,-0.013415645613212535,0.06651747375084263,-0.002172944976773893,0.0001155174587984402,0.007651822540504113,0.0013376686221411847 +2022-10-05,-0.004613684928621199,0.03185780163748235,-0.012146878039403487,0.00015315060369748134,0.0038898219347322065,0.011667183143846994,0.04141018772240098,-0.022922714264209384,6.760352513736237e-05,0.03304669647574288,0.015646630492165605,0.059292365668142034,-0.0050954216686068055,0.00012207289739074497,0.0018620673984318615,-0.018844450191665467,0.0166251885573157,0.023424101679984283,0.0003825469534157109,0.012961115007002064,-0.02502763544752414,0.05890870959418372,-0.00825172463717099,0.00022229929387414257,0.0021330759901729644,-0.005555866056093334,0.01619298529118893,-0.03085378330460834,7.491548326472043e-05,0.006676006258842495,0.006528298955279883,0.02471134648534702,-0.007518677994706672,7.751637932285326e-05,0.0073069423925965025,-0.012640168490455149,0.13605865281980398,0.006028452907605398,3.1858499049979705e-05,0.00292751168926919,0.02023628826510668,0.019967501675509394,0.014396691988762549,0.0007815412665680006,0.016842498411994384,-0.05249100855074992,0.13086398641225191,0.01703102967549239,0.00014025768224796707,0.010974885104103483,0.0073773371983930705,0.007360722369672509,-0.006800376316674225,0.0004898956184374912,0.008349236652168199,-0.011015299194947863,0.14518583605263752,0.04046285706623705,2.260970195658952e-05,0.0032462250157951206,-0.03777684889590508,0.09225883154774328,0.03654811374924471,0.00012163787287753336,0.02390910983352403,0.0015923136985863643,0.008784370539112775,-0.043428173216502296,5.102462280526095e-05,0.0032268422935098676,-0.027070087280227483,0.022354689796707565,0.02081242653324844,0.002361804690788572,0.01082480617927633,0.009871534002218236,0.07940789930608617,-4.7649718328313014e-05,0.00010229939054928306,0.007759868542263584,-0.003440741741812817,0.01689264712746266,0.0011845094266215276,0.0003154006601446162,0.0027440143193865644,-0.016461567923519344,0.08830571733817993,6.093905131275199e-05,5.2510158779555805e-05,0.013706910484066026,-0.011420887160743083,0.0642189801454473,-0.24473760221501267,0.00029310501135476174,0.00044746943785233407,-0.028283353325923806,0.43891294032653466,0.015292076508619556,2.6741314087398505e-05,0.011486286065159076,0.01046417414590185,0.12446702080936076,0.01147146865371935,2.8088747436437012e-05,0.010892031023088103,0.023059317639419423,0.06115310242359535,0.035504864736006815,0.00012146487649864289,0.011237837979546354,-0.044729006902747094,0.28745399224875606,0.07777121230139851,3.594291429261038e-05,0.026233163826025765,0.03880018941472317,0.10100106788211467,0.07191592509277495,8.516972842614161e-05,0.0018136177112316838,0.004088370156894918,0.01817299119608649,-0.06010800977204826,0.00010286612707789381,0.00046141994544103256,0.063929695000922,0.052950206862150864,0.20063902751271556,0.0006900976249769969,0.01797023859216083,0.0011489087395832646,0.0049226240081981214,-0.009490495904925967,9.823695144087622e-05,0.013359637105178061,-0.06710931281039503,0.21391151864771663,0.059427222175772565,0.0020135749302625425,0.03710419455947543,-0.0020036449922313706,0.019577892834496218,-0.019519039161042653,2.631703897449346e-05,0.0014514181894182039,-0.07454079890128333,0.2286756255512113,0.04637311287923139,0.0010657256953710032,0.0480717036374286,-0.004022845992538903,0.034749788555336725,-0.0015536889466711144,7.709156880268214e-05,0.004865658071287493,-0.013887931330856283,0.024464018064859146,0.014667912091005557,0.0001339846845124846,0.018765796121729187,-0.0007005476017359841,0.0009076466847159011,-0.0017710808607626614,0.0004430214342656508,0.002515878960419722,0.03614994301480063,0.1394636128584406,0.015283996993756287,0.002009079149956495,0.003684345559308821,0.005414299925187472,0.019194676056254148,-0.021292762541120724,9.050069059030619e-05,0.01092815756691267,-0.005856514009761335,0.007778875831254242,-0.002299257443904355,0.001871541833641322,0.027956851206030878,0.00022655110120916742,0.0007349519212804911,-0.061094412573168964,0.00012213026079123238,0.015619059849021644,0.035699085454829645,0.0837734869957168,0.050928502807042156,0.0001727471430453376,0.008631665855195574,0.030085818559819236,0.13280587858822826,0.009757998913971017,5.529151091623075e-05,0.01667549522620983,0.0033939657982464035,0.012156159395153278,-0.0008313259088939317,0.002646239412466049,0.0004737279841900174,-0.01501087081595101,0.07730789813799718,-0.006398661106682224,9.658787077047256e-05,0.029685663487504406,0.00018452933237465512,0.0009632660906798361,-0.013936044261190248,0.0001389248455220405,0.012520110205295755,0.00693200533010797,0.04296933911336325,-0.009960119929067356,7.6304282435515e-05,0.009380890447829957,0.02506102577368926,0.10247110973484334,0.013179235967704692,6.146739365368861e-05,0.004381490802320795,-0.022327263559783584,0.038984058500164454,0.0046795359721794804,0.0002792401373702169,0.013568053340034083,0.002099356343817478,0.009023662228743665,-0.005364811654731966,5.7851910695816975e-05,0.00978688216932318,-0.047636292032952235,0.6003482305192324,0.07656368164189123,2.0472269949560576e-05,0.00786725870929469,0.00336776612738292,0.011985536016606102,-0.08166497165091431,9.821852951608698e-05,0.0030623094918503816,0.011006633593292783,0.04675254319408337,0.00288015186134784,0.000371088281420913,0.0008090346156280825,-0.004457056872906884,0.020736617399481575,-0.0006891747381409029,0.00012310680409575553,0.007143896574529161,-0.004140693320538738 +2022-10-06,0.011844925839744435,0.09842003313116562,-0.020322851390743985,0.0001272727485138015,0.01697850694661696,-0.032010306957565904,0.08931916994668583,0.024424411426534384,8.599153211703666e-05,0.01659578813837959,-0.0033296979182532785,0.010663592191302342,-0.027826710768933734,0.00014444366892088967,0.022448490085441346,-0.0025070272122015205,0.0026269411671147715,-0.017237188912908125,0.00032208949304653916,0.008871121335444803,-0.012803630697913064,0.030747350061892362,-0.048189471183337156,0.00021788293609102137,0.004521014872063476,0.004296540376830369,0.012767598720173638,-0.03541397757517545,7.347784536058722e-05,0.007795048227531524,-0.05330465232170059,0.2020536359475526,-0.01642129397759261,7.740843732350043e-05,0.014033499926452248,-0.024179451044441472,0.18432958363584329,0.03235281387024676,4.4983165008314805e-05,0.009765339171814779,-0.035248666226958575,0.024447050149058933,0.08851246056400561,0.0011118879192340621,0.011569995391470795,0.014313820628316378,0.03735089352105596,0.007721999929055981,0.00013400359863028396,0.044141897366968524,-0.0009731261598437541,0.0007454303191556845,-0.04432367135158633,0.0006380966326731834,0.020847869283500756,0.019732930590394607,0.2508062507288786,0.037192863444870036,2.3446392000641053e-05,0.0012021287613749364,-0.0017261991658884118,0.004011599916954875,-0.009096321172842885,0.00012782750923909315,0.02401925182163835,-0.018441759499427685,0.0986208334278591,0.07446005542424053,5.2637530251507956e-05,0.00047334123936628423,0.016448401134454938,0.014664967719888749,0.013194257869829433,0.0021875880886439085,0.005479003380528398,0.08958373672726425,0.5953964571445873,0.19181797103974896,0.00012381550562248287,0.04805458671577544,-0.007970538368357646,0.04152890297772022,-0.05202037994875388,0.0002971976900984145,0.03108492852630405,-0.0014847364513129661,0.008289549986624106,0.00311416010633802,5.045211443992775e-05,0.022283890917237578,0.060157827053981185,0.3055140759704501,0.02677743861337926,0.00032452467522052687,0.020080477289327547,0.03271371558110146,0.4905870937967392,-0.008844254534497864,2.7672218999318153e-05,0.014796751828505327,0.010879930987130044,0.11708540562812544,-0.02977190966070725,3.104595937214434e-05,0.002021017631498108,0.011650573155307401,0.02959748199465795,0.0036368024732173357,0.00012679884043644934,0.007154514143334453,0.062169431509037455,0.4294171397840588,0.06045080529456148,3.344181940882557e-05,0.0029460825257245473,-0.024577825331722605,0.06658377738615527,0.03397383353110119,8.183750984236755e-05,0.03736187335856694,0.009406665259484432,0.030268727334940636,0.006902997676582154,0.00014209870633830217,0.0005625258472659087,-0.05089301443552913,0.05312071903056141,0.04997735648952155,0.000547608009601935,0.002951914240486262,-0.001358247308076916,0.0039563777621118255,-0.01472129193410962,0.00014449975472539516,0.01050359540272535,-3.7040622876732375e-05,0.00011668138765219061,-0.012377041221295263,0.0020374918042623965,0.012006215471839032,-0.007724613830648769,0.08052988013447628,-0.016347366338372374,2.4666181338914676e-05,0.01568757815830228,0.0344934971507787,0.08472064372937206,-0.061483022581082375,0.0013311262585903945,0.007354320487767788,0.00813345660569417,0.054766724200514746,-0.18661145111231864,9.889720826320686e-05,0.010456554186854004,-0.026584619173276414,0.0387291550233633,0.041304763929121864,0.0001620085025512924,0.027068631841124322,-0.018648759672224152,0.028420424150824204,0.008512488745870015,0.0003766372853014858,0.024076159750876555,-0.009619742191424254,0.03814050668306185,0.0018535995923362092,0.001954912466358611,0.0004295528509702367,-0.002664549000120381,0.010635762729560797,-0.032851019044514936,8.037952610336471e-05,0.015509103747491452,0.007371056366309648,0.010715396545395632,-0.07208997056574346,0.0017100101035499719,0.010092518425797047,-0.036062221921026504,0.12592681506717662,0.0014750658526903964,0.00011346196451084911,0.0013066890731458392,-0.005767358098118995,0.015355338849077988,-0.01346435508074982,0.00015225721769689918,0.01148165885522453,-0.00013162228179627264,0.00045786681571094586,-0.02332520499494336,7.016235725531531e-05,0.005259198389533442,-0.007096290749586127,0.023391253255416626,-0.004931457225340081,0.0028753847696431564,0.011159688620144163,0.01849057688459424,0.10173492531202115,0.004612523868329309,9.041093507875275e-05,0.004171012492588695,-0.0064298128343178015,0.03943557805315257,-0.024687719878851603,0.00011824176516612097,0.006305716734895028,-0.01071364831703584,0.0651997317743519,-0.19339248425304523,7.772133931937172e-05,0.004879584061494536,-0.03458214717863252,0.1477250125932679,-0.010653103367773486,5.8836294619381595e-05,0.020588113940176046,-0.03702639009362933,0.06591287724827377,0.042303836076505265,0.0002738864181631949,0.0004775448974430076,0.012719541403303333,0.05127100585165272,-0.07966996396106377,6.168988938933444e-05,0.005597020928789298,0.014978836967326827,0.1729839003935704,0.0040848375337915665,2.2341055841457487e-05,0.024963919685149785,-0.008162038915695875,0.0275204756943157,0.005796989725460539,0.00010366966357951526,0.010011619990003563,-0.0013003420534173965,0.005600920929614982,0.004568632365865432,0.00036595369562262366,0.0035753511527072705,0.02363821498635632,0.10643081745628687,-0.0645941574482436,0.0001272093625465921,0.0021805468096797293,0.00016664464960982988 +2022-10-07,-0.048524547038976094,0.3474447407159228,0.12401942692578442,0.00014769382288879138,0.0012143767565247167,0.02137056867712966,0.06901441577126168,-0.02101366959153702,7.42996537216927e-05,0.026482200243223498,-0.020187915507598707,0.059642171376476524,-0.02359314957526597,0.00015657962066848284,0.025581466654422895,-0.01479431696273593,0.01413240654669704,0.001844659546750853,0.0003533024532504477,0.013896677326237325,-0.008919297175750953,0.019734567516306048,-0.018804144321704346,0.00023648347209816693,0.002227191366068669,0.006200339475391088,0.014789589349973136,-0.010584625978706068,9.153898500128062e-05,0.0026523436472328096,0.007154982976043309,0.02680934420112798,0.0022866077589860753,7.830910661858973e-05,0.014624286292464478,0.00858913514199455,0.07930783512751052,-0.011844993893028571,3.713914962122937e-05,0.00782796975289663,-0.004065229959995623,0.0033808783099842925,0.0017098976212480304,0.0009272575218815102,0.0187352810220794,-0.01396835511898419,0.03974257447490885,-0.04555375861084922,0.00012289979465747577,0.034791802969466365,-0.0035134654633756255,0.0024019655394535997,-0.042380446566602656,0.0007149789812974319,0.012379616305137503,-0.02097092353164859,0.2775914855423898,0.06640042803029239,2.251304321614321e-05,0.0016578556493702307,-0.022159485677710804,0.06500094649341316,-0.0028690389733834337,0.00010127238397707217,0.019284786981195633,0.0002365451782147245,0.0015883161955211732,-0.03761947588182368,4.192170656696579e-05,0.0024126413561310848,-0.011947962974272945,0.011020165786675125,-0.029787923502208283,0.002114602360174229,0.0008911354641534422,-0.01798125437825428,0.15020422487780472,0.0059521034163019714,9.851218328556057e-05,0.02265442098885437,0.006150588313268698,0.034256191773725804,-0.12494678047989671,0.00027802625472719253,0.0012864708446897295,0.09576345041894994,0.5306011778489526,0.23596645476859446,5.083847702650458e-05,0.017678242253822227,0.05144941897737605,0.2768852919179033,0.04368388633472346,0.0003062438636607313,0.00027787747820789705,-0.0046538691234246365,0.06614895692239195,0.0008386407464925663,2.9195868356682842e-05,0.023457955677584717,-0.011858601163667517,0.12593585161443843,-0.023253421461713154,3.146051217020398e-05,0.0007250627217060316,-0.015114621833291797,0.04014145118415896,0.005352985017131497,0.00012129055198420299,0.00689986239610998,0.006835191523790805,0.0510586544647536,0.000640823697239024,3.092243593571581e-05,0.0032223866021718096,-0.01708593289713974,0.05141999767708586,0.012092773416666435,7.36688730034419e-05,0.0036238067347359425,-0.01474908601003499,0.05026563076498241,0.0721454652059999,0.0001341660293867319,0.0022089376385208493,0.030942128064150965,0.025957352835524583,0.04255067419288446,0.0006813422810985394,0.012196659623552663,-0.010570356679821214,0.037290939590532715,-0.05379277030835064,0.00011930875810647749,0.007149340278849047,0.03229710937366605,0.11975618716676734,-0.05209181622955382,0.001730951377031074,0.03043929641971104,-0.010474839992445521,0.10964274069952948,-0.07095571254123327,2.4566863344887495e-05,0.01934411185716922,0.012704042326978582,0.03748032932275106,-0.012990842347537529,0.0011081787132654506,0.015717549543412538,-0.015723790799095565,0.12132484330662055,0.0030674153425433682,8.63044444221955e-05,0.006670617048790216,0.018041328831897168,0.025760970963597217,0.0027243765437984123,0.00016529194134619102,6.937907225201649e-05,-0.01674318029374788,0.025582134685087403,0.0020090079898507545,0.00037566876450376553,0.01159826023640215,-0.051859178687013216,0.19775912930029957,0.080814977010049,0.0020325415589218902,0.00921810110512959,-0.010173467149940095,0.03629948885552819,-0.004261925843211107,8.99205278987729e-05,0.014670942756422374,-0.02205727665055114,0.028113507850741726,-0.038063024134103056,0.0019503566893797428,0.015552115235290995,-0.025836289010192453,0.08860348007147696,-0.02516544139167669,0.00011553016418667276,0.00048352401273403425,-0.005570017270304503,0.01395683036311892,-0.05061742493018364,0.0001617819694153216,0.015546670889480642,0.01526863640300567,0.07105742944664184,-0.06985788618342832,5.244507197074935e-05,0.007311177956909644,0.011743308834482049,0.034154735871768226,-0.02420004597270894,0.003258799261568504,0.04964731848584151,0.020751508380282585,0.11432619967272398,0.00910838751351751,9.029100217968583e-05,0.021493862673535886,-0.025468035745714598,0.11509135676303102,-0.035172194933638816,0.00016047726915402547,0.004073288276655711,0.007257861193829966,0.03895020903720221,-0.008646063435146971,8.813482855682538e-05,0.013936219330896877,-0.01652154689493134,0.07206250289246131,0.001741295720691654,5.7622057334618625e-05,0.026467599608894513,0.02389418791150483,0.046060468713679796,0.007506639355586093,0.00025292590686013666,0.02677224881727751,-0.0008983286202992414,0.0030731200406663396,-0.07507171997893049,7.268923318452569e-05,0.005352863913718196,0.0021243585190496082,0.024971075826318034,-0.006145372521017564,2.194935914593416e-05,0.005225100832317266,0.015635391279605743,0.04660496710226428,0.013732336233054723,0.00011726961864202161,0.001433851733394414,0.010209150195810828,0.045183754188062655,0.00015697644929385431,0.0003561518886367171,0.0022632443244906923,-0.029024214471398756,0.14603350479229377,0.03228294634245684,0.00011383603543847258,0.020972323096623804,-0.0011606264621533036 +2022-10-10,-0.0007078328481579473,0.004843412994066179,-0.0477851937849656,0.0001545488558511516,0.01226572381427036,-0.019062378035749998,0.06089119414538523,-0.01913594473543989,7.511611418519067e-05,0.00522978683016253,-0.0401831776071983,0.13212541981085305,0.025333749688959708,0.0001406873668115774,0.02015482583380829,-0.029670859109942473,0.02560019790975992,0.04694112917289826,0.00039116019584239047,0.0036677642486909255,0.07285537490424267,0.17554915859579281,0.21240029904502017,0.0002171503918661257,0.017705121299585236,0.016827308014180132,0.03843211169232552,0.017484414399411414,9.560203487126044e-05,0.001811564797692407,0.04257456198722707,0.16179689667315142,0.03737000362848886,7.720934290149288e-05,0.024229498405799868,-0.0032238345264140847,0.030254296826643153,-0.006805377729579516,3.654132518661384e-05,0.01653034439135609,0.021199146799886315,0.017920011056997462,-0.002218987300729774,0.0009122731556658752,4.4576437694066485e-05,-0.0196145957060038,0.04029187012346148,-0.005200216570324936,0.00017022518778174567,0.022251419766527544,-0.0014007257117499264,0.0009848884759492656,-0.003933531328535278,0.0006951690093856315,0.010746636630983025,0.010087790571710711,0.12058169148504373,-0.056031855849086765,2.493087235524012e-05,0.0014616707451359722,-0.01846312963577976,0.05077326227889628,-0.20893796159298889,0.00010802425711456959,0.003774558120888877,-0.007817659881156467,0.0437873971913021,-0.010058094297833222,5.025617826690991e-05,0.005093405142665365,0.003911547866031274,0.0035647643394613147,-0.10435099888335402,0.0021401331642044393,0.013135195689204352,-0.020678497986220696,0.1514287135257483,0.010329285145663806,0.000112373230190551,0.00747588300951465,0.006062598885660475,0.03353640262041194,5.37267152887307e-06,0.0002799307400942257,0.007572931072615218,-0.04105321837298809,0.2394389765557555,0.012199531735393617,4.82962396491186e-05,0.03131879029786507,-0.05317487136745562,0.24690719592835778,0.08132377643819662,0.0003549437294059337,0.003120429063682954,-0.05163697152711996,0.6794583001709869,0.032636937096843226,3.1537567005707183e-05,0.012375455500235335,-0.01459310223863157,0.15437570373802495,0.027023780195713522,3.158278208792952e-05,0.012239809978817138,0.03838117765656266,0.1425094047950684,0.09467466848950905,8.67556016049129e-05,0.006445327014277662,0.0010002323804498663,0.0063819392426143085,-0.0024467069240322083,3.620267158717161e-05,0.004564343715334862,0.004044838195397192,0.010501384454129972,-0.017360049341815988,8.539490847620509e-05,0.019113878886668472,-0.011088788790248907,0.0478900367362026,0.02891222514945018,0.00010587356497774203,0.0002908593935425992,0.005370826076907396,0.00530870620536438,-0.06277765603045646,0.0005782664006839848,0.018614947377845994,-0.018382419346192332,0.06960578725671074,0.007995565524592164,0.00011115866656433131,0.002413472135903548,0.009033549653983626,0.03126164918072109,-0.004774753409744482,0.0018546660646710507,0.016318851490062826,-0.02228810857670665,0.2146807866526959,0.0057878294782725,2.669698589535041e-05,0.004449370083652263,0.03591341690739494,0.10602295357255621,0.03895804739381381,0.0011074601257293265,0.003041787131857236,0.0017139679080992777,0.011346046537234748,-0.0382926449424412,0.00010059670798961834,0.0012036495878471323,0.009984216902476735,0.013243884809450067,-0.018266711352137366,0.00017792787779444646,0.002287990199762299,0.03631619522421187,0.04173089504702077,0.022842110658405287,0.0004995127250014624,0.012887417674270976,-0.046964127928956476,0.15086827654679738,0.011297696323998525,0.002412785278503911,0.021978801576059425,0.0009340382781170019,0.0034173475889236263,-0.0026583733917583743,8.769319441645028e-05,0.010173979230305913,0.09398805927458494,0.13553970836201776,0.13123248698680973,0.0017237859121525664,0.003936518083230218,0.046206566317738784,0.12962767109991843,0.09065611727389734,0.0001412283920780239,0.0034444497002206424,-0.01481642293899207,0.04442097614333491,0.004678693297302019,0.00013521212704498259,0.007041346377603371,-0.003913832266747985,0.014709928459052784,-0.0062012745281086095,6.493899659423802e-05,0.004909143203690106,-0.015368188206652443,0.0390747356999123,0.0008494795763643468,0.003727731978209417,0.014884312206109302,0.004109494701680222,0.023248332433586705,-0.06987482008102244,8.793002334846432e-05,0.02505774555079564,-0.03177398801347078,0.16907592807178842,0.03175856253067837,0.00013628583889871082,0.0086302877224946,-0.024614086525511315,0.13649304362644957,0.07638416474702057,8.529467201921357e-05,0.0076172632634540225,-0.056859303631759284,0.2570141754509948,0.04956948121563384,5.5602184457940005e-05,0.013810837704773093,0.03563844115662066,0.07591223246003903,0.049305684484216634,0.00022889501267265512,0.017364895063292942,0.015662894998597535,0.05743602520831462,0.027660272102587775,6.781129448736863e-05,0.0015424952883225512,-0.0005338811122877529,0.005740965518527958,-0.07303144944063214,2.3993350794898506e-05,0.006287118955396088,-0.007335962802798909,0.025392051623910204,-0.07211586755736357,0.00010098765617022331,0.004871031882641089,0.01691745373771672,0.0710001601135119,-0.030100437994203182,0.0003755810228453087,0.005574977382935838,0.008058681232223927,0.04206234691763109,-0.05525145523290617,0.00010973426832188643,0.02187219618615441,-0.0007860022448523445 +2022-10-11,0.04656653407410069,0.3295758861263126,0.1374906822782922,0.0001494187401564225,0.019143846999971747,-0.034911909017779345,0.09863733578607223,-0.0683207022897684,8.492641475361137e-05,0.02170858641022085,0.021035055876834716,0.07594939003910643,0.016475304538910652,0.00012811989798046554,0.008338933960738664,-0.01141395476304004,0.011018467642908739,0.005048115250813459,0.000349609159772075,0.021005038274793057,-0.0001601045635199738,0.0003914193214099201,-0.00016780639113455964,0.00021402239691538236,0.02129082674922574,0.019106874613626923,0.06148914191392728,0.03220565008497151,6.784814228453423e-05,0.004984642629510664,0.021155506009437785,0.07427716300132078,-0.11562005424896704,8.357145532292656e-05,0.008569797782326753,0.003210357374345262,0.02901388183951321,-0.08818470115537219,3.7944266059301694e-05,0.004131802978762448,-0.000446607984240252,0.0003494742624207987,-0.017259192766273218,0.000985498738239747,0.0023006617016082505,0.03332332728311348,0.07665436354086726,0.0434012914585683,0.00015201042137097438,0.0028958155759687756,-0.009994653510467804,0.007216644426715158,0.002068282260417349,0.0006769503131652305,0.010025729735260783,0.002897641832114312,0.035387718671306974,-0.0019865338696106348,2.4401410225952843e-05,0.006800314911370812,-0.00848971550436888,0.023386134809682196,0.001852361432688329,0.00010784145184124535,0.01357917296798065,0.005420432261077897,0.030334236430424235,-0.007805447953391722,5.0299384685989884e-05,0.011440213663155967,-0.024785452145351085,0.023040652510015653,0.04943227454506312,0.002098094495290836,0.004775165431339953,0.028892699846706768,0.1794904547786545,0.012448937770348285,0.00013246430820980286,0.004704894571323511,-0.03216429047760148,0.19458049460934043,0.04017286854743212,0.00025596636705339695,0.006681795797976859,0.020999591031781013,0.1313649215055892,-0.04564365126174686,4.5029008289222734e-05,0.0161378623435616,-0.039146349618619077,0.22671454885022568,-0.04742100170816002,0.00028457627292038956,0.04181912599570262,-0.04636568132088205,0.73209988930623,0.002054331761750056,2.628188653338862e-05,0.008576166146636017,0.00825442964561112,0.09231108063164503,-0.026084839533782374,2.9875483621991105e-05,0.005975628025312044,0.04341878689144095,0.1324874192392206,0.0945896142891823,0.0001055664216348765,0.0031831005761692914,0.01323048592587315,0.08107579509779089,-0.0031527828081828217,3.7694410413048736e-05,0.03431058756679668,-0.012326122327978872,0.0405450902414551,-0.025646714030580227,6.740088273193949e-05,0.004444151989555935,-0.009596436479562247,0.04642074921467851,0.016795770038967043,9.452494711365379e-05,0.00012547780019882986,-0.009541225475333209,0.00842908551464217,-0.08611705933391554,0.0006469925213014348,0.0021722536997616313,-0.018893377529035985,0.07306591282340118,0.002962714904541959,0.00010883806136360958,0.015220879984519835,-0.08199168928623932,0.2802208903982942,0.09554685491551464,0.0018779693516353495,0.010263818047035187,0.029411817019267983,0.2818716263008602,0.029078095292067164,2.683197801917926e-05,0.01511351357324421,0.07412885940174284,0.2195271017435225,0.0810691329927914,0.0011040034837207023,0.006942079680772845,0.03677312071424723,0.25951318759233466,0.09103662165148989,9.436190468794434e-05,0.0004690535465470835,-0.04612141992892911,0.06833556623268969,0.09866185201045682,0.0001592946750309837,0.004002418194222606,0.016788754756226633,0.022304124199884773,-0.04634545856378915,0.00043205319810056325,0.0017980326638815823,0.012378740262924888,0.055224747633307286,-0.03051387774372123,0.0017373729348488312,0.008206817053864977,0.007529564986781553,0.030334177971870376,0.0006454345863246809,7.963940853180442e-05,0.0018402551049126453,-0.04586697822459343,0.05741738918403056,0.009311543779994295,0.00198579256407254,0.0049366349337872885,0.0033795713523407604,0.010864812118260294,-0.009791203675256073,0.00012324106310031708,0.015036318939713808,-0.03142573755962668,0.09195803709041561,0.013989422936997469,0.000138533932672866,0.009694036747465214,-0.02634765421943444,0.08950975308669037,0.004987630940621744,7.184317567217335e-05,0.01689852619568196,-0.01169231303799365,0.03637419076576118,-0.0009304716047097825,0.0030466681468205967,0.035948448698662344,-0.022927534499927446,0.10948677604754571,-0.08998833043680522,0.00010416846357666409,0.012454476545502958,-0.0037243005598163004,0.01920766672195061,8.752732436837e-05,0.0001406147552157584,0.003427506897546702,0.03427112397274611,0.22160988704600612,0.05455253435435123,7.314555076146299e-05,0.003167461800249462,-0.01937382517381628,0.09289842820382618,-0.02961704954445553,5.241485700386765e-05,0.011074604360787374,0.08055430881750741,0.1642561415105578,0.17242345911456283,0.000239109346747763,0.02059781541717812,-0.0013187149146622595,0.0054844870854332765,-0.03372234541507955,5.9790099451347895e-05,0.006271281037475367,0.003012025478893451,0.04351070136206662,-0.060057114629607396,1.7860509466114737e-05,0.016269470430393475,-0.03486997255300032,0.1174258189434607,0.19423736949759018,0.00010379990890682186,0.003023619980302994,0.025655665044385316,0.09572295720460806,-0.06467789757477566,0.0004224692861054939,0.009206151026473434,-0.04881482679036985,0.23166364940419068,0.0861738653812793,0.00012068843483495834,0.006357820368751203,-0.00047463072431054316 +2022-10-12,0.003357401035052253,0.023680147944935972,-0.004829635210330676,0.00014993581770954745,0.00363759268896491,-0.015167996936197765,0.05344238510121634,-0.02294201087451568,6.810091179263986e-05,0.013044477910360008,0.01943361979496382,0.06831039139385839,0.012221890990783855,0.0001316024979228165,0.036575772384507446,0.033287846954190264,0.03859660573066865,0.07104764383484444,0.00029107469349306674,0.011562589184791996,-0.019830883912060684,0.05257716519935585,-0.061415184412165987,0.00019735252076287862,0.010403022077012608,-0.002178687455854421,0.005529906628158705,-0.044987854058047484,8.602484016271472e-05,0.0005179382208546888,-0.019943346803379107,0.0764737140282936,-0.001980468124023522,7.65201326068012e-05,0.011664408828910714,0.015584934108050445,0.14784282201834026,-0.07552053980707184,3.614958710289306e-05,0.006681921081421128,0.012377770579854366,0.011284016860095069,0.006141382902268749,0.000845908695081741,0.015564397979910959,-0.04828653638277749,0.10811754652003143,0.01896034134025577,0.00015616789589289836,0.015429533335670167,-0.024084321001391736,0.01925847114335604,0.00046736673483853376,0.0006112754556186831,0.008425112750144109,0.009222484444292682,0.14560765777895965,0.0026712113499668994,1.8874980205757635e-05,0.0005888348068547528,0.02486397136166008,0.06406526695679711,-0.005452278814351834,0.00011529192607340534,0.0034758227980734397,0.00485215112989158,0.02624407354936766,0.0007594019141775754,5.2043307749697745e-05,0.005818009761976639,0.005009842452301029,0.0042509884004386135,-0.008500641944010966,0.002298566755764566,0.002714948867015744,0.09262171953955124,0.5668177572864974,0.06646034958042572,0.00013446879090713078,0.016781117729551556,0.0015046391514228791,0.008830343557097008,-0.014666869696173387,0.00026385357892503837,0.0053063094465095155,0.04067863768695879,0.21705004074657727,0.02969913823822063,5.279192330435543e-05,0.03348783653336222,0.059463759078770446,0.3576552303865957,0.08058674329742065,0.0002740151575263532,0.025984403150349406,0.040240723597967695,0.5152318509223873,-0.012695848798139746,3.2411065617251994e-05,0.01331496828066048,0.003978623078087265,0.04397512162987682,-0.0074674587077567,3.0227863831870042e-05,0.0018314806935951378,-0.0005959149526767161,0.001782194803988154,-0.03872366017333302,0.00010770896818829437,0.00017769483060511436,0.08329151649820651,0.6087560645565793,0.09734342699780199,3.1604567006412035e-05,0.016793366622272037,0.00604133657411917,0.018955182898786824,0.002409067491764124,7.066143205164977e-05,0.014802751253846783,0.005001634502563339,0.01960703984072107,-0.05953541743022284,0.00011664027006420129,0.007279300130597551,-0.0019002396729749886,0.002262880990824507,-0.043156800359444594,0.0004799789907347657,0.018750286213406846,0.011973396868366102,0.049136453479465186,-0.15409779687608968,0.0001025650933556057,0.004076099969459533,-0.013136009089072382,0.046393093690362874,0.0004056720158554315,0.001817311106820544,0.003125129211825281,-0.01605346704493041,0.14023162356392344,-0.11857294333798232,2.9437781260852706e-05,0.0006425021508584907,-0.01257962223634514,0.03942412562997874,-0.0013233066110558103,0.0010432221491814657,0.02203350093689953,0.029176115019178706,0.21955399902661452,0.04936067237624492,8.849357774804496e-05,0.02373592904001269,0.018807296138062743,0.025951688953266418,-0.029707736797804588,0.0001710433216735526,0.004007961080654341,0.008993405405782405,0.011358754271107413,-0.009230934886254668,0.00045446179603631507,0.016717915751794918,-0.010890824018231066,0.04543414415942766,-0.006181127408193969,0.0018579273587180437,0.0034326060324141633,-0.01121188684337727,0.04482934683382194,-0.06835733083601066,8.024290911747048e-05,0.027049446903483952,-0.018994593817601397,0.02357747436958206,-0.005607587597345423,0.002002672440508784,0.00927859206246444,-0.014463865776042702,0.047861147692538936,0.00023901763508694322,0.00011973395021246045,0.0023991913961036553,-0.01649606667982504,0.0414529874838769,0.005710658289069869,0.0001613187856948759,0.002286200591026661,-0.04017445209217969,0.14491508817453586,0.04658777712787248,6.766284930023533e-05,0.0011936160579866073,-0.00358364640130287,0.012020852879330616,-0.0075172091001865825,0.0028255820777185604,0.02224152018071472,-0.02820971210532119,0.14635958704187485,-0.0694094957698071,9.587779757921756e-05,0.010902055873892038,0.011923766540551434,0.052700373893340355,0.017486454078638913,0.0001640818531105782,0.0014661441495891396,-0.010335949353417872,0.05745126261296571,-0.008323974824080708,8.50941086880241e-05,0.008832827649911298,0.011345255535145402,0.05393134775258604,-0.040711884279437005,5.2871350472293814e-05,0.0006684570458451724,-0.02515010542111374,0.04273294765003861,0.01511293726652872,0.00028695008194605645,0.006761794935600663,-0.002370809109301287,0.010112273490425195,-0.0261537594684351,5.8299141081941125e-05,0.004289259856427471,0.0072670355151203715,0.08036252216552241,-0.0024260080000716245,2.333108895766295e-05,0.00800487801843013,0.017419730826400467,0.060767926900110125,0.03477927366983247,0.00010020190628594614,0.004693756932251164,0.002118270158307655,0.007177806837849932,0.00015907773783085542,0.0004651762701058378,0.006249420907171154,-0.018952796157679027,0.09654973811797346,0.001226869366134714,0.00011243304883365893,0.009160790539536825,0.00413792159448667 +2022-10-13,0.0018647155873293387,0.012220280519122757,-0.0021067843659711904,0.00016136822046512934,0.007933731732760047,0.009741985996395855,0.033108777852774086,0.0020166229100937586,7.06016543519354e-05,0.003441079883662875,-0.014326471802202968,0.05638273011193042,-0.027306817428489307,0.00011754126294985047,0.007582599134592754,-0.00280850405471474,0.0033361488262337105,-0.0022248639166064536,0.0002841171798206232,0.00903213206722988,-0.010643019104743906,0.023844596287744595,-0.0029299212328791255,0.00023354611121546916,0.006178517519608905,-0.017291660973482625,0.04269117749005903,0.04665065867073607,8.843930445357335e-05,0.005285965770659101,0.008647349512554638,0.03670289926440089,-0.0302607050215351,6.91309454304866e-05,0.003840779647189847,0.031026442569211943,0.2988829297919505,0.013321120085894646,3.5598318619159865e-05,0.0035478304295577636,0.024445936357884834,0.01875829364695955,-0.061101844183327876,0.001004981652922282,0.014543367135394291,-0.009714777240063746,0.021988544174892957,-0.003983156873446167,0.00015448924710496142,0.004637619413128789,-0.021530524565998528,0.016075122447717742,0.022128916432779915,0.0006546733759861956,0.0063970184042953775,-0.0013504283754846142,0.01939119939620785,0.0021824531003987275,2.0753419850952926e-05,0.008307253458111993,-0.027025379591743,0.08510098655662808,-0.13322328601273153,9.433834341100386e-05,0.01521941867332981,-0.008822169417328652,0.04460256487526897,0.01633907961739851,5.567719894285046e-05,0.001229791667466523,-0.058189990365512444,0.04986305310681924,0.2111034283010554,0.0022761055150825765,0.0077751515607516935,-0.032892280269924655,0.23372166543057946,-0.02050719664252554,0.00011581028159936702,0.006017658609457871,0.048650334263275745,0.2921234326506789,0.02400257106353279,0.00025788594014808104,6.332069172131668e-05,0.03614443203382346,0.2268602005929414,0.01846762281673875,4.4879090690535677e-05,0.017302885688828446,0.06926248354723005,0.4530730583597266,0.08581329938502007,0.0002519513150580877,0.005384033008834763,-0.05634576826027504,0.7280343765643318,0.03280044447783326,3.211734593929047e-05,0.009284135485519264,0.028809854222254547,0.3078465999132069,0.0989280039376134,3.1267158022727015e-05,0.0009634512215515487,-0.031094386169502563,0.0988750789694375,0.027026067084003378,0.00010130197215499612,0.011932076670642312,0.0006961847796215278,0.0050973280434102085,-0.0007561775476070559,3.154818046325064e-05,0.013648668899072637,-0.019284177975134726,0.06314717292095758,0.0031005256342495993,6.770560156749999e-05,0.015432436234291313,0.005429688015953105,0.01758245694366869,0.012664695429793968,0.0001412029952540866,0.005805123256097052,-0.04980959706666375,0.03224456999277874,0.07563270079040942,0.0008829416428662362,0.015707304476511277,0.0027029910658578115,0.009154149419801114,0.006081326156817421,0.00012428325595942568,0.008163464365208917,0.048003914062341606,0.1439978589492684,-0.011384429726374393,0.0021396354732817974,0.009422728889594046,-0.011442877994698729,0.08648605507429225,-0.02854123589575056,3.402290361685151e-05,0.005184884895664878,0.04478401128010333,0.11704992230401262,-0.005691712603914038,0.0012509015496346251,0.010441136757177677,-0.0022562699267314624,0.012337708735584471,-0.03171251635406974,0.00012178174275337461,0.0036144249089436545,0.006335120358184633,0.009648708659235795,-0.04343360534987591,0.00015496408753530212,0.004778483961168855,0.012657619605665202,0.022489375081894736,-0.03217383316835501,0.00032305656122699636,0.008366165336320095,-0.02641722058111914,0.10613201511544323,0.0013285529584701793,0.0019292613036290805,0.015256112684060519,0.008170787049721536,0.03441759884479427,-0.12366079904692524,7.616820025345398e-05,0.002230905824158708,0.03465640044140031,0.05187554863812777,0.015920759546648008,0.0016607258358557785,0.040041403302570826,-0.0002465180414533048,0.0009284486060873959,-0.021181238531204575,0.00010519785307686937,0.010704315287387559,-0.044498887957541276,0.11599662790328451,0.07553372725080196,0.00015551209420976018,0.012254143114628538,0.0237593631188885,0.09652985451130136,0.005500386563758291,6.007407167853122e-05,0.01289378522668367,0.012186310595330136,0.04059861872287395,-0.15125546293665895,0.002844978855124935,0.005573369986761052,0.017329482172504733,0.08169226698267545,-0.0202818913963976,0.00010552253316794993,0.025326435877408276,0.021491912232270184,0.11511018255414761,-0.06807932782990127,0.0001354010711607645,0.0012382565074201893,0.026227769747056342,0.14795054334085364,0.014458676670187307,8.384815226891327e-05,0.01583976890685281,0.0026338477797186607,0.012376834499609428,-0.025039341646572906,5.348456685239892e-05,0.004845189948869036,0.03249128446041321,0.05774495076334421,0.0024835339832372477,0.00027433565703714453,0.0009998037403221747,0.004150213883049803,0.017321226362446148,0.0012039844430180783,5.958078451947029e-05,0.006744711075865907,0.015769015987131308,0.1733587898589061,-0.10263596206346562,2.3468752893930563e-05,0.014633800439673357,0.0062801667472966545,0.021790881342028518,0.005472948684089873,0.00010074078802740444,0.0062260909080497,0.014939270697394792,0.06391667154702706,0.009540208074935322,0.0003684200155439155,0.004141905376241021,-0.0020424157084965554,0.009182912198274745,-0.0477553208027753,0.00012739004943777395,0.010414774523599086,0.0019768893220508924 +2022-10-14,0.012989550761583918,0.09956676959429715,0.009686102422621736,0.00013796416554020573,0.005797917519762771,-0.007951416368055454,0.030362021929410052,-0.050527343338733786,6.283828627139032e-05,0.005237274492553672,0.035171649100767075,0.1188419153531846,0.020891292355482656,0.0001369053101719504,0.01487867735494863,0.035245573834494254,0.03810577095256623,0.06358933859311575,0.0003121631894533695,0.009114057507347496,-0.03648089210899328,0.07393600559022669,-0.013432705438768722,0.00025817087006317657,0.004079052416749538,-0.026448240847047853,0.080320062164906,-0.027116167547200743,7.189844455190788e-05,0.00126132313284084,-0.0399531820585311,0.15126699189566895,-0.025633209020201664,7.749917135102947e-05,0.02307806749958617,0.015730325522788323,0.12547198117442565,-0.15869396319033596,4.29921900597098e-05,0.01088340682970121,0.01170973037169802,0.008919760077303537,0.003479530613685594,0.001012368232540775,0.0002878933534906289,0.017951379076543837,0.04155544586102091,0.011195921762196116,0.00015105383577937524,0.04602008003173076,0.0007588867353689528,0.0005784603745147419,-0.03271172422833842,0.0006412504836238064,0.0017481712668735788,0.0022453107310166074,0.028539892181263075,-0.06451301264854181,2.344482057072439e-05,0.0018458996546543047,-0.037417074336827984,0.10568633623631168,0.01587095561400988,0.00010517245748591778,0.014420743789367065,-0.017501929227800136,0.0999681544300447,0.0478407192845934,4.928174387230638e-05,0.002144374183520455,-0.010633191267268634,0.007447860826453928,0.003566347971866806,0.002784550161965348,0.0029421548884128058,-0.045772021465115414,0.28442677385532533,0.03887053388786864,0.0001324285809688942,0.025833209173364076,-0.04164948207105075,0.24601422657407684,0.05948025607631942,0.00026215467974132254,0.008638522301720289,-0.03968407765483468,0.23445945277456184,-0.015099926327270054,4.767706361590444e-05,0.031130802149502534,0.015217449804676986,0.08112275928179943,-0.0044880144460098985,0.00030916190249291164,0.009489288229460133,-0.05182602552115585,0.7179985606575257,0.026761417231297713,2.9953981843142687e-05,0.04199055644162817,0.01031470997562366,0.10510770368623065,0.006730013536820421,3.278718885272034e-05,0.006562003600317034,-0.015149692380370493,0.03673642011321408,-0.06274543745402629,0.0001328402662241325,0.0036582862376371515,0.00863546554232961,0.05797954423604985,0.00021879100761421565,3.440355602669585e-05,0.015713741262158534,0.0009968148392546451,0.0030090850264886957,-0.00013778881554543437,7.344418523391093e-05,0.017503716548456186,0.0019256421535740656,0.008133199161288518,0.001402228320715204,0.0001082586913042342,0.0014714941911250475,-0.045532009675552834,0.04394798709637149,0.029442346096755126,0.0005921795321282819,0.0012728736132456813,0.019085885732100023,0.06742610214237428,0.06400394564976601,0.00011914347815511017,0.0002821624849392386,0.021409207133808124,0.06478865180778037,0.004754490629967295,0.0021209030463484172,0.012144747322166024,0.028930097378587465,0.26048057669798264,0.006339836656687206,2.8559904181126393e-05,0.007818485361311295,-0.024716854918376666,0.09569581171986774,0.0013264754233558375,0.0008444453480463276,0.003948980880165186,-0.028084555601655823,0.2150242882675999,-0.024042914777776266,8.697725166892675e-05,0.0018384109697671793,0.018061661700947883,0.02555354475914804,-0.01712445352153825,0.0001668214671459607,0.0006851909537410588,0.0003020849814970339,0.00048673740193806497,-0.08456067683721653,0.0003562364288834929,0.0016890515083471049,0.0195765733777439,0.06944601783298292,-0.03641729209243752,0.002184940778705295,0.007218509434200018,0.012636925256853865,0.050319652509115666,0.0018840249628778267,8.057385707617186e-05,0.011253940216850524,-0.020957488327141643,0.03218386566013176,0.0016680753649200122,0.0016187441725677737,0.0331150607344209,0.016734283867587026,0.06811773401214404,0.00045594959812287044,9.733364242245861e-05,0.010362747758948687,0.01850293078550611,0.048306016308376394,0.011309036157394698,0.00015527433455249292,0.006349859788520196,0.016232074571486614,0.05998963428733228,-0.025546708732619848,6.60407109401554e-05,0.012281836893227106,-0.007364361522389113,0.029124894045271025,-0.040095255236657745,0.0023965627462404744,0.015228941236841568,-0.020912569281508073,0.09657701859308611,-0.06050846969983874,0.00010771449984040615,0.00974423986769236,-0.00488377496614585,0.027460326960477878,-0.023526872988250416,0.0001289765408112219,0.0032256179760977257,-0.008095720363262284,0.05140309454455035,-0.00615968632636219,7.449290871019176e-05,0.003422096805144078,0.0032852201700387072,0.017816473011350708,-0.02665919584083536,4.634363992321293e-05,0.008233545788326043,0.04229292929890875,0.08334634284647663,0.011747466207479008,0.0002474062190281053,0.00012974026385119885,-0.011720711673799187,0.04475492329832229,-0.012123933458583284,6.512197170667597e-05,0.011683312254118672,-0.010642642268948637,0.10410999757024433,-0.013418464260310785,2.6374747682132534e-05,0.010316755079915231,0.027025415258143923,0.09360207870192454,0.07422651078413972,0.00010092432344519182,0.0039550172844603744,0.0030881322522622982,0.010894705428310263,0.00044316805271297767,0.00044679506732126086,0.008068251277285329,-0.033186343540810154,0.1471235362716686,0.032865323254891554,0.0001291959933774451,0.033343619819484485,-0.0033888580680971245 +2022-10-17,0.021039322511656498,0.17037210767670666,0.02935320037150342,0.00013059298199349448,0.01925044366859264,0.001025902096167381,0.0035159776394738406,-0.02020009402578051,7.001165424392396e-05,0.021793522411718474,3.304648369443627e-05,0.0001068052925242916,-0.01580375700606494,0.00014312967525720207,0.003090776113697255,0.037050580621765306,0.03621947477588227,0.035601101015399,0.0003452396965999616,0.013964964405673724,-0.003775541376475006,0.00793215819323308,-0.03424906030164465,0.00024904948013670285,0.01656292380359597,-0.016201858248340854,0.045693804785552246,-0.002390331606349922,7.74201923581227e-05,0.011576344712538392,0.004250244263155593,0.01496732852742367,0.0022439621232536147,8.332195544784824e-05,0.014622047434966408,0.012611233049155056,0.10774787592129119,-0.006489234353963361,4.013723473051413e-05,0.007439249546907183,-0.004734707565726195,0.003925177445333198,-0.00013754311427586965,0.000930204963180566,0.012566067753657617,-0.032300513477733966,0.07655582088931497,0.009240845927870363,0.00014753433212973363,0.008109926229080836,0.02293473905900158,0.016809798743270595,0.011809154027253473,0.0006668922150141834,0.006053971606689185,0.009619173170937717,0.117697820883865,0.0014928641633235786,2.4355223007403695e-05,0.0014067146932138504,-0.02364826173933706,0.07426575910004037,0.0070192142228326,9.459357449690841e-05,0.020501443826455197,-0.0063748636590854005,0.03069042770002392,-0.09235262673719632,5.846955363555157e-05,0.0013922707393557645,-0.018675127846092578,0.01314423096767594,0.0037622549513773268,0.0027710947422642926,0.007002022477743295,0.031016899185782803,0.244340199367506,-0.016748254230255895,0.00010446133273357041,0.0057230021073980735,0.017350948676022878,0.09932788364323546,-0.037298763820281355,0.00027049564349923707,0.007024349066071403,-0.001350642712673379,0.0076422242877802185,-0.025676676661182826,4.978306785660678e-05,0.007386419113094366,0.004416225988361316,0.023371119359402594,-0.0019969322677659863,0.00031142866434309956,0.013809798026528642,0.04647257444072506,0.5485003897358153,0.032858965583747686,3.516009359822512e-05,0.0234582814456436,-0.011379123669012814,0.1093250829443458,0.015021044133783669,3.477528604245992e-05,0.010030118908502332,-0.006531617598338666,0.019371328050655213,-0.015552680942974345,0.00010861357543448764,0.027489432020204922,0.03171128611952199,0.24580319535404493,-0.025716942300734284,2.9800167692655175e-05,0.01616824831666102,-0.00012515355536320827,0.00039028392945566744,-0.16045657926338372,7.109513855911474e-05,9.994894418863644e-05,-0.014777814177358321,0.05915200418440292,0.00010386783133015494,0.0001142324083049356,0.0003650472123355056,-0.0029732731734940813,0.0025133095985133374,-0.00710487492360932,0.0006761832118353704,0.026252632149508678,-0.029491095194405126,0.11452892211938184,0.011542783483845314,0.00010838314193108956,0.011521724325757604,-0.009582961160808897,0.04173728215843376,-3.2186475092617855e-05,0.0014736513196355458,0.03071037772283966,0.009999590715673351,0.1037457018244301,-0.054570742147911216,2.4785307248265747e-05,0.00800778126538138,-0.019616661288048894,0.054158360019910444,-0.00950697248663975,0.0011842158191558822,0.00958290426355029,-0.002249107156615368,0.01987407296496529,-0.10840837070301654,7.536139183934463e-05,0.004334591495150199,0.01645622239375067,0.026510560146624087,-0.0237604012491567,0.00014650641119631934,0.007622913630960208,0.006957834262736657,0.013225893184056687,-0.00832336470123617,0.0003019624792327427,0.010809116350086063,-0.010834626843842534,0.04257366160566652,0.005258210282113619,0.0019725285400752574,0.00575242737136092,-0.0058395588269922125,0.02085888394513342,-0.09860691441575306,8.982130083952006e-05,0.021884652859877042,0.01182678690405809,0.019174278569996876,-0.14753811642439096,0.0015332922158943917,0.0010069566269069069,0.035924389706846555,0.10821942730201851,0.06216938513213835,0.00013152254504462436,0.006339508559762889,-0.03207542085949634,0.08588192188908068,0.03125932069571025,0.0001514017813210056,0.011616294352272523,0.007972711462209339,0.03424710135755402,-0.13272563567062629,5.6819335831435e-05,0.010537504457918272,0.050769876064887844,0.17454843435864792,0.04906321496627317,0.002756818684082292,0.012016203811945346,0.010352713266678021,0.05455142040806018,0.0007584370685834401,9.440362982244715e-05,0.00730611763125254,0.010970920109663941,0.060188730238544486,-0.08274218980649174,0.0001321869723628672,0.016281551817139823,0.03056154385223759,0.18364090242773032,0.03384406751789933,7.871446895212879e-05,0.00823995740489383,0.0018809390033333925,0.009429880029609752,-0.061184569798561156,5.0132104870458685e-05,0.00016460424223189453,0.03816474512033725,0.07790529872874691,-0.0324217683315839,0.0002388497346782821,0.007168945931272111,-0.004821087565110922,0.018157407148931482,-0.009477714762220145,6.602456727196545e-05,0.007799287717341618,-0.01570624036160241,0.19249948874747588,-0.009573234740360302,2.1051058807120505e-05,0.012771911603332842,-0.0032513171679281875,0.009958610144404108,0.0013361645367892434,0.00011412205165208382,0.008097244837664311,-0.0011836094802078966,0.004467254342757385,-0.14482553888602812,0.0004176338831186668,0.0023890991511445357,-0.04579235843712533,0.2392077501064463,0.03460676698139,0.00010964518413171569,0.0014484445763120173,0.002992997311074344 +2022-10-18,-0.04598260377393807,0.327624334429817,0.0840417346942038,0.00014842395225723483,0.011499799432193564,0.02010054742215621,0.07858258072446783,0.01465602826705801,6.137508752741766e-05,0.005701444140471287,0.02224554484834051,0.08112371416406866,0.010175504649507295,0.00012685057071372605,0.020431211923033304,0.053092758172614204,0.05329405530246045,0.07444012288644586,0.0003362206439546062,0.009447165415674676,0.04530789664463747,0.08800505470617004,0.057391735951140575,0.0002693791983752913,0.016966635548886912,-0.00834412751758007,0.023781878788033926,0.012908240365626199,7.660930299221653e-05,0.004296430077217413,-0.010500581850629633,0.04453256157489022,-0.005676655005489614,6.918716615926305e-05,0.0065933952635243,-0.011907309460262994,0.12522300872379102,0.0187169048654079,3.260829721803528e-05,0.0016155551033914548,0.009521598086399644,0.0077078575659223734,-0.025493684795166973,0.0009526227559108402,0.0071657025600281865,0.03646765963679635,0.08684021517981161,-0.0014518453656138831,0.00014684152570112257,0.006368373730582829,0.019403588780982445,0.013968424905533709,0.03816637719722442,0.0006789831284629321,0.006519666771209886,0.0012253074347957334,0.015958467847452452,-0.011566601413414816,2.288108767176016e-05,0.002648610156348947,-0.04858918076278917,0.13218878240535398,0.04448110532892322,0.0001091933052770575,0.011571627653954955,0.019913812067101546,0.12087743659785319,0.03953656083831625,4.637361808959945e-05,0.004499099771095352,-0.017814120853490035,0.012960079449210533,0.006993891202605123,0.002680894371895051,0.0008009273471364057,0.031909293406629964,0.18993500205124678,-0.005565284420290457,0.0001382497292152215,0.008831389940707448,0.037116018539711436,0.18209768249646355,0.004077826074294838,0.00031562049470675323,0.0113553473244932,-0.054639802230637156,0.28436105717773874,0.01739226987016975,5.412525489167748e-05,0.02144237230722246,-0.001903819079014337,0.010544196186219556,0.0002483198017676826,0.000297576755533633,0.03895965966981097,0.030622872643255236,0.3830488398024859,0.012375571907577943,3.317584613677452e-05,0.0009482360811582291,-0.012465008929483032,0.12696495908316174,0.016753702989605282,3.2801252396375176e-05,0.003447273683708336,0.0070540248733619625,0.022163043206318477,-0.01707627866969339,0.000102525134905545,0.005940971929294209,0.010897787243739474,0.07462575889285825,-0.007339600347141133,3.373198825359597e-05,0.017452116944009215,0.009877658632978719,0.02605337444797913,0.009959631829597698,8.405574738139892e-05,0.006381541123563014,-0.0007668002700554819,0.003274477701563281,-0.06651040555880866,0.0001070751805644251,0.002939422052830907,0.06776523709558377,0.06478145872402945,0.17901425315410016,0.0005979044703096621,0.012152270969389355,0.012264896911817914,0.04344297815815989,-0.02628325197694016,0.00011883115584072547,0.008168039902658868,-0.04005756987276521,0.12764246117933972,0.009672658070143203,0.00201422788478655,0.018640710734928324,0.04543016413595317,0.44252166969838735,-0.05583062399618387,2.639927249210065e-05,0.013526739157432582,0.029898835834123852,0.08244015453500804,0.0033630482207893447,0.0011857325750203789,0.0016416854827375827,-0.052306469693167906,0.4123826154441844,0.1213643870993999,8.446576189408512e-05,0.006143452276992177,-0.005872316349481921,0.00991360589056691,-0.011180365755105238,0.00013980515329615415,0.005167221354945164,-0.010653794201755178,0.015556169408241966,0.0024151321205289227,0.0003931022712767792,0.009359064653583375,-0.03782072020581631,0.16041008122229813,-0.010738823699734654,0.0018274625136687822,0.008204121817291195,-0.0017616560354133633,0.006696484262610694,-0.1746437223400334,8.44043119485798e-05,0.0029311589741288823,-0.04898742847967516,0.0734814037970442,0.03385389250951948,0.0016572361176727004,0.012170841543714835,-0.0014352333644256682,0.005535746907998602,-0.004033755739367773,0.00010272173167511307,0.016806040251595582,-0.015619774534085088,0.04077590379502218,0.0001728053445696373,0.0001552857274427851,0.00584747924333903,0.016482315094967875,0.07229707478929782,0.007959074111507074,5.564311207206633e-05,0.00292888558416182,0.01784476646097273,0.06008188639525867,-0.008165974436379324,0.0028150451626985807,0.0027079147802799228,0.0033771062487715354,0.015808110303167824,-0.0005146402116399201,0.00010626869258054797,0.029793623696698534,-0.03201100921705811,0.19007556240623708,0.0462033883070961,0.00012213323670229195,0.002979686124948864,-0.0038835537339542165,0.023946013113749387,0.004636283040405107,7.670873153919921e-05,0.006308330292405233,-0.01478787644284265,0.06933378857062049,0.0024324845445656,5.36053673323652e-05,0.015466814721619634,-0.031047267359880264,0.052676799187772655,0.028784398509304032,0.00028736468644604727,0.00486087295730255,0.010198522774455683,0.04292814350690941,0.013032969131343363,5.907579010505726e-05,0.0010042999160894395,0.019386709990128648,0.2130795619198804,0.0035394801621330637,2.3474351530218392e-05,0.008282747672817241,0.01768070684089907,0.05293072517008387,0.02378314338897261,0.00011676178987957977,0.007778572551079004,0.00011552778130199255,0.00047434967357776523,0.0010572855810123524,0.0003838979541503371,0.00042076316380954297,0.005712559039546473,0.028340595524498743,-0.005941606643548289,0.00011544989058266733,0.014763307285456181,0.0026950373262452443 +2022-10-19,-0.0386819543384441,0.24659547955889474,0.0331051564289072,0.0001658860556122598,0.014390747691280353,0.031228832070580186,0.09761850648526255,-0.02201073370335876,7.675984869817999e-05,0.008647509732031872,0.008140797822703608,0.022355860066294655,-0.08765256940665565,0.00016845068877572206,0.01599218478004211,0.03386907596934933,0.028504358889145768,0.019948133382769743,0.00040101436224702577,0.024303712881006984,0.008382163311404988,0.020219951762438758,-0.0340166082333586,0.00021690710358521285,0.02100844749410664,0.021724316539614093,0.04832740563650388,-0.008064206144565817,9.815205130880477e-05,0.021410280010080447,-0.03319380998471113,0.11543846122222587,-0.15922229010742503,8.437162811370757e-05,0.005387171028376525,-0.008260660095937044,0.0670385693953013,-0.01477926310357375,4.22560238608274e-05,0.0010514345721363816,-0.028910288698358176,0.01978483659907396,0.007767724709939297,0.001126846466940889,0.0015999892179934872,-0.02762108087234576,0.07201578401971534,-0.04157595500909933,0.00013411423068883916,0.0026215447840176502,0.004272064118357735,0.0032411815679545155,0.002973481457065233,0.0006442564275308429,0.009578309211181241,0.0038209635418808893,0.05985396295518602,-0.02722420917240606,1.9024040978310354e-05,0.006618906839883264,0.001867208005159042,0.004519958808817514,-0.07542814043553651,0.00012271828051367776,0.010990339997327925,-0.015744872666144355,0.08089540877314498,0.03739065479913804,5.478694663200727e-05,0.016554564485482922,-0.08327463259267794,0.07199942093335304,0.22332291996092882,0.0022558316947954523,0.011489420857240315,-0.03778337228634845,0.22040851888039845,0.032947383297623645,0.00014106668121193958,0.00260793159137782,-0.0007010712883530702,0.0037028417405975235,-0.0010000562461619903,0.0002931806224888571,0.020050518391102463,0.02215915443407711,0.1773530358475292,0.009951168551958083,3.51945578320066e-05,0.025502548325561706,-0.006873040469747957,0.034016861101926095,-0.005342103779965559,0.0003329978824941417,0.004939149196838778,0.058785106617343784,0.6920102038097083,0.026940775807043696,3.525210404241986e-05,0.0034253789237508017,0.005332593705753962,0.05920264960683967,-0.04803553873908684,3.0093940699246934e-05,0.004285660404771465,0.04348056392860735,0.11745104469600716,0.08606661037882521,0.00011925072823564948,0.016174164270666605,0.04469342653579152,0.3818928348619399,0.011706596074160117,2.703301704109377e-05,0.006256199035251306,-0.002818310743613893,0.008067264421746647,-0.0173723206402067,7.745330717530757e-05,0.003604192079558025,-0.01802065240242993,0.06676218201252809,0.0738493319725768,0.00012342086415122235,0.0031835527456363956,-0.030957571840334142,0.028731747841896426,0.004630301955661603,0.0006158577408330758,0.01104543349402283,-0.0009634064581479112,0.0033382661182920063,-0.031027062691891375,0.00012147155965756415,0.0006782133459399932,0.016784750715102187,0.05470089594595393,-0.04043253559670595,0.0019694258342197583,0.02589482274216129,-0.052551354580943725,0.40487621487302433,0.10322729277220608,3.337673465830978e-05,0.007146804574121422,-0.04588889086692775,0.15435742229160068,0.022732332517310817,0.0009719665371480131,0.014951003402001523,0.0140885494976546,0.10857867651266019,-0.015492246232939483,8.640669256440017e-05,0.019110143747808506,-0.0008697309151652099,0.0013307880900725753,-0.006306730185116814,0.00015424865593173217,0.017529296896740286,0.032307147270535665,0.04963196110960304,-0.01060142953186655,0.0003736294403325819,0.004290774847030606,0.002469795414118751,0.007847141602757911,-0.018650932371596513,0.0024394944335679506,0.014424443166314242,0.017283145130498744,0.058721853607417954,-0.03438910162357182,9.443073961018679e-05,0.0005164954400126223,0.008515460519715655,0.011056456965232307,-0.001172971441744337,0.0019145616335060165,0.018553532153958406,-0.004840399025189854,0.016113019384685106,-0.05249353633007701,0.00011902008928961495,0.0018477856043358175,-0.011530660112704033,0.030698618665447024,-0.018857679259088666,0.0001522634664138497,0.003113041416459775,-0.05408344998389457,0.23844776055378908,0.10258856093427439,5.5358595675489736e-05,0.00910097256758257,-0.007939873941452846,0.023024714805396067,-0.04949116786055444,0.0032684165863521445,0.00519114572230857,-0.05760297754449106,0.31371071181080595,0.01705055669197498,9.133897960864607e-05,0.006284073758541488,0.010377363316865241,0.05347547008508835,0.01853166939316357,0.00014073210875900603,0.011855970253392002,-0.00783396110434931,0.050368663138383056,-0.00018267407029527648,7.356473680267939e-05,0.0022144021777515963,0.012471217311576955,0.04919535802660587,-0.03286151929402407,6.37135958304112e-05,0.01138977277394031,-0.0552990916023444,0.10086637560610423,0.06566993595917374,0.0002673012412824959,0.0003088437867073536,-0.0226277224504037,0.08335145222693464,0.036298956980830105,6.750594916908877e-05,0.01167518071006133,0.0049501653108682,0.05236237415794694,-0.1080268960584942,2.4391115249920173e-05,0.0013745662264005474,0.02645521580744252,0.07806963080070177,0.058536975256608,0.00011845084074483872,0.0026650163193044545,-0.009409981231417864,0.03457899529503882,0.035986165281934546,0.00042894771391234244,0.0039981953363074346,-0.05018755250841576,0.2484898206851234,-0.08656881166666852,0.00011568024781300563,0.01042114598448372,-0.005144147582468625 +2022-10-20,0.005163097446547775,0.030011147041900544,0.0027933836179877777,0.00018193418559948296,0.029593628665212795,-0.00889483847297071,0.028731145408062556,-0.07393577371466191,7.428406346025662e-05,0.0016799087112200652,-0.005809779901525124,0.01789435047718127,-0.024328474636733183,0.00015018997506427691,0.017469219031651457,0.041854655186162736,0.04205424101606232,0.014610151532417449,0.00033589367450969737,0.008285538294134111,0.022210272015056612,0.04599746085174818,-0.012298956283444493,0.0002526491208495251,0.006106718461149595,0.021941929875992357,0.050039648445826555,0.0118614771044571,9.574306199315488e-05,0.008088646592352939,0.019775009973278832,0.06477529145334815,-0.008282129415338462,8.95771396670586e-05,0.012826400337756977,0.010772024516390763,0.08870203465729032,-0.02513943256192302,4.164495199614427e-05,0.009099298507176974,0.008061524311205008,0.006269318602181102,-0.03702617462133118,0.00099161163464002,0.013190806177137557,-0.0015045788000666463,0.0042446811157300125,-0.0934678214775811,0.00012394578301171466,0.009665362487263246,-0.008140786741668916,0.005949256844711284,-0.002332503503241695,0.0006688489002241328,0.0015150221750392678,0.00421061742995137,0.05265100697843532,0.0004250335688560498,2.3832076902557674e-05,0.005643837972124365,0.0036891952629982505,0.010048637673447842,-0.005241307232331276,0.00010906251117929095,0.004189594920018384,0.009110193547213973,0.052842630417350316,-0.062157961672590106,4.852940807064571e-05,0.005664040111887653,-0.016876639116650133,0.016477420890555147,-0.0757877116056292,0.001997651386527329,0.03125263301837303,-0.011431295509723991,0.07662070735065944,-0.038140317346292245,0.00012277258570384802,0.007687254895162502,-0.008068177970531654,0.04383364327659592,0.007254534897314348,0.00028502052283802687,0.019072190079250578,-0.020930717016201243,0.1146341515385307,-0.015182699392345981,5.143171914039744e-05,0.0025881376274329597,-0.03943840490794523,0.18359254386528553,0.007278310672729145,0.00035403900334080485,0.018418265469131806,0.033522325608453835,0.3421214894268714,-0.0024432697923423637,4.066155820362635e-05,0.044002880759437535,0.011008032223810405,0.10348686987482185,-0.027330481054868037,3.5539077465290475e-05,0.000842500897186638,0.04153173015144218,0.13793908213992473,-0.03418446277329985,9.698742913388332e-05,0.02028533088870841,0.017089980549357734,0.10798323487257323,-0.004004585462441978,3.655759447125533e-05,0.0197472946272056,0.015336108890913372,0.04570909386369954,-0.051448843176569316,7.438578557463825e-05,0.0006522125945740863,0.0026057383529633697,0.010080735689276674,-0.0606636593607588,0.0001181917526788971,0.006631889601418403,-0.00452308865120589,0.003941620332305107,-0.027629869849635613,0.0006558973431997715,0.013951768847146117,-0.006714174434101433,0.024020269828488938,-0.0004992134916444171,0.0001176523882433415,0.002999624419216866,-0.016969973118917875,0.05496104135882873,-0.03675317805185918,0.0019817340719620754,0.01616845230749376,-0.00125136764874979,0.009467989063951927,0.00047366095852079273,3.398672916929286e-05,0.0073828869234903545,-0.059153504278455823,0.17370234861930164,-0.016298777531256168,0.0011133867707787055,0.010148298241882781,-0.020969440810455642,0.17212574161494745,-0.007222750364048492,8.112723381134919e-05,0.0063994459690373115,-0.0023896118695974603,0.0033697857470726417,-0.03662155041871637,0.00016736724372375962,0.006378367358157141,-0.014203008183474093,0.019418759323812207,-0.22136504752092895,0.0004198196594119014,0.005242388760310846,0.013128410686348544,0.060448725113327065,-0.007182197822148826,0.0016833535890454375,0.014733756695018585,-0.019847752546025457,0.09142366864172757,0.048320857309356036,6.965351898971967e-05,0.010086799805580082,0.01676445282444697,0.023385315351667355,-0.03110164735192287,0.0017820641933181686,0.0016600484200751707,-0.01848829471314998,0.06554331130541399,0.007649346077668655,0.00011175951627741558,0.022092846199665124,-0.026583080667266053,0.060851352356791344,-0.02005095645673841,0.00017709057613442955,0.009073929696327584,-0.02843614110105137,0.11789635421481284,0.023961998699191543,5.886866812781043e-05,0.014193270329132208,0.12026405818190421,0.36803385716896275,0.26086388924527915,0.003097177811010647,0.017125202235267825,0.003958353194012503,0.018108962534234288,0.0019052851654642346,0.00010873304318775806,0.008829283424641713,0.008438874601432082,0.05113805563828177,0.011067880237721445,0.00011967435804754228,0.02321638637682102,0.0032126118731585786,0.020355240707859934,-0.04641921717503698,7.465015544376913e-05,0.0017017832693538106,0.003246167152109307,0.01622211461829224,0.0022334811048070964,5.029337820012632e-05,0.01933695008970459,-0.04342826163393219,0.0762959834631667,0.024530284750341868,0.0002775237557120708,0.0047846980833341456,-0.015745218592901,0.05983507569281378,0.007298353722997443,6.543456588540483e-05,0.010646332820648287,0.019960046047617565,0.1865762225720019,0.02523456865234179,2.7601744296695632e-05,0.0006483865477686828,-0.016022174701176152,0.05052532067985724,-0.011045834984581369,0.00011084633768006719,0.009971423878962228,0.02563769658064506,0.09992229658965862,-0.011364435527424435,0.00040443112093255045,0.004104043125620548,-0.006513462282350753,0.035603170583298586,-0.12378581752491447,0.00010478401216532606,0.003270227336203588,0.0014587178598983513 +2022-10-21,-0.016269667798075482,0.1035316314586181,-0.012583647323087034,0.00016618514930269774,0.010694065542661129,-0.030047803356489846,0.10406406748363015,0.013085815443883608,6.928232574492998e-05,0.022932210398147336,-0.0287324302019548,0.11460305939804483,-0.0012816903838992956,0.00011597739596524682,0.0007763237334800876,0.00598853854262645,0.006493842121856571,-0.029824320504815427,0.0003112339606867959,0.002910480531399636,-0.021985764713368994,0.055355205232646434,0.017495016624131113,0.00020781690994779056,0.019598643993722145,0.013918194314965153,0.04105759669242836,0.008886154927978368,7.401778949533833e-05,0.006094271794528593,-0.06307306903989829,0.20050876678063656,0.09287838475266458,9.229973474445165e-05,0.015857526692421044,-0.008650376186255788,0.08711562401723966,0.016754445765245093,3.4051602657259705e-05,0.0025823789288515744,0.012496811885949928,0.011216399151082879,-0.006744450367626275,0.0008591926698504271,0.0012680034771941876,-0.018787897787801697,0.0354905105184022,-0.08199203118464876,0.00018510912530189048,0.02576282470953673,0.03591053820551035,0.026564420496921332,0.054918105376567175,0.00066076331929944,0.008697225793152356,0.027532017303023727,0.30326259497314423,0.14751896551035418,2.7054653517570855e-05,0.0028087410736365413,0.03272559414109211,0.10033491328488867,-0.017874278193250777,9.689168268388035e-05,0.022607803886344372,0.007459488411459847,0.03655154017525453,0.0040199739819976625,5.7446712494746916e-05,0.0003945397094692154,0.0060589306089467825,0.005041350463509083,-0.0020473793719648905,0.0023440780145481126,0.004400379172774975,-0.04485051013498878,0.3076062210139666,0.03208214053569316,0.00011998428850434076,0.022970562128343096,0.0007179059587906517,0.004443370679944235,-0.007230997237076626,0.0002501861390805318,0.012300901516710065,0.006407912466865961,0.04004944995107187,-0.008286967357895674,4.506931639674782e-05,0.01331917389172233,0.026264667023411535,0.153828302327927,0.007799919515457491,0.0002813989415950199,0.007023524584765412,0.02454231979654678,0.3563640180834194,-0.03319083779948131,2.8579326832701987e-05,0.011955014425577072,0.01737493150118418,0.1770660292110958,0.0328939912560329,3.278457529747837e-05,0.011914878957097032,0.007878409313185179,0.02466454666758846,-0.03419385137938163,0.00010289355169875744,0.00479507081369832,0.044681144629655896,0.30912134603709596,-0.04822920421745451,3.3387789787903064e-05,0.005390918261785831,-0.014830781399095286,0.041206246539938235,-0.016994599076307283,7.979549244884562e-05,0.007717046936015795,0.008844338314030555,0.03663624684350692,0.04420683142804965,0.00011038319641970333,0.0009687570023571583,0.03230947108440393,0.02612873525676332,0.030901229566836864,0.0007067845076313344,0.010985163948618669,0.0020951114336003117,0.0064478373529310564,-0.11275156935001018,0.0001367662887417594,0.0075270504522891475,-0.03598343321512752,0.1178549246856408,0.013385921712161375,0.001959629810598408,0.005509256973764618,0.001365120156764862,0.012598927185417346,-0.0067904582862985,2.7862463247546275e-05,0.002137002644024396,-0.04458091526741237,0.12919780834303476,0.019884348362335765,0.0011281454697256888,0.014600378516063092,-0.0011542054682673667,0.00851650420257881,-0.0037036763035927164,9.025004054971025e-05,0.02114451289693657,0.011659115742858365,0.02052316298059793,-0.012126807718406053,0.00013408083500819683,0.0035048222408175637,0.01524538106337876,0.020888001919416806,0.009579942947602131,0.000418933701770442,0.01338763771325384,-0.038391276136887295,0.1630844427960045,0.024683796418260052,0.0018246112802612307,0.0015096780348390231,0.018694628990858598,0.07786331698348255,0.0102383795391503,7.703255812794904e-05,9.925105568468068e-05,0.012118406240753245,0.015957600666941824,-0.0099571918910243,0.001887796193627705,0.017056198283636984,-0.005104897320077931,0.015455237143241273,-0.04939410828801801,0.00013086616460714404,0.009022478095028994,0.023240379586034532,0.06444802783142585,0.04744208951937042,0.00014618202077285467,0.004412508020265804,0.010299355248301226,0.04184687878896558,-0.0400060607513305,6.007045094775533e-05,0.0028219901968159454,0.04730032304895329,0.13270559960942357,-0.015323948081125418,0.0033782587958525044,0.007553431215245908,-0.003981072245830258,0.020604427455957506,-0.03318300997721288,9.611254528682424e-05,0.007048691049077334,-0.0015079061949996324,0.01065739483431046,-0.008420660990102944,0.00010260866897968663,0.010138954532483058,-0.00046913352695143463,0.002504401913682385,-0.003385737437649811,8.860151398171896e-05,0.011446327225204379,-0.012647387017151224,0.057869293934420696,0.00013698847248380625,5.492878841908273e-05,0.007111733313370467,0.018889156170875828,0.03691803980865363,0.0018768814264538717,0.0002494613783154003,0.00758403407139587,-0.015818105271393827,0.0630551722448488,0.018932186309545084,6.238039508283333e-05,0.005017691108046381,0.009874523803781494,0.09619141197382106,-0.013392991102911717,2.6485681173131997e-05,0.0071560435519054545,-0.009738833109173214,0.026040347577064353,-0.03844009475438358,0.00013072814881205717,0.0024006030264728155,-0.019961233408129487,0.08331923368164172,0.07450768781382379,0.0003776331201480684,0.01786833533807011,-0.03821387990718407,0.21109407377114509,-0.04695030874683905,0.00010368522854235164,0.0022128864043147035,-0.0006620149695807239 +2022-10-24,0.030686255746076068,0.24455218939389897,0.04061469818560751,0.00013269633525060968,0.0005633621935149657,0.0022327488166191023,0.007597248208706966,-0.010479588830984356,7.051704078227571e-05,0.03170705549650143,-0.0048784515840662665,0.019418465365663346,-0.041109628583953395,0.00011621556526269314,0.004709998590317911,0.004280072805033631,0.005030739902034858,-0.009987841757747327,0.0002871356711632996,0.003911332105365456,-0.004764005139564022,0.010006902604624918,0.0006220797967093154,0.0002490980459632106,0.002659784441015667,0.017794734092935947,0.055394962299569556,0.003854669172409119,7.014035689982625e-05,0.013564412239211275,-0.03785861327907225,0.1349155854863539,-0.002559859753666817,8.233650628119856e-05,0.0013798912047679624,0.010673613487647572,0.09100581723432224,-0.07668640017509806,4.021989501188282e-05,0.004474327852406509,0.0022557661997616068,0.0017369299954422533,-0.005069459362609589,0.0010015129202881551,0.01151893860167111,-0.07558029008944717,0.17804085131195144,0.09507095832437958,0.00014843994291098607,0.002634159580894967,0.012050238161834275,0.009443658278586235,-0.0008177793101175507,0.0006237057172305519,0.004620294641684021,-0.017897456814162545,0.2976758916797045,0.087510410682163,1.7917212700671764e-05,0.0016153981494718742,-0.03394754632128743,0.08654018348749576,0.023973778165574847,0.00011653103821956462,0.01825464297070195,-0.007600305454183838,0.040940539750173977,-0.016612714619853048,5.225637758783609e-05,0.007547821052217843,-0.02182849943572365,0.018963936822177244,-0.018551247480150777,0.0022450103867004707,0.0005203516881523078,-0.014130272066798505,0.11727030682633546,-0.019327136085293864,9.915498889728621e-05,0.02474665242216584,-0.03319560766201676,0.1779074267675277,0.02797384984261731,0.00028893142320568954,0.014250279084776657,0.04226877160107969,0.24017539888335807,-0.03829246315587375,4.957378307491082e-05,0.017625882859375212,-0.029769369084580354,0.16506092028925684,0.0011969886134562643,0.0002972433695559812,0.0013659588085096768,0.010599314404365817,0.13344211380050996,-0.039532234720379505,3.296211673797033e-05,0.004029223031099942,0.006757547916649798,0.06901965118890294,-0.02010970732839785,3.2711320999840043e-05,0.007217840207587364,-0.07734446457093125,0.211255139379979,0.3177450175856697,0.00011793554272326057,0.02756512733313563,0.025450932215647107,0.17594325619133466,-0.0710372068328644,3.341361353050606e-05,0.008984178340906378,0.005067369430539518,0.013582339038357049,0.005383603840981381,8.271521110279425e-05,0.006917926698453365,-0.022514333306950577,0.10007566994369324,0.11984570839500217,0.0001028677357770271,0.0008709329997378063,-0.03980938661164819,0.038366069090910754,0.03510811286087615,0.0005930806335291506,0.009705589086839236,0.0039369426467184805,0.014997975842254868,0.005902937773969348,0.00011048732203743098,0.0037675665462660736,-0.009338340630807717,0.033372050302308144,-0.006833749541687787,0.0017959986117070687,0.010013477720074585,0.015421259143064452,0.12187402488793957,-0.014868314341062392,3.253800163029678e-05,0.0076003563590521855,-0.03198292096853893,0.09456639321430255,0.002615335435149456,0.0011057388517399956,0.01976193615152606,-0.003467071921905268,0.028482581944000582,-0.04493753707746286,8.106047393640023e-05,0.013683612666539665,0.016534737437980097,0.02259834155394017,0.0032355719022270583,0.00017268957509080477,0.010242716129882874,0.05138401461856024,0.06536304875342347,0.14751511089989314,0.000451231744926979,0.005838108563413061,-0.03203519959271097,0.10232097632555373,0.016673516956899417,0.0024266832915455045,0.006131823940839519,0.026185601959412032,0.10715477270159046,-0.05468699299438035,7.84045764410721e-05,0.005974927557676422,-0.025519629225274263,0.031156429263800436,-0.04512196265499989,0.0020361223601758557,0.0023409950322608704,0.05709828296711379,0.1891894611807983,0.15983457482641067,0.00011957548325876998,0.011689506525921923,0.01425480711796363,0.0369529891011833,-0.0007429330392902778,0.0001563767372262659,0.00019927606709712632,0.05064938979266001,0.18605308724552588,0.05906808491467584,6.644331033272017e-05,0.004083241317359069,0.013450517499316252,0.040993758792441624,-0.07553386125834101,0.003109849058750193,0.022123222551724477,-0.023702192986919873,0.1357841110833581,0.006330152823838397,8.683206855090428e-05,0.010021613922370491,0.00390142623273319,0.022658890439566814,-0.07098326456962095,0.00012486638672675035,0.002636450161528569,-0.007248840539327657,0.047365429795400114,0.0028629598847777276,7.238619734293382e-05,0.004844742067804851,0.05808292744837302,0.23490280843850117,0.12761050964130094,6.214521329928631e-05,0.013244671666216718,-0.07014018995330198,0.13641403898070523,0.0846974376307886,0.0002506901464004606,0.015315042867141573,-0.0049276420919872575,0.021963489849411388,-0.0005989684424358591,5.57894634306634e-05,0.00912107401906383,-0.031153273589725267,0.36728130276579257,0.09140852099890084,2.1884476100068714e-05,0.022017814834251796,0.006538569249602612,0.01919354731763422,-0.004941353712227935,0.0001190793470301394,0.00231908530121009,0.004803193924444597,0.023597887117534518,-0.03995964449445757,0.00032083738860590633,0.009593389627713379,0.006599328279107333,0.03342550152899715,0.0010401262733027148,0.00011308203003008111,0.005910444057531676,-0.0039020810672266482 +2022-10-25,-0.007010026109404871,0.04937112082154308,-0.02223428432369682,0.0001501527300185523,0.0036719858370322014,0.013601372580603024,0.042458805552092325,-0.11835188508332369,7.686444425039385e-05,0.011045993019561605,0.024228786417268982,0.08913161853274235,0.00825050191485464,0.00012574683797983614,0.01725856203083885,0.0054534804391709185,0.005085905673798214,-0.06738648859152137,0.0003618872770559825,0.0008028105740565564,0.005161635271503273,0.009874413968389903,-0.0011204222828978705,0.00027351034377814877,0.005065126404429885,-0.010002627755239775,0.02490855719946713,0.022193442716894808,8.76823688976887e-05,0.018318154336427445,-0.03402922900743665,0.15024120990048243,-0.002904405032342067,6.645886076744391e-05,0.007698591056272953,-0.019394567501275647,0.15824140141818757,0.04531573166690318,4.202992289666959e-05,0.0011455688418755849,0.01954262081815487,0.017117031276957156,-0.011742769913292232,0.0008804387488590239,0.015625908927382897,-0.011220721680226937,0.02771939483695394,3.408575009001922e-07,0.00014154643380027862,0.013590833857204289,0.010561222295751588,0.007675237658076153,0.0018536604896147518,0.0006725842763273497,0.0013406870338535598,0.016777289715946875,0.20191178654713793,0.024450408196441613,2.476184051328739e-05,0.004154519009448315,0.004131345609702481,0.012367487680237453,-0.04443996751803438,9.923413286329267e-05,0.0009920367920712764,-0.011413597931033815,0.07091157577979863,-0.002319035200169752,4.530720293215982e-05,0.0037091271983383063,0.010898886474220151,0.009201899667289962,0.011688803045817084,0.00231008312596629,0.002088757418060579,-0.011089852867000856,0.0732216821491381,-8.277305144238467e-05,0.00012463447543269225,0.019105090700961804,-0.007078251538106371,0.05088616882082665,-0.19777163837098136,0.0002153944305176905,0.010711533693341336,0.003309013994529051,0.023875223295583267,-1.4823628585265561e-05,3.9040207547621686e-05,0.0027336618412493966,0.02074598398613548,0.13316037681790296,-0.0030429376735542856,0.00025677091595775807,0.02456511841522353,0.011200759753171193,0.15732799264654249,-0.016800133770516257,2.9544164435802198e-05,0.017212575322944013,-0.007647763565837673,0.08708403019977734,0.012220637612803668,2.934118450814437e-05,0.0023933648484347407,-0.03483509394159149,0.10901517995833165,0.03741951460496011,0.00010293255803921761,0.015470183949651729,0.006980266848005813,0.04637833411405797,-0.032686917942570615,3.476556218863613e-05,0.008723336946628083,-0.02636483740887394,0.06712457096780794,-0.002699927268536701,8.708050858116294e-05,0.003362873031017583,-0.016585991954550933,0.06200514076422739,0.03600961837269473,0.0001223101075945536,0.0029898900566746587,-0.020177594501682255,0.016564167489554724,0.005049972598303017,0.0006962662402846167,0.008781165048571328,0.00011348312240837446,0.000484894471114912,-0.023973344552979087,9.850767150263375e-05,0.00339133250855548,0.02636594797623106,0.07697928284347383,-0.07898976756177602,0.002198308831875306,0.015496258375959669,-0.004507107451678531,0.037725386507076276,-0.004561883154270651,3.072178244122891e-05,0.00027874584185468183,-0.03790272033200047,0.1120036550820471,0.011125760465811846,0.0011063930914884303,0.029504865362786483,0.020640753022617888,0.12623873973439692,0.023017793991255805,0.0001088826119107962,0.0091791367923556,-0.020616776734378707,0.03382539875324063,0.026153770740668866,0.00014385442621297692,0.020315676009017913,0.05823427328072516,0.07573691480326565,0.13777353636425674,0.00044134170061153617,0.010807446211132608,-0.027392602285996118,0.1250792236940714,-0.07639879314620392,0.0016974557278092166,0.002099655794284209,-0.026043882204879864,0.09806323385928478,0.08496892369400946,8.520986589356973e-05,0.017557525753192225,-0.039333014967776726,0.05085138550490169,0.022692849503791055,0.0019227890441697165,0.004030893727704327,0.03470602457623252,0.10299824063629312,0.04698976972444587,0.00013350302308569816,0.004114842230500908,-0.014804709958225908,0.035437918623439424,-0.0038790202049330726,0.00016935267972755977,0.006053744916569502,-0.00406385882618814,0.01825359711335414,-0.048121819554977525,5.433805348960886e-05,0.010641004981575308,0.017922023910947122,0.05746080606799267,-0.03645371413688447,0.002956197166027745,0.01316233140620033,-0.02950138941784924,0.16388226488443058,0.017808525328543493,8.954700885194082e-05,0.008918103718470894,0.013472492751230783,0.08107679522039028,0.021513215282580503,0.00012050697069770395,0.008256315366755331,0.010934576512891878,0.06434973694277926,-0.022209609023155715,8.037183624042739e-05,0.005722394231890786,-0.046072486115477845,0.2418038928901509,0.02646444732720831,4.78878957746888e-05,0.022453967370644434,0.052394761148045296,0.10234559007002733,0.03939728660747971,0.00024960203665728314,0.03282408159389761,-0.0022086731099684328,0.008471898905703842,-0.01998989685730888,6.482836295271946e-05,0.0030747567489927403,0.006698122979220188,0.07855732227047006,-0.030879949967402082,2.1998736154627537e-05,0.004130734569639184,0.011664035330496016,0.031103921191349578,0.013305240802251027,0.00013108187597103815,0.0008063167905391987,-0.0030085769287281666,0.010475602852476049,0.006227212532321874,0.00045269955383692596,0.004576905822761589,-0.00920258427308696,0.046863678080585364,0.00326344479365815,0.00011247220982693758,0.011498071769737024,-0.0014612678885310567 +2022-10-26,-0.044524607161469734,0.29861827128740415,0.05292096849991804,0.00015767770977883258,0.010882792554659673,-0.042048837226752844,0.15868507791947115,-0.01093315770072681,6.358115719477265e-05,0.0037896027320545207,-0.015565346627294334,0.044340516021736054,0.01046836936837385,0.0001623884954381962,0.018324533652208513,0.00025294063806114537,0.00026560859898653374,-0.019091604448339627,0.0003213988622370002,0.0036236305433658862,-0.017485673966230124,0.0375118174164794,-0.002295569066276681,0.00024390013618574057,0.003087323021227906,-0.021592175815695513,0.055014541188824685,0.06255208978044634,8.569700660312637e-05,0.009143227126052896,-0.016168555938423607,0.0558608365605922,-0.0002844946654418583,8.492853905536207e-05,0.0014249265240612362,0.04580105460090336,0.46680488040001217,0.13890313583520156,3.36464078226361e-05,0.018807977855126095,0.004439812298990377,0.003964778582878022,-0.0010659368366867552,0.0008635559042363053,0.0022803534081563765,0.022432370122924605,0.05746731582232101,0.00035111894678959473,0.00013649480919151162,0.0009354977929209602,-0.022706458789362845,0.018899235121639824,0.015996858134199286,0.0005872588074457502,0.00647602951635229,0.006669388596039581,0.07340946127955096,-0.0042278712774856285,2.707427120958849e-05,6.052672294354919e-05,0.010968296259814984,0.029459760662334047,0.012626742031855553,0.0001106014946836618,0.019312625801114983,0.007399416239640067,0.040329933323802636,0.00672560245399433,5.164541513623787e-05,0.0001656586854067142,0.02142061856680164,0.017387502537018654,-0.0076686588384331485,0.002402800834325204,0.012918072099156306,0.0370432108347077,0.22759103297595878,-0.009723240998936428,0.00013393854729726665,0.02022712809127642,0.06187758152214308,0.37167515271183804,0.08973294435197698,0.0002577971040333645,0.004831283439374942,0.0027087872958446164,0.017446516253467412,-0.022794372250855264,4.373479956915324e-05,0.019068741807976564,0.001161581516573266,0.006257907557547458,-0.0005469692051766061,0.0003059196380962929,0.015649719097932883,0.043577854763926,0.5379964629187144,-0.042447309782753594,3.361372618448567e-05,0.0054482067549382306,-0.004885540355581638,0.04560565760938453,-0.01562853481889768,3.579114495672647e-05,0.0002908179569966929,-0.03771144965586819,0.09042118697464852,0.03867553464747521,0.00013434632140987075,0.042958677231711234,0.041929150741001675,0.3080840377430315,-0.001446514796569234,3.143686605146517e-05,0.01140982999451442,-0.03379517786516836,0.09878606633733253,0.09794716130315996,7.584665402278643e-05,0.022596683834467945,-0.007484680709565288,0.0262937339789368,-0.02984136304199369,0.00013015762317310182,0.008409427818174567,-0.0032029423743549688,0.003078627646225946,-0.004411268065358902,0.0005946583499942635,0.006186323717553865,-0.02472435839928345,0.08753242215829296,0.038739461309487355,0.0001188891147343749,0.008769765820507397,-0.02542195177833371,0.11387982945268925,0.0056811083029185624,0.0014327857621942866,0.006372975099191609,0.008031078138611565,0.07175862814650653,-0.007672051748972065,2.877941218222118e-05,0.015653774205734973,-0.02440139477404147,0.08228793302512713,-0.00873662731760876,0.0009695043620481157,0.016761368729451248,0.0014406216570357934,0.010933134292636109,-0.014897914282829773,8.774672172536271e-05,0.001861510409484384,-0.007729526541195326,0.010961465158839206,-0.051492024281262136,0.00016642925582313479,0.012033697927281893,0.029332976130986115,0.04281324315264554,0.01814034770788644,0.0003932619381511629,0.010659205333949316,0.008712511788732566,0.03655910832569107,-0.01718257845191754,0.0018471328207207802,0.0005586727792890409,0.033203216177178925,0.11037471992283099,0.08431964960819237,9.651635426567961e-05,0.0014384312154863282,-0.006874474674502014,0.009864147449684942,-0.14081743910386485,0.0017324358121032063,0.00822361988840416,0.010055340184262943,0.031798232254866575,0.002360339358252662,0.0001252881011793856,0.012370529259111803,-0.006042687274170467,0.015714668662681515,-0.06072779369460704,0.0001558781584752035,0.0022137343578806637,-0.01512377344340228,0.06171994320652251,-0.04787961427932738,5.980652518174558e-05,0.00658189666426514,0.024151592567639678,0.0771851748588082,-0.0036863203799230764,0.0029657185881632347,0.03477420407414446,0.04542548973537064,0.2574542474331436,0.05419317013862279,8.776879335868368e-05,0.012585429594129024,-0.0060938815249229564,0.03568165806476336,-0.14578086991490757,0.00012385392206512965,0.008972361358799127,-0.020031554983092812,0.13847560453767066,0.04364746901633126,6.842110635658675e-05,0.015953562471183083,-0.007339704114702859,0.032140343087001456,-0.03276098033246806,5.739518222458769e-05,0.007633373273640616,-0.02532237423747194,0.045833363738878724,0.0025894234375337223,0.00026937177338335434,0.00854231956723807,-0.029358097581833772,0.11920223026472765,-0.1537626156077982,6.124320418130184e-05,0.005621161963457532,0.012612846202486082,0.14024141992521857,0.006137488831667071,2.3204279355588294e-05,0.0037832506325644185,0.04009830148593718,0.10690774393744815,0.1433668076644993,0.0001311069688039291,0.007157052739181878,-0.0026309744359264346,0.012945262254417136,-0.006204673671706741,0.0003203566518437009,0.0005845258845651204,0.0028849896284073463,0.016612537330134812,0.017899334591336528,9.946724342414721e-05,0.003153520690644428,7.005674977281023e-05 +2022-10-27,-0.0290838431267651,0.19660786150173903,0.003423197429779144,0.00015643628646330162,0.02902683772070974,-0.02562161157844495,0.08456577758132845,-0.11689672463978801,7.269797655609139e-05,0.002033106470205997,0.012371493166104459,0.037730659981688314,-0.02780511579892089,0.00015167881328960163,0.009323862839539496,0.0028922414665450446,0.0035286261872859936,0.001942135977924838,0.00027662839172038964,0.01690219354746281,0.009941214465338308,0.018984451095037252,0.0032768739354593424,0.0002739928126862643,0.018505184797561105,-0.014293691010979496,0.033956495833030446,0.00045550089258492824,9.191116330716747e-05,0.0036891509243826654,0.041293572219669075,0.1381785778323626,0.06331436136075523,8.76862689197449e-05,0.013484971349355758,0.004577174978343142,0.038618369596158,-0.05093737686619423,4.0644538341398185e-05,0.0014340377786598187,0.0021874049362259314,0.001724839311456618,-0.004566685485147082,0.0009779695496492592,0.004593397908357882,-0.028255929143434198,0.06015715180821902,0.009912522459375806,0.00016424199558671328,0.01233402289474345,0.0047071908739999575,0.003386225818024501,-0.056498579287401235,0.0006794699439667632,0.004945407705294691,0.00518193089627093,0.062337083186237714,5.280625024399275e-05,2.4772391174378143e-05,0.014431746050337866,-0.0497208887091997,0.15132514542633987,0.04138063918552136,9.760651809425768e-05,0.00710061439487078,-0.0007435357024555712,0.003933863453516524,-0.050132029488985395,5.3204009705697665e-05,0.0005638395284435302,0.006805374273926104,0.005375981269221241,0.007726824152842221,0.0024689781168138634,0.0016808089216968252,0.04762961345244804,0.30145044960434514,0.020298016244731404,0.0001300209182235633,0.015579593159135128,-0.004234550074148681,0.026849120010031265,-0.0035119312847985435,0.00024422237405220267,0.002367305376674401,-0.012516561985466825,0.06652060509678907,-0.040257208595926144,5.300170241541655e-05,0.019355012240182465,0.03473611101607096,0.200645082837998,0.00810266392106449,0.0002853247730616254,0.0015597325553746832,-0.03372188478659115,0.46540155411325473,0.015867574437571388,3.0068671631062883e-05,0.0007951014050259662,-0.01605709582827695,0.16742915143934364,0.031624382889945506,3.2041853626778056e-05,0.005836041207664159,0.034397013997189044,0.092004979570255,0.02006343512292321,0.00012042930102679646,0.030777195953880742,0.03140309475971627,0.19979174407203196,-0.017597722398785154,3.63067427236288e-05,0.017285909067435483,-0.02044804022059948,0.05932493429986163,0.008040851796730355,7.641732078151406e-05,0.0015095178677972786,-0.006227839694067188,0.025251282146690084,-0.011841153019328142,0.00011277233850378957,0.0013536416544265553,-0.010443718446402368,0.00947000571397401,0.00020374226326881295,0.0006303481396627144,0.008980431129970642,-0.014474542044162859,0.05484663957823641,0.008728915588539674,0.00011108126513829316,0.00019129703037024646,-0.0010364519838550646,0.004320526343098266,-0.058511166835302046,0.001539684381708954,0.009947355654543737,0.02559433651609097,0.23235015474183845,-0.024172103280145824,2.8325860045223106e-05,0.003917362379755421,0.032452581876756995,0.09949925446428723,0.013640601973641697,0.001066352269122676,0.03398763968779556,-0.0034190462940366082,0.02709028958811177,-0.021391186838059153,8.40459860652301e-05,0.0093846253239771,0.0035066461793281964,0.005116479814677355,-0.11625348221860654,0.00016175811186720053,0.0026524095044116467,0.06750598042049105,0.08631480234033571,0.12269969868307395,0.00044891165657704997,0.003841020671961274,0.023104837476767736,0.07716608628021733,0.02843559209620023,0.00232074158792181,0.01164855867162738,0.011138982126133025,0.04124849793070375,0.008062677729115243,8.664185444956755e-05,0.007131797749191879,-0.030458612874701016,0.042055641800051884,-0.00039835182065617314,0.0018003753075986108,0.002984613883051993,0.047887179806994334,0.14715378129003448,0.06614003700669067,0.00012893293571051114,0.012767216162085948,-1.6752494080531918e-05,4.1537111347035825e-05,-0.0026162446186256093,0.00016349465475336072,0.018064264417529268,-0.016740419249427464,0.08138161669958513,-0.02853513461002307,5.0205805839209615e-05,0.0004197342145161433,0.046832232455241284,0.16514226044194022,0.0045434596833095675,0.0026878479286686105,0.025766961243927758,-0.01020597535832301,0.054837143860565374,-0.030335535324561208,9.258065716895593e-05,0.011430241340193584,-0.009049092179261876,0.05606728537005672,0.0031887511715539773,0.00011704591670708737,0.005497292960094959,-0.005668326169963686,0.026754518704320808,-0.0180720106044071,0.00010020892165407675,0.025412608872379318,-0.0050355202395393735,0.0235908369314384,-0.02562039537123633,5.36473645813711e-05,0.017080006079614077,-0.035185441670200504,0.06933150166096289,-0.026912036033015257,0.00024743537780333414,0.02174496155373683,0.007371921936259244,0.03263149712335106,0.009124137276612784,5.617694321501865e-05,0.004305042454169029,-0.04203922520182543,0.39364943081136383,0.06841473684581748,2.7553473839419154e-05,0.0034413921113157246,-0.01630968945158696,0.044085956979213387,0.01993061713624017,0.00012931663164401458,0.002208500551560245,-0.006512437210345497,0.023564863191223532,0.005856220191376191,0.00043561878285538737,0.004500262043415382,0.023752464523292317,0.11739874493675446,0.06751857630120307,0.00011588227695935397,0.00752289232901526,0.0014797046201121002 +2022-10-28,-0.06340855071195244,0.41341658759632877,0.11138306784973576,0.0001621983802393826,0.0010350490196112127,-0.02068231316841372,0.0649643184112608,0.0043172203374090366,7.638969044607555e-05,0.00978188003232202,-0.032500600885708095,0.09211683046085845,0.0382826200099339,0.0001632110687087374,0.007489926534667159,0.013522055230514677,0.014159118785882475,-0.0016553472678119806,0.000322310412929065,0.01608880345781513,0.015191614454494361,0.036369446648724796,-0.02356603483610498,0.00021855714498851403,0.0009824060671871468,-0.029044374038889896,0.08686833019573867,0.07390012711511149,7.30041060634436e-05,0.02062141758478149,0.023932817739582623,0.09458143727073054,0.0012460364189226575,7.424680663630795e-05,0.009238313313925476,0.0030173794235985782,0.028024329146903854,-0.009995111280110679,3.6922688280517714e-05,0.01583598400550102,0.031017235721532033,0.0284788539220318,-0.0866872834966286,0.0008398957220980783,0.0021485524225555216,-0.016981545241812564,0.039577861530381904,0.0006050737486133469,0.0001500329913032844,0.00035834218918846285,-0.021072914457288715,0.017250253891500103,-0.008278665459954685,0.0005971087989905948,0.00125668079174511,-0.013993860480481546,0.186498615249295,0.029412852509748597,2.236066512124891e-05,0.004588617826753309,0.007234778646504617,0.023268821045472392,0.006872676204212483,9.236382428172841e-05,0.003597691225249974,-0.00696750463105986,0.0375146861761122,-0.028046971007160266,5.228026335379543e-05,0.004325443371634295,0.008981207747879494,0.009093199489053608,-0.049888620425380795,0.0019263757212469247,0.012248928318303898,-0.0036146476669707793,0.023368554551075203,0.0011576306026812209,0.00012728763840474854,0.00039160691897201466,0.0008403361821365824,0.004888299383235705,0.00029034827299801434,0.0002661972096771523,0.016558408104000426,0.038470619993362175,0.20443575817091064,0.02578829645676189,5.300700668545029e-05,0.01117937577168588,-0.021633358170573137,0.12239768691466411,-0.04554150040296683,0.000291298023310801,0.0061160810789164235,-0.009958048149457058,0.13691053795589747,-0.05080782547857319,3.0183359484716407e-05,0.02720486079058208,0.01858304131485713,0.1788307055948169,0.033007911737358196,3.47181369068179e-05,0.010251259511062287,-0.030819552416299842,0.08678473158846839,0.022813116546855087,0.00011439466175354185,0.0011877361135291414,-0.005003552488694423,0.031129566674562945,-0.0717585790596161,3.712767559771083e-05,0.004218702605722624,0.030792599516239784,0.09886290613789736,0.0874074062397398,6.905424213660938e-05,0.0062517737071796755,0.00026670978012818813,0.0009578536488366401,-0.0239321444825315,0.00012731758113186523,0.002623225451972815,0.02854840388149417,0.026882432420610444,0.0215482226817102,0.0006070001953974736,0.0012340212734695652,0.005621705223373365,0.0207572876307973,-0.005695167927350999,0.00011399438901416629,0.0011067662063241114,-0.011393645838374556,0.04407225388929125,-0.007671064160723153,0.0016592683495302572,0.00839496266831068,-0.021051524343060957,0.17533073947359828,-0.06723502749871062,3.087505069955529e-05,0.009461080227316423,0.013808307364956243,0.03757229308570824,-0.02290004747108226,0.001201555993161505,0.022058023875828756,0.0315054569685725,0.21700839929820295,0.036368425659756336,9.66796084620998e-05,0.008582714356484078,-0.019332815002384745,0.03355822167696922,-0.014220051395139493,0.00013596951326030275,0.026975257426843566,-0.0036467225562111655,0.005741658891680315,0.0024094766974396527,0.000364560196241296,0.014815621153227584,-0.027353942731213995,0.11948507709769832,-0.023487483315062088,0.0017744207455274506,0.0076962929045270734,-0.009682701774924054,0.029932599805757694,0.002008317675008714,0.00010378688728109469,0.009241222274942675,-0.10172138707685599,0.1381735428690564,0.1402852701385712,0.001830056811739204,0.0061116697815645875,-0.01505850885557875,0.04555945978769359,-0.03580443226036255,0.0001309542022666008,0.0062626223113381166,-0.0304055935650138,0.07332865518053754,-0.008679702222051406,0.00016808932832039004,0.0008055000635844209,-0.009215227876467325,0.03491382533841689,-0.003107757566993508,6.442027421084707e-05,0.01576174093625767,0.05978891486192248,0.18688351957302893,0.01001831556792948,0.0030322689906436043,0.012178259004649172,-0.01538041439384946,0.08047663053012652,-0.0177614288365059,9.50689774803587e-05,0.006169090868815699,-0.030816721874963572,0.1724745172491239,0.07314661874418923,0.00012957531854456696,0.00014972231744831105,0.03332977588150145,0.1663641687366591,0.04133812690506461,9.475918084179073e-05,0.004534330916992052,4.7372560310001114e-05,0.00022660943913084078,-0.08260940907983358,5.254074860521568e-05,0.032238550859844894,0.032200866465123164,0.06857354338001245,0.015039237725238607,0.00022894984864969863,0.028059415539775954,-0.003113968252276627,0.01206815681352964,0.0001124779681659359,6.41634358433289e-05,0.005911430577362285,-0.025179077378924622,0.27973131595452366,0.03798699432378955,2.322362496591225e-05,0.0036043475027042727,-0.025154794990090195,0.08435678728092597,0.03542485327200319,0.0001042340746912538,0.004150864960270625,0.02198022151536962,0.08640531811514737,0.04865946831351994,0.000400977092429555,0.004636039314661915,0.010301757265836887,0.04892202390567037,0.02247875631133677,0.00012060871575895201,0.0004467661549337873,-0.004868095469467244 +2022-10-31,-0.0051324197641678644,0.038708903433789806,-0.001659751462931401,0.00014021610021612902,0.03283642427076067,-0.005947963372897333,0.023945646480894076,0.0001409296230469772,5.96008214607683e-05,0.01591285007184452,0.02240168145670445,0.07461080991548723,-0.01431600645330075,0.00013889162771320616,0.004974544569578566,-0.00796624371799105,0.009235453609974381,0.017268431414661382,0.00029111408210862375,0.0147900548898149,0.013422637687921015,0.030675921085703675,-0.032325964155472287,0.00022894861889149388,0.027062049912535444,-0.015834712752887094,0.03962703974169891,0.01803055399576455,8.724997253033165e-05,0.009255485686423304,0.0032637908412321247,0.012118277152508905,0.0018683713731734363,7.902623538699496e-05,0.016066949822811885,-0.01148521464232806,0.0944448447723618,-0.013844828520632329,4.170224863664055e-05,0.004348181187529924,-0.01671102678713663,0.01380612239059774,0.00179110937970161,0.0009334180674430198,0.0005374654686670609,-0.013880820502593127,0.035782676589053895,-0.08159740233672808,0.00013564512853453826,0.009554742784089,0.03623140331347466,0.026608756624450967,0.09278767482805679,0.0006655565048663505,0.004911191286102172,0.015055898598175582,0.18196533886501454,0.005784912991826163,2.4657032067402784e-05,0.0022223916235304146,0.00843323548999687,0.025623700046219906,-0.037039458586012666,9.776950667454274e-05,0.010531708138809015,0.0057978856924912735,0.030895949947386883,-0.10877024468541106,5.2823833368073625e-05,0.0062688040015925674,0.006135510599320848,0.0045682431716514964,-0.007789761351737953,0.0026195365926416883,0.013708506325206786,0.05842772594760039,0.4425151181389862,0.04071949914738481,0.0001086533144055017,0.009225930348139486,-0.03332345443246229,0.19221313826489184,-0.0006238327324211204,0.00026845727533115284,0.01567052864662622,-0.023791465056210843,0.14493750633404645,-0.029814263135086047,4.623824665233833e-05,0.0008210865757077438,-0.04033186804218008,0.22196811373067948,0.02418258929919604,0.0002994639533495203,0.00990408768688817,-0.04200629270593716,0.6184665328038759,-0.013449068987531593,2.818567124144139e-05,0.011492600506941732,0.0020709917746090205,0.02262514042975558,-0.0036432628176459145,3.058220531316374e-05,0.007777440570452423,-0.05110136464886114,0.14121538212995444,0.05733356516663834,0.0001165663635477664,0.009260889543100306,-0.02604917879913582,0.1692945251865256,0.0505987310481918,3.5542133934529353e-05,0.0023369240011667054,0.022161911788054316,0.06303187945415564,0.039811867035791614,7.795147678963341e-05,0.0039149841591429625,0.017074392248694368,0.06581043350619559,0.12346075813537438,0.0001186312477341602,0.0016759395748175265,0.054725493971774765,0.05165810014072843,0.06869698893076885,0.0006055176711330679,0.04193720558449437,0.0013076380847618703,0.004553855735058817,-0.02182705538473328,0.0001208632593402916,0.001519961800736622,-0.046695566268405826,0.1554162639283467,0.026966105581443724,0.0019284054774414963,0.029036545225943365,0.02575004838323321,0.21657293330449162,0.005198756186071183,3.057426784953297e-05,0.004444178302354215,-0.0139378463303852,0.03984200580142856,-0.02607565631686749,0.001143735884845357,0.021129486050871785,0.018765813902504615,0.13682639671739705,0.008839989904648002,9.133204002864203e-05,0.010541488066520043,-0.00579520637088771,0.00982225529474527,-0.06820165843534833,0.00013925252361739188,0.012100157122644208,0.029304075139480083,0.04128819862443724,-0.04848283364058323,0.0004073859038846433,0.005198125886193667,-0.017159999912565598,0.08056471748895147,-0.02814845132414403,0.0016509074750021863,0.026540246139201196,0.0012517577784022923,0.0051638758497000396,-0.06179338601952114,7.777407898381876e-05,0.0009789075521497808,-0.017129280666832163,0.02831100503317585,0.0009525848810725252,0.001504045692680184,0.016243318114350352,-0.011237920368099407,0.033468297196517685,-0.027552677291486086,0.00013303575235677407,0.020172075070706636,0.029101095928786836,0.07213671475821602,0.060656963935227126,0.00016353599617994628,0.000122504214569866,0.026630779693420904,0.10365682284450763,0.021650414598039906,6.270467390080829e-05,0.006517493691403689,-0.01866783082484819,0.05300117222284019,0.010102135174430794,0.003338308278796599,0.0025594407662282315,0.016103124634072423,0.0636902297567952,0.004158729474657798,0.0001257702457210481,0.014422305141720694,-0.004134959290969728,0.023919708243384886,-0.02485976258097898,0.00012536495367487037,0.007016844226679121,0.012292198494535791,0.07102725829417914,-0.11719249323955669,8.185650776803606e-05,0.006988430552331294,-0.009821416703300218,0.044622919032268185,-0.037575907481561956,5.53176288479398e-05,0.01705852952136628,0.02829663643365983,0.05296706560016642,0.0019439414417839389,0.00026047035109653526,0.019346127474905564,0.005861528523461591,0.02419046150613587,-0.06552397951603706,6.025333704055504e-05,0.006635377510221305,0.03474915489915277,0.3333374874515316,0.06936980320727691,2.689622782950235e-05,0.016019810831978985,0.009522114323365114,0.03249828418677852,-0.013484105745895543,0.00010241932842067889,0.0017201046294176407,0.0030713967371854283,0.010721995536951617,-0.006117643003700964,0.00045153172266813245,0.010603685463493641,-0.037365194376939526,0.18853630575463215,0.016320210501850847,0.00011351259410139871,0.011912356417139424,0.0011696510361143837 +2022-11-01,-0.004072758104152843,0.027843892234805708,-0.042618018705214866,0.00015468395091168015,0.021350928150219058,-0.021888083609904647,0.06885196839156159,-0.027891405478055287,7.627845797372431e-05,0.006411472754217131,0.008634304925652479,0.029396113022315144,0.0001240321224510305,0.00013587347350823832,0.015137629820727505,-0.024052583099827194,0.026339480889396135,0.054602414463318795,0.00030819271493931667,0.002465208668084951,-0.0034903167742743814,0.008625070333245374,-0.02632390828038847,0.00021173856797440652,0.010141732078706585,-0.007112915241486267,0.020588843904159045,-0.07479413738078497,7.543317930569721e-05,0.0143407211266912,0.00176212477679864,0.006188653701734796,-0.02268515907898286,8.35468983260176e-05,0.03418182722856852,0.04541322833844258,0.4328290557172544,0.13940462919213006,3.5980283707712445e-05,0.0006929864703420668,0.023487306234348547,0.018224515177943223,0.015050465641027577,0.0009938526800533246,0.0005757096506926226,0.015323391854926108,0.037350770181964185,-0.009240130549999724,0.00014345550959253184,0.009697900260867785,-0.014222071769257685,0.00994444892231944,0.00010553966735930495,0.0006990472035616709,0.0038753524569079367,-0.012335883018877697,0.16449956548021025,0.03711233415320859,2.234746555850562e-05,0.007500365174068575,-0.003952046329606544,0.014582969533450122,-0.10224790219602252,8.050578637894879e-05,0.005475282833591167,0.02091189159861967,0.11778091873671366,0.0960749850878419,4.997815270250078e-05,0.005690387419343216,0.012849948547030927,0.00989627302484977,0.01912220088958757,0.0025325188867604343,0.025043743975537918,0.0373467885851976,0.24192910174409193,0.008613096879300768,0.0001270332057873767,0.01138611051655256,0.014934943961527608,0.08742172357528553,-0.010092604432834704,0.00026454067946604014,0.007218900381409867,0.01003678288305923,0.050587762622785436,-0.030851931227397378,5.588689912335852e-05,0.003405539025273033,-0.0319493998659201,0.16502777386201237,-0.0006186364658162414,0.00031907477449730215,0.007515984738054324,0.009346160656651444,0.11760680546091551,0.0003321576116353732,3.2978509240345396e-05,0.017452276737268065,-0.043067035737286645,0.4877430518750649,0.1316569549066265,2.9500922618091665e-05,0.004103893164660436,0.04949071602412762,0.1618912953674846,0.0556731275445328,9.84743209904935e-05,0.012417932991179782,0.00854181931074879,0.05544467039255474,-0.0018183858582603832,3.558630940555787e-05,0.0006880656855864295,0.0056523969346033865,0.01596589398038099,0.002449093973734514,7.849044538329574e-05,0.0027445337162032655,0.001403742518006685,0.004396840548447002,0.005188914502505176,0.00014598066371329646,0.0012326483925446578,-0.035934745956204196,0.03537860090515041,0.021145701898809523,0.0005805631763323916,0.019815455156477948,-0.01712235795553609,0.07016431789835685,-0.06775310626521723,0.00010271485881913983,0.0036802773457867938,-0.012052070285836679,0.044727692311774606,-0.06438309391732616,0.0017294353777106298,0.012753194544122362,-0.019157279422175325,0.20167601719285214,0.018547153038730044,2.4426529826841715e-05,0.023200626360298723,0.017080611415805212,0.05318957370506544,0.006579880953193696,0.0010499005729945475,0.000703927272774612,-0.01639636567290617,0.1395772073666082,-0.00903019022474994,7.82273707794301e-05,0.014265028220333225,-0.0052161255139531685,0.006986903103450156,-0.07189735106568752,0.00017620113396929333,0.005762641385184914,-0.001857409758970734,0.002991727908365631,-0.06989350539009638,0.0003563604872429754,0.03121722237679387,-0.03947708814638374,0.15729895090114765,0.02513779604229411,0.0019452240321622739,0.016697197456243,0.033388708733366315,0.11939029680956326,0.041006550085618466,8.972654849935062e-05,0.009596441692859635,-0.011851874795892387,0.014847346652586604,-0.01732414571062546,0.001984336853474875,0.007967087976767826,-0.0023699385430112387,0.006667172128638634,-0.09052163618733684,0.00014083527722195662,0.012640893846681963,0.0352194104060375,0.10823616232146667,0.08298266821016918,0.00013190767700533928,0.001796867658112541,0.018881306443287414,0.07498236817938458,-0.016436002147300878,6.145918731766837e-05,0.0067220123159031225,-0.07886034595604256,0.278335950641336,0.1481119636126685,0.0026853903954325432,0.0025998159983168807,0.004308497300689074,0.02027123343171725,-0.003214344029080926,0.00010572707591900952,0.0023541422155964674,0.021207945246694657,0.11087690619450273,0.05885432531142546,0.00013871335584628186,0.002309954982734508,-0.01444669029358393,0.07828455472356068,0.023416631317423102,8.72852732005109e-05,0.0067128525162779605,0.061632715672046756,0.2488325645762619,0.1415507316315659,6.225173834993037e-05,0.0009291934466413825,0.013070150002958466,0.02810129798745391,-0.010592425269758562,0.00022676894820190712,0.01862053064596187,0.0010132764743525696,0.004624290178458675,-0.008589323722303484,5.44875470220235e-05,0.009603615505632011,0.033026945129196225,0.38051377916209606,0.04358407430637792,2.239387771314396e-05,0.0053974264179558135,-0.020052940845877967,0.05610389939831828,0.008563640587132175,0.00012493783906741726,0.004377064140062074,-0.01065373603474073,0.043219686564389966,-0.05362861659332017,0.00038855123177667256,0.013605466673504416,0.0306501907248587,0.13488566329686968,0.06428199139218646,0.00013014850548269706,0.029961535163651302,0.0014183331893630536 +2022-11-02,-0.009541837927952872,0.06295633203605594,-0.008368063548006064,0.00016027995149176804,0.022545179528276338,0.020412694678411926,0.08129410424108602,0.012244291783682444,6.024927374599216e-05,0.021329718902392745,-0.036018946136878165,0.13604236431302622,-0.16741939216661564,0.0001224768576553416,0.006903695825084301,0.006666906202527167,0.006992230176610691,-0.020403102006318473,0.0003217929202468844,0.0027358145094527196,0.026780398622163054,0.06017779858107906,0.021707537248379104,0.0002328512175047634,0.003990904773195159,0.0025361686320195635,0.0064108986055396045,-0.01632770638806994,8.637855974330937e-05,0.016597676248749714,-0.0004648639044677093,0.0014330722007945746,-0.025647144353815585,9.518041834279288e-05,0.00991872910911547,-0.029789726627301543,0.23301757760088182,0.07368543983040225,4.3840595957067895e-05,0.003240727479545456,0.022133045048205787,0.015177035869922112,0.017052958586184237,0.0011246023690105187,0.01158392645339177,-0.009532609791934963,0.021850050599133364,-0.01601488940019475,0.00015255317659637583,0.01407363520396637,-0.01017896520026479,0.008179861578031904,-0.12482353862692096,0.0006082498820408446,0.003944095945419579,0.01888926291752418,0.23654175078923126,0.032510163441310184,2.3797426492163908e-05,0.003662711210950552,-0.04112676037103223,0.12907597413174857,0.012880056493985773,9.465207239452953e-05,0.016472470433038868,0.015853474020016196,0.09232547915910243,0.003710360920901714,4.833533059167575e-05,0.005540434889570493,-0.01658560058607826,0.014886858041626878,-0.010571199200503771,0.0021729569787918867,0.008036955272552949,-0.051118871652752945,0.3656921685406908,0.022895700344596457,0.00011503174474642629,0.005918201325729947,-0.03771024157746655,0.2117517485004641,0.008402331231007129,0.0002757658867654684,0.004231098482548661,0.015268546755896548,0.09127998563194926,0.001430071454606636,4.7117592983189064e-05,0.017700335609954126,-0.000609707679963539,0.003396201371269856,-0.01214748059534738,0.0002958796116072483,0.02689806986162507,0.02775296609779625,0.3100151671904974,0.008219294758266778,3.714981835707816e-05,0.008771597766757703,0.009606377182012758,0.11755082076357413,-0.013021543377684687,2.7303333755075517e-05,0.008057444230750851,-0.013075464057005602,0.037310050542918846,0.0015079390210386622,0.00011288962480982383,0.01949516744781954,0.047516732897035674,0.24193231885113597,0.01789545140380328,4.536752218855561e-05,0.012010851927940937,-0.012318342659744389,0.03776212767734299,0.0040226623360534175,7.232246279089571e-05,0.0037401741494907173,-0.010607615600559003,0.03542173017646842,-0.0016589558997307896,0.00013692936635503934,0.002809225521334221,-0.010165499614032115,0.010107712434635176,0.0014801206197284783,0.0005748458652109666,0.04119872091486858,0.017432495477629192,0.07462629532536995,0.03806901309195387,9.832267550194493e-05,0.007838832480830523,0.0025678143392313365,0.008740823144415493,-0.03420573683859988,0.0018855170386238153,0.01562869636151317,0.004689747755273073,0.047316180591019996,-0.018787324962946546,2.5487192481848363e-05,0.012353197879039221,0.056893187499550975,0.16712529899244963,-0.01181676375206128,0.0011129850705073848,0.007908935646436605,0.0121338558636712,0.08635742914883604,-0.056299919363419895,9.356744487678227e-05,0.02224039829948992,-0.006128127362333557,0.008341883017640564,-0.013199092752106775,0.0001733840222914302,0.007266485511246058,0.05245669646728146,0.07588422623909083,0.04267400253796574,0.0003967832592447136,0.008125437106897353,0.004434143420863795,0.018244205056768034,-0.07822942180270875,0.0018838014740941735,0.014769159284583996,0.02630383035056446,0.09944993442411208,0.031755880713716475,8.48603588920591e-05,0.015883268101378894,-0.004434086905704203,0.006845573890716518,-0.04088469549805621,0.0016101692556807848,0.008559714189406618,0.019279212438422583,0.0627888259335766,-0.002121234244941012,0.00012165303914076381,0.009731352592004062,0.055533818994406924,0.16393543039615444,0.13624312694408172,0.00013732357190992354,0.012020939524244519,-0.02735461172579498,0.11147139421322849,0.02899844628006971,5.9893686731416434e-05,0.005462031720579853,-0.031520909260020956,0.09673913130850084,0.028128996685005812,0.003088265369691266,0.0014186758055615793,-0.014046669758391427,0.08889392738013586,-0.03139734897541611,7.860349356506952e-05,0.0014020837387237303,0.005715120489186161,0.032881414576623816,-0.0018304116231153376,0.00012604791968104582,0.004369668100782029,0.0050596137167689135,0.030257802441481494,-0.0037301321582285563,7.909129327772686e-05,0.0066418161067424136,0.045331089962046024,0.20477976373749487,0.053173468990805065,5.563607947866165e-05,0.017327105204037983,0.016332461015180613,0.027927332843959755,0.0023437274451276182,0.00028513567853495386,0.008838391779403562,-0.00048298003730211787,0.001910981889761475,-0.02858601305144281,6.284735220023644e-05,0.0041337574825156854,-0.01941693173687478,0.2354118299125922,-0.008699948944836028,2.1280587134601377e-05,0.0033033484878778317,-0.004724394773309041,0.01546797375726166,-0.014669263256410844,0.00010676323342450769,0.01670824699104236,0.0025362570226767516,0.010390919266827501,-0.01658152793408909,0.00038473993115351415,7.254878814551367e-05,0.002464941180043623,0.012590714927654413,0.006248476419578893,0.00011213158611579835,0.020247072978099984,0.003224165386526459 +2022-11-03,0.025285107994140674,0.16020207949879314,0.03469834838455185,0.00016691034224655305,0.00787066080054072,-0.04620977445060916,0.15750560514615672,0.059206462376474936,7.039606144607115e-05,0.006458664830579958,-0.007191437899004222,0.023152275154758487,-0.012435660173564896,0.00014368759104226633,0.009432056970565547,-0.01197081053166748,0.01375292978286146,-0.014967752000324921,0.0002937623864955374,0.006914673525711766,-0.006086837991217748,0.01336011266602028,-0.028356474499525858,0.00023838525783088116,0.011745271776034887,0.0020879427413788027,0.005638129996006828,0.0006350234375502287,8.085934880597066e-05,0.006380682643859521,0.043602302900213656,0.16488563436445408,0.06318340962450292,7.759191370761616e-05,0.00025633853818647504,-0.016720199252559877,0.14873194218887076,0.008979283214676425,3.855101472996986e-05,0.006463923664614586,0.014133153586705147,0.0110052531748746,-0.011146328439781708,0.0009903388748836158,0.010200655717929224,0.0010921043073459822,0.0026842052583432993,-0.053181459113397306,0.00014226900153677327,0.00966304692453331,-0.010912484315937731,0.007209393789232643,0.006080911882493985,0.0007398594796670304,0.006936570276570462,-0.005270881766672553,0.06910307604319212,-0.02046354871130298,2.273048403862166e-05,0.006334282128612622,-0.002281162344028001,0.005185750326120455,-0.026639637607480757,0.00013067593868372262,0.011834305014061144,0.0013056139487786173,0.00847466203099206,-0.00017052970182741727,4.336648395254428e-05,0.0011071700980160497,-0.02108105333699554,0.016346296840683807,-0.006694765518701553,0.0025153353735544257,0.003564298437437775,0.044072323978093894,0.25094324487714575,0.016434480164695175,0.0001445248576327964,0.0314742933311957,-0.006780392090923766,0.03743888004081796,0.0009822353409601077,0.0002804401507593646,0.0029260128099503416,0.02154692410911296,0.12461566389183891,-0.006738321675395311,4.870500614565071e-05,0.033635898514731234,-0.004845981090156328,0.021581090709393926,-0.00278840822066437,0.0003700795883917985,0.023460262559624183,0.019765309780949595,0.29065177110165946,-0.012829323494963654,2.822025170129728e-05,0.03237193212943462,0.0007126532027081766,0.007411829051181059,-0.009403445754500465,3.2124365332066735e-05,0.010647520893200601,0.0038141147845841697,0.0122639814525693,-0.011149691616062354,0.00010018092322165874,0.001545370061323237,-0.03861393231631496,0.2303135729343131,-0.02240602962658823,3.872726919681224e-05,0.005497959212759852,0.013538173487038223,0.039061137550915184,-0.1049650146615819,7.684092260087705e-05,0.00043771563057136615,-0.0321805624500053,0.11797711797068491,0.14478148422619747,0.00012472239541308104,0.0024772613631788547,0.03526629150036155,0.03454936634837549,-0.05838946621257521,0.0005834387467893073,0.021334592529852515,0.00027192332152859507,0.0009250073526096658,-0.0009172584731826016,0.0001237334951336624,0.007984038223699651,0.0050270611508098995,0.018645452407038476,-0.08256682836799661,0.001730455427861386,0.012030185643320907,-0.04922703343240395,0.45285401202573655,0.11352174486062457,2.7952949523199507e-05,0.009429889063572663,0.016459499936648733,0.047508689901941244,-0.08398886977306595,0.0011326998731215317,0.0008923737626042593,-0.008783836045557339,0.07612331961024163,0.003978733364382859,7.684084733252598e-05,0.0097911589051049,0.00799331936609945,0.01310894899111426,-0.005725024407568847,0.000143914541331801,0.0006787308401749134,0.02667083748420021,0.040121083116556905,-0.009083748965703542,0.0003815644613947628,0.01404021138740758,-0.017460717677149237,0.06494517555033008,-0.10126669503585276,0.0020838455955784416,0.006757926781782457,-0.02112188594576556,0.0707009275436888,0.0595529017214755,9.585128779247853e-05,0.00047394572147102217,0.032152809171252475,0.040256218906763216,0.029707523852000848,0.001985469105537342,0.014486056549799889,-0.019244549617887716,0.07217877743458347,0.02302280039231119,0.00010563656397222584,0.0002056227858245824,0.013463377059412194,0.031085966270387864,-0.04338576249484907,0.00017556988052443886,0.01369240174120076,0.01557193046344327,0.07594856999622349,-0.02581928352589476,5.004224439975423e-05,0.015724341585439436,-0.01713926577535096,0.05782847191133754,0.011458864211399505,0.0028091087651871873,0.00012709415403365428,0.02021745811216306,0.10121307898225793,0.021431853915101096,9.936432486356993e-05,0.0021870801257162223,-0.033129374252177636,0.17954821829844594,0.0805349401410584,0.0001338113393032867,0.006559770843513521,0.0036843121929004473,0.019045728836965325,-0.001497234809115667,9.149714128733836e-05,0.002615629131834724,0.017907389637337803,0.08234333645832434,-0.008641695792285421,5.46576830674455e-05,0.0008198010855825851,0.022349501397271827,0.0473835549269637,-0.005911897586717132,0.00022996915661505112,0.007923178857375241,-0.0053837505580760165,0.024987610240881166,-0.003580620691124185,5.357653004337861e-05,0.002887534840170434,0.04335909514372776,0.5389724910538654,-0.035289564787608245,2.0756058989961454e-05,0.022951417133153358,0.010574757554530547,0.03429427342768239,0.005089386485206858,0.00010778486387221707,0.005641108785487705,-0.009947442452739869,0.040813977227792966,0.022515407705999742,0.00038417622827803836,0.012205470130762747,0.0023953913249651878,0.011175335070832326,0.0047926853476258965,0.0001227687163384465,0.014246027844059475,0.0012504442901116624 +2022-11-04,0.028056748964963203,0.2092623084585108,0.025826269694182266,0.00014178585890383587,0.008164762306789829,-0.04547748653476032,0.172098461920264,0.03805086854823312,6.340594674005925e-05,0.004325807135611866,0.026863392092205483,0.09133660123363659,0.03904158930448189,0.00013605459336002863,0.0018492937411717695,-0.010144282166411151,0.011177864861899332,0.010302070519629405,0.00030628823997871934,0.007069308134933542,-0.008309706494461099,0.01868896106180213,-0.005359336197220389,0.00023264745046083112,0.01908483813882685,-0.009747918755501848,0.021685704620086656,0.0010384262660280297,9.814882454007116e-05,0.013888680159534351,-0.057920193106094385,0.19529234965909958,0.012055538734747913,8.702311516580443e-05,0.0193257737066368,0.02025076225147038,0.18695284757965644,-0.03502509757965249,3.714564509213818e-05,0.002607958682212751,-0.007245910354464066,0.006966527338657947,-0.14423190935864233,0.0008020868524349917,0.003879374611343885,0.0014546769672695995,0.003170505095104643,-0.015324897360855568,0.00016043532315863958,0.007638564368814625,-0.006094255356702092,0.003733262044686956,0.002649109298223642,0.0007979148191987885,0.0021397312192494907,0.018888743181442753,0.24694619320426558,-0.004044429794165236,2.279415596578571e-05,0.006574135166264275,-0.06287839246344668,0.23473962220321618,0.10767787605985157,7.957306135454825e-05,0.0008009196640400222,-0.044632624165008045,0.23187192730078135,0.26563978786982484,5.418337690039439e-05,0.005748757178062521,-0.020444303429455447,0.017769098666062175,-0.025316473474856313,0.0022440363715869726,0.006510644799025711,0.03150592462405539,0.19467850415877086,-0.08253011814883315,0.0001331761135450506,0.019181921387853,-0.09757759749679729,0.47837684218883475,0.2659854309061801,0.0003158553265572494,0.013120355501363753,0.006420830460382859,0.0416937772581298,-0.0018124428012344907,4.337913789868374e-05,0.020440509500018557,-0.04052346811697872,0.2222139621551861,-0.0332025496449964,0.0003005536945227705,0.010717604643707818,-0.03910665742880226,0.6352988001391118,0.01520545296480284,2.5544822726982246e-05,0.0022120667041073444,-0.006247205785744816,0.07252258995526796,-0.007590188391197663,2.878022704393644e-05,0.0014216883383835516,0.008460674978333348,0.021262583155733823,-0.0015119670398872232,0.000128177483957358,0.024337239962100944,-0.005203839758484866,0.038775524319791456,-0.043491135659506436,3.099978001610001e-05,0.0016257549224390185,-0.02412738260712389,0.07159221742536444,-0.0016091913726294569,7.471740490265562e-05,0.008520789148548091,0.012469784721144841,0.047353249480009664,0.016869029699328623,0.00012040867154669089,0.004856423929950135,0.07788948067433239,0.06811346508722457,0.07136778335499129,0.0006536140741310548,0.0034300939835756328,0.007307197081367978,0.026425069608562005,0.013908592384076565,0.00011639134580977906,0.022805887725274643,0.04239566181027024,0.16056353850066488,0.06403752473335923,0.0016947032536509068,0.024994036801473808,-0.04004333588651771,0.38679961436365773,0.055355110015139264,2.6621125505116748e-05,0.008990151833436846,0.03321238320664896,0.10001978750157509,-0.0014372615378999993,0.0010856388653044887,0.017266196394739333,-0.010298151707037606,0.07642889414328732,0.0032326099560529287,8.972786884272145e-05,0.014945109550479457,-0.014139915733316808,0.02176347325723501,-0.043946940629360734,0.00015334301622009353,0.01245085671557138,0.013711811050756938,0.016893317741179262,-0.054143305327574234,0.0004658904231624417,0.007201577720234425,0.00430265828423075,0.017084450535151043,0.01580928127076001,0.001952028622288051,0.01544017948305293,-0.018126871441367504,0.06999229607096558,0.03508112835131756,8.30927216930345e-05,0.006299010700428279,0.06447402807860315,0.08223046147761072,0.07861601762034226,0.0019490782192334636,0.0032146281952366348,-0.015391235728577654,0.049622685967034924,-0.049549071797727474,0.000122887938360758,0.005388424508174133,-0.04363882589825607,0.1101283385772816,0.05823269480809507,0.00016063284306919905,0.002370603298348376,0.010861774555528761,0.047270757521850774,0.00535837372254119,5.60818262370729e-05,0.004155547731716006,0.007910506057032985,0.02625389204190116,-0.004851418520387819,0.0028558055304807907,0.00258158411212771,0.01565777225339641,0.08125796388059388,-0.005258947165707174,9.585275651374458e-05,0.008034228054388599,0.009763016497076319,0.045988313756586435,0.013365823571934344,0.00015395624917767411,0.026398447053048762,0.018041996411613727,0.10597222342297484,0.0021383534446219868,8.052694890962509e-05,0.005216185376306478,-0.01893998249143053,0.08283655487664228,-0.02416525149010928,5.7465202249434336e-05,0.007433799611097072,0.022729407646193755,0.04328207093792097,-0.025997481019868495,0.0002560409790929305,0.005914312602516953,0.023971480319583176,0.08924276897804513,0.08977195556001617,6.679380633212816e-05,0.002089398727979824,-0.0723241037792459,0.7747638543067003,0.2473057023999106,2.4084908189086328e-05,0.00705226317541318,0.021527348438906732,0.0659879768912103,0.015902350768185754,0.00011403408737430663,0.004438348397889581,-0.02069801104165892,0.08800008063560702,0.08455839452036452,0.0003707434739945895,0.003023991804347313,0.07591312870848889,0.32536315243523306,0.2167797495095468,0.00013363503128250797,0.005629450781577309,-0.003301984468695964 +2022-11-07,-0.0036558632714650493,0.02604004241410506,-0.05411790777868718,0.00014846867799742214,0.0006250525449325417,-0.00958041921397315,0.02796928506073515,-0.047215277932182664,8.218899584031095e-05,0.003468504435105247,-0.03769660634554646,0.1286644176728292,0.04649280134893842,0.00013553173568532908,0.00839220150058106,-0.0022666486072246477,0.0025624842044402107,-0.019561227217969112,0.00029853197701839055,0.01854229644565065,0.03532612957789646,0.08352525565851078,0.03138213621692142,0.00022129724958783582,0.011768052346945364,0.008306308760531659,0.021368913321840297,0.0038710036464252944,8.487355101506312e-05,0.009672264803124537,0.024483765456253612,0.08743867347999186,0.01719794426754792,8.216077086435085e-05,0.016753412731400838,0.00566920484343007,0.05290381919949608,-0.0005919268144986239,3.674800260538771e-05,0.007540959678335879,0.005535744322418833,0.00523982237611424,-0.015678603640536196,0.0008147122469357434,0.0052833463616279745,-0.014074268517151675,0.02691151581733874,3.431539841001877e-05,0.00018287298690378525,0.008247973518541483,0.011869134672183711,0.009278570539495474,0.009845333250892025,0.0006252624413951172,0.0028381358931543962,-0.007257687293339242,0.10354254577118772,-0.08146497491804575,2.0888257033339742e-05,0.003064363821716263,0.010654068810261201,0.03510608385552457,0.017275595175864203,9.015382332122501e-05,0.01985815804164493,-0.003503298206867691,0.018337621690742614,0.00012758594591748832,5.377691891790552e-05,0.005029492107109108,0.015855945666770465,0.013391724858460526,0.029068212069784105,0.002309290684458029,0.002233267465985186,0.07470818336457813,0.4773935288786309,0.05348038488270563,0.00012877861678783922,0.013381296313044421,0.0012098615156734265,0.007353480642390749,-0.0018559015595705258,0.0002547715568435701,0.009222640762958607,-0.03869515904051749,0.24212749762422564,-0.1479097337890842,4.501668164860459e-05,0.02035543721491014,-0.016806401972807413,0.10519855501111547,-0.05655480634109832,0.00026330055813031383,0.014032472404085585,0.04518822275461035,0.5591994901697974,0.03115965810462876,3.353425986136427e-05,0.04604808310725991,0.0049173159297159885,0.05707483798756665,-0.012626388659396214,2.8784927080323728e-05,0.0020915718525421783,0.018730290125580484,0.043164458114635394,0.0037010004724741265,0.00013977869037917434,0.005221554692603813,-0.0017051811694704885,0.011729091157919369,0.007972296985456654,3.358138025951956e-05,0.011138508522233097,-0.030060986059726173,0.08403161045625922,0.04315117358446397,7.931182032077595e-05,0.011485847505963334,-0.0034797700966977363,0.013173530001457798,-0.01565455652385607,0.00012078054430695375,0.004168826926510276,0.036106319191705906,0.030845751021382005,0.005825940941123608,0.0006690574789713145,0.010118847728032596,0.02872542707940719,0.09056343800088389,0.10786249039154602,0.00013350563673731225,0.004277761715901406,0.008499986141829256,0.027997541235808762,-0.03175271641035693,0.0019485766739270355,0.021063352855325568,-0.020195152096785636,0.2125813537800687,0.008688726552687459,2.442891369473623e-05,0.023363921006809583,-0.008896817645522425,0.025921646532048228,6.639477350316015e-05,0.0011221305200348301,0.013691058770196394,-0.018575236806204987,0.15966400560334879,0.005400029450532082,7.747346527936797e-05,0.006818997351334029,0.012862327834581602,0.01837350083384462,-0.01588873936335995,0.00016522396785724185,0.004008939479773205,0.053416817579105005,0.07092724374527767,-0.01760723784180393,0.00043228368095282754,0.010175740240307938,-0.007035641904063897,0.03177839261664189,-0.07198086373093922,0.0017160191958539653,0.006429727925922846,-0.020580356466993723,0.07354302422674243,0.02888359897578885,8.978458473024094e-05,0.006508669272149882,-0.005389381154583134,0.007597967734054279,-0.004024223687786648,0.001763269300553015,0.0023658607155667643,0.011499344067767854,0.03707699593619148,-0.0454341901877771,0.00012288095153670166,0.004177557489710642,-0.061575879166673356,0.13514986750248306,0.0996135356811542,0.00018469509977792474,0.003512185008857148,0.04913871628272511,0.19853064231070286,0.0807678533366564,6.041018754219937e-05,0.012463926882659754,0.013073842708061096,0.045393130699775394,4.2721987087551195e-05,0.002729802185624363,0.018052275139757788,0.004947737883410448,0.02171342544879159,-0.024303702950382085,0.00011334931833638566,0.010789415958192662,0.01496363814280243,0.08129369672042652,-0.019864881929456804,0.0001334876565356048,0.015330115004610262,-0.0020319125794705847,0.01130498067662384,0.0017221870079643087,8.501271641136914e-05,0.0029010866389036828,-0.04416623661973465,0.19236056192457415,0.04856132524718312,5.77061038088343e-05,0.016420466798189686,-0.03470739035281152,0.06534001216903365,0.023011810458623543,0.00025898352837135715,0.036985463498077166,-0.007484976741026934,0.02889624770859871,0.0033480793500941007,6.441149502180254e-05,0.00632846816793656,0.03285448569332086,0.30722162902437417,0.034309779429500836,2.7591427546364585e-05,0.0029646212080150715,0.02794206297002892,0.08758594582093612,0.02920623753689929,0.0001115149277653564,0.0009623641360214776,0.0028125788990140755,0.010855488603749954,-0.009313066091881015,0.0004083977204901427,0.013059570178563528,-0.04408530353487417,0.22705042910814408,0.02305787625615993,0.00011120986263111945,0.00964408675127186,0.0020050364892288605 +2022-11-08,-0.049161652334767096,0.4433161482411086,0.05803916440480512,0.0001172733966179678,0.0008496248601505358,-0.005021041826684657,0.018988998902641715,-0.0016613483504071252,6.34457150514949e-05,0.013540605149318563,-0.0321532416792125,0.09118391406501627,-0.025168545912318784,0.0001631186952872216,0.0005343564166534469,-0.0063136099886719,0.007118516730811197,-0.06307994701528195,0.00029933403285522094,0.011466322374560588,-0.026787731622107472,0.06344210977911072,-0.1709412514787621,0.0002209307131508308,0.0002578482991780905,-0.009472541170396793,0.02629708011529634,-0.034030171327008474,7.865126496573778e-05,0.005837700230851717,-0.016276419620789098,0.05881117161793998,-0.05357282846207307,8.120614638639531e-05,0.024176344717940643,-0.013721663547205262,0.10915278610456923,0.018203624992694057,4.310925874508952e-05,0.010495950656215218,-0.014084495532206986,0.00983672557943822,0.029479577192923847,0.001104168942070072,0.002918959057194903,0.04733105775676694,0.11674337040615772,0.09917800213164482,0.00014176723507255466,0.002988611769326422,0.0003482161986737791,0.0002588011014785733,-0.0002570525699486875,0.0006576687527045923,0.003952176769225399,-0.009945367995654635,0.1377131777825659,0.028747777312026088,2.1521282430250962e-05,0.005556919054286449,0.024076071105488074,0.05696381419492538,0.04182678835803454,0.00012555603544360655,0.003742541216021596,-0.01351802422797763,0.06150003198416595,0.01183052527726119,6.18727896126611e-05,0.011234702118532267,-0.02079250283652908,0.01788380322277893,-0.0043956283609510784,0.002267617810158244,0.004587641096307476,0.010462283415532124,0.06838398611000464,-0.015264064208592238,0.00012589954949150444,0.012436730012570894,0.006095783308648654,0.0371375455977025,1.603076750625169e-05,0.0002541701553071916,0.0023361067959825526,-0.004285162528606329,0.02457101625535431,-0.056272956189061404,4.9125290926929745e-05,0.0249014371032482,0.0025607423767735815,0.014989953672237195,-0.056544706702505346,0.00028154797322470535,0.019549424678247964,-0.02418606932548752,0.281752023438293,-0.03874351680257374,3.5622835136862414e-05,0.00621577080344138,0.004739175110147905,0.04562733163417189,-0.024641028246451466,3.470239060357031e-05,0.0018577191566279496,-0.045567687695726236,0.14667231217206828,0.00513436307582776,0.00010007638486085242,0.032530910512989036,0.040177122054048595,0.33328113575335583,0.008835059844986191,2.7845849264198403e-05,0.023376332349967915,-0.0020104634471648833,0.005956553293283298,-0.004862206617303311,7.483048017119278e-05,0.0030035233872009242,0.010068733593875374,0.03851404345345981,0.02616123226960707,0.00011953754428143771,0.0027108264222445028,0.0015849628114120084,0.0018619091221885446,-1.2817851549241033e-05,0.00048655972611117424,0.0087222381154315,0.0059594014541875856,0.020125270865547152,-0.031855749600433296,0.00012463698002519,0.005726597065617024,-0.03991181248674486,0.130050589754073,0.02212024556672386,0.0019697372557031367,0.025818355148617793,-0.04118477196754227,0.4560788354405426,0.03686361502449892,2.322089431883875e-05,0.02583521004617352,0.024799528220608533,0.07346714315954715,-0.011695410652805624,0.0011036250171227962,0.02444300018694456,-0.01915449574651369,0.13099390615669168,0.018455703540244957,9.73745074576081e-05,0.008036649365582899,-0.01553736453438462,0.023992385409582324,0.008023180542055013,0.00015284432285456496,0.005789609716933259,-0.06701993127383277,0.10075947365959756,0.286807077072659,0.0003817877607313151,0.015699584523277615,0.0017771700420997375,0.00700403883700211,-0.06504809377596907,0.001966666767993418,0.0093124181425329,0.054214683451797606,0.1860525408705961,0.16424149049779693,9.34914060481977e-05,0.011958524512228341,0.012789181301165705,0.014986735482243036,-0.1527315495387055,0.0021213527619808317,0.012789094301564658,0.0029292274080277704,0.009308910974959023,-0.06917293208906532,0.00012467237952233716,0.021172160493929587,0.007683831350318677,0.0196617683879726,0.004482981071492037,0.00015842204836412103,0.019931155771104145,-0.006376124380431505,0.021447235835748285,0.0009941482743728036,7.256035152326912e-05,0.00784934035823081,0.013812453245478406,0.0424061701086177,-0.011637457518668565,0.003087164899681388,0.019647821826612684,-0.008544172513214831,0.04642660495584344,-0.0023865248269284854,9.154690220611839e-05,0.016705920821957033,0.03438547798418309,0.20940752794800116,0.009839745648253167,0.00011908129808030781,0.005599153786171528,0.010658527359419911,0.06336154288434585,-0.07053386074320143,7.956465043697541e-05,0.0002434856319682086,0.038193771673015325,0.17550532765825627,-0.057177954570925726,5.469525329603657e-05,0.008503543315714027,-0.042907771455901335,0.08108613296813956,0.017434171171539784,0.00025799944016097935,0.0032109893484462437,0.0053891621482173736,0.022603430112865208,-0.04720897094977607,5.928724606254617e-05,0.008807368103621864,-0.020076275086404142,0.2503382271510662,0.013491423690720613,2.0691274911470764e-05,0.010952472330155465,0.031129636613127242,0.08995386275718582,0.033032434895492346,0.00012096596608169056,0.0173373324516946,-0.0004208700228289337,0.0019485428321921073,-0.03431346598477792,0.0003404599316876538,0.010860453914924295,0.04097707087279001,0.19105859333542868,0.05172142219452394,0.0001228417885196186,0.01868572545757012,-0.0026391351480552065 +2022-11-09,0.014591578236872611,0.10684489793896411,-0.07186797425200192,0.00014442256815164838,0.04295989463157229,-0.04187360815542988,0.16636513717745235,0.019223316982922397,6.0393276071196315e-05,0.011643694562722032,-0.0026373292900759215,0.00890463245760067,-0.023079317867863967,0.00013700788560853602,0.003827165839513789,0.019835518651185585,0.023024044765771797,-0.020686087487428867,0.0002907567434674499,0.015997703432819036,-0.04131390270054832,0.08999861315631703,0.0950846928957179,0.00024019180039174204,0.006962169915807192,0.00028891645535432793,0.0007666309253123307,-0.05358510080355026,8.22872755313418e-05,0.005071320571089263,0.01592986733016783,0.051403487473750065,-0.007150201848981635,9.09304686278875e-05,0.010309530520353043,-0.013040479723258386,0.12169882210636176,0.018849534268455502,3.674563931919167e-05,0.0017900646832917874,-0.009941809413289666,0.008792132032931608,0.023844115726159524,0.0008719990637761952,0.006980221022469392,-0.0279994967908173,0.06812175598897519,-0.038562872274666024,0.00014372300146452846,0.002358407289857638,0.0010266825525317965,0.0006662447374582626,-0.008808342506338634,0.0007532285072445587,0.002226007631403924,6.315374734753043e-05,0.0007096950253570905,0.001962748583640173,2.6518573204215327e-05,0.0033009736212841175,-0.0068850894604444495,0.02134178578933194,0.0002460547565628547,9.583626261356372e-05,0.0006638576609165989,-0.0030412438695245243,0.0168176605222839,-0.006259037016744235,5.09034811039713e-05,0.006350220444724019,-0.007542228825833408,0.006872252041563502,-0.007270938355554517,0.0021405412331780777,0.01940519297552259,0.06893209912518815,0.4974207588984343,0.03965170645405947,0.00011403802989088445,0.02410935909366924,-0.02674390301678103,0.15153413495635426,-0.0055725782259741855,0.0002732892485490267,0.02197613721695756,-0.06148259731680397,0.4635118583450202,0.1122015531264109,3.73639095770146e-05,0.0026483794873990935,0.02244828960005252,0.11479444388145374,-0.024752768716027846,0.00032229175506195393,0.007242258530548667,-0.009809323792565501,0.10041140774575982,-0.044926012687114894,4.0540233491160944e-05,0.009964754050778749,0.01121252578739383,0.11208540505072763,0.005399568479717665,3.3422281931582714e-05,0.0011847196302558305,-0.03716240512220639,0.11106960419253167,-0.029847704076901026,0.00010777830394378333,0.0044573958646012355,-0.04171109793924156,0.2717758315255718,0.10574611983001629,3.5451381564954874e-05,0.008131915037251664,-0.0006261432275111745,0.0017784528577588358,-0.00466462590300278,7.805643498736038e-05,0.009357633688918322,0.001745465073968754,0.006751202478210952,-0.0019207874590395923,0.0001182166438096693,0.0018348515140786026,0.031780483462213856,0.03190595490860625,0.010421898099594921,0.0005693303212135954,0.04425478296575402,-0.008938816625538882,0.03218722364227123,-0.03388064144506806,0.00011689138907254584,0.002515734498726735,0.02401134046819773,0.06598354942752663,-0.13832530423732728,0.0023356077458240483,0.021691116537880396,-0.007083554793201352,0.06956427370802996,-0.03876593993555236,2.6184675593745365e-05,0.007188123954505632,0.03098746917795377,0.0924707569624301,-0.08726112062134245,0.0010956023744519783,0.008155349583238814,-0.016846486644572126,0.11605214414883525,-0.07241762193489662,9.666779590233495e-05,0.00959740914833955,0.01658129763933338,0.02491777408248461,-0.19569856773272842,0.00015705604521272658,0.01209858414410368,0.019097919719453356,0.028013797054047915,-1.3144287330094769e-05,0.00039130734433525554,0.0012275408362346113,-0.052632317479632484,0.2116502535341912,0.07031873271149364,0.0019274540846506304,0.019607351257758823,0.05850706551879357,0.27792838320676355,0.13258921720423408,6.754073548542234e-05,0.0051620817935191885,-0.01191205024593521,0.019676454342691496,-0.028970552765930715,0.0015049319632801377,0.0012307002667036242,-0.05073707706073862,0.17934499377144522,0.14884864031946318,0.00011208621975723109,0.007920265929015319,0.008189581707088785,0.020025755471983996,-0.013434531808375092,0.0001657804016363603,0.004418385075700749,0.011938661916502422,0.04898421151183008,-0.023086062155847964,5.9485820625629296e-05,0.0004830442574486251,0.05770600788106467,0.17264601955938474,0.018576129780229503,0.0031679806390239075,0.014212637478065997,0.010560230367395382,0.056110534025042035,-0.00838246713543127,9.362019921034558e-05,0.016134941673418526,-0.014840167235864607,0.08800861769791554,0.019342158354255456,0.0001222853355713211,0.008388976224216655,-0.0036021061061028807,0.018130044788831776,-0.08677108007710554,9.397369929602045e-05,0.00488977256506082,0.012784284978602782,0.05988064698766137,-0.015355347935124252,5.365835493586876e-05,0.017540917955166775,0.05339314814880235,0.08678600262484394,-0.05491361448085594,0.00029996130699658143,0.003922278396896536,0.006378385834584611,0.028884793957218973,0.015702448856384388,5.491056198168954e-05,0.005695324148954078,0.04008347218749275,0.4480064123300655,0.04492716885875506,2.308407040085264e-05,0.015496106359469165,-0.0103480499755593,0.03144342602580845,-0.08819002900814189,0.00011503701976340707,0.004661225720604266,-0.0009715931148261568,0.0047910197258262364,-0.10300167960095546,0.0003196571628266984,0.0023179918510604766,-0.043342937049524,0.22255511105738676,-0.010109862114318234,0.00011154562998465887,0.006689249695166705,-0.0005661602530632692 +2022-11-10,0.013157086326657689,0.09541058172527485,0.010487317278604757,0.00014583096993618484,0.013230224645054469,-0.017442547919831908,0.05797938657767756,0.0011873008292238388,7.218497911642745e-05,0.02702432908721785,0.06228678650699043,0.1817844189325209,0.15979141822481807,0.00015850263028683722,0.026210462364390178,-0.002689856966516888,0.0029624816643518954,-0.022399318538702234,0.00030643712011715234,0.005281732668678326,-0.020959009649612222,0.048019613950522705,0.0021269541436765523,0.000228375686392243,0.012235253528550604,-0.015777720460443963,0.04287598857650375,0.011808205944575363,8.03483292454228e-05,0.0040555622129680715,0.016082290402930223,0.06441961015814351,0.007867165157429641,7.325202971875366e-05,0.03403306588926746,-0.006931808504011305,0.05412254289531803,-0.0017786268026139269,4.392046987659648e-05,0.004178688533480635,0.0019220750162313278,0.0018565773723387812,-0.003628512900139963,0.0007983660622323418,0.011036978585379815,0.01995444226653753,0.051267649320668206,-0.02910625599517255,0.00013609998426560374,0.0015673167605850138,0.012709888345161237,0.011144576480245973,-0.04412073649767468,0.0005574456421077922,0.0077327225823761656,-0.0076752824542689725,0.10795566543521255,0.012975389774141269,2.1187109805562367e-05,0.005016918836612371,0.0414096629441298,0.12141385588254444,0.04611032852677336,0.0001013175038759009,0.00039629671207385233,-0.004949179274980047,0.02650911197319428,-0.005518592609963554,5.255327971045901e-05,0.0010531075979689898,-0.010771235556345399,0.010349956983445166,-0.010171803432508557,0.002029784591560653,0.003516304569363096,-0.06715804791706867,0.4782355562523571,-0.00699226087631516,0.00011556020657543754,0.004609507406287361,-0.019017765327603214,0.10341318901909098,0.0027906240475731483,0.00028476839337999613,0.007499242591210041,-0.012691141117398113,0.07509361948113288,-0.046438934483221436,4.760566011099931e-05,0.00700590281652049,-0.0006498514416606409,0.003308538685320371,-0.09947626729045286,0.0003237163814625317,0.014405055474228951,0.03925587232679395,0.526738836759759,-0.0012874971968132784,3.09271231333375e-05,0.008627311289803227,0.007174741270074305,0.08227257318031408,0.0027465170205550698,2.9136197540749726e-05,0.006723366235995742,0.039986763703738666,0.11152198625327468,0.0449407737665492,0.00011549907771468953,0.023244088410348064,0.040125318854005526,0.2968817750532619,-0.11554518340147774,3.121960001777312e-05,0.01581270329019939,0.007138803147786667,0.021844809738417913,0.001794061726395661,7.245269130659947e-05,0.0021742912774058024,-0.0022637784820185593,0.010354532956021964,-0.011123013130946192,9.996592947821767e-05,0.0014015748552212465,-0.005882798560132322,0.006743935451591994,0.0013093324109177305,0.0004985929506835409,0.01387980085975141,-0.03660175472923094,0.15289777170408753,0.13468882753776215,0.00010075967531691411,0.0021007808139376677,-0.023593312284991296,0.07873151979024626,0.010916480585859272,0.0019233550226446488,0.00021333971115260978,0.0335033060768815,0.3378883120052435,0.04520625992912132,2.5497446606410884e-05,0.02725883567422139,-0.0740491317624329,0.24607816381702124,0.10496287039856064,0.0009838256994005,0.0037317400055967,-0.020456591373576288,0.15061672004550059,-0.057568672226188826,9.044524249965003e-05,0.0136912253487691,-0.0056473094669116305,0.007908708817174844,-0.04485673808925626,0.00016853161695615977,6.995017737491602e-05,-0.00046938093954853146,0.0006721840259717943,0.006873468799521213,0.000400812425219473,0.008490760437809447,-0.0051849202526457455,0.02043717966115921,0.002839690469734329,0.0019663981611863298,0.020294814339703513,-0.013666324206943577,0.047795999512523536,0.004093364178609527,9.173826909867606e-05,0.012617603558121538,0.025489552110454665,0.030857743773525494,0.017559412823242648,0.002053407895443265,0.021263259319467893,0.003250162563226824,0.010002408446560333,-0.013542817655637151,0.00012874089832226279,0.015263372779433912,-0.004323189037197557,0.010758360718665061,-0.004239076777413836,0.00016289903081476086,0.019439941443146154,-0.03904871489121532,0.17945795728839437,-0.003313371425429536,5.31077559282981e-05,0.011840523839242955,-0.02578668380023728,0.08281059539677216,0.02020981080287323,0.002951397096501399,0.009446032118590231,0.01233019278581034,0.06778560463515788,-0.024842157782050223,9.048424425815347e-05,0.012724353684007376,0.014369069071138022,0.07531958903190514,0.004377392633608973,0.00013835073640113845,0.018214257668808007,-0.01050014230714375,0.06185676953425132,0.0005357679736402428,8.028911087069478e-05,0.0030022927572591817,-0.022253056519437146,0.11586995428872035,0.020697238956713177,4.826876978947711e-05,0.01405991356726303,0.016897483536916474,0.02870497609159497,-0.007865368231197023,0.00028700815480441473,0.007288447365064598,-0.02063442813614611,0.08005707759527411,0.05103852551394655,6.409248060420626e-05,0.004541102958628715,-0.008495244053201595,0.07938798419918333,0.0020535853320427185,2.7609107693061137e-05,0.0031428736537459537,-0.008994112384900185,0.030090489139834645,0.008294999856985863,0.0001044811699251724,0.0036269711386508908,-0.02208155981273727,0.09208638772928693,0.08188052149653066,0.00037797430905746603,0.008275559606892701,0.013388568407572965,0.06794585991195905,0.003805244640778029,0.000112860751701523,0.021110808698388224,-0.0027482396171840005 +2022-11-11,0.007458889512983309,0.05683500948505624,0.004450065806644397,0.0001387857322674229,0.004940465852940455,-0.011515408730356775,0.040429777475322295,-0.02199795555484482,6.834213360309009e-05,0.005734996570639773,-0.020411987441224286,0.07976622134111064,0.0076065238840303025,0.00011837595008440432,0.02977413170467274,0.020724815395629113,0.023785222361745857,-0.0021010130979183536,0.00029407039928328055,0.0023808391650785034,0.00963010205063649,0.024365942863745882,-3.8591554602554443e-05,0.00020679757427637997,0.027232746527352622,0.015761613767428066,0.04759284232328563,0.026884187099826706,7.23112349406292e-05,0.016808090370869874,0.023263491021462464,0.08379738105961404,0.016195738269558,8.145810391761143e-05,0.010028845369382013,0.0024030479772946967,0.020421139227606275,-0.04991619573330272,4.0353488971188895e-05,0.0041611278711950845,-0.015441452028207686,0.014171250496215234,-0.0013361990467251866,0.000840281396099018,0.008463006972378031,0.0358488561361873,0.0860799475604287,0.05408326640980253,0.0001456247508765552,0.011704277366067488,-0.025898424513947943,0.018908376934595836,0.019341273400111342,0.0006694890100725417,0.010953599955243717,-0.0016158998648497969,0.025976795125553363,0.0003662102856568414,1.8537521377982765e-05,0.009042727534193006,-0.022297317085892943,0.06288831442800626,-0.004516906369583824,0.00010532553968684163,0.0022839636622236127,-0.004511785728580931,0.024474052578783122,-0.004080442216632368,5.189247631676726e-05,0.005123967555592649,0.0038043695520903367,0.0024531669401934237,-0.09335623865512863,0.0030246739530292097,0.012388914282593873,-0.017092170811446386,0.09263869478545785,-0.014087534384949283,0.00015182975966036304,0.0024636546307936734,-0.024326196172662653,0.1358392881786829,-0.06400061348582177,0.00027730457806694395,0.013788757062269789,0.01816135311806585,0.10385372328867082,-0.033131672558959574,4.9259169731483206e-05,0.008754454317519885,0.02228285257687796,0.12140836320187558,-0.16203004027433204,0.0003024885850059673,0.0008597476626911239,0.0031788769616755363,0.04267472424401463,-0.08383352602622775,3.09124357482779e-05,0.015944183831063552,0.005859724135617792,0.08077334582714552,-0.08486881264198196,2.423766658842466e-05,0.0032637014769169516,-0.029896423667166855,0.07532644452774495,-0.0011451428638754924,0.00012784817304049384,0.028642262767386874,-0.024850169409830772,0.14576251654780756,0.042524943044263554,3.938001454431769e-05,0.006485105101482168,-0.009792151082084201,0.02629398328449651,-0.016957456756976727,8.256559317268714e-05,0.005261748550267048,-0.005966417176079735,0.01919113683597624,-0.013304075244969895,0.0001421547938347924,0.004263570937293209,0.038935685291063046,0.036819810579350194,-0.04143005375209217,0.0006044241861494956,0.0168954842682156,-0.024967392236946283,0.07588646048012519,0.046549859939721654,0.0001384825003715523,0.007567551243766735,-0.03545831778285935,0.12715738905784987,-0.07089860788042034,0.0017897637215643697,0.008488105089651967,-0.0051136682983592575,0.04362733579077602,-0.0021100357147423,3.0140888925399248e-05,0.01900982514700019,0.08277404248160851,0.21669116098583105,0.0879669987043145,0.0012488901459356122,0.031101545961139565,0.006577208662149825,0.051203720064498415,0.009657063836382825,8.553931118697175e-05,0.012570809596035232,0.016510239452301706,0.027667440306683486,0.036706145027786984,0.0001408412194428621,0.00042590614198644017,-0.009856352931397519,0.014609305358221495,0.018511242469543342,0.0003872492570945805,0.02676397458716029,0.005513064136437449,0.018522951197839893,0.004325702444828831,0.0023069235555252285,0.01676288437978865,0.02432443812199921,0.08663879036244673,0.010536267691566674,9.007842985653589e-05,0.00560300981187851,0.013092177095154997,0.0175125365844819,-0.026466146576384013,0.0018584034692750247,0.020882796269893054,-0.07084504057299439,0.2514363149726331,0.19804939862290907,0.00011163425714815015,0.006240571705301691,-0.04329093400161095,0.10695723816923296,-0.002801293204160248,0.00016407679033403314,0.00651878961819253,0.020455962462032518,0.08767865599491248,-0.004492615729530413,5.694294954642519e-05,0.03221755184585564,0.05137034630978171,0.15988425474353793,0.017931051825472846,0.0030452633413940696,0.026994928586625104,-0.014341267072938497,0.07210134680261612,-0.010600274265214368,9.894291865674735e-05,0.013856007867716326,0.02570109886751254,0.12664365928450766,0.01399920081890629,0.00014717329932691325,0.004049016023385742,0.016957281637671556,0.09077774458327935,-0.04141844349653448,8.835386326004705e-05,0.00569047143571615,-0.03223008791333171,0.13418070919541605,0.036405379332466715,6.036967002841334e-05,0.020993380676353805,0.01736246869038674,0.03311411829128792,-0.011798147550612093,0.0002556393318629654,0.008426597954710659,-0.006144698101108122,0.02485273676253705,-0.010095861065762159,6.148096934127176e-05,0.0002757168261617248,0.013332297975278564,0.1382253145904679,-0.0017978671184752145,2.4885634023810368e-05,0.006145767044886103,0.012204161956092769,0.03548030225278192,0.0027292752505089037,0.0001202346423871503,0.008687005121354022,0.02610862880678167,0.08916683701294846,0.07606369942915578,0.00046153928549865137,0.015337208980812735,-0.004328812148077162,0.020411738591305115,-0.00014807432176573474,0.00012146762441167937,0.03480402700731938,0.001636822809624337 +2022-11-14,0.023028721647744926,0.1558616093635255,0.01615496088288372,0.00015624900415164562,0.010490383585165661,-0.011292220930567599,0.044215917640524544,-0.0008236866744623212,6.127894086506558e-05,0.0010399365461544433,0.014008210025826813,0.03569471626992633,-0.03842283005629022,0.00018154149804382015,0.022742939411958374,0.0038864386237353844,0.0038462461498086557,-0.03919981187325882,0.00034102215566372325,0.005440293093393813,0.031476516369250154,0.08580545734512257,-0.027403029291973656,0.00019194178226538544,0.0024556062368241618,0.00044369648556361437,0.0009846761362398754,-0.055971876109025535,9.838736187973793e-05,0.017288276886840485,0.05034886387094468,0.18508491105803251,0.03445950449031878,7.981941044300367e-05,0.011635695951753375,0.036877374444621816,0.3677244614410408,0.06498811015797475,3.439030970843572e-05,0.019618028096093816,-0.0043177027604658184,0.0033101491236717366,-0.002377819741919055,0.001005888790746205,0.012707501665673073,-0.003388160031726,0.009746807866863156,-0.015233624153013381,0.00012155236026455567,0.006768329924085435,0.013211111418323434,0.009974434776100457,0.008373407640879578,0.0006474040601929668,0.008250330952409174,0.02141956349291675,0.19923787150842875,0.05558757418292646,3.2037713409509526e-05,0.011925544319445536,-0.02329218738174772,0.0773468233680701,-0.01911185651071265,8.94579272288075e-05,0.007119075173943748,0.013716546891811662,0.06926798114033342,-0.0009105467003122233,5.574091337561993e-05,0.0037646444759882134,0.014604283621016139,0.01162376175997847,0.024070861306026068,0.0024505102927676846,0.0037887484464089564,-0.07679571112115664,0.5511669347557977,0.057674599589602304,0.00011465841086499633,0.0072824438978372884,0.02456235532606123,0.11469218751943003,-0.0018778865590447274,0.0003316228180625678,0.018606330257089375,0.0302868803864392,0.18091027108337596,-0.010650308044479287,4.715766293676585e-05,0.019414333017386112,0.0014088729275752673,0.007673360653913999,-0.01639707872420501,0.0003026028545489925,0.010814417315193722,-0.008325520208111755,0.10386149505307103,-0.08570138726718443,3.3264962693394097e-05,0.0056901009260128255,-0.004348589418628155,0.05158210678852519,-0.010317159003953783,2.816638022290761e-05,0.0031484019435719,-0.004632929807830955,0.010749678416171585,-0.0017326342998125691,0.00013882989780206184,0.007072603864391315,0.0022087963232830096,0.014438975162640928,0.0026794960557719426,3.533553551243209e-05,0.007467923600333026,-0.009065184859746141,0.02504564730102443,0.0010195511758747688,8.024570310146242e-05,0.0035105785068923825,0.004993169021350276,0.02150596420825061,0.007742820691471095,0.00010616123064325057,0.013125238784534874,-0.0029300007371769387,0.003214520431279919,-0.05978976055090901,0.0005209872566111454,0.006373851689033113,-0.02790109406087673,0.12599450461361555,0.0036087631016349427,9.320852576042301e-05,0.0020452382566672504,0.06459975922498479,0.23146954031432682,0.1580704517275986,0.0017912500883903513,0.007469789733854586,0.0064743855463814635,0.054503470824698606,-0.03147517107223036,3.054615799628157e-05,0.04303165594143324,-0.015551179796291158,0.04278737018925779,-0.005083698970504485,0.001188280629831292,0.017374651871805074,-0.01212502081596464,0.09301766652394439,-0.0328294747452474,8.680459110393248e-05,0.013564481828840024,0.021517587464182295,0.033126660966772775,0.020133292193053553,0.00015330675821749917,0.005588942193676247,-0.010554994724968151,0.015239289471432622,0.011783121270887065,0.0003975549962664291,0.008165727566556995,-0.05060812582752722,0.20404953140089682,0.02172465538701327,0.001922361206527993,0.004594881722799463,0.011034286023212617,0.048486289356942644,-0.00041999922094969333,7.301560006328959e-05,0.007750005201717461,6.849187331358798e-05,7.975011490294325e-05,-0.004466757213494835,0.002134936287867832,0.03655119720553191,-0.03984313446415157,0.11496152278423993,0.03538835590559929,0.00013731469789669156,0.012109016899629982,0.0026164552610124627,0.006077009784403318,-0.014004508521023787,0.0001745354916098122,0.019062034883064127,-0.0038955958308940185,0.01673608663369351,-0.005753816322485375,5.6811192060303414e-05,0.012894881590097279,-0.00030313449840662916,0.0008874959602575777,-0.00416852504546657,0.003237330488635498,0.045729374461336,-0.002073145390123789,0.0095656453724272,-0.019432565196880438,0.00010780925745578058,0.010649069111850437,0.005488252338738714,0.030979279403634083,-0.00261618875151412,0.00012847645475117626,0.011409662397192228,0.017244252030064643,0.08237115938453847,0.006965000534596801,9.901885077092e-05,0.0026616390788535573,0.012881637619694627,0.05706890251551935,0.003164644475268289,5.673080572842809e-05,0.02525311130254931,0.025157011616454786,0.04131226105500498,-0.019492275124247217,0.00029689950904703867,0.009293543106708529,-0.008019725056451404,0.03621917677747036,-0.0068449876856454366,5.505988250253516e-05,0.004357439409951145,0.010962478644042034,0.11984750729573207,-0.0019130196563590161,2.35999476825268e-05,0.004105870210896909,0.006977578880167748,0.022732480821851732,-0.0322924469030676,0.00010729188760513472,0.005437732091808463,-0.023511768290401244,0.07667921885977258,0.0637329415522735,0.0004833209094245109,0.0012833857392489643,0.009881935936955586,0.04773145196677995,-0.01631991208415353,0.00011857938251870487,0.006785211010177282,0.0024956746869261265 +2022-11-15,-0.0266934039673093,0.18471212657855693,-0.016015808338357196,0.00015282525690273188,0.0017216082024468459,0.004416458831171796,0.014115407612000277,0.0050599778417696655,7.507429960321174e-05,0.008035537359876822,0.007077951578116151,0.024495315525301892,0.0023994060432694538,0.00013366624679767128,0.006094154305133817,-0.001310009832651127,0.0013474547984709644,-0.052102802547144854,0.00032811660279916886,0.004219790849253969,-0.015906610016649485,0.03806883031858783,0.015717615294559627,0.00021862804573982264,0.003827788893375467,0.009882480764058734,0.02265890353407421,-0.007689517515521669,9.523000935635656e-05,0.0025355994178475182,-0.04375796645694639,0.18752700363991903,0.042609441202477435,6.846729526849099e-05,0.024943647862223698,0.014350312208280865,0.12425655385307612,0.0021572065140513306,3.960414661396089e-05,0.0035338023985693346,-0.019177075059234588,0.015738569766628838,0.044155757435224485,0.0009396408545369827,0.0049708183993145,0.0021374829879132547,0.004528135613372283,-0.024342031157193716,0.00016506124943966295,0.01047286885725389,0.002620411246636066,0.0017542591143496558,-0.033547495246062015,0.0007301297949336929,0.004326997529114576,-0.005419419200439697,0.07484193735657003,0.004723026822234364,2.1578960198063925e-05,0.006666117620356889,-0.008805067494053102,0.02233854085097681,-0.00793801942698639,0.00011709245873826096,0.011357768409855876,-0.0033582550111919893,0.019470051339435673,-0.0027833736377634206,4.8552141827786154e-05,0.012149054101623376,0.014604969207688754,0.012208025578077784,0.01335180412675111,0.002333340868051696,0.004468167274428754,-0.011848870839932754,0.07763013331310524,-0.0043192024628898075,0.00012560263231656117,0.004361717913198303,-0.01924457229417406,0.09911321028603719,-0.011312408148887511,0.00030066643775244085,0.020654191354587396,-0.025852531113430686,0.13377115156804573,0.01938682404196162,5.4437924602769044e-05,0.010192635703102923,0.0015952368451120425,0.008525043429568087,-0.0021096082805519612,0.0003084007171592618,0.010894229636117112,0.10030879112369212,1.4503645050597493,0.16900014652596898,2.8700671976804502e-05,0.04882124555879445,0.01486472001684073,0.1263571707646257,0.008071765294462442,3.930416274777807e-05,0.002625040586179116,0.04862001399950132,0.1382708814562139,0.052907730012543154,0.00011326796656811894,0.00920227244559354,0.03340312539851303,0.24535811350848108,0.0021744056345840406,3.144698809139536e-05,0.0011398400143464173,0.026944738601074558,0.07016777881241439,0.07055677302842174,8.513607575985349e-05,0.015329169662805474,0.009846569949074426,0.032999698583498605,0.006814033670487529,0.00013643430815137302,0.007381098771806546,-0.012933702379147973,0.01410651489930961,0.008421989663615534,0.0005240572005189469,0.014943993532733547,-0.03240646594631283,0.12037077769408304,0.013039276209246152,0.00011331740349144302,0.020257355758496656,0.012499330579962005,0.05245235048634639,0.008502594309656008,0.0015294700410911572,6.44550023950626e-05,0.060050245948313444,0.569532848555003,0.12376306501060802,2.7113039584607977e-05,0.0014249067833831926,-0.019035297633665772,0.06064520722662579,-0.00031465076200697914,0.0010262057816974811,0.010097439869819518,0.01377606145871636,0.11864952479303346,0.0234190530194945,7.73187299651847e-05,0.0022935000921219155,-0.028805528432725647,0.042542558376880694,0.07433000020347148,0.00015980767367334084,0.0004649840237520358,-0.05670208630113082,0.07670845379125237,0.11782457101335655,0.0004242869983750812,0.009536071451281512,0.029032761212616255,0.11345322503635856,0.08840798557750768,0.0019834526516826416,0.007392963765522639,0.0155850806078581,0.060593238402599954,-0.007140848273381572,8.252304780301569e-05,0.00537055593270842,0.020897431918076255,0.032994154535815036,0.00839424110863545,0.0015744653473669361,0.011625222769349406,-0.01958775625200885,0.057321250904076235,-0.032424816013030135,0.0001353895261537789,0.011702676728200781,0.02784690157938426,0.071488512004173,0.0044934679244533265,0.00015790686029232398,0.003230869411089515,0.01646639492979521,0.06935148180004731,0.006262181041601185,5.795043595632091e-05,0.02948830330952296,0.030317281088491015,0.078897380665448,-0.013927126221830616,0.0036420484853206514,0.005737472677518692,0.015423654900164627,0.07774241705222394,0.00806358980768299,9.86892460680104e-05,0.0021325665271110564,-0.0005657770193733086,0.0032556553217988216,-0.005577521986635398,0.00012602818104166555,0.019743762190119533,-0.015646030117089562,0.10181265979971635,-0.05372259586530819,7.268605147567454e-05,0.007557512896603023,0.036834228097250024,0.18857509673867334,0.030936055429667847,4.9092441228182934e-05,0.016888325990790282,-0.032527118239535996,0.05603017184448622,-0.009213092208788158,0.00028304339709928425,0.035042757160646545,0.011143525200112246,0.051371430558670196,0.03575854303909558,5.3940543190719836e-05,0.001714436875382806,0.04780020036661332,0.525492456878027,0.042741512223760623,2.3468996281745666e-05,0.013835430054332565,0.01688218396112252,0.04816170446983836,0.0036014940989509596,0.0001225281127935867,0.006773157274336773,0.001901376339238221,0.00705051709784982,0.0018288537984288802,0.0004250843205018204,0.001598614701610651,-0.019121090720328707,0.07854630500277136,-0.04007195119495351,0.00013943079330991858,0.003151936293663049,0.0037264205877072464 +2022-11-16,0.04682695187775167,0.40390020279654437,0.04389401710048837,0.00012260506212163273,0.003349244120968711,-0.01902240864034718,0.07820064113368844,-0.05419503870484838,5.8366778015616473e-05,0.003986983769436467,-0.01796400697619809,0.055802688574635266,-0.011800067039720813,0.00014891734879598435,0.002161202721388549,0.0030432126123430625,0.0028340451030700415,-0.18040286545097203,0.00036240434321841005,0.004501955619793943,0.044424408468103735,0.11502254836855261,-0.0037010232761464797,0.0002020860990692855,0.00321229209693716,-0.017301305151217063,0.047374000074284356,0.023495176917419692,7.974171090690868e-05,0.00033673335796764953,0.03193306982970363,0.10405722446633896,0.02276490443189157,9.004472751121998e-05,0.0025804746265239474,0.02428233478912549,0.2098174344792407,0.010319265866291772,3.968692812459944e-05,0.006237072836212659,0.010842484411227114,0.008435268046022518,0.00217728059359202,0.000991230611053861,0.00645900510783953,0.0151652647345153,0.040978166439074835,-0.042506192080233686,0.00012940747411369427,0.023855006910848107,-0.011836212615011424,0.008885658369700261,-0.012702324364576916,0.0006510997136433999,0.009474885068945935,0.0032972475757378768,0.044776094359599096,-0.0003528261914239668,2.1944623691738973e-05,0.005420469086440596,0.0731299620518747,0.2084407199561171,0.12603720294698134,0.000104223060341074,0.01864396864339583,-0.003927848231176249,0.021307273984497985,-0.05480750317861453,5.189059214053498e-05,0.0013767260019527429,-0.043637573578086036,0.030853335892123055,0.057456773811427386,0.002758553679410485,0.014422626651078971,0.0065549745844618095,0.042590885507645906,-0.009805318889654949,0.00012665036633606252,0.00034147123550430235,0.05004658737251319,0.24452475756333547,0.032599750416341076,0.00031692745534553834,0.008687881832441973,0.06679767752209902,0.418843132487894,0.036935857624148215,4.4923224327314526e-05,0.002171431010364183,0.015910844376456054,0.08107226587918047,0.01941271959620055,0.0003234504235359725,0.008392835795517268,0.013451079181095628,0.19152083551118357,-0.006073335397908708,2.914548809652376e-05,0.00565235102964186,-0.027566502178865894,0.2861677287183669,0.0798398284935971,3.218419981865515e-05,0.0014727636076975368,0.04512206505326363,0.1106365768717532,0.036927636288693735,0.00013137507985616412,0.025554520084944073,0.059275380688769364,0.41153213121483534,0.06395244528086796,3.327077969828782e-05,0.02933193832145809,-0.002419480142355402,0.00694041448558771,-0.011330766724573775,7.728835017409962e-05,0.014063083413906219,0.010500638869632324,0.0449597004540898,0.02697224295994407,0.00010679253834117097,0.001455458901615376,0.01641601155466317,0.016338005800774255,-0.07595604814546991,0.000574307072501841,0.0009582143277067046,-0.002049701846137168,0.008426888504469904,-0.02633966386682715,0.00010237866296877055,0.0009698918485955524,-0.007858667356867244,0.02539751378896503,-0.038688773313632296,0.0019859891713775806,0.009690767592552763,0.007559388735108475,0.06610701012030365,-0.06235512296719186,2.94050118690872e-05,0.006670482556202208,-0.0027816551710450324,0.007682120991393966,-0.0163675425933657,0.001183841113251306,0.005672517202456829,-0.006314522464404671,0.045060656085378015,-0.18496934985317678,9.331869247263501e-05,0.007092078292579803,0.004524796882859957,0.006570730505013012,0.0014611116579301606,0.00016252898368811057,0.017108591996498373,0.004998089981339501,0.007645737959311701,-0.010161466953497632,0.0003752222426822935,0.00736303917362241,0.023517328810841346,0.09155343068231483,0.01996346282584342,0.0019909653863724184,0.0061806345796931485,0.031741960678648914,0.11850512438628084,0.012568808976678843,8.59383456856502e-05,0.014304501022670215,-0.03631052686580304,0.05150599579356206,-0.021156185471841896,0.0017524754967260894,0.0037899530577287562,0.001731866682560018,0.00487555799869027,0.0007479365449741612,0.00014073631221853166,0.00573862857659361,-0.024357534592283018,0.06700535286428486,0.009249816150416281,0.00014736155832687918,0.007684500048317769,0.00930291432854763,0.04598305633513329,-0.005583930881866236,4.93781838770949e-05,6.365785791235092e-05,0.03696419775801465,0.11440157618679431,0.0059539536113136435,0.003062438210852793,0.03112413679913402,-0.024588462236737812,0.1228237810188771,0.026239568979495056,9.958397942042639e-05,0.008937440119106644,0.007549949022342916,0.03765140074708878,-0.09309572273676876,0.00014541984109457917,0.011144681292174772,0.026205194804367605,0.13287909282225738,0.07044899262742499,9.327804533483556e-05,0.0024060411799400024,0.033718898460867244,0.1509003767228678,0.010675615946180168,5.616043324001339e-05,0.006466278133976738,-0.008177810334805366,0.014398083506203113,-0.015027502672650758,0.0002769247293322336,0.0026889108207693887,-0.012291213267736847,0.047108059090153455,-0.01994255425008172,6.488045980284105e-05,0.007572869040007845,0.004151934930277703,0.04568126936706814,-0.00538779363159577,2.3450043932573194e-05,0.013380165658102844,0.011244854786732818,0.03979522460096087,-0.008125727566047285,9.877154697624493e-05,0.016935652055131086,-0.015506002687799388,0.05824294037110526,0.020681969273128778,0.00041964739718072645,0.002356678188603194,-0.005457676235412875,0.02366469816627134,-0.00099481114143662,0.00013209263235846143,0.0052044925381230156,0.008422493641270215 +2022-11-17,-0.021935027068103956,0.14772042641522828,-0.025765501117637462,0.00015703056957660285,0.013090402967300277,0.04262222822800258,0.15925556794838125,0.06249479636902823,6.421730144856622e-05,0.021429580058505,0.0041600561026294185,0.012718677450932137,-0.0027653483314039134,0.000151305403631478,0.016944586241383102,-0.0225354466679999,0.019583394324869247,-0.03080905841316837,0.0003883703424511259,0.00904459361492117,0.0008548569937418256,0.0020956173035826145,-0.0016422062643641185,0.00021344169721704693,0.012026982126266123,0.002646918008101462,0.006639715680728846,-0.06302975087634753,8.704378060208126e-05,0.007789323708228383,-0.002124186210085856,0.007206938362380951,-0.024428197008298028,8.648317646878025e-05,0.016903762196375176,-0.01033730144553016,0.10341489712407233,0.0032541247772843794,3.4278569603299355e-05,0.00795336899201584,0.027639362693908227,0.023016798039758868,-0.04629452113359065,0.0009260360727573716,0.022279219777915905,-0.009851948598299852,0.025252248328309624,-0.01938715065544268,0.0001364218617895128,0.0030429880547113357,0.0025706235307221353,0.0017998681473201832,-0.0008321221954667336,0.000698107245789509,0.016635966246351334,0.02028184974776865,0.2791271771182402,0.04266602032109997,2.1653506118257883e-05,0.0018941719211149008,-0.008987251222515178,0.026968315790476295,0.000860408314732288,9.899746973419084e-05,0.021221725959045586,0.005863007129136031,0.03219974125023904,-0.019889412439298468,5.1254247153411704e-05,0.00991974551510725,0.007880574664023449,0.00790214092643933,-0.29454913124533677,0.0019450738272245866,0.000833342628087962,-0.0008789209616275858,0.005767033375050255,-0.022523147309326527,0.00012541499500804537,0.03655297648864322,0.05186369256322636,0.27785662827153124,0.07540358428486761,0.00028903531212508515,0.0019012877820763269,-0.05694096014380845,0.3484291854452372,0.08536649251188116,4.603320534248775e-05,0.004167836780270403,-0.03766778662427797,0.20587705123616082,0.04873970960565869,0.00030154280460093527,0.012064427903747153,0.002176242398096457,0.02634046153030918,-0.04516005602322903,3.4285786629172615e-05,0.0008840799671133344,0.005163451616113103,0.05831585790877243,-0.00018179532652062415,2.958251897927619e-05,0.0011420690402568381,0.014385032064697134,0.04033875836165012,-0.029689079957787003,0.00011487117507816402,0.01932548787274499,0.0455367209485947,0.28595617974760174,0.0014255851332540812,3.678363495529113e-05,0.005340540283859916,-0.00812253892689001,0.023711933113458785,0.0018572605639881534,7.594553090215104e-05,0.0026756890389994853,0.005076314440386055,0.02028881462099406,-0.035969602020232035,0.00011440379660693041,0.005076307772674761,-0.01754999186548434,0.01969467104066006,-0.02296956503368945,0.0005093352686259919,0.001881276330207393,-0.047804884530434855,0.17588535005050304,0.13656471588192126,0.00011440068243149153,0.01426609317425753,-0.02063895735830585,0.06962381869787389,-0.004647383795288763,0.0019026069938566173,0.01631739249648788,0.001955615360392101,0.0190863737460136,-0.08204247076747724,2.6347669749302262e-05,0.01592456860953138,0.06371148379272347,0.16832998986455971,0.03307822658161702,0.0012374495215792466,0.001984978312952907,0.02328324212123218,0.17023831424519378,0.03822878247015263,9.107764395216507e-05,0.0071458367713983515,-0.005504539746065659,0.007877134253962238,0.002474322699139005,0.0001649294272419432,0.00015407620168600422,-0.019760831296671052,0.029189114448463234,0.013162358538369348,0.0003885869441110768,0.019724510920752024,0.02502805059056486,0.09486251062681822,0.041963029499464954,0.002044950268766812,0.00027561718024290234,0.004540817521444211,0.01690770304907244,-8.327813411010763e-05,8.616676896218431e-05,0.001584104999344877,-0.03173882241591236,0.0463032312668614,0.011924385740553467,0.0017039494312872,0.01840990776333689,0.0019617881576909175,0.006481916221372943,0.0009132938993525539,0.00011991257569112823,0.006571154963752561,0.009298690688577358,0.02529303538316307,0.0009032487835344048,0.0001490325821430072,0.009866509997196553,0.02416628903493839,0.10623179044076907,-0.10921473539685966,5.5522548137472126e-05,0.022531297975568482,-0.008443349692321528,0.028510569724457195,0.00036862030076729237,0.0028068999875881327,0.002287899445153928,-0.03536614394818335,0.2141649941316385,-0.10893137841922958,8.214474680649073e-05,0.006058241974418892,0.007174935920495664,0.04143157857007585,-0.0031020312502113862,0.00012558776469590664,0.007941810365840192,0.000357334800001855,0.0016075394324226312,-0.01487283872276043,0.00010513864535042027,0.002568153876383211,0.030234128310371224,0.15693120389045304,0.013183390267073276,4.8421199125046566e-05,0.024194468885405516,0.01457541132319033,0.026062490864555518,-0.05640756079505581,0.00027266807590359103,0.005393469484551761,-0.02069559098508234,0.09365034559306736,-0.010753342116020302,5.495191406105269e-05,0.0064663424131390385,0.01819371198718983,0.22792946225198701,0.004607695174134947,2.05945418487478e-05,0.007776427707199062,-0.01370867953377454,0.03904738423595826,-0.0093613120172945,0.00012271923592699883,0.0051811469189044475,0.012893911527792293,0.0534532440202211,0.02055228268580604,0.000380223179917618,0.005735784722803169,0.025693556805777954,0.1297944641810679,-0.04987470607608311,0.000113380888159719,0.0019658074495260604,0.0017554935620210403 +2022-11-18,0.01764817807542617,0.1332533856349839,0.011710948408179912,0.00014005809307327883,0.0032731260992279435,0.014107200020769744,0.05033584197342989,0.03445993501837896,6.724717011846698e-05,0.01360326832477054,-0.013788106667949964,0.04831356486415634,0.004231897268562138,0.00013201788034962011,0.012174714533438519,0.006216294116272751,0.0060964355686894955,-0.2138368489892675,0.0003441307036182374,0.00957792073653206,-0.0026237776883346058,0.006172215932682377,-0.020414863013835403,0.00022242504938889895,0.0006988155152754378,0.008354877412428484,0.01830847055575634,-0.06452985886919202,9.964023793720323e-05,0.0022203132102610853,-0.014768694931230142,0.05425412165678044,-0.0034124990221392985,7.987286045220939e-05,0.022840400950018557,0.012226209773061677,0.10605187860513993,0.0011454458226439809,3.953412139176517e-05,0.00022373878580842253,0.037253859048409214,0.03452638023351547,0.10539642006979723,0.0008320798491788624,0.012063724257755017,-0.052161471809024494,0.12231234427295459,0.08142165336661644,0.0001491219017001063,0.010618231242613468,0.002251924332526305,0.0017911595944855219,-0.006995673384502385,0.0006145311023791324,0.0030269963694618835,0.00406641043174953,0.05367254780749569,-1.9276596366965952e-05,2.257780868718298e-05,0.0029479251226754277,0.06925430488432789,0.17746011454055174,0.11788808925144027,0.00011593032541278503,0.044022944706441934,-0.014222197606603103,0.07270909224209458,0.006496261252883015,5.506045605732846e-05,0.008024671006132333,-0.0015919571307470711,0.0013827422157948412,-0.0186329686696889,0.002245500307643149,0.001686715453625188,0.03624692897578119,0.2336702910931176,0.007893337900715012,0.0001276497078035046,0.040971993350962924,0.002317622865601061,0.012882526764590145,0.0007909606631141381,0.00027858000731685465,0.03462684146124072,0.012298253215383954,0.07650227680388529,-0.008705327862952538,4.528246146615196e-05,0.0004186133539988933,0.05980481344439165,0.3692911675546446,0.10549319665491874,0.0002669033512256314,0.011493309896661884,-0.00922812991897441,0.14021538654613389,-0.005541905992720868,2.731167009386866e-05,0.012989987576924992,-0.01492275421346478,0.14504217162257524,0.010649563729466698,3.437450092651295e-05,0.010079514937256357,-0.016543333615160194,0.048865231448098,-0.0334700318350235,0.00010905506063495953,0.012575316360004198,-0.02044295449116062,0.1321597394862447,0.03062922496257051,3.573031656778436e-05,0.0013171040332692822,0.005877010202290325,0.019638264717432432,-0.01959636126414061,6.634844014845949e-05,0.010529554301533534,-0.00021800423376961109,0.00082667925357591,-0.002231147238741138,0.00012058033466033158,0.0033511751809129032,0.042924546420373876,0.039101799985614055,0.022768396524672843,0.0006274578054710093,0.008100915374851863,-0.004115404984926423,0.014904215171044422,0.0009607349986950676,0.0001162223028985233,0.011326919573320863,0.03480380052081525,0.12127164633519862,0.04031692159936976,0.0018419870479085877,0.01567263622208666,-0.028451204698838238,0.21870305207659657,0.026501691540142047,3.345245627907627e-05,0.01627102842319319,-0.06076665164787535,0.17972323203150886,0.0029754912221322824,0.001105432824515105,0.007722726519004012,-0.023016450726434004,0.19427704845932364,0.008092091175762728,7.889373192213357e-05,0.00491401559793741,0.010017726503029857,0.014807654018418092,0.014714836658824908,0.00015967182840742234,0.004948325552749667,0.015344365949034345,0.02124569437320282,-0.013453845673945183,0.000414554784256029,0.00810652361142371,-0.001147411196803363,0.003884995041219441,-0.016345108390574747,0.002289174797372978,0.012288652593799123,-0.03320809172956221,0.144706890641842,0.03810020913814684,7.36283517787257e-05,0.009340782777170079,0.011918844914481391,0.018201921607329648,-0.0043511819141692845,0.001627774051482737,0.004895399379969736,0.010492363930865176,0.038582392236518166,-0.0016064545864327912,0.00010774577032613885,0.026272421166164697,-0.042246234314009104,0.10886616886313909,0.029464032251223748,0.00015730967714998393,0.0008492286592751865,0.006280745078626713,0.025659369612786666,-0.05556274951939719,5.9741910807115515e-05,0.013564637756194002,0.014688831091620773,0.04489676221044688,-0.17660587033436143,0.003100917931479266,0.01515925371157581,-0.026079375250011104,0.12298299023826122,0.03408885984666484,0.00010548548540488532,0.006844036870372828,0.019595153152324928,0.1052414585330117,0.021039300808170278,0.00013502761236604797,0.0038776623911560746,-0.05150133164239808,0.29354711894417956,0.3199915882950178,8.298303889522606e-05,0.0057260381888362315,0.028465724261097315,0.153439959342432,0.010060990772450781,4.662632197074188e-05,0.008798734320890645,-0.01803917630808649,0.03553410828085095,-0.03672959920533796,0.00024751451700799095,0.01996708254150382,-0.025389282786071346,0.08273135341193659,0.049301245390016464,7.631232399101053e-05,0.004941068351815114,-0.0017926430346640759,0.0172933003494098,-0.0049636687525762575,2.6745284321349175e-05,0.02205644402880047,-0.01630635157659831,0.050532519534970975,0.0008687871954421948,0.00011279628956807738,0.00235683244586084,-0.014557785265361469,0.05566312940181698,-0.07787545294646431,0.00041224525073625397,0.004146109561922237,-0.010072727121725997,0.04625616016297793,0.002063008462525714,0.00012472378634682747,0.004664595150290938,-0.0008381745745628737 +2022-11-21,-0.03879827752350782,0.2543202910241406,0.031556951670705734,0.00016133107113545177,0.009321119466826344,-0.02321581152291751,0.07217701129285227,-0.009286709658661933,7.717835204876878e-05,0.007103655558227602,-0.011134649081255775,0.03420353788346858,-0.023747125548530982,0.00015059228003293885,0.010246105494809022,0.015233474704776012,0.01528389145913417,0.0349871017354467,0.00033638210754847857,0.006119032207421164,-0.020523270903652885,0.04695931437560067,-0.003416250766536443,0.00022867706138776352,0.021205131018915656,-0.029174177071369774,0.06935620444489778,0.04118856809359871,9.184595542589733e-05,0.013767657067071965,0.06468504183646982,0.24474700726141366,-0.010126694757290626,7.754902261428886e-05,0.020836910029397922,-0.03695061445407781,0.30385144384561624,0.08161590068630202,4.170220077082257e-05,0.02408247087318935,-0.0180056207302434,0.01786943542630755,0.04369284132946145,0.0007770376335783856,0.005566950457002713,-0.006470058893185282,0.013330532717887845,-0.005679788776915945,0.00016971593264700696,0.012307785195118829,-0.04500022240885013,0.029972190043885398,0.052522687699985846,0.000733872376483484,0.005279585121306158,0.014698863588017001,0.20964540060842607,-0.06535125680279177,2.0893981700406782e-05,0.0012404379422572803,-0.0010684193022578157,0.0034370717235615304,-0.02210022372394017,9.234304013909643e-05,0.028429857337121896,-0.004798630708190139,0.021161286287980134,-0.012502553226831584,6.383179899536639e-05,0.006168019850211681,0.0037130635746506512,0.0033470658060906857,-0.002679021079691573,0.002163670414944771,0.003052960700060417,0.09630704083719786,0.5242837671852475,0.05451831746642308,0.0001511623849057247,0.05863632615272003,0.055949969305756686,0.40398986286930144,0.06798077641994388,0.0002144557113722377,0.013261614637107157,0.015703080948709917,0.09671044402316058,0.004181522259972654,4.5737502707285405e-05,0.003488217926542459,0.0025259998673995906,0.014773867227109471,-0.02602055774576926,0.0002817902349611069,0.022105264386460526,-0.01440384769243375,0.21115740666676064,0.004090475244716482,2.8307559716290872e-05,0.030955774787653805,-0.0021720570140627326,0.02447802716804992,-0.038879688865438404,2.9646710834880002e-05,0.005569950344200136,0.009444406585994684,0.031241971740501306,0.0008041700652830422,9.737758416818187e-05,0.005997164371094945,-0.03484241889286557,0.2616681638967266,0.02327867053326823,3.075741176725043e-05,0.010140346061653836,-0.007282583715834823,0.019391291039502722,-0.008734829991205176,8.326378389378572e-05,0.003048664794904128,0.008626907096140553,0.03269364212175407,-0.0007363207460236699,0.00012065363547100345,0.0069194678997577435,0.04674285848836406,0.044157307411669455,0.02047810156311001,0.000605045792784703,0.006479096482336478,-0.001339319197957941,0.005360975152276871,-0.004043297642014635,0.00010515412377871967,0.0043680531471697644,0.05675334211348902,0.1933519449971116,0.055744523272509824,0.0018839183272063862,0.0025760147801869816,0.009045360019808374,0.08041751463872686,0.0038773806998385722,2.8923936915926024e-05,0.0018988054377325544,0.024970168159487032,0.06838129715874797,-0.027832507833103624,0.001193865499209832,0.008255082431374069,-0.04385928707133559,0.3107364192423603,0.15091924900959564,9.399290110357506e-05,0.00975506958354846,0.05714862043168089,0.08952432539811471,0.3264153881366081,0.00015066420355573618,0.004733986318424617,-0.017253351745648543,0.02052111214785829,0.016945465421321377,0.000482587975386311,0.020987338659102763,0.019029291823823933,0.0770579131022229,-0.009100733567806224,0.0019140607791852666,0.006562105158005622,-0.004431062698161227,0.014825327108722685,0.0037402005028579362,9.589456228158144e-05,0.014053805643528917,-0.043031241038770734,0.05092846144720798,0.019283954154478297,0.0021003927328202016,0.008718736973674309,0.030416317679236915,0.09648206659161519,0.027574106218659623,0.0001249039217842724,0.0035528343867943825,0.012274844120203066,0.03412554159453022,-0.012237989192392518,0.00014581318928330342,0.035170723503853175,0.02444443651500821,0.10640692256301999,0.014059385330083352,5.606916294359958e-05,0.013169797192681907,-0.028686759341318216,0.10937279879818593,0.0032498168903424274,0.0024859375955415745,0.0035776129063690622,-0.012199411096043888,0.058423513698699546,0.00493879629239784,0.0001038703905178448,0.001426651846264344,0.031500047009712935,0.18657547486478454,0.058219570779795185,0.0001224383393808989,0.011300866586253499,0.005668707513295131,0.03645574947679943,0.0011945203619117175,7.354729713260902e-05,0.007189589852493963,-0.014289499865807773,0.07377355075075558,0.0017642595725233803,4.868147594376033e-05,0.022983023769897346,0.03798060813325481,0.06547718293524839,0.021533061799122327,0.00028281427205311397,0.00036023592955162836,0.001021551454507396,0.00446440188865034,-0.015130183900172884,5.689987851966937e-05,0.0015633230733121128,-0.006368114191826963,0.06088484217147796,0.0017025798216522118,2.698565373145681e-05,0.006153828938489029,0.00965835848587627,0.032364003014048646,-0.012970933117359031,0.00010431579027105935,0.005604404779548646,-0.020755604226729354,0.0854109952848798,0.0035906229916605626,0.00038304479833885626,0.0033410834483819695,-0.003094527195575926,0.013879034892757812,-0.04810382859220264,0.0001277046855758377,0.01868858624173048,0.003287581032879529 +2022-11-22,-0.0212594251839395,0.16629660395619797,-0.03165777696893451,0.0001351931606431838,0.0064440465297177715,0.0027634126054554807,0.008177854123220647,0.000719871637213398,8.108059024292907e-05,0.004619985399744551,-0.04955183909917807,0.15142483569128956,0.08324150332294417,0.00015137699202172878,0.013153618121582644,0.01773269939397157,0.017281550237715992,0.046587279154256894,0.00034630599520348726,0.003356597130685691,0.047751707115682156,0.11509152140725287,0.10030697880385396,0.00021709176190645013,0.006351981159864425,0.016901022056429526,0.04688859677795342,-0.005445960315388771,7.87032148030677e-05,0.017290750523660157,0.022265510700697863,0.08207010794782398,-0.04222836858445737,7.960448031538564e-05,0.018236879130208414,0.004303067210397682,0.03337100550368328,-0.002725411545418464,4.4218850779630816e-05,0.007836105025680783,-0.015000160533546397,0.013533964560545564,0.02982502652921382,0.0008547038468940202,0.0016345976857249749,0.04611516350248936,0.11876928695201713,-0.1038259616917984,0.00013576927222906654,0.002276222252470986,0.02402915701989035,0.01969154992750138,0.03894264855846364,0.0005964622915092748,0.0039042149809160585,0.007875865701235371,0.08971097089637521,-0.07359338671855006,2.6162276697837926e-05,0.010398962573148676,-0.02584420975241584,0.07250160659442931,-0.010236051562385407,0.00010589285671309361,0.001476219060826214,-0.018316879885303627,0.09758697931297881,0.029556048142531842,5.2834967021306546e-05,0.013685168794270954,-0.008613941898753147,0.007669745617428675,-0.03227570483559324,0.002190503496532655,0.0030155828007322515,-0.013824469413439098,0.08943607799552143,-0.0002038632154434694,0.00012720021158515467,0.0546627085345106,0.05259372537369472,0.293451314706941,0.02855092608564667,0.00027752755313365814,0.0038708171841829366,0.016313198540027524,0.09906823660869876,-0.036180018079266456,4.638372733952333e-05,0.006609394575120261,-0.0027136963103506773,0.015683236989167636,-0.02989580915283289,0.0002851755885277403,0.007685865636941211,0.003234276672123324,0.049689244265092115,-0.00022198912526941742,2.7011270249840135e-05,0.007747476199328756,0.009313113675604275,0.10820930671763236,0.005891593482169541,2.8754909061739784e-05,0.004210665407377256,-0.029301085793831942,0.08912434202757753,-0.09280025831905934,0.00010590345608504284,0.012523087309901757,0.07341663882948835,0.44668834264481655,0.08938032932813855,3.7964899544992705e-05,0.003948729146001849,0.02694245350435615,0.07759820418337852,0.06166446399332511,7.697733183593052e-05,0.005274468784399099,-0.007443935356583471,0.03318198010615063,-0.07543185570324515,0.00010257673939541661,0.0003086657303523928,0.01146285152833423,0.01188471674314247,-0.07192571109603117,0.0005512890842112352,0.0028366066340220226,0.004228230319955624,0.01738394820635319,0.0004987485988438197,0.00010237554478412213,0.011233291454018756,0.0405672271250954,0.15327805959051363,0.03198662037524284,0.0016986914638415017,0.0250524763433293,0.026035512226753522,0.22144179782070086,0.01636581357504331,3.0233520647914843e-05,0.00710091879439418,-0.010141977827544746,0.03071021379051448,-0.01851128776759324,0.00107971985255227,0.020707049127951054,0.00304350920668527,0.02019645963748946,0.0029747553112605247,0.00010035176541934172,0.010536817063612243,-0.0009820864159810086,0.0012542601056371688,-0.016383856699179265,0.00018480234655832812,0.010130695382476268,0.02859814430509244,0.039436680120958474,-0.026662540162612172,0.00041623770589189595,0.007823317018914137,0.04595092916104952,0.18183766416953512,0.06997328717431528,0.001958667850013266,0.0020593803405115833,0.015705300438828285,0.049613910348678146,-0.009518927551279728,0.00010156244830997226,0.025765714324286735,-0.011253705700202704,0.01659426228998043,-0.0060564214416959005,0.0016858339480389892,0.004576076851067009,0.048827136217865566,0.14740997371961112,-0.023759727580065226,0.00013123522518003055,0.001372788380223124,0.005749659176498681,0.014851501334026546,-0.006185132460214499,0.00015693944745197007,0.005287154671670533,0.04220473588723185,0.1924599967603657,-0.03264758302018915,5.352228394722535e-05,0.007273735991916415,-0.043615204616335064,0.13463538405729503,0.05228191067056294,0.0030704127348752048,0.010089942768140308,0.0008509678958011177,0.004726924522151084,-0.026114471723504652,8.955195656311756e-05,0.022265228288473507,0.0012044362051997761,0.005342816716239369,0.0012420343889374423,0.0001634836442788176,0.0040292694624077694,-0.007709074152149108,0.04227824960557472,0.00059758893928283,8.624499937455495e-05,0.0002753764072163222,-0.028502177128350212,0.15678049759874,-0.036585112064173975,4.569128699647612e-05,0.0053947573260396346,-0.00540958306743506,0.010312443036711192,-0.1324929820787168,0.00025575941239551145,0.022983905101447696,-0.0014704685908193552,0.007282509368818666,0.000760708472038173,5.020986761389611e-05,0.01220302863300336,-0.021600282221132,0.24790010483507183,-0.014986009409699864,2.2480915879747363e-05,0.02432247543146634,0.022029584375979825,0.06892116928346415,0.021907551929316482,0.00011172815603842998,0.002846086966633872,0.005617860441378579,0.021525087309734257,0.0019102088596623886,0.0004113902507928168,0.004748330346669858,0.06331357725369532,0.3577701221535653,0.1044208199488491,0.00010135952784560754,0.0018529572469452625,0.008575875214490084 +2022-11-23,0.03542014676409208,0.24300150262275666,0.0508825260788369,0.00015414448147705063,0.010341223893949002,0.003613529313170979,0.010901680729048915,-0.01969711050565933,7.953323537639376e-05,0.013624737923651905,-0.001309251103285766,0.004687690621048684,-0.029889933423623324,0.00012919961268371337,0.016958187237570744,-0.023603584499714263,0.023641474063147472,0.08612688401338223,0.0003369545038736847,0.007153525844552407,-0.0034709551473127453,0.0062866098662814115,0.0019378597641086781,0.00028888850681059713,0.011150835026036162,-0.017778002234080735,0.048251111061160847,0.017476471923003854,8.044932010282046e-05,0.0009541887530871477,-0.013378395241907362,0.045945739534301734,-0.03471468135620846,8.54375195435937e-05,0.010095940119839154,0.002778805500375404,0.02164473491027635,-0.025482781452440356,4.402551988110333e-05,0.018095335240403923,-0.0011811927770283015,0.0009685363887738204,-0.019110714619169137,0.0009404801356565256,0.005102580368957629,0.016232999595460776,0.03910806152941695,0.0027302965499929575,0.00014514242484755168,0.009920983203077719,0.021162430528015818,0.014209452986271765,0.027851814268312288,0.0007279684277624821,0.0005202127057549071,0.01317856880761038,0.17773331830551942,-0.01446959576544385,2.2096433857177245e-05,0.014404315966280057,0.06311674765168136,0.1967310504386568,0.08082450573246938,9.530654784262791e-05,0.013808603627223196,0.0077757583728967315,0.04947670797770365,0.0046277550974289615,4.423884498989974e-05,0.0031011729021210716,-0.019796159803364282,0.016726398922055307,0.014735885822670224,0.002308349013545135,0.004854550730359241,0.04948427789766043,0.309022668381325,0.005267828665635857,0.00013177378077991822,0.007409651066472279,0.014750154498177633,0.08546224892204105,0.0008127476929053765,0.0002672578585372,0.0037563293848978784,0.010202642120226112,0.06447504686721413,0.002049332155071936,4.457403426578852e-05,0.011799951843711303,0.007958595430612747,0.048784930581533555,-0.015155529976064595,0.0002688670265869752,0.006145725119049778,-0.02995540510309256,0.4270066655445329,0.026822585910245795,2.911191496678743e-05,0.015978605712904825,-0.003818252444071307,0.03919097539171441,-0.0038759663039313053,3.25506956991648e-05,0.0067757692779613615,0.018959129606777463,0.05387490029464702,-0.015836755650038545,0.00011335865173277168,0.005516841096560493,-0.047843533267042104,0.4184410838784129,0.06645807396818323,2.641078456997835e-05,0.011293568052336582,0.005168559889372724,0.015367912716697147,-0.0401620778687886,7.456448969357023e-05,0.020226988591030344,0.01018424490034954,0.03581999030242048,-0.03636560445436495,0.00013000257838842246,0.00030203574055783573,0.02207424214791453,0.020304219464350074,-0.035745593473222675,0.0006214054597837777,0.018862507551664354,0.01027390501908683,0.039507755103124015,0.018437016145877023,0.00010945590658753226,0.005889133312679292,0.03561756520588735,0.15284902357548666,0.011996335403944458,0.0014956181745877067,0.0021085101958815628,-0.019182126478705912,0.17595113820986708,0.010052462457582645,2.8034115927515224e-05,0.013197267916079863,0.021868356405884803,0.05813499773446744,-0.030929803965373325,0.0012298432255520733,0.013728296778005926,0.029842475361953377,0.2297497082212822,0.03647827863041952,8.649789102577017e-05,0.02022076615800834,0.03190139853304911,0.04941458119939034,0.02745515758419263,0.0001523701832748499,0.00528245183251106,-0.0333068943239586,0.04610589812228828,-0.017506508301839488,0.00041464990157093396,0.012430553008387928,-0.032872075091431065,0.13484602581676516,0.010585522784426371,0.001889466994741145,0.014204583754376854,0.001190538325951731,0.00457333594960099,-0.044189422956130875,8.352195400399165e-05,0.0077017218832278085,0.013612247106026678,0.01877412424209632,-0.013805955196207927,0.0018023840212211734,0.014782189462987691,-0.016163909939453443,0.06032417385243241,-0.032927516190629946,0.00010616248497342723,0.012064423928488175,0.03545940106957889,0.09999656374969633,0.03438048693149576,0.0001437496167956012,0.004121615415207916,0.035241677718112284,0.13920022237121074,0.029543032969643807,6.17917608489993e-05,0.0015266844296715474,-0.015291547423958324,0.05223252786186585,0.004658292010332053,0.002774779321221899,0.005882676457784141,-0.025484997266240123,0.13221663983656937,-0.01316156721349981,9.58824331375585e-05,0.004198094254453143,-0.023694135939309403,0.14079622082678495,0.054939724232129936,0.00012204237828491257,0.004540974640858569,0.001283858479839036,0.006909118770949817,-0.006990847264796274,8.7890754804374e-05,0.0031810020768371417,-0.04929780376254887,0.2420013445420884,0.008784979224092741,5.1198494151834794e-05,0.0013984840733880894,0.014150298373449407,0.029992992194373732,-0.062414838320774366,0.00023002508352990955,0.00812916962574877,0.008500628747518777,0.032635901569737176,0.021813875092580655,6.47693905672238e-05,0.0035620248972041595,0.0005455308857850628,0.0053392293460745015,2.1923110557969175e-05,2.636161741078015e-05,0.02879097327038952,0.009044727230785697,0.029158616529220863,-0.0019250880637189248,0.0001084270205766552,0.0007854050941183911,-0.0054888219378514585,0.021693407749166945,0.0004296757649506749,0.0003988222081463768,0.004440992638940993,0.03584303915824324,0.19095858115278241,0.01468162783334238,0.00010750717342449136,0.0208673714960503,0.0035389230815335944 +2022-11-24,-0.005752682323588157,0.040722064664867004,-0.045868275287858876,0.00014939194674374044,0.022066320513291236,0.03504089572587726,0.11986348393523102,0.05156456046979283,7.014534072307217e-05,0.009150562036009923,0.02591001451644236,0.09265935199326934,0.02992097594616167,0.00012935273094289885,0.02315058021875856,-0.026546423964673303,0.02771955038491005,0.08649022823565433,0.0003232121667995083,0.005840404943439782,-0.03227211034753376,0.08255179821275624,0.03485238289936057,0.00020454958385212596,0.015126428872988621,0.00317016199142555,0.010126921795485667,-0.026878300161043395,6.835192314327171e-05,0.007392424680866754,0.030400050769485213,0.11146514458321743,-0.008690505906329912,8.002488899837232e-05,0.011751578937764013,0.04323754570759296,0.2955921284919552,-0.010664144750494792,5.016106905980611e-05,0.008648477598892252,0.013740466026458816,0.012837661503445195,0.009061496669509488,0.0008253921402764296,0.004308320246519979,0.002589633565029161,0.005946360407148268,-0.01779940527969211,0.00015228214085980416,0.0110712268170166,-0.022250882403442744,0.016175923943589864,-0.0013448897229599353,0.0006723609783491926,0.013598133489883488,0.00040232707865890275,0.00590499614542736,0.0009841414228367613,2.0304038803864453e-05,0.0005764952634322825,0.00612555227277158,0.019558151889633123,-0.0011297590111753518,9.30397368964877e-05,0.012681770680698807,0.0026545891986858258,0.016436765115531653,-0.009233280832957233,4.546139857485134e-05,0.010074047321235522,0.022864665735623124,0.020246265052727596,0.006423419629908578,0.002202636903313753,0.007940522685390111,0.02770074427466974,0.1874132227815474,-0.003438899178151558,0.00012163073100546226,0.00523856817289033,-0.03166229840235417,0.18297192370288148,-0.045036427451434574,0.00026795768396430586,0.002533854379784343,-0.000588291828373313,0.0031417817563520346,3.368910284576098e-05,5.2744570276160315e-05,0.005583002161388391,0.03613853100629837,0.22256913493962896,0.05156793345625995,0.0002676038544837495,0.011675622241188906,-0.03153593294200219,0.4327748710085655,-0.012060735370439689,3.0239449389555634e-05,0.014502529400100517,-0.0018906592419472732,0.019677303840367717,-0.0014906905061552438,3.210179960588669e-05,0.0014363194166362244,0.01855447293752212,0.05503314257462699,-0.028587513683580167,0.00010860431102787711,0.00904902340057493,0.06685193333949127,0.5378746555227096,0.040432455362077784,2.8709476045546423e-05,0.0130926284030762,-0.005289222827723837,0.014152780292150726,-0.08640740897136444,8.285667117154425e-05,0.0004603661152598011,-0.010749852945978017,0.04355718111668181,0.013679324867566579,0.0001128473469107839,0.0008936060917101366,0.011622547203905074,0.01168767278886479,-0.011576595591744654,0.0005683931503095175,0.013166415620899024,0.006190084455134692,0.022729714260981332,-0.009706601625189673,0.00011462744369214991,0.01056260100736843,0.016604048046151596,0.05812770198712266,-0.021251036386874696,0.0018333695000099046,0.0020512460437963264,0.007904561243335342,0.0670371166981313,-8.350997933091219e-05,3.0321077966570113e-05,0.009672290413862998,-0.02154983338355749,0.06547756661573374,-0.003181646405488686,0.0010760257276323034,0.010696450761924244,-0.003485162541469709,0.02854419383350996,-0.0012440975901983342,8.130755451238309e-05,0.01999194934620516,-0.011360228038405213,0.020301301855708942,0.0062852694645040225,0.0001320713286258711,0.0017725760539896336,0.03880838672492266,0.05313222939071325,0.011390790185121047,0.00041924844860061515,0.0024057568893376302,0.02836181494334205,0.10907515529360161,0.02819459166048777,0.0020153873123132295,0.004871649299941223,0.019461753858082326,0.08939218540282075,-0.019258022206158625,6.985102625567348e-05,0.017321774958758487,-0.021185362361310627,0.02962640182603506,0.005124366841328731,0.0017776005648431476,0.021195569367328346,0.00019101421624694956,0.0006856613768902363,-0.005149916851945255,0.00011037533656831011,0.005189101461355306,0.02041723726531507,0.05713350334626024,0.010129827255077066,0.0001448660093057828,0.0015230976577519767,-0.02316747515275019,0.09417042505624827,0.02211872490044654,6.004517297369481e-05,0.0025175639941061056,-0.04996453934070181,0.13968507086869741,0.04215594498604908,0.003390236171339944,0.04883686204311716,0.010944033015490896,0.0487757221611451,-0.1525925519217447,0.00011161286522015766,0.005737231731421205,-0.003523460450673371,0.01755774855620116,-0.0031025729772229103,0.00014553295923040935,0.004668196821335461,0.030004997092505217,0.15514752637982168,0.020968796199338578,9.147394978104175e-05,0.0021167821159825692,0.04089000360455874,0.19524626730133426,0.02840553310405391,5.263586979058679e-05,0.0019102624433599122,0.02823005595194121,0.054404946990238005,-0.018585482362855833,0.00025298964259885966,0.008036307628830858,0.0224939576484078,0.09421330090812532,-0.02061685737554813,5.9370133948233516e-05,0.004144213883141564,-0.014901409407859154,0.1412971870200966,0.0059180877117489305,2.7209785392579013e-05,0.014391991273717295,0.026871201951356442,0.08844853293570452,-0.05821950348043118,0.00010619533117564935,0.0018807306216038664,-0.013833203312576413,0.051083742209053484,0.01277238877428591,0.0004268428650655317,0.0005918595361016723,0.00482545377555769,0.02344946963755154,-0.0004259323213144119,0.00011786284802126679,0.015925972967457323,0.005849977316389596 +2022-11-25,0.019749358848849152,0.13184122318270733,-0.007811648425509315,0.00015841210368890596,0.01511811097300378,-0.017259107479906933,0.07411226602851005,-0.009684498774685904,5.587773163921547e-05,0.002149616089054119,0.0011034744264055412,0.00366234406907549,-0.008478354502835433,0.0001393799595773821,0.019907940507469368,-0.00921885709336699,0.009703110380051935,0.00407674360405815,0.0003206520104710868,0.013105730215124324,0.06009191546873657,0.12006896887304269,0.11948219016058512,0.0002618683663700307,0.0105996363494768,0.02578918618079839,0.06420874065499908,0.09848716702784022,8.769810825586471e-05,0.0015809062671109247,-0.001557369946654273,0.006136813743497818,-0.0221355066715942,7.446268678294728e-05,0.017815160173308024,0.03697128608213221,0.3209411389775725,0.05310594151452597,3.9503700789177215e-05,0.004370630689979705,-0.0019000563557190877,0.0014294305229626278,0.0019732150963873802,0.00102505747623963,0.020835288008895374,0.02143275510276249,0.05420067377515093,-0.023376941486778737,0.00013827230502014892,0.014877178293555981,-0.012751611993246195,0.011820828831571335,0.004833571976093372,0.0005272802676433444,0.009913055591521938,0.00817717723625951,0.14402045670573813,0.0031918239896162747,1.6920064591735952e-05,0.009826461601220037,-0.009305494292907276,0.021449794151327865,-0.05085840868456746,0.0001288746076901915,0.0220872318059243,0.026707220470902446,0.1323481947049719,0.10299325688738468,5.680315891865208e-05,0.006491729360220204,-0.005400390062838945,0.005468906483816854,-0.007664241269115215,0.0019259615156807925,0.016097085554748442,0.01457559458672116,0.09753732063749969,-0.012099739517778176,0.00012297237664463272,0.005129765324091383,0.01354806867506147,0.06884759673841957,0.0035397932734949097,0.0003047171069496077,0.01867401099165355,0.054961490939554755,0.2856663917700991,0.06394301834469858,5.419513619414676e-05,0.007058337838442857,0.01323897336687248,0.06985903848344158,-0.037870869067367266,0.0003123334598449306,0.008137485204755466,-0.015258682344042969,0.20764833282344816,-0.021071397978996754,3.049431025939509e-05,0.04178622115020097,0.012992557759919681,0.15619305270825143,-0.006918935366717811,2.7791670508480626e-05,0.009511836044628564,-0.034851412047077236,0.07539802082302277,0.0035908688561993823,0.00014889605410220536,0.004173408930846034,0.03813059644610828,0.2686255449269643,0.005648861938412667,3.278828227156495e-05,0.008140479202880318,-0.012058101965146511,0.0324441583509101,-0.025877865794027788,8.239859792419261e-05,0.010508743158471917,0.00813879845874876,0.02944192144645346,-6.782489626504308e-05,0.00012639873866744167,0.012853760751385697,-0.046209776591377746,0.04417649664835105,0.09611586722630296,0.0005978856892146394,0.017916016203851977,0.011828521365611072,0.04135796977470493,0.015264298133817683,0.0001203808086261939,0.006609023509509461,-0.05881097601113525,0.20837939822932822,0.09874426732180477,0.0018114351137848113,0.04618786872084781,-0.036895246081072065,0.3030399421552967,0.008882898796104068,3.13078130750133e-05,0.008766778592612419,-0.004461108684555532,0.014207155757592696,-0.007406101746101495,0.0010266134077523228,0.012179865490103524,0.0065945534671454295,0.05170489125410433,0.005838283224815594,8.493357564230643e-05,0.013713063004831777,-0.006597516413798673,0.012040352281549328,0.005935788621525833,0.00012932624613051986,0.008463070008246728,0.0045947093332026736,0.007333471396646398,-0.08671049559082009,0.0003596270528727856,0.00819658287789596,0.0033040204532766406,0.013766842940748064,-0.02053267691493011,0.001860196018527182,0.00925851367913612,0.00616519942044806,0.0202696716397912,6.788037158496705e-05,9.758673457027108e-05,0.0007163735221951848,0.004019025751170079,0.005630578801321139,-0.011821420048877783,0.0017743730792946601,0.00605971559395609,0.020652310113364186,0.05849977389421371,-0.06540117444118662,0.00013987190400594862,0.012906142179538296,0.022985754407558047,0.049454539633768536,0.012357007880831626,0.0001884139154665061,0.0226545048437382,0.017730857712065687,0.07317819466843536,-0.030314786964164342,5.9137366220475366e-05,0.013783642071609028,-0.014087674169631663,0.04473572874188385,-0.03708598764900247,0.002984714806122201,0.002841804041284829,-0.04249551610960506,0.2650338688003741,0.12234467252548245,7.97594779385521e-05,0.0038060299195644865,-0.005159058848787378,0.025580363655814516,-0.006094701146558246,0.00014625965748227157,0.019029711134641317,0.01871800741894447,0.10943256685307265,0.009055787301564295,8.090246004526656e-05,0.00979146152617825,0.015766016087996937,0.07178705732003715,-0.0015603124049095606,5.5197983090994e-05,0.006725664629024412,0.061200931894849986,0.11102317217712418,0.018605911984764346,0.00026876567165893617,0.014329873971769075,-0.007433473386737623,0.03384589301295087,-0.005342558378847083,5.4613522579081076e-05,0.0007690898202301698,0.007954509379532067,0.08276621242273065,-0.05565834786825765,2.479656951362933e-05,0.005489133317947894,-0.005917998030362534,0.023933862305808472,-0.028833531271920183,8.643128954454439e-05,0.0017369090271233715,-0.004586932830090541,0.01896981851624066,-0.0007024652438405517,0.0003811423219203692,0.0016726137834830075,-0.0007500805945075723,0.003557008512816713,-0.004837509674445386,0.0001207799432772614,0.006053833481742818,0.0038909814673079362 +2022-11-28,0.005780807349877104,0.039285721411630246,-0.13469064480270562,0.00015561101938533744,0.002624163770134232,0.022150107151377618,0.07175569938792867,0.03045262676864407,7.406788716208968e-05,0.02302664481682448,0.03155158207448234,0.10641466930544005,0.010308316033423137,0.00013715664254003036,0.017148623553985012,0.02468043796933385,0.028686906009036915,0.05178777905476761,0.000290360147320963,0.0018182455600156628,0.009786773603397168,0.022430034627824693,-0.002683769556930781,0.00022830076680907155,0.016530954500096968,0.013842782752138513,0.032889081773866534,-0.06080092735938634,9.190061005639768e-05,0.007081485734556636,-0.013877813405463768,0.05386907342931904,0.008004492198121785,7.55912267613803e-05,0.01613841200383773,-0.006161066025574165,0.05060469137234717,0.0057743388624507536,4.17506938078642e-05,0.009908448494228332,0.018106016532115018,0.016608820641083287,-0.0456631832142772,0.0008406764933761664,0.005210594561098247,-0.003557260546579983,0.00851351278700542,-0.016489134476791265,0.00014610624165252773,0.012799264784442913,0.02366334888712013,0.017225402241000477,0.016953008556039005,0.0006714770797056282,0.0004458798232828275,0.022869631653873426,0.27098310757871974,-0.00532753159130235,2.5150101396715736e-05,0.0018857017183780496,0.027922974808955052,0.07764982843558099,0.01110489225125313,0.0001068248328327879,0.0016167488858413127,-0.021765711878641496,0.1415628204829559,0.04063497072878354,4.327982413648843e-05,0.0019548627051663324,0.02897225708305602,0.027178472539714994,0.07538669085109267,0.002079123358015028,0.00942036393066069,0.03335065899321538,0.20886842215392634,-0.0008652419905635863,0.0001313964832018995,0.025172830472993464,0.008471715873842243,0.05427475484312344,0.0013420581482252569,0.00024170283442599263,0.00874454765457568,-0.03913732177179863,0.20856152779419038,0.010391775655025517,5.285886813120118e-05,0.01790174801905792,0.020243734114909186,0.11097661808650121,-0.003672838803636025,0.0003006394346532773,0.02049418451021917,0.028363103882372145,0.38450143184629476,0.012099930548509856,3.06115996948339e-05,0.015611183702138796,-0.016860184996145406,0.18303971772316013,-0.013454576586770585,3.077504575305191e-05,0.009400325250058919,0.08220660708267649,0.22698840992999023,0.12475422632571942,0.00011666102748284625,0.009068518044774357,0.03481502331371583,0.2539632968442214,0.0053071702421683044,3.166562834138252e-05,0.0030329612563666343,-0.029544178450009333,0.08912902094291561,-0.012089653487187843,7.349032435789563e-05,0.006218859745744657,0.009904384781744423,0.031288625649437185,0.01419285790126502,0.00014474034803748588,0.002246631658769502,0.03031853136131984,0.02250709099349756,0.0012952901939346894,0.0007699532469266662,0.02241231780823662,-0.01785957496089373,0.06293007381434282,0.001882620263619398,0.00011945350211629823,0.0022143455996706347,-0.016355909444770368,0.05475053715106952,0.0037188623267733257,0.00191736805663149,0.006407790625391768,0.01107862113515486,0.11808596896075216,-0.0016099687765648099,2.412512700917338e-05,0.005749486742698179,-0.0231608025214819,0.07712211236833891,0.014581584685311205,0.0009818518370785102,0.04104853182205589,-0.02153618106718781,0.17142039984766694,-0.06356945642415061,8.366269174844448e-05,0.003040293340347628,-0.016465869701982827,0.025255727119452002,-0.007898995350104793,0.00015387575052838373,0.0065058303837454805,-0.02055274561745013,0.029507148370919202,0.012581875232827642,0.00039980343426864395,0.017273079753282967,-0.05047151933410264,0.24365387469034966,0.05466077902201097,0.0016055483828156347,0.006734093839245106,-0.03029372798083791,0.11335362544759187,0.047955130336603057,8.574477732790864e-05,0.005443337749746828,0.0001734719938334629,0.000266395370190472,-0.25515203600445274,0.00161875040174504,0.0023492718873188243,-0.005206991494336508,0.014400622221880413,-0.0034914671020110353,0.00014325891158560193,0.0014301372913616249,0.0012239628117290658,0.0028802719968119405,-0.02797069925239633,0.00017226422580902641,0.0008128361015736385,0.026395765057795298,0.11237099609897415,-0.009868896516693672,5.733158500393744e-05,0.010297048331641757,0.032600661276761846,0.10849350974372862,-0.051457416098804123,0.002848004745676939,0.0020200888974968084,-0.056999232354629344,0.3007264707968145,0.16774735750288833,9.428398278139377e-05,0.004739806637611573,0.005635013204317659,0.033707487694042346,-0.0961933634448625,0.00012123536876540366,0.008448887653646398,-0.03258662316689281,0.19628552331822727,0.023077877526083958,7.852352494756168e-05,0.005731680549792031,-0.018869505067414943,0.09062225257123784,0.015092014349117553,5.233268903763122e-05,0.01585442079917317,0.06679470582504166,0.11225986067144934,0.08018186188424062,0.00029009947088577687,0.01043799090077218,0.026255522684870868,0.10816563998010803,0.10708798734663182,6.035951203682523e-05,0.0037950952625552077,-0.007938531595241388,0.0807404641989196,-0.02231561876156896,2.5367649068926437e-05,0.00701080566577222,0.020398312892149217,0.06594732934733115,-0.07418335418462944,0.00010811999103489847,0.007161894767412887,0.015422498670050315,0.06782045375691255,-0.039950483804134296,0.00035844458280704327,0.0032409335004992485,-0.017954122625783633,0.09717176744006387,0.014710711085502962,0.00010582685284348897,0.012952275796455207,0.003934906752253031 +2022-11-29,-0.002140082588413646,0.01510685090779081,-0.0015055151161858485,0.00014981081768199493,0.012707863187278158,0.0012461649243021107,0.0036238016496939157,0.0022653098001373714,8.251285823072835e-05,0.0020082665640610486,0.01651499702393781,0.04790051128559171,-0.008552409664558978,0.0001594907701622911,0.017902932116983884,0.00415035197433876,0.00400508189756458,-0.0018533118865752074,0.00034973684198137624,0.009845172822588368,0.019661610471844938,0.04734839470198256,0.0047277869316008515,0.0002172759216434048,0.007771492691972834,-0.021228133910080153,0.05040135329196047,0.02466444001197275,9.196368407596664e-05,0.007929982504065639,-0.019394315837990752,0.07157527079437473,0.019568277622539182,7.950625902660645e-05,0.020254213293949882,-0.019430741057185758,0.17922724379760144,0.01477903264549476,3.717782275128655e-05,0.010361461393413839,0.010725992048982995,0.010501832661713686,-0.029644055424130136,0.0007876207758818571,0.004028319520036097,0.0012671157833402846,0.003512781750295513,-0.014692508951744392,0.00012613250447314137,0.009170611150992387,0.011766644919879235,0.00811192041133973,-0.08679535671374146,0.0007090115748797996,0.015907112918673992,-0.002759319393372733,0.038121847218669146,-0.005967417771727483,2.157003383005265e-05,0.0003308113956024179,0.04037350585078938,0.10341761803226068,0.023830365883208186,0.00011597195287641891,0.00456710648070614,0.012324127196174121,0.0657545282599515,0.014139718613429591,5.2758485969740285e-05,0.006525374630638928,-0.0012633135501371408,0.001173943219974317,-0.005526660918871713,0.002098877224839939,0.003822236019384098,-0.013125199620885321,0.07485255984272755,-0.013382414844440981,0.00014429502838180682,0.004031168272576784,-0.01918859419999692,0.09656943589709566,-0.013724098153314582,0.0003076888055769568,0.005095922955691146,-0.014518485120901961,0.08078838345986525,-0.008575769620485549,5.062130555003289e-05,0.024835958437247896,0.0028867518806270425,0.014711063546034275,-0.07438578642806913,0.0003234090684193115,0.022291168529662352,0.04102375273304287,0.5039203817188217,-0.02166735898218057,3.378342625067435e-05,0.0035505820834207313,0.011987457424982577,0.1401797005954876,0.020384169972600563,2.8570882738781515e-05,0.00168746622505486,0.018865129998079128,0.05492820540571827,-0.06276249686352152,0.00011063362634253118,0.0014254103485259932,0.029661220531717707,0.2019555094019158,-0.02110517908851743,3.392545559377633e-05,0.0020753192339748954,0.003559413008996663,0.009993370623497458,-0.055976858419860054,7.896666035956734e-05,0.0016632239759458507,0.00225120136946656,0.008648547122653,-0.05099669818542511,0.000119019955574948,0.005282635652808871,-0.06103692074051451,0.060332912464572584,0.09237561550682133,0.0005782476633331935,0.01288396281771991,-0.012549419397652325,0.04861421507693963,-0.0014428886271779305,0.00010865416148032006,0.014647022297079561,0.022287675932284857,0.07561964169827888,-0.05236167533159902,0.0018916872810356966,0.006187137069248413,-0.009485787929145091,0.08335594918343792,-0.02898507614007432,2.9263010631745353e-05,0.005029720200342235,0.005017654361838689,0.017319524709977982,-0.006918548534163141,0.0009471876829213318,0.026209338136677533,0.023582987493436458,0.17809544876126807,0.018745192970059752,8.818031435900492e-05,0.0058378670452171,0.020653344285738555,0.027470883524709267,0.014581300309725117,0.00017744474545931872,0.00488093620337243,0.026161947542049525,0.04210928685231012,-0.003935269294774135,0.00035661211889196243,0.00849751220417253,0.004530208270363148,0.020786852797422335,-0.003800775675087945,0.0016891949296220774,0.03874508180168086,0.00808655928363328,0.03597275625506473,-0.0016882236298545366,7.212410387120095e-05,0.006243824035685047,0.0035370420440378647,0.005369324972422774,-0.0126487864258062,0.0016375618951557187,0.03301550930209703,-0.028621062788788395,0.08718894691521963,0.017570662273744136,0.00013005898510212805,0.004171516183315338,-0.005653273830469293,0.01817500194968631,-0.0177007336561178,0.00012609153510440878,0.007214216576329332,0.013026443335703892,0.05559776615134229,-0.011165946032272426,5.7185041045500836e-05,0.010415753995482068,-0.02633760170743151,0.09025191818984872,0.006004479848305774,0.0027659087143979727,0.020171205712172385,0.0017940997079012797,0.008094725435398945,-0.025501006824737223,0.00011025163119748887,0.022103314419922315,-0.024666687986538212,0.12408127219815575,0.06872065764156399,0.000144166842627353,0.01005788256902433,0.014115778691480224,0.07164445780513777,0.002868916851227229,9.319034922236298e-05,0.0193118973063318,0.004235338867157316,0.016933298038685082,-0.006470564801764221,6.286284126037525e-05,0.0033685024168435213,-0.05735087727580461,0.10610978913202271,0.12263674409011117,0.0002635202586729173,0.009118828790610864,0.01814727599999047,0.0682157715673688,0.036125165975533766,6.615170232227348e-05,0.006980745930699533,0.012474500864391825,0.1441601546073547,-0.0261991333892151,2.2325912767065856e-05,0.004012467060073629,0.011646273087295442,0.038842414495751106,0.0013837688875620586,0.00010480686140250557,0.004728001203609259,0.0024626860480260224,0.00656641412619014,-0.0012362745295616943,0.0005911650519196685,0.008639311056755528,-0.022574972993275096,0.10444341616698281,-0.026964993926819975,0.00012379923670310507,0.03577685462036961,0.0011118486945091428 +2022-11-30,0.03188685345310688,0.2558544028241026,0.030504154338877182,0.000131796948426517,0.005882101701981052,0.04301784765370222,0.12809168596247264,0.07894095861674301,8.058204076542926e-05,0.00653328574468297,-0.0023439056702680016,0.00728430561982855,-0.00382216469107097,0.00014885011531075057,0.018270398795446837,-0.013415543623058353,0.014123023363842559,-0.04078880725090138,0.00032058888019303723,0.017533657089673207,0.04117608575241706,0.0875501956519431,0.03607590766053717,0.0002460853222756658,0.014864412441828982,-0.002409063204063524,0.00604236325223131,-0.004707627557610722,8.70538742291366e-05,0.011268564226163718,0.009609950839448378,0.03888527307358915,-0.0005268076123765693,7.251466885236509e-05,0.010824515774944247,-0.018778816165558952,0.13502785729466027,-0.061370851585447445,4.769177088305235e-05,0.012675949672908837,-0.028616497483309907,0.023750414953386687,0.047966648323755766,0.000929159051674374,0.012799326991512233,-0.011515820706836738,0.02870599967213132,0.00539867887700652,0.00014027623645051997,0.00020337401332332517,0.007008210979064895,0.005805350083988019,-0.009023557229465578,0.0005900694244316406,0.006215872266275445,0.006216097677760467,0.07914700308538364,-0.061738162865768505,2.340486523237512e-05,0.004848541143257819,-0.018562269824815587,0.055063076143120594,0.009914870049637783,0.00010014324253259009,0.007770045654439558,-0.02333370792615284,0.1382386617881598,-0.012537705857052356,4.751339405137059e-05,0.015272879367679033,-0.0006387276181509418,0.0005659463124467976,-0.01925034583175945,0.0022012199144201016,0.020354833892355,0.04112572928380361,0.23725627379534103,0.002435611171883407,0.00014264219552374697,0.009539218903409351,0.07287635814398029,0.3839942755408363,0.08665491147495946,0.00029388007587414204,0.03505317610454691,0.0007961485564190782,0.0052445169841595215,-0.0019443807961337415,4.276116923438124e-05,0.006096786532344207,-0.03415066219434198,0.1565970088382104,0.007307259198918135,0.0003594201940691965,0.013296768445140557,-0.06941213909192666,0.9359343466667541,0.12373800412436284,3.0776574088246754e-05,0.02785571939592642,-0.0016569383400813287,0.016862423381020307,-0.2529311177701373,3.282978714671524e-05,0.002236062527049513,-0.018411604923027403,0.06090923204274475,-0.02827265416017605,9.737136970074689e-05,0.02009828963748464,-0.0336961323618133,0.2645351222209311,0.03720698925923194,2.9423144880078057e-05,0.00025052953702247617,-0.012232160601399982,0.03535080797754356,0.000414363381149453,7.671516303024017e-05,0.003967017478673719,0.0029084701030652436,0.010896109437357459,0.0007185252287984159,0.00012205111267906965,0.004214839894847143,0.04339993434797431,0.04142103776546332,-0.0289071963062414,0.0005988853071690083,0.028337512199801202,0.059673952372469204,0.23738604380931566,0.23895582117306166,0.00010580729939855507,0.003156688582763169,-0.017851203796623593,0.06067347373793837,0.0058976456676530665,0.0018883731749167534,0.0065849904914788825,0.014300954051608682,0.13103053693629046,0.004401363301812424,2.8065622920508808e-05,0.003026859641878311,-0.025219059683390582,0.05710789049206657,0.014101396886393142,0.0014437900388922004,0.016450427885305135,-0.002358632809613222,0.01836685020088774,-0.0099116414171528,8.551677113055885e-05,0.0047048875590213765,-0.016201765102739314,0.02239976563391263,0.020670027230096297,0.00017071207580738806,0.008010008549615817,-0.005477016471628474,0.007853329631052694,0.0010383941760934313,0.000400307875367086,0.037025566198424786,0.01716831095586768,0.06943564161529475,-0.03412482432725555,0.0019164410240615332,0.006212523830528172,0.00844898151592485,0.030594520112604974,-0.026290069741579148,8.860354228283511e-05,0.002680532797190632,0.040507848434273575,0.05541815491437205,0.05048906843094358,0.0018170392381527557,0.01082693438798851,0.0072523854399457474,0.02330875882279934,0.004970251805671575,0.00012327578184613617,0.0019594288528561408,0.02907897226662247,0.07124699740596656,-0.010636219086616059,0.0001654523206347352,0.006588413838873466,0.004484997259421627,0.017716359394001756,-0.0007383975374413149,6.178764252249616e-05,0.00335745339248099,0.014163736825441938,0.04686809633665927,-0.12567311616617535,0.0028643005910242774,0.022526630045743314,0.051055486514988015,0.23648784991176935,0.16707993855902253,0.00010739255055064402,0.01797933958218323,0.01782610916331138,0.10242717408646906,-0.007827276716488994,0.00012621243778915137,0.0023234386689209904,-0.010639810588585206,0.05815012493045474,-0.007119580552197577,8.654299948244598e-05,0.004050956442323277,-0.013897283112237941,0.051035222227097804,-0.07001732746419857,6.843957274354824e-05,0.004857716771993091,0.022979554727492624,0.048908024318381385,0.003466682356870254,0.00022908195658101124,0.03229074024177038,-5.337798498581879e-05,0.000215196519846699,-2.0612925693290134e-05,6.167956574670432e-05,0.001726052720149303,-0.0015149607298257913,0.016081084479837266,-0.027976392032495,2.4306214567753136e-05,0.02338945432911522,-0.01495388087860846,0.0521762432922579,-0.02720322495993416,0.00010018208701825119,0.007685746238720678,-0.004772749333758126,0.02006561688144091,-0.00569283760449632,0.0003749247242440983,0.0078094969523302814,0.06372506519780233,0.31985255978629906,0.06747222281529597,0.00011411224608626877,0.013485699656549366,0.005078286893702976 +2022-12-01,-0.00519110679409609,0.04140721871949363,-0.003965126001151828,0.00013257770200867007,0.0010367391853986602,0.03723564066224065,0.11975904161428862,0.03757124788790178,7.46038165128077e-05,0.013870710783598745,-0.01909593983802287,0.0641156449290835,-0.03174051072038138,0.00013777620786892397,0.006545494007922649,-0.025381315119594284,0.023042128664438565,0.05773485828190283,0.0003717571927945297,0.005865425398628481,0.015168074538669108,0.035787292218078005,-0.009875937441550246,0.00022176825897280876,0.02244795628139224,0.017838211703663835,0.04632906367071883,0.03911699685422066,8.407067427474799e-05,0.0028320429083281045,-0.019642264597738383,0.07002892706506125,0.017389228666524377,8.230077783813553e-05,0.021796566851983078,-0.007020974522600361,0.0666310169643797,-0.048781709792199625,3.613429366651173e-05,0.011217452909476561,0.002571938914162312,0.001978364722450571,-0.03872401774846698,0.0010025339230504736,0.004534150085258006,0.013698570180746873,0.02864162817602014,-0.0040766433023656104,0.0001672397166209696,0.006066919201642382,0.007820391360928733,0.00623511026440377,-0.0032928363690242915,0.0006130680837536077,0.01199234243142661,-0.006928665267066404,0.10051448604381387,-0.009818422251425936,2.054204676546178e-05,0.00587495932322724,0.029237598522776333,0.09126072306893805,-0.03704940759442223,9.517191996885626e-05,0.00232616661305789,-0.013414432610386792,0.05640457906219195,-0.03364932604238247,6.694524940831799e-05,0.0034862241000139602,-0.01721209451055329,0.016047550879048456,0.0014177549215072347,0.0020919337825121283,0.010813649312946753,-0.05588303280567785,0.5030628566056923,0.007886144306849675,9.141339167133413e-05,0.02769580923515867,0.023551518177976724,0.12929173623581156,-0.023422205127979472,0.0002820696581648111,0.027107699255176844,-0.008086282201325594,0.04870080594673389,-0.003787322317660638,4.6770681835044664e-05,0.05203773328527808,-0.08210281244917818,0.4151992241338022,0.27584483842726726,0.0003259029625790266,0.0051412873568588355,0.012254394058826753,0.17610332115315197,-0.009847227033038565,2.887716314295744e-05,0.0008475932633253106,0.02066704236788549,0.2205698627394596,0.0642079182264438,3.130501137545736e-05,0.0004463263547267412,0.04265563812975184,0.12598002190376625,0.02276691556897869,0.0001090680427481159,0.011232276058008526,-0.011505601755260733,0.08671090273010426,-0.013163064470962847,3.0649825491481856e-05,0.017792097795817335,-0.02669894544206721,0.06917872774569658,0.04723341632348114,8.556554472325228e-05,0.004081385790862303,0.0027812599443807996,0.011927291502975626,-0.03291855309521268,0.0001066223728052613,0.00019702067769326154,-0.006989212692234862,0.006252148826953115,-0.0033259553685970455,0.0006389612349719842,0.020633198538717572,0.018072601872405787,0.05791198052776936,0.0011541415774168164,0.00013135247880843184,0.0009671096802464749,-0.029704073636922144,0.10865732296965391,0.028737554471957368,0.0017545921684807043,0.003329857198107443,-0.057404616248911695,0.6073133843661168,0.08712530190238779,2.4306149277471868e-05,0.00773400854745696,0.003407926317067057,0.01103207002158264,-0.05015567458189697,0.0010099606574797526,0.017003158175368946,0.007892201477199157,0.06188441961472178,-0.008998740482300501,8.49263549795556e-05,0.004933875892362756,-0.04493609335249743,0.06388755921027185,0.1294348374320546,0.0001660062361361965,0.017473554513969484,0.009431695448819923,0.015594184574711302,-0.06578745589772438,0.00034716106531558906,0.009086824084993885,0.021924650192728868,0.08221991047686986,0.015033267225557737,0.0020668359860746793,0.01685574767194481,0.0043522200137854645,0.01547689052737753,-0.016218755872930164,9.022304938770918e-05,0.023210438521791565,-0.001021483287640156,0.0013901054858154794,-0.0016729861177917573,0.0018266725400891653,0.007423889234397503,0.03020566106918099,0.10931546615315418,0.021099426370850674,0.00010947697037356559,0.016585761008132353,-0.0015583319012499102,0.00428278080864665,-0.09284791288266189,0.00014750083863606156,0.018221269219118177,-0.009831854211237737,0.03661383830248702,-0.05649057360625318,6.553964669750122e-05,0.017767294595457412,-0.009161191456792747,0.03171703829800449,-0.026197352275427313,0.0027376466377168037,0.0023268318909905393,-0.008600290391114688,0.038971052349760206,-0.0026176780071472776,0.0001097770492269198,0.005881706313761602,0.021817771672383288,0.11581891882406588,0.022144120201321463,0.0001366128873621068,0.008797010974433032,0.025872446955025035,0.13468863406242018,0.03671237202440163,9.085634363828192e-05,9.66032418818814e-05,0.0003707384173402234,0.0015247383197028723,-0.05253754435565936,6.111103953704205e-05,0.005527262981522762,0.01967659572601077,0.039059680332989705,0.0011126993442907534,0.00024561261677078644,0.007753182540090555,0.0040552877275410034,0.01998864178881756,0.0013907890022559718,5.044902346317783e-05,0.00899463258433978,-0.006600921456360489,0.08129825074032011,-0.014339747859790556,2.0948582885578115e-05,0.01889662523951637,0.020239718541807443,0.06601331800137382,-0.0033562386887312765,0.00010717213223769643,0.0006791731861904035,0.007538099996738501,0.028878242499029122,0.01290932324543164,0.0004114519322914895,0.002150071028718366,-0.008885756698504145,0.04499117240425592,0.005720979962475906,0.00011311987152818561,0.011402816831498604,-0.0006981895353641112 +2022-12-02,-0.04096179281934272,0.2988123990682053,0.054096173290805585,0.00014496625717972224,0.005110786204784443,0.005715897499283568,0.021686975167971162,-0.07108639032205648,6.32405992550067e-05,0.00014065629121542001,-0.01492072921531679,0.046820164806473615,0.005644399945777215,0.00014741928999074415,0.002227344862492422,-0.011815284525205302,0.011315157997314376,-0.00031338731256014605,0.0003524125923554041,0.003358475106102259,0.02395263488072731,0.058550349069437,0.0030869202538929695,0.00021405312773059725,0.020311625347302024,-0.011571701956772517,0.034398230549354696,0.0142177186060622,7.345271891294378e-05,0.0035196468312709266,0.004860014860678055,0.019392769574450814,-0.03967875880392564,7.353390255422416e-05,0.010677282051627261,0.030894741845684828,0.22314839587587085,0.017967551476470618,4.7477672011807766e-05,0.015860988411475655,-0.019571726423315824,0.013992377659018652,0.013889703253489307,0.0010786546120345854,0.01354173383806012,-0.014426815492155473,0.031441777279203775,0.015489883186583,0.00016044466356692099,0.003740280978115127,0.0067519272694878734,0.004902311852509663,-0.008454946702617433,0.0006732109619728705,0.013997820721727925,0.013623990739575452,0.1784282080423302,-0.0065851944648682645,2.2754307106579654e-05,0.007335244098281595,-0.007131392108228922,0.02742717735050047,0.0027633855087396924,7.724035109229201e-05,0.007632727514607696,-0.028469321904091602,0.176985979330294,0.04874736973268362,4.527933897727783e-05,0.0018446131101528605,-0.0008526005940522062,0.0007355774619498338,-0.027909695100514206,0.0022606857118926352,0.018609088614686624,0.0062720751801006855,0.04868111250511995,-0.011920533739763959,0.00010602367863238835,0.04230539371911177,-0.042631492528004085,0.2206709471334559,0.03522126705159239,0.0002991531708324202,0.022206729771642744,-0.03530080172738021,0.1712446855709809,0.013611548821128434,5.806687076690319e-05,0.0012955512102800384,0.02633293622815743,0.1344008652871003,0.017937589161047165,0.0003229118851844049,0.013739390332072863,-0.006091959679520608,0.09091160881683427,-0.004680922920827058,2.780788176256294e-05,0.005355972632276015,-0.010168930182314864,0.09628437201507611,0.02404469027806576,3.5285897842690533e-05,0.005754797484863015,0.0014681571177006395,0.0044145729164201085,0.0004846672382743042,0.00010712888781563205,0.01414005986081096,0.07318257742288413,0.5711444248669448,0.018007451122230643,2.9597439064547965e-05,0.023545244073548015,-0.01797180784201222,0.05771832420690034,-0.017708382088524134,6.903279149115689e-05,0.004178727517372752,-0.002930357673603793,0.011179851270778496,-0.3400517143823566,0.0001198486654182812,0.008480426319905312,-0.035411895374272265,0.02559236461954271,0.04008044623152992,0.0007908867854732251,0.022387232862735387,0.020517614470104407,0.08779854095214194,0.022437595606530317,9.836159790990406e-05,0.004293602224693686,-0.00897917589138014,0.025199742431849217,0.004258227739330045,0.002286965177120746,0.006100082221929988,-0.0006305249666913154,0.005950626140668588,-0.05688962400707972,2.7247196099962056e-05,0.02181604548893211,0.014750607610899255,0.04198709309325199,-0.0008801840965588255,0.0011485909022647801,0.006255667914979912,-0.020350190307643037,0.15505499204533607,0.01707084863699888,8.739938268085812e-05,0.013015116699880334,0.008974763417641233,0.010116112954412664,0.0006682753979666678,0.00020938941587532773,0.0005417207329690928,0.001184683004570685,0.0017855252047478244,-0.02120652576180336,0.0003808378342932546,0.022673128256799742,0.014447075788203501,0.05177734917014497,-0.005864176765436374,0.0021626711161825724,0.019412537880659844,-0.010790594901361635,0.03802010155566731,-0.01931859744877118,9.105891819585098e-05,0.014175061712113716,-0.0030450387169393377,0.00433129198828543,-0.031206366440234747,0.0017476423032713865,0.017736912450494927,0.01344684486935692,0.0407585190806152,0.0018703464471005035,0.00013071277513427735,0.0050264251452473655,-0.01451069557500289,0.03684846055230767,-0.003096630861687692,0.00015963541969020282,0.008286721510643556,-0.004691514375996503,0.02133194804466607,0.013668103683268646,5.367801646726307e-05,0.005768752998337555,0.005995440479980972,0.020163866862691438,-0.010235837877700722,0.0028181579637138916,0.016033180903436067,-0.014779303254824357,0.06371693552140602,-0.02629402586237538,0.00011538242199913866,0.01775757661874641,-0.0019707246714530608,0.01163638152069862,-0.11752561308172442,0.0001228199131576586,0.00977749287304838,0.04962655696670411,0.31626033969587786,0.1242353375564631,7.421951482870618e-05,0.014064250582541892,0.025672626110401754,0.13252564297601147,0.009710700663276553,4.8687533161760905e-05,0.006995257813449759,-0.04106802194942205,0.06798247533544852,0.0514326320721533,0.0002945345223798139,0.04275669742880194,-0.0231453109382873,0.08717201481478407,0.05832316145964076,6.602376882075837e-05,0.004142395325695523,-0.0014588328586129943,0.017466647137035822,-0.0615661442597995,2.1549007660967726e-05,0.00872294370033844,-0.029237214381993896,0.09110633218910948,0.14339426224321353,0.00011217508152884229,0.0009449080768137105,-0.006767537112214397,0.03282648419017216,-0.004007872022590269,0.0003249632473137936,0.006555845870158227,-0.052834225023146594,0.23435908781112255,0.0762952378512781,0.0001291235146072354,0.006463254610671019,-0.0035041028644287766 +2022-12-05,-0.0183167285446525,0.1261447760650426,-0.015215504248180993,0.00015355544572638304,0.004542067629262837,-0.007517174247434694,0.026688459841768906,-0.08685311597866126,6.758364826737143e-05,0.0035096992835836087,-0.04392951231507759,0.17972393400972902,0.02753340829260619,0.0001130700723555159,0.00423688567064741,-0.013007228836981268,0.014532147587724384,0.005535874307342491,0.0003020806014453402,0.007235506859826956,0.0015160317259435027,0.002858301232654462,-0.00691888322696914,0.00027752241466789734,0.014942876517578037,-0.005017600273045602,0.013074216715871594,-0.007430936056626321,8.379673948503378e-05,0.0011903906750316668,0.028161104617189,0.1141978805509163,-0.11126698665972891,7.2357157480643e-05,0.008843264213790808,0.009831586746426724,0.071929122633481,-0.011928812895439178,4.6872429764507206e-05,0.00452665103569226,-0.008047331655199125,0.00784756332355997,0.0009064935876044215,0.0007907912552414113,0.0029712442393958023,-0.008298803822698155,0.020513908382759984,0.006117374879180596,0.00014145847542176772,0.007295440757384556,-0.018086137415699716,0.013944184966846886,0.02617098618558385,0.0006339821779807736,0.009529235108678105,-0.018814461215674677,0.24940743620043332,0.073665440909463,2.24804591638172e-05,0.002664150625839673,-0.03145096092233373,0.09142240916356087,-0.07608113098101735,0.00010219562292928008,0.007079615364587343,0.0005269667758620157,0.0031005970931447294,-0.15985201115137437,4.784094145911735e-05,0.0008558101151054102,0.021852512711157367,0.018795021843190592,0.013871293779582685,0.002267678692226884,0.0006852672751722229,-0.01175354485316181,0.06267311830740736,0.0005980843626525601,0.00015432620374696617,0.0025602896087275687,0.015104002231330418,0.10149958356295029,-0.18639409087329062,0.00023042840442817573,0.0005908739608352113,0.017822000051098352,0.10881678980187676,0.007817169466152622,4.613403990125123e-05,0.015482335827498002,0.03201677029119781,0.20260875066667647,-0.027340654620740965,0.000260439065862161,0.024968649022705906,0.10177338263343332,1.4003593814215336,0.1345503076550809,3.015955542611296e-05,0.02075610764114609,0.008984885636466143,0.10672602791990148,0.0004950340964304098,2.812703258483585e-05,0.004029558527940509,-0.002577903413820364,0.007387087286179654,0.001970948136315318,0.00011241290387443787,0.0010615595334137868,-0.0471267874469909,0.37056681501813843,0.05202836341166791,2.9376069495225595e-05,0.004680908131756175,0.01932029322604037,0.04914762380014307,0.02068876985611375,8.715425010071629e-05,0.00519503872263543,-0.0062932109061944715,0.0271472600128182,-0.007732653828436341,0.00010599731873486517,0.0011330178452323197,0.0019208132821175719,0.0019697733822713654,-0.10831942348221092,0.0005573711006137751,0.024962236916779422,-0.03274181530245374,0.11230681810198219,0.03156926322442002,0.0001227107584703404,0.03499178057015057,-0.045965559274999596,0.14050142500012436,0.01659868803062047,0.0020997664600071967,0.005291200628106841,0.024243155622402725,0.24513500505785168,-0.022281987848475807,2.543115073795497e-05,0.010877348145967755,0.07368362356221346,0.2236181686801645,0.07449190142881636,0.0010772962756106135,0.01231975677588061,-0.017436851616763352,0.12506923201826992,0.009043494334461326,9.284173161140376e-05,0.00742655563990942,0.018014258296448343,0.02845848270157749,-0.0015049410400395263,0.00014939980492471793,0.0047248182702657425,-0.04502964963139466,0.05481935938041695,0.04429204752274643,0.00047148570029826556,0.004157711666139879,0.022150285616756533,0.1039907363298902,0.012404976220845453,0.001650954173361763,0.0019940084784832233,-0.026003905240790187,0.087856336329924,0.01923297398446529,9.496331272837211e-05,0.027338388794188366,-0.043650119985490135,0.08320942758218722,-0.09909867331845827,0.0013040375562105285,0.005283344359414671,-0.02619394728315703,0.09271326027392138,0.011851227617691935,0.0001119373786229971,0.008404950152765878,0.004644564321860838,0.01336587215646119,-0.062372741362952594,0.00014086660731520994,0.004420888756125466,-0.01885419069855286,0.07557174181116583,0.04665752250045889,6.0892301389530465e-05,0.002052570209599247,0.062009405629808306,0.2327314225339392,0.09301404649112853,0.002525344330203828,0.012550483285762297,-0.01829684552112098,0.09567237135350493,-0.019621124638115998,9.513279433917053e-05,0.016425046515885177,-0.013789668577119874,0.07214922391173631,0.036820575938258236,0.00013860629311987426,0.013386110178791214,-0.003994994417696241,0.027199264887365703,-0.006039013329401841,6.94716652275297e-05,0.0029437952622283965,0.04535047315530077,0.21602420204614206,0.03807831252412733,5.2762675271045854e-05,0.008666973364095339,-0.022907848315186535,0.052928574325405674,0.012277293530314728,0.00021101994075251143,0.022365695476231465,-0.009938538639278044,0.0349602990113679,-0.059042109715784705,7.069061629639237e-05,0.0025519562460256644,-0.016072754446430276,0.15439492306577532,-0.24211607605504273,2.6858922112139354e-05,0.0039019834960643254,0.024093292321419692,0.06645741029714952,0.006829108392900456,0.00012672482515931855,0.0012345881638442067,-0.02377507803946366,0.09145062297577122,0.01578471620675903,0.00040979179047485263,0.0025506656109033216,-0.023604492453212646,0.10958860363941954,-0.09799537853399505,0.00012336758673978137,0.0025711128882031204,-0.0006733958483090617 +2022-12-06,0.013060517387848353,0.0955076203867095,0.006244604422275086,0.00014461353457143863,0.010629409020954102,0.014637410151082393,0.040638236305447696,-0.00078180450384993,8.642510532471836e-05,0.023657789735701745,-0.00846067740471541,0.02999799807437918,-0.0399004595695894,0.00013046982138717212,0.00046989991928195814,0.016758268740557223,0.015525526320986855,0.03292942000321413,0.0003642928732220168,0.002143654540916389,0.018074994873805005,0.05075893891397105,-0.01998921538120327,0.00018632169236616677,0.0074562365155232116,-0.005419294465280513,0.015530302307071494,-0.006537350233639327,7.61920361664072e-05,0.0004370983590587169,0.003429381054253865,0.009185478034871263,-0.009248294261891618,0.00010954784445186773,0.008024507740562285,0.01228033555784952,0.11531449440801078,0.0032892937045404546,3.6519510632171604e-05,0.007194413588340975,-0.005428821896935498,0.003908039925641453,-0.0031052024349630834,0.0010712513659474029,0.00363989888548359,0.024838007335810933,0.06499418350063502,0.0038702576910701818,0.00013363005438928597,0.02809629226178154,-0.009451454617161351,0.006699093456444113,-0.0037900286523261622,0.0006896154377884065,0.0035617085257646053,-0.0023531044856660564,0.028371405405350974,-0.016591911439651896,2.4716282567411606e-05,0.0018446249620736835,-0.02262726536407997,0.07521494579644725,0.02479268104246513,8.936736668421966e-05,0.025891113469531206,0.003193295075876779,0.016263733478119227,0.007494339688714297,5.526887453557603e-05,0.005419709763393395,-0.00352907662853251,0.0037101610024567557,-0.022590361230478837,0.0018552024315424173,0.011357850409605179,0.09672002204817086,0.66945626103102,0.04091641845182388,0.00011889026279203823,0.0063255157381136694,0.002367988035606119,0.012805975176049627,-0.00044566887582298193,0.0002863354239671227,0.010216297579475331,0.005546293480126551,0.03186904788968642,-0.03058915109786131,4.902241628633634e-05,0.02063289748150662,-0.03785686957249232,0.19507023196184223,0.03646125322428615,0.00031984569220451904,0.005134604538943672,-0.009135228900196383,0.0999102957030964,-0.018234834927034385,3.794367753503522e-05,0.0019993756843919514,0.007643826136707325,0.07789918140333119,0.004490446080176735,3.278382443657424e-05,0.00425897556402885,-0.01711908344331662,0.0401769834026897,0.007980513918766665,0.00013725429360932087,0.008704936736143943,0.060252574425818675,0.42603488116264815,0.025921536393734353,3.266802099049176e-05,0.026283049721506795,-0.0031297993964237527,0.008181641414104456,-0.07407414739279979,8.481124596503236e-05,0.0033855493990895685,0.004256817955189729,0.016592682674374023,-0.01812797610448102,0.00011730514636809752,0.0036693038457150237,0.03376270253489,0.03384542405853406,-0.0035849496553745546,0.0005701810822331492,0.01463313109817679,0.023665086665861448,0.09399977098051193,-0.011992928014231368,0.00010596618834964012,0.022368821325062502,-0.07096695240068246,0.2673816443843644,0.0940460920140882,0.0017035062847959165,0.01112460826521954,0.01502096671704454,0.1281137227679238,-0.0055639116831203575,3.0149799465418324e-05,0.0064500721818504985,0.006641628467640614,0.018621477944783183,-0.0027080566848695273,0.0011660890047000443,0.02299416304908492,-0.004192914175741551,0.03182023317636404,-0.013319795452086456,8.77482084801328e-05,0.0014922850296262688,0.01407111149977294,0.01891012286830772,0.001232421698326045,0.00017562221083849175,0.00011171601995154778,0.024340951103732654,0.032605333585408014,-0.07121656810075984,0.0004285019571961992,0.004674323260285204,0.007845799601976735,0.02510853486173705,-0.0027451178294970787,0.002421955620264481,0.014442648734382696,0.02818222111315166,0.0908800439283268,-0.013575355811895964,9.949403866178896e-05,0.00977149969415507,0.042613587938834824,0.04608172843600373,0.09309133251863128,0.002298775361105133,0.0023813294112068886,0.012255230717336352,0.031632981863995956,0.000716292010587438,0.0001534961178053369,0.011567849927586913,0.003510076198525381,0.010563674778231506,-0.17065618110250072,0.000134698232923681,0.01256726097486988,0.004797492041058248,0.018681625244235254,-0.09104126457383133,6.267776938392549e-05,0.007344828155595558,0.07762632345772469,0.19963816211966215,0.11443002500996503,0.0036853905037553276,0.01816926881590423,-0.031036101049365442,0.14358664467694868,0.011482813870460734,0.00010752109555494002,0.0005894506894682565,0.006549766038260298,0.03492359198601504,-0.008031911884446869,0.00013600900570170252,0.0008055767446022567,0.005514810282353873,0.02873982578680653,-0.0016466320004348356,9.076013729130095e-05,0.0011372390800980922,0.0011678102335656582,0.00476581152704103,-0.07314273312654483,6.158611494217082e-05,0.016921746115343514,0.03999615939177912,0.07566219237557593,-0.013784589321595353,0.00025773224892123474,0.01483504709342874,0.004914493014808071,0.0218686337426356,0.0008538341333987459,5.5881936431067206e-05,0.011421203261181904,-0.022657168975156787,0.2183431690519364,-0.020052340665728408,2.6773017363995424e-05,0.013094560763782398,0.009646643073727076,0.02856213395249983,-0.037720248589392,0.00011805775567261683,0.006664521637946074,-0.008326239492392895,0.03329332154473493,-0.00433717996087271,0.000394202835944578,0.010758874010322592,0.027418747185433075,0.11972926541425476,-0.035726083994635685,0.00013116533875251314,0.0020797175208626907,0.008439173397347292 +2022-12-07,0.009453918772794593,0.06111123036803384,-0.09305926472817103,0.00016359778634873718,0.012505618801766722,-0.005159267950898934,0.02002492818110087,0.00011120181842538852,6.18198067785202e-05,0.0008609732631810635,0.0037139930313338236,0.01203111000051572,-0.032341383834963246,0.0001428014415120022,0.012616278457524908,0.018115427787382753,0.02455955478927353,0.028996341165781214,0.0002489407311311331,0.007790886424326443,-0.0006405318644339214,0.0014801496870504812,-0.0373731100333433,0.0002264294303807188,0.005873485752466735,0.008321958827722527,0.021243288063399226,-0.00014671635440266856,8.553632050295445e-05,0.01009343546906798,0.06286127355198522,0.19085277558428762,0.07873710913649162,9.664392293418602e-05,0.008228944390435446,0.01924408065970584,0.15061779005087889,-0.009899720687747209,4.381466665794139e-05,0.0003604901933921197,0.014294787570914775,0.01164695096447177,0.006221035543237095,0.0009464773937574547,0.0040678742487948675,-0.004942174075567839,0.011937167070053996,-0.08301910909615962,0.00014477002601679642,0.013250822444803386,0.01751378460130528,0.01310082119302527,0.024623959097709633,0.0006534401912047364,0.0012770851657959129,0.013252335722027844,0.17232000993551216,-0.026191824169298744,2.2918147372570005e-05,0.0018504539122335209,-0.03760132030463713,0.1048943778084683,0.03934244527556537,0.00010648830671300943,0.0016351118536329062,-0.0045951632616116215,0.025898959263843592,-0.0128425408757615,4.994366994136477e-05,0.005367493637086591,0.004627233869746939,0.004365968060356243,-0.034691067092577396,0.002067111335215602,0.014324956861234937,-0.04166826052110943,0.28415203094057995,0.02943891002791817,0.00012067205651956844,0.006794605344491888,0.016345712973184733,0.10656883344152356,0.00043819658367929003,0.00023750999399360894,0.000982206251781875,0.05488380703516541,0.38092703014941154,0.06716964452964161,4.058479848677726e-05,0.0038383996166504123,-0.041618963865263855,0.22801333308757618,0.049602464407990356,0.00030082770343911364,0.026518863951640895,-0.04430820555298102,0.5722777765176803,0.024270026234325795,3.2129762252899624e-05,0.00634133346243723,-0.02474922145432199,0.27680615250680884,0.1106703502503287,2.9872220885227153e-05,0.0009163470943179366,0.025678310835253928,0.06818421494065706,-0.053361583494551376,0.00012131244700203301,0.009844827319242534,0.06995604668971371,0.5446764932457125,0.03065343543519124,2.9667366879273166e-05,0.02573233892481809,0.00309614242394137,0.009347697709194679,0.0033380594867038365,7.343340275717477e-05,0.004716183424385186,0.0002499332743235029,0.0009251216225617442,-0.03203532115484775,0.00012353039858930938,0.0024864487292345326,0.04190539924949614,0.03820198593927982,0.030360893371037225,0.0006269885410941693,0.010457805178254474,-0.039294853316277155,0.1414094678452154,0.04012652238294806,0.00011696157102349388,0.004214015887207348,-0.006823114173847156,0.02038988929838779,-0.024262185377325107,0.0021477659125543514,0.01564956574676892,-0.005886901468456691,0.05899537331210819,-0.0627339158789578,2.565966656210892e-05,0.013137457541038476,-0.01735844100237756,0.041221433247884534,-0.00021873153037677736,0.001376762092095654,0.025924905409294048,-0.014209517908385138,0.11429694460942742,-0.008887435785292138,8.278856711175822e-05,0.00668657153595145,-0.025150257738057347,0.03856721833580852,0.02201188688317538,0.00015391094681790627,0.027606030198812467,-0.0020936979264653244,0.0027941250335891104,-0.13423433758170172,0.0004301026321808134,0.018349426119190097,-0.029853579571698194,0.10631850274669569,0.03374918074551959,0.002176395912484233,0.005613786953502717,0.02211719338593163,0.08341565196588217,-0.08922877356001371,8.506929568634858e-05,0.010269659873872392,0.058067930353688395,0.07771610438339102,0.12411944371713503,0.0018573874900732965,0.02300531229286002,-0.000592324015301901,0.0016648149849843974,-0.0010301516448838633,0.00014096438512416074,0.006201349225027706,-0.03155593611905013,0.07930876172134142,0.06010824881431972,0.0001612947661436943,0.0037046150253884766,0.051380885779677234,0.2033221913379874,0.09724742803479995,6.167806357738114e-05,0.008790813982455658,-0.04928680359374338,0.1557584955083095,0.05904384290623907,0.0029991415806908945,0.02371497172258456,0.0043201533854142615,0.02008467055038127,0.00907439057865413,0.00010699784353510919,0.004216022803722628,0.011862254684445002,0.06353203379400901,-0.07876950424888739,0.00013540517734519607,0.015669268166322435,0.02658186451191144,0.15236720811603963,0.02238399517603539,8.251684773464954e-05,0.004904009054661972,-0.0181271558810982,0.09251028354413182,-0.016344605746715746,4.9247824695785875e-05,0.0016045736177388002,-0.06635846636625459,0.12860272792000835,0.05858779432734878,0.00025157967599911355,0.001780100337430934,-0.012593019955255916,0.05404054546599969,0.007989191158604563,5.794614428311627e-05,0.0013749486031104383,0.00519250969270217,0.05911020506630099,-0.03503209740602338,2.266449962346901e-05,0.00738190986977436,0.02420608838683971,0.07862245995243361,-0.027396976595252868,0.0001076185041677955,0.005715908377685397,0.014516072671963958,0.06850916104157008,0.044730017723265146,0.0003339861484084782,0.006819986869720459,0.03391024776446973,0.1665512945747467,-0.012672935062572065,0.00011661508849986276,0.02091995454884499,0.003104977022202134 +2022-12-08,-0.03601160977434536,0.2548183598537419,0.0523764808732817,0.00014945085478057645,0.019094902625954195,0.048456177337689386,0.18308567374452983,-0.01978263710452456,6.35046188977648e-05,0.008908160636216168,0.04996970262256566,0.14901554559510347,0.10022903367533871,0.00015512164162803494,0.008146756199389803,-0.018270814845671186,0.01580845993929671,-0.011155642121166978,0.00039006430521253474,0.006196534849697477,-0.00030058857171963644,0.0006650402372034614,-0.09079434829498684,0.00023649519138781576,0.01370845703233221,-0.021903110210266922,0.06360401097469773,0.0508748919182017,7.519137460006053e-05,0.010516417487753787,0.00033021453915881005,0.0011997940905058267,0.002680220927399777,8.075684205005415e-05,0.00022058464392262812,-0.02363506469664617,0.19602319228815665,0.028753371770701527,4.134737590339719e-05,0.004500956998573735,0.001108066574655031,0.0009786315060110531,-0.008247502387529245,0.000873155205938604,0.0019596175677658615,0.016133346028817188,0.044162216802624076,-0.045895224853064936,0.00012774251714253254,0.006447550216891135,0.011624846043155647,0.009716993543054817,0.009248214150498823,0.000584762688323735,0.01245332376205772,-0.0006342636093787802,0.009381455788550394,0.001558494531793006,2.0147554898918446e-05,0.003569742377357619,0.0029803596971533304,0.009551259461789967,-0.003429261689330695,9.269559080781243e-05,0.016824177988086955,-0.028984123308158027,0.17151767516796695,0.08238335630800969,4.7567804349819626e-05,0.006413515703459965,0.038902534182279555,0.03226560391847732,0.12045791130114646,0.002351587090101906,0.0028798126522422453,0.0192796269470964,0.1340993377947511,-0.041244074066817835,0.00011831072093176936,0.03807638743940654,-0.005568621796581087,0.03021160976714601,-0.02725871359367484,0.0002854184796634638,0.008831632889315558,0.025043847970780388,0.14178758771248762,-0.08650311614512517,4.975351873985053e-05,0.02485456688900474,-0.036989814673143204,0.17958269292529272,0.02016396002886928,0.000339472409675146,0.003905036538254355,0.03121759340270888,0.34887644139150004,0.006142942667449996,3.713282640396763e-05,0.036169843419821955,0.005557852116932092,0.05436183206698249,-0.013456283031037936,3.4158171238601024e-05,0.010661599100011899,0.04194328186609409,0.11514194816190275,-0.030894504295391537,0.00011734148808557272,0.025625694565508794,-0.033007001326235984,0.24253389811788925,-0.012326761562111658,3.143590732047195e-05,0.004856474145820388,0.003390450854483715,0.010370205473281555,0.003174933801831862,7.248488835837085e-05,0.009571783075531031,0.0029137239121455024,0.01263915653732198,0.00018952825440223794,0.0001054092931484117,0.0013872718324155662,0.04014832437023455,0.04050543622791554,0.011607442119259561,0.0005665388177750126,0.0017745024927188521,-0.035960815380453655,0.116225692447437,0.03021261620498178,0.0001302307066790101,0.01508315704878363,0.019504776718896322,0.06413611763905754,-0.0038699301273334573,0.0019518996698135733,0.0023759042428223957,-0.07509397230317812,0.6360898704304817,0.20244470563044245,3.0357695033293604e-05,0.006417272332332318,-0.023257983505603923,0.06968972230965662,-0.0046437162016748895,0.001091125219717884,0.005609684166706877,0.019179968397360133,0.14308146238256592,0.0248099661139344,8.926683979137668e-05,0.00820951082716797,-0.03324506408713032,0.049968749324951184,0.045870576190056724,0.00015702690875210113,0.0023487092013524096,-9.195131605239114e-05,0.0001272852543624593,-0.019931850851815647,0.0004146520038388261,0.01014159453531693,-0.0035875364286565136,0.014620588717038904,-0.09710205713819196,0.0019018742587795481,0.002148661997269617,-0.00278451136936325,0.010663040452085276,-0.1568645292828575,8.3783463412282e-05,0.009891079958652607,0.05955489292327642,0.08247538358253421,0.09274510676273183,0.0017950241499377138,0.01523217900524637,-0.03243651253520413,0.11305491745023115,-0.04420825983648779,0.00011367389296960479,0.012707240995966483,-0.007857440497748206,0.02005198092841211,0.00033772196333044577,0.00015884889354810317,0.019464073107287243,-0.005541447727966528,0.02449660739162852,0.01157795036323871,5.5211713303513136e-05,0.0033694226707162976,0.01600421387282515,0.04967373312142561,-0.04849429842528651,0.003053694625496184,0.013715073124513455,0.026299665473781556,0.1293314461459432,0.03757923000865138,0.00010115483857010053,0.018024187773415648,-0.005758789775360272,0.03579867770717037,-0.029173331041599946,0.00011666081976565926,0.0006767197385014333,0.02820317266813101,0.14267882275029575,0.02024600040525038,9.349473343552252e-05,0.005817987968457858,-0.032732123347062186,0.1582522479616952,0.040210680632751815,5.1984238454238664e-05,0.011001888128486341,-0.043163353606440774,0.08702304354837347,0.0018143759731639657,0.0002418300724290348,0.006942065642980144,-0.02455598802378543,0.10635933980220424,0.04365155557279044,5.7411138049125635e-05,0.0005942208798581729,-0.013565788241321389,0.17166178409871394,-0.10808497155694657,2.0389317895890913e-05,0.0028634847034778874,-0.00525637505709686,0.01896019251814101,-0.013671238689867277,9.690642396637492e-05,0.0026100822046254118,-0.005919193977894108,0.02428688635233693,-0.0005099669545520049,0.00038416580283625934,0.006812940762445285,-0.06623041481490514,0.32902025357755565,0.06802196415445821,0.00011529398183131225,0.019397710073974703,-0.002090972117722821 +2022-12-09,-0.01648895951307394,0.124958266546436,0.002939786039472012,0.00013954518109839288,0.0012303251330952915,0.0023011988091468528,0.007054638240620965,-0.031048393344976218,7.826902412911951e-05,0.00511655973143703,0.014982186955812337,0.04896253114074585,-0.13510228034567692,0.00014154957047456273,0.0009890341759786632,0.013539406345431165,0.016243808010097865,0.01976569100225389,0.0002813064117229898,0.0037579115987658304,0.00310980121332105,0.006091344334040404,-0.04164256737944368,0.00026712667032611354,0.006114271615979698,0.009126294020855614,0.023311326684791064,-0.01442804024538345,8.548190764773284e-05,0.0014590834180062825,0.04287655568203165,0.1451518933165419,0.030685160662117312,8.667364101956373e-05,0.0110947680949566,-0.016863709574992544,0.15255681052981018,0.018308776905535437,3.7907062234711174e-05,0.0008908237860422857,-0.006362549376803737,0.004933411120020695,0.0030993102028037526,0.000994554630985224,0.010589622630267838,0.018427623014146712,0.04444013334397009,-0.002542592686445902,0.00014499594341021798,0.0011112512765580427,0.005198602911754025,0.00301715326618201,-0.00943110197928743,0.0008421968869964185,0.0054879089740426795,-0.020266291411163526,0.2107032220441793,0.0954805950290702,2.866328063205535e-05,0.0012048345740220021,0.003096759499347489,0.008322229910526242,-0.02750863077964123,0.00011053983369550241,0.013577074441644028,-0.007348873511152516,0.04457244389047092,0.0007128247148933186,4.641048893635311e-05,0.0017707687562669222,-0.029283735604757066,0.02509628187026849,0.059563502817266904,0.002275831300242541,0.010685809168301186,0.04920583670920796,0.36795039290054976,-0.04906523662107506,0.00011004731677058453,0.001904378602266571,-0.04496593597461118,0.28510397189317543,0.05350764115254702,0.0002442241473334945,0.02286864185190196,0.034435352269692396,0.2201583640120818,0.00782107971340018,4.405855980849329e-05,0.009354673870225799,-0.02022643097641562,0.1251010790553309,0.007569819604566253,0.0002664679670003712,0.010221071572532218,0.02992637853979696,0.4883449304636941,-0.007714441100271564,2.5430664750727976e-05,0.03974617644985113,0.010275634345452724,0.13455056865532428,0.00787003774724845,2.5515542889077818e-05,0.00021825281476973947,-0.004474416948447772,0.013041460146617896,-0.015647438475216463,0.00011051799276387841,0.009320702421270447,0.037481239424410395,0.2744183675293065,-0.0014649298173739283,3.154954811947285e-05,0.01539406115324475,0.028358338105613168,0.07915108811760029,0.08829674631621068,7.943305553727435e-05,0.010539008061475282,0.006531557414206623,0.027394641366168867,-0.0033143903316886075,0.00010901838022854126,0.00502022950545792,-0.026481543475367655,0.024895345944202084,0.025550640408268904,0.0006079959553071772,0.004062529612535018,0.016279027034201587,0.0602224091771409,-0.0138371164378513,0.00011377748460259853,0.0040470643868948455,0.004538112131168029,0.01814525596749705,-0.00860653521147785,0.0016052079363260132,0.011631038771089902,0.04040270686997436,0.3967933454753819,0.014071982699175032,2.618353489062133e-05,0.02541736015373322,-0.029279215759893482,0.09408748047218875,-0.08164918570643205,0.0010174167210196042,0.015451708566912883,-0.006702636735873114,0.05018690983787368,-0.02226164338273408,8.893667116041586e-05,0.002889232200603567,-0.006251567988548083,0.00888647049119858,0.0003322602931409597,0.00016603706271598189,0.0024182929055974705,0.01019687325685198,0.012755207980695406,0.0072636979018191805,0.0004588633702794761,0.004988894854485969,0.018279599148252824,0.07107429433016113,0.002599973308122203,0.001993445894270018,0.017749817038878114,-0.029419054779189564,0.13505295959157498,0.056149545078420626,6.988999018002724e-05,0.004596797562122736,0.04251044423477999,0.05991849078936599,0.02656874304143198,0.001763648239719781,0.0053576286151276456,-0.004464369015752844,0.013857740836674763,-0.0012371654120030898,0.0001276390863435688,0.00407689006680681,-0.03386915990392096,0.0824177384345345,0.0544515617518174,0.0001665881508029429,0.014581442816800301,0.03541426850100488,0.1839343072382623,-0.1025418464143609,4.699259842750556e-05,0.007752935736988922,-0.06914833235475124,0.23515172337163032,0.0800951575311008,0.0027870939125885234,0.010735095551241091,-0.03845793134684828,0.19335727926740107,0.011643833913256987,9.89386463200065e-05,0.015586876592955694,0.015376521982405168,0.08081804853378897,0.0023489047472579207,0.00013797822008647473,0.0021159073750140166,0.018735405404963438,0.11479574676411082,-0.007995200940767134,7.719443558587128e-05,0.012204254176712037,0.0016682485554126514,0.007954131089421721,-0.01982485773398318,5.271271776595317e-05,0.006039039517516495,0.06495579193518346,0.1185667318001159,0.06155557383437548,0.0002671064817987672,0.014254753398061594,-0.00586927043048504,0.024157136663026917,-0.031939750140716254,6.041614909483782e-05,0.006900340609513794,-0.0025168149266872296,0.022252973975338305,-0.006577792116429212,2.9180619417703122e-05,0.0021499182412829214,0.010952949081989988,0.03059089156544517,-0.022756166570556936,0.00012515491185188929,0.0011833495405329496,0.026210037111358157,0.09750759935988733,0.057811936245279395,0.00042369871080050105,0.007594215148862204,-0.022357227663958146,0.12341942396434706,0.009496035898015011,0.00010375432997479666,0.006833792757277507,0.00391110716849145 +2022-12-12,-0.013184947111346358,0.09328627050570751,0.002035577263425002,0.00014946766336077242,0.0168965445215899,-0.011647917973322658,0.04096645771476218,0.0002804541605523627,6.822293783099321e-05,0.008333723380240113,-0.026078950239561846,0.07514915665846508,0.011023691133901042,0.00016053258497936973,0.013030836593360679,0.01173267568208616,0.011718038017181404,-0.02761438455374233,0.0003379169834135994,0.0015402094592003863,-0.0094794568182852,0.022244223486996912,0.019634202991681927,0.00022297900599163722,0.0030029431117130096,-0.008789144481345006,0.020715170499973443,-0.02171704479753039,9.264134066763201e-05,0.0018223287147873166,0.031004663367292108,0.10319289385101846,0.006988462625523852,8.815908702230524e-05,0.004431418673247188,0.012333167456937456,0.10853228643965278,0.0019128050620815494,3.8968553967539555e-05,0.004262577848033327,0.03746004100366999,0.027151141395214594,0.09059129397278833,0.0010639591249743,0.011680267034182104,-0.0016791011960609569,0.004136613744737515,-0.05938233457867732,0.00014193640029657055,0.007966903160214575,-0.010889540203737525,0.00825276829328135,-0.04605146033639932,0.0006449621803283321,0.0076184176267795715,-0.00804370793902139,0.10181604741366924,0.02037851772894674,2.3543056744907125e-05,0.0023902149065917616,0.03698774934025466,0.08478303220902009,0.00333637427869605,0.00012959850715434443,0.019904683432122015,0.0013148673220823722,0.007732596512951132,0.004491159844783532,4.78650372469443e-05,0.0018079144170313013,-0.022843343474676057,0.023081207021765724,0.03638087715814848,0.0019302969575281594,0.00464001532501757,-0.021631081082032776,0.1533665201229931,0.003610955525034298,0.00011606459744015652,0.01098994488860398,0.03873253627818105,0.23591419456997617,-0.013030733038274575,0.00025423193080296324,0.015081069238864132,0.03310861447992291,0.2031620362005605,0.012282570576226,4.590493808598696e-05,0.019010027271179415,-0.030146554290569484,0.15076979707655755,0.0006047621168409116,0.00032954151746173517,0.013720936553596234,-0.00818923352054398,0.11931663757045431,0.0028238080107773063,2.8482131064709984e-05,0.017287824251448303,-0.006102796643291295,0.05681606113703555,0.00028848346640119124,3.588719260058452e-05,0.008082367754307204,0.004452914871294232,0.013113846391677042,-0.04453513029947827,0.00010937978266599682,0.01686042031502108,0.07309469593162439,0.5128800511395897,0.010599679993542112,3.2920197551838816e-05,0.02845046763345798,-0.010271093124359138,0.03406982334949532,0.0008231023466738501,6.683811102040318e-05,0.007303671190598836,0.010312933859860039,0.03704955307609903,-0.01768644607412661,0.00012727639172059108,0.0002533575168828016,-0.0344145642153975,0.02728169866618949,0.01464707067735515,0.0007210185334668618,0.014421319349817248,0.031398177629658734,0.10954092012566441,0.02786332045908584,0.00012064631641839215,0.0075550583143823916,0.07481611520287788,0.2276932505947591,0.07002122402283747,0.002108939743861087,0.01992048443398134,-0.03058364290207199,0.3143207709015378,0.0220670840941875,2.5020635059048227e-05,0.011539914152610548,-0.017740166699442415,0.05342898175241567,-0.13948124837421846,0.0010855555917018392,0.018330391386661756,0.004476038106841475,0.03062757197136427,-0.0023669907937083484,9.732106423086795e-05,0.016144126508863845,-0.010054143672384254,0.013340454456429913,-0.008067480259558696,0.00017787702150073338,0.006383985469613831,-0.028174594183999355,0.03391060303771043,0.024687712392678536,0.0004768986249055111,0.0003913309190985994,-0.0051172515873915084,0.024687292272489687,0.003994161026748755,0.0016066217864295835,0.02004049160212998,0.020450396159902694,0.07641336832356652,-0.009955554833044295,8.586630049407066e-05,0.010734900898106301,-0.04381439439695149,0.058555457547889656,0.05692675807943221,0.0018600585981521066,0.011777643362940324,-0.02493935414205566,0.08691940519492469,-0.15403175118820453,0.00011368011208114776,0.020858299103534213,0.0419492703524311,0.12138846251460893,-0.010171470903001523,0.00014009007785235097,0.014271870302641055,0.021453498989819887,0.10198866172739071,0.0010533678166342502,5.1340508536472494e-05,0.0012530978520991322,0.044405714773883546,0.16917507230095605,-0.010823686130588737,0.0024878291504496558,0.01386632229010804,0.038047850214635,0.1800003061991245,0.08777712539191586,0.00010514713653002278,0.012280774799862355,-0.0009294240022967771,0.0055436968310257455,-0.05185680557296148,0.00012158365543204524,0.004951439571702186,-0.031005907700051984,0.19130395625475805,0.059651899062230486,7.666006745591713e-05,0.012592991056360189,-0.06559119742099186,0.3118426563055103,0.10678836854983215,5.286368495730567e-05,0.028784519138075587,-0.06396543817266737,0.11596958137596325,0.06822083612241359,0.0002689246944335091,0.028695349559731444,-0.022356918256584788,0.11182133867528474,0.03959532829983257,4.971662370132031e-05,0.008482758335632567,0.014912974204190823,0.16134379918117897,0.00440445965797593,2.3847522817286094e-05,0.014682224138813958,-0.01629975165869657,0.04786901309404081,0.04906782015649993,0.00011902425678573588,0.0021436264953409003,-0.003374026526652121,0.013826600377472627,-0.09585687557691089,0.00038464585143992044,0.0002493074711509653,0.02668624757857218,0.12261958341675505,0.014315482981638072,0.00012465206299277804,0.003328550114784561,0.0005395543293724806 +2022-12-13,-0.008175182574465928,0.05499842624490664,-0.025192848748908887,0.00015719320970087724,0.010626644467188534,-0.013203068336318118,0.05005563155901704,0.004157113168690739,6.328961479343306e-05,0.015207754958942464,-0.043011655820966395,0.131479042736214,0.05560525118374239,0.00015133062752869112,0.008376102655979637,-0.02056041070162153,0.02067424329757445,0.028002538008694865,0.0003356371456654953,0.003213862262836895,0.012485016086913148,0.021575101411585824,-0.019092699455247275,0.00030278477443236736,0.01690599738831272,-1.7801252473564354e-05,4.611853463426914e-05,-0.00014349121792507587,8.427947080753739e-05,0.002570821753227497,0.04849053209156571,0.18009241168922088,-0.004085722245402399,7.900442033921492e-05,0.036855861125948956,-0.018523019678747914,0.1565915994194344,-0.027476462067093983,4.0564109146696855e-05,0.0020496247686814587,-0.013683351006221147,0.01343374052693206,0.015241941069060782,0.0007854893456294861,0.009186445729122908,-0.009248674898282844,0.0228683985759082,0.0069745398021519925,0.00014141831137053085,0.007463833923365035,0.017372906976031097,0.012569169665810502,0.009823064327304022,0.0006756009690554871,0.016580459573546622,-0.007012161085409389,0.10188738403370262,-0.038426816247956554,2.0509461700858978e-05,0.012779621096149467,0.02816238463835703,0.05978458451292803,-0.014559146486226967,0.00013993657759406983,0.017935030844579515,-0.01235118573688456,0.07446986642940673,-0.03775048860048008,4.668634726709827e-05,0.003543182914841344,0.007059827129633051,0.005520717472473707,-0.01032653711890878,0.002494143960576562,0.001671858762190351,0.0016128820463234324,0.011175072252728851,-0.10875801294523882,0.00011876934889582716,0.007406609195989773,0.06531506874854932,0.3844476939411643,0.05542928182375245,0.000263077896102006,0.008835330351289571,-0.03778330326373205,0.29745250579820615,0.037554773734875695,3.578023991154395e-05,0.004790990439258091,0.002483552902373606,0.014366065314836671,0.0003313412355400112,0.0002849196395284982,0.00046801448388013463,0.018416966499531506,0.2929699533472258,-0.0009502019479696271,2.608706663223891e-05,0.012408909297134587,0.020302748767192767,0.19506541738844146,0.05426269270207493,3.477412959350914e-05,0.012822890892399389,-0.020862990502686554,0.05739839234785088,0.022716958095995457,0.00011708454905204026,0.01507857398901931,0.07611455614829363,0.6321753882358865,0.02833829970739444,2.781137822373921e-05,0.016134719451876944,-0.001717753365888944,0.004872988722690661,-0.006374641572906964,7.815248363819192e-05,0.01611273995746426,-0.00297257569339522,0.011670950260521526,0.0226961265234083,0.00011645960149529989,0.001252413046466443,-0.01033848702096282,0.010216674539353852,0.0038499035918082136,0.000578392948318459,0.017573142022120375,-0.025759192203580417,0.09360013185157189,-0.003535226747497373,0.00011583552948863614,0.011984622768462254,0.03436322376503691,0.12337325135359288,-0.0459079900546343,0.001787689398416892,0.009012515247671257,0.030275103328553214,0.31295400259614614,0.02343926749026388,2.4876387826803255e-05,0.023017153414604162,-0.024096662400533934,0.06849202362131762,0.007664800195185734,0.0011502392024228451,0.011136143145220687,0.02657457330158342,0.21174477563155372,0.04740670197972651,8.357554924214974e-05,0.012532553603275922,-0.032082702407890525,0.04542695325788404,0.014607768955805091,0.00016668737950366813,0.007241766539607861,-0.02694354686723796,0.03988519010348411,0.019635866054785987,0.0003877457206532234,0.006741918916994478,-0.007193214070221586,0.027303771224268768,-0.11723201991266452,0.002041976265735207,0.004191422308542594,-0.012897524811982803,0.050482995421759755,0.010308952417744953,8.196937552349557e-05,0.0031787528584540726,-0.04008547675895386,0.055963578390376835,0.04054763507019936,0.0017805688400899314,0.005688978369827734,0.014900215742813663,0.04695365841294758,-0.06849213687860765,0.00012573006991178408,0.006807072258610545,-0.08013810899343611,0.20805151940495223,0.2716186285301635,0.0001561451770756705,0.012061836487812679,0.0002438855583014896,0.0011417550173104753,-0.007747338271033286,5.213472422248123e-05,0.002501838643860663,0.007374990513533366,0.0271975693134655,0.0006171353422966254,0.0025700965091223172,0.032402433222038896,0.02584335588772468,0.12143413868387747,0.03705747992888607,0.00010586409329209023,0.018429379836649832,-0.013117909919641287,0.07459239748617344,0.03138824640348568,0.0001275354334658574,0.008093984190574577,-0.03242986308841287,0.20295100721828746,0.04820625590445481,7.55792543454108e-05,0.0075916275954701915,-0.033760451940050264,0.1359155892791013,0.02719881714875332,6.242899940646032e-05,0.009598582830721071,0.03524820678991967,0.06265808559889341,0.00798794839889997,0.0002742769428410345,0.0020267572952087924,0.004489497017656822,0.01964888229999584,0.004245547767187436,5.681646536271274e-05,0.02163836739263737,0.019282583283340864,0.2141887386196857,0.024008014669285743,2.3227360905269045e-05,0.003939577173179914,0.007877723364291952,0.027015023060790542,0.0002677772202153693,0.00010193054537959433,0.013542269571945714,0.00930108606250077,0.03529463722177916,-0.0444772765575983,0.00041538701033312165,0.0060843599631571115,-0.004443308673982492,0.02106165527725376,-0.0007916911110878549,0.00012083306178575158,0.020687770795527638,-0.0011315018045873627 +2022-12-14,-0.03158348503206206,0.21038378101260413,0.010124346585856946,0.00015875754624203463,0.0031758365593502896,-0.03491196028757919,0.10094164805442943,0.08926487651298956,8.298782269277971e-05,0.004744746976250511,-0.0066767661227441445,0.02337429720671178,-0.005651323393366772,0.00013213711074234024,0.004103305988461628,-0.0012269093676443765,0.0011507218632783,1.9102483206947465e-05,0.0003598404441037772,0.016126574304506824,0.012423288415092694,0.025965614737303095,-0.03283601495486286,0.0002503431606907705,0.0038082979938750053,-0.00308092201595752,0.008020849213354001,-0.014382838343244374,8.387008699268428e-05,0.008375867602420192,0.06272122946196432,0.22474840464216497,-0.03251584620849569,8.188564993052238e-05,0.004262401566669728,-0.036276536929874856,0.30377334556071955,0.06835192642449013,4.095196746575349e-05,0.012311933799251405,0.006522548079726764,0.005652178740192128,-0.032918190018973705,0.0008899102080579838,0.012023812707701803,-0.036169866988912815,0.08674364903071179,0.08888977037194838,0.00014580456129170105,0.00384920461695475,-0.016390920711331594,0.01005679733238066,0.02484560714550521,0.0007966508237217287,4.122533628939497e-05,0.020037830457341848,0.25993840150749414,0.03745628943419068,2.2972224041232773e-05,0.0012855708917649442,-0.012844625840780478,0.03503088826889266,0.0038330303766391078,0.00010892343934063742,0.008232202064536445,-0.0007464309864223729,0.004115807613710071,0.002548748160594903,5.105007823556325e-05,0.004243168786483344,-0.04156465275271631,0.03315288359916545,0.08253804196110534,0.0024452643731509944,0.014083567440198836,-0.01955660139037023,0.134941039874868,0.007594591802939932,0.00011926182177921356,0.0007663212947951611,-0.014531085209792485,0.08409933023015674,-0.006247346077226618,0.00026755541457906953,0.030138761357910365,-0.014158350910384246,0.08504915211700943,-0.01409270021898232,4.68925272682156e-05,0.005659806105269544,0.003534689440904729,0.02132288580722355,0.0006452192512640543,0.0002732071676034329,0.005916679980398905,0.04550728356871363,0.611239676729811,-0.11567891278034081,3.0895811459385236e-05,0.0013650436885775594,-0.01681462876213608,0.17372917260107715,0.008902402670714826,3.233674046937739e-05,0.0016798900939419756,-0.008448534362769234,0.022601235268920123,-0.03463679129817241,0.00012041260569416146,0.02966068197917373,-0.07809429793055425,0.5252814637422233,0.11697758497565887,3.4341528837597535e-05,0.008211381010454486,0.014736162511891167,0.042048935235850016,-0.05267448222460081,7.769745284615852e-05,0.0002032505931599299,-0.007073410675935539,0.027760922284528804,0.02594599700327351,0.00011650473566323112,0.004618294081996324,-0.003642415615214092,0.0036726631860054867,-0.005546664809666727,0.0005668706330776855,0.011994281146329798,-0.02483594598027811,0.08940162724498014,-0.01369629217026393,0.00011692874595212985,0.0030059028122452675,0.017153703169338032,0.06129963776779257,0.0019081524997498155,0.0017960530373022495,0.00479429014321673,-0.023801282046237028,0.19142937809306113,-0.08845275608573203,3.1972305763101746e-05,0.014027936858506623,0.04218407639781248,0.11681761802850281,0.04144453492011591,0.0011806236213433184,0.007723199885522259,0.014160326846903682,0.10765213727813568,0.0007431262075607053,8.759438433682443e-05,0.008393686659913725,-0.01252315148581688,0.02221108553264439,-0.02485747048470741,0.00013307278184884617,0.0031990197472029176,0.006428275114778334,0.008408297874065955,-0.11770004904885058,0.00043882390758522504,0.006698715054184984,-0.04047861171751067,0.1653494947360716,0.07021131090329476,0.0018974619610021364,0.004173808881387998,-0.0285502162407359,0.10756571503628466,0.04070806321850032,8.515808837640643e-05,0.005657028234552934,-0.008756302704565306,0.010880252509218024,-0.007349603994056092,0.0020005941009143624,0.001994993403366479,0.031404847528177994,0.09193383141327019,0.01689373304702092,0.0001353434883072142,0.022665937627630472,-0.030487799082953647,0.09141062996141379,-0.00467967226452305,0.00013520406461458597,0.008043317360032365,0.013988685906159039,0.05093467238328107,-0.0007648992566709966,6.703125133328395e-05,0.01732982629516811,0.010758638005604157,0.03641175433216362,-0.013065684527907153,0.0028004882133352313,0.005907186728104585,-0.017852628001097028,0.09012100482179583,-0.015027712463135225,9.854094004488539e-05,0.00860807527214188,-0.009340365996840056,0.052448415731367166,0.015034809626885633,0.00012914937363212866,0.015800092830365844,0.012865135191099348,0.07936072085363166,-0.011305692168315676,7.667564695281575e-05,0.006576291615225372,-0.011047284609235188,0.05250885902614245,-0.035977191941879,5.287743209168991e-05,0.002263618388204123,0.07418085855732086,0.14719821337565986,0.0464242612278668,0.0002457076684018162,0.010823694727875012,-0.007628223685736837,0.031863948980647955,-0.02092482297107007,5.953031730714758e-05,0.007335568486323212,-0.008559125556650277,0.08407922704694243,-0.24805007586600944,2.6264671431789573e-05,0.0039207601159844795,0.025692259874493698,0.07966392643766579,0.024814725410756633,0.0001127326102312264,0.007628091841027393,0.00442459384582474,0.016312882355979868,0.0035098263300539466,0.00042753401929506764,0.002471554799581859,0.033681255678365135,0.16923040301464012,0.011486811316130573,0.00011399391818969695,0.0064472333254413944,-0.0025922113311923896 +2022-12-15,-0.014265651902770803,0.0813535340134118,-0.11172002578784516,0.00018543930158816343,0.013076599833884813,0.016076751159754342,0.051716602256931546,-0.028028019172494163,7.458969511125949e-05,0.013269807134457266,0.023336158182326167,0.07889969679421585,0.022955878354486953,0.00013682051796268187,0.004086968878822825,0.006264683326281447,0.006794140585695796,0.0040032687796367405,0.00031119488489790147,0.009631812912196131,0.020151163421070265,0.05757586994731399,-0.05173427209861341,0.0001831291116475572,0.040148188724320764,0.008748401799489432,0.021482305832397332,-0.018923790051793257,8.891899919169917e-05,0.0008467135997965761,-0.05618909477779371,0.2126179537210266,0.14122185609620536,7.754288529616476e-05,0.016424514331641705,-0.0257352459066989,0.19240777157306282,0.0010539113318125631,4.5867421586125994e-05,0.007755106351259384,0.013008735817915906,0.01140180200110827,0.002983822472606236,0.0008798454364077644,0.004463962378931898,-0.029972143474410455,0.06716860178177858,0.034631946473136964,0.00015603189441169407,0.001168068633471464,0.025859695381784866,0.01737718010802855,0.03270592878494659,0.0007273918999370485,0.001961307471823816,0.010651336193078932,0.1354105249335417,0.007391876567892313,2.3440909625102494e-05,0.005363444183916068,-0.0060496279896379065,0.017055852728483947,-0.09745228596619684,0.00010536740148580282,0.006342616155562052,0.013772484345289573,0.06256339607065219,0.045448893544622705,6.196604679285577e-05,0.006151556821964487,0.0121523042089872,0.008159075619497781,-0.09070170559923277,0.0029049632795128864,0.003115370114512621,-0.01669931604285862,0.12086320686295433,0.014022334868035995,0.00011369900879168903,0.03277269391098945,-0.004538714388213602,0.025054629952970555,-0.01957543138340071,0.0002805130650167731,0.005424857174444227,-0.013161630616464371,0.07189474272892735,-0.0854507637356325,5.15671963703465e-05,0.022885188675416487,-0.0002852927088968867,0.0012706770429898112,-0.00949675440893835,0.0003700345675370818,0.00990445614267648,0.051943487406090984,0.6574436694903081,0.03922039766994096,3.278708355814069e-05,0.0015324351144818753,-0.01569273735977706,0.1405650201906462,-0.06766504291689879,3.72995125309577e-05,0.010304196906290823,0.01893381145073173,0.05041540527064391,-0.03960875519066616,0.00012097553212852228,0.011727842856987789,0.04215493472047993,0.3149929602686844,-0.010290066287722924,3.0912914256346605e-05,0.013385497472566541,0.0001484084079139377,0.0004092726777581763,3.0419851876078397e-05,8.039390706325494e-05,0.0061870592065067275,-7.265859990557383e-05,0.00024306407089116284,-0.04108800882989676,0.00013668311043814465,0.0008061184749562188,-0.0005891062699333688,0.0004740698452286497,-0.0028116021575538006,0.0007102755660782381,0.028875671724989633,-0.011744390222557513,0.04308485000212316,0.0031502043455875306,0.00011473393707320353,0.006033466570480268,0.035866538728975446,0.12537274810094035,0.014686883484080083,0.0018361387525921682,0.023256593601639904,-0.03086930274236163,0.2793697853367041,0.01331080155302029,2.8413817140670257e-05,0.0035180010208099794,0.0006155719025433816,0.0018508786107137693,-0.00016289557164146296,0.001087356917319921,0.020793194349060157,0.03224194524296578,0.216615014943697,0.06240713063513985,9.91193219111663e-05,0.0025648974819632232,0.012636105835826736,0.01888163617072114,0.00804318779318562,0.0001579497766249023,0.010114546325201226,0.006743914376798671,0.009206601902714998,0.0012697773848830112,0.00042045216879167436,0.008979064105135433,0.008997938824013634,0.03796820870570814,-0.015173746306957416,0.001836848209020288,0.009365611283336215,0.020867779773426093,0.09366890075576807,-0.036233222859738304,7.147780239919015e-05,0.012884271649156235,-0.017565490600897116,0.023845093999165987,-0.022469979519286334,0.0018312112049652227,0.008139518205342448,-0.007114105494827481,0.02266131080569595,0.0060655696845314504,0.00012438021702235093,0.0031589015058712437,0.03443190471902249,0.09591494392592038,0.026422171407281172,0.00014552417528257736,0.013271565198077968,0.03000034570885554,0.12231258435010055,0.01695911787341332,5.986445621063568e-05,0.012975668123248284,-0.11378653454296933,0.3698436932635861,0.16963232522000046,0.0029160214311287,0.008784177068548749,0.014902667224743682,0.07967490898453228,0.008621583942046875,9.304284864040806e-05,0.01712748988956023,-0.008549477299879567,0.05008803521679765,0.008204758649184159,0.00012378452423655748,0.015152884160597768,-0.03095061448307746,0.18788694483096768,0.024099839904876602,7.791505291586559e-05,0.0011521040442686384,-0.020913892604718987,0.11763907261428426,-0.03180180315327823,4.4681801643638564e-05,0.013154271934565755,-0.023614103274079132,0.04654165750585596,0.008886767294892158,0.0002473768222734449,0.027109025036028748,-0.009906823449089908,0.03845160853381326,-0.0037304090721790063,6.406698508541104e-05,0.015541309688198172,0.0505514963287689,0.5496992809684182,0.3714564642915522,2.3726852576980118e-05,0.00856899589902724,-0.022834646209805593,0.08191997029738772,0.06631301714579288,9.743465811251891e-05,0.0007637583943790831,0.004247588585355794,0.015334001300354035,-0.028255094166626804,0.00043663135553069515,0.0010070908594661525,-0.012181607691652895,0.06252541123038317,0.0036243884306324803,0.00011158860494516081,0.02911174304183715,0.00019388763298804307 +2022-12-16,-0.016587832717399557,0.12203988245770285,-0.006905814431811917,0.00014373894410461886,0.005927286192806661,-0.023587442484970557,0.08255005547079554,-0.01671251782820396,6.856050555566636e-05,0.00613446002423473,-0.0070912828680178225,0.022696129545831886,-0.0018181155702616822,0.00014453406334573248,0.0003946725721132927,0.0031316874317809124,0.004073027835866386,-0.035476610099467565,0.0002594949362712552,0.0022957880664457343,0.015780899135970354,0.04115234103317197,-0.003820437532773367,0.00020064806246632795,0.017747455161573146,-0.00015699163540310634,0.00035383132980148547,-0.00126227017244376,9.687840249425231e-05,0.00517691788740071,0.00835509411968596,0.02716315768060361,-0.00511756062293242,9.025285460226769e-05,0.009627770044611994,0.02501923151551386,0.20514085901499712,0.027147359210075557,4.182350353084382e-05,0.0002437236767865676,0.0044619477553260725,0.003478737237876608,-0.04952755839745752,0.000989116943571695,0.00898928088748811,0.01735003369152805,0.04551646829542834,0.012143228774925477,0.00013328879810811824,0.007751283069912039,-0.012225982996494598,0.008478845531742447,0.015007544820735108,0.0007048089695684689,0.0040835617758127815,0.011874570639663174,0.1495638729188169,-0.034972583195447215,2.3659959790766146e-05,0.0038079938956621807,-0.020745062358932562,0.0626630026563774,0.013457804117408793,9.834552003258132e-05,0.012379692070278163,-0.007890248050898418,0.03535347677284052,-0.013806552142553817,6.282324205419395e-05,0.0060187545975713625,-0.019522944996912477,0.013871456117113072,0.017782039921601836,0.0027450246643229708,0.01368770058198725,0.0656905581813087,0.39332403224986345,0.036206128347778734,0.00013743728810579342,0.005035554520706409,0.041085896036745714,0.21539002472571453,-0.01585992037625061,0.00029537613856551656,0.0028812650285418365,0.036260820792868666,0.19726172669948513,-0.08378966952748984,5.1779250066616855e-05,0.005176116744369662,-0.018579613468670878,0.10059955369891209,-0.020349909669368074,0.00030438793062350776,0.0018100405920969467,0.02262939727537964,0.2733765469162719,0.004144452131647773,3.435120408132956e-05,0.007343185824706253,-0.007412611122877604,0.08182109668549639,0.0027389788649937706,3.0268272122897477e-05,0.005281937498958939,0.02767314233930818,0.07201074177522143,0.011966606749903614,0.0001237895397326796,0.011816498757445358,0.013044863759331485,0.08867780073974373,-0.0067311081000260686,3.3979502027002456e-05,0.0042999547874682156,0.004948495273827881,0.01534542941705156,-0.002159473764779032,7.14943128093801e-05,0.002903065093746596,-0.001561617039070625,0.006721195639742856,-0.0015571539419913687,0.00010623719554340065,0.0010731819799002997,-0.049652093129023425,0.05015396571519186,0.05417885991503534,0.0005658584999366705,0.03424944682661232,-0.05185952803732397,0.18307659692650413,0.013220253038541945,0.00011922895514104172,0.00758505051431504,-0.08193800286505559,0.27700697611537867,0.11144297181510776,0.0018985141686278491,0.005925568098498021,-0.004817008663509704,0.04619229719043569,-0.002035641871009442,2.6815757032980353e-05,0.030235254292379332,-0.00932102812146384,0.024642122776970095,-0.10785335947154133,0.0012366789567969327,0.008024936038888564,-0.025999891497053493,0.19251162185306533,0.010575700021139025,8.993737879219642e-05,0.0074849699433441035,-0.015656590417823576,0.022147218586622466,0.007221457413377707,0.00016684891416822228,0.014284946687556681,-0.0014924027816450376,0.002827173211848574,-0.018207335069299627,0.00030299645439995986,0.0046215424844319,0.02072890798861453,0.08478278717258889,-0.007170821628609347,0.0018950430282950498,0.001947877043952414,-0.00834753949803247,0.029463044555248327,0.0011801406057631357,9.090153784958116e-05,0.003582156952253481,0.011095633839342917,0.015547920721774541,-0.023633542717242828,0.0017740137869916984,0.02253633330970383,-0.0026663782926760584,0.008724862822024261,0.001862969487399701,0.00012108189076520539,0.002441616879741381,-0.0016249760585543942,0.0048744935502237005,-0.0032950385396753735,0.00013513811062606842,0.01598346782038653,-0.0022816555390576753,0.009404921663067844,0.00725984500856699,5.9211876170329865e-05,0.010092028225976784,-0.007296761281167266,0.022895689958543547,-3.2723357468361354e-05,0.0030206086428959705,0.018480601361147677,-0.042786707946389675,0.22177049893602316,0.014701048230077658,9.597224850133009e-05,0.02027327289142028,-0.015147606733581495,0.07002002319850922,0.023977884865123266,0.0001568854094124362,0.003516273105446335,-0.05274784869265144,0.3657992328553847,0.10013546322346499,6.820412789769088e-05,0.02323255921817772,0.044516388977927465,0.19336902187697508,0.03468879052690589,5.786026561823542e-05,0.010031545962778967,0.0017084655669936802,0.00337151454972018,-0.0005994858349543925,0.00024706463586782353,0.034376486897432994,-0.015137973460634406,0.06149834832343564,-0.017431684447008416,6.120947625326041e-05,0.007099880616183799,-0.02571852658448062,0.2929669931962563,0.022363814407751426,2.2649502957686237e-05,0.0032629249767096888,-0.007980313150361787,0.02697867700874507,-0.014161451962379638,0.00010339707408974699,0.008725426612916013,-0.022388908067331376,0.08664799655021845,0.03795641092643075,0.0004072886976033489,0.01051317582499793,0.029043707708009125,0.1351342949051991,0.0034858910597618214,0.00012310006251095562,0.015168842135913756,-0.003943349791231416 +2022-12-19,0.018165027119379302,0.1259183309455759,0.0012956572357168143,0.00015255753963777131,0.009909162049709134,0.031681980630683206,0.11968171237396728,0.028550399751054015,6.351774279891298e-05,0.015496134092114588,0.015384902745927062,0.05364673189887945,0.008841690562326284,0.0001326626564451222,0.012613466465421773,-0.029925993684346907,0.03245060505337492,0.06347700449924683,0.0003112387321071224,0.008195880905918777,0.04893836048363696,0.10776796099037918,0.05934405260356425,0.0002376060650237187,0.01899972825227707,0.02080766627279653,0.0565831461278171,0.04408623755080335,8.029398678448979e-05,0.003833411306106862,-0.003653428305627675,0.011861286456646657,-0.01255357394469914,9.03771516655054e-05,0.009113155942590278,-0.008907653612656222,0.08351885273845716,-0.004145420558987304,3.6574417240216775e-05,2.7025080204298247e-05,-0.013782859428125838,0.009885861413833562,-0.10061195696794026,0.001075151327451087,0.0038227372824501584,0.016837050763879938,0.03617730998646079,-0.14231861389602204,0.0001627389975708878,0.012685184906581088,-0.014749561416978953,0.009720093308735179,0.01833107976398356,0.0007417081154171543,0.008014984248967185,-0.013580422375473885,0.17312855131489985,0.05103247005550666,2.3375847853828163e-05,0.014169070960088341,0.0037088152099495853,0.01129351308069999,-0.12427185189665785,9.755671634185083e-05,0.004714558991354357,-0.01460970441714891,0.06557415702983316,0.0008160534909545903,6.271487072374085e-05,0.0036216548767197625,-0.01110366027275689,0.010248792820896377,0.005568064444123435,0.00211308235859447,0.014773131583169346,-0.07307611859420118,0.4839986908816703,0.09801783227577542,0.00012424627946942856,0.014479604845057524,-0.01670293475420697,0.07393807122479727,0.016066762799520747,0.00034981054681728507,0.024382386659510084,0.003833356030221038,0.023823674053152666,-0.0005069169807256033,4.5324328072649385e-05,0.006080854762238275,-0.03090242425363658,0.1704548047773587,-0.09674059765778391,0.000298792787833683,0.008040371502006774,-0.02489873285378133,0.3065180799921041,0.012840972786451296,3.370942777266389e-05,0.018673054886781816,-0.010692447163416783,0.097651286718622,-0.015436420645692464,3.658312927477612e-05,0.0030843806764095207,-0.00393429298984722,0.010204863390904984,-0.014707050553666633,0.0001241887510633399,0.021435385517931227,0.05343993730459112,0.3804622357751805,-0.005142256227816594,3.24449239371161e-05,0.019488348412529333,-0.0022950433311440662,0.005230188453279177,-0.004402153992200607,9.72861314796157e-05,0.002882534038466036,-0.015361389506831233,0.06732967567821546,0.15949370909454821,0.00010432120009154775,0.002075581381184393,0.0006005907305982643,0.0005612817503633011,-0.03711874840142461,0.0006116081511225278,0.007085078294124675,0.003369077647496313,0.013104502167271525,0.0010686747569807085,0.00010821226874341691,0.002401477646657239,-0.06793663123388388,0.23887527120024507,0.047193895400413716,0.0018253745423016919,0.02065284937752166,-0.04645287375661916,0.38096029285138683,0.03037324424070569,3.135559668827338e-05,0.01566021911511934,0.005920294923002509,0.01759597242673953,-0.10919796775715655,0.0011000219188332056,0.015567647057379747,0.005586687162352153,0.04834864259326461,-0.02963987034192041,7.69477119386329e-05,0.0010090818863551488,0.005385702760797757,0.00913962889296231,-0.004289190967279581,0.00013907824609655364,0.006513859174299068,-0.01150906277472546,0.018471064536166808,-0.008375463577550181,0.0003576448263620596,0.006246189166287223,0.00734361908740839,0.03234560211204307,-4.068293561614024e-05,0.0017597267796615544,0.018437768923654344,0.03554790044544463,0.1235238257790375,0.009303811836441231,9.233228670926252e-05,0.006634844668981352,0.006136463689333975,0.007733936872936528,-0.0018341777749042091,0.001972398836487179,0.018289987250010024,-0.006519504972951923,0.019713487744375237,0.0017966239717037203,0.00013102892870396604,0.004513487139560155,-0.017745944037198928,0.04968100560702864,-0.04058698848713361,0.00014480018134915577,0.0029664142028315533,-0.02694054459823636,0.12584812583818497,0.0867349997008587,5.2248465900449254e-05,0.0015465502499855178,0.07091607029608632,0.2223268960453955,0.066412055619944,0.0030232267041348003,0.04134703055382835,0.04911109196290146,0.24461571684912506,0.0772663966820809,9.987017336157995e-05,0.023827157035594692,0.00515057273068037,0.026001244773882264,-0.03969113354079495,0.00014365547049181979,0.005504944841043444,0.016267527859811712,0.07844410905170371,-0.07986039363520138,9.808665474928506e-05,0.012928927377932357,-0.027699302289710372,0.1280955424706878,-0.019847087987326466,5.4347829911078675e-05,0.00972964643461648,0.06057747835308718,0.11985778837233883,0.02596593178132508,0.000246419076342644,0.026799455819595468,0.0140670059694462,0.05207166931218069,-0.02725128057939596,6.71760629480083e-05,0.0073908655331216605,-0.02563116601220559,0.24929471660136357,0.044669015567305945,2.6526904542743655e-05,0.0011471038313634796,-0.007559593431102314,0.02481837206376016,-0.024413867991596696,0.00010647168140776412,0.014860609282441891,0.01631631304563467,0.07681609382105399,0.020506104195969682,0.0003348095066758392,0.012632849787606378,0.04808349877745388,0.24956057169718396,0.03488758248476656,0.0001103549670839357,0.007760465358301126,0.0016598269255312117 +2022-12-20,0.019035805189954763,0.12552397794919,-0.029057151280293035,0.0001603729587422868,0.004141217177721434,-0.03721416594460538,0.10215171303673949,0.04446298469535412,8.741242377387262e-05,0.006738810568732399,-0.005927364797425869,0.016955987577462424,-0.002469240817213376,0.00016170958826201192,0.004006491101210706,0.0025662002075016164,0.002752763613507322,-0.02550945611329045,0.00031462227928916484,0.0043759376319220345,0.02584737503334753,0.06534676427145578,-0.05519349511472899,0.00020696176944605876,0.011193849255401688,0.014338054326744147,0.03661566714172453,-0.08416907042114842,8.550076686358875e-05,0.008598466773818614,0.003458745064493258,0.010905542097251534,-0.06896735325208922,9.305959306198151e-05,0.014893846074086359,0.005341304580183938,0.04304657229684626,-0.06258043738188131,4.2550766024480485e-05,0.006788849887044488,-0.014655975322810369,0.012075648606657236,-0.011332835552936451,0.0009359422335166931,0.005153211187459555,-0.027016150975962452,0.057084083429805275,0.05276902514112286,0.00016548945618160885,0.005099803488964593,0.0008170119889552606,0.0005663829970177245,-0.1679999549286077,0.0007050867938594428,0.004350102167156621,0.0012159626478323842,0.01568547810752854,-0.023835320978437272,2.310177038173453e-05,0.001444192672872991,-0.0069439511912079395,0.02143648516023658,0.002576151295804305,9.622858944058342e-05,0.004493618501750085,-0.0014358078879424317,0.00801059322266491,0.001960601115567354,5.045375272449758e-05,0.005429665864846003,0.020256490845290975,0.017388547166132966,0.027939651038906114,0.0022720814027189368,0.008712615498478044,0.010900547501094733,0.07048469887080615,-0.09684234018699678,0.0001272640004606711,0.025374034911658537,0.03126255827576975,0.18829038608370735,-0.03548210739360987,0.0002571014939794468,0.00598066528769008,-0.0008122285837132163,0.004493664721808953,-0.0009621707841263641,5.091415718054821e-05,0.0028390957934630503,-0.049047946711244336,0.2822630790558909,0.03870506779273988,0.00028638717403469094,0.018869697458989705,-0.05018385086660736,0.604566402816807,0.04470913999901313,3.4446904930315424e-05,0.028920286846953764,0.005846518816883569,0.0572603044034643,0.005226085021844639,3.411343155760479e-05,0.004522365970785712,-0.005154098589563028,0.01673541000720698,0.005421206277378018,9.920626989385145e-05,0.007458482547081732,0.02079557643250406,0.14115940647065423,-0.03475997219506806,3.402933917853744e-05,0.00919178933740143,-0.011872489161474717,0.033842003072996854,0.008522706843659337,7.77791340276911e-05,0.012144412918148582,-0.0031796431678846678,0.01182898613809954,-0.026423315898594663,0.00012290780344564127,0.0007736737178930546,0.023327550382647246,0.02720080888224966,-0.03834940877155137,0.0004901882292390876,0.015370206865389483,0.010302958392318763,0.03966524761600779,0.005103828889974968,0.00010932960656831669,0.01078748911974751,0.014954150204253825,0.04652661624086852,-0.042717254767410645,0.0020629060266871436,0.012780723116803531,-0.03686760385995879,0.280694758255027,0.012378210382832357,3.377480148173278e-05,0.007743029281955601,0.036988520367680015,0.1110350115224749,0.028084992870141524,0.0010891264032908362,0.0031713905091645027,-0.034248386448613236,0.21566126711841158,-0.04925535199523733,0.00010575322151254143,0.017782108104836825,0.016027528659310574,0.02364896002468749,-0.15967125881112793,0.00015995576648831198,0.012101666615541948,-0.04434832495360861,0.05312701311949363,0.07902920711816626,0.00047914364787823377,0.006431789032893117,0.006945301288548093,0.030338209639952537,-0.010247280442625392,0.0017743998144869925,0.007598688014516667,0.014130171644072358,0.05901821157543854,0.006261427522512377,7.681601312783646e-05,0.005255686595244061,-0.022036720807076034,0.03281944503481546,-0.0365082963092779,0.0016691406277468859,0.009156349181173622,-0.004790145012121125,0.014363858373095499,-0.041003123228593064,0.00013212761117894144,0.010751923139849563,0.04465982669981208,0.10071017056006984,0.05470760663444001,0.0001797645608323288,0.0008811992778040021,-0.04074975449526162,0.17571163569337314,0.11314523256375927,5.660286319014129e-05,0.011551932953703829,0.020105356857244273,0.06679053666210104,-0.0015377728927327492,0.002853086316433781,0.013725303328686598,-0.025400934849420135,0.1324097710833381,0.010001648604836632,9.542677273513595e-05,0.027465087368090165,0.032105853281951285,0.2003395196226876,0.004568140962613198,0.00011621933150169726,0.005384959619475077,-0.0637473834572903,0.3401517472944535,0.1401642853481768,8.864175708311935e-05,0.015432308985851413,0.039993964255735315,0.18160769699379503,0.056631307359884774,5.53487220584157e-05,0.0021273758300233694,0.005298638807828296,0.011138073661241617,-0.00987760409596161,0.00023194425729910597,0.017305448687475782,-0.02853859805872242,0.11419592396498107,0.07739171841334835,6.214359992785012e-05,0.004920341299741124,0.01033845430834151,0.11746872774128507,0.012062467074778751,2.2707254790430373e-05,0.0014025027686274333,-0.0011270196535467663,0.0033132407993281474,0.0015103866253661385,0.00011890153284962123,0.0067330151970244985,-0.008492812472277076,0.03732472664845531,-0.05072532707290845,0.00035865993855762604,0.009293886679667997,-0.0017834797736591488,0.009285277325433309,-0.0004623940492233795,0.00011001327791350335,0.012979979068609936,-0.0018275756150628376 +2022-12-21,-0.0030864814473283773,0.021288383593906883,-0.017824682065882676,0.0001533230915313436,0.0028538974822381784,0.003706486321446241,0.012516399946711169,-0.0001709487554131965,7.10548122514337e-05,0.009609160926829362,0.020543170906449873,0.07652148051630316,-0.07806534589256163,0.00012418848231499416,0.009220215727961603,0.011477003698079285,0.014783732153445452,-0.01993818392055793,0.00026200663674667824,0.0021004002936796957,-0.004859295456447161,0.010373167092361827,-0.040816659477511265,0.0002451092520152327,0.0002014685585939092,-0.011263971314508172,0.026053373586578284,-0.011322002637529667,9.440050305384819e-05,0.001042206550908009,-0.012747617053445024,0.04575502727209822,0.010946526099069116,8.174854755082791e-05,0.00854011629595978,-0.024546365334817088,0.25378924451709584,0.03061048119956222,3.316748911594027e-05,0.002688112722346616,0.012193071451215405,0.010420442745729085,-0.010344694097883165,0.0009023431663171797,0.0038289479637725753,0.01144838490578822,0.021725579180694805,-0.12292810290929194,0.00018426156085300804,0.0011016880443361435,0.003966350921714861,0.0027496315864639176,-0.04744368227494195,0.000705084204779349,0.008267480968667435,0.019810550563933115,0.23893210886059613,0.0452820045921193,2.4708411098925726e-05,0.0006028373083966327,0.0017720204337562946,0.00430263381471961,-0.029184000008449413,0.00012234476113769162,0.0036382279825245595,0.023393363547340857,0.11992731579197297,0.06752656516884707,5.490809481915443e-05,2.8025540187148468e-05,-0.03052691002085205,0.02579096716768122,0.045711666529373994,0.00230854418131439,0.009457782932327683,-0.08076305240644709,0.5252312501061197,0.10004419432021398,0.00012653605039506395,0.012285477678962466,-0.002067428132080989,0.011492173063628555,-0.04212774366252248,0.0002785713802051687,0.031924963190249254,-0.0031581858245041143,0.017139180230173117,-0.001122302748475497,5.190492766737437e-05,0.003432646443854314,-0.020503724452779207,0.11543048426714231,-0.0002251472256528468,0.0002927514444413571,0.03148425832072667,-0.025265403015048836,0.34268887771034945,0.013132923833495288,3.0595422314028516e-05,0.052835494575605525,0.011881507406443335,0.12726416035144836,0.008239255672433691,3.119228107388744e-05,0.0015893083081945565,-0.0007924486937682981,0.0021883727614309735,-0.04408157367557357,0.0001166467409107514,0.014324597741662047,0.0056629438078644664,0.038873781590169965,-0.025309899970275645,3.3649439770357014e-05,0.013656810570110768,0.016996856498999006,0.0438545535436646,-0.050903665041513675,8.592732578962007e-05,0.017330824792171202,-0.007136241559065164,0.022084114740041308,-0.0023092914758636087,0.00014775362443312314,0.003935454153552873,-0.016061442530427947,0.014498127306766145,0.001313857639997519,0.0006332106352373252,0.0032314921034773446,-0.015450110676273011,0.0612742081976787,0.00444669860445125,0.00010613042320202205,0.016410725410502074,0.05303921919306936,0.1538324517249466,0.017513359192351512,0.00221293335589588,0.0015621697778887235,0.034047971860468686,0.33836085901887514,0.016520932471549187,2.5875772476779766e-05,0.019423780688716696,-0.030166421316296967,0.09704300604759096,0.028466563611910512,0.0010163208167538827,0.023907371180121383,-0.019692648889420513,0.14918136773033738,0.027544061611700702,8.790532752450184e-05,0.0006716650912929765,-0.032389658479713535,0.04201879242193578,0.04218794373797745,0.00018193162055277944,0.0018631122972096667,0.02392672251049642,0.02804614112527643,-0.012621966206335851,0.0004896818550042512,0.00959953137856973,-0.005199954495929199,0.02009866891686282,-0.08737025445333962,0.0020053149344133625,0.025254146152329217,-0.021736550086657803,0.07960511397421137,0.022346341325133558,8.760724398011465e-05,0.029799086386099023,-0.018396394987174953,0.02401125595193311,0.006653708988205211,0.0019045616724046503,0.002928750292789192,-0.03624549627337448,0.1315316191090822,-0.07327056863829097,0.00010917920329349524,0.004090098818228565,-0.027136995708511018,0.07703740661246412,0.01940947573459639,0.00014279746173140063,0.00863463072610029,-0.010383634844360988,0.04211033822613226,-0.04235799051378839,6.0183106686513e-05,0.008601380552114811,0.005401097085813817,0.019078654425352986,-0.02053473260013351,0.002683195396795788,0.03534667421401885,0.004011841022657879,0.02308418328814299,0.001157962949679849,8.645095031877243e-05,0.005629484575210911,-0.0060495638298104434,0.03077936552704049,0.003138275738181505,0.00014253620268954114,0.007585727517439184,-0.014078978098637233,0.08350013104427245,0.003501562962008422,7.975036419326233e-05,0.0062143458873902884,0.001312190543650354,0.00619927140895565,-0.014477242594246056,5.319902195869245e-05,0.009419519884987716,-0.00048249411907687773,0.0009412246589190905,-0.001334350055839109,0.0002499356009886252,0.0149814956023208,0.01066584581041223,0.042899787279056495,0.018487607349097292,6.182363526328145e-05,2.3799627938023973e-05,-0.030861302014680514,0.35084709159297384,0.033039820353519295,2.2694867389001085e-05,0.0010045998505286255,-0.0010902186910439935,0.0033319562020025003,-0.02449034686716047,0.00011437294499724122,0.006360791618776844,0.017341395119806726,0.06842523035696868,0.04068325203866363,0.00039948063947454966,0.001407366043672937,-0.012562211463656579,0.07330619688888214,-0.06609061113136637,9.815156004127738e-05,0.006866492078145218,-0.004855532354224729 +2022-12-22,-0.008790717252754777,0.06359568528484416,-0.08985958066139467,0.0001461784134428625,0.006889186001644614,0.03318247277431069,0.09720277450597052,0.02955558433956565,8.191069520058305e-05,0.019976199297261434,-0.04766515291395906,0.15397038031866617,0.09762520292906035,0.00014320593349469345,0.005357239923641833,0.028119478675986923,0.029376299431319083,0.0441917180740572,0.00032305616614265465,0.0016329979988608362,0.011234544155154028,0.026508847868162638,-0.016924910411125593,0.0002217493599775269,0.008545611924372807,0.01972984068814363,0.049643359186188334,-0.00562099603166167,8.677790424191295e-05,0.008899651653923204,-0.01739952979777207,0.05163603894941312,0.0056118003827346575,9.887225688982618e-05,0.0014137205461058305,0.008988329261283772,0.08110626450103263,0.003685080174971079,3.800346433542073e-05,0.019614666430569184,0.019454893077080346,0.015444382071760786,0.034174259986501206,0.0009714111812093055,0.0044510957097643866,0.006452157545248492,0.014811396041436805,-0.017086270151421085,0.00015232488359782117,0.003154988214560426,0.001971335455437864,0.001364460818523569,-0.04338239396582792,0.0007061936727637034,0.001941532842712066,0.011899468914126916,0.14626807144829596,-0.003919646900750305,2.4243807835649416e-05,0.009161417903824638,0.0473000699205179,0.13852754959580107,-0.06406301382763355,0.00010143239229781394,0.015844522343190243,0.006235977259499393,0.03390818848411627,-0.0033979221970723817,5.176804359437916e-05,0.004906376550605852,-0.04830784617826259,0.03604063915912659,0.09270426290197128,0.0026142562982735384,0.0006203527245856922,0.03719083227807251,0.2571733467355007,-0.01207571562077846,0.00011900413406055397,0.027647252026888374,-0.028754094744343237,0.16336550674906708,0.029597538378569606,0.000272550866489429,0.032195473062862925,0.036085791926983676,0.23283633468671203,0.029362058994615716,4.365625149025801e-05,0.011410447687259259,0.01759683866363441,0.09990805219687807,0.012896729484015284,0.00029028257547189377,0.007982773505849049,0.0392895953149332,0.5508082056760506,-0.0005410218710361993,2.960106832095563e-05,0.0007872839720578979,-0.016142135853126797,0.14454186662557245,0.03497288485732002,3.7312044626665113e-05,0.0010421508076569608,-0.016509923356682565,0.04167145976232423,0.016906709177366287,0.00012762304394569332,0.004840414833205477,0.08395080667463317,0.49384260741665814,-0.019039370994248562,3.926708772787606e-05,0.0075457470705994,-0.0038031895288954797,0.010582576574992566,-0.005307154692958202,7.967717568835793e-05,0.0016040097060983144,-0.0029722189601304226,0.010760712229757196,-0.051625350349812464,0.0001262956459601929,0.007375395380175361,0.0016290941631369308,0.0015304927623956124,-0.014540694803472996,0.0006084017699895255,0.01692573842007769,-0.04822782236324777,0.16354805410559606,0.0561260735894206,0.00012411900357822299,0.006524017507985881,-0.06673931540421306,0.23666504291333443,0.025818900436684278,0.0018099509593848808,0.018208032581016782,0.026355674370820724,0.21446273767011798,0.02739270346477052,3.160126609507952e-05,0.0024313417771896395,-0.004316601508397035,0.010590342499147792,-0.01823089274468498,0.0013326104734112346,0.0007635897443713044,-0.001324765133048584,0.009411310245211855,-0.06339187087408216,9.373773216553447e-05,0.002601849205538147,-0.00656400650579931,0.009036796213537507,-0.09278512303604768,0.0001714351612944802,0.0020529137906927543,0.009557080820960642,0.0153324660332704,-0.039784922738985255,0.0003577809074673168,0.011771646519171734,0.024901648127267705,0.10252908978947367,-0.03498025307602849,0.0018824841631748781,0.007238934051464191,-0.010915517646834171,0.044884375030379585,0.007935689071546383,7.802603245676746e-05,0.007285527522448218,0.0378386206156617,0.05276801445133991,0.02722759191893593,0.0017825500592988507,0.01674566488555057,-0.009733421776770336,0.032655130471282594,-0.00842033922058007,0.00011809463173681935,0.00041728224258585694,0.00038300656234533563,0.0009946871763832387,-0.03676136169648492,0.00015609179404625225,0.008874418979764665,-0.0012018631810645404,0.005152067711462526,-0.043092229529594996,5.693605780102387e-05,0.015042570684673346,0.052348896309168495,0.18401118906500963,0.025353122832046854,0.002696381606786364,0.020985129270228935,-0.02577778375586612,0.13976464317829893,0.00031882984327824684,9.17463566154447e-05,0.0033778963938649446,0.017356855950196384,0.10145400473471698,-0.0329308935411203,0.00012406881914592678,0.00590402232529352,-0.017717641280335227,0.07914726449271348,0.006917331048813575,0.00010588116081168902,0.00013428437027894588,0.0018657172723573958,0.007860592064424868,-0.05934768044937432,5.9653780031217914e-05,0.017785755101559823,0.016669430160453098,0.03138263709402301,0.0004244843664955139,0.0002589767123063567,0.0036144406707675518,-0.013556769214150171,0.05442410665353435,-0.002411463802764717,6.194115078072648e-05,0.010688134394703435,0.0457850458259282,0.44577097500375407,0.1493273236283404,2.649983387215009e-05,0.021049559050185577,-0.0321824022676116,0.10681964668508473,0.09995779880754738,0.00010531161827533065,0.004817401038555496,0.0035948797389069227,0.013194570236449696,-0.004332614017092569,0.00042945443092000884,0.0013235508499668236,0.02144335698283425,0.11775331235781435,-0.017674000743648367,0.00010430171252079522,0.006287380337748181,0.00446108985197226 +2022-12-23,0.0035329511568506253,0.02838460060825957,0.004539119389512524,0.00013162592296496258,0.005123636066743852,-0.06197419253358949,0.19092199625161219,0.12829815418977392,7.788708261808537e-05,0.00039156001099263947,0.046691147375253025,0.14463021027576667,0.05569312979038839,0.0001493388261022303,0.006035464577534802,-0.011547155382304594,0.013494566312974863,-0.045586182514224464,0.00028879118604833624,0.00742746335249763,0.034623200211335504,0.0879913816310435,-0.1247695585345563,0.00020588506432018554,0.009195989872917403,0.0047266666396972926,0.015535367892440383,0.0006338549678785742,6.643243499652631e-05,0.010756283728633215,-0.03511234273670713,0.13041804170778085,0.03595385315195435,7.899725260461708e-05,0.009996489896124677,-0.00642594179169099,0.05742900448402004,-0.09922469206956862,3.837108801003571e-05,0.01315236791253323,0.0006780109891628007,0.0005761073307545679,-0.01501380661715877,0.0009075657919872943,0.0034817713358108564,0.026406822126201962,0.05388942001828816,0.05234364542006518,0.00017134621560201482,0.01671174768818606,-0.022539604499790408,0.016792129489883775,0.0016519752979107687,0.000656092200419415,0.01392479554417227,-0.004922740969664144,0.06039785256690061,0.008407968322918352,2.4288923998975293e-05,0.0015281283578010931,0.048963720082802406,0.11109773828144479,0.0842878907547169,0.00013092428976993996,0.015009781444127242,-0.020138119501752386,0.12038444349792407,0.022011718365973928,4.708801276909196e-05,0.0020917313219279195,-0.05133779471005634,0.0447725513657673,0.05858035000007894,0.002236394101715022,0.00607373126575969,-0.014698337607471126,0.1035222443548674,-0.004496008388980047,0.00011683868149243378,0.013143633469583454,-0.020521050179256244,0.1285677514909827,-0.017134437626546352,0.0002471586222409766,0.00402790483482055,-0.035023756245000155,0.18994456778049398,0.049568576656497304,5.19393846425539e-05,0.006540390453096401,-0.053809992352342254,0.3007881928872821,-0.02462961564708249,0.0002948417316931353,0.011496191462022964,0.02269368011199009,0.3302084473981426,-0.020340359580772915,2.8519833178620768e-05,0.01829392835685267,-0.006292276339888458,0.06382893958506546,0.004166242073576523,3.2936076832702985e-05,0.005397025588177731,0.022654471101205467,0.06773112310071254,0.0037873007204573166,0.00010774283684348651,0.0045660778113581265,0.011024628501785719,0.08957616930699133,-0.017403736007913156,2.842914862434679e-05,0.004631123904172005,0.00703814546543281,0.018755711851853152,0.007652299761537116,8.319592773286581e-05,0.01113754689331771,0.003399886425481748,0.013120817823001998,-0.05802036027985019,0.00011848192443684738,0.004010060015611763,0.03997736563510007,0.04468769701318316,0.03962895427756471,0.0005113305723176531,0.019757428620836077,-0.016281458239613557,0.047512073600346094,-0.0012881149159145635,0.00014423654925222097,0.026686677382544103,-0.06462080227451392,0.2576949180811257,0.027817819153612037,0.0016094803032216192,0.002187600441635928,-0.027876440497270113,0.26538187786954215,0.002987360630834803,2.701147194204356e-05,0.005084403419905155,0.06037225226879522,0.18572846739282867,0.10699688831458379,0.001062747697868957,0.008645184503025967,0.0019996179230733556,0.014250634549627541,0.0005042971902408527,9.344121160208935e-05,0.0015139522343726917,-0.005245911784112917,0.008605788407140677,-0.00015060187111100678,0.00014387180945097357,0.013103008046784055,0.0017283027813254344,0.0025441817341080833,-0.08806369668741808,0.000389920090258705,0.007611768821697996,0.05637128446781448,0.23642362442299408,0.11448858346266864,0.001848065676035649,0.0007593765181079415,-0.003270395375402448,0.015441811916878722,-0.022858934667357167,6.795045544937502e-05,0.007580247329099357,-0.04753597112410905,0.06843418234120704,0.0474176150446794,0.0017267381322925376,0.02511579639345717,0.026955329584714614,0.08744602798045614,0.0545699350962989,0.00012212950456909902,0.007878899037702485,0.06805027467692572,0.20508081391988048,0.11677252713891335,0.00013451329966142518,0.005157204043489604,0.014154863966308398,0.05709729379010419,-0.03428022251773104,6.0506788175950544e-05,0.017904299689323264,0.021193892937601055,0.07256203186906415,-0.03190632226247159,0.0027683395595378235,0.024828800305904355,0.02584158791079379,0.1484399374672855,0.01726485224221863,8.659822783295412e-05,0.002372637255416863,0.024334483811055466,0.14094593670642694,0.05702218787946814,0.00012520750529064988,0.008545293369218344,-0.03967228253266416,0.19413135448296373,0.00420489117849813,9.665853360795847e-05,0.0029865925268741348,-0.010212905831623311,0.04586912659457757,-0.054249591985050284,5.595981263272803e-05,0.0027809136385007777,0.05922341040369191,0.12582253209006417,0.025515499429809595,0.0002294903276771676,0.009060574588081589,0.010143591926984353,0.041736726063944456,-0.0513059291937052,6.0434894231030476e-05,0.0036059798963852443,0.0035502638439134254,0.035681646770715565,-0.011189762344831858,2.567125055092935e-05,0.003739528302013676,-0.009195507642310325,0.02891970306928393,-0.04291988475122828,0.00011114523403139796,0.006311939877074648,0.03173771193777641,0.14177804466768973,0.0887390402492716,0.0003528536404246527,0.003958070449705308,-0.009278565407870485,0.043758219515448296,0.002651196048296646,0.00012144873258838951,0.02924542333570237,0.0021763747824710433 +2022-12-26,-0.018625652223643433,0.13488340562099055,-0.03138469952932483,0.00014602914779853694,0.005548490540535724,0.05819403716369708,0.20651711803000178,0.07341816906997328,6.761342841064815e-05,0.01600864982718656,-0.03337735327337339,0.11482309419168563,0.034653943665642305,0.0001344682813314398,0.0084162030943693,-0.009371191640014716,0.009216492984662497,0.00023776563758085999,0.00034316025249748615,0.0064001075022486345,-0.02296139142951508,0.05701904637349231,-0.04692758208820007,0.00021070557415761996,0.0009849257872267367,0.0025817804815226122,0.0074610965488870334,-0.08086133050868045,7.555503186330971e-05,0.002696828180728793,0.00301125863539987,0.009045091784787117,-0.0012946880777413542,9.768433749741162e-05,0.013137072694429531,0.010574767367929503,0.08595413478417441,-0.0882043632573049,4.2189333412789557e-05,0.004150175165600511,-0.020964372663414218,0.0216166158651382,0.04873688688665707,0.0007478921119105818,0.00360291192076914,0.060534913065154586,0.12982547149035653,0.2035468564451641,0.00016304515611307335,0.0011816675053726473,0.007573076114252481,0.004982249813182736,-0.02104160079933085,0.0007429698332399201,0.00781985752674326,0.010576731384888906,0.16700873770469665,0.005052859358525583,1.887274494548806e-05,0.01074097321570354,-0.01995393887067509,0.06166180178752452,0.014641559250916973,9.613100095947099e-05,0.003460989937114606,0.017375662041769158,0.11460703265229943,-0.051985283317235086,4.2676806239197416e-05,0.0010954600467529808,0.006636982291686155,0.004916838603182652,0.007299256954457615,0.002632738223461755,0.00609652826597638,-0.0667570367912116,0.5080736354601225,0.05125437664409441,0.00010812409845532601,0.021456974827683075,-0.0011779456628620657,0.00807694909299943,-0.00027893243362949404,0.00022583234477059115,0.0069277775467926975,0.0006136507585595645,0.0037903738703543724,-0.07824444921928532,4.560371069549386e-05,0.0007272921952240955,-0.004709519175127469,0.02606714966360033,-0.02096041687077003,0.0002977623830277651,0.01943195452172864,-0.07150841336419778,0.8110842679405821,0.08689997488945192,3.6586544668117335e-05,0.01767190254297303,-0.0035978695562620994,0.03890139582556919,-0.02723444142673627,3.0900246084339706e-05,0.0028827803852408684,0.008454763255819547,0.026078044589979626,-0.06611982865028845,0.00010443574845775317,0.002253047790631808,0.07809232793689162,0.46055123908261775,0.031705058020887064,3.916722387479694e-05,0.016228737333472888,0.004460414398494027,0.014536511217411181,-0.010847715470209313,6.80287363042127e-05,0.0035216267921373296,-0.02240341256212732,0.0834334604165523,0.229643489839116,0.00012277855442554352,0.00010711722008182657,-0.046668928451492585,0.04516158745576877,0.0009657069902356129,0.0005906554172415766,0.010277109847049696,0.026456266395916077,0.08766214171127522,0.02182473762379786,0.00012702888531768624,0.006881475732609216,0.028533333395931264,0.10229304374553619,-0.010283210145152254,0.0017902990627338433,0.007140505899973032,-0.017277535426456398,0.15777811779508283,-0.017397081684072127,2.8158999270557834e-05,0.009229352860296964,-0.04108556288208261,0.10245783952117432,0.049366581363585814,0.0013110381129921977,0.004008966536706882,0.005356733880922764,0.03718834620926569,-0.001338958511348512,9.59221378032929e-05,0.0006886051058713268,-0.058800396701220836,0.08720582687683069,0.15852168817998324,0.00015914028737923355,0.0018678739695699997,0.02455107467312071,0.028621657556474684,0.040739241202380254,0.0004923564591476411,0.011069186956720796,-0.009571856781680755,0.038526112427790374,0.008387189138957288,0.0019257120384679155,0.014930397053901897,0.035135494154626946,0.1534870167244432,0.07236899099206619,7.344543229754145e-05,0.0012899726670915932,0.02571450834006819,0.039788540491957736,0.0109939321199257,0.001606561695391149,0.03302193276221914,0.03160830497529872,0.10144734612465872,0.03528103263285935,0.00012344586671215682,0.009313043713065086,0.01114343546372685,0.032492566463788806,-0.009484406614538898,0.00013902581905815326,0.01697113373087507,0.01728723455956704,0.0701259997419257,-0.000581591336148127,6.016728073553286e-05,0.02411023408308836,-0.05183326115572917,0.2012286859446371,0.0344574620370184,0.0024413874101252937,0.011555661750115763,-0.03063487144320644,0.14560434571012448,-0.019729814172150365,0.00010466037723457081,0.007695481325051811,0.03568464471052021,0.18358304852011106,0.10096355914265462,0.00014096444447715583,0.00370073725977508,-0.048302160625533434,0.27186921801152564,0.027939888143655812,8.403403524673801e-05,0.0031808167146289857,0.0004544677380708233,0.002135002815971335,-0.012047084516637703,5.349978066235667e-05,0.009932081019670325,-0.045857974855229626,0.09505842465079277,-0.0005898174616607342,0.00023520884711580598,0.048183003488375196,0.011413890812773045,0.04397181327654041,0.023748383435550833,6.4546651095818e-05,0.008149578334379421,0.012541500711175078,0.13012520546643266,0.004971980083982139,2.4866769247510802e-05,0.009794996256715077,-0.0031598229630321177,0.010046907577380177,-0.0020627266852461237,0.0001099358423110492,0.00788874131930323,-0.007719824446654606,0.03512894897954573,0.007053471113684608,0.000346393902718133,0.00670983701360101,-0.013529033411468612,0.06938973096435598,0.004986866459272366,0.00011167176019810669,0.04621001210088568,-0.0029825394769650232 +2022-12-27,-0.026276501944125397,0.201307345804089,0.014554777694923776,0.00013803668164689146,0.01305251814827491,-0.012213894496251864,0.043309783739495955,7.624298216026903e-05,6.766727314834014e-05,0.008921453413368498,0.02280469615904096,0.08023956554783537,-0.01606914458115198,0.00013147189603076765,0.01559124784942774,-0.003433041814295603,0.0036925508589849623,-0.06273432784101544,0.00031377653563964043,0.0032789893498549167,0.049284421626378624,0.10205673956173701,0.10205347233056565,0.00025267702035312623,0.004780679965817263,0.012312272141057738,0.03072736295886016,-0.005817258000764752,8.749024962004561e-05,0.00679965269726105,0.029658043422755152,0.11450523139147542,0.0013886669187891873,7.599885044221317e-05,0.028790389076134706,-0.011373012911959884,0.08270974982296929,0.003676279293570015,4.715388060431562e-05,0.0024006839120995992,0.0017463975064518481,0.0013764877385851941,-0.031646423112525114,0.0009783979680411021,0.0006503534121849401,0.016398912096976744,0.038045636527875924,0.0056449201686687685,0.0001507204110235431,0.02590384044816534,0.017202449311487875,0.01177960378926734,-0.030628502437626992,0.0007138121928795593,0.003920867356449679,-0.014226946245640602,0.22369915565450718,-0.029258240111307298,1.8952658406010743e-05,0.006219111332777534,0.025210004978939934,0.07200160290666549,-0.004331587906685947,0.00010401160654554067,0.009391919503166514,-0.005798767399368359,0.038086982006300986,-0.03303413834543493,4.285691899949281e-05,0.0026623627048480013,0.020088558027340074,0.016549626574097392,-0.02262490731140263,0.002367464838719178,0.019528096174122208,-0.005489586705114989,0.033511636073806104,-0.015692707857822532,0.00013480193479616052,0.001621056499428194,0.0015870725090763587,0.009835013684407753,8.751945802558968e-05,0.00024987915712566583,0.0020053812332293352,0.050732246732939204,0.3460387986588023,0.008450094277158746,4.129716665816322e-05,0.024883615592071865,-0.03601493857923261,0.20154666572448052,-0.034532789618125746,0.000294505810766623,1.726567115367672e-05,-0.07705430057581553,0.94466263194971,0.0766125846325488,3.384935344534004e-05,0.02249908124730044,0.007223740208023032,0.06979735059318218,-0.02715253492862752,3.457839969996179e-05,0.004819049437156843,0.013885172762207265,0.04711805055400776,-0.24696838307069846,9.49263385281107e-05,0.01221759750071562,0.030483015787621456,0.1889675926429793,-0.0006191135566412755,3.7261726748642285e-05,0.01977398583843453,-0.054991442301187465,0.1338424868218928,0.226498428508666,9.109163460247823e-05,0.007912067053099499,0.002313570559112108,0.009238299814841902,-0.04934915688147511,0.00011450891304485524,0.0006740028232002978,0.014217099336656594,0.012454335106562927,-0.01849446522061227,0.0006524782093935258,0.0008540446843045431,0.015598981411821157,0.05327750497283599,0.007453216053260894,0.00012323622071479644,0.0023536378939993646,0.00035222496048346137,0.0013210443508555635,-7.030501863099029e-05,0.0017112832737240533,0.026807024387035132,-0.060121173516405946,0.5939665559438327,0.05024459677083654,2.602841078347857e-05,0.009733015279190007,-0.02793046952624565,0.08957545286624018,0.006409919734521031,0.001019437238718431,0.003188998104784302,0.0007184458754606858,0.0050056679405061045,-0.03273208702656743,9.55779392633594e-05,0.008017260743483615,0.01940964029584053,0.024396653634143655,0.04054229413492646,0.0001877727699454283,0.01269256085120369,-0.017264153735452547,0.024747177284940507,-0.006340723806941064,0.00040042717107701385,0.005643929660751355,0.02668554977372152,0.09918196793751641,-0.12822277727265752,0.0020854211536013856,0.009539449477097752,-0.007963836114916571,0.03167224865865845,-0.050297672971003585,8.067403631101947e-05,0.01360768574116193,-0.004160440320076377,0.005907726052481271,0.00108802375603636,0.0017506371486716672,0.01560305263746995,-0.008334091073578432,0.022623540620074312,0.0019763897869062253,0.00014595322809636603,0.010614685829321348,-0.017233404526781765,0.04661217727012962,0.0059642483979205395,0.00014987599149230026,0.012798810740985456,-0.016316851846964207,0.07532671318527646,-0.0033054011599364078,5.2869022102710705e-05,0.0023580830396430093,-0.032862786259682364,0.11455296252302306,0.005771882758181255,0.0027190432451202986,0.007081474611375458,-0.01958719006237176,0.10145016559844347,-0.07238637788993395,9.604172414112927e-05,0.01541726618078092,0.012196372900621621,0.06700150701920864,0.00509338100178289,0.00013201002327358307,0.009130279057731694,-0.004050839474143429,0.022590132572719215,-0.015347860384834218,8.48154464558117e-05,0.027250049285476835,0.022046956604669654,0.09962976955398536,0.012975125144382836,5.5616917683314136e-05,0.006015249752108706,-0.008269607803819731,0.01604059773740685,-0.046281629665272744,0.0002513586061116857,0.007828024841305186,-0.013207920272643288,0.05498711848063159,-0.0945718223460747,5.972935884217733e-05,0.00832422893046638,0.00242815551586132,0.028154578602244268,-0.004046586725934746,2.2251472325255917e-05,0.00795824899903011,-0.024988209251073645,0.08998921964259303,0.010174074058348598,9.70629782280211e-05,0.0061851641528743095,0.02969722995198542,0.11077240696450774,0.06485845739384567,0.00042258329020061455,0.007012721464457489,-0.0195606097449061,0.08213728880103788,0.0014773267337259773,0.0001363998274778556,0.0037973357536109954,-0.0018336625148926396 +2022-12-28,-0.02149008148118405,0.17574598320561188,0.009481614603025355,0.00012931212195873404,0.010179884407223378,0.00410567049422486,0.011968136532909165,-0.00024121739436056363,8.231293419182341e-05,0.0025685265945084995,-0.008611140558290105,0.028928729962488166,-0.01091153558387743,0.00013769827989882028,0.007276132685067976,0.005389554714308434,0.004648832535710591,0.0017182673677919988,0.0003912702605817715,7.27274911536094e-05,-0.018688040885889934,0.0515881192267197,0.07279731925529458,0.00018954479065462425,0.004895751617623847,-0.014790311272923401,0.04141531986701567,-0.04189505725841477,7.797637363050896e-05,0.006715708112887203,-0.015814632964421246,0.06636944941945666,-0.004884987750238252,6.991667351466773e-05,0.0006249932474869169,0.011954365811445083,0.10154497395654978,-0.002377368969234559,4.037074122632241e-05,0.01189530972265354,0.02748341102672221,0.020670298090393523,0.06362161352678322,0.0010253418408861827,0.003515659597085965,-0.01871813785538796,0.04998964866857976,0.024675915280703294,0.00013093159043982023,0.0019973952902558787,-0.0011038519656253552,0.0010176858955072915,-0.013326350590006517,0.0005301776771848557,0.004849234464706252,-0.009110868833127006,0.13038888334076446,0.01395658516123959,2.082293855833433e-05,0.0020854611439009908,0.021232376588739908,0.06787839748565024,-0.037983316588233486,9.292189663876451e-05,0.008376409750982323,-0.0034371459318889583,0.018637012577579288,-0.03522680731261097,5.191388031337343e-05,0.005446411688226236,-0.026129624467396396,0.023986583990923422,0.012764343685635235,0.002124651663402805,0.005561048555193385,-0.04664100328633077,0.3106369067836154,0.01941358146929441,0.00012355688155958662,0.026587820294291735,-0.040970121769640454,0.24414327420553558,0.036631233043317196,0.0002598547872025678,0.025187049435215467,0.017034574361645106,0.1091272339700743,-0.012634485005625426,4.3970266219587764e-05,0.0070076888984822346,-0.04370681667898455,0.26542521361732424,-0.0009366620301529074,0.0002713899795800195,0.015522956723633838,-0.10136893591197012,1.3968639040896083,0.08854093727753207,3.0114872159241647e-05,0.0030150019725582846,-0.01618496486986075,0.17648095966933947,0.008646875437731719,3.0640483455042436e-05,0.019862546406216236,-0.028831334870544578,0.0897940540832641,0.06382431975913276,0.00010342842858079904,0.006033044958594562,-0.03760313522701075,0.2727204022523886,0.04429981122319143,3.184922022295682e-05,0.035765133080414124,-0.0013007333968722875,0.00358338573852159,-0.0024214237291782822,8.047706188612709e-05,0.0026036477274384946,0.00854930559601396,0.029030518341918634,0.039442247482540056,0.00013465567045695318,0.0003350174503078847,-0.06481534732802292,0.06600062441248325,0.011047073020456178,0.0005613133478591692,0.00750683565779164,-0.0016552427550549057,0.00650652808259496,-0.0019023013059203226,0.00010707754271780122,0.006228029548492059,0.006737549356690657,0.02439399756431408,-0.008630587428681754,0.0017727118925716147,0.030137414913437292,-0.012411491299631296,0.11129060606498466,-8.761216683192828e-05,2.8677920400655166e-05,0.005572012507513503,0.02255898727371027,0.07051463676809831,0.01210603252776058,0.0010459516175344514,0.004909299991339526,0.04860272486288853,0.3257822031733432,0.13417341106665745,9.934794895102198e-05,0.008773407514356813,0.01588758636941532,0.02334923285919513,-0.012505243607467227,0.0001605945099280594,0.025967814741578048,0.0136839960591648,0.018358371595964068,-0.031975762534331535,0.00042784129290201426,0.00379079124852892,-0.02252946975458206,0.09073744235851228,0.04881815104786332,0.0019244860974536896,0.011228867740161103,0.030854552542737744,0.11992926252047222,0.046236936582605526,8.254380031586918e-05,0.0033356184091513337,0.004543510080403886,0.006123475393741864,1.418301750444249e-05,0.0018444662405515634,0.008853258243552627,-0.03554675440721558,0.11919308613313197,0.02338191020735409,0.00011815848816368347,0.005217890628083325,-0.015250366165126128,0.04338988532772721,0.003853815302099145,0.00014247942213625327,0.006425081051654281,0.00390505698760874,0.017641689976226175,-0.005342010068181621,5.402578864932085e-05,0.007263289938513457,0.09667594120862952,0.37342134565035395,0.07738331919152401,0.0024537896328555085,0.009119488616049309,-0.012012331720609132,0.06744362918128588,0.0027128099080003707,8.859861961821003e-05,0.02401824068268986,-0.026449923969023143,0.12517447087369957,0.009719273019389657,0.00015323904900842476,0.001587181837935052,-0.0017599229485700328,0.01292622710015085,-0.01161627442350239,6.439773184209975e-05,0.022758134616609943,0.013549751025037735,0.05213824605826182,0.006623300319034753,6.531640793302519e-05,0.004116743554613985,-0.03978665913532806,0.08332010764847732,-0.02261043943051785,0.0002328182630809246,0.004305186743695396,-0.003756464504196234,0.014621272290261876,-0.07598458012108586,6.388641235626e-05,0.0044202834982003635,-0.0615344561304066,0.5752517847840902,0.17888181379926837,2.7598893915262686e-05,0.0007596685039944265,0.01181182410130795,0.033114967815618845,0.00035794768195153274,0.0001246813793379471,0.021216738490901537,-0.021819363606956736,0.09168187304914749,0.0641485695479812,0.00037513412553564834,0.00520410634535774,0.026941616814112942,0.1307582450579126,0.0007692489195780356,0.00011801205357921663,0.03436845785792234,-0.00792466531569074 +2022-12-29,-0.014414890843923937,0.10740611828858426,-0.12618360409915347,0.0001419282738103251,0.006758901343327162,0.016505791140051688,0.04803691692108007,-0.03752532027608769,8.244640928770586e-05,0.011846069088713815,-0.004002844938909494,0.012304632298188541,-2.0651879249510824e-05,0.00015048642712755435,0.01037540716732413,0.0019634573897412775,0.0021140120766666892,-0.013161634401211758,0.00031345981514837364,0.021247159913967868,0.02213409387981107,0.04495688396385889,-0.046341135793330684,0.00025761035613104747,0.002733670963080163,-0.019643031223776437,0.04575716685023529,0.07252815387441369,9.373377768316476e-05,0.0045476404914619505,-0.010553388926816743,0.0317605007502554,0.008997899014924605,9.749771953868136e-05,0.023744921481860352,-0.012539928488526147,0.11286913825500032,-0.011958845468312659,3.809942883941832e-05,0.005379174612113297,-0.015639957882492075,0.011659743468503507,-0.05562655772541748,0.001034406808478311,0.006144033850547128,0.021076021019998697,0.045568928619397715,0.0026175965314591547,0.0001617266875504791,0.00038671424156124087,-0.02639537675680176,0.017758569028439124,0.08925680750319409,0.0007265144486870383,0.002092594365561926,-0.021403840946196972,0.2900775541922058,0.06486047493467646,2.198874179061991e-05,0.0011105950197806919,-0.017531236835606034,0.04681099715183927,-0.001684125581842832,0.00011125401737075558,0.016382256768045198,-0.01725131260216753,0.10888220920167704,-0.02437105259877414,4.4599196975416126e-05,0.004895180871529557,0.025442486499185825,0.024261966018633205,0.041830420211240615,0.0020452977245516406,0.014653571898589384,0.03878822314185353,0.2251716167985958,-0.00246006905425032,0.00014175498714552077,0.05504530291006745,0.007413114183719255,0.043399814329786436,-0.12040004992687885,0.00026449718237351444,0.004630120964274647,-0.013360108123311629,0.07809395625219313,0.013317326098189947,4.818962026605852e-05,0.007018182260535215,0.028093281038639947,0.1530413321785482,0.06514247470257561,0.0003025384195337089,0.002035526414018811,0.019050907136710555,0.2512227848747984,-0.0384433141076512,3.14692842862115e-05,0.022646603007110893,-0.017546447851892633,0.20580152110619662,0.03521220843305964,2.8485401075246368e-05,0.0005698536925422915,0.027615520376297067,0.08016953061864014,-0.001896018800964825,0.0001109600506365011,0.00814219775774553,0.020794788569305937,0.13486376783601883,-0.036856513204745416,3.5616529257047204e-05,0.003934819902324698,0.0010396201777936138,0.0028832554291153395,-0.008229462296348819,7.994088720867874e-05,0.01568252474683936,0.004783865567573342,0.019930684186598883,0.008229820077042527,0.00010975020876092337,0.001131070959860925,-0.043757258285549605,0.04442423355975593,-0.018741391165456003,0.0005629965325151058,0.0008777798478040179,-0.0029396739298465035,0.013050179058617386,-0.12661352259674016,9.481317705570143e-05,0.0033263772897363176,-0.019272060180906887,0.07583172212123428,0.0003705684842483826,0.0016311593843474888,0.004776522316837263,-0.017236647535703257,0.1492560903429712,-0.015595225611455493,2.969634054811736e-05,0.010206764356793423,-0.017281249164044256,0.049477004019319454,-0.008993965285389167,0.0011419392692615469,0.0021112242620769397,-0.012269481523926654,0.10072332748493545,0.009878433063481502,8.111885082393166e-05,0.016875071140877478,-0.004424903437400214,0.006896603852270207,-0.0018677293560871253,0.0001514306908285835,0.007736854137062642,0.03129448389338732,0.03778910794926717,0.06288201182906264,0.0004753407721672915,0.020532717373940964,-0.013626124562160618,0.060142365814136275,0.012003040850231208,0.0017560714730751712,0.008310370372475107,0.0015864651338668681,0.005994897314628696,-0.0018467512535167191,8.490615101636577e-05,0.010088519923675989,0.004652427025632639,0.007128156150003285,-0.031063428330933732,0.0016224807650666087,0.00433505084678789,0.05366237437772559,0.17970380894905638,0.14183058518179564,0.0001183119572305776,0.010119600971323644,0.027674936651859407,0.08421941746401772,-0.0019536101223931444,0.00013320937124486692,0.005360445454033558,0.040619410563811076,0.1564214014302163,0.07207862487993053,6.33798737062102e-05,0.004407155975722032,0.029793647701668504,0.11884736945091794,0.003942051009535812,0.002376031327779762,0.005395822250903933,0.002344759748616716,0.011718469757818064,-0.092154923778483,9.953321155359781e-05,0.009757557750669726,-0.03549363729873758,0.21060104421683465,0.11000437680838782,0.00012222238981490682,0.00899942075655686,-0.0008304233202879045,0.005049457178751952,0.001062408098328405,7.778637659321381e-05,0.01247759161280009,-0.02328286480015373,0.12151255568926145,0.010110112205189642,4.8157358364330025e-05,0.011690899690927996,-0.016109503542498387,0.027639291221874716,-0.0023023353534746393,0.00028417420185903984,0.011185606375932616,-0.030395710996073817,0.13079627905785257,0.07356246739178599,5.7787152288480946e-05,0.0002317510651315502,0.007479945854240757,0.08494231352314009,0.003750507708533977,2.271986016843143e-05,0.0035872027347386803,-0.009919772151943134,0.030879754887217364,-0.008442038966478804,0.00011228889731935912,0.008174556263021503,0.020367176212701302,0.08742572043184375,0.022334663173939576,0.0003672142888976322,0.006120152591735461,0.021023590137070693,0.09071191701816408,-0.08467700765861201,0.00013274382639871123,0.006374697494889987,0.00159875964757754 diff --git a/financial_loss_functions/docs/Doxyfile b/financial_loss_functions/docs/Doxyfile new file mode 100644 index 00000000..f96cbe21 --- /dev/null +++ b/financial_loss_functions/docs/Doxyfile @@ -0,0 +1,2927 @@ +# Doxyfile 1.15.0 + +# This file describes the settings to be used by the documentation system +# Doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). +# +# Note: +# +# Use Doxygen to compare the used configuration file with the template +# configuration file: +# doxygen -x [configFile] +# Use Doxygen to compare the used configuration file with the template +# configuration file without replacing the environment variables or CMake type +# replacement variables: +# doxygen -x_noenv [configFile] + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "Financially Guided Neural Networks for Robust Portfolio Optimization" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 0.1 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewers a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# With the PROJECT_ICON tag one can specify an icon that is included in the tabs +# when the HTML document is shown. Doxygen will copy the logo to the output +# directory. + +PROJECT_ICON = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where Doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = "./docs_out" + +# If the CREATE_SUBDIRS tag is set to YES then Doxygen will create up to 4096 +# sub-directories (in 2 levels) under the output directory of each output format +# and will distribute the generated files over these directories. Enabling this +# option can be useful when feeding Doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise cause +# performance problems for the file system. Adapt CREATE_SUBDIRS_LEVEL to +# control the number of sub-directories. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# Controls the number of sub-directories that will be created when +# CREATE_SUBDIRS tag is set to YES. Level 0 represents 16 directories, and every +# level increment doubles the number of directories, resulting in 4096 +# directories at level 8 which is the default and also the maximum value. The +# sub-directories are organized in 2 levels, the first level always has a fixed +# number of 16 directories. +# Minimum value: 0, maximum value: 8, default value: 8. +# This tag requires that the tag CREATE_SUBDIRS is set to YES. + +CREATE_SUBDIRS_LEVEL = 8 + +# If the ALLOW_UNICODE_NAMES tag is set to YES, Doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by Doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Bulgarian, +# Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, English +# (United States), Esperanto, Farsi (Persian), Finnish, French, German, Greek, +# Hindi, Hungarian, Indonesian, Italian, Japanese, Japanese-en (Japanese with +# English messages), Korean, Korean-en (Korean with English messages), Latvian, +# Lithuanian, Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, +# Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, +# Swedish, Turkish, Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, Doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, Doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, Doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, Doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which Doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where Doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, Doxygen will generate much shorter (but +# less readable) file names. This can be useful if your file system doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen will interpret the +# first line (until the first dot, question mark or exclamation mark) of a +# Javadoc-style comment as the brief description. If set to NO, the Javadoc- +# style will behave just like regular Qt-style comments (thus requiring an +# explicit @brief command for a brief description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the JAVADOC_BANNER tag is set to YES then Doxygen will interpret a line +# such as +# /*************** +# as being the beginning of a Javadoc-style comment "banner". If set to NO, the +# Javadoc-style will behave just like regular comments and it will not be +# interpreted by Doxygen. +# The default value is: NO. + +JAVADOC_BANNER = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will interpret the first +# line (until the first dot, question mark or exclamation mark) of a Qt-style +# comment as the brief description. If set to NO, the Qt-style will behave just +# like regular Qt-style comments (thus requiring an explicit \brief command for +# a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# By default Python docstrings are displayed as preformatted text and Doxygen's +# special commands cannot be used. By setting PYTHON_DOCSTRING to NO the +# Doxygen's special commands can be used and the contents of the docstring +# documentation blocks is shown as Doxygen documentation. +# The default value is: YES. + +PYTHON_DOCSTRING = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then Doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:^^" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". Note that you cannot put \n's in the value part of an alias +# to insert newlines (in the resulting output). You can put ^^ in the value part +# of an alias to insert a newline as if a physical newline was in the original +# file. When you need a literal { or } or , in the value part of an alias you +# have to escape them by means of a backslash (\), this can lead to conflicts +# with the commands \{ and \} for these it is advised to use the version @{ and +# @} or use a double escape (\\{ and \\}) + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = Yes + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by Doxygen: IDL, Java, JavaScript, +# Csharp (C#), C, C++, Lex, D, PHP, md (Markdown), Objective-C, Python, Slice, +# VHDL, Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files). For instance to make Doxygen treat .inc files +# as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by Doxygen. When specifying no_extension you should add +# * to the FILE_PATTERNS. +# +# Note see also the list of default file extension mappings. + +EXTENSION_MAPPING = py=python + +# If the MARKDOWN_SUPPORT tag is enabled then Doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by Doxygen, so you can +# mix Doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# If the MARKDOWN_STRICT tag is enabled then Doxygen treats text in comments as +# Markdown formatted also in cases where Doxygen's native markup format +# conflicts with that of Markdown. This is only relevant in cases where +# backticks are used. Doxygen's native markup style allows a single quote to end +# a text fragment started with a backtick and then treat it as a piece of quoted +# text, whereas in Markdown such text fragment is treated as verbatim and only +# ends when a second matching backtick is found. Also, Doxygen's native markup +# format requires double quotes to be escaped when they appear in a backtick +# section, whereas this is not needed for Markdown. +# The default value is: YES. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_STRICT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 6. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 6 + +# The MARKDOWN_ID_STYLE tag can be used to specify the algorithm used to +# generate identifiers for the Markdown headings. Note: Every identifier is +# unique. +# Possible values are: DOXYGEN use a fixed 'autotoc_md' string followed by a +# sequence number starting at 0 and GITHUB use the lower case version of title +# with any whitespace replaced by '-' and punctuation characters removed. +# The default value is: DOXYGEN. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +MARKDOWN_ID_STYLE = DOXYGEN + +# When enabled Doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. Words listed in the +# AUTOLINK_IGNORE_WORDS tag are excluded from automatic linking. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# This tag specifies a list of words that, when matching the start of a word in +# the documentation, will suppress auto links generation, if it is enabled via +# AUTOLINK_SUPPORT. This list does not affect links explicitly created using \# +# or the \link or commands. +# This tag requires that the tag AUTOLINK_SUPPORT is set to YES. + +AUTOLINK_IGNORE_WORDS = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let Doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also makes the inheritance and +# collaboration diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software) sources only. Doxygen will parse +# them like normal C++ but will assume all classes use public instead of private +# inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# Doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then Doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, Doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# Doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run Doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +# The NUM_PROC_THREADS specifies the number of threads Doxygen is allowed to use +# during processing. When set to 0 Doxygen will based this on the number of +# cores available in the system. You can set it explicitly to a value larger +# than 0 to get more control over the balance between CPU load and processing +# speed. At this moment only the input processing can be done using multiple +# threads. Since this is still an experimental feature the default is set to 1, +# which effectively disables parallel processing. Please report any issues you +# encounter. Generating dot graphs in parallel is controlled by the +# DOT_NUM_THREADS setting. +# Minimum value: 0, maximum value: 512, default value: 1. + +NUM_PROC_THREADS = 1 + +# If the TIMESTAMP tag is set different from NO then each generated page will +# contain the date or date and time when the page was generated. Setting this to +# NO can help when comparing the output of multiple runs. +# Possible values are: YES, NO, DATETIME and DATE. +# The default value is: NO. + +TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, Doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual +# methods of a class will be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIV_VIRTUAL = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If this flag is set to YES, the name of an unnamed parameter in a declaration +# will be determined by the corresponding definition. By default unnamed +# parameters remain unnamed in the output. +# The default value is: YES. + +RESOLVE_UNNAMED_PARAMS = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# will also hide undocumented C++ concepts if enabled. This option has no effect +# if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_UNDOC_NAMESPACES tag is set to YES, Doxygen will hide all +# undocumented namespaces that are normally visible in the namespace hierarchy. +# If set to NO, these namespaces will be included in the various overviews. This +# option has no effect if EXTRACT_ALL is enabled. +# The default value is: YES. + +HIDE_UNDOC_NAMESPACES = YES + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all friend +# declarations. If set to NO, these declarations will be included in the +# documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# With the correct setting of option CASE_SENSE_NAMES Doxygen will better be +# able to match the capabilities of the underlying filesystem. In case the +# filesystem is case sensitive (i.e. it supports files in the same directory +# whose names only differ in casing), the option must be set to YES to properly +# deal with such files in case they appear in the input. For filesystems that +# are not case sensitive the option should be set to NO to properly deal with +# output files written for symbols that only differ in casing, such as for two +# classes, one named CLASS and the other named Class, and to also support +# references to files without having to specify the exact matching casing. On +# Windows (including Cygwin) and macOS, users should typically set this option +# to NO, whereas on Linux or other Unix flavors it should typically be set to +# YES. +# Possible values are: SYSTEM, NO and YES. +# The default value is: SYSTEM. + +CASE_SENSE_NAMES = SYSTEM + +# If the HIDE_SCOPE_NAMES tag is set to NO then Doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then Doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_HEADERFILE tag is set to YES then the documentation for a class +# will show which file needs to be included to use the class. +# The default value is: YES. + +SHOW_HEADERFILE = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES then Doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then Doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then Doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then Doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then Doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and Doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING Doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# Doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by Doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by Doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents Doxygen's defaults, run Doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. See also section "Changing the +# layout of pages" for information. +# +# Note that if you run Doxygen from a directory containing a file called +# DoxygenLayout.xml, Doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +# The EXTERNAL_TOOL_PATH tag can be used to extend the search path (PATH +# environment variable) so that external tools such as latex and gs can be +# found. +# Note: Directories specified with EXTERNAL_TOOL_PATH are added in front of the +# path already specified by the PATH variable, and are added in the order +# specified. +# Note: This option is particularly useful for macOS version 14 (Sonoma) and +# higher, when running Doxygen from Doxywizard, because in this case any user- +# defined changes to the PATH are ignored. A typical example on macOS is to set +# EXTERNAL_TOOL_PATH = /Library/TeX/texbin /usr/local/bin +# together with the standard path, the full search path used by doxygen when +# launching external tools will then become +# PATH=/Library/TeX/texbin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin + +EXTERNAL_TOOL_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by Doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by Doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then Doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, Doxygen will generate warnings for +# potential errors in the documentation, such as documenting some parameters in +# a documented function twice, or documenting parameters that don't exist or +# using markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# If WARN_IF_INCOMPLETE_DOC is set to YES, Doxygen will warn about incomplete +# function parameter documentation. If set to NO, Doxygen will accept that some +# parameters have no documentation without warning. +# The default value is: YES. + +WARN_IF_INCOMPLETE_DOC = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, Doxygen will only warn about wrong parameter +# documentation, but not about the absence of documentation. If EXTRACT_ALL is +# set to YES then this flag will automatically be disabled. See also +# WARN_IF_INCOMPLETE_DOC +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If WARN_IF_UNDOC_ENUM_VAL option is set to YES, Doxygen will warn about +# undocumented enumeration values. If set to NO, Doxygen will accept +# undocumented enumeration values. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: NO. + +WARN_IF_UNDOC_ENUM_VAL = NO + +# If WARN_LAYOUT_FILE option is set to YES, Doxygen will warn about issues found +# while parsing the user defined layout file, such as missing or wrong elements. +# See also LAYOUT_FILE for details. If set to NO, problems with the layout file +# will be suppressed. +# The default value is: YES. + +WARN_LAYOUT_FILE = YES + +# If the WARN_AS_ERROR tag is set to YES then Doxygen will immediately stop when +# a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS +# then Doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but +# at the end of the Doxygen process Doxygen will return with a non-zero status. +# If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS_PRINT then Doxygen behaves +# like FAIL_ON_WARNINGS but in case no WARN_LOGFILE is defined Doxygen will not +# write the warning messages in between other messages but write them at the end +# of a run, in case a WARN_LOGFILE is defined the warning messages will be +# besides being in the defined file also be shown at the end of a run, unless +# the WARN_LOGFILE is defined as - i.e. standard output (stdout) in that case +# the behavior will remain as with the setting FAIL_ON_WARNINGS. +# Possible values are: NO, YES, FAIL_ON_WARNINGS and FAIL_ON_WARNINGS_PRINT. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that Doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# See also: WARN_LINE_FORMAT +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# In the $text part of the WARN_FORMAT command it is possible that a reference +# to a more specific place is given. To make it easier to jump to this place +# (outside of Doxygen) the user can define a custom "cut" / "paste" string. +# Example: +# WARN_LINE_FORMAT = "'vi $file +$line'" +# See also: WARN_FORMAT +# The default value is: at line $line of file $file. + +WARN_LINE_FORMAT = "at line $line of file $file" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). In case the file specified cannot be opened for writing the +# warning and error messages are written to standard error. When as file - is +# specified the warning and error messages are written to standard output +# (stdout). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = "../src" + +# This tag can be used to specify the character encoding of the source files +# that Doxygen parses. Internally Doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: +# https://www.gnu.org/software/libiconv/) for the list of possible encodings. +# See also: INPUT_FILE_ENCODING +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# This tag can be used to specify the character encoding of the source files +# that Doxygen parses. The INPUT_FILE_ENCODING tag can be used to specify +# character encoding on a per file pattern basis. Doxygen will compare the file +# name with each pattern and apply the encoding instead of the default +# INPUT_ENCODING if there is a match. The character encodings are a list of the +# form: pattern=encoding (like *.php=ISO-8859-1). +# See also: INPUT_ENCODING for further information on supported encodings. + +INPUT_FILE_ENCODING = + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by Doxygen. +# +# Note the list of default checked file patterns might differ from the list of +# default file extension mappings. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cxxm, +# *.cpp, *.cppm, *.ccm, *.c++, *.c++m, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, +# *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp, *.h++, *.l, *.cs, *.d, *.php, +# *.php4, *.php5, *.phtml, *.inc, *.m, *.markdown, *.md, *.mm, *.dox (to be +# provided as Doxygen C comment), *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.py + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which Doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# ANamespace::AClass, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that Doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that Doxygen will use the data processed and written to standard output +# for further processing, therefore nothing else, like debug statements or used +# commands (so in case of a Windows batch file always use @echo OFF), should be +# written to standard output. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by Doxygen. + +INPUT_FILTER = "python -m doxypypy.doxypypy -a -c" + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by Doxygen. + +FILTER_PATTERNS = *.py="python -m doxypypy.doxypypy -a -c" + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = YES + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the Doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +# If the IMPLICIT_DIR_DOCS tag is set to YES, any README.md file found in sub- +# directories of the project's root, is used as the documentation for that sub- +# directory, except when the README.md starts with a \dir, \page or \mainpage +# command. If set to NO, the README.md file needs to start with an explicit \dir +# command in order to be used as directory documentation. +# The default value is: YES. + +IMPLICIT_DIR_DOCS = YES + +# The Fortran standard specifies that for fixed formatted Fortran code all +# characters from position 72 are to be considered as comment. A common +# extension is to allow longer lines before the automatic comment starts. The +# setting FORTRAN_COMMENT_AFTER will also make it possible that longer lines can +# be processed before the automatic comment starts. +# Minimum value: 7, maximum value: 10000, default value: 72. + +FORTRAN_COMMENT_AFTER = 72 + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# multi-line macros, enums or list initialized variables directly into the +# documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct Doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of Doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by Doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then Doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The IGNORE_PREFIX tag can be used to specify a prefix (or a list of prefixes) +# that should be ignored while generating the index headers. The IGNORE_PREFIX +# tag works for classes, function and member names. The entity will be placed in +# the alphabetical list under the first letter of the entity name that remains +# after removing the prefix. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, Doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank Doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that Doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that Doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of Doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank Doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that Doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank Doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that Doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by Doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# Note: Since the styling of scrollbars can currently not be overruled in +# Webkit/Chromium, the styling will be left out of the default doxygen.css if +# one or more extra stylesheets have been specified. So if scrollbar +# customization is desired it has to be added explicitly. For an example see the +# documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE tag can be used to specify if the generated HTML output +# should be rendered with a dark or light theme. +# Possible values are: LIGHT always generates light mode output, DARK always +# generates dark mode output, AUTO_LIGHT automatically sets the mode according +# to the user preference, uses light mode if no preference is set (the default), +# AUTO_DARK automatically sets the mode according to the user preference, uses +# dark mode if no preference is set and TOGGLE allows a user to switch between +# light and dark mode via a button. +# The default value is: AUTO_LIGHT. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE = AUTO_LIGHT + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a color-wheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use gray-scales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via JavaScript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have JavaScript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# If the HTML_CODE_FOLDING tag is set to YES then classes and functions can be +# dynamically folded and expanded in the generated HTML source code. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_CODE_FOLDING = YES + +# If the HTML_COPY_CLIPBOARD tag is set to YES then Doxygen will show an icon in +# the top right corner of code and text fragments that allows the user to copy +# its content to the clipboard. Note this only works if supported by the browser +# and the web page is served via a secure context (see: +# https://www.w3.org/TR/secure-contexts/), i.e. using the https: or file: +# protocol. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COPY_CLIPBOARD = YES + +# Doxygen stores a couple of settings persistently in the browser (via e.g. +# cookies). By default these settings apply to all HTML pages generated by +# Doxygen across all projects. The HTML_PROJECT_COOKIE tag can be used to store +# the settings under a project specific key, such that the user preferences will +# be stored separately. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_PROJECT_COOKIE = + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: +# https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To +# create a documentation set, Doxygen will generate a Makefile in the HTML +# output directory. Running make will produce the docset in that directory and +# running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag determines the URL of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDURL = + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then Doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# on Windows. In the beginning of 2021 Microsoft took the original page, with +# a.o. the download links, offline (the HTML help workshop was already many +# years in maintenance mode). You can download the HTML help workshop from the +# web archives at Installation executable (see: +# http://web.archive.org/web/20160201063255/http://download.microsoft.com/downlo +# ad/0/A/9/0A939EF6-E31C-430F-A3DF-DFAE7960D564/htmlhelp.exe). +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by Doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# Doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the main .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# The SITEMAP_URL tag is used to specify the full URL of the place where the +# generated documentation will be placed on the server by the user during the +# deployment of the documentation. The generated sitemap is called sitemap.xml +# and placed on the directory specified by HTML_OUTPUT. In case no SITEMAP_URL +# is specified no sitemap is generated. For information about the sitemap +# protocol see https://www.sitemaps.org +# This tag requires that the tag GENERATE_HTML is set to YES. + +SITEMAP_URL = + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location (absolute path +# including file name) of Qt's qhelpgenerator. If non-empty Doxygen will try to +# run qhelpgenerator on the generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine tune the look of the index (see "Fine-tuning the output"). As an +# example, the default style sheet generated by Doxygen has an example that +# shows how to put an image at the root of the tree instead of the PROJECT_NAME. +# Since the tree basically has more details information than the tab index, you +# could consider setting DISABLE_INDEX to YES when enabling this option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# When GENERATE_TREEVIEW is set to YES, the PAGE_OUTLINE_PANEL option determines +# if an additional navigation panel is shown at the right hand side of the +# screen, displaying an outline of the contents of the main page, similar to +# e.g. https://developer.android.com/reference If GENERATE_TREEVIEW is set to +# NO, this option has no effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +PAGE_OUTLINE_PANEL = YES + +# When GENERATE_TREEVIEW is set to YES, the FULL_SIDEBAR option determines if +# the side bar is limited to only the treeview area (value NO) or if it should +# extend to the full height of the window (value YES). Setting this to YES gives +# a layout similar to e.g. https://docs.readthedocs.io with more room for +# contents, but less room for the project logo, title, and description. If +# GENERATE_TREEVIEW is set to NO, this option has no effect. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FULL_SIDEBAR = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# Doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# When the SHOW_ENUM_VALUES tag is set doxygen will show the specified +# enumeration values besides the enumeration mnemonics. +# The default value is: NO. + +SHOW_ENUM_VALUES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, Doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# If the OBFUSCATE_EMAILS tag is set to YES, Doxygen will obfuscate email +# addresses. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +OBFUSCATE_EMAILS = YES + +# If the HTML_FORMULA_FORMAT option is set to svg, Doxygen will use the pdf2svg +# tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see +# https://inkscape.org) to generate formulas as SVG images instead of PNGs for +# the HTML output. These images will generally look nicer at scaled resolutions. +# Possible values are: png (the default) and svg (looks nicer but requires the +# pdf2svg or inkscape tool). +# The default value is: png. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FORMULA_FORMAT = png + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# Doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands +# to create new LaTeX commands to be used in formulas as building blocks. See +# the section "Including formulas" for details. + +FORMULA_MACROFILE = + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side JavaScript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# With MATHJAX_VERSION it is possible to specify the MathJax version to be used. +# Note that the different versions of MathJax have different requirements with +# regards to the different settings, so it is possible that also other MathJax +# settings have to be changed when switching between the different MathJax +# versions. +# Possible values are: MathJax_2, MathJax_3 and MathJax_4. +# The default value is: MathJax_2. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_VERSION = MathJax_2 + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. For more details about the output format see MathJax +# version 2 (see: +# https://docs.mathjax.org/en/v2.7/output.html), MathJax version 3 (see: +# https://docs.mathjax.org/en/v3.2/output/index.html) and MathJax version 4 +# (see: +# https://docs.mathjax.org/en/v4.0/output/index.htm). +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility. This is the name for Mathjax version 2, for MathJax version 3 +# this will be translated into chtml), NativeMML (i.e. MathML. Only supported +# for MathJax 2. For MathJax version 3 chtml will be used instead.), chtml (This +# is the name for Mathjax version 3, for MathJax version 2 this will be +# translated into HTML-CSS) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. For Mathjax version 2 the +# destination directory should contain the MathJax.js script. For instance, if +# the mathjax directory is located at the same level as the HTML output +# directory, then MATHJAX_RELPATH should be ../mathjax.s For Mathjax versions 3 +# and 4 the destination directory should contain the tex-.js script +# (where is either chtml or svg). The default value points to the +# MathJax Content Delivery Network so you can quickly see the result without +# installing MathJax. However, it is strongly recommended to install a local +# copy of MathJax from https://www.mathjax.org before deployment. The default +# value is: +# - in case of MathJax version 2: https://cdn.jsdelivr.net/npm/mathjax@2 +# - in case of MathJax version 3: https://cdn.jsdelivr.net/npm/mathjax@3 +# - in case of MathJax version 4: https://cdn.jsdelivr.net/npm/mathjax@4 +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# for MathJax version 2 (see https://docs.mathjax.org/en/v2.7/tex.html): +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# For example for MathJax version 3 (see +# https://docs.mathjax.org/en/v3.2/input/tex/extensions/): +# MATHJAX_EXTENSIONS = ams +# For example for MathJax version 4 (see +# https://docs.mathjax.org/en/v4.0/input/tex/extensions/): +# MATHJAX_EXTENSIONS = units +# Note that for Mathjax version 4 quite a few extensions are already +# automatically loaded. To disable a package in Mathjax version 4 one can use +# the package name prepended with a minus sign (- like MATHJAX_EXTENSIONS += +# -textmacros) +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with JavaScript pieces +# of code that will be used on startup of the MathJax code. See the Mathjax site +# for more details: +# - MathJax version 2 (see: +# https://docs.mathjax.org/en/v2.7/) +# - MathJax version 3 (see: +# https://docs.mathjax.org/en/v3.2/) +# - MathJax version 4 (see: +# https://docs.mathjax.org/en/v4.0/) For an example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled Doxygen will generate a search box for +# the HTML output. The underlying search engine uses JavaScript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the JavaScript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /